diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be23e7b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode +target/ \ No newline at end of file diff --git a/.java-version b/.java-version new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/.java-version @@ -0,0 +1 @@ +11 diff --git a/README.md b/README.md index 38cf230..cb9ae07 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ An example execution is amt-to-flat-file NCTS_SCT_RF2_DISTRIBUTION_32506021000036107-XXX-SNAPSHOT.zip - amt-flat-file.csv + amt-flat-file diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..a67cb7b --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,26 @@ +trigger: + branches: + include: + - '*' +pool: + vmImage: ubuntu-latest + +steps: + +- task: MavenAuthenticate@0 + inputs: + artifactsFeeds: 'amtv4' + +- task: Maven@3 + displayName: Build and Deploy on NCTS Devops + inputs: + mavenPomFile: 'pom.xml' + mavenOptions: '-Xmx3072m' + options: '-B' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.11' + jdkArchitectureOption: 'x64' + publishJUnitResults: false + testResultsFiles: '**/surefire-reports/TEST-*.xml' + mavenAuthenticateFeed: true + goals: 'deploy' diff --git a/pom.xml b/pom.xml index 937d2fa..53cb831 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ au.gov.digitalhealth.terminology amt-to-flat-file - master-SNAPSHOT + amt-v4-SNAPSHOT AMT flat file generator Generates an "AMT Flat File" from a Snapshot SNOMED CT-AU release @@ -17,53 +17,81 @@ https://github.com/AuDigitalHealth/amt-flat-file-generator.git + + 11 + amtv4 + https://pkgs.dev.azure.com/OD225632-NCTS-ContentAndTooling/OD225632-NCTS-ContentAndTooling/_packaging/amtv4/maven/v1 + + - org.openmbee.junit - junit-xml-parser - 1.0.0 + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + + + com.sun.xml.bind + jaxb-impl + 4.0.0 + runtime + + + org.projectlombok + lombok + 1.18.28 + provided + + + junit + junit + 4.13.2 + + + commons-io + commons-io + 2.13.0 org.apache.maven maven-plugin-api - 3.0 + 3.9.0 org.apache.maven.plugin-tools maven-plugin-annotations - 3.4 + 3.8.1 provided org.jgrapht jgrapht-core - 1.3.0 + 1.5.1 commons-cli commons-cli - 1.4 + 1.5.0 org.apache.commons commons-lang3 - 3.5 + 3.12.0 org.testng testng - 6.9.8 + 7.7.0 test org.apache.maven.wagon wagon-http - 3.2.0 + 3.5.3 org.apache.tika tika-core - 1.22 + 2.7.0 @@ -76,8 +104,8 @@ maven-compiler-plugin 3.7.0 - 1.8 - 1.8 + ${java.version} + ${java.version} @@ -95,7 +123,7 @@ org.apache.maven.plugins maven-plugin-plugin - 3.3 + 3.8.1 amt-to-flat-file true @@ -149,4 +177,50 @@ + + + + spring-releases + https://repo.spring.io/release + + + ${deployment.repo.id} + ${deployment.repo.url} + + true + + + true + + + + + + ${deployment.repo.id} + ${deployment.repo.url} + + true + + + true + + + + + + ${deployment.repo.id} + ${deployment.repo.url} + Maven Release Feed + default + true + + + ${deployment.repo.id} + ${deployment.repo.url} + Maven Snapshot Release Feed + default + true + + + diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Amt2FlatFile.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Amt2FlatFile.java index c569ab4..bd9cf7d 100644 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Amt2FlatFile.java +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Amt2FlatFile.java @@ -5,7 +5,6 @@ import java.io.FileWriter; import java.io.IOException; import java.net.URI; -import java.net.URISyntaxException; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.Files; @@ -17,10 +16,14 @@ import java.util.Collections; import java.util.HashMap; import java.util.HashSet; +import java.util.Map; import java.util.Set; +import java.util.logging.Level; import java.util.logging.Logger; import java.util.stream.Collectors; +import lombok.Getter; +import lombok.Setter; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLineParser; import org.apache.commons.cli.DefaultParser; @@ -28,400 +31,527 @@ import org.apache.commons.cli.Option; import org.apache.commons.cli.Options; import org.apache.commons.cli.ParseException; -import org.apache.commons.lang3.tuple.Triple; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.tika.Tika; +import au.gov.digitalhealth.terminology.amtflatfile.Junit.JUnitTestSuite; /** - * This is both a Java CLI class compiled into a runnable JAR, and a Maven Mojo to transform a ZIP file of SNOMED CT-AU - * release files into an AMT flat file. Note it only really needs the snapshot files, and expects file names to match - * the release filename convention. + * This is both a Java CLI class compiled into a runnable JAR, and a Maven Mojo to transform a ZIP + * file of SNOMED CT-AU release files into an AMT flat file. Note it only really needs the snapshot + * files, and expects file names to match the release filename convention. */ @Mojo(name = "amt-to-flat-file") public class Amt2FlatFile extends AbstractMojo { - private static final int MAX_ZIP_FILE_SIZE = 600000000; - - private static final String INPUT_FILE_OPTION = "i"; - - private static final String OUTPUT_FILE_OPTION = "o"; - - private static final String EXIT_ON_ERROR_OPTION = "e"; - - private static final String REPLACEMENT_FILE_PATH = "r"; - - private static final String JUNIT_FILE_PATH = "j"; - - private static final Logger logger = Logger.getLogger(Amt2FlatFile.class.getCanonicalName()); - - private JUnitTestSuite_EXT testSuite; - - @Parameter(property = "inputZipFilePath", required = true) - private String inputZipFilePath; - - @Parameter(property = "outputFilePath", required = true) - private String outputFilePath; - - @Parameter(property = "replacementsOutputFilePath", required = false) - private String replacementsOutputFilePath; - - @Parameter(property = "junitFilePath", required = false, defaultValue = "target/ValidationErrors.xml") - private String junitFilePath; - - @Parameter(property = "exitOnError", required = false, defaultValue = "false") - private boolean exitOnError; - - private AmtCache conceptCache; - - private Tika tika = new Tika(); - - public static void main(String args[]) throws IOException, URISyntaxException { - long start = System.currentTimeMillis(); - Options options = new Options(); - - options.addOption(Option.builder(INPUT_FILE_OPTION) - .longOpt("inputFile") - .argName("AMT_ZIP_FILE_PATH") - .hasArg() - .desc("Input AMT release ZIP file") - .required(true) - .build()); - options.addOption(Option.builder(OUTPUT_FILE_OPTION) - .longOpt("outputFile") - .argName("OUTPUT_FILE") - .hasArg() - .desc("Output file path to write out the flat file") - .required() - .build()); - options.addOption(Option.builder(EXIT_ON_ERROR_OPTION) - .longOpt("exit-on-error") - .argName("EXIT_ON_ERROR") - .desc("Flag dictating whether the program will exit on an error or keep processing") - .build()); - options.addOption(Option.builder(JUNIT_FILE_PATH) - .longOpt("junitFile") - .argName("JUNIT_FILE") - .hasArg() - .desc("Output file path to write out the junit result file") - .build()); - options.addOption(Option.builder(REPLACEMENT_FILE_PATH) - .longOpt("replacementsOutputFile") - .argName("REPLACEMENTS_FILE_PATH") - .hasArg() - .desc("Output file path to write out the file listing inactive AMT concepts and their replacement active concepts") - .build()); - - CommandLineParser parser = new DefaultParser(); - try { - CommandLine line = parser.parse(options, args); - - Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); - amt2FlatFile.setInputZipFilePath(line.getOptionValue(INPUT_FILE_OPTION)); - amt2FlatFile.setOutputFilePath(line.getOptionValue(OUTPUT_FILE_OPTION)); - amt2FlatFile.setExitOnError(line.hasOption(EXIT_ON_ERROR_OPTION)); - amt2FlatFile.setJunitFilePath(line.getOptionValue(JUNIT_FILE_PATH)); - amt2FlatFile.setReplacementsFilePath(line.getOptionValue(REPLACEMENT_FILE_PATH)); - amt2FlatFile.execute(); - - } catch (ParseException exp) { - logger.severe("Parsing failed. Reason: " + exp.getMessage()); - HelpFormatter formatter = new HelpFormatter(); - formatter.printHelp("Amt2FlatFile", options); - } catch (MojoExecutionException | MojoFailureException e) { - logger.severe("Failed due to execution exception"); - throw new RuntimeException(e); - } - logger.info("Done in " + (System.currentTimeMillis() - start) + " milliseconds"); - } - - @Override - public void execute() throws MojoExecutionException, MojoFailureException { - logger.info("Input file is " + inputZipFilePath); - logger.info("Output will be written to " + outputFilePath); - - validateInputZipFile(inputZipFilePath); - - validateOutputPath(outputFilePath, "text/csv"); - - if (replacementsOutputFilePath == null || replacementsOutputFilePath.isEmpty()) { - logger.info("Replacement file was not requested and will not be written"); - } else { - validateOutputPath(replacementsOutputFilePath, "text/csv"); - logger.info("Replacement file will be written to " + replacementsOutputFilePath); - } - - if (junitFilePath == null || junitFilePath.isEmpty()) { - logger.info("JUnit file was not requested and will not be written"); - } else { - validateOutputPath(junitFilePath, "application/xml"); - logger.info("JUnit file will be written to " + junitFilePath); - } - - if (exitOnError) { - logger.info("AMT flat file generation will be aborted if any errors are detected"); - } else { - logger.warning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); - logger.warning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); - logger.warning( - "Configured to continue regardless of detected errors. This is useful for testing pre-release AMT content, " - + "but is NOT recommended for any other use! Resultant AMT flat file may be unreliable. " - + "Consider rerunning with the -e or --exit-on-error flag set!!!"); - logger.warning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); - logger.warning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); - - } - - //initialise test suite - this.testSuite = new JUnitTestSuite_EXT(); - try (FileSystem zipFileSystem = FileSystems.newFileSystem(URI.create( - "jar:file:" + FileSystems.getDefault().getPath(inputZipFilePath).toAbsolutePath().toString()), - new HashMap<>());) { - - conceptCache = new AmtCache(zipFileSystem, this.testSuite, exitOnError); - writeFlatFile(FileSystems.getDefault().getPath(outputFilePath)); - if (replacementsOutputFilePath != null && !replacementsOutputFilePath.isEmpty()) { - writeReplacementsFile(FileSystems.getDefault().getPath(replacementsOutputFilePath)); - } - if (junitFilePath == null || junitFilePath.trim().isEmpty()) { - junitFilePath = "target/ValidationErrors.xml"; - } - BufferedWriter outputJunitXml = new BufferedWriter(new FileWriter(junitFilePath)); - testSuite.writeToFile(outputJunitXml); - logger.info("Output junit results to: " + new File(junitFilePath).getAbsolutePath()); - } catch (IOException e) { - throw new MojoExecutionException("Failed due to IO error executing transformation", e); - } - } - - private void validateOutputPath(String outputPath, String expectedMimeType) { - try { - Path path = Paths.get(outputPath); - - if (Files.isSymbolicLink(path)) { - throw new SecurityException("The output " + outputPath + " file must not be a symlink for security reasons"); - } + private static final int MAX_ZIP_FILE_SIZE = 1500000000; + + private static final String INPUT_FILE_OPTION = "i"; + + private static final String OUTPUT_FILE_OPTION = "o"; + + private static final String EXIT_ON_ERROR_OPTION = "e"; + + private static final String REPLACEMENT_FILE_PATH = "r"; + + private static final String JUNIT_FILE_PATH = "j"; + + private static final Logger logger = Logger.getLogger(Amt2FlatFile.class.getCanonicalName()); + public static final String WARNING_MESSAGE = "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; + + private JUnitTestSuite testSuite; + + @Setter + @Getter + @Parameter(property = "inputZipFilePath", required = true) + private String inputZipFilePath; + + @Getter + @Setter + @Parameter(property = "outputFilePath", required = true) + private String outputFilePath; + + @Parameter(property = "replacementsOutputFilePath") + private String replacementsOutputFilePath; + + @Setter + @Parameter(property = "junitFilePath", defaultValue = "target/ValidationErrors.xml") + private String junitFilePath; + + @Setter + @Parameter(property = "exitOnError", defaultValue = "false") + private boolean exitOnError; + + private AmtCache conceptCache; + + private final Tika tika = new Tika(); + + public static void main(String[] args) { + long start = System.currentTimeMillis(); + Options options = new Options(); + + options.addOption(Option.builder(INPUT_FILE_OPTION) + .longOpt("inputFile") + .argName("AMT_ZIP_FILE_PATH") + .hasArg() + .desc("Input AMT release ZIP file") + .required(true) + .build()); + options.addOption(Option.builder(OUTPUT_FILE_OPTION) + .longOpt("outputFile") + .argName("OUTPUT_FILE") + .hasArg() + .desc("Output file path to write out the flat file") + .required() + .build()); + options.addOption(Option.builder(EXIT_ON_ERROR_OPTION) + .longOpt("exit-on-error") + .argName("EXIT_ON_ERROR") + .desc("Flag dictating whether the program will exit on an error or keep processing") + .build()); + options.addOption(Option.builder(JUNIT_FILE_PATH) + .longOpt("junitFile") + .argName("JUNIT_FILE") + .hasArg() + .desc("Output file path to write out the junit result file") + .build()); + options.addOption(Option.builder(REPLACEMENT_FILE_PATH) + .longOpt("replacementsOutputFile") + .argName("REPLACEMENTS_FILE_PATH") + .hasArg() + .desc( + "Output file path to write out the file listing inactive AMT concepts and their replacement active concepts") + .build()); + + CommandLineParser parser = new DefaultParser(); + try { + CommandLine line = parser.parse(options, args); + + Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); + amt2FlatFile.setInputZipFilePath(line.getOptionValue(INPUT_FILE_OPTION)); + amt2FlatFile.setOutputFilePath(line.getOptionValue(OUTPUT_FILE_OPTION)); + amt2FlatFile.setExitOnError(line.hasOption(EXIT_ON_ERROR_OPTION)); + amt2FlatFile.setJunitFilePath(line.getOptionValue(JUNIT_FILE_PATH)); + amt2FlatFile.setReplacementsFilePath(line.getOptionValue(REPLACEMENT_FILE_PATH)); + amt2FlatFile.execute(); + + } catch (ParseException exp) { + logger.severe("Parsing failed. Reason: " + exp.getMessage()); + HelpFormatter formatter = new HelpFormatter(); + formatter.printHelp("Amt2FlatFile", options); + } catch (MojoExecutionException | MojoFailureException e) { + logger.severe("Failed due to execution exception"); + throw new RuntimeException(e); + } + logger.info("Done in " + (System.currentTimeMillis() - start) + " milliseconds"); + } + + @Override + public void execute() throws MojoExecutionException, MojoFailureException { + logger.log(Level.INFO, "Input file is {0}", inputZipFilePath); + logger.log(Level.INFO, "CSV Output will be written to {0}", + FileFormat.CSV.getFilePath(outputFilePath)); + logger.log(Level.INFO, "TSV Output will be written to {0}", + FileFormat.TSV.getFilePath(outputFilePath)); + + validateInputZipFile(inputZipFilePath); + + validateOutputPath(FileFormat.TSV.getFilePath(outputFilePath), + FileFormat.TSV.getMimeType()); + validateOutputPath(FileFormat.CSV.getFilePath(outputFilePath), + FileFormat.CSV.getMimeType()); + + if (replacementsOutputFilePath == null || replacementsOutputFilePath.isEmpty()) { + logger.info("Replacement file was not requested and will not be written"); + } else { + validateOutputPath(FileFormat.TSV.getFilePath(replacementsOutputFilePath), + FileFormat.TSV.getMimeType()); + validateOutputPath(FileFormat.CSV.getFilePath(replacementsOutputFilePath), + FileFormat.CSV.getMimeType()); + logger.log(Level.INFO, "CSV Replacement file will be written to {0}", + replacementsOutputFilePath); + logger.log(Level.INFO, "TSV Replacement file will be written to {0}", + replacementsOutputFilePath); + } - if (Files.exists(path, LinkOption.NOFOLLOW_LINKS)) { - BasicFileAttributes attr = Files.readAttributes( - path, BasicFileAttributes.class, LinkOption.NOFOLLOW_LINKS); - - if (!attr.isRegularFile()) { - throw new SecurityException( - "The specified output file " + outputPath + " exists, but is not a regular file. Cannot be overwritten."); - } else if (!tika.detect(path).equals(expectedMimeType)) { - throw new SecurityException( - "The specified output file " + outputPath + " exists, but is not a " + expectedMimeType - + " file as expected, detected type was " + tika.detect(path) + ". Cannot be overwritten"); - } - } - } catch (IOException e) { - throw new IllegalArgumentException("Could not validate output file path " + outputPath, e); - } + if (junitFilePath == null || junitFilePath.isEmpty()) { + logger.info("JUnit file was not requested and will not be written"); + } else { + validateOutputPath(junitFilePath, "application/xml"); + logger.info("JUnit file will be written to " + junitFilePath); } - private void validateInputZipFile(String inputZipFilePath) { - try { - Path path = Paths.get(inputZipFilePath); + if (exitOnError) { + logger.info("AMT flat file generation will be aborted if any errors are detected"); + } else { + logger.warning( + WARNING_MESSAGE); + logger.warning( + WARNING_MESSAGE); + logger.warning( + "Configured to continue regardless of detected errors. This is useful for testing pre-release AMT content, " + + "but is NOT recommended for any other use! Resultant AMT flat file may be unreliable. " + + "Consider rerunning with the -e or --exit-on-error flag set!!!"); + logger.warning( + WARNING_MESSAGE); + logger.warning( + WARNING_MESSAGE); - if (Files.isSymbolicLink(path)) { - throw new SecurityException("The input ZIP file must not be a symlink for security reasons"); - } else if (!Files.exists(path, LinkOption.NOFOLLOW_LINKS)) { - throw new IllegalArgumentException("Specified input ZIP file " + inputZipFilePath + " does not exist"); - } + } - BasicFileAttributes attr = Files.readAttributes( - path, BasicFileAttributes.class, LinkOption.NOFOLLOW_LINKS); - - if (!attr.isRegularFile()) { - throw new SecurityException("The input ZIP file must be a regular file"); - } else if (attr.size() > MAX_ZIP_FILE_SIZE) { - throw new SecurityException("For security, input ZIP files over 600M are not accepted. " - + "This should permit RF2 ALL or SNAPSHOT bundles requiring the required files"); - } else if (!tika.detect(path).equals("application/zip")) { - throw new SecurityException( - "TThe input ZIP file " + inputZipFilePath + " is not a zip file as expected, detected type was " - + tika.detect(path)); - } - } catch (IOException e) { - throw new IllegalArgumentException("Could not validate input ZIP file path " + inputZipFilePath, e); + //initialise test suite + this.testSuite = new JUnitTestSuite(); + try (FileSystem zipFileSystem = FileSystems.newFileSystem(URI.create( + "jar:file:" + FileSystems.getDefault().getPath(inputZipFilePath).toAbsolutePath()), + new HashMap<>())) { + + conceptCache = new AmtCache(zipFileSystem, exitOnError, testSuite); + writeFlatFile( + FileSystems.getDefault().getPath(FileFormat.CSV.getFilePath(outputFilePath)), + FileFormat.CSV); + writeFlatFile( + FileSystems.getDefault().getPath(FileFormat.TSV.getFilePath(outputFilePath)), + FileFormat.TSV); + if (replacementsOutputFilePath != null && !replacementsOutputFilePath.isEmpty()) { + writeReplacementsFile( + FileSystems.getDefault() + .getPath(FileFormat.CSV.getFilePath(replacementsOutputFilePath)), + FileFormat.CSV); + writeReplacementsFile( + FileSystems.getDefault() + .getPath(FileFormat.TSV.getFilePath(replacementsOutputFilePath)), + FileFormat.TSV); + } + if (junitFilePath == null || junitFilePath.trim().isEmpty()) { + junitFilePath = "target/ValidationErrors.xml"; + } + File junitFile = new File(junitFilePath); + File parentDir = junitFile.getParentFile(); + if (parentDir != null && !parentDir.exists()) { + parentDir.mkdirs(); + } + BufferedWriter outputJunitXml = new BufferedWriter(new FileWriter(junitFilePath)); + testSuite.writeToFile(outputJunitXml); + logger.info("Output junit results to: " + new File(junitFilePath).getAbsolutePath()); + } catch (IOException e) { + throw new MojoExecutionException("Failed due to IO error executing transformation", e); + } + } + + + private void validateOutputPath(String outputPath, String expectedMimeType) { + try { + Path path = Paths.get(outputPath); + + if (Files.isSymbolicLink(path)) { + throw new SecurityException( + "The output " + outputPath + " file must not be a symlink for security reasons"); + } + + if (Files.exists(path, LinkOption.NOFOLLOW_LINKS)) { + BasicFileAttributes attr = Files.readAttributes( + path, BasicFileAttributes.class, LinkOption.NOFOLLOW_LINKS); + + if (!attr.isRegularFile()) { + throw new SecurityException( + "The specified output file " + outputPath + + " exists, but is not a regular file. Cannot be overwritten."); + } else if (!tika.detect(path).equals(expectedMimeType)) { + throw new SecurityException( + "The specified output file " + outputPath + " exists, but is not a " + + expectedMimeType + + " file as expected, detected type was " + tika.detect(path) + + ". Cannot be overwritten"); } + } + } catch (IOException e) { + throw new IllegalArgumentException("Could not validate output file path " + outputPath, e); } + } + + private void validateInputZipFile(String inputZipFilePath) { + try { + Path path = Paths.get(inputZipFilePath); + + if (Files.isSymbolicLink(path)) { + throw new SecurityException( + "The input ZIP file must not be a symlink for security reasons"); + } else if (!Files.exists(path, LinkOption.NOFOLLOW_LINKS)) { + throw new IllegalArgumentException( + "Specified input ZIP file " + inputZipFilePath + " does not exist"); + } + + BasicFileAttributes attr = Files.readAttributes( + path, BasicFileAttributes.class, LinkOption.NOFOLLOW_LINKS); + + if (!attr.isRegularFile()) { + throw new SecurityException("The input ZIP file must be a regular file"); + } else if (attr.size() > MAX_ZIP_FILE_SIZE) { + throw new SecurityException("For security, input ZIP files over 1.5GB are not accepted. " + + "This should permit RF2 ALL or SNAPSHOT bundles requiring the required files - file size was " + + attr.size()); + } else if (!tika.detect(path).equals("application/zip") && !tika.detect(path) + .equals("application/java-archive")) { + throw new SecurityException( + "The input ZIP file " + inputZipFilePath + + " is not a zip file as expected, detected type was " + + tika.detect(path)); + } + } catch (IOException e) { + throw new IllegalArgumentException( + "Could not validate input ZIP file path " + inputZipFilePath, e); + } + } - private void writeFlatFile(Path path) throws IOException { - if (path.getParent() != null && !Files.exists(path.getParent())) { - Files.createDirectory(path.getParent()); + private void writeFlatFile(Path path, FileFormat format) throws IOException { + if (path.getParent() != null && !Files.exists(path.getParent())) { + Files.createDirectory(path.getParent()); + } + try ( + BufferedWriter writer = Files.newBufferedWriter(path, StandardOpenOption.CREATE, + StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE)) { + + writer.write( + String.join(format.getDelimiter(), "CTPP SCTID", "CTPP PT", "ARTG_ID", + "TPP SCTID", "TPP PT", "TPUU SCTID", "TPUU PT", + "TPP TP SCTID", "TPP TP PT", "TPUU TP SCTID", "TPUU TP PT", "MPP SCTID", "MPP PT", + "MPUU SCTID", + "MPUU PT", "MP SCTID", "MP PT")); + writer.write("\r\n"); + + int count = 1; + int ctppCount = conceptCache.getCtppsFromRefset().values().size(); + long startTime = System.currentTimeMillis(); + for (Concept ctpp : conceptCache.getCtppsFromRefset().values()) { + // TPPs + Concept tpp = getParent(AmtRefset.TPP, ctpp); + if (tpp == null) { + tpp = ctpp; } - try ( - BufferedWriter writer = Files.newBufferedWriter(path, StandardOpenOption.CREATE, - StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE)) { - - writer.write( - String.join(",", "CTPP SCTID", "CTPP PT", "ARTG_ID", "TPP SCTID", "TPP PT", "TPUU SCTID", "TPUU PT", - "TPP TP SCTID", "TPP TP PT", "TPUU TP SCTID", "TPUU TP PT", "MPP SCTID", "MPP PT", "MPUU SCTID", - "MPUU PT", "MP SCTID", "MP PT")); - writer.newLine(); - - for (Concept ctpp : conceptCache.getCtpps().values()) { - Concept tpp = getParent(AmtConcept.TPP, AmtConcept.CTPP, ctpp); - Concept tppTp = null; - if (tpp.getTps().size() == 1) { - tppTp = tpp.getTps().iterator().next(); - } else { - String message = "TPUU " + tpp + " has too many TPs " + tpp.getTps(); - testSuite.addTestCase("TPUU error", message, "TPUU has too many TPs (" + tpp + ")", "ERROR"); - if (exitOnError) { - throw new RuntimeException(message); - } - continue; - } - - Concept mpp = getParent(AmtConcept.MPP, AmtConcept.TPP, tpp); - Set tpuus = tpp.getUnits(); - - Set addedMpuus = new HashSet<>(); - for (Concept tpuu : tpuus) { - Concept tpuuTp = getParent(AmtConcept.TP, AmtConcept.TPUU, tpuu); - Concept mpuu = getParent(AmtConcept.MPUU, AmtConcept.TPUU, tpuu); - addedMpuus.add(mpuu); - - Set mps = getParents(AmtConcept.MP, AmtConcept.MPUU, mpuu); - - Set artgids = ctpp.getArtgIds(); - if (artgids == null || artgids.size() == 0) { - artgids = Collections.singleton(""); - } - - artgids = artgids.stream().map(String::trim).collect(Collectors.toSet());; - - if(tpuuTp == null || mpuu == null) { - continue; - } - - for (Concept mp : mps) { - for (String artgid : artgids) { - writer.write( - String.join(",", - ctpp.getId() + "", "\"" + ctpp.getPreferredTerm() + "\"", - artgid, - tpp.getId() + "", "\"" + tpp.getPreferredTerm() + "\"", - tpuu.getId() + "", "\"" + tpuu.getPreferredTerm() + "\"", - tppTp.getId() + "", "\"" + tppTp.getPreferredTerm() + "\"", - tpuuTp.getId() + "", "\"" + tpuuTp.getPreferredTerm() + "\"", - mpp.getId() + "", "\"" + mpp.getPreferredTerm() + "\"", - mpuu.getId() + "", "\"" + mpuu.getPreferredTerm() + "\"", - mp.getId() + "", "\"" + mp.getPreferredTerm() + "\"")); - writer.newLine(); - } - } - } - - if (!mpp.getUnits().containsAll(addedMpuus) || !addedMpuus.containsAll(mpp.getUnits())) { - - String message = "Mismatch between MPUUs from MPP " - + mpp.getUnits().stream().map(c -> c.getId()).collect(Collectors.toList()) - + " and MPUUs added from TPUUs " - + addedMpuus.stream().map(c -> c.getId()).collect(Collectors.toList()) - + " for MPP " + mpp; - logger.warning(message); - - testSuite.addTestCase("Mismatch", message, "MPP mismatch (" + mpp.getId() + ")", "ERROR"); - } - } + Concept tppTp = null; + if (tpp.getTps().size() == 1) { + tppTp = tpp.getTps().iterator().next(); + } else { + String message = "TPP " + tpp + " has too many TPs " + tpp.getTps(); + testSuite.addTestCase("TPP error", message, this.getClass().getName(), + "TPP has too many TPs (" + tpp + ")", "ERROR"); + if (exitOnError) { + throw new RuntimeException(message); + } + logger.severe(message); + continue; } - } - - private void writeReplacementsFile(Path path) throws IOException { - if (path.getParent() != null && !Files.exists(path.getParent())) { - Files.createDirectory(path.getParent()); + Concept mpp = getParent(AmtRefset.MPP, tpp); + if (mpp == null) { + logger.severe("No MPP found for TPP " + tpp); } - try ( - BufferedWriter writer = Files.newBufferedWriter(path, StandardOpenOption.CREATE, - StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE)) { - - writer.write( - String.join(",", "INACTIVE SCTID", "INACTIVE PT", "REPLACEMENT TYPE SCTID", "REPLACEMENT TYPE PT", "REPLACEMENT SCTID", - "REPLACEMENT PT")); - writer.newLine(); - for (Triple entry : conceptCache.getReplacementConcepts()) { - writer.write( - String.join(",", - entry.getLeft().getId() + "", "\"" + entry.getLeft().getPreferredTerm() + "\"", - entry.getMiddle().getId() + "", "\"" + entry.getMiddle().getPreferredTerm() + "\"", - entry.getRight().getId() + "", "\"" + entry.getRight().getPreferredTerm() + "\"")); - writer.newLine(); - } - } - } - - private Concept getParent(AmtConcept parentType, AmtConcept current, Concept concept) { - Set parents = getParents(parentType, current, concept).stream() - .collect(Collectors.toSet()); - - if (parents.size() != 1) { - String message = "Expected 1 parent of type " + parentType + " for concept " + concept + " but got " + parents; - testSuite.addTestCase("multiple parents", message, "Multiple parents (" + concept.getId() + ")", "ERROR"); - + // TPUUS + Set tpuus = tpp.getUnits(); + + Set addedMpuus = new HashSet<>(); + for (Concept tpuu : tpuus) { + Concept tpuuTp = conceptCache.isAmtV3() ? getParent(AmtRefset.TP, tpuu) : null; + if (tpuuTp == null) { + if (tpuu.getTps().size() > 1) { + throw new RuntimeException("TPUU " + tpuu + " has too many TPs " + tpuu.getTps()); + } else if (tpuu.getTps().size() == 1) { + tpuuTp = tpuu.getTps().iterator().next(); + } else { + logger.severe("TPUU " + tpuu + " has no TPs"); + testSuite.addTestCase("TPUU error", "TPUU has no TPs " + tpuu, + this.getClass().getName(), "TPUU has no TPs (" + tpuu.getId() + ")", "ERROR"); + } + } + Concept mpuu = getParent(AmtRefset.MPUU, tpuu); + if (mpuu == null) { + throw new RuntimeException("TPUU " + tpuu + " has no MPUU"); + } + addedMpuus.add(mpuu); + + Set mps = getParents(AmtRefset.MP, mpuu); + + if (mps.size() > 1) { + Set filteredMps = mps.stream().max( + (mp1, mp2) -> mp1.getIngredients().size() > mp2.getIngredients().size() ? 1 : -1) + .map(Collections::singleton).orElse(mps); + if (filteredMps.size() == 1) { + mps = filteredMps; + } else { + String message = "Expected 1 MP parent for MPUU " + mpuu.getId() + + " but got " + mps.size() + ". Filtering by ingredients yielded " + + filteredMps.size() + " not 1 as required. Full set was " + + mps.stream().map(c -> c.getId() + " | " + c.getPreferredTerm() + " | ") + .collect(Collectors.joining(", ")); + logger.warning(message); + testSuite.addTestCase("multiple parents", message, this.getClass().getName(), + "Multiple parents (" + mpuu.getId() + ")", "ERROR"); + if (exitOnError) { + throw new RuntimeException(message); + } + } + } else if (mps.isEmpty()) { + String message = "No MP parent for MPUU " + mpuu.getId(); + logger.warning(message); + testSuite.addTestCase("no parents", message, this.getClass().getName(), + "No parents (" + mpuu.getId() + ")", "ERROR"); if (exitOnError) { - throw new RuntimeException(message); + throw new RuntimeException(message); } - return null; - } - return parents.iterator().next(); - } - - private Set getParents(AmtConcept parentType, AmtConcept current, Concept concept) { - return getParents(parentType, current, Collections.singleton(concept)); - } - - private Set getParents(AmtConcept parentType, AmtConcept current, Set concepts) { - Set leafParents = new HashSet<>(); + } + + Set artgids = ctpp.getArtgIds(); + if (artgids == null || artgids.isEmpty()) { + artgids = Collections.singleton(""); + } + + artgids = artgids.stream().map(String::trim).collect(Collectors.toSet()); + + if (tpuuTp == null || mpuu == null) { + continue; + } + + for (Concept mp : mps) { + for (String artgid : artgids) { + writer.write( + String.join(format.getDelimiter(), ctpp.getId() + "", + format.getFieldQuote() + ctpp.getPreferredTerm() + + format.getFieldQuote(), + artgid, + tpp.getId() + "", + format.getFieldQuote() + tpp.getPreferredTerm() + + format.getFieldQuote(), + tpuu.getId() + "", + format.getFieldQuote() + tpuu.getPreferredTerm() + + format.getFieldQuote(), + tppTp.getId() + "", + format.getFieldQuote() + tppTp.getPreferredTerm() + + format.getFieldQuote(), + tpuuTp.getId() + "", + format.getFieldQuote() + tpuuTp.getPreferredTerm() + + format.getFieldQuote(), + mpp.getId() + "", + format.getFieldQuote() + mpp.getPreferredTerm() + + format.getFieldQuote(), + mpuu.getId() + "", + format.getFieldQuote() + mpuu.getPreferredTerm() + + format.getFieldQuote(), + mp.getId() + "", + format.getFieldQuote() + mp.getPreferredTerm() + + format.getFieldQuote())); + writer.write("\r\n"); + } + } + } - leafParents.addAll(concepts.stream() - .flatMap(c -> c.getAncestors(parentType).stream()) - .filter(p -> !AmtConcept.isEnumValue(p.getId())) - .filter(p -> p.hasAtLeastOneMatchingAncestor(parentType)) - .filter(p -> !p.hasAtLeastOneMatchingAncestor(current)) - .collect(Collectors.toSet())); + if (!mpp.getUnits().containsAll(addedMpuus) || !addedMpuus.containsAll(mpp.getUnits())) { - Set redunantAncestors = - leafParents.stream().flatMap(p -> p.getAncestors(parentType).stream()).collect(Collectors.toSet()); + String message = "Mismatch between MPUUs from MPP " + + mpp.getUnits().stream().map(c -> c.getId()).collect(Collectors.toList()) + + " and MPUUs added from TPUUs " + + addedMpuus.stream().map(c -> c.getId()).collect(Collectors.toList()) + + " for MPP " + mpp; + logger.warning(message); - leafParents.removeAll(redunantAncestors); + testSuite.addTestCase("Mismatch", message, this.getClass().getName(), + "MPP mismatch (" + mpp.getId() + ")", "ERROR"); + } - return leafParents; - } + if (count % 1000 == 0) { + long endTime = System.currentTimeMillis(); + logger.info("Processed CTPP [" + count + " of " + ctppCount + + "] Time spent processing 1000 CTPPs is " + (endTime - startTime) + "ms"); + startTime = System.currentTimeMillis(); + } + count++; + } + } + } + + private Set memberOf(Set concepts, AmtRefset refset) { + Set refsetMembers = new HashSet<>(); + Map refsetConcepts = conceptCache.getAmtRefsets().get(refset.getIdString()); + for (Concept concept : concepts) { + if (refsetConcepts.containsKey(concept.getId())) { + refsetMembers.add(concept); + } + } + return refsetMembers; + } - public String getInputZipFilePath() { - return inputZipFilePath; - } + private void writeReplacementsFile(Path path, FileFormat format) throws IOException { + if (path.getParent() != null && !Files.exists(path.getParent())) { + Files.createDirectory(path.getParent()); + } + try ( + BufferedWriter writer = Files.newBufferedWriter(path, StandardOpenOption.CREATE, + StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE)) { + + writer.write( + String.join(format.getDelimiter(), "INACTIVE SCTID", "INACTIVE PT", + "REPLACEMENT TYPE SCTID", "REPLACEMENT TYPE PT", "REPLACEMENT SCTID", + "REPLACEMENT PT", "DATE")); + writer.write("\r\n"); + for (Replacement entry : conceptCache.getReplacementConcepts()) { + if (entry.getInactiveConcept() == null || entry.getReplacementType() == null + || entry.getActiveConcept() == null) { + throw new RuntimeException("Null replacement concept: " + entry); + } + writer.write( + String.join(format.getDelimiter(), entry.getInactiveConcept().getId() + "", + format.getFieldQuote() + + entry.getInactiveConcept().getPreferredTerm() + + format.getFieldQuote(), + entry.getReplacementType().getId() + "", + format.getFieldQuote() + + entry.getReplacementType().getPreferredTerm() + + format.getFieldQuote(), + entry.getActiveConcept().getId() + "", + format.getFieldQuote() + entry.getActiveConcept().getPreferredTerm() + + format.getFieldQuote(), + entry.getVersion())); + writer.write("\r\n"); + } + } + } + + private Concept getParent(AmtRefset parentType, Concept concept) { + Set parents = getParents(parentType, concept); + + if (parents.size() != 1) { + String message = + "Expected 1 parent of type " + parentType + " for concept " + concept + " but got " + + parents; + testSuite.addTestCase("multiple parents", message, this.getClass().getName(), + "Multiple parents (" + concept.getId() + ")", "ERROR"); + + if (exitOnError) { + throw new RuntimeException(message); + } + return null; + } + return parents.iterator().next(); + } - public void setInputZipFilePath(String inputZipFilePath) { - this.inputZipFilePath = inputZipFilePath; - } + private Set getParents(AmtRefset parentType, Concept concept) { + Set leafParents = new HashSet<>(); - public String getOutputFilePath() { - return outputFilePath; - } + leafParents.addAll(concept.getAncestors().stream().collect(Collectors.toSet())); + leafParents = memberOf(leafParents, parentType); - public void setOutputFilePath(String outputFilePath) { - this.outputFilePath = outputFilePath; - } + Set redunantAncestors = + leafParents.stream().flatMap(p -> p.getAncestors().stream()).collect(Collectors.toSet()); - public void setExitOnError(boolean exitOnError) { - this.exitOnError = exitOnError; - } + leafParents.removeAll(redunantAncestors); - public void setJunitFilePath(String path) { - this.junitFilePath = path; - } + return leafParents; + } - public void setReplacementsFilePath(String path) { - this.replacementsOutputFilePath = path; - } + public void setReplacementsFilePath(String path) { + this.replacementsOutputFilePath = path; + } } diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtCache.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtCache.java index 9903add..d45fe67 100644 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtCache.java +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtCache.java @@ -4,22 +4,19 @@ import java.nio.file.FileSystem; import java.nio.file.Files; import java.nio.file.Path; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Iterator; -import java.util.Map; +import java.util.*; import java.util.Map.Entry; -import java.util.Set; import java.util.function.Consumer; import java.util.function.Predicate; import java.util.logging.Logger; import java.util.stream.Collectors; import java.util.stream.Stream; -import org.apache.commons.lang3.tuple.Triple; import org.jgrapht.alg.TransitiveClosure; import org.jgrapht.graph.SimpleDirectedGraph; -import org.openmbee.junit.model.JUnitFailure; +import au.gov.digitalhealth.terminology.amtflatfile.Junit.JUnitFailure; +import au.gov.digitalhealth.terminology.amtflatfile.Junit.JUnitTestCase; +import au.gov.digitalhealth.terminology.amtflatfile.Junit.JUnitTestSuite; public class AmtCache { @@ -34,23 +31,81 @@ public class AmtCache { private static final String AMT_MODULE_ID = "900062011000036108"; private static final Logger logger = Logger.getLogger(AmtCache.class.getCanonicalName()); + private static final String INTERNATIONAL_MODULE = "900000000000207008"; + private static final String AU_MODULE = "32506021000036107"; + + private static final List HISTORICAL_ASSOCAITION_IDS = List.of("900000000000523009", + "900000000000530003", + "900000000000525002", + "900000000000524003", + "1186924009", + "900000000000523009", + "1186921001", + "900000000000531004", + "900000000000526001", + "900000000000527005", + "900000000000529008", + "900000000000528000"); private SimpleDirectedGraph graph = new SimpleDirectedGraph<>(Edge.class); private Map conceptCache = new HashMap<>(); - private Set preferredDescriptionIdCache = new HashSet<>(); + public Map getConceptCache() { + return conceptCache; + } - private Map ctpps = new HashMap<>(); + private Set preferredDescriptionIdCache = new HashSet<>(); - private Set> replacements = new HashSet<>(); + private Set replacements = new HashSet<>(); private boolean exitOnError; - private JUnitTestSuite_EXT testSuite; - private JUnitTestCase_EXT graphCase; + private JUnitTestSuite testSuite; + private JUnitTestCase graphCase; + + private Map ctppsFromRefset = new HashMap<>(); + private Map tppsFromRefset = new HashMap<>(); + private Map tpuusFromRefset = new HashMap<>(); + private Map tpsFromRefset = new HashMap<>(); + private Map mppsFromRefset = new HashMap<>(); + private Map mpuusFromRefset = new HashMap<>(); + private Map mpsFromRefset = new HashMap<>(); + private Map> amtRefsets = Map.ofEntries( + Map.entry(AmtRefset.CTPP.getIdString(), ctppsFromRefset), + Map.entry(AmtRefset.TPP.getIdString(), tppsFromRefset), + Map.entry(AmtRefset.TPUU.getIdString(), tpuusFromRefset), + Map.entry(AmtRefset.TP.getIdString(), tpsFromRefset), + Map.entry(AmtRefset.MPP.getIdString(), mppsFromRefset), + Map.entry(AmtRefset.MPUU.getIdString(), mpuusFromRefset), + Map.entry(AmtRefset.MP.getIdString(), mpsFromRefset) + ); + + private static final Map amtRefsetToV3Concept = Map.ofEntries( + Map.entry(AmtRefset.CTPP.getIdString(), AmtConcept.CTPP), + Map.entry(AmtRefset.TPP.getIdString(), AmtConcept.TPP), + Map.entry(AmtRefset.TPUU.getIdString(), AmtConcept.TPUU), + Map.entry(AmtRefset.TP.getIdString(), AmtConcept.TP), + Map.entry(AmtRefset.MPP.getIdString(), AmtConcept.MPP), + Map.entry(AmtRefset.MPUU.getIdString(), AmtConcept.MPUU), + Map.entry(AmtRefset.MP.getIdString(), AmtConcept.MP) + ); + + private Map> conceptMaps = new HashMap<>(); + + private boolean amtV3 = false; + + public boolean isAmtV3() { + return amtV3; + } + + + public Map> getAmtRefsets() { + return amtRefsets; + } + - public AmtCache(FileSystem amtZip, JUnitTestSuite_EXT testSuite, boolean exitOnError) throws IOException { + public AmtCache(FileSystem amtZip, boolean exitOnError, JUnitTestSuite testSuite) throws IOException { this.testSuite = testSuite; this.exitOnError = exitOnError; processAmtFiles(amtZip); @@ -58,7 +113,7 @@ public AmtCache(FileSystem amtZip, JUnitTestSuite_EXT testSuite, boolean exitOnE private void processAmtFiles(FileSystem amtZip) throws IOException { - graphCase = new JUnitTestCase_EXT().setName("Graph errors"); + graphCase = new JUnitTestCase().setName("Graph errors"); TerminologyFileVisitor visitor = new TerminologyFileVisitor(); @@ -71,10 +126,24 @@ private void processAmtFiles(FileSystem amtZip) throws IOException { readFile(visitor.getLanguageRefsetFile(), s -> handleLanguageRefsetRow(s), true, "\t"); readFile(visitor.getDescriptionFile(), s -> handleDescriptionRow(s), true, "\t"); readFile(visitor.getArtgIdRefsetFile(), s -> handleArtgIdRefsetRow(s), true, "\t"); + int refsetFileCount = 0; + for (Path amtRefsetFile : visitor.getAMTRefsetFiles()) { + readFile(amtRefsetFile, s -> handleAMTRefsetRow(s), true, "\t"); + refsetFileCount++; + } + if (refsetFileCount > 1) { + this.amtV3 = true; + } for (Path historicalFile : visitor.getHistoricalAssociationRefsetFiles()) { readFile(historicalFile, s -> handleHistoricalAssociationRefsetRow(s), true, "\t"); } + if (this.isAmtV3()) { + logger.info("######### Working with AMT V3 Release #########"); + } else { + logger.info("######### Working with AMT V4 Release #########"); + } + try { calculateTransitiveClosure(); } catch (Exception e) { @@ -87,19 +156,13 @@ private void processAmtFiles(FileSystem amtZip) throws IOException { } } - graph.incomingEdgesOf(AmtConcept.CTPP.getId()) - .stream() - .map(e -> e.getSource()) - .filter(id -> !AmtConcept.isEnumValue(Long.toString(id))) - .forEach(id -> ctpps.put(id, conceptCache.get(id))); - - Iterator> it = ctpps.entrySet().iterator(); + Iterator> it = ctppsFromRefset.entrySet().iterator(); while (it.hasNext()) { Entry entry = it.next(); if (!entry.getValue().isActive()) { String message = "Found inactive CTPP! " + entry.getValue(); logger.warning(message); - testSuite.addTestCase("Inactive CTPP found", entry.getValue().toString(), "Inactive_CTPP", "ERROR"); + testSuite.addTestCase("Inactive CTPP found", entry.getValue().toString(), this.getClass().getName(), "Inactive_CTPP", "ERROR"); if (exitOnError) { throw new RuntimeException(message); } @@ -117,7 +180,7 @@ private void processAmtFiles(FileSystem amtZip) throws IOException { validateConceptCache(); - logger.info("Loaded " + ctpps.size() + " CTPPs " + conceptCache.size() + " concepts "); + logger.info("Loaded " + ctppsFromRefset.size() + " CTPPs " + conceptCache.size() + " concepts "); validateUnits(); @@ -167,7 +230,7 @@ private void assertConceptCache(Predicate predicate, String message, St if (!errors.isEmpty()) { logger.warning(message + " " + errors); - testSuite.addTestCase(message, errors.toString(), testCaseName, "ERROR"); + testSuite.addTestCase(message, errors.toString(), this.getClass().getName(), testCaseName, "ERROR"); if (exitOnError || fix == null) { throw new RuntimeException(message + " " + errors); @@ -231,7 +294,7 @@ private void validateUnits() { .collect(Collectors.toSet()); testSuite.addTestCase("Detected pack concepts with no units and/or MPPs with TPUU units and/or TPP/CTPPs with MPUU units", - detail, "heirarchy_error", "ERROR"); + detail, this.getClass().getName(), "heirarchy_error", "ERROR"); if (exitOnError) { throw new RuntimeException(detail); @@ -239,19 +302,43 @@ private void validateUnits() { } } - public Map getCtpps() { - return ctpps; + public Map getCtppsFromRefset() { + return ctppsFromRefset; + } + + public Map getTppsFromRefset() { + return tppsFromRefset; + } + + public Map getTpuusFromRefset() { + return tpuusFromRefset; + } + + public Map getTpsFromRefset() { + return tpsFromRefset; + } + + public Map getMppsFromRefset() { + return mppsFromRefset; + } + + public Map getMpuusFromRefset() { + return mpuusFromRefset; + } + + public Map getMpsFromRefset() { + return mpsFromRefset; } private void handleConceptRow(String[] row) { try { - if (isAmtOrMetadataModule(row)) { + if (isAuModule(row) || isAmtOrMetadataModule(row) || isIntModule(row)) { long conceptId = Long.parseLong(row[0]); graph.addVertex(conceptId); conceptCache.put(conceptId, new Concept(conceptId, isActive(row))); } } catch (Exception e) { - throw new RuntimeException("Failed processing row: " + row + " of Concepts file", e); + throw new RuntimeException("Failed processing row: " + String.join(", ",row) + " of Concepts file", e); } } @@ -262,7 +349,7 @@ private void handleRelationshipRow(String[] row) { long destination = Long.parseLong(row[5]); String type = row[7]; - if (isActive(row) && isAmtModule(row) && AttributeType.isEnumValue(type) && graph.containsVertex(source) + if (isActive(row) && (isAmtModule(row) || isAuModule(row) || isIntModule(row)) && AttributeType.isEnumValue(type) && graph.containsVertex(source) && graph.containsVertex(destination)) { Concept sourceConcept = conceptCache.get(source); @@ -272,12 +359,25 @@ private void handleRelationshipRow(String[] row) { sourceConcept.addParent(conceptCache.get(destination)); break; + case HAS_INTENDED_ACTIVE_INGREDIENT: + case HAS_ACTIVE_INGREDIENT: + case HAS_PRECISE_ACTIVE_INGREDIENT: + sourceConcept.addIngredient(conceptCache.get(destination)); + break; + case HAS_MPUU: case HAS_TPUU: + case CONTAINS_CLINICAL_DRUG: + case CONTAINS_DEVICE: sourceConcept.addUnit(conceptCache.get(destination)); break; + case CONTAINS_PACKAGED_CLINICAL_DRUG: + sourceConcept.addSubpack(conceptCache.get(destination)); + break; + case HAS_TP: + case HAS_PRODUCT_NAME: sourceConcept.addTp(conceptCache.get(destination)); default: @@ -285,7 +385,7 @@ private void handleRelationshipRow(String[] row) { } } } catch (Exception e) { - throw new RuntimeException("Failed processing row: " + row + " of Relationships file", e); + throw new RuntimeException("Failed processing row: " + String.join(", ",row) + " of Relationships file", e); } } @@ -296,7 +396,7 @@ private void handleDescriptionRow(String[] row) { Long conceptId = Long.parseLong(row[4]); - if (isActive(row) && isAmtOrMetadataModule(row) && conceptCache.containsKey(conceptId)) { + if (isActive(row) && (isAmtOrMetadataModule(row) || isIntModule(row) || isAuModule(row)) && conceptCache.containsKey(conceptId)) { String descriptionId = row[0]; String term = row[7]; Concept concept = conceptCache.get(conceptId); @@ -307,18 +407,18 @@ private void handleDescriptionRow(String[] row) { } } } catch (Exception e) { - throw new RuntimeException("Failed processing row: " + row + " of Descriptions file", e); + throw new RuntimeException("Failed processing row: " + String.join(", ",row) + " of Descriptions file", e); } } private void handleLanguageRefsetRow(String[] row) { try { - if (isActive(row) && isAmtOrMetadataModule(row) && row[6].equals(PREFERRED)) { + if (isActive(row) && (isAmtOrMetadataModule(row) || isAuModule(row)) && row[6].equals(PREFERRED)) { preferredDescriptionIdCache.add(Long.parseLong(row[5])); } } catch (Exception e) { - throw new RuntimeException("Failed processing row: " + row + " of Language file", e); + throw new RuntimeException("Failed processing row: " + String.join(", ",row) + " of Language file", e); } } @@ -326,25 +426,48 @@ private void handleLanguageRefsetRow(String[] row) { private void handleArtgIdRefsetRow(String[] row) { try { long conceptId = Long.parseLong(row[5]); - if (isActive(row) && isAmtModule(row)) { + if (isActive(row) && (isAmtModule(row) || isAuModule(row))) { conceptCache.get(conceptId).addArtgIds(row[6]); } } catch (Exception e) { - throw new RuntimeException("Failed processing row: " + row + " of ARTG file", e); + throw new RuntimeException("Failed processing row: " + String.join(", ",row) + " of ARTG file", e); + } + } + + private void handleAMTRefsetRow(String[] row) { + try { + long conceptId = Long.parseLong(row[5]); + if (isActive(row) && (isAmtModule(row) || isAuModule(row))) { + String refsetId = row[4]; + AmtConcept v3Concept = amtRefsetToV3Concept.get(refsetId); + if (v3Concept != null) { + Concept concept = conceptCache.get(conceptId); + concept.setType(v3Concept); + amtRefsets.get(refsetId).put(conceptId, concept); + } + } + } catch (Exception e) { + throw new RuntimeException("Failed processing row: " + String.join(", ",row) + " of ARTG file", e); } } private void handleHistoricalAssociationRefsetRow(String[] row) { try { - if (isActive(row) && isAmtModule(row) && !isDescriptionId(row[5])) { + if (isActive(row) && (isAmtModule(row) || isAuModule(row)) && !isDescriptionId(row[5]) && HISTORICAL_ASSOCAITION_IDS.contains(row[4])) { Concept replacementType = conceptCache.get(Long.parseLong(row[4])); Concept inactiveConcept = conceptCache.get(Long.parseLong(row[5])); Concept replacementConcept = conceptCache.get(Long.parseLong(row[6])); - replacements.add(Triple.of(inactiveConcept, replacementType, replacementConcept)); + if (replacementType == null || inactiveConcept == null || replacementConcept == null) { + throw new RuntimeException("Failed processing row: " + String.join("\t", row) + " of History file.\nOne of the concepts is null. " + + "\nreplacementType: " + replacementType + " replacement id is " + Long.parseLong(row[4]) + "\ninactiveConcept: " + inactiveConcept + "\nreplacementConcept: " + + replacementConcept); + } + + replacements.add(new Replacement(inactiveConcept, replacementType, replacementConcept, row[1])); } } catch (Exception e) { - throw new RuntimeException("Failed processing row: " + row + " of History file", e); + throw new RuntimeException("Failed processing row: " + String.join(", ",row) + " of History file", e); } } @@ -369,8 +492,13 @@ private boolean isAmtModule(String[] row) { private boolean isAmtOrMetadataModule(String[] row) { return row[3].equals(AMT_MODULE_ID) || row[3].equals(INTERNATIONAL_METADATA_MODULE) || row[3].equals(AU_METADATA_MODULE); } - - public Set> getReplacementConcepts() { + private boolean isIntModule(String[] row) { + return row[3].equals(INTERNATIONAL_MODULE); + } + private boolean isAuModule(String[] row) { + return row[3].equals(AU_MODULE); + } + public Set getReplacementConcepts() { return replacements; } diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtConcept.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtConcept.java index 62120c9..75297f7 100644 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtConcept.java +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtConcept.java @@ -15,7 +15,10 @@ public enum AmtConcept { SUBSTANCE(30344011000036106L, "Australian substance"), REPLACED_BY(900000000000526001L, "REPLACED BY"), POSSIBLY_EQUIVALENT_TO(900000000000523009L, "POSSIBLY EQUIVALENT TO"), - SAME_AS(900000000000527005L, "SAME AS"); + SAME_AS(900000000000527005L, "SAME AS"), + INT_MPP(781405001, "Medicinal product pack"), + INT_MP(763158003, "Medicinal product"), + INT_MPF(91000001109L, "Medicinal product form"); // @formatter:on private static HashMap instanceMap = new HashMap<>(); diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtRefset.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtRefset.java new file mode 100644 index 0000000..fc14ad5 --- /dev/null +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AmtRefset.java @@ -0,0 +1,29 @@ +package au.gov.digitalhealth.terminology.amtflatfile; + +public enum AmtRefset { + // @formatter:off + CTPP(929360051000036108L), + TPP(929360041000036105L), + TPUU(929360031000036100L), + TP(929360021000036102L), + MPP(929360081000036101L), + MPUU(929360071000036103L), + MP(929360061000036106L); + // @formatter:on + + private long id; + + private AmtRefset(long id) { + this.id = id; + } + + public long getId() { + return id; + } + + public String getIdString() { + return Long.toString(id); + } + +} + diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AttributeType.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AttributeType.java index a233319..326c1ba 100644 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AttributeType.java +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/AttributeType.java @@ -18,13 +18,26 @@ public enum AttributeType { HAS_UNIT_OF_USE(30548011000036101L), HAS_COMPONENT_PACK(700000061000036106L), HAS_DENOMINATOR_UNITS(700000071000036103L), - HAS_INTENDED_ACTIVE_INGREDIENT(700000081000036101L), + HAS_INTENDED_ACTIVE_INGREDIENT(700000081000036101L), + HAS_ACTIVE_INGREDIENT(127489000), + HAS_PRECISE_ACTIVE_INGREDIENT(762949000), HAS_NUMERATOR_UNITS(700000091000036104L), HAS_TP(700000101000036108L), STRENGTH(700000111000036105L), UNIT_OF_USE_SIZE(700000141000036106L), UNIT_OF_USE_QUANTITY(700000131000036101L), - SUBPACK_QUANTITY(700000121000036103L); + SUBPACK_QUANTITY(700000121000036103L), + HAS_CONCENTRATION_STRENGH_VALUE(999000021000168100L), + HAS_CONCENTRATION_STRENGH_UNIT(999000031000168102L), + HAS_TOTAL_QUANTITY_VALUE(999000041000168106L), + HAS_TOTAL_QUANTITY_UNIT(999000051000168108L), + CONTAINS_CLINICAL_DRUG(774160008L), + CONTAINS_DEVICE(999000081000168101L), + HAS_DEVICE_TYPE(999000061000168105L), + PACKAGE(999000071000168104L), + CONTAINS_PACKAGED_CLINICAL_DRUG(999000011000168107L), + HAS_PRODUCT_NAME(774158006), + HAS_OTHER_IDENTIFYING_INFORMATION(999000001000168109L); // @formatter:on private static HashMap instanceMap = new HashMap<>(); @@ -39,7 +52,7 @@ public static AttributeType fromId(long id) { if (instanceMap.containsKey(id)) { return instanceMap.get(id); } else { - throw new RuntimeException("Cannot find enum for id " + id); + throw new RuntimeException("Cannot find enum for id " + id + " " + instanceMap); } } diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Concept.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Concept.java index 5f8b45d..a7470ce 100644 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Concept.java +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Concept.java @@ -7,6 +7,7 @@ import java.util.HashSet; import java.util.Map; import java.util.Set; +import java.util.stream.Collectors; public class Concept { @@ -14,11 +15,14 @@ public class Concept { private String fullSpecifiedName; private String preferredTerm; private Set units = new HashSet<>(); + private Set subpack = new HashSet<>(); private Map parents = new HashMap<>(); private Map ancestors = new HashMap<>(); private Set tps = new HashSet<>(); + private Set ingredients = new HashSet<>(); private Set artgIds = new HashSet<>(); private boolean active; + private AmtConcept type; public Concept(long id, boolean active) { this.id = id; @@ -61,9 +65,23 @@ public void addUnit(Concept unit) { } public Set getUnits() { + if (units.isEmpty()) { + return getSubpack().stream().map(Concept::getUnits).flatMap(Set::stream).collect(Collectors.toSet()); + } return units; } + public void addIngredient(Concept concept) { + if (ingredients == null) { + ingredients = new HashSet<>(); + } + ingredients.add(concept); + } + + public Set getIngredients() { + return ingredients; + } + public boolean hasOneMatchingParent(AmtConcept... amtConcept) { for (AmtConcept parent : amtConcept) { if (parents.containsKey(parent.getId())) { @@ -112,6 +130,10 @@ public Collection getAncestors(AmtConcept concept) { return result; } + public Collection getAncestors() { + return ancestors.values(); + } + @Override public String toString() { return "Concept [id=" + id + ", fullSpecifiedName=" + fullSpecifiedName + ", parents=" + parents + "]"; @@ -164,4 +186,20 @@ public Set getArtgIds() { public boolean isActive() { return active; } + + public void addSubpack(Concept concept) { + subpack.add(concept); + } + + public Set getSubpack() { + return subpack; + } + + public void setType(AmtConcept type) { + this.type = type; + } + + public AmtConcept getType() { + return type; + } } diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/FileFormat.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/FileFormat.java new file mode 100644 index 0000000..65a41c0 --- /dev/null +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/FileFormat.java @@ -0,0 +1,51 @@ +package au.gov.digitalhealth.terminology.amtflatfile; + +public enum FileFormat { + TSV("tsv"), CSV("csv"); + + private static final String DOUBLEQUOTE = "\""; + private final String value; + + FileFormat(String value) { + this.value = value; + } + + public String getFilePath(String outputFilePath) { + return outputFilePath + "." + this.getExtension(); + } + + public String getExtension() { + return this.value; + } + + public String getMimeType() { + return "text/" + this.value; + } + + public String getDelimiter() { + if (this.value.equals("csv")) { + return ","; + } else if (this.value.equals("tsv")) { + return "\t"; + } + return ""; + } + + public String getFieldQuote() { + if (this.equals(TSV)) { + return ""; + } else { + return DOUBLEQUOTE; + } + } + + + public static FileFormat fromValue(String value) { + for (FileFormat kind : values()) { + if (kind.value.equals(value)) { + return kind; + } + } + throw new IllegalArgumentException("Unknown File Format: " + value); + } +} diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/JUnitTestCase_EXT.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/JUnitTestCase_EXT.java deleted file mode 100644 index d3ef87b..0000000 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/JUnitTestCase_EXT.java +++ /dev/null @@ -1,23 +0,0 @@ -package au.gov.digitalhealth.terminology.amtflatfile; - -import java.util.ArrayList; - -import org.openmbee.junit.model.JUnitFailure; -import org.openmbee.junit.model.JUnitTestCase; - -public class JUnitTestCase_EXT extends JUnitTestCase{ - - public JUnitTestCase_EXT addFailure(JUnitFailure failure) { - if(this.getFailures() == null) - this.setFailures(new ArrayList()); - this.getFailures().add(failure); - return this; - } - - //Return proper class after setname - @Override - public JUnitTestCase_EXT setName(String name) { - super.setName(name); - return this; - } -} diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitFailure.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitFailure.java new file mode 100644 index 0000000..a12db7c --- /dev/null +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitFailure.java @@ -0,0 +1,29 @@ +package au.gov.digitalhealth.terminology.amtflatfile.Junit; + +import org.apache.commons.lang3.builder.ReflectionToStringBuilder; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlValue; + +import lombok.Getter; +import lombok.Setter; +import lombok.experimental.Accessors; + +@Getter +@Setter +@Accessors(chain = true) +public class JUnitFailure { + + @XmlAttribute + private String message; + + @XmlAttribute + private String type; + + @XmlValue + private String value; + + @Override + public String toString() { + return ReflectionToStringBuilder.toString(this); + } +} \ No newline at end of file diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitTestCase.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitTestCase.java new file mode 100644 index 0000000..4452be3 --- /dev/null +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitTestCase.java @@ -0,0 +1,41 @@ +package au.gov.digitalhealth.terminology.amtflatfile.Junit; + +import lombok.Getter; +import lombok.Setter; +import lombok.experimental.Accessors; +import org.apache.commons.lang3.builder.ReflectionToStringBuilder; + +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import java.util.ArrayList; +import java.util.List; + +@Getter +@Setter +@Accessors(chain = true) +public class JUnitTestCase { + + @XmlAttribute(name = "classname", required = true) + private String className; + + @XmlAttribute(required = true) + private String name; + + @XmlAttribute + private Double time; + + @XmlElement(name = "failure") + private List failures; + + public JUnitTestCase addFailure(JUnitFailure failure) { + if(this.getFailures() == null) + this.setFailures(new ArrayList()); + this.getFailures().add(failure); + return this; + } + + @Override + public String toString() { + return ReflectionToStringBuilder.toStringExclude(this); + } +} \ No newline at end of file diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/JUnitTestSuite_EXT.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitTestSuite.java similarity index 58% rename from src/main/java/au/gov/digitalhealth/terminology/amtflatfile/JUnitTestSuite_EXT.java rename to src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitTestSuite.java index 3ee3285..a49062c 100644 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/JUnitTestSuite_EXT.java +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Junit/JUnitTestSuite.java @@ -1,9 +1,12 @@ -package au.gov.digitalhealth.terminology.amtflatfile; +package au.gov.digitalhealth.terminology.amtflatfile.Junit; +import static org.junit.Assert.fail; import java.io.BufferedWriter; import java.io.IOException; import java.util.ArrayList; +import java.util.Collections; import java.util.List; +import java.util.Optional; import java.util.stream.Collectors; import javax.xml.parsers.DocumentBuilderFactory; @@ -15,24 +18,37 @@ import javax.xml.transform.TransformerFactoryConfigurationError; import javax.xml.transform.dom.DOMSource; import javax.xml.transform.stream.StreamResult; - -import org.openmbee.junit.model.JUnitFailure; -import org.openmbee.junit.model.JUnitTestCase; -import org.openmbee.junit.model.JUnitTestSuite; import org.w3c.dom.Document; import org.w3c.dom.Element; -/** - * The opembee JUnit parser was only ever meant to read JUnit files. Not create them. - * This extension to the JUnitTestSuite class adds writing functionality, as well as - * methods that make constructing models easier - * - * @author patrick - * - */ -public class JUnitTestSuite_EXT extends JUnitTestSuite { - + +import lombok.Getter; +import lombok.Setter; +import lombok.experimental.Accessors; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; + +@Getter +@Setter +@Accessors(chain = true) + public class JUnitTestSuite { + + @XmlAttribute + private int errors; + + @XmlAttribute + private int failures; + + @XmlAttribute(required = true) + private int tests; + + @XmlAttribute(required = true) + private String name; + + @XmlElement(name = "testcase") + private List testCases; + public void writeToFile(BufferedWriter stream) throws IOException { - + Document doc = null; try { doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); @@ -46,7 +62,7 @@ public void writeToFile(BufferedWriter stream) throws IOException { testSuiteEl.setAttribute("tests", "0"); testSuiteEl.setAttribute("errors", "0"); testSuiteEl.setAttribute("name", "validation.errors"); - + if(this.getTestCases() != null) { this.setFailures((int) this.getTestCases().stream().flatMap(x -> x.getFailures().stream()).count()); this.setTests(this.getTestCases() != null ? this.getTestCases().size() : 0); @@ -58,7 +74,7 @@ public void writeToFile(BufferedWriter stream) throws IOException { for (JUnitTestCase testCase : this.getTestCases()) { Element testCaseEl = doc.createElement("testcase"); testCaseEl.setAttribute("name", testCase.getName()); - testCaseEl.setAttribute("classname", "flatfile." + testCase.getName()); + testCaseEl.setAttribute("classname", "flatfile." + testCase.getClassName()); for (JUnitFailure failure : testCase.getFailures()) { Element failEl = doc.createElement("failure"); @@ -70,10 +86,10 @@ public void writeToFile(BufferedWriter stream) throws IOException { testSuiteEl.appendChild(testCaseEl); } } - + testSuitesEl.appendChild(testSuiteEl); doc.appendChild(testSuiteEl); - + Transformer transformer; try { transformer = TransformerFactory.newInstance().newTransformer(); @@ -85,38 +101,65 @@ public void writeToFile(BufferedWriter stream) throws IOException { throw new RuntimeException("Error writing out xml: " + e.getMessage()); } } - - + + /* * Adds a new test case. If a test case with the same name already exists within the * testSuite, the add all the test cases failures to the existing test case */ - public void addTestCase(JUnitTestCase_EXT testCase){ + public void addTestCase(JUnitTestCase testCase){ if(this.getTestCases() == null) this.setTestCases(new ArrayList()); - - List existingTestCase = this.getTestCases() + + List existingTestCases = this.getTestCases() .stream() .filter(aCase -> aCase.getName().equals(testCase.getName())) .collect(Collectors.toList()); - - if(existingTestCase.size() == 1) { - for(JUnitFailure fail : testCase.getFailures()) - ((JUnitTestCase_EXT) existingTestCase.get(0)).addFailure(fail); - }else if(existingTestCase.size() == 0){ + + JUnitTestCase existingTestCase; + if (existingTestCases.size() == 1) { + existingTestCase = existingTestCases.get(0); + for (JUnitFailure fail : existingTestCase.getFailures()) { + Optional existingFailure = Optional.ofNullable(testCase.getFailures()) + .orElse(Collections.emptyList()).stream() + .filter(f -> f.getMessage().equals(fail.getMessage()) + && f.getValue().equals(fail.getValue()) + && f.getType().equals(fail.getType())) + .findAny(); + + if (!existingFailure.isPresent()) { + existingTestCase.addFailure(fail); + } + } + } else if (existingTestCases.isEmpty()) { this.getTestCases().add(testCase); - } - + } else { + throw new IllegalStateException( + "More than one test case with the same name already exists!" + + testCase.getName()); + } + } - public void addTestCase(String message, String detail, String testCaseName, String failType) { + public void addTestCase(String message, String detail, String className, String testCaseName, String failType) { JUnitFailure fail = new JUnitFailure(); fail.setMessage(message); fail.setValue(detail); fail.setType(failType); - JUnitTestCase_EXT testCase = new JUnitTestCase_EXT().setName(testCaseName); - testCase.addFailure(fail); + JUnitTestCase testCase = new JUnitTestCase().setName(testCaseName).setClassName(className); + Optional existingFailure = + Optional.ofNullable(testCase.getFailures()).orElse(Collections.emptyList()).stream() + .filter(f -> f.getMessage().equals(fail.getMessage()) + && f.getValue().equals(fail.getValue()) + && f.getType().equals(fail.getType())) + .findAny(); + + if (!existingFailure.isPresent()) { + testCase.addFailure(fail); + } + this.addTestCase(testCase); } - + } + \ No newline at end of file diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Replacement.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Replacement.java new file mode 100644 index 0000000..056ff51 --- /dev/null +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/Replacement.java @@ -0,0 +1,31 @@ +package au.gov.digitalhealth.terminology.amtflatfile; + +public class Replacement { + Concept inactiveConcept; + Concept activeConcept; + Concept replacementType; + String version; + + public Replacement(Concept inactiveConcept, Concept replacementType, Concept activeConcept, String version) { + this.inactiveConcept = inactiveConcept; + this.activeConcept = activeConcept; + this.replacementType = replacementType; + this.version = version; + } + + public Concept getInactiveConcept() { + return inactiveConcept; + } + + public Concept getActiveConcept() { + return activeConcept; + } + + public Concept getReplacementType() { + return replacementType; + } + + public String getVersion() { + return version; + } +} diff --git a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/TerminologyFileVisitor.java b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/TerminologyFileVisitor.java index ec415b9..b2dac72 100644 --- a/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/TerminologyFileVisitor.java +++ b/src/main/java/au/gov/digitalhealth/terminology/amtflatfile/TerminologyFileVisitor.java @@ -20,6 +20,7 @@ class TerminologyFileVisitor extends SimpleFileVisitor { private Path conceptFile, relationshipFile, descriptionFile, languageRefsetFile, artgIdRefsetFile; private List historicalAssociationRefsetFiles = new ArrayList<>(); + private List AMTRefsetFiles = new ArrayList<>(); private Tika tika = new Tika(); @@ -27,58 +28,94 @@ class TerminologyFileVisitor extends SimpleFileVisitor { public FileVisitResult visitFile(Path file, BasicFileAttributes attr) throws IOException { if (attr.isRegularFile()) { String fileName = file.getFileName().toString(); - if (fileName.matches("sct2_Concept_Snapshot_AU1000036_\\d{8}\\.txt")) { + if (fileName.matches("[x]?sct2_Concept_Snapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { conceptFile = file; } - } else if (fileName.matches("sct2_Relationship_Snapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?sct2_Relationship_Snapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { relationshipFile = file; } - } else if (fileName.matches("sct2_Description_Snapshot-en-AU_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?sct2_Description_Snapshot-en-[Aa][Uu]_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { descriptionFile = file; } - } else if (fileName.matches("der2_cRefset_LanguageSnapshot-en-AU_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_LanguageSnapshot-en-[Aa][Uu]_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { languageRefsetFile = file; } - } else if (fileName.matches("der2_iRefset_ARTGIdSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_iRefset_ARTGIdSnapshot_AU1000036_\\d{8}\\.txt") || fileName.matches("[x]?der2_iRefset_SimpleMapSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { artgIdRefsetFile = file; } - } else if (fileName.matches("der2_cRefset_AssociationReferenceSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_AssociationReferenceSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } - } else if (fileName.matches("der2_cRefset_AlternativeAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_AlternativeAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } - } else if (fileName.matches("der2_cRefset_MovedFromAssociationReferenceSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_MovedFromAssociationReferenceSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } - } else if (fileName.matches("der2_cRefset_MovedToAssociationReferenceSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_MovedToAssociationReferenceSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } - } else if (fileName.matches("der2_cRefset_PossiblyEquivalentToAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_PossiblyEquivalentToAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } - } else if (fileName.matches("der2_cRefset_ReplacedByAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_ReplacedByAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } - } else if (fileName.matches("der2_cRefset_SameAsAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_SameAsAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } - } else if (fileName.matches("der2_cRefset_WasAAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { + } else if (fileName.matches("[x]?der2_cRefset_WasAAssociationSnapshot_AU1000036_\\d{8}\\.txt")) { if (verifyFile(file)) { historicalAssociationRefsetFiles.add(file); } + } else if (fileName.matches("[x]?der2_cRefset_AssociationSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + historicalAssociationRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_SimpleSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_MedicinalProductPackSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_MedicinalProductSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_MedicinalProductUnitOfUseSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_ContaineredTradeProductPackSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_TradeProductPackSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_TradeProductSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } + } else if (fileName.matches("[x]?der2_Refset_TradeProductUnitOfUseSnapshot_AU1000036_\\d{8}\\.txt")) { + if (verifyFile(file)) { + AMTRefsetFiles.add(file); + } } } return FileVisitResult.CONTINUE; @@ -118,6 +155,11 @@ public Path getArtgIdRefsetFile() { return artgIdRefsetFile; } + public List getAMTRefsetFiles() { + return AMTRefsetFiles; + } + + public List getHistoricalAssociationRefsetFiles() { return historicalAssociationRefsetFiles; } diff --git a/src/test/java/au/gov/digitalhealth/JUnitFileParser.java b/src/test/java/au/gov/digitalhealth/JUnitFileParser.java new file mode 100644 index 0000000..9bbc12a --- /dev/null +++ b/src/test/java/au/gov/digitalhealth/JUnitFileParser.java @@ -0,0 +1,62 @@ +package au.gov.digitalhealth; + +import java.io.File; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.parsers.DocumentBuilder; +import org.w3c.dom.Document; +import org.w3c.dom.NodeList; +import org.xml.sax.SAXException; +import au.gov.digitalhealth.terminology.amtflatfile.Junit.JUnitFailure; +import au.gov.digitalhealth.terminology.amtflatfile.Junit.JUnitTestCase; +import org.w3c.dom.Node; +import org.w3c.dom.Element; + +public class JUnitFileParser { + + public static List parse(File junitXmlFile) throws IOException { + + DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance(); + DocumentBuilder dBuilder; + Document doc = null; + try { + dBuilder = dbFactory.newDocumentBuilder(); + doc = dBuilder.parse(junitXmlFile); + doc.getDocumentElement().normalize(); + } catch (ParserConfigurationException | SAXException e) { + throw new IOException("Failed to parse JUnit XML", e); + } + //Get the root element + NodeList nList = doc.getElementsByTagName("testcase"); + + List testCases = new ArrayList<>(); + + for(int i=0; i failures = new ArrayList<>(); + NodeList failureNodes = element.getElementsByTagName("failure"); + for (int j=0; j testCases = JUnitFileParser.parse( + new File("target/JUnitContainsCorrectErrors.xml")); + List fails = new ArrayList<>(); + testCases.forEach(testCase -> { + List failures = testCase.getFailures(); + fails.addAll( + failures.stream() + .map(fail -> fail.getValue()) + .collect(Collectors.toList())); + }); + Assert.assertTrue(fails.stream().anyMatch(fail -> fail.contains("1212261000168108"))); + Assert.assertTrue(fails.stream().anyMatch(fail -> fail.contains("1209811000168100"))); + Assert.assertEquals(fails.size(), 10); + } + + + @Test(groups = "files", priority = 1, description = "An exception is thrown when the provided input zip file doesn't exist", expectedExceptions = IllegalArgumentException.class) + public void fileDoesNotExistThrowException() + throws MojoExecutionException, MojoFailureException, IOException { + + Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); + amt2FlatFile.setInputZipFilePath(testResDirectory + "nonExistent.zip"); + amt2FlatFile.setOutputFilePath(outFilePath); + amt2FlatFile.execute(); + + } + + @Test(groups = "files", priority = 1, description = "An exception is thrown when the provided input zip file is missing critical files", expectedExceptions = RuntimeException.class) + public void fileMissingFromReleaseExceptionThrown() + throws MojoExecutionException, MojoFailureException, IOException { + + Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); + amt2FlatFile.setInputZipFilePath(testResDirectory + "incomplete.zip"); + amt2FlatFile.setOutputFilePath(outFilePath); + amt2FlatFile.execute(); + } + + @Test(groups = "parse", priority = 2, description = "The output file should match the expected result. Test line by line, regardless fo order") + public void outputMatchesExpectedImproved() + throws MojoExecutionException, MojoFailureException, IOException { + + Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); + String inFile = + testResDirectory + "NCTS_SCT_RF2_DISTRIBUTION_32506021000036107-20180430-SNAPSHOT.zip"; + amt2FlatFile.setInputZipFilePath(inFile); + amt2FlatFile.setOutputFilePath(outFilePath); + String replacementFilePath = "target/test-out/replacement"; + amt2FlatFile.setReplacementsFilePath(replacementFilePath); + amt2FlatFile.execute(); + + checkFile(outFilePath, "expected"); + checkFile(replacementFilePath, "expectedReplacement"); + } + + private void checkFile(String outFilePath, String expected) throws IOException { + assertDosLineTermination(FileFormat.CSV.getFilePath(outFilePath)); + assertDosLineTermination(FileFormat.TSV.getFilePath(outFilePath)); + + List outFileLinesCSV = + FileUtils.readLines(new File(FileFormat.CSV.getFilePath(outFilePath)), "UTF-8"); + List outFileLinesTSV = + FileUtils.readLines(new File(FileFormat.TSV.getFilePath(outFilePath)), "UTF-8"); + + String expectedFilePath = testResDirectory + expected; + List expectedLinesCSV = FileUtils + .readLines(new File(FileFormat.CSV.getFilePath(expectedFilePath)), "UTF-8"); + List expectedLinesTSV = FileUtils + .readLines(new File(FileFormat.TSV.getFilePath(expectedFilePath)), "UTF-8"); + Collections.sort(outFileLinesCSV); + Collections.sort(outFileLinesTSV); + Collections.sort(expectedLinesCSV); + Collections.sort(expectedLinesTSV); + + checkFiles(outFileLinesCSV, expectedLinesCSV, FileFormat.CSV); + checkFiles(outFileLinesTSV, expectedLinesTSV, FileFormat.TSV); + } + + private void checkFiles(List outFileLines, List expectedLines, + FileFormat format) { + // Assert and explain TSV differences + if (!outFileLines.equals(expectedLines)) { + for (int i = 0; i < Math.min(outFileLines.size(), expectedLines.size()); i++) { + if (!outFileLines.get(i).equals(expectedLines.get(i))) { + fail("Difference found in " + format.toString() + " file at line " + (i + 1) + + ": expected '" + expectedLines.get(i) + "' but was '" + + outFileLines.get(i) + "'"); } - } - - @Test(groups="files", priority = 1, description = "Tests that the JUnit file gets generated") - public void JUnitGenerated() throws MojoExecutionException, MojoFailureException, IOException { - Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); - amt2FlatFile.setInputZipFilePath("target/test-classes/rf2-fails-flat-file-generation-1.0.zip"); - amt2FlatFile.setOutputFilePath(outFile); - amt2FlatFile.execute(); - File validXml = new File("target/ValidationErrors.xml"); - Assert.assertTrue(validXml.exists()); - } - - @Test(groups="files", priority = 1, description = "Tests that the the correct errors are reported by the JUnit xml") - public void JUnitContainsCorrectErrors() throws MojoExecutionException, MojoFailureException, IOException, JAXBException, XMLStreamException { - Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); - amt2FlatFile.setInputZipFilePath("target/test-classes/rf2-fails-flat-file-generation-1.0.zip"); - amt2FlatFile.setOutputFilePath(outFile); - amt2FlatFile.setJunitFilePath("target/JUnitContainsCorrectErrors.xml"); - amt2FlatFile.execute(); - File validXml = new File("target/JUnitContainsCorrectErrors.xml"); - JUnitTestSuite info = JUnitMarshalling.unmarshalTestSuite(new FileInputStream(validXml)); - List failures = info.getTestCases().stream().flatMap(aCase -> aCase.getFailures().stream().map(fail -> fail.getValue())).collect(Collectors.toList()); - Assert.assertTrue(failures.stream().anyMatch(fail -> fail.contains("1212261000168108"))); - Assert.assertTrue(failures.stream().anyMatch(fail -> fail.contains("1209811000168100"))); - Assert.assertEquals(failures.size(), 10); - } - - - @Test(groups = "files", priority = 1, description = "An exception is thrown when the provided input zip file doesn't exist", expectedExceptions = IllegalArgumentException.class) - public void fileDoesNotExistThrowException() throws MojoExecutionException, MojoFailureException, IOException { - - Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); - amt2FlatFile.setInputZipFilePath(testResDirectory + "nonExistent.zip"); - amt2FlatFile.setOutputFilePath(outFile); - amt2FlatFile.execute(); - - } - - @Test(groups="files", priority = 1, description = "An exception is thrown when the provided input zip file is missing critical files", expectedExceptions=RuntimeException.class) - public void fileMissingFromReleaseExceptionThrown() throws MojoExecutionException, MojoFailureException, IOException { - - Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); - amt2FlatFile.setInputZipFilePath(testResDirectory + "incomplete.zip"); - amt2FlatFile.setOutputFilePath(outFile); - amt2FlatFile.execute(); - } - - @Test(groups="parse", priority = 2, description = "The output file should match the expected result. Test line by line, regardless fo order") - public void outputMatchesExpectedImproved() throws MojoExecutionException, MojoFailureException, IOException, NoSuchAlgorithmException { - - Amt2FlatFile amt2FlatFile = new Amt2FlatFile(); - amt2FlatFile.setInputZipFilePath(inFile); - amt2FlatFile.setOutputFilePath(outFile); - amt2FlatFile.setReplacementsFilePath(replacementFile); - amt2FlatFile.execute(); - - assertTrue(FileUtils.contentEqualsIgnoreEOL(new File(outFile), new File(expectedFile), null), "AMT flat file content as expected"); - assertTrue(FileUtils.contentEqualsIgnoreEOL(new File(replacementFile), new File(expectedReplacementFile), null), - "Replacements file as expected"); - } + } + if (outFileLines.size() != expectedLines.size()) { + fail(format.toString() + " files differ in length: expected " + expectedLines.size() + + " lines, but was " + outFileLines.size() + " lines."); + } + } + } + + public static void assertDosLineTermination(String filePath) throws IOException { + String content = new String(Files.readAllBytes(new File(filePath).toPath()), "UTF-8"); + Pattern pattern = Pattern.compile(".*(\r\n|\r|\n)"); + Matcher matcher = pattern.matcher(content); + + int count = 0; + while (matcher.find()) { + count++; + String line = matcher.group(); + org.junit.Assert.assertTrue("Line " + (count) + " of file " + filePath + + " does not end with DOS line termination: " + line, line.endsWith("\r\n")); + } + } } diff --git a/src/test/resources/expected.tsv b/src/test/resources/expected.tsv new file mode 100644 index 0000000..221d9c8 --- /dev/null +++ b/src/test/resources/expected.tsv @@ -0,0 +1,31724 @@ +CTPP SCTID CTPP PT ARTG_ID TPP SCTID TPP PT TPUU SCTID TPUU PT TPP TP SCTID TPP TP PT TPUU TP SCTID TPUU TP PT MPP SCTID MPP PT MPUU SCTID MPUU PT MP SCTID MP PT +933215041000036107 Ostran-ODT 4 mg orally disintegrating tablet, 10, blister pack 163647 933204611000036100 Ostran-ODT 4 mg orally disintegrating tablet, 10 933195611000036104 Ostran-ODT 4 mg orally disintegrating tablet 24041000168105 Ostran-ODT 24041000168105 Ostran-ODT 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +820821000168104 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet, 2, blister pack 202686 820811000168106 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet, 2 820801000168108 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet 820781000168109 Worm Treatment (Pharmacy Action) 820781000168109 Worm Treatment (Pharmacy Action) 63642011000036101 mebendazole 100 mg tablet, 2 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +21188011000036108 Acihexal 200 mg uncoated tablet, 25, blister pack 99420 14326011000036104 Acihexal 200 mg uncoated tablet, 25 7612011000036106 Acihexal 200 mg uncoated tablet 3239011000036103 Acihexal 3239011000036103 Acihexal 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +974961000168104 Stocrin 300 mg film-coated tablet, 60, bottle 82787 974891000168104 Stocrin 300 mg film-coated tablet, 60 974871000168100 Stocrin 300 mg film-coated tablet 4246011000036109 Stocrin 4246011000036109 Stocrin 974881000168102 efavirenz 300 mg tablet, 60 974861000168106 efavirenz 300 mg tablet 21616011000036105 efavirenz +91401000036100 Oxaliplatin (AS) 200 mg/40 mL concentrated injection, 40 mL vial 177993 89961000036106 Oxaliplatin (AS) 200 mg/40 mL concentrated injection, 40 mL vial 88281000036102 Oxaliplatin (AS) 200 mg/40 mL concentrated injection, 40 mL vial 87701000036103 Oxaliplatin (AS) 87701000036103 Oxaliplatin (AS) 26784011000036105 oxaliplatin 200 mg/40 mL injection, 40 mL vial 22170011000036101 oxaliplatin 200 mg/40 mL injection, vial 21543011000036101 oxaliplatin +958101000168108 Ozvir 800 mg tablet, 120, blister pack 117382 958091000168103 Ozvir 800 mg tablet, 120 958061000168105 Ozvir 800 mg tablet 3956011000036107 Ozvir 3956011000036107 Ozvir 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +1097391000168100 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet, 20, blister pack 287706 1097381000168103 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet, 20 1097341000168108 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 63834011000036101 diclofenac sodium 25 mg enteric tablet, 20 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +653771000168109 Magnevist 7.035 g/15 mL injection solution, 15 mL vial 48494 653761000168103 Magnevist 7.035 g/15 mL injection solution, 15 mL vial 653741000168102 Magnevist 7.035 g/15 mL injection solution, 15 mL vial 920916011000036100 Magnevist 920916011000036100 Magnevist 653751000168100 gadopentetate dimeglumine 7.035 g/15 mL injection, 15 mL vial 653731000168106 gadopentetate dimeglumine 7.035 g/15 mL injection, vial 922037011000036106 gadopentetic acid +172261000036108 Methotrexate (Pfizer (Perth)) 50 mg/2 mL injection solution, 5 x 2 mL vials 10777 172201000036109 Methotrexate (Pfizer (Perth)) 50 mg/2 mL injection solution, 5 x 2 mL vials 172101000036104 Methotrexate (Pfizer (Perth)) 50 mg/2 mL injection solution, 2 mL vial 3913011000036106 Methotrexate (Pfizer (Perth)) 3913011000036106 Methotrexate (Pfizer (Perth)) 26914011000036103 methotrexate 50 mg/2 mL injection, 5 x 2 mL vials 22291011000036103 methotrexate 50 mg/2 mL injection, vial 21342011000036105 methotrexate +60237011000036100 Femazole One (Guardian) 150 mg hard capsule, 1, blister pack 134308 56196011000036101 Femazole One (Guardian) 150 mg hard capsule, 1 53835011000036101 Femazole One (Guardian) 150 mg hard capsule 58641000168106 Femazole One (Guardian) 58641000168106 Femazole One (Guardian) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +890421000168109 Bansep 80 mg film-coated tablet, 30, bottle 173495 841021000168103 Bansep 80 mg film-coated tablet, 30 840951000168101 Bansep 80 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +762141000168108 Uniclar Aqueous 50 microgram/actuation nasal spray, 65 actuations, pump pack 199815 762131000168104 Uniclar Aqueous 50 microgram/actuation nasal spray, 65 actuations 762121000168102 Uniclar Aqueous 50 microgram/actuation nasal spray, actuation 762111000168109 Uniclar Aqueous 762111000168109 Uniclar Aqueous 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +940741000168108 Escitalopram (Apo) 15 mg film-coated tablet, 28, blister pack 146013 940731000168104 Escitalopram (Apo) 15 mg film-coated tablet, 28 940721000168102 Escitalopram (Apo) 15 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +1087661000168101 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 48, blister pack 283196 1087651000168103 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 48 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 986141000168104 ibuprofen 400 mg tablet, 48 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +812281000168109 Iptam 100 mg film-coated tablet, 10, blister pack 124087 812271000168106 Iptam 100 mg film-coated tablet, 10 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 812261000168100 sumatriptan 100 mg tablet, 10 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +884211000168107 Bosentan (Accord) 125 mg film-coated tablet, 500, bottle 235883 884201000168109 Bosentan (Accord) 125 mg film-coated tablet, 500 884051000168100 Bosentan (Accord) 125 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884191000168106 bosentan 125 mg tablet, 500 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +757551000168107 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 10, blister pack 123670 757541000168105 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 10 757531000168101 Ranitidine (Chemists' Own) 150 mg film-coated tablet 757521000168104 Ranitidine (Chemists' Own) 757521000168104 Ranitidine (Chemists' Own) 63188011000036105 ranitidine 150 mg tablet, 10 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +19631000036107 Simvastatin (Sandoz) 40 mg film-coated tablet, 30, blister pack 114800 19041000036109 Simvastatin (Sandoz) 40 mg film-coated tablet, 30 18631000036101 Simvastatin (Sandoz) 40 mg film-coated tablet 933234211000036105 Simvastatin (Sandoz) 933234211000036105 Simvastatin (Sandoz) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +753581000168106 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet, 30, bottle 218247 753571000168108 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet, 30 753561000168102 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet 753551000168104 Olmesartan/Amlodipine 40/5 (Apo) 753551000168104 Olmesartan/Amlodipine 40/5 (Apo) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +20259011000036103 Piroxicam (Terry White Chemists) 10 mg capsule, 50, blister pack 75036 13469011000036109 Piroxicam (Terry White Chemists) 10 mg capsule, 50 6752011000036105 Piroxicam (Terry White Chemists) 10 mg capsule 3688011000036102 Piroxicam (Terry White Chemists) 3688011000036102 Piroxicam (Terry White Chemists) 27762011000036104 piroxicam 10 mg capsule, 50 23093011000036100 piroxicam 10 mg capsule 21531011000036103 piroxicam +69023011000036102 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 2 sachets 140597 66825011000036105 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 2 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71440011000036105 paracetamol 1 g powder for oral liquid, 2 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +757871000168100 Macu-Vision film-coated tablet, 30, bottle 141717 757861000168106 Macu-Vision film-coated tablet, 30 757841000168107 Macu-Vision film-coated tablet 4571000168102 Macu-Vision 4571000168102 Macu-Vision 757851000168109 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 30 757831000168103 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet 757821000168101 ascorbic acid + d-alpha-tocopheryl acid succinate + zinc + copper +61274011000036102 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 500 mL, bottle 77790 57210011000036100 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 500 mL 54238011000036101 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 5 mL 49531000168109 Head Cold and Allergy Elixir (Terry White Chemists) 49531000168109 Head Cold and Allergy Elixir (Terry White Chemists) 63764011000036107 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 500 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +928961000168105 Staphylex 250 mg hard capsule, 30, blister pack 17683 928951000168108 Staphylex 250 mg hard capsule, 30 6384011000036108 Staphylex 250 mg hard capsule 4347011000036100 Staphylex 4347011000036100 Staphylex 928941000168106 flucloxacillin 250 mg capsule, 30 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +970711000168105 Pregabalin (Apo) 300 mg hard capsule, 56, bottle 193254 970651000168102 Pregabalin (Apo) 300 mg hard capsule, 56 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +130451000036106 Oripro 100 mg moulded pessary, 15, strip pack 165111 127631000036103 Oripro 100 mg moulded pessary, 15 124401000036103 Oripro 100 mg moulded pessary 124041000036109 Oripro 124041000036109 Oripro 26988011000036108 progesterone 100 mg pessary, 15 22361011000036109 progesterone 100 mg pessary 21412011000036108 progesterone +1090641000168100 Dupixent with Needle Shield 300 mg/2 mL injection solution, 6 x 2 mL syringes 283127 1090631000168109 Dupixent with Needle Shield 300 mg/2 mL injection solution, 6 x 2 mL syringes 1090521000168107 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090621000168106 dupilumab 300 mg/2 mL injection, 6 x 2 mL syringes 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +19804011000036103 Pirohexal-D 10 mg dispersible tablet, 50, blister pack 63397 13061011000036104 Pirohexal-D 10 mg dispersible tablet, 50 6345011000036101 Pirohexal-D 10 mg dispersible tablet 5501000168106 Pirohexal-D 5501000168106 Pirohexal-D 27881011000036106 piroxicam 10 mg dispersible tablet, 50 23209011000036106 piroxicam 10 mg dispersible tablet 21531011000036103 piroxicam +927700011000036103 Bicard 5 mg tablet, 28, blister pack 164258 927636011000036103 Bicard 5 mg tablet, 28 927589011000036107 Bicard 5 mg tablet 927569011000036109 Bicard 927569011000036109 Bicard 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +933035011000036108 Desferal 500 mg powder for injection, 10 vials 11030 932849011000036103 Desferal 500 mg powder for injection, 10 vials 932715011000036106 Desferal 500 mg powder for injection, 500 mg vial 3060011000036107 Desferal 3060011000036107 Desferal 27313011000036108 desferrioxamine mesilate 500 mg injection, 10 vials 22666011000036107 desferrioxamine mesilate 500 mg injection, vial 21587011000036101 desferrioxamine +79049011000036102 Bispro 5 mg film-coated tablet, 100, blister pack 130180 78792011000036102 Bispro 5 mg film-coated tablet, 100 78626011000036101 Bispro 5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79208011000036105 bisoprolol fumarate 5 mg tablet, 100 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +74711011000036108 Egoderm 1% cream, 25 g, tube 10612 74206011000036105 Egoderm 1% cream, 25 g 5250011000036100 Egoderm 1% cream 4182011000036102 Egoderm 4182011000036102 Egoderm 75351011000036105 ichthammol 1% cream, 25 g 22013011000036107 ichthammol 1% cream 21816011000036101 ichthammol +86105011000036108 Lisinopril (GA) 10 mg uncoated tablet, 10, blister pack 106501 85612011000036101 Lisinopril (GA) 10 mg uncoated tablet, 10 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 86417011000036104 lisinopril 10 mg tablet, 10 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +923581000168104 Zolpidem (Apo) 10 mg film-coated tablet, 7, bottle 127178 923571000168102 Zolpidem (Apo) 10 mg film-coated tablet, 7 734971000168103 Zolpidem (Apo) 10 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1011391000168107 Montelukast (Apotex) 5 mg chewable tablet, 14, blister pack 179117 1011381000168109 Montelukast (Apotex) 5 mg chewable tablet, 14 1011341000168104 Montelukast (Apotex) 5 mg chewable tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 920401000168104 montelukast 5 mg chewable tablet, 14 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +97341000036103 Influvac 2013 injection suspension, 10 x 0.5 mL syringes 81465 96951000036102 Influvac 2013 injection suspension, 10 x 0.5 mL syringes 96421000036100 Influvac 2013 injection suspension, 0.5 mL syringe 35001000168107 Influvac 2013 35001000168107 Influvac 2013 96741000036102 influenza trivalent adult vaccine 2013 injection, 10 x 0.5 mL syringes 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +52184011000036106 Optive eye drops solution, 15 mL, bottle 52079011000036107 Optive eye drops solution, 15 mL 51980011000036104 Optive eye drops solution 61461000168106 Optive 61461000168106 Optive 52323011000036106 carmellose sodium 0.5% + glycerol 0.9% eye drops, 15 mL 52255011000036104 carmellose sodium 0.5% + glycerol 0.9% eye drops 52230011000036107 carmellose sodium + glycerol +80968011000036107 Resdone 3 mg film-coated tablet, 30, blister pack 147674 80545011000036103 Resdone 3 mg film-coated tablet, 30 80185011000036100 Resdone 3 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81627011000036107 risperidone 3 mg tablet, 30 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +43617011000036102 Keppra 500 mg film-coated tablet, 100, blister pack 120509 41227011000036100 Keppra 500 mg film-coated tablet, 100 6902011000036106 Keppra 500 mg film-coated tablet 3677011000036106 Keppra 3677011000036106 Keppra 46172011000036101 levetiracetam 500 mg tablet, 100 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +766161000168108 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack 101581 766151000168106 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack 766131000168100 Eligard 6 Month (leuprorelin acetate 45 mg) modified release injection, 45 mg syringe 58341000168102 Eligard 6 Month 58341000168102 Eligard 6 Month 766141000168109 leuprorelin acetate 45 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 750011000168102 leuprorelin acetate 45 mg modified release injection, syringe 21320011000036109 leuprorelin +766161000168108 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack 101581 766151000168106 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack 4971011000036102 Eligard 6 Month (inert substance) diluent, syringe 58341000168102 Eligard 6 Month 58341000168102 Eligard 6 Month 766141000168109 leuprorelin acetate 45 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +929201000168108 Somac 40 mg enteric tablet, 140, blister pack 69792 41849011000036100 Somac 40 mg enteric tablet, 140 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46655011000036105 pantoprazole 40 mg enteric tablet, 140 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1092011000168109 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray, 3 x 150 actuations, aerosol cans 283867 1092001000168106 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray, 3 x 150 actuations 1091861000168109 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray 39021000168101 Nicorette Quickmist 39021000168101 Nicorette Quickmist 1091991000168109 nicotine 1 mg/actuation oral spray, 3 x 150 actuations 148801000036106 nicotine 1 mg/actuation oral spray, 1 actuation 21432011000036100 nicotine +1108951000168100 Terbinafine (Trust) 1% cream, 15 g, tube 274183 1108941000168102 Terbinafine (Trust) 1% cream, 15 g 1108931000168106 Terbinafine (Trust) 1% cream 1108921000168108 Terbinafine (Trust) 1108921000168108 Terbinafine (Trust) 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +59766011000036101 Panafen Plus film-coated tablet, 75, blister pack 106616 55724011000036106 Panafen Plus film-coated tablet, 75 53642011000036100 Panafen Plus film-coated tablet 53591011000036109 Panafen Plus 53591011000036109 Panafen Plus 63118011000036107 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 75 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +19389011000036100 Nitro-Dur 5 mg/24 hours patch, 30, sachet 52340 12674011000036106 Nitro-Dur 5 mg/24 hours patch, 30 4570011000036104 Nitro-Dur 5 mg/24 hours patch 4271011000036103 Nitro-Dur 4271011000036103 Nitro-Dur 27276011000036102 glyceryl trinitrate 5 mg/24 hours patch, 30 22631011000036105 glyceryl trinitrate 5 mg/24 hours patch 21388011000036102 glyceryl trinitrate +892911000168106 Behistatine 16 mg uncoated tablet, 25, blister pack 212084 892901000168108 Behistatine 16 mg uncoated tablet, 25 892871000168108 Behistatine 16 mg uncoated tablet 892861000168102 Behistatine 892861000168102 Behistatine 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +30961000036108 Olanzapine (Pharmacor) 10 mg film-coated tablet, 28, blister pack 177119 28871000036108 Olanzapine (Pharmacor) 10 mg film-coated tablet, 28 26901000036109 Olanzapine (Pharmacor) 10 mg film-coated tablet 26111000036108 Olanzapine (Pharmacor) 26111000036108 Olanzapine (Pharmacor) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +685831000168105 Subutex 400 microgram sublingual tablet, 100, bottle 76773 685821000168107 Subutex 400 microgram sublingual tablet, 100 685801000168103 Subutex 400 microgram sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685811000168100 buprenorphine 400 microgram sublingual tablet, 100 685791000168104 buprenorphine 400 microgram sublingual tablet 21232011000036101 buprenorphine +850051000168104 Vzole 200 mg film-coated tablet, 10, bottle 238241 849651000168101 Vzole 200 mg film-coated tablet, 10 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46802011000036103 voriconazole 200 mg tablet, 10 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +68650011000036104 Potassium Chloride Sterile (AstraZeneca) 1.5 g (potassium 20 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 12434 66676011000036106 Potassium Chloride Sterile (AstraZeneca) 1.5 g (potassium 20 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 65401011000036106 Potassium Chloride Sterile (AstraZeneca) 1.5 g (potassium 20 mmol)/10 mL concentrated injection, 10 mL ampoule 5321000168106 Potassium Chloride Sterile (AstraZeneca) 5321000168106 Potassium Chloride Sterile (AstraZeneca) 71379011000036106 potassium chloride 1.5 g (potassium 20 mmol)/10 mL injection, 50 x 10 mL ampoules 69981011000036102 potassium chloride 1.5 g (potassium 20 mmol)/10 mL injection, ampoule 21274011000036107 potassium chloride +95731000036100 Azithromycin (Chemmart) 500 mg film-coated tablet, 3, blister pack 195916 94631000036107 Azithromycin (Chemmart) 500 mg film-coated tablet, 3 93411000036104 Azithromycin (Chemmart) 500 mg film-coated tablet 93221000036105 Azithromycin (Chemmart) 93221000036105 Azithromycin (Chemmart) 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +34635011000036103 Adronat Once Weekly 70 mg uncoated tablet, 1, blister pack 119100 34225011000036102 Adronat Once Weekly 70 mg uncoated tablet, 1 33972011000036107 Adronat Once Weekly 70 mg uncoated tablet 31881000168108 Adronat Once Weekly 31881000168108 Adronat Once Weekly 35105011000036104 alendronate 70 mg tablet, 1 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +890381000168100 Bansep 20 mg film-coated tablet, 100, bottle 173494 890371000168103 Bansep 20 mg film-coated tablet, 100 841271000168107 Bansep 20 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890361000168109 atorvastatin 20 mg tablet, 100 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +962401000168105 Omepral 40 mg enteric tablet, 30, blister pack 120593 962391000168108 Omepral 40 mg enteric tablet, 30 962381000168105 Omepral 40 mg enteric tablet 3379011000036105 Omepral 3379011000036105 Omepral 798441000168103 omeprazole 40 mg enteric tablet, 30 798391000168102 omeprazole 40 mg enteric tablet 21676011000036101 omeprazole +74321000036109 Mirtazapine (Pfizer) 45 mg orally disintegrating tablet, 30, blister pack 183409 71901000036101 Mirtazapine (Pfizer) 45 mg orally disintegrating tablet, 30 69511000036101 Mirtazapine (Pfizer) 45 mg orally disintegrating tablet 69301000036108 Mirtazapine (Pfizer) 69301000036108 Mirtazapine (Pfizer) 47701000036107 mirtazapine 45 mg orally disintegrating tablet, 30 47571000036107 mirtazapine 45 mg orally disintegrating tablet 21463011000036102 mirtazapine +812601000168103 Citalopram (Amneal) 10 mg film-coated tablet, 14, blister pack 158879 812591000168105 Citalopram (Amneal) 10 mg film-coated tablet, 14 812561000168103 Citalopram (Amneal) 10 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +69553011000036103 Paroven 250 mg hard capsule, 100, blister pack 60271 67353011000036106 Paroven 250 mg hard capsule, 100 65627011000036106 Paroven 250 mg hard capsule 29071000168102 Paroven 29071000168102 Paroven 71896011000036108 oxerutins 250 mg capsule, 100 70239011000036108 oxerutins 250 mg capsule 69757011000036108 oxerutins +895771000168109 Beriplex P/N 1000 IU (1 x vial, 1 x 40 mL inert diluent vial), 1 pack, composite pack 228338 895761000168103 Beriplex P/N 1000 IU (1 x vial, 1 x 40 mL inert diluent vial), 1 pack 895731000168106 Beriplex P/N 1000 IU (factor II 800 units + factor VII 400 units + factor IX 800 units + factor X 880 units + protein C 600 units + protein S 480 units) powder for injection, vial 895701000168104 Beriplex P/N 1000 IU 895701000168104 Beriplex P/N 1000 IU 895751000168100 factor II 800 units + factor VII 400 units + factor IX 800 units + factor X 880 units + protein C 600 units + protein S 480 units injection [1 vial] (&) inert substance diluent [40 mL vial], 1 pack 895721000168108 factor II 800 units + factor VII 400 units + factor IX 800 units + factor X 880 units + protein C 600 units + protein S 480 units injection, vial 891151000168102 factor II + factor VII + factor IX + factor X + protein C + protein S +895771000168109 Beriplex P/N 1000 IU (1 x vial, 1 x 40 mL inert diluent vial), 1 pack, composite pack 228338 895761000168103 Beriplex P/N 1000 IU (1 x vial, 1 x 40 mL inert diluent vial), 1 pack 895741000168102 Beriplex P/N (inert substance) diluent, 40 mL vial 895701000168104 Beriplex P/N 1000 IU 895711000168101 Beriplex P/N 895751000168100 factor II 800 units + factor VII 400 units + factor IX 800 units + factor X 880 units + protein C 600 units + protein S 480 units injection [1 vial] (&) inert substance diluent [40 mL vial], 1 pack 891181000168109 inert substance diluent, 40 mL vial 21220011000036103 inert substance +20023011000036106 Sotacor 80 mg uncoated tablet, 60, bottle 68963 13259011000036103 Sotacor 80 mg uncoated tablet, 60 6541011000036101 Sotacor 80 mg uncoated tablet 3656011000036106 Sotacor 3656011000036106 Sotacor 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +933213671000036106 Citalopram (IPCA) 20 mg film-coated tablet, 100, bottle 158872 933203191000036104 Citalopram (IPCA) 20 mg film-coated tablet, 100 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 46708011000036102 citalopram 20 mg tablet, 100 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +699851000168103 Alfentanil (GH) 1 mg/2 mL injection solution, 5 x 2 mL ampoules 200007 699841000168100 Alfentanil (GH) 1 mg/2 mL injection solution, 5 x 2 mL ampoules 699831000168109 Alfentanil (GH) 1 mg/2 mL injection solution, 2 mL ampoule 699791000168103 Alfentanil (GH) 699791000168103 Alfentanil (GH) 35186011000036107 alfentanil 1 mg/2 mL injection, 5 x 2 mL ampoules 34896011000036107 alfentanil 1 mg/2 mL injection, ampoule 34836011000036102 alfentanil +1086291000168109 Monofer 100 mg/mL injection solution, 1 mL vial 280666 1086281000168106 Monofer 100 mg/mL injection solution, 1 mL vial 1086261000168102 Monofer 100 mg/mL injection solution, vial 1085781000168107 Monofer 1085781000168107 Monofer 1086271000168108 iron (as ferric derisomaltose) 100 mg/mL injection, 1 mL vial 1086251000168104 iron (as ferric derisomaltose) 100 mg/mL injection, vial 1085791000168105 ferric derisomaltose +97191000036106 Fluvax 2013 injection suspension, 10 x 0.5 mL syringes 117397 96731000036107 Fluvax 2013 injection suspension, 10 x 0.5 mL syringes 96451000036106 Fluvax 2013 injection suspension, 0.5 mL syringe 51821000168105 Fluvax 2013 51821000168105 Fluvax 2013 96741000036102 influenza trivalent adult vaccine 2013 injection, 10 x 0.5 mL syringes 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +805061000168103 Jetrea 500 microgram/0.2 mL concentrated injection, 0.2 mL vial 206494 805051000168100 Jetrea 500 microgram/0.2 mL concentrated injection, 0.2 mL vial 805031000168106 Jetrea 500 microgram/0.2 mL concentrated injection, 0.2 mL vial 804981000168107 Jetrea 804981000168107 Jetrea 805041000168102 ocriplasmin 500 microgram/0.2 mL injection, 0.2 mL vial 805021000168108 ocriplasmin 500 microgram/0.2 mL injection, vial 805011000168101 ocriplasmin +1092051000168105 Anti-Inflammatory (Herron) 1% gel, 20 g, tube 285415 1092041000168108 Anti-Inflammatory (Herron) 1% gel, 20 g 1092031000168104 Anti-Inflammatory (Herron) 1% gel 1092021000168102 Anti-Inflammatory (Herron) 1092021000168102 Anti-Inflammatory (Herron) 900058011000036100 diclofenac sodium 1% gel, 20 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +60790011000036103 Unisom Sleepgel 50 mg soft capsule, 8, blister pack 55323 56746011000036103 Unisom Sleepgel 50 mg soft capsule, 8 54063011000036108 Unisom Sleepgel 50 mg soft capsule 14531000168103 Unisom Sleepgel 14531000168103 Unisom Sleepgel 63548011000036108 diphenhydramine hydrochloride 50 mg capsule, 8 62012011000036109 diphenhydramine hydrochloride 50 mg capsule 61716011000036106 diphenhydramine +1062871000168105 Atorvator 20 mg film-coated tablet, 100, bottle 179822 1062861000168104 Atorvator 20 mg film-coated tablet, 100 1062731000168100 Atorvator 20 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890361000168109 atorvastatin 20 mg tablet, 100 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +671071000168109 Aridon APN 5 mg film-coated tablet, 28, blister pack 167193 671061000168103 Aridon APN 5 mg film-coated tablet, 28 671051000168100 Aridon APN 5 mg film-coated tablet 671011000168101 Aridon APN 671011000168101 Aridon APN 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +61333011000036105 Paracetamol (Herron) 500 mg uncoated tablet, 48, blister pack 80924 57352011000036103 Paracetamol (Herron) 500 mg uncoated tablet, 48 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +832791000168109 Cosopt eye drops solution, 15 x 0.2 mL unit doses, ampoule 165915 832781000168106 Cosopt eye drops solution, 15 x 0.2 mL unit doses 832761000168102 Cosopt eye drops solution, 0.2 mL unit dose 38911000168101 Cosopt 38911000168101 Cosopt 832771000168108 dorzolamide 2% + timolol 0.5% eye drops, 15 x 0.2 mL unit doses 832751000168104 dorzolamide 2% + timolol 0.5% eye drops, unit dose 21483011000036104 dorzolamide + timolol +976421000168109 Strattera 5 mg hard capsule, 56, blister pack 90591 976411000168102 Strattera 5 mg hard capsule, 56 976301000168108 Strattera 5 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 976401000168100 atomoxetine 5 mg capsule, 56 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +907691000168104 Celecoxib (Ascent) 100 mg capsule, 20, blister pack 204616 907681000168102 Celecoxib (Ascent) 100 mg capsule, 20 907651000168109 Celecoxib (Ascent) 100 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +753421000168108 Oxycodone (ZP) 5 mg hard capsule, 20, blister pack 227844 753411000168101 Oxycodone (ZP) 5 mg hard capsule, 20 753401000168104 Oxycodone (ZP) 5 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +790961000168105 Quetiapine XR (AS) 200 mg modified release tablet, 30, blister pack 226820 790951000168108 Quetiapine XR (AS) 200 mg modified release tablet, 30 790911000168107 Quetiapine XR (AS) 200 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 790941000168106 quetiapine 200 mg modified release tablet, 30 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +1020071000168108 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 4, blister pack 190327 1020061000168102 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 4 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82550011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 4 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +18100011000036102 Cytotec 200 microgram uncoated tablet, 120, bottle 10237 13079011000036108 Cytotec 200 microgram uncoated tablet, 120 6363011000036108 Cytotec 200 microgram uncoated tablet 4067011000036106 Cytotec 4067011000036106 Cytotec 27536011000036106 misoprostol 200 microgram tablet, 120 22876011000036106 misoprostol 200 microgram tablet 21520011000036107 misoprostol +774911000168109 Nexazole 40 mg enteric tablet, 56, blister pack 205824 774901000168106 Nexazole 40 mg enteric tablet, 56 774811000168103 Nexazole 40 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 774891000168107 esomeprazole 40 mg enteric tablet, 56 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +786621000168107 Olmesartan/Amlodipine 40/5 (GenRx) film-coated tablet, 30, blister pack 218246 786611000168100 Olmesartan/Amlodipine 40/5 (GenRx) film-coated tablet, 30 786601000168103 Olmesartan/Amlodipine 40/5 (GenRx) film-coated tablet 786591000168105 Olmesartan/Amlodipine 40/5 (GenRx) 786591000168105 Olmesartan/Amlodipine 40/5 (GenRx) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +992221000168103 Irinotecan (Apo) 300 mg/15 mL concentrated injection, 15 mL vial 246736 992211000168105 Irinotecan (Apo) 300 mg/15 mL concentrated injection, 15 mL vial 992201000168107 Irinotecan (Apo) 300 mg/15 mL concentrated injection, 15 mL vial 992151000168104 Irinotecan (Apo) 992151000168104 Irinotecan (Apo) 51560011000036109 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, 15 mL vial 51003011000036104 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, vial 21503011000036106 irinotecan +925361011000036108 Claratyne-D with Decongestant Repetab modified release tablet, 6, blister pack 53516 924897011000036107 Claratyne-D with Decongestant Repetab modified release tablet, 6 924539011000036107 Claratyne-D with Decongestant Repetab modified release tablet 62911000168105 Claratyne-D with Decongestant Repetab 62911000168105 Claratyne-D with Decongestant Repetab 46446011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 6 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +18306011000036105 Ondansetron (RL) 8 mg film-coated tablet, 10, blister pack 116419 11514011000036106 Ondansetron (RL) 8 mg film-coated tablet, 10 4952011000036106 Ondansetron (RL) 8 mg film-coated tablet 3915011000036107 Ondansetron (RL) 3915011000036107 Ondansetron (RL) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +774831000168108 Nexazole 40 mg enteric tablet, 7, blister pack 205824 774821000168105 Nexazole 40 mg enteric tablet, 7 774811000168103 Nexazole 40 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1034011000168107 Atomoxetine (GXP) 5 mg hard capsule, 56, blister pack 234852 1034001000168109 Atomoxetine (GXP) 5 mg hard capsule, 56 1033841000168100 Atomoxetine (GXP) 5 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 976401000168100 atomoxetine 5 mg capsule, 56 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +926833011000036104 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 90, blister pack 176510 926229011000036107 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 90 925685011000036101 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1087581000168106 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 24, blister pack 283196 1087571000168108 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 24 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 932369011000036108 ibuprofen 400 mg tablet, 24 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +18836011000036100 Alphacin 250 mg capsule, 24, bottle 17689 12148011000036104 Alphacin 250 mg capsule, 24 5013011000036107 Alphacin 250 mg capsule 3836011000036102 Alphacin 3836011000036102 Alphacin 26947011000036103 ampicillin 250 mg capsule, 24 22322011000036109 ampicillin 250 mg capsule 21671011000036106 ampicillin +970851000168101 Lypralin 300 mg hard capsule, 30, bottle 235848 970841000168103 Lypralin 300 mg hard capsule, 30 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970831000168107 pregabalin 300 mg capsule, 30 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +753461000168103 Oxycodone (ZP) 5 mg hard capsule, 60, bottle 227850 753431000168106 Oxycodone (ZP) 5 mg hard capsule, 60 753401000168104 Oxycodone (ZP) 5 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +43921011000036104 Pravastatin Sodium (Generic Health) 10 mg film-coated tablet, 30, blister pack 139595 41413011000036104 Pravastatin Sodium (Generic Health) 10 mg film-coated tablet, 30 39954011000036103 Pravastatin Sodium (Generic Health) 10 mg film-coated tablet 39647011000036106 Pravastatin Sodium (Generic Health) 39647011000036106 Pravastatin Sodium (Generic Health) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +941941000168104 Goricap 500 microgram hard capsule, 28, blister pack 139573 941931000168108 Goricap 500 microgram hard capsule, 28 941921000168105 Goricap 500 microgram hard capsule 941911000168103 Goricap 941911000168103 Goricap 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +792011000168107 Trexject 25 mg/0.5 mL injection solution, 24 x 0.5 mL syringes 233721 792001000168109 Trexject 25 mg/0.5 mL injection solution, 24 x 0.5 mL syringes 791811000168109 Trexject 25 mg/0.5 mL injection solution, 0.5 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791991000168107 methotrexate 25 mg/0.5 mL injection, 24 x 0.5 mL syringes 791801000168106 methotrexate 25 mg/0.5 mL injection, syringe 21342011000036105 methotrexate +1066161000168105 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 24, blister pack 210587 1066151000168108 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 24 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 52866011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 24 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +875551000168103 Bispro 7.5 mg film-coated tablet, 42, blister pack 130181 875541000168100 Bispro 7.5 mg film-coated tablet, 42 875451000168104 Bispro 7.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 875531000168109 bisoprolol fumarate 7.5 mg tablet, 42 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +1057571000168100 Ramipril (Auro) 10 mg uncoated tablet, 30, blister pack 175220 1057561000168106 Ramipril (Auro) 10 mg uncoated tablet, 30 1057521000168101 Ramipril (Auro) 10 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +754511000168103 Oxycodone (AS) 10 mg hard capsule, 60, blister pack 227860 754501000168101 Oxycodone (AS) 10 mg hard capsule, 60 754471000168107 Oxycodone (AS) 10 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +91481000036106 Ozin 5 mg uncoated tablet, 30, bottle 179920 89741000036108 Ozin 5 mg uncoated tablet, 30 2111000036104 Ozin 5 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 89751000036106 olanzapine 5 mg tablet, 30 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +744921000168103 Abstral 600 microgram sublingual tablet, 30, blister pack 228208 744911000168105 Abstral 600 microgram sublingual tablet, 30 744861000168101 Abstral 600 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744901000168107 fentanyl 600 microgram sublingual tablet, 30 744851000168103 fentanyl 600 microgram sublingual tablet 21258011000036102 fentanyl +50329011000036103 PK AID II powder for oral liquid, 250 g, sachet 49479011000036100 PK AID II powder for oral liquid, 250 g 48547011000036104 PK AID II powder for oral liquid 48309011000036103 PK AID II 48309011000036103 PK AID II 51436011000036107 amino acid formula without phenylalanine powder for oral liquid, 250 g 50952011000036101 amino acid formula without phenylalanine powder for oral liquid 50722011000036107 amino acid formula without phenylalanine +19523011000036106 Acyclo-V 200 mg film-coated tablet, 90, blister pack 56372 12795011000036108 Acyclo-V 200 mg film-coated tablet, 90 6088011000036102 Acyclo-V 200 mg film-coated tablet 3992011000036100 Acyclo-V 3992011000036100 Acyclo-V 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +34818011000036107 Ritalin LA 40 mg modified release capsule, 100, bottle 82959 34393011000036103 Ritalin LA 40 mg modified release capsule, 100 34069011000036101 Ritalin LA 40 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 35237011000036102 methylphenidate hydrochloride 40 mg modified release capsule, 100 34909011000036107 methylphenidate hydrochloride 40 mg modified release capsule 21277011000036101 methylphenidate +838091000168105 Pneumovax-23 injection solution, 0.5 mL vial 10507 838081000168107 Pneumovax-23 injection solution, 0.5 mL vial 838061000168103 Pneumovax-23 injection solution, 0.5 mL vial 57241000168107 Pneumovax-23 57241000168107 Pneumovax-23 838071000168109 pneumococcal 23 valent vaccine injection, 0.5 mL vial 838051000168100 pneumococcal 23 valent vaccine injection, 0.5 mL vial 838041000168102 pneumococcal 23 valent vaccine +740511000168108 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet, 10, blister pack 163653 740501000168105 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet, 10 740451000168108 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet 740371000168106 Ondansetron ODT (SZ) 740371000168106 Ondansetron ODT (SZ) 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +927911000168108 Prostin F2 Alpha 40 mg/8 mL injection solution, 8 mL ampoule 47639 927901000168105 Prostin F2 Alpha 40 mg/8 mL injection solution, 8 mL ampoule 927881000168108 Prostin F2 Alpha 40 mg/8 mL injection solution, 8 mL ampoule 35431000168108 Prostin F2 Alpha 35431000168108 Prostin F2 Alpha 927891000168106 dinoprost 40 mg/8 mL injection, 8 mL ampoule 927871000168105 dinoprost 40 mg/8 mL injection, ampoule 37749011000036101 dinoprost +927921000168101 Flunomide 20 mg film-coated tablet, 30, bottle 123311 927851000168101 Flunomide 20 mg film-coated tablet, 30 927841000168103 Flunomide 20 mg film-coated tablet 927831000168107 Flunomide 927831000168107 Flunomide 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +44337011000036100 Novonorm 1 mg uncoated tablet, 120, blister pack 67269 41804011000036105 Novonorm 1 mg uncoated tablet, 120 40207011000036103 Novonorm 1 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46610011000036107 repaglinide 1 mg tablet, 120 45239011000036108 repaglinide 1 mg tablet 44883011000036104 repaglinide +965371000168101 Zactin 20 mg tablet, 28, bottle 90914 844391000168100 Zactin 20 mg tablet, 28 844381000168103 Zactin 20 mg tablet 2952011000036104 Zactin 2952011000036104 Zactin 844321000168102 fluoxetine 20 mg tablet, 28 844301000168106 fluoxetine 20 mg tablet 21411011000036102 fluoxetine +1062951000168109 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) uncoated tablet, 20, blister pack 140610 1062941000168107 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) uncoated tablet, 20 1062931000168103 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) uncoated tablet 1062921000168101 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) 1062921000168101 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +19886011000036107 Zeldox 60 mg hard capsule, 60, blister pack 65528 13133011000036102 Zeldox 60 mg hard capsule, 60 6416011000036106 Zeldox 60 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27571011000036104 ziprasidone 60 mg capsule, 60 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +766231000168105 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 2 x 0.6 mL syringes 67149 766221000168107 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 2 x 0.6 mL syringes 766201000168103 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766211000168100 nadroparin calcium 11 400 anti-Xa units/0.6 mL injection, 2 x 0.6 mL syringes 766191000168101 nadroparin calcium 11 400 anti-Xa units/0.6 mL injection, syringe 765071000168107 nadroparin +959061000168103 Proquad powder for injection, 1 vial 126153 959051000168100 Proquad powder for injection, 1 vial 959031000168106 Proquad (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 958931000168103 Proquad 958931000168103 Proquad 959041000168102 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, 1 vial 959021000168108 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +878771000168109 Carvedilol (Blooms The Chemist) 3.125 mg film-coated tablet, 30, blister pack 210740 878761000168103 Carvedilol (Blooms The Chemist) 3.125 mg film-coated tablet, 30 878751000168100 Carvedilol (Blooms The Chemist) 3.125 mg film-coated tablet 878221000168103 Carvedilol (Blooms The Chemist) 878221000168103 Carvedilol (Blooms The Chemist) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +17822011000036109 Avapro 150 mg film-coated tablet, 30, bottle 101735 11235011000036105 Avapro 150 mg film-coated tablet, 30 5344011000036102 Avapro 150 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +824071000168102 Basaglar 100 units/mL injection solution, 5 x 3 mL cartridges 215551 824061000168108 Basaglar 100 units/mL injection solution, 5 x 3 mL cartridges 823991000168104 Basaglar 100 units/mL injection solution, 3 mL cartridge 823981000168102 Basaglar 823981000168102 Basaglar 27848011000036108 insulin glargine 100 units/mL injection, 5 x 3 mL cartridges 23176011000036105 insulin glargine 100 units/mL injection, cartridge 21815011000036108 insulin glargine +1100361000168100 Delucon 200 mg film-coated tablet, 100, bottle 172850 1100351000168102 Delucon 200 mg film-coated tablet, 100 1601000036103 Delucon 200 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 1075261000168102 quetiapine 200 mg tablet, 100 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +37422011000036100 Marcain 0.5% (50 mg/10 mL) injection solution, 5 x 10 mL ampoules 11937 36671011000036107 Marcain 0.5% (50 mg/10 mL) injection solution, 5 x 10 mL ampoules 36036011000036107 Marcain 0.5% (50 mg/10 mL) injection solution, 10 mL ampoule 12651000168100 Marcain 12651000168100 Marcain 38584011000036103 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, 5 x 10 mL ampoules 37857011000036108 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, ampoule 37702011000036102 bupivacaine +34622011000036108 Oxynorm 20 mg/2 mL injection solution, 5 x 2 mL ampoules 106966 34209011000036108 Oxynorm 20 mg/2 mL injection solution, 5 x 2 mL ampoules 33968011000036102 Oxynorm 20 mg/2 mL injection solution, 2 mL ampoule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35094011000036107 oxycodone hydrochloride 20 mg/2 mL injection, 5 x 2 mL ampoules 34846011000036103 oxycodone hydrochloride 20 mg/2 mL injection, ampoule 21259011000036105 oxycodone +720311000168101 Strepsils Cool lozenge, 16, blister pack 165328 720301000168104 Strepsils Cool lozenge, 16 720291000168100 Strepsils Cool lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +931563011000036107 Cholpra 10 mg film-coated tablet, 90, bottle 163542 930724011000036105 Cholpra 10 mg film-coated tablet, 90 930028011000036101 Cholpra 10 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932406011000036105 pravastatin sodium 10 mg tablet, 90 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +20105011000036107 Aciclovir (GenRx) 200 mg tablet, 90, blister pack 71816 13330011000036101 Aciclovir (GenRx) 200 mg tablet, 90 6615011000036102 Aciclovir (GenRx) 200 mg tablet 3828011000036101 Aciclovir (GenRx) 3828011000036101 Aciclovir (GenRx) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +1113201000168101 Ibuprofen plus Paracetamol (Apohealth) film-coated tablet, 24, blister pack 277635 1113191000168104 Ibuprofen plus Paracetamol (Apohealth) film-coated tablet, 24 1113161000168106 Ibuprofen plus Paracetamol (Apohealth) film-coated tablet 1113151000168109 Ibuprofen plus Paracetamol (Apohealth) 1113151000168109 Ibuprofen plus Paracetamol (Apohealth) 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +44314011000036101 ClindaTech 1% solution, 50 mL, bottle 66687 41781011000036108 ClindaTech 1% solution, 50 mL 40197011000036103 ClindaTech 1% solution 39609011000036105 ClindaTech 39609011000036105 ClindaTech 46587011000036101 clindamycin hydrochloride 1% solution, 50 mL 45230011000036102 clindamycin hydrochloride 1% solution 21255011000036108 clindamycin +926810011000036102 Cobasol 2 mg uncoated tablet, 30, bottle 170403 926206011000036108 Cobasol 2 mg uncoated tablet, 30 925675011000036108 Cobasol 2 mg uncoated tablet 925520011000036107 Cobasol 925520011000036107 Cobasol 27391011000036108 cabergoline 2 mg tablet, 30 22740011000036106 cabergoline 2 mg tablet 21526011000036105 cabergoline +44451011000036103 Doxycycline (Terry White Chemists) 100 mg modified release capsule, 21, blister pack 74015 41907011000036107 Doxycycline (Terry White Chemists) 100 mg modified release capsule, 21 40259011000036101 Doxycycline (Terry White Chemists) 100 mg modified release capsule 4107011000036101 Doxycycline (Terry White Chemists) 4107011000036101 Doxycycline (Terry White Chemists) 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +766391000168104 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 2 x 0.8 mL syringes 67148 766381000168102 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 2 x 0.8 mL syringes 766361000168106 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 0.8 mL syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766371000168100 nadroparin calcium 15 200 anti-Xa units/0.8 mL injection, 2 x 0.8 mL syringes 766351000168109 nadroparin calcium 15 200 anti-Xa units/0.8 mL injection, syringe 765071000168107 nadroparin +60267011000036108 Fexo (Guardian) 120 mg film-coated tablet, 20, blister pack 134668 56226011000036106 Fexo (Guardian) 120 mg film-coated tablet, 20 53845011000036100 Fexo (Guardian) 120 mg film-coated tablet 53537011000036107 Fexo (Guardian) 53537011000036107 Fexo (Guardian) 52884011000036101 fexofenadine hydrochloride 120 mg tablet, 20 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +746131000168109 Cholstat 40 mg uncoated tablet, 100, blister pack 98489 746121000168106 Cholstat 40 mg uncoated tablet, 100 7552011000036105 Cholstat 40 mg uncoated tablet 3920011000036105 Cholstat 3920011000036105 Cholstat 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +809591000168102 Azep 0.1% nasal spray, 10 mL, pump pack 104853 809581000168100 Azep 0.1% nasal spray, 10 mL 809531000168101 Azep 0.1% nasal spray 73734011000036104 Azep 73734011000036104 Azep 809571000168103 azelastine hydrochloride 0.1% nasal spray, 10 mL 809521000168104 azelastine hydrochloride 0.1% nasal spray 75004011000036100 azelastine +1080271000168106 Salofalk 1 g enteric tablet, 60, blister pack 285903 1080261000168100 Salofalk 1 g enteric tablet, 60 1080151000168109 Salofalk 1 g enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 1080251000168102 mesalazine 1 g enteric tablet, 60 1080141000168107 mesalazine 1 g enteric tablet 21351011000036101 mesalazine +760521000168108 Sildenafil (DRLA) 50 mg film-coated tablet, 4, blister pack 186293 760511000168101 Sildenafil (DRLA) 50 mg film-coated tablet, 4 760471000168105 Sildenafil (DRLA) 50 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +893031000168108 Betahistine (GXP) 16 mg uncoated tablet, 25, blister pack 212082 893021000168105 Betahistine (GXP) 16 mg uncoated tablet, 25 892991000168102 Betahistine (GXP) 16 mg uncoated tablet 892981000168100 Betahistine (GXP) 892981000168100 Betahistine (GXP) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +927601000168101 Cefotaxime (Lupin) 1 g powder for injection, 5 vials 94244 927591000168108 Cefotaxime (Lupin) 1 g powder for injection, 5 vials 927571000168107 Cefotaxime (Lupin) 1 g powder for injection, vial 927421000168107 Cefotaxime (Lupin) 927421000168107 Cefotaxime (Lupin) 927581000168105 cefotaxime 1 g injection, 5 vials 33682011000036102 cefotaxime 1 g injection, vial 21327011000036105 cefotaxime +675641000168106 Celaxib 200 mg hard capsule, 30, bottle 206673 675631000168102 Celaxib 200 mg hard capsule, 30 675621000168100 Celaxib 200 mg hard capsule 675611000168107 Celaxib 675611000168107 Celaxib 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +931606011000036107 Pratin 80 mg film-coated tablet, 500, bottle 163559 930767011000036109 Pratin 80 mg film-coated tablet, 500 930039011000036106 Pratin 80 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 52330011000036100 pravastatin sodium 80 mg tablet, 500 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +920801011000036100 Ceftriaxone (DBL) 1 g powder for injection, 1 vial 92399 920480011000036102 Ceftriaxone (DBL) 1 g powder for injection, 1 vial 920212011000036100 Ceftriaxone (DBL) 1 g powder for injection, vial 920083011000036101 Ceftriaxone (DBL) 920083011000036101 Ceftriaxone (DBL) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +82339011000036109 Epiramax 50 mg film-coated tablet, 60, bottle 135593 82132011000036106 Epiramax 50 mg film-coated tablet, 60 82002011000036108 Epiramax 50 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +121631000036109 Levetiracetam (Sandoz) 500 mg/5 mL concentrated injection, 5 mL vial 193204 120591000036104 Levetiracetam (Sandoz) 500 mg/5 mL concentrated injection, 5 mL vial 119661000036106 Levetiracetam (Sandoz) 500 mg/5 mL concentrated injection, 5 mL vial 87284011000036105 Levetiracetam (Sandoz) 87284011000036105 Levetiracetam (Sandoz) 46170011000036100 levetiracetam 500 mg/5 mL injection, 5 mL vial 45019011000036106 levetiracetam 500 mg/5 mL injection, vial 21766011000036102 levetiracetam +928959011000036101 Pioglitazone (Pharmacor) 45 mg uncoated tablet, 7, blister pack 156715 928320011000036103 Pioglitazone (Pharmacor) 45 mg uncoated tablet, 7 927948011000036104 Pioglitazone (Pharmacor) 45 mg uncoated tablet 927785011000036106 Pioglitazone (Pharmacor) 927785011000036106 Pioglitazone (Pharmacor) 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +907531000168102 Celecoxib (Lupin) 100 mg hard capsule, 60, blister pack 196181 907521000168100 Celecoxib (Lupin) 100 mg hard capsule, 60 907321000168109 Celecoxib (Lupin) 100 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +965091000168103 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 14, blister pack 134861 965081000168101 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 14 965051000168108 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 46431011000036106 clarithromycin 500 mg tablet, 14 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +18139011000036103 Lamidus 100 mg tablet, 56, blister pack 116731 11540011000036105 Lamidus 100 mg tablet, 56 5921011000036107 Lamidus 100 mg tablet 3897011000036105 Lamidus 3897011000036105 Lamidus 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +744761000168105 Abstral 300 microgram sublingual tablet, 30, blister pack 228199 744751000168108 Abstral 300 microgram sublingual tablet, 30 744701000168109 Abstral 300 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744741000168106 fentanyl 300 microgram sublingual tablet, 30 744691000168109 fentanyl 300 microgram sublingual tablet 21258011000036102 fentanyl +881561000168109 Candesartan HCTZ 32/25 (GPPL) uncoated tablet, 30, bottle 253513 881551000168107 Candesartan HCTZ 32/25 (GPPL) uncoated tablet, 30 881541000168105 Candesartan HCTZ 32/25 (GPPL) uncoated tablet 881531000168101 Candesartan HCTZ 32/25 (GPPL) 881531000168101 Candesartan HCTZ 32/25 (GPPL) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +893071000168106 Betahistine (GXP) 16 mg uncoated tablet, 60, blister pack 212082 893061000168100 Betahistine (GXP) 16 mg uncoated tablet, 60 892991000168102 Betahistine (GXP) 16 mg uncoated tablet 892981000168100 Betahistine (GXP) 892981000168100 Betahistine (GXP) 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +77246011000036109 Ozapace 2 mg uncoated tablet, 30, blister pack 149997 76662011000036101 Ozapace 2 mg uncoated tablet, 30 76098011000036106 Ozapace 2 mg uncoated tablet 75927011000036108 Ozapace 75927011000036108 Ozapace 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +753301000168107 Oxycodone (ZP) 20 mg hard capsule, 60, bottle 227835 753291000168106 Oxycodone (ZP) 20 mg hard capsule, 60 753261000168104 Oxycodone (ZP) 20 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +763511000168106 Zinnat 125 mg/5 mL powder for oral liquid, 200 mL, bottle 81297 763501000168108 Zinnat 125 mg/5 mL powder for oral liquid, 200 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763491000168101 cefuroxime 125 mg/5 mL powder for oral liquid, 200 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +763511000168106 Zinnat 125 mg/5 mL powder for oral liquid, 200 mL, bottle 178687 763501000168108 Zinnat 125 mg/5 mL powder for oral liquid, 200 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763491000168101 cefuroxime 125 mg/5 mL powder for oral liquid, 200 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +61487011000036101 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 50, blister pack 91993 57412011000036102 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 50 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +878611000168108 Rizatriptan (Blooms The Chemist) 5 mg orally disintegrating tablet, 2, blister pack 222332 878601000168105 Rizatriptan (Blooms The Chemist) 5 mg orally disintegrating tablet, 2 878581000168101 Rizatriptan (Blooms The Chemist) 5 mg orally disintegrating tablet 877761000168102 Rizatriptan (Blooms The Chemist) 877761000168102 Rizatriptan (Blooms The Chemist) 878591000168103 rizatriptan 5 mg orally disintegrating tablet, 2 878571000168104 rizatriptan 5 mg orally disintegrating tablet 83422011000036102 rizatriptan +65921000036102 Rescue Me Acne Blemish Treatment cream, 25 mL, tube 13253 63341000036108 Rescue Me Acne Blemish Treatment cream, 25 mL 60641000036107 Rescue Me Acne Blemish Treatment cream 53301000168106 Rescue Me Acne Blemish Treatment 53301000168106 Rescue Me Acne Blemish Treatment 63351000036106 resorcinol 0.585% + precipitated sulfur 4% cream, 25 mL 60651000036105 resorcinol 0.585% + precipitated sulfur 4% cream 66801000036105 resorcinol + precipitated sulfur +677011000168107 Adefovir Dipivoxil (Apo) 10 mg tablet, 30, bottle 212048 676991000168102 Adefovir Dipivoxil (Apo) 10 mg tablet, 30 676971000168103 Adefovir Dipivoxil (Apo) 10 mg tablet 676951000168107 Adefovir Dipivoxil (Apo) 676951000168107 Adefovir Dipivoxil (Apo) 28204011000036109 adefovir dipivoxil 10 mg tablet, 30 23516011000036105 adefovir dipivoxil 10 mg tablet 32653011000036109 adefovir +921950011000036101 Resolve Tinea 2% cream, 25 g, tube 46316 921508011000036102 Resolve Tinea 2% cream, 25 g 921047011000036109 Resolve Tinea 2% cream 920946011000036105 Resolve Tinea 920946011000036105 Resolve Tinea 922630011000036104 miconazole nitrate 2% cream, 25 g 22195011000036104 miconazole nitrate 2% cream 21454011000036108 miconazole +44297011000036103 Abelcet 100 mg/20 mL injection suspension, 10 x 20 mL vials 65406 41768011000036101 Abelcet 100 mg/20 mL injection suspension, 10 x 20 mL vials 40190011000036104 Abelcet 100 mg/20 mL injection suspension, 20 mL vial 39665011000036109 Abelcet 39665011000036109 Abelcet 46575011000036104 amphotericin B (as lipid complex) 100 mg/20 mL injection, 10 x 20 mL vials 45224011000036105 amphotericin B (as lipid complex) 100 mg/20 mL injection, vial 44943011000036103 amphotericin B lipid complex +60446011000036103 Sleep Right (Your Pharmacy) 25 mg tablet, 20, blister pack 148313 56405011000036109 Sleep Right (Your Pharmacy) 25 mg tablet, 20 53908011000036106 Sleep Right (Your Pharmacy) 25 mg tablet 53166011000036108 Sleep Right (Your Pharmacy) 53166011000036108 Sleep Right (Your Pharmacy) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +944911000168101 Doxycycline (GA) 100 mg film-coated tablet, 21, blister pack 148815 944901000168104 Doxycycline (GA) 100 mg film-coated tablet, 21 944841000168106 Doxycycline (GA) 100 mg film-coated tablet 944441000168108 Doxycycline (GA) 944441000168108 Doxycycline (GA) 33813011000036104 doxycycline 100 mg tablet, 21 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +19287011000036101 Simplotan 500 mg film-coated tablet, 4, blister pack 48964 12577011000036106 Simplotan 500 mg film-coated tablet, 4 4653011000036103 Simplotan 500 mg film-coated tablet 3458011000036108 Simplotan 3458011000036108 Simplotan 27213011000036100 tinidazole 500 mg tablet, 4 22573011000036101 tinidazole 500 mg tablet 21670011000036104 tinidazole +697201000168105 Pramipexole (Apo) 1 mg uncoated tablet, 100, bottle 168555 697191000168107 Pramipexole (Apo) 1 mg uncoated tablet, 100 697181000168109 Pramipexole (Apo) 1 mg uncoated tablet 697171000168106 Pramipexole (Apo) 697171000168106 Pramipexole (Apo) 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +675601000168109 Telmisartan HCT 40/12.5mg (GH) multilayer tablet, 28, blister pack 208070 675591000168102 Telmisartan HCT 40/12.5mg (GH) multilayer tablet, 28 675581000168100 Telmisartan HCT 40/12.5mg (GH) multilayer tablet 675571000168103 Telmisartan HCT 40/12.5mg (GH) 675571000168103 Telmisartan HCT 40/12.5mg (GH) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +43840011000036102 Mirtazapine (GenRx) 15 mg film-coated tablet, 30, bottle 127667 41338011000036107 Mirtazapine (GenRx) 15 mg film-coated tablet, 30 39908011000036103 Mirtazapine (GenRx) 15 mg film-coated tablet 32202011000036106 Mirtazapine (GenRx) 32202011000036106 Mirtazapine (GenRx) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +60083011000036109 Cold and Flu plus Cough Day and Night (Parke Davis) (18 x Day capsules, 6 x Night capsules), 24, blister pack 126489 56044011000036109 Cold and Flu plus Cough Day and Night (Parke Davis) (18 x Day capsules, 6 x Night capsules), 24 53769011000036107 Cold and Flu plus Cough Day and Night (Night) (Parke Davis) hard capsule 28671000168100 Cold and Flu plus Cough Day and Night (Parke Davis) 28911000168103 Cold and Flu plus Cough Day and Night (Night) (Parke Davis) 63209011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 62063011000036103 paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61767011000036105 paracetamol + chlorphenamine + dextromethorphan +60083011000036109 Cold and Flu plus Cough Day and Night (Parke Davis) (18 x Day capsules, 6 x Night capsules), 24, blister pack 126489 56044011000036109 Cold and Flu plus Cough Day and Night (Parke Davis) (18 x Day capsules, 6 x Night capsules), 24 53768011000036104 Cold and Flu plus Cough Day and Night (Day) (Parke Davis) hard capsule 28671000168100 Cold and Flu plus Cough Day and Night (Parke Davis) 28791000168105 Cold and Flu plus Cough Day and Night (Day) (Parke Davis) 63209011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 61888011000036105 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61764011000036104 paracetamol + phenylephrine + dextromethorphan +44324011000036109 Crixivan 400 mg hard capsule, 84, blister pack 66979 41791011000036107 Crixivan 400 mg hard capsule, 84 6329011000036102 Crixivan 400 mg hard capsule 3537011000036103 Crixivan 3537011000036103 Crixivan 46597011000036100 indinavir 400 mg capsule, 84 22855011000036102 indinavir 400 mg capsule 21424011000036107 indinavir +68971011000036108 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 6 sachets 134408 66773011000036106 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 6 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71425011000036104 paracetamol 500 mg powder for oral liquid, 6 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +68787011000036100 Pinetarsol 2.3% bath oil, 15 mL sachet 12697 66705011000036104 Pinetarsol 2.3% bath oil, 15 mL sachet 65379011000036106 Pinetarsol 2.3% bath oil, 15 mL sachet 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71388011000036108 tar 2.3% bath oil, 15 mL sachet 69989011000036103 tar 2.3% bath oil, sachet 21402011000036105 tar +69330011000036107 Benzac AC 5% modified gel, 50 g, tube 25271 67130011000036108 Benzac AC 5% modified gel, 50 g 65322011000036102 Benzac AC 5% modified gel 17681000168105 Benzac AC 17681000168105 Benzac AC 71695011000036108 benzoyl peroxide 5% modified gel, 50 g 70132011000036101 benzoyl peroxide 5% modified gel 61709011000036104 benzoyl peroxide +649661000168106 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 100 mL, bottle 178301 649651000168109 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 100 mL 649641000168107 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1090401000168104 Heartburn Relief (Trust) 150 mg film-coated tablet, 14, strip pack 280579 1090391000168101 Heartburn Relief (Trust) 150 mg film-coated tablet, 14 1090381000168104 Heartburn Relief (Trust) 150 mg film-coated tablet 1090371000168102 Heartburn Relief (Trust) 1090371000168102 Heartburn Relief (Trust) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +988131000168107 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 25 mL, bottle 178432 988121000168109 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 25 mL 988111000168102 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 63163011000036103 ibuprofen 40 mg/mL oral liquid, 25 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +921815011000036109 South Australian Shark Cartilage 500 mg hard capsule, 400, bottle 122300 921391011000036106 South Australian Shark Cartilage 500 mg hard capsule, 400 920976011000036109 South Australian Shark Cartilage 500 mg hard capsule 920967011000036101 South Australian Shark Cartilage 920967011000036101 South Australian Shark Cartilage 922535011000036103 shark cartilage 500 mg capsule, 400 922073011000036100 shark cartilage 500 mg capsule 922056011000036109 shark cartilage +50548011000036106 Prilace 10 mg hard capsule, 30, blister pack 133085 11966011000036106 Prilace 10 mg hard capsule, 30 5555011000036103 Prilace 10 mg hard capsule 3737011000036102 Prilace 3737011000036102 Prilace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +705871000168100 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, tube 705851000168109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 705841000168107 glycerol 10% + cetomacrogol aqueous cream, 100 mL 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +43934011000036104 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 100, blister pack 142882 41426011000036102 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 100 39900011000036100 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +933213351000036107 Lisinopril (IPCA) 5 mg uncoated tablet, 84, blister pack 152716 933201671000036108 Lisinopril (IPCA) 5 mg uncoated tablet, 84 933194781000036104 Lisinopril (IPCA) 5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 83482011000036105 lisinopril 5 mg tablet, 84 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +979481000168100 Paracetamol (CA) 500 mg uncoated tablet, 50, blister pack 197677 979471000168103 Paracetamol (CA) 500 mg uncoated tablet, 50 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +927681000168109 Serenace 20 mg uncoated tablet, 100, bottle 10261 927671000168106 Serenace 20 mg uncoated tablet, 100 927651000168102 Serenace 20 mg uncoated tablet 3608011000036103 Serenace 3608011000036103 Serenace 927661000168100 haloperidol 20 mg tablet, 100 927641000168104 haloperidol 20 mg tablet 21443011000036108 haloperidol +926801011000036107 Aspirin (Mayne Pharma) 100 mg uncoated tablet, 112, blister pack 167775 926197011000036106 Aspirin (Mayne Pharma) 100 mg uncoated tablet, 112 925670011000036104 Aspirin (Mayne Pharma) 100 mg uncoated tablet 925552011000036105 Aspirin (Mayne Pharma) 925552011000036105 Aspirin (Mayne Pharma) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +926801011000036107 Aspirin (Mayne Pharma) 100 mg uncoated tablet, 112, blister pack 194209 926197011000036106 Aspirin (Mayne Pharma) 100 mg uncoated tablet, 112 925670011000036104 Aspirin (Mayne Pharma) 100 mg uncoated tablet 925552011000036105 Aspirin (Mayne Pharma) 925552011000036105 Aspirin (Mayne Pharma) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +1014041000168104 Aripiprazole (AN) 2 mg uncoated tablet, 30, bottle 198183 977561000168100 Aripiprazole (AN) 2 mg uncoated tablet, 30 977531000168108 Aripiprazole (AN) 2 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +1034211000168101 Atomoxetine (CH) 60 mg hard capsule, 14, blister pack 234839 1034201000168104 Atomoxetine (CH) 60 mg hard capsule, 14 1034171000168103 Atomoxetine (CH) 60 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830231000168100 atomoxetine 60 mg capsule, 14 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1086061000168109 Monofer 200 mg/2 mL injection solution, 5 x 2 mL vials 290832 1086051000168107 Monofer 200 mg/2 mL injection solution, 5 x 2 mL vials 1086031000168101 Monofer 200 mg/2 mL injection solution, 2 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1086041000168105 iron (as ferric derisomaltose) 200 mg/2 mL injection, 5 x 2 mL vials 1086021000168104 iron (as ferric derisomaltose) 200 mg/2 mL injection, vial 1085791000168105 ferric derisomaltose +895971000168106 Atomoxetine (Sandoz) 100 mg hard capsule, 7, blister pack 238372 895961000168100 Atomoxetine (Sandoz) 100 mg hard capsule, 7 895951000168102 Atomoxetine (Sandoz) 100 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +17881011000036107 Rythmodan 100 mg hard capsule, 100, blister pack 13537 11995011000036102 Rythmodan 100 mg hard capsule, 100 4819011000036102 Rythmodan 100 mg hard capsule 4034011000036109 Rythmodan 4034011000036109 Rythmodan 26835011000036102 disopyramide 100 mg capsule, 100 22216011000036109 disopyramide 100 mg capsule 21436011000036101 disopyramide +761981000168107 Cyanocobalamin (Biological Therapies) 20 mg/2 mL injection solution, 2 mL vial 22407 761971000168109 Cyanocobalamin (Biological Therapies) 20 mg/2 mL injection solution, 2 mL vial 761951000168100 Cyanocobalamin (Biological Therapies) 20 mg/2 mL injection solution, 2 mL vial 761931000168106 Cyanocobalamin (Biological Therapies) 761931000168106 Cyanocobalamin (Biological Therapies) 761961000168103 cyanocobalamin 20 mg/2 mL injection, 2 mL vial 761941000168102 cyanocobalamin 20 mg/2 mL injection, vial 77442011000036106 cyanocobalamin +808121000168101 Perindopril Arginine (Apo) 10 mg film-coated tablet, 10, blister pack 184809 808111000168108 Perindopril Arginine (Apo) 10 mg film-coated tablet, 10 808101000168105 Perindopril Arginine (Apo) 10 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 727331000168107 perindopril arginine 10 mg tablet, 10 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +736101000168103 Aerius for Children Syrup 500 microgram/mL oral liquid solution, 100 mL, bottle 97260 736091000168108 Aerius for Children Syrup 500 microgram/mL oral liquid solution, 100 mL 736051000168103 Aerius for Children Syrup 500 microgram/mL oral liquid solution 736041000168100 Aerius for Children Syrup 736041000168100 Aerius for Children Syrup 63937011000036102 desloratadine 500 microgram/mL oral liquid, 100 mL 62105011000036107 desloratadine 500 microgram/mL oral liquid 61723011000036109 desloratadine +43853011000036108 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 50, blister pack 128034 41349011000036103 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 50 39801011000036104 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet 39566011000036107 Paracetamol (Pharmacy Choice) 39566011000036107 Paracetamol (Pharmacy Choice) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18502011000036108 Gastrogel Antacid oral liquid suspension, 500 mL, bottle 13452 11988011000036107 Gastrogel Antacid oral liquid suspension, 500 mL 4563011000036100 Gastrogel Antacid oral liquid suspension, 5 mL 41521000168105 Gastrogel Antacid 41521000168105 Gastrogel Antacid 26831011000036104 aluminium hydroxide 250 mg/5 mL + magnesium trisilicate 120 mg/5 mL + magnesium hydroxide 120 mg/5 mL oral liquid, 500 mL 22213011000036103 aluminium hydroxide 250 mg/5 mL + magnesium trisilicate 120 mg/5 mL + magnesium hydroxide 120 mg/5 mL oral liquid 33642011000036107 aluminium hydroxide + magnesium trisilicate + magnesium hydroxide +17985011000036104 Gelusil oral liquid suspension, 500 mL, bottle 121981 11708011000036103 Gelusil oral liquid suspension, 500 mL 5179011000036107 Gelusil oral liquid suspension, 5 mL 4017011000036105 Gelusil 4017011000036105 Gelusil 26743011000036104 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid, 500 mL 22136011000036101 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +988291000168103 Risedronate (Apo) 75 mg film-coated tablet, 6, blister pack 181973 988281000168101 Risedronate (Apo) 75 mg film-coated tablet, 6 988231000168102 Risedronate (Apo) 75 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 801031000168109 risedronate sodium 75 mg tablet, 6 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +50535011000036101 Algisite M (66000521) 15 cm x 20 cm medicated dressing, 10, carton 49382011000036107 Algisite M (66000521) 15 cm x 20 cm medicated dressing, 10 48536011000036101 Algisite M (66000521) 15 cm x 20 cm medicated dressing 54801000168103 Algisite M (66000521) 54801000168103 Algisite M (66000521) 51355011000036109 dressing alginate superficial wound 15 cm x 20 cm dressing, 10 50878011000036109 dressing alginate superficial wound 15 cm x 20 cm dressing 50715011000036105 dressing alginate superficial wound +1009701000168102 Valtrex-1000 1 g film-coated tablet, 4, blister pack 73920 1009691000168102 Valtrex-1000 1 g film-coated tablet, 4 1009681000168100 Valtrex-1000 1 g film-coated tablet 1009671000168103 Valtrex-1000 1009671000168103 Valtrex-1000 927387011000036102 valaciclovir 1 g tablet, 4 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +91801000036103 Gabapentin (Pfizer) 300 mg hard capsule, 100, blister pack 80335 90341000036104 Gabapentin (Pfizer) 300 mg hard capsule, 100 88081000036105 Gabapentin (Pfizer) 300 mg hard capsule 87631000036104 Gabapentin (Pfizer) 87631000036104 Gabapentin (Pfizer) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +61414011000036105 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 500 mL, bottle 82401 57339011000036109 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 500 mL 54279011000036106 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 63818011000036104 paracetamol 120 mg/5 mL oral liquid, 500 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1103331000168103 Quetiapine (AN) 25 mg film-coated tablet, 20, blister pack 170853 1103321000168101 Quetiapine (AN) 25 mg film-coated tablet, 20 655191000168105 Quetiapine (AN) 25 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +52213011000036105 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 100, bottle 145178 52098011000036105 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 100 51993011000036106 Pravastatin Sodium (Apo) 80 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 52329011000036109 pravastatin sodium 80 mg tablet, 100 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +69455011000036107 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 48526 67255011000036103 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 65577011000036101 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71805011000036104 glucose 5% (25 g/500 mL) injection, 18 x 500 mL bags 70193011000036101 glucose 5% (25 g/500 mL) injection, bag 21354011000036103 glucose +744601000168103 Abstral 100 microgram sublingual tablet, 30, blister pack 193332 744591000168105 Abstral 100 microgram sublingual tablet, 30 744541000168102 Abstral 100 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744581000168107 fentanyl 100 microgram sublingual tablet, 30 744531000168106 fentanyl 100 microgram sublingual tablet 21258011000036102 fentanyl +74401000036105 Neutrogena T/Gel Therapeutic Plus Shampoo shampoo, 200 mL, bottle 46373 72291000036106 Neutrogena T/Gel Therapeutic Plus Shampoo shampoo, 200 mL 70251000036103 Neutrogena T/Gel Therapeutic Plus Shampoo shampoo 64978011000036100 Neutrogena T/Gel Therapeutic Plus Shampoo 64978011000036100 Neutrogena T/Gel Therapeutic Plus Shampoo 72301000036105 coal tar 0.5% + salicylic acid 2% shampoo, 200 mL 70261000036100 coal tar 0.5% + salicylic acid 2% shampoo 69800011000036102 coal tar + salicylic acid +37359011000036104 Neostigmine Methylsulfate (AstraZeneca) 2.5 mg/mL injection solution, 50 x 1 mL ampoules 11976 36681011000036104 Neostigmine Methylsulfate (AstraZeneca) 2.5 mg/mL injection solution, 50 x 1 mL ampoules 36177011000036100 Neostigmine Methylsulfate (AstraZeneca) 2.5 mg/mL injection solution, ampoule 35894011000036108 Neostigmine Methylsulfate (AstraZeneca) 35894011000036108 Neostigmine Methylsulfate (AstraZeneca) 38594011000036104 neostigmine methylsulfate 2.5 mg/mL injection, 50 x 1 mL ampoules 37865011000036109 neostigmine methylsulfate 2.5 mg/mL injection, ampoule 37705011000036105 neostigmine +999531000168105 Memantine (Apotex) 10 mg film-coated tablet, 50, blister pack 159580 999521000168107 Memantine (Apotex) 10 mg film-coated tablet, 50 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38841011000036109 memantine hydrochloride 10 mg tablet, 50 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +920769011000036103 Relpax 80 mg film-coated tablet, 2, blister pack 68358 920448011000036106 Relpax 80 mg film-coated tablet, 2 920187011000036102 Relpax 80 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 920865011000036102 eletriptan 80 mg tablet, 2 920829011000036109 eletriptan 80 mg tablet 920818011000036107 eletriptan +65851000036102 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application, 25 mL, bottle 14489 63421000036109 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application, 25 mL 61651000036104 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application 45161000168106 Tea Tree Oil Antiseptic (The Good Oil Co) 45161000168106 Tea Tree Oil Antiseptic (The Good Oil Co) 933205371000036101 melaleuca oil 1 mL/mL application, 25 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +894561000168106 Entecavir (GH) 1 mg film-coated tablet, 10, blister pack 267112 894551000168109 Entecavir (GH) 1 mg film-coated tablet, 10 894541000168107 Entecavir (GH) 1 mg film-coated tablet 894481000168101 Entecavir (GH) 894481000168101 Entecavir (GH) 894431000168102 entecavir 1 mg tablet, 10 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +19471011000036102 Lovan 20 mg hard capsule, 28, blister pack 54700 12748011000036109 Lovan 20 mg hard capsule, 28 6042011000036105 Lovan 20 mg hard capsule 2938011000036102 Lovan 2938011000036102 Lovan 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +17868011000036100 Voxam 50 mg film-coated tablet, 30, blister pack 111781 11434011000036105 Voxam 50 mg film-coated tablet, 30 5824011000036102 Voxam 50 mg film-coated tablet 3185011000036107 Voxam 3185011000036107 Voxam 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +60250011000036100 Fexo (Amcal) 180 mg film-coated tablet, 30, blister pack 134657 56209011000036105 Fexo (Amcal) 180 mg film-coated tablet, 30 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +60250011000036100 Fexo (Amcal) 180 mg film-coated tablet, 30, blister pack 223782 56209011000036105 Fexo (Amcal) 180 mg film-coated tablet, 30 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +59812011000036104 Strong Pain Relief Plus (Amcal) uncoated tablet, 96, blister pack 114715 55774011000036105 Strong Pain Relief Plus (Amcal) uncoated tablet, 96 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 52869011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 96 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +718941000168108 Atenolol (GA) 50 mg film-coated tablet, 30, bottle 77503 49685011000036106 Atenolol (GA) 50 mg film-coated tablet, 30 48820011000036103 Atenolol (GA) 50 mg film-coated tablet 48411011000036107 Atenolol (GA) 48411011000036107 Atenolol (GA) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +69347011000036107 Fisamox 500 mg powder for injection, 5 vials 29406 67147011000036108 Fisamox 500 mg powder for injection, 5 vials 65255011000036102 Fisamox 500 mg powder for injection, 500 mg vial 39663011000036108 Fisamox 39663011000036108 Fisamox 71712011000036108 amoxicillin 500 mg injection, 5 vials 70143011000036109 amoxicillin 500 mg injection, vial 21415011000036100 amoxicillin +929097011000036107 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 7, blister pack 166915 928458011000036106 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 7 927988011000036105 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929264011000036109 pioglitazone 30 mg tablet, 7 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +30801000036100 Kerron-1000 1 g film-coated tablet, 60, blister pack 182827 29221000036104 Kerron-1000 1 g film-coated tablet, 60 26561000036104 Kerron-1000 1 g film-coated tablet 7801000168103 Kerron-1000 7801000168103 Kerron-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +68984011000036102 Nicotinell Liquorice 2 mg chewing gum, 168, blister pack 136134 66786011000036107 Nicotinell Liquorice 2 mg chewing gum, 168 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71511011000036103 nicotine 2 mg gum, 168 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +61401011000036105 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet, 48, blister pack 82119 57326011000036103 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet, 48 54275011000036109 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44537011000036102 Ramace 10 mg hard capsule, 7, blister pack 79098 41990011000036108 Ramace 10 mg hard capsule, 7 6972011000036103 Ramace 10 mg hard capsule 3038011000036104 Ramace 3038011000036104 Ramace 46765011000036109 ramipril 10 mg capsule, 7 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +1018221000168106 Amisulpride (Apotex) 200 mg tablet, 50, blister pack 178905 1018211000168104 Amisulpride (Apotex) 200 mg tablet, 50 1018201000168102 Amisulpride (Apotex) 200 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 84642011000036100 amisulpride 200 mg tablet, 50 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +786381000168100 Fentanyl (Sandoz) 37 microgram/hour patch, 2, sachet 152567 786371000168103 Fentanyl (Sandoz) 37 microgram/hour patch, 2 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780751000168106 fentanyl 37 microgram/hour patch, 2 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +832471000168102 Agiolax granules, 250 g, jar 158420 832461000168108 Agiolax granules, 250 g 832441000168109 Agiolax granules 75960011000036104 Agiolax 75960011000036104 Agiolax 832451000168106 dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules, 250 g 832431000168100 dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules 832421000168103 dry psyllium seed + dry Tinnevelly senna fruit +1034331000168104 Atomoxetine (GXP) 80 mg hard capsule, 14, blister pack 234855 1034321000168102 Atomoxetine (GXP) 80 mg hard capsule, 14 1034291000168105 Atomoxetine (GXP) 80 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830561000168105 atomoxetine 80 mg capsule, 14 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +950801000168102 Fiasp 100 units/mL injection solution, 10 mL vial 275375 950791000168103 Fiasp 100 units/mL injection solution, 10 mL vial 950781000168101 Fiasp 100 units/mL injection solution, 10 mL vial 950771000168104 Fiasp 950771000168104 Fiasp 27661011000036104 insulin aspart 100 units/mL injection, 1 x 10 mL vial 22998011000036108 insulin aspart 100 units/mL injection, vial 21699011000036100 insulin aspart +649741000168102 Ganfort PF 0.3/5 eye drops solution, 30 x 0.4 mL unit doses, ampoule 211161 649731000168106 Ganfort PF 0.3/5 eye drops solution, 30 x 0.4 mL unit doses 649711000168101 Ganfort PF 0.3/5 eye drops solution, 0.4 mL unit dose 649691000168104 Ganfort PF 0.3/5 649691000168104 Ganfort PF 0.3/5 649721000168108 bimatoprost 0.03% + timolol 0.5% eye drops, 30 x 0.4 mL unit doses 649701000168104 bimatoprost 0.03% + timolol 0.5% eye drops, unit dose 79097011000036104 bimatoprost + timolol +875711000168105 Bispro 1.25 mg film-coated tablet, 42, blister pack 130177 875701000168107 Bispro 1.25 mg film-coated tablet, 42 875611000168103 Bispro 1.25 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 46792011000036103 bisoprolol fumarate 1.25 mg tablet, 42 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +84400011000036107 Pantoloc 20 mg enteric tablet, 30, blister pack 72933 84091011000036107 Pantoloc 20 mg enteric tablet, 30 83706011000036100 Pantoloc 20 mg enteric tablet 83566011000036100 Pantoloc 83566011000036100 Pantoloc 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +65761000036109 Doxorubicin Hydrochloride (Novotech) 10 mg/5 mL injection solution, 5 mL vial 107334 63131000036101 Doxorubicin Hydrochloride (Novotech) 10 mg/5 mL injection solution, 5 mL vial 60861000036107 Doxorubicin Hydrochloride (Novotech) 10 mg/5 mL injection solution, 5 mL vial 60281000036101 Doxorubicin Hydrochloride (Novotech) 60281000036101 Doxorubicin Hydrochloride (Novotech) 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +91721000036100 Krill Oil (Nature's Own) 333.3 mg soft capsule, 90, bottle 194463 90231000036102 Krill Oil (Nature's Own) 333.3 mg soft capsule, 90 88121000036108 Krill Oil (Nature's Own) 333.3 mg soft capsule 87761000036104 Krill Oil (Nature's Own) 87761000036104 Krill Oil (Nature's Own) 90241000036107 krill oil 333.3 mg capsule, 90 88131000036105 krill oil 333.3 mg capsule 91931000036100 krill oil +790721000168102 Fintab 5 mg film-coated tablet, 30, blister pack 194958 790711000168109 Fintab 5 mg film-coated tablet, 30 790701000168106 Fintab 5 mg film-coated tablet 739321000168104 Fintab 739321000168104 Fintab 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +1111921000168104 Terbinafine (Pharmacy Health) 1% cream, 30 g, tube 273900 1111911000168106 Terbinafine (Pharmacy Health) 1% cream, 30 g 1111881000168106 Terbinafine (Pharmacy Health) 1% cream 1111871000168108 Terbinafine (Pharmacy Health) 1111871000168108 Terbinafine (Pharmacy Health) 932349011000036101 terbinafine hydrochloride 1% cream, 30 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +919091000168100 Temolide 140 mg hard capsule, 20, bottle 192695 919081000168103 Temolide 140 mg hard capsule, 20 919051000168105 Temolide 140 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 164351000036104 temozolomide 140 mg capsule, 20 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +1044401000168102 Ziprox 40 mg hard capsule, 60, blister pack 201082 1044391000168104 Ziprox 40 mg hard capsule, 60 1044381000168102 Ziprox 40 mg hard capsule 1044151000168106 Ziprox 1044151000168106 Ziprox 27570011000036106 ziprasidone 40 mg capsule, 60 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +806751000168107 Irbesartan (Blooms The Chemist) 300 mg film-coated tablet, 30, blister pack 259885 806741000168105 Irbesartan (Blooms The Chemist) 300 mg film-coated tablet, 30 806731000168101 Irbesartan (Blooms The Chemist) 300 mg film-coated tablet 806631000168109 Irbesartan (Blooms The Chemist) 806631000168109 Irbesartan (Blooms The Chemist) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +60780011000036104 Dymadon Paracetamol Pain and Fever Relief for Babies 1 Month to 2 Years colour free 50 mg/mL oral liquid suspension, 60 mL, bottle 55118 56738011000036103 Dymadon Paracetamol Pain and Fever Relief for Babies 1 Month to 2 Years colour free 50 mg/mL oral liquid suspension, 60 mL 54058011000036109 Dymadon Paracetamol Pain and Fever Relief for Babies 1 Month to 2 Years colour free 50 mg/mL oral liquid suspension 28291000168101 Dymadon Paracetamol Pain and Fever Relief for Babies 1 Month to 2 Years 28291000168101 Dymadon Paracetamol Pain and Fever Relief for Babies 1 Month to 2 Years 63541011000036104 paracetamol 50 mg/mL oral liquid, 60 mL 62008011000036109 paracetamol 50 mg/mL oral liquid 21433011000036107 paracetamol +1065831000168101 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 36, blister pack 220729 1065821000168104 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 36 1065661000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1019911000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 30, blister pack 175199 1019901000168101 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 30 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +933055011000036107 Elmendos 5 mg tablet, 56, bottle 115597 932850011000036106 Elmendos 5 mg tablet, 56 932714011000036107 Elmendos 5 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +60734011000036102 Panadol Allergy Sinus film-coated tablet, 24, blister pack 49564 56692011000036101 Panadol Allergy Sinus film-coated tablet, 24 54036011000036109 Panadol Allergy Sinus film-coated tablet 29451000168102 Panadol Allergy Sinus 29451000168102 Panadol Allergy Sinus 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +898761000168108 Nicotinell Peppermint 2 mg lozenge, 144, blister pack 276925 898751000168106 Nicotinell Peppermint 2 mg lozenge, 144 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 898741000168109 nicotine 2 mg lozenge, 144 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1103291000168109 Quetiapine (AN) 300 mg film-coated tablet, 100, blister pack 170856 1103281000168106 Quetiapine (AN) 300 mg film-coated tablet, 100 655251000168107 Quetiapine (AN) 300 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +940661000168104 Syntocinon 2 units/2 mL injection solution, 5 x 2 mL ampoules 13384 940651000168101 Syntocinon 2 units/2 mL injection solution, 5 x 2 mL ampoules 940631000168107 Syntocinon 2 units/2 mL injection solution, 2 mL ampoule 35899011000036109 Syntocinon 35899011000036109 Syntocinon 940641000168103 oxytocin 2 units/2 mL injection, 5 x 2 mL ampoules 940621000168109 oxytocin 2 units/2 mL injection, ampoule 37765011000036106 oxytocin +77315011000036101 Urografin 30% injection solution, 10 x 10 mL ampoules 42161 76731011000036109 Urografin 30% injection solution, 10 x 10 mL ampoules 76147011000036105 Urografin 30% injection solution, 10 mL ampoule 701000168103 Urografin 30% 701000168103 Urografin 30% 78245011000036109 amidotrizoate meglumine 2.6 g/10 mL + sodium amidotrizoate 400 mg/10 mL injection, 10 x 10 mL ampoules 77569011000036102 amidotrizoate meglumine 2.6 g/10 mL + sodium amidotrizoate 400 mg/10 mL injection, ampoule 77441011000036100 amidotrizoic acid +957781000168100 Mirtazapine (Sandoz) 15 mg film-coated tablet, 60, blister pack 117131 957291000168106 Mirtazapine (Sandoz) 15 mg film-coated tablet, 60 957201000168100 Mirtazapine (Sandoz) 15 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 46481011000036100 mirtazapine 15 mg tablet, 60 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +756321000168105 Pramipexole ER (Apo) 375 microgram modified release tablet, 10, blister pack 225622 756311000168103 Pramipexole ER (Apo) 375 microgram modified release tablet, 10 756301000168101 Pramipexole ER (Apo) 375 microgram modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 87812011000036108 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 10 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +19470011000036109 Florinef 100 microgram uncoated tablet, 100, bottle 54688 12747011000036108 Florinef 100 microgram uncoated tablet, 100 6041011000036104 Florinef 100 microgram uncoated tablet 3760011000036109 Florinef 3760011000036109 Florinef 27332011000036109 fludrocortisone acetate 100 microgram tablet, 100 22685011000036102 fludrocortisone acetate 100 microgram tablet 21735011000036102 fludrocortisone acetate +74744011000036100 Ferriprox 100 mg/mL oral liquid solution, 500 mL, bottle 125666 74252011000036100 Ferriprox 100 mg/mL oral liquid solution, 500 mL 73790011000036100 Ferriprox 100 mg/mL oral liquid solution 2968011000036107 Ferriprox 2968011000036107 Ferriprox 75385011000036103 deferiprone 100 mg/mL oral liquid, 500 mL 75031011000036105 deferiprone 100 mg/mL oral liquid 21780011000036103 deferiprone +792331000168104 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) uncoated tablet, 40, blister pack 200691 792321000168102 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) uncoated tablet, 40 792291000168105 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) uncoated tablet 792281000168107 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) 792281000168107 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +140681000036103 Candesartan Cilexetil HCTZ 32/25 (RBX) uncoated tablet, 30, blister pack 204576 139481000036107 Candesartan Cilexetil HCTZ 32/25 (RBX) uncoated tablet, 30 137501000036108 Candesartan Cilexetil HCTZ 32/25 (RBX) uncoated tablet 14691000168100 Candesartan Cilexetil HCTZ 32/25 (RBX) 14691000168100 Candesartan Cilexetil HCTZ 32/25 (RBX) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +982451000168106 Zomig Rapimelt 2.5 mg orally disintegrating tablet, 2, blister pack 70175 982441000168109 Zomig Rapimelt 2.5 mg orally disintegrating tablet, 2 982421000168103 Zomig Rapimelt 2.5 mg orally disintegrating tablet 982401000168107 Zomig Rapimelt 982401000168107 Zomig Rapimelt 982431000168100 zolmitriptan 2.5 mg orally disintegrating tablet, 2 982411000168105 zolmitriptan 2.5 mg orally disintegrating tablet 21516011000036102 zolmitriptan +754951000168108 Oxycodone (AS) 10 mg hard capsule, 60, bottle 227849 754501000168101 Oxycodone (AS) 10 mg hard capsule, 60 754471000168107 Oxycodone (AS) 10 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +34703011000036102 Endone 5 mg uncoated tablet, 500, blister pack 14945 34287011000036100 Endone 5 mg uncoated tablet, 500 5776011000036108 Endone 5 mg uncoated tablet 3580011000036107 Endone 3580011000036107 Endone 35136011000036103 oxycodone hydrochloride 5 mg tablet, 500 22269011000036101 oxycodone hydrochloride 5 mg tablet 21259011000036105 oxycodone +1026901000168100 Pregabalin (Amneal) 300 mg hard capsule, 14, blister pack 235840 1026891000168104 Pregabalin (Amneal) 300 mg hard capsule, 14 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +50500011000036103 Risperidone (Apo) 500 microgram film-coated tablet, 60, blister pack 127606 49547011000036102 Risperidone (Apo) 500 microgram film-coated tablet, 60 48522011000036103 Risperidone (Apo) 500 microgram film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +962721000168105 Formet 250 mg film-coated tablet, 100, blister pack 91106 962711000168103 Formet 250 mg film-coated tablet, 100 962681000168104 Formet 250 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 943261000168109 metformin hydrochloride 250 mg tablet, 100 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +50582011000036103 Clarithromycin (Chemmart) 250 mg film-coated tablet, 28, blister pack 134854 49614011000036105 Clarithromycin (Chemmart) 250 mg film-coated tablet, 28 5470011000036102 Clarithromycin (Chemmart) 250 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 51517011000036109 clarithromycin 250 mg tablet, 28 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +81187011000036104 Robitussin Chesty Cough 200 mg soft capsule, 90, blister pack 74414 80689011000036102 Robitussin Chesty Cough 200 mg soft capsule, 90 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81744011000036106 guaifenesin 200 mg capsule, 90 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +19252011000036105 Feldene 20 mg hard capsule, 25, blister pack 47654 12543011000036103 Feldene 20 mg hard capsule, 25 5016011000036101 Feldene 20 mg hard capsule 8391000168102 Feldene 8391000168102 Feldene 27763011000036106 piroxicam 20 mg capsule, 25 23094011000036103 piroxicam 20 mg capsule 21531011000036103 piroxicam +1100001000168103 Clarant 250 mg film-coated tablet, 14, blister pack 184264 1099991000168108 Clarant 250 mg film-coated tablet, 14 1099941000168100 Clarant 250 mg film-coated tablet 1099931000168109 Clarant 1099931000168109 Clarant 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +992701000168104 Bisoprolol (Apotex) 5 mg tablet, 100, blister pack 182129 992691000168104 Bisoprolol (Apotex) 5 mg tablet, 100 992561000168105 Bisoprolol (Apotex) 5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79208011000036105 bisoprolol fumarate 5 mg tablet, 100 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +60318011000036101 Cetrelief (Generic Health) 10 mg film-coated tablet, 100, blister pack 138826 56277011000036105 Cetrelief (Generic Health) 10 mg film-coated tablet, 100 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63283011000036102 cetirizine hydrochloride 10 mg tablet, 100 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1044081000168100 Pryzex 7.5 mg film-coated tablet, 60, blister pack 178987 1044071000168103 Pryzex 7.5 mg film-coated tablet, 60 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044061000168109 olanzapine 7.5 mg tablet, 60 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +69485011000036103 Strepsils Plus lozenge, 24, blister pack 50509 67285011000036107 Strepsils Plus lozenge, 24 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71833011000036109 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +1046251000168107 Zaldiar effervescent tablet, 2, strip pack 179678 1046241000168105 Zaldiar effervescent tablet, 2 1046221000168104 Zaldiar effervescent tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 1046231000168101 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet, 2 1046211000168106 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet 680581000168102 tramadol + paracetamol +958381000168103 Zostavax 19 400 PFU powder for injection, 10 vials 130225 958371000168101 Zostavax 19 400 PFU powder for injection, 10 vials 831791000168100 Zostavax (varicella-zoster live vaccine) powder for injection, vial 73774011000036102 Zostavax 73774011000036102 Zostavax 958361000168107 varicella-zoster live vaccine 19 400 PFU injection, 10 vials 831781000168103 varicella-zoster live vaccine 19 400 PFU injection, vial 830851000168105 varicella-zoster live vaccine +34750011000036102 Kapanol 50 mg modified release capsule, 60, blister pack 48135 34331011000036109 Kapanol 50 mg modified release capsule, 60 5859011000036100 Kapanol 50 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 35179011000036109 morphine sulfate pentahydrate 50 mg modified release capsule, 60 22554011000036102 morphine sulfate pentahydrate 50 mg modified release capsule 21252011000036100 morphine +933044011000036105 Vycin IV 1 g powder for injection, 1 vial 119000 932856011000036109 Vycin IV 1 g powder for injection, 1 vial 932722011000036108 Vycin IV 1 g powder for injection, vial 40201000168107 Vycin IV 40201000168107 Vycin IV 27498011000036108 vancomycin 1 g injection, 1 vial 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +1078661000168105 Atomoxetine (GPPL) 5 mg hard capsule, 28, blister pack 234842 1078651000168108 Atomoxetine (GPPL) 5 mg hard capsule, 28 1078601000168109 Atomoxetine (GPPL) 5 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 976371000168103 atomoxetine 5 mg capsule, 28 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +997271000168104 Pramipexole (Apotex) 500 microgram uncoated tablet, 100, blister pack 168562 997261000168105 Pramipexole (Apotex) 500 microgram uncoated tablet, 100 997241000168106 Pramipexole (Apotex) 500 microgram uncoated tablet 997101000168100 Pramipexole (Apotex) 997101000168100 Pramipexole (Apotex) 997251000168108 pramipexole dihydrochloride monohydrate 500 microgram tablet, 100 997231000168102 pramipexole dihydrochloride monohydrate 500 microgram tablet 37716011000036100 pramipexole +1108631000168101 Midazolam (Claris) 5 mg/5 mL injection solution, 25 x 5 mL ampoules 216025 1108621000168104 Midazolam (Claris) 5 mg/5 mL injection solution, 25 x 5 mL ampoules 1108561000168108 Midazolam (Claris) 5 mg/5 mL injection solution, 5 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 1108611000168106 midazolam 5 mg/5 mL injection, 25 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +778441000168107 Oxycodone MR (Apo) 20 mg modified release tablet, 60, blister pack 214499 778431000168103 Oxycodone MR (Apo) 20 mg modified release tablet, 60 778381000168105 Oxycodone MR (Apo) 20 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +52736011000036103 Pristiq 100 mg modified release tablet, 7, blister pack 133527 52548011000036101 Pristiq 100 mg modified release tablet, 7 52411011000036105 Pristiq 100 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +18837011000036102 Alphacin 500 mg hard capsule, 24, bottle 17690 12149011000036107 Alphacin 500 mg hard capsule, 24 4701011000036101 Alphacin 500 mg hard capsule 3836011000036102 Alphacin 3836011000036102 Alphacin 26948011000036102 ampicillin 500 mg capsule, 24 22323011000036102 ampicillin 500 mg capsule 21671011000036106 ampicillin +1065751000168102 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 12, blister pack 220729 1065741000168104 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 12 1065661000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +77319011000036104 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 60 mL, bottle 46223 76735011000036106 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 60 mL 76150011000036106 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 78248011000036103 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid, 60 mL 77571011000036106 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid 77428011000036107 ascorbic acid + colecalciferol + dexpanthenol + nicotinamide + pyridoxine + retinol palmitate + riboflavin + thiamine +757071000168106 Leflunomide (Apotex) 10 mg film-coated tablet, 30, bottle 251992 757061000168100 Leflunomide (Apotex) 10 mg film-coated tablet, 30 757051000168102 Leflunomide (Apotex) 10 mg film-coated tablet 755921000168101 Leflunomide (Apotex) 755921000168101 Leflunomide (Apotex) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +823471000168108 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 221719 823461000168102 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 823391000168100 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 0.6 mL syringe 2391000168100 Clexane 2391000168100 Clexane 27373011000036100 enoxaparin sodium 60 mg/0.6 mL injection, 10 x 0.6 mL syringes 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +962671000168102 Zinnat 250 mg/5 mL powder for oral liquid, 100 mL, bottle 81301 962661000168108 Zinnat 250 mg/5 mL powder for oral liquid, 100 mL 962581000168103 Zinnat 250 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 962651000168106 cefuroxime 250 mg/5 mL powder for oral liquid, 100 mL 962571000168101 cefuroxime 250 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +69086011000036102 Tamoxen 20 mg film-coated tablet, 60, blister pack 145982 66887011000036107 Tamoxen 20 mg film-coated tablet, 60 65473011000036101 Tamoxen 20 mg film-coated tablet 3933011000036100 Tamoxen 3933011000036100 Tamoxen 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +954091000168109 Tenofovir EMT (GH) film-coated tablet, 100, bottle 269196 954081000168106 Tenofovir EMT (GH) film-coated tablet, 100 954031000168105 Tenofovir EMT (GH) film-coated tablet 954011000168100 Tenofovir EMT (GH) 954011000168100 Tenofovir EMT (GH) 954071000168108 tenofovir disoproxil phosphate 291 mg + emtricitabine 200 mg tablet, 100 954021000168107 tenofovir disoproxil phosphate 291 mg + emtricitabine 200 mg tablet 851481000168106 tenofovir disoproxil + emtricitabine +156751000036100 Inlyta 1 mg film-coated tablet, 28, blister pack 184856 155831000036108 Inlyta 1 mg film-coated tablet, 28 155161000036106 Inlyta 1 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 155841000036103 axitinib 1 mg tablet, 28 155171000036103 axitinib 1 mg tablet 157041000036102 axitinib +1031471000168106 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 30, bottle 173482 1031461000168100 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 30 1031401000168101 Atorvastatin (Ranbaxy) 20 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +740191000168105 Alendronate D3 70 mg/140 microgram (Amneal) uncoated tablet, 1, blister pack 206933 740181000168107 Alendronate D3 70 mg/140 microgram (Amneal) uncoated tablet, 1 740171000168109 Alendronate D3 70 mg/140 microgram (Amneal) uncoated tablet 740161000168103 Alendronate D3 70 mg/140 microgram (Amneal) 740161000168103 Alendronate D3 70 mg/140 microgram (Amneal) 46289011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 1 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +18323011000036106 Fosinopril Sodium (Sandoz) 10 mg uncoated tablet, 30, bottle 124842 11778011000036107 Fosinopril Sodium (Sandoz) 10 mg uncoated tablet, 30 5947011000036102 Fosinopril Sodium (Sandoz) 10 mg uncoated tablet 3290011000036100 Fosinopril Sodium (Sandoz) 3290011000036100 Fosinopril Sodium (Sandoz) 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +954131000168106 Azithromycin (Mylan) 500 mg film-coated tablet, 2, blister pack 158290 954121000168108 Azithromycin (Mylan) 500 mg film-coated tablet, 2 954111000168101 Azithromycin (Mylan) 500 mg film-coated tablet 954101000168104 Azithromycin (Mylan) 954101000168104 Azithromycin (Mylan) 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +1027181000168108 Esomeprazole (Pharmacor) 20 mg enteric tablet, 100, blister pack 210855 1027171000168105 Esomeprazole (Pharmacor) 20 mg enteric tablet, 100 1027101000168100 Esomeprazole (Pharmacor) 20 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +896571000168106 Imatinib (AN) 100 mg hard capsule, 120, blister pack 281365 896561000168100 Imatinib (AN) 100 mg hard capsule, 120 896471000168107 Imatinib (AN) 100 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 828901000168100 imatinib 100 mg capsule, 120 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +59834011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 20, blister pack 114915 55796011000036105 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 20 53630011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet 29541000168103 Strong Pain Relief Tabsule (Amcal) 29541000168103 Strong Pain Relief Tabsule (Amcal) 63139011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 20 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +19321011000036108 Lescol 20 mg hard capsule, 28, blister pack 50268 12611011000036102 Lescol 20 mg hard capsule, 28 5330011000036108 Lescol 20 mg hard capsule 47401000168109 Lescol 47401000168109 Lescol 27246011000036101 fluvastatin 20 mg capsule, 28 22605011000036101 fluvastatin 20 mg capsule 21564011000036109 fluvastatin +923828011000036100 Gaviscon Dual Action oral liquid suspension, 300 mL, bottle 158117 923374011000036108 Gaviscon Dual Action oral liquid suspension, 300 mL 923045011000036105 Gaviscon Dual Action oral liquid suspension, 10 mL 47081000168106 Gaviscon Dual Action 47081000168106 Gaviscon Dual Action 924168011000036100 sodium alginate 500 mg/10 mL + sodium bicarbonate 213 mg/10 mL + calcium carbonate 325 mg/10 mL oral liquid, 300 mL 923979011000036104 sodium alginate 500 mg/10 mL + sodium bicarbonate 213 mg/10 mL + calcium carbonate 325 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +84361011000036109 Xyntha 250 IU (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161714 84054011000036100 Xyntha 250 IU (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 47431000168102 Xyntha 250 IU 83556011000036108 Xyntha 46161011000036102 moroctocog alfa 250 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +84361011000036109 Xyntha 250 IU (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161714 84054011000036100 Xyntha 250 IU (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack 83678011000036101 Xyntha 250 IU (moroctocog alfa 250 units) powder for injection, 250 units vial 47431000168102 Xyntha 250 IU 47431000168102 Xyntha 250 IU 46161011000036102 moroctocog alfa 250 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45013011000036108 moroctocog alfa 250 units injection, vial 44868011000036107 moroctocog alfa +37354011000036100 Norgesic uncoated tablet, 100, jar 10574 36632011000036104 Norgesic uncoated tablet, 100 36141011000036107 Norgesic uncoated tablet 35879011000036104 Norgesic 35879011000036104 Norgesic 38552011000036100 orphenadrine citrate 35 mg + paracetamol 450 mg tablet, 100 37832011000036105 orphenadrine citrate 35 mg + paracetamol 450 mg tablet 37748011000036109 orphenadrine citrate + paracetamol +754991000168103 Cabergoline (Apo) 500 microgram tablet, 2, bottle 218126 754981000168101 Cabergoline (Apo) 500 microgram tablet, 2 754971000168104 Cabergoline (Apo) 500 microgram tablet 754961000168105 Cabergoline (Apo) 754961000168105 Cabergoline (Apo) 27271011000036107 cabergoline 500 microgram tablet, 2 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +1039811000168101 Atorvastatin (Ascent) 10 mg film-coated tablet, 40, blister pack 178530 1039801000168104 Atorvastatin (Ascent) 10 mg film-coated tablet, 40 1039731000168104 Atorvastatin (Ascent) 10 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841561000168104 atorvastatin 10 mg tablet, 40 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +791361000168104 Trexject 10 mg/0.2 mL injection solution, 4 x 0.2 mL syringes 233715 791351000168101 Trexject 10 mg/0.2 mL injection solution, 4 x 0.2 mL syringes 791301000168100 Trexject 10 mg/0.2 mL injection solution, 0.2 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791341000168103 methotrexate 10 mg/0.2 mL injection, 4 x 0.2 mL syringes 791291000168101 methotrexate 10 mg/0.2 mL injection, syringe 21342011000036105 methotrexate +924221000168103 Temaze 10 mg uncoated tablet, 50, bottle 63863 924071000168107 Temaze 10 mg uncoated tablet, 50 6361011000036107 Temaze 10 mg uncoated tablet 3498011000036104 Temaze 3498011000036104 Temaze 924061000168101 temazepam 10 mg tablet, 50 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +898621000168105 Nicotinell Peppermint 2 mg lozenge, 72, blister pack 276925 898611000168103 Nicotinell Peppermint 2 mg lozenge, 72 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 87230011000036108 nicotine 2 mg lozenge, 72 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +739871000168107 Perindopril (CH) 4 mg uncoated tablet, 30, blister pack 125449 739861000168101 Perindopril (CH) 4 mg uncoated tablet, 30 739851000168103 Perindopril (CH) 4 mg uncoated tablet 739781000168101 Perindopril (CH) 739781000168101 Perindopril (CH) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +60596011000036104 Benzac W 2.5% gel, 50 g, tube 18553 56554011000036105 Benzac W 2.5% gel, 50 g 53970011000036104 Benzac W 2.5% gel 7001000168107 Benzac W 7001000168107 Benzac W 63420011000036104 benzoyl peroxide 2.5% gel, 50 g 61953011000036101 benzoyl peroxide 2.5% gel 61709011000036104 benzoyl peroxide +962761000168100 Loxalate 5 mg film-coated tablet, 28, bottle 119963 962121000168109 Loxalate 5 mg film-coated tablet, 28 962111000168102 Loxalate 5 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +21210011000036105 Zofran 8 mg film-coated tablet, 10, blister pack 9981 14347011000036104 Zofran 8 mg film-coated tablet, 10 7629011000036106 Zofran 8 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +875231000168106 Bisoprolol (AN) 1.25 mg film-coated tablet, 30, blister pack 175919 875221000168108 Bisoprolol (AN) 1.25 mg film-coated tablet, 30 875191000168102 Bisoprolol (AN) 1.25 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 46791011000036109 bisoprolol fumarate 1.25 mg tablet, 30 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +931572011000036107 Cholpra 80 mg film-coated tablet, 100, bottle 163546 930733011000036105 Cholpra 80 mg film-coated tablet, 100 930031011000036107 Cholpra 80 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 52329011000036109 pravastatin sodium 80 mg tablet, 100 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +933214721000036102 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 30, bottle 163528 933204321000036101 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 30 933195481000036105 Pravastatin Sodium (DRLA) 40 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +823791000168101 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 10 x 1 mL syringes 221721 823781000168104 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 10 x 1 mL syringes 823681000168109 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, syringe 2391000168100 Clexane 2391000168100 Clexane 27375011000036104 enoxaparin sodium 100 mg/mL injection, 10 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +1014271000168101 Valsartan (Apotex) 320 mg film-coated tablet, 7, blister pack 185860 1014261000168107 Valsartan (Apotex) 320 mg film-coated tablet, 7 1014251000168105 Valsartan (Apotex) 320 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63187011000036109 valsartan 320 mg tablet, 7 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +1039831000168106 Aspramide 10 mg film-coated tablet, 30, blister pack 196460 1039821000168108 Aspramide 10 mg film-coated tablet, 30 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 671881000168100 metoclopramide hydrochloride 10 mg tablet, 30 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +77229011000036103 Escitalopram (Apo) 20 mg film-coated tablet, 28, blister pack 146015 76645011000036101 Escitalopram (Apo) 20 mg film-coated tablet, 28 76085011000036104 Escitalopram (Apo) 20 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +77229011000036103 Escitalopram (Apo) 20 mg film-coated tablet, 28, blister pack 213722 76645011000036101 Escitalopram (Apo) 20 mg film-coated tablet, 28 76085011000036104 Escitalopram (Apo) 20 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +993021000168104 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 30, blister pack 201680 993011000168106 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 30 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 993001000168108 clopidogrel 75 mg + aspirin 75 mg tablet, 30 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +18400011000036101 Lioresal 25 mg uncoated tablet, 100, bottle 11039 13233011000036100 Lioresal 25 mg uncoated tablet, 100 6515011000036108 Lioresal 25 mg uncoated tablet 3860011000036106 Lioresal 3860011000036106 Lioresal 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +931742011000036109 Anpec SR 240 mg modified release tablet, 30, blister pack 54297 930902011000036101 Anpec SR 240 mg modified release tablet, 30 930106011000036100 Anpec SR 240 mg modified release tablet 44381000168104 Anpec SR 44381000168104 Anpec SR 33790011000036109 verapamil hydrochloride 240 mg modified release tablet, 30 33662011000036104 verapamil hydrochloride 240 mg modified release tablet 21287011000036109 verapamil +59667011000036108 Tarka 2/180 modified release tablet, 56, blister pack 104663 55703011000036102 Tarka 2/180 modified release tablet, 56 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63099011000036107 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 56 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +931410011000036109 Advate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100385 930544011000036109 Advate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 929936011000036107 Advate (octocog alfa 500 units) powder for injection, 500 units vial 65054011000036106 Advate 65054011000036106 Advate 932333011000036100 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 931815011000036108 octocog alfa 500 units injection, vial 69843011000036100 octocog alfa +931410011000036109 Advate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100385 930544011000036109 Advate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 633331000168108 Advate (inert substance) diluent, 5 mL vial 65054011000036106 Advate 65054011000036106 Advate 932333011000036100 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +1121331000168106 Quetiapine XR (Medis) 300 mg modified release tablet, 100, blister pack 226812 1121321000168108 Quetiapine XR (Medis) 300 mg modified release tablet, 100 1121251000168105 Quetiapine XR (Medis) 300 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51536011000036100 quetiapine 300 mg modified release tablet, 100 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +971351000168102 Glivanib 400 mg hard capsule, 96, blister pack 285900 971341000168104 Glivanib 400 mg hard capsule, 96 971271000168103 Glivanib 400 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 893951000168101 imatinib 400 mg capsule, 96 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +61170011000036109 Rapideine Day (Soul Pattinson) uncoated tablet, 24, blister pack 74726 57113011000036105 Rapideine Day (Soul Pattinson) uncoated tablet, 24 54201011000036103 Rapideine Day (Soul Pattinson) uncoated tablet 52385011000036104 Rapideine Day (Soul Pattinson) 52385011000036104 Rapideine Day (Soul Pattinson) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +60853011000036103 Gastrolyte-R powder for oral liquid, 12 x 7.5 g sachets 58708 56807011000036105 Gastrolyte-R powder for oral liquid, 12 x 7.5 g sachets 54086011000036100 Gastrolyte-R powder for oral liquid, 7.5 g sachet 53420011000036103 Gastrolyte-R 53420011000036103 Gastrolyte-R 63583011000036107 oryza sativa 6 g + sodium citrate dihydrate 580 mg + sodium chloride 350 mg + potassium chloride 300 mg (potassium 4 mmol) powder for oral liquid, 12 x 7.5 g sachets 62021011000036105 oryza sativa 6 g + sodium citrate dihydrate 580 mg + sodium chloride 350 mg + potassium chloride 300 mg (potassium 4 mmol) powder for oral liquid, 7.5 g sachet 61797011000036108 oryza sativa + citric acid + sodium chloride + potassium chloride +898601000168101 Nicotinell Peppermint 2 mg lozenge, 36, blister pack 276925 898591000168108 Nicotinell Peppermint 2 mg lozenge, 36 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 922525011000036100 nicotine 2 mg lozenge, 36 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +77165011000036107 B Complex (Cenovis) film-coated tablet, 110, bottle 115071 76588011000036108 B Complex (Cenovis) film-coated tablet, 110 76032011000036101 B Complex (Cenovis) film-coated tablet 76000011000036107 B Complex (Cenovis) 76000011000036107 B Complex (Cenovis) 78142011000036104 thiamine nitrate 15 mg + riboflavin 15 mg + nicotinamide 30 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 5 mg + cyanocobalamin 10 microgram + folic acid 150 microgram tablet, 110 77510011000036107 thiamine nitrate 15 mg + riboflavin 15 mg + nicotinamide 30 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 5 mg + cyanocobalamin 10 microgram + folic acid 150 microgram tablet 77476011000036109 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + folic acid +930651000168100 Cavstat 5 mg film-coated tablet, 84, blister pack 234543 930641000168102 Cavstat 5 mg film-coated tablet, 84 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930631000168106 rosuvastatin 5 mg tablet, 84 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +61419011000036106 Paracetamol (Herron) 500 mg uncoated tablet, 100, bottle 82690 57344011000036109 Paracetamol (Herron) 500 mg uncoated tablet, 100 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +812921000168103 Citalopram (Amneal) 20 mg film-coated tablet, 56, blister pack 158881 812911000168105 Citalopram (Amneal) 20 mg film-coated tablet, 56 812841000168100 Citalopram (Amneal) 20 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1063511000168108 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 40, blister pack 144070 1063501000168105 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 40 1063281000168100 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +60815011000036109 Nicotinell Mint 2 mg chewing gum, 12, blister pack 58058 56771011000036109 Nicotinell Mint 2 mg chewing gum, 12 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60815011000036109 Nicotinell Mint 2 mg chewing gum, 12, blister pack 126043 56771011000036109 Nicotinell Mint 2 mg chewing gum, 12 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1108451000168105 Midazolam (WP) 5 mg/mL injection solution, 5 x 1 mL ampoules 207220 1108441000168108 Midazolam (WP) 5 mg/mL injection solution, 5 x 1 mL ampoules 1108391000168109 Midazolam (WP) 5 mg/mL injection solution, ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +18665011000036108 Amisulpride (Sandoz) 100 mg uncoated tablet, 30, blister pack 128985 11871011000036101 Amisulpride (Sandoz) 100 mg uncoated tablet, 30 5679011000036106 Amisulpride (Sandoz) 100 mg uncoated tablet 3432011000036109 Amisulpride (Sandoz) 3432011000036109 Amisulpride (Sandoz) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +20927011000036105 Butamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 158051 14081011000036104 Butamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 7359011000036102 Butamol 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 3074011000036108 Butamol 3074011000036108 Butamol 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +20927011000036105 Butamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 93949 14081011000036104 Butamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 7359011000036102 Butamol 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 3074011000036108 Butamol 3074011000036108 Butamol 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +69639011000036108 Panadol Back and Neck Long Lasting 665 mg modified release tablet, 18, blister pack 78493 67438011000036109 Panadol Back and Neck Long Lasting 665 mg modified release tablet, 18 65666011000036104 Panadol Back and Neck Long Lasting 665 mg modified release tablet 50361000168101 Panadol Back and Neck Long Lasting 50361000168101 Panadol Back and Neck Long Lasting 71968011000036101 paracetamol 665 mg modified release tablet, 18 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +923802011000036105 Sulprix 200 mg tablet, 90, bottle 156043 84015011000036108 Sulprix 200 mg tablet, 90 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +780771000168102 Fentanyl (Apo) 37 microgram/hour patch, 2, sachet 152566 780761000168108 Fentanyl (Apo) 37 microgram/hour patch, 2 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780751000168106 fentanyl 37 microgram/hour patch, 2 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +160361000036106 Montelukast (Auro) 10 mg film-coated tablet, 28, blister pack 197206 159121000036104 Montelukast (Auro) 10 mg film-coated tablet, 28 158271000036104 Montelukast (Auro) 10 mg film-coated tablet 137341000036100 Montelukast (Auro) 137341000036100 Montelukast (Auro) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +821461000168103 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 26675 821451000168100 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack 821431000168106 Merieux Inactivated Rabies Vaccine (rabies vaccine) powder for injection, 2.5 units vial 73710011000036104 Merieux Inactivated Rabies Vaccine 73710011000036104 Merieux Inactivated Rabies Vaccine 821441000168102 rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 821351000168106 rabies vaccine injection, vial 821341000168109 rabies vaccine +821461000168103 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 26675 821451000168100 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack 637471000168106 Merieux Inactivated Rabies Vaccine (inert substance) diluent, 1 mL syringe 73710011000036104 Merieux Inactivated Rabies Vaccine 73710011000036104 Merieux Inactivated Rabies Vaccine 821441000168102 rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +926824011000036104 Zitrocin 500 mg film-coated tablet, 3, blister pack 171321 926220011000036101 Zitrocin 500 mg film-coated tablet, 3 925682011000036109 Zitrocin 500 mg film-coated tablet 925522011000036106 Zitrocin 925522011000036106 Zitrocin 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +812881000168105 Citalopram (Amneal) 20 mg film-coated tablet, 14, blister pack 158881 812871000168107 Citalopram (Amneal) 20 mg film-coated tablet, 14 812841000168100 Citalopram (Amneal) 20 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +928942011000036109 Topiramate (Generic Health) 50 mg film-coated tablet, 60, bottle 155189 928303011000036104 Topiramate (Generic Health) 50 mg film-coated tablet, 60 927932011000036101 Topiramate (Generic Health) 50 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +18652011000036105 Lasix 10 mg/mL oral liquid solution, 30 mL, bottle 12405 11756011000036106 Lasix 10 mg/mL oral liquid solution, 30 mL 4746011000036104 Lasix 10 mg/mL oral liquid solution 26171000168109 Lasix 26171000168109 Lasix 26763011000036105 furosemide (frusemide) 10 mg/mL oral liquid, 30 mL 22150011000036103 furosemide (frusemide) 10 mg/mL oral liquid 21329011000036103 furosemide (frusemide) +757211000168109 Palexia SR 25 mg modified release tablet, 20, blister pack 229737 757201000168106 Palexia SR 25 mg modified release tablet, 20 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757191000168108 tapentadol 25 mg modified release tablet, 20 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +735781000168103 Clotrimazole (Apohealth) 1% cream, 10 g, tube 735771000168101 Clotrimazole (Apohealth) 1% cream, 10 g 735761000168107 Clotrimazole (Apohealth) 1% cream 735751000168105 Clotrimazole (Apohealth) 735751000168105 Clotrimazole (Apohealth) 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +789351000168101 Abisart 300 mg film-coated tablet, 14, bottle 214582 789341000168103 Abisart 300 mg film-coated tablet, 14 98731000036108 Abisart 300 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 777411000168107 irbesartan 300 mg tablet, 14 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +825761000168107 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial 90624 825751000168105 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial 825731000168104 H-B-Vax II preservative free 10 microgram/mL injection suspension, vial 27541000168105 H-B-Vax II 27541000168105 H-B-Vax II 825741000168108 hepatitis B adult vaccine 10 microgram/mL injection, 1 mL vial 825721000168102 hepatitis B adult vaccine 10 microgram/mL injection, vial 825191000168101 hepatitis B vaccine +66651000036107 OP-1 3.3 mg implant, 1 vial 77949 64441000036103 OP-1 3.3 mg implant, 1 vial 60621000036104 OP-1 3.3 mg implant, 3.3 mg vial 60191000036105 OP-1 60191000036105 OP-1 64451000036100 osteogenic protein-1 3.3 mg implant, 1 vial 60631000036102 osteogenic protein-1 3.3 mg implant, vial 66751000036102 osteogenic protein-1 +804341000168101 Disprin Original 300 mg tablet, 6, strip pack 59901 804331000168105 Disprin Original 300 mg tablet, 6 804211000168108 Disprin Original 300 mg tablet 44991000168100 Disprin Original 44991000168100 Disprin Original 804321000168107 aspirin 300 mg tablet, 6 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +920735011000036107 Memantine (Apo) 10 mg film-coated tablet, 100, blister pack 159582 920418011000036103 Memantine (Apo) 10 mg film-coated tablet, 100 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38838011000036104 memantine hydrochloride 10 mg tablet, 100 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +765681000168102 Fraxiparine 2850 anti-Xa units/0.3 mL injection solution, 10 x 0.3 mL syringes 51309 765671000168100 Fraxiparine 2850 anti-Xa units/0.3 mL injection solution, 10 x 0.3 mL syringes 765621000168101 Fraxiparine 2850 anti-Xa units/0.3 mL injection solution, 0.3 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765661000168106 nadroparin calcium 2850 anti-Xa units/0.3 mL injection, 10 x 0.3 mL syringes 765611000168108 nadroparin calcium 2850 anti-Xa units/0.3 mL injection, syringe 765071000168107 nadroparin +18284011000036109 Sertraline (Winthrop) 100 mg film-coated tablet, 30, blister pack 119206 11608011000036107 Sertraline (Winthrop) 100 mg film-coated tablet, 30 6014011000036107 Sertraline (Winthrop) 100 mg film-coated tablet 4013011000036101 Sertraline (Winthrop) 4013011000036101 Sertraline (Winthrop) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +68769011000036109 Duromine 15 mg modified release capsule, 7, blister pack 10941 66582011000036109 Duromine 15 mg modified release capsule, 7 65265011000036108 Duromine 15 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 71305011000036101 phentermine 15 mg modified release capsule, 7 69940011000036102 phentermine 15 mg modified release capsule 37725011000036101 phentermine +1044241000168101 Pryzex 5 mg film-coated tablet, 21, blister pack 178991 1044231000168105 Pryzex 5 mg film-coated tablet, 21 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044221000168107 olanzapine 5 mg tablet, 21 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +37341011000036101 Methotrexate (Pfizer (Perth)) 1 g/10 mL injection solution, 10 mL vial 10778 36637011000036102 Methotrexate (Pfizer (Perth)) 1 g/10 mL injection solution, 10 mL vial 36048011000036105 Methotrexate (Pfizer (Perth)) 1 g/10 mL injection solution, 10 mL vial 3913011000036106 Methotrexate (Pfizer (Perth)) 3913011000036106 Methotrexate (Pfizer (Perth)) 28266011000036102 methotrexate 1 g/10 mL injection, 10 mL vial 23580011000036105 methotrexate 1 g/10 mL injection, vial 21342011000036105 methotrexate +17916011000036108 Calmurid cream, 100 g, tube 14462 12027011000036108 Calmurid cream, 100 g 5623011000036109 Calmurid cream 4280011000036104 Calmurid 4280011000036104 Calmurid 26861011000036107 urea 10% + lactic acid 5% cream, 100 g 22241011000036109 urea 10% + lactic acid 5% cream 21341011000036104 urea + lactic acid +924301000168100 Voltaren 50 mg enteric tablet, 50, blister pack 66880 11417011000036106 Voltaren 50 mg enteric tablet, 50 5542011000036109 Voltaren 50 mg enteric tablet 28551000168108 Voltaren 28551000168108 Voltaren 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +21038011000036105 Edecrin 25 mg uncoated tablet, 100, bottle 96871 14183011000036108 Edecrin 25 mg uncoated tablet, 100 7464011000036100 Edecrin 25 mg uncoated tablet 3871011000036109 Edecrin 3871011000036109 Edecrin 28199011000036105 etacrynic acid 25 mg tablet, 100 23511011000036100 etacrynic acid 25 mg tablet 21645011000036107 etacrynic acid +830141000168101 Atomoxetine (Apo) 100 mg hard capsule, 14, blister pack 234803 830131000168105 Atomoxetine (Apo) 100 mg hard capsule, 14 830091000168108 Atomoxetine (Apo) 100 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830121000168107 atomoxetine 100 mg capsule, 14 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +1095701000168103 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet, 10, blister pack 287705 1095691000168103 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet, 10 1095681000168101 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet 1095591000168102 Anti-Inflammatory Pain Relief (Blooms The Chemist) 1095591000168102 Anti-Inflammatory Pain Relief (Blooms The Chemist) 63832011000036105 diclofenac sodium 25 mg enteric tablet, 10 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +60935011000036106 Claratyne 10 mg effervescent tablet, 20, blister pack 62125 56889011000036104 Claratyne 10 mg effervescent tablet, 20 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63633011000036107 loratadine 10 mg effervescent tablet, 20 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +50569011000036105 Durotram XR (once a day) 200 mg modified release tablet, 5, blister pack 134822 49603011000036106 Durotram XR (once a day) 200 mg modified release tablet, 5 48787011000036107 Durotram XR (once a day) 200 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51506011000036108 tramadol hydrochloride 200 mg modified release tablet, 5 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +21004011000036106 Lisinopril (GenRx) 10 mg tablet, 30, blister pack 96321 14150011000036109 Lisinopril (GenRx) 10 mg tablet, 30 7429011000036108 Lisinopril (GenRx) 10 mg tablet 3751011000036109 Lisinopril (GenRx) 3751011000036109 Lisinopril (GenRx) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +21004011000036106 Lisinopril (GenRx) 10 mg tablet, 30, blister pack 142490 14150011000036109 Lisinopril (GenRx) 10 mg tablet, 30 7429011000036108 Lisinopril (GenRx) 10 mg tablet 3751011000036109 Lisinopril (GenRx) 3751011000036109 Lisinopril (GenRx) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +947731000168103 Citlam-S 5 mg film-coated tablet, 14, blister pack 191899 947721000168101 Citlam-S 5 mg film-coated tablet, 14 947711000168108 Citlam-S 5 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 944991000168105 escitalopram 5 mg tablet, 14 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +933215361000036106 Lunava 10 mg film-coated tablet, 30, bottle 164966 933204791000036102 Lunava 10 mg film-coated tablet, 30 933195751000036105 Lunava 10 mg film-coated tablet 933193181000036101 Lunava 933193181000036101 Lunava 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +928641000168103 Uremide 40 mg uncoated tablet, 30, bottle 17704 928631000168107 Uremide 40 mg uncoated tablet, 30 5862011000036100 Uremide 40 mg uncoated tablet 3144011000036100 Uremide 3144011000036100 Uremide 928621000168109 furosemide (frusemide) 40 mg tablet, 30 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +849411000168104 Metformin XR 1000 (Terry White Chemists) 1 g modified release tablet, 60, blister pack 218271 849401000168102 Metformin XR 1000 (Terry White Chemists) 1 g modified release tablet, 60 849391000168104 Metformin XR 1000 (Terry White Chemists) 1 g modified release tablet 849381000168102 Metformin XR 1000 (Terry White Chemists) 849381000168102 Metformin XR 1000 (Terry White Chemists) 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +44503011000036102 Cancidas 70 mg powder for injection, 1 vial 76530 41958011000036101 Cancidas 70 mg powder for injection, 1 vial 40286011000036100 Cancidas 70 mg powder for injection, 70 mg vial 39603011000036107 Cancidas 39603011000036107 Cancidas 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +61003011000036100 Aleve 220 mg film-coated tablet, 3, blister pack 63794 56946011000036107 Aleve 220 mg film-coated tablet, 3 54133011000036109 Aleve 220 mg film-coated tablet 53458011000036102 Aleve 53458011000036102 Aleve 63652011000036104 naproxen sodium 220 mg tablet, 3 62035011000036109 naproxen sodium 220 mg tablet 21304011000036105 naproxen +20075011000036106 Magicul 200 mg film-coated tablet, 120, blister pack 70764 13304011000036103 Magicul 200 mg film-coated tablet, 120 6588011000036104 Magicul 200 mg film-coated tablet 3689011000036105 Magicul 3689011000036105 Magicul 27678011000036100 cimetidine 200 mg tablet, 120 23015011000036100 cimetidine 200 mg tablet 21427011000036101 cimetidine +929114011000036107 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 98, blister pack 166920 928475011000036102 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 98 927992011000036108 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929268011000036102 pioglitazone 15 mg tablet, 98 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +69163011000036101 Alka-Seltzer Lemon effervescent tablet, 20, strip pack 15684 66963011000036108 Alka-Seltzer Lemon effervescent tablet, 20 65280011000036102 Alka-Seltzer Lemon effervescent tablet 64952011000036100 Alka-Seltzer 64952011000036100 Alka-Seltzer 71536011000036102 aspirin 324 mg + sodium bicarbonate 1.7 g + citric acid 1.2 g effervescent tablet, 20 70046011000036107 aspirin 324 mg + sodium bicarbonate 1.7 g + citric acid 1.2 g effervescent tablet 69762011000036101 aspirin + bicarbonate + citric acid +1123431000168101 Quetiapine XR (ZP) 400 mg modified release tablet, 100, blister pack 226804 1123421000168104 Quetiapine XR (ZP) 400 mg modified release tablet, 100 1123411000168106 Quetiapine XR (ZP) 400 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51539011000036109 quetiapine 400 mg modified release tablet, 100 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +69570011000036108 Dettol Antiseptic Liquid 4.8% solution, 5 L, bottle 61404 67370011000036101 Dettol Antiseptic Liquid 4.8% solution, 5 L 65632011000036107 Dettol Antiseptic Liquid 4.8% solution 65186011000036101 Dettol Antiseptic Liquid 65186011000036101 Dettol Antiseptic Liquid 71910011000036104 chloroxylenol 4.8% solution, 5 L 70243011000036106 chloroxylenol 4.8% solution 69808011000036100 chloroxylenol +931767011000036104 Savlon Antibacterial Moisturising Liquid Wash 0.3% w/v solution, 250 mL, bottle 80243 930927011000036105 Savlon Antibacterial Moisturising Liquid Wash 0.3% w/v solution, 250 mL 930125011000036103 Savlon Antibacterial Moisturising Liquid Wash 0.3% w/v solution 531000168101 Savlon Antibacterial Moisturising Liquid Wash 531000168101 Savlon Antibacterial Moisturising Liquid Wash 932497011000036105 triclosan 0.3% w/v solution, 250 mL 931891011000036107 triclosan 0.3% w/v solution 69817011000036103 triclosan +50616011000036105 Seroquel XR 200 mg modified release tablet, 100, blister pack 138920 49642011000036108 Seroquel XR 200 mg modified release tablet, 100 48796011000036105 Seroquel XR 200 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51533011000036106 quetiapine 200 mg modified release tablet, 100 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +829961000168108 Atomoxetine (Apo) 10 mg hard capsule, 28, blister pack 234800 829951000168106 Atomoxetine (Apo) 10 mg hard capsule, 28 829891000168108 Atomoxetine (Apo) 10 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +130771000036109 Candesartan Cilexetil (Apo) 32 mg uncoated tablet, 30, bottle 191762 128031000036105 Candesartan Cilexetil (Apo) 32 mg uncoated tablet, 30 124501000036104 Candesartan Cilexetil (Apo) 32 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +68679011000036108 Nicotinell Fruit 4 mg chewing gum, 120, blister pack 126017 66688011000036100 Nicotinell Fruit 4 mg chewing gum, 120 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71514011000036100 nicotine 4 mg gum, 120 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +923751011000036108 Novicrit 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 147843 923303011000036100 Novicrit 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 922989011000036100 Novicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924119011000036109 epoetin lambda 4000 units/0.4 mL injection, 6 x 0.4 mL syringes 923949011000036100 epoetin lambda 4000 units/0.4 mL injection, syringe 923930011000036107 epoetin lambda +1009861000168105 Topiramate (AN) 100 mg film-coated tablet, 60, blister pack 157969 686291000168100 Topiramate (AN) 100 mg film-coated tablet, 60 686281000168103 Topiramate (AN) 100 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +765841000168108 Desvenlafaxine MR (Apo) 50 mg modified release tablet, 14, blister pack 218307 765831000168104 Desvenlafaxine MR (Apo) 50 mg modified release tablet, 14 765801000168106 Desvenlafaxine MR (Apo) 50 mg modified release tablet 765791000168105 Desvenlafaxine MR (Apo) 765791000168105 Desvenlafaxine MR (Apo) 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +86036011000036103 Ibuprofen plus Codeine (Guardian) film-coated tablet, 24, blister pack 158211 85739011000036107 Ibuprofen plus Codeine (Guardian) film-coated tablet, 24 85367011000036107 Ibuprofen plus Codeine (Guardian) film-coated tablet 85267011000036100 Ibuprofen plus Codeine (Guardian) 85267011000036100 Ibuprofen plus Codeine (Guardian) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +20657011000036108 Kredex 12.5 mg uncoated tablet, 60, blister pack 81648 13837011000036103 Kredex 12.5 mg uncoated tablet, 60 7124011000036106 Kredex 12.5 mg uncoated tablet 3872011000036103 Kredex 3872011000036103 Kredex 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +1091411000168108 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 24, blister pack 285250 1091401000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 24 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +889901000168104 Gastrolyte Ready to Drink Orange oral liquid solution, 250 mL, bottle 198536 889891000168103 Gastrolyte Ready to Drink Orange oral liquid solution, 250 mL 889841000168106 Gastrolyte Ready to Drink Orange oral liquid solution 889821000168100 Gastrolyte Ready to Drink 889821000168100 Gastrolyte Ready to Drink 889881000168101 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid, 250 mL 889831000168102 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +1091371000168107 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 16, blister pack 285250 1091361000168101 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 16 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813171000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 16 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1089351000168103 Deca-Durabolin Orgaject 50 mg/mL injection solution, 1 mL ampoule 280573 1089341000168100 Deca-Durabolin Orgaject 50 mg/mL injection solution, 1 mL ampoule 1089321000168106 Deca-Durabolin Orgaject 50 mg/mL injection solution, ampoule 32851000168105 Deca-Durabolin Orgaject 32851000168105 Deca-Durabolin Orgaject 1089331000168109 nandrolone decanoate 50 mg/mL injection, 1 mL ampoule 1089311000168104 nandrolone decanoate 50 mg/mL injection, ampoule 21449011000036106 nandrolone decanoate +946041000168107 Glimepiride (Sanofi) 3 mg uncoated tablet, 10, blister pack 142392 946031000168103 Glimepiride (Sanofi) 3 mg uncoated tablet, 10 946011000168108 Glimepiride (Sanofi) 3 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 946021000168101 glimepiride 3 mg tablet, 10 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +984141000168106 Butafen 200 mg sugar coated tablet, 12, blister pack 126093 984131000168102 Butafen 200 mg sugar coated tablet, 12 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1018061000168108 Amisulpride (Apotex) 50 mg tablet, 90, blister pack 178893 1018051000168106 Amisulpride (Apotex) 50 mg tablet, 90 1018021000168103 Amisulpride (Apotex) 50 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1026701000168103 Pregabalin (Amneal) 150 mg hard capsule, 56, blister pack 235877 1026691000168103 Pregabalin (Amneal) 150 mg hard capsule, 56 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1016531000168106 Leflunomide (Apo) 10 mg uncoated tablet, 30, bottle 185716 1016521000168108 Leflunomide (Apo) 10 mg uncoated tablet, 30 1016511000168101 Leflunomide (Apo) 10 mg uncoated tablet 32491000168102 Leflunomide (Apo) 32491000168102 Leflunomide (Apo) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +60065011000036107 Ibuprofen Liquid Cap (Pharmacist) 200 mg soft capsule, 40, blister pack 125291 56027011000036100 Ibuprofen Liquid Cap (Pharmacist) 200 mg soft capsule, 40 53763011000036109 Ibuprofen Liquid Cap (Pharmacist) 200 mg soft capsule 18521000168106 Ibuprofen Liquid Cap (Pharmacist) 18521000168106 Ibuprofen Liquid Cap (Pharmacist) 63932011000036104 ibuprofen 200 mg capsule, 40 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +66491000036100 Revasc (2 x 15 mg vials, 2 x 1 mL inert diluent ampoules), 1 pack, composite pack 57639 64081000036103 Revasc (2 x 15 mg vials, 2 x 1 mL inert diluent ampoules), 1 pack 633021000168107 Revasc (inert substance) diluent, 1 mL ampoule 60321000036105 Revasc 60321000036105 Revasc 64091000036101 desirudin 15 mg injection [2 vials] (&) inert substance diluent [2 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +66491000036100 Revasc (2 x 15 mg vials, 2 x 1 mL inert diluent ampoules), 1 pack, composite pack 57639 64081000036103 Revasc (2 x 15 mg vials, 2 x 1 mL inert diluent ampoules), 1 pack 61001000036106 Revasc (desirudin 15 mg) powder for injection, 15 mg vial 60321000036105 Revasc 60321000036105 Revasc 64091000036101 desirudin 15 mg injection [2 vials] (&) inert substance diluent [2 x 1 mL ampoules], 1 pack 61021000036101 desirudin 15 mg injection, vial 66811000036107 desirudin +915801000168104 Cervarix injection suspension, 100 x 0.5 mL vials 126115 915791000168100 Cervarix injection suspension, 100 x 0.5 mL vials 915711000168109 Cervarix injection suspension, 0.5 mL vial 73753011000036102 Cervarix 73753011000036102 Cervarix 915781000168103 human papillomavirus bivalent vaccine injection, 100 x 0.5 mL vials 915701000168106 human papillomavirus bivalent vaccine injection, 0.5 mL vial 823121000168104 human papillomavirus bivalent vaccine +43715011000036100 Simvabell 10 mg film-coated tablet, 250, bottle 100885 41103011000036100 Simvabell 10 mg film-coated tablet, 250 4684011000036107 Simvabell 10 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46088011000036103 simvastatin 10 mg tablet, 250 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1040291000168104 Atorvastatin (Ascent) 80 mg film-coated tablet, 30, blister pack 178531 1040281000168102 Atorvastatin (Ascent) 80 mg film-coated tablet, 30 1040231000168103 Atorvastatin (Ascent) 80 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1040311000168100 Atorvastatin (Ascent) 80 mg film-coated tablet, 40, blister pack 178531 1040301000168103 Atorvastatin (Ascent) 80 mg film-coated tablet, 40 1040231000168103 Atorvastatin (Ascent) 80 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841871000168108 atorvastatin 80 mg tablet, 40 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +875391000168100 Bisoprolol (AN) 7.5 mg film-coated tablet, 100, blister pack 175913 875381000168103 Bisoprolol (AN) 7.5 mg film-coated tablet, 100 875331000168104 Bisoprolol (AN) 7.5 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 874401000168102 bisoprolol fumarate 7.5 mg tablet, 100 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +1065511000168109 Strong Pain Relief (Terry White Chemists) uncoated tablet, 24, blister pack 171010 1065501000168106 Strong Pain Relief (Terry White Chemists) uncoated tablet, 24 1065491000168104 Strong Pain Relief (Terry White Chemists) uncoated tablet 1065481000168102 Strong Pain Relief (Terry White Chemists) 1065481000168102 Strong Pain Relief (Terry White Chemists) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +52702011000036107 Panadeine Extra uncoated tablet, 6, blister pack 101436 52517011000036108 Panadeine Extra uncoated tablet, 6 52397011000036105 Panadeine Extra uncoated tablet 9851000168109 Panadeine Extra 9851000168109 Panadeine Extra 52862011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 6 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1020231000168101 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 98, blister pack 190327 1020221000168104 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 98 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82555011000036108 clopidogrel 75 mg + aspirin 100 mg tablet, 98 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +18918011000036104 Prednefrin Forte eye drops suspension, 10 mL, bottle 23235 12226011000036102 Prednefrin Forte eye drops suspension, 10 mL 5970011000036104 Prednefrin Forte eye drops suspension 22601000168107 Prednefrin Forte 22601000168107 Prednefrin Forte 26995011000036103 prednisolone acetate 1% + phenylephrine hydrochloride 0.12% eye drops, 10 mL 22368011000036100 prednisolone acetate 1% + phenylephrine hydrochloride 0.12% eye drops 21375011000036101 prednisolone acetate + phenylephrine +20820011000036102 Adefin XL 30 mg modified release tablet, 30, blister pack 91779 13983011000036107 Adefin XL 30 mg modified release tablet, 30 7270011000036102 Adefin XL 30 mg modified release tablet 461000168108 Adefin XL 461000168108 Adefin XL 28048011000036102 nifedipine 30 mg modified release tablet, 30 23369011000036100 nifedipine 30 mg modified release tablet 21241011000036108 nifedipine +667381000168108 Kaptan 300 mg film-coated tablet, 20, blister pack 202245 667371000168105 Kaptan 300 mg film-coated tablet, 20 667361000168104 Kaptan 300 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +979801000168106 Serc 8 mg uncoated tablet, 120, blister pack 61688 979791000168105 Serc 8 mg uncoated tablet, 120 979751000168100 Serc 8 mg uncoated tablet 39692011000036103 Serc 39692011000036103 Serc 979781000168107 betahistine dihydrochloride 8 mg tablet, 120 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +77383011000036100 Andrews Tums Antacid Orange 500 mg chewable tablet, 20, blister pack 74672 76799011000036100 Andrews Tums Antacid Orange 500 mg chewable tablet, 20 76186011000036104 Andrews Tums Antacid Orange 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78303011000036107 calcium carbonate 500 mg chewable tablet, 20 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +859601000168102 Zovirax Dispersible 400 mg tablet, 70, blister pack 51428 859541000168101 Zovirax Dispersible 400 mg tablet, 70 859531000168105 Zovirax Dispersible 400 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 800451000168103 aciclovir 400 mg tablet, 70 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +781171000168109 Oxycodone MR (GenRx) 10 mg modified release tablet, 20, blister pack 214494 781161000168103 Oxycodone MR (GenRx) 10 mg modified release tablet, 20 781151000168100 Oxycodone MR (GenRx) 10 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +20910011000036102 Aldazine 100 mg film-coated tablet, 100, bottle 93659 32408011000036108 Aldazine 100 mg film-coated tablet, 100 32257011000036103 Aldazine 100 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32806011000036104 thioridazine hydrochloride 100 mg tablet, 100 32708011000036102 thioridazine hydrochloride 100 mg tablet 21637011000036101 thioridazine +19068011000036105 Mycospor 1% cream, 15 g, tube 41931 12376011000036105 Mycospor 1% cream, 15 g 4477011000036107 Mycospor 1% cream 3525011000036106 Mycospor 3525011000036106 Mycospor 27085011000036107 bifonazole 1% cream, 15 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +694691000168105 Sildaccord 100 mg film-coated tablet, 12, blister pack 188710 694681000168107 Sildaccord 100 mg film-coated tablet, 12 694651000168100 Sildaccord 100 mg film-coated tablet 694611000168101 Sildaccord 694611000168101 Sildaccord 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +1082911000168106 Solian 50 mg uncoated tablet, 90, blister pack 96421 1082901000168108 Solian 50 mg uncoated tablet, 90 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +19869011000036101 MS Contin Suspension 100 mg modified release granules, 20 sachets 65398 13116011000036102 MS Contin Suspension 100 mg modified release granules, 20 sachets 6399011000036108 MS Contin Suspension 100 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 27557011000036105 morphine sulfate pentahydrate 100 mg modified release granules, 20 sachets 22896011000036103 morphine sulfate pentahydrate 100 mg modified release granules, 1 sachet 21252011000036100 morphine +945311000168104 Citlam-S 20 mg film-coated tablet, 14, blister pack 191880 945301000168102 Citlam-S 20 mg film-coated tablet, 14 945281000168101 Citlam-S 20 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 945291000168103 escitalopram 20 mg tablet, 14 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +940981000168101 Sertraline (LAPL) 100 mg film-coated tablet, 30, blister pack 147080 940971000168104 Sertraline (LAPL) 100 mg film-coated tablet, 30 940961000168105 Sertraline (LAPL) 100 mg film-coated tablet 940921000168100 Sertraline (LAPL) 940921000168100 Sertraline (LAPL) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +692541000168107 Desfax 100 mg modified release tablet, 7, bottle 218081 692481000168101 Desfax 100 mg modified release tablet, 7 692471000168104 Desfax 100 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1014361000168103 Valsartan (Apotex) 320 mg film-coated tablet, 30, blister pack 185860 1014351000168100 Valsartan (Apotex) 320 mg film-coated tablet, 30 1014251000168105 Valsartan (Apotex) 320 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63185011000036104 valsartan 320 mg tablet, 30 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +933213031000036101 Pantoprazole (I) 40 mg enteric tablet, 30, blister pack 158201 933202681000036103 Pantoprazole (I) 40 mg enteric tablet, 30 933195331000036103 Pantoprazole (I) 40 mg enteric tablet 933193131000036100 Pantoprazole (I) 933193131000036100 Pantoprazole (I) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +61586011000036105 Zantac Relief Extra Strength 300 mg film-coated tablet, 7, blister pack 95076 57508011000036109 Zantac Relief Extra Strength 300 mg film-coated tablet, 7 54330011000036105 Zantac Relief Extra Strength 300 mg film-coated tablet 13051000168102 Zantac Relief Extra Strength 13051000168102 Zantac Relief Extra Strength 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +808441000168103 Pramipexole XR (GP) 1.5 mg modified release tablet, 10, blister pack 225600 808431000168107 Pramipexole XR (GP) 1.5 mg modified release tablet, 10 808421000168109 Pramipexole XR (GP) 1.5 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 756171000168109 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet, 10 87760011000036108 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet 37716011000036100 pramipexole +740031000168105 Ranitidine (AN) 300 mg film-coated tablet, 7, blister pack 148526 740021000168107 Ranitidine (AN) 300 mg film-coated tablet, 7 740011000168100 Ranitidine (AN) 300 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +82391011000036100 Duocover 75 mg/100 mg film-coated tablet, 84, blister pack 151075 82180011000036104 Duocover 75 mg/100 mg film-coated tablet, 84 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82554011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 84 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1121741000168101 Mepreze 20 mg enteric tablet, 7, blister pack 252682 1121731000168105 Mepreze 20 mg enteric tablet, 7 1121721000168107 Mepreze 20 mg enteric tablet 1121711000168100 Mepreze 1121711000168100 Mepreze 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +74792011000036103 Irinotecan Hydrochloride Trihydrate (Omegapharm) 40 mg/2 mL concentrated injection, 2 mL vial 137448 74279011000036108 Irinotecan Hydrochloride Trihydrate (Omegapharm) 40 mg/2 mL concentrated injection, 2 mL vial 73833011000036104 Irinotecan Hydrochloride Trihydrate (Omegapharm) 40 mg/2 mL concentrated injection, 2 mL vial 73705011000036106 Irinotecan Hydrochloride Trihydrate (Omegapharm) 73705011000036106 Irinotecan Hydrochloride Trihydrate (Omegapharm) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +821421000168108 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 100582 821411000168101 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack 631721000168108 Rabipur (inert substance) diluent, 1 mL ampoule 73706011000036104 Rabipur 73706011000036104 Rabipur 821401000168104 rabies vaccine injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +821421000168108 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 100582 821411000168101 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack 821361000168108 Rabipur (rabies vaccine) powder for injection, 2.5 units vial 73706011000036104 Rabipur 73706011000036104 Rabipur 821401000168104 rabies vaccine injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 821351000168106 rabies vaccine injection, vial 821341000168109 rabies vaccine +933046011000036102 Vycin IV 500 mg powder for injection, 10 vials 118999 932853011000036103 Vycin IV 500 mg powder for injection, 10 vials 932719011000036108 Vycin IV 500 mg powder for injection, 500 mg vial 40201000168107 Vycin IV 40201000168107 Vycin IV 922675011000036105 vancomycin 500 mg injection, 10 vials 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +19642011000036106 Madopar Rapid 125 dispersible tablet, 100, bottle 59576 12911011000036101 Madopar Rapid 125 dispersible tablet, 100 6201011000036104 Madopar Rapid 125 dispersible tablet 62041000168108 Madopar Rapid 125 62041000168108 Madopar Rapid 125 83701000036107 levodopa 100 mg + benserazide 25 mg dispersible tablet, 100 83611000036102 levodopa 100 mg + benserazide 25 mg dispersible tablet 21331011000036100 levodopa + benserazide +929694011000036109 Metformin (Apo) 850 mg film-coated tablet, 60, blister pack 174816 929530011000036100 Metformin (Apo) 850 mg film-coated tablet, 60 929414011000036106 Metformin (Apo) 850 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +920810011000036105 Vinorelbine (DBL) 50 mg/5 mL concentrated injection, 5 mL vial 97648 920489011000036108 Vinorelbine (DBL) 50 mg/5 mL concentrated injection, 5 mL vial 920220011000036106 Vinorelbine (DBL) 50 mg/5 mL concentrated injection, 5 mL vial 920115011000036105 Vinorelbine (DBL) 920115011000036105 Vinorelbine (DBL) 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +787581000168109 Arizole 20 mg uncoated tablet, 30, bottle 198178 787571000168106 Arizole 20 mg uncoated tablet, 30 787561000168100 Arizole 20 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +931776011000036107 Concerta 18 mg modified release tablet, 60, bottle 93862 930936011000036105 Concerta 18 mg modified release tablet, 60 7353011000036100 Concerta 18 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932505011000036108 methylphenidate hydrochloride 18 mg modified release tablet, 60 23437011000036109 methylphenidate hydrochloride 18 mg modified release tablet 21277011000036101 methylphenidate +1027381000168105 Neuroccord 75 mg hard capsule, 60, blister pack 235849 1027281000168101 Neuroccord 75 mg hard capsule, 60 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1082831000168105 Solian 50 mg uncoated tablet, 30, blister pack 96421 1082821000168107 Solian 50 mg uncoated tablet, 30 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +69720011000036108 Aerius 5 mg film-coated tablet, 2, blister pack 91116 67519011000036100 Aerius 5 mg film-coated tablet, 2 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72021011000036106 desloratadine 5 mg tablet, 2 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +87672011000036108 Clopidogrel (Winthrop) 75 mg film-coated tablet, 14, blister pack 148947 87430011000036109 Clopidogrel (Winthrop) 75 mg film-coated tablet, 14 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87800011000036106 clopidogrel 75 mg tablet, 14 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +930891000168109 Xatral 2.5 mg film-coated tablet, 60, blister pack 60096 930881000168106 Xatral 2.5 mg film-coated tablet, 60 930831000168105 Xatral 2.5 mg film-coated tablet 930811000168100 Xatral 930811000168100 Xatral 930871000168108 alfuzosin hydrochloride 2.5 mg tablet, 60 930821000168107 alfuzosin hydrochloride 2.5 mg tablet 926977011000036100 alfuzosin +44405011000036106 Somac 20 mg enteric tablet, 100, blister pack 70829 41865011000036105 Somac 20 mg enteric tablet, 100 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46670011000036104 pantoprazole 20 mg enteric tablet, 100 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1031681000168107 Atomoxetine (GXP) 25 mg hard capsule, 56, blister pack 234817 1031671000168109 Atomoxetine (GXP) 25 mg hard capsule, 56 1031431000168108 Atomoxetine (GXP) 25 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830501000168109 atomoxetine 25 mg capsule, 56 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +37504011000036105 Tramedo SR 100 mg modified release tablet, 20, blister pack 133147 36772011000036109 Tramedo SR 100 mg modified release tablet, 20 36015011000036108 Tramedo SR 100 mg modified release tablet 47831000168100 Tramedo SR 47831000168100 Tramedo SR 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +44486011000036103 Tobramycin (DBL) 20 mg/2 mL injection solution, 5 x 2 mL vials 75685 41941011000036107 Tobramycin (DBL) 20 mg/2 mL injection solution, 5 x 2 mL vials 40276011000036107 Tobramycin (DBL) 20 mg/2 mL injection solution, 2 mL vial 3698011000036101 Tobramycin (DBL) 3698011000036101 Tobramycin (DBL) 46726011000036106 tobramycin 20 mg/2 mL injection, 5 x 2 mL vials 45284011000036100 tobramycin 20 mg/2 mL injection, vial 21646011000036100 tobramycin +1061261000168108 Atorvator 80 mg film-coated tablet, 28, bottle 179852 1061251000168106 Atorvator 80 mg film-coated tablet, 28 1061241000168109 Atorvator 80 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890391000168102 atorvastatin 80 mg tablet, 28 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +763831000168103 Sorbolene Cream (David Craig) cream, 500 g, jar 763821000168101 Sorbolene Cream (David Craig) cream, 500 g 763231000168104 Sorbolene Cream (David Craig) cream 763151000168103 Sorbolene Cream (David Craig) 763151000168103 Sorbolene Cream (David Craig) 763811000168108 cetomacrogol aqueous cream, 500 g 763221000168102 cetomacrogol aqueous cream 763211000168109 cetomacrogol aqueous cream +1023091000168102 Ibuprofen (A) 200 mg film-coated tablet, 12, blister pack 161314 1023081000168100 Ibuprofen (A) 200 mg film-coated tablet, 12 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +84327011000036106 Pantoprazole (Terry White Chemists) 20 mg enteric tablet, 30, blister pack 156336 84020011000036106 Pantoprazole (Terry White Chemists) 20 mg enteric tablet, 30 83649011000036108 Pantoprazole (Terry White Chemists) 20 mg enteric tablet 83559011000036104 Pantoprazole (Terry White Chemists) 83559011000036104 Pantoprazole (Terry White Chemists) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +60819011000036106 Nicotinell Fruit 2 mg chewing gum, 24, blister pack 58059 56775011000036106 Nicotinell Fruit 2 mg chewing gum, 24 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60819011000036106 Nicotinell Fruit 2 mg chewing gum, 24, blister pack 126013 56775011000036106 Nicotinell Fruit 2 mg chewing gum, 24 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +19552011000036100 Femtran 50 microgram/24 hours patch, 4, sachet 56847 12824011000036103 Femtran 50 microgram/24 hours patch, 4 6115011000036103 Femtran 50 microgram/24 hours patch 3994011000036109 Femtran 3994011000036109 Femtran 27381011000036109 estradiol 50 microgram/24 hours patch, 4 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +60802011000036104 Imodium Caplet 2 mg uncoated tablet, 4, blister pack 56001 56758011000036102 Imodium Caplet 2 mg uncoated tablet, 4 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63822011000036107 loperamide hydrochloride 2 mg tablet, 4 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +1031041000168109 Aten 50 mg film-coated tablet, 30, blister pack 197716 1031031000168100 Aten 50 mg film-coated tablet, 30 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +979711000168101 Zomig 5 mg film-coated tablet, 6, blister pack 61326 979701000168104 Zomig 5 mg film-coated tablet, 6 979621000168101 Zomig 5 mg film-coated tablet 3430011000036105 Zomig 3430011000036105 Zomig 979691000168104 zolmitriptan 5 mg tablet, 6 979611000168108 zolmitriptan 5 mg tablet 21516011000036102 zolmitriptan +61603011000036108 Strepfen Intensive orange sugar free 8.75 mg lozenge, 16, blister pack 157020 57525011000036107 Strepfen Intensive orange sugar free 8.75 mg lozenge, 16 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63907011000036106 flurbiprofen 8.75 mg lozenge, 16 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +61603011000036108 Strepfen Intensive orange sugar free 8.75 mg lozenge, 16, blister pack 96063 57525011000036107 Strepfen Intensive orange sugar free 8.75 mg lozenge, 16 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63907011000036106 flurbiprofen 8.75 mg lozenge, 16 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +19475011000036100 Acenorm 50 mg uncoated tablet, 90, bottle 54723 12752011000036108 Acenorm 50 mg uncoated tablet, 90 6046011000036109 Acenorm 50 mg uncoated tablet 4183011000036109 Acenorm 4183011000036109 Acenorm 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +789591000168103 Oxycodone (HX) 40 mg modified release tablet, 60, bottle 153594 789581000168101 Oxycodone (HX) 40 mg modified release tablet, 60 789531000168102 Oxycodone (HX) 40 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +130631000036101 Acetylcysteine (Link) 2 g/10 mL concentrated injection, 10 x 10 mL ampoules 170803 127661000036109 Acetylcysteine (Link) 2 g/10 mL concentrated injection, 10 x 10 mL ampoules 124561000036100 Acetylcysteine (Link) 2 g/10 mL concentrated injection, 10 mL ampoule 106561000036102 Acetylcysteine (Link) 106561000036102 Acetylcysteine (Link) 38535011000036109 acetylcysteine 2 g/10 mL injection, 10 x 10 mL ampoules 37821011000036101 acetylcysteine 2 g/10 mL injection, ampoule 21423011000036105 acetylcysteine +876921000168106 Betnovate-1/2 0.05% ointment, 30 g, tube 57336 876911000168104 Betnovate-1/2 0.05% ointment, 30 g 6132011000036103 Betnovate-1/2 0.05% ointment 36901000168100 Betnovate-1/2 36901000168100 Betnovate-1/2 876901000168102 betamethasone (as valerate) 0.05% ointment, 30 g 23356011000036101 betamethasone (as valerate) 0.05% ointment 21366011000036103 betamethasone valerate +60849011000036103 Avil 45.3 mg uncoated tablet, 50, bottle 58687 56805011000036100 Avil 45.3 mg uncoated tablet, 50 54085011000036107 Avil 45.3 mg uncoated tablet 4941000168102 Avil 4941000168102 Avil 63581011000036106 pheniramine maleate 45.3 mg tablet, 50 62020011000036103 pheniramine maleate 45.3 mg tablet 61798011000036109 pheniramine +84275011000036107 Norvapine 5 mg uncoated tablet, 30, blister pack 125853 83968011000036108 Norvapine 5 mg uncoated tablet, 30 83610011000036106 Norvapine 5 mg uncoated tablet 83558011000036107 Norvapine 83558011000036107 Norvapine 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +69536011000036108 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 57021 67336011000036101 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 65617011000036102 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 31461000168102 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) 31461000168102 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) 71881011000036102 chlorhexidine gluconate 0.015% + cetrimide 0.15% solution, 30 mL ampoule 70230011000036102 chlorhexidine gluconate 0.015% + cetrimide 0.15% solution, ampoule 69756011000036105 chlorhexidine + cetrimide +889781000168105 Carbosin 150 mg/15 mL injection solution, 15 mL vial 99136 889771000168107 Carbosin 150 mg/15 mL injection solution, 15 mL vial 889761000168101 Carbosin 150 mg/15 mL injection solution, 15 mL vial 889751000168103 Carbosin 889751000168103 Carbosin 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +1027341000168100 Neuroccord 75 mg hard capsule, 14, blister pack 235849 1027201000168109 Neuroccord 75 mg hard capsule, 14 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1039671000168105 Aspramide 10 mg film-coated tablet, 25, blister pack 196460 1039661000168104 Aspramide 10 mg film-coated tablet, 25 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +39406011000036104 Quinapril (Generic Health) 10 mg film-coated tablet, 30, blister pack 133200 39290011000036104 Quinapril (Generic Health) 10 mg film-coated tablet, 30 39198011000036104 Quinapril (Generic Health) 10 mg film-coated tablet 39184011000036107 Quinapril (Generic Health) 39184011000036107 Quinapril (Generic Health) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +1039651000168101 Aspramide 10 mg film-coated tablet, 20, blister pack 196460 1039641000168103 Aspramide 10 mg film-coated tablet, 20 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 671831000168101 metoclopramide hydrochloride 10 mg tablet, 20 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +1031631000168106 Aripra 2 mg uncoated tablet, 30, blister pack 217235 1031621000168108 Aripra 2 mg uncoated tablet, 30 1031611000168101 Aripra 2 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +19942011000036107 Frusid 20 mg uncoated tablet, 100, bottle 67190 13185011000036106 Frusid 20 mg uncoated tablet, 100 6468011000036106 Frusid 20 mg uncoated tablet 3598011000036105 Frusid 3598011000036105 Frusid 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +926732011000036108 Lisinopril (GA) 2.5 mg uncoated tablet, 84, blister pack 106498 926089011000036109 Lisinopril (GA) 2.5 mg uncoated tablet, 84 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927304011000036109 lisinopril 2.5 mg tablet, 84 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +20893011000036100 Roxin 400 mg film-coated tablet, 14, bottle 93211 14054011000036107 Roxin 400 mg film-coated tablet, 14 7332011000036106 Roxin 400 mg film-coated tablet 3155011000036103 Roxin 3155011000036103 Roxin 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +60335011000036104 C-Zine (Amcal) 10 mg film-coated tablet, 10, blister pack 139460 56294011000036107 C-Zine (Amcal) 10 mg film-coated tablet, 10 53864011000036109 C-Zine (Amcal) 10 mg film-coated tablet 53177011000036100 C-Zine (Amcal) 53177011000036100 C-Zine (Amcal) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +692681000168103 Desfax 50 mg modified release tablet, 14, bottle 218079 692631000168104 Desfax 50 mg modified release tablet, 14 692601000168106 Desfax 50 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +697521000168103 Clindamycin (Link) 150 mg hard capsule, 50, blister pack 214526 697511000168105 Clindamycin (Link) 150 mg hard capsule, 50 697441000168108 Clindamycin (Link) 150 mg hard capsule 697431000168104 Clindamycin (Link) 697431000168104 Clindamycin (Link) 697501000168107 clindamycin 150 mg capsule, 50 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +20220011000036105 Oxynorm 20 mg hard capsule, 20, bottle 74142 13437011000036105 Oxynorm 20 mg hard capsule, 20 6719011000036106 Oxynorm 20 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +872581000168103 Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags 19439 872571000168101 Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags 872521000168102 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 17161000168105 Plasma-Lyte 148 Replacement 17161000168105 Plasma-Lyte 148 Replacement 872561000168107 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 18 x 500 mL bags 872511000168109 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, bag 81233011000036103 sodium chloride + sodium gluconate + sodium acetate trihydrate + potassium chloride + magnesium chloride +50316011000036104 Allevyn Thin (66047578) 10 cm x 10 cm dressing, 5, carton 92774 49370011000036102 Allevyn Thin (66047578) 10 cm x 10 cm dressing, 5 48720011000036101 Allevyn Thin (66047578) 10 cm x 10 cm dressing 29881000168106 Allevyn Thin (66047578) 29881000168106 Allevyn Thin (66047578) 51344011000036107 dressing hydroactive superficial wound light exudate 10 cm x 10 cm dressing, 5 50868011000036101 dressing hydroactive superficial wound light exudate 10 cm x 10 cm dressing 50765011000036109 dressing hydroactive superficial wound light exudate +19852011000036101 Azamun 50 mg film-coated tablet, 100, blister pack 64490 13099011000036103 Azamun 50 mg film-coated tablet, 100 6383011000036106 Azamun 50 mg film-coated tablet 3803011000036104 Azamun 3803011000036104 Azamun 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +1083001000168101 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack 72724 683301000168105 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations 683291000168109 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, actuation 683281000168106 Flixonase Allergy and Hayfever 24 Hour 683281000168106 Flixonase Allergy and Hayfever 24 Hour 75488011000036102 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, 60 actuations 75089011000036100 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, actuation 861061000168102 fluticasone propionate +1043921000168102 Pryzex 7.5 mg film-coated tablet, 20, blister pack 178987 1043911000168109 Pryzex 7.5 mg film-coated tablet, 20 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043901000168106 olanzapine 7.5 mg tablet, 20 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +774591000168109 Nexazole 20 mg enteric tablet, 7, blister pack 205846 774581000168106 Nexazole 20 mg enteric tablet, 7 774571000168108 Nexazole 20 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +20036011000036102 Humalog Mix25 injection suspension, 5 x 3 mL cartridges 69163 13268011000036100 Humalog Mix25 injection suspension, 5 x 3 mL cartridges 6550011000036105 Humalog Mix25 injection suspension, 3 mL cartridge 25311000168109 Humalog Mix25 25311000168109 Humalog Mix25 27656011000036101 insulin lispro 25 units/mL + insulin lispro protamine 75 units/mL injection, 5 x 3 mL cartridges 22993011000036103 insulin lispro 25 units/mL + insulin lispro protamine 75 units/mL injection, cartridge 21622011000036101 insulin lispro + insulin lispro protamine +1087261000168104 Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations, pump pack 215798 859051000168109 Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations 859041000168107 Nasonex Allergy 50 microgram/actuation nasal spray, actuation 859031000168103 Nasonex Allergy 859031000168103 Nasonex Allergy 46749011000036104 mometasone furoate 50 microgram/actuation nasal spray, 40 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +671711000168103 Ranitidine (Apo) 150 mg film-coated tablet, 60, blister pack 122013 671701000168101 Ranitidine (Apo) 150 mg film-coated tablet, 60 671691000168101 Ranitidine (Apo) 150 mg film-coated tablet 671651000168106 Ranitidine (Apo) 671651000168106 Ranitidine (Apo) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +928968011000036103 Cetirizine Hydrochloride (Pharmacy Health) 10 mg film-coated tablet, 30, blister pack 156885 928329011000036109 Cetirizine Hydrochloride (Pharmacy Health) 10 mg film-coated tablet, 30 927954011000036109 Cetirizine Hydrochloride (Pharmacy Health) 10 mg film-coated tablet 927764011000036109 Cetirizine Hydrochloride (Pharmacy Health) 927764011000036109 Cetirizine Hydrochloride (Pharmacy Health) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +753101000168109 Oxycodone (GX) 10 mg hard capsule, 20, blister pack 227833 753091000168104 Oxycodone (GX) 10 mg hard capsule, 20 753081000168102 Oxycodone (GX) 10 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +130951000036102 Montelukast (Chemmart) 5 mg chewable tablet, 28, blister pack 179112 127861000036108 Montelukast (Chemmart) 5 mg chewable tablet, 28 124471000036107 Montelukast (Chemmart) 5 mg chewable tablet 123651000036102 Montelukast (Chemmart) 123651000036102 Montelukast (Chemmart) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +20426011000036109 Mobic 15 mg uncoated tablet, 30, tube 77697 13631011000036104 Mobic 15 mg uncoated tablet, 30 6914011000036100 Mobic 15 mg uncoated tablet 3572011000036102 Mobic 3572011000036102 Mobic 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +1010181000168100 Sildenafil (Apotex) 100 mg film-coated tablet, 12, blister pack 164809 1010171000168103 Sildenafil (Apotex) 100 mg film-coated tablet, 12 1010101000168108 Sildenafil (Apotex) 100 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +858231000168103 Emexlon 10 mg film-coated tablet, 100, bottle 268301 858171000168106 Emexlon 10 mg film-coated tablet, 100 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 82561011000036104 metoclopramide hydrochloride 10 mg tablet, 100 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +889741000168100 Candyl-D 10 mg dispersible tablet, 50, blister pack 65537 889721000168106 Candyl-D 10 mg dispersible tablet, 50 889711000168104 Candyl-D 10 mg dispersible tablet 889671000168103 Candyl-D 889671000168103 Candyl-D 27881011000036106 piroxicam 10 mg dispersible tablet, 50 23209011000036106 piroxicam 10 mg dispersible tablet 21531011000036103 piroxicam +1121101000168102 Quetiapine XR (Medis) 200 mg modified release tablet, 30, blister pack 226802 1121091000168107 Quetiapine XR (Medis) 200 mg modified release tablet, 30 1121061000168100 Quetiapine XR (Medis) 200 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 790941000168106 quetiapine 200 mg modified release tablet, 30 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +160521000036107 Giotrif 30 mg film-coated tablet, 28, blister pack 201318 159311000036108 Giotrif 30 mg film-coated tablet, 28 157901000036101 Giotrif 30 mg film-coated tablet 157731000036105 Giotrif 157731000036105 Giotrif 159321000036101 afatinib 30 mg tablet, 28 157911000036104 afatinib 30 mg tablet 160671000036107 afatinib +780451000168104 Bupradone 8/2 sublingual tablet, 28, blister pack 152484 780441000168101 Bupradone 8/2 sublingual tablet, 28 780391000168100 Bupradone 8/2 sublingual tablet 780361000168107 Bupradone 8/2 780361000168107 Bupradone 8/2 26714011000036108 buprenorphine 8 mg + naloxone 2 mg sublingual tablet, 28 22109011000036100 buprenorphine 8 mg + naloxone 2 mg sublingual tablet 21739011000036100 buprenorphine + naloxone +808361000168109 Perindopril Arginine (Apo) 5 mg film-coated tablet, 30, blister pack 184814 807961000168109 Perindopril Arginine (Apo) 5 mg film-coated tablet, 30 807931000168101 Perindopril Arginine (Apo) 5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +931476011000036103 Paroxetine (Synthon) 20 mg film-coated tablet, 28, blister pack 152491 930655011000036103 Paroxetine (Synthon) 20 mg film-coated tablet, 28 929991011000036107 Paroxetine (Synthon) 20 mg film-coated tablet 929845011000036106 Paroxetine (Synthon) 929845011000036106 Paroxetine (Synthon) 51564011000036104 paroxetine 20 mg tablet, 28 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1026741000168101 Pregabalin (Amneal) 150 mg hard capsule, 84, blister pack 235877 1026731000168105 Pregabalin (Amneal) 150 mg hard capsule, 84 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 969661000168103 pregabalin 150 mg capsule, 84 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +18991011000036109 Ural powder for oral liquid, 28 x 4 g sachets 29693 12298011000036108 Ural powder for oral liquid, 28 x 4 g sachets 4634011000036100 Ural powder for oral liquid, 4 g sachet 4427011000036106 Ural 4427011000036106 Ural 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +941061000168101 Evelexa XR 37.5 mg modified release capsule, 28, blister pack 146645 941051000168103 Evelexa XR 37.5 mg modified release capsule, 28 941041000168100 Evelexa XR 37.5 mg modified release capsule 941031000168109 Evelexa XR 941031000168109 Evelexa XR 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +20520011000036101 Metoprolol Tartrate (Terry White Chemists) 100 mg uncoated tablet, 60, blister pack 78860 13720011000036100 Metoprolol Tartrate (Terry White Chemists) 100 mg uncoated tablet, 60 7002011000036102 Metoprolol Tartrate (Terry White Chemists) 100 mg uncoated tablet 4429011000036104 Metoprolol Tartrate (Terry White Chemists) 4429011000036104 Metoprolol Tartrate (Terry White Chemists) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +1063271000168103 Caplets (Sanofi) uncoated tablet, 20, blister pack 143444 1063261000168109 Caplets (Sanofi) uncoated tablet, 20 1063251000168107 Caplets (Sanofi) uncoated tablet 1063241000168105 Caplets (Sanofi) 1063241000168105 Caplets (Sanofi) 1063101000168104 paracetamol 448 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 1063031000168105 paracetamol 448 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1100231000168101 Axycillin 250 mg hard capsule, 20, blister pack 198132 1100221000168104 Axycillin 250 mg hard capsule, 20 1100211000168106 Axycillin 250 mg hard capsule 1100111000168101 Axycillin 1100111000168101 Axycillin 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +791281000168104 Trexject 15 mg/0.3 mL injection solution, 24 x 0.3 mL syringes 233717 791271000168102 Trexject 15 mg/0.3 mL injection solution, 24 x 0.3 mL syringes 791131000168105 Trexject 15 mg/0.3 mL injection solution, 0.3 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791261000168108 methotrexate 15 mg/0.3 mL injection, 24 x 0.3 mL syringes 791121000168107 methotrexate 15 mg/0.3 mL injection, syringe 21342011000036105 methotrexate +44469011000036109 Vinorelbine (Pierre Fabre Medicament) 50 mg/5 mL concentrated injection, 5 mL vial 74665 41925011000036106 Vinorelbine (Pierre Fabre Medicament) 50 mg/5 mL concentrated injection, 5 mL vial 40267011000036104 Vinorelbine (Pierre Fabre Medicament) 50 mg/5 mL concentrated injection, 5 mL vial 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +804021000168109 Aczicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 147850 804011000168102 Aczicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 804001000168100 Aczicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924118011000036101 epoetin lambda 6000 units/0.6 mL injection, 0.6 mL syringe 923950011000036108 epoetin lambda 6000 units/0.6 mL injection, syringe 923930011000036107 epoetin lambda +77131011000036102 Mega B (Cenovis) film-coated tablet, 200, bottle 113019 76583011000036103 Mega B (Cenovis) film-coated tablet, 200 76035011000036109 Mega B (Cenovis) film-coated tablet 76019011000036104 Mega B (Cenovis) 76019011000036104 Mega B (Cenovis) 78138011000036100 thiamine nitrate 50 mg + riboflavin 25 mg + nicotinamide 50 mg + calcium pantothenate 50 mg + pyridoxine hydrochloride 50 mg + cyanocobalamin 50 microgram + ascorbic acid 100 mg + biotin 50 microgram + folic acid 200 microgram + inositol 50 microgram + choline bitartrate 50 microgram tablet, 200 77508011000036106 thiamine nitrate 50 mg + riboflavin 25 mg + nicotinamide 50 mg + calcium pantothenate 50 mg + pyridoxine hydrochloride 50 mg + cyanocobalamin 50 microgram + ascorbic acid 100 mg + biotin 50 microgram + folic acid 200 microgram + inositol 50 microgram + choline bitartrate 50 microgram tablet 77473011000036103 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + inositol + choline +757391000168105 Palexia SR 25 mg modified release tablet, 60, blister pack 229737 757381000168107 Palexia SR 25 mg modified release tablet, 60 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757371000168109 tapentadol 25 mg modified release tablet, 60 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +931733011000036103 HL-7 1% shampoo, 200 mL, bottle 28655 930893011000036100 HL-7 1% shampoo, 200 mL 930097011000036105 HL-7 1% shampoo 929839011000036107 HL-7 929839011000036107 HL-7 932474011000036107 malathion 1% shampoo, 200 mL 931873011000036104 malathion 1% shampoo 69786011000036100 malathion +19368011000036106 Premarin 625 microgram sugar coated tablet, 28, blister pack 51708 12655011000036107 Premarin 625 microgram sugar coated tablet, 28 5151011000036105 Premarin 625 microgram sugar coated tablet 2940011000036100 Premarin 2940011000036100 Premarin 27263011000036101 conjugated estrogens 625 microgram tablet, 28 22619011000036102 conjugated estrogens 625 microgram tablet 33629011000036100 conjugated estrogens +807161000168107 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) uncoated tablet, 30, blister pack 224324 807151000168105 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) uncoated tablet, 30 807141000168108 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) uncoated tablet 807131000168104 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) 807131000168104 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +933215771000036102 Raloxifene Hydrochloride (Lilly) 60 mg film-coated tablet, 7, blister pack 172550 933203801000036101 Raloxifene Hydrochloride (Lilly) 60 mg film-coated tablet, 7 933196331000036108 Raloxifene Hydrochloride (Lilly) 60 mg film-coated tablet 933193481000036109 Raloxifene Hydrochloride (Lilly) 933193481000036109 Raloxifene Hydrochloride (Lilly) 933203811000036104 raloxifene hydrochloride 60 mg tablet, 7 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +1039491000168108 Atomoxetine (Actavis) 60 mg hard capsule, 7, blister pack 237256 1039481000168105 Atomoxetine (Actavis) 60 mg hard capsule, 7 1039471000168107 Atomoxetine (Actavis) 60 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +767281000168108 Risperidone (Amneal) 500 microgram film-coated tablet, 20, blister pack 159974 767271000168105 Risperidone (Amneal) 500 microgram film-coated tablet, 20 767261000168104 Risperidone (Amneal) 500 microgram film-coated tablet 767061000168106 Risperidone (Amneal) 767061000168106 Risperidone (Amneal) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +925291011000036102 Drixine Decongestant 0.05% nasal spray, 15 mL, bottle 161596 924828011000036103 Drixine Decongestant 0.05% nasal spray, 15 mL 924520011000036104 Drixine Decongestant 0.05% nasal spray 45181000168102 Drixine Decongestant 45181000168102 Drixine Decongestant 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +920682011000036100 Fluconazole (Sandoz) 100 mg hard capsule, 28, bottle 104289 920350011000036101 Fluconazole (Sandoz) 100 mg hard capsule, 28 920121011000036101 Fluconazole (Sandoz) 100 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +755751000168106 Vttack 200 mg film-coated tablet, 10, blister pack 206985 755741000168109 Vttack 200 mg film-coated tablet, 10 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46802011000036103 voriconazole 200 mg tablet, 10 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +60543011000036102 Panadeine Caplet uncoated tablet, 16, blister pack 152840 56501011000036101 Panadeine Caplet uncoated tablet, 16 53943011000036106 Panadeine Caplet uncoated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63737011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 16 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +735141000168109 Anthel 125 mg uncoated tablet, 18, bottle 17584 735131000168100 Anthel 125 mg uncoated tablet, 18 4599011000036100 Anthel 125 mg uncoated tablet 3455011000036102 Anthel 3455011000036102 Anthel 735121000168103 pyrantel 125 mg tablet, 18 22306011000036103 pyrantel 125 mg tablet 21475011000036105 pyrantel +1056691000168102 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet, 10, blister pack 196806 1056681000168100 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet, 10 1056651000168107 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet 1056641000168105 Ondansetron ODT (Auro) 1056641000168105 Ondansetron ODT (Auro) 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +892591000168106 Idelvion (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 259940 892581000168108 Idelvion (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 892551000168101 Idelvion (albutrepenonacog alfa 2000 units) powder for injection, 2000 units vial 887771000168104 Idelvion 887771000168104 Idelvion 892571000168105 albutrepenonacog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 892541000168103 albutrepenonacog alfa 2000 units injection, vial 887781000168101 albutrepenonacog alfa +892591000168106 Idelvion (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 259940 892581000168108 Idelvion (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 892561000168104 Idelvion (inert substance) diluent, 5 mL vial 887771000168104 Idelvion 887771000168104 Idelvion 892571000168105 albutrepenonacog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +44682011000036104 Cernevit powder for injection, 1 vial 92418 42131011000036109 Cernevit powder for injection, 1 vial 40358011000036101 Cernevit powder for injection, vial 39604011000036109 Cernevit 39604011000036109 Cernevit 46893011000036108 retinol palmitate 3500 units + colecalciferol 5.5 microgram + dl-alpha-tocopherol 10.2 mg + ascorbic acid 125 mg + cocarboxylase tetrahydrate 5.8 mg + riboflavin sodium phosphate 5.67 mg + pyridoxine hydrochloride 5.5 mg + cyanocobalamin 6 microgram + folic acid 414 microgram + dexpanthenol 16.15 mg + biotin 69 microgram + nicotinamide 46 mg injection, 1 vial 45337011000036105 retinol palmitate 3500 units + colecalciferol 5.5 microgram + dl-alpha-tocopherol 10.2 mg + ascorbic acid 125 mg + cocarboxylase tetrahydrate 5.8 mg + riboflavin sodium phosphate 5.67 mg + pyridoxine hydrochloride 5.5 mg + cyanocobalamin 6 microgram + folic acid 414 microgram + dexpanthenol 16.15 mg + biotin 69 microgram + nicotinamide 46 mg injection, vial 44933011000036104 retinol palmitate + colecalciferol + dl-alpha-tocopherol + ascorbic acid + cocarboxylase + riboflavin + pyridoxine + cyanocobalamin + folic acid + dexpanthenol + biotin + nicotinamide +920718011000036105 Pantofast 20 mg enteric tablet, 100, blister pack 155105 920405011000036107 Pantofast 20 mg enteric tablet, 100 920166011000036102 Pantofast 20 mg enteric tablet 920103011000036107 Pantofast 920103011000036107 Pantofast 46670011000036104 pantoprazole 20 mg enteric tablet, 100 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +61678011000036107 Finacea 15% gel, 50 g, tube 97747 57600011000036101 Finacea 15% gel, 50 g 54359011000036100 Finacea 15% gel 53281011000036102 Finacea 53281011000036102 Finacea 63951011000036109 azelaic acid 15% gel, 50 g 62107011000036102 azelaic acid 15% gel 61741011000036106 azelaic acid +86014011000036101 Lisinopril (DRLA) 10 mg uncoated tablet, 10, blister pack 152721 85654011000036101 Lisinopril (DRLA) 10 mg uncoated tablet, 10 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 86417011000036104 lisinopril 10 mg tablet, 10 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +968841000168108 Pregabalin (DRLA) 75 mg hard capsule, 14, blister pack 263081 968831000168104 Pregabalin (DRLA) 75 mg hard capsule, 14 968821000168102 Pregabalin (DRLA) 75 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +929095011000036102 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 28, blister pack 166915 928456011000036107 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 28 927988011000036105 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +789991000168107 Oxycontin 20 mg modified release tablet, 100, bottle 200035 789981000168109 Oxycontin 20 mg modified release tablet, 100 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789971000168106 oxycodone hydrochloride 20 mg modified release tablet, 100 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +18157011000036106 Simvastatin (Winthrop) 5 mg film-coated tablet, 30, blister pack 129966 11884011000036107 Simvastatin (Winthrop) 5 mg film-coated tablet, 30 4853011000036105 Simvastatin (Winthrop) 5 mg film-coated tablet 3335011000036106 Simvastatin (Winthrop) 3335011000036106 Simvastatin (Winthrop) 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +80045011000036101 Oxaliplatin (Alphapharm) 50 mg powder for injection, 1 vial 130848 79956011000036103 Oxaliplatin (Alphapharm) 50 mg powder for injection, 1 vial 79918011000036109 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +87178011000036105 Nicorette Classic 2 mg chewing gum, 105, blister pack 12515 87118011000036103 Nicorette Classic 2 mg chewing gum, 105 87066011000036109 Nicorette Classic 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87234011000036103 nicotine 2 mg gum, 105 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +717981000168104 Imbruvica 140 mg hard capsule, 90, bottle 228499 717971000168102 Imbruvica 140 mg hard capsule, 90 717951000168106 Imbruvica 140 mg hard capsule 717911000168105 Imbruvica 717911000168105 Imbruvica 717961000168108 ibrutinib 140 mg capsule, 90 717941000168109 ibrutinib 140 mg capsule 717931000168100 ibrutinib +1039511000168103 Atomoxetine (Actavis) 60 mg hard capsule, 28, blister pack 237256 1039501000168101 Atomoxetine (Actavis) 60 mg hard capsule, 28 1039471000168107 Atomoxetine (Actavis) 60 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +68776011000036105 Sodium Chloride (Phebra) 0.9% (450 mg/50 mL) injection solution, 5 x 50 mL vials 11975 66650011000036106 Sodium Chloride (Phebra) 0.9% (450 mg/50 mL) injection solution, 5 x 50 mL vials 65483011000036106 Sodium Chloride (Phebra) 0.9% (450 mg/50 mL) injection solution, 50 mL vial 64963011000036103 Sodium Chloride (Phebra) 64963011000036103 Sodium Chloride (Phebra) 71360011000036109 sodium chloride 0.9% (450 mg/50 mL) injection, 5 x 50 mL vials 69972011000036104 sodium chloride 0.9% (450 mg/50 mL) injection, vial 21308011000036103 sodium chloride +928925011000036104 Valaciclovir (SZ) 500 mg film-coated tablet, 100, blister pack 154460 928287011000036103 Valaciclovir (SZ) 500 mg film-coated tablet, 100 927923011000036106 Valaciclovir (SZ) 500 mg film-coated tablet 927819011000036109 Valaciclovir (SZ) 927819011000036109 Valaciclovir (SZ) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +17984011000036103 Diltahexal CD 180 mg modified release capsule, 30, bottle 131298 11918011000036109 Diltahexal CD 180 mg modified release capsule, 30 5663011000036101 Diltahexal CD 180 mg modified release capsule 26391000168107 Diltahexal CD 26391000168107 Diltahexal CD 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +764311000168103 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL, bottle 29627 764301000168101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL 648381000168101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner 65133011000036104 Neutrogena T/Gel Therapeutic Conditioner 65133011000036104 Neutrogena T/Gel Therapeutic Conditioner 764291000168102 salicylic acid 2% conditioner, 200 mL 648371000168104 salicylic acid 2% conditioner 52232011000036106 salicylic acid +929010011000036107 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 80, blister pack 158915 928371011000036109 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 80 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929223011000036104 valaciclovir 500 mg tablet, 80 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +81209011000036105 Reyataz 100 mg hard capsule, 60, bottle 99054 80711011000036106 Reyataz 100 mg hard capsule, 60 80248011000036102 Reyataz 100 mg hard capsule 3083011000036101 Reyataz 3083011000036101 Reyataz 81760011000036106 atazanavir 100 mg capsule, 60 81310011000036109 atazanavir 100 mg capsule 21324011000036104 atazanavir +60906011000036107 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 200 mL, bottle 60796 56860011000036108 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 200 mL 54104011000036103 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 5 mL 19951000168104 Dimetapp DM Cough and Cold Elixir 19951000168104 Dimetapp DM Cough and Cold Elixir 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +77401011000036108 Calmoseptine 20.6% ointment, 75 g, tube 78126 76817011000036105 Calmoseptine 20.6% ointment, 75 g 76190011000036101 Calmoseptine 20.6% ointment 75973011000036100 Calmoseptine 75973011000036100 Calmoseptine 78321011000036101 zinc oxide 20.6% ointment, 75 g 77605011000036107 zinc oxide 20.6% ointment 77446011000036105 zinc oxide +960301000168103 Ciram 20 mg film-coated tablet, 28, bottle 158859 959231000168102 Ciram 20 mg film-coated tablet, 28 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +19436011000036109 Tamoxen 20 mg uncoated tablet, 60, blister pack 195636 12718011000036101 Tamoxen 20 mg uncoated tablet, 60 4602011000036104 Tamoxen 20 mg uncoated tablet 3933011000036100 Tamoxen 3933011000036100 Tamoxen 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +19436011000036109 Tamoxen 20 mg uncoated tablet, 60, blister pack 53871 12718011000036101 Tamoxen 20 mg uncoated tablet, 60 4602011000036104 Tamoxen 20 mg uncoated tablet 3933011000036100 Tamoxen 3933011000036100 Tamoxen 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +969891000168109 Aripiprazole (AN) 20 mg uncoated tablet, 100, bottle 198184 969881000168106 Aripiprazole (AN) 20 mg uncoated tablet, 100 969381000168101 Aripiprazole (AN) 20 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787591000168107 aripiprazole 20 mg tablet, 100 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +82373011000036108 Coplavix 75 mg/100 mg film-coated tablet, 4, blister pack 150443 82162011000036102 Coplavix 75 mg/100 mg film-coated tablet, 4 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82550011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 4 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +842111000168103 Gapentin 600 mg film-coated tablet, 100, blister pack 156106 842101000168101 Gapentin 600 mg film-coated tablet, 100 842091000168106 Gapentin 600 mg film-coated tablet 842011000168102 Gapentin 842011000168102 Gapentin 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +56121000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet, 50, blister pack 152719 51651000036105 Lisinopril (DRLA) 2.5 mg uncoated tablet, 50 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927302011000036100 lisinopril 2.5 mg tablet, 50 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +77372011000036103 Ostelin-1000 25 microgram soft capsule, 60, bottle 67032 76788011000036107 Ostelin-1000 25 microgram soft capsule, 60 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78292011000036107 ergocalciferol 25 microgram capsule, 60 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +906571000168101 Amisulpride (AN) 200 mg uncoated tablet, 90, blister pack 234701 906561000168107 Amisulpride (AN) 200 mg uncoated tablet, 90 906411000168108 Amisulpride (AN) 200 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +1099591000168104 Tranexamic Acid (RMB) 500 mg film-coated tablet, 100, blister pack 272729 1099581000168102 Tranexamic Acid (RMB) 500 mg film-coated tablet, 100 1099571000168100 Tranexamic Acid (RMB) 500 mg film-coated tablet 1099561000168106 Tranexamic Acid (RMB) 1099561000168106 Tranexamic Acid (RMB) 26862011000036101 tranexamic acid 500 mg tablet, 100 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +944031000168107 Medformin-1000 1 g film-coated tablet, 90, blister pack 100292 943971000168107 Medformin-1000 1 g film-coated tablet, 90 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +933238841000036104 Fentanyl (Sandoz) 50 microgram/hour patch, 8, sachet 152571 933235991000036109 Fentanyl (Sandoz) 50 microgram/hour patch, 8 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236001000036108 fentanyl 50 microgram/hour patch, 8 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +830601000168105 Atomoxetine (Apo) 80 mg hard capsule, 28, blister pack 234807 830591000168103 Atomoxetine (Apo) 80 mg hard capsule, 28 830531000168102 Atomoxetine (Apo) 80 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +61632011000036106 Chesty Cough (Amcal) oral liquid solution, 200 mL, bottle 96918 57554011000036109 Chesty Cough (Amcal) oral liquid solution, 200 mL 54347011000036105 Chesty Cough (Amcal) oral liquid solution, 10 mL 53579011000036103 Chesty Cough (Amcal) 53579011000036103 Chesty Cough (Amcal) 63947011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 200 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +921984011000036100 Pyrifoam Lice Breaker 1% lotion, 250 mL, bottle 51722 921542011000036109 Pyrifoam Lice Breaker 1% lotion, 250 mL 921073011000036104 Pyrifoam Lice Breaker 1% lotion 920969011000036108 Pyrifoam Lice Breaker 920969011000036108 Pyrifoam Lice Breaker 922660011000036105 permethrin 1% lotion, 250 mL 69996011000036108 permethrin 1% lotion 21537011000036106 permethrin +756751000168101 Olanzacor 5 mg film-coated tablet, 28, blister pack 207858 756741000168103 Olanzacor 5 mg film-coated tablet, 28 756711000168102 Olanzacor 5 mg film-coated tablet 756671000168101 Olanzacor 756671000168101 Olanzacor 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +752461000168106 Fentanyl (B Braun) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 227124 752451000168109 Fentanyl (B Braun) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 752441000168107 Fentanyl (B Braun) 500 microgram/10 mL injection solution, 10 mL ampoule 752351000168103 Fentanyl (B Braun) 752351000168103 Fentanyl (B Braun) 35185011000036100 fentanyl 500 microgram/10 mL injection, 10 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +763971000168105 Modafin 100 mg uncoated tablet, 10, blister pack 230327 763961000168104 Modafin 100 mg uncoated tablet, 10 763931000168107 Modafin 100 mg uncoated tablet 763921000168109 Modafin 763921000168109 Modafin 932449011000036107 modafinil 100 mg tablet, 10 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +755681000168109 Vttack 50 mg film-coated tablet, 56, blister pack 206983 755671000168106 Vttack 50 mg film-coated tablet, 56 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +902231000168103 Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets 206448 902221000168101 Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets 902161000168100 Moviprep B powder for oral liquid, sachet 902201000168105 Moviprep Orange 106591000036109 Moviprep 902171000168106 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid [2 sachets] (&) ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid [2 sachets], 4 sachets 902151000168102 ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, sachet 77435011000036104 ascorbic acid +902231000168103 Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets 206448 902221000168101 Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets 902211000168108 Moviprep Orange A powder for oral liquid, sachet 902201000168105 Moviprep Orange 902201000168105 Moviprep Orange 902171000168106 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid [2 sachets] (&) ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid [2 sachets], 4 sachets 902131000168108 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid, sachet 69825011000036102 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate +66241000036107 Linotar Eczema Relief 1% w/v lotion, 250 mL, bottle 46736 63991000036103 Linotar Eczema Relief 1% w/v lotion, 250 mL 61221000036107 Linotar Eczema Relief 1% w/v lotion 60481000036100 Linotar Eczema Relief 60481000036100 Linotar Eczema Relief 64001000036109 prepared coal tar 1% w/v lotion, 250 mL 61231000036109 prepared coal tar 1% w/v lotion 33626011000036109 prepared coal tar +994461000168104 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (36 x Day tablets, 12 x Night tablets), 48, blister pack 255012 994451000168101 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (36 x Day tablets, 12 x Night tablets), 48 994411000168102 Cold and Flu Relief PE Day and Night (Day) (Blooms The Chemist) film-coated tablet 994321000168104 Cold and Flu Relief PE Day and Night (Blooms The Chemist) 994381000168100 Cold and Flu Relief PE Day and Night (Day) (Blooms The Chemist) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +994461000168104 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (36 x Day tablets, 12 x Night tablets), 48, blister pack 255012 994451000168101 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (36 x Day tablets, 12 x Night tablets), 48 994421000168109 Cold and Flu Relief PE Day and Night (Night) (Blooms The Chemist) film-coated tablet 994321000168104 Cold and Flu Relief PE Day and Night (Blooms The Chemist) 994401000168100 Cold and Flu Relief PE Day and Night (Night) (Blooms The Chemist) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +18013011000036101 Gabapentin (Pharmacor) 400 mg hard capsule, 100, blister pack 130625 11905011000036100 Gabapentin (Pharmacor) 400 mg hard capsule, 100 5105011000036102 Gabapentin (Pharmacor) 400 mg hard capsule 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +61148011000036107 Clotreme Anti-Fungal (Hexal) 1% cream, 20 g, tube 74158 57091011000036104 Clotreme Anti-Fungal (Hexal) 1% cream, 20 g 54194011000036100 Clotreme Anti-Fungal (Hexal) 1% cream 1821000168102 Clotreme Anti-Fungal (Hexal) 1821000168102 Clotreme Anti-Fungal (Hexal) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +747091000168105 Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules 159273 747081000168107 Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules 747071000168109 Granisetron (Kabi) 1 mg/mL injection solution, ampoule 922951011000036109 Granisetron (Kabi) 922951011000036109 Granisetron (Kabi) 46134011000036108 granisetron 1 mg/mL injection, 5 x 1 mL ampoules 45003011000036106 granisetron 1 mg/mL injection, ampoule 21431011000036106 granisetron +1082271000168107 Atorvastatin (RZ) 10 mg film-coated tablet, 30, blister pack 198842 1082261000168101 Atorvastatin (RZ) 10 mg film-coated tablet, 30 1082251000168103 Atorvastatin (RZ) 10 mg film-coated tablet 1082211000168104 Atorvastatin (RZ) 1082211000168104 Atorvastatin (RZ) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +920692011000036104 Citalopram (Sandoz) 20 mg film-coated tablet, 28, bottle 101690 920348011000036101 Citalopram (Sandoz) 20 mg film-coated tablet, 28 920119011000036107 Citalopram (Sandoz) 20 mg film-coated tablet 920080011000036109 Citalopram (Sandoz) 920080011000036109 Citalopram (Sandoz) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +931640011000036103 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 500, bottle 166255 930800011000036106 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 500 930053011000036107 Pravastatin Sodium (Apo) 10 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 932415011000036101 pravastatin sodium 10 mg tablet, 500 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +709641000168108 Fluvax 2015 injection suspension, 10 x 0.5 mL syringes 117397 709631000168104 Fluvax 2015 injection suspension, 10 x 0.5 mL syringes 709601000168106 Fluvax 2015 injection suspension, 0.5 mL syringe 709541000168107 Fluvax 2015 709541000168107 Fluvax 2015 709391000168107 influenza trivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +61125011000036104 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 240 mg/5 mL oral liquid solution, 100 mL, bottle 72392 57068011000036105 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 240 mg/5 mL oral liquid solution, 100 mL 54181011000036102 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 240 mg/5 mL oral liquid solution, 5 mL 20861000168105 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 20861000168105 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +60180011000036107 Canesoral 150 mg hard capsule, 1, blister pack 163215 56139011000036102 Canesoral 150 mg hard capsule, 1 53839011000036104 Canesoral 150 mg hard capsule 53220011000036104 Canesoral 53220011000036104 Canesoral 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +60180011000036107 Canesoral 150 mg hard capsule, 1, blister pack 131744 56139011000036102 Canesoral 150 mg hard capsule, 1 53839011000036104 Canesoral 150 mg hard capsule 53220011000036104 Canesoral 53220011000036104 Canesoral 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +60180011000036107 Canesoral 150 mg hard capsule, 1, blister pack 203514 56139011000036102 Canesoral 150 mg hard capsule, 1 53839011000036104 Canesoral 150 mg hard capsule 53220011000036104 Canesoral 53220011000036104 Canesoral 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +931614011000036102 Pravista 20 mg film-coated tablet, 500, bottle 163561 930775011000036108 Pravista 20 mg film-coated tablet, 500 930041011000036108 Pravista 20 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932417011000036106 pravastatin sodium 20 mg tablet, 500 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +74710011000036101 Winrho SDF (1 x 600 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 121730 74235011000036109 Winrho SDF (1 x 600 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 73854011000036103 Winrho SDF (anti-D rho immunoglobulin 600 units) powder for injection, 600 units vial 73755011000036101 Winrho SDF 73755011000036101 Winrho SDF 75368011000036107 anti-D rho immunoglobulin 600 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 75023011000036109 anti-D rho immunoglobulin 600 units injection, vial 74975011000036107 anti-D rho immunoglobulin +74710011000036101 Winrho SDF (1 x 600 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 121730 74235011000036109 Winrho SDF (1 x 600 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 633581000168102 Winrho SDF (inert substance) diluent, 2.5 mL vial 73755011000036101 Winrho SDF 73755011000036101 Winrho SDF 75368011000036107 anti-D rho immunoglobulin 600 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 633571000168100 inert substance diluent, 2.5 mL vial 21220011000036103 inert substance +651761000168102 Capecitabine (Apotex) 500 mg film-coated tablet, 120, blister pack 202738 651751000168104 Capecitabine (Apotex) 500 mg film-coated tablet, 120 651741000168101 Capecitabine (Apotex) 500 mg film-coated tablet 651701000168103 Capecitabine (Apotex) 651701000168103 Capecitabine (Apotex) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +931699011000036100 Citalopram (Pfizer) 20 mg film-coated tablet, 28, blister pack 171336 930859011000036109 Citalopram (Pfizer) 20 mg film-coated tablet, 28 930077011000036101 Citalopram (Pfizer) 20 mg film-coated tablet 929840011000036102 Citalopram (Pfizer) 929840011000036102 Citalopram (Pfizer) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +859441000168102 Zovirax Dispersible 800 mg tablet, 120, blister pack 51429 859431000168106 Zovirax Dispersible 800 mg tablet, 120 859211000168102 Zovirax Dispersible 800 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +18710011000036106 Gelusil chewable tablet, 100, blister pack 118506 11574011000036104 Gelusil chewable tablet, 100 5899011000036107 Gelusil chewable tablet 4017011000036105 Gelusil 4017011000036105 Gelusil 26696011000036106 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet, 100 22091011000036107 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +19747011000036104 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62136 13005011000036103 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6292011000036107 Norimin-1 28 Day (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 700023341000036107 Norimin-1 28 Day 700023341000036107 Norimin-1 28 Day 27493011000036103 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +19747011000036104 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62136 13005011000036103 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6293011000036100 Norimin-1 28 Day (inert substance) uncoated tablet 700023341000036107 Norimin-1 28 Day 700023341000036107 Norimin-1 28 Day 27493011000036103 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +1115391000168101 Serapine 300 mg film-coated tablet, 20, blister pack 204164 1115381000168104 Serapine 300 mg film-coated tablet, 20 1115371000168102 Serapine 300 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +755561000168101 Vttack 50 mg film-coated tablet, 10, blister pack 206983 755551000168103 Vttack 50 mg film-coated tablet, 10 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46811011000036106 voriconazole 50 mg tablet, 10 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +37567011000036100 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 50 x 5 mL ampoules 16273 36834011000036100 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 50 x 5 mL ampoules 36097011000036104 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 5 mL ampoule 35928011000036100 Paraldehyde (Phebra) 35928011000036100 Paraldehyde (Phebra) 38723011000036105 paraldehyde 5 mL/5 mL injection, 50 x 5 mL ampoules 37953011000036105 paraldehyde 5 mL/5 mL injection, ampoule 37730011000036108 paraldehyde +739551000168100 Eltroxin 200 microgram tablet, 200, bottle 206954 739541000168102 Eltroxin 200 microgram tablet, 200 739531000168106 Eltroxin 200 microgram tablet 739521000168108 Eltroxin 739521000168108 Eltroxin 28023011000036109 levothyroxine sodium 200 microgram tablet, 200 23346011000036103 levothyroxine sodium 200 microgram tablet 21577011000036109 levothyroxine +18468011000036100 Fluconazole (Hexal) 100 mg hard capsule, 28, blister pack 104288 11285011000036100 Fluconazole (Hexal) 100 mg hard capsule, 28 5128011000036100 Fluconazole (Hexal) 100 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +931291000168100 Centevo 75/18.75/200 mg film-coated tablet, 60, bottle 238853 931281000168103 Centevo 75/18.75/200 mg film-coated tablet, 60 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931271000168101 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 60 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +50259011000036105 Cutilin Non-Stick Wound Pad (76300) 10 cm x 10 cm dressing, 5, carton 49376011000036104 Cutilin Non-Stick Wound Pad (76300) 10 cm x 10 cm dressing, 5 48714011000036103 Cutilin Non-Stick Wound Pad (76300) 10 cm x 10 cm dressing 53891000168106 Cutilin Non-Stick Wound Pad (76300) 53891000168106 Cutilin Non-Stick Wound Pad (76300) 51349011000036108 dressing non adherent 10 cm x 10 cm dressing, 5 50873011000036104 dressing non adherent 10 cm x 10 cm dressing 50699011000036100 dressing non adherent +69502011000036104 Phisohex Face Wash 1% lotion, 500 mL, bottle 51227 67302011000036105 Phisohex Face Wash 1% lotion, 500 mL 65597011000036105 Phisohex Face Wash 1% lotion 47901000168102 Phisohex Face Wash 47901000168102 Phisohex Face Wash 71848011000036100 triclosan 1% lotion, 500 mL 70211011000036100 triclosan 1% lotion 69817011000036103 triclosan +888341000168109 Bosentan (Intas) 125 mg film-coated tablet, 60, bottle 235894 888331000168100 Bosentan (Intas) 125 mg film-coated tablet, 60 888261000168104 Bosentan (Intas) 125 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +931211000168109 Centevo 75/18.75/200 mg film-coated tablet, 28, bottle 238853 931201000168106 Centevo 75/18.75/200 mg film-coated tablet, 28 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931191000168108 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 28 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1077941000168102 Atomoxetine (AN) 40 mg hard capsule, 7, blister pack 234832 1077931000168106 Atomoxetine (AN) 40 mg hard capsule, 7 1077921000168108 Atomoxetine (AN) 40 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1031881000168106 Aripra 15 mg uncoated tablet, 30, blister pack 217191 1031871000168108 Aripra 15 mg uncoated tablet, 30 1031861000168102 Aripra 15 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +50501011000036105 Zincaband (3604) 7.5 cm x 6 m bandage, 1, carton 49306011000036105 Zincaband (3604) 7.5 cm x 6 m bandage, 1 48727011000036100 Zincaband (3604) 7.5 cm x 6 m bandage 43951000168107 Zincaband (3604) 43951000168107 Zincaband (3604) 51290011000036104 bandage zinc paste 7.5 cm x 6 m bandage, 1 50819011000036105 bandage zinc paste 7.5 cm x 6 m bandage 50700011000036104 bandage zinc paste +69260011000036106 Chlorhexidine Acetate (Baxter) 0.5% (500 mg/100 mL) irrigation solution, 24 x 100 mL bottles 19474 67060011000036109 Chlorhexidine Acetate (Baxter) 0.5% (500 mg/100 mL) irrigation solution, 24 x 100 mL bottles 65502011000036106 Chlorhexidine Acetate (Baxter) 0.5% (500 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71630011000036108 chlorhexidine acetate 0.5% (500 mg/100 mL) solution, 24 x 100 mL bottles 70100011000036107 chlorhexidine acetate 0.5% (500 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +59938011000036103 Worming Tablet (Terry White Chemists) 100 mg chewable tablet, 6, blister pack 119655 55900011000036101 Worming Tablet (Terry White Chemists) 100 mg chewable tablet, 6 53708011000036103 Worming Tablet (Terry White Chemists) 100 mg chewable tablet 53499011000036103 Worming Tablet (Terry White Chemists) 53499011000036103 Worming Tablet (Terry White Chemists) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +683861000168103 Lansoprazole ODT (GH) 30 mg orally disintegrating tablet, 28, blister pack 216792 683851000168100 Lansoprazole ODT (GH) 30 mg orally disintegrating tablet, 28 683821000168108 Lansoprazole ODT (GH) 30 mg orally disintegrating tablet 683811000168101 Lansoprazole ODT (GH) 683811000168101 Lansoprazole ODT (GH) 79819011000036106 lansoprazole 30 mg orally disintegrating tablet, 28 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +921951011000036108 Resolve Tinea 2% cream, 50 g, tube 46316 921509011000036105 Resolve Tinea 2% cream, 50 g 921047011000036109 Resolve Tinea 2% cream 920946011000036105 Resolve Tinea 920946011000036105 Resolve Tinea 922631011000036106 miconazole nitrate 2% cream, 50 g 22195011000036104 miconazole nitrate 2% cream 21454011000036108 miconazole +764151000168100 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet, 20, blister pack 214491 764141000168102 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet, 20 764131000168106 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +69018011000036101 Dimethicream cream, 100 g, tube 13992 66820011000036101 Dimethicream cream, 100 g 65253011000036103 Dimethicream cream 64986011000036106 Dimethicream 64986011000036106 Dimethicream 71437011000036107 dimeticone-350 10% + cetrimide 0.5% cream, 100 g 70059011000036100 dimeticone-350 10% + cetrimide 0.5% cream 69804011000036107 dimeticone-350 + cetrimide +931751011000036100 Salbutamol (Apo) 100 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 67069 930911011000036109 Salbutamol (Apo) 100 microgram/actuation pressurised inhalation, 200 actuations 930113011000036108 Salbutamol (Apo) 100 microgram/actuation pressurised inhalation, actuation 929835011000036105 Salbutamol (Apo) 929835011000036105 Salbutamol (Apo) 27601011000036100 salbutamol 100 microgram/actuation pressurised inhalation, 200 actuations 22940011000036103 salbutamol 100 microgram/actuation pressurised inhalation, actuation 21493011000036100 salbutamol +60618011000036105 Wart-Off paint, 6 mL, bottle 18915 56576011000036100 Wart-Off paint, 6 mL 53982011000036109 Wart-Off paint 53288011000036106 Wart-Off 53288011000036106 Wart-Off 63435011000036105 salicylic acid 20% + lactic acid 13.75% + podophyllum resin 10% paint, 6 mL 61961011000036109 salicylic acid 20% + lactic acid 13.75% + podophyllum resin 10% paint 61769011000036103 salicylic acid + lactic acid + podophyllum resin +61367011000036109 Anti-Fungal (Pharmacy Health) 1% cream, 20 g, tube 81526 57292011000036102 Anti-Fungal (Pharmacy Health) 1% cream, 20 g 54261011000036102 Anti-Fungal (Pharmacy Health) 1% cream 53488011000036105 Anti-Fungal (Pharmacy Health) 53488011000036105 Anti-Fungal (Pharmacy Health) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +718141000168106 Pantoprazole (Apotex) 40 mg enteric tablet, 30, blister pack 156340 718131000168102 Pantoprazole (Apotex) 40 mg enteric tablet, 30 718101000168109 Pantoprazole (Apotex) 40 mg enteric tablet 707611000168103 Pantoprazole (Apotex) 707611000168103 Pantoprazole (Apotex) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +901251000168103 Belsomra 15 mg film-coated tablet, 10, blister pack 207709 901241000168100 Belsomra 15 mg film-coated tablet, 10 901191000168100 Belsomra 15 mg film-coated tablet 901051000168106 Belsomra 901051000168106 Belsomra 901231000168109 suvorexant 15 mg tablet, 10 901181000168103 suvorexant 15 mg tablet 901171000168101 suvorexant +20617011000036100 Symbicort Turbuhaler 100/6 powder for inhalation, 120 actuations, dry powder inhaler 80875 13797011000036107 Symbicort Turbuhaler 100/6 powder for inhalation, 120 actuations 7083011000036108 Symbicort Turbuhaler 100/6 powder for inhalation, actuation 52441000168106 Symbicort Turbuhaler 100/6 52441000168106 Symbicort Turbuhaler 100/6 27941011000036107 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, 120 actuations 23265011000036105 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +923819011000036103 Targin 10/5 mg modified release tablet, 20, blister pack 156145 923365011000036103 Targin 10/5 mg modified release tablet, 20 923036011000036102 Targin 10/5 mg modified release tablet 49001000168109 Targin 10/5 mg 49001000168109 Targin 10/5 mg 924163011000036105 oxycodone hydrochloride 10 mg + naloxone hydrochloride 5 mg modified release tablet, 20 923974011000036100 oxycodone hydrochloride 10 mg + naloxone hydrochloride 5 mg modified release tablet 923931011000036100 oxycodone + naloxone +19217011000036104 Actrapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 47219 12507011000036104 Actrapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 5877011000036109 Actrapid Penfill 100 units/mL injection solution, 3 mL cartridge 51961000168107 Actrapid Penfill 51961000168107 Actrapid Penfill 27161011000036100 insulin neutral human 100 units/mL injection, 5 x 3 mL cartridges 22523011000036100 insulin neutral human 100 units/mL injection, cartridge 33644011000036103 insulin neutral human +19217011000036104 Actrapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 169623 12507011000036104 Actrapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 5877011000036109 Actrapid Penfill 100 units/mL injection solution, 3 mL cartridge 51961000168107 Actrapid Penfill 51961000168107 Actrapid Penfill 27161011000036100 insulin neutral human 100 units/mL injection, 5 x 3 mL cartridges 22523011000036100 insulin neutral human 100 units/mL injection, cartridge 33644011000036103 insulin neutral human +859511000168100 Tobramycin (Hospira) 80 mg/2 mL injection solution, 5 x 2 mL vials 121463 859501000168103 Tobramycin (Hospira) 80 mg/2 mL injection solution, 5 x 2 mL vials 859491000168105 Tobramycin (Hospira) 80 mg/2 mL injection solution, 2 mL vial 859421000168108 Tobramycin (Hospira) 859421000168108 Tobramycin (Hospira) 27780011000036101 tobramycin 80 mg/2 mL injection, 5 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +1089761000168100 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 10, blister pack 281501 1089751000168102 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 10 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813111000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 10 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +761001000168100 Olmesartan/Amlodipine 40/5 (Apotex) film-coated tablet, 30, blister pack 218244 760991000168101 Olmesartan/Amlodipine 40/5 (Apotex) film-coated tablet, 30 760981000168104 Olmesartan/Amlodipine 40/5 (Apotex) film-coated tablet 760971000168102 Olmesartan/Amlodipine 40/5 (Apotex) 760971000168102 Olmesartan/Amlodipine 40/5 (Apotex) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +876601000168106 Betnovate Scalp Application 0.1% lotion, 30 g, bottle 12494 876591000168104 Betnovate Scalp Application 0.1% lotion, 30 g 876571000168100 Betnovate Scalp Application 0.1% lotion 876551000168109 Betnovate Scalp Application 876551000168109 Betnovate Scalp Application 876581000168102 betamethasone (as valerate) 0.1% lotion, 30 g 876561000168106 betamethasone (as valerate) 0.1% lotion 21366011000036103 betamethasone valerate +50311011000036109 Flucloxacillin (Lennon Healthcare) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 49535011000036106 Flucloxacillin (Lennon Healthcare) 125 mg/5 mL powder for oral liquid, 100 mL 48592011000036107 Flucloxacillin (Lennon Healthcare) 125 mg/5 mL powder for oral liquid, 5 mL 48354011000036106 Flucloxacillin (Lennon Healthcare) 48354011000036106 Flucloxacillin (Lennon Healthcare) 26644011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid, 100 mL 22050011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +69571011000036101 Dettol Antiseptic Liquid 4.8% solution, 500 mL, bottle 61404 67371011000036108 Dettol Antiseptic Liquid 4.8% solution, 500 mL 65632011000036107 Dettol Antiseptic Liquid 4.8% solution 65186011000036101 Dettol Antiseptic Liquid 65186011000036101 Dettol Antiseptic Liquid 71911011000036106 chloroxylenol 4.8% solution, 500 mL 70243011000036106 chloroxylenol 4.8% solution 69808011000036100 chloroxylenol +69231011000036107 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 100 mL bottle 19462 67031011000036105 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 100 mL bottle 65309011000036104 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 100 mL bottle 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 71601011000036108 chlorhexidine acetate 0.1% (100 mg/100 mL) + cetrimide 1% (1 g/100 mL) solution, 100 mL bottle 70086011000036104 chlorhexidine acetate 0.1% (100 mg/100 mL) + cetrimide 1% (1 g/100 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +68822011000036108 QV Cream, 10 g, tube 10629 66521011000036107 QV Cream, 10 g 65500011000036107 QV Cream 65191011000036105 QV Cream 65191011000036105 QV Cream 71253011000036103 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream, 10 g 69959011000036106 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream 69769011000036106 glycerol + light liquid paraffin + white soft paraffin +888301000168107 Bosentan (Intas) 125 mg film-coated tablet, 56, blister pack 235887 888291000168106 Bosentan (Intas) 125 mg film-coated tablet, 56 888261000168104 Bosentan (Intas) 125 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +59961011000036104 Nurofen Tension Headache 200 mg tablet, 40, blister pack 120354 55923011000036102 Nurofen Tension Headache 200 mg tablet, 40 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +756731000168107 Olanzacor 5 mg film-coated tablet, 7, blister pack 207858 756721000168109 Olanzacor 5 mg film-coated tablet, 7 756711000168102 Olanzacor 5 mg film-coated tablet 756671000168101 Olanzacor 756671000168101 Olanzacor 933205031000036100 olanzapine 5 mg tablet, 7 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +18952011000036106 Stemetil 25 mg suppository, 5, blister pack 27557 12260011000036108 Stemetil 25 mg suppository, 5 5927011000036104 Stemetil 25 mg suppository 4309011000036101 Stemetil 4309011000036101 Stemetil 27023011000036100 prochlorperazine maleate 25 mg suppository, 5 22396011000036101 prochlorperazine maleate 25 mg suppository 21262011000036105 prochlorperazine +60301011000036108 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 20, blister pack 137681 56260011000036100 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 20 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63272011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 20 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +19194011000036108 Cardizem CD 240 mg modified release capsule, 30, blister pack 46822 12487011000036105 Cardizem CD 240 mg modified release capsule, 30 5362011000036103 Cardizem CD 240 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +948291000168107 Ranitidine (GN) 150 mg film-coated tablet, 60, bottle 148524 933202211000036109 Ranitidine (GN) 150 mg film-coated tablet, 60 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1014681000168101 Temozolomide (Apotex) 5 mg hard capsule, 5, bottle 206885 1014671000168104 Temozolomide (Apotex) 5 mg hard capsule, 5 1014661000168105 Temozolomide (Apotex) 5 mg hard capsule 1014191000168108 Temozolomide (Apotex) 1014191000168108 Temozolomide (Apotex) 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +850851000168106 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules 11302 850841000168109 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules 850831000168100 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, ampoule 81982011000036103 Atropine Sulfate (Pfizer (Perth)) 81982011000036103 Atropine Sulfate (Pfizer (Perth)) 850751000168101 atropine sulfate monohydrate 600 microgram/mL injection, 10 x 1 mL ampoules 850731000168107 atropine sulfate monohydrate 600 microgram/mL injection, ampoule 933232141000036108 atropine sulfate monohydrate +66331000036109 Iodosorb (66051330) 6 cm x 4 cm medicated dressing, 5 x 5 g sheet, sachet 62774 64241000036102 Iodosorb (66051330) 6 cm x 4 cm medicated dressing, 5 x 5 g sheet 933241851000036107 Iodosorb (66051330) 6 cm x 4 cm medicated dressing, 5 g sheet 55841000168102 Iodosorb (66051330) 55841000168102 Iodosorb (66051330) 64251000036104 cadexomer-iodine 6 cm x 4 cm dressing, 5 x 5 g sheet 933241861000036105 cadexomer-iodine 6 cm x 4 cm dressing, 5 g sheet 21550011000036106 cadexomer-iodine +1013631000168100 Ziprasidone (Apo) 60 mg hard capsule, 300, bottle 201054 1013621000168103 Ziprasidone (Apo) 60 mg hard capsule, 300 148261000036109 Ziprasidone (Apo) 60 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 1013611000168105 ziprasidone 60 mg capsule, 300 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +68747011000036109 Rikoderm lotion, 250 mL, bottle 10589 66516011000036105 Rikoderm lotion, 250 mL 65248011000036106 Rikoderm lotion 65134011000036102 Rikoderm 65134011000036102 Rikoderm 71248011000036106 light liquid paraffin 15.9% + wool fat 0.6% lotion, 250 mL 69917011000036107 light liquid paraffin 15.9% + wool fat 0.6% lotion 69787011000036102 light liquid paraffin + wool fat +752341000168100 Oxycodone (WT) 5 mg hard capsule, 60, bottle 227854 752331000168109 Oxycodone (WT) 5 mg hard capsule, 60 752301000168102 Oxycodone (WT) 5 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +902371000168108 Candesartan (GPPL) 32 mg uncoated tablet, 30, bottle 195512 902361000168102 Candesartan (GPPL) 32 mg uncoated tablet, 30 902351000168104 Candesartan (GPPL) 32 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +933212711000036101 Ciprofloxacin (GN) 750 mg film-coated tablet, 14, blister pack 148853 933202451000036107 Ciprofloxacin (GN) 750 mg film-coated tablet, 14 933195381000036104 Ciprofloxacin (GN) 750 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +951481000168103 Trandolapril (Chemmart) 1 mg capsule, 28, blister pack 135969 951471000168101 Trandolapril (Chemmart) 1 mg capsule, 28 951461000168107 Trandolapril (Chemmart) 1 mg capsule 951451000168105 Trandolapril (Chemmart) 951451000168105 Trandolapril (Chemmart) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +20104011000036108 Aciclovir (GenRx) 200 mg tablet, 50, blister pack 71816 13329011000036105 Aciclovir (GenRx) 200 mg tablet, 50 6615011000036102 Aciclovir (GenRx) 200 mg tablet 3828011000036101 Aciclovir (GenRx) 3828011000036101 Aciclovir (GenRx) 27698011000036106 aciclovir 200 mg tablet, 50 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +21101011000036103 Toprol-XL 23.75 mg modified release tablet, 15, blister pack 97785 14244011000036100 Toprol-XL 23.75 mg modified release tablet, 15 7530011000036105 Toprol-XL 23.75 mg modified release tablet 32970011000036103 Toprol-XL 32970011000036103 Toprol-XL 28243011000036102 metoprolol succinate 23.75 mg modified release tablet, 15 23557011000036100 metoprolol succinate 23.75 mg modified release tablet 21662011000036107 metoprolol +33505011000036104 Alzene 10 mg film-coated tablet, 10, bottle 116610 33248011000036107 Alzene 10 mg film-coated tablet, 10 33003011000036102 Alzene 10 mg film-coated tablet 32964011000036102 Alzene 32964011000036102 Alzene 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1056611000168106 Atorvastatin (Ran) 20 mg film-coated tablet, 100, bottle 179825 1056601000168108 Atorvastatin (Ran) 20 mg film-coated tablet, 100 1056551000168106 Atorvastatin (Ran) 20 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890361000168109 atorvastatin 20 mg tablet, 100 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +952811000168100 Tramadol (DBL) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 121776 952801000168103 Tramadol (DBL) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 952791000168104 Tramadol (DBL) 100 mg/2 mL injection solution, 2 mL ampoule 952781000168102 Tramadol (DBL) 952781000168102 Tramadol (DBL) 27537011000036109 tramadol hydrochloride 100 mg/2 mL injection, 5 x 2 mL ampoules 22877011000036109 tramadol hydrochloride 100 mg/2 mL injection, ampoule 21486011000036105 tramadol +1014841000168107 Valaciclovir (Apotex) 500 mg film-coated tablet, 4, blister pack 158914 1014831000168103 Valaciclovir (Apotex) 500 mg film-coated tablet, 4 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929219011000036106 valaciclovir 500 mg tablet, 4 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1085331000168107 Flo Xylo-Pos 0.1% nasal spray, 15 mL, pump pack 134776 74278011000036100 Flo Xylo-Pos 0.1% nasal spray, 15 mL 73784011000036106 Flo Xylo-Pos 0.1% nasal spray 73727011000036107 Flo Xylo-Pos 73727011000036107 Flo Xylo-Pos 75442011000036105 xylometazoline hydrochloride 0.1% nasal spray, 15 mL 75123011000036102 xylometazoline hydrochloride 0.1% nasal spray 61748011000036102 xylometazoline +893831000168103 Imatinib Adult (Cipla) 100 mg hard capsule, 120, blister pack 231747 893821000168101 Imatinib Adult (Cipla) 100 mg hard capsule, 120 893731000168105 Imatinib Adult (Cipla) 100 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 828901000168100 imatinib 100 mg capsule, 120 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +781411000168107 Oxycodone MR (GenRx) 15 mg modified release tablet, 28, blister pack 214497 781401000168109 Oxycodone MR (GenRx) 15 mg modified release tablet, 28 781361000168100 Oxycodone MR (GenRx) 15 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +1030671000168104 Atomoxetine (Genpar) 80 mg hard capsule, 14, blister pack 234856 1030661000168105 Atomoxetine (Genpar) 80 mg hard capsule, 14 1030611000168107 Atomoxetine (Genpar) 80 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830561000168105 atomoxetine 80 mg capsule, 14 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1121421000168103 Quetiapine XR (Medis) 50 mg modified release tablet, 100, blister pack 241757 1121411000168105 Quetiapine XR (Medis) 50 mg modified release tablet, 100 1121341000168102 Quetiapine XR (Medis) 50 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51530011000036103 quetiapine 50 mg modified release tablet, 100 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +746931000168107 Morphine (JN) 10 mg/mL injection solution, 10 x 1 mL ampoules 224252 746921000168109 Morphine (JN) 10 mg/mL injection solution, 10 x 1 mL ampoules 746891000168104 Morphine (JN) 10 mg/mL injection solution, ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 707041000168106 morphine hydrochloride trihydrate 10 mg/mL injection, 10 x 1 mL ampoules 706991000168102 morphine hydrochloride trihydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +52195011000036109 Clarithromycin (Apo) 250 mg film-coated tablet, 2, blister pack 134850 52084011000036102 Clarithromycin (Apo) 250 mg film-coated tablet, 2 51983011000036107 Clarithromycin (Apo) 250 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +977381000168102 Aripiprazole (AN) 5 mg uncoated tablet, 30, bottle 198198 977321000168101 Aripiprazole (AN) 5 mg uncoated tablet, 30 977291000168109 Aripiprazole (AN) 5 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +687791000168107 Mometasone Furoate (Chemmart) 50 microgram/actuation nasal spray, 140 actuations, pump pack 184661 687781000168109 Mometasone Furoate (Chemmart) 50 microgram/actuation nasal spray, 140 actuations 687771000168106 Mometasone Furoate (Chemmart) 50 microgram/actuation nasal spray, actuation 687761000168100 Mometasone Furoate (Chemmart) 687761000168100 Mometasone Furoate (Chemmart) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +19407011000036103 Mobilis D 10 mg dispersible tablet, 50, blister pack 53282 12691011000036101 Mobilis D 10 mg dispersible tablet, 50 4658011000036108 Mobilis D 10 mg dispersible tablet 57231000168103 Mobilis D 57231000168103 Mobilis D 27881011000036106 piroxicam 10 mg dispersible tablet, 50 23209011000036106 piroxicam 10 mg dispersible tablet 21531011000036103 piroxicam +19620011000036105 Zithromax 500 mg film-coated tablet, 2, blister pack 58797 12889011000036109 Zithromax 500 mg film-coated tablet, 2 6180011000036105 Zithromax 500 mg film-coated tablet 3528011000036100 Zithromax 3528011000036100 Zithromax 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +1011941000168100 Irbesartan (Apotex) 150 mg film-coated tablet, 28, blister pack 169789 1011931000168109 Irbesartan (Apotex) 150 mg film-coated tablet, 28 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777641000168108 irbesartan 150 mg tablet, 28 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +56281000036106 Carbaccord 450 mg/45 mL injection solution, 45 mL vial 159114 51681000036103 Carbaccord 450 mg/45 mL injection solution, 45 mL vial 49261000036105 Carbaccord 450 mg/45 mL injection solution, 45 mL vial 48411000036101 Carbaccord 48411000036101 Carbaccord 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +39370011000036103 Gabatine 400 mg capsule, 100, blister pack 107498 39255011000036100 Gabatine 400 mg capsule, 100 39192011000036102 Gabatine 400 mg capsule 39179011000036102 Gabatine 39179011000036102 Gabatine 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +951441000168108 Modafinil (AN) 100 mg uncoated tablet, 90, blister pack 269912 951431000168104 Modafinil (AN) 100 mg uncoated tablet, 90 951361000168102 Modafinil (AN) 100 mg uncoated tablet 951351000168104 Modafinil (AN) 951351000168104 Modafinil (AN) 951231000168103 modafinil 100 mg tablet, 90 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +892271000168107 Betahist 16 mg uncoated tablet, 100, blister pack 212079 892261000168101 Betahist 16 mg uncoated tablet, 100 892171000168101 Betahist 16 mg uncoated tablet 892161000168107 Betahist 892161000168107 Betahist 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +20358011000036103 Puregon 600 units/0.72 mL injection solution, 0.72 mL cartridge 76437 13566011000036107 Puregon 600 units/0.72 mL injection solution, 0.72 mL cartridge 6848011000036109 Puregon 600 units/0.72 mL injection solution, 0.72 mL cartridge 2961011000036103 Puregon 2961011000036103 Puregon 27805011000036109 follitropin beta 600 units/0.72 mL injection, 0.72 mL cartridge 23133011000036101 follitropin beta 600 units/0.72 mL injection, cartridge 21333011000036104 follitropin beta +879411000168103 Domperidone (Blooms The Chemist) 10 mg uncoated tablet, 30, blister pack 242337 879401000168101 Domperidone (Blooms The Chemist) 10 mg uncoated tablet, 30 879371000168104 Domperidone (Blooms The Chemist) 10 mg uncoated tablet 879361000168105 Domperidone (Blooms The Chemist) 879361000168105 Domperidone (Blooms The Chemist) 834081000168102 domperidone 10 mg tablet, 30 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +1060941000168106 Atomerra 5 mg hard capsule, 56, blister pack 234812 1060931000168102 Atomerra 5 mg hard capsule, 56 1060861000168103 Atomerra 5 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 976401000168100 atomoxetine 5 mg capsule, 56 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +69698011000036108 Imflac Anti-Inflammatory Pain Relief 1% gel, 100 g, tube 91047 67497011000036102 Imflac Anti-Inflammatory Pain Relief 1% gel, 100 g 65684011000036105 Imflac Anti-Inflammatory Pain Relief 1% gel 15971000168106 Imflac Anti-Inflammatory Pain Relief 15971000168106 Imflac Anti-Inflammatory Pain Relief 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +30641000036101 Metformin Hydrochloride 1000 (Pfizer) 1 g film-coated tablet, 90, blister pack 180431 29121000036109 Metformin Hydrochloride 1000 (Pfizer) 1 g film-coated tablet, 90 26441000036104 Metformin Hydrochloride 1000 (Pfizer) 1 g film-coated tablet 40961000168100 Metformin Hydrochloride 1000 (Pfizer) 40961000168100 Metformin Hydrochloride 1000 (Pfizer) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +32583011000036105 Metronidazole (Baxter) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 19703 32378011000036107 Metronidazole (Baxter) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 5682011000036105 Metronidazole (Baxter) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 3894011000036104 Metronidazole (Baxter) 3894011000036104 Metronidazole (Baxter) 32778011000036106 metronidazole 500 mg/100 mL (0.5%) injection, 100 mL bag 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +50386011000036101 Freestyle Papillon diagnostic strip, 50, bottle 124678 49543011000036106 Freestyle Papillon diagnostic strip, 50 48488011000036100 Freestyle Papillon diagnostic strip 47801000168107 Freestyle Papillon 47801000168107 Freestyle Papillon 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +807401000168101 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet, 100, blister pack 184821 807391000168103 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet, 100 807301000168109 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 806941000168108 perindopril arginine 10 mg tablet, 100 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +1034971000168100 Aquinaretic 20/12.5 film-coated tablet, 30, blister pack 173418 1034961000168106 Aquinaretic 20/12.5 film-coated tablet, 30 1034951000168109 Aquinaretic 20/12.5 film-coated tablet 1034931000168103 Aquinaretic 20/12.5 1034931000168103 Aquinaretic 20/12.5 27971011000036108 quinapril 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 23295011000036107 quinapril 20 mg + hydrochlorothiazide 12.5 mg tablet 21455011000036107 quinapril + hydrochlorothiazide +985961000168108 Advil Double Strength Caplets 400 mg film-coated tablet, 20, blister pack 207376 985951000168106 Advil Double Strength Caplets 400 mg film-coated tablet, 20 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 985941000168109 ibuprofen 400 mg tablet, 20 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1032001000168100 Aten 100 mg film-coated tablet, 60, blister pack 197718 1031991000168102 Aten 100 mg film-coated tablet, 60 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031981000168100 atenolol 100 mg tablet, 60 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +933239001000036103 Fentanyl (Sandoz) 100 microgram/hour patch, 8, sachet 152576 933236311000036108 Fentanyl (Sandoz) 100 microgram/hour patch, 8 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236321000036101 fentanyl 100 microgram/hour patch, 8 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +19136011000036105 Taxol 30 mg/5 mL concentrated injection, 5 mL vial 43924 12437011000036100 Taxol 30 mg/5 mL concentrated injection, 5 mL vial 6020011000036109 Taxol 30 mg/5 mL concentrated injection, 5 mL vial 3399011000036100 Taxol 3399011000036100 Taxol 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +883731000168106 Cardizem CD 360 mg modified release capsule, 10, bottle 75251 41932011000036100 Cardizem CD 360 mg modified release capsule, 10 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46719011000036107 diltiazem hydrochloride 360 mg modified release capsule, 10 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +1098311000168108 Chesty Cough Forte (Amcal) oral liquid, 100 mL, bottle 225478 1098301000168105 Chesty Cough Forte (Amcal) oral liquid, 100 mL 1098291000168109 Chesty Cough Forte (Amcal) oral liquid, 5 mL 1098251000168104 Chesty Cough Forte (Amcal) 1098251000168104 Chesty Cough Forte (Amcal) 63966011000036107 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +945641000168109 Invast 80 mg film-coated tablet, 100, bottle 100263 945631000168100 Invast 80 mg film-coated tablet, 100 945601000168107 Invast 80 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 46250011000036104 simvastatin 80 mg tablet, 100 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +925501000168108 Celetoid 100 mg hard capsule, 60, blister pack 206833 925491000168101 Celetoid 100 mg hard capsule, 60 925481000168104 Celetoid 100 mg hard capsule 913321000168102 Celetoid 913321000168102 Celetoid 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1089681000168104 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 4, blister pack 281501 1089671000168102 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 4 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 812961000168108 paracetamol 500 mg + ibuprofen 200 mg tablet, 4 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1069531000168101 Hydromorphone (MPL) 8 mg uncoated tablet, 60, bottle 295425 1069521000168104 Hydromorphone (MPL) 8 mg uncoated tablet, 60 1069491000168101 Hydromorphone (MPL) 8 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35199011000036104 hydromorphone hydrochloride 8 mg tablet, 60 22946011000036100 hydromorphone hydrochloride 8 mg tablet 21480011000036107 hydromorphone +37630011000036104 Sodium Selenite Drops (Nutrition Care) 800 microgram/mL oral liquid, 30 mL, bottle 22757 36896011000036103 Sodium Selenite Drops (Nutrition Care) 800 microgram/mL oral liquid, 30 mL 36229011000036105 Sodium Selenite Drops (Nutrition Care) 800 microgram/mL oral liquid 17271000168105 Sodium Selenite Drops (Nutrition Care) 17271000168105 Sodium Selenite Drops (Nutrition Care) 38781011000036100 selenium 800 microgram/mL oral liquid, 30 mL 37994011000036102 selenium 800 microgram/mL oral liquid 32671011000036106 selenium +922621000168107 PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets 922611000168100 PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets 922601000168103 PKU Sphere20 Vanilla powder for oral liquid, 35 g sachet 922511000168101 PKU Sphere20 922511000168101 PKU Sphere20 900831000168103 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 30 x 35 g sachets 900811000168108 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 35 g sachet 900801000168105 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine +876511000168108 Briviact 100 mg film-coated tablet, 100, blister pack 243792 876501000168105 Briviact 100 mg film-coated tablet, 100 876421000168100 Briviact 100 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876491000168103 brivaracetam 100 mg tablet, 100 876411000168107 brivaracetam 100 mg tablet 876401000168109 brivaracetam +60491011000036102 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 30 mL, bottle 167732 56449011000036100 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 30 mL 53923011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension 20021000168109 Nurofen for Children Baby 3+ Months 20021000168109 Nurofen for Children Baby 3+ Months 63364011000036108 ibuprofen 40 mg/mL oral liquid, 30 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +60491011000036102 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 30 mL, bottle 150324 56449011000036100 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 30 mL 53923011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension 20021000168109 Nurofen for Children Baby 3+ Months 20021000168109 Nurofen for Children Baby 3+ Months 63364011000036108 ibuprofen 40 mg/mL oral liquid, 30 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +899561000168107 Fluquadri Junior 2017 injection suspension, 10 x 0.25 mL syringes 213964 899551000168105 Fluquadri Junior 2017 injection suspension, 10 x 0.25 mL syringes 899501000168106 Fluquadri Junior 2017 injection suspension, 0.25 mL syringe 899481000168102 Fluquadri Junior 2017 899481000168102 Fluquadri Junior 2017 899541000168108 influenza quadrivalent child vaccine 2017 injection, 10 x 0.25 mL syringes 899491000168104 influenza quadrivalent child vaccine 2017 injection, 0.25 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +1030631000168102 Atomoxetine (Genpar) 80 mg hard capsule, 7, blister pack 234856 1030621000168100 Atomoxetine (Genpar) 80 mg hard capsule, 7 1030611000168107 Atomoxetine (Genpar) 80 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1102651000168109 Aspramide 5 mg film-coated tablet, 10, blister pack 196499 1102641000168107 Aspramide 5 mg film-coated tablet, 10 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102631000168103 metoclopramide hydrochloride 5 mg tablet, 10 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +926903011000036103 Optimark 3.31 g/10 mL injection solution, 10 mL vial 76653 926297011000036108 Optimark 3.31 g/10 mL injection solution, 10 mL vial 925741011000036103 Optimark 3.31 g/10 mL injection solution, 10 mL vial 6001000168105 Optimark 6001000168105 Optimark 927391011000036109 gadoversetamide 3.31 g/10 mL injection, 10 mL vial 927032011000036106 gadoversetamide 3.31 g/10 mL injection, vial 926966011000036108 gadoversetamide +68805011000036109 Zonegran 100 mg capsule, 56, blister pack 125871 66682011000036103 Zonegran 100 mg capsule, 56 65290011000036101 Zonegran 100 mg capsule 65180011000036104 Zonegran 65180011000036104 Zonegran 71385011000036102 zonisamide 100 mg capsule, 56 69987011000036105 zonisamide 100 mg capsule 69755011000036103 zonisamide +73287011000036107 Jurnista 16 mg modified release tablet, 35, blister pack 141533 73085011000036107 Jurnista 16 mg modified release tablet, 35 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73483011000036102 hydromorphone hydrochloride 16 mg modified release tablet, 35 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +34669011000036107 Invega 6 mg modified release tablet, 56, blister pack 130714 34255011000036101 Invega 6 mg modified release tablet, 56 33988011000036100 Invega 6 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35123011000036107 paliperidone 6 mg modified release tablet, 56 34856011000036101 paliperidone 6 mg modified release tablet 34837011000036104 paliperidone +20859011000036109 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92120 14022011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 84 x Rebetol capsules), 1 pack 7297011000036105 Peg-Intron Redipen Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28085011000036102 peginterferon alfa-2b 150 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20859011000036109 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92120 14022011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 84 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28085011000036102 peginterferon alfa-2b 150 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20859011000036109 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92120 14022011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 84 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28085011000036102 peginterferon alfa-2b 150 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +69421011000036109 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 672 g, jar 47538 67221011000036101 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 672 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71772011000036102 psyllium husk powder 578 mg/g powder for oral liquid, 672 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +875071000168104 Bosulif 500 mg film-coated tablet, 28, blister pack 208810 875061000168105 Bosulif 500 mg film-coated tablet, 28 875041000168106 Bosulif 500 mg film-coated tablet 875001000168109 Bosulif 875001000168109 Bosulif 875051000168108 bosutinib 500 mg tablet, 28 875031000168102 bosutinib 500 mg tablet 875021000168100 bosutinib +1098351000168109 Azolast 5 mg/100 mL injection solution, 3 x 100 mL bags 182212 1098341000168107 Azolast 5 mg/100 mL injection solution, 3 x 100 mL bags 1098261000168102 Azolast 5 mg/100 mL injection solution, 100 mL bag 1098241000168101 Azolast 1098241000168101 Azolast 1076731000168106 zoledronic acid 5 mg/100 mL injection, 3 x 100 mL bags 731431000168106 zoledronic acid 5 mg/100 mL injection, bag 21790011000036102 zoledronic acid +705071000168106 Glytactin RTD 10 Original containing 10 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 705061000168100 Glytactin RTD 10 Original containing 10 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 705041000168104 Glytactin RTD 10 Original containing 10 g of protein equivalent oral liquid solution, 250 mL carton 705021000168105 Glytactin RTD 10 705021000168105 Glytactin RTD 10 705051000168102 glycomacropeptide and essential amino acids with vitamins and minerals containing 10 g of protein equivalent oral liquid, 30 x 250 mL cartons 705031000168108 glycomacropeptide and essential amino acids with vitamins and minerals containing 10 g of protein equivalent oral liquid, 250 mL carton 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +1009061000168104 Rivastigmine (Apotex) 4.5 mg hard capsule, 28, blister pack 160569 1009051000168101 Rivastigmine (Apotex) 4.5 mg hard capsule, 28 1009021000168109 Rivastigmine (Apotex) 4.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002421000168106 rivastigmine 4.5 mg capsule, 28 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +69168011000036106 Potassium Dihydrogen Phosphate (DBL) 1.361 g (potassium 10 mmol)/10 mL concentrated injection, 10 x 10 mL ampoules 16263 66968011000036103 Potassium Dihydrogen Phosphate (DBL) 1.361 g (potassium 10 mmol)/10 mL concentrated injection, 10 x 10 mL ampoules 65291011000036108 Potassium Dihydrogen Phosphate (DBL) 1.361 g (potassium 10 mmol)/10 mL concentrated injection, 10 mL ampoule 65116011000036104 Potassium Dihydrogen Phosphate (DBL) 65116011000036104 Potassium Dihydrogen Phosphate (DBL) 71541011000036108 monobasic potassium phosphate 1.361 g (potassium 10 mmol)/10 mL injection, 10 x 10 mL ampoules 70050011000036106 monobasic potassium phosphate 1.361 g (potassium 10 mmol)/10 mL injection, ampoule 21894011000036105 phosphorus +774271000168105 Irinotecan (Act) 40 mg/2 mL concentrated injection, 2 mL vial 227305 774261000168104 Irinotecan (Act) 40 mg/2 mL concentrated injection, 2 mL vial 774251000168101 Irinotecan (Act) 40 mg/2 mL concentrated injection, 2 mL vial 774241000168103 Irinotecan (Act) 774241000168103 Irinotecan (Act) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +1033531000168106 Atomoxetine (CH) 25 mg hard capsule, 7, blister pack 234819 1033521000168108 Atomoxetine (CH) 25 mg hard capsule, 7 1033511000168101 Atomoxetine (CH) 25 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +752621000168103 Cefazolin (Sandoz) 1 g powder for injection, 5 vials 75956 752611000168105 Cefazolin (Sandoz) 1 g powder for injection, 5 vials 6815011000036107 Cefazolin (Sandoz) 1 g powder for injection, vial 3337011000036101 Cefazolin (Sandoz) 3337011000036101 Cefazolin (Sandoz) 32938011000036104 cefazolin 1 g injection, 5 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +686241000168108 Rosuvastatin (Blooms The Chemist) 5 mg film-coated tablet, 30, blister pack 183070 686231000168104 Rosuvastatin (Blooms The Chemist) 5 mg film-coated tablet, 30 686221000168102 Rosuvastatin (Blooms The Chemist) 5 mg film-coated tablet 686151000168103 Rosuvastatin (Blooms The Chemist) 686151000168103 Rosuvastatin (Blooms The Chemist) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +837771000168105 Airzate Accuhaler 250/50 powder for inhalation, 60 actuations, blister pack 208189 837761000168104 Airzate Accuhaler 250/50 powder for inhalation, 60 actuations 837721000168109 Airzate Accuhaler 250/50 powder for inhalation, actuation 837711000168102 Airzate Accuhaler 250/50 837711000168102 Airzate Accuhaler 250/50 27672011000036103 fluticasone propionate 250 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 23009011000036100 fluticasone propionate 250 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +928241000168101 Nitro-Dur 5 mg/24 hours patch, 5, sachet 52340 928231000168105 Nitro-Dur 5 mg/24 hours patch, 5 4570011000036104 Nitro-Dur 5 mg/24 hours patch 4271011000036103 Nitro-Dur 4271011000036103 Nitro-Dur 928221000168107 glyceryl trinitrate 5 mg/24 hours patch, 5 22631011000036105 glyceryl trinitrate 5 mg/24 hours patch 21388011000036102 glyceryl trinitrate +929036011000036104 Sertraline (DRLA) 50 mg film-coated tablet, 14, blister pack 160766 928397011000036105 Sertraline (DRLA) 50 mg film-coated tablet, 14 927966011000036109 Sertraline (DRLA) 50 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 929237011000036106 sertraline 50 mg tablet, 14 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +18030011000036104 Lipidil 145 mg film-coated tablet, 30, blister pack 118634 11584011000036108 Lipidil 145 mg film-coated tablet, 30 5480011000036108 Lipidil 145 mg film-coated tablet 4138011000036106 Lipidil 4138011000036106 Lipidil 26700011000036101 fenofibrate 145 mg tablet, 30 22095011000036109 fenofibrate 145 mg tablet 21417011000036105 fenofibrate +56441000036103 Spirigel 68% gel, 500 mL, bottle 160935 52491000036105 Spirigel 68% gel, 500 mL 48831000036108 Spirigel 68% gel 48151000036108 Spirigel 48151000036108 Spirigel 52511000036101 ethanol 68% gel, 500 mL 48841000036103 ethanol 68% gel 69846011000036106 ethanol +1034811000168102 Atelvia EC Once-a-Week 35 mg enteric tablet, 12, blister pack 166841 1034801000168100 Atelvia EC Once-a-Week 35 mg enteric tablet, 12 1034661000168100 Atelvia EC Once-a-Week 35 mg enteric tablet 1034651000168102 Atelvia EC Once-a-Week 1034651000168102 Atelvia EC Once-a-Week 801911000168103 risedronate sodium 35 mg enteric tablet, 12 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +43645011000036103 Zemplar 4 microgram soft capsule, 7, bottle 121765 41263011000036101 Zemplar 4 microgram soft capsule, 7 39913011000036105 Zemplar 4 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46202011000036106 paricalcitol 4 microgram capsule, 7 45027011000036108 paricalcitol 4 microgram capsule 44899011000036102 paricalcitol +712451000168103 Esomeprazole (GH) 20 mg enteric tablet, 30, blister pack 207584 712441000168100 Esomeprazole (GH) 20 mg enteric tablet, 30 712431000168109 Esomeprazole (GH) 20 mg enteric tablet 712381000168102 Esomeprazole (GH) 712381000168102 Esomeprazole (GH) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +1099631000168104 Crestat 5 mg film-coated tablet, 30, blister pack 183270 1099621000168102 Crestat 5 mg film-coated tablet, 30 1099611000168109 Crestat 5 mg film-coated tablet 1099501000168105 Crestat 1099501000168105 Crestat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +84274011000036108 Norvapine 5 mg uncoated tablet, 10, blister pack 125853 83967011000036107 Norvapine 5 mg uncoated tablet, 10 83610011000036106 Norvapine 5 mg uncoated tablet 83558011000036107 Norvapine 83558011000036107 Norvapine 84619011000036102 amlodipine 5 mg tablet, 10 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +30481000036108 Clopidogrel (Pharmacor) 75 mg film-coated tablet, 28, blister pack 182992 28751000036107 Clopidogrel (Pharmacor) 75 mg film-coated tablet, 28 26601000036104 Clopidogrel (Pharmacor) 75 mg film-coated tablet 26371000036104 Clopidogrel (Pharmacor) 26371000036104 Clopidogrel (Pharmacor) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +18923011000036100 Flucon 0.1% eye drops suspension, 5 mL, bottle 25275 12231011000036109 Flucon 0.1% eye drops suspension, 5 mL 4760011000036107 Flucon 0.1% eye drops suspension 4070011000036101 Flucon 4070011000036101 Flucon 26999011000036101 fluorometholone 0.1% eye drops, 5 mL 22372011000036105 fluorometholone 0.1% eye drops 21597011000036100 fluorometholone +66081000036106 Aquae Dry Mouth 20 mg/mL oral gel, 100 g, tube 62991000036108 Aquae Dry Mouth 20 mg/mL oral gel, 100 g 60701000036101 Aquae Dry Mouth 20 mg/mL oral gel 11651000168107 Aquae Dry Mouth 11651000168107 Aquae Dry Mouth 63001000036107 hypromellose 20 mg/mL oral gel, 100 g 60711000036104 hypromellose 20 mg/mL oral gel 35690011000036109 hypromellose +933215681000036109 Olanzapine (LY) 5 mg wafer, 7, blister pack 167687 933205201000036103 Olanzapine (LY) 5 mg wafer, 7 933196211000036105 Olanzapine (LY) 5 mg wafer 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 933205181000036102 olanzapine 5 mg wafer, 7 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +997361000168101 Meloxicam (Apotex) 15 mg hard capsule, 100, blister pack 181197 997351000168103 Meloxicam (Apotex) 15 mg hard capsule, 100 997281000168101 Meloxicam (Apotex) 15 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 52890011000036107 meloxicam 15 mg capsule, 100 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +906891000168102 Celecoxib (GA) 200 mg capsule, 10, blister pack 204619 906881000168100 Celecoxib (GA) 200 mg capsule, 10 906871000168103 Celecoxib (GA) 200 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +767121000168100 Risperidone (Amneal) 3 mg film-coated tablet, 60, blister pack 159968 767111000168107 Risperidone (Amneal) 3 mg film-coated tablet, 60 767101000168109 Risperidone (Amneal) 3 mg film-coated tablet 767061000168106 Risperidone (Amneal) 767061000168106 Risperidone (Amneal) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +20588011000036108 Diltiazem Hydrochloride CD (Chemmart) 180 mg modified release capsule, 30, blister pack 80549 13940011000036106 Diltiazem Hydrochloride CD (Chemmart) 180 mg modified release capsule, 30 7228011000036101 Diltiazem Hydrochloride CD (Chemmart) 180 mg modified release capsule 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +33609011000036108 Logicin Sinus 60 mg film-coated tablet, 12, blister pack 95795 33347011000036104 Logicin Sinus 60 mg film-coated tablet, 12 33107011000036100 Logicin Sinus 60 mg film-coated tablet 3558011000036101 Logicin Sinus 3558011000036101 Logicin Sinus 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +1095341000168102 Doxy Sleep-Aid (Amcal) 25 mg uncoated tablet, 20, blister pack 234393 1095331000168106 Doxy Sleep-Aid (Amcal) 25 mg uncoated tablet, 20 1095321000168108 Doxy Sleep-Aid (Amcal) 25 mg uncoated tablet 1095261000168107 Doxy Sleep-Aid (Amcal) 1095261000168107 Doxy Sleep-Aid (Amcal) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +738201000168106 Avapro 300 mg film-coated tablet, 7, blister pack 101736 738191000168108 Avapro 300 mg film-coated tablet, 7 5075011000036103 Avapro 300 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 738181000168105 irbesartan 300 mg tablet, 7 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +963081000168102 Arflox 250 mg film-coated tablet, 10, bottle 92367 963071000168100 Arflox 250 mg film-coated tablet, 10 963041000168107 Arflox 250 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +74906011000036106 Imogam Rabies Pasteurised 300 units/2 mL injection, 2 mL vial 72931 74393011000036106 Imogam Rabies Pasteurised 300 units/2 mL injection, 2 mL vial 73916011000036107 Imogam Rabies Pasteurised 300 units/2 mL injection, 2 mL vial 43121000168102 Imogam Rabies Pasteurised 43121000168102 Imogam Rabies Pasteurised 75490011000036103 rabies virus immunoglobulin 300 units/2 mL injection, 2 mL vial 75091011000036100 rabies virus immunoglobulin 300 units/2 mL injection, vial 74964011000036102 rabies virus immunoglobulin +20404011000036107 Cardizem CD 360 mg modified release capsule, 30, bottle 77324 13612011000036102 Cardizem CD 360 mg modified release capsule, 30 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +970071000168104 Lypralin 300 mg hard capsule, 56, blister pack 235879 970061000168105 Lypralin 300 mg hard capsule, 56 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1021971000168100 Atelvia 35 mg film-coated tablet, 12, blister pack 163753 1021961000168106 Atelvia 35 mg film-coated tablet, 12 1021871000168105 Atelvia 35 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +43599011000036103 Coralan 5 mg film-coated tablet, 56, blister pack 107297 41152011000036101 Coralan 5 mg film-coated tablet, 56 39963011000036109 Coralan 5 mg film-coated tablet 39619011000036107 Coralan 39619011000036107 Coralan 46123011000036109 ivabradine 5 mg tablet, 56 44998011000036101 ivabradine 5 mg tablet 44871011000036108 ivabradine +61551011000036105 Pain (Chemists' Own) uncoated tablet, 20, blister pack 93836 57473011000036101 Pain (Chemists' Own) uncoated tablet, 20 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +1103931000168102 Quetiapine (GH) 200 mg film-coated tablet, 30, blister pack 179897 1103921000168100 Quetiapine (GH) 200 mg film-coated tablet, 30 2201000036106 Quetiapine (GH) 200 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103911000168107 quetiapine 200 mg tablet, 30 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +836081000168108 Panamax Co uncoated tablet, 50, blister pack 62661 836071000168105 Panamax Co uncoated tablet, 50 836041000168103 Panamax Co uncoated tablet 20881000168101 Panamax Co 20881000168101 Panamax Co 63448011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +882201000168103 Spedra 50 mg uncoated tablet, 12, blister pack 228474 882191000168101 Spedra 50 mg uncoated tablet, 12 882111000168105 Spedra 50 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882181000168104 avanafil 50 mg tablet, 12 882101000168107 avanafil 50 mg tablet 882091000168102 avanafil +19678011000036108 Oxis Turbuhaler 12 microgram/actuation powder for inhalation, 60 actuations, dry powder inhaler 60141 12938011000036101 Oxis Turbuhaler 12 microgram/actuation powder for inhalation, 60 actuations 6228011000036100 Oxis Turbuhaler 12 microgram/actuation powder for inhalation, actuation 29271000168107 Oxis Turbuhaler 29271000168107 Oxis Turbuhaler 27453011000036109 formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 60 actuations 22800011000036103 formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 21358011000036105 formoterol (eformoterol) +66171000036108 Betadine Pre-Operative Bodywash 7.5% solution, 50 mL, tube 29565 63741000036107 Betadine Pre-Operative Bodywash 7.5% solution, 50 mL 60601000036109 Betadine Pre-Operative Bodywash 7.5% solution 27431000168100 Betadine Pre-Operative Bodywash 27431000168100 Betadine Pre-Operative Bodywash 63751000036105 povidone-iodine 7.5% solution, 50 mL 70175011000036106 povidone-iodine 7.5% solution 21660011000036108 povidone-iodine +1034851000168101 Atomoxetine (CH) 18 mg hard capsule, 56, blister pack 234827 1034841000168103 Atomoxetine (CH) 18 mg hard capsule, 56 1034711000168105 Atomoxetine (CH) 18 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830391000168106 atomoxetine 18 mg capsule, 56 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +1017581000168109 Arcoxia 90 mg film-coated tablet, 2, blister pack 204147 1017571000168106 Arcoxia 90 mg film-coated tablet, 2 1017551000168102 Arcoxia 90 mg film-coated tablet 929823011000036107 Arcoxia 929823011000036107 Arcoxia 1017561000168100 etoricoxib 90 mg tablet, 2 1017541000168104 etoricoxib 90 mg tablet 931796011000036104 etoricoxib +20162011000036100 Gemfibrozil (Terry White Chemists) 600 mg film-coated tablet, 60, bottle 73847 13385011000036100 Gemfibrozil (Terry White Chemists) 600 mg film-coated tablet, 60 6670011000036103 Gemfibrozil (Terry White Chemists) 600 mg film-coated tablet 4273011000036102 Gemfibrozil (Terry White Chemists) 4273011000036102 Gemfibrozil (Terry White Chemists) 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +1078261000168107 Atomoxetine (GPPL) 80 mg hard capsule, 7, blister pack 234823 1078251000168105 Atomoxetine (GPPL) 80 mg hard capsule, 7 1078241000168108 Atomoxetine (GPPL) 80 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1086701000168106 Paracetamol (Beximco) 665 mg modified release tablet, 96, blister pack 281995 1086691000168106 Paracetamol (Beximco) 665 mg modified release tablet, 96 1086621000168109 Paracetamol (Beximco) 665 mg modified release tablet 1086611000168102 Paracetamol (Beximco) 1086611000168102 Paracetamol (Beximco) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +1020441000168106 Aripiprazole (WT) 15 mg uncoated tablet, 250, bottle 217220 1020431000168102 Aripiprazole (WT) 15 mg uncoated tablet, 250 1020401000168109 Aripiprazole (WT) 15 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 1015601000168108 aripiprazole 15 mg tablet, 250 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +19874011000036108 Eprex 2000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 65443 13121011000036100 Eprex 2000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 6404011000036100 Eprex 2000 units/0.5 mL injection solution, 0.5 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27562011000036103 epoetin alfa 2000 units/0.5 mL injection, 6 x 0.5 mL syringes 22901011000036102 epoetin alfa 2000 units/0.5 mL injection, syringe 21294011000036104 epoetin alfa +919651000168104 Antenex 10 mg uncoated tablet, 1000, bottle 17581 919641000168101 Antenex 10 mg uncoated tablet, 1000 919541000168102 Antenex 10 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 919631000168105 diazepam 10 mg tablet, 1000 919531000168106 diazepam 10 mg tablet 21688011000036107 diazepam +1085251000168106 Livostin 0.05% nasal spray, 100 actuations, pump pack 48290 12560011000036101 Livostin 0.05% nasal spray, 100 actuations 5436011000036102 Livostin 0.05% nasal spray 4339011000036106 Livostin 4339011000036106 Livostin 27200011000036105 levocabastine 0.05% nasal spray, 100 actuations 22560011000036100 levocabastine 0.05% nasal spray 21711011000036108 levocabastine +920665011000036105 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 7, bottle 107248 920435011000036101 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 7 920176011000036107 Doxycycline (Mayne Pharma) 100 mg modified release capsule 920064011000036102 Doxycycline (Mayne Pharma) 920064011000036102 Doxycycline (Mayne Pharma) 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +957101000168109 Conray-280 600 mg (iodine 280 mg)/mL injection solution, 10 x 20 mL vials 51541 957091000168104 Conray-280 600 mg (iodine 280 mg)/mL injection solution, 10 x 20 mL vials 957071000168100 Conray-280 600 mg (iodine 280 mg)/mL injection solution, 20 mL vial 955511000168107 Conray-280 955511000168107 Conray-280 957081000168102 iotalamate meglumine 600 mg (iodine 280 mg)/mL injection, 10 x 20 mL vials 957061000168106 iotalamate meglumine 600 mg (iodine 280 mg)/mL injection, 20 mL vial 955751000168100 iotalamic acid +1063831000168100 Pain Relief Plus (Chemplus) uncoated tablet, 24, blister pack 188740 1063821000168103 Pain Relief Plus (Chemplus) uncoated tablet, 24 1063721000168109 Pain Relief Plus (Chemplus) uncoated tablet 1063711000168102 Pain Relief Plus (Chemplus) 1063711000168102 Pain Relief Plus (Chemplus) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +77297011000036102 Liquid Paraffin (Gold Cross) 1 mL/mL multi-purpose liquid, 200 mL, bottle 27637 76713011000036104 Liquid Paraffin (Gold Cross) 1 mL/mL multi-purpose liquid, 200 mL 76133011000036102 Liquid Paraffin (Gold Cross) 1 mL/mL multi-purpose liquid 76004011000036102 Liquid Paraffin (Gold Cross) 76004011000036102 Liquid Paraffin (Gold Cross) 78227011000036101 liquid paraffin 1 mL/mL liquid, 200 mL 77555011000036105 liquid paraffin 1 mL/mL liquid 33623011000036103 liquid paraffin +761181000168109 Olmesartan/Amlodipine 20/5 (Chemmart) film-coated tablet, 30, blister pack 218252 761171000168106 Olmesartan/Amlodipine 20/5 (Chemmart) film-coated tablet, 30 761161000168100 Olmesartan/Amlodipine 20/5 (Chemmart) film-coated tablet 761151000168102 Olmesartan/Amlodipine 20/5 (Chemmart) 761151000168102 Olmesartan/Amlodipine 20/5 (Chemmart) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +19920011000036106 Fragmin 7500 anti-Xa units/0.75 mL injection solution, 10 x 0.75 mL syringes 66625 13165011000036108 Fragmin 7500 anti-Xa units/0.75 mL injection solution, 10 x 0.75 mL syringes 6448011000036102 Fragmin 7500 anti-Xa units/0.75 mL injection solution, 0.75 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 27584011000036105 dalteparin sodium 7500 anti-Xa units/0.75 mL injection, 10 x 0.75 mL syringes 22923011000036108 dalteparin sodium 7500 anti-Xa units/0.75 mL injection, syringe 21450011000036103 dalteparin sodium +1095381000168107 Ibuprofen (Genpar) 200 mg film-coated tablet, 20, blister pack 285310 1095371000168109 Ibuprofen (Genpar) 200 mg film-coated tablet, 20 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1101321000168102 Danzem 60 mg film-coated tablet, 90, bottle 184086 1101291000168105 Danzem 60 mg film-coated tablet, 90 1101281000168107 Danzem 60 mg film-coated tablet 1101271000168109 Danzem 1101271000168109 Danzem 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +21118011000036105 Copaxone 20 mg/mL injection solution, 28 x 1 mL syringes 98235 14261011000036107 Copaxone 20 mg/mL injection solution, 28 x 1 mL syringes 7547011000036105 Copaxone 20 mg/mL injection solution, syringe 2936011000036101 Copaxone 2936011000036101 Copaxone 28256011000036105 glatiramer acetate 20 mg/mL injection, 28 x 1 mL syringes 23570011000036104 glatiramer acetate 20 mg/mL injection, syringe 21783011000036106 glatiramer acetate +82396011000036105 Blink Intensive Tears 0.25% eye drops, 15 mL, bottle 158804 82185011000036108 Blink Intensive Tears 0.25% eye drops, 15 mL 82027011000036104 Blink Intensive Tears 0.25% eye drops 15681000168102 Blink Intensive Tears 15681000168102 Blink Intensive Tears 82557011000036103 polyethylene glycol-400 0.25% eye drops, 15 mL 82449011000036104 polyethylene glycol-400 0.25% eye drops 82424011000036103 polyethylene glycol-400 +717501000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 98, blister pack 149417 717491000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 98 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 717011000168109 omeprazole 20 mg enteric capsule, 98 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +666101000168100 Pacliccord 30 mg/5 mL concentrated injection, 5 mL vial 168528 666091000168105 Pacliccord 30 mg/5 mL concentrated injection, 5 mL vial 666081000168107 Pacliccord 30 mg/5 mL concentrated injection, 5 mL vial 666011000168101 Pacliccord 666011000168101 Pacliccord 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +790231000168105 Oxycontin 30 mg modified release tablet, 28, bottle 200028 928247011000036107 Oxycontin 30 mg modified release tablet, 28 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +60964011000036103 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 24, blister pack 62806 56907011000036102 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 24 54117011000036107 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +142241000036106 Xyntha 1000 IU (1 x 1000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174839 141671000036109 Xyntha 1000 IU (1 x 1000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 141471000036107 Xyntha 1000 IU (moroctocog alfa 1000 units) powder for injection, 1000 units syringe 1691000168104 Xyntha 1000 IU 1691000168104 Xyntha 1000 IU 141681000036106 moroctocog alfa 1000 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 141481000036109 moroctocog alfa 1000 units injection, syringe 44868011000036107 moroctocog alfa +142241000036106 Xyntha 1000 IU (1 x 1000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174839 141671000036109 Xyntha 1000 IU (1 x 1000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 1691000168104 Xyntha 1000 IU 83556011000036108 Xyntha 141681000036106 moroctocog alfa 1000 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +790321000168101 Oxycontin 60 mg modified release tablet, 10, bottle 200029 790311000168108 Oxycontin 60 mg modified release tablet, 10 789681000168102 Oxycontin 60 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790301000168105 oxycodone hydrochloride 60 mg modified release tablet, 10 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +674641000168107 Ondansetron (Medis) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 124505 674631000168103 Ondansetron (Medis) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 674601000168105 Ondansetron (Medis) 8 mg/4 mL injection solution, 4 mL ampoule 674591000168103 Ondansetron (Medis) 674591000168103 Ondansetron (Medis) 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +95651000036103 Nevirapine (RBX) 200 mg uncoated tablet, 60, blister pack 195528 94551000036103 Nevirapine (RBX) 200 mg uncoated tablet, 60 93601000036103 Nevirapine (RBX) 200 mg uncoated tablet 93341000036105 Nevirapine (RBX) 93341000036105 Nevirapine (RBX) 27383011000036105 nevirapine 200 mg tablet, 60 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +83197011000036107 Vaxigrip Junior 2010 injection solution, 1 x 0.25 mL syringe 97971 83143011000036106 Vaxigrip Junior 2010 injection solution, 1 x 0.25 mL syringe 83083011000036107 Vaxigrip Junior 2010 injection solution, 0.25 mL syringe 3571000168100 Vaxigrip Junior 2010 3571000168100 Vaxigrip Junior 2010 83213011000036101 influenza trivalent child vaccine 2010 injection, 1 x 0.25 mL syringe 83200011000036106 influenza trivalent child vaccine 2010 injection, 0.25 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +995831000168105 Difflam Lozenge Orange Sugar Free lozenge, 2, blister pack 72151 995821000168107 Difflam Lozenge Orange Sugar Free lozenge, 2 995791000168104 Difflam Lozenge Orange Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995651000168100 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +60745011000036102 Codapane uncoated tablet, 12, blister pack 50763 56703011000036104 Codapane uncoated tablet, 12 54041011000036103 Codapane uncoated tablet 4392011000036108 Codapane 4392011000036108 Codapane 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +68839011000036101 Viodine Povidone-Iodine Concentrated Gargle 7.5% mouthwash, 15 mL, bottle 10827 66565011000036104 Viodine Povidone-Iodine Concentrated Gargle 7.5% mouthwash, 15 mL 65226011000036105 Viodine Povidone-Iodine Concentrated Gargle 7.5% mouthwash 56241000168109 Viodine Povidone-Iodine Concentrated Gargle 56241000168109 Viodine Povidone-Iodine Concentrated Gargle 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +32549011000036103 Tryzan 2.5 mg hard capsule, 30, blister pack 127088 32341011000036104 Tryzan 2.5 mg hard capsule, 30 32218011000036107 Tryzan 2.5 mg hard capsule 3401011000036105 Tryzan 3401011000036105 Tryzan 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +73761000036103 Menopur (1 x 600 units vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 161984 71501000036107 Menopur (1 x 600 units vial, 1 x 1 mL inert diluent syringe), 1 pack 69681000036105 Menopur (human menopausal gonadotrophin 600 units) powder for injection, 600 units vial 69461000036103 Menopur 69461000036103 Menopur 71511000036109 human menopausal gonadotrophin 600 units injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 69691000036107 human menopausal gonadotrophin 600 units injection, vial 74621000036103 human menopausal gonadotrophin +73761000036103 Menopur (1 x 600 units vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 161984 71501000036107 Menopur (1 x 600 units vial, 1 x 1 mL inert diluent syringe), 1 pack 634601000168108 Menopur (inert substance) diluent, 1 mL syringe 69461000036103 Menopur 69461000036103 Menopur 71511000036109 human menopausal gonadotrophin 600 units injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +901911000168106 Amisulpride (SCP) 200 mg uncoated tablet, 30, blister pack 234699 901901000168108 Amisulpride (SCP) 200 mg uncoated tablet, 30 901891000168109 Amisulpride (SCP) 200 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 901561000168104 amisulpride 200 mg tablet, 30 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +927691011000036103 Docetaxel (Ebewe) 80 mg/8 mL concentrated injection, 8 mL vial 153373 927627011000036103 Docetaxel (Ebewe) 80 mg/8 mL concentrated injection, 8 mL vial 927583011000036109 Docetaxel (Ebewe) 80 mg/8 mL concentrated injection, 8 mL vial 927572011000036106 Docetaxel (Ebewe) 927572011000036106 Docetaxel (Ebewe) 927737011000036106 docetaxel 80 mg/8 mL injection, 8 mL vial 927715011000036109 docetaxel 80 mg/8 mL injection, vial 21721011000036101 docetaxel +1066801000168101 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 12, blister pack 197885 1066791000168102 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 12 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +79676011000036102 Loxalate 20 mg film-coated tablet, 30, bottle 119968 79461011000036104 Loxalate 20 mg film-coated tablet, 30 79365011000036106 Loxalate 20 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +893321000168108 Olmertan 20 mg film-coated tablet, 30, blister pack 221051 893311000168101 Olmertan 20 mg film-coated tablet, 30 893301000168104 Olmertan 20 mg film-coated tablet 893291000168100 Olmertan 893291000168100 Olmertan 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +60722011000036108 Disprin Extra Strength 500 mg dispersible tablet, 16, strip pack 46374 56680011000036101 Disprin Extra Strength 500 mg dispersible tablet, 16 54031011000036104 Disprin Extra Strength 500 mg dispersible tablet 19401000168105 Disprin Extra Strength 19401000168105 Disprin Extra Strength 83691000036107 aspirin 500 mg dispersible tablet, 16 83621000036109 aspirin 500 mg dispersible tablet 21719011000036107 aspirin +949011000168103 Risperidone (WT) 500 microgram film-coated tablet, 15, bottle 127893 949001000168101 Risperidone (WT) 500 microgram film-coated tablet, 15 948991000168101 Risperidone (WT) 500 microgram film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 51483011000036109 risperidone 500 microgram tablet, 15 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +822381000168109 Glybosay 50 mg tablet, 90, blister pack 226792 822371000168106 Glybosay 50 mg tablet, 90 822361000168100 Glybosay 50 mg tablet 822321000168105 Glybosay 822321000168105 Glybosay 27110011000036106 acarbose 50 mg tablet, 90 22478011000036100 acarbose 50 mg tablet 21888011000036104 acarbose +921831011000036103 Cartia 100 mg enteric tablet, 168, blister pack 192506 921399011000036105 Cartia 100 mg enteric tablet, 168 4900011000036104 Cartia 100 mg enteric tablet 3338011000036100 Cartia 3338011000036100 Cartia 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +921831011000036103 Cartia 100 mg enteric tablet, 168, blister pack 12976 921399011000036105 Cartia 100 mg enteric tablet, 168 4900011000036104 Cartia 100 mg enteric tablet 3338011000036100 Cartia 3338011000036100 Cartia 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +747411000168108 Junomorph 10 mg/mL injection solution, 10 x 1 mL ampoules 224253 747401000168105 Junomorph 10 mg/mL injection solution, 10 x 1 mL ampoules 747371000168107 Junomorph 10 mg/mL injection solution, ampoule 747261000168105 Junomorph 747261000168105 Junomorph 707041000168106 morphine hydrochloride trihydrate 10 mg/mL injection, 10 x 1 mL ampoules 706991000168102 morphine hydrochloride trihydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +940421000168106 Humira 40 mg/0.8 mL injection solution, 4 x 0.8 mL injection devices 199410 940411000168104 Humira 40 mg/0.8 mL injection solution, 4 x 0.8 mL injection devices 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 940401000168102 adalimumab 40 mg/0.8 mL injection, 4 x 0.8 mL injection devices 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 21584011000036107 adalimumab +69387011000036103 Panadol Sinus Relief uncoated tablet, 4, blister pack 35521 67187011000036104 Panadol Sinus Relief uncoated tablet, 4 65222011000036106 Panadol Sinus Relief uncoated tablet 11591000168101 Panadol Sinus Relief 11591000168101 Panadol Sinus Relief 63643011000036108 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +816211000168104 Adin 200 microgram uncoated tablet, 30, bottle 99863 816201000168102 Adin 200 microgram uncoated tablet, 30 816191000168100 Adin 200 microgram uncoated tablet 816101000168106 Adin 816101000168106 Adin 28125011000036101 desmopressin acetate 200 microgram tablet, 30 23434011000036103 desmopressin acetate 200 microgram tablet 21750011000036107 desmopressin +926937011000036103 Multihance 7.935 g/15 mL injection solution, 10 x 15 mL vials 94309 926331011000036103 Multihance 7.935 g/15 mL injection solution, 10 x 15 mL vials 925767011000036104 Multihance 7.935 g/15 mL injection solution, 15 mL vial 19451000168109 Multihance 19451000168109 Multihance 927407011000036106 gadobenate dimeglumine 7.935 g/15 mL injection, 10 x 15 mL vials 927046011000036109 gadobenate dimeglumine 7.935 g/15 mL injection, vial 926973011000036109 gadobenic acid +59996011000036107 Nizaction 150 mg soft capsule, 14, blister pack 122537 55958011000036106 Nizaction 150 mg soft capsule, 14 53738011000036109 Nizaction 150 mg soft capsule 53530011000036106 Nizaction 53530011000036106 Nizaction 63177011000036101 nizatidine 150 mg capsule, 14 23518011000036109 nizatidine 150 mg capsule 21421011000036109 nizatidine +60480011000036108 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 5 sachets 150168 56438011000036109 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 5 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63358011000036107 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 5 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +135931000036104 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet, 30, blister pack 201661 135291000036106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet, 30 134401000036100 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet 29471000168106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) 29471000168106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +135931000036104 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet, 30, blister pack 210566 135291000036106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet, 30 134401000036100 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet 29471000168106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) 29471000168106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +43680011000036100 Carvedilol (GenRx) 12.5 mg film-coated tablet, 60, bottle 123839 11749011000036100 Carvedilol (GenRx) 12.5 mg film-coated tablet, 60 5177011000036100 Carvedilol (GenRx) 12.5 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +790631000168107 Inpler 50 mg film-coated tablet, 60, blister pack 231453 790621000168109 Inpler 50 mg film-coated tablet, 60 790551000168102 Inpler 50 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 790611000168102 eplerenone 50 mg tablet, 60 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +933216091000036109 Pedialyte orange powder for oral liquid, 12 x 6.04 g sachets 70667 933205691000036109 Pedialyte orange powder for oral liquid, 12 x 6.04 g sachets 933196721000036107 Pedialyte orange powder for oral liquid, 6.04 g sachet 920912011000036104 Pedialyte 920912011000036104 Pedialyte 933205701000036109 sodium chloride 410 mg + potassium citrate monohydrate 430 mg (potassium 4 mmol) + glucose 4.55 g + sodium citrate dihydrate 430 mg + citric acid 120 mg powder for oral liquid, 12 x 6.04 g sachets 933196731000036109 sodium chloride 410 mg + potassium citrate monohydrate 430 mg (potassium 4 mmol) + glucose 4.55 g + sodium citrate dihydrate 430 mg + citric acid 120 mg powder for oral liquid, 6.04 g sachet 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +1077621000168104 Atomoxetine (AN) 10 mg hard capsule, 28, blister pack 234797 1077611000168106 Atomoxetine (AN) 10 mg hard capsule, 28 1077561000168108 Atomoxetine (AN) 10 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +73253011000036105 Cialis 5 mg film-coated tablet, 7, blister pack 128496 73053011000036104 Cialis 5 mg film-coated tablet, 7 72959011000036103 Cialis 5 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 73458011000036104 tadalafil 5 mg tablet, 7 73365011000036108 tadalafil 5 mg tablet 21725011000036104 tadalafil +18739011000036107 Nilstat 500 000 units hard capsule, 50, blister pack 15174 12080011000036102 Nilstat 500 000 units hard capsule, 50 5258011000036103 Nilstat 500 000 units hard capsule 32391000168106 Nilstat 32391000168106 Nilstat 26902011000036109 nystatin 500 000 units capsule, 50 22280011000036109 nystatin 500 000 units capsule 21669011000036102 nystatin +824841000168101 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials 147336 824831000168105 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials 824811000168100 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 52621000168102 Havrix Junior 52621000168102 Havrix Junior 824821000168107 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 10 x 0.5 mL vials 824801000168103 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, vial 824641000168102 hepatitis A vaccine +69145011000036108 Strepsils lemon sugar free lozenge, 16, blister pack 153118 66945011000036101 Strepsils lemon sugar free lozenge, 16 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +931546011000036107 Ostran 8 mg film-coated tablet, 4, blister pack 163433 930707011000036105 Ostran 8 mg film-coated tablet, 4 930023011000036106 Ostran 8 mg film-coated tablet 29491000168107 Ostran 29491000168107 Ostran 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +20001011000036100 Comtan 200 mg film-coated tablet, 100, bottle 68463 13238011000036105 Comtan 200 mg film-coated tablet, 100 6520011000036106 Comtan 200 mg film-coated tablet 3227011000036107 Comtan 3227011000036107 Comtan 27640011000036101 entacapone 200 mg tablet, 100 22977011000036103 entacapone 200 mg tablet 21902011000036107 entacapone +1034371000168101 Atomoxetine (GXP) 80 mg hard capsule, 56, blister pack 234855 1034361000168107 Atomoxetine (GXP) 80 mg hard capsule, 56 1034291000168105 Atomoxetine (GXP) 80 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830611000168108 atomoxetine 80 mg capsule, 56 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +700261000168104 Adempas 500 microgram film-coated tablet, 42, blister pack 207595 700251000168101 Adempas 500 microgram film-coated tablet, 42 700231000168107 Adempas 500 microgram film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700241000168103 riociguat 500 microgram tablet, 42 700221000168109 riociguat 500 microgram tablet 700211000168102 riociguat +950841000168100 Fiasp Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 275393 950831000168109 Fiasp Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 950821000168106 Fiasp Penfill 100 units/mL injection solution, 3 mL cartridge 950811000168104 Fiasp Penfill 950811000168104 Fiasp Penfill 27822011000036108 insulin aspart 100 units/mL injection, 5 x 3 mL cartridges 23150011000036105 insulin aspart 100 units/mL injection, cartridge 21699011000036100 insulin aspart +95591000036106 Panadol Optizorb 500 mg film-coated tablet, 12, blister pack 186245 94481000036109 Panadol Optizorb 500 mg film-coated tablet, 12 93671000036107 Panadol Optizorb 500 mg film-coated tablet 18201000168104 Panadol Optizorb 18201000168104 Panadol Optizorb 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +82880011000036109 Simvastatin (Apo) 80 mg film-coated tablet, 30, bottle 157734 73123011000036107 Simvastatin (Apo) 80 mg film-coated tablet, 30 72932011000036107 Simvastatin (Apo) 80 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +82880011000036109 Simvastatin (Apo) 80 mg film-coated tablet, 30, bottle 223455 73123011000036107 Simvastatin (Apo) 80 mg film-coated tablet, 30 72932011000036107 Simvastatin (Apo) 80 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +43806011000036106 Fentanyl (DBL) 100 microgram/2 mL injection solution, 5 x 2 mL ampoules 107025 41149011000036108 Fentanyl (DBL) 100 microgram/2 mL injection solution, 5 x 2 mL ampoules 39785011000036101 Fentanyl (DBL) 100 microgram/2 mL injection solution, 2 mL ampoule 39741011000036105 Fentanyl (DBL) 39741011000036105 Fentanyl (DBL) 46121011000036108 fentanyl 100 microgram/2 mL injection, 5 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +743481000168105 Jardiamet 5 mg/500 mg film-coated tablet, 60, blister pack 229815 743471000168107 Jardiamet 5 mg/500 mg film-coated tablet, 60 743421000168106 Jardiamet 5 mg/500 mg film-coated tablet 743401000168102 Jardiamet 5 mg/500 mg 743401000168102 Jardiamet 5 mg/500 mg 743461000168101 empagliflozin 5 mg + metformin hydrochloride 500 mg tablet, 60 743411000168104 empagliflozin 5 mg + metformin hydrochloride 500 mg tablet 743221000168107 empagliflozin + metformin +1025781000168102 Neuroccord 300 mg hard capsule, 56, bottle 235861 1025771000168100 Neuroccord 300 mg hard capsule, 56 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +649101000168103 Lorastyne (Pharmacy Action) 10 mg uncoated tablet, 30, blister pack 191959 649091000168108 Lorastyne (Pharmacy Action) 10 mg uncoated tablet, 30 649061000168101 Lorastyne (Pharmacy Action) 10 mg uncoated tablet 649051000168103 Lorastyne (Pharmacy Action) 649051000168103 Lorastyne (Pharmacy Action) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +1101001000168109 Azonaire 50 microgram/actuation nasal spray, 140 actuations, pump pack 201569 1100991000168108 Azonaire 50 microgram/actuation nasal spray, 140 actuations 1100961000168101 Azonaire 50 microgram/actuation nasal spray, actuation 1100951000168103 Azonaire 1100951000168103 Azonaire 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +893281000168103 Cefepime (Kabi) 2 g powder for injection, 50 vials 227965 893271000168101 Cefepime (Kabi) 2 g powder for injection, 50 vials 893201000168106 Cefepime (Kabi) 2 g powder for injection, 2 g vial 893101000168102 Cefepime (Kabi) 893101000168102 Cefepime (Kabi) 893261000168107 cefepime 2 g injection, 50 vials 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +905841000168104 Arianna-1 1 mg film-coated tablet, 30, blister pack 259991 905831000168108 Arianna-1 1 mg film-coated tablet, 30 905821000168105 Arianna-1 1 mg film-coated tablet 905811000168103 Arianna-1 905811000168103 Arianna-1 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +81186011000036102 Robitussin Chesty Cough 200 mg soft capsule, 80, blister pack 74414 80688011000036105 Robitussin Chesty Cough 200 mg soft capsule, 80 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81743011000036109 guaifenesin 200 mg capsule, 80 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +55071000036105 Elaprase 6 mg/3 mL concentrated injection, 3 mL vial 129481 50891000036109 Elaprase 6 mg/3 mL concentrated injection, 3 mL vial 49621000036103 Elaprase 6 mg/3 mL concentrated injection, 3 mL vial 48301000036109 Elaprase 48301000036109 Elaprase 50901000036105 idursulfase 6 mg/3 mL injection, 3 mL vial 49631000036101 idursulfase 6 mg/3 mL injection, vial 56801000036104 idursulfase +1030471000168102 Atomoxetine (Genpar) 10 mg hard capsule, 7, blister pack 234846 1030461000168108 Atomoxetine (Genpar) 10 mg hard capsule, 7 1030451000168106 Atomoxetine (Genpar) 10 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1032641000168105 Anti Diarrhoea (Amcal) 2 mg hard capsule, 8, blister pack 205128 1032631000168101 Anti Diarrhoea (Amcal) 2 mg hard capsule, 8 1032581000168104 Anti Diarrhoea (Amcal) 2 mg hard capsule 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 933206161000036104 loperamide hydrochloride 2 mg capsule, 8 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +1000331000168102 Rivaroxaban (Apo) 20 mg film-coated tablet, 28, bottle 269608 999921000168102 Rivaroxaban (Apo) 20 mg film-coated tablet, 28 999911000168109 Rivaroxaban (Apo) 20 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 80481000036103 rivaroxaban 20 mg tablet, 28 78911000036106 rivaroxaban 20 mg tablet 79098011000036103 rivaroxaban +44140011000036109 Etoposide (Pfizer (Perth)) 1 g/50 mL concentrated injection, 50 mL vial 52986 41616011000036108 Etoposide (Pfizer (Perth)) 1 g/50 mL concentrated injection, 50 mL vial 40104011000036106 Etoposide (Pfizer (Perth)) 1 g/50 mL concentrated injection, 50 mL vial 35872011000036109 Etoposide (Pfizer (Perth)) 35872011000036109 Etoposide (Pfizer (Perth)) 46954011000036105 etoposide 1 g/50 mL injection, 50 mL vial 45356011000036108 etoposide 1 g/50 mL injection, vial 21469011000036104 etoposide +1060301000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 60, blister pack 234539 1060291000168109 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 60 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911611000168104 rosuvastatin 20 mg tablet, 60 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +948931000168100 Diltiazem CD (Sanofi) 360 mg modified release capsule, 30, bottle 139401 948921000168103 Diltiazem CD (Sanofi) 360 mg modified release capsule, 30 948841000168100 Diltiazem CD (Sanofi) 360 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +700491000168105 Adempas 1 mg film-coated tablet, 84, blister pack 207599 700481000168107 Adempas 1 mg film-coated tablet, 84 700431000168106 Adempas 1 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700471000168109 riociguat 1 mg tablet, 84 700421000168108 riociguat 1 mg tablet 700211000168102 riociguat +901751000168109 Belsomra 20 mg film-coated tablet, 3, blister pack 207712 901741000168107 Belsomra 20 mg film-coated tablet, 3 901721000168101 Belsomra 20 mg film-coated tablet 901051000168106 Belsomra 901051000168106 Belsomra 901731000168103 suvorexant 20 mg tablet, 3 901711000168108 suvorexant 20 mg tablet 901171000168101 suvorexant +104101000036103 Oxaliplatin (SZ) 100 mg/20 mL concentrated injection, 20 mL vial 169424 101301000036104 Oxaliplatin (SZ) 100 mg/20 mL concentrated injection, 20 mL vial 98611000036106 Oxaliplatin (SZ) 100 mg/20 mL concentrated injection, 20 mL vial 98091000036106 Oxaliplatin (SZ) 98091000036106 Oxaliplatin (SZ) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +929070011000036104 Pioglitazone (Generic Health) 30 mg uncoated tablet, 28, blister pack 164423 928431011000036101 Pioglitazone (Generic Health) 30 mg uncoated tablet, 28 927975011000036106 Pioglitazone (Generic Health) 30 mg uncoated tablet 927792011000036102 Pioglitazone (Generic Health) 927792011000036102 Pioglitazone (Generic Health) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +906091000168105 Farydak 10 mg hard capsule, 12, blister pack 229941 906081000168107 Farydak 10 mg hard capsule, 12 906031000168106 Farydak 10 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 906071000168109 panobinostat 10 mg capsule, 12 906021000168108 panobinostat 10 mg capsule 905421000168108 panobinostat +60889011000036108 Dimetapp Cold and Allergy Extra Strength Drops Colour Free oral liquid solution, 50 mL, bottle 59769 56843011000036106 Dimetapp Cold and Allergy Extra Strength Drops Colour Free oral liquid solution, 50 mL 54097011000036101 Dimetapp Cold and Allergy Extra Strength Drops Colour Free oral liquid solution 53841000168103 Dimetapp Cold and Allergy Extra Strength Drops 53841000168103 Dimetapp Cold and Allergy Extra Strength Drops 63605011000036102 brompheniramine maleate 800 microgram/mL + phenylephrine hydrochloride 1 mg/mL oral liquid, 50 mL 62026011000036100 brompheniramine maleate 800 microgram/mL + phenylephrine hydrochloride 1 mg/mL oral liquid 61726011000036103 brompheniramine + phenylephrine +848201000168108 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack, composite pack 222679 848191000168105 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack 172301000036102 Alendronate Plus D3 70 mg/140 microgram (DRLA) uncoated tablet 691591000168109 Reddymax Plus D-Cal 39451000168100 Alendronate Plus D3 70 mg/140 microgram (DRLA) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +848201000168108 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack, composite pack 222679 848191000168105 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack 848121000168108 Reddycal 1.25 g (calcium 500 mg) film-coated tablet 691591000168109 Reddymax Plus D-Cal 691531000168105 Reddycal 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +112131000036101 Octagam 10% 20 g/200 mL injection solution, 200 mL bottle 155604 112031000036100 Octagam 10% 20 g/200 mL injection solution, 200 mL bottle 111871000036101 Octagam 10% 20 g/200 mL injection solution, 200 mL bottle 17661000168101 Octagam 10% 17661000168101 Octagam 10% 112041000036105 normal immunoglobulin 20 g/200 mL injection, 200 mL bottle 111881000036104 normal immunoglobulin 20 g/200 mL injection, bottle 74965011000036103 normal immunoglobulin +43898011000036107 Neupro 8 mg/24 hours patch, 28, sachet 131383 41390011000036101 Neupro 8 mg/24 hours patch, 28 39865011000036101 Neupro 8 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46287011000036109 rotigotine 8 mg/24 hours patch, 28 45054011000036101 rotigotine 8 mg/24 hours patch 44880011000036107 rotigotine +666181000168108 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 10, blister pack 196561 666171000168105 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 10 137741000036101 Rabeprazole Sodium (DRLA) 10 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 666161000168104 rabeprazole sodium 10 mg enteric tablet, 10 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1038871000168102 Atorvastatin (Actavis) 20 mg film-coated tablet, 10, blister pack 185036 1038861000168108 Atorvastatin (Actavis) 20 mg film-coated tablet, 10 1038851000168106 Atorvastatin (Actavis) 20 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1083881000168102 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 500 mL, bottle 38572 1083871000168100 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 500 mL 1083781000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 26602011000036105 benzydamine hydrochloride 0.15% mouthwash, 500 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +968201000168107 Disodium Pamidronate (Hexal) 15 mg/5 mL concentrated injection, 5 mL vial 101283 968191000168109 Disodium Pamidronate (Hexal) 15 mg/5 mL concentrated injection, 5 mL vial 968181000168106 Disodium Pamidronate (Hexal) 15 mg/5 mL concentrated injection, 5 mL vial 968111000168100 Disodium Pamidronate (Hexal) 968111000168100 Disodium Pamidronate (Hexal) 27765011000036107 pamidronate disodium 15 mg/5 mL injection, 5 mL vial 23096011000036106 pamidronate disodium 15 mg/5 mL injection, vial 21339011000036101 pamidronate disodium +696151000168104 MD-Gastroview solution, 120 mL, bottle 696141000168101 MD-Gastroview solution, 120 mL 696061000168101 MD-Gastroview solution 920923011000036102 MD-Gastroview 920923011000036102 MD-Gastroview 696131000168105 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 120 mL 696051000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution 77441011000036100 amidotrizoic acid +61206011000036104 Strong Pain (Pharmacist) uncoated tablet, 48, blister pack 75646 57142011000036105 Strong Pain (Pharmacist) uncoated tablet, 48 54216011000036106 Strong Pain (Pharmacist) uncoated tablet 53175011000036105 Strong Pain (Pharmacist) 53175011000036105 Strong Pain (Pharmacist) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +891061000168104 Candesartan HCTZ 32/25 (GXP) uncoated tablet, 30, bottle 253593 891051000168101 Candesartan HCTZ 32/25 (GXP) uncoated tablet, 30 891041000168103 Candesartan HCTZ 32/25 (GXP) uncoated tablet 891031000168107 Candesartan HCTZ 32/25 (GXP) 891031000168107 Candesartan HCTZ 32/25 (GXP) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +998161000168100 Desloratadine (Apo) 5 mg film-coated tablet, 10, blister pack 202823 998151000168102 Desloratadine (Apo) 5 mg film-coated tablet, 10 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72018011000036108 desloratadine 5 mg tablet, 10 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +687611000168105 Dymista 125/50 nasal spray, 120 actuations, pump pack 203131 687601000168107 Dymista 125/50 nasal spray, 120 actuations 687581000168103 Dymista 125/50 nasal spray, actuation 687551000168105 Dymista 125/50 687551000168105 Dymista 125/50 687591000168100 azelastine 125 microgram/actuation + fluticasone propionate 50 microgram/actuation nasal spray, 120 actuations 687571000168101 azelastine 125 microgram/actuation + fluticasone propionate 50 microgram/actuation nasal spray, actuation 861271000168103 azelastine + fluticasone propionate +976741000168106 Elevit film-coated tablet, 30, blister pack 213113 976731000168102 Elevit film-coated tablet, 30 976681000168106 Elevit film-coated tablet 61571000168101 Elevit 61571000168101 Elevit 976721000168100 folic acid 800 microgram + iron 60 mg + iodine 220 microgram + thiamine 1.4 mg + riboflavin 1.4 mg + nicotinamide 18 mg + pantothenic acid 6 mg + pyridoxine 1.9 mg + cyanocobalamin 2.6 microgram + ascorbic acid 85 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopherol 18.7 mg + biotin 30 microgram + calcium 125 mg + magnesium 100 mg + copper 1 mg + manganese 1.9 mg + zinc 11 mg + selenium 50 microgram tablet, 30 976671000168108 folic acid 800 microgram + iron 60 mg + iodine 220 microgram + thiamine 1.4 mg + riboflavin 1.4 mg + nicotinamide 18 mg + pantothenic acid 6 mg + pyridoxine 1.9 mg + cyanocobalamin 2.6 microgram + ascorbic acid 85 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopherol 18.7 mg + biotin 30 microgram + calcium 125 mg + magnesium 100 mg + copper 1 mg + manganese 1.9 mg + zinc 11 mg + selenium 50 microgram tablet 976661000168102 folic acid + iron + iodine + thiamine + riboflavin + nicotinamide + pantothenic acid + pyridoxine + cyanocobalamin + ascorbic acid + colecalciferol + dl-alpha-tocopherol + biotin + calcium + magnesium + copper + manganese + zinc + selenium +68914011000036104 Rikoderm bath oil, 1 L, bottle 10588 66512011000036106 Rikoderm bath oil, 1 L 65318011000036105 Rikoderm bath oil 65134011000036102 Rikoderm 65134011000036102 Rikoderm 71244011000036104 light liquid paraffin 91.7% + wool fat 3% bath oil, 1 L 69916011000036109 light liquid paraffin 91.7% + wool fat 3% bath oil 69787011000036102 light liquid paraffin + wool fat +933216001000036101 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application, 50 mL, bottle 56433 933205381000036104 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application, 50 mL 933196571000036102 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application 7061000168108 Tea Tree Oil Antiseptic (Coraki) 7061000168108 Tea Tree Oil Antiseptic (Coraki) 933205391000036102 melaleuca oil 1 mL/mL application, 50 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +87731011000036109 Risperidone (DRLA) 1 mg film-coated tablet, 60, blister pack 165515 87497011000036104 Risperidone (DRLA) 1 mg film-coated tablet, 60 87341011000036109 Risperidone (DRLA) 1 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +831101000168107 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 65862 831091000168102 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831081000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831101000168107 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 97843 831091000168102 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831081000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831101000168107 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 65862 831091000168102 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 636301000168107 Priorix (inert substance) diluent, 0.5 mL ampoule 73748011000036105 Priorix 73748011000036105 Priorix 831081000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +831101000168107 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 97843 831091000168102 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 636301000168107 Priorix (inert substance) diluent, 0.5 mL ampoule 73748011000036105 Priorix 73748011000036105 Priorix 831081000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +104181000036109 Irbesartan (Terry White Chemists) 300 mg tablet, 30, blister pack 216061 101361000036100 Irbesartan (Terry White Chemists) 300 mg tablet, 30 98661000036108 Irbesartan (Terry White Chemists) 300 mg tablet 97711000036100 Irbesartan (Terry White Chemists) 97711000036100 Irbesartan (Terry White Chemists) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +104181000036109 Irbesartan (Terry White Chemists) 300 mg tablet, 30, blister pack 169794 101361000036100 Irbesartan (Terry White Chemists) 300 mg tablet, 30 98661000036108 Irbesartan (Terry White Chemists) 300 mg tablet 97711000036100 Irbesartan (Terry White Chemists) 97711000036100 Irbesartan (Terry White Chemists) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +709001000168103 Oxycodone (Aspen) 5 mg uncoated tablet, 20, blister pack 224758 708991000168103 Oxycodone (Aspen) 5 mg uncoated tablet, 20 708981000168101 Oxycodone (Aspen) 5 mg uncoated tablet 708971000168104 Oxycodone (Aspen) 708971000168104 Oxycodone (Aspen) 26891011000036109 oxycodone hydrochloride 5 mg tablet, 20 22269011000036101 oxycodone hydrochloride 5 mg tablet 21259011000036105 oxycodone +1017421000168106 Aripiprazole (ZP) 10 mg uncoated tablet, 100, bottle 217215 1017411000168104 Aripiprazole (ZP) 10 mg uncoated tablet, 100 1015661000168109 Aripiprazole (ZP) 10 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +61690011000036103 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 48, blister pack 98576 57611011000036105 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 48 54363011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet 1721000168108 Ibuprofen Blue (Herron) 1721000168108 Ibuprofen Blue (Herron) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +18773011000036106 Pravastatin Sodium (Pharmacor) 20 mg uncoated tablet, 30, blister pack 130602 11896011000036103 Pravastatin Sodium (Pharmacor) 20 mg uncoated tablet, 30 5165011000036101 Pravastatin Sodium (Pharmacor) 20 mg uncoated tablet 3446011000036107 Pravastatin Sodium (Pharmacor) 3446011000036107 Pravastatin Sodium (Pharmacor) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +944591000168101 Oncovin (1 x 1 mg vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 14652 944581000168104 Oncovin (1 x 1 mg vial, 1 x 10 mL inert diluent vial), 1 pack 944551000168106 Oncovin (vincristine sulfate 1 mg) powder for injection, vial 944211000168108 Oncovin 944211000168108 Oncovin 944571000168102 vincristine sulfate 1 mg injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 944541000168109 vincristine sulfate 1 mg injection, vial 21749011000036104 vincristine +944591000168101 Oncovin (1 x 1 mg vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 14652 944581000168104 Oncovin (1 x 1 mg vial, 1 x 10 mL inert diluent vial), 1 pack 944561000168108 Oncovin (inert substance) diluent, 10 mL vial 944211000168108 Oncovin 944211000168108 Oncovin 944571000168102 vincristine sulfate 1 mg injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +61448011000036106 Imflac 25 mg enteric tablet, 3, blister pack 90103 57373011000036108 Imflac 25 mg enteric tablet, 3 54287011000036107 Imflac 25 mg enteric tablet 14421000168100 Imflac 14421000168100 Imflac 63836011000036109 diclofenac sodium 25 mg enteric tablet, 3 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +893191000168108 Cefepime (Kabi) 1 g powder for injection, 50 vials 227966 893181000168105 Cefepime (Kabi) 1 g powder for injection, 50 vials 893111000168104 Cefepime (Kabi) 1 g powder for injection, vial 893101000168102 Cefepime (Kabi) 893101000168102 Cefepime (Kabi) 893171000168107 cefepime 1 g injection, 50 vials 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +1043121000168100 Pryzex ODT 10 mg orally disintegrating tablet, 50, blister pack 179076 1043111000168107 Pryzex ODT 10 mg orally disintegrating tablet, 50 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043101000168109 olanzapine 10 mg orally disintegrating tablet, 50 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +953131000168109 Gabapentin (AN) 300 mg hard capsule, 50, blister pack 263841 953121000168106 Gabapentin (AN) 300 mg hard capsule, 50 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953111000168104 gabapentin 300 mg capsule, 50 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +926697011000036105 Lisoril 2.5 mg uncoated tablet, 30, blister pack 106491 926067011000036104 Lisoril 2.5 mg uncoated tablet, 30 925631011000036109 Lisoril 2.5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 927301011000036106 lisinopril 2.5 mg tablet, 30 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +721771000168100 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL, bottle 15506 721761000168106 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL 721731000168103 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 5 mL 4791000168108 Panadol Children's Elixir 5 to 12 Years 4791000168108 Panadol Children's Elixir 5 to 12 Years 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +1032521000168103 Atomoxetine (GXP) 100 mg hard capsule, 56, blister pack 234825 1032511000168105 Atomoxetine (GXP) 100 mg hard capsule, 56 1032431000168104 Atomoxetine (GXP) 100 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830171000168108 atomoxetine 100 mg capsule, 56 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +923887011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet, 14, blister pack 163771 923431011000036102 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet, 14 923080011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 924197011000036103 lercanidipine hydrochloride 20 mg tablet, 14 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +893161000168101 Cefepime (Kabi) 1 g powder for injection, 10 vials 227966 893151000168103 Cefepime (Kabi) 1 g powder for injection, 10 vials 893111000168104 Cefepime (Kabi) 1 g powder for injection, vial 893101000168102 Cefepime (Kabi) 893101000168102 Cefepime (Kabi) 893141000168100 cefepime 1 g injection, 10 vials 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +1118041000168101 Quetiapine XR (Amneal) 150 mg modified release tablet, 60, blister pack 278865 1118021000168107 Quetiapine XR (Amneal) 150 mg modified release tablet, 60 1118011000168100 Quetiapine XR (Amneal) 150 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +31371000036108 Loxip 500 mg film-coated tablet, 14, blister pack 175444 28591000036105 Loxip 500 mg film-coated tablet, 14 27201000036104 Loxip 500 mg film-coated tablet 26181000036100 Loxip 26181000036100 Loxip 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +37377011000036108 Metopirone 250 mg soft capsule, 50, bottle 11043 36647011000036103 Metopirone 250 mg soft capsule, 50 36183011000036104 Metopirone 250 mg soft capsule 35885011000036108 Metopirone 35885011000036108 Metopirone 38565011000036102 metyrapone 250 mg capsule, 50 37841011000036103 metyrapone 250 mg capsule 37785011000036109 metyrapone +929704011000036101 MS Contin 5 mg modified release tablet, 28, blister pack 51760 929540011000036101 MS Contin 5 mg modified release tablet, 28 4460011000036102 MS Contin 5 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929761011000036103 morphine sulfate pentahydrate 5 mg modified release tablet, 28 22621011000036108 morphine sulfate pentahydrate 5 mg modified release tablet 21252011000036100 morphine +983181000168103 Cetirizine (AN) 10 mg film-coated tablet, 100, blister pack 126249 983171000168101 Cetirizine (AN) 10 mg film-coated tablet, 100 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63283011000036102 cetirizine hydrochloride 10 mg tablet, 100 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +858961000168103 Amidep 10 mg film-coated tablet, 100, bottle 215379 858941000168102 Amidep 10 mg film-coated tablet, 100 858891000168103 Amidep 10 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +18647011000036105 Ciprofloxacin (Pharmacor) 500 mg film-coated tablet, 14, blister pack 132826 11940011000036103 Ciprofloxacin (Pharmacor) 500 mg film-coated tablet, 14 5565011000036109 Ciprofloxacin (Pharmacor) 500 mg film-coated tablet 4399011000036103 Ciprofloxacin (Pharmacor) 4399011000036103 Ciprofloxacin (Pharmacor) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +884531000168104 Bosentan (Sun) 125 mg film-coated tablet, 56, bottle 257759 884491000168104 Bosentan (Sun) 125 mg film-coated tablet, 56 884481000168102 Bosentan (Sun) 125 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +721931000168101 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL, bottle 178303 721921000168104 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL 721511000168102 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 63509011000036106 paracetamol 240 mg/5 mL oral liquid, 20 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +721931000168101 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL, bottle 48143 721921000168104 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL 721511000168102 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 63509011000036106 paracetamol 240 mg/5 mL oral liquid, 20 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +764631000168104 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet, 20, blister pack 214504 764621000168102 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet, 20 764611000168109 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +95511000036101 Tykerb 250 mg film-coated tablet, 70, bottle 185997 35587011000036104 Tykerb 250 mg film-coated tablet, 70 35490011000036106 Tykerb 250 mg film-coated tablet 35432011000036103 Tykerb 35432011000036103 Tykerb 35778011000036109 lapatinib 250 mg tablet, 70 35717011000036103 lapatinib 250 mg tablet 35691011000036102 lapatinib +1034491000168109 Atomoxetine (Actavis) 10 mg hard capsule, 7, blister pack 237236 1034481000168106 Atomoxetine (Actavis) 10 mg hard capsule, 7 1034471000168108 Atomoxetine (Actavis) 10 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +44267011000036101 Estrofem 2 mg film-coated tablet, 28, dial dispenser pack 61910 41738011000036106 Estrofem 2 mg film-coated tablet, 28 40175011000036102 Estrofem 2 mg film-coated tablet 39584011000036101 Estrofem 39584011000036101 Estrofem 46545011000036100 estradiol 2 mg tablet, 28 23115011000036108 estradiol 2 mg tablet 21238011000036103 estradiol +44267011000036101 Estrofem 2 mg film-coated tablet, 28, dial dispenser pack 188521 41738011000036106 Estrofem 2 mg film-coated tablet, 28 40175011000036102 Estrofem 2 mg film-coated tablet 39584011000036101 Estrofem 39584011000036101 Estrofem 46545011000036100 estradiol 2 mg tablet, 28 23115011000036108 estradiol 2 mg tablet 21238011000036103 estradiol +17754011000036101 Transiderm-Nitro-50 10 mg/24 hours patch, 30, sachet 17105 12116011000036108 Transiderm-Nitro-50 10 mg/24 hours patch, 30 5737011000036108 Transiderm-Nitro-50 10 mg/24 hours patch 54831000168105 Transiderm-Nitro-50 54831000168105 Transiderm-Nitro-50 27268011000036106 glyceryl trinitrate 10 mg/24 hours patch, 30 22624011000036106 glyceryl trinitrate 10 mg/24 hours patch 21388011000036102 glyceryl trinitrate +970391000168100 Lypralin 25 mg hard capsule, 30, bottle 235870 970381000168103 Lypralin 25 mg hard capsule, 30 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970371000168101 pregabalin 25 mg capsule, 30 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1032481000168103 Atomoxetine (GXP) 100 mg hard capsule, 14, blister pack 234825 1032471000168101 Atomoxetine (GXP) 100 mg hard capsule, 14 1032431000168104 Atomoxetine (GXP) 100 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830121000168107 atomoxetine 100 mg capsule, 14 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +931631011000036109 Aranesp with Automatic Needle Guard 100 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 166087 930791011000036104 Aranesp with Automatic Needle Guard 100 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 930046011000036103 Aranesp with Automatic Needle Guard 100 microgram/0.5 mL injection solution, 0.5 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27859011000036102 darbepoetin alfa 100 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23187011000036100 darbepoetin alfa 100 microgram/0.5 mL injection, syringe 21234011000036105 darbepoetin alfa +20842011000036101 Peg-Intron Redipen Injector (1 x 100 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92007 14005011000036101 Peg-Intron Redipen Injector (1 x 100 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 7295011000036100 Peg-Intron Redipen Injector (peginterferon alfa-2b 100 microgram) powder for injection, 100 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28068011000036106 peginterferon alfa-2b 100 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 23390011000036109 peginterferon alfa-2b 100 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20842011000036101 Peg-Intron Redipen Injector (1 x 100 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92007 14005011000036101 Peg-Intron Redipen Injector (1 x 100 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28068011000036106 peginterferon alfa-2b 100 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +1060221000168107 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 30, blister pack 234539 1058731000168108 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 30 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +925300011000036100 Exforge 10/320 film-coated tablet, 14, blister pack 161824 924837011000036101 Exforge 10/320 film-coated tablet, 14 924524011000036109 Exforge 10/320 film-coated tablet 20141000168104 Exforge 10/320 20141000168104 Exforge 10/320 925435011000036108 amlodipine 10 mg + valsartan 320 mg tablet, 14 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +766801000168104 Chlorhexidine Hand Lotion (Orion) lotion, 500 mL, bottle 11327 766791000168100 Chlorhexidine Hand Lotion (Orion) lotion, 500 mL 766771000168101 Chlorhexidine Hand Lotion (Orion) lotion 766611000168102 Chlorhexidine Hand Lotion (Orion) 766611000168102 Chlorhexidine Hand Lotion (Orion) 766781000168103 chlorhexidine gluconate 1% + ethanol 70% lotion, 500 mL 766761000168107 chlorhexidine gluconate 1% + ethanol 70% lotion 69801011000036109 chlorhexidine + ethanol +957421000168108 Mycophenolate (Sandoz) 500 mg film-coated tablet, 50, bottle 148226 6521000036100 Mycophenolate (Sandoz) 500 mg film-coated tablet, 50 1411000036104 Mycophenolate (Sandoz) 500 mg film-coated tablet 1041000036107 Mycophenolate (Sandoz) 1041000036107 Mycophenolate (Sandoz) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +73270011000036100 Jurnista 8 mg modified release tablet, 10, blister pack 141508 73068011000036103 Jurnista 8 mg modified release tablet, 10 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73466011000036106 hydromorphone hydrochloride 8 mg modified release tablet, 10 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +44025011000036107 Fluorouracil (DBL) 2.5 g/100 mL injection solution, 100 mL vial 47263 41514011000036108 Fluorouracil (DBL) 2.5 g/100 mL injection solution, 100 mL vial 40029011000036107 Fluorouracil (DBL) 2.5 g/100 mL injection solution, 100 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 46397011000036102 fluorouracil 2.5 g/100 mL injection, 100 mL vial 45131011000036107 fluorouracil 2.5 g/100 mL injection, vial 21481011000036100 fluorouracil +920683011000036107 Fluconazole (Sandoz) 50 mg hard capsule, 28, bottle 104287 920349011000036109 Fluconazole (Sandoz) 50 mg hard capsule, 28 920120011000036108 Fluconazole (Sandoz) 50 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +1026061000168100 Pregabalin (Amneal) 25 mg hard capsule, 60, bottle 235853 1025891000168109 Pregabalin (Amneal) 25 mg hard capsule, 60 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +140871000036104 Candesartan Cilexetil HCTZ 32/25 (RBX) uncoated tablet, 30, bottle 196406 139481000036107 Candesartan Cilexetil HCTZ 32/25 (RBX) uncoated tablet, 30 137501000036108 Candesartan Cilexetil HCTZ 32/25 (RBX) uncoated tablet 14691000168100 Candesartan Cilexetil HCTZ 32/25 (RBX) 14691000168100 Candesartan Cilexetil HCTZ 32/25 (RBX) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +56601000036103 Dexmethsone 8 mg/2 mL injection solution, 10 x 2 mL vials 163199 52991000036101 Dexmethsone 8 mg/2 mL injection solution, 10 x 2 mL vials 933220081000036101 Dexmethsone 8 mg/2 mL injection solution, 2 mL vial 2956011000036100 Dexmethsone 2956011000036100 Dexmethsone 53021000036107 dexamethasone phosphate 8 mg/2 mL injection, 10 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +891021000168109 Candesartan HCTZ 16/12.5 (Genpar) uncoated tablet, 30, blister pack 253612 890981000168104 Candesartan HCTZ 16/12.5 (Genpar) uncoated tablet, 30 890971000168102 Candesartan HCTZ 16/12.5 (Genpar) uncoated tablet 890961000168108 Candesartan HCTZ 16/12.5 (Genpar) 890961000168108 Candesartan HCTZ 16/12.5 (Genpar) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +807631000168106 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) uncoated tablet, 30, blister pack 224327 807101000168106 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) uncoated tablet, 30 807091000168101 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) uncoated tablet 807081000168104 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) 807081000168104 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +20675011000036100 Diaformin-1000 1 g film-coated tablet, 90, bottle 82208 13854011000036108 Diaformin-1000 1 g film-coated tablet, 90 7141011000036106 Diaformin-1000 1 g film-coated tablet 10811000168104 Diaformin-1000 10811000168104 Diaformin-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +923021000168109 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet, 30, blister pack 198391 923011000168102 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet, 30 922951000168106 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet 922941000168109 Candesartan Hydrochlorothiazide 16/12.5 (RZ) 922941000168109 Candesartan Hydrochlorothiazide 16/12.5 (RZ) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +95411000036100 Bisolvon Chesty Kids 4 mg/5 mL oral liquid solution, 200 mL, bottle 182576 94271000036106 Bisolvon Chesty Kids 4 mg/5 mL oral liquid solution, 200 mL 93441000036103 Bisolvon Chesty Kids 4 mg/5 mL oral liquid solution, 5 mL 52581000168102 Bisolvon Chesty Kids 52581000168102 Bisolvon Chesty Kids 63532011000036106 bromhexine hydrochloride 4 mg/5 mL oral liquid, 200 mL 62004011000036102 bromhexine hydrochloride 4 mg/5 mL oral liquid 61780011000036106 bromhexine +18238011000036109 Ondansetron (Pfizer (Perth)) 4 mg/2 mL injection solution, 2 mL ampoule 128247 11856011000036109 Ondansetron (Pfizer (Perth)) 4 mg/2 mL injection solution, 2 mL ampoule 5707011000036104 Ondansetron (Pfizer (Perth)) 4 mg/2 mL injection solution, 2 mL ampoule 3818011000036107 Ondansetron (Pfizer (Perth)) 3818011000036107 Ondansetron (Pfizer (Perth)) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +987011000168100 Act-3 200 mg soft capsule, 6, blister pack 77290 987001000168103 Act-3 200 mg soft capsule, 6 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63935011000036107 ibuprofen 200 mg capsule, 6 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +1069211000168109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 20, blister pack 197886 1069201000168106 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 20 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +925181000168105 Androgel 1% (50 mg/5 g) gel, 60 x 5 g sachets 96130 925171000168107 Androgel 1% (50 mg/5 g) gel, 60 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925161000168101 testosterone 1% (50 mg/5 g) gel, 60 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +1017331000168103 Mometasone Nasal Allergy Relief (Apo) 50 microgram/actuation nasal spray, 140 actuations, pump pack 206495 1017321000168101 Mometasone Nasal Allergy Relief (Apo) 50 microgram/actuation nasal spray, 140 actuations 1017311000168108 Mometasone Nasal Allergy Relief (Apo) 50 microgram/actuation nasal spray, actuation 1017301000168105 Mometasone Nasal Allergy Relief (Apo) 1017301000168105 Mometasone Nasal Allergy Relief (Apo) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +17949011000036107 Microlax enema, 12 x 5 mL, tube 14480 12030011000036105 Microlax enema, 12 x 5 mL 5374011000036101 Microlax enema, 5 mL 3336011000036104 Microlax 3336011000036104 Microlax 26864011000036105 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema, 12 x 5 mL 22244011000036107 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema 21630011000036102 citric acid + lauryl sulfoacetate sodium + sorbitol +807711000168108 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) uncoated tablet, 30, blister pack 224315 807701000168105 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) uncoated tablet, 30 807691000168105 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) uncoated tablet 807681000168107 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) 807681000168107 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +926868011000036104 Water for Injections (Phebra) injection solution, 5 x 50 mL vials 48353 926264011000036104 Water for Injections (Phebra) injection solution, 5 x 50 mL vials 925711011000036108 Water for Injections (Phebra) injection solution, 50 mL vial 75970011000036108 Water for Injections (Phebra) 75970011000036108 Water for Injections (Phebra) 927368011000036103 water for injections injection, 5 x 50 mL vials 927014011000036107 water for injections injection, 50 mL vial 77431011000036101 water for injections +61240011000036108 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet, 10, blister pack 77011 57176011000036108 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet, 10 54225011000036105 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet 53141011000036107 Sudafed Sinus 12 Hour Relief 53141011000036107 Sudafed Sinus 12 Hour Relief 63748011000036109 pseudoephedrine hydrochloride 120 mg tablet, 10 62071011000036109 pseudoephedrine hydrochloride 120 mg tablet 21540011000036109 pseudoephedrine +85058011000036101 Vitamin C 250mg (Cenovis) chewable tablet, 100, bottle 53666 84922011000036101 Vitamin C 250mg (Cenovis) chewable tablet, 100 84802011000036104 Vitamin C 250mg (Cenovis) chewable tablet 39821000168105 Vitamin C 250mg (Cenovis) 39821000168105 Vitamin C 250mg (Cenovis) 85189011000036107 sodium ascorbate 112.5 mg + ascorbic acid 150 mg chewable tablet, 100 85090011000036108 sodium ascorbate 112.5 mg + ascorbic acid 150 mg chewable tablet 77435011000036104 ascorbic acid +1025901000168108 Pregabalin (Amneal) 25 mg hard capsule, 60, blister pack 235857 1025891000168109 Pregabalin (Amneal) 25 mg hard capsule, 60 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +882681000168108 Spedra 200 mg uncoated tablet, 12, blister pack 228476 882671000168105 Spedra 200 mg uncoated tablet, 12 882501000168101 Spedra 200 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882661000168104 avanafil 200 mg tablet, 12 882491000168108 avanafil 200 mg tablet 882091000168102 avanafil +86831000036101 Tisseel VH S/D solution, 4 mL, dual chamber syringe 147141 86471000036102 Tisseel VH S/D solution, 4 mL 85981000036104 Tisseel VH S/D solution 85961000036109 Tisseel VH S/D 85961000036109 Tisseel VH S/D 86481000036100 aprotinin 2250 KI units/mL + factor XIII 1.2 units/mL + fibrinogen 72 mg/mL + human thrombin 400 units/mL + calcium chloride dihydrate 3.96 mg (calcium 36 micromoles)/mL solution, 4 mL 85991000036102 aprotinin 2250 KI units/mL + factor XIII 1.2 units/mL + fibrinogen 72 mg/mL + human thrombin 400 units/mL + calcium chloride dihydrate 3.96 mg (calcium 36 micromoles)/mL solution 91891000036106 aprotinin + factor XIII + fibrinogen + human thrombin + calcium chloride dihydrate +921865011000036108 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid, 283 g, jar 153182 921424011000036108 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid, 283 g 65251011000036104 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 922556011000036106 psyllium husk powder 568 mg/g powder for oral liquid, 283 g 70043011000036101 psyllium husk powder 568 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +893391000168105 Olmesartan (AN) 20 mg film-coated tablet, 30, blister pack 221055 893381000168107 Olmesartan (AN) 20 mg film-coated tablet, 30 893371000168109 Olmesartan (AN) 20 mg film-coated tablet 893361000168103 Olmesartan (AN) 893361000168103 Olmesartan (AN) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +74001000036102 Ionil-T Scalp Cleanser with Owentar shampoo, 250 mL, bottle 25283 72031000036100 Ionil-T Scalp Cleanser with Owentar shampoo, 250 mL 70051000036109 Ionil-T Scalp Cleanser with Owentar shampoo 46121000168105 Ionil-T Scalp Cleanser with Owentar 46121000168105 Ionil-T Scalp Cleanser with Owentar 72041000036105 coal tar solution 5% + salicylic acid 2% shampoo, 250 mL 70061000036107 coal tar solution 5% + salicylic acid 2% shampoo 74631000036101 coal tar solution + salicylic acid +931597011000036100 Pratin 20 mg film-coated tablet, 30, bottle 163557 930758011000036104 Pratin 20 mg film-coated tablet, 30 930037011000036104 Pratin 20 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +44440011000036108 Fibro-Vein 0.5% (10 mg/2 mL) injection solution, 5 x 2 mL ampoules 73361 41896011000036100 Fibro-Vein 0.5% (10 mg/2 mL) injection solution, 5 x 2 mL ampoules 40251011000036100 Fibro-Vein 0.5% (10 mg/2 mL) injection solution, 2 mL ampoule 35954011000036108 Fibro-Vein 35954011000036108 Fibro-Vein 46694011000036101 sodium tetradecyl sulfate 0.5% (10 mg/2 mL) injection, 5 x 2 mL ampoules 45270011000036104 sodium tetradecyl sulfate 0.5% (10 mg/2 mL) injection, ampoule 37728011000036107 sodium tetradecyl sulfate +1043281000168108 Pryzex ODT 5 mg orally disintegrating tablet, 20, blister pack 179079 1043271000168105 Pryzex ODT 5 mg orally disintegrating tablet, 20 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043261000168104 olanzapine 5 mg orally disintegrating tablet, 20 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +44648011000036107 Fisamox 1 g powder for injection, 5 vials 90880 42100011000036109 Fisamox 1 g powder for injection, 5 vials 40351011000036105 Fisamox 1 g powder for injection, vial 39663011000036108 Fisamox 39663011000036108 Fisamox 38575011000036106 amoxicillin 1 g injection, 5 vials 37849011000036104 amoxicillin 1 g injection, vial 21415011000036100 amoxicillin +933105011000036106 Lamictal 25 mg tablet, 60, blister pack 51548 932911011000036100 Lamictal 25 mg tablet, 60 932763011000036109 Lamictal 25 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46987011000036105 lamotrigine 25 mg tablet, 60 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +60998011000036108 Decongestant and Antihistamine Elixir (Soul Pattinson) oral liquid solution, 100 mL, bottle 63549 56941011000036102 Decongestant and Antihistamine Elixir (Soul Pattinson) oral liquid solution, 100 mL 54131011000036108 Decongestant and Antihistamine Elixir (Soul Pattinson) oral liquid solution, 5 mL 59561000168103 Decongestant and Antihistamine Elixir (Soul Pattinson) 59561000168103 Decongestant and Antihistamine Elixir (Soul Pattinson) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +77337011000036104 Fishaphos 1 g soft capsule, 100, jar 48611 76753011000036109 Fishaphos 1 g soft capsule, 100 76164011000036109 Fishaphos 1 g soft capsule 75976011000036106 Fishaphos 75976011000036106 Fishaphos 78261011000036103 fish oil natural 1 g capsule, 100 77582011000036109 fish oil natural 1 g capsule 77436011000036106 fish oil natural +1008741000168105 Risedronate (Apotex) 35 mg film-coated tablet, 16, blister pack 160636 1008731000168101 Risedronate (Apotex) 35 mg film-coated tablet, 16 1008481000168107 Risedronate (Apotex) 35 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 929234011000036100 risedronate sodium 35 mg tablet, 16 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +738591000168102 Faslodex 250 mg/5 mL injection solution, 2 x 5 mL syringes 106955 738581000168100 Faslodex 250 mg/5 mL injection solution, 2 x 5 mL syringes 39952011000036107 Faslodex 250 mg/5 mL injection solution, 5 mL syringe 39668011000036103 Faslodex 39668011000036103 Faslodex 738571000168103 fulvestrant 250 mg/5 mL injection, 2 x 5 mL syringes 44994011000036108 fulvestrant 250 mg/5 mL injection, syringe 44917011000036101 fulvestrant +1064151000168102 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 24, blister pack 196532 1064141000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 24 1064071000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +43956011000036108 Tracrium 50 mg/5 mL injection solution, 5 x 5 mL ampoules 39289 41448011000036101 Tracrium 50 mg/5 mL injection solution, 5 x 5 mL ampoules 39979011000036104 Tracrium 50 mg/5 mL injection solution, 5 mL ampoule 35993011000036100 Tracrium 35993011000036100 Tracrium 46525011000036103 atracurium besilate 50 mg/5 mL injection, 5 x 5 mL ampoules 45201011000036102 atracurium besilate 50 mg/5 mL injection, ampoule 37800011000036104 atracurium +43772011000036102 Carvedilol (GenRx) 6.25 mg film-coated tablet, 30, bottle 123835 41306011000036100 Carvedilol (GenRx) 6.25 mg film-coated tablet, 30 4830011000036103 Carvedilol (GenRx) 6.25 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +835761000168105 Dolaforte tablet, 20, blister pack 94737 835751000168108 Dolaforte tablet, 20 835741000168106 Dolaforte tablet 4336011000036102 Dolaforte 4336011000036102 Dolaforte 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +902071000168105 Amisulpride (SCP) 400 mg uncoated tablet, 90, blister pack 234698 902061000168104 Amisulpride (SCP) 400 mg uncoated tablet, 90 902011000168102 Amisulpride (SCP) 400 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +652891000168105 Bretaris Genuair 322 microgram/actuation powder for inhalation, 30 actuations, dry powder inhaler 206071 652881000168107 Bretaris Genuair 322 microgram/actuation powder for inhalation, 30 actuations 652861000168103 Bretaris Genuair 322 microgram/actuation powder for inhalation, actuation 652831000168106 Bretaris Genuair 652831000168106 Bretaris Genuair 652871000168109 aclidinium 322 microgram/actuation powder for inhalation, 30 actuations 652851000168100 aclidinium 322 microgram/actuation powder for inhalation, actuation 652841000168102 aclidinium +60272011000036104 Avomine 25 mg uncoated tablet, 10, blister pack 134750 56231011000036104 Avomine 25 mg uncoated tablet, 10 54000011000036104 Avomine 25 mg uncoated tablet 53409011000036101 Avomine 53409011000036101 Avomine 63260011000036108 promethazine theoclate 25 mg tablet, 10 61976011000036109 promethazine theoclate 25 mg tablet 21237011000036104 promethazine +856701000168103 Entrip 25 mg film-coated tablet, 50, blister pack 232154 856691000168103 Entrip 25 mg film-coated tablet, 50 856661000168105 Entrip 25 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +959701000168101 Lacosamide (Apo) 100 mg film-coated tablet, 56, blister pack 230189 959691000168101 Lacosamide (Apo) 100 mg film-coated tablet, 56 959651000168106 Lacosamide (Apo) 100 mg film-coated tablet 959641000168109 Lacosamide (Apo) 959641000168109 Lacosamide (Apo) 84628011000036104 lacosamide 100 mg tablet, 56 84428011000036101 lacosamide 100 mg tablet 84408011000036109 lacosamide +897051000168109 Amlodipine (ULL) 10 mg tablet, 30, blister pack 212152 897041000168107 Amlodipine (ULL) 10 mg tablet, 30 897031000168103 Amlodipine (ULL) 10 mg tablet 896991000168103 Amlodipine (ULL) 896991000168103 Amlodipine (ULL) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +44849011000036106 Perfalgan 1 g/100 mL intravenous infusion injection, 6 x 100 mL vials 99869 42281011000036100 Perfalgan 1 g/100 mL intravenous infusion injection, 6 x 100 mL vials 40418011000036100 Perfalgan 1 g/100 mL intravenous infusion injection, 100 mL vial 39596011000036105 Perfalgan 39596011000036105 Perfalgan 47032011000036108 paracetamol 1 g/100 mL injection, 6 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +1083561000168109 Decongestant (Amcal) 0.05% nasal spray, 20 mL, pump pack 117621 74226011000036100 Decongestant (Amcal) 0.05% nasal spray, 20 mL 73794011000036105 Decongestant (Amcal) 0.05% nasal spray 73712011000036100 Decongestant (Amcal) 73712011000036100 Decongestant (Amcal) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +1083561000168109 Decongestant (Amcal) 0.05% nasal spray, 20 mL, pump pack 226318 74226011000036100 Decongestant (Amcal) 0.05% nasal spray, 20 mL 73794011000036105 Decongestant (Amcal) 0.05% nasal spray 73712011000036100 Decongestant (Amcal) 73712011000036100 Decongestant (Amcal) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +974821000168101 Xatral SR 10 mg modified release tablet, 60, bottle 90911 926310011000036100 Xatral SR 10 mg modified release tablet, 60 925752011000036106 Xatral SR 10 mg modified release tablet 33861000168103 Xatral SR 33861000168103 Xatral SR 927401011000036103 alfuzosin hydrochloride 10 mg modified release tablet, 60 927041011000036104 alfuzosin hydrochloride 10 mg modified release tablet 926977011000036100 alfuzosin +781811000168105 Solifenacin (GenRx) 10 mg film-coated tablet, 30, blister pack 218394 781801000168107 Solifenacin (GenRx) 10 mg film-coated tablet, 30 781791000168106 Solifenacin (GenRx) 10 mg film-coated tablet 781781000168108 Solifenacin (GenRx) 781781000168108 Solifenacin (GenRx) 46155011000036106 solifenacin succinate 10 mg tablet, 30 45011011000036107 solifenacin succinate 10 mg tablet 44891011000036101 solifenacin +20277011000036107 Isosorbide Mononitrate (Terry White Chemists) 60 mg modified release tablet, 30, blister pack 75237 13487011000036100 Isosorbide Mononitrate (Terry White Chemists) 60 mg modified release tablet, 30 6769011000036105 Isosorbide Mononitrate (Terry White Chemists) 60 mg modified release tablet 3944011000036102 Isosorbide Mononitrate (Terry White Chemists) 3944011000036102 Isosorbide Mononitrate (Terry White Chemists) 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +1090771000168103 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 2, blister pack 286355 1090761000168109 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 2 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 1081951000168100 cetirizine hydrochloride 10 mg tablet, 2 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +929695011000036108 Valacor 500 mg film-coated tablet, 10, blister pack 177373 929531011000036107 Valacor 500 mg film-coated tablet, 10 929415011000036105 Valacor 500 mg film-coated tablet 929366011000036107 Valacor 929366011000036107 Valacor 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +61424011000036102 Paracetamol (Herron) 500 mg uncoated tablet, 24, bottle 82690 57349011000036105 Paracetamol (Herron) 500 mg uncoated tablet, 24 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +87183011000036105 Nicorette Freshmint 2 mg chewing gum, 105, blister pack 115009 87115011000036109 Nicorette Freshmint 2 mg chewing gum, 105 87062011000036105 Nicorette Freshmint 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87234011000036103 nicotine 2 mg gum, 105 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +928001000168108 Flunomide 10 mg film-coated tablet, 30, bottle 123309 927991000168104 Flunomide 10 mg film-coated tablet, 30 927981000168102 Flunomide 10 mg film-coated tablet 927831000168107 Flunomide 927831000168107 Flunomide 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +747251000168108 Pemetrexed (Accord) 1 g powder for injection, 1 vial 222419 747241000168106 Pemetrexed (Accord) 1 g powder for injection, 1 vial 747231000168102 Pemetrexed (Accord) 1 g powder for injection, vial 747161000168104 Pemetrexed (Accord) 747161000168104 Pemetrexed (Accord) 742891000168100 pemetrexed 1 g injection, 1 vial 742871000168101 pemetrexed 1 g injection, vial 21321011000036102 pemetrexed +747251000168108 Pemetrexed (Accord) 1 g powder for injection, 1 vial 222418 747241000168106 Pemetrexed (Accord) 1 g powder for injection, 1 vial 747231000168102 Pemetrexed (Accord) 1 g powder for injection, vial 747161000168104 Pemetrexed (Accord) 747161000168104 Pemetrexed (Accord) 742891000168100 pemetrexed 1 g injection, 1 vial 742871000168101 pemetrexed 1 g injection, vial 21321011000036102 pemetrexed +31121000036106 Irbesartan HCT 300/25 (Sigma) film-coated tablet, 30, blister pack 171438 28341000036105 Irbesartan HCT 300/25 (Sigma) film-coated tablet, 30 26641000036101 Irbesartan HCT 300/25 (Sigma) film-coated tablet 62111000168108 Irbesartan HCT 300/25 (Sigma) 62111000168108 Irbesartan HCT 300/25 (Sigma) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +892751000168109 Betahistine (GPPL) 16 mg uncoated tablet, 25, blister pack 212085 892741000168107 Betahistine (GPPL) 16 mg uncoated tablet, 25 892711000168108 Betahistine (GPPL) 16 mg uncoated tablet 892701000168105 Betahistine (GPPL) 892701000168105 Betahistine (GPPL) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +927271000168109 Risperisan 3 mg film-coated tablet, 60, blister pack 126176 927261000168103 Risperisan 3 mg film-coated tablet, 60 927251000168100 Risperisan 3 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +995671000168109 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2, blister pack 53815 995661000168103 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2 995621000168108 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995651000168100 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +1064871000168104 Paracetamol plus Codeine (Discount Drug Stores) uncoated tablet, 20, blister pack 273798 1064861000168105 Paracetamol plus Codeine (Discount Drug Stores) uncoated tablet, 20 1064851000168108 Paracetamol plus Codeine (Discount Drug Stores) uncoated tablet 1064841000168106 Paracetamol plus Codeine (Discount Drug Stores) 1064841000168106 Paracetamol plus Codeine (Discount Drug Stores) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +77314011000036100 Urografin 76% injection solution, 10 x 50 mL bottles 42157 76730011000036102 Urografin 76% injection solution, 10 x 50 mL bottles 76146011000036107 Urografin 76% injection solution, 50 mL bottle 62581000168107 Urografin 76% 62581000168107 Urografin 76% 78244011000036105 amidotrizoate meglumine 33 g/50 mL + sodium amidotrizoate 5 g/50 mL injection, 10 x 50 mL bottles 77568011000036105 amidotrizoate meglumine 33 g/50 mL + sodium amidotrizoate 5 g/50 mL injection, bottle 77441011000036100 amidotrizoic acid +1090731000168101 Dupixent 300 mg/2 mL injection solution, 6 x 2 mL syringes 282981 1090721000168104 Dupixent 300 mg/2 mL injection solution, 6 x 2 mL syringes 1090651000168103 Dupixent 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090621000168106 dupilumab 300 mg/2 mL injection, 6 x 2 mL syringes 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +839461000168102 Advantan 0.1% fatty ointment, 10 g, tube 49382 839451000168104 Advantan 0.1% fatty ointment, 10 g 4508011000036106 Advantan 0.1% fatty ointment 3513011000036101 Advantan 3513011000036101 Advantan 839441000168101 methylprednisolone aceponate 0.1% fatty ointment, 10 g 124361000036108 methylprednisolone aceponate 0.1% fatty ointment 21605011000036100 methylprednisolone +52782011000036108 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet, 4, blister pack 80163 52592011000036105 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet, 4 52434011000036103 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet 52389011000036102 Sudafed Sinus plus Anti-Inflammatory Pain Relief 52389011000036102 Sudafed Sinus plus Anti-Inflammatory Pain Relief 52900011000036104 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +807721000168101 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) uncoated tablet, 30, bottle 224318 807701000168105 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) uncoated tablet, 30 807691000168105 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) uncoated tablet 807681000168107 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) 807681000168107 Perindopril Arginine/Amlodipine 10/5 (Terry White Chemists) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +79066011000036100 Bio C-1000 film-coated tablet, 150, bottle 158507 78872011000036105 Bio C-1000 film-coated tablet, 150 78677011000036102 Bio C-1000 film-coated tablet 32191000168109 Bio C-1000 32191000168109 Bio C-1000 79242011000036103 ascorbic acid 400 mg + calcium ascorbate dihydrate 400 mg + sodium ascorbate 350 mg + citrus bioflavonoids extract 25 mg + rutoside 50 mg + hesperidin 50 mg + dog rose 250 mg + acerola 50 mg tablet, 150 79117011000036105 ascorbic acid 400 mg + calcium ascorbate dihydrate 400 mg + sodium ascorbate 350 mg + citrus bioflavonoids extract 25 mg + rutoside 50 mg + hesperidin 50 mg + dog rose 250 mg + acerola 50 mg tablet 79096011000036102 ascorbic acid + citrus bioflavonoids extract + rutoside + hesperidin + dog rose + acerola +755911000168108 Faverin 100 mg film-coated tablet, 10, blister pack 64388 755901000168105 Faverin 100 mg film-coated tablet, 10 6376011000036107 Faverin 100 mg film-coated tablet 3891011000036102 Faverin 3891011000036102 Faverin 927343011000036102 fluvoxamine maleate 100 mg tablet, 10 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +890581000168107 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet, 10, blister pack 198393 890571000168109 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet, 10 890531000168106 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet 890521000168108 Candesartan HCTZ 32/12.5 (DRLA) 890521000168108 Candesartan HCTZ 32/12.5 (DRLA) 890561000168103 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 10 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +921882011000036103 Sevikar 40/5 film-coated tablet, 10, blister pack 157563 921441011000036108 Sevikar 40/5 film-coated tablet, 10 921012011000036100 Sevikar 40/5 film-coated tablet 29001000168107 Sevikar 40/5 29001000168107 Sevikar 40/5 922569011000036107 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 10 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +103861000036105 Epirubicin Hydrochloride (SZ) 50 mg/25 mL concentrated injection, 25 mL vial 165687 101221000036101 Epirubicin Hydrochloride (SZ) 50 mg/25 mL concentrated injection, 25 mL vial 98141000036104 Epirubicin Hydrochloride (SZ) 50 mg/25 mL concentrated injection, 25 mL vial 97911000036103 Epirubicin Hydrochloride (SZ) 97911000036103 Epirubicin Hydrochloride (SZ) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +84332011000036107 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 48, blister pack 158155 84025011000036102 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 48 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +933216321000036108 Glucose (B Braun) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bottle 98343 933206091000036107 Glucose (B Braun) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bottle 933196921000036105 Glucose (B Braun) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bottle 78600011000036108 Glucose (B Braun) 78600011000036108 Glucose (B Braun) 933206101000036103 glucose 5% (12.5 g/250 mL) injection, 250 mL bottle 933196931000036107 glucose 5% (12.5 g/250 mL) injection, bottle 21354011000036103 glucose +68903011000036103 Sodium Chloride (Pfizer (Perth)) 0.9% (270 mg/30 mL) irrigation solution, 30 mL ampoule 11290 66600011000036103 Sodium Chloride (Pfizer (Perth)) 0.9% (270 mg/30 mL) irrigation solution, 30 mL ampoule 65297011000036100 Sodium Chloride (Pfizer (Perth)) 0.9% (270 mg/30 mL) irrigation solution, 30 mL ampoule 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 71322011000036102 sodium chloride 0.9% (270 mg/30 mL) solution, 30 mL ampoule 69949011000036108 sodium chloride 0.9% (270 mg/30 mL) solution, ampoule 21308011000036103 sodium chloride +764471000168104 Ursodeoxycholic Acid (Lupin) 250 mg hard capsule, 100, blister pack 232482 764461000168105 Ursodeoxycholic Acid (Lupin) 250 mg hard capsule, 100 764431000168102 Ursodeoxycholic Acid (Lupin) 250 mg hard capsule 764421000168100 Ursodeoxycholic Acid (Lupin) 764421000168100 Ursodeoxycholic Acid (Lupin) 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +982861000168106 Ibrance 75 mg hard capsule, 21, bottle 274624 982821000168101 Ibrance 75 mg hard capsule, 21 982801000168105 Ibrance 75 mg hard capsule 982621000168100 Ibrance 982621000168100 Ibrance 982811000168108 palbociclib 75 mg capsule, 21 982791000168109 palbociclib 75 mg capsule 982631000168102 palbociclib +940101000168107 Celecoxib (Ranbaxy) 100 mg hard capsule, 10, blister pack 212786 940091000168102 Celecoxib (Ranbaxy) 100 mg hard capsule, 10 940081000168100 Celecoxib (Ranbaxy) 100 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1069131000168109 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 40, blister pack 196531 1069121000168106 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 40 1068991000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +123371000036103 Olanzapine (Pharmacy Choice) 10 mg film-coated tablet, 28, blister pack 163410 123111000036107 Olanzapine (Pharmacy Choice) 10 mg film-coated tablet, 28 122821000036101 Olanzapine (Pharmacy Choice) 10 mg film-coated tablet 1741000168102 Olanzapine (Pharmacy Choice) 1741000168102 Olanzapine (Pharmacy Choice) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +31281000036100 Ceftriaxone (AFT) 1 g powder for injection, 1 vial 185100 28811000036102 Ceftriaxone (AFT) 1 g powder for injection, 1 vial 26961000036108 Ceftriaxone (AFT) 1 g powder for injection, vial 26001000036105 Ceftriaxone (AFT) 26001000036105 Ceftriaxone (AFT) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +752141000168103 Oxycodone (Actavis) 5 mg hard capsule, 60, blister pack 227834 752111000168102 Oxycodone (Actavis) 5 mg hard capsule, 60 752081000168107 Oxycodone (Actavis) 5 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +824431000168108 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 1000, bottle 230262 824421000168105 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 1000 824371000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet 824361000168105 Paracetamol Pain Relief (Apohealth) 824361000168105 Paracetamol Pain Relief (Apohealth) 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +918691000168103 Rosuvastatin (Generic Health) 10 mg film-coated tablet, 30, blister pack 210827 918681000168101 Rosuvastatin (Generic Health) 10 mg film-coated tablet, 30 918651000168108 Rosuvastatin (Generic Health) 10 mg film-coated tablet 918641000168106 Rosuvastatin (Generic Health) 918641000168106 Rosuvastatin (Generic Health) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1064791000168108 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 30, blister pack 199369 1064781000168105 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 30 1064611000168106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 967201000168106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 30 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +69657011000036100 Betadine Antiseptic 14% dusting powder, 20 g, puffer pack 80124 67456011000036106 Betadine Antiseptic 14% dusting powder, 20 g 65672011000036105 Betadine Antiseptic 14% dusting powder 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71984011000036106 povidone-iodine 14% dusting powder, 20 g 70272011000036100 povidone-iodine 14% dusting powder 21660011000036108 povidone-iodine +18255011000036104 Pravastatin Sodium (GenRx) 10 mg uncoated tablet, 30, blister pack 118646 11586011000036100 Pravastatin Sodium (GenRx) 10 mg uncoated tablet, 30 5971011000036106 Pravastatin Sodium (GenRx) 10 mg uncoated tablet 4139011000036103 Pravastatin Sodium (GenRx) 4139011000036103 Pravastatin Sodium (GenRx) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +85011011000036102 Risperidone (Apo) 500 microgram film-coated tablet, 20, blister pack 127606 84879011000036102 Risperidone (Apo) 500 microgram film-coated tablet, 20 48522011000036103 Risperidone (Apo) 500 microgram film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +902051000168101 Amisulpride (SCP) 400 mg uncoated tablet, 60, blister pack 234698 902041000168103 Amisulpride (SCP) 400 mg uncoated tablet, 60 902011000168102 Amisulpride (SCP) 400 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +20485011000036105 Diclofenac Sodium (GenRx) 25 mg enteric tablet, 50, bottle 78432 13685011000036107 Diclofenac Sodium (GenRx) 25 mg enteric tablet, 50 6968011000036108 Diclofenac Sodium (GenRx) 25 mg enteric tablet 2918011000036106 Diclofenac Sodium (GenRx) 2918011000036106 Diclofenac Sodium (GenRx) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +56761000036105 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 500, bottle 164952 53211000036108 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 500 39900011000036100 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 53221000036101 metformin hydrochloride 500 mg tablet, 500 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20772011000036100 Diltiazem Hydrochloride CD (Terry White Chemists) 240 mg modified release capsule, 30, bottle 90921 13941011000036104 Diltiazem Hydrochloride CD (Terry White Chemists) 240 mg modified release capsule, 30 7229011000036109 Diltiazem Hydrochloride CD (Terry White Chemists) 240 mg modified release capsule 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +929027011000036104 Risedronate (Apo) 35 mg film-coated tablet, 16, blister pack 160642 928388011000036105 Risedronate (Apo) 35 mg film-coated tablet, 16 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 929234011000036100 risedronate sodium 35 mg tablet, 16 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +987171000168109 Act-3 200 mg soft capsule, 50, blister pack 77290 987161000168103 Act-3 200 mg soft capsule, 50 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63934011000036108 ibuprofen 200 mg capsule, 50 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +44740011000036103 Testogel 1% (25 mg/2.5 g) gel, 50 x 2.5 g sachets 96129 42185011000036101 Testogel 1% (25 mg/2.5 g) gel, 50 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46946011000036104 testosterone 1% (25 mg/2.5 g) gel, 50 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +50437011000036103 Allevyn Adhesive (66000044) 12.5 cm x 12.5 cm dressing, 10, carton 92774 49379011000036108 Allevyn Adhesive (66000044) 12.5 cm x 12.5 cm dressing, 10 48484011000036107 Allevyn Adhesive (66000044) 12.5 cm x 12.5 cm dressing 11301000168103 Allevyn Adhesive (66000044) 11301000168103 Allevyn Adhesive (66000044) 51352011000036101 dressing foam moderate exudate 12.5 cm x 12.5 cm dressing, 10 50875011000036103 dressing foam moderate exudate 12.5 cm x 12.5 cm dressing 50698011000036108 dressing foam moderate exudate +18497011000036103 Xanax 1 mg uncoated tablet, 50, bottle 12351 11746011000036109 Xanax 1 mg uncoated tablet, 50 5976011000036101 Xanax 1 mg uncoated tablet 3527011000036101 Xanax 3527011000036101 Xanax 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +68661011000036104 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 528 g, jar 10184 66485011000036109 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 528 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71218011000036103 psyllium husk powder 312.8 mg/g powder for oral liquid, 528 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +651441000168109 Cyrotone 50 mg uncoated tablet, 50, blister pack 184194 651431000168100 Cyrotone 50 mg uncoated tablet, 50 651401000168107 Cyrotone 50 mg uncoated tablet 651331000168106 Cyrotone 651331000168106 Cyrotone 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +60364011000036107 Nurofen Back Pain 200 mg film-coated tablet, 36, blister pack 142080 56323011000036105 Nurofen Back Pain 200 mg film-coated tablet, 36 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63920011000036101 ibuprofen 200 mg tablet, 36 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +764451000168108 Ursodeoxycholic Acid (Lupin) 250 mg hard capsule, 60, blister pack 232482 764441000168106 Ursodeoxycholic Acid (Lupin) 250 mg hard capsule, 60 764431000168102 Ursodeoxycholic Acid (Lupin) 250 mg hard capsule 764421000168100 Ursodeoxycholic Acid (Lupin) 764421000168100 Ursodeoxycholic Acid (Lupin) 757471000168102 ursodeoxycholic acid 250 mg capsule, 60 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +929104011000036105 Pioglitazone (Chemmart) 30 mg uncoated tablet, 50, blister pack 166917 928465011000036106 Pioglitazone (Chemmart) 30 mg uncoated tablet, 50 927990011000036109 Pioglitazone (Chemmart) 30 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929263011000036107 pioglitazone 30 mg tablet, 50 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +50587011000036101 Clarithromycin (Chemmart) 500 mg film-coated tablet, 14, blister pack 134860 49619011000036106 Clarithromycin (Chemmart) 500 mg film-coated tablet, 14 48790011000036107 Clarithromycin (Chemmart) 500 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 46431011000036106 clarithromycin 500 mg tablet, 14 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +95331000036101 Citalopram (Apo) 20 mg film-coated tablet, 28, bottle 233166 78848011000036109 Citalopram (Apo) 20 mg film-coated tablet, 28 78654011000036105 Citalopram (Apo) 20 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +95331000036101 Citalopram (Apo) 20 mg film-coated tablet, 28, bottle 150629 78848011000036109 Citalopram (Apo) 20 mg film-coated tablet, 28 78654011000036105 Citalopram (Apo) 20 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +755791000168101 Vttack 200 mg film-coated tablet, 20, blister pack 206985 755781000168104 Vttack 200 mg film-coated tablet, 20 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46806011000036104 voriconazole 200 mg tablet, 20 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +1083641000168106 Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL, pump pack 24105 74322011000036108 Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL 73801011000036107 Decongestant (Soul Pattinson) 0.05% nasal spray 53415011000036101 Decongestant (Soul Pattinson) 53415011000036101 Decongestant (Soul Pattinson) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +1000651000168100 Citalopram (Apotex) 20 mg film-coated tablet, 28, bottle 150641 1000541000168103 Citalopram (Apotex) 20 mg film-coated tablet, 28 1000531000168107 Citalopram (Apotex) 20 mg film-coated tablet 1000491000168107 Citalopram (Apotex) 1000491000168107 Citalopram (Apotex) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +824391000168103 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 100, bottle 230262 824381000168101 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 100 824371000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet 824361000168105 Paracetamol Pain Relief (Apohealth) 824361000168105 Paracetamol Pain Relief (Apohealth) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69295011000036100 Glucose (Baxter) 50% (250 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 19504 67095011000036103 Glucose (Baxter) 50% (250 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 65489011000036109 Glucose (Baxter) 50% (250 g/500 mL) intravenous infusion injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71663011000036105 glucose 50% (250 g/500 mL) injection, 18 x 500 mL bags 70113011000036102 glucose 50% (250 g/500 mL) injection, bag 21354011000036103 glucose +74081000036108 Astrix 100 mg enteric capsule, 28, blister pack 29551 72081000036101 Astrix 100 mg enteric capsule, 28 54009011000036105 Astrix 100 mg enteric capsule 3721011000036108 Astrix 3721011000036108 Astrix 72091000036104 aspirin 100 mg enteric capsule, 28 61985011000036109 aspirin 100 mg enteric capsule 21719011000036107 aspirin +893351000168100 Olmertan 40 mg film-coated tablet, 30, blister pack 221050 893341000168102 Olmertan 40 mg film-coated tablet, 30 893331000168106 Olmertan 40 mg film-coated tablet 893291000168100 Olmertan 893291000168100 Olmertan 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +651521000168104 Minax XL 47.5 mg modified release tablet, 30, blister pack 205149 651511000168106 Minax XL 47.5 mg modified release tablet, 30 651501000168108 Minax XL 47.5 mg modified release tablet 651491000168101 Minax XL 651491000168101 Minax XL 28244011000036100 metoprolol succinate 47.5 mg modified release tablet, 30 23558011000036104 metoprolol succinate 47.5 mg modified release tablet 21662011000036107 metoprolol +168401000036103 Dermaveen Moisturising 2% lotion, 250 mL, bottle 56313 167911000036106 Dermaveen Moisturising 2% lotion, 250 mL 167551000036102 Dermaveen Moisturising 2% lotion 9661000168105 Dermaveen Moisturising 9661000168105 Dermaveen Moisturising 167921000036104 colloidal oatmeal 2% lotion, 250 mL 167561000036104 colloidal oatmeal 2% lotion 77444011000036102 colloidal oatmeal +738681000168101 Acidophilus Bifidus (Blackmores) hard capsule, 45, bottle 145755 738671000168104 Acidophilus Bifidus (Blackmores) hard capsule, 45 920994011000036109 Acidophilus Bifidus (Blackmores) hard capsule 920955011000036100 Acidophilus Bifidus (Blackmores) 920955011000036100 Acidophilus Bifidus (Blackmores) 738661000168105 lactobacillus acidophilus 0.5 billion organisms + bifidobacterium animalis 0.5 billion organisms capsule, 45 922080011000036102 lactobacillus acidophilus 0.5 billion organisms + bifidobacterium animalis 0.5 billion organisms capsule 922044011000036104 lactobacillus acidophilus + bifidobacterium animalis +755951000168109 Leflunomide (Apotex) 20 mg uncoated tablet, 30, blister pack 129540 755941000168107 Leflunomide (Apotex) 20 mg uncoated tablet, 30 755931000168103 Leflunomide (Apotex) 20 mg uncoated tablet 755921000168101 Leflunomide (Apotex) 755921000168101 Leflunomide (Apotex) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +18722011000036100 Diapride 3 mg uncoated tablet, 30, blister pack 107346 11374011000036101 Diapride 3 mg uncoated tablet, 30 5968011000036105 Diapride 3 mg uncoated tablet 3696011000036100 Diapride 3696011000036100 Diapride 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +841471000168106 Atorvastatin (Amneal) 20 mg film-coated tablet, 50, blister pack 178524 841461000168100 Atorvastatin (Amneal) 20 mg film-coated tablet, 50 841341000168106 Atorvastatin (Amneal) 20 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841451000168102 atorvastatin 20 mg tablet, 50 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +43789011000036101 Faslodex 250 mg/5 mL injection solution, 5 mL syringe 106955 41145011000036106 Faslodex 250 mg/5 mL injection solution, 5 mL syringe 39952011000036107 Faslodex 250 mg/5 mL injection solution, 5 mL syringe 39668011000036103 Faslodex 39668011000036103 Faslodex 46117011000036109 fulvestrant 250 mg/5 mL injection, 5 mL syringe 44994011000036108 fulvestrant 250 mg/5 mL injection, syringe 44917011000036101 fulvestrant +648701000168105 Cordarone X Intravenous 150 mg/3 mL injection solution, 6 x 3 mL ampoules 15360 648691000168105 Cordarone X Intravenous 150 mg/3 mL injection solution, 6 x 3 mL ampoules 36111011000036102 Cordarone X Intravenous 150 mg/3 mL injection solution, 3 mL ampoule 59231000168108 Cordarone X Intravenous 59231000168108 Cordarone X Intravenous 648681000168107 amiodarone hydrochloride 150 mg/3 mL injection, 6 x 3 mL ampoules 37946011000036101 amiodarone hydrochloride 150 mg/3 mL injection, ampoule 21535011000036101 amiodarone +52765011000036103 Lisinopril (Apo) 20 mg tablet, 1000, bottle 144029 52575011000036108 Lisinopril (Apo) 20 mg tablet, 1000 52425011000036101 Lisinopril (Apo) 20 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 52893011000036104 lisinopril 20 mg tablet, 1000 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +61332011000036103 Paracetamol (Herron) 500 mg uncoated tablet, 4, blister pack 80924 57260011000036104 Paracetamol (Herron) 500 mg uncoated tablet, 4 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +901431000168108 Amisulpride (CH) 100 mg uncoated tablet, 30, blister pack 234708 901421000168105 Amisulpride (CH) 100 mg uncoated tablet, 30 901411000168103 Amisulpride (CH) 100 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +86123011000036100 Levetiracetam (Apo) 250 mg tablet, 60, blister pack 156311 85711011000036104 Levetiracetam (Apo) 250 mg tablet, 60 85346011000036103 Levetiracetam (Apo) 250 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +31211000036108 Karbesat 75 mg film-coated tablet, 30, blister pack 171460 28381000036101 Karbesat 75 mg film-coated tablet, 30 26611000036102 Karbesat 75 mg film-coated tablet 26121000036101 Karbesat 26121000036101 Karbesat 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +670111000168107 Amlodipine/Atorvastatin 5/80 (Apo) film-coated tablet, 30, blister pack 214386 670101000168109 Amlodipine/Atorvastatin 5/80 (Apo) film-coated tablet, 30 670091000168104 Amlodipine/Atorvastatin 5/80 (Apo) film-coated tablet 670071000168100 Amlodipine/Atorvastatin 5/80 (Apo) 670071000168100 Amlodipine/Atorvastatin 5/80 (Apo) 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +1080181000168102 Salofalk 1 g enteric tablet, 10, blister pack 285903 1080171000168100 Salofalk 1 g enteric tablet, 10 1080151000168109 Salofalk 1 g enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 1080161000168106 mesalazine 1 g enteric tablet, 10 1080141000168107 mesalazine 1 g enteric tablet 21351011000036101 mesalazine +61032011000036102 Imodium Advanced chewable tablet, 4, blister pack 66848 56975011000036104 Imodium Advanced chewable tablet, 4 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63673011000036109 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 4 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +1047051000168102 Buprenorphine (SZ) 10 microgram/hour patch, 4, sachet 269674 1047041000168104 Buprenorphine (SZ) 10 microgram/hour patch, 4 1046971000168107 Buprenorphine (SZ) 10 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046681000168103 buprenorphine 10 microgram/hour patch, 4 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +929715011000036100 Influvac 2011 injection solution, 1 x 0.5 mL syringe 81465 929551011000036106 Influvac 2011 injection solution, 1 x 0.5 mL syringe 929417011000036100 Influvac 2011 injection solution, 0.5 mL syringe 58701000168103 Influvac 2011 58701000168103 Influvac 2011 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +861521000168101 First Aid (Amcal) cream, 50 g, tube 225323 861511000168108 First Aid (Amcal) cream, 50 g 861501000168105 First Aid (Amcal) cream 924355011000036107 First Aid (Amcal) 924355011000036107 First Aid (Amcal) 861331000168108 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream, 50 g 861311000168103 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +861521000168101 First Aid (Amcal) cream, 50 g, tube 145051 861511000168108 First Aid (Amcal) cream, 50 g 861501000168105 First Aid (Amcal) cream 924355011000036107 First Aid (Amcal) 924355011000036107 First Aid (Amcal) 861331000168108 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream, 50 g 861311000168103 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +1012511000168100 Metformin (Apo) 850 mg film-coated tablet, 500, bottle 157215 1012501000168103 Metformin (Apo) 850 mg film-coated tablet, 500 929414011000036106 Metformin (Apo) 850 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 53271000036102 metformin hydrochloride 850 mg tablet, 500 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1067121000168102 Ibuprofen plus Codeine (Pharmacist Own) film-coated tablet, 30, blister pack 187208 1067111000168109 Ibuprofen plus Codeine (Pharmacist Own) film-coated tablet, 30 1067101000168106 Ibuprofen plus Codeine (Pharmacist Own) film-coated tablet 1067061000168108 Ibuprofen plus Codeine (Pharmacist Own) 1067061000168108 Ibuprofen plus Codeine (Pharmacist Own) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +931478011000036104 Paroxetine (Synthon) 20 mg film-coated tablet, 56, blister pack 152491 930657011000036108 Paroxetine (Synthon) 20 mg film-coated tablet, 56 929991011000036107 Paroxetine (Synthon) 20 mg film-coated tablet 929845011000036106 Paroxetine (Synthon) 929845011000036106 Paroxetine (Synthon) 51565011000036100 paroxetine 20 mg tablet, 56 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +20946011000036109 Dimirel 4 mg uncoated tablet, 30, blister pack 94478 14101011000036108 Dimirel 4 mg uncoated tablet, 30 7378011000036107 Dimirel 4 mg uncoated tablet 3387011000036106 Dimirel 3387011000036106 Dimirel 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +649431000168101 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 56, blister pack 202109 649421000168104 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 56 649331000168107 Pritor/Amlodipine 80 mg/10 mg multilayer tablet 649321000168109 Pritor/Amlodipine 80 mg/10 mg 649321000168109 Pritor/Amlodipine 80 mg/10 mg 932442011000036102 telmisartan 80 mg + amlodipine 10 mg tablet, 56 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +55551000036109 Anastrozole (AU) 1 mg film-coated tablet, 90, blister pack 155174 52231000036108 Anastrozole (AU) 1 mg film-coated tablet, 90 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52251000036100 anastrozole 1 mg tablet, 90 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +19088011000036107 Minax 50 mg uncoated tablet, 100, blister pack 42749 12394011000036105 Minax 50 mg uncoated tablet, 100 4707011000036109 Minax 50 mg uncoated tablet 4275011000036101 Minax 4275011000036101 Minax 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +1017081000168100 Aripiprazole (AU) 5 mg uncoated tablet, 100, bottle 217218 1017071000168103 Aripiprazole (AU) 5 mg uncoated tablet, 100 1017031000168101 Aripiprazole (AU) 5 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +18633011000036102 Olmetec Plus 40/25 mg film-coated tablet, 30, blister pack 115661 11500011000036104 Olmetec Plus 40/25 mg film-coated tablet, 30 4987011000036102 Olmetec Plus 40/25 mg film-coated tablet 58251000168105 Olmetec Plus 40/25 mg 58251000168105 Olmetec Plus 40/25 mg 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +1018151000168105 Amisulpride (Apotex) 400 mg film-coated tablet, 60, blister pack 178897 1018141000168108 Amisulpride (Apotex) 400 mg film-coated tablet, 60 1018091000168101 Amisulpride (Apotex) 400 mg film-coated tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +840011000168103 Advantan 0.1% cream, 30 g, tube 49380 840001000168101 Advantan 0.1% cream, 30 g 5548011000036107 Advantan 0.1% cream 3513011000036101 Advantan 3513011000036101 Advantan 839991000168104 methylprednisolone aceponate 0.1% cream, 30 g 22586011000036100 methylprednisolone aceponate 0.1% cream 21605011000036100 methylprednisolone +717181000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 28, blister pack 149417 717171000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 28 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716411000168100 omeprazole 20 mg enteric capsule, 28 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +34687011000036103 Amlodipine (Terry White Chemists) 10 mg uncoated tablet, 30, blister pack 135136 34273011000036104 Amlodipine (Terry White Chemists) 10 mg uncoated tablet, 30 34001011000036101 Amlodipine (Terry White Chemists) 10 mg uncoated tablet 33931011000036103 Amlodipine (Terry White Chemists) 33931011000036103 Amlodipine (Terry White Chemists) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +20553011000036105 Alprazolam (GenRx) 1 mg tablet, 50, blister pack 79802 13806011000036109 Alprazolam (GenRx) 1 mg tablet, 50 7092011000036100 Alprazolam (GenRx) 1 mg tablet 3880011000036108 Alprazolam (GenRx) 3880011000036108 Alprazolam (GenRx) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +874591000168107 Beezole 40 mg enteric tablet, 15, blister pack 205829 874581000168109 Beezole 40 mg enteric tablet, 15 874551000168102 Beezole 40 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 681491000168109 esomeprazole 40 mg enteric tablet, 15 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +933213581000036107 Citalopram (IPCA) 10 mg film-coated tablet, 500, bottle 158869 933203071000036102 Citalopram (IPCA) 10 mg film-coated tablet, 500 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203091000036103 citalopram 10 mg tablet, 500 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +61503011000036103 Proven 200 mg film-coated tablet, 96, blister pack 92447 57428011000036105 Proven 200 mg film-coated tablet, 96 54299011000036101 Proven 200 mg film-coated tablet 53524011000036103 Proven 53524011000036103 Proven 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +12181000036105 Quipine 25 mg film-coated tablet, 60, blister pack 162385 7341000036104 Quipine 25 mg film-coated tablet, 60 3121000036101 Quipine 25 mg film-coated tablet 961000036106 Quipine 961000036106 Quipine 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1041681000168106 Dry Cough Forte (Amcal) 4 mg/mL oral liquid solution, 200 mL, bottle 210157 1041671000168108 Dry Cough Forte (Amcal) 4 mg/mL oral liquid solution, 200 mL 1041661000168102 Dry Cough Forte (Amcal) 4 mg/mL oral liquid solution 1041591000168105 Dry Cough Forte (Amcal) 1041591000168105 Dry Cough Forte (Amcal) 156151000036101 pholcodine 4 mg/mL oral liquid, 200 mL 154971000036102 pholcodine 4 mg/mL oral liquid 21705011000036108 pholcodine +920808011000036109 Amoxycillin (GA) 500 mg hard capsule, 20, blister pack 95457 920487011000036101 Amoxycillin (GA) 500 mg hard capsule, 20 920218011000036102 Amoxycillin (GA) 500 mg hard capsule 920070011000036103 Amoxycillin (GA) 920070011000036103 Amoxycillin (GA) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +920808011000036109 Amoxycillin (GA) 500 mg hard capsule, 20, blister pack 197486 920487011000036101 Amoxycillin (GA) 500 mg hard capsule, 20 920218011000036102 Amoxycillin (GA) 500 mg hard capsule 920070011000036103 Amoxycillin (GA) 920070011000036103 Amoxycillin (GA) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +43820011000036104 Sevoflurane (Abbott) 1 mL/mL inhalation solution, 100 mL, bottle 123857 41307011000036102 Sevoflurane (Abbott) 1 mL/mL inhalation solution, 100 mL 39882011000036106 Sevoflurane (Abbott) 1 mL/mL inhalation solution 39683011000036106 Sevoflurane (Abbott) 39683011000036106 Sevoflurane (Abbott) 46420011000036102 sevoflurane 1 mL/mL inhalation solution, 100 mL 45144011000036106 sevoflurane 1 mL/mL inhalation solution 44873011000036109 sevoflurane +758921000168105 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18695 758911000168103 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758831000168104 Albumin Saline (Stallergenes) (inert substance) diluent, 1.8 mL vial 32999011000036104 Paper Wasp Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 758901000168101 paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638511000168101 inert substance diluent, 1.8 mL vial 21220011000036103 inert substance +758921000168105 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18695 758911000168103 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 32999011000036104 Paper Wasp Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 758901000168101 paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638491000168106 inert substance diluent, 9 mL vial 21220011000036103 inert substance +758921000168105 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18695 758911000168103 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758891000168100 Paper Wasp Venom (Albey) (paper wasp venom 550 microgram) powder for injection, 550 microgram vial 32999011000036104 Paper Wasp Venom (Albey) 32999011000036104 Paper Wasp Venom (Albey) 758901000168101 paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 758881000168103 paper wasp venom 550 microgram injection, vial 758871000168101 paper wasp venom +61467011000036103 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 100, bottle 91160 57392011000036106 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 100 54294011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet 53164011000036100 Paracetamol (Pharmacy Health) 53164011000036100 Paracetamol (Pharmacy Health) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +845711000168106 Sandostatin LAR (1 x 30 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 227964 845701000168108 Sandostatin LAR (1 x 30 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 845101000168109 Sandostatin LAR (inert substance) diluent, 2 mL syringe 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 845691000168108 octreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +845711000168106 Sandostatin LAR (1 x 30 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 227964 845701000168108 Sandostatin LAR (1 x 30 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 6561011000036105 Sandostatin LAR (octreotide 30 mg) modified release injection, 30 mg vial 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 845691000168108 octreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 23000011000036106 octreotide 30 mg modified release injection, vial 21316011000036104 octreotide +932171000168102 Centevo 50/12.5/200 mg film-coated tablet, 100, bottle 238152 932161000168108 Centevo 50/12.5/200 mg film-coated tablet, 100 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 28183011000036108 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 100 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +995511000168102 Curash Family Oral Pain Relieving oral gel, 15 g, tube 10127 995501000168100 Curash Family Oral Pain Relieving oral gel, 15 g 995481000168109 Curash Family Oral Pain Relieving oral gel 63411000168109 Curash Family Oral Pain Relieving 63411000168109 Curash Family Oral Pain Relieving 995491000168107 choline salicylate 9% + ethanol 35% + cetylpyridinium chloride 0.0375% + cetalkonium chloride 0.025% oral gel, 15 g 995471000168106 choline salicylate 9% + ethanol 35% + cetylpyridinium chloride 0.0375% + cetalkonium chloride 0.025% oral gel 69840011000036108 salicylic acid + ethanol + cetylpyridinium + cetalkonium chloride +1087351000168106 Monofer 1 g/10 mL injection solution, 2 x 10 mL vials 290834 1087341000168109 Monofer 1 g/10 mL injection solution, 2 x 10 mL vials 1087291000168106 Monofer 1 g/10 mL injection solution, 10 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1087331000168100 iron (as ferric derisomaltose) 1 g/10 mL injection, 2 x 10 mL vials 1087281000168108 iron (as ferric derisomaltose) 1 g/10 mL injection, vial 1085791000168105 ferric derisomaltose +44762011000036107 Voltaren 50 mg moulded suppository, 10, blister pack 96811 42207011000036107 Voltaren 50 mg moulded suppository, 10 40390011000036108 Voltaren 50 mg moulded suppository 28551000168108 Voltaren 28551000168108 Voltaren 46967011000036108 diclofenac sodium 50 mg suppository, 10 45363011000036106 diclofenac sodium 50 mg suppository 21288011000036105 diclofenac +763261000168107 Sorbolene Cream (David Craig) cream, 100 g, tube 763251000168105 Sorbolene Cream (David Craig) cream, 100 g 763231000168104 Sorbolene Cream (David Craig) cream 763151000168103 Sorbolene Cream (David Craig) 763151000168103 Sorbolene Cream (David Craig) 763241000168108 cetomacrogol aqueous cream, 100 g 763221000168102 cetomacrogol aqueous cream 763211000168109 cetomacrogol aqueous cream +923896011000036106 Norlevo-1 1.5 mg uncoated tablet, 1, blister pack 166340 923440011000036108 Norlevo-1 1.5 mg uncoated tablet, 1 923085011000036104 Norlevo-1 1.5 mg uncoated tablet 48941000168101 Norlevo-1 48941000168101 Norlevo-1 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +60355011000036100 Benadryl for the Family Original oral liquid solution, 500 mL, bottle 14114 56314011000036104 Benadryl for the Family Original oral liquid solution, 500 mL 53872011000036107 Benadryl for the Family Original oral liquid solution, 5 mL 3541000168107 Benadryl for the Family Original 3541000168107 Benadryl for the Family Original 63303011000036105 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 500 mL 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +1038371000168106 Vimpat 150 mg film-coated tablet, 168, blister pack 196451 1038361000168100 Vimpat 150 mg film-coated tablet, 168 83630011000036101 Vimpat 150 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 1038351000168102 lacosamide 150 mg tablet, 168 84430011000036100 lacosamide 150 mg tablet 84408011000036109 lacosamide +59694011000036100 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 96, blister pack 100402 55637011000036108 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 96 53721011000036102 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet 10731000168102 Paracetamol Minitab (Pharmacy Health) 10731000168102 Paracetamol Minitab (Pharmacy Health) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1044491000168108 Ziprox 80 mg hard capsule, 60, blister pack 201084 1044481000168105 Ziprox 80 mg hard capsule, 60 1044471000168107 Ziprox 80 mg hard capsule 1044151000168106 Ziprox 1044151000168106 Ziprox 27572011000036105 ziprasidone 80 mg capsule, 60 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +59731000036109 Isosorbide Mononitrate (PS) 60 mg modified release tablet, 30, blister pack 184066 58821000036108 Isosorbide Mononitrate (PS) 60 mg modified release tablet, 30 58181000036103 Isosorbide Mononitrate (PS) 60 mg modified release tablet 58161000036108 Isosorbide Mononitrate (PS) 58161000036108 Isosorbide Mononitrate (PS) 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +95741000036105 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 1, blister pack 195918 94641000036102 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 1 93431000036108 Azithromycin (Terry White Chemists) 500 mg film-coated tablet 93261000036101 Azithromycin (Terry White Chemists) 93261000036101 Azithromycin (Terry White Chemists) 46128011000036104 azithromycin 500 mg tablet, 1 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +848611000168109 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 161182 848601000168106 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 76104011000036108 Dronalen Plus 70 mg/140 microgram uncoated tablet 58581000168100 Dronalen Plus D-Cal 46201000168105 Dronalen Plus 70 mg/140 microgram 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +848611000168109 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 161182 848601000168106 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 58581000168100 Dronalen Plus D-Cal 85275011000036101 Bonecal 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +926869011000036107 Water for Injections (Phebra) injection solution, 100 mL vial 48354 926265011000036100 Water for Injections (Phebra) injection solution, 100 mL vial 925712011000036102 Water for Injections (Phebra) injection solution, 100 mL vial 75970011000036108 Water for Injections (Phebra) 75970011000036108 Water for Injections (Phebra) 927369011000036106 water for injections injection, 100 mL vial 77586011000036108 water for injections injection, 100 mL vial 77431011000036101 water for injections +130541000036107 Femzole One 150 mg hard capsule, 1, strip pack 170209 127481000036101 Femzole One 150 mg hard capsule, 1 124491000036106 Femzole One 150 mg hard capsule 2761000168108 Femzole One 2761000168108 Femzole One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +675411000168105 Celecoxib (Chemmart) 200 mg hard capsule, 30, blister pack 226148 675401000168107 Celecoxib (Chemmart) 200 mg hard capsule, 30 675391000168105 Celecoxib (Chemmart) 200 mg hard capsule 675351000168100 Celecoxib (Chemmart) 675351000168100 Celecoxib (Chemmart) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +965281000168107 Clarithromycin (GenRx) 500 mg film-coated tablet, 42, blister pack 134857 965271000168109 Clarithromycin (GenRx) 500 mg film-coated tablet, 42 965181000168100 Clarithromycin (GenRx) 500 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 51516011000036106 clarithromycin 500 mg tablet, 42 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +44677011000036105 Copegus 200 mg film-coated tablet, 112 tablets, bottle 91841 42126011000036102 Copegus 200 mg film-coated tablet, 112 tablets 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 3042011000036103 Copegus 3042011000036103 Copegus 46888011000036104 ribavirin 200 mg tablet, 112 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +687291000168103 Capecitabine (AN) 500 mg film-coated tablet, 120, blister pack 213037 687281000168101 Capecitabine (AN) 500 mg film-coated tablet, 120 687271000168104 Capecitabine (AN) 500 mg film-coated tablet 687231000168102 Capecitabine (AN) 687231000168102 Capecitabine (AN) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +682581000168101 Esomeprazole (Actavis) 40 mg enteric capsule, 98, bottle 206002 682571000168104 Esomeprazole (Actavis) 40 mg enteric capsule, 98 682521000168100 Esomeprazole (Actavis) 40 mg enteric capsule 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 682561000168105 esomeprazole 40 mg enteric capsule, 98 682511000168107 esomeprazole 40 mg enteric capsule 21697011000036107 esomeprazole +986851000168108 Glyxambi 25 mg/5 mg film-coated tablet, 10, blister pack 263557 986841000168106 Glyxambi 25 mg/5 mg film-coated tablet, 10 986821000168100 Glyxambi 25 mg/5 mg film-coated tablet 986801000168109 Glyxambi 25 mg/5 mg 986801000168109 Glyxambi 25 mg/5 mg 986831000168102 empagliflozin 25 mg + linagliptin 5 mg tablet, 10 986811000168107 empagliflozin 25 mg + linagliptin 5 mg tablet 986711000168104 empagliflozin + linagliptin +891431000168104 Candesartan plus HCTZ 16/12.5 (Pfizer) uncoated tablet, 7, blister pack 199102 891421000168102 Candesartan plus HCTZ 16/12.5 (Pfizer) uncoated tablet, 7 891411000168109 Candesartan plus HCTZ 16/12.5 (Pfizer) uncoated tablet 891401000168106 Candesartan plus HCTZ 16/12.5 (Pfizer) 891401000168106 Candesartan plus HCTZ 16/12.5 (Pfizer) 890801000168102 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 7 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +50519011000036106 Kaltostat (168210) 5 cm x 5 cm medicated dressing, 10, carton 49391011000036102 Kaltostat (168210) 5 cm x 5 cm medicated dressing, 10 48683011000036107 Kaltostat (168210) 5 cm x 5 cm medicated dressing 37671000168102 Kaltostat (168210) 37671000168102 Kaltostat (168210) 51363011000036104 dressing alginate superficial wound 5 cm x 5 cm dressing, 10 50885011000036105 dressing alginate superficial wound 5 cm x 5 cm dressing 50715011000036105 dressing alginate superficial wound +670021000168101 Amlodipine/Atorvastatin 5/40 (Terry White Chemists) film-coated tablet, 30, blister pack 214350 670011000168108 Amlodipine/Atorvastatin 5/40 (Terry White Chemists) film-coated tablet, 30 670001000168105 Amlodipine/Atorvastatin 5/40 (Terry White Chemists) film-coated tablet 669991000168103 Amlodipine/Atorvastatin 5/40 (Terry White Chemists) 669991000168103 Amlodipine/Atorvastatin 5/40 (Terry White Chemists) 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +1017101000168107 Aripiprazole (AU) 5 mg uncoated tablet, 250, bottle 217218 1017091000168102 Aripiprazole (AU) 5 mg uncoated tablet, 250 1017031000168101 Aripiprazole (AU) 5 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 1015321000168107 aripiprazole 5 mg tablet, 250 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +857271000168104 Alendronate plus D3 and Calcium (Apotex) (4 x Alendronate plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 246775 857261000168105 Alendronate plus D3 and Calcium (Apotex) (4 x Alendronate plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 857221000168100 Calcium (Apotex) 1.25 g (calcium 500 mg) film-coated tablet 857251000168108 Alendronate plus D3 and Calcium (Apotex) 857101000168100 Calcium (Apotex) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +857271000168104 Alendronate plus D3 and Calcium (Apotex) (4 x Alendronate plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 246775 857261000168105 Alendronate plus D3 and Calcium (Apotex) (4 x Alendronate plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 857061000168103 Alendronate plus D3 70 mg/140 microgram (Apotex) tablet 857251000168108 Alendronate plus D3 and Calcium (Apotex) 857041000168102 Alendronate plus D3 70 mg/140 microgram (Apotex) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +61673011000036102 Dimetapp Chesty Cough Elixir oral liquid solution, 100 mL, bottle 97496 57595011000036100 Dimetapp Chesty Cough Elixir oral liquid solution, 100 mL 54358011000036108 Dimetapp Chesty Cough Elixir oral liquid solution, 10 mL 38781000168105 Dimetapp Chesty Cough Elixir 38781000168105 Dimetapp Chesty Cough Elixir 63946011000036101 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 100 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +669981000168101 Amlodipine/Atorvastatin 10/20 (Terry White Chemists) film-coated tablet, 30, blister pack 214399 669971000168104 Amlodipine/Atorvastatin 10/20 (Terry White Chemists) film-coated tablet, 30 669961000168105 Amlodipine/Atorvastatin 10/20 (Terry White Chemists) film-coated tablet 669951000168108 Amlodipine/Atorvastatin 10/20 (Terry White Chemists) 669951000168108 Amlodipine/Atorvastatin 10/20 (Terry White Chemists) 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +891791000168108 Candesartan HCT 32/12.5 (Alphapharm) tablet, 7, bottle 206488 891661000168109 Candesartan HCT 32/12.5 (Alphapharm) tablet, 7 891651000168107 Candesartan HCT 32/12.5 (Alphapharm) tablet 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 83493011000036104 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 7 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +741631000168108 Pemetrexed (DBL) 500 mg powder for injection, 1 vial 182045 741621000168105 Pemetrexed (DBL) 500 mg powder for injection, 1 vial 741611000168103 Pemetrexed (DBL) 500 mg powder for injection, 500 mg vial 741601000168101 Pemetrexed (DBL) 741601000168101 Pemetrexed (DBL) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +1012831000168108 Valganciclovir (Apo) 450 mg film-coated tablet, 180, bottle 184311 1012821000168105 Valganciclovir (Apo) 450 mg film-coated tablet, 180 1012771000168103 Valganciclovir (Apo) 450 mg film-coated tablet 1012761000168109 Valganciclovir (Apo) 1012761000168109 Valganciclovir (Apo) 1012731000168101 valganciclovir 450 mg tablet, 180 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +19147011000036107 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28, dial dispenser pack 192476 12446011000036104 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28 4801011000036103 Trisequens (estradiol 1 mg) film-coated tablet 3217011000036103 Trisequens 3217011000036103 Trisequens 27125011000036108 estradiol 2 mg tablet [12] (&) estradiol 2 mg + norethisterone acetate 1 mg tablet [10] (&) estradiol 1 mg tablet [6], 28 22491011000036102 estradiol 1 mg tablet 21238011000036103 estradiol +19147011000036107 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28, dial dispenser pack 45155 12446011000036104 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28 4801011000036103 Trisequens (estradiol 1 mg) film-coated tablet 3217011000036103 Trisequens 3217011000036103 Trisequens 27125011000036108 estradiol 2 mg tablet [12] (&) estradiol 2 mg + norethisterone acetate 1 mg tablet [10] (&) estradiol 1 mg tablet [6], 28 22491011000036102 estradiol 1 mg tablet 21238011000036103 estradiol +19147011000036107 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28, dial dispenser pack 192476 12446011000036104 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28 5193011000036100 Trisequens (estradiol 2 mg) film-coated tablet 3217011000036103 Trisequens 3217011000036103 Trisequens 27125011000036108 estradiol 2 mg tablet [12] (&) estradiol 2 mg + norethisterone acetate 1 mg tablet [10] (&) estradiol 1 mg tablet [6], 28 23115011000036108 estradiol 2 mg tablet 21238011000036103 estradiol +19147011000036107 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28, dial dispenser pack 45155 12446011000036104 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28 5193011000036100 Trisequens (estradiol 2 mg) film-coated tablet 3217011000036103 Trisequens 3217011000036103 Trisequens 27125011000036108 estradiol 2 mg tablet [12] (&) estradiol 2 mg + norethisterone acetate 1 mg tablet [10] (&) estradiol 1 mg tablet [6], 28 23115011000036108 estradiol 2 mg tablet 21238011000036103 estradiol +19147011000036107 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28, dial dispenser pack 192476 12446011000036104 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28 5867011000036103 Trisequens (estradiol 2 mg + norethisterone acetate 1 mg) film-coated tablet 3217011000036103 Trisequens 3217011000036103 Trisequens 27125011000036108 estradiol 2 mg tablet [12] (&) estradiol 2 mg + norethisterone acetate 1 mg tablet [10] (&) estradiol 1 mg tablet [6], 28 22678011000036103 estradiol 2 mg + norethisterone acetate 1 mg tablet 21228011000036101 estradiol + norethisterone acetate +19147011000036107 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28, dial dispenser pack 45155 12446011000036104 Trisequens (12 x 2 mg tablets, 10 x 2 mg/1 mg tablets, 6 x 1 mg tablets), 28 5867011000036103 Trisequens (estradiol 2 mg + norethisterone acetate 1 mg) film-coated tablet 3217011000036103 Trisequens 3217011000036103 Trisequens 27125011000036108 estradiol 2 mg tablet [12] (&) estradiol 2 mg + norethisterone acetate 1 mg tablet [10] (&) estradiol 1 mg tablet [6], 28 22678011000036103 estradiol 2 mg + norethisterone acetate 1 mg tablet 21228011000036101 estradiol + norethisterone acetate +60165011000036101 Exforge 5/80 film-coated tablet, 30, blister pack 130787 56124011000036100 Exforge 5/80 film-coated tablet, 30 53801011000036105 Exforge 5/80 film-coated tablet 29171000168101 Exforge 5/80 29171000168101 Exforge 5/80 63228011000036103 amlodipine 5 mg + valsartan 80 mg tablet, 30 61897011000036105 amlodipine 5 mg + valsartan 80 mg tablet 61712011000036107 amlodipine + valsartan +68912011000036108 Strepsils orange lozenge, 2, blister pack 115527 66619011000036106 Strepsils orange lozenge, 2 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71521011000036105 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +753511000168100 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet, 30, bottle 218243 753491000168105 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet, 30 753481000168107 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet 753471000168109 Olmesartan/Amlodipine 20/5 (Apo) 753471000168109 Olmesartan/Amlodipine 20/5 (Apo) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +741721000168103 Jakavi 5 mg tablet, 60, bottle 198935 741711000168105 Jakavi 5 mg tablet, 60 143801000036102 Jakavi 5 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741701000168107 ruxolitinib 5 mg tablet, 60 143811000036100 ruxolitinib 5 mg tablet 146491000036100 ruxolitinib +81060011000036109 Iscover 300 mg film-coated tablet, 2, blister pack 151280 80569011000036108 Iscover 300 mg film-coated tablet, 2 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81648011000036105 clopidogrel 300 mg tablet, 2 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +837041000168101 Maxigesic film-coated tablet, 12, blister pack 218785 837031000168105 Maxigesic film-coated tablet, 12 173031000036101 Maxigesic film-coated tablet 172741000036100 Maxigesic 172741000036100 Maxigesic 837021000168107 paracetamol 500 mg + ibuprofen 150 mg tablet, 12 173041000036106 paracetamol 500 mg + ibuprofen 150 mg tablet 177241000036105 paracetamol + ibuprofen +854141000168107 Aliquen 300 mg film-coated tablet, 20, blister pack 204842 854131000168103 Aliquen 300 mg film-coated tablet, 20 854121000168101 Aliquen 300 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +891591000168101 Bicor 3.75 mg film-coated tablet, 42, blister pack 81605 891581000168104 Bicor 3.75 mg film-coated tablet, 42 891491000168100 Bicor 3.75 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 875871000168105 bisoprolol fumarate 3.75 mg tablet, 42 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +43588011000036105 Remodulin 20 mg/20 mL injection solution, 20 mL vial 101646 41131011000036108 Remodulin 20 mg/20 mL injection solution, 20 mL vial 39931011000036100 Remodulin 20 mg/20 mL injection solution, 20 mL vial 39717011000036108 Remodulin 39717011000036108 Remodulin 46109011000036104 treprostinil 20 mg/20 mL injection, 20 mL vial 44990011000036103 treprostinil 20 mg/20 mL injection, vial 44874011000036106 treprostinil +19199011000036109 Kalma 1 mg uncoated tablet, 50, bottle 46839 12490011000036105 Kalma 1 mg uncoated tablet, 50 5340011000036107 Kalma 1 mg uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +69435011000036108 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 12 x 1 L bags 48514 67235011000036102 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 12 x 1 L bags 65569011000036100 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 71785011000036103 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, 12 x 1 L bags 70185011000036104 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +77188011000036104 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 10 x 10 mL vials 12596 76604011000036109 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 10 x 10 mL vials 76058011000036102 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 10 mL vial 33651000168101 Omnipaque-240 33651000168101 Omnipaque-240 78158011000036104 iohexol 518 mg (iodine 240 mg)/mL injection, 10 x 10 mL vials 77518011000036109 iohexol 518 mg (iodine 240 mg)/mL injection, 10 mL vial 77459011000036103 iohexol +687061000168103 Omnaris 50 microgram/actuation nasal spray, 120 actuations, pump pack 167910 687051000168100 Omnaris 50 microgram/actuation nasal spray, 120 actuations 687001000168104 Omnaris 50 microgram/actuation nasal spray, actuation 686981000168108 Omnaris 686981000168108 Omnaris 687041000168102 ciclesonide 50 microgram/actuation nasal spray, 120 actuations 686991000168106 ciclesonide 50 microgram/actuation nasal spray, actuation 21555011000036102 ciclesonide +933230821000036105 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 84, blister pack 172126 933224941000036104 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 84 933220411000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet 933219291000036105 Prochlorperazine Maleate (GH) 933219291000036105 Prochlorperazine Maleate (GH) 924175011000036102 prochlorperazine maleate 5 mg tablet, 84 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +44556011000036104 Precedex 200 microgram/2 mL concentrated injection, 25 x 2 mL vials 81323 42009011000036106 Precedex 200 microgram/2 mL concentrated injection, 25 x 2 mL vials 40319011000036103 Precedex 200 microgram/2 mL concentrated injection, 2 mL vial 39573011000036108 Precedex 39573011000036108 Precedex 46782011000036104 dexmedetomidine 200 microgram/2 mL injection, 25 x 2 mL vials 45315011000036108 dexmedetomidine 200 microgram/2 mL injection, vial 44960011000036101 dexmedetomidine +763101000168102 Tobramycin (Mylan) 80 mg/2 mL injection solution, 10 x 2 mL vials 234429 763091000168107 Tobramycin (Mylan) 80 mg/2 mL injection solution, 10 x 2 mL vials 762961000168109 Tobramycin (Mylan) 80 mg/2 mL injection solution, 2 mL vial 762951000168107 Tobramycin (Mylan) 762951000168107 Tobramycin (Mylan) 46747011000036106 tobramycin 80 mg/2 mL injection, 10 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +1032961000168103 Ramipril (Apotex) 2.5 mg capsule, 30, bottle 179021 1032881000168101 Ramipril (Apotex) 2.5 mg capsule, 30 1032871000168104 Ramipril (Apotex) 2.5 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +68905011000036102 Tineafax 1% dusting powder, 60 g, bottle 10974 66583011000036102 Tineafax 1% dusting powder, 60 g 65214011000036105 Tineafax 1% dusting powder 65024011000036105 Tineafax 65024011000036105 Tineafax 71306011000036108 tolnaftate 1% dusting powder, 60 g 70066011000036101 tolnaftate 1% dusting powder 21680011000036105 tolnaftate +1121831000168103 Sequase XR 400 mg modified release tablet, 60, blister pack 212515 1121821000168101 Sequase XR 400 mg modified release tablet, 60 1121811000168108 Sequase XR 400 mg modified release tablet 1121431000168100 Sequase XR 1121431000168100 Sequase XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +931524011000036102 Phenoxymethylpenicillin (AFT) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 159754 930685011000036107 Phenoxymethylpenicillin (AFT) 250 mg/5 mL powder for oral liquid, 100 mL 930010011000036105 Phenoxymethylpenicillin (AFT) 250 mg/5 mL powder for oral liquid, 5 mL 929833011000036109 Phenoxymethylpenicillin (AFT) 929833011000036109 Phenoxymethylpenicillin (AFT) 932401011000036100 phenoxymethylpenicillin 250 mg/5 mL powder for oral liquid, 100 mL 931849011000036102 phenoxymethylpenicillin 250 mg/5 mL powder for oral liquid 21370011000036105 phenoxymethylpenicillin +999761000168109 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 195217 999751000168107 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 999701000168108 Drospirenone/EE 3/30 (Apo) (inert substance) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999761000168109 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 195217 999751000168107 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 999691000168108 Drospirenone/EE 3/30 (Apo) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +928874011000036105 Appese-0.25 250 microgram film-coated tablet, 12, blister pack 140830 928236011000036105 Appese-0.25 250 microgram film-coated tablet, 12 927894011000036109 Appese-0.25 250 microgram film-coated tablet 13581000168100 Appese-0.25 13581000168100 Appese-0.25 46968011000036109 ropinirole 250 microgram tablet, 12 45364011000036108 ropinirole 250 microgram tablet 44882011000036106 ropinirole +933230981000036103 Famciclovir (Apo) 500 mg film-coated tablet, 30, bottle 172445 933225051000036101 Famciclovir (Apo) 500 mg film-coated tablet, 30 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +43581011000036101 Fluconazole (Hexal) 200 mg/100 mL injection solution, 100 mL vial 104302 41138011000036104 Fluconazole (Hexal) 200 mg/100 mL injection solution, 100 mL vial 39786011000036108 Fluconazole (Hexal) 200 mg/100 mL injection solution, 100 mL vial 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 27178011000036101 fluconazole 200 mg/100 mL injection, 100 mL vial 22540011000036105 fluconazole 200 mg/100 mL injection, vial 21365011000036105 fluconazole +21178011000036103 Solastick SPF 30+ (Hamilton) lip stick, 4.5 g, tube 99200 14319011000036103 Solastick SPF 30+ (Hamilton) lip stick, 4.5 g 7605011000036100 Solastick SPF 30+ (Hamilton) lip stick 52271000168103 Solastick SPF 30+ (Hamilton) 52271000168103 Solastick SPF 30+ (Hamilton) 28310011000036109 butyl methoxydibenzoylmethane 2.5% + 4-methylbenzylidene camphor 2% + octocrylene 0.9% + octyl methoxycinnamate 7.5% stick, 4.5 g 23624011000036102 butyl methoxydibenzoylmethane 2.5% + 4-methylbenzylidene camphor 2% + octocrylene 0.9% + octyl methoxycinnamate 7.5% stick 21727011000036109 butyl methoxydibenzoylmethane + 4-methylbenzylidene camphor + octocrylene + octyl methoxycinnamate +18221011000036102 Perindopril Erbumine (Pharmacor) 4 mg uncoated tablet, 30, blister pack 132512 11931011000036109 Perindopril Erbumine (Pharmacor) 4 mg uncoated tablet, 30 4895011000036103 Perindopril Erbumine (Pharmacor) 4 mg uncoated tablet 3695011000036107 Perindopril Erbumine (Pharmacor) 3695011000036107 Perindopril Erbumine (Pharmacor) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +59891000036101 Sumatriptan (PS) 50 mg film-coated tablet, 2, blister pack 187213 59001000036104 Sumatriptan (PS) 50 mg film-coated tablet, 2 58251000036103 Sumatriptan (PS) 50 mg film-coated tablet 58151000036105 Sumatriptan (PS) 58151000036105 Sumatriptan (PS) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +927710011000036100 Zaditen 0.025% eye drops solution, 5 mL, bottle 99979 927644011000036107 Zaditen 0.025% eye drops solution, 5 mL 927594011000036105 Zaditen 0.025% eye drops solution 53472011000036103 Zaditen 53472011000036103 Zaditen 922700011000036101 ketotifen 0.025% eye drops, 5 mL 62278011000036108 ketotifen 0.025% eye drops 61805011000036103 ketotifen +1113291000168107 Quetiapine (CH) 150 mg film-coated tablet, 100, bottle 172845 1113281000168109 Quetiapine (CH) 150 mg film-coated tablet, 100 1113211000168103 Quetiapine (CH) 150 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 1075731000168104 quetiapine 150 mg tablet, 100 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +1000811000168100 Pregabalin (Apo) 100 mg hard capsule, 14, bottle 193248 1000801000168103 Pregabalin (Apo) 100 mg hard capsule, 14 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +1038301000168101 Vimpat 50 mg film-coated tablet, 168, blister pack 196449 1038291000168102 Vimpat 50 mg film-coated tablet, 168 83631011000036108 Vimpat 50 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 1038281000168100 lacosamide 50 mg tablet, 168 84431011000036107 lacosamide 50 mg tablet 84408011000036109 lacosamide +18257011000036109 Carvedilol (Chemmart) 25 mg film-coated tablet, 60, blister pack 133040 11957011000036100 Carvedilol (Chemmart) 25 mg film-coated tablet, 60 4458011000036106 Carvedilol (Chemmart) 25 mg film-coated tablet 3037011000036100 Carvedilol (Chemmart) 3037011000036100 Carvedilol (Chemmart) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +1016921000168103 Aripiprazole (AU) 20 mg uncoated tablet, 30, blister pack 217204 1016911000168105 Aripiprazole (AU) 20 mg uncoated tablet, 30 1016901000168107 Aripiprazole (AU) 20 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1067201000168102 Pain Captabs (Chemists' Own) uncoated tablet, 24, blister pack 93812 1067191000168100 Pain Captabs (Chemists' Own) uncoated tablet, 24 1067181000168103 Pain Captabs (Chemists' Own) uncoated tablet 1067171000168101 Pain Captabs (Chemists' Own) 1067171000168101 Pain Captabs (Chemists' Own) 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +131911000036106 Candesartan Cilexetil (Apo) 4 mg uncoated tablet, 30, bottle 184886 128191000036105 Candesartan Cilexetil (Apo) 4 mg uncoated tablet, 30 124661000036101 Candesartan Cilexetil (Apo) 4 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +933239481000036100 Paclitaxel (Pfizer) 300 mg/50 mL concentrated injection, 50 mL vial 176334 933236781000036104 Paclitaxel (Pfizer) 300 mg/50 mL concentrated injection, 50 mL vial 933234701000036102 Paclitaxel (Pfizer) 300 mg/50 mL concentrated injection, 50 mL vial 933234201000036108 Paclitaxel (Pfizer) 933234201000036108 Paclitaxel (Pfizer) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +50365011000036105 SensoCard diagnostic strip, 50, bottle 49254011000036103 SensoCard diagnostic strip, 50 48513011000036101 SensoCard diagnostic strip 48353011000036109 SensoCard 48353011000036109 SensoCard 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +888501000168103 Calcitriol (SG) 0.25 microgram soft capsule, 100, blister pack 232771 888491000168105 Calcitriol (SG) 0.25 microgram soft capsule, 100 888481000168107 Calcitriol (SG) 0.25 microgram soft capsule 888471000168109 Calcitriol (SG) 888471000168109 Calcitriol (SG) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +170731000036109 Salbutamol (Apo) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 142566 169781000036106 Salbutamol (Apo) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 169231000036104 Salbutamol (Apo) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 929835011000036105 Salbutamol (Apo) 929835011000036105 Salbutamol (Apo) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +20056011000036101 Somac 40 mg enteric tablet, 30, blister pack 69792 13286011000036102 Somac 40 mg enteric tablet, 30 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +908651000168105 Celecoxib (Lup) 100 mg hard capsule, 60, blister pack 196184 908641000168108 Celecoxib (Lup) 100 mg hard capsule, 60 908551000168109 Celecoxib (Lup) 100 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +21083011000036108 Daraprim 25 mg uncoated tablet, 50, strip pack 97531 14226011000036106 Daraprim 25 mg uncoated tablet, 50 7512011000036101 Daraprim 25 mg uncoated tablet 4189011000036107 Daraprim 4189011000036107 Daraprim 28228011000036105 pyrimethamine 25 mg tablet, 50 23542011000036104 pyrimethamine 25 mg tablet 21690011000036106 pyrimethamine +20347011000036101 Cefaclor CD (GenRx) 375 mg modified release tablet, 10, blister pack 76226 13556011000036104 Cefaclor CD (GenRx) 375 mg modified release tablet, 10 6838011000036105 Cefaclor CD (GenRx) 375 mg modified release tablet 5831000168101 Cefaclor CD (GenRx) 5831000168101 Cefaclor CD (GenRx) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +949511000168106 Metformin 1000 (AS) 1 g film-coated tablet, 30, blister pack 147412 949501000168108 Metformin 1000 (AS) 1 g film-coated tablet, 30 949471000168102 Metformin 1000 (AS) 1 g film-coated tablet 949461000168108 Metformin 1000 (AS) 949461000168108 Metformin 1000 (AS) 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +37386011000036103 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 500 x 2.2 mL cartridges 12080 36711011000036109 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 500 x 2.2 mL cartridges 36008011000036100 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 2.2 mL cartridge 30271000168103 Citanest 3% with Octapressin 0.066 IU Dental 30271000168103 Citanest 3% with Octapressin 0.066 IU Dental 38624011000036100 prilocaine hydrochloride 3% (66 mg/2.2 mL) + felypressin 0.066 units/2.2 mL injection, 500 x 2.2 mL cartridges 37884011000036108 prilocaine hydrochloride 3% (66 mg/2.2 mL) + felypressin 0.066 units/2.2 mL injection, cartridge 37788011000036103 prilocaine + felypressin +12341000036104 Zylap ODT 5 mg orally disintegrating tablet, 28, blister pack 163419 7251000036105 Zylap ODT 5 mg orally disintegrating tablet, 28 2171000036105 Zylap ODT 5 mg orally disintegrating tablet 17721000168104 Zylap ODT 17721000168104 Zylap ODT 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +974001000168101 Pregabalin (GH) 300 mg hard capsule, 60, blister pack 215688 973991000168109 Pregabalin (GH) 300 mg hard capsule, 60 973891000168102 Pregabalin (GH) 300 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +787671000168105 Arizole 30 mg uncoated tablet, 100, bottle 198200 787661000168104 Arizole 30 mg uncoated tablet, 100 787621000168109 Arizole 30 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787651000168101 aripiprazole 30 mg tablet, 100 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +971991000168108 Pregabalin (Apo) 75 mg hard capsule, 20, bottle 193247 970531000168109 Pregabalin (Apo) 75 mg hard capsule, 20 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1029671000168107 Atomoxetine (Genpar) 60 mg hard capsule, 7, blister pack 234821 1029661000168101 Atomoxetine (Genpar) 60 mg hard capsule, 7 1029651000168103 Atomoxetine (Genpar) 60 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +888461000168103 Calcitriol (ML) 0.25 microgram soft capsule, 100, blister pack 232770 888451000168100 Calcitriol (ML) 0.25 microgram soft capsule, 100 888441000168102 Calcitriol (ML) 0.25 microgram soft capsule 888431000168106 Calcitriol (ML) 888431000168106 Calcitriol (ML) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +18787011000036105 Perindopril Erbumine (DP) 8 mg uncoated tablet, 30, blister pack 121636 11683011000036103 Perindopril Erbumine (DP) 8 mg uncoated tablet, 30 5960011000036108 Perindopril Erbumine (DP) 8 mg uncoated tablet 3280011000036101 Perindopril Erbumine (DP) 3280011000036101 Perindopril Erbumine (DP) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +982681000168101 Ibrance 125 mg hard capsule, 21, blister pack 274619 982671000168104 Ibrance 125 mg hard capsule, 21 982651000168108 Ibrance 125 mg hard capsule 982621000168100 Ibrance 982621000168100 Ibrance 982661000168105 palbociclib 125 mg capsule, 21 982641000168106 palbociclib 125 mg capsule 982631000168102 palbociclib +61297011000036104 Hair A-Gain 5% application, 60 mL, bottle 79607 57233011000036102 Hair A-Gain 5% application, 60 mL 54249011000036105 Hair A-Gain 5% application 53423011000036106 Hair A-Gain 53423011000036106 Hair A-Gain 63889011000036109 minoxidil 5% application, 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +1033961000168108 Atomoxetine (GXP) 5 mg hard capsule, 28, blister pack 234852 1033951000168106 Atomoxetine (GXP) 5 mg hard capsule, 28 1033841000168100 Atomoxetine (GXP) 5 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 976371000168103 atomoxetine 5 mg capsule, 28 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +933213761000036109 Ciprofloxacin (IPC) 250 mg film-coated tablet, 10, blister pack 153183 933201781000036101 Ciprofloxacin (IPC) 250 mg film-coated tablet, 10 933194811000036101 Ciprofloxacin (IPC) 250 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +923925011000036100 Omnitrope 5 mg/1.5 mL injection, 5 x 1.5 mL cartridges 82211 923469011000036109 Omnitrope 5 mg/1.5 mL injection, 5 x 1.5 mL cartridges 7142011000036100 Omnitrope 5 mg/1.5 mL injection, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 924216011000036103 somatropin 5 mg/1.5 mL injection, 5 x 1.5 mL cartridges 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +879871000168108 Ketamine (Apo) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 219039 879861000168102 Ketamine (Apo) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 879851000168104 Ketamine (Apo) 200 mg/2 mL injection solution, 2 mL ampoule 879841000168101 Ketamine (Apo) 879841000168101 Ketamine (Apo) 720621000168100 ketamine 200 mg/2 mL injection, 5 x 2 mL ampoules 720601000168109 ketamine 200 mg/2 mL injection, ampoule 34843011000036109 ketamine +1070491000168104 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (32 x Day tablets, 16 x Night tablets), 48, blister pack 157599 1070481000168102 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (32 x Day tablets, 16 x Night tablets), 48 1070441000168107 Day plus Night Cold and Flu Relief PE (Day) (Soul Pattinson) uncoated tablet 1070411000168108 Day plus Night Cold and Flu Relief PE (Soul Pattinson) 1070421000168101 Day plus Night Cold and Flu Relief PE (Day) (Soul Pattinson) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1070491000168104 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (32 x Day tablets, 16 x Night tablets), 48, blister pack 157599 1070481000168102 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (32 x Day tablets, 16 x Night tablets), 48 1070451000168109 Day plus Night Cold and Flu Relief PE (Night) (Soul Pattinson) uncoated tablet 1070411000168108 Day plus Night Cold and Flu Relief PE (Soul Pattinson) 1070431000168103 Day plus Night Cold and Flu Relief PE (Night) (Soul Pattinson) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +104501000036106 Irbesartan (GA) 75 mg film-coated tablet, 30, blister pack 192800 101711000036103 Irbesartan (GA) 75 mg film-coated tablet, 30 98221000036102 Irbesartan (GA) 75 mg film-coated tablet 97991000036108 Irbesartan (GA) 97991000036108 Irbesartan (GA) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +966651000168105 Diavance 250/1.25 film-coated tablet, 60, blister pack 120263 966641000168108 Diavance 250/1.25 film-coated tablet, 60 966561000168106 Diavance 250/1.25 film-coated tablet 966551000168109 Diavance 250/1.25 966551000168109 Diavance 250/1.25 966631000168104 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet, 60 23507011000036105 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet 21813011000036107 metformin + glibenclamide +750421000168102 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years oral liquid solution, 200 mL, bottle 175112 750411000168109 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years oral liquid solution, 200 mL 750361000168102 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years oral liquid solution, 5 mL 750311000168100 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years 750311000168100 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years 750401000168106 thiamine hydrochloride 2.5 mg/5 mL + riboflavin sodium phosphate 2.5 mg (riboflavin 1.8 mg)/5 mL + nicotinamide 15 mg/5 mL + pyridoxine hydrochloride 750 microgram/5 mL + ascorbic acid 60 mg/5 mL + colecalciferol 5 microgram (200 units)/5 mL + ferric chloride hexahydrate 17.4 mg (iron 3.6 mg)/5 mL oral liquid, 200 mL 750351000168104 thiamine hydrochloride 2.5 mg/5 mL + riboflavin sodium phosphate 2.5 mg (riboflavin 1.8 mg)/5 mL + nicotinamide 15 mg/5 mL + pyridoxine hydrochloride 750 microgram/5 mL + ascorbic acid 60 mg/5 mL + colecalciferol 5 microgram (200 units)/5 mL + ferric chloride hexahydrate 17.4 mg (iron 3.6 mg)/5 mL oral liquid 750341000168101 thiamine + riboflavin + nicotinamide + pyridoxine + ascorbic acid + colecalciferol + iron +904561000168101 Cardol 80 mg uncoated tablet, 60, blister pack 262936 904551000168103 Cardol 80 mg uncoated tablet, 60 904541000168100 Cardol 80 mg uncoated tablet 3631011000036100 Cardol 3631011000036100 Cardol 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +50306011000036102 Lyofoam Flat (603093) 10 cm x 10 cm dressing, 10, carton 49356011000036101 Lyofoam Flat (603093) 10 cm x 10 cm dressing, 10 48650011000036108 Lyofoam Flat (603093) 10 cm x 10 cm dressing 13291000168100 Lyofoam Flat (603093) 13291000168100 Lyofoam Flat (603093) 51333011000036109 dressing foam moderate exudate 10 cm x 10 cm dressing, 10 50860011000036103 dressing foam moderate exudate 10 cm x 10 cm dressing 50698011000036108 dressing foam moderate exudate +926679011000036108 Lisoril 20 mg uncoated tablet, 56, blister pack 106497 926080011000036103 Lisoril 20 mg uncoated tablet, 56 925633011000036105 Lisoril 20 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 78128011000036103 lisinopril 20 mg tablet, 56 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +931651011000036108 Twynsta 80/5 mg multilayer tablet, 56, blister pack 166263 930811011000036102 Twynsta 80/5 mg multilayer tablet, 56 930057011000036103 Twynsta 80/5 mg multilayer tablet 12411000168103 Twynsta 80/5 mg 12411000168103 Twynsta 80/5 mg 932424011000036108 telmisartan 80 mg + amlodipine 5 mg tablet, 56 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +43794011000036103 Somidem 10 mg film-coated tablet, 7, blister pack 119196 41217011000036109 Somidem 10 mg film-coated tablet, 7 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +925302011000036101 Exforge 10/320 film-coated tablet, 30, blister pack 161824 924839011000036108 Exforge 10/320 film-coated tablet, 30 924524011000036109 Exforge 10/320 film-coated tablet 20141000168104 Exforge 10/320 20141000168104 Exforge 10/320 925437011000036103 amlodipine 10 mg + valsartan 320 mg tablet, 30 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +707311000168109 Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 114302 707301000168106 Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 33010011000036108 Lucrin Depot (leuprorelin acetate 7.5 mg) modified release injection, 7.5 mg syringe 6141000168106 Lucrin Depot 6141000168106 Lucrin Depot 707291000168105 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 23532011000036103 leuprorelin acetate 7.5 mg modified release injection, syringe 21320011000036109 leuprorelin +707311000168109 Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 114302 707301000168106 Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 707281000168107 Lucrin Depot (inert substance) diluent, 1.5 mL syringe 6141000168106 Lucrin Depot 6141000168106 Lucrin Depot 707291000168105 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 698501000168108 inert substance diluent, 1.5 mL syringe 21220011000036103 inert substance +665541000168101 Truetrack diagnostic strip, 100, bottle 665531000168105 Truetrack diagnostic strip, 100 48611011000036109 Truetrack diagnostic strip 51691000168108 Truetrack 51691000168108 Truetrack 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +933229611000036108 Morphine Sulfate MR (Apotex) 100 mg modified release tablet, 28, blister pack 132258 933223641000036107 Morphine Sulfate MR (Apotex) 100 mg modified release tablet, 28 933219691000036108 Morphine Sulfate MR (Apotex) 100 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 929758011000036101 morphine sulfate pentahydrate 100 mg modified release tablet, 28 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +60662011000036108 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 200 mL, bottle 38572 56620011000036106 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 200 mL 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 63472011000036104 benzydamine hydrochloride 0.15% mouthwash, 200 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +37644011000036105 Surmontil 25 mg uncoated tablet, 50, blister pack 27562 36910011000036107 Surmontil 25 mg uncoated tablet, 50 36242011000036103 Surmontil 25 mg uncoated tablet 35939011000036105 Surmontil 35939011000036105 Surmontil 38795011000036104 trimipramine maleate 25 mg tablet, 50 38007011000036105 trimipramine maleate 25 mg tablet 37752011000036108 trimipramine +684271000168106 Flixonase Nasule 400 microgram/0.4 mL nasal drops solution, 28 x 0.4 mL unit doses, ampoule 71294 72491000036107 Flixonase Nasule 400 microgram/0.4 mL nasal drops solution, 28 x 0.4 mL unit doses 69561000036104 Flixonase Nasule 400 microgram/0.4 mL nasal drops solution, 0.4 mL unit dose 62421000168109 Flixonase Nasule 62421000168109 Flixonase Nasule 72501000036100 fluticasone propionate 400 microgram/0.4 mL nasal drops, 28 x 0.4 mL unit doses 69571000036107 fluticasone propionate 400 microgram/0.4 mL nasal drops, unit dose 861061000168102 fluticasone propionate +60509011000036105 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 24, blister pack 119158 56467011000036100 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 24 53931011000036109 Ibuprofen (Pharmacist) 200 mg film-coated tablet 53148011000036103 Ibuprofen (Pharmacist) 53148011000036103 Ibuprofen (Pharmacist) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60509011000036105 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 24, blister pack 151123 56467011000036100 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 24 53931011000036109 Ibuprofen (Pharmacist) 200 mg film-coated tablet 53148011000036103 Ibuprofen (Pharmacist) 53148011000036103 Ibuprofen (Pharmacist) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +18274011000036100 Lanvis 40 mg uncoated tablet, 25, bottle 11110 11420011000036103 Lanvis 40 mg uncoated tablet, 25 5575011000036100 Lanvis 40 mg uncoated tablet 4436011000036106 Lanvis 4436011000036106 Lanvis 26641011000036107 tioguanine 40 mg tablet, 25 22047011000036109 tioguanine 40 mg tablet 21619011000036101 tioguanine +55231000036103 Zolpidem Tartrate (Lupin) 10 mg film-coated tablet, 14, blister pack 135016 51031000036105 Zolpidem Tartrate (Lupin) 10 mg film-coated tablet, 14 49241000036109 Zolpidem Tartrate (Lupin) 10 mg film-coated tablet 48281000036108 Zolpidem Tartrate (Lupin) 48281000036108 Zolpidem Tartrate (Lupin) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +25251000036107 Amoxycillin (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 76232 23031000036105 Amoxycillin (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL 20421000036109 Amoxycillin (GenRx) 125 mg/5 mL powder for oral liquid, 5 mL 3646011000036109 Amoxycillin (GenRx) 3646011000036109 Amoxycillin (GenRx) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +25251000036107 Amoxycillin (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 97625 23031000036105 Amoxycillin (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL 20421000036109 Amoxycillin (GenRx) 125 mg/5 mL powder for oral liquid, 5 mL 3646011000036109 Amoxycillin (GenRx) 3646011000036109 Amoxycillin (GenRx) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +147381000036105 Benefiber 1 g/g powder for oral liquid, 155 g, jar 144601000036103 Benefiber 1 g/g powder for oral liquid, 155 g 143551000036104 Benefiber 1 g/g powder for oral liquid 143351000036106 Benefiber 143351000036106 Benefiber 144611000036101 wheat dextrin 1 g/g powder for oral liquid, 155 g 143561000036101 wheat dextrin 1 g/g powder for oral liquid 146531000036100 wheat dextrin +77420011000036105 Diabex XR 500 mg modified release tablet, 120, blister pack 98982 76836011000036101 Diabex XR 500 mg modified release tablet, 120 7586011000036104 Diabex XR 500 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +60132011000036100 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 20, blister pack 127745 56091011000036100 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 20 53786011000036101 Naproxen Sodium (Priceline) 275 mg film-coated tablet 53286011000036107 Naproxen Sodium (Priceline) 53286011000036107 Naproxen Sodium (Priceline) 63677011000036100 naproxen sodium 275 mg tablet, 20 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +930561000168104 Cavstat 5 mg film-coated tablet, 50, blister pack 234543 930551000168101 Cavstat 5 mg film-coated tablet, 50 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930541000168103 rosuvastatin 5 mg tablet, 50 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1011141000168102 Montelukast (Apotex) 10 mg film-coated tablet, 4, blister pack 170245 1011131000168106 Montelukast (Apotex) 10 mg film-coated tablet, 4 1011121000168108 Montelukast (Apotex) 10 mg film-coated tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 46543011000036101 montelukast 10 mg tablet, 4 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +43598011000036106 Voltfast 50 mg powder for oral liquid, 3 sachets 123192 41297011000036108 Voltfast 50 mg powder for oral liquid, 3 sachets 39846011000036102 Voltfast 50 mg powder for oral liquid, 50 mg sachet 39682011000036104 Voltfast 39682011000036104 Voltfast 46232011000036101 diclofenac potassium 50 mg powder for oral liquid, 3 sachets 45038011000036107 diclofenac potassium 50 mg powder for oral liquid, sachet 21288011000036105 diclofenac +34714011000036103 Methadone Hydrochloride Syrup (Orion) 1.25 mg/mL oral liquid solution, 20 mL, bottle 21166 34298011000036103 Methadone Hydrochloride Syrup (Orion) 1.25 mg/mL oral liquid solution, 20 mL 34021011000036106 Methadone Hydrochloride Syrup (Orion) 1.25 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35147011000036101 methadone hydrochloride 1.25 mg/mL oral liquid, 20 mL 34869011000036100 methadone hydrochloride 1.25 mg/mL oral liquid 21357011000036109 methadone +17776011000036106 Pulmicort Respule 500 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 10072 11165011000036101 Pulmicort Respule 500 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 6012011000036103 Pulmicort Respule 500 microgram/2 mL inhalation solution, 2 mL ampoule 25381000168103 Pulmicort Respule 25381000168103 Pulmicort Respule 26551011000036101 budesonide 500 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 21960011000036107 budesonide 500 microgram/2 mL inhalation solution, ampoule 21307011000036104 budesonide +888821000168105 Bosentan (Astron) 125 mg film-coated tablet, 112, blister pack 235886 888811000168103 Bosentan (Astron) 125 mg film-coated tablet, 112 888701000168108 Bosentan (Astron) 125 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884111000168102 bosentan 125 mg tablet, 112 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +170891000036101 Janumet XR 50/1000 modified release tablet, 56, bottle 205317 170111000036101 Janumet XR 50/1000 modified release tablet, 56 169081000036108 Janumet XR 50/1000 modified release tablet 50261000168105 Janumet XR 50/1000 50261000168105 Janumet XR 50/1000 170121000036108 sitagliptin 50 mg + metformin hydrochloride 1 g modified release tablet, 56 169091000036105 sitagliptin 50 mg + metformin hydrochloride 1 g modified release tablet 79094011000036105 sitagliptin + metformin +926742011000036107 Nicotine (Guardian) 21 mg/24 hours patch, 7, sachet 114848 926094011000036107 Nicotine (Guardian) 21 mg/24 hours patch, 7 925637011000036101 Nicotine (Guardian) 21 mg/24 hours patch 924357011000036102 Nicotine (Guardian) 924357011000036102 Nicotine (Guardian) 27923011000036105 nicotine 21 mg/24 hours patch, 7 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +901661000168103 Amisulpride (CH) 400 mg uncoated tablet, 30, blister pack 234703 901651000168100 Amisulpride (CH) 400 mg uncoated tablet, 30 901631000168106 Amisulpride (CH) 400 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 901641000168102 amisulpride 400 mg tablet, 30 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +933213441000036102 Citalopram (IPCA) 10 mg film-coated tablet, 14, blister pack 158868 933203001000036106 Citalopram (IPCA) 10 mg film-coated tablet, 14 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1021331000168104 Voriconazole (Apo) 50 mg film-coated tablet, 14, blister pack 238281 1021321000168102 Voriconazole (Apo) 50 mg film-coated tablet, 14 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46813011000036107 voriconazole 50 mg tablet, 14 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +888781000168100 Bosentan (Astron) 125 mg film-coated tablet, 14, blister pack 235886 888771000168103 Bosentan (Astron) 125 mg film-coated tablet, 14 888701000168108 Bosentan (Astron) 125 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884061000168103 bosentan 125 mg tablet, 14 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +116341000036107 Citalopram (GA) 40 mg film-coated tablet, 28, blister pack 158916 114681000036102 Citalopram (GA) 40 mg film-coated tablet, 28 112941000036109 Citalopram (GA) 40 mg film-coated tablet 933219141000036105 Citalopram (GA) 933219141000036105 Citalopram (GA) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +37481011000036102 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 50 x 1 mL ampoules 12582 36749011000036100 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 50 x 1 mL ampoules 36095011000036109 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, ampoule 20251000168109 Isuprel 20251000168109 Isuprel 38657011000036105 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, 50 x 1 mL ampoules 37908011000036107 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, ampoule 37784011000036105 isoprenaline +891631000168101 Bicor 3.75 mg film-coated tablet, 100, blister pack 81605 891621000168104 Bicor 3.75 mg film-coated tablet, 100 891491000168100 Bicor 3.75 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 874891000168105 bisoprolol fumarate 3.75 mg tablet, 100 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +880121000168102 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet, 100, blister pack 215350 880111000168109 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet, 100 880061000168108 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +753351000168106 Oxycodone (ZP) 10 mg hard capsule, 20, bottle 227827 753341000168109 Oxycodone (ZP) 10 mg hard capsule, 20 753331000168100 Oxycodone (ZP) 10 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +121721000036100 Zaltrap 100 mg/4 mL concentrated injection, 4 mL vial 195234 120771000036107 Zaltrap 100 mg/4 mL concentrated injection, 4 mL vial 119451000036105 Zaltrap 100 mg/4 mL concentrated injection, 4 mL vial 119191000036108 Zaltrap 119191000036108 Zaltrap 120781000036109 aflibercept 100 mg/4 mL injection, 4 mL vial 119461000036108 aflibercept 100 mg/4 mL injection, vial 82551000036105 aflibercept +86176011000036107 Lisinopril (Sandoz) 5 mg uncoated tablet, 30, blister pack 76045 85783011000036101 Lisinopril (Sandoz) 5 mg uncoated tablet, 30 85397011000036105 Lisinopril (Sandoz) 5 mg uncoated tablet 79351011000036102 Lisinopril (Sandoz) 79351011000036102 Lisinopril (Sandoz) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +68742011000036107 Deep Heat Sport Pain Relief Spray pressurised spray, 100 g, aerosol can 12823 66718011000036108 Deep Heat Sport Pain Relief Spray pressurised spray, 100 g 65270011000036108 Deep Heat Sport Pain Relief Spray pressurised spray 65086011000036108 Deep Heat Sport Pain Relief Spray 65086011000036108 Deep Heat Sport Pain Relief Spray 71400011000036104 methyl nicotinate 1.6% + hydroxyethyl salicylate 5% + methyl salicylate 1% + ethyl salicylate 5% spray, 100 g 69995011000036101 methyl nicotinate 1.6% + hydroxyethyl salicylate 5% + methyl salicylate 1% + ethyl salicylate 5% spray 69875011000036103 methyl nicotinate + glycol + methyl salicylate + ethyl salicylate +69213011000036102 Chlorhexidine Acetate (Baxter) 0.02% (20 mg/100 mL) irrigation solution, 100 mL bottle 19459 67013011000036100 Chlorhexidine Acetate (Baxter) 0.02% (20 mg/100 mL) irrigation solution, 100 mL bottle 65335011000036107 Chlorhexidine Acetate (Baxter) 0.02% (20 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71583011000036100 chlorhexidine acetate 0.02% (20 mg/100 mL) solution, 100 mL bottle 70077011000036109 chlorhexidine acetate 0.02% (20 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +925256011000036101 Sumatriptan (LAPL) 100 mg film-coated tablet, 2, blister pack 160192 924793011000036101 Sumatriptan (LAPL) 100 mg film-coated tablet, 2 924488011000036102 Sumatriptan (LAPL) 100 mg film-coated tablet 924381011000036100 Sumatriptan (LAPL) 924381011000036100 Sumatriptan (LAPL) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +1064471000168101 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 10, blister pack 202702 1064461000168107 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 10 1064451000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 63865011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 10 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +949251000168105 Risperidone (WT) 4 mg film-coated tablet, 60, bottle 127911 949241000168108 Risperidone (WT) 4 mg film-coated tablet, 60 949231000168104 Risperidone (WT) 4 mg film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +1041431000168107 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device 96236 1041421000168109 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device 1041401000168100 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device 47151000168100 Gonal-F Pen 47151000168100 Gonal-F Pen 1041411000168102 follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, 0.75 mL injection device 1041391000168102 follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, injection device 21352011000036107 follitropin alfa +933114011000036109 Lamictal 200 mg tablet, 56, blister pack 46264 932916011000036105 Lamictal 200 mg tablet, 56 932765011000036105 Lamictal 200 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +933114011000036109 Lamictal 200 mg tablet, 56, blister pack 57262 932916011000036105 Lamictal 200 mg tablet, 56 932765011000036105 Lamictal 200 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +146331000036109 Sevikar HCT 40/5/25 film-coated tablet, 10, blister pack 199007 145051000036109 Sevikar HCT 40/5/25 film-coated tablet, 10 143651000036100 Sevikar HCT 40/5/25 film-coated tablet 58551000168107 Sevikar HCT 40/5/25 58551000168107 Sevikar HCT 40/5/25 145061000036107 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 25 mg tablet, 10 143661000036102 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 25 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +59571000036102 Pantoprazole (Stada) 40 mg enteric tablet, 30, blister pack 153797 58731000036103 Pantoprazole (Stada) 40 mg enteric tablet, 30 58201000036104 Pantoprazole (Stada) 40 mg enteric tablet 58051000036109 Pantoprazole (Stada) 58051000036109 Pantoprazole (Stada) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +69693011000036103 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 1% gel, 50 g, tube 90311 67492011000036104 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 1% gel, 50 g 65682011000036101 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 1% gel 39011000168108 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 39011000168108 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +753391000168101 Oxycodone (ZP) 10 mg hard capsule, 60, blister pack 227848 753361000168108 Oxycodone (ZP) 10 mg hard capsule, 60 753331000168100 Oxycodone (ZP) 10 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +18411011000036105 Simvastatin (RL) 80 mg film-coated tablet, 30, blister pack 116826 11546011000036108 Simvastatin (RL) 80 mg film-coated tablet, 30 4769011000036101 Simvastatin (RL) 80 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +104421000036102 Irbesartan (DRLA) 75 mg film-coated tablet, 30, bottle 190500 101601000036108 Irbesartan (DRLA) 75 mg film-coated tablet, 30 99001000036107 Irbesartan (DRLA) 75 mg film-coated tablet 97871000036100 Irbesartan (DRLA) 97871000036100 Irbesartan (DRLA) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +903191000168104 Bicalutamide (Astron) 50 mg film-coated tablet, 28, blister pack 273901 903181000168102 Bicalutamide (Astron) 50 mg film-coated tablet, 28 903171000168100 Bicalutamide (Astron) 50 mg film-coated tablet 903131000168103 Bicalutamide (Astron) 903131000168103 Bicalutamide (Astron) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +50202011000036106 Cutinova Hydro (66047441) 5 cm x 6 cm dressing, 10, carton 49397011000036105 Cutinova Hydro (66047441) 5 cm x 6 cm dressing, 10 48662011000036102 Cutinova Hydro (66047441) 5 cm x 6 cm dressing 42941000168103 Cutinova Hydro (66047441) 42941000168103 Cutinova Hydro (66047441) 51367011000036108 dressing hydroactive superficial wound moderate exudate 5 cm x 6 cm dressing, 10 50889011000036107 dressing hydroactive superficial wound moderate exudate 5 cm x 6 cm dressing 50754011000036102 dressing hydroactive superficial wound moderate exudate +20723011000036108 Celapram 20 mg film-coated tablet, 28, blister pack 82904 13893011000036100 Celapram 20 mg film-coated tablet, 28 7179011000036106 Celapram 20 mg film-coated tablet 3143011000036102 Celapram 3143011000036102 Celapram 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +666911000168100 Tramadol Hydrochloride SR (AN) 150 mg modified release tablet, 20, blister pack 190052 666901000168103 Tramadol Hydrochloride SR (AN) 150 mg modified release tablet, 20 666891000168102 Tramadol Hydrochloride SR (AN) 150 mg modified release tablet 666851000168107 Tramadol Hydrochloride SR (AN) 666851000168107 Tramadol Hydrochloride SR (AN) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +759151000168105 Mersyndol uncoated tablet, 40, blister pack 10110 759141000168108 Mersyndol uncoated tablet, 40 53685011000036102 Mersyndol uncoated tablet 50611000168105 Mersyndol 50611000168105 Mersyndol 28971000036104 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 40 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1034241000168102 Fem V 3 Day (Amcal) 2% vaginal cream, 20 g, tube 209486 1034231000168106 Fem V 3 Day (Amcal) 2% vaginal cream, 20 g 1034221000168108 Fem V 3 Day (Amcal) 2% vaginal cream 1034161000168109 Fem V 3 Day (Amcal) 1034161000168109 Fem V 3 Day (Amcal) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +35682011000036107 Gabapentin (Pharmacor) 800 mg film-coated tablet, 500, bottle 131519 35586011000036102 Gabapentin (Pharmacor) 800 mg film-coated tablet, 500 35489011000036104 Gabapentin (Pharmacor) 800 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 35777011000036108 gabapentin 800 mg tablet, 500 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +933239321000036105 Prozine (Pharmacor) 5 mg uncoated tablet, 25, blister pack 172127 933236571000036105 Prozine (Pharmacor) 5 mg uncoated tablet, 25 933234621000036100 Prozine (Pharmacor) 5 mg uncoated tablet 933234271000036104 Prozine (Pharmacor) 933234271000036104 Prozine (Pharmacor) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +61159011000036101 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 100 mL, bottle 74631 57102011000036101 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 100 mL 54198011000036107 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +121681000036108 Fresofol 1% MCT/LCT 200 mg/20 mL injection emulsion, 5 x 20 mL vials 193607 120691000036103 Fresofol 1% MCT/LCT 200 mg/20 mL injection emulsion, 5 x 20 mL vials 119391000036106 Fresofol 1% MCT/LCT 200 mg/20 mL injection emulsion, 20 mL vial 16441000168100 Fresofol 1% MCT/LCT 16441000168100 Fresofol 1% MCT/LCT 927311011000036108 propofol 200 mg/20 mL injection, 5 x 20 mL vials 38040011000036103 propofol 200 mg/20 mL injection, vial 37750011000036109 propofol +69376011000036108 Microshield-4 4% solution, 500 mL, bottle 30944 67176011000036109 Microshield-4 4% solution, 500 mL 65560011000036106 Microshield-4 4% solution 32231000168100 Microshield-4 32231000168100 Microshield-4 71738011000036102 chlorhexidine gluconate 4% solution, 500 mL 70178011000036100 chlorhexidine gluconate 4% solution 21404011000036101 chlorhexidine +763421000168103 Zinnat 125 mg/5 mL powder for oral liquid, 50 mL, bottle 81297 763411000168105 Zinnat 125 mg/5 mL powder for oral liquid, 50 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763401000168107 cefuroxime 125 mg/5 mL powder for oral liquid, 50 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +763421000168103 Zinnat 125 mg/5 mL powder for oral liquid, 50 mL, bottle 178687 763411000168105 Zinnat 125 mg/5 mL powder for oral liquid, 50 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763401000168107 cefuroxime 125 mg/5 mL powder for oral liquid, 50 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +146171000036108 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet, 96, blister pack 196020 145251000036103 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet, 96 143431000036106 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet 143441000036101 Ibuprofen (Pharmacy Action) 143441000036101 Ibuprofen (Pharmacy Action) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +19045011000036107 Isordil 10 mg uncoated tablet, 100, bottle 40258 12353011000036102 Isordil 10 mg uncoated tablet, 100 5678011000036103 Isordil 10 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 27133011000036109 isosorbide dinitrate 10 mg tablet, 100 22498011000036106 isosorbide dinitrate 10 mg tablet 21865011000036107 isosorbide dinitrate +87717011000036108 Galantyl 24 mg modified release capsule, 30, bottle 157937 87456011000036108 Galantyl 24 mg modified release capsule, 30 87318011000036108 Galantyl 24 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 46982011000036108 galantamine 24 mg modified release capsule, 30 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +1110551000168107 Nicotinell Ice Mint 4 mg chewing gum, 216, blister pack 279616 1110541000168105 Nicotinell Ice Mint 4 mg chewing gum, 216 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897451000168100 nicotine 4 mg gum, 216 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +734661000168103 Ibuprofen plus Codeine (Apohealth) film-coated tablet, 20, blister pack 227876 734651000168100 Ibuprofen plus Codeine (Apohealth) film-coated tablet, 20 734641000168102 Ibuprofen plus Codeine (Apohealth) film-coated tablet 734591000168106 Ibuprofen plus Codeine (Apohealth) 734591000168106 Ibuprofen plus Codeine (Apohealth) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +43889011000036103 Neupro 2 mg/24 hours patch, 28, sachet 131370 41381011000036109 Neupro 2 mg/24 hours patch, 28 39798011000036108 Neupro 2 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46278011000036100 rotigotine 2 mg/24 hours patch, 28 45051011000036104 rotigotine 2 mg/24 hours patch 44880011000036107 rotigotine +698661000168105 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices 214197 698651000168108 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices 698631000168102 Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL injection device 686381000168107 Plegridy 686381000168107 Plegridy 698641000168106 peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL injection devices 698621000168100 peginterferon beta-1a 125 microgram/0.5 mL injection, injection device 698561000168109 peginterferon beta-1a +1015481000168103 Letrozole (Apo) 2.5 mg film-coated tablet, 100, bottle 163830 1015471000168101 Letrozole (Apo) 2.5 mg film-coated tablet, 100 3211000036104 Letrozole (Apo) 2.5 mg film-coated tablet 63331000168105 Letrozole (Apo) 63331000168105 Letrozole (Apo) 1015461000168107 letrozole 2.5 mg tablet, 100 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +18410011000036103 Sustanon 100 injection solution, 1 mL ampoule 14520 12040011000036109 Sustanon 100 injection solution, 1 mL ampoule 4471011000036104 Sustanon 100 injection solution, ampoule 2919011000036103 Sustanon 100 2919011000036103 Sustanon 100 26872011000036108 testosterone propionate 20 mg/mL + testosterone phenylpropionate 40 mg/mL + testosterone isocaproate 40 mg/mL injection, 1 mL ampoule 22251011000036107 testosterone propionate 20 mg/mL + testosterone phenylpropionate 40 mg/mL + testosterone isocaproate 40 mg/mL injection, ampoule 21706011000036101 testosterone propionate + testosterone phenylpropionate + testosterone isocaproate +60688011000036108 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 500 mL, bottle 42870 56646011000036106 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 500 mL 54019011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 63483011000036101 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash, 500 mL 61990011000036104 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash 61818011000036107 benzydamine + chlorhexidine +848451000168108 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack, composite pack 222686 848441000168106 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack 848371000168106 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet 692191000168105 Alendronate Plus D3 Calcium (Actavis) 692151000168100 Calcium (Actavis) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +848451000168108 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack, composite pack 222686 848441000168106 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack 692121000168108 Alendronate D3 70 mg/140 microgram (Actavis) uncoated tablet 692191000168105 Alendronate Plus D3 Calcium (Actavis) 692111000168101 Alendronate D3 70 mg/140 microgram (Actavis) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +68699011000036103 Nicotinell Fruit 2 mg chewing gum, 192, blister pack 126013 66687011000036101 Nicotinell Fruit 2 mg chewing gum, 192 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71513011000036102 nicotine 2 mg gum, 192 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +949191000168108 Risperidone (WT) 6 mg film-coated tablet, 60, blister pack 127912 949171000168107 Risperidone (WT) 6 mg film-coated tablet, 60 949161000168101 Risperidone (WT) 6 mg film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 929205011000036107 risperidone 6 mg tablet, 60 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +736031000168109 Famciclovir Once (Apohealth) 500 mg film-coated tablet, 3, blister pack 201911 736021000168106 Famciclovir Once (Apohealth) 500 mg film-coated tablet, 3 736011000168104 Famciclovir Once (Apohealth) 500 mg film-coated tablet 736001000168102 Famciclovir Once (Apohealth) 736001000168102 Famciclovir Once (Apohealth) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +55391000036106 Rebetol 200 mg hard capsule, 140, blister pack 155098 51861000036107 Rebetol 200 mg hard capsule, 140 7298011000036106 Rebetol 200 mg hard capsule 3301011000036102 Rebetol 3301011000036102 Rebetol 51871000036104 ribavirin 200 mg capsule, 140 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +18744011000036107 Imodium 2 mg hard capsule, 12, blister pack 13303 11956011000036103 Imodium 2 mg hard capsule, 12 5937011000036101 Imodium 2 mg hard capsule 3950011000036109 Imodium 3950011000036109 Imodium 27212011000036107 loperamide hydrochloride 2 mg capsule, 12 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +908971000168107 Celecoxib (Bellwether) 200 mg hard capsule, 10, blister pack 196186 908961000168101 Celecoxib (Bellwether) 200 mg hard capsule, 10 908951000168103 Celecoxib (Bellwether) 200 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +69076011000036109 Intralipid 10% (50 g/500 mL) intravenous infusion injection, 10 x 500 mL bottles 14471 66877011000036104 Intralipid 10% (50 g/500 mL) intravenous infusion injection, 10 x 500 mL bottles 65507011000036108 Intralipid 10% (50 g/500 mL) intravenous infusion injection, 500 mL bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71481011000036105 soya oil 10% (50 g/500 mL) injection, 10 x 500 mL bottles 70027011000036108 soya oil 10% (50 g/500 mL) injection, bottle 69767011000036104 soya oil +753231000168107 Oxycodone (GX) 5 mg hard capsule, 20, bottle 227853 753191000168103 Oxycodone (GX) 5 mg hard capsule, 20 753181000168101 Oxycodone (GX) 5 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +759081000168104 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18770 759071000168102 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 759051000168106 Yellow Jacket Venom (Albey) (yellow jacket venom 550 microgram) powder for injection, 550 microgram vial 40191000168109 Yellow Jacket Venom (Albey) 40191000168109 Yellow Jacket Venom (Albey) 759061000168108 yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 759041000168109 yellow jacket venom 550 microgram injection, vial 759031000168100 yellow jacket venom +759081000168104 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18770 759071000168102 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758831000168104 Albumin Saline (Stallergenes) (inert substance) diluent, 1.8 mL vial 40191000168109 Yellow Jacket Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 759061000168108 yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638511000168101 inert substance diluent, 1.8 mL vial 21220011000036103 inert substance +759081000168104 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18770 759071000168102 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 40191000168109 Yellow Jacket Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 759061000168108 yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638491000168106 inert substance diluent, 9 mL vial 21220011000036103 inert substance +1034281000168107 Atomoxetine (CH) 60 mg hard capsule, 56, blister pack 234839 1034271000168109 Atomoxetine (CH) 60 mg hard capsule, 56 1034171000168103 Atomoxetine (CH) 60 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830311000168102 atomoxetine 60 mg capsule, 56 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +928989011000036109 Valaciclovir (Chemmart) 500 mg film-coated tablet, 30, blister pack 158913 928350011000036104 Valaciclovir (Chemmart) 500 mg film-coated tablet, 30 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +690031000168106 Digifab 40 mg powder for injection, 1 vial 203623 690021000168108 Digifab 40 mg powder for injection, 1 vial 690001000168104 Digifab 40 mg powder for injection, 40 mg vial 689981000168103 Digifab 689981000168103 Digifab 690011000168101 digoxin-specific antibody fragment F(Ab) 40 mg injection, 1 vial 689991000168100 digoxin-specific antibody fragment F(Ab) 40 mg injection, vial 37720011000036105 digoxin-specific antibody fragment F(Ab) +77256011000036106 Dronalen Plus 70 mg/140 microgram uncoated tablet, 4, blister pack 153488 76672011000036108 Dronalen Plus 70 mg/140 microgram uncoated tablet, 4 76104011000036108 Dronalen Plus 70 mg/140 microgram uncoated tablet 46201000168105 Dronalen Plus 70 mg/140 microgram 46201000168105 Dronalen Plus 70 mg/140 microgram 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +834071000168100 Domperidone (Apo) 10 mg uncoated tablet, 25, blister pack 242333 834061000168106 Domperidone (Apo) 10 mg uncoated tablet, 25 834051000168109 Domperidone (Apo) 10 mg uncoated tablet 834041000168107 Domperidone (Apo) 834041000168107 Domperidone (Apo) 27065011000036109 domperidone 10 mg tablet, 25 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +888661000168101 Bosentan (Intas) 62.5 mg film-coated tablet, 56, blister pack 235897 888651000168103 Bosentan (Intas) 62.5 mg film-coated tablet, 56 888071000168100 Bosentan (Intas) 62.5 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +982361000168103 Maxalt 5 mg wafer, 3, blister pack 69077 982351000168100 Maxalt 5 mg wafer, 3 982301000168104 Maxalt 5 mg wafer 83225011000036106 Maxalt 83225011000036106 Maxalt 982341000168102 rizatriptan 5 mg wafer, 3 982291000168100 rizatriptan 5 mg wafer 83422011000036102 rizatriptan +923867011000036106 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 30, bottle 163762 923427011000036107 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 30 923078011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 28127011000036106 lercanidipine hydrochloride 20 mg tablet, 30 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +933229521000036102 MMA/PA Anamix Infant powder for oral liquid, 400 g, can 933223241000036105 MMA/PA Anamix Infant powder for oral liquid, 400 g 933219431000036105 MMA/PA Anamix Infant powder for oral liquid 821000168101 MMA/PA Anamix Infant 821000168101 MMA/PA Anamix Infant 51445011000036104 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 400 g 50959011000036106 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +904721000168103 Amisulpride (AJS) 50 mg uncoated tablet, 90, blister pack 234696 904711000168105 Amisulpride (AJS) 50 mg uncoated tablet, 90 904581000168105 Amisulpride (AJS) 50 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1070171000168105 Rapideine Caplets film-coated tablet, 96, blister pack 83328 1070161000168104 Rapideine Caplets film-coated tablet, 96 1070031000168106 Rapideine Caplets film-coated tablet 1070021000168108 Rapideine Caplets 1070021000168108 Rapideine Caplets 63853011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 96 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +741951000168109 Jakavi 10 mg tablet, 168, blister pack 232702 741941000168107 Jakavi 10 mg tablet, 168 741771000168102 Jakavi 10 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741931000168103 ruxolitinib 10 mg tablet, 168 741761000168108 ruxolitinib 10 mg tablet 146491000036100 ruxolitinib +787991000168103 Atelvia Once-a-Month 150 mg film-coated tablet, 3, blister pack 163755 787981000168101 Atelvia Once-a-Month 150 mg film-coated tablet, 3 787931000168102 Atelvia Once-a-Month 150 mg film-coated tablet 787921000168100 Atelvia Once-a-Month 787921000168100 Atelvia Once-a-Month 78196011000036109 risedronate sodium 150 mg tablet, 3 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +43735011000036108 Stildem 10 mg film-coated tablet, 14, blister pack 120379 41222011000036102 Stildem 10 mg film-coated tablet, 14 39843011000036108 Stildem 10 mg film-coated tablet 39634011000036101 Stildem 39634011000036101 Stildem 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +19215011000036109 Fluanxol Concentrated Depot 100 mg/mL concentrated injection, 5 x 1 mL ampoules 47107 12505011000036109 Fluanxol Concentrated Depot 100 mg/mL concentrated injection, 5 x 1 mL ampoules 4755011000036109 Fluanxol Concentrated Depot 100 mg/mL concentrated injection, ampoule 56691000168104 Fluanxol Concentrated Depot 56691000168104 Fluanxol Concentrated Depot 27159011000036106 flupentixol decanoate 100 mg/mL injection, 5 x 1 mL ampoules 22521011000036101 flupentixol decanoate 100 mg/mL injection, ampoule 21335011000036103 flupentixol decanoate +50263011000036103 Proguide (66000782) green 28 cm to 32 cm two layer bandage, 1, carton 49333011000036108 Proguide (66000782) green 28 cm to 32 cm two layer bandage, 1 48514011000036104 Proguide (66000782) green 28 cm to 32 cm two layer bandage 34141000168107 Proguide (66000782) 34141000168107 Proguide (66000782) 51314011000036101 bandage compression 28 cm to 32 cm two layer bandage, 1 50843011000036100 bandage compression 28 cm to 32 cm two layer bandage 50716011000036103 bandage compression +18120011000036106 Mirtazapine (DP) 30 mg film-coated tablet, 30, blister pack 121956 11707011000036104 Mirtazapine (DP) 30 mg film-coated tablet, 30 5550011000036107 Mirtazapine (DP) 30 mg film-coated tablet 4306011000036105 Mirtazapine (DP) 4306011000036105 Mirtazapine (DP) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +717341000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 56, blister pack 149417 717331000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 56 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716751000168106 omeprazole 20 mg enteric capsule, 56 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +1030031000168108 Atilos 15 mg uncoated tablet, 28, blister pack 173476 1030021000168105 Atilos 15 mg uncoated tablet, 28 1029961000168107 Atilos 15 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +1032681000168100 Atomoxetine (GXP) 40 mg hard capsule, 56, blister pack 234837 1032671000168103 Atomoxetine (GXP) 40 mg hard capsule, 56 1032531000168100 Atomoxetine (GXP) 40 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830721000168108 atomoxetine 40 mg capsule, 56 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +19542011000036102 Zyprexa 10 mg film-coated tablet, 28, blister pack 56606 12814011000036106 Zyprexa 10 mg film-coated tablet, 28 6105011000036100 Zyprexa 10 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +19712011000036108 Holoxan 2 g powder for injection, 1 vial 43609 12968011000036106 Holoxan 2 g powder for injection, 1 vial 6257011000036102 Holoxan 2 g powder for injection, 2 g vial 3908011000036104 Holoxan 3908011000036104 Holoxan 27477011000036103 ifosfamide 2 g injection, 1 vial 22823011000036104 ifosfamide 2 g injection, vial 21291011000036102 ifosfamide +19712011000036108 Holoxan 2 g powder for injection, 1 vial 61036 12968011000036106 Holoxan 2 g powder for injection, 1 vial 6257011000036102 Holoxan 2 g powder for injection, 2 g vial 3908011000036104 Holoxan 3908011000036104 Holoxan 27477011000036103 ifosfamide 2 g injection, 1 vial 22823011000036104 ifosfamide 2 g injection, vial 21291011000036102 ifosfamide +61143011000036102 Codral Original Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24, blister pack 73421 57086011000036108 Codral Original Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24 54190011000036105 Codral Original Cold and Flu plus Cough (Night) hard capsule 36671000168104 Codral Original Cold and Flu plus Cough Day and Night 36791000168109 Codral Original Cold and Flu plus Cough (Night) 63733011000036100 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 62063011000036103 paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61767011000036105 paracetamol + chlorphenamine + dextromethorphan +61143011000036102 Codral Original Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24, blister pack 73421 57086011000036108 Codral Original Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24 54191011000036103 Codral Original Cold and Flu plus Cough (Day) hard capsule 36671000168104 Codral Original Cold and Flu plus Cough Day and Night 36911000168102 Codral Original Cold and Flu plus Cough (Day) 63733011000036100 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 62064011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +880191000168100 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet, 100, blister pack 215374 880181000168103 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet, 100 880131000168104 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +933230661000036100 Valaciclovir (Generic Health) 500 mg film-coated tablet, 30, blister pack 170178 933224751000036103 Valaciclovir (Generic Health) 500 mg film-coated tablet, 30 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +83193011000036103 Vaxigrip 2010 injection solution, 10 x 0.5 mL syringes 80198 83139011000036108 Vaxigrip 2010 injection solution, 10 x 0.5 mL syringes 83080011000036104 Vaxigrip 2010 injection solution, 0.5 mL syringe 21781000168101 Vaxigrip 2010 21781000168101 Vaxigrip 2010 83212011000036108 influenza trivalent adult vaccine 2010 injection, 10 x 0.5 mL syringes 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +802421000168107 Abilify ODT 10 mg orally disintegrating tablet, 10, blister pack 128893 802411000168100 Abilify ODT 10 mg orally disintegrating tablet, 10 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802401000168103 aripiprazole 10 mg orally disintegrating tablet, 10 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +86150011000036107 Nurofen Zavance Liquid Capsule 200 mg soft capsule, 10, blister pack 163477 85758011000036103 Nurofen Zavance Liquid Capsule 200 mg soft capsule, 10 85377011000036101 Nurofen Zavance Liquid Capsule 200 mg soft capsule 1251000168106 Nurofen Zavance Liquid Capsule 1251000168106 Nurofen Zavance Liquid Capsule 63926011000036103 ibuprofen 200 mg capsule, 10 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +1087431000168106 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 2, blister pack 283196 1087421000168108 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 2 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087411000168101 ibuprofen 400 mg tablet, 2 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1038461000168105 Vimpat 200 mg film-coated tablet, 168, blister pack 196452 1038451000168108 Vimpat 200 mg film-coated tablet, 168 83629011000036105 Vimpat 200 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 1038441000168106 lacosamide 200 mg tablet, 168 84429011000036109 lacosamide 200 mg tablet 84408011000036109 lacosamide +69212011000036109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 10 x 1 L bottles 19458 67012011000036107 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 10 x 1 L bottles 65239011000036104 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 1 L bottle 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 71582011000036107 chlorhexidine acetate 0.015% (150 mg/L) + cetrimide 0.15% (1.5 g/L) solution, 10 x 1 L bottles 70076011000036106 chlorhexidine acetate 0.015% (150 mg/L) + cetrimide 0.15% (1.5 g/L) solution, bottle 69756011000036105 chlorhexidine + cetrimide +44779011000036105 Reminyl (28 x 8 mg capsules, 28 x 16 mg capsules), 56, blister pack 97888 42224011000036107 Reminyl (28 x 8 mg capsules, 28 x 16 mg capsules), 56 7535011000036101 Reminyl 8 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46984011000036104 galantamine 8 mg modified release capsule [28] (&) galantamine 16 mg modified release capsule [28], 56 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +44779011000036105 Reminyl (28 x 8 mg capsules, 28 x 16 mg capsules), 56, blister pack 97888 42224011000036107 Reminyl (28 x 8 mg capsules, 28 x 16 mg capsules), 56 7536011000036108 Reminyl 16 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46984011000036104 galantamine 8 mg modified release capsule [28] (&) galantamine 16 mg modified release capsule [28], 56 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +1018311000168107 Amisulpride (Apotex) 100 mg tablet, 30, blister pack 178907 1018301000168109 Amisulpride (Apotex) 100 mg tablet, 30 1018291000168108 Amisulpride (Apotex) 100 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +69710011000036101 Claramax 5 mg film-coated tablet, 3, blister pack 91115 67509011000036102 Claramax 5 mg film-coated tablet, 3 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72025011000036108 desloratadine 5 mg tablet, 3 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +713091000168108 Javlor 250 mg/10 mL concentrated injection, 10 x 10 mL vials 166773 713081000168105 Javlor 250 mg/10 mL concentrated injection, 10 x 10 mL vials 713031000168109 Javlor 250 mg/10 mL concentrated injection, 10 mL vial 712911000168107 Javlor 712911000168107 Javlor 713071000168107 vinflunine 250 mg/10 mL injection, 10 x 10 mL vials 713021000168106 vinflunine 250 mg/10 mL injection, vial 712931000168102 vinflunine +74901011000036101 Dimetapp 12 Hour refill 0.05% nasal spray, 20 mL, bottle 72714 74388011000036102 Dimetapp 12 Hour refill 0.05% nasal spray, 20 mL 73912011000036108 Dimetapp 12 Hour refill 0.05% nasal spray 73732011000036108 Dimetapp 12 Hour 73732011000036108 Dimetapp 12 Hour 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +74816011000036101 Sudafed Nasal Decongestant refill 0.05% nasal spray, 20 mL, bottle 148398 74303011000036108 Sudafed Nasal Decongestant refill 0.05% nasal spray, 20 mL 73863011000036109 Sudafed Nasal Decongestant refill 0.05% nasal spray 73750011000036105 Sudafed Nasal Decongestant 73750011000036105 Sudafed Nasal Decongestant 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +61656011000036106 Ibuprofen (Amcal) 200 mg film-coated tablet, 24, blister pack 224608 57578011000036100 Ibuprofen (Amcal) 200 mg film-coated tablet, 24 54354011000036101 Ibuprofen (Amcal) 200 mg film-coated tablet 53505011000036108 Ibuprofen (Amcal) 53505011000036108 Ibuprofen (Amcal) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61656011000036106 Ibuprofen (Amcal) 200 mg film-coated tablet, 24, blister pack 97233 57578011000036100 Ibuprofen (Amcal) 200 mg film-coated tablet, 24 54354011000036101 Ibuprofen (Amcal) 200 mg film-coated tablet 53505011000036108 Ibuprofen (Amcal) 53505011000036108 Ibuprofen (Amcal) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +931559011000036100 Ondron 8 mg film-coated tablet, 6, blister pack 163439 930720011000036100 Ondron 8 mg film-coated tablet, 6 930027011000036102 Ondron 8 mg film-coated tablet 40221000168103 Ondron 40221000168103 Ondron 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +43888011000036106 Neupro 2 mg/24 hours patch, 100, sachet 131370 41380011000036102 Neupro 2 mg/24 hours patch, 100 39798011000036108 Neupro 2 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46277011000036101 rotigotine 2 mg/24 hours patch, 100 45051011000036104 rotigotine 2 mg/24 hours patch 44880011000036107 rotigotine +1081871000168104 Hycamtin 1 mg powder for injection, 5 vials 73355 1081861000168105 Hycamtin 1 mg powder for injection, 5 vials 1081811000168107 Hycamtin 1 mg powder for injection, vial 3973011000036103 Hycamtin 3973011000036103 Hycamtin 1081851000168108 topotecan 1 mg injection, 5 vials 1081801000168109 topotecan 1 mg injection, vial 21571011000036101 topotecan +25091000036105 Atorvastatin (Apo) 20 mg film-coated tablet, 30, blister pack 153732 22211000036100 Atorvastatin (Apo) 20 mg film-coated tablet, 30 20031000036100 Atorvastatin (Apo) 20 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +819501000168105 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 100, blister pack 184818 819491000168103 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 100 819441000168106 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 806941000168108 perindopril arginine 10 mg tablet, 100 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +1038621000168102 Atorvastatin (GA) 80 mg film-coated tablet, 10, blister pack 178523 1038611000168109 Atorvastatin (GA) 80 mg film-coated tablet, 10 1038601000168106 Atorvastatin (GA) 80 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +12501000036107 Ondansetron ODT (DRLA) 8 mg orally disintegrating tablet, 10, blister pack 163644 7361000036103 Ondansetron ODT (DRLA) 8 mg orally disintegrating tablet, 10 3141000036109 Ondansetron ODT (DRLA) 8 mg orally disintegrating tablet 47061000168102 Ondansetron ODT (DRLA) 47061000168102 Ondansetron ODT (DRLA) 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +61023011000036107 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 6, blister pack 66743 56966011000036101 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 6 54142011000036103 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 63664011000036100 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule, 6 62038011000036103 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +1086931000168102 Proxen 250 mg uncoated tablet, 50, blister pack 281277 1086921000168100 Proxen 250 mg uncoated tablet, 50 1086911000168107 Proxen 250 mg uncoated tablet 1086871000168109 Proxen 1086871000168109 Proxen 27555011000036100 naproxen 250 mg tablet, 50 22894011000036106 naproxen 250 mg tablet 21304011000036105 naproxen +69050011000036109 Senega and Ammonia Mixture (David Craig) oral liquid solution, 200 mL, bottle 14242 66852011000036103 Senega and Ammonia Mixture (David Craig) oral liquid solution, 200 mL 65337011000036102 Senega and Ammonia Mixture (David Craig) oral liquid solution 65017011000036108 Senega and Ammonia Mixture (David Craig) 65017011000036108 Senega and Ammonia Mixture (David Craig) 27010011000036101 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 200 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +933239161000036103 Fentanyl (Sandoz) 25 microgram/hour patch, 8, sachet 152569 933235841000036108 Fentanyl (Sandoz) 25 microgram/hour patch, 8 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235851000036106 fentanyl 25 microgram/hour patch, 8 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +892231000168109 Betahist 16 mg uncoated tablet, 30, blister pack 212079 892221000168106 Betahist 16 mg uncoated tablet, 30 892171000168101 Betahist 16 mg uncoated tablet 892161000168107 Betahist 892161000168107 Betahist 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1035811000168103 Atorvastatin (RBX) 20 mg film-coated tablet, 28, bottle 173509 1035801000168101 Atorvastatin (RBX) 20 mg film-coated tablet, 28 1035751000168107 Atorvastatin (RBX) 20 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890321000168104 atorvastatin 20 mg tablet, 28 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +44043011000036109 Vincristine Sulfate (Pfizer (Perth)) 5 mg/5 mL injection solution, 5 x 5 mL vials 48057 41532011000036107 Vincristine Sulfate (Pfizer (Perth)) 5 mg/5 mL injection solution, 5 x 5 mL vials 40044011000036109 Vincristine Sulfate (Pfizer (Perth)) 5 mg/5 mL injection solution, 5 mL vial 3033011000036109 Vincristine Sulfate (Pfizer (Perth)) 3033011000036109 Vincristine Sulfate (Pfizer (Perth)) 46367011000036100 vincristine sulfate 5 mg/5 mL injection, 5 x 5 mL vials 45110011000036105 vincristine sulfate 5 mg/5 mL injection, vial 21749011000036104 vincristine +879181000168103 Briviact 10 mg film-coated tablet, 56, blister pack 243794 879171000168101 Briviact 10 mg film-coated tablet, 56 879121000168102 Briviact 10 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 879161000168107 brivaracetam 10 mg tablet, 56 879111000168109 brivaracetam 10 mg tablet 876401000168109 brivaracetam +986211000168108 Canesten HC cream, 20 g, tube 251752 986201000168105 Canesten HC cream, 20 g 986111000168103 Canesten HC cream 981841000168102 Canesten HC 981841000168102 Canesten HC 751371000168103 hydrocortisone 1% + clotrimazole 1% cream, 20 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +18642011000036108 Hiprex 1 g uncoated tablet, 100, bottle 10558 11324011000036100 Hiprex 1 g uncoated tablet, 100 5692011000036106 Hiprex 1 g uncoated tablet 2978011000036104 Hiprex 2978011000036104 Hiprex 26603011000036103 methenamine hippurate 1 g tablet, 100 22011011000036106 methenamine hippurate 1 g tablet 21742011000036109 methenamine hippurate +926955011000036107 Fexotabs 180 mg film-coated tablet, 50, blister pack 98210 926349011000036103 Fexotabs 180 mg film-coated tablet, 50 925776011000036107 Fexotabs 180 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +60354011000036104 Benadryl for the Family Original oral liquid solution, 50 mL, bottle 14114 56313011000036101 Benadryl for the Family Original oral liquid solution, 50 mL 53872011000036107 Benadryl for the Family Original oral liquid solution, 5 mL 3541000168107 Benadryl for the Family Original 3541000168107 Benadryl for the Family Original 63302011000036103 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 50 mL 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +79056011000036108 Paclitaxel (Actavis) 30 mg/5 mL concentrated injection, 5 mL vial 148036 78838011000036105 Paclitaxel (Actavis) 30 mg/5 mL concentrated injection, 5 mL vial 78648011000036100 Paclitaxel (Actavis) 30 mg/5 mL concentrated injection, 5 mL vial 78596011000036102 Paclitaxel (Actavis) 78596011000036102 Paclitaxel (Actavis) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +1018611000168101 Risedronate Once a Week (Arrow) 35 mg uncoated tablet, 4, blister pack 162457 1018601000168104 Risedronate Once a Week (Arrow) 35 mg uncoated tablet, 4 1018591000168106 Risedronate Once a Week (Arrow) 35 mg uncoated tablet 1018521000168109 Risedronate Once a Week (Arrow) 1018521000168109 Risedronate Once a Week (Arrow) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +43726011000036104 Lantus 100 units/mL injection solution, 1 x 10 mL vial 122335 41271011000036107 Lantus 100 units/mL injection solution, 1 x 10 mL vial 39901011000036107 Lantus 100 units/mL injection solution, 10 mL vial 52371000168106 Lantus 52371000168106 Lantus 46206011000036105 insulin glargine 100 units/mL injection, 1 x 10 mL vial 45030011000036105 insulin glargine 100 units/mL injection, vial 21815011000036108 insulin glargine +68844011000036101 Nicotinell Fruit 2 mg chewing gum, 180, blister pack 126013 66686011000036104 Nicotinell Fruit 2 mg chewing gum, 180 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71512011000036109 nicotine 2 mg gum, 180 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +104821000036104 Irbesartan HCTZ 300/25 (Chemmart) film-coated tablet, 30, blister pack 175207 101951000036102 Irbesartan HCTZ 300/25 (Chemmart) film-coated tablet, 30 98851000036109 Irbesartan HCTZ 300/25 (Chemmart) film-coated tablet 43911000168106 Irbesartan HCTZ 300/25 (Chemmart) 43911000168106 Irbesartan HCTZ 300/25 (Chemmart) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104821000036104 Irbesartan HCTZ 300/25 (Chemmart) film-coated tablet, 30, blister pack 216082 101951000036102 Irbesartan HCTZ 300/25 (Chemmart) film-coated tablet, 30 98851000036109 Irbesartan HCTZ 300/25 (Chemmart) film-coated tablet 43911000168106 Irbesartan HCTZ 300/25 (Chemmart) 43911000168106 Irbesartan HCTZ 300/25 (Chemmart) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +68767011000036102 Pinetarsol 2.3% bath oil, 200 mL, bottle 10632 66537011000036101 Pinetarsol 2.3% bath oil, 200 mL 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71269011000036105 tar 2.3% bath oil, 200 mL 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +693091000168103 Tielle (MTL103) 18 cm x 18 cm island dressing, 5, carton 693081000168101 Tielle (MTL103) 18 cm x 18 cm island dressing, 5 693061000168105 Tielle (MTL103) 18 cm x 18 cm island dressing 693021000168100 Tielle (MTL103) 693021000168100 Tielle (MTL103) 693071000168104 dressing hydropolymer low to moderate exudate semi-permeable non-adherent adhesive absorbent foam 18 cm x 18 cm island dressing, 5 693051000168108 dressing hydropolymer low to moderate exudate semi-permeable non-adherent adhesive absorbent foam 18 cm x 18 cm island dressing 693041000168106 dressing hydropolymer low to moderate exudate semi-permeable non-adherent adhesive absorbent foam +949831000168103 Zelapar Buccal 1.25 mg orally disintegrating tablet, 60, blister pack 143060 949821000168101 Zelapar Buccal 1.25 mg orally disintegrating tablet, 60 949801000168105 Zelapar Buccal 1.25 mg orally disintegrating tablet 949781000168106 Zelapar Buccal 949781000168106 Zelapar Buccal 949811000168108 selegiline hydrochloride 1.25 mg orally disintegrating tablet, 60 949791000168109 selegiline hydrochloride 1.25 mg orally disintegrating tablet 21925011000036108 selegiline +716381000168103 Omepro 20 mg enteric capsule, 14, blister pack 149516 716371000168101 Omepro 20 mg enteric capsule, 14 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +984371000168102 Lonsurf 20/8.19 film-coated tablet, 20, blister pack 273238 984361000168108 Lonsurf 20/8.19 film-coated tablet, 20 984341000168109 Lonsurf 20/8.19 film-coated tablet 984301000168107 Lonsurf 20/8.19 984301000168107 Lonsurf 20/8.19 984351000168106 trifluridine 20 mg + tipiracil 8.19 mg tablet, 20 984331000168100 trifluridine 20 mg + tipiracil 8.19 mg tablet 984151000168108 trifluridine + tipiracil +56031000036102 Bleo 15K 15 000 international units powder for injection, 10 vials 157341 53001000036102 Bleo 15K 15 000 international units powder for injection, 10 vials 15491000036109 Bleo 15K 15 000 international units powder for injection, 15 000 international units vial 24191000168101 Bleo 15K 24191000168101 Bleo 15K 27824011000036104 bleomycin sulfate 15 000 international units injection, 10 vials 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +947961000168109 Fluvoxamine (Chemmart) 50 mg film-coated tablet, 30, blister pack 147390 947951000168107 Fluvoxamine (Chemmart) 50 mg film-coated tablet, 30 947941000168105 Fluvoxamine (Chemmart) 50 mg film-coated tablet 942861000168104 Fluvoxamine (Chemmart) 942861000168104 Fluvoxamine (Chemmart) 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +1035771000168103 Atorvastatin (RBX) 20 mg film-coated tablet, 6, blister pack 173484 1035761000168109 Atorvastatin (RBX) 20 mg film-coated tablet, 6 1035751000168107 Atorvastatin (RBX) 20 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 841281000168105 atorvastatin 20 mg tablet, 6 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1029351000168106 Ariez 5 mg film-coated tablet, 28, blister pack 175045 1029341000168109 Ariez 5 mg film-coated tablet, 28 1029331000168100 Ariez 5 mg film-coated tablet 1029291000168106 Ariez 1029291000168106 Ariez 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +19833011000036109 Atacand 8 mg uncoated tablet, 30, blister pack 64107 13084011000036103 Atacand 8 mg uncoated tablet, 30 6368011000036103 Atacand 8 mg uncoated tablet 3659011000036102 Atacand 3659011000036102 Atacand 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +982221000168102 Avandia 2 mg film-coated tablet, 28, blister pack 70964 982211000168109 Avandia 2 mg film-coated tablet, 28 982161000168101 Avandia 2 mg film-coated tablet 3736011000036100 Avandia 3736011000036100 Avandia 982201000168106 rosiglitazone 2 mg tablet, 28 982151000168103 rosiglitazone 2 mg tablet 21349011000036100 rosiglitazone +1104291000168107 Antenex 2 mg uncoated tablet, 1000, bottle 17582 1104281000168109 Antenex 2 mg uncoated tablet, 1000 32247011000036100 Antenex 2 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 1104271000168106 diazepam 2 mg tablet, 1000 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +18119011000036105 Ramipril (Sandoz) 5 mg uncoated tablet, 30, blister pack 128808 11864011000036109 Ramipril (Sandoz) 5 mg uncoated tablet, 30 5437011000036104 Ramipril (Sandoz) 5 mg uncoated tablet 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +37583011000036107 Oxsoralen 10 mg hard capsule, 100, bottle 16852 36850011000036106 Oxsoralen 10 mg hard capsule, 100 36144011000036105 Oxsoralen 10 mg hard capsule 35934011000036109 Oxsoralen 35934011000036109 Oxsoralen 38738011000036102 methoxsalen 10 mg capsule, 100 37966011000036107 methoxsalen 10 mg capsule 37735011000036104 methoxsalen +85551000036103 Razit 20 mg enteric tablet, 90, bottle 189228 84641000036103 Razit 20 mg enteric tablet, 90 84221000036108 Razit 20 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 84651000036100 rabeprazole sodium 20 mg enteric tablet, 90 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +19344011000036109 Vastin 20 mg hard capsule, 28, blister pack 51328 12632011000036100 Vastin 20 mg hard capsule, 28 5966011000036106 Vastin 20 mg hard capsule 2963011000036102 Vastin 2963011000036102 Vastin 27246011000036101 fluvastatin 20 mg capsule, 28 22605011000036101 fluvastatin 20 mg capsule 21564011000036109 fluvastatin +862001000168105 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60, bottle 79534 861991000168108 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60 861941000168100 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet 7951000168107 Caltrate 600 mg with Vitamin D 200 IU 7951000168107 Caltrate 600 mg with Vitamin D 200 IU 861981000168105 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 60 861931000168109 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet 733951000168109 calcium + colecalciferol +44403011000036105 Glyade 80 mg film-coated tablet, 20, blister pack 70433 41863011000036109 Glyade 80 mg film-coated tablet, 20 40230011000036106 Glyade 80 mg film-coated tablet 12101000168106 Glyade 12101000168106 Glyade 46668011000036105 gliclazide 80 mg tablet, 20 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +751021000168102 Alodorm 5 mg uncoated tablet, 30, blister pack 54010 751011000168109 Alodorm 5 mg uncoated tablet, 30 5420011000036103 Alodorm 5 mg uncoated tablet 4413011000036106 Alodorm 4413011000036106 Alodorm 751001000168106 nitrazepam 5 mg tablet, 30 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +19661011000036109 Endep 25 mg film-coated tablet, 50, blister pack 59788 12924011000036106 Endep 25 mg film-coated tablet, 50 6214011000036104 Endep 25 mg film-coated tablet 4195011000036109 Endep 4195011000036109 Endep 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +735551000168102 Aldara 5% cream, 250 mg sachet 64798 735541000168104 Aldara 5% cream, 250 mg sachet 6389011000036109 Aldara 5% cream, 250 mg sachet 3048011000036100 Aldara 3048011000036100 Aldara 735531000168108 imiquimod 5% cream, 250 mg sachet 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +947641000168102 Risdone 1 mg film-coated tablet, 56, blister pack 144262 947631000168106 Risdone 1 mg film-coated tablet, 56 947511000168102 Risdone 1 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947621000168108 risperidone 1 mg tablet, 56 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +909451000168103 Chorit 10 mg film-coated tablet, 100, bottle 179849 909441000168100 Chorit 10 mg film-coated tablet, 100 909391000168104 Chorit 10 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890221000168105 atorvastatin 10 mg tablet, 100 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +104741000036104 Irbesartan/HCT 150/12.5 (Sandoz) film-coated tablet, 30, bottle 174732 101921000036108 Irbesartan/HCT 150/12.5 (Sandoz) film-coated tablet, 30 99281000036109 Irbesartan/HCT 150/12.5 (Sandoz) film-coated tablet 17731000168101 Irbesartan/HCT 150/12.5 (Sandoz) 17731000168101 Irbesartan/HCT 150/12.5 (Sandoz) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +19978011000036109 Clopine 25 mg uncoated tablet, 100, blister pack 67947 14083011000036103 Clopine 25 mg uncoated tablet, 100 7361011000036108 Clopine 25 mg uncoated tablet 3146011000036108 Clopine 3146011000036108 Clopine 28135011000036104 clozapine 25 mg tablet, 100 23444011000036102 clozapine 25 mg tablet 21222011000036104 clozapine +19079011000036105 Coumadin 1 mg uncoated tablet, 50, bottle 42269 12387011000036100 Coumadin 1 mg uncoated tablet, 50 4739011000036107 Coumadin 1 mg uncoated tablet 3322011000036101 Coumadin 3322011000036101 Coumadin 27094011000036107 warfarin sodium 1 mg tablet, 50 22463011000036103 warfarin sodium 1 mg tablet 21248011000036104 warfarin +80024011000036103 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 1 x 0.5 mL syringe 133813 79969011000036102 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 1 x 0.5 mL syringe 6618011000036108 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 80064011000036105 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, 1 x 0.5 mL syringe 23035011000036108 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +44694011000036107 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack, composite pack 93044 42143011000036106 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46904011000036103 follitropin alfa 150 units (10.92 microgram) injection [50 x 150 units vials] (&) inert substance diluent [50 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44694011000036107 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack, composite pack 93044 42143011000036106 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46904011000036103 follitropin alfa 150 units (10.92 microgram) injection [50 x 150 units vials] (&) inert substance diluent [50 x 1 mL syringes], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +900451000168106 Amoxycillin (Watson) 500 mg hard capsule, 20, blister pack 198126 900441000168109 Amoxycillin (Watson) 500 mg hard capsule, 20 900431000168100 Amoxycillin (Watson) 500 mg hard capsule 900421000168103 Amoxycillin (Watson) 900421000168103 Amoxycillin (Watson) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +43649011000036101 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 10 x 100 mL bags 123041 41275011000036109 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 10 x 100 mL bags 39914011000036107 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 100 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46210011000036105 ciprofloxacin 200 mg/100 mL injection, 10 x 100 mL bags 45032011000036109 ciprofloxacin 200 mg/100 mL injection, bag 21245011000036105 ciprofloxacin +703861000168105 Temozolomide (Apo) 180 mg hard capsule, 5, bottle 231525 703851000168108 Temozolomide (Apo) 180 mg hard capsule, 5 703841000168106 Temozolomide (Apo) 180 mg hard capsule 703741000168100 Temozolomide (Apo) 703741000168100 Temozolomide (Apo) 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +1042001000168104 Atorvastatin (AS) 40 mg film-coated tablet, 10, blister pack 178541 1041991000168101 Atorvastatin (AS) 40 mg film-coated tablet, 10 1041981000168104 Atorvastatin (AS) 40 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +69444011000036105 Glucose (Baxter) 25% (250 g/L) intravenous infusion injection, 1 L bag 48521 67244011000036100 Glucose (Baxter) 25% (250 g/L) intravenous infusion injection, 1 L bag 65573011000036105 Glucose (Baxter) 25% (250 g/L) intravenous infusion injection, 1 L bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71794011000036103 glucose 25% (250 g/L) injection, 1 L bag 70189011000036102 glucose 25% (250 g/L) injection, bag 21354011000036103 glucose +18565011000036104 Eloxatin 200 mg/40 mL concentrated injection, 40 mL vial 125804 11816011000036102 Eloxatin 200 mg/40 mL concentrated injection, 40 mL vial 4922011000036107 Eloxatin 200 mg/40 mL concentrated injection, 40 mL vial 3353011000036109 Eloxatin 3353011000036109 Eloxatin 26784011000036105 oxaliplatin 200 mg/40 mL injection, 40 mL vial 22170011000036101 oxaliplatin 200 mg/40 mL injection, vial 21543011000036101 oxaliplatin +61288011000036104 Paracetamol Children 5 to 12 Years (Terry White Chemists) colour free 240 mg/5 mL oral liquid suspension, 100 mL, bottle 78613 57224011000036102 Paracetamol Children 5 to 12 Years (Terry White Chemists) colour free 240 mg/5 mL oral liquid suspension, 100 mL 54245011000036108 Paracetamol Children 5 to 12 Years (Terry White Chemists) colour free 240 mg/5 mL oral liquid suspension, 5 mL 59681000168106 Paracetamol Children 5 to 12 Years (Terry White Chemists) 59681000168106 Paracetamol Children 5 to 12 Years (Terry White Chemists) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +700029921000036103 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12349011000036102 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5052011000036109 Logynon ED (inert substance) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029921000036103 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12349011000036102 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5990011000036106 Logynon ED (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029921000036103 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12349011000036102 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 4981011000036105 Logynon ED (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029921000036103 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12349011000036102 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5905011000036100 Logynon ED (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +933230501000036103 Docetaxel (Sun) (1 x 20 mg vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 166973 933224521000036103 Docetaxel (Sun) (1 x 20 mg vial, 1 x 1 mL inert diluent vial), 1 pack 635971000168108 Docetaxel (Sun) (inert substance) diluent, 1 mL vial 933219341000036107 Docetaxel (Sun) 933219341000036107 Docetaxel (Sun) 933224531000036101 docetaxel 20 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +933230501000036103 Docetaxel (Sun) (1 x 20 mg vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 166973 933224521000036103 Docetaxel (Sun) (1 x 20 mg vial, 1 x 1 mL inert diluent vial), 1 pack 933220211000036101 Docetaxel (Sun) (docetaxel 20 mg) powder for injection, 20 mg vial 933219341000036107 Docetaxel (Sun) 933219341000036107 Docetaxel (Sun) 933224531000036101 docetaxel 20 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 933220221000036108 docetaxel 20 mg injection, vial 21721011000036101 docetaxel +33540011000036102 Vaxigrip 2008 needle free injection solution, 10 x 0.5 mL syringes 129874 33280011000036103 Vaxigrip 2008 needle free injection solution, 10 x 0.5 mL syringes 79305011000036105 Vaxigrip 2008 needle free injection solution, 0.5 mL syringe 25501000168102 Vaxigrip 2008 25501000168102 Vaxigrip 2008 33819011000036101 influenza trivalent adult vaccine 2008 injection, 10 x 0.5 mL syringes 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +1001291000168100 Pregabalin (Apo) 225 mg hard capsule, 20, bottle 193253 1001281000168103 Pregabalin (Apo) 225 mg hard capsule, 20 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903611000168100 pregabalin 225 mg capsule, 20 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +20621011000036101 Alprazolam (Chemmart) 2 mg tablet, 50, bottle 80917 13801011000036104 Alprazolam (Chemmart) 2 mg tablet, 50 7087011000036104 Alprazolam (Chemmart) 2 mg tablet 3440011000036109 Alprazolam (Chemmart) 3440011000036109 Alprazolam (Chemmart) 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +874911000168107 Beprol 3.75 mg film-coated tablet, 100, blister pack 175916 874901000168109 Beprol 3.75 mg film-coated tablet, 100 874821000168108 Beprol 3.75 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 874891000168105 bisoprolol fumarate 3.75 mg tablet, 100 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +667471000168103 Lamotrigine (AN) 25 mg tablet, 56, blister pack 147631 667461000168109 Lamotrigine (AN) 25 mg tablet, 56 667451000168107 Lamotrigine (AN) 25 mg tablet 667441000168105 Lamotrigine (AN) 667441000168105 Lamotrigine (AN) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +701311000168104 Lansoprazole ODT (Apo) 30 mg orally disintegrating tablet, 7, blister pack 216794 701301000168102 Lansoprazole ODT (Apo) 30 mg orally disintegrating tablet, 7 701291000168103 Lansoprazole ODT (Apo) 30 mg orally disintegrating tablet 701281000168101 Lansoprazole ODT (Apo) 701281000168101 Lansoprazole ODT (Apo) 79820011000036107 lansoprazole 30 mg orally disintegrating tablet, 7 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +87683011000036106 Famciclovir (Apo) 250 mg film-coated tablet, 21, bottle 160560 87483011000036109 Famciclovir (Apo) 250 mg film-coated tablet, 21 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +735871000168109 Androfeme-1 1% (10 mg/mL) cream, 50 mL, tube 169317 735861000168103 Androfeme-1 1% (10 mg/mL) cream, 50 mL 735841000168102 Androfeme-1 1% (10 mg/mL) cream 735821000168108 Androfeme-1 735821000168108 Androfeme-1 735851000168100 testosterone 1% (10 mg/mL) cream, 50 mL 735831000168106 testosterone 1% (10 mg/mL) cream 21290011000036109 testosterone +695191000168101 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles 15757 695181000168104 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles 695161000168108 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 50 mL bottle 5191000168106 Ultravist-300 5191000168106 Ultravist-300 695171000168102 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 50 mL bottles 695151000168106 iopromide 623 mg (iodine 300 mg)/mL injection, 50 mL bottle 77425011000036101 iopromide +79647011000036103 Glimepiride (Apo) 1 mg uncoated tablet, 30, blister pack 151570 79489011000036102 Glimepiride (Apo) 1 mg uncoated tablet, 30 79374011000036101 Glimepiride (Apo) 1 mg uncoated tablet 36961000168104 Glimepiride (Apo) 36961000168104 Glimepiride (Apo) 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +1116991000168109 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 14, blister pack 161826 1116981000168106 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 14 1116951000168104 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 925435011000036108 amlodipine 10 mg + valsartan 320 mg tablet, 14 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +703701000168102 Ciprofloxacin (Apo) 250 mg film-coated tablet, 14, blister pack 135650 703691000168102 Ciprofloxacin (Apo) 250 mg film-coated tablet, 14 703681000168100 Ciprofloxacin (Apo) 250 mg film-coated tablet 703671000168103 Ciprofloxacin (Apo) 703671000168103 Ciprofloxacin (Apo) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +73316011000036102 Fluoxebell 20 mg hard capsule, 28, blister pack 108577 73114011000036101 Fluoxebell 20 mg hard capsule, 28 72926011000036108 Fluoxebell 20 mg hard capsule 3380011000036105 Fluoxebell 3380011000036105 Fluoxebell 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +73316011000036102 Fluoxebell 20 mg hard capsule, 28, blister pack 146606 73114011000036101 Fluoxebell 20 mg hard capsule, 28 72926011000036108 Fluoxebell 20 mg hard capsule 3380011000036105 Fluoxebell 3380011000036105 Fluoxebell 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +931737011000036107 Gordochom solution, 30 mL, bottle 43251 930897011000036109 Gordochom solution, 30 mL 930101011000036105 Gordochom solution 929814011000036101 Gordochom 929814011000036101 Gordochom 932477011000036101 undecenoic acid 25% + chloroxylenol 3% solution, 30 mL 931876011000036105 undecenoic acid 25% + chloroxylenol 3% solution 931791011000036109 undecenoic acid + chloroxylenol +60097011000036104 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 200 mL, bottle 126542 56058011000036100 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 200 mL 53774011000036100 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 5 mL 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +960711000168104 Ciram 40 mg film-coated tablet, 14, bottle 158861 960501000168107 Ciram 40 mg film-coated tablet, 14 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202841000036106 citalopram 40 mg tablet, 14 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +650151000168105 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 14, blister pack 202107 650141000168108 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 14 650111000168109 Pritor/Amlodipine 40 mg/10 mg multilayer tablet 650101000168106 Pritor/Amlodipine 40 mg/10 mg 650101000168106 Pritor/Amlodipine 40 mg/10 mg 932427011000036102 telmisartan 40 mg + amlodipine 10 mg tablet, 14 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +1012031000168103 Irbesartan (Apotex) 300 mg film-coated tablet, 3, blister pack 169795 1012021000168101 Irbesartan (Apotex) 300 mg film-coated tablet, 3 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777331000168108 irbesartan 300 mg tablet, 3 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +650071000168102 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 56, blister pack 202106 650061000168108 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 56 649971000168106 Pritor/Amlodipine 40 mg/5 mg multilayer tablet 649951000168102 Pritor/Amlodipine 40 mg/5 mg 649951000168102 Pritor/Amlodipine 40 mg/5 mg 932436011000036102 telmisartan 40 mg + amlodipine 5 mg tablet, 56 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +896361000168106 Imatinib (AN) 400 mg hard capsule, 24, blister pack 281366 896351000168109 Imatinib (AN) 400 mg hard capsule, 24 896341000168107 Imatinib (AN) 400 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 893871000168100 imatinib 400 mg capsule, 24 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +931495011000036104 Topiramate (LAPL) 25 mg film-coated tablet, 60, blister pack 155207 928306011000036105 Topiramate (LAPL) 25 mg film-coated tablet, 60 927935011000036109 Topiramate (LAPL) 25 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +37635011000036108 Cyclogyl 1% eye drops solution, 15 mL, bottle 25273 36901011000036102 Cyclogyl 1% eye drops solution, 15 mL 36234011000036106 Cyclogyl 1% eye drops solution 35962011000036109 Cyclogyl 35962011000036109 Cyclogyl 38786011000036105 cyclopentolate hydrochloride 1% eye drops, 15 mL 37999011000036101 cyclopentolate hydrochloride 1% eye drops 37706011000036103 cyclopentolate +752871000168103 Olmesartan/Amlodipine 40/5 (Blooms The Chemist) film-coated tablet, 30, blister pack 218245 752861000168109 Olmesartan/Amlodipine 40/5 (Blooms The Chemist) film-coated tablet, 30 752851000168107 Olmesartan/Amlodipine 40/5 (Blooms The Chemist) film-coated tablet 752841000168105 Olmesartan/Amlodipine 40/5 (Blooms The Chemist) 752841000168105 Olmesartan/Amlodipine 40/5 (Blooms The Chemist) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +61100011000036104 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet, 16, blister pack 71661 57043011000036106 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet, 16 54172011000036104 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet 53600011000036105 Diarrhoea Relief (Soul Pattinson) 53600011000036105 Diarrhoea Relief (Soul Pattinson) 63805011000036108 loperamide hydrochloride 2.15 mg tablet, 16 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +60526011000036106 Demazin PE Cold and Flu Relief uncoated tablet, 96, blister pack 152024 56484011000036109 Demazin PE Cold and Flu Relief uncoated tablet, 96 53937011000036101 Demazin PE Cold and Flu Relief uncoated tablet 37041000168102 Demazin PE Cold and Flu Relief 37041000168102 Demazin PE Cold and Flu Relief 63382011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 96 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +767921000168102 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 233113 767911000168109 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 767891000168107 Lenest 30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) uncoated tablet 767881000168109 Lenest 30 ED 767881000168109 Lenest 30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +767921000168102 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 233113 767911000168109 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 767901000168106 Lenest 30 ED (inert substance) uncoated tablet 767881000168109 Lenest 30 ED 767881000168109 Lenest 30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +81861000036100 Famciclovir (GA) 500 mg film-coated tablet, 56, blister pack 177020 80221000036100 Famciclovir (GA) 500 mg film-coated tablet, 56 78301000036108 Famciclovir (GA) 500 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +883571000168104 Betahistine (AS) 8 mg tablet, 25, blister pack 231714 883561000168105 Betahistine (AS) 8 mg tablet, 25 883531000168102 Betahistine (AS) 8 mg tablet 883521000168100 Betahistine (AS) 883521000168100 Betahistine (AS) 883121000168107 betahistine dihydrochloride 8 mg tablet, 25 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +1067761000168106 Ibuprofen plus Codeine (Trust) film-coated tablet, 10, blister pack 175264 1067751000168109 Ibuprofen plus Codeine (Trust) film-coated tablet, 10 1067741000168107 Ibuprofen plus Codeine (Trust) film-coated tablet 1067731000168103 Ibuprofen plus Codeine (Trust) 1067731000168103 Ibuprofen plus Codeine (Trust) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +929675011000036102 Vexazone 45 mg uncoated tablet, 28, blister pack 164343 929511011000036103 Vexazone 45 mg uncoated tablet, 28 929404011000036109 Vexazone 45 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +21169011000036103 Reyataz 200 mg hard capsule, 60, bottle 99056 14311011000036102 Reyataz 200 mg hard capsule, 60 7597011000036100 Reyataz 200 mg hard capsule 3083011000036101 Reyataz 3083011000036101 Reyataz 28302011000036105 atazanavir 200 mg capsule, 60 23616011000036102 atazanavir 200 mg capsule 21324011000036104 atazanavir +79013011000036107 Nifedipine XR (Apo) 30 mg modified release tablet, 30, blister pack 152207 78861011000036109 Nifedipine XR (Apo) 30 mg modified release tablet, 30 78667011000036108 Nifedipine XR (Apo) 30 mg modified release tablet 501000168108 Nifedipine XR (Apo) 501000168108 Nifedipine XR (Apo) 28048011000036102 nifedipine 30 mg modified release tablet, 30 23369011000036100 nifedipine 30 mg modified release tablet 21241011000036108 nifedipine +1033481000168108 Atomoxetine (CH) 100 mg hard capsule, 28, blister pack 234818 1033471000168105 Atomoxetine (CH) 100 mg hard capsule, 28 1033421000168109 Atomoxetine (CH) 100 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +68733011000036101 Diaformin XR 500 mg modified release tablet, 10, blister pack 120868 66653011000036103 Diaformin XR 500 mg modified release tablet, 10 65316011000036106 Diaformin XR 500 mg modified release tablet 35531000168107 Diaformin XR 35531000168107 Diaformin XR 71363011000036101 metformin hydrochloride 500 mg modified release tablet, 10 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +975691000168102 Amoxiclav 1000/200 (Juno) powder for injection, 10 x 1.2 g vials 269159 975681000168100 Amoxiclav 1000/200 (Juno) powder for injection, 10 x 1.2 g vials 975601000168108 Amoxiclav 1000/200 (Juno) powder for injection, 1.2 g vial 975581000168104 Amoxiclav 1000/200 (Juno) 975581000168104 Amoxiclav 1000/200 (Juno) 975671000168103 amoxicillin 1 g + clavulanic acid 200 mg injection, 10 x 1.2 g vials 975591000168101 amoxicillin 1 g + clavulanic acid 200 mg injection, 1.2 g vial 21360011000036101 amoxicillin + clavulanic acid +20312011000036105 Lisodur 20 mg uncoated tablet, 30, blister pack 75847 13521011000036108 Lisodur 20 mg uncoated tablet, 30 6803011000036109 Lisodur 20 mg uncoated tablet 3180011000036103 Lisodur 3180011000036103 Lisodur 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +50374011000036100 Risperidone (GA) 4 mg film-coated tablet, 60, blister pack 127862 49556011000036103 Risperidone (GA) 4 mg film-coated tablet, 60 48660011000036101 Risperidone (GA) 4 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +1114981000168102 Stilnoxium CR 12.5 mg modified release tablet, 7, blister pack 120714 1114971000168100 Stilnoxium CR 12.5 mg modified release tablet, 7 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46190011000036107 zolpidem tartrate 12.5 mg modified release tablet, 7 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +870821000168100 Lamotrigine (GH) 25 mg uncoated tablet, 56, blister pack 275000 870811000168107 Lamotrigine (GH) 25 mg uncoated tablet, 56 870801000168109 Lamotrigine (GH) 25 mg uncoated tablet 870701000168102 Lamotrigine (GH) 870701000168102 Lamotrigine (GH) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +55871000036102 Tortrigine DT 100 mg tablet, 56, blister pack 150769 51331000036107 Tortrigine DT 100 mg tablet, 56 49361000036100 Tortrigine DT 100 mg tablet 36451000168106 Tortrigine DT 36451000168106 Tortrigine DT 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +19576011000036104 Ticlid 250 mg film-coated tablet, 60, bottle 57395 12847011000036106 Ticlid 250 mg film-coated tablet, 60 6138011000036100 Ticlid 250 mg film-coated tablet 4272011000036109 Ticlid 4272011000036109 Ticlid 27721011000036104 ticlopidine hydrochloride 250 mg tablet, 60 23056011000036100 ticlopidine hydrochloride 250 mg tablet 21382011000036100 ticlopidine +667231000168100 Kaptan 25 mg film-coated tablet, 20, blister pack 202242 667221000168103 Kaptan 25 mg film-coated tablet, 20 667211000168105 Kaptan 25 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +750741000168100 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 6 x 28, blister packs 133649 750731000168109 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 6 x 28 750591000168101 Yaz (inert substance) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750721000168106 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 6 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +750741000168100 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 6 x 28, blister packs 133649 750731000168109 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 6 x 28 750581000168104 Yaz (drospirenone 3 mg + ethinylestradiol 20 microgram) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750721000168106 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 6 x 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +930801000168103 Virazide 6 g powder for inhalation, 3 vials 18225 930791000168104 Virazide 6 g powder for inhalation, 3 vials 932745011000036102 Virazide 6 g powder for inhalation, 6 g vial 35867011000036100 Virazide 35867011000036100 Virazide 930781000168102 ribavirin 6 g powder for inhalation, 3 vials 932746011000036109 ribavirin 6 g powder for inhalation, vial 21714011000036106 ribavirin +669381000168102 Rabeprazole Sodium (AN) 10 mg enteric tablet, 30, bottle 189233 669371000168100 Rabeprazole Sodium (AN) 10 mg enteric tablet, 30 656111000168106 Rabeprazole Sodium (AN) 10 mg enteric tablet 656061000168105 Rabeprazole Sodium (AN) 656061000168105 Rabeprazole Sodium (AN) 84671000036105 rabeprazole sodium 10 mg enteric tablet, 30 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +752911000168100 Olmesartan/Amlodipine 40/5 (Terry White Chemists) film-coated tablet, 30, blister pack 218249 752901000168103 Olmesartan/Amlodipine 40/5 (Terry White Chemists) film-coated tablet, 30 752891000168102 Olmesartan/Amlodipine 40/5 (Terry White Chemists) film-coated tablet 752881000168100 Olmesartan/Amlodipine 40/5 (Terry White Chemists) 752881000168100 Olmesartan/Amlodipine 40/5 (Terry White Chemists) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +69367011000036100 Pralidoxime Iodide (Phebra) 2.5% (500 mg/20 mL) injection solution, 20 mL ampoule 29786 67167011000036101 Pralidoxime Iodide (Phebra) 2.5% (500 mg/20 mL) injection solution, 20 mL ampoule 65196011000036100 Pralidoxime Iodide (Phebra) 2.5% (500 mg/20 mL) injection solution, 20 mL ampoule 65083011000036102 Pralidoxime Iodide (Phebra) 65083011000036102 Pralidoxime Iodide (Phebra) 71729011000036108 pralidoxime iodide 2.5% (500 mg/20 mL) injection, 20 mL ampoule 70154011000036109 pralidoxime iodide 2.5% (500 mg/20 mL) injection, ampoule 69861011000036105 pralidoxime iodide +742111000168100 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 90, blister pack 232797 742101000168103 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 90 742031000168109 Amitriptyline (Alphapharm) 25 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +20724011000036105 Celapram 20 mg film-coated tablet, 28, bottle 82905 13893011000036100 Celapram 20 mg film-coated tablet, 28 7179011000036106 Celapram 20 mg film-coated tablet 3143011000036102 Celapram 3143011000036102 Celapram 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +156681000036103 Fosinopril Sodium (Apo) 10 mg uncoated tablet, 30, blister pack 119874 155711000036105 Fosinopril Sodium (Apo) 10 mg uncoated tablet, 30 154751000036105 Fosinopril Sodium (Apo) 10 mg uncoated tablet 154501000036100 Fosinopril Sodium (Apo) 154501000036100 Fosinopril Sodium (Apo) 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +716541000168100 Omepro 20 mg enteric capsule, 28, blister pack 149516 716531000168109 Omepro 20 mg enteric capsule, 28 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716411000168100 omeprazole 20 mg enteric capsule, 28 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +12661000036105 Ceptolate 250 mg hard capsule, 100, bottle 165767 7921000036106 Ceptolate 250 mg hard capsule, 100 1591000036105 Ceptolate 250 mg hard capsule 521000036106 Ceptolate 521000036106 Ceptolate 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +933213261000036100 Citalopram (IPCA) 40 mg film-coated tablet, 100, bottle 158855 933202791000036109 Citalopram (IPCA) 40 mg film-coated tablet, 100 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202801000036108 citalopram 40 mg tablet, 100 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +19738011000036102 Singulair 5 mg chewable tablet, 28, blister pack 61847 12992011000036106 Singulair 5 mg chewable tablet, 28 6280011000036107 Singulair 5 mg chewable tablet 4287011000036103 Singulair 4287011000036103 Singulair 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +900771000168108 Amoxycillin (Actavis) 250 mg hard capsule, 20, blister pack 198125 900761000168102 Amoxycillin (Actavis) 250 mg hard capsule, 20 900751000168104 Amoxycillin (Actavis) 250 mg hard capsule 900721000168107 Amoxycillin (Actavis) 900721000168107 Amoxycillin (Actavis) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +761571000168102 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid, 50 mL, bottle 14085 761561000168108 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid, 50 mL 761551000168106 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid 761511000168105 Eucalyptus Oil (David Craig) 761511000168105 Eucalyptus Oil (David Craig) 927355011000036103 eucalyptus oil 1 mL/mL liquid, 50 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +1087111000168107 Zorvolex 18 mg hard capsule, 2, blister pack 282521 1087101000168109 Zorvolex 18 mg hard capsule, 2 1087081000168102 Zorvolex 18 mg hard capsule 1087021000168101 Zorvolex 1087021000168101 Zorvolex 1087091000168104 diclofenac 18 mg capsule, 2 1087071000168100 diclofenac 18 mg capsule 21288011000036105 diclofenac +84393011000036107 PicoPrep powder for oral liquid, 50 x 15.55 g sachets 20508 84085011000036105 PicoPrep powder for oral liquid, 50 x 15.55 g sachets 83702011000036104 PicoPrep powder for oral liquid, 15.55 g sachet 83542011000036107 PicoPrep 83542011000036107 PicoPrep 84668011000036106 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 50 x 15.55 g sachets 84441011000036108 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 15.55 g sachet 84409011000036101 picosulfate + magnesium oxide heavy + citric acid +967011000168103 Diavance 500/5 film-coated tablet, 10, blister pack 120265 967001000168101 Diavance 500/5 film-coated tablet, 10 966981000168105 Diavance 500/5 film-coated tablet 966971000168107 Diavance 500/5 966971000168107 Diavance 500/5 966991000168108 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet, 10 23509011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet 21813011000036107 metformin + glibenclamide +84402011000036106 Zanidip 20 mg film-coated tablet, 28, blister pack 93733 84093011000036108 Zanidip 20 mg film-coated tablet, 28 7350011000036108 Zanidip 20 mg film-coated tablet 4164011000036108 Zanidip 4164011000036108 Zanidip 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +1018451000168102 Sumatriptan (WT) 50 mg film-coated tablet, 4, blister pack 160187 1018441000168104 Sumatriptan (WT) 50 mg film-coated tablet, 4 1018411000168103 Sumatriptan (WT) 50 mg film-coated tablet 1018401000168101 Sumatriptan (WT) 1018401000168101 Sumatriptan (WT) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +20150011000036106 Diaformin 850 mg film-coated tablet, 60, bottle 73807 13374011000036108 Diaformin 850 mg film-coated tablet, 60 6659011000036106 Diaformin 850 mg film-coated tablet 42011000168103 Diaformin 42011000168103 Diaformin 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1033441000168103 Atomoxetine (CH) 100 mg hard capsule, 7, blister pack 234818 1033431000168107 Atomoxetine (CH) 100 mg hard capsule, 7 1033421000168109 Atomoxetine (CH) 100 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +933229841000036108 Roxithromycin (Sandoz) 150 mg film-coated tablet, 10, blister pack 100989 933223371000036109 Roxithromycin (Sandoz) 150 mg film-coated tablet, 10 933219441000036100 Roxithromycin (Sandoz) 150 mg film-coated tablet 933219041000036109 Roxithromycin (Sandoz) 933219041000036109 Roxithromycin (Sandoz) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +1110641000168106 Dormizol CR 12.5 mg modified release tablet, 10, blister pack 120715 1110631000168102 Dormizol CR 12.5 mg modified release tablet, 10 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46183011000036103 zolpidem tartrate 12.5 mg modified release tablet, 10 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +52747011000036101 Fexal 120 mg film-coated tablet, 2, blister pack 140284 52559011000036107 Fexal 120 mg film-coated tablet, 2 52419011000036109 Fexal 120 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 52883011000036103 fexofenadine hydrochloride 120 mg tablet, 2 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +753031000168103 Oxycodone (GX) 20 mg hard capsule, 20, bottle 227824 753021000168101 Oxycodone (GX) 20 mg hard capsule, 20 753011000168108 Oxycodone (GX) 20 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +1038141000168102 Intuniv 4 mg modified release tablet, 28, blister pack 275315 1038131000168106 Intuniv 4 mg modified release tablet, 28 1038111000168101 Intuniv 4 mg modified release tablet 1037851000168105 Intuniv 1037851000168105 Intuniv 1038121000168108 guanfacine 4 mg modified release tablet, 28 1038101000168104 guanfacine 4 mg modified release tablet 1037871000168101 guanfacine +1033121000168101 Ramipril (Apotex) 10 mg capsule, 7, bottle 179023 1033011000168109 Ramipril (Apotex) 10 mg capsule, 7 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46765011000036109 ramipril 10 mg capsule, 7 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +81069011000036103 Gabapentin (Terry White Chemists) 100 mg hard capsule, 100, bottle 151315 80578011000036108 Gabapentin (Terry White Chemists) 100 mg hard capsule, 100 80196011000036108 Gabapentin (Terry White Chemists) 100 mg hard capsule 39628011000036105 Gabapentin (Terry White Chemists) 39628011000036105 Gabapentin (Terry White Chemists) 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +33514011000036101 Xergic 60 mg film-coated tablet, 10, blister pack 123196 33257011000036108 Xergic 60 mg film-coated tablet, 10 33024011000036106 Xergic 60 mg film-coated tablet 4325011000036107 Xergic 4325011000036107 Xergic 33784011000036103 fexofenadine hydrochloride 60 mg tablet, 10 23023011000036105 fexofenadine hydrochloride 60 mg tablet 21394011000036108 fexofenadine +1097301000168106 Voltaren Emulgel No Mess Applicator (1 x 50 g gel, 1 x 120 g gel), 1 pack, tubes 282516 1097291000168105 Voltaren Emulgel No Mess Applicator (1 x 50 g gel, 1 x 120 g gel), 1 pack 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1097281000168107 diclofenac diethylamine 11.6 mg / 1 g gel [50 g] (&) diclofenac diethylamine 11.6 mg / 1 g gel [120 g], 1 pack 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +810591000168109 Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets 810581000168106 Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets 810571000168108 Risedronate EC Combi D (Winthrop) effervescent granules, 1 sachet 69371000036104 Risedronate EC Combi D (Winthrop) 69371000036104 Risedronate EC Combi D (Winthrop) 810251000168101 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 24 sachets 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +684551000168100 Septopal Chain 7.5 mg implant, 30 beads, sachet 25538 684541000168102 Septopal Chain 7.5 mg implant, 30 beads 79398011000036102 Septopal Chain 7.5 mg implant, 1 bead 59491000168106 Septopal Chain 59491000168106 Septopal Chain 684531000168106 gentamicin sulfate 7.5 mg implant, 30 beads 79754011000036103 gentamicin sulfate 7.5 mg implant, 1 bead 21397011000036102 gentamicin +684551000168100 Septopal Chain 7.5 mg implant, 30 beads, sachet 159233 684541000168102 Septopal Chain 7.5 mg implant, 30 beads 79398011000036102 Septopal Chain 7.5 mg implant, 1 bead 59491000168106 Septopal Chain 59491000168106 Septopal Chain 684531000168106 gentamicin sulfate 7.5 mg implant, 30 beads 79754011000036103 gentamicin sulfate 7.5 mg implant, 1 bead 21397011000036102 gentamicin +1033921000168103 Strong Pain Relief Extra (Amcal) uncoated tablet, 30, blister pack 208319 1033911000168105 Strong Pain Relief Extra (Amcal) uncoated tablet, 30 1033571000168109 Strong Pain Relief Extra (Amcal) uncoated tablet 1033541000168102 Strong Pain Relief Extra (Amcal) 1033541000168102 Strong Pain Relief Extra (Amcal) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +948201000168101 Ranitidine (GA) 150 mg film-coated tablet, 14, bottle 148519 930630011000036106 Ranitidine (GA) 150 mg film-coated tablet, 14 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +900611000168107 Amoxycillin (WT) 500 mg hard capsule, 20, blister pack 198127 900601000168109 Amoxycillin (WT) 500 mg hard capsule, 20 900591000168102 Amoxycillin (WT) 500 mg hard capsule 900511000168106 Amoxycillin (WT) 900511000168106 Amoxycillin (WT) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +79022011000036105 Xarelto 10 mg film-coated tablet, 5, blister pack 147400 78834011000036103 Xarelto 10 mg film-coated tablet, 5 78644011000036107 Xarelto 10 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 79229011000036105 rivaroxaban 10 mg tablet, 5 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +69281011000036101 Glucose (Baxter) 10% (50 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 19480 67081011000036104 Glucose (Baxter) 10% (50 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 65247011000036105 Glucose (Baxter) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71650011000036109 glucose 10% (50 g/500 mL) injection, 18 x 500 mL bags 70155011000036108 glucose 10% (50 g/500 mL) injection, bag 21354011000036103 glucose +50408011000036108 Elecare powder for oral liquid, 400 g, can 49465011000036106 Elecare powder for oral liquid, 400 g 48621011000036102 Elecare powder for oral liquid 48417011000036104 Elecare 48417011000036104 Elecare 51426011000036109 amino acid synthetic formula powder for oral liquid, 400 g 50943011000036105 amino acid synthetic formula powder for oral liquid 50729011000036102 amino acid synthetic formula +18085011000036103 Terbinafine (DP) 250 mg uncoated tablet, 42, blister pack 119754 11629011000036107 Terbinafine (DP) 250 mg uncoated tablet, 42 6013011000036105 Terbinafine (DP) 250 mg uncoated tablet 4313011000036102 Terbinafine (DP) 4313011000036102 Terbinafine (DP) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +933230341000036106 Citalopram (GA) 20 mg film-coated tablet, 84, blister pack 158852 933224381000036109 Citalopram (GA) 20 mg film-coated tablet, 84 933220071000036103 Citalopram (GA) 20 mg film-coated tablet 933219141000036105 Citalopram (GA) 933219141000036105 Citalopram (GA) 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +105061000036101 Irbesartan HCT 300/25 (Winthrop) film-coated tablet, 30, blister pack 196958 102231000036107 Irbesartan HCT 300/25 (Winthrop) film-coated tablet, 30 98181000036108 Irbesartan HCT 300/25 (Winthrop) film-coated tablet 55681000168108 Irbesartan HCT 300/25 (Winthrop) 55681000168108 Irbesartan HCT 300/25 (Winthrop) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +12981000036107 Quetiapine (Terry White Chemists) 100 mg film-coated tablet, 90, blister pack 166066 8091000036107 Quetiapine (Terry White Chemists) 100 mg film-coated tablet, 90 3571000036107 Quetiapine (Terry White Chemists) 100 mg film-coated tablet 491000036108 Quetiapine (Terry White Chemists) 491000036108 Quetiapine (Terry White Chemists) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +60029011000036100 Heartburn Relief (Amcal) 150 mg film-coated tablet, 14, blister pack 123664 55991011000036106 Heartburn Relief (Amcal) 150 mg film-coated tablet, 14 53750011000036108 Heartburn Relief (Amcal) 150 mg film-coated tablet 53448011000036104 Heartburn Relief (Amcal) 53448011000036104 Heartburn Relief (Amcal) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +18599011000036100 Setrona 100 mg film-coated tablet, 30, blister pack 116636 11532011000036105 Setrona 100 mg film-coated tablet, 30 5499011000036103 Setrona 100 mg film-coated tablet 3851011000036106 Setrona 3851011000036106 Setrona 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +928891011000036100 Trandolapril (Pharmacor) 1 mg capsule, 28, blister pack 145233 928253011000036100 Trandolapril (Pharmacor) 1 mg capsule, 28 927906011000036105 Trandolapril (Pharmacor) 1 mg capsule 927809011000036107 Trandolapril (Pharmacor) 927809011000036107 Trandolapril (Pharmacor) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +698981000168108 Coversyl 5 mg film-coated tablet, 30, bottle 101568 11218011000036108 Coversyl 5 mg film-coated tablet, 30 5228011000036102 Coversyl 5 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +707561000168101 Propranolol (Apo) 40 mg tablet, 100, bottle 222969 707551000168103 Propranolol (Apo) 40 mg tablet, 100 707541000168100 Propranolol (Apo) 40 mg tablet 707501000168102 Propranolol (Apo) 707501000168102 Propranolol (Apo) 26941011000036106 propranolol hydrochloride 40 mg tablet, 100 22317011000036102 propranolol hydrochloride 40 mg tablet 21392011000036104 propranolol +61622011000036108 Nurofen Migraine Pain 200 mg film-coated tablet, 20, blister pack 96215 57544011000036106 Nurofen Migraine Pain 200 mg film-coated tablet, 20 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +79030011000036109 Bispro 5 mg film-coated tablet, 42, blister pack 130180 78795011000036105 Bispro 5 mg film-coated tablet, 42 78626011000036101 Bispro 5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79210011000036106 bisoprolol fumarate 5 mg tablet, 42 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +753071000168100 Oxycodone (GX) 20 mg hard capsule, 60, blister pack 227841 753041000168107 Oxycodone (GX) 20 mg hard capsule, 60 753011000168108 Oxycodone (GX) 20 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +871141000168107 Anterone 50 mg uncoated tablet, 50, blister pack 278777 871131000168103 Anterone 50 mg uncoated tablet, 50 871101000168105 Anterone 50 mg uncoated tablet 870241000168107 Anterone 870241000168107 Anterone 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +750901000168104 Nicotinell Step-2 14 mg/24 hours patch, 14, sachet 42625 750891000168103 Nicotinell Step-2 14 mg/24 hours patch, 14 925703011000036107 Nicotinell Step-2 14 mg/24 hours patch 46531000168100 Nicotinell Step-2 46531000168100 Nicotinell Step-2 71995011000036109 nicotine 14 mg/24 hours patch, 14 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +759471000168106 Clozaril 100 mg uncoated tablet, 28, blister pack 50511 759461000168100 Clozaril 100 mg uncoated tablet, 28 7035011000036104 Clozaril 100 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 759451000168102 clozapine 100 mg tablet, 28 23445011000036103 clozapine 100 mg tablet 21222011000036104 clozapine +763741000168101 Oxycodone MR (Chemmart) 20 mg modified release tablet, 28, blister pack 214502 763731000168105 Oxycodone MR (Chemmart) 20 mg modified release tablet, 28 763641000168106 Oxycodone MR (Chemmart) 20 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +60500011000036104 Xyzal 5 mg film-coated tablet, 1, blister pack 150854 56458011000036105 Xyzal 5 mg film-coated tablet, 1 53929011000036106 Xyzal 5 mg film-coated tablet 53093011000036108 Xyzal 53093011000036108 Xyzal 63372011000036106 levocetirizine dihydrochloride 5 mg tablet, 1 61931011000036101 levocetirizine dihydrochloride 5 mg tablet 61816011000036108 levocetirizine +931686011000036108 Rapamune 500 microgram sugar coated tablet, 100, blister pack 169305 930846011000036102 Rapamune 500 microgram sugar coated tablet, 100 930068011000036108 Rapamune 500 microgram sugar coated tablet 3482011000036103 Rapamune 3482011000036103 Rapamune 932451011000036106 sirolimus 500 microgram tablet, 100 931861011000036105 sirolimus 500 microgram tablet 21862011000036104 sirolimus +896321000168101 Imatinib (GH) 100 mg hard capsule, 180, blister pack 281535 896311000168108 Imatinib (GH) 100 mg hard capsule, 180 896191000168101 Imatinib (GH) 100 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 828931000168107 imatinib 100 mg capsule, 180 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +79656011000036104 Pradaxa 75 mg hard capsule, 10, blister pack 137832 79462011000036105 Pradaxa 75 mg hard capsule, 10 79353011000036101 Pradaxa 75 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79796011000036100 dabigatran etexilate 75 mg capsule, 10 79736011000036105 dabigatran etexilate 75 mg capsule 79729011000036103 dabigatran +105141000036101 Abisart HCT 300/12.5 film-coated tablet, 30, blister pack 176861 102161000036109 Abisart HCT 300/12.5 film-coated tablet, 30 98801000036108 Abisart HCT 300/12.5 film-coated tablet 24981000168101 Abisart HCT 300/12.5 24981000168101 Abisart HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +105141000036101 Abisart HCT 300/12.5 film-coated tablet, 30, blister pack 215944 102161000036109 Abisart HCT 300/12.5 film-coated tablet, 30 98801000036108 Abisart HCT 300/12.5 film-coated tablet 24981000168101 Abisart HCT 300/12.5 24981000168101 Abisart HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +933229931000036108 Fenpatch 25 microgram/hour patch, 5, sachet 143894 933223731000036108 Fenpatch 25 microgram/hour patch, 5 933219821000036106 Fenpatch 25 microgram/hour patch 933218861000036106 Fenpatch 933218861000036106 Fenpatch 26649011000036106 fentanyl 25 microgram/hour patch, 5 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +74918011000036108 Sea Snake Antivenom (CSL) 1000 units injection solution, 1 vial 74901 74405011000036102 Sea Snake Antivenom (CSL) 1000 units injection solution, 1 vial 73928011000036100 Sea Snake Antivenom (CSL) 1000 units injection solution, vial 73769011000036109 Sea Snake Antivenom (CSL) 73769011000036109 Sea Snake Antivenom (CSL) 75502011000036107 sea snake antivenom 1000 units injection, 1 vial 75102011000036102 sea snake antivenom 1000 units injection, vial 74991011000036103 sea snake antivenom +130861000036106 Metoprolol Tartrate (Apo) 100 mg film-coated tablet, 60, blister pack 192772 128111000036100 Metoprolol Tartrate (Apo) 100 mg film-coated tablet, 60 124751000036109 Metoprolol Tartrate (Apo) 100 mg film-coated tablet 123701000036106 Metoprolol Tartrate (Apo) 123701000036106 Metoprolol Tartrate (Apo) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +770251000168106 Oralair Continuation Treatment 300 IR sublingual tablet, 30, blister pack 167566 770241000168109 Oralair Continuation Treatment 300 IR sublingual tablet, 30 770221000168103 Oralair Continuation Treatment 300 IR sublingual tablet 769411000168108 Oralair Continuation Treatment 300 IR 769411000168108 Oralair Continuation Treatment 300 IR 770231000168100 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet, 30 770061000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +923862011000036109 Paracetamol (Herron) Gold 500 mg film-coated tablet, 24, blister pack 162206 923408011000036100 Paracetamol (Herron) Gold 500 mg film-coated tablet, 24 923071011000036109 Paracetamol (Herron) Gold 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1033161000168106 Ramipril (Apotex) 10 mg capsule, 28, bottle 179023 1033071000168101 Ramipril (Apotex) 10 mg capsule, 28 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46764011000036105 ramipril 10 mg capsule, 28 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +933213121000036104 Pravastatin Sodium (Hexal) 80 mg tablet, 30, blister pack 152455 933201541000036100 Pravastatin Sodium (Hexal) 80 mg tablet, 30 933194691000036105 Pravastatin Sodium (Hexal) 80 mg tablet 933193451000036102 Pravastatin Sodium (Hexal) 933193451000036102 Pravastatin Sodium (Hexal) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +50211011000036103 Karicare De-Lact powder for oral liquid, 900 g, can 49262011000036102 Karicare De-Lact powder for oral liquid, 900 g 48594011000036103 Karicare De-Lact powder for oral liquid 48420011000036107 Karicare De-Lact 48420011000036107 Karicare De-Lact 51255011000036100 milk powder lactose free formula predigested powder for oral liquid, 900 g 50790011000036102 milk powder lactose free formula predigested powder for oral liquid 50737011000036107 milk powder lactose free formula predigested +37549011000036100 Dantrium 20 mg powder for injection, 6 vials 14435 36817011000036104 Dantrium 20 mg powder for injection, 6 vials 36105011000036102 Dantrium 20 mg powder for injection, 20 mg vial 4175011000036103 Dantrium 4175011000036103 Dantrium 38709011000036100 dantrolene sodium hemiheptahydrate 20 mg injection, 6 vials 37942011000036100 dantrolene sodium hemiheptahydrate 20 mg injection, vial 21439011000036105 dantrolene +1035291000168106 Anti Diarrhoea Plus (Amcal) chewable tablet, 6, blister pack 221948 1035281000168108 Anti Diarrhoea Plus (Amcal) chewable tablet, 6 1035231000168107 Anti Diarrhoea Plus (Amcal) chewable tablet 1035221000168109 Anti Diarrhoea Plus (Amcal) 1035221000168109 Anti Diarrhoea Plus (Amcal) 63674011000036106 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 6 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +721291000168108 Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL, pump pack 74594 721281000168105 Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL 721261000168101 Difflam Anti-Inflammatory Throat 0.15% oral spray 25731000168100 Difflam Anti-Inflammatory Throat 25731000168100 Difflam Anti-Inflammatory Throat 721271000168107 benzydamine hydrochloride 0.15% oral spray, 30 mL 721251000168103 benzydamine hydrochloride 0.15% oral spray 21819011000036105 benzydamine +20141011000036102 Keflex 250 mg hard capsule, 20, blister pack 73522 13365011000036103 Keflex 250 mg hard capsule, 20 6650011000036100 Keflex 250 mg hard capsule 3358011000036104 Keflex 3358011000036104 Keflex 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +73325011000036103 Simvastatin (Apo) 10 mg film-coated tablet, 30, blister pack 149812 73120011000036104 Simvastatin (Apo) 10 mg film-coated tablet, 30 72937011000036109 Simvastatin (Apo) 10 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +73325011000036103 Simvastatin (Apo) 10 mg film-coated tablet, 30, blister pack 223448 73120011000036104 Simvastatin (Apo) 10 mg film-coated tablet, 30 72937011000036109 Simvastatin (Apo) 10 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1035331000168100 Anti Diarrhoea Plus (Amcal) chewable tablet, 18, blister pack 221948 1035321000168103 Anti Diarrhoea Plus (Amcal) chewable tablet, 18 1035231000168107 Anti Diarrhoea Plus (Amcal) chewable tablet 1035221000168109 Anti Diarrhoea Plus (Amcal) 1035221000168109 Anti Diarrhoea Plus (Amcal) 63671011000036108 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 18 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +1044651000168101 Amoxiclav 875/125 (Amneal) film-coated tablet, 60, blister pack 255081 1044641000168103 Amoxiclav 875/125 (Amneal) film-coated tablet, 60 1044591000168107 Amoxiclav 875/125 (Amneal) film-coated tablet 1044581000168109 Amoxiclav 875/125 (Amneal) 1044581000168109 Amoxiclav 875/125 (Amneal) 914061000168108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 60 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +750861000168105 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 142435 750851000168108 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 750831000168102 Laila-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 750821000168100 Laila-35 ED 750821000168100 Laila-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +750861000168105 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 142435 750851000168108 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 750841000168106 Laila-35 ED (inert substance) sugar coated tablet 750821000168100 Laila-35 ED 750821000168100 Laila-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +929075011000036108 Rocta 10 mg soft capsule, 60, blister pack 165124 928436011000036106 Rocta 10 mg soft capsule, 60 927980011000036108 Rocta 10 mg soft capsule 927788011000036100 Rocta 927788011000036100 Rocta 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +1063421000168100 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 24, blister pack 144070 1063411000168107 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 24 1063281000168100 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +700029761000036105 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 39252011000036108 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 39209011000036107 Nordette 28 (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700017881000036107 Nordette 28 700017881000036107 Nordette 28 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029761000036105 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 39252011000036108 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 39199011000036107 Nordette 28 (inert substance) sugar coated tablet 700017881000036107 Nordette 28 700017881000036107 Nordette 28 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +968931000168108 Pregabalin (DRLA) 25 mg hard capsule, 14, blister pack 263089 968921000168105 Pregabalin (DRLA) 25 mg hard capsule, 14 968911000168103 Pregabalin (DRLA) 25 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +81621000036108 Xarelto 15 mg film-coated tablet, 42, blister pack 181185 80441000036107 Xarelto 15 mg film-coated tablet, 42 78921000036104 Xarelto 15 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 80451000036105 rivaroxaban 15 mg tablet, 42 78931000036102 rivaroxaban 15 mg tablet 79098011000036103 rivaroxaban +1001611000168107 Pregabalin (Apo) 100 mg hard capsule, 60, blister pack 193275 1000861000168102 Pregabalin (Apo) 100 mg hard capsule, 60 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +879001000168107 Pregnyl (3 x 1500 units vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 273873 878991000168107 Pregnyl (3 x 1500 units vials, 3 x 1 mL inert diluent vials), 1 pack 878961000168100 Pregnyl (human chorionic gonadotrophin 1500 units) powder for injection, 1500 units vial 3127011000036109 Pregnyl 3127011000036109 Pregnyl 878981000168109 human chorionic gonadotrophin 1500 units injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 878951000168102 human chorionic gonadotrophin 1500 units injection, vial 33633011000036101 human chorionic gonadotrophin +879001000168107 Pregnyl (3 x 1500 units vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 273873 878991000168107 Pregnyl (3 x 1500 units vials, 3 x 1 mL inert diluent vials), 1 pack 878971000168106 Pregnyl (inert substance) diluent, 1 mL vial 3127011000036109 Pregnyl 3127011000036109 Pregnyl 878981000168109 human chorionic gonadotrophin 1500 units injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +18102011000036103 Clarithromycin (Chemmart) 250 mg film-coated tablet, 14, blister pack 134854 11186011000036105 Clarithromycin (Chemmart) 250 mg film-coated tablet, 14 5470011000036102 Clarithromycin (Chemmart) 250 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +18102011000036103 Clarithromycin (Chemmart) 250 mg film-coated tablet, 14, blister pack 101256 11186011000036105 Clarithromycin (Chemmart) 250 mg film-coated tablet, 14 5470011000036102 Clarithromycin (Chemmart) 250 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +61134011000036101 Rectinol HC ointment, 15 g, tube 72940 57077011000036103 Rectinol HC ointment, 15 g 54187011000036105 Rectinol HC ointment 53340011000036107 Rectinol HC 53340011000036107 Rectinol HC 63730011000036108 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment, 15 g 22363011000036105 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment 21414011000036104 hydrocortisone + cinchocaine +12821000036100 Olanzapine ODT (Chemmart) 15 mg orally disintegrating tablet, 28, blister pack 158990 6971000036108 Olanzapine ODT (Chemmart) 15 mg orally disintegrating tablet, 28 1961000036107 Olanzapine ODT (Chemmart) 15 mg orally disintegrating tablet 15331000168107 Olanzapine ODT (Chemmart) 15331000168107 Olanzapine ODT (Chemmart) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +969021000168103 Pregabalin (DRLA) 300 mg hard capsule, 14, blister pack 263074 969011000168105 Pregabalin (DRLA) 300 mg hard capsule, 14 969001000168107 Pregabalin (DRLA) 300 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +17811011000036105 Ialex 250 mg/5 mL powder for oral liquid, 100 mL, bottle 100142 11135011000036108 Ialex 250 mg/5 mL powder for oral liquid, 100 mL 5534011000036101 Ialex 250 mg/5 mL powder for oral liquid, 5 mL 3841011000036108 Ialex 3841011000036108 Ialex 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +61091011000036103 Regaine 2% gel, 3 x 60 mL, bottles 70864 57034011000036107 Regaine 2% gel, 3 x 60 mL 54166011000036105 Regaine 2% gel 25841000168103 Regaine 25841000168103 Regaine 63708011000036104 minoxidil 2% gel, 3 x 60 mL 62052011000036100 minoxidil 2% gel 21642011000036104 minoxidil +1112971000168109 Allopurinol (TN) 300 mg uncoated tablet, 30, blister pack 269655 1112961000168103 Allopurinol (TN) 300 mg uncoated tablet, 30 1112951000168100 Allopurinol (TN) 300 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 928971000168104 allopurinol 300 mg tablet, 30 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +60577011000036105 Dithrasal 2% ointment, 100 g, tube 15560 56535011000036105 Dithrasal 2% ointment, 100 g 53959011000036107 Dithrasal 2% ointment 53372011000036105 Dithrasal 53372011000036105 Dithrasal 63401011000036101 dithranol 2% ointment, 100 g 61942011000036106 dithranol 2% ointment 61732011000036104 dithranol +999441000168102 Valganciclovir (Apotex) 450 mg film-coated tablet, 60, blister pack 184306 999431000168106 Valganciclovir (Apotex) 450 mg film-coated tablet, 60 999421000168108 Valganciclovir (Apotex) 450 mg film-coated tablet 999411000168101 Valganciclovir (Apotex) 999411000168101 Valganciclovir (Apotex) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +947501000168100 Goricap 4 mg hard capsule, 28, blister pack 139693 947491000168107 Goricap 4 mg hard capsule, 28 947481000168109 Goricap 4 mg hard capsule 941911000168103 Goricap 941911000168103 Goricap 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +21135011000036107 Simvahexal 80 mg film-coated tablet, 30, bottle 98626 14277011000036105 Simvahexal 80 mg film-coated tablet, 30 7563011000036107 Simvahexal 80 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +845231000168107 Alcept 250 mg hard capsule, 100, blister pack 173660 845221000168109 Alcept 250 mg hard capsule, 100 845211000168102 Alcept 250 mg hard capsule 845201000168100 Alcept 845201000168100 Alcept 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +1033281000168109 Aten 100 mg film-coated tablet, 112, blister pack 197718 1033271000168106 Aten 100 mg film-coated tablet, 112 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1033261000168100 atenolol 100 mg tablet, 112 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +77371000036103 Metalyse (1 x 10 000 units (50 mg) vial, 1 x 10 mL inert diluent syringe), 1 pack, composite pack 75013 77031000036102 Metalyse (1 x 10 000 units (50 mg) vial, 1 x 10 mL inert diluent syringe), 1 pack 631651000168109 Metalyse (inert substance) diluent, 10 mL syringe 3710011000036108 Metalyse 3710011000036108 Metalyse 77041000036107 tenecteplase 10 000 units (50 mg) injection [1 vial] (&) inert substance diluent [10 mL syringe], 1 pack 629631000168100 inert substance diluent, 10 mL syringe 21220011000036103 inert substance +77371000036103 Metalyse (1 x 10 000 units (50 mg) vial, 1 x 10 mL inert diluent syringe), 1 pack, composite pack 75013 77031000036102 Metalyse (1 x 10 000 units (50 mg) vial, 1 x 10 mL inert diluent syringe), 1 pack 6749011000036103 Metalyse (tenecteplase 10 000 units (50 mg)) powder for injection, 50 mg vial 3710011000036108 Metalyse 3710011000036108 Metalyse 77041000036107 tenecteplase 10 000 units (50 mg) injection [1 vial] (&) inert substance diluent [10 mL syringe], 1 pack 23092011000036107 tenecteplase 10 000 units (50 mg) injection, vial 21434011000036109 tenecteplase +44197011000036100 Surmontil 50 mg hard capsule, 50, blister pack 55559 41673011000036105 Surmontil 50 mg hard capsule, 50 40137011000036109 Surmontil 50 mg hard capsule 35939011000036105 Surmontil 35939011000036105 Surmontil 46490011000036108 trimipramine maleate 50 mg capsule, 50 45184011000036103 trimipramine maleate 50 mg capsule 37752011000036108 trimipramine +879021000168103 Bosentan (Ran) 125 mg film-coated tablet, 60, blister pack 257733 878871000168101 Bosentan (Ran) 125 mg film-coated tablet, 60 878821000168102 Bosentan (Ran) 125 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +759631000168106 Opdivo 100 mg/10 mL concentrated injection, 10 mL vial 231868 759621000168108 Opdivo 100 mg/10 mL concentrated injection, 10 mL vial 759601000168104 Opdivo 100 mg/10 mL concentrated injection, 10 mL vial 759511000168102 Opdivo 759511000168102 Opdivo 759611000168101 nivolumab 100 mg/10 mL injection, 10 mL vial 759591000168106 nivolumab 100 mg/10 mL injection, vial 759531000168107 nivolumab +925175011000036109 Lercan 10 mg film-coated tablet, 30, blister pack 152707 924712011000036109 Lercan 10 mg film-coated tablet, 30 924428011000036106 Lercan 10 mg film-coated tablet 924368011000036107 Lercan 924368011000036107 Lercan 27841011000036104 lercanidipine hydrochloride 10 mg tablet, 30 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +718391000168101 Clindamycin (BNM) 150 mg hard capsule, 100, blister pack 219946 718381000168104 Clindamycin (BNM) 150 mg hard capsule, 100 718301000168107 Clindamycin (BNM) 150 mg hard capsule 718291000168106 Clindamycin (BNM) 718291000168106 Clindamycin (BNM) 922536011000036105 clindamycin 150 mg capsule, 100 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +691081000168102 Amoxycillin and Clavulanic Acid 400/57 (Apo) powder for oral liquid, 60 mL, bottle 147128 691071000168100 Amoxycillin and Clavulanic Acid 400/57 (Apo) powder for oral liquid, 60 mL 691061000168106 Amoxycillin and Clavulanic Acid 400/57 (Apo) powder for oral liquid, 5 mL 691051000168109 Amoxycillin and Clavulanic Acid 400/57 (Apo) 691051000168109 Amoxycillin and Clavulanic Acid 400/57 (Apo) 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +1033761000168105 Strong Pain Relief Extra (Amcal) uncoated tablet, 20, blister pack 208319 1033751000168108 Strong Pain Relief Extra (Amcal) uncoated tablet, 20 1033571000168109 Strong Pain Relief Extra (Amcal) uncoated tablet 1033541000168102 Strong Pain Relief Extra (Amcal) 1033541000168102 Strong Pain Relief Extra (Amcal) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +18582011000036109 Dizole 200 mg hard capsule, 28, blister pack 132789 11938011000036100 Dizole 200 mg hard capsule, 28 5806011000036100 Dizole 200 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +896161000168108 Imatinib (GH) 400 mg hard capsule, 120, blister pack 281536 896151000168106 Imatinib (GH) 400 mg hard capsule, 120 896061000168109 Imatinib (GH) 400 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 893981000168108 imatinib 400 mg capsule, 120 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +960431000168104 Granisetron (Apo) 3 mg/3 mL injection, 5 x 3 mL ampoules 217090 960421000168102 Granisetron (Apo) 3 mg/3 mL injection, 5 x 3 mL ampoules 960411000168109 Granisetron (Apo) 3 mg/3 mL injection, 3 mL ampoule 811311000168104 Granisetron (Apo) 811311000168104 Granisetron (Apo) 924180011000036100 granisetron 3 mg/3 mL injection, 5 x 3 mL ampoules 23543011000036106 granisetron 3 mg/3 mL injection, ampoule 21431011000036106 granisetron +61605011000036109 Strepfen Intensive orange sugar free 8.75 mg lozenge, 24, blister pack 157020 57527011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge, 24 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63909011000036104 flurbiprofen 8.75 mg lozenge, 24 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +61605011000036109 Strepfen Intensive orange sugar free 8.75 mg lozenge, 24, blister pack 96063 57527011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge, 24 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63909011000036104 flurbiprofen 8.75 mg lozenge, 24 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +857591000168100 Invega Trinza 175 mg/0.875 mL modified release injection, 0.875 mL syringe 261332 857581000168103 Invega Trinza 175 mg/0.875 mL modified release injection, 0.875 mL syringe 857571000168101 Invega Trinza 175 mg/0.875 mL modified release injection, 0.875 mL syringe 857421000168101 Invega Trinza 857421000168101 Invega Trinza 856581000168100 paliperidone 175 mg/0.875 mL modified release injection, 0.875 mL syringe 856561000168109 paliperidone 175 mg/0.875 mL modified release injection, syringe 34837011000036104 paliperidone +20929011000036103 Clopine 25 mg uncoated tablet, 100, bottle 93972 14083011000036103 Clopine 25 mg uncoated tablet, 100 7361011000036108 Clopine 25 mg uncoated tablet 3146011000036108 Clopine 3146011000036108 Clopine 28135011000036104 clozapine 25 mg tablet, 100 23444011000036102 clozapine 25 mg tablet 21222011000036104 clozapine +947561000168104 Risdone 1 mg film-coated tablet, 10, blister pack 144262 947551000168101 Risdone 1 mg film-coated tablet, 10 947511000168102 Risdone 1 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947541000168103 risperidone 1 mg tablet, 10 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +85631000036107 Dutran 50 microgram/hour patch, 5, sachet 190791 84761000036108 Dutran 50 microgram/hour patch, 5 84141000036106 Dutran 50 microgram/hour patch 83931000036102 Dutran 83931000036102 Dutran 26650011000036103 fentanyl 50 microgram/hour patch, 5 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +61468011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 150, bottle 91160 57393011000036104 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 150 54294011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet 53164011000036100 Paracetamol (Pharmacy Health) 53164011000036100 Paracetamol (Pharmacy Health) 63843011000036102 paracetamol 500 mg tablet, 150 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +86141011000036103 Gabatine 600 mg film-coated tablet, 500, blister pack 161570 85749011000036108 Gabatine 600 mg film-coated tablet, 500 85373011000036105 Gabatine 600 mg film-coated tablet 39179011000036102 Gabatine 39179011000036102 Gabatine 35776011000036105 gabapentin 600 mg tablet, 500 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +1035931000168104 Aranesp with Automatic Needle Guard 15 microgram/0.38 mL injection solution, 0.38 mL syringe 166088 1035921000168102 Aranesp with Automatic Needle Guard 15 microgram/0.38 mL injection solution, 0.38 mL syringe 1035911000168109 Aranesp with Automatic Needle Guard 15 microgram/0.38 mL injection solution, 0.38 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983831000168105 darbepoetin alfa 15 microgram/0.38 mL injection, 0.38 mL syringe 983811000168100 darbepoetin alfa 15 microgram/0.38 mL injection, syringe 21234011000036105 darbepoetin alfa +19610011000036103 Selgene 5 mg uncoated tablet, 100, bottle 58621 12880011000036103 Selgene 5 mg uncoated tablet, 100 6171011000036106 Selgene 5 mg uncoated tablet 3028011000036102 Selgene 3028011000036102 Selgene 27415011000036103 selegiline hydrochloride 5 mg tablet, 100 22763011000036109 selegiline hydrochloride 5 mg tablet 21925011000036108 selegiline +44711011000036100 Chirocaine 62.5 mg/100 mL injection solution, 60 x 100 mL bags 94479 42156011000036103 Chirocaine 62.5 mg/100 mL injection solution, 60 x 100 mL bags 40370011000036101 Chirocaine 62.5 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46917011000036107 levobupivacaine 62.5 mg/100 mL injection, 60 x 100 mL bags 45345011000036104 levobupivacaine 62.5 mg/100 mL injection, bag 44881011000036100 levobupivacaine +19353011000036105 Cyprostat 100 mg uncoated tablet, 50, blister pack 51450 12641011000036107 Cyprostat 100 mg uncoated tablet, 50 4875011000036109 Cyprostat 100 mg uncoated tablet 3019011000036100 Cyprostat 3019011000036100 Cyprostat 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +931703011000036107 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet, 84, blister pack 172168 930863011000036102 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet, 84 930079011000036108 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet 33171000168102 Aspirin EC (Pharmacy Choice) 33171000168102 Aspirin EC (Pharmacy Choice) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +761731000168109 Codapane Xtra uncoated tablet, 24, blister pack 199680 761721000168106 Codapane Xtra uncoated tablet, 24 761641000168105 Codapane Xtra uncoated tablet 761631000168101 Codapane Xtra 761631000168101 Codapane Xtra 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +900541000168105 Amoxycillin (WT) 250 mg hard capsule, 20, blister pack 198123 900531000168101 Amoxycillin (WT) 250 mg hard capsule, 20 900521000168104 Amoxycillin (WT) 250 mg hard capsule 900511000168106 Amoxycillin (WT) 900511000168106 Amoxycillin (WT) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +948061000168107 Roxithromycin (Pharmacor) 300 mg film-coated tablet, 5, blister pack 133759 948051000168105 Roxithromycin (Pharmacor) 300 mg film-coated tablet, 5 948041000168108 Roxithromycin (Pharmacor) 300 mg film-coated tablet 948001000168106 Roxithromycin (Pharmacor) 948001000168106 Roxithromycin (Pharmacor) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +1018131000168104 Amisulpride (Apotex) 400 mg film-coated tablet, 50, blister pack 178897 1018121000168102 Amisulpride (Apotex) 400 mg film-coated tablet, 50 1018091000168101 Amisulpride (Apotex) 400 mg film-coated tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 80067011000036104 amisulpride 400 mg tablet, 50 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +931611011000036100 Pravista 10 mg film-coated tablet, 90, bottle 163560 930772011000036100 Pravista 10 mg film-coated tablet, 90 930040011000036101 Pravista 10 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932406011000036105 pravastatin sodium 10 mg tablet, 90 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +1012351000168106 Irbesartan (Apotex) 75 mg film-coated tablet, 56, blister pack 169798 1012341000168109 Irbesartan (Apotex) 75 mg film-coated tablet, 56 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777271000168103 irbesartan 75 mg tablet, 56 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +933212941000036103 Amlodipine (Auro) 5 mg uncoated tablet, 30, blister pack 151427 933202691000036101 Amlodipine (Auro) 5 mg uncoated tablet, 30 933194551000036100 Amlodipine (Auro) 5 mg uncoated tablet 42881000168102 Amlodipine (Auro) 42881000168102 Amlodipine (Auro) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +923815011000036100 Sulprix 50 mg tablet, 50, blister pack 156047 923361011000036100 Sulprix 50 mg tablet, 50 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924159011000036103 amisulpride 50 mg tablet, 50 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1087251000168101 Zorvolex 18 mg hard capsule, 30, blister pack 282521 1087241000168103 Zorvolex 18 mg hard capsule, 30 1087081000168102 Zorvolex 18 mg hard capsule 1087021000168101 Zorvolex 1087021000168101 Zorvolex 1087231000168107 diclofenac 18 mg capsule, 30 1087071000168100 diclofenac 18 mg capsule 21288011000036105 diclofenac +77291000036108 Rabzole 20 mg enteric tablet, 30, blister pack 196814 76991000036102 Rabzole 20 mg enteric tablet, 30 76711000036105 Rabzole 20 mg enteric tablet 76651000036104 Rabzole 76651000036104 Rabzole 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +32563011000036107 Naltrexone Hydrochloride (QP) 50 mg film-coated tablet, 30, blister pack 128710 32354011000036103 Naltrexone Hydrochloride (QP) 50 mg film-coated tablet, 30 32231011000036107 Naltrexone Hydrochloride (QP) 50 mg film-coated tablet 32183011000036103 Naltrexone Hydrochloride (QP) 32183011000036103 Naltrexone Hydrochloride (QP) 27559011000036103 naltrexone hydrochloride 50 mg tablet, 30 22898011000036104 naltrexone hydrochloride 50 mg tablet 21848011000036105 naltrexone +931778011000036106 Concerta 54 mg modified release tablet, 28, bottle 93864 930938011000036109 Concerta 54 mg modified release tablet, 28 7355011000036104 Concerta 54 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932507011000036103 methylphenidate hydrochloride 54 mg modified release tablet, 28 23439011000036102 methylphenidate hydrochloride 54 mg modified release tablet 21277011000036101 methylphenidate +137071000036105 Durafiber (66800563) 2 cm x 45 cm rope, 5, carton 136991000036108 Durafiber (66800563) 2 cm x 45 cm rope, 5 136861000036108 Durafiber (66800563) 2 cm x 45 cm rope 63801000168109 Durafiber (66800563) 63801000168109 Durafiber (66800563) 137001000036101 dressing gelling fibre 2 cm x 45 cm rope, 5 136871000036100 dressing gelling fibre 2 cm x 45 cm rope 137081000036107 dressing gelling fibre +68887011000036103 Mintec 0.2 mL enteric capsule, 20, blister pack 12993 66737011000036100 Mintec 0.2 mL enteric capsule, 20 65372011000036101 Mintec 0.2 mL enteric capsule 65155011000036104 Mintec 65155011000036104 Mintec 71403011000036107 peppermint oil 0.2 mL enteric capsule, 20 69997011000036106 peppermint oil 0.2 mL enteric capsule 69794011000036107 peppermint oil +923770011000036104 Salbutamol Respule (Ranbaxy) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 151319 923332011000036102 Salbutamol Respule (Ranbaxy) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 923009011000036101 Salbutamol Respule (Ranbaxy) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 55501000168101 Salbutamol Respule (Ranbaxy) 55501000168101 Salbutamol Respule (Ranbaxy) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +1020851000168106 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 97842 1020841000168109 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 1020831000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +1020851000168106 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 65861 1020841000168109 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 1020831000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +1020851000168106 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 97842 1020841000168109 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 688791000168108 Priorix (inert substance) diluent, 0.5 mL syringe 73748011000036105 Priorix 73748011000036105 Priorix 1020831000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +1020851000168106 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 65861 1020841000168109 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 688791000168108 Priorix (inert substance) diluent, 0.5 mL syringe 73748011000036105 Priorix 73748011000036105 Priorix 1020831000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +900044011000036109 MMA/PA Gel powder for oral liquid, 30 x 20 g sachets 900021011000036108 MMA/PA Gel powder for oral liquid, 30 x 20 g sachets 410321000168109 MMA/PA Gel powder for oral liquid, 20 g sachet 42611000168107 MMA/PA Gel 42611000168107 MMA/PA Gel 900056011000036104 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 30 x 20 g sachets 410051000168103 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 20 g sachet 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +34705011000036101 Pethidine Hydrochloride (DBL) 500 mg/10 mL injection solution, 10 x 10 mL vials 16271 34289011000036107 Pethidine Hydrochloride (DBL) 500 mg/10 mL injection solution, 10 x 10 mL vials 34013011000036103 Pethidine Hydrochloride (DBL) 500 mg/10 mL injection solution, 10 mL vial 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35138011000036104 pethidine hydrochloride 500 mg/10 mL injection, 10 x 10 mL vials 34862011000036105 pethidine hydrochloride 500 mg/10 mL injection, vial 34839011000036106 pethidine +709731000168107 Testogel 1% (12.5 mg/actuation) gel, 60 actuations, pump pack 709721000168109 Testogel 1% (12.5 mg/actuation) gel, 60 actuations 709701000168100 Testogel 1% (12.5 mg/actuation) gel, actuation 3232011000036108 Testogel 3232011000036108 Testogel 709711000168102 testosterone 1% (12.5 mg/actuation) gel, 60 actuations 709691000168100 testosterone 1% (12.5 mg/actuation) gel, actuation 21290011000036109 testosterone +55711000036102 Anastrozole (Synthon) 1 mg film-coated tablet, 10, blister pack 155176 52461000036103 Anastrozole (Synthon) 1 mg film-coated tablet, 10 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 51971000036108 anastrozole 1 mg tablet, 10 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +43666011000036104 Stilnox CR 6.25 mg modified release tablet, 2, blister pack 120707 41236011000036100 Stilnox CR 6.25 mg modified release tablet, 2 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46178011000036103 zolpidem tartrate 6.25 mg modified release tablet, 2 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +770411000168106 Actair 300 IR sublingual tablet, 7, blister pack 770401000168108 Actair 300 IR sublingual tablet, 7 770381000168108 Actair 300 IR sublingual tablet 768771000168102 Actair 300 IR 768771000168102 Actair 300 IR 770391000168106 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet, 7 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +922001011000036105 Vancomycin (DBL) 500 mg powder for injection, 10 vials 62603 921559011000036101 Vancomycin (DBL) 500 mg powder for injection, 10 vials 6312011000036102 Vancomycin (DBL) 500 mg powder for injection, 500 mg vial 4211011000036109 Vancomycin (DBL) 4211011000036109 Vancomycin (DBL) 922675011000036105 vancomycin 500 mg injection, 10 vials 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +762941000168105 Oxycodone MR (Chemmart) 10 mg modified release tablet, 60, blister pack 214498 762931000168101 Oxycodone MR (Chemmart) 10 mg modified release tablet, 60 762881000168106 Oxycodone MR (Chemmart) 10 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +848931000168109 Itraconazole (Apo) 100 mg hard capsule, 28, blister pack 244473 848921000168106 Itraconazole (Apo) 100 mg hard capsule, 28 848781000168108 Itraconazole (Apo) 100 mg hard capsule 848771000168105 Itraconazole (Apo) 848771000168105 Itraconazole (Apo) 848911000168104 itraconazole 100 mg capsule, 28 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +889621000168104 Amisulpride (SCP) 50 mg uncoated tablet, 30, blister pack 234712 889611000168106 Amisulpride (SCP) 50 mg uncoated tablet, 30 889601000168108 Amisulpride (SCP) 50 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +831741000168108 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack 115008 831731000168104 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack 643551000168105 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines (inert substance) diluent, 0.7 mL syringe 40011000168104 Varivax Refrigerated 73763011000036106 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines 831721000168102 varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack 643541000168108 inert substance diluent, 0.7 mL syringe 21220011000036103 inert substance +831741000168108 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack 115008 831731000168104 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack 831711000168109 Varivax Refrigerated (varicella-zoster live vaccine) powder for injection, vial 40011000168104 Varivax Refrigerated 40011000168104 Varivax Refrigerated 831721000168102 varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack 831701000168106 varicella-zoster live vaccine 1350 PFU injection, vial 830851000168105 varicella-zoster live vaccine +81104011000036106 Paedamin Children's Decongestant and Antihistamine oral liquid solution, 60 mL, bottle 160400 80609011000036101 Paedamin Children's Decongestant and Antihistamine oral liquid solution, 60 mL 80207011000036106 Paedamin Children's Decongestant and Antihistamine oral liquid solution, 5 mL 22311000168104 Paedamin Children's Decongestant and Antihistamine 22311000168104 Paedamin Children's Decongestant and Antihistamine 81674011000036102 diphenhydramine hydrochloride 12.5 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 60 mL 61965011000036106 diphenhydramine hydrochloride 12.5 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61812011000036109 diphenhydramine + phenylephrine +780131000168101 Fentanyl (Apo) 25 microgram/hour patch, 8, sachet 152574 780121000168104 Fentanyl (Apo) 25 microgram/hour patch, 8 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235851000036106 fentanyl 25 microgram/hour patch, 8 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +60870011000036108 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 200 mL, bottle 59271 56824011000036105 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 200 mL 54090011000036102 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 10 mL 10841000168100 Decongestant and Expectorant Cough Medicine (Pharmacist) 10841000168100 Decongestant and Expectorant Cough Medicine (Pharmacist) 63593011000036106 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 200 mL 62082011000036107 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +759721000168101 Crystaderm 1% cream, 15 g, tube 257332 759711000168108 Crystaderm 1% cream, 15 g 759661000168103 Crystaderm 1% cream 759641000168102 Crystaderm 759641000168102 Crystaderm 759701000168105 hydrogen peroxide 1% cream, 15 g 759651000168100 hydrogen peroxide 1% cream 69793011000036105 hydrogen peroxide +926776011000036105 Colgate Total toothpaste, 110 g, tube 154432 926173011000036106 Colgate Total toothpaste, 110 g 925656011000036103 Colgate Total toothpaste 23851000168102 Colgate Total 23851000168102 Colgate Total 927331011000036104 sodium fluoride 0.22% + triclosan 0.3% toothpaste, 110 g 926991011000036101 sodium fluoride 0.22% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +976101000168105 Humira 40 mg/0.8 mL injection solution, 0.8 mL vial 95779 976091000168100 Humira 40 mg/0.8 mL injection solution, 0.8 mL vial 976071000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL vial 4142011000036107 Humira 4142011000036107 Humira 976081000168103 adalimumab 40 mg/0.8 mL injection, 0.8 mL vial 976061000168107 adalimumab 40 mg/0.8 mL injection, vial 21584011000036107 adalimumab +61691011000036105 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 96, blister pack 98576 57612011000036104 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 96 54363011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet 1721000168108 Ibuprofen Blue (Herron) 1721000168108 Ibuprofen Blue (Herron) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44070011000036102 Kenacort-A40 40 mg/mL injection suspension, 5 x 1 mL ampoules 49226 41557011000036105 Kenacort-A40 40 mg/mL injection suspension, 5 x 1 mL ampoules 40061011000036102 Kenacort-A40 40 mg/mL injection suspension, ampoule 57491000168100 Kenacort-A40 57491000168100 Kenacort-A40 46387011000036103 triamcinolone acetonide 40 mg/mL injection, 5 x 1 mL ampoules 45122011000036104 triamcinolone acetonide 40 mg/mL injection, ampoule 21377011000036106 triamcinolone +50684011000036100 Clinistix diagnostic strip, 50, bottle 72545 49708011000036105 Clinistix diagnostic strip, 50 48836011000036102 Clinistix diagnostic strip 48364011000036103 Clinistix 48364011000036103 Clinistix 51569011000036103 glucose indicator urine diagnostic strip, 50 51006011000036105 glucose indicator urine diagnostic strip 50762011000036101 glucose indicator urine +165821000036104 Sertraline (Actavis) 100 mg film-coated tablet, 30, blister pack 195321 163961000036102 Sertraline (Actavis) 100 mg film-coated tablet, 30 162171000036100 Sertraline (Actavis) 100 mg film-coated tablet 161981000036108 Sertraline (Actavis) 161981000036108 Sertraline (Actavis) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +716861000168104 Pemzo 20 mg enteric capsule, 50, bottle 167315 716811000168102 Pemzo 20 mg enteric capsule, 50 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716641000168104 omeprazole 20 mg enteric capsule, 50 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +677611000168103 Breo Ellipta 100/25 powder for inhalation, 14 actuations, blister pack 199748 677601000168101 Breo Ellipta 100/25 powder for inhalation, 14 actuations 677551000168103 Breo Ellipta 100/25 powder for inhalation, actuation 677531000168109 Breo Ellipta 100/25 677531000168109 Breo Ellipta 100/25 677591000168108 fluticasone furoate 100 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, 14 actuations 677541000168100 fluticasone furoate 100 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, actuation 861401000168109 fluticasone furoate + vilanterol +21065011000036106 Ventavis 20 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 97219 14209011000036105 Ventavis 20 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 7492011000036107 Ventavis 20 microgram/2 mL inhalation solution, 2 mL ampoule 4439011000036102 Ventavis 4439011000036102 Ventavis 28216011000036103 iloprost 20 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 23529011000036106 iloprost 20 microgram/2 mL inhalation solution, ampoule 21781011000036105 iloprost +18121011000036104 Zyloprim 100 mg uncoated tablet, 200, bottle 11016 11404011000036102 Zyloprim 100 mg uncoated tablet, 200 5145011000036109 Zyloprim 100 mg uncoated tablet 4205011000036109 Zyloprim 4205011000036109 Zyloprim 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +739461000168104 Bepanthen 5% ointment, 100 g, tube 97936 739451000168101 Bepanthen 5% ointment, 100 g 739401000168100 Bepanthen 5% ointment 739331000168101 Bepanthen 739331000168101 Bepanthen 739441000168103 dexpanthenol 5% ointment, 100 g 739391000168102 dexpanthenol 5% ointment 739381000168100 dexpanthenol +69077011000036107 Intralipid 20% (20 g/100 mL) intravenous infusion injection, 10 x 100 mL bottles 14472 66878011000036103 Intralipid 20% (20 g/100 mL) intravenous infusion injection, 10 x 100 mL bottles 65501011000036100 Intralipid 20% (20 g/100 mL) intravenous infusion injection, 100 mL bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71482011000036104 soya oil 20% (20 g/100 mL) injection, 10 x 100 mL bottles 70028011000036109 soya oil 20% (20 g/100 mL) injection, bottle 69767011000036104 soya oil +872421000168101 Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag 19432 872411000168108 Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag 872391000168108 Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag 81984011000036107 Haemofiltration Replacement Fluid (Baxter) 81984011000036107 Haemofiltration Replacement Fluid (Baxter) 872401000168105 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 5 L bag 872381000168105 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, bag 861211000168106 calcium chloride dihydrate + glucose + magnesium chloride + potassium chloride + sodium chloride + sodium lactate +1015961000168103 Xifaxan 550 mg film-coated tablet, 28, blister pack 183411 1015951000168100 Xifaxan 550 mg film-coated tablet, 28 93521000036107 Xifaxan 550 mg film-coated tablet 93311000036109 Xifaxan 93311000036109 Xifaxan 1015941000168102 rifaximin 550 mg tablet, 28 93531000036109 rifaximin 550 mg tablet 95821000036105 rifaximin +59928011000036101 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet, 48, blister pack 119159 55890011000036109 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet, 48 53603011000036102 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet 53568011000036103 Ibuprofen (Terry White Chemists) 53568011000036103 Ibuprofen (Terry White Chemists) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +68835011000036103 Obstetric Care (Orion) 1% lotion, 50 g, tube 10788 66553011000036109 Obstetric Care (Orion) 1% lotion, 50 g 65455011000036103 Obstetric Care (Orion) 1% lotion 65151011000036101 Obstetric Care (Orion) 65151011000036101 Obstetric Care (Orion) 71281011000036109 chlorhexidine gluconate 1% lotion, 50 g 69990011000036105 chlorhexidine gluconate 1% lotion 21404011000036101 chlorhexidine +928961011000036107 Pioglitazone (Pharmacor) 15 mg uncoated tablet, 7, blister pack 156716 928322011000036104 Pioglitazone (Pharmacor) 15 mg uncoated tablet, 7 927949011000036107 Pioglitazone (Pharmacor) 15 mg uncoated tablet 927785011000036106 Pioglitazone (Pharmacor) 927785011000036106 Pioglitazone (Pharmacor) 929267011000036103 pioglitazone 15 mg tablet, 7 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +19806011000036106 Losec 10 mg enteric tablet, 30, blister pack 63414 13063011000036103 Losec 10 mg enteric tablet, 30 6347011000036106 Losec 10 mg enteric tablet 3618011000036100 Losec 3618011000036100 Losec 27528011000036107 omeprazole 10 mg enteric tablet, 30 22868011000036102 omeprazole 10 mg enteric tablet 21676011000036101 omeprazole +756821000168103 Duloxetine (Sandoz) 60 mg enteric capsule, 14, blister pack 197167 756811000168105 Duloxetine (Sandoz) 60 mg enteric capsule, 14 756771000168105 Duloxetine (Sandoz) 60 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 756801000168107 duloxetine 60 mg enteric capsule, 14 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +69005011000036105 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 10 sachets 138697 66807011000036106 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 10 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71932011000036108 paracetamol 1 g powder for oral liquid, 10 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +43753011000036106 Bucanest 4% / 1 in 100 000 injection solution, 10 x 2.2 mL cartridges 101549 41128011000036102 Bucanest 4% / 1 in 100 000 injection solution, 10 x 2.2 mL cartridges 39964011000036106 Bucanest 4% / 1 in 100 000 injection solution, 2.2 mL cartridge 44081000168102 Bucanest 4% / 1 in 100 000 44081000168102 Bucanest 4% / 1 in 100 000 46108011000036107 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, 10 x 2.2 mL cartridges 44989011000036105 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +18700011000036108 Perindo 8 mg uncoated tablet, 30, blister pack 121749 11688011000036108 Perindo 8 mg uncoated tablet, 30 5671011000036107 Perindo 8 mg uncoated tablet 3491011000036108 Perindo 3491011000036108 Perindo 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +59856011000036107 Paracetamol Extra (Guardian) uncoated tablet, 48, blister pack 115172 55818011000036107 Paracetamol Extra (Guardian) uncoated tablet, 48 53633011000036106 Paracetamol Extra (Guardian) uncoated tablet 53508011000036102 Paracetamol Extra (Guardian) 53508011000036102 Paracetamol Extra (Guardian) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +24521000036103 Valaciclovir (Pfizer) 500 mg film-coated tablet, 30, blister pack 173287 22531000036106 Valaciclovir (Pfizer) 500 mg film-coated tablet, 30 19921000036100 Valaciclovir (Pfizer) 500 mg film-coated tablet 19791000036100 Valaciclovir (Pfizer) 19791000036100 Valaciclovir (Pfizer) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +889581000168104 Amisulpride (CH) 50 mg uncoated tablet, 90, blister pack 234692 889571000168102 Amisulpride (CH) 50 mg uncoated tablet, 90 889521000168103 Amisulpride (CH) 50 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1119821000168108 Quetiapine XR (Actavis) 400 mg modified release tablet, 100, blister pack 226805 1119811000168101 Quetiapine XR (Actavis) 400 mg modified release tablet, 100 1119671000168105 Quetiapine XR (Actavis) 400 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51539011000036109 quetiapine 400 mg modified release tablet, 100 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +760041000168108 Betahistine (GH) 16 mg uncoated tablet, 30, blister pack 212076 760031000168104 Betahistine (GH) 16 mg uncoated tablet, 30 759971000168103 Betahistine (GH) 16 mg uncoated tablet 759961000168109 Betahistine (GH) 759961000168109 Betahistine (GH) 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +847811000168109 Alfentanil (GH) 1 mg/2 mL injection solution, 2 mL ampoule 200007 847801000168106 Alfentanil (GH) 1 mg/2 mL injection solution, 2 mL ampoule 699831000168109 Alfentanil (GH) 1 mg/2 mL injection solution, 2 mL ampoule 699791000168103 Alfentanil (GH) 699791000168103 Alfentanil (GH) 847791000168105 alfentanil 1 mg/2 mL injection, 2 mL ampoule 34896011000036107 alfentanil 1 mg/2 mL injection, ampoule 34836011000036102 alfentanil +688021000168109 Ciprofloxacin (Alphapharm) 200 mg/100 mL injection solution, 10 x 100 mL bags 154611 688011000168102 Ciprofloxacin (Alphapharm) 200 mg/100 mL injection solution, 10 x 100 mL bags 688001000168100 Ciprofloxacin (Alphapharm) 200 mg/100 mL injection solution, 100 mL bag 687661000168108 Ciprofloxacin (Alphapharm) 687661000168108 Ciprofloxacin (Alphapharm) 46210011000036105 ciprofloxacin 200 mg/100 mL injection, 10 x 100 mL bags 45032011000036109 ciprofloxacin 200 mg/100 mL injection, bag 21245011000036105 ciprofloxacin +19593011000036101 Atrovent Adult UDV 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 58203 12864011000036105 Atrovent Adult UDV 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 6155011000036105 Atrovent Adult UDV 500 microgram/mL inhalation solution, ampoule 56661000168106 Atrovent Adult UDV 56661000168106 Atrovent Adult UDV 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +889301000168103 Bosleer 62.5 mg film-coated tablet, 112, blister pack 235891 889291000168104 Bosleer 62.5 mg film-coated tablet, 112 889181000168109 Bosleer 62.5 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884361000168101 bosentan 62.5 mg tablet, 112 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +35647011000036100 Methopt Tears 0.5% eye drops solution, 15 mL, bottle 35558011000036106 Methopt Tears 0.5% eye drops solution, 15 mL 35466011000036106 Methopt Tears 0.5% eye drops solution 50511000168109 Methopt Tears 50511000168109 Methopt Tears 35759011000036104 hypromellose 0.5% eye drops, 15 mL 35701011000036109 hypromellose 0.5% eye drops 35690011000036109 hypromellose +839231000168106 Fenofibrate (Mylan) 145 mg film-coated tablet, 30, blister pack 230443 839221000168108 Fenofibrate (Mylan) 145 mg film-coated tablet, 30 839211000168101 Fenofibrate (Mylan) 145 mg film-coated tablet 839201000168104 Fenofibrate (Mylan) 839201000168104 Fenofibrate (Mylan) 26700011000036101 fenofibrate 145 mg tablet, 30 22095011000036109 fenofibrate 145 mg tablet 21417011000036105 fenofibrate +931398011000036101 Rispernia 500 microgram film-coated tablet, 60, bottle 127918 930585011000036102 Rispernia 500 microgram film-coated tablet, 60 929953011000036102 Rispernia 500 microgram film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +69247011000036100 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 19467 67047011000036103 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 65192011000036104 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 71617011000036102 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, 500 mL bag 70094011000036106 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +19011011000036100 Tritace 1.25 mg uncoated tablet, 30, blister pack 34515 12316011000036101 Tritace 1.25 mg uncoated tablet, 30 4871011000036107 Tritace 1.25 mg uncoated tablet 4384011000036103 Tritace 4384011000036103 Tritace 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +775871000168107 Targin 30/15 mg modified release tablet, 28, blister pack 216280 775861000168101 Targin 30/15 mg modified release tablet, 28 775811000168104 Targin 30/15 mg modified release tablet 775791000168103 Targin 30/15 mg 775791000168103 Targin 30/15 mg 775851000168103 oxycodone hydrochloride 30 mg + naloxone hydrochloride 15 mg modified release tablet, 28 775801000168102 oxycodone hydrochloride 30 mg + naloxone hydrochloride 15 mg modified release tablet 923931011000036100 oxycodone + naloxone +68786011000036103 Panadol Cold and Flu lemon 600 mg powder for oral liquid, 5 sachets 131525 66745011000036106 Panadol Cold and Flu lemon 600 mg powder for oral liquid, 5 sachets 65454011000036102 Panadol Cold and Flu lemon 600 mg powder for oral liquid, 1 sachet 3791000168106 Panadol Cold and Flu 3791000168106 Panadol Cold and Flu 71409011000036105 paracetamol 600 mg powder for oral liquid, 5 sachets 69999011000036104 paracetamol 600 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +846441000168107 Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices 231152 846431000168103 Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices 846371000168107 Repatha Sureclick 140 mg/mL injection solution, injection device 846351000168103 Repatha Sureclick 846351000168103 Repatha Sureclick 806251000168101 evolocumab 140 mg/mL injection, 3 x 1 mL injection devices 806071000168100 evolocumab 140 mg/mL injection, injection device 805961000168102 evolocumab +50442011000036101 Restore Plus (9958) 20 cm x 20 cm dressing, 3, carton 49387011000036109 Restore Plus (9958) 20 cm x 20 cm dressing, 3 48688011000036102 Restore Plus (9958) 20 cm x 20 cm dressing 28241000168109 Restore Plus (9958) 28241000168109 Restore Plus (9958) 51360011000036107 dressing hydrocolloid superficial wound moderate exudate 20 cm x 20 cm dressing, 3 50883011000036109 dressing hydrocolloid superficial wound moderate exudate 20 cm x 20 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +1088451000168104 Mersynofen film-coated tablet, 24, blister pack 283907 1088441000168101 Mersynofen film-coated tablet, 24 1088371000168101 Mersynofen film-coated tablet 1088361000168107 Mersynofen 1088361000168107 Mersynofen 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +18769011000036101 Fosamax Plus Once Weekly 70 mg/70 microgram uncoated tablet, 4, blister pack 113482 11447011000036100 Fosamax Plus Once Weekly 70 mg/70 microgram uncoated tablet, 4 4858011000036100 Fosamax Plus Once Weekly 70 mg/70 microgram uncoated tablet 32901000168101 Fosamax Plus Once Weekly 70 mg/70 microgram 32901000168101 Fosamax Plus Once Weekly 70 mg/70 microgram 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +18429011000036104 Methoblastin 10 mg uncoated tablet, 50, bottle 15417 12092011000036102 Methoblastin 10 mg uncoated tablet, 50 5578011000036106 Methoblastin 10 mg uncoated tablet 3599011000036102 Methoblastin 3599011000036102 Methoblastin 26906011000036108 methotrexate 10 mg tablet, 50 22283011000036101 methotrexate 10 mg tablet 21342011000036105 methotrexate +889261000168106 Bosleer 62.5 mg film-coated tablet, 14, blister pack 235891 889251000168109 Bosleer 62.5 mg film-coated tablet, 14 889181000168109 Bosleer 62.5 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884311000168104 bosentan 62.5 mg tablet, 14 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +43658011000036106 Refacto (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119167 41213011000036100 Refacto (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 39919011000036108 Refacto (moroctocog alfa 2000 units) powder for injection, 2000 units vial 7771000168100 Refacto 7771000168100 Refacto 46164011000036104 moroctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45016011000036102 moroctocog alfa 2000 units injection, vial 44868011000036107 moroctocog alfa +43658011000036106 Refacto (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119167 41213011000036100 Refacto (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 631401000168108 Refacto (inert substance) diluent, 4 mL syringe 7771000168100 Refacto 7771000168100 Refacto 46164011000036104 moroctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +60219011000036100 Bisolvon Chesty 4 mg/5 mL oral liquid solution, 250 mL, bottle 133244 56178011000036108 Bisolvon Chesty 4 mg/5 mL oral liquid solution, 250 mL 53826011000036105 Bisolvon Chesty 4 mg/5 mL oral liquid solution, 5 mL 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63253011000036109 bromhexine hydrochloride 4 mg/5 mL oral liquid, 250 mL 62004011000036102 bromhexine hydrochloride 4 mg/5 mL oral liquid 61780011000036106 bromhexine +895041000168100 Atomoxetine (Sandoz) 25 mg hard capsule, 28, blister pack 238368 895031000168109 Atomoxetine (Sandoz) 25 mg hard capsule, 28 894971000168107 Atomoxetine (Sandoz) 25 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +82328011000036104 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent vial), 1 pack, vial 144294 82144011000036101 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent vial), 1 pack 642331000168100 Novoseven RT (inert substance) diluent, 2 mL vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 82535011000036109 eptacog alfa (activated) 2 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +82328011000036104 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent vial), 1 pack, vial 144294 82144011000036101 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent vial), 1 pack 82014011000036102 Novoseven RT (eptacog alfa (activated) 2 mg) powder for injection, 2 mg vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 82535011000036109 eptacog alfa (activated) 2 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 82443011000036102 eptacog alfa (activated) 2 mg injection, vial 44889011000036101 eptacog alfa (activated) +77267011000036100 Panadol Rapid Soluble 500 mg effervescent tablet, 20, strip pack 15509 76683011000036106 Panadol Rapid Soluble 500 mg effervescent tablet, 20 76115011000036109 Panadol Rapid Soluble 500 mg effervescent tablet 13471000168102 Panadol Rapid Soluble 13471000168102 Panadol Rapid Soluble 83211000036104 paracetamol 500 mg effervescent tablet, 20 83101000036106 paracetamol 500 mg effervescent tablet 21433011000036107 paracetamol +1018951000168107 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 4 x 5 mL vials 190334 1018941000168105 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 4 x 5 mL vials 1018901000168108 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 5 mL vial 1018811000168100 Zoledronic Acid (Apotex) 1018811000168100 Zoledronic Acid (Apotex) 1018931000168101 zoledronic acid 4 mg/5 mL injection, 4 x 5 mL vials 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +60654011000036107 Folic Acid (Phebra) 15 mg/mL injection solution, 5 x 1 mL ampoules 29655 56612011000036100 Folic Acid (Phebra) 15 mg/mL injection solution, 5 x 1 mL ampoules 54007011000036103 Folic Acid (Phebra) 15 mg/mL injection solution, ampoule 53328011000036107 Folic Acid (Phebra) 53328011000036107 Folic Acid (Phebra) 63464011000036102 folic acid 15 mg/mL injection, 5 x 1 mL ampoules 61983011000036108 folic acid 15 mg/mL injection, ampoule 21654011000036106 folic acid +702091000168100 Logem 100 mg tablet, 56, blister pack 99062 702081000168103 Logem 100 mg tablet, 56 702071000168101 Logem 100 mg tablet 701951000168104 Logem 701951000168104 Logem 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +34823011000036106 Flucil 1 g powder for injection, 5 vials 90878 34398011000036108 Flucil 1 g powder for injection, 5 vials 34073011000036106 Flucil 1 g powder for injection, vial 33956011000036109 Flucil 33956011000036109 Flucil 28101011000036108 flucloxacillin 1 g injection, 5 vials 23409011000036107 flucloxacillin 1 g injection, vial 21623011000036108 flucloxacillin +56191000036102 Fexofenadine Hydrochloride (Pharmacy Health) 120 mg film-coated tablet, 10, blister pack 152887 51521000036100 Fexofenadine Hydrochloride (Pharmacy Health) 120 mg film-coated tablet, 10 49591000036101 Fexofenadine Hydrochloride (Pharmacy Health) 120 mg film-coated tablet 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +24611000036109 Local Angel 4% gel, 30 g, tube 21991000036108 Local Angel 4% gel, 30 g 20581000036106 Local Angel 4% gel 86592011000036107 Local Angel 86592011000036107 Local Angel 86995011000036108 tetracaine (amethocaine) 4% gel, 30 g 86909011000036107 tetracaine (amethocaine) 4% gel 37707011000036100 tetracaine (amethocaine) +834801000168101 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100, blister pack 42077 834791000168102 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100 834781000168100 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet 4087011000036108 Codeine Phosphate (Fawns & McAllan) 4087011000036108 Codeine Phosphate (Fawns & McAllan) 834711000168106 codeine phosphate hemihydrate 30 mg tablet, 100 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +1039421000168106 Atorvastatin (GA) 10 mg film-coated tablet, 50, blister pack 178539 1039411000168104 Atorvastatin (GA) 10 mg film-coated tablet, 50 1039301000168105 Atorvastatin (GA) 10 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841591000168106 atorvastatin 10 mg tablet, 50 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +61161011000036107 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 50 mL, bottle 74631 57104011000036105 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 50 mL 54198011000036107 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 63817011000036100 paracetamol 120 mg/5 mL oral liquid, 50 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +933230251000036100 Astromide 140 mg hard capsule, 5, bottle 163678 933224131000036107 Astromide 140 mg hard capsule, 5 933220131000036101 Astromide 140 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +802741000168109 Abilify ODT 30 mg orally disintegrating tablet, 5, blister pack 128904 802731000168100 Abilify ODT 30 mg orally disintegrating tablet, 5 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802721000168103 aripiprazole 30 mg orally disintegrating tablet, 5 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +52738011000036104 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet, 100, bottle 136315 52550011000036101 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet, 100 52413011000036106 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet 52394011000036104 Mag-Sup 52394011000036104 Mag-Sup 52880011000036106 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet, 100 52809011000036104 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet 52798011000036107 magnesium aspartate dihydrate +840191000168108 Advantan 0.1% ointment, 50 g, tube 49381 840181000168105 Advantan 0.1% ointment, 50 g 4588011000036107 Advantan 0.1% ointment 3513011000036101 Advantan 3513011000036101 Advantan 840171000168107 methylprednisolone aceponate 0.1% ointment, 50 g 22587011000036102 methylprednisolone aceponate 0.1% ointment 21605011000036100 methylprednisolone +1102601000168105 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet, 30, blister pack 286109 1101991000168104 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet, 30 1101981000168102 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet 1101971000168100 Olmesartan HCTZ 40/12.5 (Pharmacor) 1101971000168100 Olmesartan HCTZ 40/12.5 (Pharmacor) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +933214221000036106 Ralset 50 mg film-coated tablet, 14, blister pack 160771 933203441000036100 Ralset 50 mg film-coated tablet, 14 933195821000036107 Ralset 50 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 929237011000036106 sertraline 50 mg tablet, 14 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +933214401000036102 Ralset 100 mg film-coated tablet, 30, blister pack 160779 933203701000036108 Ralset 100 mg film-coated tablet, 30 933195861000036103 Ralset 100 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +19688011000036103 Rescriptor 100 mg film-coated tablet, 360, bottle 60345 12946011000036101 Rescriptor 100 mg film-coated tablet, 360 6236011000036101 Rescriptor 100 mg film-coated tablet 4374011000036107 Rescriptor 4374011000036107 Rescriptor 27459011000036107 delavirdine mesylate 100 mg tablet, 360 22806011000036100 delavirdine mesylate 100 mg tablet 21931011000036108 delavirdine +926887011000036103 Wart-Off Stick Wart Remover 40% stick, 5 g, tube 73707 926283011000036103 Wart-Off Stick Wart Remover 40% stick, 5 g 925727011000036109 Wart-Off Stick Wart Remover 40% stick 45771000168104 Wart-Off Stick Wart Remover 45771000168104 Wart-Off Stick Wart Remover 927385011000036107 salicylic acid 40% stick, 5 g 927027011000036105 salicylic acid 40% stick 52232011000036106 salicylic acid +60337011000036109 C-Zine (Guardian) 10 mg film-coated tablet, 10, blister pack 139461 56296011000036104 C-Zine (Guardian) 10 mg film-coated tablet, 10 53865011000036108 C-Zine (Guardian) 10 mg film-coated tablet 53167011000036106 C-Zine (Guardian) 53167011000036106 C-Zine (Guardian) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +18674011000036103 Prilace 10 mg uncoated tablet, 30, blister pack 121857 11700011000036100 Prilace 10 mg uncoated tablet, 30 4977011000036105 Prilace 10 mg uncoated tablet 3737011000036102 Prilace 3737011000036102 Prilace 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +1085421000168104 Spray-Tish menthol 0.118% nasal spray, 15 mL, pump pack 71751 74382011000036100 Spray-Tish menthol 0.118% nasal spray, 15 mL 73908011000036108 Spray-Tish menthol 0.118% nasal spray 73766011000036100 Spray-Tish 73766011000036100 Spray-Tish 75481011000036106 tramazoline hydrochloride monohydrate 0.118% nasal spray, 15 mL 75086011000036109 tramazoline hydrochloride monohydrate 0.118% nasal spray 74955011000036109 tramazoline +131181000036100 Candesartan Cilexetil (GA) 4 mg uncoated tablet, 30, bottle 195482 128351000036104 Candesartan Cilexetil (GA) 4 mg uncoated tablet, 30 125131000036104 Candesartan Cilexetil (GA) 4 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +60896011000036103 Mersyndol Daystrength uncoated tablet, 24, blister pack 59985 56850011000036101 Mersyndol Daystrength uncoated tablet, 24 54099011000036108 Mersyndol Daystrength uncoated tablet 44331000168100 Mersyndol Daystrength 44331000168100 Mersyndol Daystrength 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +929658011000036106 Agrippal 2011 injection suspension, 1 x 0.5 mL syringe 144670 929494011000036107 Agrippal 2011 injection suspension, 1 x 0.5 mL syringe 929395011000036103 Agrippal 2011 injection suspension, 0.5 mL syringe 30931000168109 Agrippal 2011 30931000168109 Agrippal 2011 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +756661000168107 Pramipexole ER (Apo) 3 mg modified release tablet, 30, blister pack 225627 756651000168105 Pramipexole ER (Apo) 3 mg modified release tablet, 30 756611000168109 Pramipexole ER (Apo) 3 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 87817011000036105 pramipexole dihydrochloride monohydrate 3 mg modified release tablet, 30 87761011000036101 pramipexole dihydrochloride monohydrate 3 mg modified release tablet 37716011000036100 pramipexole +759881000168106 Redoxon Double Action effervescent tablet, 15, tube 145391 759871000168108 Redoxon Double Action effervescent tablet, 15 759851000168104 Redoxon Double Action effervescent tablet 759821000168107 Redoxon Double Action 759821000168107 Redoxon Double Action 759861000168102 ascorbic acid 1 g + zinc 10 mg effervescent tablet, 15 759841000168101 ascorbic acid 1 g + zinc 10 mg effervescent tablet 759831000168105 ascorbic acid + zinc +111041000036102 Senna-Gen 7.5 mg uncoated tablet, 100, bottle 194189 109321000036105 Senna-Gen 7.5 mg uncoated tablet, 100 107211000036100 Senna-Gen 7.5 mg uncoated tablet 106331000036104 Senna-Gen 106331000036104 Senna-Gen 26905011000036101 sennoside B 7.5 mg tablet, 100 22282011000036108 sennoside B 7.5 mg tablet 21718011000036104 sennoside B +165661000036109 Fluarix 2014 injection suspension, 1 x 0.5 mL syringe 154660 163761000036104 Fluarix 2014 injection suspension, 1 x 0.5 mL syringe 162181000036103 Fluarix 2014 injection suspension, 0.5 mL syringe 24311000168108 Fluarix 2014 24311000168108 Fluarix 2014 163631000036104 influenza trivalent adult vaccine 2014 injection, 1 x 0.5 mL syringe 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +20774011000036109 Diltiazem Hydrochloride CD (Chemmart) 240 mg modified release capsule, 30, bottle 90923 13943011000036103 Diltiazem Hydrochloride CD (Chemmart) 240 mg modified release capsule, 30 7231011000036107 Diltiazem Hydrochloride CD (Chemmart) 240 mg modified release capsule 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +1114341000168108 Rekovelle 12 microgram/0.36 mL injection solution, 0.36 mL cartridge 270336 1114331000168104 Rekovelle 12 microgram/0.36 mL injection solution, 0.36 mL cartridge 1114311000168109 Rekovelle 12 microgram/0.36 mL injection solution, 0.36 mL cartridge 1113721000168100 Rekovelle 1113721000168100 Rekovelle 1114321000168102 follitropin delta 12 microgram/0.36 mL injection, 0.36 mL cartridge 1114301000168106 follitropin delta 12 microgram/0.36 mL injection, cartridge 1113771000168104 follitropin delta +1102561000168105 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet, 30, bottle 286108 1102171000168108 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet, 30 1102141000168101 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet 1102101000168103 Olmesartan HCTZ 20/12.5 (Pharmacor) 1102101000168103 Olmesartan HCTZ 20/12.5 (Pharmacor) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +846601000168107 Alendro 40 mg uncoated tablet, 30, blister pack 100689 846591000168100 Alendro 40 mg uncoated tablet, 30 846581000168103 Alendro 40 mg uncoated tablet 846571000168101 Alendro 846571000168101 Alendro 27322011000036106 alendronate 40 mg tablet, 30 22675011000036109 alendronate 40 mg tablet 21736011000036109 alendronate +1122931000168102 Gardasil 9 injection suspension, 0.5 mL syringe 224092 1122921000168100 Gardasil 9 injection suspension, 0.5 mL syringe 1122901000168109 Gardasil 9 injection suspension, 0.5 mL syringe 1122871000168109 Gardasil 9 1122871000168109 Gardasil 9 1122911000168107 human papillomavirus 9 valent vaccine injection, 0.5 mL syringe 1122891000168105 human papillomavirus 9 valent vaccine injection, 0.5 mL syringe 1122881000168107 human papillomavirus 9 valent vaccine +676331000168102 Oxycodone (Sandoz) 10 mg modified release tablet, 28, blister pack 153597 676321000168100 Oxycodone (Sandoz) 10 mg modified release tablet, 28 676311000168107 Oxycodone (Sandoz) 10 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +37499011000036104 Fucidin 2% ointment, 15 g, tube 12990 36767011000036100 Fucidin 2% ointment, 15 g 36022011000036105 Fucidin 2% ointment 20071000168105 Fucidin 20071000168105 Fucidin 38667011000036101 sodium fusidate 2% ointment, 15 g 37914011000036103 sodium fusidate 2% ointment 21917011000036107 fusidate +165751000036101 Temozolomide (Alphapharm) 250 mg hard capsule, 5, bottle 192681 163871000036101 Temozolomide (Alphapharm) 250 mg hard capsule, 5 162311000036108 Temozolomide (Alphapharm) 250 mg hard capsule 161971000036106 Temozolomide (Alphapharm) 161971000036106 Temozolomide (Alphapharm) 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +921892011000036102 Exforge HCT 5/160/25 film-coated tablet, 14, blister pack 158162 921451011000036106 Exforge HCT 5/160/25 film-coated tablet, 14 921016011000036101 Exforge HCT 5/160/25 film-coated tablet 4531000168100 Exforge HCT 5/160/25 4531000168100 Exforge HCT 5/160/25 922579011000036104 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 14 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +50246011000036103 Duocal powder for oral liquid, 400 g, can 49256011000036106 Duocal powder for oral liquid, 400 g 48504011000036101 Duocal powder for oral liquid 48381011000036103 Duocal 48381011000036103 Duocal 51249011000036101 triglycerides medium chain and long chain with glucose polymer powder for oral liquid, 400 g 50789011000036109 triglycerides medium chain and long chain with glucose polymer powder for oral liquid 50782011000036104 triglycerides medium chain and long chain with glucose polymer +920774011000036105 Azathioprine (Sandoz) 50 mg film-coated tablet, 100, blister pack 74407 920453011000036103 Azathioprine (Sandoz) 50 mg film-coated tablet, 100 920190011000036102 Azathioprine (Sandoz) 50 mg film-coated tablet 920084011000036104 Azathioprine (Sandoz) 920084011000036104 Azathioprine (Sandoz) 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +968611000168108 Disodium Pamidronate (Hexal) 90 mg/10 mL concentrated injection, 10 mL vial 101288 968601000168105 Disodium Pamidronate (Hexal) 90 mg/10 mL concentrated injection, 10 mL vial 968591000168103 Disodium Pamidronate (Hexal) 90 mg/10 mL concentrated injection, 10 mL vial 968111000168100 Disodium Pamidronate (Hexal) 968111000168100 Disodium Pamidronate (Hexal) 27768011000036101 pamidronate disodium 90 mg/10 mL injection, 10 mL vial 23099011000036102 pamidronate disodium 90 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +933231461000036109 Vallergan Forte 30 mg/5 mL oral liquid solution, 100 mL, bottle 27567 933225621000036103 Vallergan Forte 30 mg/5 mL oral liquid solution, 100 mL 933220751000036105 Vallergan Forte 30 mg/5 mL oral liquid solution, 5 mL 8571000168109 Vallergan Forte 8571000168109 Vallergan Forte 933225631000036101 alimemazine (trimeprazine) tartrate 30 mg/5 mL oral liquid, 100 mL 933220761000036108 alimemazine (trimeprazine) tartrate 30 mg/5 mL oral liquid 37738011000036105 alimemazine (trimeprazine) +933231461000036109 Vallergan Forte 30 mg/5 mL oral liquid solution, 100 mL, bottle 164298 933225621000036103 Vallergan Forte 30 mg/5 mL oral liquid solution, 100 mL 933220751000036105 Vallergan Forte 30 mg/5 mL oral liquid solution, 5 mL 8571000168109 Vallergan Forte 8571000168109 Vallergan Forte 933225631000036101 alimemazine (trimeprazine) tartrate 30 mg/5 mL oral liquid, 100 mL 933220761000036108 alimemazine (trimeprazine) tartrate 30 mg/5 mL oral liquid 37738011000036105 alimemazine (trimeprazine) +880921000168104 Adrenaject Auto-Injector 150 microgram/0.3 mL injection solution, 2 x 1 dose, injection devices 231707 880911000168106 Adrenaject Auto-Injector 150 microgram/0.3 mL injection solution, 2 x 1 dose 880871000168108 Adrenaject Auto-Injector 150 microgram/0.3 mL injection solution, dose 880801000168103 Adrenaject Auto-Injector 880801000168103 Adrenaject Auto-Injector 880901000168108 adrenaline (epinephrine) 150 microgram/0.3 mL injection, 2 x 1 dose 726651000168106 adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +830691000168104 Atomoxetine (Apo) 40 mg hard capsule, 14, blister pack 234810 830681000168102 Atomoxetine (Apo) 40 mg hard capsule, 14 830641000168107 Atomoxetine (Apo) 40 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830671000168100 atomoxetine 40 mg capsule, 14 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +60867011000036103 Lorastyne Syrup 1 mg/mL oral liquid solution, 60 mL, bottle 59232 56821011000036107 Lorastyne Syrup 1 mg/mL oral liquid solution, 60 mL 54089011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution 27141000168100 Lorastyne Syrup 27141000168100 Lorastyne Syrup 63591011000036105 loratadine 1 mg/mL oral liquid, 60 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +1027661000168108 Telmisartan HCTZ 40/12.5 mg (Apotex) multilayer tablet, 28, blister pack 198232 1027651000168106 Telmisartan HCTZ 40/12.5 mg (Apotex) multilayer tablet, 28 1027641000168109 Telmisartan HCTZ 40/12.5 mg (Apotex) multilayer tablet 1027631000168100 Telmisartan HCTZ 40/12.5 mg (Apotex) 1027631000168100 Telmisartan HCTZ 40/12.5 mg (Apotex) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +931427011000036101 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 100, blister pack 132824 930596011000036105 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 100 929962011000036104 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet 4399011000036103 Ciprofloxacin (Pharmacor) 4399011000036103 Ciprofloxacin (Pharmacor) 932362011000036103 ciprofloxacin 250 mg tablet, 100 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +693501000168102 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 49296 693491000168109 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 693231000168106 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 mL ampoule 693201000168104 Lignocaine (Pfizer) 693201000168104 Lignocaine (Pfizer) 693481000168106 lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, 10 x 5 mL ampoules 693221000168108 lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +742681000168102 Pemetrexed (Apotex) 500 mg powder for injection, 1 vial 210440 742671000168100 Pemetrexed (Apotex) 500 mg powder for injection, 1 vial 742661000168106 Pemetrexed (Apotex) 500 mg powder for injection, 500 mg vial 742491000168102 Pemetrexed (Apotex) 742491000168102 Pemetrexed (Apotex) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +73306011000036100 Jurnista 64 mg modified release tablet, 20, blister pack 141535 73104011000036103 Jurnista 64 mg modified release tablet, 20 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73502011000036102 hydromorphone hydrochloride 64 mg modified release tablet, 20 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +929115011000036106 Atenolol (Generic Health) 50 mg film-coated tablet, 28, blister pack 166964 928476011000036109 Atenolol (Generic Health) 50 mg film-coated tablet, 28 927993011000036101 Atenolol (Generic Health) 50 mg film-coated tablet 927807011000036100 Atenolol (Generic Health) 927807011000036100 Atenolol (Generic Health) 929269011000036105 atenolol 50 mg tablet, 28 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +20483011000036109 Diclofenac Sodium (Chemmart) 25 mg enteric tablet, 50, bottle 78430 13683011000036106 Diclofenac Sodium (Chemmart) 25 mg enteric tablet, 50 6966011000036109 Diclofenac Sodium (Chemmart) 25 mg enteric tablet 3797011000036108 Diclofenac Sodium (Chemmart) 3797011000036108 Diclofenac Sodium (Chemmart) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +684871000168107 Sunsense Sensitive SPF 50+ lotion, 75 g, tube 193110 684861000168101 Sunsense Sensitive SPF 50+ lotion, 75 g 684841000168100 Sunsense Sensitive SPF 50+ lotion 684811000168104 Sunsense Sensitive SPF 50+ 684811000168104 Sunsense Sensitive SPF 50+ 684851000168103 titanium dioxide 9.8% + zinc oxide 2% lotion, 75 g 684831000168109 titanium dioxide 9.8% + zinc oxide 2% lotion 684821000168106 titanium dioxide + zinc oxide +972951000168105 Pregabalin (Apotex) 150 mg hard capsule, 56, blister pack 267556 972941000168108 Pregabalin (Apotex) 150 mg hard capsule, 56 972891000168107 Pregabalin (Apotex) 150 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +82904011000036107 Solveasy Tinea 1% cream, 15 g, tube 166484 82796011000036106 Solveasy Tinea 1% cream, 15 g 82703011000036103 Solveasy Tinea 1% cream 31871000168105 Solveasy Tinea 31871000168105 Solveasy Tinea 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +823111000168106 Gardasil injection suspension, 10 x 0.5 mL syringes 124410 823101000168108 Gardasil injection suspension, 10 x 0.5 mL syringes 823021000168100 Gardasil injection suspension, 0.5 mL syringe 73683011000036100 Gardasil 73683011000036100 Gardasil 823091000168103 human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL syringes 823011000168107 human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe 822951000168103 human papillomavirus quadrivalent vaccine +998641000168105 Esomeprazole (Apo) 40 mg enteric tablet, 56, blister pack 205823 998631000168101 Esomeprazole (Apo) 40 mg enteric tablet, 56 998561000168108 Esomeprazole (Apo) 40 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 774891000168107 esomeprazole 40 mg enteric tablet, 56 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +43632011000036107 Aldurazyme 500 units/5 mL concentrated injection, 5 mL vial 100847 41098011000036100 Aldurazyme 500 units/5 mL concentrated injection, 5 mL vial 39896011000036106 Aldurazyme 500 units/5 mL concentrated injection, 5 mL vial 39694011000036107 Aldurazyme 39694011000036107 Aldurazyme 46084011000036105 laronidase 500 units/5 mL injection, 5 mL vial 44983011000036107 laronidase 500 units/5 mL injection, vial 44869011000036104 laronidase +20123011000036104 Bactrim DS film-coated tablet, 10, blister pack 73029 13347011000036101 Bactrim DS film-coated tablet, 10 6632011000036102 Bactrim DS film-coated tablet 26891000168101 Bactrim DS 26891000168101 Bactrim DS 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +20123011000036104 Bactrim DS film-coated tablet, 10, blister pack 162563 13347011000036101 Bactrim DS film-coated tablet, 10 6632011000036102 Bactrim DS film-coated tablet 26891000168101 Bactrim DS 26891000168101 Bactrim DS 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +1036091000168105 Atorvastatin (RBX) 40 mg film-coated tablet, 30, bottle 173499 1036041000168102 Atorvastatin (RBX) 40 mg film-coated tablet, 30 1036011000168101 Atorvastatin (RBX) 40 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +941301000168100 Escitalopram (Chemmart) 15 mg film-coated tablet, 28, blister pack 146025 941291000168101 Escitalopram (Chemmart) 15 mg film-coated tablet, 28 941281000168104 Escitalopram (Chemmart) 15 mg film-coated tablet 75923011000036104 Escitalopram (Chemmart) 75923011000036104 Escitalopram (Chemmart) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +931633011000036105 Aranesp with Automatic Needle Guard 20 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 166090 930793011000036103 Aranesp with Automatic Needle Guard 20 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 930048011000036104 Aranesp with Automatic Needle Guard 20 microgram/0.5 mL injection solution, 0.5 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27853011000036100 darbepoetin alfa 20 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23181011000036108 darbepoetin alfa 20 microgram/0.5 mL injection, syringe 21234011000036105 darbepoetin alfa +928896011000036105 Valnir 500 mg film-coated tablet, 20, blister pack 147607 928258011000036105 Valnir 500 mg film-coated tablet, 20 927909011000036101 Valnir 500 mg film-coated tablet 927774011000036103 Valnir 927774011000036103 Valnir 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +788711000168108 Gemcitabine (Agila) 1 g powder for injection, 1 vial 177645 788701000168105 Gemcitabine (Agila) 1 g powder for injection, 1 vial 788691000168105 Gemcitabine (Agila) 1 g powder for injection, vial 788601000168104 Gemcitabine (Agila) 788601000168104 Gemcitabine (Agila) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +1088211000168101 Diclofenac (Catalent) 12.5 mg soft capsule, 20, blister pack 283510 1088201000168104 Diclofenac (Catalent) 12.5 mg soft capsule, 20 1088101000168108 Diclofenac (Catalent) 12.5 mg soft capsule 1088051000168108 Diclofenac (Catalent) 1088051000168108 Diclofenac (Catalent) 1088191000168102 diclofenac potassium 12.5 mg capsule, 20 1088091000168103 diclofenac potassium 12.5 mg capsule 21288011000036105 diclofenac +19815011000036102 Doxylin 50 mg film-coated tablet, 25, bottle 63512 13070011000036102 Doxylin 50 mg film-coated tablet, 25 6354011000036102 Doxylin 50 mg film-coated tablet 3714011000036103 Doxylin 3714011000036103 Doxylin 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +18608011000036101 Daktarin 2% cream, 15 g, tube 13284 11943011000036106 Daktarin 2% cream, 15 g 5037011000036105 Daktarin 2% cream 431000168100 Daktarin 431000168100 Daktarin 26811011000036108 miconazole nitrate 2% cream, 15 g 22195011000036104 miconazole nitrate 2% cream 21454011000036108 miconazole +804431000168104 Aczicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 147852 804421000168102 Aczicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 804411000168109 Aczicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924116011000036100 epoetin lambda 4000 units/0.4 mL injection, 0.4 mL syringe 923949011000036100 epoetin lambda 4000 units/0.4 mL injection, syringe 923930011000036107 epoetin lambda +50655011000036105 Stalevo 200/50/200 film-coated tablet, 10, bottle 146890 49679011000036102 Stalevo 200/50/200 film-coated tablet, 10 48816011000036108 Stalevo 200/50/200 film-coated tablet 11001000168100 Stalevo 200/50/200 11001000168100 Stalevo 200/50/200 51557011000036101 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 10 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +857751000168102 Allermom Aqueous 50 microgram/actuation nasal spray, 140 actuations, pump pack 233572 857741000168104 Allermom Aqueous 50 microgram/actuation nasal spray, 140 actuations 857671000168102 Allermom Aqueous 50 microgram/actuation nasal spray, actuation 857651000168106 Allermom Aqueous 857651000168106 Allermom Aqueous 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +690671000168102 Sorbilax 70% non-crystallising oral liquid solution, 500 mL, bottle 11287 690661000168108 Sorbilax 70% non-crystallising oral liquid solution, 500 mL 690651000168106 Sorbilax 70% non-crystallising oral liquid solution 75934011000036100 Sorbilax 75934011000036100 Sorbilax 690621000168103 sorbitol solution 70% non-crystallising oral liquid, 500 mL 690601000168107 sorbitol solution 70% non-crystallising oral liquid 922041011000036102 sorbitol +69299011000036103 Glycoprep-C powder for oral liquid, 210 g, can 20499 67099011000036101 Glycoprep-C powder for oral liquid, 210 g 65438011000036108 Glycoprep-C powder for oral liquid 64996011000036107 Glycoprep-C 64996011000036107 Glycoprep-C 71667011000036101 macrogol-3350 755.7 mg/g + sodium chloride 37.33 mg/g + potassium chloride 10.55 mg/g + sodium sulfate 80.62 mg/g powder for oral liquid, 210 g 70116011000036108 macrogol-3350 755.7 mg/g + sodium chloride 37.33 mg/g + potassium chloride 10.55 mg/g + sodium sulfate 80.62 mg/g powder for oral liquid 69825011000036102 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate +843341000168105 Centrum Select 50 Plus film-coated tablet, 100, bottle 156452 843331000168101 Centrum Select 50 Plus film-coated tablet, 100 843221000168105 Centrum Select 50 Plus film-coated tablet 920936011000036106 Centrum Select 50 Plus 920936011000036106 Centrum Select 50 Plus 843321000168104 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 100 843211000168103 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet 922055011000036102 dl-alpha-tocopherol + ascorbic acid + betacarotene + biotin + calcium hydrogen phosphate dihydrate + chromic chloride + colecalciferol + cupric oxide + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide heavy + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + phytomenadione + potassium sulfate + pyridoxine + retinol acetate + riboflavin + selenium + thiamine + zinc oxide +895201000168107 Atomoxetine (Sandoz) 10 mg hard capsule, 28, blister pack 238366 895191000168109 Atomoxetine (Sandoz) 10 mg hard capsule, 28 895131000168105 Atomoxetine (Sandoz) 10 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +890951000168106 Candesartan HCTZ 32/12.5 (Genpar) uncoated tablet, 30, bottle 253616 890941000168109 Candesartan HCTZ 32/12.5 (Genpar) uncoated tablet, 30 890931000168100 Candesartan HCTZ 32/12.5 (Genpar) uncoated tablet 890921000168103 Candesartan HCTZ 32/12.5 (Genpar) 890921000168103 Candesartan HCTZ 32/12.5 (Genpar) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +903831000168109 Celocox 200 mg hard capsule, 20, blister pack 212792 903821000168106 Celocox 200 mg hard capsule, 20 903791000168103 Celocox 200 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +933240051000036105 Simvacor 80 mg film-coated tablet, 30, bottle 182913 933236541000036103 Simvacor 80 mg film-coated tablet, 30 933234881000036103 Simvacor 80 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18366011000036109 Ausran 150 mg film-coated tablet, 60, bottle 104814 14213011000036109 Ausran 150 mg film-coated tablet, 60 7496011000036106 Ausran 150 mg film-coated tablet 4212011000036103 Ausran 4212011000036103 Ausran 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +165591000036103 Bicalox 50 mg film-coated tablet, 28, blister pack 129117 163681000036100 Bicalox 50 mg film-coated tablet, 28 162041000036106 Bicalox 50 mg film-coated tablet 161991000036105 Bicalox 161991000036105 Bicalox 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +933073011000036109 Tramadol Hydrochloride SR (Apo) 200 mg modified release tablet, 20, blister pack 154395 932870011000036108 Tramadol Hydrochloride SR (Apo) 200 mg modified release tablet, 20 932731011000036100 Tramadol Hydrochloride SR (Apo) 200 mg modified release tablet 20051000168101 Tramadol Hydrochloride SR (Apo) 20051000168101 Tramadol Hydrochloride SR (Apo) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +808761000168105 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet, 10, blister pack 184815 808751000168108 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet, 10 808741000168106 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 727301000168100 perindopril arginine 5 mg tablet, 10 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +1039261000168102 Atorvastatin (GA) 40 mg film-coated tablet, 50, blister pack 178532 1039251000168104 Atorvastatin (GA) 40 mg film-coated tablet, 50 1039161000168108 Atorvastatin (GA) 40 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841751000168109 atorvastatin 40 mg tablet, 50 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +880761000168106 Botox 50 units powder for injection, 1 vial 195530 880751000168109 Botox 50 units powder for injection, 1 vial 880731000168103 Botox 50 units powder for injection, 50 units vial 3742011000036100 Botox 3742011000036100 Botox 880741000168107 botulinum toxin type A 50 units injection, 1 vial 880721000168101 botulinum toxin type A 50 units injection, vial 21857011000036106 botulinum toxin type A +1001771000168108 Pregabalin (Apo) 50 mg hard capsule, 60, blister pack 193256 1001041000168104 Pregabalin (Apo) 50 mg hard capsule, 60 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +44096011000036107 Cefoxitin (DBL) 2 g powder for injection, 5 vials 50311 41582011000036101 Cefoxitin (DBL) 2 g powder for injection, 5 vials 40085011000036102 Cefoxitin (DBL) 2 g powder for injection, 2 g vial 39633011000036103 Cefoxitin (DBL) 39633011000036103 Cefoxitin (DBL) 46410011000036109 cefoxitin 2 g injection, 5 vials 45140011000036101 cefoxitin 2 g injection, vial 44864011000036100 cefoxitin +777161000168103 Karvea 75 mg film-coated tablet, 3, blister pack 101702 777151000168100 Karvea 75 mg film-coated tablet, 3 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777141000168102 irbesartan 75 mg tablet, 3 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1068161000168106 Paracetamol plus Codeine (Meditab) uncoated tablet, 10, blister pack 184463 1068151000168109 Paracetamol plus Codeine (Meditab) uncoated tablet, 10 1068141000168107 Paracetamol plus Codeine (Meditab) uncoated tablet 1068081000168103 Paracetamol plus Codeine (Meditab) 1068081000168103 Paracetamol plus Codeine (Meditab) 63319011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 10 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +1020531000168103 Aripiprazole (WT) 10 mg uncoated tablet, 30, blister pack 217246 1020521000168101 Aripiprazole (WT) 10 mg uncoated tablet, 30 1020471000168104 Aripiprazole (WT) 10 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +44024011000036108 Fluorouracil (DBL) 500 mg/20 mL injection solution, 10 x 20 mL vials 47262 41513011000036106 Fluorouracil (DBL) 500 mg/20 mL injection solution, 10 x 20 mL vials 40028011000036104 Fluorouracil (DBL) 500 mg/20 mL injection solution, 20 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 46353011000036100 fluorouracil 500 mg/20 mL injection, 10 x 20 mL vials 45130011000036100 fluorouracil 500 mg/20 mL injection, vial 21481011000036100 fluorouracil +131271000036105 Candesartan Cilexetil (GH) 4 mg uncoated tablet, 30, bottle 195504 128341000036102 Candesartan Cilexetil (GH) 4 mg uncoated tablet, 30 124901000036105 Candesartan Cilexetil (GH) 4 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +79724011000036104 Rectogesic 0.2% ointment, 30 g, tube 66382 79535011000036102 Rectogesic 0.2% ointment, 30 g 79401011000036100 Rectogesic 0.2% ointment 76016011000036108 Rectogesic 76016011000036108 Rectogesic 79841011000036102 glyceryl trinitrate 0.2% ointment, 30 g 79757011000036109 glyceryl trinitrate 0.2% ointment 21388011000036102 glyceryl trinitrate +59755011000036102 Anti-Fungal (Guardian) 1% cream, 30 g, tube 102008 55671011000036103 Anti-Fungal (Guardian) 1% cream, 30 g 53723011000036101 Anti-Fungal (Guardian) 1% cream 53208011000036105 Anti-Fungal (Guardian) 53208011000036105 Anti-Fungal (Guardian) 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1109911000168109 Nicotinell Tropical Fruit 4 mg chewing gum, 24, blister pack 279618 1109901000168106 Nicotinell Tropical Fruit 4 mg chewing gum, 24 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +69120011000036101 Strepsils honey and lemon lozenge, 36, blister pack 14975 66921011000036101 Strepsils honey and lemon lozenge, 36 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +44822011000036103 Detrusitol 1 mg film-coated tablet, 14, blister pack 99393 42254011000036108 Detrusitol 1 mg film-coated tablet, 14 40407011000036104 Detrusitol 1 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47007011000036101 tolterodine tartrate 1 mg tablet, 14 45373011000036104 tolterodine tartrate 1 mg tablet 44907011000036104 tolterodine +840511000168106 Prometrium 100 mg soft capsule, 90, blister pack 232818 840501000168108 Prometrium 100 mg soft capsule, 90 840251000168105 Prometrium 100 mg soft capsule 840231000168104 Prometrium 840231000168104 Prometrium 840491000168101 progesterone 100 mg capsule, 90 840241000168108 progesterone 100 mg capsule 21412011000036108 progesterone +19423011000036100 Neupogen 480 microgram/1.6 mL injection solution, 10 x 1.6 mL vials 53577 12707011000036100 Neupogen 480 microgram/1.6 mL injection solution, 10 x 1.6 mL vials 4549011000036109 Neupogen 480 microgram/1.6 mL injection solution, 1.6 mL vial 4267011000036100 Neupogen 4267011000036100 Neupogen 27299011000036101 filgrastim 480 microgram/1.6 mL injection, 10 x 1.6 mL vials 22652011000036103 filgrastim 480 microgram/1.6 mL injection, vial 21265011000036102 filgrastim +85311000036106 Lamotrigine (Aspen) 100 mg tablet, 56, blister pack 150753 84461000036100 Lamotrigine (Aspen) 100 mg tablet, 56 84201000036103 Lamotrigine (Aspen) 100 mg tablet 83951000036105 Lamotrigine (Aspen) 83951000036105 Lamotrigine (Aspen) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +756981000168105 Olanzacor 10 mg film-coated tablet, 7, blister pack 207847 756971000168107 Olanzacor 10 mg film-coated tablet, 7 756961000168101 Olanzacor 10 mg film-coated tablet 756671000168101 Olanzacor 756671000168101 Olanzacor 933205131000036101 olanzapine 10 mg tablet, 7 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +926661011000036104 Risperidone (Sandoz) 4 mg film-coated tablet, 60, bottle 126164 926139011000036107 Risperidone (Sandoz) 4 mg film-coated tablet, 60 925593011000036109 Risperidone (Sandoz) 4 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +44643011000036102 Ranoxyl 150 mg film-coated tablet, 14, bottle 90519 42096011000036100 Ranoxyl 150 mg film-coated tablet, 14 7143011000036107 Ranoxyl 150 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +898121000168104 Strensiq 80 mg/0.8 mL injection solution, 12 x 0.8 mL vials 232545 898111000168106 Strensiq 80 mg/0.8 mL injection solution, 12 x 0.8 mL vials 898061000168105 Strensiq 80 mg/0.8 mL injection solution, 0.8 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 898101000168108 asfotase alfa 80 mg/0.8 mL injection, 12 x 0.8 mL vials 898051000168108 asfotase alfa 80 mg/0.8 mL injection, vial 898041000168106 asfotase alfa +895241000168109 Olmesartan HCT 20/12.5 (AN) film-coated tablet, 30, blister pack 221133 895231000168100 Olmesartan HCT 20/12.5 (AN) film-coated tablet, 30 895221000168103 Olmesartan HCT 20/12.5 (AN) film-coated tablet 895211000168105 Olmesartan HCT 20/12.5 (AN) 895211000168105 Olmesartan HCT 20/12.5 (AN) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +86842011000036102 Sinus Rinse (NeilMed) paediatric powder for nasal drops, 60 x 1.08 g sachets 86739011000036109 Sinus Rinse (NeilMed) paediatric powder for nasal drops, 60 x 1.08 g sachets 86613011000036105 Sinus Rinse (NeilMed) paediatric powder for nasal drops, 1.08 g sachet 86602011000036101 Sinus Rinse (NeilMed) 86602011000036101 Sinus Rinse (NeilMed) 87009011000036101 sodium chloride + bicarbonate nasal drops, 60 x 1.08 g sachets 86922011000036109 sodium chloride + bicarbonate nasal drops, 1.08 g sachet 86904011000036106 sodium chloride + bicarbonate +949971000168105 Frusemide (Sanofi) 40 mg tablet, 60, bottle 144452 949961000168104 Frusemide (Sanofi) 40 mg tablet, 60 949911000168102 Frusemide (Sanofi) 40 mg tablet 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 928691000168106 furosemide (frusemide) 40 mg tablet, 60 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +1029191000168103 Aten 25 mg film-coated tablet, 100, bottle 197715 1029181000168101 Aten 25 mg film-coated tablet, 100 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029171000168104 atenolol 25 mg tablet, 100 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +916851000168105 Amitriptyline (RS) 25 mg tablet, 50, bottle 232143 866571000168109 Amitriptyline (RS) 25 mg tablet, 50 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1105531000168107 Valpam 2 mg uncoated tablet, 60, bottle 80810 1105521000168109 Valpam 2 mg uncoated tablet, 60 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105511000168102 diazepam 2 mg tablet, 60 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +933240121000036100 Dobutamine (Sandoz) 250 mg/20 mL concentrated injection, 20 mL ampoule 82994 933237291000036105 Dobutamine (Sandoz) 250 mg/20 mL concentrated injection, 20 mL ampoule 933234911000036103 Dobutamine (Sandoz) 250 mg/20 mL concentrated injection, 20 mL ampoule 933234301000036101 Dobutamine (Sandoz) 933234301000036101 Dobutamine (Sandoz) 933237301000036109 dobutamine 250 mg/20 mL injection, 20 mL ampoule 933234921000036105 dobutamine 250 mg/20 mL injection, ampoule 37709011000036107 dobutamine +19181011000036106 Ralovera 10 mg uncoated tablet, 30, blister pack 46532 12476011000036100 Ralovera 10 mg uncoated tablet, 30 5334011000036103 Ralovera 10 mg uncoated tablet 4418011000036101 Ralovera 4418011000036101 Ralovera 27904011000036101 medroxyprogesterone acetate 10 mg tablet, 30 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +61564011000036100 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 50 mL, bottle 94150 57486011000036100 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 50 mL 54321011000036100 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 63884011000036108 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 50 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +1019111000168100 Candesartan HCTZ 16/12.5 (Apotex) tablet, 30, blister pack 192195 1019101000168103 Candesartan HCTZ 16/12.5 (Apotex) tablet, 30 1019051000168103 Candesartan HCTZ 16/12.5 (Apotex) tablet 1019041000168100 Candesartan HCTZ 16/12.5 (Apotex) 1019041000168100 Candesartan HCTZ 16/12.5 (Apotex) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +18547011000036102 Acquin 20 mg film-coated tablet, 30, blister pack 192148 11600011000036105 Acquin 20 mg film-coated tablet, 30 6001011000036107 Acquin 20 mg film-coated tablet 3174011000036104 Acquin 3174011000036104 Acquin 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +18547011000036102 Acquin 20 mg film-coated tablet, 30, blister pack 118752 11600011000036105 Acquin 20 mg film-coated tablet, 30 6001011000036107 Acquin 20 mg film-coated tablet 3174011000036104 Acquin 3174011000036104 Acquin 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +839051000168108 Joncia 25 mg hard capsule, 56, bottle 176512 839011000168107 Joncia 25 mg hard capsule, 56 838931000168105 Joncia 25 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839001000168109 milnacipran hydrochloride 25 mg capsule, 56 838921000168107 milnacipran hydrochloride 25 mg capsule 838911000168100 milnacipran +964361000168106 Normatens 300 microgram film-coated tablet, 30, blister pack 114123 964351000168109 Normatens 300 microgram film-coated tablet, 30 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964341000168107 moxonidine 300 microgram tablet, 30 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +810271000168105 Actonel EC Combi D effervescent granules, 24 sachets 810261000168104 Actonel EC Combi D effervescent granules, 24 sachets 810211000168102 Actonel EC Combi D effervescent granules, 1 sachet 929810011000036106 Actonel EC Combi D 929810011000036106 Actonel EC Combi D 810251000168101 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 24 sachets 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +960071000168105 Stilnoxium CR 6.25 mg modified release tablet, 28, blister pack 120711 960061000168104 Stilnoxium CR 6.25 mg modified release tablet, 28 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46181011000036104 zolpidem tartrate 6.25 mg modified release tablet, 28 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +967291000168100 Formet 500 mg film-coated tablet, 250, bottle 192236 967281000168103 Formet 500 mg film-coated tablet, 250 7242011000036102 Formet 500 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 53201000036106 metformin hydrochloride 500 mg tablet, 250 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +52729011000036105 Vaxigrip 2009 needle free injection solution, 10 x 0.5 mL syringes 129874 52541011000036105 Vaxigrip 2009 needle free injection solution, 10 x 0.5 mL syringes 52408011000036104 Vaxigrip 2009 needle free injection solution, 0.5 mL syringe 6241000168103 Vaxigrip 2009 6241000168103 Vaxigrip 2009 52902011000036100 influenza trivalent adult vaccine 2009 injection, 10 x 0.5 mL syringes 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +695011000168106 Ungvita 0.099% ointment, 50 g, tube 80193 695001000168108 Ungvita 0.099% ointment, 50 g 694981000168100 Ungvita 0.099% ointment 81966011000036101 Ungvita 81966011000036101 Ungvita 694991000168102 retinol palmitate 0.099% ointment, 50 g 694971000168103 retinol palmitate 0.099% ointment 69876011000036105 retinol palmitate +788631000168106 Gemcitabine (Agila) 200 mg powder for injection, 1 vial 177644 788621000168108 Gemcitabine (Agila) 200 mg powder for injection, 1 vial 788611000168101 Gemcitabine (Agila) 200 mg powder for injection, 200 mg vial 788601000168104 Gemcitabine (Agila) 788601000168104 Gemcitabine (Agila) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +973041000168102 Pregabalin (Apotex) 300 mg hard capsule, 56, blister pack 267559 973031000168106 Pregabalin (Apotex) 300 mg hard capsule, 56 972981000168103 Pregabalin (Apotex) 300 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +901021000168103 Capex 150 mg film-coated tablet, 60, blister pack 213040 901011000168105 Capex 150 mg film-coated tablet, 60 900981000168108 Capex 150 mg film-coated tablet 900971000168105 Capex 900971000168105 Capex 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1019091000168108 Aripiprazole (Actavis) 10 mg uncoated tablet, 30, blister pack 217230 1019081000168105 Aripiprazole (Actavis) 10 mg uncoated tablet, 30 1018991000168102 Aripiprazole (Actavis) 10 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +24291000036102 Cadatin 10/40 film-coated tablet, 30, blister pack 179142 22771000036104 Cadatin 10/40 film-coated tablet, 30 20071000036103 Cadatin 10/40 film-coated tablet 33891000168105 Cadatin 10/40 33891000168105 Cadatin 10/40 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +1085341000168103 Otrivin Adult 0.1% nasal spray, 10 mL, pump pack 142197 74284011000036103 Otrivin Adult 0.1% nasal spray, 10 mL 73799011000036106 Otrivin Adult 0.1% nasal spray 41971000168104 Otrivin Adult 41971000168104 Otrivin Adult 75532011000036102 xylometazoline hydrochloride 0.1% nasal spray, 10 mL 75123011000036102 xylometazoline hydrochloride 0.1% nasal spray 61748011000036102 xylometazoline +111081000036106 Drulox 30 mg enteric capsule, 28, blister pack 195612 109361000036101 Drulox 30 mg enteric capsule, 28 106731000036103 Drulox 30 mg enteric capsule 106621000036107 Drulox 106621000036107 Drulox 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +693731000168100 Velphoro 2.5 g (iron 500 mg) chewable tablet, 90, bottle 216702 693701000168107 Velphoro 2.5 g (iron 500 mg) chewable tablet, 90 693651000168102 Velphoro 2.5 g (iron 500 mg) chewable tablet 693111000168106 Velphoro 693111000168106 Velphoro 693691000168107 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet, 90 693641000168104 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet 693631000168108 iron +681941000168107 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet, 10, blister pack 214456 681931000168103 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet, 10 681921000168101 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 38824011000036109 pramipexole dihydrochloride monohydrate 250 microgram tablet, 10 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +742521000168100 Pemetrexed (Apotex) 100 mg powder for injection, 1 vial 210429 742511000168107 Pemetrexed (Apotex) 100 mg powder for injection, 1 vial 742501000168109 Pemetrexed (Apotex) 100 mg powder for injection, 100 mg vial 742491000168102 Pemetrexed (Apotex) 742491000168102 Pemetrexed (Apotex) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +762851000168104 Oxycodone MR (Chemmart) 30 mg modified release tablet, 28, blister pack 214500 762841000168101 Oxycodone MR (Chemmart) 30 mg modified release tablet, 28 762811000168100 Oxycodone MR (Chemmart) 30 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +60645011000036108 Avomine 25 mg uncoated tablet, 30, blister pack 27484 56603011000036105 Avomine 25 mg uncoated tablet, 30 54000011000036104 Avomine 25 mg uncoated tablet 53409011000036101 Avomine 53409011000036101 Avomine 63455011000036109 promethazine theoclate 25 mg tablet, 30 61976011000036109 promethazine theoclate 25 mg tablet 21237011000036104 promethazine +110811000036101 Temodal 180 mg hard capsule, 5, sachet 164215 109081000036109 Temodal 180 mg hard capsule, 5 106801000036103 Temodal 180 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +704981000168109 Glytactin RTD 15 Original containing 15 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 704971000168106 Glytactin RTD 15 Original containing 15 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 704951000168102 Glytactin RTD 15 Original containing 15 g of protein equivalent oral liquid solution, 250 mL carton 704931000168108 Glytactin RTD 15 704931000168108 Glytactin RTD 15 704961000168100 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent oral liquid, 30 x 250 mL cartons 704941000168104 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent oral liquid, 250 mL carton 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +920663011000036109 Doxycycline (Mayne Pharma) 50 mg modified release capsule, 25, bottle 107247 920436011000036108 Doxycycline (Mayne Pharma) 50 mg modified release capsule, 25 920177011000036105 Doxycycline (Mayne Pharma) 50 mg modified release capsule 920064011000036102 Doxycycline (Mayne Pharma) 920064011000036102 Doxycycline (Mayne Pharma) 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +18187011000036100 Ondaz Zydis 4 mg wafer, 4, blister pack 116430 11521011000036101 Ondaz Zydis 4 mg wafer, 4 5305011000036105 Ondaz Zydis 4 mg wafer 51911000168109 Ondaz Zydis 51911000168109 Ondaz Zydis 27517011000036102 ondansetron 4 mg wafer, 4 22858011000036108 ondansetron 4 mg wafer 21545011000036100 ondansetron +929007011000036105 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 6, blister pack 158915 928368011000036108 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 6 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929221011000036100 valaciclovir 500 mg tablet, 6 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1042321000168106 Nicotine (Amcal) 2 mg lozenge, 168, blister pack 213239 1042311000168104 Nicotine (Amcal) 2 mg lozenge, 168 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 898801000168100 nicotine 2 mg lozenge, 168 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +60887011000036101 Dimetapp Cold and Allergy Elixir oral liquid solution, 50 mL, bottle 59767 56841011000036105 Dimetapp Cold and Allergy Elixir oral liquid solution, 50 mL 54095011000036106 Dimetapp Cold and Allergy Elixir oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63604011000036101 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 50 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +69711011000036108 Claramax 5 mg film-coated tablet, 30, blister pack 91115 67510011000036106 Claramax 5 mg film-coated tablet, 30 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72026011000036101 desloratadine 5 mg tablet, 30 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +44188011000036100 Remeron 15 mg film-coated tablet, 60, blister pack 55085 41664011000036101 Remeron 15 mg film-coated tablet, 60 40132011000036107 Remeron 15 mg film-coated tablet 3235011000036100 Remeron 3235011000036100 Remeron 46481011000036100 mirtazapine 15 mg tablet, 60 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +81196011000036101 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 30 g cream), 1 pack, composite pack 81770 80698011000036106 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 30 g cream), 1 pack 80241011000036106 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 81750011000036104 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [30 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +81196011000036101 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 30 g cream), 1 pack, composite pack 81770 80698011000036106 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 30 g cream), 1 pack 80242011000036100 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 500 mg compressed pessary 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 81750011000036104 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [30 g], 1 pack 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +928823011000036109 Epirubicin Hydrochloride (Novotech) 20 mg/10 mL injection solution, 10 mL vial 107349 928175011000036103 Epirubicin Hydrochloride (Novotech) 20 mg/10 mL injection solution, 10 mL vial 927834011000036103 Epirubicin Hydrochloride (Novotech) 20 mg/10 mL injection solution, 10 mL vial 927793011000036109 Epirubicin Hydrochloride (Novotech) 927793011000036109 Epirubicin Hydrochloride (Novotech) 27170011000036103 epirubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22532011000036105 epirubicin hydrochloride 20 mg/10 mL injection, vial 21230011000036100 epirubicin +844751000168106 Kalydeco 75 mg granules, 4 x 14 sachets 269661 844741000168109 Kalydeco 75 mg granules, 4 x 14 sachets 844691000168107 Kalydeco 75 mg granules, 75 mg sachet 154531000036107 Kalydeco 154531000036107 Kalydeco 844731000168100 ivacaftor 75 mg granules, 4 x 14 sachets 844681000168109 ivacaftor 75 mg granules, sachet 157061000036101 ivacaftor +59902011000036106 Benylin Sore Throat 250 mg/5 mL oral liquid suspension, 100 mL, bottle 117310 55864011000036101 Benylin Sore Throat 250 mg/5 mL oral liquid suspension, 100 mL 53716011000036104 Benylin Sore Throat 250 mg/5 mL oral liquid suspension, 5 mL 53211011000036104 Benylin Sore Throat 53211011000036104 Benylin Sore Throat 63542011000036105 paracetamol 250 mg/5 mL oral liquid, 100 mL 62009011000036101 paracetamol 250 mg/5 mL oral liquid 21433011000036107 paracetamol +110851000036102 Citalo 20 mg film-coated tablet, 250, bottle 158874 109061000036104 Citalo 20 mg film-coated tablet, 250 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 46709011000036105 citalopram 20 mg tablet, 250 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +68878011000036107 Soov cream, 50 g, tube 10620 66518011000036109 Soov cream, 50 g 65508011000036109 Soov cream 51051000168109 Soov 51051000168109 Soov 71250011000036106 lidocaine (lignocaine) hydrochloride 1% + phenoxyisopropanol 1% + cetrimide 1% + chlorhexidine gluconate 0.2% cream, 50 g 69919011000036100 lidocaine (lignocaine) hydrochloride 1% + phenoxyisopropanol 1% + cetrimide 1% + chlorhexidine gluconate 0.2% cream 69790011000036102 lidocaine (lignocaine) + phenoxyisopropanol + cetrimide + chlorhexidine +20947011000036107 Solian 100 mg/mL oral liquid solution, 60 mL, bottle 94484 14102011000036102 Solian 100 mg/mL oral liquid solution, 60 mL 7379011000036104 Solian 100 mg/mL oral liquid solution 4321011000036105 Solian 4321011000036105 Solian 28151011000036102 amisulpride 100 mg/mL oral liquid, 60 mL 23460011000036102 amisulpride 100 mg/mL oral liquid 21522011000036106 amisulpride +1027861000168109 Zaldiar film-coated tablet, 50, blister pack 179677 1027851000168107 Zaldiar film-coated tablet, 50 1027821000168104 Zaldiar film-coated tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 680641000168108 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 50 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +1088391000168100 Mersynofen film-coated tablet, 2, blister pack 283907 1088381000168103 Mersynofen film-coated tablet, 2 1088371000168101 Mersynofen film-coated tablet 1088361000168107 Mersynofen 1088361000168107 Mersynofen 812811000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 2 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +895081000168105 Agilocam 7.5 mg hard capsule, 30, blister pack 232586 895071000168107 Agilocam 7.5 mg hard capsule, 30 895061000168101 Agilocam 7.5 mg hard capsule 895051000168103 Agilocam 895051000168103 Agilocam 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +44401011000036109 Scheriproct suppository, 6, strip pack 70063 41861011000036108 Scheriproct suppository, 6 40229011000036102 Scheriproct suppository 11171000168106 Scheriproct 11171000168106 Scheriproct 46667011000036109 prednisolone hexanoate 1.3 mg + cinchocaine hydrochloride 1 mg suppository, 6 45257011000036100 prednisolone hexanoate 1.3 mg + cinchocaine hydrochloride 1 mg suppository 44941011000036104 prednisolone hexanoate + cinchocaine +18017011000036105 Ozvir 200 mg uncoated tablet, 90, blister pack 117380 11567011000036104 Ozvir 200 mg uncoated tablet, 90 4683011000036105 Ozvir 200 mg uncoated tablet 3956011000036107 Ozvir 3956011000036107 Ozvir 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +60824011000036102 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (18 x Day capsules, 6 x Night capsules), 24, blister pack 58352 56780011000036108 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (18 x Day capsules, 6 x Night capsules), 24 54079011000036103 Dimetapp Cold Cough and Flu (Night) soft capsule 36581000168100 Dimetapp Cold Cough and Flu Day and Night Liquid Cap 36821000168101 Dimetapp Cold Cough and Flu (Night) 63563011000036109 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule [6], 24 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +60824011000036102 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (18 x Day capsules, 6 x Night capsules), 24, blister pack 58352 56780011000036108 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (18 x Day capsules, 6 x Night capsules), 24 54078011000036106 Dimetapp Cold Cough and Flu (Day) soft capsule 36581000168100 Dimetapp Cold Cough and Flu Day and Night Liquid Cap 36701000168103 Dimetapp Cold Cough and Flu (Day) 63563011000036109 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule [6], 24 62038011000036103 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +110761000036109 Provive MCT-LCT 1% 500 mg/50 mL injection emulsion, 50 mL vial 162319 108981000036100 Provive MCT-LCT 1% 500 mg/50 mL injection emulsion, 50 mL vial 106931000036100 Provive MCT-LCT 1% 500 mg/50 mL injection emulsion, 50 mL vial 35451000168102 Provive MCT-LCT 1% 35451000168102 Provive MCT-LCT 1% 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +87735011000036106 Risperidone (DRLA) 3 mg film-coated tablet, 60, blister pack 165517 87501011000036103 Risperidone (DRLA) 3 mg film-coated tablet, 60 87343011000036105 Risperidone (DRLA) 3 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +923717011000036108 Grandicrit 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 147860 923321011000036106 Grandicrit 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 923000011000036107 Grandicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924134011000036103 epoetin lambda 1000 units/0.5 mL injection, 6 x 0.5 mL syringes 923957011000036109 epoetin lambda 1000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +50338011000036109 Tubigrip C (1545) 6.75 cm x 1 m bandage, 1, carton 49302011000036106 Tubigrip C (1545) 6.75 cm x 1 m bandage, 1 48687011000036103 Tubigrip C (1545) 6.75 cm x 1 m bandage 63051000168101 Tubigrip C (1545) 63051000168101 Tubigrip C (1545) 51288011000036103 bandage tubular 6.75 cm x 1 m bandage, 1 50817011000036103 bandage tubular 6.75 cm x 1 m bandage 50697011000036107 bandage tubular +35638011000036103 Celluvisc 1% eye drops solution, 30 x 0.4 mL unit doses, ampoule 35545011000036103 Celluvisc 1% eye drops solution, 30 x 0.4 mL unit doses 35471011000036106 Celluvisc 1% eye drops solution, 0.4 mL unit dose 35442011000036104 Celluvisc 35442011000036104 Celluvisc 35756011000036108 carmellose sodium 1% eye drops, 30 x 0.4 mL unit doses 35698011000036106 carmellose sodium 1% eye drops, unit dose 35688011000036105 carmellose sodium +86868011000036108 Pravastatin Sodium (Sandoz) 20 mg tablet, 30, blister pack 152458 86754011000036107 Pravastatin Sodium (Sandoz) 20 mg tablet, 30 86630011000036107 Pravastatin Sodium (Sandoz) 20 mg tablet 83228011000036100 Pravastatin Sodium (Sandoz) 83228011000036100 Pravastatin Sodium (Sandoz) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +73671000036101 Ionil Rinse conditioner, 250 mL, bottle 71301000036102 Ionil Rinse conditioner, 250 mL 69821000036105 Ionil Rinse conditioner 932701011000036107 Ionil Rinse 932701011000036107 Ionil Rinse 71311000036100 benzalkonium chloride conditioner, 250 mL 69831000036107 benzalkonium chloride conditioner 50773011000036101 benzalkonium chloride +1040631000168101 Antibacterial Lozenges (Amcal) Menthol and Eucalyptus lozenge, 36, blister pack 210129 1040621000168104 Antibacterial Lozenges (Amcal) Menthol and Eucalyptus lozenge, 36 1040591000168101 Antibacterial Lozenges (Amcal) Menthol and Eucalyptus lozenge 1040581000168104 Antibacterial Lozenges (Amcal) 1040581000168104 Antibacterial Lozenges (Amcal) 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +677651000168102 Osteo Relief Paracetamol (Terry White Chemists) 665 mg modified release tablet, 96, blister pack 227107 677641000168104 Osteo Relief Paracetamol (Terry White Chemists) 665 mg modified release tablet, 96 677631000168108 Osteo Relief Paracetamol (Terry White Chemists) 665 mg modified release tablet 677621000168105 Osteo Relief Paracetamol (Terry White Chemists) 677621000168105 Osteo Relief Paracetamol (Terry White Chemists) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +971671000168101 Lypralin 150 mg hard capsule, 56, bottle 235852 969621000168108 Lypralin 150 mg hard capsule, 56 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +947001000168107 Risdone 3 mg film-coated tablet, 6, blister pack 144281 946991000168100 Risdone 3 mg film-coated tablet, 6 946971000168101 Risdone 3 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946981000168103 risperidone 3 mg tablet, 6 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +827631000168101 Synflorix injection suspension, 0.5 mL syringe 149004 827621000168104 Synflorix injection suspension, 0.5 mL syringe 827601000168108 Synflorix injection suspension, 0.5 mL syringe 82663011000036105 Synflorix 82663011000036105 Synflorix 827611000168106 pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe 827591000168101 pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe 827581000168104 pneumococcal 10 valent conjugate vaccine +872101000168100 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe 29023 872091000168105 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe 872081000168107 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe 728361000168100 Glucose Min-I-Jet (UCB Pharma) 728361000168100 Glucose Min-I-Jet (UCB Pharma) 872051000168100 glucose monohydrate 25 g/50 mL injection, 50 mL syringe 872031000168106 glucose monohydrate 25 g/50 mL injection, syringe 21354011000036103 glucose +37617011000036105 Mitomycin-C Kyowa 20 mg powder for injection, 5 vials 19739 36884011000036107 Mitomycin-C Kyowa 20 mg powder for injection, 5 vials 36218011000036108 Mitomycin-C Kyowa 20 mg powder for injection, 20 mg vial 39521000168107 Mitomycin-C Kyowa 39521000168107 Mitomycin-C Kyowa 38769011000036104 mitomycin 20 mg injection, 5 vials 37987011000036107 mitomycin 20 mg injection, vial 37757011000036105 mitomycin +111131000036106 Metformin XR (Apo) 500 mg modified release tablet, 120, blister pack 281211 109431000036104 Metformin XR (Apo) 500 mg modified release tablet, 120 106901000036107 Metformin XR (Apo) 500 mg modified release tablet 50561000168107 Metformin XR (Apo) 50561000168107 Metformin XR (Apo) 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +111131000036106 Metformin XR (Apo) 500 mg modified release tablet, 120, blister pack 197402 109431000036104 Metformin XR (Apo) 500 mg modified release tablet, 120 106901000036107 Metformin XR (Apo) 500 mg modified release tablet 50561000168107 Metformin XR (Apo) 50561000168107 Metformin XR (Apo) 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +808941000168109 Pramipexole XR (GP) 3.75 mg modified release tablet, 30, blister pack 225599 808931000168100 Pramipexole XR (GP) 3.75 mg modified release tablet, 30 808901000168107 Pramipexole XR (GP) 3.75 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 933225461000036109 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet, 30 933220641000036103 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet 37716011000036100 pramipexole +1085241000168109 Otrivin Plus nasal spray, 10 mL, pump pack 178401 28981000036102 Otrivin Plus nasal spray, 10 mL 26801000036100 Otrivin Plus nasal spray 26211000036104 Otrivin Plus 26211000036104 Otrivin Plus 29001000036100 ipratropium bromide 0.06% (600 microgram/mL) + xylometazoline hydrochloride 0.05% (500 microgram/mL) nasal spray, 10 mL 26811000036103 ipratropium bromide 0.06% (600 microgram/mL) + xylometazoline hydrochloride 0.05% (500 microgram/mL) nasal spray 31531000036102 ipratropium + xylometazoline +111171000036108 Indosyl Mono 2 mg uncoated tablet, 30, blister pack 198356 109441000036109 Indosyl Mono 2 mg uncoated tablet, 30 107391000036101 Indosyl Mono 2 mg uncoated tablet 3111000168101 Indosyl Mono 3111000168101 Indosyl Mono 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +651931000168107 Minax XL 95 mg modified release tablet, 30, blister pack 205148 651921000168109 Minax XL 95 mg modified release tablet, 30 651911000168102 Minax XL 95 mg modified release tablet 651491000168101 Minax XL 651491000168101 Minax XL 28245011000036101 metoprolol succinate 95 mg modified release tablet, 30 23559011000036107 metoprolol succinate 95 mg modified release tablet 21662011000036107 metoprolol +61279011000036101 FGF modified release tablet, 30, bottle 77937 57215011000036109 FGF modified release tablet, 30 54240011000036104 FGF modified release tablet 53418011000036107 FGF 53418011000036107 FGF 63767011000036101 ferrous sulfate 250 mg (iron 80 mg) + folic acid 300 microgram modified release tablet, 30 62075011000036106 ferrous sulfate 250 mg (iron 80 mg) + folic acid 300 microgram modified release tablet 61711011000036101 ferrous sulfate + folic acid +831971000168104 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack 130241 831961000168105 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack 831791000168100 Zostavax (varicella-zoster live vaccine) powder for injection, vial 73774011000036102 Zostavax 73774011000036102 Zostavax 831951000168108 varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack 831781000168103 varicella-zoster live vaccine 19 400 PFU injection, vial 830851000168105 varicella-zoster live vaccine +831971000168104 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack 130241 831961000168105 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack 635591000168100 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines (inert substance) diluent, 0.65 mL vial 73774011000036102 Zostavax 73763011000036106 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines 831951000168108 varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack 635581000168103 inert substance diluent, 0.65 mL vial 21220011000036103 inert substance +44626011000036106 Levitra 5 mg film-coated tablet, 12, blister pack 90498 42079011000036104 Levitra 5 mg film-coated tablet, 12 40348011000036103 Levitra 5 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46846011000036106 vardenafil 5 mg tablet, 12 45332011000036108 vardenafil 5 mg tablet 44856011000036100 vardenafil +1088311000168109 Lorstat 20 mg film-coated tablet, 90, bottle 181410 1088301000168106 Lorstat 20 mg film-coated tablet, 90 20791000036101 Lorstat 20 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1041601000168103 atorvastatin 20 mg tablet, 90 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +24361000036104 Torlemo DT 100 mg tablet, 56, blister pack 150765 22311000036106 Torlemo DT 100 mg tablet, 56 20721000036104 Torlemo DT 100 mg tablet 19101000168100 Torlemo DT 19101000168100 Torlemo DT 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +931650011000036101 Twynsta 80/5 mg multilayer tablet, 30, blister pack 166263 930810011000036109 Twynsta 80/5 mg multilayer tablet, 30 930057011000036103 Twynsta 80/5 mg multilayer tablet 12411000168103 Twynsta 80/5 mg 12411000168103 Twynsta 80/5 mg 932423011000036106 telmisartan 80 mg + amlodipine 5 mg tablet, 30 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +19063011000036100 Normison 10 mg uncoated tablet, 25, blister pack 41637 12371011000036100 Normison 10 mg uncoated tablet, 25 4641011000036102 Normison 10 mg uncoated tablet 2981011000036100 Normison 2981011000036100 Normison 28036011000036100 temazepam 10 mg tablet, 25 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +18170011000036107 Nizoral 200 mg uncoated tablet, 30, strip pack 13310 12355011000036101 Nizoral 200 mg uncoated tablet, 30 5379011000036100 Nizoral 200 mg uncoated tablet 4145011000036104 Nizoral 4145011000036104 Nizoral 27074011000036104 ketoconazole 200 mg tablet, 30 22443011000036109 ketoconazole 200 mg tablet 21500011000036103 ketoconazole +79047011000036109 Bispro 10 mg film-coated tablet, 100, blister pack 130182 78799011000036107 Bispro 10 mg film-coated tablet, 100 78627011000036103 Bispro 10 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79214011000036101 bisoprolol fumarate 10 mg tablet, 100 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +976011000168109 Vinblastine (Teva) 10 mg/10 mL injection solution, 10 mL vial 976001000168106 Vinblastine (Teva) 10 mg/10 mL injection solution, 10 mL vial 975991000168105 Vinblastine (Teva) 10 mg/10 mL injection solution, 10 mL vial 975981000168107 Vinblastine (Teva) 975981000168107 Vinblastine (Teva) 769421000168101 vinblastine sulfate 10 mg/10 mL injection, 10 mL vial 22289011000036103 vinblastine sulfate 10 mg/10 mL injection, vial 21466011000036108 vinblastine +716701000168107 Omepro 20 mg enteric capsule, 500, blister pack 149516 716691000168107 Omepro 20 mg enteric capsule, 500 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716681000168109 omeprazole 20 mg enteric capsule, 500 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +758191000168109 Macu-Vision Plus film-coated tablet, 60, bottle 213449 758181000168106 Macu-Vision Plus film-coated tablet, 60 758161000168102 Macu-Vision Plus film-coated tablet 758121000168107 Macu-Vision Plus 758121000168107 Macu-Vision Plus 758171000168108 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) + lutein 5 mg + zeaxanthin 1 mg tablet, 60 758151000168104 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) + lutein 5 mg + zeaxanthin 1 mg tablet 758141000168101 ascorbic acid + d-alpha-tocopheryl acid succinate + zinc + copper + lutein + zeaxanthin +950931000168100 Fiasp Flextouch 100 units/mL injection solution, 5 x 3 mL injection devices 275394 950921000168103 Fiasp Flextouch 100 units/mL injection solution, 5 x 3 mL injection devices 950871000168107 Fiasp Flextouch 100 units/mL injection solution, 3 mL injection device 950851000168103 Fiasp Flextouch 950851000168103 Fiasp Flextouch 950911000168105 insulin aspart 100 units/mL injection, 5 x 3 mL injection devices 950861000168101 insulin aspart 100 units/mL injection, injection device 21699011000036100 insulin aspart +933239891000036100 Cefaclor (GH) 375 mg modified release tablet, 10, blister pack 182048 933237211000036100 Cefaclor (GH) 375 mg modified release tablet, 10 933234841000036107 Cefaclor (GH) 375 mg modified release tablet 933234331000036108 Cefaclor (GH) 933234331000036108 Cefaclor (GH) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +25001000036102 Atorvastatin (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 153735 22241000036104 Atorvastatin (Terry White Chemists) 20 mg film-coated tablet, 30 20851000036101 Atorvastatin (Terry White Chemists) 20 mg film-coated tablet 19761000036107 Atorvastatin (Terry White Chemists) 19761000036107 Atorvastatin (Terry White Chemists) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +985411000168102 Advil Mini Caps 200 mg sugar coated tablet, 20, blister pack 104222 985401000168100 Advil Mini Caps 200 mg sugar coated tablet, 20 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +976831000168109 Ferriprox-1000 1 g film-coated tablet, 50, bottle 280204 976821000168106 Ferriprox-1000 1 g film-coated tablet, 50 976801000168102 Ferriprox-1000 1 g film-coated tablet 976781000168101 Ferriprox-1000 976781000168101 Ferriprox-1000 976811000168104 deferiprone 1 g tablet, 50 976791000168103 deferiprone 1 g tablet 21780011000036103 deferiprone +670301000168107 Enalapril Maleate (AN) 5 mg uncoated tablet, 30, blister pack 188552 670291000168106 Enalapril Maleate (AN) 5 mg uncoated tablet, 30 670281000168108 Enalapril Maleate (AN) 5 mg uncoated tablet 670271000168105 Enalapril Maleate (AN) 670271000168105 Enalapril Maleate (AN) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +906161000168104 Amisulpride (AN) 100 mg uncoated tablet, 30, blister pack 234715 906151000168101 Amisulpride (AN) 100 mg uncoated tablet, 30 906141000168103 Amisulpride (AN) 100 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +68682011000036107 Mintec 0.2 mL enteric capsule, 30, blister pack 12993 66738011000036104 Mintec 0.2 mL enteric capsule, 30 65372011000036101 Mintec 0.2 mL enteric capsule 65155011000036104 Mintec 65155011000036104 Mintec 71404011000036109 peppermint oil 0.2 mL enteric capsule, 30 69997011000036106 peppermint oil 0.2 mL enteric capsule 69794011000036107 peppermint oil +946601000168102 Risdone 6 mg film-coated tablet, 6, blister pack 144289 946591000168109 Risdone 6 mg film-coated tablet, 6 946571000168108 Risdone 6 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946581000168106 risperidone 6 mg tablet, 6 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +839551000168103 Advantan 0.1% fatty ointment, 100 g, tube 49382 839541000168100 Advantan 0.1% fatty ointment, 100 g 4508011000036106 Advantan 0.1% fatty ointment 3513011000036101 Advantan 3513011000036101 Advantan 839531000168109 methylprednisolone aceponate 0.1% fatty ointment, 100 g 124361000036108 methylprednisolone aceponate 0.1% fatty ointment 21605011000036100 methylprednisolone +925174011000036105 Lercan 10 mg film-coated tablet, 28, blister pack 152707 924711011000036103 Lercan 10 mg film-coated tablet, 28 924428011000036106 Lercan 10 mg film-coated tablet 924368011000036107 Lercan 924368011000036107 Lercan 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +69503011000036106 Medithroat Gargle (Nyal) 7.5% mouthwash, 15 mL, bottle 52050 67303011000036103 Medithroat Gargle (Nyal) 7.5% mouthwash, 15 mL 65598011000036106 Medithroat Gargle (Nyal) 7.5% mouthwash 39221000168109 Medithroat Gargle (Nyal) 39221000168109 Medithroat Gargle (Nyal) 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +831011000168106 Cyprone 100 mg uncoated tablet, 50, blister pack 266553 831001000168108 Cyprone 100 mg uncoated tablet, 50 830991000168107 Cyprone 100 mg uncoated tablet 4359011000036105 Cyprone 4359011000036105 Cyprone 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +946861000168100 Risdone 4 mg film-coated tablet, 28, blister pack 144282 946851000168102 Risdone 4 mg film-coated tablet, 28 946751000168107 Risdone 4 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946841000168104 risperidone 4 mg tablet, 28 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +69400011000036106 Decongestant Medicine (Nyal) 5 mg/5 mL oral liquid solution, 100 mL, bottle 44149 67200011000036104 Decongestant Medicine (Nyal) 5 mg/5 mL oral liquid solution, 100 mL 65549011000036107 Decongestant Medicine (Nyal) 5 mg/5 mL oral liquid solution, 5 mL 64964011000036101 Decongestant Medicine (Nyal) 64964011000036101 Decongestant Medicine (Nyal) 72000011000036108 phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 70274011000036109 phenylephrine hydrochloride 5 mg/5 mL oral liquid 37732011000036107 phenylephrine +20448011000036105 Mylanta Double Strength oral liquid suspension, 500 mL, bottle 78004 13651011000036100 Mylanta Double Strength oral liquid suspension, 500 mL 6934011000036105 Mylanta Double Strength oral liquid suspension, 5 mL 23731000168101 Mylanta Double Strength 23731000168101 Mylanta Double Strength 27861011000036108 aluminium hydroxide hydrate 400 mg/5 mL + magnesium hydroxide 400 mg/5 mL + simethicone 30 mg/5 mL oral liquid, 500 mL 23189011000036107 aluminium hydroxide hydrate 400 mg/5 mL + magnesium hydroxide 400 mg/5 mL + simethicone 30 mg/5 mL oral liquid 21880011000036101 aluminium hydroxide hydrate + magnesium hydroxide + simethicone +811961000168102 Affora 5 mg film-coated tablet, 30, blister pack 198055 811951000168104 Affora 5 mg film-coated tablet, 30 811921000168107 Affora 5 mg film-coated tablet 811911000168100 Affora 811911000168100 Affora 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +926695011000036100 Lisoril 5 mg uncoated tablet, 30, blister pack 106495 926071011000036102 Lisoril 5 mg uncoated tablet, 30 925620011000036100 Lisoril 5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +743161000168108 Morphine MR (AN) 60 mg modified release tablet, 20, blister pack 225427 743151000168106 Morphine MR (AN) 60 mg modified release tablet, 20 743141000168109 Morphine MR (AN) 60 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 27108011000036105 morphine sulfate pentahydrate 60 mg modified release tablet, 20 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +44179011000036102 Anzemet 12.5 mg/0.625 mL injection solution, 0.625 mL ampoule 55060 41655011000036108 Anzemet 12.5 mg/0.625 mL injection solution, 0.625 mL ampoule 40125011000036101 Anzemet 12.5 mg/0.625 mL injection solution, 0.625 mL ampoule 4210011000036102 Anzemet 4210011000036102 Anzemet 46473011000036109 dolasetron mesilate monohydrate 12.5 mg/0.625 mL injection, 0.625 mL ampoule 45173011000036105 dolasetron mesilate monohydrate 12.5 mg/0.625 mL injection, ampoule 21471011000036108 dolasetron +959471000168100 Levetiracetam (Apo) 750 mg film-coated tablet, 60, bottle 156317 959421000168101 Levetiracetam (Apo) 750 mg film-coated tablet, 60 959411000168108 Levetiracetam (Apo) 750 mg film-coated tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +753871000168106 Remifentanil (Apotex) 5 mg powder for injection, 5 vials 234702 753861000168100 Remifentanil (Apotex) 5 mg powder for injection, 5 vials 753851000168102 Remifentanil (Apotex) 5 mg powder for injection, 5 mg vial 753811000168103 Remifentanil (Apotex) 753811000168103 Remifentanil (Apotex) 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +1103241000168101 Nicotine (NCHA) Classic 4 mg chewing gum, 96, blister pack 143430 1103231000168105 Nicotine (NCHA) Classic 4 mg chewing gum, 96 1103201000168103 Nicotine (NCHA) Classic 4 mg chewing gum 1103091000168102 Nicotine (NCHA) 1103091000168102 Nicotine (NCHA) 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1113931000168100 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 20, blister pack 179086 1113921000168103 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 20 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1042961000168102 olanzapine 10 mg orally disintegrating tablet, 20 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +820501000168106 Levetiracetam (Juno) 1.5 g/100 mL injection solution, 100 mL, bag 224490 820491000168104 Levetiracetam (Juno) 1.5 g/100 mL injection solution, 100 mL 820471000168100 Levetiracetam (Juno) 1.5 g/100 mL injection solution 779491000168109 Levetiracetam (Juno) 779491000168109 Levetiracetam (Juno) 820481000168102 levetiracetam 1.5 g/100 mL injection, 100 mL 820461000168106 levetiracetam 1.5 g/100 mL injection 21766011000036102 levetiracetam +897641000168100 Nicotinell Mint 2 mg chewing gum, 216, blister pack 126043 897631000168109 Nicotinell Mint 2 mg chewing gum, 216 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897621000168106 nicotine 2 mg gum, 216 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +34809011000036101 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 60 mL, bottle 78981 34384011000036100 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 60 mL 34065011000036103 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 35229011000036107 cefalexin 125 mg/5 mL powder for oral liquid, 60 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +79629011000036107 Cephalexin (Generic Health) 500 mg capsule, 20, blister pack 154381 79497011000036105 Cephalexin (Generic Health) 500 mg capsule, 20 79381011000036107 Cephalexin (Generic Health) 500 mg capsule 79349011000036101 Cephalexin (Generic Health) 79349011000036101 Cephalexin (Generic Health) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +19797011000036109 Eryc 250 mg enteric capsule, 25, blister pack 63156 13054011000036109 Eryc 250 mg enteric capsule, 25 6338011000036108 Eryc 250 mg enteric capsule 3223011000036103 Eryc 3223011000036103 Eryc 27918011000036106 erythromycin 250 mg enteric capsule, 25 23242011000036105 erythromycin 250 mg enteric capsule 21889011000036107 erythromycin +762531000168107 Salicylic Acid 2% in Sorbolene Cream (David Craig) cream, 100 g, jar 14238 762521000168109 Salicylic Acid 2% in Sorbolene Cream (David Craig) cream, 100 g 762501000168100 Salicylic Acid 2% in Sorbolene Cream (David Craig) cream 762481000168109 Salicylic Acid 2% in Sorbolene Cream (David Craig) 762481000168109 Salicylic Acid 2% in Sorbolene Cream (David Craig) 762511000168102 salicylic acid 2% + cetomacrogol aqueous cream, 100 g 762491000168107 salicylic acid 2% + cetomacrogol aqueous cream 69782011000036104 salicylic acid + cetomacrogol aqueous cream +19457011000036108 3TC 150 mg film-coated tablet, 60, bottle 54313 12734011000036103 3TC 150 mg film-coated tablet, 60 6029011000036103 3TC 150 mg film-coated tablet 3566011000036108 3TC 3566011000036108 3TC 27321011000036100 lamivudine 150 mg tablet, 60 22674011000036105 lamivudine 150 mg tablet 21665011000036104 lamivudine +1120461000168100 Xque XR 300 mg modified release tablet, 60, blister pack 226815 1120451000168102 Xque XR 300 mg modified release tablet, 60 1120401000168101 Xque XR 300 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +61700011000036105 Codral Dry Cough 1 mg/mL oral liquid solution, 100 mL, bottle 99944 57621011000036103 Codral Dry Cough 1 mg/mL oral liquid solution, 100 mL 54369011000036105 Codral Dry Cough 1 mg/mL oral liquid solution 1431000168101 Codral Dry Cough 1431000168101 Codral Dry Cough 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +741311000168109 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 231051 741301000168106 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 741281000168107 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741291000168105 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, 0.375 mL injection device 741271000168109 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, injection device 21352011000036107 follitropin alfa +1071131000168102 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 18, blister pack 208284 1071121000168100 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 18 1071091000168104 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 1069871000168100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 18 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +56671000036107 Lanez ODT 10 mg orally disintegrating tablet, 28, blister pack 163427 53101000036101 Lanez ODT 10 mg orally disintegrating tablet, 28 49481000036104 Lanez ODT 10 mg orally disintegrating tablet 55111000168105 Lanez ODT 55111000168105 Lanez ODT 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +20356011000036102 Cefotaxime (Sandoz) 2 g powder for injection, 1 vial 76433 13564011000036104 Cefotaxime (Sandoz) 2 g powder for injection, 1 vial 6846011000036105 Cefotaxime (Sandoz) 2 g powder for injection, 2 g vial 4148011000036105 Cefotaxime (Sandoz) 4148011000036105 Cefotaxime (Sandoz) 33812011000036106 cefotaxime 2 g injection, 1 vial 33683011000036109 cefotaxime 2 g injection, vial 21327011000036105 cefotaxime +21074011000036101 Daraprim 25 mg uncoated tablet, 50, blister pack 97456 14226011000036106 Daraprim 25 mg uncoated tablet, 50 7512011000036101 Daraprim 25 mg uncoated tablet 4189011000036107 Daraprim 4189011000036107 Daraprim 28228011000036105 pyrimethamine 25 mg tablet, 50 23542011000036104 pyrimethamine 25 mg tablet 21690011000036106 pyrimethamine +87744011000036108 Piax 75 mg film-coated tablet, 28, blister pack 168927 87510011000036108 Piax 75 mg film-coated tablet, 28 87347011000036101 Piax 75 mg film-coated tablet 87288011000036103 Piax 87288011000036103 Piax 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +18052011000036104 Carafate 1 g uncoated tablet, 120, bottle 14930 12064011000036109 Carafate 1 g uncoated tablet, 120 5069011000036109 Carafate 1 g uncoated tablet 4345011000036105 Carafate 4345011000036105 Carafate 27122011000036100 sucralfate 1 g tablet, 120 22488011000036105 sucralfate 1 g tablet 21909011000036102 sucralfate +1113611000168100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 30, blister pack 179092 1113601000168103 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 30 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043341000168109 olanzapine 5 mg orally disintegrating tablet, 30 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +20757011000036100 Strattera 60 mg hard capsule, 28, blister pack 90596 13926011000036107 Strattera 60 mg hard capsule, 28 7214011000036100 Strattera 60 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1062461000168102 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 36, blister pack 196533 1062451000168104 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 36 1062341000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +981081000168100 Lovenox 100 mg/mL injection solution, 1 mL syringe 80269 981071000168103 Lovenox 100 mg/mL injection solution, 1 mL syringe 981061000168109 Lovenox 100 mg/mL injection solution, syringe 112571000036109 Lovenox 112571000036109 Lovenox 823691000168107 enoxaparin sodium 100 mg/mL injection, 1 mL syringe 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +860881000168108 Ambotens 300 mg film-coated tablet, 30, blister pack 223019 860871000168105 Ambotens 300 mg film-coated tablet, 30 860861000168104 Ambotens 300 mg film-coated tablet 860851000168101 Ambotens 860851000168101 Ambotens 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +860881000168108 Ambotens 300 mg film-coated tablet, 30, blister pack 190231 860871000168105 Ambotens 300 mg film-coated tablet, 30 860861000168104 Ambotens 300 mg film-coated tablet 860851000168101 Ambotens 860851000168101 Ambotens 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +908011000168100 Celecoxib (Generic Health) 200 mg hard capsule, 120, blister pack 196183 908001000168103 Celecoxib (Generic Health) 200 mg hard capsule, 120 907781000168107 Celecoxib (Generic Health) 200 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +20999011000036109 Cefaclor (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 169114 14145011000036103 Cefaclor (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL 7424011000036107 Cefaclor (Chemmart) 125 mg/5 mL powder for oral liquid, 5 mL 3425011000036103 Cefaclor (Chemmart) 3425011000036103 Cefaclor (Chemmart) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +20999011000036109 Cefaclor (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 96315 14145011000036103 Cefaclor (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL 7424011000036107 Cefaclor (Chemmart) 125 mg/5 mL powder for oral liquid, 5 mL 3425011000036103 Cefaclor (Chemmart) 3425011000036103 Cefaclor (Chemmart) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +933213901000036107 Ciprofloxacin (IPC) 750 mg film-coated tablet, 8, blister pack 153185 933201931000036102 Ciprofloxacin (IPC) 750 mg film-coated tablet, 8 933194831000036105 Ciprofloxacin (IPC) 750 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 87798011000036108 ciprofloxacin 750 mg tablet, 8 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +20114011000036105 Qvar Autohaler 100 microgram/actuation breath activated inhalation, 200 actuations, metered dose aerosol can 71994 13339011000036107 Qvar Autohaler 100 microgram/actuation breath activated inhalation, 200 actuations 6624011000036109 Qvar Autohaler 100 microgram/actuation breath activated inhalation, actuation 30981000168105 Qvar Autohaler 30981000168105 Qvar Autohaler 76561000036100 beclometasone dipropionate 100 microgram/actuation breath activated inhalation, 200 actuations 76531000036106 beclometasone dipropionate 100 microgram/actuation breath activated inhalation, actuation 21435011000036108 beclometasone +951251000168109 Modafinil (Sandoz) 100 mg uncoated tablet, 90, blister pack 269914 951241000168107 Modafinil (Sandoz) 100 mg uncoated tablet, 90 951161000168100 Modafinil (Sandoz) 100 mg uncoated tablet 951091000168106 Modafinil (Sandoz) 951091000168106 Modafinil (Sandoz) 951231000168103 modafinil 100 mg tablet, 90 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +131591000036106 Rostor 40 mg film-coated tablet, 30, blister pack 197008 128571000036101 Rostor 40 mg film-coated tablet, 30 124431000036105 Rostor 40 mg film-coated tablet 123991000036100 Rostor 123991000036100 Rostor 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +933231301000036104 Glimepiride (GA) 2 mg uncoated tablet, 10, blister pack 173879 933225391000036107 Glimepiride (GA) 2 mg uncoated tablet, 10 933220581000036106 Glimepiride (GA) 2 mg uncoated tablet 933219111000036109 Glimepiride (GA) 933219111000036109 Glimepiride (GA) 925414011000036104 glimepiride 2 mg tablet, 10 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +895401000168108 Olmesartan (Apotex) 20 mg film-coated tablet, 30, blister pack 201832 895391000168106 Olmesartan (Apotex) 20 mg film-coated tablet, 30 895381000168108 Olmesartan (Apotex) 20 mg film-coated tablet 895371000168105 Olmesartan (Apotex) 895371000168105 Olmesartan (Apotex) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +44367011000036108 Vasocardol CD 180 mg modified release capsule, 7, bottle 68922 41833011000036104 Vasocardol CD 180 mg modified release capsule, 7 6533011000036101 Vasocardol CD 180 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 46639011000036108 diltiazem hydrochloride 180 mg modified release capsule, 7 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +771211000168100 Imigran FDT 50 mg film-coated tablet, 6, blister pack 106714 771201000168103 Imigran FDT 50 mg film-coated tablet, 6 5890011000036101 Imigran FDT 50 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 771191000168101 sumatriptan 50 mg tablet, 6 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +43667011000036101 Simvastatin (DP) 40 mg film-coated tablet, 180, bottle 125783 41327011000036108 Simvastatin (DP) 40 mg film-coated tablet, 180 5821011000036100 Simvastatin (DP) 40 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46249011000036107 simvastatin 40 mg tablet, 180 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +21082011000036101 Certican 750 microgram uncoated tablet, 60, blister pack 97509 14225011000036104 Certican 750 microgram uncoated tablet, 60 7511011000036107 Certican 750 microgram uncoated tablet 4369011000036100 Certican 4369011000036100 Certican 28227011000036109 everolimus 750 microgram tablet, 60 23541011000036105 everolimus 750 microgram tablet 21615011000036103 everolimus +34832011000036101 Concerta 36 mg modified release tablet, 100, bottle 93863 34407011000036102 Concerta 36 mg modified release tablet, 100 7354011000036103 Concerta 36 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35246011000036101 methylphenidate hydrochloride 36 mg modified release tablet, 100 23438011000036105 methylphenidate hydrochloride 36 mg modified release tablet 21277011000036101 methylphenidate +946781000168100 Risdone 4 mg film-coated tablet, 6, blister pack 144282 946771000168103 Risdone 4 mg film-coated tablet, 6 946751000168107 Risdone 4 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946761000168109 risperidone 4 mg tablet, 6 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +846121000168109 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 160539 846111000168102 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 846061000168103 Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial 137301000036103 Menitorix 137301000036103 Menitorix 846101000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 846051000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial 846041000168102 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine +846121000168109 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 160539 846111000168102 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 828351000168100 Menitorix (inert substance) diluent, 0.5 mL syringe 137301000036103 Menitorix 137301000036103 Menitorix 846101000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +68708011000036100 Pinetarsol 2.3% bath oil, 100 mL, bottle 10632 66534011000036107 Pinetarsol 2.3% bath oil, 100 mL 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71266011000036101 tar 2.3% bath oil, 100 mL 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +43785011000036103 Simvastatin (DP) 40 mg film-coated tablet, 30, bottle 199739 11294011000036100 Simvastatin (DP) 40 mg film-coated tablet, 30 5821011000036100 Simvastatin (DP) 40 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +43785011000036103 Simvastatin (DP) 40 mg film-coated tablet, 30, bottle 125783 11294011000036100 Simvastatin (DP) 40 mg film-coated tablet, 30 5821011000036100 Simvastatin (DP) 40 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +754031000168101 Xedone 5 mg hard capsule, 20, bottle 227839 753901000168106 Xedone 5 mg hard capsule, 20 753891000168107 Xedone 5 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +843981000168104 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 28, bottle 218077 843871000168107 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 28 843821000168106 Desvenlafaxine (Sandoz) 50 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +19679011000036100 Oxis Turbuhaler 6 microgram/actuation powder for inhalation, 60 actuations, dry powder inhaler 60142 12939011000036109 Oxis Turbuhaler 6 microgram/actuation powder for inhalation, 60 actuations 6229011000036108 Oxis Turbuhaler 6 microgram/actuation powder for inhalation, actuation 29271000168107 Oxis Turbuhaler 29271000168107 Oxis Turbuhaler 27454011000036106 formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, 60 actuations 22801011000036105 formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, actuation 21358011000036105 formoterol (eformoterol) +931466011000036108 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) uncoated tablet, 30, blister pack 151946 930645011000036101 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) uncoated tablet, 30 929989011000036107 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) uncoated tablet 44261000168104 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) 44261000168104 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +931466011000036108 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) uncoated tablet, 30, blister pack 223503 930645011000036101 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) uncoated tablet, 30 929989011000036107 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) uncoated tablet 44261000168104 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) 44261000168104 Fosinopril Sodium HCTZ 20/12.5 mg (Apo) 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +12021000036105 Indopril Combi 4/1.25 mg uncoated tablet, 30, blister pack 147151 6511000036107 Indopril Combi 4/1.25 mg uncoated tablet, 30 3291000036109 Indopril Combi 4/1.25 mg uncoated tablet 30161000168103 Indopril Combi 4/1.25 mg 30161000168103 Indopril Combi 4/1.25 mg 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +921931011000036109 B-Dose (Biological Therapies) injection solution, 3 x 2 mL vials 22266 921490011000036109 B-Dose (Biological Therapies) injection solution, 3 x 2 mL vials 921034011000036104 B-Dose (Biological Therapies) injection solution, 2 mL vial 920960011000036102 B-Dose (Biological Therapies) 920960011000036102 B-Dose (Biological Therapies) 922614011000036104 thiamine hydrochloride 20 mg/2 mL + riboflavin sodium phosphate 5 mg/2 mL + nicotinamide 50 mg/2 mL + dexpanthenol 5 mg/2 mL + pyridoxine hydrochloride 10 mg/2 mL + cyanocobalamin 1 mg/2 mL injection, 3 x 2 mL vials 922108011000036109 thiamine hydrochloride 20 mg/2 mL + riboflavin sodium phosphate 5 mg/2 mL + nicotinamide 50 mg/2 mL + dexpanthenol 5 mg/2 mL + pyridoxine hydrochloride 10 mg/2 mL + cyanocobalamin 1 mg/2 mL injection, vial 922036011000036108 thiamine + riboflavin + nicotinamide + dexpanthenol + pyridoxine + cyanocobalamin +60732011000036106 Panadol Sinus film-coated tablet, 4, blister pack 49563 56690011000036100 Panadol Sinus film-coated tablet, 4 54035011000036102 Panadol Sinus film-coated tablet 13691000168103 Panadol Sinus 13691000168103 Panadol Sinus 63643011000036108 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +19388011000036108 Lexotan 6 mg uncoated tablet, 30, blister pack 52270 12673011000036109 Lexotan 6 mg uncoated tablet, 30 5381011000036107 Lexotan 6 mg uncoated tablet 3511011000036102 Lexotan 3511011000036102 Lexotan 27275011000036109 bromazepam 6 mg tablet, 30 22630011000036103 bromazepam 6 mg tablet 21586011000036104 bromazepam +59893011000036107 Nurofen Plus film-coated tablet, 4, blister pack 116620 55855011000036108 Nurofen Plus film-coated tablet, 4 53658011000036100 Nurofen Plus film-coated tablet 28771000168109 Nurofen Plus 28771000168109 Nurofen Plus 63145011000036105 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 4 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1002411000168104 Rivastigmine (Apo) 4.5 mg hard capsule, 14, blister pack 160567 1002401000168102 Rivastigmine (Apo) 4.5 mg hard capsule, 14 1002211000168100 Rivastigmine (Apo) 4.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002391000168104 rivastigmine 4.5 mg capsule, 14 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +1019591000168103 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 5, blister pack 175208 1019581000168101 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 5 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019571000168104 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 5 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1096661000168103 Voltaren Emulgel No Mess Applicator 1.16% gel, 50 g, tube 282516 1096651000168100 Voltaren Emulgel No Mess Applicator 1.16% gel, 50 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037061000168101 diclofenac diethylamine 1.16% gel, 50 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +19020011000036100 Foscavir 6 g/250 mL injection solution, 250 mL bottle 37310 12325011000036102 Foscavir 6 g/250 mL injection solution, 250 mL bottle 5185011000036103 Foscavir 6 g/250 mL injection solution, 250 mL bottle 3469011000036105 Foscavir 3469011000036105 Foscavir 27063011000036108 foscarnet sodium 6 g/250 mL injection, 250 mL bottle 22431011000036107 foscarnet sodium 6 g/250 mL injection, bottle 21418011000036106 foscarnet +39418011000036102 Bicalutamide (Apo) 50 mg film-coated tablet, 28, blister pack 139575 39301011000036101 Bicalutamide (Apo) 50 mg film-coated tablet, 28 39193011000036109 Bicalutamide (Apo) 50 mg film-coated tablet 60521000168107 Bicalutamide (Apo) 60521000168107 Bicalutamide (Apo) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +39418011000036102 Bicalutamide (Apo) 50 mg film-coated tablet, 28, blister pack 194683 39301011000036101 Bicalutamide (Apo) 50 mg film-coated tablet, 28 39193011000036109 Bicalutamide (Apo) 50 mg film-coated tablet 60521000168107 Bicalutamide (Apo) 60521000168107 Bicalutamide (Apo) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +848291000168102 Alinivir 200 mg uncoated tablet, 25, blister pack 202875 848281000168100 Alinivir 200 mg uncoated tablet, 25 848271000168103 Alinivir 200 mg uncoated tablet 848211000168106 Alinivir 848211000168106 Alinivir 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +60490011000036109 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 100 mL, bottle 150324 56448011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 100 mL 53923011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension 20021000168109 Nurofen for Children Baby 3+ Months 20021000168109 Nurofen for Children Baby 3+ Months 63363011000036106 ibuprofen 40 mg/mL oral liquid, 100 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +933239961000036100 Simvacor 10 mg film-coated tablet, 30, bottle 182910 933236451000036104 Simvacor 10 mg film-coated tablet, 30 933234851000036105 Simvacor 10 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +895361000168104 Atomoxetine (Sandoz) 40 mg hard capsule, 28, blister pack 238369 895351000168101 Atomoxetine (Sandoz) 40 mg hard capsule, 28 895321000168109 Atomoxetine (Sandoz) 40 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +903921000168103 Celocox 200 mg hard capsule, 120, blister pack 212792 903911000168105 Celocox 200 mg hard capsule, 120 903791000168103 Celocox 200 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +856791000168109 Entrip 50 mg film-coated tablet, 10, blister pack 232156 856781000168106 Entrip 50 mg film-coated tablet, 10 856771000168108 Entrip 50 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +50229011000036109 Tubegauz Complete (0501633) with applicator bandage, 1, carton 49338011000036103 Tubegauz Complete (0501633) with applicator bandage, 1 48697011000036102 Tubegauz Complete (0501633) with applicator bandage 32571000168104 Tubegauz Complete (0501633) 32571000168104 Tubegauz Complete (0501633) 51400011000036102 bandage tubular finger bandage, 1 50920011000036104 bandage tubular finger bandage 50768011000036103 bandage tubular finger +50433011000036107 Digestelact powder for oral liquid, 900 g, can 49474011000036101 Digestelact powder for oral liquid, 900 g 48481011000036109 Digestelact powder for oral liquid 48279011000036101 Digestelact 48279011000036101 Digestelact 51432011000036108 milk powder lactose modified predigested powder for oral liquid, 900 g 50948011000036100 milk powder lactose modified predigested powder for oral liquid 50776011000036107 milk powder lactose modified predigested +741151000168107 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 10 x 0.125 mL injection devices 231039 741141000168105 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 10 x 0.125 mL injection devices 741061000168105 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741131000168101 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, 10 x 0.125 mL injection devices 741051000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, injection device 21352011000036107 follitropin alfa +916771000168109 Carvedilol (CH) 6.25 mg uncoated tablet, 30, blister pack 194257 916761000168103 Carvedilol (CH) 6.25 mg uncoated tablet, 30 916751000168100 Carvedilol (CH) 6.25 mg uncoated tablet 916661000168106 Carvedilol (CH) 916661000168106 Carvedilol (CH) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +928978011000036106 Valaciclovir (Apo) 500 mg film-coated tablet, 480, blister pack 158911 928339011000036106 Valaciclovir (Apo) 500 mg film-coated tablet, 480 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929220011000036107 valaciclovir 500 mg tablet, 480 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +34644011000036101 Thelin 100 mg film-coated tablet, 30, blister pack 123263 34234011000036104 Thelin 100 mg film-coated tablet, 30 33976011000036106 Thelin 100 mg film-coated tablet 33940011000036109 Thelin 33940011000036109 Thelin 35110011000036106 sitaxentan sodium 100 mg tablet, 30 34852011000036100 sitaxentan sodium 100 mg tablet 34844011000036106 sitaxentan +59891011000036106 Nurofen Plus film-coated tablet, 12, blister pack 116620 55853011000036107 Nurofen Plus film-coated tablet, 12 53658011000036100 Nurofen Plus film-coated tablet 28771000168109 Nurofen Plus 28771000168109 Nurofen Plus 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +835351000168107 Esomeprazole (AN) 40 mg enteric tablet, 15, bottle 236437 835341000168105 Esomeprazole (AN) 40 mg enteric tablet, 15 704071000168107 Esomeprazole (AN) 40 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 681491000168109 esomeprazole 40 mg enteric tablet, 15 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1036731000168108 Atorvastatin (RBX) 10 mg film-coated tablet, 30, blister pack 173500 1036721000168105 Atorvastatin (RBX) 10 mg film-coated tablet, 30 1036691000168101 Atorvastatin (RBX) 10 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +50675011000036108 Paroxetine (Generic Health) 20 mg film-coated tablet, 56, blister pack 153324 49699011000036107 Paroxetine (Generic Health) 20 mg film-coated tablet, 56 48828011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet 48331011000036109 Paroxetine (Generic Health) 48331011000036109 Paroxetine (Generic Health) 51565011000036100 paroxetine 20 mg tablet, 56 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1088131000168101 Diclofenac (Catalent) 12.5 mg soft capsule, 10, blister pack 283510 1088121000168104 Diclofenac (Catalent) 12.5 mg soft capsule, 10 1088101000168108 Diclofenac (Catalent) 12.5 mg soft capsule 1088051000168108 Diclofenac (Catalent) 1088051000168108 Diclofenac (Catalent) 1088111000168106 diclofenac potassium 12.5 mg capsule, 10 1088091000168103 diclofenac potassium 12.5 mg capsule 21288011000036105 diclofenac +651211000168109 Captopril (Apo) 50 mg uncoated tablet, 90, blister pack 74008 651201000168106 Captopril (Apo) 50 mg uncoated tablet, 90 651191000168108 Captopril (Apo) 50 mg uncoated tablet 650661000168103 Captopril (Apo) 650661000168103 Captopril (Apo) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +1045291000168105 Amisulpride (Pharmacor) 100 mg uncoated tablet, 60, blister pack 234695 1045281000168107 Amisulpride (Pharmacor) 100 mg uncoated tablet, 60 1045211000168101 Amisulpride (Pharmacor) 100 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +19746011000036102 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62134 13003011000036104 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6291011000036101 Brevinor-1 28 Day (inert substance) uncoated tablet 700011851000036108 Brevinor-1 28 Day 700011851000036108 Brevinor-1 28 Day 27493011000036103 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19746011000036102 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62134 13003011000036104 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6290011000036108 Brevinor-1 28 Day (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 700011851000036108 Brevinor-1 28 Day 700011851000036108 Brevinor-1 28 Day 27493011000036103 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +24931000036109 Atorvastatin (Apo) 80 mg film-coated tablet, 30, bottle 153730 22201000036102 Atorvastatin (Apo) 80 mg film-coated tablet, 30 19941000036108 Atorvastatin (Apo) 80 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +689711000168106 Epiduo 0.1% / 2.5% gel, 30 g, pump pack 222977 79474011000036107 Epiduo 0.1% / 2.5% gel, 30 g 79355011000036100 Epiduo 0.1% / 2.5% gel 33721000168102 Epiduo 0.1% / 2.5% 33721000168102 Epiduo 0.1% / 2.5% 79805011000036107 adapalene 0.1% + benzoyl peroxide 2.5% gel, 30 g 79740011000036106 adapalene 0.1% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +1068721000168100 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 10, blister pack 193078 1068711000168107 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 10 1068701000168109 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 63319011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 10 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +704661000168106 Esomeprazole (Sandoz) 20 mg enteric tablet, 30, blister pack 205838 704651000168109 Esomeprazole (Sandoz) 20 mg enteric tablet, 30 704641000168107 Esomeprazole (Sandoz) 20 mg enteric tablet 704101000168103 Esomeprazole (Sandoz) 704101000168103 Esomeprazole (Sandoz) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +839691000168107 Levonorgestrel-1 (AN) 1.5 mg uncoated tablet, 1, blister pack 231121 839681000168109 Levonorgestrel-1 (AN) 1.5 mg uncoated tablet, 1 839671000168106 Levonorgestrel-1 (AN) 1.5 mg uncoated tablet 839661000168100 Levonorgestrel-1 (AN) 839661000168100 Levonorgestrel-1 (AN) 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +37447011000036101 Indopril 8 mg uncoated tablet, 30, blister pack 121627 36719011000036108 Indopril 8 mg uncoated tablet, 30 36124011000036107 Indopril 8 mg uncoated tablet 35995011000036104 Indopril 35995011000036104 Indopril 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +73911000036103 Pioglitazone (Pfizer) 15 mg uncoated tablet, 28, blister pack 176388 71601000036106 Pioglitazone (Pfizer) 15 mg uncoated tablet, 28 70381000036100 Pioglitazone (Pfizer) 15 mg uncoated tablet 69351000036109 Pioglitazone (Pfizer) 69351000036109 Pioglitazone (Pfizer) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +19697011000036103 Tofranil 25 mg sugar coated tablet, 50, blister pack 60673 12955011000036106 Tofranil 25 mg sugar coated tablet, 50 6245011000036109 Tofranil 25 mg sugar coated tablet 3278011000036109 Tofranil 3278011000036109 Tofranil 27467011000036109 imipramine hydrochloride 25 mg tablet, 50 22814011000036105 imipramine hydrochloride 25 mg tablet 21613011000036104 imipramine +69434011000036109 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 48514 67234011000036101 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 65569011000036100 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 71784011000036102 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, 1 L bag 70185011000036104 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +753991000168100 Remifentanil (Apotex) 2 mg powder for injection, 5 vials 234707 753981000168103 Remifentanil (Apotex) 2 mg powder for injection, 5 vials 753971000168101 Remifentanil (Apotex) 2 mg powder for injection, 2 mg vial 753811000168103 Remifentanil (Apotex) 753811000168103 Remifentanil (Apotex) 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +19988011000036104 Oxycontin 10 mg modified release tablet, 20, blister pack 200031 13229011000036104 Oxycontin 10 mg modified release tablet, 20 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +19988011000036104 Oxycontin 10 mg modified release tablet, 20, blister pack 68187 13229011000036104 Oxycontin 10 mg modified release tablet, 20 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +805471000168100 Caelyx 50 mg/25 mL concentrated injection, 10 x 25 mL vials 79921 805461000168106 Caelyx 50 mg/25 mL concentrated injection, 10 x 25 mL vials 113181000036109 Caelyx 50 mg/25 mL concentrated injection, 25 mL vial 3909011000036107 Caelyx 3909011000036107 Caelyx 805451000168109 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, 10 x 25 mL vials 113171000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +1111601000168104 Clopithromb 75 mg film-coated tablet, 112, blister pack 187040 1111591000168106 Clopithromb 75 mg film-coated tablet, 112 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87799011000036100 clopidogrel 75 mg tablet, 112 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +18446011000036105 Simvabell 5 mg film-coated tablet, 30, blister pack 100869 11168011000036107 Simvabell 5 mg film-coated tablet, 30 5425011000036107 Simvabell 5 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +758351000168101 Kenacomb Otic ear drops solution, 7.5 mL, bottle 19200 758341000168103 Kenacomb Otic ear drops solution, 7.5 mL 758321000168109 Kenacomb Otic ear drops solution 47581000168102 Kenacomb Otic 47581000168102 Kenacomb Otic 758331000168107 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL 758311000168102 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops 758201000168107 triamcinolone + neomycin + gramicidin + nystatin +890991000168101 Candesartan HCTZ 16/12.5 (Genpar) uncoated tablet, 30, bottle 253615 890981000168104 Candesartan HCTZ 16/12.5 (Genpar) uncoated tablet, 30 890971000168102 Candesartan HCTZ 16/12.5 (Genpar) uncoated tablet 890961000168108 Candesartan HCTZ 16/12.5 (Genpar) 890961000168108 Candesartan HCTZ 16/12.5 (Genpar) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +18778011000036101 Buspar 5 mg uncoated tablet, 50, blister pack 12074 11655011000036106 Buspar 5 mg uncoated tablet, 50 4541011000036105 Buspar 5 mg uncoated tablet 3690011000036103 Buspar 3690011000036103 Buspar 26728011000036107 buspirone hydrochloride 5 mg tablet, 50 22123011000036105 buspirone hydrochloride 5 mg tablet 21325011000036100 buspirone +131501000036103 Candesartan Cilexetil HCT 32/25 (GH) uncoated tablet, 30, bottle 196437 128771000036105 Candesartan Cilexetil HCT 32/25 (GH) uncoated tablet, 30 124841000036103 Candesartan Cilexetil HCT 32/25 (GH) uncoated tablet 3821000168103 Candesartan Cilexetil HCT 32/25 (GH) 3821000168103 Candesartan Cilexetil HCT 32/25 (GH) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +166071000036103 Temaccord 5 mg hard capsule, 5, sachet 206030 164271000036103 Temaccord 5 mg hard capsule, 5 162281000036105 Temaccord 5 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +903991000168101 Amphotericin B (Mylan) 50 mg powder for injection, 1 vial 167653 903981000168104 Amphotericin B (Mylan) 50 mg powder for injection, 1 vial 903971000168102 Amphotericin B (Mylan) 50 mg powder for injection, 50 mg vial 903901000168107 Amphotericin B (Mylan) 903901000168107 Amphotericin B (Mylan) 26973011000036108 amphotericin B 50 mg injection, 1 vial 22346011000036105 amphotericin B 50 mg injection, vial 21687011000036106 amphotericin B +17741011000036102 Ialex 500 mg hard capsule, 20, blister pack 100144 11137011000036103 Ialex 500 mg hard capsule, 20 5760011000036101 Ialex 500 mg hard capsule 3841011000036108 Ialex 3841011000036108 Ialex 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +69676011000036101 Nicabate Clear 21 mg/24 hours patch, 8, sachet 81035 67475011000036101 Nicabate Clear 21 mg/24 hours patch, 8 65676011000036109 Nicabate Clear 21 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71999011000036106 nicotine 21 mg/24 hours patch, 8 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +73991000036108 Cellplant 500 mg film-coated tablet, 50, blister pack 177574 71661000036105 Cellplant 500 mg film-coated tablet, 50 70311000036108 Cellplant 500 mg film-coated tablet 69261000036102 Cellplant 69261000036102 Cellplant 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +18538011000036100 Oxalatin 100 mg powder for injection, 1 vial 126125 11823011000036104 Oxalatin 100 mg powder for injection, 1 vial 4659011000036100 Oxalatin 100 mg powder for injection, 100 mg vial 3031011000036108 Oxalatin 3031011000036108 Oxalatin 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +994231000168108 Amisulpride (Apo) 50 mg tablet, 90, blister pack 178900 994221000168105 Amisulpride (Apo) 50 mg tablet, 90 994191000168104 Amisulpride (Apo) 50 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +81205011000036108 Vicks Formula 44 Chesty Coughs 200 mg/15 mL oral liquid solution, 180 mL, bottle 91691 80707011000036101 Vicks Formula 44 Chesty Coughs 200 mg/15 mL oral liquid solution, 180 mL 80246011000036101 Vicks Formula 44 Chesty Coughs 200 mg/15 mL oral liquid solution, 15 mL 80139011000036107 Vicks Formula 44 Chesty Coughs 80139011000036107 Vicks Formula 44 Chesty Coughs 81756011000036101 guaifenesin 200 mg/15 mL oral liquid, 180 mL 81308011000036108 guaifenesin 200 mg/15 mL oral liquid 61763011000036101 guaifenesin +69308011000036103 Riodine 10% solution, 15 mL, bottle 21199 67108011000036104 Riodine 10% solution, 15 mL 65224011000036102 Riodine 10% solution 65019011000036101 Riodine 65019011000036101 Riodine 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +131821000036105 Candesartan Cilexetil HCTZ 32/12.5 (GA) uncoated tablet, 30, blister pack 204584 128791000036109 Candesartan Cilexetil HCTZ 32/12.5 (GA) uncoated tablet, 30 125101000036106 Candesartan Cilexetil HCTZ 32/12.5 (GA) uncoated tablet 21311000168106 Candesartan Cilexetil HCTZ 32/12.5 (GA) 21311000168106 Candesartan Cilexetil HCTZ 32/12.5 (GA) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +110401000036100 Mepilex Ag 10 cm x 10 cm dressing, 5, carton 108661000036102 Mepilex Ag 10 cm x 10 cm dressing, 5 107441000036100 Mepilex Ag 10 cm x 10 cm dressing 111861000036109 Mepilex Ag 111861000036109 Mepilex Ag 108671000036105 dressing foam with silicone and silver 10 cm x 10 cm dressing, 5 107451000036102 dressing foam with silicone and silver 10 cm x 10 cm dressing 111231000036102 dressing foam with silicone and silver +1038941000168100 Atorvastatin (Actavis) 40 mg film-coated tablet, 30, blister pack 185033 1038931000168109 Atorvastatin (Actavis) 40 mg film-coated tablet, 30 1038901000168102 Atorvastatin (Actavis) 40 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +21033011000036100 Thalidomide (Pharmion) 50 mg hard capsule, 28, blister pack 96672 14178011000036108 Thalidomide (Pharmion) 50 mg hard capsule, 28 7459011000036109 Thalidomide (Pharmion) 50 mg hard capsule 3281011000036108 Thalidomide (Pharmion) 3281011000036108 Thalidomide (Pharmion) 28194011000036109 thalidomide 50 mg capsule, 28 23506011000036107 thalidomide 50 mg capsule 21303011000036108 thalidomide +894921000168106 Enstilar foam, 2 x 60 g, aerosol cans 263292 894911000168104 Enstilar foam, 2 x 60 g 894711000168102 Enstilar foam 894651000168105 Enstilar 894651000168105 Enstilar 894901000168102 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% foam, 2 x 60 g 894701000168100 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% foam 44974011000036100 calcipotriol + betamethasone dipropionate +923799011000036100 Sulprix 200 mg tablet, 100, bottle 156043 84012011000036100 Sulprix 200 mg tablet, 100 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84641011000036106 amisulpride 200 mg tablet, 100 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +60473011000036105 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 150168 56431011000036100 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63351011000036103 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +771051000168107 Fluorescite 10% 500 mg/5 mL injection solution, 12 x 5 mL vials 124267 771041000168105 Fluorescite 10% 500 mg/5 mL injection solution, 12 x 5 mL vials 39960011000036101 Fluorescite 10% 500 mg/5 mL injection solution, 5 mL vial 39629011000036102 Fluorescite 10% 39629011000036102 Fluorescite 10% 771031000168101 fluorescein 500 mg/5 mL injection, 12 x 5 mL vials 45041011000036102 fluorescein 500 mg/5 mL injection, vial 44934011000036102 fluorescein +968291000168101 Repreve 1 mg film-coated tablet, 28, blister pack 96869 968281000168104 Repreve 1 mg film-coated tablet, 28 968271000168102 Repreve 1 mg film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 938871000168106 ropinirole 1 mg tablet, 28 938851000168102 ropinirole 1 mg tablet 44882011000036106 ropinirole +1068481000168108 Paracodeine uncoated tablet, 20, blister pack 226289 1068471000168105 Paracodeine uncoated tablet, 20 1068461000168104 Paracodeine uncoated tablet 1068451000168101 Paracodeine 1068451000168101 Paracodeine 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +43862011000036106 Lisinotrust 10 mg uncoated tablet, 30, blister pack 128155 41358011000036108 Lisinotrust 10 mg uncoated tablet, 30 39875011000036105 Lisinotrust 10 mg uncoated tablet 39731011000036109 Lisinotrust 39731011000036109 Lisinotrust 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +24771000036108 Volirop 25 mg film-coated tablet, 60, blister pack 174788 22571000036108 Volirop 25 mg film-coated tablet, 60 20221000036108 Volirop 25 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +976331000168101 Strattera 5 mg hard capsule, 7, blister pack 90591 976321000168104 Strattera 5 mg hard capsule, 7 976301000168108 Strattera 5 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 976311000168106 atomoxetine 5 mg capsule, 7 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +18855011000036106 Waxsol 0.5% ear drops, 10 mL, bottle 18662 12166011000036109 Waxsol 0.5% ear drops, 10 mL 5856011000036109 Waxsol 0.5% ear drops 4307011000036108 Waxsol 4307011000036108 Waxsol 26961011000036102 docusate sodium 0.5% ear drops, 10 mL 22336011000036106 docusate sodium 0.5% ear drops 21872011000036106 docusate +61227011000036107 Nicotine (Amcal) Mint 2 mg chewing gum, 108, blister pack 76844 57163011000036109 Nicotine (Amcal) Mint 2 mg chewing gum, 108 54222011000036102 Nicotine (Amcal) Mint 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63744011000036102 nicotine 2 mg gum, 108 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +925221011000036105 Ropaccord 500 microgram film-coated tablet, 84, bottle 157770 924758011000036102 Ropaccord 500 microgram film-coated tablet, 84 924460011000036101 Ropaccord 500 microgram film-coated tablet 924403011000036108 Ropaccord 924403011000036108 Ropaccord 46971011000036105 ropinirole 500 microgram tablet, 84 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +917171000168106 Empliciti 400 mg powder for injection, 1 vial 260055 917161000168100 Empliciti 400 mg powder for injection, 1 vial 917141000168104 Empliciti 400 mg powder for injection, vial 917111000168103 Empliciti 917111000168103 Empliciti 917151000168102 elotuzumab 400 mg injection, 1 vial 917131000168108 elotuzumab 400 mg injection, vial 917121000168105 elotuzumab +32545011000036100 Glucohexal-1000 1 g film-coated tablet, 90, bottle 123673 32337011000036108 Glucohexal-1000 1 g film-coated tablet, 90 32214011000036100 Glucohexal-1000 1 g film-coated tablet 61101000168100 Glucohexal-1000 61101000168100 Glucohexal-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1019431000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 28, blister pack 175215 1019421000168104 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 28 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019411000168106 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 28 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +826441000168105 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 93942 826431000168101 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 637851000168104 Menjugate Syringe (inert substance) diluent, 0.5 mL syringe 38231000168103 Menjugate Syringe 38231000168103 Menjugate Syringe 826421000168104 meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +826441000168105 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 93942 826431000168101 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 826411000168106 Menjugate Syringe (meningococcal C conjugate vaccine) powder for injection, 10 microgram vial 38231000168103 Menjugate Syringe 38231000168103 Menjugate Syringe 826421000168104 meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 826401000168108 meningococcal C conjugate vaccine injection, vial 826391000168106 meningococcal C conjugate vaccine +37490011000036105 Heparin Sodium (DBL) 1000 units/mL injection solution, 5 x 1 mL ampoules 12883 36758011000036105 Heparin Sodium (DBL) 1000 units/mL injection solution, 5 x 1 mL ampoules 36151011000036105 Heparin Sodium (DBL) 1000 units/mL injection solution, ampoule 4435011000036104 Heparin Sodium (DBL) 4435011000036104 Heparin Sodium (DBL) 38663011000036105 heparin sodium 1000 units/mL injection, 5 x 1 mL ampoules 37913011000036100 heparin sodium 1000 units/mL injection, ampoule 858661000168109 heparin +61469011000036105 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 50, bottle 91160 57394011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 50 54294011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet 53164011000036100 Paracetamol (Pharmacy Health) 53164011000036100 Paracetamol (Pharmacy Health) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +77247011000036107 Ozapace 4 mg uncoated tablet, 30, blister pack 149998 76663011000036108 Ozapace 4 mg uncoated tablet, 30 76099011000036103 Ozapace 4 mg uncoated tablet 75927011000036108 Ozapace 75927011000036108 Ozapace 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +921914011000036102 Riamet dispersible tablet, 18, blister pack 158523 921473011000036105 Riamet dispersible tablet, 18 921022011000036105 Riamet dispersible tablet 39595011000036103 Riamet 39595011000036103 Riamet 922601011000036104 artemether 20 mg + lumefantrine 120 mg dispersible tablet, 18 83631000036106 artemether 20 mg + lumefantrine 120 mg dispersible tablet 44970011000036105 artemether + lumefantrine +20791011000036104 Formet-1000 1 g film-coated tablet, 90, bottle 91112 13958011000036105 Formet-1000 1 g film-coated tablet, 90 7244011000036106 Formet-1000 1 g film-coated tablet 20461000168107 Formet-1000 20461000168107 Formet-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +734341000168106 Caltrate Bone and Muscle Health plus Minerals film-coated tablet, 120, bottle 214783 734331000168102 Caltrate Bone and Muscle Health plus Minerals film-coated tablet, 120 734251000168103 Caltrate Bone and Muscle Health plus Minerals film-coated tablet 734071000168102 Caltrate Bone and Muscle Health plus Minerals 734071000168102 Caltrate Bone and Muscle Health plus Minerals 734321000168100 calcium carbonate 1.5 g + colecalciferol 25 microgram (1000 units) + magnesium 50 mg + zinc 7.5 mg + copper 500 microgram + manganese 1.75 mg tablet, 120 734241000168100 calcium carbonate 1.5 g + colecalciferol 25 microgram (1000 units) + magnesium 50 mg + zinc 7.5 mg + copper 500 microgram + manganese 1.75 mg tablet 734231000168109 calcium + colecalciferol + magnesium + zinc + copper + manganese +52217011000036101 Ipratropium Bromide (Apo) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 151090 52102011000036103 Ipratropium Bromide (Apo) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 51995011000036107 Ipratropium Bromide (Apo) 500 microgram/mL inhalation solution, ampoule 14291000168102 Ipratropium Bromide (Apo) 14291000168102 Ipratropium Bromide (Apo) 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +861041000168101 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 200 mL bottles 48241 861031000168105 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 200 mL bottles 860981000168102 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 200 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 861021000168107 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 200 mL bottles 860971000168100 iohexol 755 mg (iodine 350 mg)/mL injection, 200 mL bottle 77459011000036103 iohexol +24681000036101 Torvastat 20 mg film-coated tablet, 30, blister pack 167804 22451000036102 Torvastat 20 mg film-coated tablet, 30 20391000036102 Torvastat 20 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +24681000036101 Torvastat 20 mg film-coated tablet, 30, blister pack 194113 22451000036102 Torvastat 20 mg film-coated tablet, 30 20391000036102 Torvastat 20 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +85045011000036109 Lansoprazole (Apo) 30 mg enteric capsule, 28, blister pack 159345 84910011000036107 Lansoprazole (Apo) 30 mg enteric capsule, 28 84795011000036107 Lansoprazole (Apo) 30 mg enteric capsule 52481000168101 Lansoprazole (Apo) 52481000168101 Lansoprazole (Apo) 84657011000036101 lansoprazole 30 mg enteric capsule, 28 22595011000036106 lansoprazole 30 mg enteric capsule 21491011000036101 lansoprazole +60064011000036108 Ibuprofen Liquid Cap (Pharmacist) 200 mg soft capsule, 20, blister pack 125291 56026011000036103 Ibuprofen Liquid Cap (Pharmacist) 200 mg soft capsule, 20 53763011000036109 Ibuprofen Liquid Cap (Pharmacist) 200 mg soft capsule 18521000168106 Ibuprofen Liquid Cap (Pharmacist) 18521000168106 Ibuprofen Liquid Cap (Pharmacist) 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +68869011000036107 Mintec 0.2 mL enteric capsule, 10, blister pack 12993 66736011000036103 Mintec 0.2 mL enteric capsule, 10 65372011000036101 Mintec 0.2 mL enteric capsule 65155011000036104 Mintec 65155011000036104 Mintec 71402011000036100 peppermint oil 0.2 mL enteric capsule, 10 69997011000036106 peppermint oil 0.2 mL enteric capsule 69794011000036107 peppermint oil +923722011000036101 Vimpat 200 mg/20 mL injection solution, 5 x 20 mL vials 151815 923334011000036106 Vimpat 200 mg/20 mL injection solution, 5 x 20 mL vials 923011011000036103 Vimpat 200 mg/20 mL injection solution, 20 mL vial 83598011000036103 Vimpat 83598011000036103 Vimpat 924140011000036107 lacosamide 200 mg/20 mL injection, 5 x 20 mL vials 923960011000036101 lacosamide 200 mg/20 mL injection, vial 84408011000036109 lacosamide +889101000168101 Candyl 10 mg hard capsule, 50, bottle 49574 889091000168106 Candyl 10 mg hard capsule, 50 889081000168108 Candyl 10 mg hard capsule 889071000168105 Candyl 889071000168105 Candyl 27762011000036104 piroxicam 10 mg capsule, 50 23093011000036100 piroxicam 10 mg capsule 21531011000036103 piroxicam +69111011000036101 Strepsils eucalyptus and menthol lozenge, 8, blister pack 14973 66912011000036102 Strepsils eucalyptus and menthol lozenge, 8 65345011000036108 Strepsils eucalyptus and menthol lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71506011000036105 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge, 8 70040011000036109 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge 69851011000036103 amylmetacresol + dichlorobenzyl alcohol + menthol +20005011000036103 Pravachol 20 mg uncoated tablet, 30, blister pack 68704 13241011000036100 Pravachol 20 mg uncoated tablet, 30 6523011000036103 Pravachol 20 mg uncoated tablet 3848011000036104 Pravachol 3848011000036104 Pravachol 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +44813011000036101 Daivobet 50/500 ointment, 100 g, tube 98773 42245011000036109 Daivobet 50/500 ointment, 100 g 40404011000036105 Daivobet 50/500 ointment 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 46998011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment, 100 g 45370011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment 44974011000036100 calcipotriol + betamethasone dipropionate +745811000168100 Cialis 20 mg film-coated tablet, 2, blister pack 81137 745801000168103 Cialis 20 mg film-coated tablet, 2 7095011000036108 Cialis 20 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 745791000168104 tadalafil 20 mg tablet, 2 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +32562011000036100 Meloxicam (Sandoz) 15 mg uncoated tablet, 30, blister pack 127718 32353011000036100 Meloxicam (Sandoz) 15 mg uncoated tablet, 30 32230011000036100 Meloxicam (Sandoz) 15 mg uncoated tablet 32204011000036102 Meloxicam (Sandoz) 32204011000036102 Meloxicam (Sandoz) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +166141000036106 Temaccord 180 mg hard capsule, 20, sachet 206034 164371000036109 Temaccord 180 mg hard capsule, 20 162271000036108 Temaccord 180 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 164381000036106 temozolomide 180 mg capsule, 20 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +50238011000036103 Duoderm CGF (H7662) 20 cm x 20 cm dressing, 5, carton 157332 49388011000036105 Duoderm CGF (H7662) 20 cm x 20 cm dressing, 5 48741011000036106 Duoderm CGF (H7662) 20 cm x 20 cm dressing 62491000168106 Duoderm CGF (H7662) 62491000168106 Duoderm CGF (H7662) 51361011000036100 dressing hydrocolloid superficial wound moderate exudate 20 cm x 20 cm dressing, 5 50883011000036109 dressing hydrocolloid superficial wound moderate exudate 20 cm x 20 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +24841000036109 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 500 mL bag 19434 22901000036105 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 500 mL bag 20151000036109 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 500 mL bag 46101000168101 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) 46101000168101 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) 75423011000036101 heparin sodium 1000 units/500 mL + sodium chloride 0.9% (4.5 g/500 mL) injection, 500 mL bag 37982011000036105 heparin sodium 1000 units/500 mL + sodium chloride 0.9% (4.5 g/500 mL) injection, bag 858621000168104 heparin + sodium chloride +60182011000036106 Adrenaline (Aspen) 1 in 1000 (1 mg/mL) injection solution, 50 x 1 mL ampoules 131782 56141011000036100 Adrenaline (Aspen) 1 in 1000 (1 mg/mL) injection solution, 50 x 1 mL ampoules 53805011000036107 Adrenaline (Aspen) 1 in 1000 (1 mg/mL) injection solution, ampoule 53411011000036103 Adrenaline (Aspen) 53411011000036103 Adrenaline (Aspen) 63243011000036106 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, 50 x 1 mL ampoules 22115011000036100 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +891271000168100 Tadalafil (Blooms The Chemist) 2.5 mg film-coated tablet, 28, blister pack 205874 891261000168106 Tadalafil (Blooms The Chemist) 2.5 mg film-coated tablet, 28 891241000168107 Tadalafil (Blooms The Chemist) 2.5 mg film-coated tablet 885831000168100 Tadalafil (Blooms The Chemist) 885831000168100 Tadalafil (Blooms The Chemist) 891251000168109 tadalafil 2.5 mg tablet, 28 891231000168103 tadalafil 2.5 mg tablet 21725011000036104 tadalafil +670941000168108 Citalopram (Actavis) 10 mg film-coated tablet, 14, blister pack 158879 670931000168104 Citalopram (Actavis) 10 mg film-coated tablet, 14 670901000168106 Citalopram (Actavis) 10 mg film-coated tablet 670891000168107 Citalopram (Actavis) 670891000168107 Citalopram (Actavis) 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +933239641000036107 Amisulpride (Apo) 100 mg tablet, 90, blister pack 178904 933236961000036106 Amisulpride (Apo) 100 mg tablet, 90 933234771000036106 Amisulpride (Apo) 100 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +50364011000036106 Replicare Ultra (66000434) 10 cm x 10 cm dressing, 10, carton 49363011000036103 Replicare Ultra (66000434) 10 cm x 10 cm dressing, 10 48494011000036106 Replicare Ultra (66000434) 10 cm x 10 cm dressing 51521000168107 Replicare Ultra (66000434) 51521000168107 Replicare Ultra (66000434) 51337011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing, 10 50871011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +18463011000036105 Roxar 150 mg film-coated tablet, 10, blister pack 114040 11453011000036107 Roxar 150 mg film-coated tablet, 10 4884011000036101 Roxar 150 mg film-coated tablet 3911011000036105 Roxar 3911011000036105 Roxar 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +73289011000036100 Jurnista 16 mg modified release tablet, 50, blister pack 141533 73087011000036102 Jurnista 16 mg modified release tablet, 50 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73485011000036101 hydromorphone hydrochloride 16 mg modified release tablet, 50 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +925234011000036105 Rispericor 2 mg film-coated tablet, 60, blister pack 159969 924771011000036109 Rispericor 2 mg film-coated tablet, 60 924470011000036105 Rispericor 2 mg film-coated tablet 45561000168103 Rispericor 45561000168103 Rispericor 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +165981000036106 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 204810 164181000036108 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 28084011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [168 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165981000036106 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 204810 164181000036108 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack 162611000036100 Peg-Intron Clearclick Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28084011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [168 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165981000036106 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 204810 164181000036108 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28084011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [168 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +110531000036108 Cutan Alcohol Foam Antiseptic Handrub 60% solution, 1 L, bottle 159546 109091000036106 Cutan Alcohol Foam Antiseptic Handrub 60% solution, 1 L 107471000036107 Cutan Alcohol Foam Antiseptic Handrub 60% solution 46821000168100 Cutan Alcohol Foam Antiseptic Handrub 46821000168100 Cutan Alcohol Foam Antiseptic Handrub 109101000036102 ethanol 60% solution, 1 L 107481000036109 ethanol 60% solution 69846011000036106 ethanol +19506011000036105 Topamax 50 mg film-coated tablet, 60, bottle 55936 13031011000036107 Topamax 50 mg film-coated tablet, 60 6318011000036104 Topamax 50 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +923889011000036101 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 163771 923433011000036101 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet, 30 923080011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 28127011000036106 lercanidipine hydrochloride 20 mg tablet, 30 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +942431000168105 Glucomet-1000 1 g film-coated tablet, 90, blister pack 147410 942421000168107 Glucomet-1000 1 g film-coated tablet, 90 942351000168105 Glucomet-1000 1 g film-coated tablet 942341000168108 Glucomet-1000 942341000168108 Glucomet-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +52746011000036104 Fexal 120 mg film-coated tablet, 10, blister pack 140284 52558011000036104 Fexal 120 mg film-coated tablet, 10 52419011000036109 Fexal 120 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +11861000036103 Enlafax XR 150 mg modified release capsule, 28, blister pack 143552 6501000036105 Enlafax XR 150 mg modified release capsule, 28 3491000036105 Enlafax XR 150 mg modified release capsule 43211000168104 Enlafax XR 43211000168104 Enlafax XR 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +970621000168105 Pregabalin (Apo) 300 mg hard capsule, 14, blister pack 193279 970611000168103 Pregabalin (Apo) 300 mg hard capsule, 14 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +933239801000036108 Meloxicam (Chemmart) 15 mg hard capsule, 30, blister pack 181201 933237121000036102 Meloxicam (Chemmart) 15 mg hard capsule, 30 933234811000036106 Meloxicam (Chemmart) 15 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +931432011000036100 Diarrhoea Relief (Chemmart) 2 mg uncoated tablet, 20, blister pack 132050 930592011000036106 Diarrhoea Relief (Chemmart) 2 mg uncoated tablet, 20 929959011000036104 Diarrhoea Relief (Chemmart) 2 mg uncoated tablet 929910011000036104 Diarrhoea Relief (Chemmart) 929910011000036104 Diarrhoea Relief (Chemmart) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +34740011000036104 Morphine Tartrate (DBL) 400 mg/5 mL injection solution, 5 x 5 mL ampoules 47257 34324011000036105 Morphine Tartrate (DBL) 400 mg/5 mL injection solution, 5 x 5 mL ampoules 34041011000036109 Morphine Tartrate (DBL) 400 mg/5 mL injection solution, 5 mL ampoule 3133011000036103 Morphine Tartrate (DBL) 3133011000036103 Morphine Tartrate (DBL) 35172011000036104 morphine tartrate 400 mg/5 mL injection, 5 x 5 mL ampoules 34888011000036105 morphine tartrate 400 mg/5 mL injection, ampoule 21252011000036100 morphine +981261000168102 Pritor 40 mg uncoated tablet, 28, blister pack 68054 981251000168104 Pritor 40 mg uncoated tablet, 28 981211000168100 Pritor 40 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +933231141000036103 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 30, blister pack 172447 933225211000036108 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 30 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +166231000036105 Influvac 2014 injection suspension, 1 x 0.5 mL syringe 81465 164491000036103 Influvac 2014 injection suspension, 1 x 0.5 mL syringe 162081000036102 Influvac 2014 injection suspension, 0.5 mL syringe 39281000168108 Influvac 2014 39281000168108 Influvac 2014 163631000036104 influenza trivalent adult vaccine 2014 injection, 1 x 0.5 mL syringe 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +754311000168108 Oxycodone (Medis) 5 mg hard capsule, 60, bottle 227843 754281000168106 Oxycodone (Medis) 5 mg hard capsule, 60 754251000168104 Oxycodone (Medis) 5 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +60441011000036108 Duofilm 16.7% / 16.7% application, 15 mL, bottle 14820 56400011000036100 Duofilm 16.7% / 16.7% application, 15 mL 53903011000036101 Duofilm 16.7% / 16.7% application 35041000168109 Duofilm 16.7% / 16.7% 35041000168109 Duofilm 16.7% / 16.7% 63341011000036101 salicylic acid 16.7% + lactic acid 16.7% application, 15 mL 61919011000036109 salicylic acid 16.7% + lactic acid 16.7% application 61753011000036105 salicylic acid + lactic acid +77324011000036108 Ringer's (Fresenius Kabi) intravenous infusion injection, 1 L bag 47386 76740011000036103 Ringer's (Fresenius Kabi) intravenous infusion injection, 1 L bag 76155011000036102 Ringer's (Fresenius Kabi) intravenous infusion injection, 1 L bag 43151000168105 Ringer's (Fresenius Kabi) 43151000168105 Ringer's (Fresenius Kabi) 71570011000036102 sodium chloride 8.6 g/L + potassium chloride 300 mg (potassium 4 mmol)/L + calcium chloride dihydrate 330 mg/L injection, 1 L bag 70070011000036108 sodium chloride 8.6 g/L + potassium chloride 300 mg (potassium 4 mmol)/L + calcium chloride dihydrate 330 mg/L injection, bag 69841011000036101 sodium chloride + potassium chloride + calcium chloride dihydrate +805711000168103 Uptravi 200 microgram film-coated tablet, 10, blister pack 234161 805701000168101 Uptravi 200 microgram film-coated tablet, 10 805681000168104 Uptravi 200 microgram film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 805691000168101 selexipag 200 microgram tablet, 10 805671000168102 selexipag 200 microgram tablet 805661000168108 selexipag +79715011000036106 Potassium Acetate (DBL) 2.45 g (potassium 25 mmol)/5 mL concentrated injection, 10 x 5 mL ampoules 16266 79526011000036106 Potassium Acetate (DBL) 2.45 g (potassium 25 mmol)/5 mL concentrated injection, 10 x 5 mL ampoules 79395011000036108 Potassium Acetate (DBL) 2.45 g (potassium 25 mmol)/5 mL concentrated injection, 5 mL ampoule 79347011000036108 Potassium Acetate (DBL) 79347011000036108 Potassium Acetate (DBL) 79832011000036109 potassium acetate 2.45 g (potassium 25 mmol)/5 mL injection, 10 x 5 mL ampoules 79751011000036101 potassium acetate 2.45 g (potassium 25 mmol)/5 mL injection, ampoule 988221000168100 potassium acetate +69417011000036105 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 285 g, jar 47538 67217011000036100 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 285 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71768011000036107 psyllium husk powder 578 mg/g powder for oral liquid, 285 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +50664011000036103 Amlotrust 10 mg uncoated tablet, 30, blister pack 150617 49688011000036100 Amlotrust 10 mg uncoated tablet, 30 48823011000036106 Amlotrust 10 mg uncoated tablet 48428011000036109 Amlotrust 48428011000036109 Amlotrust 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +835121000168101 Stop-It 2 mg hard capsule, 3, blister pack 199731 835111000168108 Stop-It 2 mg hard capsule, 3 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 835101000168105 loperamide hydrochloride 2 mg capsule, 3 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +809951000168101 Centrum Advance 50 Plus film-coated tablet, 60, bottle 193642 809941000168103 Centrum Advance 50 Plus film-coated tablet, 60 809891000168104 Centrum Advance 50 Plus film-coated tablet 809511000168106 Centrum Advance 50 Plus 809511000168106 Centrum Advance 50 Plus 809931000168107 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet, 60 809881000168102 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet 809871000168100 vitamin A + betacarotene + colecalciferol + lutein + lycopene + phytomenadione + pantothenic acid + thiamine + nicotinamide + riboflavin + pyridoxine + cyanocobalamin + biotin + folic acid + dl-alpha-tocopheryl + ascorbic acid + calcium + magnesium + iron + zinc + manganese + chromium + selenium + copper + iodine + phosphorus + potassium +882771000168101 Bosentan (RBX) 125 mg film-coated tablet, 60, bottle 257756 882041000168105 Bosentan (RBX) 125 mg film-coated tablet, 60 882011000168106 Bosentan (RBX) 125 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +77301011000036100 Liquid Paraffin (Faulding) 1 mL/mL oral liquid solution, 200 mL, bottle 29634 76717011000036108 Liquid Paraffin (Faulding) 1 mL/mL oral liquid solution, 200 mL 76137011000036106 Liquid Paraffin (Faulding) 1 mL/mL oral liquid solution 75988011000036100 Liquid Paraffin (Faulding) 75988011000036100 Liquid Paraffin (Faulding) 78231011000036106 liquid paraffin 1 mL/mL oral liquid, 200 mL 77559011000036107 liquid paraffin 1 mL/mL oral liquid 33623011000036103 liquid paraffin +906321000168106 Celecoxib (AS) 100 mg hard capsule, 60, blister pack 206836 906311000168104 Celecoxib (AS) 100 mg hard capsule, 60 906301000168102 Celecoxib (AS) 100 mg hard capsule 906191000168106 Celecoxib (AS) 906191000168106 Celecoxib (AS) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +18735011000036105 Invirase 500 mg film-coated tablet, 120, bottle 119419 11616011000036106 Invirase 500 mg film-coated tablet, 120 5530011000036106 Invirase 500 mg film-coated tablet 3196011000036104 Invirase 3196011000036104 Invirase 26710011000036103 saquinavir 500 mg tablet, 120 22105011000036102 saquinavir 500 mg tablet 21626011000036102 saquinavir +901501000168100 Capex 500 mg film-coated tablet, 30, blister pack 213039 901491000168107 Capex 500 mg film-coated tablet, 30 901481000168109 Capex 500 mg film-coated tablet 900971000168105 Capex 900971000168105 Capex 667791000168105 capecitabine 500 mg tablet, 30 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +903671000168108 Brillior 225 mg hard capsule, 60, blister pack 224344 903661000168102 Brillior 225 mg hard capsule, 60 903581000168107 Brillior 225 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +814251000168106 Famciclovir (GA) 500 mg film-coated tablet, 30, blister pack 177020 814241000168109 Famciclovir (GA) 500 mg film-coated tablet, 30 78301000036108 Famciclovir (GA) 500 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +132001000036103 Respikast 4 mg chewable tablet, 28, blister pack 189243 128021000036108 Respikast 4 mg chewable tablet, 28 124291000036105 Respikast 4 mg chewable tablet 124031000036104 Respikast 124031000036104 Respikast 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +110491000036108 Tyrosine1000 containing 1 g tyrosine powder for oral liquid, 30 x 4 g sachets 108441000036101 Tyrosine1000 containing 1 g tyrosine powder for oral liquid, 30 x 4 g sachets 280471000168102 Tyrosine1000 containing 1 g tyrosine powder for oral liquid, 4 g sachet 106481000036106 Tyrosine1000 106481000036106 Tyrosine1000 51275011000036102 tyrosine with carbohydrate containing 1 g tyrosine powder for oral liquid, 30 x 4 g sachets 279581000168100 tyrosine with carbohydrate containing 1 g tyrosine powder for oral liquid, 4 g sachet 50783011000036106 tyrosine with carbohydrate +86859011000036105 Stomach Ease (Pharmacor) 10 mg film-coated tablet, 20, blister pack 138000 86745011000036108 Stomach Ease (Pharmacor) 10 mg film-coated tablet, 20 86624011000036104 Stomach Ease (Pharmacor) 10 mg film-coated tablet 86591011000036101 Stomach Ease (Pharmacor) 86591011000036101 Stomach Ease (Pharmacor) 46373011000036102 hyoscine butylbromide 10 mg tablet, 20 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +837361000168100 ADT Booster injection suspension, 5 x 0.5 mL syringes 130919 837351000168102 ADT Booster injection suspension, 5 x 0.5 mL syringes 837311000168103 ADT Booster injection suspension, 0.5 mL syringe 12781000168102 ADT Booster 12781000168102 ADT Booster 837341000168104 diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL syringes 837261000168109 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 21826011000036109 diphtheria + tetanus vaccine +18420011000036105 Meloxicam (GA) 7.5 mg uncoated tablet, 30, blister pack 124395 11759011000036102 Meloxicam (GA) 7.5 mg uncoated tablet, 30 5059011000036104 Meloxicam (GA) 7.5 mg uncoated tablet 3481011000036109 Meloxicam (GA) 3481011000036109 Meloxicam (GA) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +856631000168102 Entrip 10 mg film-coated tablet, 250, bottle 232153 856621000168100 Entrip 10 mg film-coated tablet, 250 855901000168108 Entrip 10 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +37413011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.5% (50 mg/10 mL) injection solution, 50 x 10 mL ampoules 11312 36660011000036109 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.5% (50 mg/10 mL) injection solution, 50 x 10 mL ampoules 36174011000036106 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.5% (50 mg/10 mL) injection solution, 10 mL ampoule 35985011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 35985011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 38578011000036100 bupivacaine hydrochloride 0.5% (50 mg/10 mL) injection, 50 x 10 mL ampoules 37851011000036100 bupivacaine hydrochloride 0.5% (50 mg/10 mL) injection, ampoule 37702011000036102 bupivacaine +981401000168102 Desowen 0.05% ointment, 25 g, tube 67174 981391000168104 Desowen 0.05% ointment, 25 g 981371000168100 Desowen 0.05% ointment 39556011000036104 Desowen 39556011000036104 Desowen 981381000168102 desonide 0.05% ointment, 25 g 981361000168106 desonide 0.05% ointment 44914011000036107 desonide +44061011000036104 Marcain 0.25% (50 mg/20 mL) injection solution, 5 x 20 mL ampoules 48380 41548011000036109 Marcain 0.25% (50 mg/20 mL) injection solution, 5 x 20 mL ampoules 40055011000036106 Marcain 0.25% (50 mg/20 mL) injection solution, 20 mL ampoule 12651000168100 Marcain 12651000168100 Marcain 46380011000036104 bupivacaine hydrochloride monohydrate 0.25% (50 mg/20 mL) injection, 5 x 20 mL ampoules 45117011000036106 bupivacaine hydrochloride monohydrate 0.25% (50 mg/20 mL) injection, ampoule 37702011000036102 bupivacaine +44830011000036104 Metaraminol (Sandoz) 10 mg/mL injection solution, 5 x 1 mL ampoules 99402 42262011000036109 Metaraminol (Sandoz) 10 mg/mL injection solution, 5 x 1 mL ampoules 40409011000036106 Metaraminol (Sandoz) 10 mg/mL injection solution, ampoule 39679011000036103 Metaraminol (Sandoz) 39679011000036103 Metaraminol (Sandoz) 47015011000036108 metaraminol 10 mg/mL injection, 5 x 1 mL ampoules 45375011000036103 metaraminol 10 mg/mL injection, ampoule 44939011000036101 metaraminol +1079861000168101 Carvedilol (Auro) 6.25 mg film-coated tablet, 60, bottle 174801 1079851000168103 Carvedilol (Auro) 6.25 mg film-coated tablet, 60 737471000168101 Carvedilol (Auro) 6.25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +37456011000036102 Xanax 500 microgram uncoated tablet, 9, blister pack 12352 36727011000036105 Xanax 500 microgram uncoated tablet, 9 5996011000036109 Xanax 500 microgram uncoated tablet 3527011000036101 Xanax 3527011000036101 Xanax 38637011000036109 alprazolam 500 microgram tablet, 9 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +903601000168103 Brillior 225 mg hard capsule, 14, blister pack 224344 903591000168105 Brillior 225 mg hard capsule, 14 903581000168107 Brillior 225 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +1002091000168102 Pregabalin (Apo) 200 mg hard capsule, 14, blister pack 193277 1001911000168102 Pregabalin (Apo) 200 mg hard capsule, 14 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +165911000036103 Paracetamol (Kabi) 500 mg/50 mL injection solution, 10 x 50 mL vials 203625 164101000036102 Paracetamol (Kabi) 500 mg/50 mL injection solution, 10 x 50 mL vials 162151000036105 Paracetamol (Kabi) 500 mg/50 mL injection solution, 50 mL vial 161851000036107 Paracetamol (Kabi) 161851000036107 Paracetamol (Kabi) 164111000036100 paracetamol 500 mg/50 mL injection, 10 x 50 mL vials 45383011000036109 paracetamol 500 mg/50 mL injection, vial 21433011000036107 paracetamol +831421000168106 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 201877 831411000168104 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 831361000168106 M-M-R II (measles + mumps + rubella live vaccine) powder for injection, vial 706311000168107 M-M-R II 706311000168107 M-M-R II 831401000168102 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 831351000168109 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831421000168106 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 201877 831411000168104 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 706351000168108 M-M-R II (inert substance) diluent, syringe 706311000168107 M-M-R II 706311000168107 M-M-R II 831401000168102 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +933214081000036104 Gaviscon Aniseed oral liquid suspension, 500 mL, bottle 15383 933202051000036102 Gaviscon Aniseed oral liquid suspension, 500 mL 933194931000036100 Gaviscon Aniseed oral liquid suspension, 10 mL 5001000168104 Gaviscon 5001000168104 Gaviscon 933202061000036104 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid, 500 mL 933194081000036102 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +993661000168104 Atenolol (Apo) 50 mg film-coated tablet, 30, bottle 214940 993651000168101 Atenolol (Apo) 50 mg film-coated tablet, 30 993641000168103 Atenolol (Apo) 50 mg film-coated tablet 9511000168106 Atenolol (Apo) 9511000168106 Atenolol (Apo) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +933239731000036108 Meloxicam (Chemmart) 7.5 mg hard capsule, 10, blister pack 181200 933237051000036107 Meloxicam (Chemmart) 7.5 mg hard capsule, 10 933234801000036109 Meloxicam (Chemmart) 7.5 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 52886011000036109 meloxicam 7.5 mg capsule, 10 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +20656011000036105 Kredex 6.25 mg uncoated tablet, 60, blister pack 81647 13836011000036101 Kredex 6.25 mg uncoated tablet, 60 7123011000036109 Kredex 6.25 mg uncoated tablet 3872011000036103 Kredex 3872011000036103 Kredex 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +899971000168108 Fluarix Tetra 2017 injection suspension, 1 x 0.5 mL syringe 242512 899961000168102 Fluarix Tetra 2017 injection suspension, 1 x 0.5 mL syringe 899951000168104 Fluarix Tetra 2017 injection suspension, 0.5 mL syringe 899941000168101 Fluarix Tetra 2017 899941000168101 Fluarix Tetra 2017 899821000168104 influenza quadrivalent adult vaccine 2017 injection, 1 x 0.5 mL syringe 899401000168105 influenza quadrivalent adult vaccine 2017 injection, 0.5 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +19054011000036106 Accupril 10 mg film-coated tablet, 30, blister pack 40928 12362011000036104 Accupril 10 mg film-coated tablet, 30 4495011000036108 Accupril 10 mg film-coated tablet 3052011000036101 Accupril 3052011000036101 Accupril 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +835031000168104 Montelukast (AN) 10 mg film-coated tablet, 4, blister pack 184828 835021000168102 Montelukast (AN) 10 mg film-coated tablet, 4 835011000168109 Montelukast (AN) 10 mg film-coated tablet 655871000168102 Montelukast (AN) 655871000168102 Montelukast (AN) 46543011000036101 montelukast 10 mg tablet, 4 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +874111000168105 Bicalox 50 mg film-coated tablet, 100, bottle 129119 874101000168107 Bicalox 50 mg film-coated tablet, 100 162041000036106 Bicalox 50 mg film-coated tablet 161991000036105 Bicalox 161991000036105 Bicalox 39486011000036103 bicalutamide 50 mg tablet, 100 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +20022011000036104 Capoten 5 mg/mL oral liquid solution, 95 mL, bottle 68962 13258011000036106 Capoten 5 mg/mL oral liquid solution, 95 mL 6540011000036108 Capoten 5 mg/mL oral liquid solution 3934011000036103 Capoten 3934011000036103 Capoten 27649011000036107 captopril 5 mg/mL oral liquid, 95 mL 22986011000036108 captopril 5 mg/mL oral liquid 21533011000036102 captopril +928862011000036108 Soliris 300 mg/30 mL concentrated injection, 30 mL vial 138885 928224011000036104 Soliris 300 mg/30 mL concentrated injection, 30 mL vial 927882011000036101 Soliris 300 mg/30 mL concentrated injection, 30 mL vial 927761011000036106 Soliris 927761011000036106 Soliris 929206011000036100 eculizumab 300 mg/30 mL injection, 30 mL vial 929144011000036101 eculizumab 300 mg/30 mL injection, vial 929135011000036103 eculizumab +59825011000036101 Clotrimazole (Your Pharmacy) 1% cream, 20 g, tube 114894 55787011000036107 Clotrimazole (Your Pharmacy) 1% cream, 20 g 53675011000036109 Clotrimazole (Your Pharmacy) 1% cream 53455011000036108 Clotrimazole (Your Pharmacy) 53455011000036108 Clotrimazole (Your Pharmacy) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +881791000168109 Capeccord 150 mg film-coated tablet, 30, blister pack 213032 881781000168106 Capeccord 150 mg film-coated tablet, 30 881771000168108 Capeccord 150 mg film-coated tablet 881761000168102 Capeccord 881761000168102 Capeccord 667671000168100 capecitabine 150 mg tablet, 30 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1091961000168102 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations, aerosol can 197127 1091951000168104 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations 1091941000168101 Nicorette Quickmist Freshmint 1 mg/actuation oral spray 39021000168101 Nicorette Quickmist 39021000168101 Nicorette Quickmist 150521000036103 nicotine 1 mg/actuation oral spray, 150 actuations 148801000036106 nicotine 1 mg/actuation oral spray, 1 actuation 21432011000036100 nicotine +973951000168104 Pregabalin (GH) 300 mg hard capsule, 56, blister pack 215688 973941000168101 Pregabalin (GH) 300 mg hard capsule, 56 973891000168102 Pregabalin (GH) 300 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +926951011000036105 Fexotabs 120 mg film-coated tablet, 30, blister pack 98208 926345011000036100 Fexotabs 120 mg film-coated tablet, 30 925775011000036100 Fexotabs 120 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +924631000168103 Carvedilol (DRLA) 12.5 mg film-coated tablet, 100, bottle 166014 924621000168101 Carvedilol (DRLA) 12.5 mg film-coated tablet, 100 924601000168105 Carvedilol (DRLA) 12.5 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924611000168108 carvedilol 12.5 mg tablet, 100 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +996651000168108 Renvela 2.4 g powder for oral liquid, 15 sachets 220890 996641000168106 Renvela 2.4 g powder for oral liquid, 15 sachets 996621000168100 Renvela 2.4 g powder for oral liquid, 2.4 g sachet 996601000168109 Renvela 996601000168109 Renvela 996631000168102 sevelamer carbonate 2.4 g powder for oral liquid, 15 sachets 996611000168107 sevelamer carbonate 2.4 g powder for oral liquid, sachet 32634011000036107 sevelamer +60309011000036107 Nurolasts Period Pain 275 mg film-coated tablet, 6, blister pack 137943 56268011000036103 Nurolasts Period Pain 275 mg film-coated tablet, 6 53855011000036102 Nurolasts Period Pain 275 mg film-coated tablet 26751000168101 Nurolasts Period Pain 26751000168101 Nurolasts Period Pain 63276011000036101 naproxen sodium 275 mg tablet, 6 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +69638011000036100 Intralipid 30% (99.9 g/333 mL) intravenous infusion injection, 10 x 333 mL bags 77748 67437011000036108 Intralipid 30% (99.9 g/333 mL) intravenous infusion injection, 10 x 333 mL bags 65665011000036106 Intralipid 30% (99.9 g/333 mL) intravenous infusion injection, 333 mL bag 65008011000036106 Intralipid 65008011000036106 Intralipid 71967011000036102 soya oil 30% (99.9 g/333 mL) injection, 10 x 333 mL bags 70268011000036105 soya oil 30% (99.9 g/333 mL) injection, bag 69767011000036104 soya oil +65671000036106 Tinea Liquid (Scholl) 0.07% pressurised spray, 125 g, aerosol can 13520 63441000036101 Tinea Liquid (Scholl) 0.07% pressurised spray, 125 g 60791000036109 Tinea Liquid (Scholl) 0.07% pressurised spray 60431000036104 Tinea Liquid (Scholl) 60431000036104 Tinea Liquid (Scholl) 63451000036103 tolnaftate 0.07% spray, 125 g 22334011000036103 tolnaftate 0.07% spray 21680011000036105 tolnaftate +59821000036104 Ceftriaxone (AFT) 500 mg powder for injection, 5 vials 185099 58921000036102 Ceftriaxone (AFT) 500 mg powder for injection, 5 vials 58371000036102 Ceftriaxone (AFT) 500 mg powder for injection, 500 mg vial 26001000036105 Ceftriaxone (AFT) 26001000036105 Ceftriaxone (AFT) 933200131000036108 ceftriaxone 500 mg injection, 5 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +766461000168101 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 10 x 0.8 mL syringes 67148 766451000168103 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 10 x 0.8 mL syringes 766361000168106 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 0.8 mL syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766441000168100 nadroparin calcium 15 200 anti-Xa units/0.8 mL injection, 10 x 0.8 mL syringes 766351000168109 nadroparin calcium 15 200 anti-Xa units/0.8 mL injection, syringe 765071000168107 nadroparin +19624011000036100 Zocor 40 mg film-coated tablet, 30, blister pack 58864 12893011000036105 Zocor 40 mg film-coated tablet, 30 6183011000036102 Zocor 40 mg film-coated tablet 3904011000036106 Zocor 3904011000036106 Zocor 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +725771000168103 PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches 725761000168109 PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches 725751000168107 PKU Cooler 20 Green oral liquid solution, 174 mL pouch 31611000168103 PKU Cooler 20 31611000168103 PKU Cooler 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +749261000168104 Tacrolimus (AN) 500 microgram hard capsule, 10, blister pack 224277 749251000168101 Tacrolimus (AN) 500 microgram hard capsule, 10 749231000168107 Tacrolimus (AN) 500 microgram hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 749241000168103 tacrolimus 500 microgram capsule, 10 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +851081000168101 Lomotil uncoated tablet, 2, blister pack 74475 851071000168104 Lomotil uncoated tablet, 2 851051000168108 Lomotil uncoated tablet 3447011000036105 Lomotil 3447011000036105 Lomotil 851061000168105 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 2 851001000168109 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet 850991000168108 diphenoxylate + atropine sulfate monohydrate +894741000168103 Enstilar foam, 60 g, aerosol can 263292 894731000168107 Enstilar foam, 60 g 894711000168102 Enstilar foam 894651000168105 Enstilar 894651000168105 Enstilar 894721000168109 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% foam, 60 g 894701000168100 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% foam 44974011000036100 calcipotriol + betamethasone dipropionate +933239551000036106 Amisulpride (Apo) 400 mg film-coated tablet, 90, blister pack 178898 933236871000036107 Amisulpride (Apo) 400 mg film-coated tablet, 90 933234751000036101 Amisulpride (Apo) 400 mg film-coated tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +903261000168100 Brillior 200 mg hard capsule, 14, blister pack 224343 903251000168102 Brillior 200 mg hard capsule, 14 903241000168104 Brillior 200 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1099221000168104 Sunsense Ultra SPF 50+ lotion, 500 mL, pump pack 279170 1099211000168106 Sunsense Ultra SPF 50+ lotion, 500 mL 1099131000168106 Sunsense Ultra SPF 50+ lotion 683971000168104 Sunsense Ultra SPF 50+ 683971000168104 Sunsense Ultra SPF 50+ 1099201000168108 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion, 500 mL 1099121000168108 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion 1099111000168101 bemotrizinol + octocrylene + diethylamino hydroxybenzoyl hexyl benzoate + titanium dioxide +941801000168106 Gemfitril 600 mg film-coated tablet, 60, bottle 147593 941791000168105 Gemfitril 600 mg film-coated tablet, 60 941781000168107 Gemfitril 600 mg film-coated tablet 941771000168109 Gemfitril 941771000168109 Gemfitril 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +1094931000168108 Combimol film-coated tablet, 12, blister pack 286841 1094921000168105 Combimol film-coated tablet, 12 1094911000168103 Combimol film-coated tablet 1094861000168107 Combimol 1094861000168107 Combimol 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +929656011000036107 Arginine 2000 Amino Acid Supplement containing 2 g arginine powder for oral liquid, 30 x 4 g sachets 929481011000036105 Arginine 2000 Amino Acid Supplement containing 2 g arginine powder for oral liquid, 30 x 4 g sachets 314051000168101 Arginine 2000 Amino Acid Supplement containing 2 g arginine powder for oral liquid, 4 g sachet 929375011000036109 Arginine 2000 Amino Acid Supplement 929375011000036109 Arginine 2000 Amino Acid Supplement 929746011000036102 arginine with carbohydrate containing 2 g arginine powder for oral liquid, 30 x 4 g sachets 312201000168104 arginine with carbohydrate containing 2 g arginine powder for oral liquid, 4 g sachet 77468011000036100 arginine with carbohydrate +959201000168109 Ciram 20 mg film-coated tablet, 7, blister pack 158858 959191000168106 Ciram 20 mg film-coated tablet, 7 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +44160011000036104 Sotacor 40 mg/4 mL concentrated injection, 5 x 4 mL ampoules 54089 41636011000036102 Sotacor 40 mg/4 mL concentrated injection, 5 x 4 mL ampoules 40115011000036107 Sotacor 40 mg/4 mL concentrated injection, 4 mL ampoule 3656011000036106 Sotacor 3656011000036106 Sotacor 46455011000036107 sotalol hydrochloride 40 mg/4 mL injection, 5 x 4 mL ampoules 45164011000036101 sotalol hydrochloride 40 mg/4 mL injection, ampoule 21562011000036100 sotalol +172241000036107 In A Wink 0.3% eye drops solution, 15 mL, bottle 172191000036107 In A Wink 0.3% eye drops solution, 15 mL 172111000036102 In A Wink 0.3% eye drops solution 35435011000036106 In A Wink 35435011000036106 In A Wink 172181000036105 hypromellose 0.3% eye drops, 15 mL 172121000036109 hypromellose 0.3% eye drops 35690011000036109 hypromellose +979251000168106 Humulin 30/70 Kwikpen injection suspension, 5 x 3 mL syringes 64227 979241000168109 Humulin 30/70 Kwikpen injection suspension, 5 x 3 mL syringes 979231000168100 Humulin 30/70 Kwikpen injection suspension, 3 mL syringe 979171000168108 Humulin 30/70 Kwikpen 979171000168108 Humulin 30/70 Kwikpen 33808011000036106 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, 5 x 3 mL syringes 22743011000036103 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, syringe 33639011000036103 insulin isophane human + insulin neutral human +754651000168101 Remifentanil (GenRx) 2 mg powder for injection, 5 vials 234713 754641000168103 Remifentanil (GenRx) 2 mg powder for injection, 5 vials 754631000168107 Remifentanil (GenRx) 2 mg powder for injection, 2 mg vial 754591000168107 Remifentanil (GenRx) 754591000168107 Remifentanil (GenRx) 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +1005221000168104 Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 186569 1005211000168106 Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 1005201000168108 Ropibam 0.75% 150 mg/20 mL injection solution, 20 mL ampoule 711951000168101 Ropibam 0.75% 711951000168101 Ropibam 0.75% 1004901000168103 ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules 1004881000168100 ropivacaine hydrochloride 150 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +20838011000036102 Myfortic 180 mg enteric tablet, 120, blister pack 91939 14001011000036103 Myfortic 180 mg enteric tablet, 120 7282011000036107 Myfortic 180 mg enteric tablet 4117011000036103 Myfortic 4117011000036103 Myfortic 28064011000036104 mycophenolate 180 mg enteric tablet, 120 23378011000036100 mycophenolate 180 mg enteric tablet 21266011000036109 mycophenolate +59838011000036105 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 96, blister pack 114915 55800011000036107 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 96 53630011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet 29541000168103 Strong Pain Relief Tabsule (Amcal) 29541000168103 Strong Pain Relief Tabsule (Amcal) 63892011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 96 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +18875011000036109 Megace 160 mg uncoated tablet, 30, bottle 19226 12357011000036106 Megace 160 mg uncoated tablet, 30 4593011000036103 Megace 160 mg uncoated tablet 3258011000036107 Megace 3258011000036107 Megace 27075011000036100 megestrol acetate 160 mg tablet, 30 22444011000036106 megestrol acetate 160 mg tablet 21922011000036100 megestrol +933211000168105 Centevo 150/37.5/200 mg film-coated tablet, 60, bottle 238857 933201000168107 Centevo 150/37.5/200 mg film-coated tablet, 60 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933191000168109 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 60 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +33601011000036109 Influvac 2008 injection solution, 1 x 0.5 mL syringe 81465 33339011000036105 Influvac 2008 injection solution, 1 x 0.5 mL syringe 33099011000036101 Influvac 2008 injection solution, 0.5 mL syringe 28481000168100 Influvac 2008 28481000168100 Influvac 2008 33818011000036109 influenza trivalent adult vaccine 2008 injection, 1 x 0.5 mL syringe 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +783411000168108 Palexia IR 75 mg film-coated tablet, 100, blister pack 165317 783401000168105 Palexia IR 75 mg film-coated tablet, 100 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783391000168108 tapentadol 75 mg tablet, 100 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +86075011000036107 Gabapentin (Sandoz) 300 mg capsule, 100, blister pack 157197 85717011000036107 Gabapentin (Sandoz) 300 mg capsule, 100 85352011000036100 Gabapentin (Sandoz) 300 mg capsule 85264011000036106 Gabapentin (Sandoz) 85264011000036106 Gabapentin (Sandoz) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +61405011000036107 Kwells 300 microgram chewable tablet, 10, blister pack 82362 57330011000036103 Kwells 300 microgram chewable tablet, 10 54277011000036104 Kwells 300 microgram chewable tablet 53261011000036100 Kwells 53261011000036100 Kwells 75991000036107 hyoscine hydrobromide trihydrate 300 microgram chewable tablet, 10 75941000036101 hyoscine hydrobromide trihydrate 300 microgram chewable tablet 61734011000036108 hyoscine hydrobromide trihydrate +79667011000036105 Pradaxa 110 mg hard capsule, 60, blister pack 138402 79467011000036107 Pradaxa 110 mg hard capsule, 60 79354011000036104 Pradaxa 110 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79801011000036105 dabigatran etexilate 110 mg capsule, 60 79737011000036108 dabigatran etexilate 110 mg capsule 79729011000036103 dabigatran +937541000168102 Epirube 50 mg/25 mL concentrated injection, 25 mL vial 152613 937531000168106 Epirube 50 mg/25 mL concentrated injection, 25 mL vial 937521000168108 Epirube 50 mg/25 mL concentrated injection, 25 mL vial 937481000168108 Epirube 937481000168108 Epirube 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +43676011000036109 Cefalotin (Sandoz) 1 g powder for injection, 1 vial 116692 41171011000036105 Cefalotin (Sandoz) 1 g powder for injection, 1 vial 39873011000036109 Cefalotin (Sandoz) 1 g powder for injection, vial 39670011000036109 Cefalotin (Sandoz) 39670011000036109 Cefalotin (Sandoz) 46138011000036101 cefalotin 1 g injection, 1 vial 22864011000036109 cefalotin 1 g injection, vial 21844011000036103 cefalotin +899011000168101 Strensiq 28 mg/0.7 mL injection solution, 12 x 0.7 mL vials 266986 899001000168104 Strensiq 28 mg/0.7 mL injection solution, 12 x 0.7 mL vials 898951000168109 Strensiq 28 mg/0.7 mL injection solution, 0.7 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 898991000168104 asfotase alfa 28 mg/0.7 mL injection, 12 x 0.7 mL vials 898941000168107 asfotase alfa 28 mg/0.7 mL injection, vial 898041000168106 asfotase alfa +973911000168100 Pregabalin (GH) 300 mg hard capsule, 14, blister pack 215688 973901000168103 Pregabalin (GH) 300 mg hard capsule, 14 973891000168102 Pregabalin (GH) 300 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +892891000168109 Behistatine 16 mg uncoated tablet, 10, blister pack 212084 892881000168106 Behistatine 16 mg uncoated tablet, 10 892871000168108 Behistatine 16 mg uncoated tablet 892861000168102 Behistatine 892861000168102 Behistatine 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1074741000168107 Instanyl 50 microgram/actuation nasal spray, 20 actuations, pump pack 197690 1074731000168103 Instanyl 50 microgram/actuation nasal spray, 20 actuations 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1074721000168101 fentanyl 50 microgram/actuation nasal spray, 20 actuations 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +1112191000168107 Srivasso 18 microgram powder for inhalation, 150 capsules, blister pack 269417 1112181000168109 Srivasso 18 microgram powder for inhalation, 150 capsules 1112111000168103 Srivasso 18 microgram powder for inhalation, 1 capsule 1112101000168101 Srivasso 1112101000168101 Srivasso 980831000168104 tiotropium 18 microgram powder for inhalation, 150 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +886061000168105 Gastrolyte Lemon effervescent tablet, 20, tube 171358 886051000168108 Gastrolyte Lemon effervescent tablet, 20 886041000168106 Gastrolyte Lemon effervescent tablet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +74171000036105 Selsun Gold 2.5% shampoo, 125 mL, bottle 29682 72201000036103 Selsun Gold 2.5% shampoo, 125 mL 69931000036102 Selsun Gold 2.5% shampoo 17291000168106 Selsun Gold 17291000168106 Selsun Gold 72211000036101 selenium sulfide 2.5% shampoo, 125 mL 69901000036109 selenium sulfide 2.5% shampoo 21422011000036103 selenium sulfide +846831000168101 Fluconazole (Alphapharm) 400 mg/200 mL injection solution, 200 mL bag 155341 846821000168104 Fluconazole (Alphapharm) 400 mg/200 mL injection solution, 200 mL bag 58241000036101 Fluconazole (Alphapharm) 400 mg/200 mL injection solution, 200 mL bag 58061000036107 Fluconazole (Alphapharm) 58061000036107 Fluconazole (Alphapharm) 26788011000036103 fluconazole 400 mg/200 mL injection, 200 mL bag 22174011000036106 fluconazole 400 mg/200 mL injection, bag 21365011000036105 fluconazole +954861000168108 Gabapentin (Apo) 800 mg film-coated tablet, 500, bottle 131505 954851000168106 Gabapentin (Apo) 800 mg film-coated tablet, 500 954821000168103 Gabapentin (Apo) 800 mg film-coated tablet 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 35777011000036108 gabapentin 800 mg tablet, 500 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +737331000168105 Calcitriol (Apo) 0.25 microgram soft capsule, 100, bottle 128750 737311000168100 Calcitriol (Apo) 0.25 microgram soft capsule, 100 737301000168103 Calcitriol (Apo) 0.25 microgram soft capsule 737291000168104 Calcitriol (Apo) 737291000168104 Calcitriol (Apo) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +44847011000036104 Perfalgan 1 g/100 mL intravenous infusion injection, 100 mL vial 99869 42279011000036107 Perfalgan 1 g/100 mL intravenous infusion injection, 100 mL vial 40418011000036100 Perfalgan 1 g/100 mL intravenous infusion injection, 100 mL vial 39596011000036105 Perfalgan 39596011000036105 Perfalgan 47030011000036109 paracetamol 1 g/100 mL injection, 100 mL vial 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +770801000168106 Castor Oil BP (David Craig) 1 mL/mL oral liquid, 500 mL, bottle 14066 770791000168105 Castor Oil BP (David Craig) 1 mL/mL oral liquid, 500 mL 770741000168102 Castor Oil BP (David Craig) 1 mL/mL oral liquid 770691000168104 Castor Oil BP (David Craig) 770691000168104 Castor Oil BP (David Craig) 770781000168107 castor oil 1 mL/mL oral liquid, 500 mL 770731000168106 castor oil 1 mL/mL oral liquid 922050011000036106 castor oil +1103561000168100 Quetiapine (RBX) 300 mg film-coated tablet, 20, blister pack 166420 1103481000168105 Quetiapine (RBX) 300 mg film-coated tablet, 20 2711000036103 Quetiapine (RBX) 300 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +970661000168100 Pregabalin (Apo) 300 mg hard capsule, 56, blister pack 193279 970651000168102 Pregabalin (Apo) 300 mg hard capsule, 56 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +18391011000036102 Ondansetron Zydis (RL) 4 mg wafer, 4, blister pack 116434 11523011000036100 Ondansetron Zydis (RL) 4 mg wafer, 4 5768011000036104 Ondansetron Zydis (RL) 4 mg wafer 48431000168103 Ondansetron Zydis (RL) 48431000168103 Ondansetron Zydis (RL) 27517011000036102 ondansetron 4 mg wafer, 4 22858011000036108 ondansetron 4 mg wafer 21545011000036100 ondansetron +795291000168103 Instanyl 200 microgram/actuation nasal spray, 1 actuation, pump pack 197689 795281000168101 Instanyl 200 microgram/actuation nasal spray, 1 actuation 795261000168105 Instanyl 200 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795271000168104 fentanyl 200 microgram/actuation nasal spray, 1 actuation 795251000168108 fentanyl 200 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +86104011000036109 Lisinopril (GA) 10 mg uncoated tablet, 14, blister pack 106501 85614011000036105 Lisinopril (GA) 10 mg uncoated tablet, 14 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 86419011000036106 lisinopril 10 mg tablet, 14 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +19359011000036108 Menorest 37.5 microgram/24 hours patch, 8, sachet 51621 12646011000036102 Menorest 37.5 microgram/24 hours patch, 8 4464011000036107 Menorest 37.5 microgram/24 hours patch 4116011000036101 Menorest 4116011000036101 Menorest 28231011000036104 estradiol 37.5 microgram/24 hours patch, 8 23545011000036107 estradiol 37.5 microgram/24 hours patch 21238011000036103 estradiol +18113011000036107 Bricanyl Turbuhaler 500 microgram/actuation powder for inhalation, 200 actuations, dry powder inhaler 10278 11264011000036102 Bricanyl Turbuhaler 500 microgram/actuation powder for inhalation, 200 actuations 5687011000036107 Bricanyl Turbuhaler 500 microgram/actuation powder for inhalation, actuation 7051000168106 Bricanyl Turbuhaler 7051000168106 Bricanyl Turbuhaler 26580011000036104 terbutaline sulfate 500 microgram/actuation powder for inhalation, 200 actuations 21988011000036106 terbutaline sulfate 500 microgram/actuation powder for inhalation, actuation 21514011000036105 terbutaline +921861011000036106 Glucosamine Sulfate 1000mg (Biosource) 1 g hard capsule, 100, bottle 150686 921420011000036103 Glucosamine Sulfate 1000mg (Biosource) 1 g hard capsule, 100 920999011000036105 Glucosamine Sulfate 1000mg (Biosource) 1 g hard capsule 14331000168108 Glucosamine Sulfate 1000mg (Biosource) 14331000168108 Glucosamine Sulfate 1000mg (Biosource) 922553011000036100 glucosamine sulfate potassium chloride 1 g capsule, 100 922082011000036103 glucosamine sulfate potassium chloride 1 g capsule 69813011000036107 glucosamine +1107901000168103 Midazolam (Intas) 5 mg/mL injection solution, 5 x 1 mL ampoules 207233 1107891000168102 Midazolam (Intas) 5 mg/mL injection solution, 5 x 1 mL ampoules 1107841000168105 Midazolam (Intas) 5 mg/mL injection solution, ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +160611000036101 Kombiglyze XR 5/500 modified release tablet, 7, blister pack 202209 159491000036108 Kombiglyze XR 5/500 modified release tablet, 7 157811000036107 Kombiglyze XR 5/500 modified release tablet 5121000168109 Kombiglyze XR 5/500 5121000168109 Kombiglyze XR 5/500 159501000036101 saxagliptin 5 mg + metformin hydrochloride 500 mg modified release tablet, 7 157821000036100 saxagliptin 5 mg + metformin hydrochloride 500 mg modified release tablet 160681000036109 saxagliptin + metformin +34648011000036108 Alendronate Once Weekly (Apo) 70 mg uncoated tablet, 4, blister pack 123863 34237011000036105 Alendronate Once Weekly (Apo) 70 mg uncoated tablet, 4 33979011000036102 Alendronate Once Weekly (Apo) 70 mg uncoated tablet 46251000168109 Alendronate Once Weekly (Apo) 46251000168109 Alendronate Once Weekly (Apo) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +77237011000036108 Gemcite 1 g powder for injection, 1 vial 147413 76653011000036104 Gemcite 1 g powder for injection, 1 vial 76091011000036102 Gemcite 1 g powder for injection, vial 75922011000036106 Gemcite 75922011000036106 Gemcite 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +86893011000036101 Plaxel 300 mg/50 mL concentrated injection, 50 mL vial 165441 86775011000036109 Plaxel 300 mg/50 mL concentrated injection, 50 mL vial 86647011000036107 Plaxel 300 mg/50 mL concentrated injection, 50 mL vial 86588011000036109 Plaxel 86588011000036109 Plaxel 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +1112151000168102 Srivasso 18 microgram powder for inhalation, 30 capsules, blister pack 269417 1112141000168104 Srivasso 18 microgram powder for inhalation, 30 capsules 1112111000168103 Srivasso 18 microgram powder for inhalation, 1 capsule 1112101000168101 Srivasso 1112101000168101 Srivasso 27953011000036106 tiotropium 18 microgram powder for inhalation, 30 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +754491000168108 Oxycodone (AS) 10 mg hard capsule, 20, blister pack 227860 754481000168105 Oxycodone (AS) 10 mg hard capsule, 20 754471000168107 Oxycodone (AS) 10 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +962261000168105 Ciprofloxacin (GA) 250 mg film-coated tablet, 100, blister pack 148854 962251000168108 Ciprofloxacin (GA) 250 mg film-coated tablet, 100 962161000168104 Ciprofloxacin (GA) 250 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 932362011000036103 ciprofloxacin 250 mg tablet, 100 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +1042551000168105 Nicotine (Amcal) 4 mg lozenge, 156, blister pack 213240 1042541000168108 Nicotine (Amcal) 4 mg lozenge, 156 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897891000168107 nicotine 4 mg lozenge, 156 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +1037251000168106 Atorvastatin (RBX) 80 mg film-coated tablet, 28, bottle 173502 1037241000168109 Atorvastatin (RBX) 80 mg film-coated tablet, 28 1037191000168109 Atorvastatin (RBX) 80 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890391000168102 atorvastatin 80 mg tablet, 28 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +920521000168107 Cilopam 10 mg film-coated tablet, 14, blister pack 158862 920511000168100 Cilopam 10 mg film-coated tablet, 14 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1034031000168102 Strong Pain Relief Extra (Amcal) uncoated tablet, 40, blister pack 208319 1034021000168100 Strong Pain Relief Extra (Amcal) uncoated tablet, 40 1033571000168109 Strong Pain Relief Extra (Amcal) uncoated tablet 1033541000168102 Strong Pain Relief Extra (Amcal) 1033541000168102 Strong Pain Relief Extra (Amcal) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +61071011000036105 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 30 mL, bottle 68601 57014011000036102 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 30 mL 54160011000036107 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 63690011000036108 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 30 mL 62048011000036104 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +858411000168109 Amichlor 25 mg film-coated tablet, 100, bottle 215386 858401000168106 Amichlor 25 mg film-coated tablet, 100 858391000168109 Amichlor 25 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +907671000168100 Celecoxib (Ascent) 100 mg capsule, 10, blister pack 204616 907661000168106 Celecoxib (Ascent) 100 mg capsule, 10 907651000168109 Celecoxib (Ascent) 100 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +91571000036105 Zometa 4 mg/100 mL injection solution, 4 x 100 mL vials 192265 90021000036105 Zometa 4 mg/100 mL injection solution, 4 x 100 mL vials 88431000036100 Zometa 4 mg/100 mL injection solution, 100 mL vial 3922011000036109 Zometa 3922011000036109 Zometa 90031000036107 zoledronic acid 4 mg/100 mL injection, 4 x 100 mL vials 88441000036105 zoledronic acid 4 mg/100 mL injection, vial 21790011000036102 zoledronic acid +69056011000036107 Calamine Oily (David Craig) 50 mg/mL lotion, 2 L, bottle 14288 66858011000036100 Calamine Oily (David Craig) 50 mg/mL lotion, 2 L 65252011000036105 Calamine Oily (David Craig) 50 mg/mL lotion 65015011000036103 Calamine Oily (David Craig) 65015011000036103 Calamine Oily (David Craig) 71467011000036104 calamine 50 mg/mL lotion, 2 L 70022011000036106 calamine 50 mg/mL lotion 69791011000036109 calamine +991171000168103 Aripiprazole (Apotex) 10 mg uncoated tablet, 30, blister pack 152906 991161000168109 Aripiprazole (Apotex) 10 mg uncoated tablet, 30 991151000168107 Aripiprazole (Apotex) 10 mg uncoated tablet 990871000168102 Aripiprazole (Apotex) 990871000168102 Aripiprazole (Apotex) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +19778011000036104 Iodosorb 50% ointment, 4 x 10 g tubes 62773 13036011000036102 Iodosorb 50% ointment, 4 x 10 g 6322011000036107 Iodosorb 50% ointment 28461000168109 Iodosorb 28461000168109 Iodosorb 27507011000036100 cadexomer-iodine 50% ointment, 4 x 10 g 22849011000036103 cadexomer-iodine 50% ointment 21550011000036106 cadexomer-iodine +91491000036108 Ozin 7.5 mg uncoated tablet, 30, bottle 179924 89761000036109 Ozin 7.5 mg uncoated tablet, 30 1451000036100 Ozin 7.5 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 89771000036101 olanzapine 7.5 mg tablet, 30 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +59992011000036108 Gastrogel-Ranitidine 150 mg film-coated tablet, 20, blister pack 121941 55954011000036104 Gastrogel-Ranitidine 150 mg film-coated tablet, 20 53736011000036105 Gastrogel-Ranitidine 150 mg film-coated tablet 13391000168105 Gastrogel-Ranitidine 13391000168105 Gastrogel-Ranitidine 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +649601000168105 Rosuvastatin (DRLA) 10 mg film-coated tablet, 30, blister pack 210832 649591000168103 Rosuvastatin (DRLA) 10 mg film-coated tablet, 30 649581000168101 Rosuvastatin (DRLA) 10 mg film-coated tablet 649571000168104 Rosuvastatin (DRLA) 649571000168104 Rosuvastatin (DRLA) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +50607011000036105 Celsentri 300 mg film-coated tablet, 180, blister pack 137331 49633011000036102 Celsentri 300 mg film-coated tablet, 180 48793011000036104 Celsentri 300 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51525011000036105 maraviroc 300 mg tablet, 180 50991011000036103 maraviroc 300 mg tablet 50741011000036103 maraviroc +69154011000036107 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid, 792 g, jar 153182 66954011000036102 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid, 792 g 65251011000036104 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71529011000036109 psyllium husk powder 568 mg/g powder for oral liquid, 792 g 70043011000036101 psyllium husk powder 568 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +60057011000036106 Ibuprofen (Priceline) 200 mg film-coated tablet, 96, blister pack 124621 56019011000036102 Ibuprofen (Priceline) 200 mg film-coated tablet, 96 53759011000036102 Ibuprofen (Priceline) 200 mg film-coated tablet 53413011000036102 Ibuprofen (Priceline) 53413011000036102 Ibuprofen (Priceline) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +19561000036100 Agrippal 2012 injection suspension, 10 x 0.5 mL syringes 144670 19061000036105 Agrippal 2012 injection suspension, 10 x 0.5 mL syringes 18571000036100 Agrippal 2012 injection suspension, 0.5 mL syringe 44401000168104 Agrippal 2012 44401000168104 Agrippal 2012 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +795211000168107 Instanyl 100 microgram/actuation nasal spray, 8 x 1 actuation, pump packs 197688 795201000168109 Instanyl 100 microgram/actuation nasal spray, 8 x 1 actuation 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795191000168106 fentanyl 100 microgram/actuation nasal spray, 8 x 1 actuation 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +140541000036108 Sumatriptan (Sandoz) 50 mg film-coated tablet, 4, blister pack 187214 139121000036100 Sumatriptan (Sandoz) 50 mg film-coated tablet, 4 137491000036101 Sumatriptan (Sandoz) 50 mg film-coated tablet 137411000036106 Sumatriptan (Sandoz) 137411000036106 Sumatriptan (Sandoz) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +17907011000036108 Lamitrin 200 mg tablet, 56, blister pack 114267 11471011000036109 Lamitrin 200 mg tablet, 56 5649011000036105 Lamitrin 200 mg tablet 4282011000036100 Lamitrin 4282011000036100 Lamitrin 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +77174011000036102 Glucosamine (Blackmores) 500 mg film-coated tablet, 400, bottle 124442 76600011000036104 Glucosamine (Blackmores) 500 mg film-coated tablet, 400 76055011000036108 Glucosamine (Blackmores) 500 mg film-coated tablet 75990011000036101 Glucosamine (Blackmores) 75990011000036101 Glucosamine (Blackmores) 78154011000036106 glucosamine 500 mg tablet, 400 77515011000036103 glucosamine 500 mg tablet 69813011000036107 glucosamine +77178011000036109 Multi-B Forte uncoated tablet, 90, jar 10760 76576011000036102 Multi-B Forte uncoated tablet, 90 76044011000036106 Multi-B Forte uncoated tablet 75958011000036108 Multi-B Forte 75958011000036108 Multi-B Forte 78131011000036109 ascorbic acid 45 mg + nicotinamide 45 mg + pyridoxine hydrochloride 700 microgram + riboflavin 6 mg + thiamine nitrate 7.27 mg tablet, 90 77503011000036101 ascorbic acid 45 mg + nicotinamide 45 mg + pyridoxine hydrochloride 700 microgram + riboflavin 6 mg + thiamine nitrate 7.27 mg tablet 77475011000036102 ascorbic acid + nicotinamide + pyridoxine + riboflavin + thiamine +825301000168105 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes 123713 825291000168109 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes 825211000168100 Engerix-B Adult 20 microgram/mL injection suspension, syringe 33491000168108 Engerix-B Adult 33491000168108 Engerix-B Adult 825281000168106 hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL syringes 825201000168103 hepatitis B adult vaccine 20 microgram/mL injection, syringe 825191000168101 hepatitis B vaccine +19814011000036101 Doxylin 50 mg film-coated tablet, 25, blister pack 63511 13070011000036102 Doxylin 50 mg film-coated tablet, 25 6354011000036102 Doxylin 50 mg film-coated tablet 3714011000036103 Doxylin 3714011000036103 Doxylin 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +37530011000036107 Fansidar uncoated tablet, 150, strip pack 13724 36798011000036101 Fansidar uncoated tablet, 150 36032011000036108 Fansidar uncoated tablet 35938011000036102 Fansidar 35938011000036102 Fansidar 38695011000036108 pyrimethamine 25 mg + sulfadoxine 500 mg tablet, 150 37932011000036104 pyrimethamine 25 mg + sulfadoxine 500 mg tablet 37797011000036103 pyrimethamine + sulfadoxine +68778011000036109 Sodium Chloride (Pfizer (Perth)) 0.9% (450 mg/50 mL) intravenous infusion injection, 10 x 50 mL vials 10804 66558011000036104 Sodium Chloride (Pfizer (Perth)) 0.9% (450 mg/50 mL) intravenous infusion injection, 10 x 50 mL vials 65339011000036109 Sodium Chloride (Pfizer (Perth)) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL vial 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 71285011000036106 sodium chloride 0.9% (450 mg/50 mL) injection, 10 x 50 mL vials 69972011000036104 sodium chloride 0.9% (450 mg/50 mL) injection, vial 21308011000036103 sodium chloride +69321011000036102 Potassium Chloride (Phebra) 2.23 g (potassium 30 mmol)/10 mL concentrated injection, 10 x 10 mL vials 23073 67121011000036103 Potassium Chloride (Phebra) 2.23 g (potassium 30 mmol)/10 mL concentrated injection, 10 x 10 mL vials 65468011000036103 Potassium Chloride (Phebra) 2.23 g (potassium 30 mmol)/10 mL concentrated injection, 10 mL vial 65006011000036107 Potassium Chloride (Phebra) 65006011000036107 Potassium Chloride (Phebra) 71686011000036102 potassium chloride 2.23 g (potassium 30 mmol)/10 mL injection, 10 x 10 mL vials 70125011000036107 potassium chloride 2.23 g (potassium 30 mmol)/10 mL injection, vial 21274011000036107 potassium chloride +753441000168102 Oxycodone (ZP) 5 mg hard capsule, 60, blister pack 227844 753431000168106 Oxycodone (ZP) 5 mg hard capsule, 60 753401000168104 Oxycodone (ZP) 5 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +18643011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 167893 11744011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack 5078011000036109 Solu-Cortef Act-O-Vial (hydrocortisone (as sodium succinate) 100 mg) powder for injection, 100 mg vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 26760011000036102 hydrocortisone (as sodium succinate) 100 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 22147011000036104 hydrocortisone (as sodium succinate) 100 mg injection, vial 21524011000036102 hydrocortisone sodium succinate +18643011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 12345 11744011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack 5078011000036109 Solu-Cortef Act-O-Vial (hydrocortisone (as sodium succinate) 100 mg) powder for injection, 100 mg vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 26760011000036102 hydrocortisone (as sodium succinate) 100 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 22147011000036104 hydrocortisone (as sodium succinate) 100 mg injection, vial 21524011000036102 hydrocortisone sodium succinate +18643011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 167893 11744011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack 641251000168107 Solu-Cortef Act-O-Vial (inert substance) diluent, 2 mL vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 26760011000036102 hydrocortisone (as sodium succinate) 100 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +18643011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 12345 11744011000036101 Solu-Cortef Act-O-Vial (1 x 100 mg vial, 1 x 2 mL inert diluent vial), 1 pack 641251000168107 Solu-Cortef Act-O-Vial (inert substance) diluent, 2 mL vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 26760011000036102 hydrocortisone (as sodium succinate) 100 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +666681000168104 Doxycycline (AN) 50 mg film-coated tablet, 25, blister pack 148807 666671000168102 Doxycycline (AN) 50 mg film-coated tablet, 25 666661000168108 Doxycycline (AN) 50 mg film-coated tablet 666651000168106 Doxycycline (AN) 666651000168106 Doxycycline (AN) 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +670981000168103 Citalopram (Actavis) 10 mg film-coated tablet, 56, blister pack 158879 670971000168101 Citalopram (Actavis) 10 mg film-coated tablet, 56 670901000168106 Citalopram (Actavis) 10 mg film-coated tablet 670891000168107 Citalopram (Actavis) 670891000168107 Citalopram (Actavis) 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +970941000168107 Pregabalin (Apo) 25 mg hard capsule, 56, bottle 193211 970041000168106 Pregabalin (Apo) 25 mg hard capsule, 56 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +806931000168104 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) uncoated tablet, 30, bottle 224293 806921000168102 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) uncoated tablet, 30 806911000168109 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) uncoated tablet 806851000168102 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) 806851000168102 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +778111000168102 Endone XR 40 mg modified release tablet, 28, blister pack 153602 778101000168100 Endone XR 40 mg modified release tablet, 28 778061000168103 Endone XR 40 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +787841000168102 Arizole 30 mg uncoated tablet, 56, blister pack 198196 787831000168106 Arizole 30 mg uncoated tablet, 56 787621000168109 Arizole 30 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787821000168108 aripiprazole 30 mg tablet, 56 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +923713011000036104 Grandicrit 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 147858 923318011000036108 Grandicrit 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 922998011000036109 Grandicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924131011000036101 epoetin lambda 8000 units/0.8 mL injection, 6 x 0.8 mL syringes 923955011000036104 epoetin lambda 8000 units/0.8 mL injection, syringe 923930011000036107 epoetin lambda +19330011000036103 Nitro-Dur 15 mg/24 hours patch, 30, sachet 50563 12618011000036106 Nitro-Dur 15 mg/24 hours patch, 30 5535011000036102 Nitro-Dur 15 mg/24 hours patch 4271011000036103 Nitro-Dur 4271011000036103 Nitro-Dur 27269011000036103 glyceryl trinitrate 15 mg/24 hours patch, 30 22625011000036105 glyceryl trinitrate 15 mg/24 hours patch 21388011000036102 glyceryl trinitrate +1117491000168102 Donepezil (GH) 10 mg film-coated tablet, 28, blister pack 193667 1117481000168100 Donepezil (GH) 10 mg film-coated tablet, 28 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +19127011000036105 Madopar 125 uncoated tablet, 100, bottle 43517 12430011000036101 Madopar 125 uncoated tablet, 100 5698011000036109 Madopar 125 uncoated tablet 38291000168104 Madopar 125 38291000168104 Madopar 125 27434011000036107 levodopa 100 mg + benserazide 25 mg tablet, 100 22781011000036106 levodopa 100 mg + benserazide 25 mg tablet 21331011000036100 levodopa + benserazide +61555011000036107 Pain (Chemists' Own) uncoated tablet, 96, blister pack 93836 57477011000036105 Pain (Chemists' Own) uncoated tablet, 96 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +674271000168102 Laxacon powder for oral liquid, 30 sachets 198155 674261000168108 Laxacon powder for oral liquid, 30 sachets 674251000168106 Laxacon powder for oral liquid, sachet 123911000036105 Laxacon 123911000036105 Laxacon 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +987901000168102 Orcantas 15/6.14 film-coated tablet, 20, blister pack 273237 987891000168101 Orcantas 15/6.14 film-coated tablet, 20 987881000168104 Orcantas 15/6.14 film-coated tablet 987871000168102 Orcantas 15/6.14 987871000168102 Orcantas 15/6.14 984181000168101 trifluridine 15 mg + tipiracil 6.14 mg tablet, 20 984161000168105 trifluridine 15 mg + tipiracil 6.14 mg tablet 984151000168108 trifluridine + tipiracil +60587011000036102 Polaramine 2 mg uncoated tablet, 25, blister pack 18198 56545011000036106 Polaramine 2 mg uncoated tablet, 25 53966011000036106 Polaramine 2 mg uncoated tablet 9101000168102 Polaramine 9101000168102 Polaramine 63411011000036104 dexchlorpheniramine maleate 2 mg tablet, 25 61949011000036101 dexchlorpheniramine maleate 2 mg tablet 61749011000036105 dexchlorpheniramine +720331000168106 Strepsils Cool lozenge, 36, blister pack 165328 720321000168108 Strepsils Cool lozenge, 36 720291000168100 Strepsils Cool lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +907601000168105 Celecoxib (GA) 100 mg capsule, 60, blister pack 204620 907591000168103 Celecoxib (GA) 100 mg capsule, 60 907461000168109 Celecoxib (GA) 100 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +60044011000036103 Strong Pain Relief (Priceline) uncoated tablet, 24, blister pack 124407 56006011000036108 Strong Pain Relief (Priceline) uncoated tablet, 24 53755011000036104 Strong Pain Relief (Priceline) uncoated tablet 53572011000036108 Strong Pain Relief (Priceline) 53572011000036108 Strong Pain Relief (Priceline) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +928979011000036103 Valaciclovir (Apo) 500 mg film-coated tablet, 6, blister pack 158911 928340011000036101 Valaciclovir (Apo) 500 mg film-coated tablet, 6 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929221011000036100 valaciclovir 500 mg tablet, 6 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +921651000168106 Caspofungin (Sandoz) 50 mg powder for injection, 1 vial 255333 921641000168109 Caspofungin (Sandoz) 50 mg powder for injection, 1 vial 921631000168100 Caspofungin (Sandoz) 50 mg powder for injection, 50 mg vial 921521000168102 Caspofungin (Sandoz) 921521000168102 Caspofungin (Sandoz) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +44350011000036100 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 67519 41817011000036101 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 635121000168109 Benefix (inert substance) diluent, 5 mL vial 2121000168104 Benefix 2121000168104 Benefix 46623011000036108 nonacog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +44350011000036100 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 67519 41817011000036101 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 40211011000036108 Benefix (nonacog alfa 500 units) powder for injection, 500 units vial 2121000168104 Benefix 2121000168104 Benefix 46623011000036108 nonacog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 45243011000036106 nonacog alfa 500 units injection, vial 44863011000036102 nonacog alfa +21201011000036100 Zofran 4 mg/2 mL injection solution, 2 mL ampoule 9978 14339011000036105 Zofran 4 mg/2 mL injection solution, 2 mL ampoule 7623011000036108 Zofran 4 mg/2 mL injection solution, 2 mL ampoule 2471000168108 Zofran 2471000168108 Zofran 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +17894011000036109 Ondansetron (RL) 4 mg/2 mL injection solution, 2 mL ampoule 116424 11517011000036100 Ondansetron (RL) 4 mg/2 mL injection solution, 2 mL ampoule 5852011000036105 Ondansetron (RL) 4 mg/2 mL injection solution, 2 mL ampoule 3915011000036107 Ondansetron (RL) 3915011000036107 Ondansetron (RL) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +648471000168106 Veletri 1.5 mg powder for injection, 1 vial 207547 648461000168100 Veletri 1.5 mg powder for injection, 1 vial 648441000168104 Veletri 1.5 mg powder for injection, 1.5 mg vial 648431000168108 Veletri 648431000168108 Veletri 648451000168102 epoprostenol 1.5 mg injection, 1 vial 23255011000036104 epoprostenol 1.5 mg injection, vial 21703011000036107 epoprostenol +870271000168100 Anterone 100 mg uncoated tablet, 50, blister pack 278778 870261000168106 Anterone 100 mg uncoated tablet, 50 870251000168109 Anterone 100 mg uncoated tablet 870241000168107 Anterone 870241000168107 Anterone 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +121771000036101 Coperin 30 mg enteric capsule, 28, blister pack 197165 120671000036102 Coperin 30 mg enteric capsule, 28 119361000036104 Coperin 30 mg enteric capsule 119131000036107 Coperin 119131000036107 Coperin 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +717111000168108 Omeprazole (Pharmacor) 20 mg enteric capsule, 14, bottle 167313 717091000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 14 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +1116441000168107 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 7, blister pack 151628 1116431000168103 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 7 1116421000168101 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 63240011000036103 amlodipine 10 mg + valsartan 160 mg tablet, 7 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +679661000168107 Movectro 10 mg uncoated tablet, 1, blister pack 166483 679651000168105 Movectro 10 mg uncoated tablet, 1 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679641000168108 cladribine 10 mg tablet, 1 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +146261000036108 Sevikar HCT 20/5/12.5 film-coated tablet, 30, blister pack 198998 144891000036107 Sevikar HCT 20/5/12.5 film-coated tablet, 30 143591000036108 Sevikar HCT 20/5/12.5 film-coated tablet 62081000168103 Sevikar HCT 20/5/12.5 62081000168103 Sevikar HCT 20/5/12.5 144901000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet, 30 143601000036101 olmesartan medoxomil 20 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +60263011000036104 Fexo (Amcal) 120 mg film-coated tablet, 10, blister pack 134667 56222011000036107 Fexo (Amcal) 120 mg film-coated tablet, 10 53844011000036104 Fexo (Amcal) 120 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +39397011000036106 Tryzan 10 mg uncoated tablet, 7, blister pack 129921 39281011000036107 Tryzan 10 mg uncoated tablet, 7 39207011000036100 Tryzan 10 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39478011000036109 ramipril 10 mg tablet, 7 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +747661000168108 Morphine MR (SCP) 100 mg modified release tablet, 20, blister pack 225424 747651000168106 Morphine MR (SCP) 100 mg modified release tablet, 20 747641000168109 Morphine MR (SCP) 100 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 27109011000036102 morphine sulfate pentahydrate 100 mg modified release tablet, 20 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +907511000168107 Celecoxib (GA) 100 mg capsule, 20, blister pack 204620 907501000168109 Celecoxib (GA) 100 mg capsule, 20 907461000168109 Celecoxib (GA) 100 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1034191000168102 Atomoxetine (CH) 60 mg hard capsule, 7, blister pack 234839 1034181000168100 Atomoxetine (CH) 60 mg hard capsule, 7 1034171000168103 Atomoxetine (CH) 60 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +19968011000036101 Intal Forte CFC-Free 5 mg/actuation pressurised inhalation, 112 actuations, metered dose aerosol can 67820 13211011000036105 Intal Forte CFC-Free 5 mg/actuation pressurised inhalation, 112 actuations 6493011000036104 Intal Forte CFC-Free 5 mg/actuation pressurised inhalation, actuation 45831000168109 Intal Forte 45831000168109 Intal Forte 27622011000036104 sodium cromoglycate 5 mg/actuation pressurised inhalation, 112 actuations 22960011000036108 sodium cromoglycate 5 mg/actuation pressurised inhalation, actuation 21253011000036107 cromoglycate +52710011000036106 Simvastatin (Spirit) 20 mg film-coated tablet, 90, bottle 116711 52530011000036102 Simvastatin (Spirit) 20 mg film-coated tablet, 90 52398011000036106 Simvastatin (Spirit) 20 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 52871011000036107 simvastatin 20 mg tablet, 90 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +44006011000036105 Hypnovel 50 mg/10 mL injection solution, 5 x 10 mL ampoules 46348 41497011000036107 Hypnovel 50 mg/10 mL injection solution, 5 x 10 mL ampoules 40017011000036109 Hypnovel 50 mg/10 mL injection solution, 10 mL ampoule 35964011000036100 Hypnovel 35964011000036100 Hypnovel 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +69124011000036106 Amosan powder for mouthwash, 20 x 1.2 g sachets 15168 66924011000036103 Amosan powder for mouthwash, 20 x 1.2 g sachets 65479011000036103 Amosan powder for mouthwash, 1.2 g sachet 64977011000036101 Amosan 64977011000036101 Amosan 71508011000036109 sodium perborate monohydrate 823.68 mg/1.2 g + sodium bitartrate 352.8 mg/1.2 g powder for mouthwash, 20 x 1.2 g sachets 70041011000036102 sodium perborate monohydrate 823.68 mg/1.2 g + sodium bitartrate 352.8 mg/1.2 g powder for mouthwash, sachet 69835011000036100 boric acid + sodium +737491000168100 Carvedilol (Auro) 6.25 mg film-coated tablet, 30, blister pack 174797 737481000168103 Carvedilol (Auro) 6.25 mg film-coated tablet, 30 737471000168101 Carvedilol (Auro) 6.25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +933127011000036107 Eligard 3 Month (1 x 22.5 mg syringe, 1 x diluent syringe), 1 pack, composite pack 97450 932928011000036103 Eligard 3 Month (1 x 22.5 mg syringe, 1 x diluent syringe), 1 pack 7501011000036105 Eligard 3 Month (inert substance) diluent, syringe 56351000168101 Eligard 3 Month 56351000168101 Eligard 3 Month 932929011000036106 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +933127011000036107 Eligard 3 Month (1 x 22.5 mg syringe, 1 x diluent syringe), 1 pack, composite pack 97450 932928011000036103 Eligard 3 Month (1 x 22.5 mg syringe, 1 x diluent syringe), 1 pack 7500011000036103 Eligard 3 Month (leuprorelin acetate 22.5 mg) modified release injection, 22.5 mg syringe 56351000168101 Eligard 3 Month 56351000168101 Eligard 3 Month 932929011000036106 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 23533011000036105 leuprorelin acetate 22.5 mg modified release injection, syringe 21320011000036109 leuprorelin +662581000168104 Carvedilol (AN) 12.5 mg film-coated tablet, 60, blister pack 174805 662481000168103 Carvedilol (AN) 12.5 mg film-coated tablet, 60 662471000168101 Carvedilol (AN) 12.5 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +84266011000036105 Dicarz 25 mg film-coated tablet, 60, blister pack 101742 83959011000036105 Dicarz 25 mg film-coated tablet, 60 83608011000036105 Dicarz 25 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +757641000168106 Ceptolate 250 mg hard capsule, 300, bottle 165767 757631000168102 Ceptolate 250 mg hard capsule, 300 1591000036105 Ceptolate 250 mg hard capsule 521000036106 Ceptolate 521000036106 Ceptolate 27604011000036102 mycophenolate mofetil 250 mg capsule, 300 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +818131000168100 Tadim 1 million units powder for inhalation, 30 vials 165709 818121000168103 Tadim 1 million units powder for inhalation, 30 vials 818101000168107 Tadim 1 million units powder for inhalation, vial 32111000036107 Tadim 32111000036107 Tadim 818111000168105 colistimethate sodium 1 million units powder for inhalation, 30 vials 818091000168102 colistimethate sodium 1 million units powder for inhalation, vial 817451000168104 colistin +34822011000036104 Methylphenidate (Chemmart) 10 mg tablet, 100, blister pack 82993 34397011000036107 Methylphenidate (Chemmart) 10 mg tablet, 100 34072011000036104 Methylphenidate (Chemmart) 10 mg tablet 33925011000036103 Methylphenidate (Chemmart) 33925011000036103 Methylphenidate (Chemmart) 27703011000036105 methylphenidate hydrochloride 10 mg tablet, 100 23038011000036102 methylphenidate hydrochloride 10 mg tablet 21277011000036101 methylphenidate +760611000168100 Panadeine Extra uncoated tablet, 24, blister pack 101436 760601000168103 Panadeine Extra uncoated tablet, 24 52397011000036105 Panadeine Extra uncoated tablet 9851000168109 Panadeine Extra 9851000168109 Panadeine Extra 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +928887011000036107 Ceftazidime (SXP) 2 g powder for injection, 5 vials 143201 928249011000036100 Ceftazidime (SXP) 2 g powder for injection, 5 vials 927902011000036106 Ceftazidime (SXP) 2 g powder for injection, 2 g vial 927789011000036108 Ceftazidime (SXP) 927789011000036108 Ceftazidime (SXP) 38651011000036102 ceftazidime 2 g injection, 5 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +872991000168109 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 19449 872981000168106 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 872931000168105 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 3471000168104 Synthamin 17 Amino Acid 10% with Electrolytes 3471000168104 Synthamin 17 Amino Acid 10% with Electrolytes 872971000168108 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle 872921000168107 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle 77430011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +74491000036102 Nizoral 1% shampoo, 200 mL, bottle 58176 72451000036103 Nizoral 1% shampoo, 200 mL 69711000036109 Nizoral 1% shampoo 4145011000036104 Nizoral 4145011000036104 Nizoral 72461000036100 ketoconazole 1% shampoo, 200 mL 69721000036102 ketoconazole 1% shampoo 21500011000036103 ketoconazole +679981000168105 Misodel 200 microgram modified release pessary, 1, sachet 205336 679971000168107 Misodel 200 microgram modified release pessary, 1 679951000168103 Misodel 200 microgram modified release pessary 679931000168109 Misodel 679931000168109 Misodel 679961000168101 misoprostol 200 microgram modified release pessary, 1 679941000168100 misoprostol 200 microgram modified release pessary 21520011000036107 misoprostol +74783011000036106 Roxithromycin (Apo) 300 mg film-coated tablet, 5, blister pack 133749 74270011000036102 Roxithromycin (Apo) 300 mg film-coated tablet, 5 73851011000036101 Roxithromycin (Apo) 300 mg film-coated tablet 42311000168101 Roxithromycin (Apo) 42311000168101 Roxithromycin (Apo) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +674091000168108 Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets 204650 674081000168105 Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets 674071000168107 Macrogol plus Electrolytes (Apo) powder for oral liquid, sachet 154511000036103 Macrogol plus Electrolytes (Apo) 154511000036103 Macrogol plus Electrolytes (Apo) 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +1060131000168100 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 7, blister pack 234539 1060121000168103 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 7 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +931471011000036108 Paroxetine (SAU) 20 mg film-coated tablet, 56, blister pack 152490 930650011000036107 Paroxetine (SAU) 20 mg film-coated tablet, 56 929990011000036100 Paroxetine (SAU) 20 mg film-coated tablet 929841011000036109 Paroxetine (SAU) 929841011000036109 Paroxetine (SAU) 51565011000036100 paroxetine 20 mg tablet, 56 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +654001000168104 Methylpred 1 g powder for injection, 1 vial 161750 653991000168107 Methylpred 1 g powder for injection, 1 vial 653971000168106 Methylpred 1 g powder for injection, vial 653921000168105 Methylpred 653921000168105 Methylpred 653981000168109 methylprednisolone 1 g injection, 1 vial 22145011000036109 methylprednisolone 1 g injection, vial 21605011000036100 methylprednisolone +61025011000036108 Ferro-Grad C modified release tablet, 30, bottle 66841 56968011000036102 Ferro-Grad C modified release tablet, 30 54143011000036105 Ferro-Grad C modified release tablet 53373011000036103 Ferro-Grad C 53373011000036103 Ferro-Grad C 63666011000036108 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet, 30 62039011000036106 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet 61817011000036106 ferrous sulfate + ascorbic acid +691491000168105 Ikotab 10 mg tablet, 60, blister pack 218690 691481000168107 Ikotab 10 mg tablet, 60 691471000168109 Ikotab 10 mg tablet 691461000168103 Ikotab 691461000168103 Ikotab 27379011000036102 nicorandil 10 mg tablet, 60 22728011000036106 nicorandil 10 mg tablet 21260011000036106 nicorandil +920381000168104 Montelukast (APL) 4 mg chewable tablet, 30, bottle 193239 920371000168102 Montelukast (APL) 4 mg chewable tablet, 30 920301000168107 Montelukast (APL) 4 mg chewable tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 920361000168108 montelukast 4 mg chewable tablet, 30 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +69137011000036102 Nicotinell Classic 4 mg chewing gum, 120, blister pack 152894 66937011000036107 Nicotinell Classic 4 mg chewing gum, 120 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71514011000036100 nicotine 4 mg gum, 120 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +688521000168103 Vita-D 25 microgram (1000 units) soft capsule, 250, bottle 164567 688511000168105 Vita-D 25 microgram (1000 units) soft capsule, 250 86643011000036103 Vita-D 25 microgram (1000 units) soft capsule 86578011000036104 Vita-D 86578011000036104 Vita-D 86408011000036101 colecalciferol 25 microgram (1000 units) capsule, 250 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +19059011000036107 Tambocor 100 mg uncoated tablet, 60, blister pack 41002 12367011000036102 Tambocor 100 mg uncoated tablet, 60 5518011000036104 Tambocor 100 mg uncoated tablet 3960011000036102 Tambocor 3960011000036102 Tambocor 27642011000036102 flecainide acetate 100 mg tablet, 60 22979011000036105 flecainide acetate 100 mg tablet 21457011000036102 flecainide +816761000168106 Atomoxetine (Amneal) 100 mg hard capsule, 28, blister pack 238341 816751000168109 Atomoxetine (Amneal) 100 mg hard capsule, 28 816721000168101 Atomoxetine (Amneal) 100 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +655361000168100 Ondansetron (AN) 4 mg film-coated tablet, 10, blister pack 173186 655351000168102 Ondansetron (AN) 4 mg film-coated tablet, 10 655321000168105 Ondansetron (AN) 4 mg film-coated tablet 655311000168103 Ondansetron (AN) 655311000168103 Ondansetron (AN) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +79657011000036101 Pradaxa 75 mg hard capsule, 30, blister pack 137832 79463011000036103 Pradaxa 75 mg hard capsule, 30 79353011000036101 Pradaxa 75 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79797011000036102 dabigatran etexilate 75 mg capsule, 30 79736011000036105 dabigatran etexilate 75 mg capsule 79729011000036103 dabigatran +893051000168102 Betahistine (GXP) 16 mg uncoated tablet, 30, blister pack 212082 893041000168104 Betahistine (GXP) 16 mg uncoated tablet, 30 892991000168102 Betahistine (GXP) 16 mg uncoated tablet 892981000168100 Betahistine (GXP) 892981000168100 Betahistine (GXP) 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +786481000168108 Fentanyl (Sandoz) 37 microgram/hour patch, 8, sachet 152567 786471000168105 Fentanyl (Sandoz) 37 microgram/hour patch, 8 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780901000168105 fentanyl 37 microgram/hour patch, 8 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +1065931000168105 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 20, blister pack 220730 1065921000168107 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 20 1065871000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +933239391000036108 Eliquis 2.5 mg film-coated tablet, 20, blister pack 172244 933236671000036106 Eliquis 2.5 mg film-coated tablet, 20 933234631000036103 Eliquis 2.5 mg film-coated tablet 933234191000036106 Eliquis 933234191000036106 Eliquis 933236681000036108 apixaban 2.5 mg tablet, 20 933234641000036108 apixaban 2.5 mg tablet 933240151000036106 apixaban +691451000168100 Trusamide 2% eye drops solution, 5 mL, bottle 217251 691441000168102 Trusamide 2% eye drops solution, 5 mL 691431000168106 Trusamide 2% eye drops solution 691421000168108 Trusamide 691421000168108 Trusamide 27338011000036107 dorzolamide 2% eye drops, 5 mL 22691011000036100 dorzolamide 2% eye drops 21898011000036103 dorzolamide +25341000036101 Cephalexin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 160873 23121000036107 Cephalexin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL 20141000036106 Cephalexin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 5 mL 4078011000036104 Cephalexin (Terry White Chemists) 4078011000036104 Cephalexin (Terry White Chemists) 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +25341000036101 Cephalexin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 98640 23121000036107 Cephalexin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL 20141000036106 Cephalexin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 5 mL 4078011000036104 Cephalexin (Terry White Chemists) 4078011000036104 Cephalexin (Terry White Chemists) 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +921891000168102 Ceftazidime (Kabi) 1 g powder for injection, 10 vials 223563 921881000168100 Ceftazidime (Kabi) 1 g powder for injection, 10 vials 921831000168101 Ceftazidime (Kabi) 1 g powder for injection, vial 921821000168104 Ceftazidime (Kabi) 921821000168104 Ceftazidime (Kabi) 46867011000036102 ceftazidime 1 g injection, 10 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +37392011000036101 Hydroform cream, 100 g, tube 10317 36616011000036106 Hydroform cream, 100 g 36163011000036102 Hydroform cream 27611000168107 Hydroform 27611000168107 Hydroform 38536011000036102 hydrocortisone 1% + clioquinol 1% cream, 100 g 37822011000036107 hydrocortisone 1% + clioquinol 1% cream 37775011000036102 hydrocortisone + clioquinol +61428011000036109 Paracetamol (Herron) 500 mg uncoated tablet, 500, bottle 82690 57353011000036105 Paracetamol (Herron) 500 mg uncoated tablet, 500 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +77276011000036108 Haemorol Oily Phenol (Phebra) 250 mg/5 mL injection solution, 5 x 5 mL ampoules 16280 76692011000036103 Haemorol Oily Phenol (Phebra) 250 mg/5 mL injection solution, 5 x 5 mL ampoules 76119011000036106 Haemorol Oily Phenol (Phebra) 250 mg/5 mL injection solution, 5 mL ampoule 75969011000036105 Haemorol Oily Phenol (Phebra) 75969011000036105 Haemorol Oily Phenol (Phebra) 78207011000036107 phenol 250 mg/5 mL injection, 5 x 5 mL ampoules 77542011000036104 phenol 250 mg/5 mL injection, ampoule 77463011000036105 phenol +1117771000168109 Donepezil (GH) 5 mg film-coated tablet, 30, blister pack 193661 1117761000168103 Donepezil (GH) 5 mg film-coated tablet, 30 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200721000036105 donepezil hydrochloride 5 mg tablet, 30 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +723121000168101 Esomeprazole (GH) 40 mg enteric tablet, 30, bottle 207589 712401000168102 Esomeprazole (GH) 40 mg enteric tablet, 30 712391000168104 Esomeprazole (GH) 40 mg enteric tablet 712381000168102 Esomeprazole (GH) 712381000168102 Esomeprazole (GH) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +73249011000036105 Tiger Balm White ointment, 18 g, jar 11261 73047011000036106 Tiger Balm White ointment, 18 g 72961011000036109 Tiger Balm White ointment 57011000168102 Tiger Balm White 57011000168102 Tiger Balm White 73453011000036109 camphor 11% + menthol 8% + cajuput oil 13% + mint oil dementholised 16% + clove bud oil 1.5% ointment, 18 g 73361011000036106 camphor 11% + menthol 8% + cajuput oil 13% + mint oil dementholised 16% + clove bud oil 1.5% ointment 73353011000036103 camphor + menthol + cajuput oil + mint oil dementholised + clove bud oil +923866011000036108 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 100, bottle 163762 923412011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 100 923078011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 924192011000036100 lercanidipine hydrochloride 20 mg tablet, 100 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +651111000168104 Irbesartan HCT 300/25 (Actavis) film-coated tablet, 30, blister pack 189388 651101000168102 Irbesartan HCT 300/25 (Actavis) film-coated tablet, 30 651091000168107 Irbesartan HCT 300/25 (Actavis) film-coated tablet 651081000168109 Irbesartan HCT 300/25 (Actavis) 651081000168109 Irbesartan HCT 300/25 (Actavis) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +991011000168107 Bisoprolol (Apotex) 1.25 mg tablet, 7, blister pack 182109 990991000168108 Bisoprolol (Apotex) 1.25 mg tablet, 7 990981000168105 Bisoprolol (Apotex) 1.25 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 46794011000036107 bisoprolol fumarate 1.25 mg tablet, 7 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1099041000168101 Valaciclovir (Auro) 1 g film-coated tablet, 10, blister pack 173289 1099031000168105 Valaciclovir (Auro) 1 g film-coated tablet, 10 1098891000168105 Valaciclovir (Auro) 1 g film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 1099021000168107 valaciclovir 1 g tablet, 10 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +44477011000036108 Cardizem CD 360 mg modified release capsule, 28, blister pack 75252 41933011000036107 Cardizem CD 360 mg modified release capsule, 28 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46720011000036108 diltiazem hydrochloride 360 mg modified release capsule, 28 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +770641000168107 Actair Initiation Treatment (3 x 100 IR tablets, 88 x 300 IR tablets), 1 pack, composite pack 233470 770631000168103 Actair Initiation Treatment (3 x 100 IR tablets, 88 x 300 IR tablets), 1 pack 770381000168108 Actair 300 IR sublingual tablet 769041000168102 Actair Initiation Treatment 768771000168102 Actair 300 IR 770621000168101 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet [3] (&) American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet [88], 1 pack 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +770641000168107 Actair Initiation Treatment (3 x 100 IR tablets, 88 x 300 IR tablets), 1 pack, composite pack 233470 770631000168103 Actair Initiation Treatment (3 x 100 IR tablets, 88 x 300 IR tablets), 1 pack 770331000168107 Actair 100 IR sublingual tablet 769041000168102 Actair Initiation Treatment 768701000168107 Actair 100 IR 770621000168101 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet [3] (&) American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet [88], 1 pack 770321000168109 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +25181000036107 Atorvastatin (Sandoz) 80 mg film-coated tablet, 30, blister pack 156057 22351000036105 Atorvastatin (Sandoz) 80 mg film-coated tablet, 30 20611000036104 Atorvastatin (Sandoz) 80 mg film-coated tablet 19781000036102 Atorvastatin (Sandoz) 19781000036102 Atorvastatin (Sandoz) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +104411000036109 Irbesartan (DRLA) 150 mg film-coated tablet, 30, bottle 190489 101621000036103 Irbesartan (DRLA) 150 mg film-coated tablet, 30 99131000036101 Irbesartan (DRLA) 150 mg film-coated tablet 97871000036100 Irbesartan (DRLA) 97871000036100 Irbesartan (DRLA) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +34775011000036109 Oxycontin 10 mg modified release tablet, 60, bottle 68188 34355011000036105 Oxycontin 10 mg modified release tablet, 60 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +19543011000036109 Estraderm MX 50 microgram/24 hours patch, 8, sachet 56658 12815011000036105 Estraderm MX 50 microgram/24 hours patch, 8 6106011000036107 Estraderm MX 50 microgram/24 hours patch 9331000168106 Estraderm MX 9331000168106 Estraderm MX 28326011000036104 estradiol 50 microgram/24 hours patch, 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +50355011000036104 MSUD Maxamaid powder for oral liquid, 500 g, can 49281011000036106 MSUD Maxamaid powder for oral liquid, 500 g 48579011000036107 MSUD Maxamaid powder for oral liquid 63871000168104 MSUD Maxamaid 63871000168104 MSUD Maxamaid 51270011000036106 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 500 g 50802011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +885901000168102 Alendronate Plus D3 70 mg/70 microgram (Blooms The Chemist) tablet, 4, blister pack 220379 885891000168101 Alendronate Plus D3 70 mg/70 microgram (Blooms The Chemist) tablet, 4 885881000168104 Alendronate Plus D3 70 mg/70 microgram (Blooms The Chemist) tablet 885871000168102 Alendronate Plus D3 70 mg/70 microgram (Blooms The Chemist) 885871000168102 Alendronate Plus D3 70 mg/70 microgram (Blooms The Chemist) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +685691000168105 Subutex 2 mg sublingual tablet, 100, bottle 76774 685681000168107 Subutex 2 mg sublingual tablet, 100 685581000168108 Subutex 2 mg sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685671000168109 buprenorphine 2 mg sublingual tablet, 100 685571000168105 buprenorphine 2 mg sublingual tablet 21232011000036101 buprenorphine +69527011000036108 Sodium Chloride (Baxter) 0.9% (27 g/3 L) irrigation solution, 3 L bag 54587 67327011000036101 Sodium Chloride (Baxter) 0.9% (27 g/3 L) irrigation solution, 3 L bag 65613011000036106 Sodium Chloride (Baxter) 0.9% (27 g/3 L) irrigation solution, 3 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71872011000036104 sodium chloride 0.9% (27 g/3 L) solution, 3 L bag 70226011000036102 sodium chloride 0.9% (27 g/3 L) solution, bag 21308011000036103 sodium chloride +61231011000036102 Nicotine (Amcal) Fruit 2 mg chewing gum, 108, blister pack 76845 57167011000036100 Nicotine (Amcal) Fruit 2 mg chewing gum, 108 54223011000036109 Nicotine (Amcal) Fruit 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63744011000036102 nicotine 2 mg gum, 108 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +740421000168100 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet, 6, blister pack 163654 740411000168107 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet, 6 740381000168109 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet 740371000168106 Ondansetron ODT (SZ) 740371000168106 Ondansetron ODT (SZ) 720011000168103 ondansetron 8 mg orally disintegrating tablet, 6 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +69425011000036106 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 5 x 5 mL ampoules 48346 67225011000036104 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 5 x 5 mL ampoules 65564011000036101 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 5 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71776011000036103 sodium chloride 0.9% (45 mg/5 mL) injection, 5 x 5 mL ampoules 70199011000036103 sodium chloride 0.9% (45 mg/5 mL) injection, ampoule 21308011000036103 sodium chloride +39414011000036109 Cosamide 50 mg film-coated tablet, 10, bottle 135219 39297011000036103 Cosamide 50 mg film-coated tablet, 10 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 39489011000036107 bicalutamide 50 mg tablet, 10 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +829731000168102 Berocca Performance Original effervescent tablet, 15, bottle 129631 829721000168100 Berocca Performance Original effervescent tablet, 15 829701000168109 Berocca Performance Original effervescent tablet 920935011000036104 Berocca Performance 920935011000036104 Berocca Performance 829711000168107 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 15 829691000168109 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet 829681000168106 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc +829731000168102 Berocca Performance Original effervescent tablet, 15, bottle 193893 829721000168100 Berocca Performance Original effervescent tablet, 15 829701000168109 Berocca Performance Original effervescent tablet 920935011000036104 Berocca Performance 920935011000036104 Berocca Performance 829711000168107 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 15 829691000168109 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet 829681000168106 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc +69621011000036107 Mylanta 2go Rolltab Spearmint chewable tablet, 60, wrapping 75881 67420011000036109 Mylanta 2go Rolltab Spearmint chewable tablet, 60 65655011000036100 Mylanta 2go Rolltab Spearmint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71951011000036103 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 60 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +894581000168102 Entecavir (GH) 1 mg film-coated tablet, 30, blister pack 267112 894571000168100 Entecavir (GH) 1 mg film-coated tablet, 30 894541000168107 Entecavir (GH) 1 mg film-coated tablet 894481000168101 Entecavir (GH) 894481000168101 Entecavir (GH) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +805161000168104 Aczicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 147841 805151000168101 Aczicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 805141000168103 Aczicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924123011000036102 epoetin lambda 9000 units/0.9 mL injection, 0.9 mL syringe 923952011000036107 epoetin lambda 9000 units/0.9 mL injection, syringe 923930011000036107 epoetin lambda +671301000168102 Amlodipine/Atorvastatin 10/80 (Terry White Chemists) film-coated tablet, 30, blister pack 214363 671291000168103 Amlodipine/Atorvastatin 10/80 (Terry White Chemists) film-coated tablet, 30 671281000168101 Amlodipine/Atorvastatin 10/80 (Terry White Chemists) film-coated tablet 671271000168104 Amlodipine/Atorvastatin 10/80 (Terry White Chemists) 671271000168104 Amlodipine/Atorvastatin 10/80 (Terry White Chemists) 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +782141000168106 Voriconazole (Alphapharm) 50 mg film-coated tablet, 100, blister pack 206984 782131000168102 Voriconazole (Alphapharm) 50 mg film-coated tablet, 100 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46812011000036100 voriconazole 50 mg tablet, 100 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +104651000036106 Donepezil Hydrochloride (RBX) 5 mg film-coated tablet, 28, blister pack 172751 101831000036100 Donepezil Hydrochloride (RBX) 5 mg film-coated tablet, 28 99241000036100 Donepezil Hydrochloride (RBX) 5 mg film-coated tablet 98111000036100 Donepezil Hydrochloride (RBX) 98111000036100 Donepezil Hydrochloride (RBX) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1074501000168100 Cefazolin (Auro) 1 g powder for injection, 5 vials 174072 1074491000168107 Cefazolin (Auro) 1 g powder for injection, 5 vials 1074461000168100 Cefazolin (Auro) 1 g powder for injection, vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 32938011000036104 cefazolin 1 g injection, 5 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +777791000168106 Lanzek 5 mg film-coated tablet, 7, blister pack 167680 777781000168108 Lanzek 5 mg film-coated tablet, 7 2331000036106 Lanzek 5 mg film-coated tablet 9311000168101 Lanzek 9311000168101 Lanzek 933205031000036100 olanzapine 5 mg tablet, 7 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +927771000168102 Risperisan 1 mg film-coated tablet, 60, bottle 126178 927621000168105 Risperisan 1 mg film-coated tablet, 60 927611000168103 Risperisan 1 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +890241000168104 Bansep 10 mg film-coated tablet, 100, bottle 173504 890231000168108 Bansep 10 mg film-coated tablet, 100 841211000168104 Bansep 10 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890221000168105 atorvastatin 10 mg tablet, 100 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +765021000168106 Blincyto (1 x Blincyto vial, 1 x Blincyto IV Stabiliser vial), 1 pack, composite pack 232805 765011000168104 Blincyto (1 x Blincyto vial, 1 x Blincyto IV Stabiliser vial), 1 pack 764991000168108 Blincyto IV Stabiliser (inert substance) solution, 10 mL vial 764861000168108 Blincyto 764891000168101 Blincyto IV Stabiliser 765001000168102 blinatumomab 38.5 microgram injection [1 vial] (&) inert substance solution [10 mL vial], 1 pack 764981000168105 inert substance solution, 10 mL vial 21220011000036103 inert substance +765021000168106 Blincyto (1 x Blincyto vial, 1 x Blincyto IV Stabiliser vial), 1 pack, composite pack 232805 765011000168104 Blincyto (1 x Blincyto vial, 1 x Blincyto IV Stabiliser vial), 1 pack 764971000168107 Blincyto (blinatumomab 38.5 microgram) powder for injection, 38.5 microgram vial 764861000168108 Blincyto 764861000168108 Blincyto 765001000168102 blinatumomab 38.5 microgram injection [1 vial] (&) inert substance solution [10 mL vial], 1 pack 764961000168101 blinatumomab 38.5 microgram injection, vial 764951000168103 blinatumomab +61461011000036106 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 24, blister pack 90630 57386011000036109 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 24 54291011000036100 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet 53173011000036109 Paracetamol (Nyal) 53173011000036109 Paracetamol (Nyal) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +43947011000036109 Cephatrust 500 mg capsule, 20, blister pack 147082 41439011000036108 Cephatrust 500 mg capsule, 20 39825011000036106 Cephatrust 500 mg capsule 39649011000036104 Cephatrust 39649011000036104 Cephatrust 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +146421000036103 Doxycycline (Sandoz) 50 mg uncoated tablet, 25, blister pack 69049 145361000036105 Doxycycline (Sandoz) 50 mg uncoated tablet, 25 143711000036106 Doxycycline (Sandoz) 50 mg uncoated tablet 122691000036104 Doxycycline (Sandoz) 122691000036104 Doxycycline (Sandoz) 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +74411000036107 Neutrogena T/Gel Therapeutic Plus Shampoo shampoo, 25 mL, bottle 46373 72311000036107 Neutrogena T/Gel Therapeutic Plus Shampoo shampoo, 25 mL 70251000036103 Neutrogena T/Gel Therapeutic Plus Shampoo shampoo 64978011000036100 Neutrogena T/Gel Therapeutic Plus Shampoo 64978011000036100 Neutrogena T/Gel Therapeutic Plus Shampoo 72321000036100 coal tar 0.5% + salicylic acid 2% shampoo, 25 mL 70261000036100 coal tar 0.5% + salicylic acid 2% shampoo 69800011000036102 coal tar + salicylic acid +737651000168107 Bisoprolol (Auro) 10 mg film-coated tablet, 28, blister pack 175915 737641000168105 Bisoprolol (Auro) 10 mg film-coated tablet, 28 737631000168101 Bisoprolol (Auro) 10 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +1059991000168104 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 42, blister pack 234479 1059981000168102 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 42 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910911000168100 rosuvastatin 10 mg tablet, 42 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +77328011000036101 Water for Injections (AstraZeneca) injection solution, 50 x 5 mL ampoules 48350 76744011000036108 Water for Injections (AstraZeneca) injection solution, 50 x 5 mL ampoules 76157011000036107 Water for Injections (AstraZeneca) injection solution, 5 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78325011000036104 water for injections injection, 50 x 5 mL ampoules 77607011000036102 water for injections injection, 5 mL ampoule 77431011000036101 water for injections +20027011000036102 Monoplus 10/12.5 uncoated tablet, 30, blister pack 68967 13261011000036109 Monoplus 10/12.5 uncoated tablet, 30 6543011000036100 Monoplus 10/12.5 uncoated tablet 28581000168101 Monoplus 10/12.5 28581000168101 Monoplus 10/12.5 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +82382011000036105 Duocover 75 mg/100 mg film-coated tablet, 14, blister pack 151075 82171011000036103 Duocover 75 mg/100 mg film-coated tablet, 14 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82545011000036105 clopidogrel 75 mg + aspirin 100 mg tablet, 14 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +19484011000036108 Trusopt 2% eye drops solution, 5 mL, bottle 55022 12761011000036109 Trusopt 2% eye drops solution, 5 mL 6055011000036104 Trusopt 2% eye drops solution 3516011000036107 Trusopt 3516011000036107 Trusopt 27338011000036107 dorzolamide 2% eye drops, 5 mL 22691011000036100 dorzolamide 2% eye drops 21898011000036103 dorzolamide +898851000168101 Nicotinell Peppermint 2 mg lozenge, 216, blister pack 276925 898841000168103 Nicotinell Peppermint 2 mg lozenge, 216 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 898831000168107 nicotine 2 mg lozenge, 216 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +19843011000036105 Endep 50 mg film-coated tablet, 50, bottle 64424 13094011000036104 Endep 50 mg film-coated tablet, 50 6378011000036106 Endep 50 mg film-coated tablet 4195011000036109 Endep 4195011000036109 Endep 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +783731000168108 Palexia IR 100 mg film-coated tablet, 60, blister pack 165318 783721000168105 Palexia IR 100 mg film-coated tablet, 60 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783711000168103 tapentadol 100 mg tablet, 60 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +79680011000036106 Norfloxacin (GenRx) 400 mg film-coated tablet, 14, bottle 155546 13784011000036100 Norfloxacin (GenRx) 400 mg film-coated tablet, 14 7070011000036106 Norfloxacin (GenRx) 400 mg film-coated tablet 3282011000036102 Norfloxacin (GenRx) 3282011000036102 Norfloxacin (GenRx) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +1109221000168109 Nicotinell Tropical Fruit 2 mg chewing gum, 180, blister pack 279617 1109211000168102 Nicotinell Tropical Fruit 2 mg chewing gum, 180 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71512011000036109 nicotine 2 mg gum, 180 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1103471000168107 Quetiapine (Pharmacor) 300 mg film-coated tablet, 20, blister pack 204824 1103461000168101 Quetiapine (Pharmacor) 300 mg film-coated tablet, 20 172881000036104 Quetiapine (Pharmacor) 300 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +959431000168103 Levetiracetam (Apo) 750 mg film-coated tablet, 60, blister pack 156325 959421000168101 Levetiracetam (Apo) 750 mg film-coated tablet, 60 959411000168108 Levetiracetam (Apo) 750 mg film-coated tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +20014011000036100 Dicloxsig 500 mg capsule, 24, bottle 162745 13250011000036109 Dicloxsig 500 mg capsule, 24 6532011000036108 Dicloxsig 500 mg capsule 4055011000036107 Dicloxsig 4055011000036107 Dicloxsig 27777011000036108 dicloxacillin 500 mg capsule, 24 23107011000036101 dicloxacillin 500 mg capsule 21398011000036101 dicloxacillin +20014011000036100 Dicloxsig 500 mg capsule, 24, bottle 68835 13250011000036109 Dicloxsig 500 mg capsule, 24 6532011000036108 Dicloxsig 500 mg capsule 4055011000036107 Dicloxsig 4055011000036107 Dicloxsig 27777011000036108 dicloxacillin 500 mg capsule, 24 23107011000036101 dicloxacillin 500 mg capsule 21398011000036101 dicloxacillin +753281000168108 Oxycodone (ZP) 20 mg hard capsule, 20, bottle 227835 753271000168105 Oxycodone (ZP) 20 mg hard capsule, 20 753261000168104 Oxycodone (ZP) 20 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +875891000168106 Bispro 3.75 mg film-coated tablet, 42, blister pack 130179 875881000168108 Bispro 3.75 mg film-coated tablet, 42 875761000168108 Bispro 3.75 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 875871000168105 bisoprolol fumarate 3.75 mg tablet, 42 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +1013971000168108 Aripiprazole (Generic Health) 30 mg uncoated tablet, 30, blister pack 176802 1013961000168102 Aripiprazole (Generic Health) 30 mg uncoated tablet, 30 1013951000168104 Aripiprazole (Generic Health) 30 mg uncoated tablet 1013811000168106 Aripiprazole (Generic Health) 1013811000168106 Aripiprazole (Generic Health) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +19300011000036105 Leucovorin Calcium (Pfizer (Perth)) 100 mg/10 mL injection solution, 10 x 10 mL vials 49312 12590011000036103 Leucovorin Calcium (Pfizer (Perth)) 100 mg/10 mL injection solution, 10 x 10 mL vials 4449011000036101 Leucovorin Calcium (Pfizer (Perth)) 100 mg/10 mL injection solution, 10 mL vial 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 27223011000036109 folinic acid 100 mg/10 mL injection, 10 x 10 mL vials 23576011000036101 folinic acid 100 mg/10 mL injection, vial 21617011000036108 folinic acid +146101000036104 Candesartan Cilexetil (Pharmacor) 32 mg uncoated tablet, 30, blister pack 195469 145201000036104 Candesartan Cilexetil (Pharmacor) 32 mg uncoated tablet, 30 143741000036107 Candesartan Cilexetil (Pharmacor) 32 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +104331000036108 Irbesartan/HCTZ 300/12.5 (RBX) film-coated tablet, 30, blister pack 190460 102381000036101 Irbesartan/HCTZ 300/12.5 (RBX) film-coated tablet, 30 99231000036105 Irbesartan/HCTZ 300/12.5 (RBX) film-coated tablet 56941000168104 Irbesartan/HCTZ 300/12.5 (RBX) 56941000168104 Irbesartan/HCTZ 300/12.5 (RBX) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +20494011000036105 Doxycycline (Terry White Chemists) 100 mg uncoated tablet, 7, blister pack 78600 13694011000036107 Doxycycline (Terry White Chemists) 100 mg uncoated tablet, 7 6976011000036104 Doxycycline (Terry White Chemists) 100 mg uncoated tablet 4107011000036101 Doxycycline (Terry White Chemists) 4107011000036101 Doxycycline (Terry White Chemists) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +80959011000036109 Calamine Aqueous (David Craig) cream, 500 g, jar 14194 80503011000036109 Calamine Aqueous (David Craig) cream, 500 g 80168011000036109 Calamine Aqueous (David Craig) cream 80138011000036104 Calamine Aqueous (David Craig) 80138011000036104 Calamine Aqueous (David Craig) 81598011000036107 calamine 4% + zinc oxide 3% cream, 500 g 81267011000036104 calamine 4% + zinc oxide 3% cream 81211011000036108 calamine + zinc oxide +654081000168107 Methylpred 40 mg powder for injection, 5 vials 145028 654071000168109 Methylpred 40 mg powder for injection, 5 vials 654051000168100 Methylpred 40 mg powder for injection, 40 mg vial 653921000168105 Methylpred 653921000168105 Methylpred 654061000168103 methylprednisolone 40 mg injection, 5 vials 22146011000036102 methylprednisolone 40 mg injection, vial 21605011000036100 methylprednisolone +61278011000036109 Dimetapp Headcold and Flu sugar coated tablet, 4, blister pack 77894 57214011000036105 Dimetapp Headcold and Flu sugar coated tablet, 4 54239011000036109 Dimetapp Headcold and Flu sugar coated tablet 53561011000036107 Dimetapp Headcold and Flu 53561011000036107 Dimetapp Headcold and Flu 52900011000036104 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +20978011000036107 Zimstat 40 mg film-coated tablet, 30, bottle 95680 14124011000036100 Zimstat 40 mg film-coated tablet, 30 7401011000036104 Zimstat 40 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +933239231000036100 Glimepiride (Pharmacor) 1 mg uncoated tablet, 10, blister pack 156402 933236351000036107 Glimepiride (Pharmacor) 1 mg uncoated tablet, 10 933234541000036109 Glimepiride (Pharmacor) 1 mg uncoated tablet 933234221000036103 Glimepiride (Pharmacor) 933234221000036103 Glimepiride (Pharmacor) 925413011000036101 glimepiride 1 mg tablet, 10 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +1060071000168103 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 84, blister pack 234479 1060061000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 84 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911031000168103 rosuvastatin 10 mg tablet, 84 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1034351000168105 Atomoxetine (GXP) 80 mg hard capsule, 28, blister pack 234855 1034341000168108 Atomoxetine (GXP) 80 mg hard capsule, 28 1034291000168105 Atomoxetine (GXP) 80 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +782041000168107 Pregabalin (SZ) 75 mg hard capsule, 56, blister pack 210044 782031000168103 Pregabalin (SZ) 75 mg hard capsule, 56 782021000168101 Pregabalin (SZ) 75 mg hard capsule 781921000168106 Pregabalin (SZ) 781921000168106 Pregabalin (SZ) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +52727011000036103 Finasta 5 mg film-coated tablet, 30, blister pack 127409 52539011000036108 Finasta 5 mg film-coated tablet, 30 52407011000036100 Finasta 5 mg film-coated tablet 52392011000036108 Finasta 52392011000036108 Finasta 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +1109181000168101 Cloap 75/100 uncoated tablet, 7, blister pack 219058 1109171000168104 Cloap 75/100 uncoated tablet, 7 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82553011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 7 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +756341000168104 Pramipexole ER (Apo) 375 microgram modified release tablet, 30, blister pack 225622 756331000168108 Pramipexole ER (Apo) 375 microgram modified release tablet, 30 756301000168101 Pramipexole ER (Apo) 375 microgram modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 87813011000036101 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 30 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +18529011000036106 Lisinobell 5 mg uncoated tablet, 30, bottle 107312 11364011000036107 Lisinobell 5 mg uncoated tablet, 30 4605011000036107 Lisinobell 5 mg uncoated tablet 3209011000036108 Lisinobell 3209011000036108 Lisinobell 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +875731000168100 Bispro 1.25 mg film-coated tablet, 56, blister pack 130177 875721000168103 Bispro 1.25 mg film-coated tablet, 56 875611000168103 Bispro 1.25 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 46793011000036105 bisoprolol fumarate 1.25 mg tablet, 56 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +44431011000036102 Gonal-F (10 x 37.5 units (2.73 microgram) ampoules, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 71933 41887011000036103 Gonal-F (10 x 37.5 units (2.73 microgram) ampoules, 10 x 1 mL inert diluent ampoules), 1 pack 634161000168100 Gonal-F (inert substance) diluent, 1 mL ampoule 1371000168105 Gonal-F 1371000168105 Gonal-F 46690011000036106 follitropin alfa 37.5 units (2.73 microgram) injection [10 x 37.5 units ampoules] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +44431011000036102 Gonal-F (10 x 37.5 units (2.73 microgram) ampoules, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 71933 41887011000036103 Gonal-F (10 x 37.5 units (2.73 microgram) ampoules, 10 x 1 mL inert diluent ampoules), 1 pack 40242011000036109 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units ampoule 1371000168105 Gonal-F 1371000168105 Gonal-F 46690011000036106 follitropin alfa 37.5 units (2.73 microgram) injection [10 x 37.5 units ampoules] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 45267011000036109 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units ampoule 21352011000036107 follitropin alfa +725931000168104 TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches 725921000168102 TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches 725901000168106 TYR Cooler 15 oral liquid solution, 130 mL pouch 961000168104 TYR Cooler 15 961000168104 TYR Cooler 15 725911000168109 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 130 mL pouches 725891000168107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 130 mL pouch 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +890311000168106 Bansep 40 mg film-coated tablet, 100, bottle 173491 890301000168108 Bansep 40 mg film-coated tablet, 100 841051000168106 Bansep 40 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890291000168107 atorvastatin 40 mg tablet, 100 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +18816011000036106 Glimel 5 mg uncoated tablet, 100, blister pack 17646 12136011000036102 Glimel 5 mg uncoated tablet, 100 5481011000036101 Glimel 5 mg uncoated tablet 2996011000036106 Glimel 2996011000036106 Glimel 27720011000036106 glibenclamide 5 mg tablet, 100 23055011000036107 glibenclamide 5 mg tablet 21911011000036104 glibenclamide +59661000036109 Prioten 30 mg uncoated tablet, 28, blister pack 176385 59141000036100 Prioten 30 mg uncoated tablet, 28 58421000036105 Prioten 30 mg uncoated tablet 58101000036109 Prioten 58101000036109 Prioten 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +851241000168102 Entecavir (Apotex) 500 microgram film-coated tablet, 30, blister pack 217581 851221000168108 Entecavir (Apotex) 500 microgram film-coated tablet, 30 851201000168104 Entecavir (Apotex) 500 microgram film-coated tablet 851191000168102 Entecavir (Apotex) 851191000168102 Entecavir (Apotex) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +963541000168101 Aripiprazole (Apo) 20 mg uncoated tablet, 30, bottle 152932 869931000168108 Aripiprazole (Apo) 20 mg uncoated tablet, 30 869921000168105 Aripiprazole (Apo) 20 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +19497011000036101 Mobilis 20 mg hard capsule, 25, blister pack 55281 12773011000036103 Mobilis 20 mg hard capsule, 25 6067011000036100 Mobilis 20 mg hard capsule 25271000168109 Mobilis 25271000168109 Mobilis 27763011000036106 piroxicam 20 mg capsule, 25 23094011000036103 piroxicam 20 mg capsule 21531011000036103 piroxicam +61415011000036109 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 82433 57340011000036104 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 100 mL 54280011000036106 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 5 mL 53225011000036108 Ibuprofen (Soul Pattinson) 53225011000036108 Ibuprofen (Soul Pattinson) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +20901011000036107 Diazepam (DP) 5 mg uncoated tablet, 50, blister pack 93550 14059011000036108 Diazepam (DP) 5 mg uncoated tablet, 50 7337011000036108 Diazepam (DP) 5 mg uncoated tablet 3164011000036105 Diazepam (DP) 3164011000036105 Diazepam (DP) 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +928970011000036109 Valaciclovir (Apo) 500 mg film-coated tablet, 10, blister pack 158911 928331011000036107 Valaciclovir (Apo) 500 mg film-coated tablet, 10 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +941561000168105 Pravastatin (Pharmacor) 80 mg uncoated tablet, 30, blister pack 145173 941551000168108 Pravastatin (Pharmacor) 80 mg uncoated tablet, 30 941541000168106 Pravastatin (Pharmacor) 80 mg uncoated tablet 941531000168102 Pravastatin (Pharmacor) 941531000168102 Pravastatin (Pharmacor) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +868741000168107 Simipex XR 375 microgram modified release tablet, 30, blister pack 225592 868731000168103 Simipex XR 375 microgram modified release tablet, 30 868701000168105 Simipex XR 375 microgram modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 87813011000036101 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 30 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +69575011000036104 Agarol Vanilla 4.83 mL/15 mL oral liquid emulsion, 500 mL, bottle 62657 67375011000036105 Agarol Vanilla 4.83 mL/15 mL oral liquid emulsion, 500 mL 65634011000036103 Agarol Vanilla 4.83 mL/15 mL oral liquid emulsion, 15 mL 64959011000036105 Agarol 64959011000036105 Agarol 71915011000036108 liquid paraffin 4.83 mL/15 mL oral liquid, 500 mL 70245011000036107 liquid paraffin 4.83 mL/15 mL oral liquid 33623011000036103 liquid paraffin +656651000168102 Famciclovir (AN) 125 mg film-coated tablet, 40, blister pack 195175 656641000168104 Famciclovir (AN) 125 mg film-coated tablet, 40 656631000168108 Famciclovir (AN) 125 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +799941000168103 Abyraz 20 mg uncoated tablet, 56, blister pack 159505 799931000168107 Abyraz 20 mg uncoated tablet, 56 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787721000168102 aripiprazole 20 mg tablet, 56 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +902941000168102 Candesartan (Actavis) 32 mg uncoated tablet, 30, bottle 195498 902921000168108 Candesartan (Actavis) 32 mg uncoated tablet, 30 902911000168101 Candesartan (Actavis) 32 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +59757011000036107 Tarka 2/180 modified release tablet, 50, blister pack 104663 55702011000036109 Tarka 2/180 modified release tablet, 50 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63098011000036104 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 50 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +50307011000036104 Accu-Chek Integra diagnostic strip, 51, bottle 107421 49540011000036103 Accu-Chek Integra diagnostic strip, 51 48641011000036104 Accu-Chek Integra diagnostic strip 17871000168106 Accu-Chek Integra 17871000168106 Accu-Chek Integra 51479011000036101 glucose indicator blood diagnostic strip, 51 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +84284011000036104 Cold and Flu Day and Night (Chemmart) (16 x Day tablets, 8 x Night tablets), 24, blister pack 133722 83977011000036101 Cold and Flu Day and Night (Chemmart) (16 x Day tablets, 8 x Night tablets), 24 83614011000036101 Cold and Flu Day and Night (Day) (Chemmart) uncoated tablet 61391000168108 Cold and Flu Day and Night (Chemmart) 61501000168106 Cold and Flu Day and Night (Day) (Chemmart) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +84284011000036104 Cold and Flu Day and Night (Chemmart) (16 x Day tablets, 8 x Night tablets), 24, blister pack 133722 83977011000036101 Cold and Flu Day and Night (Chemmart) (16 x Day tablets, 8 x Night tablets), 24 83615011000036102 Cold and Flu Day and Night (Night) (Chemmart) uncoated tablet 61391000168108 Cold and Flu Day and Night (Chemmart) 61621000168103 Cold and Flu Day and Night (Night) (Chemmart) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +748461000168107 Morphine MR (CH) 60 mg modified release tablet, 20, blister pack 225431 748451000168105 Morphine MR (CH) 60 mg modified release tablet, 20 748441000168108 Morphine MR (CH) 60 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 27108011000036105 morphine sulfate pentahydrate 60 mg modified release tablet, 20 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +1014291000168100 Valsartan (Apotex) 320 mg film-coated tablet, 14, blister pack 185860 1014281000168103 Valsartan (Apotex) 320 mg film-coated tablet, 14 1014251000168105 Valsartan (Apotex) 320 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63183011000036100 valsartan 320 mg tablet, 14 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +1065691000168101 Febridol Co uncoated tablet, 24, bottle 196355 56358011000036101 Febridol Co uncoated tablet, 24 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +920714011000036103 Frusemide (Sandoz) 20 mg/2 mL injection, 5 x 2 mL ampoules 106463 920356011000036103 Frusemide (Sandoz) 20 mg/2 mL injection, 5 x 2 mL ampoules 920126011000036106 Frusemide (Sandoz) 20 mg/2 mL injection, 2 mL ampoule 920076011000036100 Frusemide (Sandoz) 920076011000036100 Frusemide (Sandoz) 26762011000036103 furosemide (frusemide) 20 mg/2 mL injection, 5 x 2 mL ampoules 22149011000036106 furosemide (frusemide) 20 mg/2 mL injection, ampoule 21329011000036103 furosemide (frusemide) +697381000168106 Vascalace 1.25 mg capsule, 30, bottle 203718 697371000168108 Vascalace 1.25 mg capsule, 30 697361000168102 Vascalace 1.25 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +705941000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, pump pack 705891000168104 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 705881000168102 glycerol 10% + cetomacrogol aqueous cream, 500 mL 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +870591000168101 Atomerra 80 mg hard capsule, 7, blister pack 234815 870581000168104 Atomerra 80 mg hard capsule, 7 870571000168102 Atomerra 80 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +19398011000036109 Sabril 500 mg powder for oral liquid, 60 sachets 52985 12683011000036104 Sabril 500 mg powder for oral liquid, 60 sachets 4723011000036107 Sabril 500 mg powder for oral liquid, 500 mg sachet 3802011000036106 Sabril 3802011000036106 Sabril 27284011000036101 vigabatrin 500 mg powder for oral liquid, 60 sachets 22639011000036109 vigabatrin 500 mg powder for oral liquid, sachet 21376011000036108 vigabatrin +1108581000168104 Midazolam (Claris) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 216025 1108571000168102 Midazolam (Claris) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1108561000168108 Midazolam (Claris) 5 mg/5 mL injection solution, 5 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +1031221000168106 Aten 50 mg film-coated tablet, 98, blister pack 197716 1031211000168104 Aten 50 mg film-coated tablet, 98 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031201000168102 atenolol 50 mg tablet, 98 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +50654011000036106 Strattera 100 mg hard capsule, 7, blister pack 146413 49678011000036105 Strattera 100 mg hard capsule, 7 48815011000036101 Strattera 100 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +20636011000036109 3TC 300 mg film-coated tablet, 30, bottle 81359 13816011000036107 3TC 300 mg film-coated tablet, 30 7102011000036109 3TC 300 mg film-coated tablet 3566011000036108 3TC 3566011000036108 3TC 27947011000036104 lamivudine 300 mg tablet, 30 23271011000036103 lamivudine 300 mg tablet 21665011000036104 lamivudine +739941000168109 Ranitidine (AN) 150 mg film-coated tablet, 14, blister pack 148523 739931000168100 Ranitidine (AN) 150 mg film-coated tablet, 14 739921000168103 Ranitidine (AN) 150 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +61265011000036107 Harmonise 2 mg film-coated tablet, 8, blister pack 77564 57201011000036105 Harmonise 2 mg film-coated tablet, 8 54233011000036106 Harmonise 2 mg film-coated tablet 53476011000036104 Harmonise 53476011000036104 Harmonise 63824011000036103 loperamide hydrochloride 2 mg tablet, 8 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +789211000168105 Abisart 75 mg film-coated tablet, 14, bottle 214578 789201000168107 Abisart 75 mg film-coated tablet, 14 98741000036103 Abisart 75 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 777201000168108 irbesartan 75 mg tablet, 14 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +701401000168105 Lansoprazole ODT (Apo) 15 mg orally disintegrating tablet, 28, blister pack 216788 701391000168108 Lansoprazole ODT (Apo) 15 mg orally disintegrating tablet, 28 701361000168101 Lansoprazole ODT (Apo) 15 mg orally disintegrating tablet 701281000168101 Lansoprazole ODT (Apo) 701281000168101 Lansoprazole ODT (Apo) 79818011000036103 lansoprazole 15 mg orally disintegrating tablet, 28 79747011000036107 lansoprazole 15 mg orally disintegrating tablet 21491011000036101 lansoprazole +795611000168105 Famciclovir (Auro) 500 mg film-coated tablet, 20, blister pack 195182 795601000168107 Famciclovir (Auro) 500 mg film-coated tablet, 20 113501000036106 Famciclovir (Auro) 500 mg film-coated tablet 112681000036107 Famciclovir (Auro) 112681000036107 Famciclovir (Auro) 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +664991000168104 Remifentanil (Alphapharm) 1 mg powder for injection, 5 vials 163901 664981000168102 Remifentanil (Alphapharm) 1 mg powder for injection, 5 vials 664931000168103 Remifentanil (Alphapharm) 1 mg powder for injection, vial 664921000168101 Remifentanil (Alphapharm) 664921000168101 Remifentanil (Alphapharm) 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +82365011000036100 Irinotecan Hydrochloride Trihydrate (Alphapharm) 40 mg/2 mL concentrated injection, 2 mL vial 148579 82154011000036103 Irinotecan Hydrochloride Trihydrate (Alphapharm) 40 mg/2 mL concentrated injection, 2 mL vial 82021011000036107 Irinotecan Hydrochloride Trihydrate (Alphapharm) 40 mg/2 mL concentrated injection, 2 mL vial 81987011000036101 Irinotecan Hydrochloride Trihydrate (Alphapharm) 81987011000036101 Irinotecan Hydrochloride Trihydrate (Alphapharm) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +104731000036109 Irbesartan/HCT 300/25 (Sandoz) film-coated tablet, 30, blister pack 174731 101911000036101 Irbesartan/HCT 300/25 (Sandoz) film-coated tablet, 30 99311000036107 Irbesartan/HCT 300/25 (Sandoz) film-coated tablet 18011000168107 Irbesartan/HCT 300/25 (Sandoz) 18011000168107 Irbesartan/HCT 300/25 (Sandoz) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1022541000168106 Maltofer Syrup 185 mg (iron 50 mg)/5 mL oral liquid, 150 mL, bottle 230643 1022531000168102 Maltofer Syrup 185 mg (iron 50 mg)/5 mL oral liquid, 150 mL 1022511000168107 Maltofer Syrup 185 mg (iron 50 mg)/5 mL oral liquid, 5 mL 1022491000168102 Maltofer Syrup 1022491000168102 Maltofer Syrup 1022521000168100 iron polymaltose 185 mg (iron 50 mg)/5 mL oral liquid, 150 mL 1022501000168109 iron polymaltose 185 mg (iron 50 mg)/5 mL oral liquid 21803011000036105 iron polymaltose +20477011000036108 Seroquel 300 mg film-coated tablet, 60, blister pack 78361 13677011000036105 Seroquel 300 mg film-coated tablet, 60 6960011000036106 Seroquel 300 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +928921011000036101 Tramadol Hydrochloride SR (SCP) 100 mg modified release tablet, 20, blister pack 154383 928283011000036107 Tramadol Hydrochloride SR (SCP) 100 mg modified release tablet, 20 927920011000036103 Tramadol Hydrochloride SR (SCP) 100 mg modified release tablet 27661000168105 Tramadol Hydrochloride SR (SCP) 27661000168105 Tramadol Hydrochloride SR (SCP) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +926839011000036101 Sedagel oral gel, 30 g, tube 18898 926235011000036107 Sedagel oral gel, 30 g 925688011000036107 Sedagel oral gel 925515011000036109 Sedagel 925515011000036109 Sedagel 927347011000036106 choline salicylate 8.7% + menthol 0.057% + cetalkonium chloride 0.01% oral gel, 30 g 926997011000036109 choline salicylate 8.7% + menthol 0.057% + cetalkonium chloride 0.01% oral gel 926960011000036105 salicylic acid + menthol + cetalkonium chloride +922071000168101 Topiramate (GenRx) 25 mg film-coated tablet, 60, blister pack 124644 922061000168107 Topiramate (GenRx) 25 mg film-coated tablet, 60 922051000168105 Topiramate (GenRx) 25 mg film-coated tablet 922041000168108 Topiramate (GenRx) 922041000168108 Topiramate (GenRx) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +656331000168104 Mirtazapine ODT (AN) 15 mg orally disintegrating tablet, 30, blister pack 183407 656321000168102 Mirtazapine ODT (AN) 15 mg orally disintegrating tablet, 30 656311000168109 Mirtazapine ODT (AN) 15 mg orally disintegrating tablet 656241000168102 Mirtazapine ODT (AN) 656241000168102 Mirtazapine ODT (AN) 47681000036105 mirtazapine 15 mg orally disintegrating tablet, 30 47581000036109 mirtazapine 15 mg orally disintegrating tablet 21463011000036102 mirtazapine +821601000168102 Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe 100517 821591000168109 Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe 821571000168108 Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe 56051000168103 Q-Vax 56051000168103 Q-Vax 821581000168106 Q fever vaccine injection, 0.5 mL syringe 821561000168102 Q fever vaccine injection, 0.5 mL syringe 821551000168104 Q fever vaccine +875251000168100 Bisoprolol (AN) 1.25 mg film-coated tablet, 100, blister pack 175919 875241000168102 Bisoprolol (AN) 1.25 mg film-coated tablet, 100 875191000168102 Bisoprolol (AN) 1.25 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 46789011000036109 bisoprolol fumarate 1.25 mg tablet, 100 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1057101000168104 Atorvastatin (Ran) 40 mg film-coated tablet, 30, blister pack 179827 1057091000168109 Atorvastatin (Ran) 40 mg film-coated tablet, 30 1057081000168106 Atorvastatin (Ran) 40 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +69009011000036107 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 3 sachets 138697 66811011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 3 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71441011000036103 paracetamol 1 g powder for oral liquid, 3 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +171761000036108 Foradile 12 microgram powder for inhalation, 10 capsules, blister pack 58673 171661000036102 Foradile 12 microgram powder for inhalation, 10 capsules 171591000036108 Foradile 12 microgram powder for inhalation, 1 capsule 3058011000036103 Foradile 3058011000036103 Foradile 171671000036105 formoterol (eformoterol) fumarate dihydrate 12 microgram powder for inhalation, 10 capsules 171601000036101 formoterol (eformoterol) fumarate dihydrate 12 microgram powder for inhalation, 1 capsule 21358011000036105 formoterol (eformoterol) +60781011000036106 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years colour free 250 mg/5 mL oral liquid suspension, 100 mL, bottle 55119 56739011000036106 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years colour free 250 mg/5 mL oral liquid suspension, 100 mL 54059011000036101 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years colour free 250 mg/5 mL oral liquid suspension, 5 mL 50521000168102 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years 50521000168102 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years 63542011000036105 paracetamol 250 mg/5 mL oral liquid, 100 mL 62009011000036101 paracetamol 250 mg/5 mL oral liquid 21433011000036107 paracetamol +34673011000036102 Invega 9 mg modified release tablet, 7, blister pack 130717 34259011000036104 Invega 9 mg modified release tablet, 7 33989011000036108 Invega 9 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35127011000036103 paliperidone 9 mg modified release tablet, 7 34857011000036103 paliperidone 9 mg modified release tablet 34837011000036104 paliperidone +973591000168100 Pregabalin (GH) 75 mg hard capsule, 14, blister pack 215683 973581000168103 Pregabalin (GH) 75 mg hard capsule, 14 973571000168101 Pregabalin (GH) 75 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +990851000168106 Metformin (Apotex) 850 mg film-coated tablet, 60, blister pack 157218 990841000168109 Metformin (Apotex) 850 mg film-coated tablet, 60 990831000168100 Metformin (Apotex) 850 mg film-coated tablet 990741000168103 Metformin (Apotex) 990741000168103 Metformin (Apotex) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +904791000168101 Candesartan (CH) 8 mg uncoated tablet, 28, blister pack 195368 904781000168104 Candesartan (CH) 8 mg uncoated tablet, 28 904761000168108 Candesartan (CH) 8 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 904771000168102 candesartan cilexetil 8 mg tablet, 28 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +705621000168100 Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g, jar 14198 705611000168107 Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g 705581000168100 Salicylic Acid 5% in Aqueous Cream (David Craig) cream 44701000168108 Salicylic Acid 5% in Aqueous Cream (David Craig) 44701000168108 Salicylic Acid 5% in Aqueous Cream (David Craig) 705601000168109 salicylic acid 5% + aqueous cream, 100 g 705561000168109 salicylic acid 5% + aqueous cream 69824011000036101 salicylic acid + aqueous cream +1082691000168105 Atorvastatin (ZP) 80 mg film-coated tablet, 10, blister pack 217182 1082681000168107 Atorvastatin (ZP) 80 mg film-coated tablet, 10 1082511000168102 Atorvastatin (ZP) 80 mg film-coated tablet 1082501000168100 Atorvastatin (ZP) 1082501000168100 Atorvastatin (ZP) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +20417011000036103 Baclofen (Terry White Chemists) 10 mg tablet, 100, bottle 77571 13624011000036103 Baclofen (Terry White Chemists) 10 mg tablet, 100 6907011000036108 Baclofen (Terry White Chemists) 10 mg tablet 3186011000036100 Baclofen (Terry White Chemists) 3186011000036100 Baclofen (Terry White Chemists) 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +941481000168100 Frusemide High Dose (Winthrop) 250 mg/25 mL intravenous infusion injection, 25 mL ampoule 144482 941471000168103 Frusemide High Dose (Winthrop) 250 mg/25 mL intravenous infusion injection, 25 mL ampoule 941451000168107 Frusemide High Dose (Winthrop) 250 mg/25 mL intravenous infusion injection, 25 mL ampoule 941441000168105 Frusemide High Dose (Winthrop) 941441000168105 Frusemide High Dose (Winthrop) 941461000168109 furosemide (frusemide) 250 mg/25 mL injection, 25 mL ampoule 37896011000036104 furosemide (frusemide) 250 mg/25 mL injection, ampoule 21329011000036103 furosemide (frusemide) +932891000168105 Alecensa 150 mg hard capsule, 4 x 56, blister packs 272115 932881000168107 Alecensa 150 mg hard capsule, 4 x 56 932781000168103 Alecensa 150 mg hard capsule 932741000168108 Alecensa 932741000168108 Alecensa 932871000168109 alectinib 150 mg capsule, 4 x 56 932771000168101 alectinib 150 mg capsule 932761000168107 alectinib +757121000168106 Palexia SR 25 mg modified release tablet, 7, blister pack 229737 757111000168104 Palexia SR 25 mg modified release tablet, 7 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757101000168102 tapentadol 25 mg modified release tablet, 7 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +84374011000036101 Loratadine (Pharmacist Formula) 10 mg uncoated tablet, 30, blister pack 166228 84067011000036102 Loratadine (Pharmacist Formula) 10 mg uncoated tablet, 30 83691011000036103 Loratadine (Pharmacist Formula) 10 mg uncoated tablet 83591011000036107 Loratadine (Pharmacist Formula) 83591011000036107 Loratadine (Pharmacist Formula) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +79628011000036104 Tamoxifen (GenRx) 20 mg uncoated tablet, 60, bottle 153122 13507011000036106 Tamoxifen (GenRx) 20 mg uncoated tablet, 60 6789011000036108 Tamoxifen (GenRx) 20 mg uncoated tablet 3691011000036105 Tamoxifen (GenRx) 3691011000036105 Tamoxifen (GenRx) 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +1104201000168101 Alepam 30 mg uncoated tablet, 1000, bottle 17573 1104191000168104 Alepam 30 mg uncoated tablet, 1000 32246011000036103 Alepam 30 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 1104181000168102 oxazepam 30 mg tablet, 1000 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +990691000168100 Amoxy/Clav 875/125 (Apo) film-coated tablet, 2, blister pack 255080 990681000168103 Amoxy/Clav 875/125 (Apo) film-coated tablet, 2 990671000168101 Amoxy/Clav 875/125 (Apo) film-coated tablet 990661000168107 Amoxy/Clav 875/125 (Apo) 990661000168107 Amoxy/Clav 875/125 (Apo) 913921000168101 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 2 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +66631000036104 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate application, 125 mL, bottle 77398 64421000036106 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate application, 125 mL 60761000036102 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate application 60501000036105 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate 60501000036105 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate 78318011000036104 chlorhexidine gluconate 0.5% + ethanol 58.13% application, 125 mL 77604011000036108 chlorhexidine gluconate 0.5% + ethanol 58.13% application 69801011000036109 chlorhexidine + ethanol +804281000168102 Aczicrit 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 147846 804271000168100 Aczicrit 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 804181000168109 Aczicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924127011000036106 epoetin lambda 3000 units/0.3 mL injection, 6 x 0.3 mL syringes 923953011000036100 epoetin lambda 3000 units/0.3 mL injection, syringe 923930011000036107 epoetin lambda +79058011000036107 Paclitaxel (Actavis) 150 mg/25 mL concentrated injection, 25 mL vial 148034 78836011000036106 Paclitaxel (Actavis) 150 mg/25 mL concentrated injection, 25 mL vial 78646011000036104 Paclitaxel (Actavis) 150 mg/25 mL concentrated injection, 25 mL vial 78596011000036102 Paclitaxel (Actavis) 78596011000036102 Paclitaxel (Actavis) 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +932811000168101 Alecensa 150 mg hard capsule, 56, blister pack 932801000168104 Alecensa 150 mg hard capsule, 56 932781000168103 Alecensa 150 mg hard capsule 932741000168108 Alecensa 932741000168108 Alecensa 932791000168100 alectinib 150 mg capsule, 56 932771000168101 alectinib 150 mg capsule 932761000168107 alectinib +52775011000036107 Mersyndol Caplet uncoated tablet, 2, blister pack 56535 52585011000036101 Mersyndol Caplet uncoated tablet, 2 52432011000036107 Mersyndol Caplet uncoated tablet 2221000168108 Mersyndol Caplet 2221000168108 Mersyndol Caplet 52896011000036105 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 2 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +765821000168102 Desvenlafaxine MR (Apo) 50 mg modified release tablet, 7, blister pack 218307 765811000168109 Desvenlafaxine MR (Apo) 50 mg modified release tablet, 7 765801000168106 Desvenlafaxine MR (Apo) 50 mg modified release tablet 765791000168105 Desvenlafaxine MR (Apo) 765791000168105 Desvenlafaxine MR (Apo) 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +91811000036101 Gabapentin (Pfizer) 400 mg hard capsule, 100, blister pack 80336 90351000036101 Gabapentin (Pfizer) 400 mg hard capsule, 100 88071000036108 Gabapentin (Pfizer) 400 mg hard capsule 87631000036104 Gabapentin (Pfizer) 87631000036104 Gabapentin (Pfizer) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +928852011000036103 Ramibell 2.5 mg hard capsule, 30, blister pack 134795 928214011000036107 Ramibell 2.5 mg hard capsule, 30 927873011000036103 Ramibell 2.5 mg hard capsule 927827011000036106 Ramibell 927827011000036106 Ramibell 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +690851000168107 Ranitidine (GH) 300 mg film-coated tablet, 30, blister pack 219142 690841000168105 Ranitidine (GH) 300 mg film-coated tablet, 30 690831000168101 Ranitidine (GH) 300 mg film-coated tablet 690821000168104 Ranitidine (GH) 690821000168104 Ranitidine (GH) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +990711000168102 Amoxy/Clav 875/125 (Apo) film-coated tablet, 10, blister pack 255080 990701000168100 Amoxy/Clav 875/125 (Apo) film-coated tablet, 10 990671000168101 Amoxy/Clav 875/125 (Apo) film-coated tablet 990661000168107 Amoxy/Clav 875/125 (Apo) 990661000168107 Amoxy/Clav 875/125 (Apo) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +21218011000036107 Roximycin 300 mg film-coated tablet, 5, bottle 99940 14351011000036105 Roximycin 300 mg film-coated tablet, 5 7633011000036105 Roximycin 300 mg film-coated tablet 4346011000036103 Roximycin 4346011000036103 Roximycin 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +60609011000036104 Demazin Cold Relief Syrup Blue oral liquid solution, 200 mL, bottle 18813 56567011000036108 Demazin Cold Relief Syrup Blue oral liquid solution, 200 mL 53976011000036101 Demazin Cold Relief Syrup Blue oral liquid solution, 5 mL 5951000168104 Demazin Cold Relief Syrup 5951000168104 Demazin Cold Relief Syrup 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +988541000168108 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 10, blister pack 193082 988531000168104 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 10 817321000168102 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 63319011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 10 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +43762011000036109 Septanest 4% / 1 in 100 000 injection solution, 10 x 1.7 mL cartridges 101544 41125011000036108 Septanest 4% / 1 in 100 000 injection solution, 10 x 1.7 mL cartridges 39837011000036103 Septanest 4% / 1 in 100 000 injection solution, 1.7 mL cartridge 54871000168108 Septanest 4% / 1 in 100 000 54871000168108 Septanest 4% / 1 in 100 000 46107011000036106 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, 10 x 1.7 mL cartridges 44988011000036102 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +18374011000036107 Voxam 100 mg film-coated tablet, 30, blister pack 111782 11435011000036109 Voxam 100 mg film-coated tablet, 30 5248011000036100 Voxam 100 mg film-coated tablet 3185011000036107 Voxam 3185011000036107 Voxam 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +68975011000036105 Nurofen Period Pain 200 mg film-coated tablet, 10, blister pack 134618 66777011000036102 Nurofen Period Pain 200 mg film-coated tablet, 10 65504011000036102 Nurofen Period Pain 200 mg film-coated tablet 24371000168100 Nurofen Period Pain 24371000168100 Nurofen Period Pain 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61342011000036104 Panadol Mini Cap 500 mg gelatin coated tablet, 8, blister pack 81007 57267011000036103 Panadol Mini Cap 500 mg gelatin coated tablet, 8 54256011000036104 Panadol Mini Cap 500 mg gelatin coated tablet 25261000168103 Panadol Mini Cap 25261000168103 Panadol Mini Cap 63846011000036108 paracetamol 500 mg tablet, 8 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18091011000036101 Alendro Once Weekly 70 mg uncoated tablet, 4, blister pack 100691 11155011000036107 Alendro Once Weekly 70 mg uncoated tablet, 4 5723011000036101 Alendro Once Weekly 70 mg uncoated tablet 9171000168107 Alendro Once Weekly 9171000168107 Alendro Once Weekly 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +654401000168105 Simvastatin (AN) 80 mg film-coated tablet, 30, blister pack 170528 654391000168108 Simvastatin (AN) 80 mg film-coated tablet, 30 654381000168105 Simvastatin (AN) 80 mg film-coated tablet 654281000168101 Simvastatin (AN) 654281000168101 Simvastatin (AN) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +926916011000036107 Xatral SR 10 mg modified release tablet, 60, blister pack 81900 926310011000036100 Xatral SR 10 mg modified release tablet, 60 925752011000036106 Xatral SR 10 mg modified release tablet 33861000168103 Xatral SR 33861000168103 Xatral SR 927401011000036103 alfuzosin hydrochloride 10 mg modified release tablet, 60 927041011000036104 alfuzosin hydrochloride 10 mg modified release tablet 926977011000036100 alfuzosin +1065611000168105 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 24, blister pack 190420 1065601000168107 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 24 1065551000168105 Analgesic Calmative (Discount Drug Stores) uncoated tablet 1065541000168108 Analgesic Calmative (Discount Drug Stores) 1065541000168108 Analgesic Calmative (Discount Drug Stores) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +19226011000036105 Cisplatin (DBL) 100 mg/100 mL injection solution, 100 mL vial 47276 12516011000036104 Cisplatin (DBL) 100 mg/100 mL injection solution, 100 mL vial 5036011000036107 Cisplatin (DBL) 100 mg/100 mL injection solution, 100 mL vial 3785011000036102 Cisplatin (DBL) 3785011000036102 Cisplatin (DBL) 27166011000036105 cisplatin 100 mg/100 mL injection, 100 mL vial 22528011000036105 cisplatin 100 mg/100 mL injection, vial 21771011000036102 cisplatin +82352011000036103 Zyprexa Relprevv (1 x 300 mg vial, 1 x 3 mL diluent vial), 1 pack, composite pack 143657 82139011000036101 Zyprexa Relprevv (1 x 300 mg vial, 1 x 3 mL diluent vial), 1 pack 631991000168107 Zyprexa Relprevv (inert substance) diluent, 3 mL vial 10631000168105 Zyprexa Relprevv 10631000168105 Zyprexa Relprevv 82530011000036100 olanzapine 300 mg modified release injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 631981000168109 inert substance diluent, 3 mL vial 21220011000036103 inert substance +82352011000036103 Zyprexa Relprevv (1 x 300 mg vial, 1 x 3 mL diluent vial), 1 pack, composite pack 143657 82139011000036101 Zyprexa Relprevv (1 x 300 mg vial, 1 x 3 mL diluent vial), 1 pack 82007011000036105 Zyprexa Relprevv (olanzapine 300 mg) modified release injection, 300 mg vial 10631000168105 Zyprexa Relprevv 10631000168105 Zyprexa Relprevv 82530011000036100 olanzapine 300 mg modified release injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 82437011000036107 olanzapine 300 mg modified release injection, vial 21485011000036103 olanzapine +1091321000168106 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 12, blister pack 285250 1091311000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 12 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +787201000168103 Palladone XL 32 mg modified release capsule, 30, bottle 116609 787191000168101 Palladone XL 32 mg modified release capsule, 30 787141000168109 Palladone XL 32 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 787181000168104 hydromorphone hydrochloride 32 mg modified release capsule, 30 787131000168100 hydromorphone hydrochloride 32 mg modified release capsule 21480011000036107 hydromorphone +82348011000036102 Epiramax 25 mg film-coated tablet, 60, blister pack 135552 82131011000036100 Epiramax 25 mg film-coated tablet, 60 82001011000036102 Epiramax 25 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +60241011000036109 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 203513 56200011000036104 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack 53975011000036108 Canesten Clotrimazole 1% cream 53501011000036106 Canesoral Duo 4270011000036105 Canesten Clotrimazole 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +60241011000036109 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 134639 56200011000036104 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack 53975011000036108 Canesten Clotrimazole 1% cream 53501011000036106 Canesoral Duo 4270011000036105 Canesten Clotrimazole 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +60241011000036109 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 163461 56200011000036104 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack 53975011000036108 Canesten Clotrimazole 1% cream 53501011000036106 Canesoral Duo 4270011000036105 Canesten Clotrimazole 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +60241011000036109 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 203513 56200011000036104 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack 53839011000036104 Canesoral 150 mg hard capsule 53501011000036106 Canesoral Duo 53220011000036104 Canesoral 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +60241011000036109 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 134639 56200011000036104 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack 53839011000036104 Canesoral 150 mg hard capsule 53501011000036106 Canesoral Duo 53220011000036104 Canesoral 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +60241011000036109 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 163461 56200011000036104 Canesoral Duo (1 x Canesoral capsule, 1 x Canesten Clotrimazole cream), 1 pack 53839011000036104 Canesoral 150 mg hard capsule 53501011000036106 Canesoral Duo 53220011000036104 Canesoral 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +714371000168107 Mirtazapine (Auro) 45 mg film-coated tablet, 30, blister pack 183394 714351000168103 Mirtazapine (Auro) 45 mg film-coated tablet, 30 714341000168100 Mirtazapine (Auro) 45 mg film-coated tablet 714231000168102 Mirtazapine (Auro) 714231000168102 Mirtazapine (Auro) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +823611000168103 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 221720 823601000168101 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 823531000168109 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 0.8 mL syringe 2391000168100 Clexane 2391000168100 Clexane 27374011000036103 enoxaparin sodium 80 mg/0.8 mL injection, 10 x 0.8 mL syringes 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +954221000168104 Trandolapril (Terry White Chemists) 1 mg capsule, 28, blister pack 135975 954211000168106 Trandolapril (Terry White Chemists) 1 mg capsule, 28 954201000168108 Trandolapril (Terry White Chemists) 1 mg capsule 954161000168103 Trandolapril (Terry White Chemists) 954161000168103 Trandolapril (Terry White Chemists) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +941391000168106 Frusemide (Winthrop) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 144480 941381000168108 Frusemide (Winthrop) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 941371000168105 Frusemide (Winthrop) 20 mg/2 mL injection solution, 2 mL ampoule 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 26762011000036103 furosemide (frusemide) 20 mg/2 mL injection, 5 x 2 mL ampoules 22149011000036106 furosemide (frusemide) 20 mg/2 mL injection, ampoule 21329011000036103 furosemide (frusemide) +885721000168109 Warfarin (Blooms The Chemist) 5 mg tablet, 50, bottle 225723 885711000168102 Warfarin (Blooms The Chemist) 5 mg tablet, 50 885701000168100 Warfarin (Blooms The Chemist) 5 mg tablet 885631000168104 Warfarin (Blooms The Chemist) 885631000168104 Warfarin (Blooms The Chemist) 27095011000036106 warfarin sodium 5 mg tablet, 50 22464011000036101 warfarin sodium 5 mg tablet 21248011000036104 warfarin +50539011000036104 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 14, blister pack 131918 49576011000036101 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 14 48778011000036103 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet 48261011000036105 Zolpidem Tartrate (Pharmacor) 48261011000036105 Zolpidem Tartrate (Pharmacor) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +988521000168102 Cafex 100 mg uncoated tablet, 96, blister pack 174161 988511000168109 Cafex 100 mg uncoated tablet, 96 988391000168108 Cafex 100 mg uncoated tablet 988381000168105 Cafex 988381000168105 Cafex 988501000168106 caffeine 100 mg tablet, 96 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +838591000168100 EllaOne 30 mg tablet, 1, blister pack 219535 838581000168103 EllaOne 30 mg tablet, 1 838561000168107 EllaOne 30 mg tablet 837981000168105 EllaOne 837981000168105 EllaOne 838571000168101 ulipristal acetate 30 mg tablet, 1 838551000168105 ulipristal acetate 30 mg tablet 838541000168108 ulipristal +894261000168109 Methotrexate (Accord) 50 mg/2 mL injection solution, 2 mL vial 213736 894251000168107 Methotrexate (Accord) 50 mg/2 mL injection solution, 2 mL vial 894241000168105 Methotrexate (Accord) 50 mg/2 mL injection solution, 2 mL vial 894041000168101 Methotrexate (Accord) 894041000168101 Methotrexate (Accord) 648971000168103 methotrexate 50 mg/2 mL injection, 2 mL vial 22291011000036103 methotrexate 50 mg/2 mL injection, vial 21342011000036105 methotrexate +939231000168103 Ondansetron (Sandoz) 4 mg film-coated tablet, 10, blister pack 132572 939221000168101 Ondansetron (Sandoz) 4 mg film-coated tablet, 10 939191000168107 Ondansetron (Sandoz) 4 mg film-coated tablet 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +1117131000168105 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 28, blister pack 158169 1117121000168107 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 28 1117071000168107 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 922595011000036107 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 28 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +145941000036105 Elmore Oil liniment, 250 mL, bottle 107300 144661000036104 Elmore Oil liniment, 250 mL 143481000036105 Elmore Oil liniment 143471000036108 Elmore Oil 143471000036108 Elmore Oil 144671000036107 eucalyptus radiata 3.86% + melaleuca oil 4.25% liniment, 250 mL 143491000036107 eucalyptus radiata 3.86% + melaleuca oil 4.25% liniment 146461000036107 eucalyptus radiata + melaleuca oil +872831000168101 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 19451 872821000168104 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 872771000168106 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 929877011000036102 Synthamin 9 Amino Acid 5.5% with Electrolytes 929877011000036102 Synthamin 9 Amino Acid 5.5% with Electrolytes 872811000168106 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle 872761000168100 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle 77430011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +789451000168107 Oxycodone (HX) 10 mg modified release tablet, 60, bottle 153603 789441000168105 Oxycodone (HX) 10 mg modified release tablet, 60 789391000168106 Oxycodone (HX) 10 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +1099861000168108 Ibuprofen (Apohealth) 200 mg soft capsule, 40, blister pack 279997 1099851000168106 Ibuprofen (Apohealth) 200 mg soft capsule, 40 1099771000168105 Ibuprofen (Apohealth) 200 mg soft capsule 1099761000168104 Ibuprofen (Apohealth) 1099761000168104 Ibuprofen (Apohealth) 63932011000036104 ibuprofen 200 mg capsule, 40 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +18575011000036108 Oroxine 200 microgram uncoated tablet, 200, blister pack 125500 11804011000036108 Oroxine 200 microgram uncoated tablet, 200 5111011000036102 Oroxine 200 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 28023011000036109 levothyroxine sodium 200 microgram tablet, 200 23346011000036103 levothyroxine sodium 200 microgram tablet 21577011000036109 levothyroxine +1031451000168102 Atomoxetine (GXP) 25 mg hard capsule, 7, blister pack 234817 1031441000168104 Atomoxetine (GXP) 25 mg hard capsule, 7 1031431000168108 Atomoxetine (GXP) 25 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +19882011000036108 Isoptin 120 mg film-coated tablet, 100, blister pack 65505 13129011000036101 Isoptin 120 mg film-coated tablet, 100 6412011000036107 Isoptin 120 mg film-coated tablet 4411000168109 Isoptin 4411000168109 Isoptin 27568011000036100 verapamil hydrochloride 120 mg tablet, 100 22907011000036105 verapamil hydrochloride 120 mg tablet 21287011000036109 verapamil +973631000168100 Pregabalin (GH) 75 mg hard capsule, 20, blister pack 215683 973621000168103 Pregabalin (GH) 75 mg hard capsule, 20 973571000168101 Pregabalin (GH) 75 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +60074011000036102 Ear Clear for Ear Ache ear drops, 10 mL, bottle 125789 56035011000036107 Ear Clear for Ear Ache ear drops, 10 mL 53765011000036105 Ear Clear for Ear Ache ear drops 53147011000036104 Ear Clear for Ear Ache 53147011000036104 Ear Clear for Ear Ache 63202011000036108 phenazone 5.4% + benzocaine 1.4% ear drops, 10 mL 61886011000036106 phenazone 5.4% + benzocaine 1.4% ear drops 61772011000036101 phenazone + benzocaine +61577011000036100 Pain (Capital Chemist) uncoated tablet, 24, blister pack 94553 57499011000036108 Pain (Capital Chemist) uncoated tablet, 24 54328011000036109 Pain (Capital Chemist) uncoated tablet 53159011000036109 Pain (Capital Chemist) 53159011000036109 Pain (Capital Chemist) 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +787121000168103 Palladone XL 12 mg modified release capsule, 30, bottle 116606 787111000168105 Palladone XL 12 mg modified release capsule, 30 787061000168109 Palladone XL 12 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 787101000168107 hydromorphone hydrochloride 12 mg modified release capsule, 30 787051000168107 hydromorphone hydrochloride 12 mg modified release capsule 21480011000036107 hydromorphone +160291000036108 Montelukast (Sandoz) 10 mg film-coated tablet, 28, blister pack 184830 159051000036109 Montelukast (Sandoz) 10 mg film-coated tablet, 28 158291000036100 Montelukast (Sandoz) 10 mg film-coated tablet 124191000036104 Montelukast (Sandoz) 124191000036104 Montelukast (Sandoz) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +19334011000036108 Dimetriose 2.5 mg hard capsule, 8, blister pack 50583 12622011000036103 Dimetriose 2.5 mg hard capsule, 8 5918011000036109 Dimetriose 2.5 mg hard capsule 3964011000036107 Dimetriose 3964011000036107 Dimetriose 27240011000036104 gestrinone 2.5 mg capsule, 8 22600011000036105 gestrinone 2.5 mg capsule 21328011000036106 gestrinone +20811011000036102 Famotidine (Chemmart) 40 mg film-coated tablet, 30, blister pack 91510 13974011000036100 Famotidine (Chemmart) 40 mg film-coated tablet, 30 7260011000036106 Famotidine (Chemmart) 40 mg film-coated tablet 3154011000036102 Famotidine (Chemmart) 3154011000036102 Famotidine (Chemmart) 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +806531000168105 Mycostatin Oral Drops 100 000 units/mL oral liquid suspension, 24 mL, bottle 200793 806521000168107 Mycostatin Oral Drops 100 000 units/mL oral liquid suspension, 24 mL 806511000168100 Mycostatin Oral Drops 100 000 units/mL oral liquid suspension 806501000168103 Mycostatin Oral Drops 806501000168103 Mycostatin Oral Drops 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +931525011000036103 Onbrez Breezhaler 150 microgram powder for inhalation, 30 capsules, blister pack 160172 930686011000036100 Onbrez Breezhaler 150 microgram powder for inhalation, 30 capsules 930011011000036103 Onbrez Breezhaler 150 microgram powder for inhalation, 1 capsule 18301000168106 Onbrez Breezhaler 18301000168106 Onbrez Breezhaler 932402011000036106 indacaterol 150 microgram powder for inhalation, 30 capsules 931850011000036105 indacaterol 150 microgram powder for inhalation, 1 capsule 931806011000036104 indacaterol +17813011000036106 Anthel 125 mg uncoated tablet, 6, bottle 17584 12119011000036104 Anthel 125 mg uncoated tablet, 6 4599011000036100 Anthel 125 mg uncoated tablet 3455011000036102 Anthel 3455011000036102 Anthel 26929011000036107 pyrantel 125 mg tablet, 6 22306011000036103 pyrantel 125 mg tablet 21475011000036105 pyrantel +812831000168109 Nuromol film-coated tablet, 2, blister pack 225322 812821000168106 Nuromol film-coated tablet, 2 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 812811000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 2 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +34788011000036108 Oxynorm 20 mg hard capsule, 60, blister pack 74141 34366011000036106 Oxynorm 20 mg hard capsule, 60 6719011000036106 Oxynorm 20 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +19432011000036105 Serevent Accuhaler 50 microgram/actuation powder for inhalation, 60 actuations, blister pack 53775 12714011000036108 Serevent Accuhaler 50 microgram/actuation powder for inhalation, 60 actuations 5243011000036105 Serevent Accuhaler 50 microgram/actuation powder for inhalation, actuation 62391000168102 Serevent Accuhaler 62391000168102 Serevent Accuhaler 27306011000036100 salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 22659011000036108 salmeterol 50 microgram/actuation powder for inhalation, actuation 21854011000036100 salmeterol +933211111000036105 Ablavar 3.66 g/15 mL injection solution, 10 x 15 mL vials 115546 933200001000036102 Ablavar 3.66 g/15 mL injection solution, 10 x 15 mL vials 933194411000036103 Ablavar 3.66 g/15 mL injection solution, 15 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933200011000036100 gadofosveset trisodium 3.66 g/15 mL injection, 10 x 15 mL vials 933194421000036105 gadofosveset trisodium 3.66 g/15 mL injection, vial 933216361000036104 gadofosveset +926674011000036107 Zelitrex 500 mg film-coated tablet, 2, blister pack 128739 926142011000036103 Zelitrex 500 mg film-coated tablet, 2 925639011000036108 Zelitrex 500 mg film-coated tablet 925537011000036106 Zelitrex 925537011000036106 Zelitrex 927316011000036103 valaciclovir 500 mg tablet, 2 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +890081000168103 Bansep 10 mg film-coated tablet, 28, bottle 173504 890071000168101 Bansep 10 mg film-coated tablet, 28 841211000168104 Bansep 10 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890061000168107 atorvastatin 10 mg tablet, 28 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +20649011000036104 Avelox IV 400 mg/250 mL intravenous infusion injection, 250 mL bottle 81598 13829011000036108 Avelox IV 400 mg/250 mL intravenous infusion injection, 250 mL bottle 7116011000036106 Avelox IV 400 mg/250 mL intravenous infusion injection, 250 mL bottle 8531000168106 Avelox IV 8531000168106 Avelox IV 27956011000036100 moxifloxacin 400 mg/250 mL injection, 250 mL bottle 23280011000036104 moxifloxacin 400 mg/250 mL injection, bottle 21765011000036109 moxifloxacin +73297011000036108 Jurnista 32 mg modified release tablet, 30, blister pack 141534 73095011000036106 Jurnista 32 mg modified release tablet, 30 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73493011000036103 hydromorphone hydrochloride 32 mg modified release tablet, 30 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +44315011000036102 ClindaTech 1% solution, 6 mL, bottle 66687 41782011000036102 ClindaTech 1% solution, 6 mL 40197011000036103 ClindaTech 1% solution 39609011000036105 ClindaTech 39609011000036105 ClindaTech 46588011000036100 clindamycin hydrochloride 1% solution, 6 mL 45230011000036102 clindamycin hydrochloride 1% solution 21255011000036108 clindamycin +925329011000036103 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 28, blister pack 165914 924865011000036104 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 28 924534011000036106 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +18130011000036109 Lincocin 600 mg/2 mL injection solution, 5 x 2 mL vials 12281 11715011000036106 Lincocin 600 mg/2 mL injection solution, 5 x 2 mL vials 5694011000036102 Lincocin 600 mg/2 mL injection solution, 2 mL vial 3225011000036102 Lincocin 3225011000036102 Lincocin 26744011000036102 lincomycin 600 mg/2 mL injection, 5 x 2 mL vials 22137011000036103 lincomycin 600 mg/2 mL injection, vial 21743011000036102 lincomycin +18691011000036108 Ondaz Zydis 4 mg wafer, 10, blister pack 116430 11520011000036108 Ondaz Zydis 4 mg wafer, 10 5305011000036105 Ondaz Zydis 4 mg wafer 51911000168109 Ondaz Zydis 51911000168109 Ondaz Zydis 27516011000036100 ondansetron 4 mg wafer, 10 22858011000036108 ondansetron 4 mg wafer 21545011000036100 ondansetron +105051000036104 Irbesartan HCT 300/12.5 (Winthrop) film-coated tablet, 30, blister pack 196957 102221000036105 Irbesartan HCT 300/12.5 (Winthrop) film-coated tablet, 30 98191000036105 Irbesartan HCT 300/12.5 (Winthrop) film-coated tablet 59981000168104 Irbesartan HCT 300/12.5 (Winthrop) 59981000168104 Irbesartan HCT 300/12.5 (Winthrop) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +789771000168109 Oxycontin 10 mg modified release tablet, 10, bottle 200037 789761000168103 Oxycontin 10 mg modified release tablet, 10 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789751000168100 oxycodone hydrochloride 10 mg modified release tablet, 10 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +716951000168109 Omepro 20 mg enteric capsule, 7, bottle 167314 716881000168108 Omepro 20 mg enteric capsule, 7 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716871000168105 omeprazole 20 mg enteric capsule, 7 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +971261000168109 Glivanib 100 mg hard capsule, 180, blister pack 285899 971251000168107 Glivanib 100 mg hard capsule, 180 971141000168102 Glivanib 100 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 828931000168107 imatinib 100 mg capsule, 180 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +18357011000036103 Amisulpride (Sandoz) 200 mg uncoated tablet, 60, blister pack 128993 11872011000036107 Amisulpride (Sandoz) 200 mg uncoated tablet, 60 5869011000036105 Amisulpride (Sandoz) 200 mg uncoated tablet 3432011000036109 Amisulpride (Sandoz) 3432011000036109 Amisulpride (Sandoz) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +885561000168106 Gastrolyte Raspberry effervescent tablet, 20, tube 171349 885551000168109 Gastrolyte Raspberry effervescent tablet, 20 885541000168107 Gastrolyte Raspberry effervescent tablet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +61393011000036103 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet, 20, blister pack 81958 57318011000036105 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet, 20 54271011000036107 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet 53563011000036108 Diarrhoea Relief (Pharmacy Health) 53563011000036108 Diarrhoea Relief (Pharmacy Health) 63806011000036101 loperamide hydrochloride 2.15 mg tablet, 20 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +1022381000168108 Allerid 5 mg/5 mL oral liquid solution, 100 mL, bottle 137661 1022371000168105 Allerid 5 mg/5 mL oral liquid solution, 100 mL 1022361000168104 Allerid 5 mg/5 mL oral liquid solution, 5 mL 1022351000168101 Allerid 1022351000168101 Allerid 28931000036101 cetirizine hydrochloride 5 mg/5 mL oral liquid, 100 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +50239011000036106 Dialamine powder for oral liquid, 400 g, can 49275011000036101 Dialamine powder for oral liquid, 400 g 48489011000036108 Dialamine powder for oral liquid 48326011000036102 Dialamine 48326011000036102 Dialamine 51267011000036101 essential amino acids formula with minerals and vitamin C powder for oral liquid, 400 g 50799011000036108 essential amino acids formula with minerals and vitamin C powder for oral liquid 50784011000036108 essential amino acids formula with minerals and vitamin C +786791000168103 Oxycodone MR (Apotex) 20 mg modified release tablet, 20, blister pack 214493 786781000168101 Oxycodone MR (Apotex) 20 mg modified release tablet, 20 786771000168104 Oxycodone MR (Apotex) 20 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +66471000036104 Aspro 320 mg uncoated tablet, 20, blister pack 66381 64381000036101 Aspro 320 mg uncoated tablet, 20 61031000036104 Aspro 320 mg uncoated tablet 3401000168109 Aspro 3401000168109 Aspro 64391000036104 aspirin 320 mg tablet, 20 61041000036109 aspirin 320 mg tablet 21719011000036107 aspirin +925203011000036104 Pravastat 40 mg uncoated tablet, 30, blister pack 156358 924740011000036101 Pravastat 40 mg uncoated tablet, 30 924447011000036107 Pravastat 40 mg uncoated tablet 924369011000036104 Pravastat 924369011000036104 Pravastat 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +1056921000168108 Atorvastatin (ZAZ) 40 mg film-coated tablet, 10, blister pack 185035 1056911000168101 Atorvastatin (ZAZ) 40 mg film-coated tablet, 10 1056901000168104 Atorvastatin (ZAZ) 40 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +77208011000036103 Liquid Vitamin E Micelle E (Bioglan) 115 mg (156 units)/mL application, 50 mL, bottle 134715 76624011000036103 Liquid Vitamin E Micelle E (Bioglan) 115 mg (156 units)/mL application, 50 mL 76070011000036102 Liquid Vitamin E Micelle E (Bioglan) 115 mg (156 units)/mL application 20931000168106 Liquid Vitamin E Micelle E (Bioglan) 20931000168106 Liquid Vitamin E Micelle E (Bioglan) 78177011000036103 d-alpha-tocopheryl acetate 115 mg (156 units)/mL application, 50 mL 77529011000036106 d-alpha-tocopheryl acetate 115 mg (156 units)/mL application 77464011000036107 d-alpha-tocopheryl acetate +924401000168108 Ramipril (SZ) 1.25 mg uncoated tablet, 30, blister pack 122016 924391000168106 Ramipril (SZ) 1.25 mg uncoated tablet, 30 924381000168108 Ramipril (SZ) 1.25 mg uncoated tablet 924371000168105 Ramipril (SZ) 924371000168105 Ramipril (SZ) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +804201000168105 Aczicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 147846 804191000168107 Aczicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 804181000168109 Aczicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924126011000036108 epoetin lambda 3000 units/0.3 mL injection, 0.3 mL syringe 923953011000036100 epoetin lambda 3000 units/0.3 mL injection, syringe 923930011000036107 epoetin lambda +44482011000036102 Tamoxifen (GenRx) 10 mg uncoated tablet, 60, blister pack 75586 41937011000036103 Tamoxifen (GenRx) 10 mg uncoated tablet, 60 40274011000036104 Tamoxifen (GenRx) 10 mg uncoated tablet 3691011000036105 Tamoxifen (GenRx) 3691011000036105 Tamoxifen (GenRx) 27309011000036109 tamoxifen 10 mg tablet, 60 22662011000036108 tamoxifen 10 mg tablet 21494011000036103 tamoxifen +938831000168108 Celecoxib (Ran) 200 mg hard capsule, 120, blister pack 212787 938821000168105 Celecoxib (Ran) 200 mg hard capsule, 120 938691000168108 Celecoxib (Ran) 200 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +925252011000036100 Sumatriptan (Terry White Chemists) 50 mg film-coated tablet, 4, blister pack 160189 924789011000036102 Sumatriptan (Terry White Chemists) 50 mg film-coated tablet, 4 924485011000036108 Sumatriptan (Terry White Chemists) 50 mg film-coated tablet 924373011000036109 Sumatriptan (Terry White Chemists) 924373011000036109 Sumatriptan (Terry White Chemists) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +817081000168101 Idaprex Arg 5 mg film-coated tablet, 30, bottle 194889 817071000168104 Idaprex Arg 5 mg film-coated tablet, 30 817061000168105 Idaprex Arg 5 mg film-coated tablet 817021000168100 Idaprex Arg 817021000168100 Idaprex Arg 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +19325011000036105 Glucophage 500 mg film-coated tablet, 100, blister pack 50468 12615011000036100 Glucophage 500 mg film-coated tablet, 100 5965011000036104 Glucophage 500 mg film-coated tablet 3898011000036106 Glucophage 3898011000036106 Glucophage 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +997131000168107 Pramipexole (Apotex) 125 microgram uncoated tablet, 30, blister pack 168557 997121000168109 Pramipexole (Apotex) 125 microgram uncoated tablet, 30 997111000168102 Pramipexole (Apotex) 125 microgram uncoated tablet 997101000168100 Pramipexole (Apotex) 997101000168100 Pramipexole (Apotex) 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +17890011000036104 Tagamet 200 mg film-coated tablet, 120, blister pack 13016 11890011000036101 Tagamet 200 mg film-coated tablet, 120 4536011000036104 Tagamet 200 mg film-coated tablet 3003011000036100 Tagamet 3003011000036100 Tagamet 27678011000036100 cimetidine 200 mg tablet, 120 23015011000036100 cimetidine 200 mg tablet 21427011000036101 cimetidine +782541000168101 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 100 vials 209478 782531000168105 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 100 vials 782421000168108 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 470 mg vial 782401000168104 Thiopental Sodium (Omegapharm) 782401000168104 Thiopental Sodium (Omegapharm) 782521000168107 thiopental sodium 470 mg injection, 100 vials 782411000168101 thiopental sodium 470 mg injection, vial 44938011000036109 thiopental +44692011000036103 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 93044 42141011000036105 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46902011000036107 follitropin alfa 150 units (10.92 microgram) injection [10 x 150 units vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44692011000036103 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 93044 42141011000036105 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46902011000036107 follitropin alfa 150 units (10.92 microgram) injection [10 x 150 units vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +52706011000036106 Paracetamol Extra Plus (Guardian) uncoated tablet, 20, blister pack 158227 52520011000036100 Paracetamol Extra Plus (Guardian) uncoated tablet, 20 52403011000036109 Paracetamol Extra Plus (Guardian) uncoated tablet 52380011000036108 Paracetamol Extra Plus (Guardian) 52380011000036108 Paracetamol Extra Plus (Guardian) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +52706011000036106 Paracetamol Extra Plus (Guardian) uncoated tablet, 20, blister pack 114674 52520011000036100 Paracetamol Extra Plus (Guardian) uncoated tablet, 20 52403011000036109 Paracetamol Extra Plus (Guardian) uncoated tablet 52380011000036108 Paracetamol Extra Plus (Guardian) 52380011000036108 Paracetamol Extra Plus (Guardian) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +61496011000036103 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 60 mL, bottle 92446 57421011000036101 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 60 mL 54298011000036109 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 63885011000036107 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 60 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +18297011000036102 Vincristine Sulfate (DBL) 1 mg/mL injection solution, 5 x 1 mL vials 16308 12100011000036107 Vincristine Sulfate (DBL) 1 mg/mL injection solution, 5 x 1 mL vials 5637011000036102 Vincristine Sulfate (DBL) 1 mg/mL injection solution, vial 3672011000036109 Vincristine Sulfate (DBL) 3672011000036109 Vincristine Sulfate (DBL) 26911011000036101 vincristine sulfate 1 mg/mL injection, 5 x 1 mL vials 22288011000036106 vincristine sulfate 1 mg/mL injection, vial 21749011000036104 vincristine +907121000168107 Celecoxib (BW) 200 mg hard capsule, 30, blister pack 196177 907111000168100 Celecoxib (BW) 200 mg hard capsule, 30 906951000168104 Celecoxib (BW) 200 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1105891000168109 Zolpidem (AN) 10 mg film-coated tablet, 30, blister pack 131917 1105881000168106 Zolpidem (AN) 10 mg film-coated tablet, 30 698831000168103 Zolpidem (AN) 10 mg film-coated tablet 698821000168101 Zolpidem (AN) 698821000168101 Zolpidem (AN) 51486011000036103 zolpidem tartrate 10 mg tablet, 30 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +104971000036109 Duloxetine (Terry White Chemists) 30 mg enteric capsule, 28, blister pack 217989 102141000036108 Duloxetine (Terry White Chemists) 30 mg enteric capsule, 28 98501000036105 Duloxetine (Terry White Chemists) 30 mg enteric capsule 97741000036104 Duloxetine (Terry White Chemists) 97741000036104 Duloxetine (Terry White Chemists) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +104971000036109 Duloxetine (Terry White Chemists) 30 mg enteric capsule, 28, blister pack 195366 102141000036108 Duloxetine (Terry White Chemists) 30 mg enteric capsule, 28 98501000036105 Duloxetine (Terry White Chemists) 30 mg enteric capsule 97741000036104 Duloxetine (Terry White Chemists) 97741000036104 Duloxetine (Terry White Chemists) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +43925011000036102 Pravastatin Sodium (GA) 10 mg film-coated tablet, 30, blister pack 139603 41417011000036108 Pravastatin Sodium (GA) 10 mg film-coated tablet, 30 39852011000036104 Pravastatin Sodium (GA) 10 mg film-coated tablet 39737011000036101 Pravastatin Sodium (GA) 39737011000036101 Pravastatin Sodium (GA) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +43925011000036102 Pravastatin Sodium (GA) 10 mg film-coated tablet, 30, blister pack 207992 41417011000036108 Pravastatin Sodium (GA) 10 mg film-coated tablet, 30 39852011000036104 Pravastatin Sodium (GA) 10 mg film-coated tablet 39737011000036101 Pravastatin Sodium (GA) 39737011000036101 Pravastatin Sodium (GA) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +84370011000036106 Fluconazole One (Pharmacist Formula) 150 mg hard capsule, 1, blister pack 165676 84063011000036106 Fluconazole One (Pharmacist Formula) 150 mg hard capsule, 1 83689011000036103 Fluconazole One (Pharmacist Formula) 150 mg hard capsule 55041000168105 Fluconazole One (Pharmacist Formula) 55041000168105 Fluconazole One (Pharmacist Formula) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +79028011000036108 Lucas' Papaw 3.9% ointment, 25 g, tube 13397 78817011000036102 Lucas' Papaw 3.9% ointment, 25 g 78635011000036105 Lucas' Papaw 3.9% ointment 78612011000036105 Lucas' Papaw 78612011000036105 Lucas' Papaw 79219011000036100 pawpaw 3.9% ointment, 25 g 79106011000036109 pawpaw 3.9% ointment 79089011000036107 pawpaw +933136011000036107 Elmendos 25 mg tablet, 21, bottle 98077 932932011000036103 Elmendos 25 mg tablet, 21 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46985011000036100 lamotrigine 25 mg tablet, 21 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +864651000168108 Amitriptyline (AN) 50 mg tablet, 250, bottle 232121 864641000168106 Amitriptyline (AN) 50 mg tablet, 250 864541000168105 Amitriptyline (AN) 50 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 862961000168107 amitriptyline hydrochloride 50 mg tablet, 250 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1095111000168104 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 100, blister pack 287306 1095101000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 100 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 1077431000168104 fexofenadine hydrochloride 180 mg tablet, 100 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +69493011000036100 Ear Clear for Swimmers ear drops solution, 40 mL, bottle 50555 67293011000036105 Ear Clear for Swimmers ear drops solution, 40 mL 65594011000036104 Ear Clear for Swimmers ear drops solution 65173011000036102 Ear Clear for Swimmers 65173011000036102 Ear Clear for Swimmers 71841011000036109 acetic acid 1.65% + isopropyl alcohol 63.3% ear drops, 40 mL 70209011000036103 acetic acid 1.65% + isopropyl alcohol 63.3% ear drops 69771011000036102 acetic acid + isopropyl alcohol +786881000168105 Oxycodone MR (Apotex) 30 mg modified release tablet, 28, blister pack 214487 786871000168107 Oxycodone MR (Apotex) 30 mg modified release tablet, 28 786841000168100 Oxycodone MR (Apotex) 30 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +1112511000168105 Allopurinol (TN) 100 mg uncoated tablet, 30, blister pack 269643 1112501000168107 Allopurinol (TN) 100 mg uncoated tablet, 30 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112491000168100 allopurinol 100 mg tablet, 30 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +714141000168103 Rixubis (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204769 714131000168107 Rixubis (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 714111000168102 Rixubis (inert substance) diluent, 5 mL vial 714001000168104 Rixubis 714001000168104 Rixubis 714121000168109 nonacog gamma 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +714141000168103 Rixubis (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204769 714131000168107 Rixubis (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 714101000168100 Rixubis (nonacog gamma 500 units) powder for injection, 500 units vial 714001000168104 Rixubis 714001000168104 Rixubis 714121000168109 nonacog gamma 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 714091000168105 nonacog gamma 500 units injection, vial 714081000168107 nonacog gamma +1040221000168101 Asthakast 4 mg chewable tablet, 28, blister pack 189219 1040211000168108 Asthakast 4 mg chewable tablet, 28 1040201000168105 Asthakast 4 mg chewable tablet 157791000036106 Asthakast 157791000036106 Asthakast 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +69022011000036109 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 12 sachets 140597 66824011000036106 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 12 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71439011000036100 paracetamol 1 g powder for oral liquid, 12 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +60862011000036100 Lorastyne Syrup 1 mg/mL oral liquid solution, 100 mL, bottle 59232 56816011000036105 Lorastyne Syrup 1 mg/mL oral liquid solution, 100 mL 54089011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution 27141000168100 Lorastyne Syrup 27141000168100 Lorastyne Syrup 63586011000036101 loratadine 1 mg/mL oral liquid, 100 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +898331000168104 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet, 30, bottle 195275 135241000036100 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet, 30 134431000036107 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet 63361000168102 Candesartan/HCT 32 mg/25 mg (Sandoz) 63361000168102 Candesartan/HCT 32 mg/25 mg (Sandoz) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +20032011000036101 Stromectol 3 mg uncoated tablet, 4, strip pack 69142 13264011000036107 Stromectol 3 mg uncoated tablet, 4 6546011000036106 Stromectol 3 mg uncoated tablet 3069011000036101 Stromectol 3069011000036101 Stromectol 27652011000036100 ivermectin 3 mg tablet, 4 22989011000036104 ivermectin 3 mg tablet 21548011000036106 ivermectin +847471000168103 Creon 10 000 enteric capsule, 100, bottle 158453 847461000168109 Creon 10 000 enteric capsule, 100 847441000168105 Creon 10 000 enteric capsule 847421000168104 Creon 10 000 847421000168104 Creon 10 000 847451000168107 lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule, 100 847431000168101 lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule 847131000168105 lipase + amylase + protease +847471000168103 Creon 10 000 enteric capsule, 100, bottle 67949 847461000168109 Creon 10 000 enteric capsule, 100 847441000168105 Creon 10 000 enteric capsule 847421000168104 Creon 10 000 847421000168104 Creon 10 000 847451000168107 lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule, 100 847431000168101 lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule 847131000168105 lipase + amylase + protease +61376011000036101 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution, 100 mL, bottle 81746 57301011000036103 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution, 100 mL 54266011000036107 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution 31111000168106 Dry Tickly Cough Mixture (Pharmacy Health) 31111000168106 Dry Tickly Cough Mixture (Pharmacy Health) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +82386011000036109 Duocover 75 mg/100 mg film-coated tablet, 30, blister pack 151075 82175011000036101 Duocover 75 mg/100 mg film-coated tablet, 30 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +52175011000036103 Aluminium Acetate Aqueous APF (extemporaneous) 0.05 mL/mL (equivalent to aluminium acetate 0.7%) lotion, 200 mL, poison bottle 52068011000036107 Aluminium Acetate Aqueous APF (extemporaneous) 0.05 mL/mL (equivalent to aluminium acetate 0.7%) lotion, 200 mL 51969011000036107 Aluminium Acetate Aqueous APF (extemporaneous) 0.05 mL/mL (equivalent to aluminium acetate 0.7%) lotion 51927011000036105 Aluminium Acetate Aqueous APF (extemporaneous) 51927011000036105 Aluminium Acetate Aqueous APF (extemporaneous) 52316011000036108 aluminium acetate solution 0.05 mL/mL (equivalent to aluminium acetate 0.7%) lotion, 200 mL 52248011000036108 aluminium acetate solution 0.05 mL/mL (equivalent to aluminium acetate 0.7%) lotion 52227011000036105 aluminium acetate solution +69159011000036108 Disprin Direct 300 mg chewable tablet, 6, strip pack 15356 66959011000036101 Disprin Direct 300 mg chewable tablet, 6 65492011000036103 Disprin Direct 300 mg chewable tablet 38641000168105 Disprin Direct 38641000168105 Disprin Direct 63608011000036108 aspirin 300 mg chewable tablet, 6 87371000036106 aspirin 300 mg chewable tablet 21719011000036107 aspirin +684641000168101 Clopidogrel/Aspirin 75/100 (Actavis) uncoated tablet, 30, blister pack 219056 684631000168105 Clopidogrel/Aspirin 75/100 (Actavis) uncoated tablet, 30 684621000168107 Clopidogrel/Aspirin 75/100 (Actavis) uncoated tablet 684611000168100 Clopidogrel/Aspirin 75/100 (Actavis) 684611000168100 Clopidogrel/Aspirin 75/100 (Actavis) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +699671000168108 Plegridy Titration Pack (1 x 63 microgram/0.5 mL syringe, 1 x 94 microgram/0.5 mL syringe), 1 pack 214198 699661000168102 Plegridy Titration Pack (1 x 63 microgram/0.5 mL syringe, 1 x 94 microgram/0.5 mL syringe), 1 pack 699481000168108 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL syringe 699641000168101 Plegridy Titration Pack 686381000168107 Plegridy 699651000168104 peginterferon beta-1a 63 microgram/0.5 mL injection [0.5 mL syringe] (&) peginterferon beta-1a 94 microgram/0.5 mL injection [0.5 mL syringe], 1 pack 699471000168105 peginterferon beta-1a 63 microgram/0.5 mL injection, syringe 698561000168109 peginterferon beta-1a +699671000168108 Plegridy Titration Pack (1 x 63 microgram/0.5 mL syringe, 1 x 94 microgram/0.5 mL syringe), 1 pack 214198 699661000168102 Plegridy Titration Pack (1 x 63 microgram/0.5 mL syringe, 1 x 94 microgram/0.5 mL syringe), 1 pack 699541000168102 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL syringe 699641000168101 Plegridy Titration Pack 686381000168107 Plegridy 699651000168104 peginterferon beta-1a 63 microgram/0.5 mL injection [0.5 mL syringe] (&) peginterferon beta-1a 94 microgram/0.5 mL injection [0.5 mL syringe], 1 pack 699531000168106 peginterferon beta-1a 94 microgram/0.5 mL injection, syringe 698561000168109 peginterferon beta-1a +870431000168104 Desven 50 mg modified release tablet, 1000, bottle 218066 870421000168102 Desven 50 mg modified release tablet, 1000 870351000168104 Desven 50 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 692701000168100 desvenlafaxine 50 mg modified release tablet, 1000 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1031131000168104 Aten 50 mg film-coated tablet, 56, blister pack 197716 1031121000168102 Aten 50 mg film-coated tablet, 56 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031111000168109 atenolol 50 mg tablet, 56 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1116761000168100 Telmisartan/Amlodipine 80/10 (Apo) uncoated tablet, 28, blister pack 276424 1116751000168102 Telmisartan/Amlodipine 80/10 (Apo) uncoated tablet, 28 1116741000168104 Telmisartan/Amlodipine 80/10 (Apo) uncoated tablet 1116691000168101 Telmisartan/Amlodipine 80/10 (Apo) 1116691000168101 Telmisartan/Amlodipine 80/10 (Apo) 932440011000036101 telmisartan 80 mg + amlodipine 10 mg tablet, 28 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +841011000168105 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack 132881 841001000168107 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack 840901000168100 Infanrix Hexa 10 microgram powder for injection, 10 microgram vial 12341000168106 Infanrix Hexa 12341000168106 Infanrix Hexa 840991000168106 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 828231000168104 Haemophilus influenzae type b conjugate (PRP-T) vaccine +841011000168105 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack 132881 841001000168107 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack 840891000168104 Infanrix Hexa injection suspension, 0.5 mL syringe 12341000168106 Infanrix Hexa 12341000168106 Infanrix Hexa 840991000168106 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack 836651000168107 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 836641000168105 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine +1025191000168100 Perindopril Combi LD 2.5/0.625 (Ardix) film-coated tablet, 10, bottle 269532 1025181000168103 Perindopril Combi LD 2.5/0.625 (Ardix) film-coated tablet, 10 1025171000168101 Perindopril Combi LD 2.5/0.625 (Ardix) film-coated tablet 1025161000168107 Perindopril Combi LD 2.5/0.625 (Ardix) 1025161000168107 Perindopril Combi LD 2.5/0.625 (Ardix) 727571000168104 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet, 10 22153011000036106 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +1083011000168103 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack 72724 683321000168101 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations 683291000168109 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, actuation 683281000168106 Flixonase Allergy and Hayfever 24 Hour 683281000168106 Flixonase Allergy and Hayfever 24 Hour 75487011000036103 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, 120 actuations 75089011000036100 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, actuation 861061000168102 fluticasone propionate +887591000168105 Cansartan HCTZ 32/12.5 uncoated tablet, 30, bottle 253376 887581000168107 Cansartan HCTZ 32/12.5 uncoated tablet, 30 887571000168109 Cansartan HCTZ 32/12.5 uncoated tablet 887431000168107 Cansartan HCTZ 32/12.5 887431000168107 Cansartan HCTZ 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +851721000168103 Metformin XR (Blooms The Chemist) 500 mg modified release tablet, 120, blister pack 197404 851711000168105 Metformin XR (Blooms The Chemist) 500 mg modified release tablet, 120 851701000168107 Metformin XR (Blooms The Chemist) 500 mg modified release tablet 851691000168107 Metformin XR (Blooms The Chemist) 851691000168107 Metformin XR (Blooms The Chemist) 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +954541000168107 Wellvone 250 mg film-coated tablet, 200, bottle 51673 954361000168100 Wellvone 250 mg film-coated tablet, 200 954301000168101 Wellvone 250 mg film-coated tablet 3057011000036104 Wellvone 3057011000036104 Wellvone 954351000168102 atovaquone 250 mg tablet, 200 954291000168102 atovaquone 250 mg tablet 21877011000036108 atovaquone +50573011000036100 Durotram XR (once a day) 300 mg modified release tablet, 3, blister pack 134823 49607011000036102 Durotram XR (once a day) 300 mg modified release tablet, 3 48788011000036108 Durotram XR (once a day) 300 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51510011000036108 tramadol hydrochloride 300 mg modified release tablet, 3 50988011000036106 tramadol hydrochloride 300 mg modified release tablet 21486011000036105 tramadol +37684011000036102 Genotropin Miniquick (7 x 600 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76616 36950011000036101 Genotropin Miniquick (7 x 600 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 36276011000036100 Genotropin Miniquick (somatropin 600 microgram) powder for injection, 600 microgram syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 38831011000036108 somatropin 600 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 38036011000036104 somatropin 600 microgram injection, syringe 21295011000036100 somatropin +37684011000036102 Genotropin Miniquick (7 x 600 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76616 36950011000036101 Genotropin Miniquick (7 x 600 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 38831011000036108 somatropin 600 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +816941000168105 Espler 25 mg film-coated tablet, 60, blister pack 231454 816931000168101 Espler 25 mg film-coated tablet, 60 816881000168106 Espler 25 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 777031000168105 eplerenone 25 mg tablet, 60 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +873151000168108 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags 19609 873141000168106 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags 873061000168106 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 49861000168104 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% 49861000168104 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% 873131000168102 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags 873051000168109 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 84407011000036108 alanine + arginine + glucose + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +921896011000036103 Exforge HCT 5/160/25 film-coated tablet, 7, blister pack 158162 921455011000036108 Exforge HCT 5/160/25 film-coated tablet, 7 921016011000036101 Exforge HCT 5/160/25 film-coated tablet 4531000168100 Exforge HCT 5/160/25 4531000168100 Exforge HCT 5/160/25 922583011000036107 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 7 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +77293011000036106 Painstop for Children Night-Time Pain Reliever oral liquid solution, 200 mL, bottle 20864 76709011000036103 Painstop for Children Night-Time Pain Reliever oral liquid solution, 200 mL 76129011000036101 Painstop for Children Night-Time Pain Reliever oral liquid solution, 5 mL 11911000168101 Painstop for Children Night-Time Pain Reliever 11911000168101 Painstop for Children Night-Time Pain Reliever 78223011000036105 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL + promethazine hydrochloride 6.5 mg/5 mL oral liquid, 200 mL 77551011000036108 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL + promethazine hydrochloride 6.5 mg/5 mL oral liquid 77466011000036104 paracetamol + codeine + promethazine +1035401000168104 Senega and Ammonia Mixture (Amcal) Cherry oral liquid, 500 mL, bottle 222489 1035391000168101 Senega and Ammonia Mixture (Amcal) Cherry oral liquid, 500 mL 1035341000168109 Senega and Ammonia Mixture (Amcal) Cherry oral liquid 81977011000036109 Senega and Ammonia Mixture (Amcal) 81977011000036109 Senega and Ammonia Mixture (Amcal) 81684011000036106 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 500 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +19081011000036103 Coumadin 5 mg uncoated tablet, 50, bottle 42279 12388011000036104 Coumadin 5 mg uncoated tablet, 50 5424011000036108 Coumadin 5 mg uncoated tablet 3322011000036101 Coumadin 3322011000036101 Coumadin 27095011000036106 warfarin sodium 5 mg tablet, 50 22464011000036101 warfarin sodium 5 mg tablet 21248011000036104 warfarin +19659011000036103 Floxapen 500 mg hard capsule, 24, blister pack 59777 12923011000036109 Floxapen 500 mg hard capsule, 24 6213011000036101 Floxapen 500 mg hard capsule 28271000168102 Floxapen 28271000168102 Floxapen 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +20430011000036109 Mobic 15 mg hard capsule, 30, tube 77701 13633011000036103 Mobic 15 mg hard capsule, 30 6916011000036108 Mobic 15 mg hard capsule 3572011000036102 Mobic 3572011000036102 Mobic 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +1023161000168108 Bambini Teething 8.7% oral gel, 15 g, tube 223918 1023151000168106 Bambini Teething 8.7% oral gel, 15 g 1023141000168109 Bambini Teething 8.7% oral gel 1023071000168103 Bambini Teething 1023071000168103 Bambini Teething 71369011000036103 choline salicylate 8.7% oral gel, 15 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +43608011000036104 Stilnox CR 12.5 mg modified release tablet, 10, blister pack 120713 41241011000036106 Stilnox CR 12.5 mg modified release tablet, 10 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46183011000036103 zolpidem tartrate 12.5 mg modified release tablet, 10 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +656411000168100 Mirtazapine (AN) 45 mg film-coated tablet, 30, blister pack 183400 656401000168103 Mirtazapine (AN) 45 mg film-coated tablet, 30 656391000168100 Mirtazapine (AN) 45 mg film-coated tablet 656371000168101 Mirtazapine (AN) 656371000168101 Mirtazapine (AN) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +703411000168109 Fentanyl (Aspen) 100 microgram/2 mL injection solution, 5 x 2 mL ampoules 170929 703401000168106 Fentanyl (Aspen) 100 microgram/2 mL injection solution, 5 x 2 mL ampoules 703391000168109 Fentanyl (Aspen) 100 microgram/2 mL injection solution, 2 mL ampoule 123941000036106 Fentanyl (Aspen) 123941000036106 Fentanyl (Aspen) 46121011000036108 fentanyl 100 microgram/2 mL injection, 5 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +806211000168102 Uptravi 1.4 mg film-coated tablet, 60, blister pack 234165 806201000168100 Uptravi 1.4 mg film-coated tablet, 60 806181000168101 Uptravi 1.4 mg film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 806191000168103 selexipag 1.4 mg tablet, 60 806171000168104 selexipag 1.4 mg tablet 805661000168108 selexipag +787521000168105 Arizole 15 mg uncoated tablet, 30, bottle 198189 787511000168103 Arizole 15 mg uncoated tablet, 30 787501000168101 Arizole 15 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +718321000168103 Clindamycin (BNM) 150 mg hard capsule, 24, blister pack 219946 718311000168105 Clindamycin (BNM) 150 mg hard capsule, 24 718301000168107 Clindamycin (BNM) 150 mg hard capsule 718291000168106 Clindamycin (BNM) 718291000168106 Clindamycin (BNM) 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +1005861000168108 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 195796 1005851000168106 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 1005841000168109 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule 710981000168100 Ropivacaine 0.2% (Kabi) 710981000168100 Ropivacaine 0.2% (Kabi) 1004501000168106 ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules 1004481000168102 ropivacaine hydrochloride 20 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +84391011000036106 PicoPrep powder for oral liquid, 2 x 15.55 g sachets 20508 84083011000036109 PicoPrep powder for oral liquid, 2 x 15.55 g sachets 83702011000036104 PicoPrep powder for oral liquid, 15.55 g sachet 83542011000036107 PicoPrep 83542011000036107 PicoPrep 84666011000036107 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 2 x 15.55 g sachets 84441011000036108 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 15.55 g sachet 84409011000036101 picosulfate + magnesium oxide heavy + citric acid +900048011000036102 Onetouch Verio diagnostic strip, 50, bottle 168007 900026011000036103 Onetouch Verio diagnostic strip, 50 900010011000036108 Onetouch Verio diagnostic strip 54311000168107 Onetouch Verio 54311000168107 Onetouch Verio 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +939471000168101 Celecoxib (Ranbaxy) 200 mg hard capsule, 10, blister pack 212788 939461000168107 Celecoxib (Ranbaxy) 200 mg hard capsule, 10 939451000168105 Celecoxib (Ranbaxy) 200 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +931506011000036100 Lamisil Athlete's Foot 1% cream, 15 g, tube 158219 930667011000036104 Lamisil Athlete's Foot 1% cream, 15 g 929999011000036106 Lamisil Athlete's Foot 1% cream 33401000168102 Lamisil Athlete's Foot 33401000168102 Lamisil Athlete's Foot 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +920201000168100 Citalopram (APL) 20 mg film-coated tablet, 28, blister pack 184687 920191000168103 Citalopram (APL) 20 mg film-coated tablet, 28 920181000168101 Citalopram (APL) 20 mg film-coated tablet 920141000168106 Citalopram (APL) 920141000168106 Citalopram (APL) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +885401000168109 Zurampic 200 mg film-coated tablet, 30, blister pack 236961 885391000168107 Zurampic 200 mg film-coated tablet, 30 885341000168104 Zurampic 200 mg film-coated tablet 885311000168103 Zurampic 885311000168103 Zurampic 885381000168109 lesinurad 200 mg tablet, 30 885331000168108 lesinurad 200 mg tablet 885321000168105 lesinurad +855921000168104 Entrip 10 mg film-coated tablet, 50, blister pack 232152 855911000168106 Entrip 10 mg film-coated tablet, 50 855901000168108 Entrip 10 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +44092011000036108 Fucidin IV (1 x 500 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 49738 41578011000036108 Fucidin IV (1 x 500 mg vial, 1 x 50 mL inert diluent vial), 1 pack 637081000168104 Fucidin IV (inert substance) diluent, 50 mL vial 36771000168108 Fucidin IV 36771000168108 Fucidin IV 46407011000036107 sodium fusidate 500 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +44092011000036108 Fucidin IV (1 x 500 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 49738 41578011000036108 Fucidin IV (1 x 500 mg vial, 1 x 50 mL inert diluent vial), 1 pack 40080011000036106 Fucidin IV (sodium fusidate 500 mg) powder for injection, 500 mg vial 36771000168108 Fucidin IV 36771000168108 Fucidin IV 46407011000036107 sodium fusidate 500 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 45138011000036103 sodium fusidate 500 mg injection, vial 21917011000036107 fusidate +66511000036109 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 200 mL, bottle 219524 64111000036107 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 200 mL 61371000036100 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 5 mL 59761000168105 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 59761000168105 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +66511000036109 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 200 mL, bottle 58284 64111000036107 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 200 mL 61371000036100 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 5 mL 59761000168105 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 59761000168105 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1104521000168108 Normison 10 mg uncoated tablet, 30, blister pack 41637 1104511000168101 Normison 10 mg uncoated tablet, 30 4641011000036102 Normison 10 mg uncoated tablet 2981011000036100 Normison 2981011000036100 Normison 924031000168109 temazepam 10 mg tablet, 30 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +1023001000168108 Ibuprofen (A) 200 mg film-coated tablet, 8, blister pack 161314 1022991000168107 Ibuprofen (A) 200 mg film-coated tablet, 8 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63308011000036100 ibuprofen 200 mg tablet, 8 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1056841000168106 Atorvastatin (ZAZ) 10 mg film-coated tablet, 30, blister pack 185029 1056831000168102 Atorvastatin (ZAZ) 10 mg film-coated tablet, 30 1056801000168109 Atorvastatin (ZAZ) 10 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +920705011000036101 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 14, blister pack 119091 920363011000036100 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 14 920131011000036104 Zolpidem Tartrate (GA) 10 mg film-coated tablet 920116011000036103 Zolpidem Tartrate (GA) 920116011000036103 Zolpidem Tartrate (GA) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +921912011000036106 Prograf-XL 500 microgram modified release capsule, 30, blister pack 158439 921471011000036109 Prograf-XL 500 microgram modified release capsule, 30 921020011000036106 Prograf-XL 500 microgram modified release capsule 6831000168108 Prograf-XL 6831000168108 Prograf-XL 922599011000036109 tacrolimus 500 microgram modified release capsule, 30 922098011000036104 tacrolimus 500 microgram modified release capsule 21380011000036104 tacrolimus +755771000168102 Vttack 200 mg film-coated tablet, 14, blister pack 206985 755761000168108 Vttack 200 mg film-coated tablet, 14 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46804011000036107 voriconazole 200 mg tablet, 14 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +807171000168101 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) uncoated tablet, 30, bottle 224329 807151000168105 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) uncoated tablet, 30 807141000168108 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) uncoated tablet 807131000168104 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) 807131000168104 Perindopril Arginine/Amlodipine 5/5 (Blooms The Chemist) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +889351000168104 Bosleer 125 mg film-coated tablet, 56, blister pack 235893 889341000168101 Bosleer 125 mg film-coated tablet, 56 889311000168100 Bosleer 125 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +73261011000036102 Fluconazole (Claris) 200 mg/100 mL injection solution, 100 mL vial 133468 73061011000036107 Fluconazole (Claris) 200 mg/100 mL injection solution, 100 mL vial 72951011000036102 Fluconazole (Claris) 200 mg/100 mL injection solution, 100 mL vial 72918011000036101 Fluconazole (Claris) 72918011000036101 Fluconazole (Claris) 27178011000036101 fluconazole 200 mg/100 mL injection, 100 mL vial 22540011000036105 fluconazole 200 mg/100 mL injection, vial 21365011000036105 fluconazole +1078031000168108 Atomoxetine (AN) 5 mg hard capsule, 7, blister pack 234828 1078021000168105 Atomoxetine (AN) 5 mg hard capsule, 7 1078011000168103 Atomoxetine (AN) 5 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 976311000168106 atomoxetine 5 mg capsule, 7 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +855031000168100 Algerika 100 mg hard capsule, 56, blister pack 229592 855021000168103 Algerika 100 mg hard capsule, 56 854941000168109 Algerika 100 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +1043831000168108 Pryzex 7.5 mg film-coated tablet, 7, blister pack 178987 1043821000168105 Pryzex 7.5 mg film-coated tablet, 7 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 933205081000036101 olanzapine 7.5 mg tablet, 7 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +933230161000036105 Targin 5/2.5 mg modified release tablet, 28, blister pack 156067 933223981000036105 Targin 5/2.5 mg modified release tablet, 28 923035011000036109 Targin 5/2.5 mg modified release tablet 20411000168109 Targin 5/2.5 mg 20411000168109 Targin 5/2.5 mg 933223991000036107 oxycodone hydrochloride 5 mg + naloxone hydrochloride 2.5 mg modified release tablet, 28 923973011000036102 oxycodone hydrochloride 5 mg + naloxone hydrochloride 2.5 mg modified release tablet 923931011000036100 oxycodone + naloxone +1059571000168107 Kevtam 500 mg film-coated tablet, 100, blister pack 278842 1059561000168101 Kevtam 500 mg film-coated tablet, 100 85322011000036104 Kevtam 500 mg film-coated tablet 85282011000036100 Kevtam 85282011000036100 Kevtam 46172011000036101 levetiracetam 500 mg tablet, 100 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +1089821000168104 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 20, blister pack 281501 1089811000168106 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 20 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813201000168105 paracetamol 500 mg + ibuprofen 200 mg tablet, 20 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +60713011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution, 120 mL, bottle 44453 56671011000036100 Claratyne Children's Peach 1 mg/mL oral liquid solution, 120 mL 54028011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63587011000036103 loratadine 1 mg/mL oral liquid, 120 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +1089901000168103 Dymafen film-coated tablet, 2, blister pack 282486 1089891000168102 Dymafen film-coated tablet, 2 1089881000168100 Dymafen film-coated tablet 1089871000168103 Dymafen 1089871000168103 Dymafen 812811000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 2 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1064971000168109 Paracode uncoated tablet, 24, blister pack 292799 1064961000168103 Paracode uncoated tablet, 24 1064911000168101 Paracode uncoated tablet 1064901000168104 Paracode 1064901000168104 Paracode 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +1092781000168101 Difflam Lozenge Raspberry Sugar Free lozenge, 24, blister pack 280644 1092771000168104 Difflam Lozenge Raspberry Sugar Free lozenge, 24 995881000168106 Difflam Lozenge Raspberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995731000168103 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +44731011000036109 Ovidrel 250 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 96037 42176011000036101 Ovidrel 250 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 40376011000036103 Ovidrel 250 microgram/0.5 mL injection solution, 0.5 mL syringe 4186011000036103 Ovidrel 4186011000036103 Ovidrel 46937011000036100 choriogonadotropin alfa 250 microgram/0.5 mL injection, 10 x 0.5 mL syringes 45350011000036105 choriogonadotropin alfa 250 microgram/0.5 mL injection, syringe 21430011000036104 choriogonadotropin alfa +60471011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 8 sachets 150167 56429011000036103 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 8 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63361011000036105 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 8 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +802831000168107 Abilify ODT 30 mg orally disintegrating tablet, 14, blister pack 128904 802821000168109 Abilify ODT 30 mg orally disintegrating tablet, 14 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802811000168102 aripiprazole 30 mg orally disintegrating tablet, 14 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +78988011000036105 Gemcitabine (Ebewe) 500 mg/50 mL concentrated injection, 50 mL vial 146762 78824011000036100 Gemcitabine (Ebewe) 500 mg/50 mL concentrated injection, 50 mL vial 78641011000036109 Gemcitabine (Ebewe) 500 mg/50 mL concentrated injection, 50 mL vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 79221011000036106 gemcitabine 500 mg/50 mL injection, 50 mL vial 79107011000036107 gemcitabine 500 mg/50 mL injection, vial 21644011000036108 gemcitabine +1026451000168106 Pregabalin (Amneal) 75 mg hard capsule, 14, bottle 235842 1026271000168101 Pregabalin (Amneal) 75 mg hard capsule, 14 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +44685011000036107 Ibiamox 1 g powder for injection, 10 vials 92765 42134011000036107 Ibiamox 1 g powder for injection, 10 vials 40359011000036109 Ibiamox 1 g powder for injection, vial 39666011000036102 Ibiamox 39666011000036102 Ibiamox 46896011000036102 amoxicillin 1 g injection, 10 vials 37849011000036104 amoxicillin 1 g injection, vial 21415011000036100 amoxicillin +21029011000036104 Dizole 50 mg hard capsule, 28, blister pack 162640 14174011000036101 Dizole 50 mg hard capsule, 28 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +21029011000036104 Dizole 50 mg hard capsule, 28, blister pack 96494 14174011000036101 Dizole 50 mg hard capsule, 28 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +922791000168103 Ciprofloxacin (AN) 250 mg film-coated tablet, 14, blister pack 175441 922781000168101 Ciprofloxacin (AN) 250 mg film-coated tablet, 14 922771000168104 Ciprofloxacin (AN) 250 mg film-coated tablet 661241000168100 Ciprofloxacin (AN) 661241000168100 Ciprofloxacin (AN) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +761091000168106 Olmesartan/Amlodipine 40/10 (Apotex) film-coated tablet, 30, blister pack 218260 761081000168108 Olmesartan/Amlodipine 40/10 (Apotex) film-coated tablet, 30 761071000168105 Olmesartan/Amlodipine 40/10 (Apotex) film-coated tablet 761061000168104 Olmesartan/Amlodipine 40/10 (Apotex) 761061000168104 Olmesartan/Amlodipine 40/10 (Apotex) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +801781000168107 Abilify 2 mg uncoated tablet, 98, blister pack 91001 801771000168109 Abilify 2 mg uncoated tablet, 98 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801761000168103 aripiprazole 2 mg tablet, 98 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +79714011000036107 Diclofenac Sodium (Chemmart) 25 mg enteric tablet, 50, blister pack 160728 13683011000036106 Diclofenac Sodium (Chemmart) 25 mg enteric tablet, 50 6966011000036109 Diclofenac Sodium (Chemmart) 25 mg enteric tablet 3797011000036108 Diclofenac Sodium (Chemmart) 3797011000036108 Diclofenac Sodium (Chemmart) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +748211000168108 Morphine MR (CH) 100 mg modified release tablet, 28, blister pack 225432 748201000168105 Morphine MR (CH) 100 mg modified release tablet, 28 748171000168106 Morphine MR (CH) 100 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 929758011000036101 morphine sulfate pentahydrate 100 mg modified release tablet, 28 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +66191000036107 Betadine Surgical Scrub 7.5% solution, 500 mL, bottle 29568 63781000036103 Betadine Surgical Scrub 7.5% solution, 500 mL 60611000036106 Betadine Surgical Scrub 7.5% solution 33221000168107 Betadine Surgical Scrub 33221000168107 Betadine Surgical Scrub 71761011000036103 povidone-iodine 7.5% solution, 500 mL 70175011000036106 povidone-iodine 7.5% solution 21660011000036108 povidone-iodine +896841000168102 Adrenaline Auto Inject (Sun-JV) 300 microgram/0.3 mL injection solution, 2 x 1 dose, injection devices 231705 896831000168106 Adrenaline Auto Inject (Sun-JV) 300 microgram/0.3 mL injection solution, 2 x 1 dose 896801000168104 Adrenaline Auto Inject (Sun-JV) 300 microgram/0.3 mL injection solution, dose 896791000168100 Adrenaline Auto Inject (Sun-JV) 896791000168100 Adrenaline Auto Inject (Sun-JV) 880841000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 2 x 1 dose 726701000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +926897011000036102 Acetec 20 mg uncoated tablet, 30, blister pack 75499 926293011000036104 Acetec 20 mg uncoated tablet, 30 925737011000036107 Acetec 20 mg uncoated tablet 925507011000036102 Acetec 925507011000036102 Acetec 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +1023181000168104 Ibuprofen (A) 200 mg film-coated tablet, 24, blister pack 161314 1023171000168102 Ibuprofen (A) 200 mg film-coated tablet, 24 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +928817011000036109 Mylanta 2go Original chewable tablet, 48, blister pack 118511 928186011000036103 Mylanta 2go Original chewable tablet, 48 927840011000036107 Mylanta 2go Original chewable tablet 927794011000036106 Mylanta 2go Original 927794011000036106 Mylanta 2go Original 929202011000036104 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet, 48 22091011000036107 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +1082371000168104 Atorvastatin (RZ) 80 mg film-coated tablet, 30, blister pack 198845 1082361000168105 Atorvastatin (RZ) 80 mg film-coated tablet, 30 1082351000168108 Atorvastatin (RZ) 80 mg film-coated tablet 1082211000168104 Atorvastatin (RZ) 1082211000168104 Atorvastatin (RZ) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +68848011000036108 Strepsils orange lozenge, 8, blister pack 115527 66625011000036103 Strepsils orange lozenge, 8 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +19335011000036107 Dilzem 60 mg film-coated tablet, 90, blister pack 50592 12623011000036105 Dilzem 60 mg film-coated tablet, 90 4539011000036108 Dilzem 60 mg film-coated tablet 3731000168107 Dilzem 3731000168107 Dilzem 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +19842011000036103 Teveten 400 mg film-coated tablet, 28, blister pack 64400 13093011000036101 Teveten 400 mg film-coated tablet, 28 6377011000036105 Teveten 400 mg film-coated tablet 3735011000036107 Teveten 3735011000036107 Teveten 27543011000036104 eprosartan 400 mg tablet, 28 22883011000036105 eprosartan 400 mg tablet 21612011000036106 eprosartan +1063921000168106 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 72, blister pack 159329 1063911000168104 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 72 1063791000168106 Ibuprofen plus Codeine (Pharmacor) film-coated tablet 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 63148011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 72 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +112361000036109 Gemcitabine (AS) 1 g/100 mL concentrated injection, 100 mL vial 193205 112321000036100 Gemcitabine (AS) 1 g/100 mL concentrated injection, 100 mL vial 112281000036109 Gemcitabine (AS) 1 g/100 mL concentrated injection, 100 mL vial 87721000036108 Gemcitabine (AS) 87721000036108 Gemcitabine (AS) 71489011000036109 gemcitabine 1 g/100 mL injection, 100 mL vial 70032011000036109 gemcitabine 1 g/100 mL injection, vial 21644011000036108 gemcitabine +19865011000036103 Naprosyn 500 mg uncoated tablet, 50, blister pack 65246 13112011000036101 Naprosyn 500 mg uncoated tablet, 50 6395011000036106 Naprosyn 500 mg uncoated tablet 15611000168108 Naprosyn 15611000168108 Naprosyn 27554011000036104 naproxen 500 mg tablet, 50 22893011000036109 naproxen 500 mg tablet 21304011000036105 naproxen +1040541000168109 Lorano 10 mg uncoated tablet, 10, blister pack 119753 1040531000168100 Lorano 10 mg uncoated tablet, 10 33023011000036109 Lorano 10 mg uncoated tablet 32980011000036109 Lorano 32980011000036109 Lorano 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +82871011000036105 Mircera 50 microgram/0.3 mL injection solution, 0.3 mL syringe 153813 82778011000036104 Mircera 50 microgram/0.3 mL injection solution, 0.3 mL syringe 82688011000036103 Mircera 50 microgram/0.3 mL injection solution, 0.3 mL syringe 82658011000036106 Mircera 82658011000036106 Mircera 82998011000036103 epoetin beta 50 microgram/0.3 mL injection, 0.3 mL syringe 82935011000036100 epoetin beta 50 microgram/0.3 mL injection, syringe 21625011000036109 epoetin beta +989021000168100 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 10, blister pack 287306 989011000168107 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 10 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +989021000168100 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 10, blister pack 253293 989011000168107 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 10 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +725451000168100 Pantoprazole (GH) 20 mg enteric tablet, 30, blister pack 155114 725441000168102 Pantoprazole (GH) 20 mg enteric tablet, 30 725431000168106 Pantoprazole (GH) 20 mg enteric tablet 725421000168108 Pantoprazole (GH) 725421000168108 Pantoprazole (GH) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +794251000168109 Tacrolimus (Sandoz) 750 microgram hard capsule, 60, blister pack 229738 794241000168107 Tacrolimus (Sandoz) 750 microgram hard capsule, 60 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794231000168103 tacrolimus 750 microgram capsule, 60 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +772971000168105 Fexotabs 30 mg film-coated tablet, 20, blister pack 98147 772961000168104 Fexotabs 30 mg film-coated tablet, 20 772951000168101 Fexotabs 30 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 63736011000036106 fexofenadine hydrochloride 30 mg tablet, 20 62066011000036109 fexofenadine hydrochloride 30 mg tablet 21394011000036108 fexofenadine +755701000168107 Vttack 50 mg film-coated tablet, 100, blister pack 206983 755691000168107 Vttack 50 mg film-coated tablet, 100 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46812011000036100 voriconazole 50 mg tablet, 100 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +923832011000036100 Procalm 5 mg uncoated tablet, 25, blister pack 158415 923378011000036101 Procalm 5 mg uncoated tablet, 25 923049011000036107 Procalm 5 mg uncoated tablet 922912011000036107 Procalm 922912011000036107 Procalm 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +37345011000036104 Duromine 40 mg modified release capsule, 3, blister pack 10942 36640011000036104 Duromine 40 mg modified release capsule, 3 36082011000036102 Duromine 40 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 38558011000036102 phentermine 40 mg modified release capsule, 3 37837011000036107 phentermine 40 mg modified release capsule 37725011000036101 phentermine +931712011000036102 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application, 500 mL, bottle 176111 930872011000036102 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application, 500 mL 930083011000036100 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application 76022011000036104 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 76022011000036104 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 71331011000036105 chlorhexidine gluconate 4% application, 500 mL 69954011000036105 chlorhexidine gluconate 4% application 21404011000036101 chlorhexidine +44201011000036108 Uromitexan 400 mg film-coated tablet, 10, blister pack 56481 41677011000036101 Uromitexan 400 mg film-coated tablet, 10 40141011000036100 Uromitexan 400 mg film-coated tablet 4340011000036101 Uromitexan 4340011000036101 Uromitexan 46494011000036103 mesna 400 mg tablet, 10 45188011000036105 mesna 400 mg tablet 21302011000036101 mesna +876691000168100 Briviact 50 mg film-coated tablet, 56, blister pack 243797 876681000168103 Briviact 50 mg film-coated tablet, 56 876631000168104 Briviact 50 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876671000168101 brivaracetam 50 mg tablet, 56 876621000168102 brivaracetam 50 mg tablet 876401000168109 brivaracetam +933230201000036101 Cozavan 50 mg film-coated tablet, 30, blister pack 156234 933224071000036105 Cozavan 50 mg film-coated tablet, 30 933219961000036109 Cozavan 50 mg film-coated tablet 933218911000036101 Cozavan 933218911000036101 Cozavan 46465011000036101 losartan potassium 50 mg tablet, 30 45171011000036109 losartan potassium 50 mg tablet 44887011000036108 losartan +20084011000036103 Zestril 10 mg uncoated tablet, 30, blister pack 70838 13312011000036105 Zestril 10 mg uncoated tablet, 30 6598011000036103 Zestril 10 mg uncoated tablet 4230011000036107 Zestril 4230011000036107 Zestril 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +977521000168105 Pregabalin (Teva) 225 mg hard capsule, 60, blister pack 229599 977511000168103 Pregabalin (Teva) 225 mg hard capsule, 60 977391000168104 Pregabalin (Teva) 225 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +82387011000036107 Duocover 75 mg/100 mg film-coated tablet, 4, blister pack 151075 82176011000036108 Duocover 75 mg/100 mg film-coated tablet, 4 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82550011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 4 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1026471000168102 Pregabalin (Amneal) 75 mg hard capsule, 20, bottle 235842 1026461000168108 Pregabalin (Amneal) 75 mg hard capsule, 20 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1057801000168107 Ramipril (Auro) 5 mg uncoated tablet, 30, bottle 175230 1057441000168106 Ramipril (Auro) 5 mg uncoated tablet, 30 1057401000168109 Ramipril (Auro) 5 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1013491000168104 Voluven injection solution, 15 x 500 mL bags 120361 1013481000168102 Voluven injection solution, 15 x 500 mL bags 1013401000168105 Voluven injection solution, 500 mL bag 1013371000168107 Voluven 1013371000168107 Voluven 1013471000168100 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 15 x 500 mL bags 1013391000168108 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bag 1013381000168105 hydroxyethyl starch 130/0.4 + sodium chloride +931542011000036108 Ostran 4 mg film-coated tablet, 10, blister pack 163432 930703011000036101 Ostran 4 mg film-coated tablet, 10 930022011000036104 Ostran 4 mg film-coated tablet 29491000168107 Ostran 29491000168107 Ostran 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +73307011000036102 Jurnista 64 mg modified release tablet, 28, blister pack 141535 73105011000036104 Jurnista 64 mg modified release tablet, 28 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73503011000036109 hydromorphone hydrochloride 64 mg modified release tablet, 28 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +20908011000036103 Aldazine 50 mg film-coated tablet, 100, bottle 93657 32406011000036109 Aldazine 50 mg film-coated tablet, 100 32256011000036101 Aldazine 50 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32804011000036107 thioridazine hydrochloride 50 mg tablet, 100 32707011000036103 thioridazine hydrochloride 50 mg tablet 21637011000036101 thioridazine +926731000168103 Cilamox 125 mg/5 mL powder for oral liquid, 100 mL, bottle 57376 926721000168101 Cilamox 125 mg/5 mL powder for oral liquid, 100 mL 926711000168108 Cilamox 125 mg/5 mL powder for oral liquid, 5 mL 4046011000036102 Cilamox 4046011000036102 Cilamox 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +893941000168103 Imatinib Adult (Cipla) 400 mg hard capsule, 48, blister pack 231746 893931000168107 Imatinib Adult (Cipla) 400 mg hard capsule, 48 893861000168106 Imatinib Adult (Cipla) 400 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 893921000168109 imatinib 400 mg capsule, 48 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +927131000168101 Aropax 30 mg film-coated tablet, 10, blister pack 57930 927121000168104 Aropax 30 mg film-coated tablet, 10 927101000168108 Aropax 30 mg film-coated tablet 4035011000036108 Aropax 4035011000036108 Aropax 927111000168106 paroxetine 30 mg tablet, 10 927091000168103 paroxetine 30 mg tablet 21618011000036109 paroxetine +1061031000168109 Olanzapine ODT (Auro) 10 mg orally disintegrating tablet, 28, blister pack 212903 1061021000168106 Olanzapine ODT (Auro) 10 mg orally disintegrating tablet, 28 1060991000168103 Olanzapine ODT (Auro) 10 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +752481000168102 Oxycodone (WT) 5 mg hard capsule, 60, blister pack 227864 752331000168109 Oxycodone (WT) 5 mg hard capsule, 60 752301000168102 Oxycodone (WT) 5 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +890721000168100 Canpek 32/25 uncoated tablet, 7, blister pack 198395 890711000168107 Canpek 32/25 uncoated tablet, 7 890701000168109 Canpek 32/25 uncoated tablet 890691000168109 Canpek 32/25 890691000168109 Canpek 32/25 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +84323011000036102 Pantoprazole (Chemmart) 20 mg enteric tablet, 30, blister pack 213717 84016011000036101 Pantoprazole (Chemmart) 20 mg enteric tablet, 30 83645011000036106 Pantoprazole (Chemmart) 20 mg enteric tablet 83551011000036103 Pantoprazole (Chemmart) 83551011000036103 Pantoprazole (Chemmart) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +84323011000036102 Pantoprazole (Chemmart) 20 mg enteric tablet, 30, blister pack 156331 84016011000036101 Pantoprazole (Chemmart) 20 mg enteric tablet, 30 83645011000036106 Pantoprazole (Chemmart) 20 mg enteric tablet 83551011000036103 Pantoprazole (Chemmart) 83551011000036103 Pantoprazole (Chemmart) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +74909011000036102 Box Jellyfish Antivenom (CSL) 20 000 units injection solution, 1 vial 74891 74396011000036100 Box Jellyfish Antivenom (CSL) 20 000 units injection solution, 1 vial 73919011000036103 Box Jellyfish Antivenom (CSL) 20 000 units injection solution, vial 73737011000036105 Box Jellyfish Antivenom (CSL) 73737011000036105 Box Jellyfish Antivenom (CSL) 75493011000036106 box jellyfish antivenom 20 000 units injection, 1 vial 75093011000036104 box jellyfish antivenom 20 000 units injection, vial 75000011000036105 box jellyfish antivenom +700951000168105 Zabep 20 mg enteric tablet, 30, blister pack 191867 700941000168108 Zabep 20 mg enteric tablet, 30 700931000168104 Zabep 20 mg enteric tablet 700921000168102 Zabep 700921000168102 Zabep 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +61704011000036100 Codral Chesty Cough oral liquid solution, 200 mL, bottle 99964 57625011000036101 Codral Chesty Cough oral liquid solution, 200 mL 54370011000036108 Codral Chesty Cough oral liquid solution, 5 mL 20161000168100 Codral Chesty Cough 20161000168100 Codral Chesty Cough 63967011000036105 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +34741011000036106 MS Normal 10 mg film-coated tablet, 56, bottle 47542 34325011000036109 MS Normal 10 mg film-coated tablet, 56 34042011000036103 MS Normal 10 mg film-coated tablet 33936011000036108 MS Normal 33936011000036108 MS Normal 35173011000036106 morphine sulfate pentahydrate 10 mg tablet, 56 22547011000036106 morphine sulfate pentahydrate 10 mg tablet 21252011000036100 morphine +1095251000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 30, blister pack 287307 1095241000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 30 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +20666011000036102 Accuretic 10/12.5 film-coated tablet, 30, blister pack 81930 13846011000036102 Accuretic 10/12.5 film-coated tablet, 30 7133011000036106 Accuretic 10/12.5 film-coated tablet 22151000168101 Accuretic 10/12.5 22151000168101 Accuretic 10/12.5 27970011000036101 quinapril 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 23294011000036108 quinapril 10 mg + hydrochlorothiazide 12.5 mg tablet 21455011000036107 quinapril + hydrochlorothiazide +60955011000036105 Nicotinell Fruit 4 mg chewing gum, 12, blister pack 126017 56898011000036108 Nicotinell Fruit 4 mg chewing gum, 12 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60955011000036105 Nicotinell Fruit 4 mg chewing gum, 12, blister pack 62368 56898011000036108 Nicotinell Fruit 4 mg chewing gum, 12 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +37587011000036103 Persantin 10 mg/2 mL injection solution, 5 x 2 mL ampoules 17934 36854011000036101 Persantin 10 mg/2 mL injection solution, 5 x 2 mL ampoules 36194011000036103 Persantin 10 mg/2 mL injection solution, 2 mL ampoule 17331000168100 Persantin 17331000168100 Persantin 38741011000036107 dipyridamole 10 mg/2 mL injection, 5 x 2 mL ampoules 37968011000036106 dipyridamole 10 mg/2 mL injection, ampoule 21674011000036109 dipyridamole +61197011000036101 Skin Irritation (Amcal) 1% cream, 30 g, tube 252633 57133011000036104 Skin Irritation (Amcal) 1% cream, 30 g 54212011000036107 Skin Irritation (Amcal) 1% cream 53569011000036106 Skin Irritation (Amcal) 53569011000036106 Skin Irritation (Amcal) 28029011000036107 hydrocortisone acetate 1% cream, 30 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +61197011000036101 Skin Irritation (Amcal) 1% cream, 30 g, tube 75462 57133011000036104 Skin Irritation (Amcal) 1% cream, 30 g 54212011000036107 Skin Irritation (Amcal) 1% cream 53569011000036106 Skin Irritation (Amcal) 53569011000036106 Skin Irritation (Amcal) 28029011000036107 hydrocortisone acetate 1% cream, 30 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +758601000168105 Ciloxan 0.3% eye drops solution, 2.5 mL, bottle 42899 758591000168103 Ciloxan 0.3% eye drops solution, 2.5 mL 5774011000036100 Ciloxan 0.3% eye drops solution 3615011000036106 Ciloxan 3615011000036106 Ciloxan 758581000168101 ciprofloxacin 0.3% eye drops, 2.5 mL 22922011000036101 ciprofloxacin 0.3% eye drops 21245011000036105 ciprofloxacin +906551000168105 Celecoxib (Lupin) 200 mg hard capsule, 20, blister pack 196176 906541000168108 Celecoxib (Lupin) 200 mg hard capsule, 20 906381000168105 Celecoxib (Lupin) 200 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +909771000168101 Chorit 40 mg film-coated tablet, 100, bottle 179848 909761000168107 Chorit 40 mg film-coated tablet, 100 909681000168108 Chorit 40 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890291000168107 atorvastatin 40 mg tablet, 100 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +61410011000036100 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 500 mL, bottle 82400 57335011000036107 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 500 mL 54278011000036103 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 63815011000036105 paracetamol 240 mg/5 mL oral liquid, 500 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +1065051000168100 Paracode Extra uncoated tablet, 12, blister pack 292800 1065041000168102 Paracode Extra uncoated tablet, 12 1065011000168101 Paracode Extra uncoated tablet 1065001000168104 Paracode Extra 1065001000168104 Paracode Extra 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +35680011000036108 Gabapentin (Pharmacor) 800 mg film-coated tablet, 500, blister pack 131518 35586011000036102 Gabapentin (Pharmacor) 800 mg film-coated tablet, 500 35489011000036104 Gabapentin (Pharmacor) 800 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 35777011000036108 gabapentin 800 mg tablet, 500 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +116701000036108 Rosuvastatin (RBX) 20 mg film-coated tablet, 30, blister pack 184717 114991000036106 Rosuvastatin (RBX) 20 mg film-coated tablet, 30 113291000036100 Rosuvastatin (RBX) 20 mg film-coated tablet 112711000036106 Rosuvastatin (RBX) 112711000036106 Rosuvastatin (RBX) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +735231000168105 Adrenaline (Link) 1 in 10 000 (1 mg/10 mL) injection solution, 10 x 10 mL ampoules 119194 735221000168107 Adrenaline (Link) 1 in 10 000 (1 mg/10 mL) injection solution, 10 x 10 mL ampoules 735211000168100 Adrenaline (Link) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL ampoule 929922011000036105 Adrenaline (Link) 929922011000036105 Adrenaline (Link) 71356011000036104 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, 10 x 10 mL ampoules 69970011000036103 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +66351000036101 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 12 mL, bottle 52420 63861000036103 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 12 mL 60881000036102 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 933205351000036106 melaleuca oil 1 mL/mL application, 12 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +713891000168100 Levetiracetam 1000 (Auro) 1 g film-coated tablet, 60, blister pack 182832 713881000168103 Levetiracetam 1000 (Auro) 1 g film-coated tablet, 60 713871000168101 Levetiracetam 1000 (Auro) 1 g film-coated tablet 713861000168107 Levetiracetam 1000 (Auro) 713861000168107 Levetiracetam 1000 (Auro) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +764221000168104 Mersyndol Daystrength uncoated tablet, 36, blister pack 59985 764211000168106 Mersyndol Daystrength uncoated tablet, 36 54099011000036108 Mersyndol Daystrength uncoated tablet 44331000168100 Mersyndol Daystrength 44331000168100 Mersyndol Daystrength 764201000168108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 36 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +85049011000036106 Farine 50 mg powder for injection, 1 vial 162601 84913011000036104 Farine 50 mg powder for injection, 1 vial 84798011000036101 Farine 50 mg powder for injection, 50 mg vial 84758011000036105 Farine 84758011000036105 Farine 79814011000036105 fludarabine phosphate 50 mg injection, 1 vial 39441011000036101 fludarabine phosphate 50 mg injection, vial 39430011000036109 fludarabine +902301000168103 Ninlaro 4 mg capsule, 1, blister pack 260934 902291000168104 Ninlaro 4 mg capsule, 1 902271000168100 Ninlaro 4 mg capsule 902241000168107 Ninlaro 902241000168107 Ninlaro 902281000168102 ixazomib 4 mg capsule, 1 902261000168106 ixazomib 4 mg capsule 902251000168109 ixazomib +33531011000036108 Champix 1 mg film-coated tablet, 56, blister pack 124941 33272011000036108 Champix 1 mg film-coated tablet, 56 33037011000036102 Champix 1 mg film-coated tablet 32974011000036108 Champix 32974011000036108 Champix 33788011000036105 varenicline 1 mg tablet, 56 33660011000036103 varenicline 1 mg tablet 33624011000036101 varenicline +672081000168103 Amlodipine/Atorvastatin 5/40 (Apo) film-coated tablet, 30, blister pack 214375 672071000168101 Amlodipine/Atorvastatin 5/40 (Apo) film-coated tablet, 30 672061000168107 Amlodipine/Atorvastatin 5/40 (Apo) film-coated tablet 672051000168105 Amlodipine/Atorvastatin 5/40 (Apo) 672051000168105 Amlodipine/Atorvastatin 5/40 (Apo) 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +1006181000168100 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 190537 1006171000168103 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 1006161000168109 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 20 mL ampoule 728761000168104 Ropivacaine 1% (Actavis) 728761000168104 Ropivacaine 1% (Actavis) 1005051000168104 ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules 1005031000168105 ropivacaine hydrochloride 200 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +44639011000036100 Levitra 20 mg film-coated tablet, 2, blister pack 90500 42092011000036104 Levitra 20 mg film-coated tablet, 2 40350011000036103 Levitra 20 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46859011000036104 vardenafil 20 mg tablet, 2 45334011000036104 vardenafil 20 mg tablet 44856011000036100 vardenafil +700991000168100 Atenolol (RBX) 50 mg film-coated tablet, 30, blister pack 197759 700981000168103 Atenolol (RBX) 50 mg film-coated tablet, 30 700971000168101 Atenolol (RBX) 50 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1043671000168107 Pryzex 10 mg film-coated tablet, 21, blister pack 178996 1043661000168101 Pryzex 10 mg film-coated tablet, 21 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043651000168103 olanzapine 10 mg tablet, 21 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +61652011000036107 Butalgin 200 mg film-coated tablet, 96, blister pack 97230 57574011000036107 Butalgin 200 mg film-coated tablet, 96 54352011000036105 Butalgin 200 mg film-coated tablet 53146011000036102 Butalgin 53146011000036102 Butalgin 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +939791000168108 Celebrex 400 mg hard capsule, 20, blister pack 101341 939781000168105 Celebrex 400 mg hard capsule, 20 939701000168102 Celebrex 400 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 939771000168107 celecoxib 400 mg capsule, 20 939691000168102 celecoxib 400 mg capsule 21566011000036101 celecoxib +19024011000036105 Rulide 150 mg film-coated tablet, 10, blister pack 39409 12329011000036100 Rulide 150 mg film-coated tablet, 10 5368011000036100 Rulide 150 mg film-coated tablet 27081000168109 Rulide 27081000168109 Rulide 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +855191000168100 Algerika 150 mg hard capsule, 60, blister pack 229595 855181000168103 Algerika 150 mg hard capsule, 60 855081000168104 Algerika 150 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +926907011000036107 Optimark 6.62 g/20 mL injection solution, 20 mL syringe 76657 926301011000036105 Optimark 6.62 g/20 mL injection solution, 20 mL syringe 925745011000036101 Optimark 6.62 g/20 mL injection solution, 20 mL syringe 6001000168105 Optimark 6001000168105 Optimark 927395011000036106 gadoversetamide 6.62 g/20 mL injection, 20 mL syringe 927036011000036105 gadoversetamide 6.62 g/20 mL injection, syringe 926966011000036108 gadoversetamide +18275011000036101 Ceftriaxone (ICP) 2 g powder for injection, 1 bottle 114502 11477011000036101 Ceftriaxone (ICP) 2 g powder for injection, 1 bottle 5683011000036103 Ceftriaxone (ICP) 2 g powder for injection, 2 g bottle 3437011000036106 Ceftriaxone (ICP) 3437011000036106 Ceftriaxone (ICP) 26662011000036109 ceftriaxone 2 g injection, 1 bottle 22062011000036104 ceftriaxone 2 g injection, bottle 21610011000036107 ceftriaxone +81177011000036107 Robitussin Chesty Cough 200 mg soft capsule, 100, blister pack 74414 80679011000036108 Robitussin Chesty Cough 200 mg soft capsule, 100 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81734011000036105 guaifenesin 200 mg capsule, 100 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +44178011000036105 Zovirax Cold Sore 5% cream, 5 g, tube 55006 41654011000036109 Zovirax Cold Sore 5% cream, 5 g 40124011000036100 Zovirax Cold Sore 5% cream 34331000168101 Zovirax Cold Sore 34331000168101 Zovirax Cold Sore 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +82900011000036102 Metsal Heat Rub cream, 500 g, jar 163792 82794011000036103 Metsal Heat Rub cream, 500 g 82701011000036104 Metsal Heat Rub cream 82661011000036109 Metsal Heat Rub 82661011000036109 Metsal Heat Rub 83011011000036109 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% cream, 500 g 82942011000036107 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +926743011000036100 Ozole 150 mg hard capsule, 1, blister pack 122904 926120011000036104 Ozole 150 mg hard capsule, 1 925607011000036105 Ozole 150 mg hard capsule 3098011000036107 Ozole 3098011000036107 Ozole 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +933211571000036109 Ceftriaxone (Lupin) 500 mg powder for injection, 5 vials 104488 933200121000036106 Ceftriaxone (Lupin) 500 mg powder for injection, 5 vials 933194091000036100 Ceftriaxone (Lupin) 500 mg powder for injection, 500 mg vial 32956011000036102 Ceftriaxone (Lupin) 32956011000036102 Ceftriaxone (Lupin) 933200131000036108 ceftriaxone 500 mg injection, 5 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +738451000168106 Benefiber 1 g/g powder for oral liquid, 730 g, jar 738441000168109 Benefiber 1 g/g powder for oral liquid, 730 g 143551000036104 Benefiber 1 g/g powder for oral liquid 143351000036106 Benefiber 143351000036106 Benefiber 738431000168100 wheat dextrin 1 g/g powder for oral liquid, 730 g 143561000036101 wheat dextrin 1 g/g powder for oral liquid 146531000036100 wheat dextrin +43717011000036105 Deltazine 4% / 1 in 100 000 injection solution, 10 x 1.7 mL cartridges 101551 41129011000036105 Deltazine 4% / 1 in 100 000 injection solution, 10 x 1.7 mL cartridges 39916011000036104 Deltazine 4% / 1 in 100 000 injection solution, 1.7 mL cartridge 34451000168101 Deltazine 4% / 1 in 100 000 34451000168101 Deltazine 4% / 1 in 100 000 46107011000036106 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, 10 x 1.7 mL cartridges 44988011000036102 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +43671011000036104 Flumazenil (Hospira) 1 mg/10 mL injection solution, 5 x 10 mL ampoules 121099 41250011000036102 Flumazenil (Hospira) 1 mg/10 mL injection solution, 5 x 10 mL ampoules 39912011000036103 Flumazenil (Hospira) 1 mg/10 mL injection solution, 10 mL ampoule 39722011000036101 Flumazenil (Hospira) 39722011000036101 Flumazenil (Hospira) 46191011000036100 flumazenil 1 mg/10 mL injection, 5 x 10 mL ampoules 45022011000036106 flumazenil 1 mg/10 mL injection, ampoule 37762011000036103 flumazenil +18782011000036108 Lipostat 20 mg uncoated tablet, 30, blister pack 118590 11581011000036105 Lipostat 20 mg uncoated tablet, 30 4994011000036107 Lipostat 20 mg uncoated tablet 3757011000036101 Lipostat 3757011000036101 Lipostat 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +801541000168106 Abilify 2 mg uncoated tablet, 10, blister pack 91001 801531000168102 Abilify 2 mg uncoated tablet, 10 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801521000168100 aripiprazole 2 mg tablet, 10 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +39396011000036108 Tryzan 10 mg uncoated tablet, 30, blister pack 129921 39280011000036100 Tryzan 10 mg uncoated tablet, 30 39207011000036100 Tryzan 10 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +654961000168102 Rosuvastatin (AN) 10 mg film-coated tablet, 30, blister pack 197002 654951000168104 Rosuvastatin (AN) 10 mg film-coated tablet, 30 654941000168101 Rosuvastatin (AN) 10 mg film-coated tablet 654901000168103 Rosuvastatin (AN) 654901000168103 Rosuvastatin (AN) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1011641000168108 Linezolid (Apo) 600 mg film-coated tablet, 10, blister pack 207476 1011631000168104 Linezolid (Apo) 600 mg film-coated tablet, 10 1011621000168102 Linezolid (Apo) 600 mg film-coated tablet 1011571000168100 Linezolid (Apo) 1011571000168100 Linezolid (Apo) 46772011000036108 linezolid 600 mg tablet, 10 45309011000036108 linezolid 600 mg tablet 44888011000036109 linezolid +66311000036100 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 30 mL syringe 51795 63831000036109 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 30 mL syringe 60961000036100 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 30 mL syringe 31781000168104 Optiray-350 Ultraject 31781000168104 Optiray-350 Ultraject 63841000036104 ioversol 741 mg (iodine 350 mg)/mL injection, 30 mL syringe 60971000036108 ioversol 741 mg (iodine 350 mg)/mL injection, 30 mL syringe 77421011000036103 ioversol +785511000168105 Endone XR 80 mg modified release tablet, 20, blister pack 153610 785501000168107 Endone XR 80 mg modified release tablet, 20 785491000168100 Endone XR 80 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +885101000168104 Betarc 8 mg tablet, 10, blister pack 231713 885091000168109 Betarc 8 mg tablet, 10 885081000168106 Betarc 8 mg tablet 884681000168104 Betarc 884681000168104 Betarc 883091000168108 betahistine dihydrochloride 8 mg tablet, 10 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +1059671000168106 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 15, blister pack 234468 1059661000168100 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 15 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930421000168105 rosuvastatin 5 mg tablet, 15 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +944131000168108 Risperidone (Chemmart) 500 microgram film-coated tablet, 20, blister pack 127588 944121000168105 Risperidone (Chemmart) 500 microgram film-coated tablet, 20 944111000168103 Risperidone (Chemmart) 500 microgram film-coated tablet 944101000168101 Risperidone (Chemmart) 944101000168101 Risperidone (Chemmart) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +44368011000036109 Vasocardol CD 240 mg modified release capsule, 30, bottle 68925 13252011000036108 Vasocardol CD 240 mg modified release capsule, 30 6534011000036104 Vasocardol CD 240 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +928843011000036107 Paclitaxel (GA) 150 mg/25 mL concentrated injection, 25 mL vial 129575 928205011000036109 Paclitaxel (GA) 150 mg/25 mL concentrated injection, 25 mL vial 927864011000036107 Paclitaxel (GA) 150 mg/25 mL concentrated injection, 25 mL vial 927810011000036103 Paclitaxel (GA) 927810011000036103 Paclitaxel (GA) 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +44276011000036109 Propecia 1 mg film-coated tablet, 28, blister pack 62084 41747011000036109 Propecia 1 mg film-coated tablet, 28 40180011000036100 Propecia 1 mg film-coated tablet 39667011000036104 Propecia 39667011000036104 Propecia 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +1026611000168107 Esomeprazole (Pharmacor) 40 mg enteric tablet, 15, blister pack 210850 1026601000168109 Esomeprazole (Pharmacor) 40 mg enteric tablet, 15 1026571000168103 Esomeprazole (Pharmacor) 40 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 681491000168109 esomeprazole 40 mg enteric tablet, 15 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1115481000168107 Quetiapine (Ascent) 300 mg film-coated tablet, 20, blister pack 202261 1115471000168109 Quetiapine (Ascent) 300 mg film-coated tablet, 20 1115461000168103 Quetiapine (Ascent) 300 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +933247521000036108 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet, 28, blister pack 175922 933244381000036106 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet, 28 933241831000036104 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +44397011000036106 Somac 40 mg enteric tablet, 700, bottle 69791 41857011000036109 Somac 40 mg enteric tablet, 700 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46663011000036100 pantoprazole 40 mg enteric tablet, 700 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +893691000168103 Epirubicin (Accord) 200 mg/100 mL concentrated injection, 100 mL vial 227997 893681000168101 Epirubicin (Accord) 200 mg/100 mL concentrated injection, 100 mL vial 893671000168104 Epirubicin (Accord) 200 mg/100 mL concentrated injection, 100 mL vial 893661000168105 Epirubicin (Accord) 893661000168105 Epirubicin (Accord) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +933215911000036105 Sodium Chloride 0.9% and Glucose 5% (B Braun) intravenous infusion injection, 1 L bottle 49334 933205421000036109 Sodium Chloride 0.9% and Glucose 5% (B Braun) intravenous infusion injection, 1 L bottle 933196511000036108 Sodium Chloride 0.9% and Glucose 5% (B Braun) intravenous infusion injection, 1 L bottle 5311000168104 Sodium Chloride 0.9% and Glucose 5% (B Braun) 5311000168104 Sodium Chloride 0.9% and Glucose 5% (B Braun) 933205431000036106 sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, 1 L bottle 933196521000036101 sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, bottle 21257011000036103 sodium chloride + glucose +1009311000168100 Oxaliplatin (Apo) 200 mg/40 mL concentrated injection, 40 mL vial 245540 1009301000168103 Oxaliplatin (Apo) 200 mg/40 mL concentrated injection, 40 mL vial 1009291000168104 Oxaliplatin (Apo) 200 mg/40 mL concentrated injection, 40 mL vial 1009251000168109 Oxaliplatin (Apo) 1009251000168109 Oxaliplatin (Apo) 26784011000036105 oxaliplatin 200 mg/40 mL injection, 40 mL vial 22170011000036101 oxaliplatin 200 mg/40 mL injection, vial 21543011000036101 oxaliplatin +17745011000036100 Crestor 20 mg film-coated tablet, 30, blister pack 119130 11605011000036101 Crestor 20 mg film-coated tablet, 30 5879011000036102 Crestor 20 mg film-coated tablet 4031011000036106 Crestor 4031011000036106 Crestor 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +1110141000168100 Nicotinell Tropical Fruit 4 mg chewing gum, 204, blister pack 279618 1110131000168109 Nicotinell Tropical Fruit 4 mg chewing gum, 204 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897421000168108 nicotine 4 mg gum, 204 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +933247501000036103 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet, 30, blister pack 175917 933244361000036101 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet, 30 933241821000036101 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 79215011000036102 bisoprolol fumarate 10 mg tablet, 30 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +742591000168103 Reladdin 500 mg powder for injection, 1 vial 228300 742581000168101 Reladdin 500 mg powder for injection, 1 vial 742571000168104 Reladdin 500 mg powder for injection, 500 mg vial 742531000168102 Reladdin 742531000168102 Reladdin 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +893851000168109 Imatinib Adult (Cipla) 100 mg hard capsule, 180, blister pack 231747 893841000168107 Imatinib Adult (Cipla) 100 mg hard capsule, 180 893731000168105 Imatinib Adult (Cipla) 100 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 828931000168107 imatinib 100 mg capsule, 180 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1011961000168101 Irbesartan (Apotex) 150 mg film-coated tablet, 30, blister pack 169789 1011951000168103 Irbesartan (Apotex) 150 mg film-coated tablet, 30 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +17958011000036102 Carvedilol (Terry White Chemists) 3.125 mg film-coated tablet, 30, blister pack 133041 11958011000036104 Carvedilol (Terry White Chemists) 3.125 mg film-coated tablet, 30 5207011000036109 Carvedilol (Terry White Chemists) 3.125 mg film-coated tablet 3269011000036109 Carvedilol (Terry White Chemists) 3269011000036109 Carvedilol (Terry White Chemists) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +853501000168101 Alphastat 5 mg film-coated tablet, 7, blister pack 187391 853401000168102 Alphastat 5 mg film-coated tablet, 7 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +853501000168101 Alphastat 5 mg film-coated tablet, 7, blister pack 212157 853401000168102 Alphastat 5 mg film-coated tablet, 7 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +911051000168109 Cavstat 10 mg film-coated tablet, 84, blister pack 234485 911041000168107 Cavstat 10 mg film-coated tablet, 84 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911031000168103 rosuvastatin 10 mg tablet, 84 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1076751000168100 Astazol 5 mg/100 mL injection solution, 3 x 100 mL bags 182209 1076741000168102 Astazol 5 mg/100 mL injection solution, 3 x 100 mL bags 1076701000168104 Astazol 5 mg/100 mL injection solution, 100 mL bag 1076691000168104 Astazol 1076691000168104 Astazol 1076731000168106 zoledronic acid 5 mg/100 mL injection, 3 x 100 mL bags 731431000168106 zoledronic acid 5 mg/100 mL injection, bag 21790011000036102 zoledronic acid +17912011000036109 Lamogine 50 mg tablet, 56, blister pack 114259 11464011000036101 Lamogine 50 mg tablet, 56 5655011000036106 Lamogine 50 mg tablet 2998011000036105 Lamogine 2998011000036105 Lamogine 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1081001000168100 Alpha Keri lotion, 1 L, bottle 24617 1080991000168101 Alpha Keri lotion, 1 L 5061011000036105 Alpha Keri lotion 30572011000036100 Alpha Keri 30572011000036100 Alpha Keri 1080981000168104 liquid paraffin 15.2% + lanolin oil 0.56% lotion, 1 L 22370011000036106 liquid paraffin 15.2% + lanolin oil 0.56% lotion 33631011000036102 liquid paraffin + lanolin oil +61070011000036103 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 200 mL, bottle 68601 57013011000036104 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 200 mL 54160011000036107 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 63689011000036101 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 200 mL 62048011000036104 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +738291000168100 Rosuvastatin (Auro) 5 mg film-coated tablet, 30, blister pack 197006 738281000168103 Rosuvastatin (Auro) 5 mg film-coated tablet, 30 738271000168101 Rosuvastatin (Auro) 5 mg film-coated tablet 738231000168104 Rosuvastatin (Auro) 738231000168104 Rosuvastatin (Auro) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +65991000036104 Amolin Baby cream, 100 g, tube 15685 63501000036100 Amolin Baby cream, 100 g 60571000036101 Amolin Baby cream 11051000168101 Amolin Baby 11051000168101 Amolin Baby 63511000036103 calamine 3.75% + almond oil 2.85% + salicylic acid 0.47% + zinc oxide 1.6% cream, 100 g 60581000036104 calamine 3.75% + almond oil 2.85% + salicylic acid 0.47% + zinc oxide 1.6% cream 66701000036103 calamine + almond oil + salicylic acid + zinc oxide +818861000168103 Quetiapine XR (Apo) 400 mg modified release tablet, 30, blister pack 226800 818851000168100 Quetiapine XR (Apo) 400 mg modified release tablet, 30 818821000168108 Quetiapine XR (Apo) 400 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 790841000168102 quetiapine 400 mg modified release tablet, 30 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +34683011000036107 Amlodipine (Apo) 10 mg uncoated tablet, 30, blister pack 135125 34269011000036109 Amlodipine (Apo) 10 mg uncoated tablet, 30 33997011000036100 Amlodipine (Apo) 10 mg uncoated tablet 30701000168100 Amlodipine (Apo) 30701000168100 Amlodipine (Apo) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +60828011000036109 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 14, blister pack 58353 56784011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 14 54080011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 63567011000036100 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule, 14 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +20706011000036107 Alprax 1 mg uncoated tablet, 50, blister pack 82643 13877011000036100 Alprax 1 mg uncoated tablet, 50 7164011000036104 Alprax 1 mg uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +811691000168101 Afinitor 5 mg dispersible tablet, 60, blister pack 200205 811681000168104 Afinitor 5 mg dispersible tablet, 60 811601000168107 Afinitor 5 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811671000168102 everolimus 5 mg dispersible tablet, 60 811591000168100 everolimus 5 mg dispersible tablet 21615011000036103 everolimus +60114011000036104 Nurofen Caplet 200 mg sugar coated tablet, 96, blister pack 127287 56073011000036108 Nurofen Caplet 200 mg sugar coated tablet, 96 53777011000036106 Nurofen Caplet 200 mg sugar coated tablet 17551000168104 Nurofen Caplet 17551000168104 Nurofen Caplet 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +898171000168103 Strensiq 40 mg/mL injection solution, 1 mL vial 232546 898161000168109 Strensiq 40 mg/mL injection solution, 1 mL vial 898141000168105 Strensiq 40 mg/mL injection solution, vial 898031000168102 Strensiq 898031000168102 Strensiq 898151000168107 asfotase alfa 40 mg/mL injection, 1 mL vial 898131000168101 asfotase alfa 40 mg/mL injection, vial 898041000168106 asfotase alfa +1008991000168100 Rivastigmine (Apotex) 1.5 mg hard capsule, 56, blister pack 160563 1008981000168103 Rivastigmine (Apotex) 1.5 mg hard capsule, 56 1008901000168106 Rivastigmine (Apotex) 1.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 27691011000036102 rivastigmine 1.5 mg capsule, 56 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +1030651000168108 Atilos 45 mg uncoated tablet, 28, blister pack 173478 1030641000168106 Atilos 45 mg uncoated tablet, 28 1030581000168100 Atilos 45 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +933215591000036105 Olanzapine (LY) 7.5 mg film-coated tablet, 28, blister pack 167683 933205091000036104 Olanzapine (LY) 7.5 mg film-coated tablet, 28 933196171000036107 Olanzapine (LY) 7.5 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +77179011000036101 Lisinopril (GA) 20 mg uncoated tablet, 50, blister pack 106502 76572011000036101 Lisinopril (GA) 20 mg uncoated tablet, 50 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 78127011000036104 lisinopril 20 mg tablet, 50 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +18229011000036103 Madopar 125 hard capsule, 100, bottle 13746 12004011000036108 Madopar 125 hard capsule, 100 4589011000036104 Madopar 125 hard capsule 38291000168104 Madopar 125 38291000168104 Madopar 125 26842011000036109 levodopa 100 mg + benserazide 25 mg capsule, 100 22223011000036107 levodopa 100 mg + benserazide 25 mg capsule 21331011000036100 levodopa + benserazide +926675011000036106 Dermatitis and Psoriasis Relief (Your Pharmacy) ointment, 100 g, jar 119062 926117011000036107 Dermatitis and Psoriasis Relief (Your Pharmacy) ointment, 100 g 925603011000036101 Dermatitis and Psoriasis Relief (Your Pharmacy) ointment 925529011000036101 Dermatitis and Psoriasis Relief (Your Pharmacy) 925529011000036101 Dermatitis and Psoriasis Relief (Your Pharmacy) 927312011000036102 salicylic acid 2% + menthol 0.5% + coal tar 0.4% ointment, 100 g 926985011000036103 salicylic acid 2% + menthol 0.5% + coal tar 0.4% ointment 926967011000036106 salicylic acid + menthol + coal tar +86086011000036107 Cetirizine Hydrochloride (Apo) 10 mg film-coated tablet, 10, blister pack 154450 85685011000036106 Cetirizine Hydrochloride (Apo) 10 mg film-coated tablet, 10 85333011000036108 Cetirizine Hydrochloride (Apo) 10 mg film-coated tablet 27041000168104 Cetirizine Hydrochloride (Apo) 27041000168104 Cetirizine Hydrochloride (Apo) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +785751000168103 Oxycodone (Sandoz) 5 mg modified release tablet, 20, bottle 153613 785741000168100 Oxycodone (Sandoz) 5 mg modified release tablet, 20 679351000168102 Oxycodone (Sandoz) 5 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 28126011000036108 oxycodone hydrochloride 5 mg modified release tablet, 20 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +933118011000036102 Lamictal 50 mg tablet, 56, bottle 59996 932918011000036109 Lamictal 50 mg tablet, 56 932766011000036103 Lamictal 50 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +18442011000036106 Neorecormon 20 000 units/0.6 mL injection, 6 x 0.6 mL syringes 104268 11280011000036109 Neorecormon 20 000 units/0.6 mL injection, 6 x 0.6 mL syringes 5009011000036108 Neorecormon 20 000 units/0.6 mL injection, 0.6 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26591011000036105 epoetin beta 20 000 units/0.6 mL injection, 6 x 0.6 mL syringes 21999011000036104 epoetin beta 20 000 units/0.6 mL injection, syringe 21625011000036109 epoetin beta +19243011000036101 Hydrea 500 mg hard capsule, 100, bottle 47486 12534011000036102 Hydrea 500 mg hard capsule, 100 4719011000036100 Hydrea 500 mg hard capsule 3621011000036102 Hydrea 3621011000036102 Hydrea 27180011000036109 hydroxycarbamide (hydroxyurea) 500 mg capsule, 100 22542011000036109 hydroxycarbamide (hydroxyurea) 500 mg capsule 21847011000036109 hydroxycarbamide (hydroxyurea) +61312011000036106 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 50 g, tube 80846 57248011000036106 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 50 g 54253011000036105 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 63840011000036105 bifonazole 1% cream, 50 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +19151011000036101 Gopten 2 mg hard capsule, 28, blister pack 45457 12450011000036100 Gopten 2 mg hard capsule, 28 4867011000036105 Gopten 2 mg hard capsule 4026011000036104 Gopten 4026011000036104 Gopten 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +915391000168104 Amvas 5 mg uncoated tablet, 30, blister pack 127362 915381000168102 Amvas 5 mg uncoated tablet, 30 915371000168100 Amvas 5 mg uncoated tablet 915361000168106 Amvas 915361000168106 Amvas 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +66031000036107 Benzotech 5% gel, 50 g, tube 117598 63261000036104 Benzotech 5% gel, 50 g 61141000036105 Benzotech 5% gel 60301000036100 Benzotech 60301000036100 Benzotech 63424011000036109 benzoyl peroxide 5% gel, 50 g 61955011000036100 benzoyl peroxide 5% gel 61709011000036104 benzoyl peroxide +720971000168105 Botox 200 units powder for injection, 1 vial 172264 720961000168104 Botox 200 units powder for injection, 1 vial 720941000168103 Botox 200 units powder for injection, 200 units vial 3742011000036100 Botox 3742011000036100 Botox 720951000168101 botulinum toxin type A 200 units injection, 1 vial 720931000168107 botulinum toxin type A 200 units injection, vial 21857011000036106 botulinum toxin type A +718071000168100 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 144127 718061000168106 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 718051000168109 Carolyn-35 ED (inert substance) film-coated tablet 718031000168103 Carolyn-35 ED 718031000168103 Carolyn-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +718071000168100 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 144127 718061000168106 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 718041000168107 Carolyn-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 718031000168103 Carolyn-35 ED 718031000168103 Carolyn-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +43763011000036102 Imigran FDT 100 mg film-coated tablet, 6, blister pack 106715 41144011000036107 Imigran FDT 100 mg film-coated tablet, 6 39948011000036108 Imigran FDT 100 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 46297011000036105 sumatriptan 100 mg tablet, 6 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +1026311000168101 Neuroccord 150 mg hard capsule, 14, blister pack 235837 1026081000168109 Neuroccord 150 mg hard capsule, 14 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +896681000168108 Imatinib (GH) 100 mg hard capsule, 60, blister pack 281535 896671000168105 Imatinib (GH) 100 mg hard capsule, 60 896191000168101 Imatinib (GH) 100 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 830821000168102 imatinib 100 mg capsule, 60 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +716631000168108 Omepro 20 mg enteric capsule, 5, bottle 167314 716621000168105 Omepro 20 mg enteric capsule, 5 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716611000168103 omeprazole 20 mg enteric capsule, 5 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +18909011000036105 Progesterone (Orion) 100 mg moulded pessary, 15, jar 21190 12217011000036108 Progesterone (Orion) 100 mg moulded pessary, 15 4600011000036103 Progesterone (Orion) 100 mg moulded pessary 3508011000036108 Progesterone (Orion) 3508011000036108 Progesterone (Orion) 26988011000036108 progesterone 100 mg pessary, 15 22361011000036109 progesterone 100 mg pessary 21412011000036108 progesterone +80993011000036100 Epirubicin Hydrochloride (Actavis) 50 mg/25 mL injection solution, 25 mL vial 146597 80531011000036101 Epirubicin Hydrochloride (Actavis) 50 mg/25 mL injection solution, 25 mL vial 80179011000036109 Epirubicin Hydrochloride (Actavis) 50 mg/25 mL injection solution, 25 mL vial 933193151000036108 Epirubicin Hydrochloride (Actavis) 933193151000036108 Epirubicin Hydrochloride (Actavis) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +752641000168109 Oxycodone (WT) 20 mg hard capsule, 60, blister pack 227826 752591000168100 Oxycodone (WT) 20 mg hard capsule, 60 752561000168107 Oxycodone (WT) 20 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +909611000168102 Cisatracurium (HHH) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 226858 909601000168100 Cisatracurium (HHH) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 909591000168107 Cisatracurium (HHH) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 909461000168101 Cisatracurium (HHH) 909461000168101 Cisatracurium (HHH) 157601000036106 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL ampoules 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +755541000168100 Ibavyr 600 mg coated tablet, 28, bottle 222628 755531000168109 Ibavyr 600 mg coated tablet, 28 755511000168104 Ibavyr 600 mg coated tablet 755451000168104 Ibavyr 755451000168104 Ibavyr 755521000168106 ribavirin 600 mg tablet, 28 734351000168108 ribavirin 600 mg tablet 21714011000036106 ribavirin +971581000168102 Lypralin 150 mg hard capsule, 14, bottle 235852 969581000168108 Lypralin 150 mg hard capsule, 14 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +37558011000036105 Lanoxin 250 microgram uncoated tablet, 50, blister pack 15333 36825011000036103 Lanoxin 250 microgram uncoated tablet, 50 5724011000036104 Lanoxin 250 microgram uncoated tablet 3340011000036103 Lanoxin 3340011000036103 Lanoxin 38714011000036104 digoxin 250 microgram tablet, 50 23329011000036109 digoxin 250 microgram tablet 21696011000036109 digoxin +854871000168107 Algerika 75 mg hard capsule, 21, blister pack 229589 854861000168101 Algerika 75 mg hard capsule, 21 854811000168104 Algerika 75 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854851000168103 pregabalin 75 mg capsule, 21 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +880831000168105 Adrenaject Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device 231706 880821000168107 Adrenaject Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose 880811000168100 Adrenaject Auto-Injector 300 microgram/0.3 mL injection solution, dose 880801000168103 Adrenaject Auto-Injector 880801000168103 Adrenaject Auto-Injector 726721000168105 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose 726701000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +19756011000036100 Lovir 200 mg uncoated tablet, 25, blister pack 62379 13017011000036106 Lovir 200 mg uncoated tablet, 25 6306011000036101 Lovir 200 mg uncoated tablet 4208011000036103 Lovir 4208011000036103 Lovir 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +44414011000036109 Somac 20 mg enteric tablet, 60, blister pack 70829 41873011000036102 Somac 20 mg enteric tablet, 60 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46678011000036102 pantoprazole 20 mg enteric tablet, 60 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1092601000168103 Paracetamol Children's 6 to 12 Years (Pharmacist Formula) 240 mg/5 mL oral liquid suspension, 200 mL, bottle 285521 1092591000168105 Paracetamol Children's 6 to 12 Years (Pharmacist Formula) 240 mg/5 mL oral liquid suspension, 200 mL 1092581000168107 Paracetamol Children's 6 to 12 Years (Pharmacist Formula) 240 mg/5 mL oral liquid suspension, 5 mL 1092571000168109 Paracetamol Children's 6 to 12 Years (Pharmacist Formula) 1092571000168109 Paracetamol Children's 6 to 12 Years (Pharmacist Formula) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +1081081000168108 Piptaz 4 g/0.5 g (Auro) powder for injection, 4.5 g vial 162912 1081071000168105 Piptaz 4 g/0.5 g (Auro) powder for injection, 4.5 g vial 1081061000168104 Piptaz 4 g/0.5 g (Auro) powder for injection, 4.5 g vial 1081051000168101 Piptaz 4 g/0.5 g (Auro) 1081051000168101 Piptaz 4 g/0.5 g (Auro) 46368011000036104 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +933083011000036104 Flucil 250 mg/5 mL powder for oral liquid, 100 mL, bottle 165005 932885011000036106 Flucil 250 mg/5 mL powder for oral liquid, 100 mL 932747011000036107 Flucil 250 mg/5 mL powder for oral liquid, 5 mL 33956011000036109 Flucil 33956011000036109 Flucil 27045011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid, 100 mL 22415011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +759811000168100 Cyklokapron 500 mg/5 mL injection solution, 10 x 5 mL ampoules 160658 759801000168103 Cyklokapron 500 mg/5 mL injection solution, 10 x 5 mL ampoules 759761000168106 Cyklokapron 500 mg/5 mL injection solution, 5 mL ampoule 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 759791000168104 tranexamic acid 500 mg/5 mL injection, 10 x 5 mL ampoules 699101000168105 tranexamic acid 500 mg/5 mL injection, ampoule 21746011000036108 tranexamic acid +80964011000036100 Tobra-day 500 mg/5 mL injection solution, 10 x 5 mL vials 150481 80561011000036109 Tobra-day 500 mg/5 mL injection solution, 10 x 5 mL vials 80192011000036109 Tobra-day 500 mg/5 mL injection solution, 5 mL vial 80103011000036100 Tobra-day 80103011000036100 Tobra-day 81640011000036108 tobramycin 500 mg/5 mL injection, 10 x 5 mL vials 81275011000036100 tobramycin 500 mg/5 mL injection, vial 21646011000036100 tobramycin +1034921000168101 Cyramza 500 mg/50 mL concentrated injection, 50 mL vial 227352 1034911000168108 Cyramza 500 mg/50 mL concentrated injection, 50 mL vial 1034891000168106 Cyramza 500 mg/50 mL concentrated injection, 50 mL vial 731771000168103 Cyramza 731771000168103 Cyramza 1034901000168105 ramucirumab 500 mg/50 mL injection, 50 mL vial 1034881000168108 ramucirumab 500 mg/50 mL injection, vial 731801000168101 ramucirumab +60586011000036100 Polaramine Syrup 2 mg/5 mL oral liquid solution, 100 mL, bottle 18197 56544011000036107 Polaramine Syrup 2 mg/5 mL oral liquid solution, 100 mL 53965011000036104 Polaramine Syrup 2 mg/5 mL oral liquid solution, 5 mL 54981000168100 Polaramine Syrup 54981000168100 Polaramine Syrup 63410011000036106 dexchlorpheniramine maleate 2 mg/5 mL oral liquid, 100 mL 61948011000036109 dexchlorpheniramine maleate 2 mg/5 mL oral liquid 61749011000036105 dexchlorpheniramine +1060851000168100 Ramipril (Auro) 2.5 mg hard capsule, 30, bottle 203715 1060831000168106 Ramipril (Auro) 2.5 mg hard capsule, 30 1060791000168100 Ramipril (Auro) 2.5 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +69240011000036101 Chlorhexidine Acetate (Baxter) 0.1% (500 mg/500 mL) irrigation solution, 15 x 500 mL bottles 19463 67040011000036104 Chlorhexidine Acetate (Baxter) 0.1% (500 mg/500 mL) irrigation solution, 15 x 500 mL bottles 65358011000036100 Chlorhexidine Acetate (Baxter) 0.1% (500 mg/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71610011000036103 chlorhexidine acetate 0.1% (500 mg/500 mL) solution, 15 x 500 mL bottles 70090011000036101 chlorhexidine acetate 0.1% (500 mg/500 mL) solution, bottle 21404011000036101 chlorhexidine +1106941000168103 Nu-Lax Natural Fruit Laxative block, 500 g, wrapping 228455 1106931000168107 Nu-Lax Natural Fruit Laxative block, 500 g 1106881000168102 Nu-Lax Natural Fruit Laxative block 1106861000168106 Nu-Lax Natural Fruit Laxative 1106861000168106 Nu-Lax Natural Fruit Laxative 1106921000168109 senna leaf powder 1 g/10 g + fig 2.16 g/10 g + date 3.6 g/10 g block, 500 g 1106871000168100 senna leaf powder 1 g/10 g + fig 2.16 g/10 g + date 3.6 g/10 g block 82425011000036104 senna leaf powder + fig + date +37495011000036101 Lamotrigine (Generic Health) 50 mg tablet, 56, blister pack 129758 36763011000036109 Lamotrigine (Generic Health) 50 mg tablet, 56 36170011000036101 Lamotrigine (Generic Health) 50 mg tablet 35966011000036108 Lamotrigine (Generic Health) 35966011000036108 Lamotrigine (Generic Health) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1082451000168102 Atorvastatin (WT) 80 mg film-coated tablet, 30, blister pack 217170 1082441000168104 Atorvastatin (WT) 80 mg film-coated tablet, 30 1082411000168103 Atorvastatin (WT) 80 mg film-coated tablet 1082401000168101 Atorvastatin (WT) 1082401000168101 Atorvastatin (WT) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +921980011000036105 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 50 mL vials 49603 921538011000036108 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 50 mL vials 921070011000036107 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 50 mL vial 920924011000036100 Visipaque 920924011000036100 Visipaque 922657011000036102 iodixanol 550 mg (iodine 270 mg)/mL injection, 10 x 50 mL vials 922140011000036101 iodixanol 550 mg (iodine 270 mg)/mL injection, 50 mL vial 922032011000036109 iodixanol +850621000168102 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules 12051 850611000168109 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules 850591000168104 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, ampoule 3899011000036103 Atropine Sulfate (AstraZeneca) 3899011000036103 Atropine Sulfate (AstraZeneca) 850601000168106 atropine sulfate monohydrate 500 microgram/mL injection, 50 x 1 mL ampoules 850581000168102 atropine sulfate monohydrate 500 microgram/mL injection, ampoule 933232141000036108 atropine sulfate monohydrate +18183011000036109 Neorecormon 30 000 units/0.6 mL injection, 0.6 mL syringe 104269 11281011000036102 Neorecormon 30 000 units/0.6 mL injection, 0.6 mL syringe 5525011000036104 Neorecormon 30 000 units/0.6 mL injection, 0.6 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26592011000036104 epoetin beta 30 000 units/0.6 mL injection, 0.6 mL syringe 22000011000036102 epoetin beta 30 000 units/0.6 mL injection, syringe 21625011000036109 epoetin beta +931515011000036109 Citalo 20 mg film-coated tablet, 56, blister pack 158873 930676011000036107 Citalo 20 mg film-coated tablet, 56 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +17820011000036105 Rifadin 100 mg/5 mL oral liquid, 60 mL, bottle 10113 11176011000036103 Rifadin 100 mg/5 mL oral liquid, 60 mL 5261011000036100 Rifadin 100 mg/5 mL oral liquid, 5 mL 3470011000036108 Rifadin 3470011000036108 Rifadin 26552011000036107 rifampicin 100 mg/5 mL oral liquid, 60 mL 21961011000036100 rifampicin 100 mg/5 mL oral liquid 21532011000036109 rifampicin +18546011000036100 Doxorubicin Hydrochloride (Ebewe) 200 mg/100 mL injection, 100 mL vial 118531 11579011000036103 Doxorubicin Hydrochloride (Ebewe) 200 mg/100 mL injection, 100 mL vial 5382011000036101 Doxorubicin Hydrochloride (Ebewe) 200 mg/100 mL injection, 100 mL vial 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 33809011000036103 doxorubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 33680011000036101 doxorubicin hydrochloride 200 mg/100 mL injection, vial 21638011000036100 doxorubicin +928331000168103 Medrol 4 mg uncoated tablet, 100, bottle 12312 928321000168101 Medrol 4 mg uncoated tablet, 100 928301000168105 Medrol 4 mg uncoated tablet 928251000168104 Medrol 928251000168104 Medrol 928311000168108 methylprednisolone 4 mg tablet, 100 928291000168109 methylprednisolone 4 mg tablet 21605011000036100 methylprednisolone +69724011000036103 Aerius 5 mg film-coated tablet, 3, blister pack 91116 67523011000036107 Aerius 5 mg film-coated tablet, 3 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72025011000036108 desloratadine 5 mg tablet, 3 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1009151000168102 Rivastigmine (Apotex) 6 mg hard capsule, 28, blister pack 160574 1009141000168104 Rivastigmine (Apotex) 6 mg hard capsule, 28 1009111000168103 Rivastigmine (Apotex) 6 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1003871000168101 rivastigmine 6 mg capsule, 28 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +35651011000036106 PVA Tears 1.4% eye drops solution, 15 mL, bottle 35565011000036106 PVA Tears 1.4% eye drops solution, 15 mL 35477011000036103 PVA Tears 1.4% eye drops solution 29041000168109 PVA Tears 29041000168109 PVA Tears 35772011000036106 polyvinyl alcohol 1.4% eye drops, 15 mL 35713011000036107 polyvinyl alcohol 1.4% eye drops 35687011000036109 polyvinyl alcohol +781581000168102 Movapo PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes 129948 781571000168100 Movapo PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes 781561000168106 Movapo PFS 50 mg/10 mL injection solution, 10 mL syringe 781551000168109 Movapo PFS 781551000168109 Movapo PFS 781271000168103 apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, 5 x 10 mL syringes 781251000168107 apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, syringe 21732011000036105 apomorphine +961531000168106 Pioglitazone (Apo) 45 mg uncoated tablet, 50, blister pack 166912 961521000168108 Pioglitazone (Apo) 45 mg uncoated tablet, 50 961471000168105 Pioglitazone (Apo) 45 mg uncoated tablet 730631000168100 Pioglitazone (Apo) 730631000168100 Pioglitazone (Apo) 929260011000036104 pioglitazone 45 mg tablet, 50 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +648791000168104 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 200 mL, bottle 178302 648781000168102 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 200 mL 648751000168109 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +804601000168108 Aczicrit 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 147855 804591000168101 Aczicrit 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 804561000168108 Aczicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924134011000036103 epoetin lambda 1000 units/0.5 mL injection, 6 x 0.5 mL syringes 923957011000036109 epoetin lambda 1000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +978611000168101 Brevoxyl Creamy Wash 4% cream, 25 mL, tube 117862 978601000168104 Brevoxyl Creamy Wash 4% cream, 25 mL 978551000168101 Brevoxyl Creamy Wash 4% cream 978541000168103 Brevoxyl Creamy Wash 978541000168103 Brevoxyl Creamy Wash 978591000168106 benzoyl peroxide 4% cream, 25 mL 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +811551000168105 Afinitor 3 mg dispersible tablet, 100, blister pack 200204 811541000168108 Afinitor 3 mg dispersible tablet, 100 811431000168103 Afinitor 3 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811531000168104 everolimus 3 mg dispersible tablet, 100 811421000168101 everolimus 3 mg dispersible tablet 21615011000036103 everolimus +19381011000036104 Dostinex 500 microgram uncoated tablet, 2, bottle 52158 12668011000036107 Dostinex 500 microgram uncoated tablet, 2 4504011000036104 Dostinex 500 microgram uncoated tablet 3720011000036101 Dostinex 3720011000036101 Dostinex 27271011000036107 cabergoline 500 microgram tablet, 2 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +922023011000036104 Wagner 1000 Plus Glucosamine hard capsule, 200, bottle 98506 921581011000036105 Wagner 1000 Plus Glucosamine hard capsule, 200 921098011000036103 Wagner 1000 Plus Glucosamine hard capsule 920938011000036105 Wagner 1000 Plus Glucosamine 920938011000036105 Wagner 1000 Plus Glucosamine 922694011000036103 ascorbic acid 50 mg + citrus bioflavonoids extract 50 mg + cupric sulfate pentahydrate 649 microgram (copper 166 microgram) + glucosamine sulfate potassium chloride 1 g + manganese amino acid chelate 5 mg (manganese 500 microgram) + zinc (as oxide) 2 mg capsule, 200 922162011000036105 ascorbic acid 50 mg + citrus bioflavonoids extract 50 mg + cupric sulfate pentahydrate 649 microgram (copper 166 microgram) + glucosamine sulfate potassium chloride 1 g + manganese amino acid chelate 5 mg (manganese 500 microgram) + zinc (as oxide) 2 mg capsule 922040011000036109 ascorbic acid + citrus bioflavonoids extract + cupric sulfate pentahydrate + glucosamine + manganese amino acid chelate + zinc oxide +1034831000168107 Atomoxetine (CH) 18 mg hard capsule, 28, blister pack 234827 1034821000168109 Atomoxetine (CH) 18 mg hard capsule, 28 1034711000168105 Atomoxetine (CH) 18 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +77346011000036103 Biliscopin 10.5 g (iodine 5 g)/100 mL intravenous infusion injection, 100 mL bottle 52765 76762011000036107 Biliscopin 10.5 g (iodine 5 g)/100 mL intravenous infusion injection, 100 mL bottle 76171011000036101 Biliscopin 10.5 g (iodine 5 g)/100 mL intravenous infusion injection, 100 mL bottle 75939011000036104 Biliscopin 75939011000036104 Biliscopin 78269011000036104 iotroxate meglumine 10.5 g (iodine 5 g)/100 mL injection, 100 mL bottle 77588011000036107 iotroxate meglumine 10.5 g (iodine 5 g)/100 mL injection, bottle 77474011000036101 iotroxic acid +1057881000168104 Atorvastatin (Ran) 80 mg film-coated tablet, 100, bottle 179850 1057871000168102 Atorvastatin (Ran) 80 mg film-coated tablet, 100 1057581000168102 Atorvastatin (Ran) 80 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +44823011000036105 Detrusitol 1 mg film-coated tablet, 140, blister pack 99393 42255011000036107 Detrusitol 1 mg film-coated tablet, 140 40407011000036104 Detrusitol 1 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47008011000036100 tolterodine tartrate 1 mg tablet, 140 45373011000036104 tolterodine tartrate 1 mg tablet 44907011000036104 tolterodine +82416011000036103 Esmeron 50 mg/5 mL injection solution, 10 x 5 mL vials 57063 82205011000036107 Esmeron 50 mg/5 mL injection solution, 10 x 5 mL vials 40146011000036105 Esmeron 50 mg/5 mL injection solution, 5 mL vial 39588011000036108 Esmeron 39588011000036108 Esmeron 82570011000036102 rocuronium bromide 50 mg/5 mL injection, 10 x 5 mL vials 45193011000036101 rocuronium bromide 50 mg/5 mL injection, vial 44919011000036108 rocuronium +716791000168101 Pemzo 20 mg enteric capsule, 5, bottle 167315 716781000168104 Pemzo 20 mg enteric capsule, 5 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716611000168103 omeprazole 20 mg enteric capsule, 5 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +50688011000036107 Accu-Chek Active diagnostic strip, 50, bottle 79458 49712011000036105 Accu-Chek Active diagnostic strip, 50 48840011000036101 Accu-Chek Active diagnostic strip 32741000168102 Accu-Chek Active 32741000168102 Accu-Chek Active 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +775781000168101 Fluarix Tetra 2016 with Needle injection suspension, 1 x 0.5 mL syringe 210806 775771000168104 Fluarix Tetra 2016 with Needle injection suspension, 1 x 0.5 mL syringe 772701000168103 Fluarix Tetra 2016 with Needle injection suspension, 0.5 mL syringe 772631000168102 Fluarix Tetra 2016 772631000168102 Fluarix Tetra 2016 775741000168106 influenza quadrivalent adult vaccine 2016 injection, 1 x 0.5 mL syringe 768461000168102 influenza quadrivalent adult vaccine 2016 injection, 0.5 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +838961000168102 Joncia 25 mg hard capsule, 14, blister pack 176508 838951000168104 Joncia 25 mg hard capsule, 14 838931000168105 Joncia 25 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 838941000168101 milnacipran hydrochloride 25 mg capsule, 14 838921000168107 milnacipran hydrochloride 25 mg capsule 838911000168100 milnacipran +896591000168107 Imatinib (AN) 100 mg hard capsule, 180, blister pack 281365 896581000168109 Imatinib (AN) 100 mg hard capsule, 180 896471000168107 Imatinib (AN) 100 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 828931000168107 imatinib 100 mg capsule, 180 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +19848011000036100 Viagra 25 mg film-coated tablet, 4, bottle 64437 13095011000036100 Viagra 25 mg film-coated tablet, 4 6379011000036103 Viagra 25 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +19606011000036103 Hycamtin 4 mg powder for injection, 5 vials 58598 12876011000036107 Hycamtin 4 mg powder for injection, 5 vials 6167011000036109 Hycamtin 4 mg powder for injection, 4 mg vial 3973011000036103 Hycamtin 3973011000036103 Hycamtin 27411011000036100 topotecan 4 mg injection, 5 vials 22759011000036102 topotecan 4 mg injection, vial 21571011000036101 topotecan +1043511000168100 Gabapentin (Apo) 400 mg hard capsule, 100, blister pack 81777 1043501000168103 Gabapentin (Apo) 400 mg hard capsule, 100 1043491000168105 Gabapentin (Apo) 400 mg hard capsule 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +933215631000036105 Olanzapine (LY) 10 mg film-coated tablet, 28, blister pack 167685 933205141000036106 Olanzapine (LY) 10 mg film-coated tablet, 28 933196191000036106 Olanzapine (LY) 10 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +752551000168105 Oxycodone (WT) 10 mg hard capsule, 60, blister pack 227842 752521000168102 Oxycodone (WT) 10 mg hard capsule, 60 752491000168104 Oxycodone (WT) 10 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +19969011000036109 Taxol 300 mg/50 mL concentrated injection, 50 mL vial 67821 13212011000036104 Taxol 300 mg/50 mL concentrated injection, 50 mL vial 6494011000036102 Taxol 300 mg/50 mL concentrated injection, 50 mL vial 3399011000036100 Taxol 3399011000036100 Taxol 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +21144011000036109 Frakas 50 mg uncoated tablet, 25, blister pack 98653 14286011000036100 Frakas 50 mg uncoated tablet, 25 7572011000036107 Frakas 50 mg uncoated tablet 3438011000036107 Frakas 3438011000036107 Frakas 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +898211000168101 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet, 30, bottle 195276 135251000036102 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet, 30 134441000036102 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet 58461000168108 Candesartan/HCT 32 mg/12.5 mg (Sandoz) 58461000168108 Candesartan/HCT 32 mg/12.5 mg (Sandoz) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +60644011000036109 Mercurochrome (Gold Cross) 2% paint, 50 mL, bottle 27362 56602011000036103 Mercurochrome (Gold Cross) 2% paint, 50 mL 53999011000036100 Mercurochrome (Gold Cross) 2% paint 53417011000036106 Mercurochrome (Gold Cross) 53417011000036106 Mercurochrome (Gold Cross) 63454011000036105 merbromin 2% paint, 50 mL 61975011000036102 merbromin 2% paint 61759011000036108 merbromin +1059351000168105 Atomoxetine (Medis) 40 mg hard capsule, 7, blister pack 238331 1059341000168108 Atomoxetine (Medis) 40 mg hard capsule, 7 1059331000168104 Atomoxetine (Medis) 40 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1065291000168103 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 30, blister pack 294343 1065281000168101 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 30 1065171000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065271000168104 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 30 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +911211000168102 Carvedilol (Watson) 6.25 mg uncoated tablet, 30, blister pack 194078 911201000168100 Carvedilol (Watson) 6.25 mg uncoated tablet, 30 911191000168103 Carvedilol (Watson) 6.25 mg uncoated tablet 911151000168108 Carvedilol (Watson) 911151000168108 Carvedilol (Watson) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +1063681000168103 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 30, blister pack 155753 1063671000168101 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 30 1063471000168104 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +18972011000036108 Panafcortelone 25 mg uncoated tablet, 30, bottle 27964 12280011000036105 Panafcortelone 25 mg uncoated tablet, 30 5141011000036107 Panafcortelone 25 mg uncoated tablet 3294011000036105 Panafcortelone 3294011000036105 Panafcortelone 33798011000036106 prednisolone 25 mg tablet, 30 33670011000036107 prednisolone 25 mg tablet 21273011000036105 prednisolone +87653011000036104 Sumatriptan (Pharmacor) 50 mg film-coated tablet, 4, blister pack 154817 87448011000036105 Sumatriptan (Pharmacor) 50 mg film-coated tablet, 4 87314011000036101 Sumatriptan (Pharmacor) 50 mg film-coated tablet 87291011000036106 Sumatriptan (Pharmacor) 87291011000036106 Sumatriptan (Pharmacor) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +792881000168108 Flecainide (Sandoz) 50 mg uncoated tablet, 60, blister pack 232473 792871000168105 Flecainide (Sandoz) 50 mg uncoated tablet, 60 792861000168104 Flecainide (Sandoz) 50 mg uncoated tablet 792851000168101 Flecainide (Sandoz) 792851000168101 Flecainide (Sandoz) 27079011000036103 flecainide acetate 50 mg tablet, 60 22448011000036104 flecainide acetate 50 mg tablet 21457011000036102 flecainide +66151000036103 Thermalife 1.9% cream, 75 g, tube 27419 63791000036101 Thermalife 1.9% cream, 75 g 61701000036108 Thermalife 1.9% cream 60251000036108 Thermalife 60251000036108 Thermalife 63801000036102 bovine plasma proteins hydrolysate 1.9% cream, 75 g 61711000036105 bovine plasma proteins hydrolysate 1.9% cream 68951000036101 bovine plasma proteins hydrolysate +926950011000036103 Fexotabs 120 mg film-coated tablet, 10, blister pack 98208 926344011000036104 Fexotabs 120 mg film-coated tablet, 10 925775011000036100 Fexotabs 120 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +37541011000036104 Amlodipine (GA) 10 mg uncoated tablet, 30, blister pack 139303 36809011000036109 Amlodipine (GA) 10 mg uncoated tablet, 30 36140011000036100 Amlodipine (GA) 10 mg uncoated tablet 35898011000036101 Amlodipine (GA) 35898011000036101 Amlodipine (GA) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +936901000168105 Dapa-Tabs 2.5 mg film-coated tablet, 30, blister pack 62367 936891000168106 Dapa-Tabs 2.5 mg film-coated tablet, 30 935671000168101 Dapa-Tabs 2.5 mg film-coated tablet 3166011000036102 Dapa-Tabs 3166011000036102 Dapa-Tabs 936881000168108 indapamide hemihydrate 2.5 mg tablet, 30 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +104241000036106 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 170388 101401000036105 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 98961000036100 Femme-Tab ED 30/150 (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 700015541000036105 Femme-Tab ED 30/150 700015541000036105 Femme-Tab ED 30/150 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +104241000036106 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 170388 101401000036105 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 99071000036103 Femme-Tab ED 30/150 (inert substance) film-coated tablet 700015541000036105 Femme-Tab ED 30/150 700015541000036105 Femme-Tab ED 30/150 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +707061000168105 Morphine (Juno) 10 mg/mL injection solution, 10 x 1 mL ampoules 224246 707051000168108 Morphine (Juno) 10 mg/mL injection solution, 10 x 1 mL ampoules 707001000168109 Morphine (Juno) 10 mg/mL injection solution, ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 707041000168106 morphine hydrochloride trihydrate 10 mg/mL injection, 10 x 1 mL ampoules 706991000168102 morphine hydrochloride trihydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +921844011000036104 Fenezal 25 mg film-coated tablet, 50, blister pack 134532 921403011000036104 Fenezal 25 mg film-coated tablet, 50 920988011000036103 Fenezal 25 mg film-coated tablet 920915011000036107 Fenezal 920915011000036107 Fenezal 27922011000036103 promethazine hydrochloride 25 mg tablet, 50 23246011000036109 promethazine hydrochloride 25 mg tablet 21237011000036104 promethazine +747731000168108 Morphine MR (SCP) 60 mg modified release tablet, 20, blister pack 225423 747721000168105 Morphine MR (SCP) 60 mg modified release tablet, 20 747711000168103 Morphine MR (SCP) 60 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 27108011000036105 morphine sulfate pentahydrate 60 mg modified release tablet, 20 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +1116121000168109 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 56, blister pack 158165 1116111000168102 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 56 1115991000168100 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 922587011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 56 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +928988011000036101 Valaciclovir (Chemmart) 500 mg film-coated tablet, 240, blister pack 158913 928349011000036107 Valaciclovir (Chemmart) 500 mg film-coated tablet, 240 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929218011000036103 valaciclovir 500 mg tablet, 240 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +995851000168104 Difflam Lozenge Orange Sugar Free lozenge, 24, blister pack 72151 995841000168101 Difflam Lozenge Orange Sugar Free lozenge, 24 995791000168104 Difflam Lozenge Orange Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995731000168103 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +20937011000036108 Lycinate 600 microgram sublingual tablet, 100, bottle 94215 14091011000036100 Lycinate 600 microgram sublingual tablet, 100 7369011000036107 Lycinate 600 microgram sublingual tablet 3556011000036100 Lycinate 3556011000036100 Lycinate 28141011000036100 glyceryl trinitrate 600 microgram sublingual tablet, 100 23450011000036109 glyceryl trinitrate 600 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +20937011000036108 Lycinate 600 microgram sublingual tablet, 100, bottle 227784 14091011000036100 Lycinate 600 microgram sublingual tablet, 100 7369011000036107 Lycinate 600 microgram sublingual tablet 3556011000036100 Lycinate 3556011000036100 Lycinate 28141011000036100 glyceryl trinitrate 600 microgram sublingual tablet, 100 23450011000036109 glyceryl trinitrate 600 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +749901000168106 Tacrolimus (CH) 5 mg hard capsule, 50, blister pack 224278 749891000168107 Tacrolimus (CH) 5 mg hard capsule, 50 749861000168100 Tacrolimus (CH) 5 mg hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +850461000168105 Aripiprazole (Sandoz) 30 mg uncoated tablet, 30, blister pack 158274 850451000168108 Aripiprazole (Sandoz) 30 mg uncoated tablet, 30 850441000168106 Aripiprazole (Sandoz) 30 mg uncoated tablet 850231000168101 Aripiprazole (Sandoz) 850231000168101 Aripiprazole (Sandoz) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +43798011000036105 Imigran FDT 100 mg film-coated tablet, 12, blister pack 106715 41140011000036102 Imigran FDT 100 mg film-coated tablet, 12 39948011000036108 Imigran FDT 100 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 46114011000036103 sumatriptan 100 mg tablet, 12 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +43590011000036109 Coralan 5 mg film-coated tablet, 14, blister pack 107297 41151011000036107 Coralan 5 mg film-coated tablet, 14 39963011000036109 Coralan 5 mg film-coated tablet 39619011000036107 Coralan 39619011000036107 Coralan 46122011000036102 ivabradine 5 mg tablet, 14 44998011000036101 ivabradine 5 mg tablet 44871011000036108 ivabradine +863051000168100 Amitriptyline (AC) 25 mg tablet, 50, blister pack 232107 863041000168102 Amitriptyline (AC) 25 mg tablet, 50 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +121361000036105 Quetiapine (Pharmacy Choice) 200 mg film-coated tablet, 60, blister pack 162409 120251000036105 Quetiapine (Pharmacy Choice) 200 mg film-coated tablet, 60 119491000036101 Quetiapine (Pharmacy Choice) 200 mg film-coated tablet 119201000036105 Quetiapine (Pharmacy Choice) 119201000036105 Quetiapine (Pharmacy Choice) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +21179011000036106 Tramahexal SR 100 mg modified release tablet, 20, blister pack 99239 14320011000036102 Tramahexal SR 100 mg modified release tablet, 20 7606011000036107 Tramahexal SR 100 mg modified release tablet 10981000168104 Tramahexal SR 10981000168104 Tramahexal SR 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +50446011000036102 PKU Express 15 Orange powder for oral liquid, 30 x 25 g sachets 49531011000036109 PKU Express 15 Orange powder for oral liquid, 30 x 25 g sachets 248861000168100 PKU Express 15 Orange powder for oral liquid, 25 g sachet 14751000168101 PKU Express 15 14751000168101 PKU Express 15 51476011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 25 g sachets 247011000168109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 25 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1075381000168102 Atenolol (RBX) 25 mg film-coated tablet, 112, blister pack 197757 1075371000168100 Atenolol (RBX) 25 mg film-coated tablet, 112 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029901000168106 atenolol 25 mg tablet, 112 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +931747011000036106 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL vials 63956 930907011000036104 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL vials 930109011000036109 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 75 mL vial 5101000168100 Iomeron-300 5101000168100 Iomeron-300 932486011000036106 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 10 x 75 mL vials 931882011000036102 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 75 mL vial 931793011000036105 iomeprol +921903011000036101 Exforge HCT 10/160/25 film-coated tablet, 28, blister pack 158166 921462011000036105 Exforge HCT 10/160/25 film-coated tablet, 28 921018011000036102 Exforge HCT 10/160/25 film-coated tablet 7471000168106 Exforge HCT 10/160/25 7471000168106 Exforge HCT 10/160/25 922590011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +1026131000168109 Neuroccord 150 mg hard capsule, 20, bottle 235841 1026121000168106 Neuroccord 150 mg hard capsule, 20 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1040861000168105 Britussol Cough Linctus oral liquid solution, 50 mL, bottle 93440 1040851000168108 Britussol Cough Linctus oral liquid solution, 50 mL 1040831000168102 Britussol Cough Linctus oral liquid solution, 5 mL 1040821000168100 Britussol Cough Linctus 1040821000168100 Britussol Cough Linctus 1040841000168106 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 50 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +944771000168107 Epiramax 15 mg hard capsule, 60, bottle 137453 944761000168101 Epiramax 15 mg hard capsule, 60 944751000168103 Epiramax 15 mg hard capsule 81973011000036100 Epiramax 81973011000036100 Epiramax 27653011000036107 topiramate 15 mg capsule, 60 22990011000036106 topiramate 15 mg capsule 21458011000036101 topiramate +649191000168109 Mirtazapine ODT (Sandoz) 30 mg orally disintegrating tablet, 30, blister pack 183402 649181000168106 Mirtazapine ODT (Sandoz) 30 mg orally disintegrating tablet, 30 649171000168108 Mirtazapine ODT (Sandoz) 30 mg orally disintegrating tablet 649131000168105 Mirtazapine ODT (Sandoz) 649131000168105 Mirtazapine ODT (Sandoz) 47691000036107 mirtazapine 30 mg orally disintegrating tablet, 30 47561000036104 mirtazapine 30 mg orally disintegrating tablet 21463011000036102 mirtazapine +60655011000036106 Murine Sore Eyes 0.05% eye drops, 15 mL, bottle 29689 56613011000036107 Murine Sore Eyes 0.05% eye drops, 15 mL 54008011000036102 Murine Sore Eyes 0.05% eye drops 53429011000036109 Murine Sore Eyes 53429011000036109 Murine Sore Eyes 63465011000036103 tetryzoline hydrochloride 0.05% eye drops, 15 mL 61984011000036105 tetryzoline hydrochloride 0.05% eye drops 61755011000036106 tetryzoline +1116081000168107 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 28, blister pack 158165 1116071000168109 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 28 1115991000168100 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 922585011000036108 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 28 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +929006011000036107 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 480, blister pack 158915 928367011000036107 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 480 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929220011000036107 valaciclovir 500 mg tablet, 480 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +734841000168101 Paracetamol plus Codeine and Calmative (Apohealth) uncoated tablet, 20, blister pack 230135 734831000168105 Paracetamol plus Codeine and Calmative (Apohealth) uncoated tablet, 20 734821000168107 Paracetamol plus Codeine and Calmative (Apohealth) uncoated tablet 734811000168100 Paracetamol plus Codeine and Calmative (Apohealth) 734811000168100 Paracetamol plus Codeine and Calmative (Apohealth) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1026151000168103 Pregabalin (Amneal) 25 mg hard capsule, 500, bottle 235853 1026141000168100 Pregabalin (Amneal) 25 mg hard capsule, 500 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970451000168104 pregabalin 25 mg capsule, 500 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +44622011000036107 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 90345 42075011000036101 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent ampoule), 1 pack 40374011000036106 Luveris (lutropin alfa 75 units) powder for injection, 75 units vial 39654011000036102 Luveris 39654011000036102 Luveris 46842011000036107 lutropin alfa 75 units injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 45349011000036102 lutropin alfa 75 units injection, vial 44973011000036102 lutropin alfa +44622011000036107 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 90345 42075011000036101 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent ampoule), 1 pack 631451000168107 Luveris (inert substance) diluent, 1 mL ampoule 39654011000036102 Luveris 39654011000036102 Luveris 46842011000036107 lutropin alfa 75 units injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +19427011000036109 Dipentum 500 mg uncoated tablet, 100, bottle 53582 12711011000036105 Dipentum 500 mg uncoated tablet, 100 5349011000036101 Dipentum 500 mg uncoated tablet 3924011000036100 Dipentum 3924011000036100 Dipentum 27303011000036106 olsalazine sodium 500 mg tablet, 100 22656011000036104 olsalazine sodium 500 mg tablet 21557011000036107 olsalazine +1043031000168103 Pryzex ODT 10 mg orally disintegrating tablet, 28, blister pack 179076 1043021000168101 Pryzex ODT 10 mg orally disintegrating tablet, 28 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +69413011000036101 Microshield-4 4% solution, 1.5 L, bag 47524 67213011000036109 Microshield-4 4% solution, 1.5 L 65560011000036106 Microshield-4 4% solution 32231000168100 Microshield-4 32231000168100 Microshield-4 71764011000036100 chlorhexidine gluconate 4% solution, 1.5 L 70178011000036100 chlorhexidine gluconate 4% solution 21404011000036101 chlorhexidine +807571000168105 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) uncoated tablet, 30, bottle 224326 807011000168105 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) uncoated tablet, 30 807001000168107 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) uncoated tablet 806981000168103 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) 806981000168103 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +19185011000036108 Daivonex 0.005% ointment, 30 g, tube 46683 12480011000036109 Daivonex 0.005% ointment, 30 g 5390011000036104 Daivonex 0.005% ointment 30251000168107 Daivonex 30251000168107 Daivonex 27147011000036101 calcipotriol 0.005% ointment, 30 g 22510011000036101 calcipotriol 0.005% ointment 21829011000036100 calcipotriol +931379011000036104 Serdolect 4 mg film-coated tablet, 30, blister pack 127481 930581011000036104 Serdolect 4 mg film-coated tablet, 30 929949011000036102 Serdolect 4 mg film-coated tablet 929832011000036102 Serdolect 929832011000036102 Serdolect 932355011000036100 sertindole 4 mg tablet, 30 931827011000036107 sertindole 4 mg tablet 931786011000036100 sertindole +751751000168108 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 10, blister pack 196502 751741000168106 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 10 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 671801000168108 metoclopramide hydrochloride 10 mg tablet, 10 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +933211751000036105 Ciprofloxacin (BL) 750 mg film-coated tablet, 8, blister pack 114048 933199891000036107 Ciprofloxacin (BL) 750 mg film-coated tablet, 8 933194131000036102 Ciprofloxacin (BL) 750 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 87798011000036108 ciprofloxacin 750 mg tablet, 8 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +1023961000168105 Mucus Relief Forte (Amcal) 8 mg/5 mL oral liquid, 200 mL, bottle 201921 1023951000168108 Mucus Relief Forte (Amcal) 8 mg/5 mL oral liquid, 200 mL 1023921000168100 Mucus Relief Forte (Amcal) 8 mg/5 mL oral liquid, 5 mL 1023911000168107 Mucus Relief Forte (Amcal) 1023911000168107 Mucus Relief Forte (Amcal) 63250011000036101 bromhexine hydrochloride 8 mg/5 mL oral liquid, 200 mL 61902011000036102 bromhexine hydrochloride 8 mg/5 mL oral liquid 61780011000036106 bromhexine +1064651000168107 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 40, blister pack 202702 1064641000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 40 1064451000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +811871000168103 Aflitiv 100 mg/4 mL concentrated injection, 4 mL vial 195939 811861000168109 Aflitiv 100 mg/4 mL concentrated injection, 4 mL vial 811851000168107 Aflitiv 100 mg/4 mL concentrated injection, 4 mL vial 811811000168106 Aflitiv 811811000168106 Aflitiv 120781000036109 aflibercept 100 mg/4 mL injection, 4 mL vial 119461000036108 aflibercept 100 mg/4 mL injection, vial 82551000036105 aflibercept +31511000036106 Actiq 1600 microgram lozenge on handle, 9, blister pack 91604 29391000036105 Actiq 1600 microgram lozenge on handle, 9 34080011000036109 Actiq 1600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 29401000036108 fentanyl 1600 microgram lozenge on handle, 9 34915011000036107 fentanyl 1600 microgram lozenge on handle 21258011000036102 fentanyl +69194011000036102 Darrow's Solution (Baxter) intravenous infusion injection, 1 L bag 19436 66994011000036107 Darrow's Solution (Baxter) intravenous infusion injection, 1 L bag 65528011000036101 Darrow's Solution (Baxter) intravenous infusion injection, 1 L bag 65117011000036101 Darrow's Solution (Baxter) 65117011000036101 Darrow's Solution (Baxter) 71564011000036101 sodium lactate 0.59% (5.9 g/L) + sodium chloride 0.4% (4 g/L) + potassium chloride 0.26% (2.6 g/L) injection, 1 L bag 70067011000036103 sodium lactate 0.59% (5.9 g/L) + sodium chloride 0.4% (4 g/L) + potassium chloride 0.26% (2.6 g/L) injection, bag 860891000168106 sodium lactate + sodium chloride + potassium chloride +135751000036105 Ropinirole (GA) 500 microgram film-coated tablet, 28, blister pack 189856 135141000036106 Ropinirole (GA) 500 microgram film-coated tablet, 28 134261000036100 Ropinirole (GA) 500 microgram film-coated tablet 134171000036100 Ropinirole (GA) 134171000036100 Ropinirole (GA) 46970011000036103 ropinirole 500 microgram tablet, 28 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +666041000168102 Pacliccord 100 mg/16.7 mL concentrated injection, 16.7 mL vial 168523 666031000168106 Pacliccord 100 mg/16.7 mL concentrated injection, 16.7 mL vial 666021000168108 Pacliccord 100 mg/16.7 mL concentrated injection, 16.7 mL vial 666011000168101 Pacliccord 666011000168101 Pacliccord 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +798901000168107 Midazolam (Accord) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 207243 798891000168108 Midazolam (Accord) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 798861000168101 Midazolam (Accord) 50 mg/10 mL injection solution, 10 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +1075461000168101 Atenolol (RBX) 25 mg film-coated tablet, 500, bottle 197758 1075451000168103 Atenolol (RBX) 25 mg film-coated tablet, 500 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029261000168104 atenolol 25 mg tablet, 500 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +17975011000036106 Lanoxin 250 microgram uncoated tablet, 100, bottle 11109 11419011000036104 Lanoxin 250 microgram uncoated tablet, 100 5724011000036104 Lanoxin 250 microgram uncoated tablet 3340011000036103 Lanoxin 3340011000036103 Lanoxin 28006011000036108 digoxin 250 microgram tablet, 100 23329011000036109 digoxin 250 microgram tablet 21696011000036109 digoxin +965961000168106 Arflox 250 mg film-coated tablet, 10, blister pack 92364 963071000168100 Arflox 250 mg film-coated tablet, 10 963041000168107 Arflox 250 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +77305011000036103 X-Opaque-HD 976.5 mg/g powder for oral liquid, 30 x 300 g jars 29912 76721011000036107 X-Opaque-HD 976.5 mg/g powder for oral liquid, 30 x 300 g 76139011000036104 X-Opaque-HD 976.5 mg/g powder for oral liquid 75951011000036104 X-Opaque-HD 75951011000036104 X-Opaque-HD 78235011000036108 barium sulfate 976.5 mg/g powder for oral liquid, 30 x 300 g 77561011000036101 barium sulfate 976.5 mg/g powder for oral liquid 77454011000036104 barium +1075061000168109 Atenolol (RBX) 100 mg film-coated tablet, 120, blister pack 197761 1075051000168107 Atenolol (RBX) 100 mg film-coated tablet, 120 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1033291000168107 atenolol 100 mg tablet, 120 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +85054011000036108 Strepsils honey and lemon lozenge, 10, tube 165329 84918011000036109 Strepsils honey and lemon lozenge, 10 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 85186011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 10 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +717521000168108 Pemzo 20 mg enteric capsule, 60, bottle 167315 717431000168107 Pemzo 20 mg enteric capsule, 60 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716831000168107 omeprazole 20 mg enteric capsule, 60 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +60552011000036106 Disprin Regular 300 mg dispersible tablet, 50, strip pack 15366 56510011000036106 Disprin Regular 300 mg dispersible tablet, 50 53946011000036100 Disprin Regular 300 mg dispersible tablet 17321000168103 Disprin Regular 17321000168103 Disprin Regular 63388011000036104 aspirin 300 mg dispersible tablet, 50 83601000036104 aspirin 300 mg dispersible tablet 21719011000036107 aspirin +933246311000036107 Testosterone (Schering-Plough) 100 mg implant, 1, tube 14523 933242921000036102 Testosterone (Schering-Plough) 100 mg implant, 1 933241421000036104 Testosterone (Schering-Plough) 100 mg implant 933240811000036102 Testosterone (Schering-Plough) 933240811000036102 Testosterone (Schering-Plough) 26874011000036104 testosterone 100 mg implant, 1 22253011000036108 testosterone 100 mg implant 21290011000036109 testosterone +60771011000036103 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 30 mL, bottle 54133 56729011000036109 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 30 mL 54051011000036100 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 5 mL 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 63533011000036104 bromhexine hydrochloride 4 mg/5 mL oral liquid, 30 mL 62004011000036102 bromhexine hydrochloride 4 mg/5 mL oral liquid 61780011000036106 bromhexine +933246291000036106 Oestradiol (Schering-Plough) 100 mg implant, 1, tube 14509 933242901000036107 Oestradiol (Schering-Plough) 100 mg implant, 1 933241401000036109 Oestradiol (Schering-Plough) 100 mg implant 933240831000036106 Oestradiol (Schering-Plough) 933240831000036106 Oestradiol (Schering-Plough) 26866011000036102 estradiol 100 mg implant, 1 22245011000036106 estradiol 100 mg implant 21238011000036103 estradiol +18943011000036102 Largactil 50 mg/2 mL injection solution, 10 x 2 mL ampoules 27511 12251011000036108 Largactil 50 mg/2 mL injection solution, 10 x 2 mL ampoules 4997011000036101 Largactil 50 mg/2 mL injection solution, 2 mL ampoule 36041000168104 Largactil 36041000168104 Largactil 27015011000036105 chlorpromazine hydrochloride 50 mg/2 mL injection, 10 x 2 mL ampoules 22388011000036103 chlorpromazine hydrochloride 50 mg/2 mL injection, ampoule 21310011000036102 chlorpromazine +60246011000036104 Fexo (Guardian) 180 mg film-coated tablet, 20, blister pack 134656 56205011000036108 Fexo (Guardian) 180 mg film-coated tablet, 20 53841011000036102 Fexo (Guardian) 180 mg film-coated tablet 53537011000036107 Fexo (Guardian) 53537011000036107 Fexo (Guardian) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +59803011000036109 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 48, blister pack 114361 55765011000036100 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 48 53619011000036102 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet 45481000168108 Ibuprofen (Pharmacy Health) 45481000168108 Ibuprofen (Pharmacy Health) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +69464011000036100 Oxy Antiseptic Medicated Skin Wash 0.5% gel, 200 mL, bottle 49218 67264011000036105 Oxy Antiseptic Medicated Skin Wash 0.5% gel, 200 mL 65582011000036107 Oxy Antiseptic Medicated Skin Wash 0.5% gel 65130011000036107 Oxy Antiseptic Medicated Skin Wash 65130011000036107 Oxy Antiseptic Medicated Skin Wash 71814011000036101 triclosan 0.5% gel, 200 mL 70198011000036106 triclosan 0.5% gel 69817011000036103 triclosan +60171011000036108 Exforge 5/160 film-coated tablet, 56, blister pack 130834 56130011000036108 Exforge 5/160 film-coated tablet, 56 53802011000036104 Exforge 5/160 film-coated tablet 8411000168102 Exforge 5/160 8411000168102 Exforge 5/160 63234011000036107 amlodipine 5 mg + valsartan 160 mg tablet, 56 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +683271000168108 Sildenafil (Actavis) 25 mg film-coated tablet, 4, blister pack 202925 683261000168102 Sildenafil (Actavis) 25 mg film-coated tablet, 4 683251000168104 Sildenafil (Actavis) 25 mg film-coated tablet 683181000168104 Sildenafil (Actavis) 683181000168104 Sildenafil (Actavis) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +1023821000168108 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 36, blister pack 227168 1023811000168101 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 36 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +928834011000036108 Bicalutamide (Sandoz) 50 mg film-coated tablet, 28, blister pack 128737 928196011000036102 Bicalutamide (Sandoz) 50 mg film-coated tablet, 28 927855011000036100 Bicalutamide (Sandoz) 50 mg film-coated tablet 927786011000036104 Bicalutamide (Sandoz) 927786011000036104 Bicalutamide (Sandoz) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +933246451000036103 Atenolol (PS) 50 mg film-coated tablet, 30, blister pack 147641 933243001000036100 Atenolol (PS) 50 mg film-coated tablet, 30 933241271000036101 Atenolol (PS) 50 mg film-coated tablet 933240991000036100 Atenolol (PS) 933240991000036100 Atenolol (PS) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +18441000036108 Zomacton (1 x 4 mg vial, 1 x inert diluent vial), 1 pack, composite pack 79590 17081000036109 Zomacton (1 x 4 mg vial, 1 x inert diluent vial), 1 pack 40308011000036108 Zomacton (inert substance) diluent, vial 39565011000036100 Zomacton 39565011000036100 Zomacton 17071000036107 somatropin 4 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +18441000036108 Zomacton (1 x 4 mg vial, 1 x inert diluent vial), 1 pack, composite pack 79590 17081000036109 Zomacton (1 x 4 mg vial, 1 x inert diluent vial), 1 pack 48841011000036108 Zomacton (somatropin 4 mg) powder for injection, 4 mg vial 39565011000036100 Zomacton 39565011000036100 Zomacton 17071000036107 somatropin 4 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23233011000036104 somatropin 4 mg injection, vial 21295011000036100 somatropin +69706011000036101 Claramax 5 mg film-coated tablet, 15, blister pack 91115 67505011000036104 Claramax 5 mg film-coated tablet, 15 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72020011000036104 desloratadine 5 mg tablet, 15 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +734681000168107 Ibuprofen plus Codeine (Apohealth) film-coated tablet, 30, blister pack 227876 734671000168109 Ibuprofen plus Codeine (Apohealth) film-coated tablet, 30 734641000168102 Ibuprofen plus Codeine (Apohealth) film-coated tablet 734591000168106 Ibuprofen plus Codeine (Apohealth) 734591000168106 Ibuprofen plus Codeine (Apohealth) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +792561000168101 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 30, blister pack 194033 792551000168103 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 30 792431000168105 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1109541000168101 Nicotinell Ice Mint 2 mg chewing gum, 96, blister pack 279615 1109531000168105 Nicotinell Ice Mint 2 mg chewing gum, 96 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1077391000168109 Fexo (Amcal) 180 mg film-coated tablet, 80, blister pack 223782 1077381000168106 Fexo (Amcal) 180 mg film-coated tablet, 80 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 1077371000168108 fexofenadine hydrochloride 180 mg tablet, 80 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +18459011000036103 Suboxone 2/0.5 sublingual tablet, 28, blister pack 120159 11633011000036106 Suboxone 2/0.5 sublingual tablet, 28 5108011000036108 Suboxone 2/0.5 sublingual tablet 39741000168105 Suboxone 2/0.5 39741000168105 Suboxone 2/0.5 26713011000036106 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet, 28 22108011000036108 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet 21739011000036100 buprenorphine + naloxone +715421000168100 Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g, tube 114895 715411000168107 Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g 715401000168109 Clotrimazole (Your Pharmacy) 2% vaginal cream 53455011000036108 Clotrimazole (Your Pharmacy) 53455011000036108 Clotrimazole (Your Pharmacy) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +1025991000168102 Neuroccord 300 mg hard capsule, 14, blister pack 235864 1025711000168108 Neuroccord 300 mg hard capsule, 14 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1043191000168103 Pryzex ODT 5 mg orally disintegrating tablet, 7, blister pack 179079 1043181000168101 Pryzex ODT 5 mg orally disintegrating tablet, 7 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043171000168104 olanzapine 5 mg orally disintegrating tablet, 7 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +933246471000036108 Cephalexin (PS) 250 mg capsule, 20, blister pack 148200 933243021000036105 Cephalexin (PS) 250 mg capsule, 20 933241291000036102 Cephalexin (PS) 250 mg capsule 933240961000036107 Cephalexin (PS) 933240961000036107 Cephalexin (PS) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +79023011000036103 Ketocal 4:1 (4:1 ratio long chain fat to carbohydate plus protein) powder for oral liquid, 300 g, can 78782011000036103 Ketocal 4:1 (4:1 ratio long chain fat to carbohydate plus protein) powder for oral liquid, 300 g 78624011000036109 Ketocal 4:1 (4:1 ratio long chain fat to carbohydate plus protein) powder for oral liquid 56891000168100 Ketocal 4:1 56891000168100 Ketocal 4:1 79199011000036102 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate (4:1 ratio long chain fat to carbohydate plus protein) powder for oral liquid, 300 g 79104011000036101 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate (4:1 ratio long chain fat to carbohydate plus protein) powder for oral liquid 79093011000036108 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate +657611000168100 Candesartan Cilexetil (AN) 16 mg uncoated tablet, 30, bottle 195445 657601000168103 Candesartan Cilexetil (AN) 16 mg uncoated tablet, 30 657591000168105 Candesartan Cilexetil (AN) 16 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +59929011000036109 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet, 96, blister pack 119159 55891011000036102 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet, 96 53603011000036102 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet 53568011000036103 Ibuprofen (Terry White Chemists) 53568011000036103 Ibuprofen (Terry White Chemists) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +764701000168100 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet, 20, blister pack 214505 764691000168100 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet, 20 764681000168103 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +809681000168101 Entresto 97/103 film-coated tablet, 14, blister pack 234218 809671000168104 Entresto 97/103 film-coated tablet, 14 809651000168108 Entresto 97/103 film-coated tablet 805781000168109 Entresto 97/103 805781000168109 Entresto 97/103 809661000168105 sacubitril 97.2 mg + valsartan 102.8 mg tablet, 14 809641000168106 sacubitril 97.2 mg + valsartan 102.8 mg tablet 809631000168102 sacubitril + valsartan +18701011000036101 Corbeton 20 mg film-coated tablet, 100, bottle 17591 12124011000036108 Corbeton 20 mg film-coated tablet, 100 4578011000036102 Corbeton 20 mg film-coated tablet 4407011000036100 Corbeton 4407011000036100 Corbeton 26934011000036108 oxprenolol hydrochloride 20 mg tablet, 100 22311011000036105 oxprenolol hydrochloride 20 mg tablet 21774011000036104 oxprenolol +44547011000036103 Alkeran (1 x 50 mg vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 79834 42000011000036100 Alkeran (1 x 50 mg vial, 1 x 10 mL inert diluent vial), 1 pack 636791000168102 Alkeran (inert substance) diluent, 10 mL vial 35281000168105 Alkeran 35281000168105 Alkeran 46775011000036100 melphalan 50 mg injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +44547011000036103 Alkeran (1 x 50 mg vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 79834 42000011000036100 Alkeran (1 x 50 mg vial, 1 x 10 mL inert diluent vial), 1 pack 40312011000036108 Alkeran (melphalan 50 mg) powder for injection, 50 mg vial 35281000168105 Alkeran 35281000168105 Alkeran 46775011000036100 melphalan 50 mg injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 45311011000036106 melphalan 50 mg injection, vial 21679011000036105 melphalan +19208011000036101 Risperdal 4 mg film-coated tablet, 60, blister pack 47011 12498011000036107 Risperdal 4 mg film-coated tablet, 60 4515011000036103 Risperdal 4 mg film-coated tablet 15481000168100 Risperdal 15481000168100 Risperdal 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +86005011000036104 Lisinopril (DRLA) 20 mg uncoated tablet, 50, blister pack 152722 85667011000036103 Lisinopril (DRLA) 20 mg uncoated tablet, 50 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 78127011000036104 lisinopril 20 mg tablet, 50 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1058121000168109 Atomoxetine (Medis) 10 mg hard capsule, 28, blister pack 238328 1058111000168102 Atomoxetine (Medis) 10 mg hard capsule, 28 1058081000168107 Atomoxetine (Medis) 10 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +925202011000036106 Pravastat 10 mg uncoated tablet, 30, blister pack 156357 924739011000036106 Pravastat 10 mg uncoated tablet, 30 924446011000036109 Pravastat 10 mg uncoated tablet 924369011000036104 Pravastat 924369011000036104 Pravastat 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +104091000036107 Donepezil Hydrochloride (Chemmart) 10 mg film-coated tablet, 28, blister pack 213498 101551000036105 Donepezil Hydrochloride (Chemmart) 10 mg film-coated tablet, 28 99331000036103 Donepezil Hydrochloride (Chemmart) 10 mg film-coated tablet 97851000036105 Donepezil Hydrochloride (Chemmart) 97851000036105 Donepezil Hydrochloride (Chemmart) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +104091000036107 Donepezil Hydrochloride (Chemmart) 10 mg film-coated tablet, 28, blister pack 168337 101551000036105 Donepezil Hydrochloride (Chemmart) 10 mg film-coated tablet, 28 99331000036103 Donepezil Hydrochloride (Chemmart) 10 mg film-coated tablet 97851000036105 Donepezil Hydrochloride (Chemmart) 97851000036105 Donepezil Hydrochloride (Chemmart) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +61623011000036101 Nurofen Migraine Pain 200 mg film-coated tablet, 24, blister pack 96215 57545011000036105 Nurofen Migraine Pain 200 mg film-coated tablet, 24 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1025971000168103 Pregabalin (Amneal) 25 mg hard capsule, 30, bottle 235853 1025961000168109 Pregabalin (Amneal) 25 mg hard capsule, 30 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970371000168101 pregabalin 25 mg capsule, 30 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +69222011000036104 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 15 x 500 mL bottles 19460 67022011000036102 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 15 x 500 mL bottles 65364011000036104 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 500 mL bottle 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 71592011000036108 chlorhexidine acetate 0.05% (250 mg/500 mL) + cetrimide 0.5% (2.5 g/500 mL) solution, 15 x 500 mL bottles 70081011000036109 chlorhexidine acetate 0.05% (250 mg/500 mL) + cetrimide 0.5% (2.5 g/500 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +31351000036103 Nystatin (Pharmacy Choice) 100 000 units/mL oral liquid suspension, 24 mL, bottle 171912 28451000036100 Nystatin (Pharmacy Choice) 100 000 units/mL oral liquid suspension, 24 mL 26971000036100 Nystatin (Pharmacy Choice) 100 000 units/mL oral liquid suspension 26331000036101 Nystatin (Pharmacy Choice) 26331000036101 Nystatin (Pharmacy Choice) 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +61450011000036106 Imflac 25 mg enteric tablet, 5, blister pack 90103 57375011000036109 Imflac 25 mg enteric tablet, 5 54287011000036107 Imflac 25 mg enteric tablet 14421000168100 Imflac 14421000168100 Imflac 63837011000036107 diclofenac sodium 25 mg enteric tablet, 5 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +760411000168102 Sildenafil (DRLA) 100 mg film-coated tablet, 4, blister pack 186287 760401000168100 Sildenafil (DRLA) 100 mg film-coated tablet, 4 760361000168109 Sildenafil (DRLA) 100 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +923171000168106 Abacavir/Lamivudine 600/300 (Apo) film-coated tablet, 30, bottle 239756 923151000168102 Abacavir/Lamivudine 600/300 (Apo) film-coated tablet, 30 923141000168104 Abacavir/Lamivudine 600/300 (Apo) film-coated tablet 923131000168108 Abacavir/Lamivudine 600/300 (Apo) 923131000168108 Abacavir/Lamivudine 600/300 (Apo) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +1092281000168109 Demazin PE Multi-Action Cold and Flu Relief Day and Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 286003 1092271000168106 Demazin PE Multi-Action Cold and Flu Relief Day and Night (16 x Day tablets, 8 x Night tablets), 24 1092261000168100 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Night) uncoated tablet 1092221000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night 1092241000168104 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Night) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1092281000168109 Demazin PE Multi-Action Cold and Flu Relief Day and Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 286003 1092271000168106 Demazin PE Multi-Action Cold and Flu Relief Day and Night (16 x Day tablets, 8 x Night tablets), 24 1092251000168102 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Day) uncoated tablet 1092221000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night 1092231000168108 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Day) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +803151000168100 Abilify ODT 20 mg orally disintegrating tablet, 7, blister pack 128903 803141000168102 Abilify ODT 20 mg orally disintegrating tablet, 7 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803131000168106 aripiprazole 20 mg orally disintegrating tablet, 7 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +876051000168104 Besivance 0.6% eye drops suspension, 2 mL, bottle 201509 876041000168101 Besivance 0.6% eye drops suspension, 2 mL 876021000168107 Besivance 0.6% eye drops suspension 875981000168102 Besivance 875981000168102 Besivance 876031000168105 besifloxacin 0.6% eye drops, 2 mL 876011000168100 besifloxacin 0.6% eye drops 876001000168103 besifloxacin +678931000168102 Clindamycin (Chemmart) 150 mg hard capsule, 24, blister pack 214365 678921000168100 Clindamycin (Chemmart) 150 mg hard capsule, 24 678911000168107 Clindamycin (Chemmart) 150 mg hard capsule 678901000168109 Clindamycin (Chemmart) 678901000168109 Clindamycin (Chemmart) 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +743391000168104 Jardiamet 5 mg/1000 mg film-coated tablet, 60, blister pack 229817 743381000168102 Jardiamet 5 mg/1000 mg film-coated tablet, 60 743331000168103 Jardiamet 5 mg/1000 mg film-coated tablet 743311000168108 Jardiamet 5 mg/1000 mg 743311000168108 Jardiamet 5 mg/1000 mg 743371000168100 empagliflozin 5 mg + metformin hydrochloride 1 g tablet, 60 743321000168101 empagliflozin 5 mg + metformin hydrochloride 1 g tablet 743221000168107 empagliflozin + metformin +991831000168107 Famciclovir (Apotex) 250 mg film-coated tablet, 5, blister pack 160562 991821000168109 Famciclovir (Apotex) 250 mg film-coated tablet, 5 991811000168102 Famciclovir (Apotex) 250 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 87820011000036102 famciclovir 250 mg tablet, 5 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +700351000168106 Adempas 500 microgram film-coated tablet, 84, blister pack 207595 700341000168109 Adempas 500 microgram film-coated tablet, 84 700231000168107 Adempas 500 microgram film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700331000168100 riociguat 500 microgram tablet, 84 700221000168109 riociguat 500 microgram tablet 700211000168102 riociguat +121451000036104 Sustanon 250 injection solution, 1 mL vial 190717 120341000036104 Sustanon 250 injection solution, 1 mL vial 119671000036103 Sustanon 250 injection solution, vial 4109011000036108 Sustanon 250 4109011000036108 Sustanon 250 120351000036101 testosterone propionate 30 mg/mL + testosterone phenylpropionate 60 mg/mL + testosterone isocaproate 60 mg/mL + testosterone decanoate 100 mg/mL injection, 1 mL vial 119681000036101 testosterone propionate 30 mg/mL + testosterone phenylpropionate 60 mg/mL + testosterone isocaproate 60 mg/mL + testosterone decanoate 100 mg/mL injection, vial 21695011000036102 testosterone propionate + testosterone phenylpropionate + testosterone isocaproate + testosterone decanoate +37460011000036107 Frisium 10 mg uncoated tablet, 50, blister pack 12400 36730011000036107 Frisium 10 mg uncoated tablet, 50 36047011000036109 Frisium 10 mg uncoated tablet 35956011000036100 Frisium 35956011000036100 Frisium 38640011000036107 clobazam 10 mg tablet, 50 37895011000036106 clobazam 10 mg tablet 37793011000036107 clobazam +59711011000036107 Anti-Fungal (Guardian) 1% cream, 20 g, tube 102008 55670011000036105 Anti-Fungal (Guardian) 1% cream, 20 g 53723011000036101 Anti-Fungal (Guardian) 1% cream 53208011000036105 Anti-Fungal (Guardian) 53208011000036105 Anti-Fungal (Guardian) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +69366011000036103 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 500 mL bag 29771 67166011000036104 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 500 mL bag 65292011000036102 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 500 mL bag 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 71728011000036100 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, 500 mL bag 70153011000036107 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +44305011000036104 Aciclovir Intravenous (Pfizer (Perth)) 500 mg/20 mL injection solution, 6 x 20 mL ampoules 66117 41772011000036106 Aciclovir Intravenous (Pfizer (Perth)) 500 mg/20 mL injection solution, 6 x 20 mL ampoules 40193011000036107 Aciclovir Intravenous (Pfizer (Perth)) 500 mg/20 mL injection solution, 20 mL ampoule 7941000168105 Aciclovir Intravenous (Pfizer (Perth)) 7941000168105 Aciclovir Intravenous (Pfizer (Perth)) 46579011000036102 aciclovir 500 mg/20 mL injection, 6 x 20 mL ampoules 45227011000036104 aciclovir 500 mg/20 mL injection, ampoule 21239011000036106 aciclovir +61139011000036100 Benadryl for the Family Chesty Forte oral liquid solution, 100 mL, bottle 73178 57082011000036109 Benadryl for the Family Chesty Forte oral liquid solution, 100 mL 54189011000036103 Benadryl for the Family Chesty Forte oral liquid solution, 5 mL 8221000168105 Benadryl for the Family Chesty Forte 8221000168105 Benadryl for the Family Chesty Forte 63966011000036107 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +135791000036101 Zarzio 300 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 195066 135211000036101 Zarzio 300 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 134221000036109 Zarzio 300 microgram/0.5 mL injection solution, 0.5 mL syringe 134181000036103 Zarzio 134181000036103 Zarzio 929230011000036105 filgrastim 300 microgram/0.5 mL injection, 5 x 0.5 mL syringes 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +991651000168102 Entecavir (Apo) 500 microgram film-coated tablet, 30, blister pack 217580 991641000168104 Entecavir (Apo) 500 microgram film-coated tablet, 30 991631000168108 Entecavir (Apo) 500 microgram film-coated tablet 991621000168105 Entecavir (Apo) 991621000168105 Entecavir (Apo) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +929040011000036103 Sertraline (DRLA) 100 mg film-coated tablet, 14, blister pack 160777 928401011000036108 Sertraline (DRLA) 100 mg film-coated tablet, 14 927967011000036107 Sertraline (DRLA) 100 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 929239011000036104 sertraline 100 mg tablet, 14 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +927371000168101 Metrogel 0.75% gel, 50 g, tube 15550 927361000168107 Metrogel 0.75% gel, 50 g 927321000168102 Metrogel 0.75% gel 927301000168106 Metrogel 927301000168106 Metrogel 26899011000036108 metronidazole 0.75% gel, 50 g 22277011000036102 metronidazole 0.75% gel 21482011000036106 metronidazole +747501000168106 Zolaccord 4 mg/5 mL concentrated injection, 5 mL vial 223405 747491000168104 Zolaccord 4 mg/5 mL concentrated injection, 5 mL vial 747481000168102 Zolaccord 4 mg/5 mL concentrated injection, 5 mL vial 747471000168100 Zolaccord 747471000168100 Zolaccord 28024011000036106 zoledronic acid 4 mg/5 mL injection, 5 mL vial 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +1034511000168104 Atomoxetine (Actavis) 10 mg hard capsule, 28, blister pack 237236 1034501000168102 Atomoxetine (Actavis) 10 mg hard capsule, 28 1034471000168108 Atomoxetine (Actavis) 10 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +846031000168106 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 83093 846021000168108 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 845961000168107 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 73692011000036108 NeisVac-C 73692011000036108 NeisVac-C 846011000168101 meningococcal C conjugate vaccine injection, 20 x 0.5 mL syringes 845881000168109 meningococcal C conjugate vaccine injection, 0.5 mL syringe 826391000168106 meningococcal C conjugate vaccine +50636011000036104 Augmentin Duo 500/125 film-coated tablet, 60, blister pack 142692 49662011000036100 Augmentin Duo 500/125 film-coated tablet, 60 6742011000036108 Augmentin Duo 500/125 film-coated tablet 37691000168101 Augmentin Duo 500/125 37691000168101 Augmentin Duo 500/125 51545011000036108 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 60 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +21110011000036108 Pentasa 1 g compressed suppository, 28, blister pack 98034 14253011000036104 Pentasa 1 g compressed suppository, 28 7539011000036104 Pentasa 1 g compressed suppository 3593011000036100 Pentasa 3593011000036100 Pentasa 28252011000036106 mesalazine 1 g suppository, 28 23566011000036106 mesalazine 1 g suppository 21351011000036101 mesalazine +1060211000168100 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 28, blister pack 234539 1060201000168103 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 28 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911461000168103 rosuvastatin 20 mg tablet, 28 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +61306011000036107 Regaine Men's Extra Strength 5% application, 3 x 60 mL, bottles 79914 57242011000036108 Regaine Men's Extra Strength 5% application, 3 x 60 mL 54251011000036109 Regaine Men's Extra Strength 5% application 45451000168101 Regaine Men's Extra Strength 45451000168101 Regaine Men's Extra Strength 63780011000036100 minoxidil 5% application, 3 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +910411000168108 Revolade 12.5 mg film-coated tablet, 84, blister pack 236115 910401000168105 Revolade 12.5 mg film-coated tablet, 84 910321000168106 Revolade 12.5 mg film-coated tablet 933219071000036102 Revolade 933219071000036102 Revolade 910391000168108 eltrombopag 12.5 mg tablet, 84 910311000168104 eltrombopag 12.5 mg tablet 933232121000036100 eltrombopag +95501000036103 Pantoprazole Heartburn Relief (Pharmacy Choice) 20 mg enteric tablet, 14, blister pack 185991 94391000036101 Pantoprazole Heartburn Relief (Pharmacy Choice) 20 mg enteric tablet, 14 93651000036102 Pantoprazole Heartburn Relief (Pharmacy Choice) 20 mg enteric tablet 60171000168104 Pantoprazole Heartburn Relief (Pharmacy Choice) 60171000168104 Pantoprazole Heartburn Relief (Pharmacy Choice) 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +829051000168105 Imatinib (RBX) 100 mg film-coated tablet, 100, bottle 225490 829041000168108 Imatinib (RBX) 100 mg film-coated tablet, 100 828971000168105 Imatinib (RBX) 100 mg film-coated tablet 828961000168104 Imatinib (RBX) 828961000168104 Imatinib (RBX) 829031000168104 imatinib 100 mg tablet, 100 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +888871000168106 Bosentan (Astron) 62.5 mg film-coated tablet, 100, bottle 235890 888861000168100 Bosentan (Astron) 62.5 mg film-coated tablet, 100 888831000168108 Bosentan (Astron) 62.5 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884251000168108 bosentan 62.5 mg tablet, 100 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +116381000036103 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 28, blister pack 168332 114691000036100 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 28 113471000036103 Zoely (inert substance) film-coated tablet 112561000036101 Zoely 112561000036101 Zoely 114701000036100 nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet [24] (&) inert substance tablet [4], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +116381000036103 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 28, blister pack 168332 114691000036100 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 28 113481000036101 Zoely (estradiol 1.5 mg + nomegestrol acetate 2.5 mg) film-coated tablet 112561000036101 Zoely 112561000036101 Zoely 114701000036100 nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet [24] (&) inert substance tablet [4], 28 113491000036104 nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet 117001000036109 nomegestrol + estradiol +807491000168107 Fintast 1 mg film-coated tablet, 28, blister pack 210616 807481000168109 Fintast 1 mg film-coated tablet, 28 807471000168106 Fintast 1 mg film-coated tablet 807461000168100 Fintast 807461000168100 Fintast 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +1030331000168106 Docetaxel (Sanofi) 20 mg/mL concentrated injection, 1 mL vial 161375 1030321000168108 Docetaxel (Sanofi) 20 mg/mL concentrated injection, 1 mL vial 1030311000168101 Docetaxel (Sanofi) 20 mg/mL concentrated injection, vial 1030221000168102 Docetaxel (Sanofi) 1030221000168102 Docetaxel (Sanofi) 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +1058061000168103 Atorvastatin (Ran) 20 mg film-coated tablet, 6, blister pack 179856 1058051000168100 Atorvastatin (Ran) 20 mg film-coated tablet, 6 1056551000168106 Atorvastatin (Ran) 20 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 841281000168105 atorvastatin 20 mg tablet, 6 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +871711000168107 Gastrolyte Blackcurrant effervescent tablet, 20, tube 171346 871691000168109 Gastrolyte Blackcurrant effervescent tablet, 20 871681000168106 Gastrolyte Blackcurrant effervescent tablet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +871711000168107 Gastrolyte Blackcurrant effervescent tablet, 20, tube 40630 871691000168109 Gastrolyte Blackcurrant effervescent tablet, 20 871681000168106 Gastrolyte Blackcurrant effervescent tablet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +1032501000168107 Atomoxetine (GXP) 100 mg hard capsule, 28, blister pack 234825 1032491000168100 Atomoxetine (GXP) 100 mg hard capsule, 28 1032431000168104 Atomoxetine (GXP) 100 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +717681000168106 Pemzo 20 mg enteric capsule, 90, bottle 167315 717661000168102 Pemzo 20 mg enteric capsule, 90 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716961000168106 omeprazole 20 mg enteric capsule, 90 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +914991000168102 Amlodipine (Apo) 2.5 mg uncoated tablet, 30, blister pack 135120 914981000168100 Amlodipine (Apo) 2.5 mg uncoated tablet, 30 914971000168103 Amlodipine (Apo) 2.5 mg uncoated tablet 30701000168100 Amlodipine (Apo) 30701000168100 Amlodipine (Apo) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +809861000168106 Entresto 49/51 film-coated tablet, 60, blister pack 234222 809851000168109 Entresto 49/51 film-coated tablet, 60 809771000168108 Entresto 49/51 film-coated tablet 809751000168104 Entresto 49/51 809751000168104 Entresto 49/51 809841000168107 sacubitril 48.6 mg + valsartan 51.4 mg tablet, 60 809761000168102 sacubitril 48.6 mg + valsartan 51.4 mg tablet 809631000168102 sacubitril + valsartan +19611011000036105 Selgene 5 mg uncoated tablet, 100, blister pack 58622 12880011000036103 Selgene 5 mg uncoated tablet, 100 6171011000036106 Selgene 5 mg uncoated tablet 3028011000036102 Selgene 3028011000036102 Selgene 27415011000036103 selegiline hydrochloride 5 mg tablet, 100 22763011000036109 selegiline hydrochloride 5 mg tablet 21925011000036108 selegiline +60437011000036104 Analgesic Calmative (Your Pharmacy) uncoated tablet, 20, blister pack 147341 56396011000036106 Analgesic Calmative (Your Pharmacy) uncoated tablet, 20 53898011000036104 Analgesic Calmative (Your Pharmacy) uncoated tablet 53106011000036109 Analgesic Calmative (Your Pharmacy) 53106011000036109 Analgesic Calmative (Your Pharmacy) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +95421000036107 Diarrhoea Relief (Medihealth) 2 mg uncoated tablet, 20, blister pack 182835 94281000036108 Diarrhoea Relief (Medihealth) 2 mg uncoated tablet, 20 93421000036106 Diarrhoea Relief (Medihealth) 2 mg uncoated tablet 93331000036100 Diarrhoea Relief (Medihealth) 93331000036100 Diarrhoea Relief (Medihealth) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +915071000168103 Movantik 12.5 mg film-coated tablet, 30, blister pack 232030 915061000168109 Movantik 12.5 mg film-coated tablet, 30 915011000168106 Movantik 12.5 mg film-coated tablet 914871000168108 Movantik 914871000168108 Movantik 915051000168107 naloxegol 12.5 mg tablet, 30 915001000168108 naloxegol 12.5 mg tablet 914881000168106 naloxegol +837951000168103 Airzate Accuhaler 100/50 powder for inhalation, 28 actuations, blister pack 208188 837941000168100 Airzate Accuhaler 100/50 powder for inhalation, 28 actuations 837921000168106 Airzate Accuhaler 100/50 powder for inhalation, actuation 837911000168104 Airzate Accuhaler 100/50 837911000168104 Airzate Accuhaler 100/50 837931000168109 fluticasone propionate 100 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 28 actuations 23008011000036108 fluticasone propionate 100 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +921878011000036105 Vitamin E 500 IU (Nature's Way) 335 mg (500 units) soft capsule, 200, jar 157010 921437011000036104 Vitamin E 500 IU (Nature's Way) 335 mg (500 units) soft capsule, 200 921009011000036108 Vitamin E 500 IU (Nature's Way) 335 mg (500 units) soft capsule 61401000168105 Vitamin E 500 IU (Nature's Way) 61401000168105 Vitamin E 500 IU (Nature's Way) 922565011000036105 d-alpha-tocopherol 335 mg (500 units) capsule, 200 77533011000036105 d-alpha-tocopherol 335 mg (500 units) capsule 77434011000036103 d-alpha-tocopherol +874041000168105 Telmisartan HCT 80/12.5mg (Alem) multilayer tablet, 28, blister pack 246496 874031000168101 Telmisartan HCT 80/12.5mg (Alem) multilayer tablet, 28 874021000168104 Telmisartan HCT 80/12.5mg (Alem) multilayer tablet 874011000168106 Telmisartan HCT 80/12.5mg (Alem) 874011000168106 Telmisartan HCT 80/12.5mg (Alem) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +824251000168103 Basaglar Kwikpen 100 units/mL injection solution, 10 x 3 mL injection devices 215552 824241000168100 Basaglar Kwikpen 100 units/mL injection solution, 10 x 3 mL injection devices 824131000168104 Basaglar Kwikpen 100 units/mL injection solution, 3 mL injection device 824111000168109 Basaglar Kwikpen 824111000168109 Basaglar Kwikpen 824231000168109 insulin glargine 100 units/mL injection, 10 x 3 mL injection devices 824121000168102 insulin glargine 100 units/mL injection, 3 mL injection device 21815011000036108 insulin glargine +944531000168100 Doxycycline Acne Pack (GA) 50 mg film-coated tablet, 30, blister pack 148816 944521000168103 Doxycycline Acne Pack (GA) 50 mg film-coated tablet, 30 944491000168100 Doxycycline Acne Pack (GA) 50 mg film-coated tablet 944481000168103 Doxycycline Acne Pack (GA) 944481000168103 Doxycycline Acne Pack (GA) 46826011000036109 doxycycline 50 mg tablet, 30 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +919321000168104 Astzol 1 mg film-coated tablet, 30, blister pack 259990 919311000168106 Astzol 1 mg film-coated tablet, 30 919301000168108 Astzol 1 mg film-coated tablet 919291000168107 Astzol 919291000168107 Astzol 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +976921000168103 Pregabalin (Apotex) 50 mg hard capsule, 20, blister pack 267553 976911000168105 Pregabalin (Apotex) 50 mg hard capsule, 20 976881000168105 Pregabalin (Apotex) 50 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 902701000168102 pregabalin 50 mg capsule, 20 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +880511000168102 Brenzys 50 mg/mL injection solution, 1 mL syringe 245252 880501000168100 Brenzys 50 mg/mL injection solution, 1 mL syringe 880481000168109 Brenzys 50 mg/mL injection solution, syringe 880471000168106 Brenzys 880471000168106 Brenzys 880491000168107 etanercept 50 mg/mL injection, 1 mL syringe 79116011000036107 etanercept 50 mg/mL injection, syringe 21347011000036107 etanercept +19900011000036102 Zocor 80 mg film-coated tablet, 30, blister pack 65977 13147011000036105 Zocor 80 mg film-coated tablet, 30 6430011000036103 Zocor 80 mg film-coated tablet 3904011000036106 Zocor 3904011000036106 Zocor 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +60679011000036106 Rapideine Plus uncoated tablet, 48, blister pack 42509 56637011000036105 Rapideine Plus uncoated tablet, 48 54017011000036100 Rapideine Plus uncoated tablet 53460011000036106 Rapideine Plus 53460011000036106 Rapideine Plus 63803011000036107 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 48 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +37576011000036108 Hyoscine Hydrobromide (DBL) 400 microgram/mL injection solution, 50 x 1 mL ampoules 16347 36843011000036101 Hyoscine Hydrobromide (DBL) 400 microgram/mL injection solution, 50 x 1 mL ampoules 36138011000036102 Hyoscine Hydrobromide (DBL) 400 microgram/mL injection solution, ampoule 35971011000036108 Hyoscine Hydrobromide (DBL) 35971011000036108 Hyoscine Hydrobromide (DBL) 38731011000036106 hyoscine hydrobromide 400 microgram/mL injection, 50 x 1 mL ampoules 37960011000036109 hyoscine hydrobromide 400 microgram/mL injection, ampoule 37778011000036108 hyoscine hydrobromide +19416011000036103 Humatrope (1 x 6 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack, composite pack 53423 12700011000036101 Humatrope (1 x 6 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack 639101000168102 Humatrope (inert substance) diluent, 3.15 mL syringe 4137011000036105 Humatrope 4137011000036105 Humatrope 27294011000036102 somatropin 6 mg injection [1 cartridge] (&) inert substance diluent [3.15 mL syringe], 1 pack 639091000168107 inert substance diluent, 3.15 mL syringe 21220011000036103 inert substance +19416011000036103 Humatrope (1 x 6 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack, composite pack 53423 12700011000036101 Humatrope (1 x 6 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack 5827011000036108 Humatrope (somatropin 6 mg) powder for injection, 6 mg cartridge 4137011000036105 Humatrope 4137011000036105 Humatrope 27294011000036102 somatropin 6 mg injection [1 cartridge] (&) inert substance diluent [3.15 mL syringe], 1 pack 22647011000036103 somatropin 6 mg injection, cartridge 21295011000036100 somatropin +933215951000036109 Zipzoc (66051550) 80 cm (stockings) bandage, 10, carton 62437 933205471000036108 Zipzoc (66051550) 80 cm (stockings) bandage, 10 48652011000036107 Zipzoc (66051550) 80 cm (stockings) bandage 24761000168107 Zipzoc (66051550) 24761000168107 Zipzoc (66051550) 933205481000036105 bandage zinc paste 80 cm (stockings) bandage, 10 50846011000036106 bandage zinc paste 80 cm (stockings) bandage 50700011000036104 bandage zinc paste +921869011000036105 Panamax 500 mg uncoated tablet, 50, blister pack 15490 921428011000036101 Panamax 500 mg uncoated tablet, 50 4682011000036103 Panamax 500 mg uncoated tablet 10851000168103 Panamax 10851000168103 Panamax 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +910731000168108 Cavstat 20 mg film-coated tablet, 100, bottle 234476 910721000168105 Cavstat 20 mg film-coated tablet, 100 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910711000168103 rosuvastatin 20 mg tablet, 100 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +884781000168109 Betarc 16 mg tablet, 100, blister pack 231715 884771000168106 Betarc 16 mg tablet, 100 884691000168101 Betarc 16 mg tablet 884681000168104 Betarc 884681000168104 Betarc 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +43579011000036108 Simvabell 20 mg film-coated tablet, 250, bottle 100887 41106011000036106 Simvabell 20 mg film-coated tablet, 250 5386011000036102 Simvabell 20 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46090011000036104 simvastatin 20 mg tablet, 250 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18281000036100 Olanzapine ODT (Generic Health) 5 mg orally disintegrating tablet, 28, blister pack 177790 16841000036109 Olanzapine ODT (Generic Health) 5 mg orally disintegrating tablet, 28 15741000036109 Olanzapine ODT (Generic Health) 5 mg orally disintegrating tablet 33321000168101 Olanzapine ODT (Generic Health) 33321000168101 Olanzapine ODT (Generic Health) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +884761000168100 Betarc 16 mg tablet, 25, blister pack 231715 884751000168102 Betarc 16 mg tablet, 25 884691000168101 Betarc 16 mg tablet 884681000168104 Betarc 884681000168104 Betarc 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +31191000036109 Irbesartan (Sigma) 75 mg film-coated tablet, 30, blister pack 171459 28371000036103 Irbesartan (Sigma) 75 mg film-coated tablet, 30 26651000036103 Irbesartan (Sigma) 75 mg film-coated tablet 26081000036104 Irbesartan (Sigma) 26081000036104 Irbesartan (Sigma) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +37621011000036109 Pilocarpine Hydrochloride Neutral (Pharmatel) 2% eye drops solution, 10 mL, bottle 20398 36888011000036100 Pilocarpine Hydrochloride Neutral (Pharmatel) 2% eye drops solution, 10 mL 36222011000036100 Pilocarpine Hydrochloride Neutral (Pharmatel) 2% eye drops solution 32021000168106 Pilocarpine Hydrochloride Neutral (Pharmatel) 32021000168106 Pilocarpine Hydrochloride Neutral (Pharmatel) 38773011000036109 pilocarpine hydrochloride 2% eye drops, 10 mL 23119011000036105 pilocarpine hydrochloride 2% eye drops 21254011000036109 pilocarpine +760291000168107 Sildenafil (DRLA) 25 mg film-coated tablet, 4, blister pack 186282 760281000168109 Sildenafil (DRLA) 25 mg film-coated tablet, 4 760241000168104 Sildenafil (DRLA) 25 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +69205011000036103 Sodium Bicarbonate (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 19445 67005011000036101 Sodium Bicarbonate (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 65403011000036107 Sodium Bicarbonate (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 65044011000036108 Sodium Bicarbonate (Baxter) 65044011000036108 Sodium Bicarbonate (Baxter) 71575011000036106 sodium bicarbonate 5% (25 g/500 mL) injection, 500 mL bottle 70073011000036100 sodium bicarbonate 5% (25 g/500 mL) injection, bottle 21761011000036107 bicarbonate +829371000168103 Metex XR-1000 1 g modified release tablet, 90, blister pack 232639 829361000168109 Metex XR-1000 1 g modified release tablet, 90 829281000168109 Metex XR-1000 1 g modified release tablet 829271000168106 Metex XR-1000 829271000168106 Metex XR-1000 829351000168107 metformin hydrochloride 1 g modified release tablet, 90 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +104001000036104 Arazil 5 mg film-coated tablet, 28, bottle 167695 101461000036109 Arazil 5 mg film-coated tablet, 28 98351000036104 Arazil 5 mg film-coated tablet 97671000036101 Arazil 97671000036101 Arazil 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1047531000168101 Zydol SR 100 mg modified release tablet, 60, blister pack 80724 1047521000168104 Zydol SR 100 mg modified release tablet, 60 7072011000036105 Zydol SR 100 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 38672011000036105 tramadol hydrochloride 100 mg modified release tablet, 60 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +713411000168106 Strepsils Plus oral spray, 154 actuations, pump pack 55908 713401000168108 Strepsils Plus oral spray, 154 actuations 713381000168108 Strepsils Plus oral spray, actuation 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 713391000168106 lidocaine (lignocaine) 780 microgram/actuation + dichlorobenzyl alcohol 580 microgram/actuation + amylmetacresol 290 microgram/actuation oral spray, 154 actuations 713371000168105 lidocaine (lignocaine) 780 microgram/actuation + dichlorobenzyl alcohol 580 microgram/actuation + amylmetacresol 290 microgram/actuation oral spray, actuation 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +706901000168108 Morphine (Juno) 20 mg/mL injection solution, 10 x 1 mL ampoules 224242 706891000168109 Morphine (Juno) 20 mg/mL injection solution, 10 x 1 mL ampoules 706841000168101 Morphine (Juno) 20 mg/mL injection solution, ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 706881000168106 morphine hydrochloride trihydrate 20 mg/mL injection, 10 x 1 mL ampoules 706831000168105 morphine hydrochloride trihydrate 20 mg/mL injection, ampoule 21252011000036100 morphine +655041000168101 Candesartan Cilexetil (AN) 8 mg uncoated tablet, 30, bottle 195444 655031000168105 Candesartan Cilexetil (AN) 8 mg uncoated tablet, 30 655021000168107 Candesartan Cilexetil (AN) 8 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +742911000168103 Pemetrexed (DBL) 1 g powder for injection, 1 vial 228194 742901000168101 Pemetrexed (DBL) 1 g powder for injection, 1 vial 742881000168103 Pemetrexed (DBL) 1 g powder for injection, vial 741601000168101 Pemetrexed (DBL) 741601000168101 Pemetrexed (DBL) 742891000168100 pemetrexed 1 g injection, 1 vial 742871000168101 pemetrexed 1 g injection, vial 21321011000036102 pemetrexed +1109501000168103 Cloap 75/100 uncoated tablet, 98, blister pack 219058 1109491000168105 Cloap 75/100 uncoated tablet, 98 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82555011000036108 clopidogrel 75 mg + aspirin 100 mg tablet, 98 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +69689011000036104 Sodium Chloride 0.22% and Glucose 10% (Baxter) intravenous infusion injection, 18 x 500 mL bags 82805 67488011000036102 Sodium Chloride 0.22% and Glucose 10% (Baxter) intravenous infusion injection, 18 x 500 mL bags 65680011000036100 Sodium Chloride 0.22% and Glucose 10% (Baxter) intravenous infusion injection, 500 mL bag 32401000168108 Sodium Chloride 0.22% and Glucose 10% (Baxter) 32401000168108 Sodium Chloride 0.22% and Glucose 10% (Baxter) 72007011000036109 sodium chloride 0.22% (1.1 g/500 mL) + glucose 10% (50 g/500 mL) injection, 18 x 500 mL bags 70276011000036101 sodium chloride 0.22% (1.1 g/500 mL) + glucose 10% (50 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +758761000168103 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 63484 758751000168100 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28 87075011000036106 Microgynon 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 758741000168102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +758761000168103 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 63484 758751000168100 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28 87076011000036104 Microgynon 20 ED (inert substance) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 758741000168102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +818541000168104 Afolia 300 units (22 microgram)/0.5 mL injection solution, 5 x 0.5 mL injection devices 262648 818531000168108 Afolia 300 units (22 microgram)/0.5 mL injection solution, 5 x 0.5 mL injection devices 818501000168101 Afolia 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741431000168105 follitropin alfa 300 units (22 microgram)/0.5 mL injection, 5 x 0.5 mL injection devices 741381000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, injection device 21352011000036107 follitropin alfa +1081401000168106 Zertine 10 mg film-coated tablet, 5, blister pack 287545 1081391000168109 Zertine 10 mg film-coated tablet, 5 1081371000168108 Zertine 10 mg film-coated tablet 1081361000168102 Zertine 1081361000168102 Zertine 1081381000168106 cetirizine hydrochloride 10 mg tablet, 5 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +61681011000036106 Panafen IB 200 mg film-coated tablet, 24, blister pack 97858 57603011000036109 Panafen IB 200 mg film-coated tablet, 24 54360011000036104 Panafen IB 200 mg film-coated tablet 9381000168107 Panafen IB 9381000168107 Panafen IB 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +20821011000036109 Pegasys 135 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 91836 13984011000036109 Pegasys 135 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 7271011000036109 Pegasys 135 microgram/0.5 mL injection solution, 0.5 mL syringe 3349011000036109 Pegasys 3349011000036109 Pegasys 28049011000036105 peginterferon alfa-2a 135 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23370011000036102 peginterferon alfa-2a 135 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +961851000168103 Bisoprolol (Apo) 1.25 mg tablet, 42, blister pack 182108 961841000168100 Bisoprolol (Apo) 1.25 mg tablet, 42 961571000168109 Bisoprolol (Apo) 1.25 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 46792011000036103 bisoprolol fumarate 1.25 mg tablet, 42 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1006501000168102 Antimicrobial Hand Gel (Elyptol) 70% gel, 1 L, pump pack 172237 1006491000168109 Antimicrobial Hand Gel (Elyptol) 70% gel, 1 L 1006421000168107 Antimicrobial Hand Gel (Elyptol) 70% gel 1006411000168100 Antimicrobial Hand Gel (Elyptol) 1006411000168100 Antimicrobial Hand Gel (Elyptol) 925446011000036102 ethanol 70% gel, 1 L 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +925121000168106 Androgel 1% (50 mg/5 g) gel, 30 x 5 g sachets 96130 925111000168104 Androgel 1% (50 mg/5 g) gel, 30 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 85197011000036104 testosterone 1% (50 mg/5 g) gel, 30 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +854551000168100 Quetiapine (Alkem) 100 mg film-coated tablet, 20, blister pack 204851 854541000168102 Quetiapine (Alkem) 100 mg film-coated tablet, 20 854531000168106 Quetiapine (Alkem) 100 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1023801000168104 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 32, blister pack 227168 1023791000168100 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 32 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023781000168103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 32 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1077071000168105 Atomoxetine (AS) 100 mg hard capsule, 7, blister pack 238365 1077061000168104 Atomoxetine (AS) 100 mg hard capsule, 7 1077051000168101 Atomoxetine (AS) 100 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +931610011000036107 Pravista 10 mg film-coated tablet, 500, bottle 163560 930771011000036106 Pravista 10 mg film-coated tablet, 500 930040011000036101 Pravista 10 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932415011000036101 pravastatin sodium 10 mg tablet, 500 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +841611000168101 Atorvastatin (Amneal) 10 mg film-coated tablet, 50, blister pack 178535 841601000168104 Atorvastatin (Amneal) 10 mg film-coated tablet, 50 841481000168109 Atorvastatin (Amneal) 10 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841591000168106 atorvastatin 10 mg tablet, 50 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +856721000168107 Entrip 25 mg film-coated tablet, 90, blister pack 232154 856711000168100 Entrip 25 mg film-coated tablet, 90 856661000168105 Entrip 25 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +20095011000036100 Exelon 3 mg hard capsule, 56, blister pack 71446 13322011000036100 Exelon 3 mg hard capsule, 56 6608011000036105 Exelon 3 mg hard capsule 4601000168108 Exelon 4601000168108 Exelon 27692011000036108 rivastigmine 3 mg capsule, 56 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +758081000168105 PKU Easy Shake and Go powder for oral liquid, 30 x 34 g bottles 758071000168107 PKU Easy Shake and Go powder for oral liquid, 30 x 34 g bottles 758051000168103 PKU Easy Shake and Go powder for oral liquid, 34 g bottle 757971000168105 PKU Easy Shake and Go 757971000168105 PKU Easy Shake and Go 758061000168101 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine powder for oral liquid, 30 x 34 g bottles 758041000168100 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine powder for oral liquid, 34 g bottle 758031000168109 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine +752321000168106 Oxycodone (WT) 5 mg hard capsule, 20, bottle 227854 752311000168104 Oxycodone (WT) 5 mg hard capsule, 20 752301000168102 Oxycodone (WT) 5 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +59970011000036102 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 50 mL, bottle 120723 55932011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 50 mL 53694011000036102 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63165011000036102 ibuprofen 40 mg/mL oral liquid, 50 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +824341000168106 Consti-Eze with Senna film-coated tablet, 200, bottle 198928 824331000168102 Consti-Eze with Senna film-coated tablet, 200 824281000168105 Consti-Eze with Senna film-coated tablet 824271000168107 Consti-Eze with Senna 824271000168107 Consti-Eze with Senna 686521000168104 docusate sodium 50 mg + sennoside B 8 mg tablet, 200 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +892731000168103 Betahistine (GPPL) 16 mg uncoated tablet, 10, blister pack 212085 892721000168101 Betahistine (GPPL) 16 mg uncoated tablet, 10 892711000168108 Betahistine (GPPL) 16 mg uncoated tablet 892701000168105 Betahistine (GPPL) 892701000168105 Betahistine (GPPL) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +17964011000036101 Eutroxsig 50 microgram uncoated tablet, 200, blister pack 125501 13931011000036100 Eutroxsig 50 microgram uncoated tablet, 200 7219011000036104 Eutroxsig 50 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 28021011000036108 levothyroxine sodium 50 microgram tablet, 200 23344011000036106 levothyroxine sodium 50 microgram tablet 21577011000036109 levothyroxine +923771011000036106 Salbutamol Respule (Ranbaxy) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 151320 923333011000036109 Salbutamol Respule (Ranbaxy) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 923010011000036105 Salbutamol Respule (Ranbaxy) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 55501000168101 Salbutamol Respule (Ranbaxy) 55501000168101 Salbutamol Respule (Ranbaxy) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +842291000168104 TYR Easy Shake and Go powder for oral liquid, 30 x 34 g bottles 842281000168102 TYR Easy Shake and Go powder for oral liquid, 30 x 34 g bottles 842261000168106 TYR Easy Shake and Go powder for oral liquid, 34 g bottle 842231000168103 TYR Easy Shake and Go 842231000168103 TYR Easy Shake and Go 842271000168100 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements, without phenylalanine and tyrosine powder for oral liquid, 30 x 34 g bottles 842251000168109 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements, without phenylalanine and tyrosine powder for oral liquid, 34 g bottle 842241000168107 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements, without phenylalanine and tyrosine +83176011000036101 Fluvax Junior 2010 injection suspension, 1 x 0.25 mL syringe 149127 83121011000036107 Fluvax Junior 2010 injection suspension, 1 x 0.25 mL syringe 83068011000036104 Fluvax Junior 2010 injection suspension, 0.25 mL syringe 8931000168100 Fluvax Junior 2010 8931000168100 Fluvax Junior 2010 83213011000036101 influenza trivalent child vaccine 2010 injection, 1 x 0.25 mL syringe 83200011000036106 influenza trivalent child vaccine 2010 injection, 0.25 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +52221011000036102 Febridol Plus uncoated tablet, 48, blister pack 154874 52106011000036104 Febridol Plus uncoated tablet, 48 51998011000036101 Febridol Plus uncoated tablet 44291000168106 Febridol Plus 44291000168106 Febridol Plus 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +21063011000036105 Axit 30 mg film-coated tablet, 30, blister pack 97195 14208011000036102 Axit 30 mg film-coated tablet, 30 7491011000036101 Axit 30 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +897731000168101 Nicotinell Peppermint 4 mg lozenge, 72, blister pack 276926 897721000168104 Nicotinell Peppermint 4 mg lozenge, 72 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 87242011000036106 nicotine 4 mg lozenge, 72 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +845871000168106 Simponi Smartject 100 mg/mL injection solution, 3 x 1 mL injection devices 208279 845861000168100 Simponi Smartject 100 mg/mL injection solution, 3 x 1 mL injection devices 845811000168103 Simponi Smartject 100 mg/mL injection solution, injection device 845551000168104 Simponi Smartject 845551000168104 Simponi Smartject 845851000168102 golimumab 100 mg/mL injection, 3 x 1 mL injection devices 845801000168101 golimumab 100 mg/mL injection, injection device 84416011000036108 golimumab +18506011000036107 Epirubicin Hydrochloride (Ebewe) 50 mg/25 mL injection solution, 25 mL vial 131950 11925011000036109 Epirubicin Hydrochloride (Ebewe) 50 mg/25 mL injection solution, 25 mL vial 5664011000036104 Epirubicin Hydrochloride (Ebewe) 50 mg/25 mL injection solution, 25 mL vial 3912011000036104 Epirubicin Hydrochloride (Ebewe) 3912011000036104 Epirubicin Hydrochloride (Ebewe) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +884941000168101 Kovaltry (1 x 1000 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack, composite pack 246794 884931000168105 Kovaltry (1 x 1000 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack 884911000168100 Kovaltry (octocog alfa 1000 units) powder for injection, vial 884791000168107 Kovaltry 884791000168107 Kovaltry 884921000168107 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 931816011000036101 octocog alfa 1000 units injection, vial 69843011000036100 octocog alfa +884941000168101 Kovaltry (1 x 1000 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack, composite pack 246794 884931000168105 Kovaltry (1 x 1000 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack 884811000168106 Kovaltry (inert substance) diluent, 2.5 mL syringe 884791000168107 Kovaltry 884791000168107 Kovaltry 884921000168107 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 636211000168102 inert substance diluent, 2.5 mL syringe 21220011000036103 inert substance +61497011000036100 Proven 200 mg film-coated tablet, 10, blister pack 92447 57422011000036107 Proven 200 mg film-coated tablet, 10 54299011000036101 Proven 200 mg film-coated tablet 53524011000036103 Proven 53524011000036103 Proven 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +910571000168101 Dexamfetamine (GPPL) 5 mg uncoated tablet, 100, bottle 270957 910291000168103 Dexamfetamine (GPPL) 5 mg uncoated tablet, 100 910281000168101 Dexamfetamine (GPPL) 5 mg uncoated tablet 910271000168104 Dexamfetamine (GPPL) 910271000168104 Dexamfetamine (GPPL) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +827041000168103 Targin 80/40 mg modified release tablet, 28, blister pack 243272 827031000168107 Targin 80/40 mg modified release tablet, 28 826981000168109 Targin 80/40 mg modified release tablet 826961000168100 Targin 80/40 mg 826961000168100 Targin 80/40 mg 827021000168109 oxycodone hydrochloride 80 mg + naloxone hydrochloride 40 mg modified release tablet, 28 826971000168106 oxycodone hydrochloride 80 mg + naloxone hydrochloride 40 mg modified release tablet 923931011000036100 oxycodone + naloxone +18748011000036100 Perindopril Erbumine (Pharmacor) 2 mg uncoated tablet, 30, blister pack 132511 11930011000036102 Perindopril Erbumine (Pharmacor) 2 mg uncoated tablet, 30 4887011000036107 Perindopril Erbumine (Pharmacor) 2 mg uncoated tablet 3695011000036107 Perindopril Erbumine (Pharmacor) 3695011000036107 Perindopril Erbumine (Pharmacor) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +824891000168109 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 58539 824881000168106 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 824861000168102 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 8441000168103 Vaqta Paediatric and Adolescent 8441000168103 Vaqta Paediatric and Adolescent 824871000168108 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL syringe 824851000168104 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, syringe 824641000168102 hepatitis A vaccine +33618011000036102 Lyrica 150 mg hard capsule, 56, bottle 99532 33354011000036108 Lyrica 150 mg hard capsule, 56 33112011000036104 Lyrica 150 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +933216231000036103 Actiq 800 microgram lozenge on handle, 30, blister pack 91602 933205891000036105 Actiq 800 microgram lozenge on handle, 30 34078011000036101 Actiq 800 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 933205901000036106 fentanyl 800 microgram lozenge on handle, 30 34913011000036106 fentanyl 800 microgram lozenge on handle 21258011000036102 fentanyl +43562011000036105 Duratocin 100 microgram/mL injection solution, 5 x 1 mL ampoules 101230 41114011000036101 Duratocin 100 microgram/mL injection solution, 5 x 1 mL ampoules 39917011000036101 Duratocin 100 microgram/mL injection solution, ampoule 39712011000036106 Duratocin 39712011000036106 Duratocin 46096011000036101 carbetocin 100 microgram/mL injection, 5 x 1 mL ampoules 44984011000036109 carbetocin 100 microgram/mL injection, ampoule 44965011000036105 carbetocin +61439011000036104 Demazin Cough and Cold oral liquid solution, 100 mL, bottle 83341 57364011000036104 Demazin Cough and Cold oral liquid solution, 100 mL 54285011000036102 Demazin Cough and Cold oral liquid solution, 5 mL 31561000168101 Demazin Cough and Cold 31561000168101 Demazin Cough and Cold 63828011000036105 chlorphenamine maleate 2 mg/5 mL + pholcodine 5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid, 100 mL 62087011000036109 chlorphenamine maleate 2 mg/5 mL + pholcodine 5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid 61775011000036109 chlorphenamine + pholcodine + pseudoephedrine +60454011000036109 Codox soluble tablet, 24, strip pack 14932 56412011000036103 Codox soluble tablet, 24 53915011000036103 Codox soluble tablet 53483011000036100 Codox 53483011000036100 Codox 63350011000036105 aspirin 300 mg + dihydrocodeine tartrate 7.5 mg soluble tablet, 24 61925011000036101 aspirin 300 mg + dihydrocodeine tartrate 7.5 mg soluble tablet 61789011000036100 aspirin + dihydrocodeine +907921000168105 Celecoxib (LAPL) 100 mg hard capsule, 50, blister pack 196179 907911000168103 Celecoxib (LAPL) 100 mg hard capsule, 50 907731000168106 Celecoxib (LAPL) 100 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1060531000168108 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 56, blister pack 234477 1060521000168105 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 56 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 912011000168100 rosuvastatin 40 mg tablet, 56 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +44363011000036104 Cerezyme 200 units powder for injection, 1 vial 68331 41830011000036107 Cerezyme 200 units powder for injection, 1 vial 40220011000036108 Cerezyme 200 units powder for injection, 200 units vial 39723011000036108 Cerezyme 39723011000036108 Cerezyme 46636011000036104 imiglucerase 200 units injection, 1 vial 45250011000036101 imiglucerase 200 units injection, vial 44921011000036102 imiglucerase +922931000168100 Cephalexin (RBX) 250 mg hard capsule, 20, blister pack 176785 922921000168103 Cephalexin (RBX) 250 mg hard capsule, 20 922911000168105 Cephalexin (RBX) 250 mg hard capsule 922871000168107 Cephalexin (RBX) 922871000168107 Cephalexin (RBX) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +69430011000036104 Orudis 2.5% gel, 60 g, tube 48482 67230011000036106 Orudis 2.5% gel, 60 g 65566011000036109 Orudis 2.5% gel 3793011000036104 Orudis 3793011000036104 Orudis 71780011000036107 ketoprofen 2.5% gel, 60 g 70182011000036107 ketoprofen 2.5% gel 21856011000036108 ketoprofen +966281000168100 Qpril 40 mg film-coated tablet, 60, blister pack 96925 966271000168103 Qpril 40 mg film-coated tablet, 60 966221000168104 Qpril 40 mg film-coated tablet 83545011000036104 Qpril 83545011000036104 Qpril 966261000168109 quinapril 40 mg tablet, 60 966211000168106 quinapril 40 mg tablet 21289011000036102 quinapril +1058381000168105 Levetiracetam (Auro) 250 mg film-coated tablet, 30, bottle 182830 1058371000168107 Levetiracetam (Auro) 250 mg film-coated tablet, 30 713831000168104 Levetiracetam (Auro) 250 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 1058361000168101 levetiracetam 250 mg tablet, 30 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +20395011000036101 Cefaclor-CD (Douglas) 375 mg modified release tablet, 10, blister pack 77101 13603011000036107 Cefaclor-CD (Douglas) 375 mg modified release tablet, 10 6886011000036102 Cefaclor-CD (Douglas) 375 mg modified release tablet 20381000168106 Cefaclor-CD (Douglas) 20381000168106 Cefaclor-CD (Douglas) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +749421000168108 Tacoccord 5 mg hard capsule, 10, blister pack 224271 749411000168101 Tacoccord 5 mg hard capsule, 10 749401000168104 Tacoccord 5 mg hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 749331000168100 tacrolimus 5 mg capsule, 10 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +850121000168108 Vzole 200 mg film-coated tablet, 100, bottle 238241 849981000168101 Vzole 200 mg film-coated tablet, 100 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46803011000036105 voriconazole 200 mg tablet, 100 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +683041000168105 Cisatracurium (AFT) 10 mg/5 mL injection solution, 5 mL ampoule 191831 683031000168101 Cisatracurium (AFT) 10 mg/5 mL injection solution, 5 mL ampoule 683011000168106 Cisatracurium (AFT) 10 mg/5 mL injection solution, 5 mL ampoule 682941000168104 Cisatracurium (AFT) 682941000168104 Cisatracurium (AFT) 683021000168104 cisatracurium 10 mg/5 mL injection, 5 mL ampoule 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +1094291000168101 Loratadine (Amcal) 10 mg uncoated tablet, 10, blister pack 226844 1094281000168104 Loratadine (Amcal) 10 mg uncoated tablet, 10 1094271000168102 Loratadine (Amcal) 10 mg uncoated tablet 53343011000036104 Loratadine (Amcal) 53343011000036104 Loratadine (Amcal) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +929074011000036109 Acpio 45 mg uncoated tablet, 28, blister pack 164427 928435011000036104 Acpio 45 mg uncoated tablet, 28 927979011000036108 Acpio 45 mg uncoated tablet 927772011000036107 Acpio 927772011000036107 Acpio 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +20579011000036106 Pendine 800 mg film-coated tablet, 100, blister pack 80337 13768011000036105 Pendine 800 mg film-coated tablet, 100 7053011000036101 Pendine 800 mg film-coated tablet 3027011000036103 Pendine 3027011000036103 Pendine 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +893461000168108 Olmesartan (Pharmacor) 20 mg film-coated tablet, 30, blister pack 235833 893451000168106 Olmesartan (Pharmacor) 20 mg film-coated tablet, 30 893441000168109 Olmesartan (Pharmacor) 20 mg film-coated tablet 893431000168100 Olmesartan (Pharmacor) 893431000168100 Olmesartan (Pharmacor) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +103921000036107 Irbesartan (Sandoz) 75 mg film-coated tablet, 30, blister pack 167406 101261000036105 Irbesartan (Sandoz) 75 mg film-coated tablet, 30 99411000036102 Irbesartan (Sandoz) 75 mg film-coated tablet 98031000036105 Irbesartan (Sandoz) 98031000036105 Irbesartan (Sandoz) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +747341000168100 Junomorph 100 mg/5 mL injection solution, 5 x 5 mL ampoules 224247 747331000168109 Junomorph 100 mg/5 mL injection solution, 5 x 5 mL ampoules 747321000168106 Junomorph 100 mg/5 mL injection solution, 5 mL ampoule 747261000168105 Junomorph 747261000168105 Junomorph 706931000168101 morphine hydrochloride trihydrate 100 mg/5 mL injection, 5 x 5 mL ampoules 706911000168106 morphine hydrochloride trihydrate 100 mg/5 mL injection, ampoule 21252011000036100 morphine +18148011000036105 Esipram 20 mg film-coated tablet, 28, blister pack 128783 11861011000036106 Esipram 20 mg film-coated tablet, 28 5455011000036108 Esipram 20 mg film-coated tablet 3816011000036108 Esipram 3816011000036108 Esipram 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +994161000168106 Albumex-5 12.5 g/250 mL injection solution, 250 mL vial 72896 994151000168109 Albumex-5 12.5 g/250 mL injection solution, 250 mL vial 994141000168107 Albumex-5 12.5 g/250 mL injection solution, 250 mL vial 913701000168107 Albumex-5 913701000168107 Albumex-5 877681000168101 albumin human 12.5 g/250 mL injection, 250 mL vial 877661000168105 albumin human 12.5 g/250 mL injection, vial 69754011000036102 albumin human +1081321000168107 Alpha Keri Bath and Body Oil application, 1 L, bottle 24618 1081311000168100 Alpha Keri Bath and Body Oil application, 1 L 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 1081301000168103 liquid paraffin 80.7% + lanolin oil 2.64% application, 1 L 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +20562011000036108 Tamoxifen (Hexal) 20 mg film-coated tablet, 60, blister pack 80076 13753011000036109 Tamoxifen (Hexal) 20 mg film-coated tablet, 60 7038011000036105 Tamoxifen (Hexal) 20 mg film-coated tablet 3705011000036101 Tamoxifen (Hexal) 3705011000036101 Tamoxifen (Hexal) 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +1098581000168109 Cetirizine (Amcal) 10 mg film-coated tablet, 10, blister pack 230792 1098571000168106 Cetirizine (Amcal) 10 mg film-coated tablet, 10 1098561000168100 Cetirizine (Amcal) 10 mg film-coated tablet 1098551000168102 Cetirizine (Amcal) 1098551000168102 Cetirizine (Amcal) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +59987011000036109 Lamisil Dermgel 1% gel, 5 g, tube 121514 55949011000036101 Lamisil Dermgel 1% gel, 5 g 6349011000036104 Lamisil Dermgel 1% gel 39931000168104 Lamisil Dermgel 39931000168104 Lamisil Dermgel 63174011000036107 terbinafine 1% gel, 5 g 22869011000036105 terbinafine 1% gel 21575011000036104 terbinafine +760131000168103 Betahistine (AN) 16 mg tablet, 25, blister pack 163021 760121000168101 Betahistine (AN) 16 mg tablet, 25 760111000168108 Betahistine (AN) 16 mg tablet 760101000168105 Betahistine (AN) 760101000168105 Betahistine (AN) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +69672011000036100 Nicabate Clear 21 mg/24 hours patch, 1, sachet 81035 67471011000036103 Nicabate Clear 21 mg/24 hours patch, 1 65676011000036109 Nicabate Clear 21 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 63761011000036109 nicotine 21 mg/24 hours patch, 1 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +1077711000168104 Atomoxetine (AN) 25 mg hard capsule, 28, blister pack 234809 1077701000168102 Atomoxetine (AN) 25 mg hard capsule, 28 1077651000168107 Atomoxetine (AN) 25 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +893531000168101 Olmesartan (Sandoz) 20 mg film-coated tablet, 30, blister pack 221058 893521000168104 Olmesartan (Sandoz) 20 mg film-coated tablet, 30 893511000168106 Olmesartan (Sandoz) 20 mg film-coated tablet 893471000168102 Olmesartan (Sandoz) 893471000168102 Olmesartan (Sandoz) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +19232011000036109 Pharmorubicin 50 mg/25 mL injection solution, 25 mL vial 47356 12522011000036108 Pharmorubicin 50 mg/25 mL injection solution, 25 mL vial 5504011000036109 Pharmorubicin 50 mg/25 mL injection solution, 25 mL vial 24651000168101 Pharmorubicin 24651000168101 Pharmorubicin 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +60863011000036107 Lorastyne Syrup 1 mg/mL oral liquid solution, 120 mL, bottle 59232 56817011000036108 Lorastyne Syrup 1 mg/mL oral liquid solution, 120 mL 54089011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution 27141000168100 Lorastyne Syrup 27141000168100 Lorastyne Syrup 63587011000036103 loratadine 1 mg/mL oral liquid, 120 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +933246131000036101 Cirofaxin 750 mg film-coated tablet, 14, blister pack 114045 933242641000036104 Cirofaxin 750 mg film-coated tablet, 14 933241181000036106 Cirofaxin 750 mg film-coated tablet 933240751000036107 Cirofaxin 933240751000036107 Cirofaxin 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +757961000168104 Macu-Vision film-coated tablet, 150, bottle 141717 757951000168101 Macu-Vision film-coated tablet, 150 757841000168107 Macu-Vision film-coated tablet 4571000168102 Macu-Vision 4571000168102 Macu-Vision 757941000168103 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 150 757831000168103 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet 757821000168101 ascorbic acid + d-alpha-tocopheryl acid succinate + zinc + copper +897851000168102 Nicotinell Peppermint 4 mg lozenge, 132, blister pack 276926 897841000168104 Nicotinell Peppermint 4 mg lozenge, 132 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897831000168108 nicotine 4 mg lozenge, 132 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +816301000168109 Adronat 10 mg uncoated tablet, 8, blister pack 119098 816291000168108 Adronat 10 mg uncoated tablet, 8 816261000168101 Adronat 10 mg uncoated tablet 816251000168103 Adronat 816251000168103 Adronat 46701011000036106 alendronate 10 mg tablet, 8 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +84306011000036103 Demazin PE Cold and Flu Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48, blister pack 152023 83999011000036103 Demazin PE Cold and Flu Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48 83633011000036109 Demazin PE Cold and Flu Day and Night Relief (Night) uncoated tablet 3231000168101 Demazin PE Cold and Flu Day and Night Relief 3461000168105 Demazin PE Cold and Flu Day and Night Relief (Night) 84634011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +84306011000036103 Demazin PE Cold and Flu Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48, blister pack 152023 83999011000036103 Demazin PE Cold and Flu Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48 83632011000036102 Demazin PE Cold and Flu Day and Night Relief (Day) uncoated tablet 3231000168101 Demazin PE Cold and Flu Day and Night Relief 3341000168104 Demazin PE Cold and Flu Day and Night Relief (Day) 84634011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +901981000168100 Amisulpride (SCP) 200 mg uncoated tablet, 60, blister pack 234699 901971000168103 Amisulpride (SCP) 200 mg uncoated tablet, 60 901891000168109 Amisulpride (SCP) 200 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +760091000168100 Betahistine (GH) 16 mg uncoated tablet, 100, blister pack 212076 760081000168103 Betahistine (GH) 16 mg uncoated tablet, 100 759971000168103 Betahistine (GH) 16 mg uncoated tablet 759961000168109 Betahistine (GH) 759961000168109 Betahistine (GH) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +21046011000036105 Amoxycillin (Terry White Chemists) 250 mg hard capsule, 20, blister pack 96879 14191011000036106 Amoxycillin (Terry White Chemists) 250 mg hard capsule, 20 7472011000036102 Amoxycillin (Terry White Chemists) 250 mg hard capsule 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +21046011000036105 Amoxycillin (Terry White Chemists) 250 mg hard capsule, 20, blister pack 208143 14191011000036106 Amoxycillin (Terry White Chemists) 250 mg hard capsule, 20 7472011000036102 Amoxycillin (Terry White Chemists) 250 mg hard capsule 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +21046011000036105 Amoxycillin (Terry White Chemists) 250 mg hard capsule, 20, blister pack 142537 14191011000036106 Amoxycillin (Terry White Chemists) 250 mg hard capsule, 20 7472011000036102 Amoxycillin (Terry White Chemists) 250 mg hard capsule 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +931370011000036105 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 55 mL, bottle 10908 930556011000036104 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 55 mL 929926011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid 929899011000036104 Eucalyptus Oil (Bosisto's) 929899011000036104 Eucalyptus Oil (Bosisto's) 932341011000036100 eucalyptus oil 1 mL/mL liquid, 55 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +43879011000036109 Pravastatin Sodium (RL) 10 mg uncoated tablet, 30, bottle 129597 11609011000036104 Pravastatin Sodium (RL) 10 mg uncoated tablet, 30 5202011000036107 Pravastatin Sodium (RL) 10 mg uncoated tablet 3142011000036109 Pravastatin Sodium (RL) 3142011000036109 Pravastatin Sodium (RL) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +921835011000036101 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet, 250, bottle 136315 921404011000036102 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet, 250 52413011000036106 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet 52394011000036104 Mag-Sup 52394011000036104 Mag-Sup 922545011000036102 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet, 250 52809011000036104 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet 52798011000036107 magnesium aspartate dihydrate +839321000168102 Bactroban 2% ointment, 2 g, tube 11145 839311000168109 Bactroban 2% ointment, 2 g 4814011000036103 Bactroban 2% ointment 3296011000036102 Bactroban 3296011000036102 Bactroban 839301000168106 mupirocin 2% ointment, 2 g 22049011000036102 mupirocin 2% ointment 21590011000036101 mupirocin +979211000168105 Lovenox 60 mg/0.6 mL injection solution, 15 x 0.6 mL syringes 80267 979201000168107 Lovenox 60 mg/0.6 mL injection solution, 15 x 0.6 mL syringes 979121000168107 Lovenox 60 mg/0.6 mL injection solution, 0.6 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823481000168106 enoxaparin sodium 60 mg/0.6 mL injection, 15 x 0.6 mL syringes 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +83171011000036106 Fluoxetine (GA) 20 mg capsule, 28, blister pack 148090 83120011000036100 Fluoxetine (GA) 20 mg capsule, 28 83067011000036100 Fluoxetine (GA) 20 mg capsule 83063011000036109 Fluoxetine (GA) 83063011000036109 Fluoxetine (GA) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +85037011000036103 Methoblastin 10 mg uncoated tablet, 15, bottle 15417 84902011000036108 Methoblastin 10 mg uncoated tablet, 15 5578011000036106 Methoblastin 10 mg uncoated tablet 3599011000036102 Methoblastin 3599011000036102 Methoblastin 85182011000036102 methotrexate 10 mg tablet, 15 22283011000036101 methotrexate 10 mg tablet 21342011000036105 methotrexate +68796011000036102 Nicotinell Mint 4 mg chewing gum, 168, blister pack 126044 66700011000036108 Nicotinell Mint 4 mg chewing gum, 168 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71516011000036108 nicotine 4 mg gum, 168 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +735071000168103 Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules 11106 735061000168109 Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules 735051000168107 Lanoxin Adult 500 microgram/2 mL injection solution, 2 mL ampoule 735041000168105 Lanoxin Adult 735041000168105 Lanoxin Adult 38573011000036105 digoxin 500 microgram/2 mL injection, 5 x 2 mL ampoules 37847011000036106 digoxin 500 microgram/2 mL injection, ampoule 21696011000036109 digoxin +666511000168109 Thymol Mouthwash Red (David Craig) mouthwash, 200 mL, bottle 14234 666501000168106 Thymol Mouthwash Red (David Craig) mouthwash, 200 mL 666481000168102 Thymol Mouthwash Red (David Craig) mouthwash 666461000168106 Thymol Mouthwash Red (David Craig) 666461000168106 Thymol Mouthwash Red (David Craig) 666491000168104 thymol 750 microgram/mL + benzoic acid 4 mg/mL + sodium benzoate 20 mg/mL + sodium bicarbonate 1.5 mg/mL mouthwash, 200 mL 666471000168100 thymol 750 microgram/mL + benzoic acid 4 mg/mL + sodium benzoate 20 mg/mL + sodium bicarbonate 1.5 mg/mL mouthwash 52229011000036103 thymol + benzoic acid + bicarbonate +833061000168108 Centrum film-coated tablet, 8, bottle 75827 833051000168106 Centrum film-coated tablet, 8 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833041000168109 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 8 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +922851000168103 Ciprofloxacin (AN) 250 mg film-coated tablet, 60, blister pack 175441 922841000168100 Ciprofloxacin (AN) 250 mg film-coated tablet, 60 922771000168104 Ciprofloxacin (AN) 250 mg film-coated tablet 661241000168100 Ciprofloxacin (AN) 661241000168100 Ciprofloxacin (AN) 922831000168109 ciprofloxacin 250 mg tablet, 60 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +750061000168104 Lucrin Depot 6-Month (1 x 45 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 222375 750051000168101 Lucrin Depot 6-Month (1 x 45 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 750021000168109 Lucrin Depot 6-Month (leuprorelin acetate 45 mg) modified release injection, 45 mg syringe 750001000168100 Lucrin Depot 6-Month 750001000168100 Lucrin Depot 6-Month 750041000168103 leuprorelin acetate 45 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 750011000168102 leuprorelin acetate 45 mg modified release injection, syringe 21320011000036109 leuprorelin +750061000168104 Lucrin Depot 6-Month (1 x 45 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 222375 750051000168101 Lucrin Depot 6-Month (1 x 45 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 750031000168107 Lucrin Depot 6-Month (inert substance) diluent, 1.5 mL syringe 750001000168100 Lucrin Depot 6-Month 750001000168100 Lucrin Depot 6-Month 750041000168103 leuprorelin acetate 45 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 698501000168108 inert substance diluent, 1.5 mL syringe 21220011000036103 inert substance +19896011000036108 Allohexal 100 mg uncoated tablet, 200, bottle 65905 13143011000036101 Allohexal 100 mg uncoated tablet, 200 6426011000036103 Allohexal 100 mg uncoated tablet 3468011000036102 Allohexal 3468011000036102 Allohexal 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +39378011000036101 Bicalutamide (GA) 50 mg film-coated tablet, 98, blister pack 129115 39262011000036103 Bicalutamide (GA) 50 mg film-coated tablet, 98 39216011000036100 Bicalutamide (GA) 50 mg film-coated tablet 39181011000036109 Bicalutamide (GA) 39181011000036109 Bicalutamide (GA) 39465011000036107 bicalutamide 50 mg tablet, 98 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +44278011000036108 Propecia 1 mg film-coated tablet, 7, blister pack 62084 41749011000036102 Propecia 1 mg film-coated tablet, 7 40180011000036100 Propecia 1 mg film-coated tablet 39667011000036104 Propecia 39667011000036104 Propecia 46556011000036109 finasteride 1 mg tablet, 7 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +61516011000036107 Femme-Free 250 mg uncoated tablet, 30, bottle 93304 57441011000036103 Femme-Free 250 mg uncoated tablet, 30 54303011000036106 Femme-Free 250 mg uncoated tablet 53254011000036105 Femme-Free 53254011000036105 Femme-Free 63859011000036101 naproxen 250 mg tablet, 30 22894011000036106 naproxen 250 mg tablet 21304011000036105 naproxen +170641000036108 Optifresh 0.2% eye gel, 10 g, tube 169691000036100 Optifresh 0.2% eye gel, 10 g 169241000036109 Optifresh 0.2% eye gel 168731000036101 Optifresh 168731000036101 Optifresh 35770011000036107 carbomer-980 0.2% eye gel, 10 g 35711011000036106 carbomer-980 0.2% eye gel 35685011000036104 carbomer-980 +61104011000036109 Dermaid Soft 0.5% modified cream, 30 g, tube 71683 57047011000036102 Dermaid Soft 0.5% modified cream, 30 g 54173011000036106 Dermaid Soft 0.5% modified cream 44871000168106 Dermaid Soft 44871000168106 Dermaid Soft 63715011000036107 hydrocortisone 0.5% modified cream, 30 g 62055011000036108 hydrocortisone 0.5% modified cream 21681011000036103 hydrocortisone +1015731000168109 Aripiprazole (Medis) 10 mg uncoated tablet, 250, bottle 217236 1015721000168106 Aripiprazole (Medis) 10 mg uncoated tablet, 250 1015401000168106 Aripiprazole (Medis) 10 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 1015711000168104 aripiprazole 10 mg tablet, 250 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1046961000168101 Tramal SR 150 mg modified release tablet, 60, blister pack 75948 1046951000168103 Tramal SR 150 mg modified release tablet, 60 6813011000036106 Tramal SR 150 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 38673011000036103 tramadol hydrochloride 150 mg modified release tablet, 60 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +1058851000168107 Ondansetron (Auro) 4 mg film-coated tablet, 10, blister pack 173184 1058841000168105 Ondansetron (Auro) 4 mg film-coated tablet, 10 1058811000168106 Ondansetron (Auro) 4 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +849641000168103 Sildenafil (Amneal) 50 mg film-coated tablet, 4, blister pack 202924 849631000168107 Sildenafil (Amneal) 50 mg film-coated tablet, 4 849621000168109 Sildenafil (Amneal) 50 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +887181000168102 Praluent 150 mg/mL injection solution, 2 x 1 mL syringes 238305 887171000168100 Praluent 150 mg/mL injection solution, 2 x 1 mL syringes 887121000168101 Praluent 150 mg/mL injection solution, syringe 886871000168105 Praluent 886871000168105 Praluent 887161000168106 alirocumab 150 mg/mL injection, 2 x 1 mL syringes 887111000168108 alirocumab 150 mg/mL injection, syringe 886881000168108 alirocumab +32594011000036106 Cleocin 150 mg hard capsule, 24, bottle 58106 32389011000036105 Cleocin 150 mg hard capsule, 24 32251011000036106 Cleocin 150 mg hard capsule 4303011000036104 Cleocin 4303011000036104 Cleocin 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +44595011000036103 Vfend 50 mg film-coated tablet, 28, blister pack 82507 42048011000036108 Vfend 50 mg film-coated tablet, 28 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46816011000036101 voriconazole 50 mg tablet, 28 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +69602011000036108 Bisalax 5 mg enteric tablet, 100, blister pack 70516 67401011000036107 Bisalax 5 mg enteric tablet, 100 6628011000036102 Bisalax 5 mg enteric tablet 1091000168108 Bisalax 1091000168108 Bisalax 71936011000036107 bisacodyl 5 mg enteric tablet, 100 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +862571000168108 Cimzia 200 mg/mL injection solution, 10 x 1 mL injection devices 281317 862561000168102 Cimzia 200 mg/mL injection solution, 10 x 1 mL injection devices 862481000168107 Cimzia 200 mg/mL injection solution, injection device 87279011000036100 Cimzia 87279011000036100 Cimzia 862551000168104 certolizumab pegol 200 mg/mL injection, 10 x 1 mL injection devices 862471000168109 certolizumab pegol 200 mg/mL injection, injection device 87751011000036108 certolizumab pegol +19245011000036100 Navoban 5 mg hard capsule, 2, blister pack 47518 12536011000036105 Navoban 5 mg hard capsule, 2 5054011000036100 Navoban 5 mg hard capsule 3216011000036101 Navoban 3216011000036101 Navoban 27182011000036108 tropisetron 5 mg capsule, 2 22544011000036100 tropisetron 5 mg capsule 21700011000036104 tropisetron +767511000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 226240 767501000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767511000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 178481 767501000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767511000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 226240 767501000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +767511000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 178481 767501000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +857201000168109 Trevicta 525 mg/2.625 mL modified release injection, 2.625 mL syringe 261412 857191000168106 Trevicta 525 mg/2.625 mL modified release injection, 2.625 mL syringe 857171000168105 Trevicta 525 mg/2.625 mL modified release injection, 2.625 mL syringe 856551000168107 Trevicta 856551000168107 Trevicta 857181000168108 paliperidone 525 mg/2.625 mL modified release injection, 2.625 mL syringe 857161000168104 paliperidone 525 mg/2.625 mL modified release injection, syringe 34837011000036104 paliperidone +819731000168107 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 30, blister pack 184823 819721000168109 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 30 819691000168100 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +888551000168104 Calcitriol (AN) 0.25 microgram soft capsule, 100, blister pack 230366 660741000168101 Calcitriol (AN) 0.25 microgram soft capsule, 100 660731000168105 Calcitriol (AN) 0.25 microgram soft capsule 660721000168107 Calcitriol (AN) 660721000168107 Calcitriol (AN) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +18031000036109 Altven 150 mg modified release capsule, 28, blister pack 171537 17041000036100 Altven 150 mg modified release capsule, 28 15511000036100 Altven 150 mg modified release capsule 15101000036105 Altven 15101000036105 Altven 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +758971000168106 Paper Wasp Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack, composite pack 758961000168100 Paper Wasp Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 758931000168108 Paper Wasp Venom (Hymenoptera) 754701000168106 Albumin Saline (Stallergenes) 758951000168102 paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial], 1 pack 638491000168106 inert substance diluent, 9 mL vial 21220011000036103 inert substance +758971000168106 Paper Wasp Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack, composite pack 758961000168100 Paper Wasp Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack 758941000168104 Paper Wasp Venom (Hymenoptera) (paper wasp venom 550 microgram) powder for injection, 550 microgram vial 758931000168108 Paper Wasp Venom (Hymenoptera) 758931000168108 Paper Wasp Venom (Hymenoptera) 758951000168102 paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial], 1 pack 758881000168103 paper wasp venom 550 microgram injection, vial 758871000168101 paper wasp venom +55571000036104 Synastrozole 1 mg film-coated tablet, 10, blister pack 155175 52291000036109 Synastrozole 1 mg film-coated tablet, 10 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 51971000036108 anastrozole 1 mg tablet, 10 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +886131000168101 Candesan 4 mg uncoated tablet, 30, blister pack 195483 886121000168104 Candesan 4 mg uncoated tablet, 30 886111000168106 Candesan 4 mg uncoated tablet 885241000168105 Candesan 885241000168105 Candesan 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +55481000036103 Anastrozole (AU) 1 mg film-coated tablet, 30, blister pack 155174 52071000036101 Anastrozole (AU) 1 mg film-coated tablet, 30 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1097441000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet, 30, blister pack 287706 1097431000168105 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet, 30 1097341000168108 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +931769011000036106 Arcoxia 60 mg film-coated tablet, 30, blister pack 81456 930929011000036103 Arcoxia 60 mg film-coated tablet, 30 930126011000036105 Arcoxia 60 mg film-coated tablet 929823011000036107 Arcoxia 929823011000036107 Arcoxia 932499011000036103 etoricoxib 60 mg tablet, 30 931892011000036101 etoricoxib 60 mg tablet 931796011000036104 etoricoxib +933214991000036101 Reditron-ODT 8 mg orally disintegrating tablet, 10, blister pack 163646 933204581000036107 Reditron-ODT 8 mg orally disintegrating tablet, 10 933195591000036108 Reditron-ODT 8 mg orally disintegrating tablet 22261000168105 Reditron-ODT 22261000168105 Reditron-ODT 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +652711000168109 Esomeprazole (RBX) 40 mg enteric tablet, 30, blister pack 184765 652701000168106 Esomeprazole (RBX) 40 mg enteric tablet, 30 652691000168106 Esomeprazole (RBX) 40 mg enteric tablet 652681000168108 Esomeprazole (RBX) 652681000168108 Esomeprazole (RBX) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1025421000168105 Biocol Medicated Throat Orange lozenge, 24, blister pack 42956 1025411000168103 Biocol Medicated Throat Orange lozenge, 24 1025401000168101 Biocol Medicated Throat Orange lozenge 1025311000168107 Biocol Medicated Throat 1025311000168107 Biocol Medicated Throat 1025341000168106 benzyl alcohol 12 mg + cetylpyridinium chloride 2 mg lozenge, 24 1025321000168100 benzyl alcohol 12 mg + cetylpyridinium chloride 2 mg lozenge 69797011000036101 benzyl alcohol + cetylpyridinium +61575011000036105 Replete Extra Strength 5% application, 60 mL, bottle 94466 57497011000036101 Replete Extra Strength 5% application, 60 mL 54326011000036105 Replete Extra Strength 5% application 19671000168102 Replete Extra Strength 19671000168102 Replete Extra Strength 63889011000036109 minoxidil 5% application, 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +19117011000036101 Glucobay 100 mg tablet, 90, blister pack 43195 12421011000036106 Glucobay 100 mg tablet, 90 5614011000036103 Glucobay 100 mg tablet 2971011000036108 Glucobay 2971011000036108 Glucobay 27111011000036104 acarbose 100 mg tablet, 90 22479011000036108 acarbose 100 mg tablet 21888011000036104 acarbose +920611000168104 Cilopam 20 mg film-coated tablet, 7, blister pack 158864 920601000168102 Cilopam 20 mg film-coated tablet, 7 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +44775011000036108 Reminyl 16 mg modified release capsule, 30, bottle 97884 42220011000036102 Reminyl 16 mg modified release capsule, 30 7536011000036108 Reminyl 16 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46980011000036109 galantamine 16 mg modified release capsule, 30 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +44605011000036108 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack, composite pack 83309 42058011000036105 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack 7205011000036103 Betaferon (interferon beta-1b 8 million units (250 microgram)) powder for injection, 250 microgram vial 52491000168103 Betaferon 52491000168103 Betaferon 46825011000036102 interferon beta-1b 8 million units (250 microgram) injection [15 vials] (&) inert substance diluent [15 x 1.2 mL syringes], 1 pack 23333011000036108 interferon beta-1b 8 million units (250 microgram) injection, vial 21882011000036102 interferon beta-1b +44605011000036108 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack, composite pack 83309 42058011000036105 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack 647181000168104 Betaferon (inert substance) diluent, 1.2 mL syringe 52491000168103 Betaferon 52491000168103 Betaferon 46825011000036102 interferon beta-1b 8 million units (250 microgram) injection [15 vials] (&) inert substance diluent [15 x 1.2 mL syringes], 1 pack 640691000168107 inert substance diluent, 1.2 mL syringe 21220011000036103 inert substance +806841000168104 Perindopril Arginine (Chemmart) 10 mg film-coated tablet, 10, blister pack 184822 806831000168108 Perindopril Arginine (Chemmart) 10 mg film-coated tablet, 10 806821000168105 Perindopril Arginine (Chemmart) 10 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 727331000168107 perindopril arginine 10 mg tablet, 10 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +50447011000036104 Telfa Non Adherent (7650C) 7.5 cm x 10 cm dressing, 6, carton 49418011000036101 Telfa Non Adherent (7650C) 7.5 cm x 10 cm dressing, 6 48550011000036103 Telfa Non Adherent (7650C) 7.5 cm x 10 cm dressing 26181000168107 Telfa Non Adherent (7650C) 26181000168107 Telfa Non Adherent (7650C) 51386011000036107 dressing non adherent 7.5 cm x 10 cm dressing, 6 50907011000036109 dressing non adherent 7.5 cm x 10 cm dressing 50699011000036100 dressing non adherent +82418011000036104 Sunscreen SPF 30+ (Hamilton) cream, 100 g, tube 60204 82207011000036102 Sunscreen SPF 30+ (Hamilton) cream, 100 g 82041011000036105 Sunscreen SPF 30+ (Hamilton) cream 38951000168100 Sunscreen SPF 30+ (Hamilton) 38951000168100 Sunscreen SPF 30+ (Hamilton) 82571011000036109 butyl methoxydibenzoylmethane 1.5% + 4-methylbenzylidene camphor 4.4% + octyl methoxycinnamate 7.5% + titanium dioxide 2.5% cream, 100 g 82456011000036105 butyl methoxydibenzoylmethane 1.5% + 4-methylbenzylidene camphor 4.4% + octyl methoxycinnamate 7.5% + titanium dioxide 2.5% cream 82430011000036106 butyl methoxydibenzoylmethane + 4-methylbenzylidene camphor + octyl methoxycinnamate + titanium +756431000168102 Pramipexole ER (Apo) 3.75 mg modified release tablet, 10, blister pack 225625 756421000168100 Pramipexole ER (Apo) 3.75 mg modified release tablet, 10 756401000168109 Pramipexole ER (Apo) 3.75 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 756411000168107 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet, 10 933220641000036103 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet 37716011000036100 pramipexole +897211000168102 Ristempa 6 mg/0.6 mL injection solution, 0.6 mL syringe 283847 897201000168100 Ristempa 6 mg/0.6 mL injection solution, 0.6 mL syringe 897191000168103 Ristempa 6 mg/0.6 mL injection solution, 0.6 mL syringe 897181000168101 Ristempa 897181000168101 Ristempa 27993011000036100 pegfilgrastim 6 mg/0.6 mL injection, 0.6 mL syringe 23316011000036108 pegfilgrastim 6 mg/0.6 mL injection, syringe 21753011000036104 pegfilgrastim +933229471000036104 Dencorub Regular Strength Heat cream, 50 g, tube 10133 933223461000036105 Dencorub Regular Strength Heat cream, 50 g 933219701000036108 Dencorub Regular Strength Heat cream 24821000168108 Dencorub Regular Strength Heat 24821000168108 Dencorub Regular Strength Heat 71202011000036104 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream, 50 g 69899011000036106 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +1093101000168101 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 40, blister pack 282022 1093091000168106 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 40 1093041000168103 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 63932011000036104 ibuprofen 200 mg capsule, 40 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +802511000168104 Abilify ODT 10 mg orally disintegrating tablet, 28, blister pack 128893 802501000168102 Abilify ODT 10 mg orally disintegrating tablet, 28 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802491000168109 aripiprazole 10 mg orally disintegrating tablet, 28 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +43627011000036106 Mirtazapine (Sandoz) 45 mg film-coated tablet, 30, bottle 117183 11562011000036101 Mirtazapine (Sandoz) 45 mg film-coated tablet, 30 5217011000036107 Mirtazapine (Sandoz) 45 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +882841000168102 Bosentan (RBX) 62.5 mg film-coated tablet, 60, bottle 257758 882811000168101 Bosentan (RBX) 62.5 mg film-coated tablet, 60 882781000168103 Bosentan (RBX) 62.5 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +904381000168103 Amoxyclav 875/125 (MLabs) film-coated tablet, 10, strip pack 236903 904371000168101 Amoxyclav 875/125 (MLabs) film-coated tablet, 10 904361000168107 Amoxyclav 875/125 (MLabs) film-coated tablet 904351000168105 Amoxyclav 875/125 (MLabs) 904351000168105 Amoxyclav 875/125 (MLabs) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +874521000168105 Beezole 20 mg enteric tablet, 56, blister pack 205832 874511000168103 Beezole 20 mg enteric tablet, 56 874441000168100 Beezole 20 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 774741000168105 esomeprazole 20 mg enteric tablet, 56 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +931406011000036109 Rispernia 3 mg film-coated tablet, 60, blister pack 127923 928193011000036108 Rispernia 3 mg film-coated tablet, 60 927852011000036108 Rispernia 3 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +21044011000036102 Amoxycillin (Chemmart) 250 mg hard capsule, 20, blister pack 208142 14189011000036106 Amoxycillin (Chemmart) 250 mg hard capsule, 20 7470011000036101 Amoxycillin (Chemmart) 250 mg hard capsule 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +21044011000036102 Amoxycillin (Chemmart) 250 mg hard capsule, 20, blister pack 96877 14189011000036106 Amoxycillin (Chemmart) 250 mg hard capsule, 20 7470011000036101 Amoxycillin (Chemmart) 250 mg hard capsule 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +21044011000036102 Amoxycillin (Chemmart) 250 mg hard capsule, 20, blister pack 142536 14189011000036106 Amoxycillin (Chemmart) 250 mg hard capsule, 20 7470011000036101 Amoxycillin (Chemmart) 250 mg hard capsule 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +1079071000168101 Ibuprofen (Amcal) 200 mg film-coated tablet, 12, blister pack 224608 1079061000168107 Ibuprofen (Amcal) 200 mg film-coated tablet, 12 54354011000036101 Ibuprofen (Amcal) 200 mg film-coated tablet 53505011000036108 Ibuprofen (Amcal) 53505011000036108 Ibuprofen (Amcal) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +32558011000036108 Mirtazapine (GenRx) 30 mg film-coated tablet, 30, bottle 127679 32350011000036108 Mirtazapine (GenRx) 30 mg film-coated tablet, 30 32227011000036102 Mirtazapine (GenRx) 30 mg film-coated tablet 32202011000036106 Mirtazapine (GenRx) 32202011000036106 Mirtazapine (GenRx) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +1055641000168101 Debrisoft Lolly (33224) pad, 5, blister pack 286131 1055631000168105 Debrisoft Lolly (33224) pad, 5 1055611000168100 Debrisoft Lolly (33224) pad 1055581000168107 Debrisoft Lolly (33224) 1055581000168107 Debrisoft Lolly (33224) 1055621000168107 pad wound debridement pad, 5 1055601000168103 pad wound debridement pad 1055591000168105 pad wound debridement +920291000168106 Citalopram (APL) 40 mg film-coated tablet, 30, bottle 184691 920281000168108 Citalopram (APL) 40 mg film-coated tablet, 30 920211000168102 Citalopram (APL) 40 mg film-coated tablet 920141000168106 Citalopram (APL) 920141000168106 Citalopram (APL) 933201991000036101 citalopram 40 mg tablet, 30 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1008101000168109 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 60 actuations, dry powder inhaler 73725 1008091000168104 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 60 actuations 1008011000168108 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, actuation 1007991000168101 Asmanex Twisthaler 1007991000168101 Asmanex Twisthaler 1008081000168102 mometasone furoate 200 microgram/actuation powder for inhalation, 60 actuations 1008001000168105 mometasone furoate 200 microgram/actuation powder for inhalation, actuation 21409011000036100 mometasone +19948011000036105 Cellcept 250 mg hard capsule, 300, blister pack 67313 13191011000036108 Cellcept 250 mg hard capsule, 300 6474011000036105 Cellcept 250 mg hard capsule 4308011000036109 Cellcept 4308011000036109 Cellcept 27604011000036102 mycophenolate mofetil 250 mg capsule, 300 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +1024301000168108 Betadine Sore Throat Lozenges Orange lozenge, 12, blister pack 227169 1024291000168107 Betadine Sore Throat Lozenges Orange lozenge, 12 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71519011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 12 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +963451000168100 Aripiprazole (Apo) 30 mg uncoated tablet, 30, bottle 152929 870141000168104 Aripiprazole (Apo) 30 mg uncoated tablet, 30 870131000168108 Aripiprazole (Apo) 30 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +44569011000036103 Gabapentin (Chemmart) 300 mg hard capsule, 100, blister pack 81778 42022011000036108 Gabapentin (Chemmart) 300 mg hard capsule, 100 40324011000036107 Gabapentin (Chemmart) 300 mg hard capsule 39677011000036105 Gabapentin (Chemmart) 39677011000036105 Gabapentin (Chemmart) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +933229431000036101 Mersyndol Forte uncoated tablet, 20, blister pack 10109 933223411000036108 Mersyndol Forte uncoated tablet, 20 933219631000036107 Mersyndol Forte uncoated tablet 32431000168101 Mersyndol Forte 32431000168101 Mersyndol Forte 933223421000036101 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet, 20 933219641000036102 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +848591000168104 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 161182 848581000168102 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 76104011000036108 Dronalen Plus 70 mg/140 microgram uncoated tablet 58581000168100 Dronalen Plus D-Cal 46201000168105 Dronalen Plus 70 mg/140 microgram 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +848591000168104 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 161182 848581000168102 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 58581000168100 Dronalen Plus D-Cal 85275011000036101 Bonecal 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +929291000168102 Semi-Daonil 2.5 mg uncoated tablet, 10, blister pack 42691 929281000168100 Semi-Daonil 2.5 mg uncoated tablet, 10 929261000168109 Semi-Daonil 2.5 mg uncoated tablet 929241000168105 Semi-Daonil 929241000168105 Semi-Daonil 929271000168103 glibenclamide 2.5 mg tablet, 10 929251000168107 glibenclamide 2.5 mg tablet 21911011000036104 glibenclamide +933212071000036109 Donpesyn 10 mg film-coated tablet, 98, blister pack 142234 933201481000036108 Donpesyn 10 mg film-coated tablet, 98 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933201011000036107 donepezil hydrochloride 10 mg tablet, 98 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +921825011000036103 Quitx Freshmint 2 mg chewing gum, 96, blister pack 143431 921412011000036109 Quitx Freshmint 2 mg chewing gum, 96 920992011000036100 Quitx Freshmint 2 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +754561000168100 Oxycodone (AS) 20 mg hard capsule, 60, bottle 227862 754551000168102 Oxycodone (AS) 20 mg hard capsule, 60 754521000168105 Oxycodone (AS) 20 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +18149011000036102 Amisulpride (Winthrop) 100 mg uncoated tablet, 30, blister pack 125173 11791011000036105 Amisulpride (Winthrop) 100 mg uncoated tablet, 30 5005011000036106 Amisulpride (Winthrop) 100 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +1029781000168100 Aripiprazole (Sandoz) 5 mg uncoated tablet, 30, blister pack 158282 1029771000168103 Aripiprazole (Sandoz) 5 mg uncoated tablet, 30 1029761000168109 Aripiprazole (Sandoz) 5 mg uncoated tablet 850231000168101 Aripiprazole (Sandoz) 850231000168101 Aripiprazole (Sandoz) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +20308011000036105 Xeloda 500 mg film-coated tablet, 120, blister pack 75732 13517011000036109 Xeloda 500 mg film-coated tablet, 120 6799011000036107 Xeloda 500 mg film-coated tablet 3560011000036105 Xeloda 3560011000036105 Xeloda 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +933214951000036105 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 90, bottle 163567 933204541000036103 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 90 933195551000036104 Pravastatin Sodium (RZ) 80 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932409011000036101 pravastatin sodium 80 mg tablet, 90 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +678521000168105 Ramipril (RBX) 10 mg tablet, 30, blister pack 213088 678511000168103 Ramipril (RBX) 10 mg tablet, 30 678501000168101 Ramipril (RBX) 10 mg tablet 678431000168109 Ramipril (RBX) 678431000168109 Ramipril (RBX) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +940831000168106 Escitalopram (Apo) 5 mg film-coated tablet, 30, bottle 146006 940821000168108 Escitalopram (Apo) 5 mg film-coated tablet, 30 940811000168101 Escitalopram (Apo) 5 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +60692011000036106 Voltaren Rapid 25 mg sugar coated tablet, 4, blister pack 42942 56650011000036105 Voltaren Rapid 25 mg sugar coated tablet, 4 54020011000036108 Voltaren Rapid 25 mg sugar coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63487011000036105 diclofenac potassium 25 mg tablet, 4 61991011000036106 diclofenac potassium 25 mg tablet 21288011000036105 diclofenac +31031000036109 Onsetron ODT 4 mg orally disintegrating tablet, 10, blister pack 176761 28831000036106 Onsetron ODT 4 mg orally disintegrating tablet, 10 26391000036100 Onsetron ODT 4 mg orally disintegrating tablet 26511000168108 Onsetron ODT 26511000168108 Onsetron ODT 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +992311000168102 Sitagliptin (Apo) 100 mg coated tablet, 28, blister pack 224392 992301000168100 Sitagliptin (Apo) 100 mg coated tablet, 28 992291000168101 Sitagliptin (Apo) 100 mg coated tablet 992051000168103 Sitagliptin (Apo) 992051000168103 Sitagliptin (Apo) 39482011000036102 sitagliptin 100 mg tablet, 28 39437011000036105 sitagliptin 100 mg tablet 39426011000036109 sitagliptin +1075781000168103 Aripiprazole (Auro) 2 mg uncoated tablet, 30, blister pack 198190 1075681000168108 Aripiprazole (Auro) 2 mg uncoated tablet, 30 1075671000168105 Aripiprazole (Auro) 2 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +20213011000036106 Nexium 40 mg enteric tablet, 30, blister pack 74134 13431011000036102 Nexium 40 mg enteric tablet, 30 6712011000036101 Nexium 40 mg enteric tablet 2929011000036108 Nexium 2929011000036108 Nexium 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +52194011000036105 Clarithromycin (Apo) 250 mg film-coated tablet, 14, blister pack 134850 52086011000036105 Clarithromycin (Apo) 250 mg film-coated tablet, 14 51983011000036107 Clarithromycin (Apo) 250 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +875481000168106 Bispro 7.5 mg film-coated tablet, 10, blister pack 130181 875471000168108 Bispro 7.5 mg film-coated tablet, 10 875451000168104 Bispro 7.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 875461000168102 bisoprolol fumarate 7.5 mg tablet, 10 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +60898011000036104 Paracetamol Infant Drops (Pharmacist) 100 mg/mL oral liquid solution, 20 mL, bottle 59986 56852011000036102 Paracetamol Infant Drops (Pharmacist) 100 mg/mL oral liquid solution, 20 mL 54100011000036108 Paracetamol Infant Drops (Pharmacist) 100 mg/mL oral liquid solution 38041000168103 Paracetamol Infant Drops (Pharmacist) 38041000168103 Paracetamol Infant Drops (Pharmacist) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +20684011000036108 Androderm 5 mg/24 hours patch, 30, sachet 82398 13863011000036102 Androderm 5 mg/24 hours patch, 30 7150011000036102 Androderm 5 mg/24 hours patch 4192011000036101 Androderm 4192011000036101 Androderm 27980011000036107 testosterone 5 mg/24 hours patch, 30 23304011000036102 testosterone 5 mg/24 hours patch 21290011000036109 testosterone +931504011000036108 Teicoplanin (Sandoz) (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack, composite pack 157812 930665011000036109 Teicoplanin (Sandoz) (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack 929996011000036102 Teicoplanin (Sandoz) (teicoplanin 400 mg) powder for injection, 400 mg vial 929900011000036102 Teicoplanin (Sandoz) 929900011000036102 Teicoplanin (Sandoz) 932386011000036102 teicoplanin 400 mg injection [1 vial] (&) inert substance diluent [3 mL ampoule], 1 pack 45107011000036108 teicoplanin 400 mg injection, vial 44926011000036107 teicoplanin +931504011000036108 Teicoplanin (Sandoz) (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack, composite pack 157812 930665011000036109 Teicoplanin (Sandoz) (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack 632321000168102 Teicoplanin (Sandoz) (inert substance) diluent, 3 mL ampoule 929900011000036102 Teicoplanin (Sandoz) 929900011000036102 Teicoplanin (Sandoz) 932386011000036102 teicoplanin 400 mg injection [1 vial] (&) inert substance diluent [3 mL ampoule], 1 pack 632311000168109 inert substance diluent, 3 mL ampoule 21220011000036103 inert substance +925155011000036106 Nicabate Soft Gum Mint 4 mg chewing gum, 24, blister pack 117060 924689011000036107 Nicabate Soft Gum Mint 4 mg chewing gum, 24 924414011000036107 Nicabate Soft Gum Mint 4 mg chewing gum 6191000168103 Nicabate Soft Gum Mint 6191000168103 Nicabate Soft Gum Mint 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +754581000168109 Oxycodone (AS) 20 mg hard capsule, 60, blister pack 227845 754551000168102 Oxycodone (AS) 20 mg hard capsule, 60 754521000168105 Oxycodone (AS) 20 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +824161000168107 Basaglar Kwikpen 100 units/mL injection solution, 3 mL injection device 215552 824151000168105 Basaglar Kwikpen 100 units/mL injection solution, 3 mL injection device 824131000168104 Basaglar Kwikpen 100 units/mL injection solution, 3 mL injection device 824111000168109 Basaglar Kwikpen 824111000168109 Basaglar Kwikpen 824141000168108 insulin glargine 100 units/mL injection, 3 mL injection device 824121000168102 insulin glargine 100 units/mL injection, 3 mL injection device 21815011000036108 insulin glargine +929061011000036101 Valaciclovir (GA) 500 mg film-coated tablet, 100, blister pack 162728 928422011000036109 Valaciclovir (GA) 500 mg film-coated tablet, 100 927971011000036109 Valaciclovir (GA) 500 mg film-coated tablet 927808011000036104 Valaciclovir (GA) 927808011000036104 Valaciclovir (GA) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +928940011000036105 Topiramate (Lupin) 50 mg film-coated tablet, 60, bottle 155187 928301011000036100 Topiramate (Lupin) 50 mg film-coated tablet, 60 927930011000036100 Topiramate (Lupin) 50 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +782371000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet, 56, blister pack 206993 782361000168108 Voriconazole (Alphapharm) 200 mg film-coated tablet, 56 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +920782011000036105 Cefotaxime (DBL) 1 g powder for injection, 10 vials 78702 920461011000036106 Cefotaxime (DBL) 1 g powder for injection, 10 vials 920196011000036104 Cefotaxime (DBL) 1 g powder for injection, vial 920087011000036105 Cefotaxime (DBL) 920087011000036105 Cefotaxime (DBL) 33814011000036102 cefotaxime 1 g injection, 10 vials 33682011000036102 cefotaxime 1 g injection, vial 21327011000036105 cefotaxime +37657011000036102 Moxacin 250 mg hard capsule, 20, blister pack 31817 36923011000036108 Moxacin 250 mg hard capsule, 20 36254011000036105 Moxacin 250 mg hard capsule 4292011000036104 Moxacin 4292011000036104 Moxacin 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +81014011000036103 Coloxyl 50 mg film-coated tablet, 100, bottle 133299 80490011000036106 Coloxyl 50 mg film-coated tablet, 100 80162011000036106 Coloxyl 50 mg film-coated tablet 3026011000036101 Coloxyl 3026011000036101 Coloxyl 26830011000036106 docusate sodium 50 mg tablet, 100 22212011000036105 docusate sodium 50 mg tablet 21872011000036106 docusate +925247011000036100 Sumatriptan (MPPL) 50 mg film-coated tablet, 4, blister pack 160185 924784011000036103 Sumatriptan (MPPL) 50 mg film-coated tablet, 4 924481011000036106 Sumatriptan (MPPL) 50 mg film-coated tablet 924380011000036107 Sumatriptan (MPPL) 924380011000036107 Sumatriptan (MPPL) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +170801000036109 Alendronate (Auro) 70 mg uncoated tablet, 4, blister pack 171793 169941000036100 Alendronate (Auro) 70 mg uncoated tablet, 4 168881000036107 Alendronate (Auro) 70 mg uncoated tablet 168821000036106 Alendronate (Auro) 168821000036106 Alendronate (Auro) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +73338011000036107 Ondansetron (Apo) 8 mg film-coated tablet, 4, blister pack 152188 73132011000036102 Ondansetron (Apo) 8 mg film-coated tablet, 4 72966011000036104 Ondansetron (Apo) 8 mg film-coated tablet 33231000168105 Ondansetron (Apo) 33231000168105 Ondansetron (Apo) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +1078991000168106 Atomoxetine (GPPL) 10 mg hard capsule, 56, blister pack 234847 1078981000168108 Atomoxetine (GPPL) 10 mg hard capsule, 56 1078811000168108 Atomoxetine (GPPL) 10 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 829971000168102 atomoxetine 10 mg capsule, 56 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1012601000168102 Mycophenolate (Apotex) 500 mg film-coated tablet, 150, blister pack 168104 1012591000168109 Mycophenolate (Apotex) 500 mg film-coated tablet, 150 1012561000168102 Mycophenolate (Apotex) 500 mg film-coated tablet 1012551000168104 Mycophenolate (Apotex) 1012551000168104 Mycophenolate (Apotex) 27979011000036107 mycophenolate mofetil 500 mg tablet, 150 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +1042621000168103 Humalog Kwikpen 200 units/mL injection solution, 2 x 3 mL injection devices 226893 1042611000168105 Humalog Kwikpen 200 units/mL injection solution, 2 x 3 mL injection devices 1042591000168100 Humalog Kwikpen 200 units/mL injection solution, 3 mL injection device 59991000168101 Humalog Kwikpen 59991000168101 Humalog Kwikpen 1042601000168107 insulin lispro 200 units/mL injection, 2 x 3 mL injection devices 1042581000168103 insulin lispro 200 units/mL injection, 3 mL injection device 21851011000036103 insulin lispro +20154011000036101 Moclobemide (Chemmart) 150 mg film-coated tablet, 60, blister pack 73829 13377011000036102 Moclobemide (Chemmart) 150 mg film-coated tablet, 60 6662011000036106 Moclobemide (Chemmart) 150 mg film-coated tablet 3153011000036104 Moclobemide (Chemmart) 3153011000036104 Moclobemide (Chemmart) 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +707381000168103 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 114304 707371000168101 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 33008011000036107 Lucrin Depot 4-Month (leuprorelin acetate 30 mg) modified release injection, 30 mg syringe 47391000168107 Lucrin Depot 4-Month 47391000168107 Lucrin Depot 4-Month 698521000168104 leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 23534011000036107 leuprorelin acetate 30 mg modified release injection, syringe 21320011000036109 leuprorelin +707381000168103 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 114304 707371000168101 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 707361000168107 Lucrin Depot 4-Month (inert substance) diluent, 1.5 mL syringe 47391000168107 Lucrin Depot 4-Month 47391000168107 Lucrin Depot 4-Month 698521000168104 leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 698501000168108 inert substance diluent, 1.5 mL syringe 21220011000036103 inert substance +69396011000036100 Eno Lemon powder for oral liquid, 200 g, jar 40656 67196011000036101 Eno Lemon powder for oral liquid, 200 g 65532011000036101 Eno Lemon powder for oral liquid 65094011000036101 Eno 65094011000036101 Eno 71755011000036107 citric acid 432 mg/g + sodium bicarbonate 458 mg/g + sodium carbonate 100 mg/g powder for oral liquid, 200 g 70171011000036109 citric acid 432 mg/g + sodium bicarbonate 458 mg/g + sodium carbonate 100 mg/g powder for oral liquid 69783011000036106 citric acid + bicarbonate + carbonate +845461000168103 Puri-Nethol 50 mg uncoated tablet, 25, bottle 10993 845451000168100 Puri-Nethol 50 mg uncoated tablet, 25 845431000168106 Puri-Nethol 50 mg uncoated tablet 3229011000036100 Puri-Nethol 3229011000036100 Puri-Nethol 845441000168102 mercaptopurine monohydrate 50 mg tablet, 25 845421000168108 mercaptopurine monohydrate 50 mg tablet 21818011000036102 mercaptopurine +991101000168108 Bisoprolol (Apotex) 1.25 mg tablet, 42, blister pack 182109 991091000168103 Bisoprolol (Apotex) 1.25 mg tablet, 42 990981000168105 Bisoprolol (Apotex) 1.25 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 46792011000036103 bisoprolol fumarate 1.25 mg tablet, 42 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +92941000036104 Gliadel 7.7 mg implant, 8, sachet 77283 92831000036104 Gliadel 7.7 mg implant, 8 92721000036109 Gliadel 7.7 mg implant 4041011000036107 Gliadel 4041011000036107 Gliadel 27832011000036106 carmustine 7.7 mg implant, 8 23160011000036103 carmustine 7.7 mg implant 21824011000036101 carmustine +59802011000036102 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 24, blister pack 114361 55764011000036104 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 24 53619011000036102 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet 45481000168108 Ibuprofen (Pharmacy Health) 45481000168108 Ibuprofen (Pharmacy Health) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1080041000168108 Bisoprolol (Auro) 7.5 mg film-coated tablet, 30, blister pack 175920 1080031000168104 Bisoprolol (Auro) 7.5 mg film-coated tablet, 30 1080001000168106 Bisoprolol (Auro) 7.5 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 874371000168100 bisoprolol fumarate 7.5 mg tablet, 30 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +81100011000036101 Omeprazole (Chemmart) 20 mg enteric tablet, 30, blister pack 159733 49683011000036105 Omeprazole (Chemmart) 20 mg enteric tablet, 30 48818011000036107 Omeprazole (Chemmart) 20 mg enteric tablet 48268011000036101 Omeprazole (Chemmart) 48268011000036101 Omeprazole (Chemmart) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +81100011000036101 Omeprazole (Chemmart) 20 mg enteric tablet, 30, blister pack 190947 49683011000036105 Omeprazole (Chemmart) 20 mg enteric tablet, 30 48818011000036107 Omeprazole (Chemmart) 20 mg enteric tablet 48268011000036101 Omeprazole (Chemmart) 48268011000036101 Omeprazole (Chemmart) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +19742011000036101 Ausgem 600 mg film-coated tablet, 60, bottle 62099 12996011000036105 Ausgem 600 mg film-coated tablet, 60 6284011000036102 Ausgem 600 mg film-coated tablet 3591011000036101 Ausgem 3591011000036101 Ausgem 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +37664011000036100 Oxybuprocaine Hydrochloride Minims (Bausch & Lomb) 0.4% eye drops solution, 20 x 0.5 mL unit doses, tube 32259 36930011000036102 Oxybuprocaine Hydrochloride Minims (Bausch & Lomb) 0.4% eye drops solution, 20 x 0.5 mL unit doses 36261011000036100 Oxybuprocaine Hydrochloride Minims (Bausch & Lomb) 0.4% eye drops solution, 0.5 mL unit dose 59941000168109 Oxybuprocaine Hydrochloride Minims (Bausch & Lomb) 59941000168109 Oxybuprocaine Hydrochloride Minims (Bausch & Lomb) 38811011000036104 oxybuprocaine hydrochloride 0.4% eye drops, 20 x 0.5 mL unit doses 38021011000036107 oxybuprocaine hydrochloride 0.4% eye drops, unit dose 37809011000036105 oxybuprocaine +44065011000036102 Elmiron 100 mg hard capsule, 100, bottle 48446 41552011000036108 Elmiron 100 mg hard capsule, 100 40058011000036100 Elmiron 100 mg hard capsule 39734011000036107 Elmiron 39734011000036107 Elmiron 46384011000036109 pentosan polysulfate sodium 100 mg capsule, 100 45120011000036103 pentosan polysulfate sodium 100 mg capsule 44923011000036101 pentosan polysulfate sodium +81073011000036108 Curash Anti-Rash Baby 25% dusting powder, 100 g, bottle 15250 80582011000036101 Curash Anti-Rash Baby 25% dusting powder, 100 g 80200011000036105 Curash Anti-Rash Baby 25% dusting powder 21511000168101 Curash Anti-Rash Baby 21511000168101 Curash Anti-Rash Baby 81657011000036106 zinc oxide 25% dusting powder, 100 g 81279011000036103 zinc oxide 25% dusting powder 77446011000036105 zinc oxide +19572011000036103 Cabaser 1 mg uncoated tablet, 30, bottle 57360 12843011000036102 Cabaser 1 mg uncoated tablet, 30 6134011000036107 Cabaser 1 mg uncoated tablet 3578011000036104 Cabaser 3578011000036104 Cabaser 27390011000036101 cabergoline 1 mg tablet, 30 22739011000036101 cabergoline 1 mg tablet 21526011000036105 cabergoline +824021000168103 Basaglar 100 units/mL injection solution, 3 mL cartridge 215551 824011000168105 Basaglar 100 units/mL injection solution, 3 mL cartridge 823991000168104 Basaglar 100 units/mL injection solution, 3 mL cartridge 823981000168102 Basaglar 823981000168102 Basaglar 824001000168107 insulin glargine 100 units/mL injection, 3 mL cartridge 23176011000036105 insulin glargine 100 units/mL injection, cartridge 21815011000036108 insulin glargine +1055561000168103 Sorbact Foam Gentle Border (98533) 15 cm x 15 cm dressing, 10, carton 173776 1055551000168100 Sorbact Foam Gentle Border (98533) 15 cm x 15 cm dressing, 10 1055531000168106 Sorbact Foam Gentle Border (98533) 15 cm x 15 cm dressing 1055511000168101 Sorbact Foam Gentle Border (98533) 1055511000168101 Sorbact Foam Gentle Border (98533) 1055541000168102 dressing hydrophobic 15 cm x 15 cm dressing, 10 1055521000168108 dressing hydrophobic 15 cm x 15 cm dressing 1055281000168109 dressing hydrophobic +1107991000168109 Midazolam (Intas) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 207240 1107981000168106 Midazolam (Intas) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1107951000168104 Midazolam (Intas) 5 mg/5 mL injection solution, 5 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +1032891000168103 Ramipril (Apotex) 2.5 mg capsule, 30, blister pack 179018 1032881000168101 Ramipril (Apotex) 2.5 mg capsule, 30 1032871000168104 Ramipril (Apotex) 2.5 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +68951011000036105 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 2 sachets 133242 66753011000036108 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 2 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71421011000036101 paracetamol 500 mg powder for oral liquid, 2 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +661301000168109 Ciprofloxacin (AN) 500 mg film-coated tablet, 14, blister pack 175436 661291000168108 Ciprofloxacin (AN) 500 mg film-coated tablet, 14 661281000168105 Ciprofloxacin (AN) 500 mg film-coated tablet 661241000168100 Ciprofloxacin (AN) 661241000168100 Ciprofloxacin (AN) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +782451000168100 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 1 vial 209478 782441000168102 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 1 vial 782421000168108 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 470 mg vial 782401000168104 Thiopental Sodium (Omegapharm) 782401000168104 Thiopental Sodium (Omegapharm) 782431000168106 thiopental sodium 470 mg injection, 1 vial 782411000168101 thiopental sodium 470 mg injection, vial 44938011000036109 thiopental +854071000168101 Quetiapine (Alkem) 300 mg film-coated tablet, 20, blister pack 204845 854061000168107 Quetiapine (Alkem) 300 mg film-coated tablet, 20 854051000168105 Quetiapine (Alkem) 300 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +77416011000036100 Nozoil 1 mL/mL nasal drops solution, 15 mL, bottle 93718 76832011000036100 Nozoil 1 mL/mL nasal drops solution, 15 mL 76198011000036104 Nozoil 1 mL/mL nasal drops solution 75963011000036107 Nozoil 75963011000036107 Nozoil 78336011000036109 sesame oil 1 mL/mL nasal drops, 15 mL 77613011000036108 sesame oil 1 mL/mL nasal drops 77449011000036101 sesame oil +724491000168109 PKU Lophlex Berry powder for oral liquid, 30 x 27.8 g sachets 724481000168106 PKU Lophlex Berry powder for oral liquid, 30 x 27.8 g sachets 724471000168108 PKU Lophlex Berry powder for oral liquid, 27.8 g sachet 23211000168102 PKU Lophlex 23211000168102 PKU Lophlex 51447011000036109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 27.8 g sachets 247811000168104 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 27.8 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1037181000168106 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 30, blister pack 173507 1036501000168106 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 30 1036471000168100 Atorvastatin (Ranbaxy) 80 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +849801000168104 Itranox 100 mg hard capsule, 6, blister pack 244432 849791000168100 Itranox 100 mg hard capsule, 6 849721000168102 Itranox 100 mg hard capsule 849661000168104 Itranox 849661000168104 Itranox 46363011000036109 itraconazole 100 mg capsule, 6 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +819911000168104 Adin 10 microgram/actuation nasal spray, 5 mL, pump pack 99860 819901000168102 Adin 10 microgram/actuation nasal spray, 5 mL 819881000168104 Adin 10 microgram/actuation nasal spray, actuation 816101000168106 Adin 816101000168106 Adin 819891000168101 desmopressin acetate 10 microgram/actuation nasal spray, 5 mL 22776011000036108 desmopressin acetate 10 microgram/actuation nasal spray, actuation 21750011000036107 desmopressin +1058611000168105 Levetiracetam 1000 (Auro) 1 g film-coated tablet, 30, bottle 182819 1058601000168107 Levetiracetam 1000 (Auro) 1 g film-coated tablet, 30 713871000168101 Levetiracetam 1000 (Auro) 1 g film-coated tablet 713861000168107 Levetiracetam 1000 (Auro) 713861000168107 Levetiracetam 1000 (Auro) 1058591000168100 levetiracetam 1 g tablet, 30 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +1055871000168107 Erelzi Auto-Injector 50 mg/mL injection solution, 2 x 1 mL injection devices 281780 1055861000168101 Erelzi Auto-Injector 50 mg/mL injection solution, 2 x 1 mL injection devices 1055821000168106 Erelzi Auto-Injector 50 mg/mL injection solution, injection device 1055811000168104 Erelzi Auto-Injector 1055811000168104 Erelzi Auto-Injector 1055851000168103 etanercept 50 mg/mL injection, 2 x 1 mL injection devices 897981000168103 etanercept 50 mg/mL injection, injection device 21347011000036107 etanercept +911851000168102 Cavstat 40 mg film-coated tablet, 15, blister pack 234508 911841000168104 Cavstat 40 mg film-coated tablet, 15 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911831000168108 rosuvastatin 40 mg tablet, 15 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +18047011000036104 Simvastatin (DP) 80 mg film-coated tablet, 30, blister pack 199736 11295011000036101 Simvastatin (DP) 80 mg film-coated tablet, 30 5319011000036109 Simvastatin (DP) 80 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18047011000036104 Simvastatin (DP) 80 mg film-coated tablet, 30, blister pack 104518 11295011000036101 Simvastatin (DP) 80 mg film-coated tablet, 30 5319011000036109 Simvastatin (DP) 80 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +20376011000036100 Genlac 3.34 g/5 mL oral liquid solution, 500 mL, bottle 76706 13584011000036101 Genlac 3.34 g/5 mL oral liquid solution, 500 mL 6867011000036101 Genlac 3.34 g/5 mL oral liquid solution, 5 mL 3755011000036106 Genlac 3755011000036106 Genlac 27821011000036102 lactulose 3.34 g/5 mL oral liquid, 500 mL 23149011000036102 lactulose 3.34 g/5 mL oral liquid 21591011000036108 lactulose +1021311000168109 Voriconazole (Apo) 50 mg film-coated tablet, 10, blister pack 238281 1021301000168106 Voriconazole (Apo) 50 mg film-coated tablet, 10 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46811011000036106 voriconazole 50 mg tablet, 10 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +60522011000036107 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet, 48, blister pack 151926 56480011000036104 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet, 48 53936011000036104 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet 5051000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) 5051000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +933246541000036102 Ciprofloxacin (PS) 500 mg film-coated tablet, 100, blister pack 148852 933243111000036102 Ciprofloxacin (PS) 500 mg film-coated tablet, 100 933241321000036108 Ciprofloxacin (PS) 500 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 933199791000036103 ciprofloxacin 500 mg tablet, 100 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +854231000168108 Aliquen 200 mg film-coated tablet, 60, blister pack 204852 854221000168105 Aliquen 200 mg film-coated tablet, 60 854191000168104 Aliquen 200 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +759171000168101 Mersyndol Caplet uncoated tablet, 40, blister pack 56535 759161000168107 Mersyndol Caplet uncoated tablet, 40 52432011000036107 Mersyndol Caplet uncoated tablet 2221000168108 Mersyndol Caplet 2221000168108 Mersyndol Caplet 28971000036104 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 40 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +908881000168104 Celecoxib (BW) 100 mg hard capsule, 120, blister pack 196182 908871000168102 Celecoxib (BW) 100 mg hard capsule, 120 908721000168109 Celecoxib (BW) 100 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 907561000168105 celecoxib 100 mg capsule, 120 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +882911000168107 Candesartan HCTZ 16/12.5 (GPPL) uncoated tablet, 30, bottle 253495 882891000168105 Candesartan HCTZ 16/12.5 (GPPL) uncoated tablet, 30 882881000168107 Candesartan HCTZ 16/12.5 (GPPL) uncoated tablet 882871000168109 Candesartan HCTZ 16/12.5 (GPPL) 882871000168109 Candesartan HCTZ 16/12.5 (GPPL) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +703001000168100 MSUD Anamix Junior powder for oral liquid, 30 x 36 g sachets 702991000168101 MSUD Anamix Junior powder for oral liquid, 30 x 36 g sachets 702971000168102 MSUD Anamix Junior powder for oral liquid, 36 g sachet 39581000168106 MSUD Anamix Junior 39581000168106 MSUD Anamix Junior 702981000168104 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without valine, leucine and isoleucine powder for oral liquid, 30 x 36 g sachets 702961000168108 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without valine, leucine and isoleucine powder for oral liquid, 36 g sachet 702951000168106 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without valine, leucine and isoleucine +1047281000168103 Lamotrigine (Sandoz) Dispersible 200 mg uncoated tablet, 56, blister pack 291472 1047271000168101 Lamotrigine (Sandoz) Dispersible 200 mg uncoated tablet, 56 1047261000168107 Lamotrigine (Sandoz) Dispersible 200 mg uncoated tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +1093331000168105 Voltaren Emulgel No Mess Applicator 1.16% gel, 75 g, tube 282516 1093321000168107 Voltaren Emulgel No Mess Applicator 1.16% gel, 75 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037101000168103 diclofenac diethylamine 1.16% gel, 75 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +20753011000036109 Strattera 10 mg hard capsule, 28, blister pack 90592 13922011000036108 Strattera 10 mg hard capsule, 28 7210011000036105 Strattera 10 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +68882011000036100 Bosisto's Eucalyptus Rub cream, 35 g, tube 10909 66572011000036100 Bosisto's Eucalyptus Rub cream, 35 g 65505011000036103 Bosisto's Eucalyptus Rub cream 65060011000036108 Bosisto's Eucalyptus Rub 65060011000036108 Bosisto's Eucalyptus Rub 71295011000036105 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream, 35 g 69935011000036105 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +986761000168101 Glyxambi 10 mg/5 mg film-coated tablet, 10, blister pack 263556 986751000168103 Glyxambi 10 mg/5 mg film-coated tablet, 10 986731000168109 Glyxambi 10 mg/5 mg film-coated tablet 986641000168105 Glyxambi 10 mg/5 mg 986641000168105 Glyxambi 10 mg/5 mg 986741000168100 empagliflozin 10 mg + linagliptin 5 mg tablet, 10 986721000168106 empagliflozin 10 mg + linagliptin 5 mg tablet 986711000168104 empagliflozin + linagliptin +1011161000168103 Montelukast (Apotex) 10 mg film-coated tablet, 14, blister pack 170245 1011151000168100 Montelukast (Apotex) 10 mg film-coated tablet, 14 1011121000168108 Montelukast (Apotex) 10 mg film-coated tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +721751000168109 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL, bottle 15506 721741000168107 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL 721731000168103 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 5 mL 4791000168108 Panadol Children's Elixir 5 to 12 Years 4791000168108 Panadol Children's Elixir 5 to 12 Years 63509011000036106 paracetamol 240 mg/5 mL oral liquid, 20 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +926814011000036107 Reaptan 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 170797 926210011000036108 Reaptan 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30 925677011000036103 Reaptan 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet 30061000168102 Reaptan 5mg/10mg (perindopril arginine/amlodipine) 30061000168102 Reaptan 5mg/10mg (perindopril arginine/amlodipine) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +848361000168100 Alinivir 800 mg uncoated tablet, 120, blister pack 202877 848351000168102 Alinivir 800 mg uncoated tablet, 120 848321000168105 Alinivir 800 mg uncoated tablet 848211000168106 Alinivir 848211000168106 Alinivir 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +923351000168104 Zolpidem (Chemmart) 10 mg film-coated tablet, 14, blister pack 127172 923341000168101 Zolpidem (Chemmart) 10 mg film-coated tablet, 14 923311000168100 Zolpidem (Chemmart) 10 mg film-coated tablet 923301000168103 Zolpidem (Chemmart) 923301000168103 Zolpidem (Chemmart) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +933246861000036103 Pantoprazole (PS) 20 mg enteric tablet, 30, blister pack 158196 933243691000036103 Pantoprazole (PS) 20 mg enteric tablet, 30 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +69183011000036103 Dulcolax for Children 5 mg moulded suppository, 6, strip pack 17925 66983011000036106 Dulcolax for Children 5 mg moulded suppository, 6 65231011000036103 Dulcolax for Children 5 mg moulded suppository 16491000168108 Dulcolax for Children 16491000168108 Dulcolax for Children 71556011000036101 bisacodyl 5 mg suppository, 6 70062011000036100 bisacodyl 5 mg suppository 21264011000036101 bisacodyl +841241000168100 Bansep 10 mg film-coated tablet, 6, blister pack 173489 841231000168109 Bansep 10 mg film-coated tablet, 6 841211000168104 Bansep 10 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 841221000168106 atorvastatin 10 mg tablet, 6 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +874361000168106 Beprol 7.5 mg film-coated tablet, 28, blister pack 175927 874351000168109 Beprol 7.5 mg film-coated tablet, 28 874331000168103 Beprol 7.5 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 874341000168107 bisoprolol fumarate 7.5 mg tablet, 28 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +83412011000036107 Accu-Chek Mobile diagnostic strip, 50, bottle 166977 83330011000036106 Accu-Chek Mobile diagnostic strip, 50 83259011000036109 Accu-Chek Mobile diagnostic strip 33801000168104 Accu-Chek Mobile 33801000168104 Accu-Chek Mobile 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +883001000168102 Candesartan HCTZ 16/12.5 (GXP) uncoated tablet, 30, bottle 253573 882951000168108 Candesartan HCTZ 16/12.5 (GXP) uncoated tablet, 30 882941000168106 Candesartan HCTZ 16/12.5 (GXP) uncoated tablet 882921000168100 Candesartan HCTZ 16/12.5 (GXP) 882921000168100 Candesartan HCTZ 16/12.5 (GXP) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +50310011000036102 Tensopress (66004347) 7.5 cm x 3 m high stretch bandage, 1, carton 49315011000036101 Tensopress (66004347) 7.5 cm x 3 m high stretch bandage, 1 48766011000036107 Tensopress (66004347) 7.5 cm x 3 m high stretch bandage 36381000168107 Tensopress (66004347) 36381000168107 Tensopress (66004347) 51296011000036101 bandage compression 7.5 cm x 3 m high stretch bandage, 1 50825011000036102 bandage compression 7.5 cm x 3 m high stretch bandage 50716011000036103 bandage compression +894511000168108 Entecavir (GH) 500 microgram film-coated tablet, 10, blister pack 267115 894501000168105 Entecavir (GH) 500 microgram film-coated tablet, 10 894491000168103 Entecavir (GH) 500 microgram film-coated tablet 894481000168101 Entecavir (GH) 894481000168101 Entecavir (GH) 894301000168101 entecavir 500 microgram tablet, 10 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +1029921000168102 Aten 25 mg film-coated tablet, 112, blister pack 197714 1029911000168109 Aten 25 mg film-coated tablet, 112 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029901000168106 atenolol 25 mg tablet, 112 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +69285011000036104 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 18 x 500 mL bags 19498 67085011000036102 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 18 x 500 mL bags 65289011000036108 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 500 mL bag 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 71654011000036104 sodium chloride 0.3% (1.5 g/500 mL) + glucose 3.3% (16.5 g/500 mL) injection, 18 x 500 mL bags 70110011000036105 sodium chloride 0.3% (1.5 g/500 mL) + glucose 3.3% (16.5 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +1061591000168103 Olanzapine ODT (Auro) 5 mg orally disintegrating tablet, 28, blister pack 212895 1061581000168101 Olanzapine ODT (Auro) 5 mg orally disintegrating tablet, 28 1061571000168104 Olanzapine ODT (Auro) 5 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +1019821000168102 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 5, blister pack 175199 1019811000168109 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 5 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019801000168106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 5 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1044311000168108 Pryzex 5 mg film-coated tablet, 30, blister pack 178991 1044301000168105 Pryzex 5 mg film-coated tablet, 30 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 89751000036106 olanzapine 5 mg tablet, 30 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +772081000168109 Claratyne 10 mg uncoated tablet, 2, blister pack 34698 772071000168106 Claratyne 10 mg uncoated tablet, 2 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 772061000168100 loratadine 10 mg tablet, 2 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +759131000168104 Yellow Jacket Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack, composite pack 759121000168102 Yellow Jacket Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 759091000168101 Yellow Jacket Venom (Hymenoptera) 754701000168106 Albumin Saline (Stallergenes) 759111000168109 yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial], 1 pack 638491000168106 inert substance diluent, 9 mL vial 21220011000036103 inert substance +759131000168104 Yellow Jacket Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack, composite pack 759121000168102 Yellow Jacket Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack 759101000168106 Yellow Jacket Venom (Hymenoptera) (yellow jacket venom 550 microgram) powder for injection, 550 microgram vial 759091000168101 Yellow Jacket Venom (Hymenoptera) 759091000168101 Yellow Jacket Venom (Hymenoptera) 759111000168109 yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial], 1 pack 759041000168109 yellow jacket venom 550 microgram injection, vial 759031000168100 yellow jacket venom +19725011000036106 Captohexal 50 mg film-coated tablet, 90, blister pack 61420 12979011000036106 Captohexal 50 mg film-coated tablet, 90 6268011000036107 Captohexal 50 mg film-coated tablet 4103011000036105 Captohexal 4103011000036105 Captohexal 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +848431000168102 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 222686 848421000168100 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 848371000168106 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet 692191000168105 Alendronate Plus D3 Calcium (Actavis) 692151000168100 Calcium (Actavis) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +848431000168102 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 222686 848421000168100 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 692121000168108 Alendronate D3 70 mg/140 microgram (Actavis) uncoated tablet 692191000168105 Alendronate Plus D3 Calcium (Actavis) 692111000168101 Alendronate D3 70 mg/140 microgram (Actavis) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +776421000168102 Forthane 1 mL/mL inhalation solution, 250 mL, bottle 29656 776411000168109 Forthane 1 mL/mL inhalation solution, 250 mL 775541000168102 Forthane 1 mL/mL inhalation solution 35961011000036103 Forthane 35961011000036103 Forthane 46488011000036109 isoflurane 1 mL/mL inhalation solution, 250 mL 45182011000036107 isoflurane 1 mL/mL inhalation solution 37776011000036109 isoflurane +1032751000168103 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 30, blister pack 173485 1031461000168100 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 30 1031401000168101 Atorvastatin (Ranbaxy) 20 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +18954011000036102 Stemetil 5 mg uncoated tablet, 25, blister pack 27564 12262011000036107 Stemetil 5 mg uncoated tablet, 25 5056011000036108 Stemetil 5 mg uncoated tablet 4309011000036101 Stemetil 4309011000036101 Stemetil 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +884441000168107 Bosentan (Sun) 62.5 mg film-coated tablet, 60, blister pack 257755 884431000168103 Bosentan (Sun) 62.5 mg film-coated tablet, 60 884401000168105 Bosentan (Sun) 62.5 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +933212301000036102 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 56, blister pack 142237 933201091000036102 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 56 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200761000036101 donepezil hydrochloride 5 mg tablet, 56 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +19589011000036102 Seroquel 100 mg film-coated tablet, 90, blister pack 58113 12860011000036100 Seroquel 100 mg film-coated tablet, 90 6151011000036108 Seroquel 100 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +55251000036106 Diabact UBT 50 mg uncoated tablet, 10, blister pack 146728 51081000036109 Diabact UBT 50 mg uncoated tablet, 10 48681000036106 Diabact UBT 50 mg uncoated tablet 33671000168105 Diabact UBT 33671000168105 Diabact UBT 51091000036106 urea (13C) 50 mg tablet, 10 48691000036108 urea (13C) 50 mg tablet 56851000036103 urea (13C) +116291000036105 Robitussin Sinus Relief 10 mg/10 mL oral liquid solution, 200 mL, bottle 146791 114531000036102 Robitussin Sinus Relief 10 mg/10 mL oral liquid solution, 200 mL 113521000036101 Robitussin Sinus Relief 10 mg/10 mL oral liquid solution, 10 mL 112701000036109 Robitussin Sinus Relief 112701000036109 Robitussin Sinus Relief 114541000036107 phenylephrine hydrochloride 10 mg/10 mL oral liquid, 200 mL 113531000036104 phenylephrine hydrochloride 10 mg/10 mL oral liquid 37732011000036107 phenylephrine +33536011000036103 Dolapril 2 mg hard capsule, 28, blister pack 125434 33276011000036107 Dolapril 2 mg hard capsule, 28 33041011000036106 Dolapril 2 mg hard capsule 32987011000036105 Dolapril 32987011000036105 Dolapril 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +854211000168103 Aliquen 200 mg film-coated tablet, 20, blister pack 204852 854201000168101 Aliquen 200 mg film-coated tablet, 20 854191000168104 Aliquen 200 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +741861000168104 Jakavi 10 mg tablet, 28, blister pack 232702 741851000168101 Jakavi 10 mg tablet, 28 741771000168102 Jakavi 10 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741841000168103 ruxolitinib 10 mg tablet, 28 741761000168108 ruxolitinib 10 mg tablet 146491000036100 ruxolitinib +1021241000168102 Gliclazide MR (Ardix) 60 mg modified release tablet, 20, blister pack 154049 1021231000168106 Gliclazide MR (Ardix) 60 mg modified release tablet, 20 676741000168107 Gliclazide MR (Ardix) 60 mg modified release tablet 676731000168103 Gliclazide MR (Ardix) 676731000168103 Gliclazide MR (Ardix) 1021221000168108 gliclazide 60 mg modified release tablet, 20 83433011000036106 gliclazide 60 mg modified release tablet 21867011000036102 gliclazide +20557011000036101 Solavert 160 mg uncoated tablet, 60, blister pack 79918 13748011000036101 Solavert 160 mg uncoated tablet, 60 7033011000036100 Solavert 160 mg uncoated tablet 3758011000036100 Solavert 3758011000036100 Solavert 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +661061000168108 Omeprazole (AN) 20 mg enteric tablet, 30, blister pack 159688 661051000168106 Omeprazole (AN) 20 mg enteric tablet, 30 661041000168109 Omeprazole (AN) 20 mg enteric tablet 661031000168100 Omeprazole (AN) 661031000168100 Omeprazole (AN) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +61686011000036101 Cold Relief (Guardian) film-coated tablet, 24, blister pack 98229 57607011000036100 Cold Relief (Guardian) film-coated tablet, 24 54361011000036106 Cold Relief (Guardian) film-coated tablet 53283011000036101 Cold Relief (Guardian) 53283011000036101 Cold Relief (Guardian) 63955011000036106 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet, 24 62108011000036101 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet 61727011000036100 chlorphenamine + paracetamol +37631011000036106 Zinc Sulphate (Phebra) 50 mg/mL intravenous infusion injection, 10 x 1 mL vials 22857 36897011000036100 Zinc Sulphate (Phebra) 50 mg/mL intravenous infusion injection, 10 x 1 mL vials 36230011000036101 Zinc Sulphate (Phebra) 50 mg/mL intravenous infusion injection, vial 35880011000036104 Zinc Sulphate (Phebra) 35880011000036104 Zinc Sulphate (Phebra) 38782011000036106 zinc sulfate 50 mg/mL injection, 10 x 1 mL vials 37995011000036103 zinc sulfate 50 mg/mL injection, vial 37714011000036108 zinc +1090551000168104 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 mL syringe 283127 1090541000168101 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 mL syringe 1090521000168107 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090531000168105 dupilumab 300 mg/2 mL injection, 2 mL syringe 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +59965011000036102 Emla 5% (with 2 Occlusive Dressings) cream, 5 g, tube 12046 55927011000036106 Emla 5% (with 2 Occlusive Dressings) cream, 5 g 53679011000036106 Emla 5% (with 2 Occlusive Dressings) cream 9941000168103 Emla 5% 9941000168103 Emla 5% 63214011000036102 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream, 5 g 61890011000036109 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream 61738011000036101 lidocaine (lignocaine) + prilocaine +18578011000036102 Gabahexal 300 mg capsule, 100, blister pack 101465 11200011000036108 Gabahexal 300 mg capsule, 100 5745011000036102 Gabahexal 300 mg capsule 3614011000036107 Gabahexal 3614011000036107 Gabahexal 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +55411000036106 Rebetol 200 mg hard capsule, 196, blister pack 155098 51921000036109 Rebetol 200 mg hard capsule, 196 7298011000036106 Rebetol 200 mg hard capsule 3301011000036102 Rebetol 3301011000036102 Rebetol 51931000036106 ribavirin 200 mg capsule, 196 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +1011321000168105 Montelukast (Apotex) 4 mg chewable tablet, 28, blister pack 179108 1011311000168103 Montelukast (Apotex) 4 mg chewable tablet, 28 1011241000168105 Montelukast (Apotex) 4 mg chewable tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +839921000168101 Ipol injection solution, 10 x 0.5 mL syringes 47217 839911000168108 Ipol injection solution, 10 x 0.5 mL syringes 839861000168104 Ipol injection solution, 0.5 mL syringe 73777011000036108 Ipol 73777011000036108 Ipol 839901000168105 polio trivalent inactivated vaccine injection, 10 x 0.5 mL syringes 839851000168101 polio trivalent inactivated vaccine injection, 0.5 mL syringe 839841000168103 polio trivalent inactivated vaccine +1078751000168104 Atomoxetine (GPPL) 40 mg hard capsule, 28, blister pack 234840 1078741000168101 Atomoxetine (GPPL) 40 mg hard capsule, 28 1078691000168103 Atomoxetine (GPPL) 40 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1080361000168109 Salofalk 1 g enteric tablet, 150, blister pack 285903 1080351000168107 Salofalk 1 g enteric tablet, 150 1080151000168109 Salofalk 1 g enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 1080341000168105 mesalazine 1 g enteric tablet, 150 1080141000168107 mesalazine 1 g enteric tablet 21351011000036101 mesalazine +925184011000036101 Sumaccord 100 mg film-coated tablet, 2, blister pack 154818 924721011000036105 Sumaccord 100 mg film-coated tablet, 2 924433011000036104 Sumaccord 100 mg film-coated tablet 924405011000036109 Sumaccord 924405011000036109 Sumaccord 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +880101000168106 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet, 50, blister pack 215350 880091000168101 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet, 50 880061000168108 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +933246791000036101 Lisinopril (PS) 20 mg uncoated tablet, 84, blister pack 152714 933243431000036101 Lisinopril (PS) 20 mg uncoated tablet, 84 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 78129011000036106 lisinopril 20 mg tablet, 84 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +85015011000036100 Elecare LCP powder for oral liquid, 400 g, can 84868011000036102 Elecare LCP powder for oral liquid, 400 g 84774011000036100 Elecare LCP powder for oral liquid 84755011000036104 Elecare LCP 84755011000036104 Elecare LCP 51427011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids powder for oral liquid, 400 g 50944011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids powder for oral liquid 50726011000036106 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids +69619011000036101 Mylanta 2go Rolltab Spearmint chewable tablet, 36, wrapping 75881 67418011000036100 Mylanta 2go Rolltab Spearmint chewable tablet, 36 65655011000036100 Mylanta 2go Rolltab Spearmint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71949011000036102 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 36 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +990941000168100 Lyrica 50 mg hard capsule, 56, bottle 99480 990571000168100 Lyrica 50 mg hard capsule, 56 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +19058011000036104 Tambocor 50 mg uncoated tablet, 60, blister pack 41001 12366011000036100 Tambocor 50 mg uncoated tablet, 60 4513011000036104 Tambocor 50 mg uncoated tablet 3960011000036102 Tambocor 3960011000036102 Tambocor 27079011000036103 flecainide acetate 50 mg tablet, 60 22448011000036104 flecainide acetate 50 mg tablet 21457011000036102 flecainide +68712011000036100 Vicks Inhaler inhalation solution, 0.5 mL, tube 10293 66492011000036100 Vicks Inhaler inhalation solution, 0.5 mL 65349011000036105 Vicks Inhaler inhalation solution 65137011000036108 Vicks Inhaler 65137011000036108 Vicks Inhaler 71225011000036103 menthol 197 mg/0.5 mL + camphor 197 mg/0.5 mL inhalation solution, 0.5 mL 69907011000036109 menthol 197 mg/0.5 mL + camphor 197 mg/0.5 mL inhalation solution 69811011000036106 menthol + camphor +1047121000168106 Buprenorphine (SZ) 20 microgram/hour patch, 4, sachet 269675 1047111000168104 Buprenorphine (SZ) 20 microgram/hour patch, 4 1047061000168100 Buprenorphine (SZ) 20 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046591000168104 buprenorphine 20 microgram/hour patch, 4 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +74914011000036101 Death Adder Antivenom (CSL) 6000 units intravenous infusion injection, 1 vial 74896 74401011000036104 Death Adder Antivenom (CSL) 6000 units intravenous infusion injection, 1 vial 73924011000036107 Death Adder Antivenom (CSL) 6000 units intravenous infusion injection, vial 73728011000036108 Death Adder Antivenom (CSL) 73728011000036108 Death Adder Antivenom (CSL) 75498011000036101 death adder antivenom 6000 units injection, 1 vial 75098011000036109 death adder antivenom 6000 units injection, vial 74985011000036100 death adder antivenom +1006981000168102 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet, 100, bottle 281888 1006971000168100 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet, 100 1006871000168105 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet 1006851000168101 Osteo Relief Paracetamol (Apohealth) 1006851000168101 Osteo Relief Paracetamol (Apohealth) 677931000168103 paracetamol 665 mg modified release tablet, 100 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +933246631000036108 Lisinopril (PS) 5 mg uncoated tablet, 84, blister pack 152712 933243271000036100 Lisinopril (PS) 5 mg uncoated tablet, 84 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 83482011000036105 lisinopril 5 mg tablet, 84 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +1088941000168107 Ibupane film-coated tablet, 12, blister pack 267396 1088931000168103 Ibupane film-coated tablet, 12 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +140731000036108 Candesartan Cilexetil (RBX) 8 mg uncoated tablet, 30, blister pack 195468 139191000036102 Candesartan Cilexetil (RBX) 8 mg uncoated tablet, 30 137621000036102 Candesartan Cilexetil (RBX) 8 mg uncoated tablet 137351000036102 Candesartan Cilexetil (RBX) 137351000036102 Candesartan Cilexetil (RBX) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +835621000168107 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL, bottle 14686 835611000168100 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL 835601000168103 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution 33929011000036101 Codeine Phosphate Linctus (Ramprie Labs) 33929011000036101 Codeine Phosphate Linctus (Ramprie Labs) 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +116151000036108 Lipodox 50 mg/25 mL concentrated injection, 25 mL vial 114381000036105 Lipodox 50 mg/25 mL concentrated injection, 25 mL vial 113161000036104 Lipodox 50 mg/25 mL concentrated injection, 25 mL vial 112731000036102 Lipodox 112731000036102 Lipodox 114391000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, 25 mL vial 113171000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +1015571000168102 Aripiprazole (Medis) 20 mg uncoated tablet, 30, blister pack 217228 1015561000168108 Aripiprazole (Medis) 20 mg uncoated tablet, 30 1015551000168106 Aripiprazole (Medis) 20 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1025741000168107 Neuroccord 300 mg hard capsule, 20, bottle 235861 1025731000168103 Neuroccord 300 mg hard capsule, 20 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1084611000168109 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) powder for injection, 1 vial 22258 1084601000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) powder for injection, 1 vial 1084591000168104 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) powder for injection, vial 1081551000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) 1081551000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) 1084471000168104 edetate disodium 3 g + sodium ascorbate 15 g injection, 1 vial 1084451000168108 edetate disodium 3 g + sodium ascorbate 15 g injection, vial 680831000168100 edetic acid + ascorbic acid +811051000168100 Prodeine uncoated tablet, 2, blister pack 200605 811041000168102 Prodeine uncoated tablet, 2 811031000168106 Prodeine uncoated tablet 811021000168108 Prodeine 811021000168108 Prodeine 63610011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 2 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +904701000168107 Amisulpride (AJS) 50 mg uncoated tablet, 60, blister pack 234696 904691000168107 Amisulpride (AJS) 50 mg uncoated tablet, 60 904581000168105 Amisulpride (AJS) 50 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +37494011000036100 Lamotrigine (Generic Health) 25 mg tablet, 56, blister pack 129735 36762011000036102 Lamotrigine (Generic Health) 25 mg tablet, 56 36132011000036100 Lamotrigine (Generic Health) 25 mg tablet 35966011000036108 Lamotrigine (Generic Health) 35966011000036108 Lamotrigine (Generic Health) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +986601000168108 Advil Childrens Pain and Fever 2 to 7 Years 100 mg chewable tablet, 40, bottle 178663 986591000168101 Advil Childrens Pain and Fever 2 to 7 Years 100 mg chewable tablet, 40 986541000168109 Advil Childrens Pain and Fever 2 to 7 Years 100 mg chewable tablet 986461000168107 Advil Childrens Pain and Fever 2 to 7 Years 986461000168107 Advil Childrens Pain and Fever 2 to 7 Years 986581000168104 ibuprofen 100 mg chewable tablet, 40 986531000168100 ibuprofen 100 mg chewable tablet 21885011000036105 ibuprofen +1076101000168103 Aripiprazole (Auro) 15 mg uncoated tablet, 30, bottle 198186 1076041000168100 Aripiprazole (Auro) 15 mg uncoated tablet, 30 1076011000168104 Aripiprazole (Auro) 15 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +928900011000036104 Propofol (Sandoz) 200 mg/20 mL injection emulsion, 5 x 20 mL vials 148870 928262011000036102 Propofol (Sandoz) 200 mg/20 mL injection emulsion, 5 x 20 mL vials 927911011000036103 Propofol (Sandoz) 200 mg/20 mL injection emulsion, 20 mL vial 920961011000036109 Propofol (Sandoz) 920961011000036109 Propofol (Sandoz) 927311011000036108 propofol 200 mg/20 mL injection, 5 x 20 mL vials 38040011000036103 propofol 200 mg/20 mL injection, vial 37750011000036109 propofol +933212391000036105 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 56, blister pack 142238 933201181000036100 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 56 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200931000036105 donepezil hydrochloride 10 mg tablet, 56 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +20086011000036106 Akamin 50 mg film-coated tablet, 60, blister pack 70848 13314011000036101 Akamin 50 mg film-coated tablet, 60 6600011000036108 Akamin 50 mg film-coated tablet 3121011000036101 Akamin 3121011000036101 Akamin 27684011000036103 minocycline 50 mg tablet, 60 23021011000036109 minocycline 50 mg tablet 21488011000036109 minocycline +754901000168109 Xedone 20 mg hard capsule, 60, blister pack 227857 754151000168106 Xedone 20 mg hard capsule, 60 754121000168103 Xedone 20 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +980851000168105 Favint 18 microgram powder for inhalation, 150 capsules, blister pack 98765 980841000168108 Favint 18 microgram powder for inhalation, 150 capsules 980711000168101 Favint 18 microgram powder for inhalation, 1 capsule 980671000168100 Favint 980671000168100 Favint 980831000168104 tiotropium 18 microgram powder for inhalation, 150 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +55321000036108 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 30, blister pack 147409 51131000036109 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 30 48901000036105 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet 48431000036105 Metformin Hydrochloride 1000 (Meditab) 48431000036105 Metformin Hydrochloride 1000 (Meditab) 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +37451011000036107 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 12341 36723011000036101 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack 36125011000036106 Solu-Medrol Act-O-Vial (methylprednisolone 125 mg) powder for injection, 125 mg vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 38633011000036100 methylprednisolone 125 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 37892011000036103 methylprednisolone 125 mg injection, vial 21605011000036100 methylprednisolone +37451011000036107 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 171992 36723011000036101 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack 36125011000036106 Solu-Medrol Act-O-Vial (methylprednisolone 125 mg) powder for injection, 125 mg vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 38633011000036100 methylprednisolone 125 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 37892011000036103 methylprednisolone 125 mg injection, vial 21605011000036100 methylprednisolone +37451011000036107 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 12341 36723011000036101 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack 635841000168105 Solu-Medrol Act-O-Vial (inert substance) diluent, 2 mL vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 38633011000036100 methylprednisolone 125 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +37451011000036107 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 171992 36723011000036101 Solu-Medrol Act-O-Vial (1 x 125 mg vial, 1 x 2 mL inert diluent vial), 1 pack 635841000168105 Solu-Medrol Act-O-Vial (inert substance) diluent, 2 mL vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 38633011000036100 methylprednisolone 125 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +17871000036104 Olanzapine (Synthon) 10 mg tablet, 28, blister pack 152181 16631000036100 Olanzapine (Synthon) 10 mg tablet, 28 15441000036103 Olanzapine (Synthon) 10 mg tablet 15191000036102 Olanzapine (Synthon) 15191000036102 Olanzapine (Synthon) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +170961000036101 Panadol Extra Optizorb film-coated tablet, 18, blister pack 203990 170201000036108 Panadol Extra Optizorb film-coated tablet, 18 168931000036103 Panadol Extra Optizorb film-coated tablet 7671000168109 Panadol Extra Optizorb 7671000168109 Panadol Extra Optizorb 169891000036104 paracetamol 500 mg + caffeine 65 mg tablet, 18 168941000036108 paracetamol 500 mg + caffeine 65 mg tablet 171051000036108 paracetamol + caffeine +922009011000036109 Prohance 5.59 g/20 mL injection solution, 10 x 20 mL vials 72672 921567011000036104 Prohance 5.59 g/20 mL injection solution, 10 x 20 mL vials 921091011000036107 Prohance 5.59 g/20 mL injection solution, 20 mL vial 20611000168106 Prohance 20611000168106 Prohance 922681011000036100 gadoteridol 5.59 g/20 mL injection, 10 x 20 mL vials 922155011000036108 gadoteridol 5.59 g/20 mL injection, vial 922035011000036101 gadoteridol +940511000168103 Humira 40 mg/0.8 mL injection solution, 4 x 0.8 mL syringes 199412 940501000168101 Humira 40 mg/0.8 mL injection solution, 4 x 0.8 mL syringes 7406011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 940491000168108 adalimumab 40 mg/0.8 mL injection, 4 x 0.8 mL syringes 23474011000036101 adalimumab 40 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +1037021000168106 Voltaren Emulgel 1.16% gel, 100 g, tube 47676 1037011000168104 Voltaren Emulgel 1.16% gel, 100 g 1036991000168109 Voltaren Emulgel 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037001000168102 diclofenac diethylamine 1.16% gel, 100 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +877331000168106 Briviact 25 mg film-coated tablet, 100, blister pack 243796 877321000168108 Briviact 25 mg film-coated tablet, 100 877241000168108 Briviact 25 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877311000168101 brivaracetam 25 mg tablet, 100 877231000168104 brivaracetam 25 mg tablet 876401000168109 brivaracetam +61052011000036101 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 30, blister pack 67366 56995011000036105 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 30 54149011000036108 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet 53376011000036109 Naproxen Sodium (Soul Pattinson) 53376011000036109 Naproxen Sodium (Soul Pattinson) 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +842571000168102 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 20 x 2.5 mL ampoules 12534 842561000168108 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 20 x 2.5 mL ampoules 5490011000036109 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 34231000168108 Ventolin Nebules 34231000168108 Ventolin Nebules 842551000168106 salbutamol 5 mg/2.5 mL inhalation solution, 20 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +885971000168107 Alendronate Plus D3 70 mg/140 microgram (Blooms The Chemist) tablet, 4, blister pack 220370 885961000168101 Alendronate Plus D3 70 mg/140 microgram (Blooms The Chemist) tablet, 4 885951000168103 Alendronate Plus D3 70 mg/140 microgram (Blooms The Chemist) tablet 885941000168100 Alendronate Plus D3 70 mg/140 microgram (Blooms The Chemist) 885941000168100 Alendronate Plus D3 70 mg/140 microgram (Blooms The Chemist) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +1042781000168109 Kalma 250 microgram uncoated tablet, 10, bottle 46835 1042771000168106 Kalma 250 microgram uncoated tablet, 10 5703011000036108 Kalma 250 microgram uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 1042761000168100 alprazolam 250 microgram tablet, 10 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +32541011000036102 Octreotide (Hospira) 500 microgram/mL injection solution, 5 x 1 mL vials 120736 32335011000036103 Octreotide (Hospira) 500 microgram/mL injection solution, 5 x 1 mL vials 32212011000036109 Octreotide (Hospira) 500 microgram/mL injection solution, vial 32198011000036109 Octreotide (Hospira) 32198011000036109 Octreotide (Hospira) 32759011000036101 octreotide 500 microgram/mL injection, 5 x 1 mL vials 32690011000036106 octreotide 500 microgram/mL injection, vial 21316011000036104 octreotide +1084691000168100 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) powder for injection, 1 vial 22287 1084681000168103 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) powder for injection, 1 vial 1084671000168101 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) powder for injection, vial 680821000168103 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) 680821000168103 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) 1083521000168104 edetate disodium 3 g + sodium ascorbate 5 g injection, 1 vial 1083501000168108 edetate disodium 3 g + sodium ascorbate 5 g injection, vial 680831000168100 edetic acid + ascorbic acid +19108011000036103 Vibra-Tabs 50 mg film-coated tablet, 25, blister pack 43020 12413011000036103 Vibra-Tabs 50 mg film-coated tablet, 25 5529011000036102 Vibra-Tabs 50 mg film-coated tablet 3573011000036109 Vibra-Tabs 3573011000036109 Vibra-Tabs 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +30871000036109 Mirtazapine (GH) 45 mg film-coated tablet, 30, blister pack 191020 28991000036100 Mirtazapine (GH) 45 mg film-coated tablet, 30 26981000036103 Mirtazapine (GH) 45 mg film-coated tablet 26311000036105 Mirtazapine (GH) 26311000036105 Mirtazapine (GH) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +1088861000168104 Ibupane film-coated tablet, 5, blister pack 267396 1088851000168101 Ibupane film-coated tablet, 5 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 812991000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 5 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +923853011000036106 Extavia (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack, composite pack 160079 923399011000036104 Extavia (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack 923063011000036103 Extavia (interferon beta-1b 8 million units (250 microgram)) powder for injection, 250 microgram vial 922914011000036103 Extavia 922914011000036103 Extavia 46825011000036102 interferon beta-1b 8 million units (250 microgram) injection [15 vials] (&) inert substance diluent [15 x 1.2 mL syringes], 1 pack 23333011000036108 interferon beta-1b 8 million units (250 microgram) injection, vial 21882011000036102 interferon beta-1b +923853011000036106 Extavia (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack, composite pack 160079 923399011000036104 Extavia (15 x 8 million units (250 microgram) vials, 15 x 1.2 mL inert diluent syringes), 1 pack 640701000168107 Extavia (inert substance) diluent, 1.2 mL syringe 922914011000036103 Extavia 922914011000036103 Extavia 46825011000036102 interferon beta-1b 8 million units (250 microgram) injection [15 vials] (&) inert substance diluent [15 x 1.2 mL syringes], 1 pack 640691000168107 inert substance diluent, 1.2 mL syringe 21220011000036103 inert substance +707221000168108 Cosentyx 150 mg/mL injection solution, 2 x 1 mL syringes 218799 707211000168101 Cosentyx 150 mg/mL injection solution, 2 x 1 mL syringes 707191000168102 Cosentyx 150 mg/mL injection solution, syringe 707151000168107 Cosentyx 707151000168107 Cosentyx 707201000168104 secukinumab 150 mg/mL injection, 2 x 1 mL syringes 707181000168100 secukinumab 150 mg/mL injection, syringe 707171000168103 secukinumab +931423011000036105 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 8, blister pack 132824 930599011000036101 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 8 929962011000036104 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet 4399011000036103 Ciprofloxacin (Pharmacor) 4399011000036103 Ciprofloxacin (Pharmacor) 932364011000036107 ciprofloxacin 250 mg tablet, 8 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +1061671000168100 Olanzapine ODT (Auro) 20 mg orally disintegrating tablet, 7, blister pack 212894 1061661000168106 Olanzapine ODT (Auro) 20 mg orally disintegrating tablet, 7 1061621000168101 Olanzapine ODT (Auro) 20 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 1061651000168109 olanzapine 20 mg orally disintegrating tablet, 7 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +672811000168104 Pomalyst 2 mg capsule, 21, blister pack 212654 672801000168102 Pomalyst 2 mg capsule, 21 672781000168101 Pomalyst 2 mg capsule 672631000168105 Pomalyst 672631000168105 Pomalyst 672791000168103 pomalidomide 2 mg capsule, 21 672771000168104 pomalidomide 2 mg capsule 672761000168105 pomalidomide +1024051000168105 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 8, blister pack 227167 1024041000168108 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 8 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +18227011000036105 Panamax Elixir 120 mg/5 mL oral liquid solution, 100 mL, bottle 13750 12008011000036101 Panamax Elixir 120 mg/5 mL oral liquid solution, 100 mL 5264011000036102 Panamax Elixir 120 mg/5 mL oral liquid solution, 5 mL 54121000168102 Panamax Elixir 54121000168102 Panamax Elixir 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +995281000168105 Cepacol Cough Plus Lemon lozenge, 16, blister pack 10102 995271000168107 Cepacol Cough Plus Lemon lozenge, 16 995251000168103 Cepacol Cough Plus Lemon lozenge 30401000168109 Cepacol Cough Plus 30401000168109 Cepacol Cough Plus 995261000168101 benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge, 16 995241000168100 benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge 61714011000036103 benzocaine + cetylpyridinium + dextromethorphan + menthol +44673011000036101 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 91564 42122011000036101 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46884011000036106 follitropin alfa 150 units (10.92 microgram) injection [150 units vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44673011000036101 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 91564 42122011000036101 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46884011000036106 follitropin alfa 150 units (10.92 microgram) injection [150 units vial] (&) inert substance diluent [1 mL vial], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +733311000168109 Aquacel Foam (420633) 10 cm x 10 cm dressing, 10, carton 197067 733301000168106 Aquacel Foam (420633) 10 cm x 10 cm dressing, 10 733291000168105 Aquacel Foam (420633) 10 cm x 10 cm dressing 733281000168107 Aquacel Foam (420633) 733281000168107 Aquacel Foam (420633) 51338011000036104 dressing hydrofibre alternate to alginates 10 cm x 10 cm dressing, 10 50863011000036106 dressing hydrofibre alternate to alginates 10 cm x 10 cm dressing 50717011000036100 dressing hydrofibre alternate to alginates +933246701000036109 Lisinopril (PS) 10 mg uncoated tablet, 56, blister pack 152713 933243341000036104 Lisinopril (PS) 10 mg uncoated tablet, 56 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 86421011000036100 lisinopril 10 mg tablet, 56 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +652481000168105 Sildenafil PHT (Apo) 20 mg film-coated tablet, 90, bottle 164808 652471000168107 Sildenafil PHT (Apo) 20 mg film-coated tablet, 90 652461000168101 Sildenafil PHT (Apo) 20 mg film-coated tablet 652451000168103 Sildenafil PHT (Apo) 652451000168103 Sildenafil PHT (Apo) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +669751000168105 Roxithromycin (AN) 300 mg film-coated tablet, 5, blister pack 188355 669741000168108 Roxithromycin (AN) 300 mg film-coated tablet, 5 669731000168104 Roxithromycin (AN) 300 mg film-coated tablet 669691000168106 Roxithromycin (AN) 669691000168106 Roxithromycin (AN) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +685781000168102 Subutex 2 mg sublingual tablet, 28, blister pack 76662 685771000168100 Subutex 2 mg sublingual tablet, 28 685581000168108 Subutex 2 mg sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685761000168106 buprenorphine 2 mg sublingual tablet, 28 685571000168105 buprenorphine 2 mg sublingual tablet 21232011000036101 buprenorphine +754881000168107 Brevibloc 2.5 g/10 mL concentrated injection, 4 x 10 mL ampoules 43493 754871000168109 Brevibloc 2.5 g/10 mL concentrated injection, 4 x 10 mL ampoules 751701000168109 Brevibloc 2.5 g/10 mL concentrated injection, 10 mL ampoule 39685011000036107 Brevibloc 39685011000036107 Brevibloc 754861000168103 esmolol hydrochloride 2.5 g/10 mL injection, 4 x 10 mL ampoules 751691000168109 esmolol hydrochloride 2.5 g/10 mL injection, ampoule 44945011000036102 esmolol +928934011000036101 Ceftazidime (Aspen) 1 g powder for injection, 5 vials 154825 928296011000036100 Ceftazidime (Aspen) 1 g powder for injection, 5 vials 927925011000036107 Ceftazidime (Aspen) 1 g powder for injection, vial 924377011000036100 Ceftazidime (Aspen) 924377011000036100 Ceftazidime (Aspen) 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +59793011000036109 Dymadon capsule shaped 500 mg uncoated tablet, 50, blister pack 114080 55755011000036106 Dymadon capsule shaped 500 mg uncoated tablet, 50 53696011000036105 Dymadon capsule shaped 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +56051000036105 Fluconazole (Pharmacy Health) 150 mg hard capsule, 1, blister pack 152554 51541000036108 Fluconazole (Pharmacy Health) 150 mg hard capsule, 1 48821000036106 Fluconazole (Pharmacy Health) 150 mg hard capsule 48201000036102 Fluconazole (Pharmacy Health) 48201000036102 Fluconazole (Pharmacy Health) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +18166011000036100 Clarithromycin (GenRx) 250 mg film-coated tablet, 14, blister pack 134853 11185011000036103 Clarithromycin (GenRx) 250 mg film-coated tablet, 14 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +18166011000036100 Clarithromycin (GenRx) 250 mg film-coated tablet, 14, blister pack 101254 11185011000036103 Clarithromycin (GenRx) 250 mg film-coated tablet, 14 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1080441000168103 Fem V 6 Day (Amcal) 1% vaginal cream, 35 g, tube 224548 1080431000168107 Fem V 6 Day (Amcal) 1% vaginal cream, 35 g 1080421000168109 Fem V 6 Day (Amcal) 1% vaginal cream 1080411000168102 Fem V 6 Day (Amcal) 1080411000168102 Fem V 6 Day (Amcal) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +87730011000036102 Risperidone (DRLA) 1 mg film-coated tablet, 20, blister pack 165515 87496011000036102 Risperidone (DRLA) 1 mg film-coated tablet, 20 87341011000036109 Risperidone (DRLA) 1 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 81620011000036106 risperidone 1 mg tablet, 20 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +18081011000036100 Clonea 1% cream, 20 g, tube 17593 12126011000036100 Clonea 1% cream, 20 g 5503011000036107 Clonea 1% cream 3310011000036107 Clonea 3310011000036107 Clonea 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +61584011000036102 Zantac Relief Extra Strength 300 mg film-coated tablet, 14, blister pack 95076 57506011000036105 Zantac Relief Extra Strength 300 mg film-coated tablet, 14 54330011000036105 Zantac Relief Extra Strength 300 mg film-coated tablet 13051000168102 Zantac Relief Extra Strength 13051000168102 Zantac Relief Extra Strength 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +920673011000036102 Quinapril (GA) 10 mg film-coated tablet, 30, blister pack 133234 920388011000036107 Quinapril (GA) 10 mg film-coated tablet, 30 920151011000036100 Quinapril (GA) 10 mg film-coated tablet 920106011000036101 Quinapril (GA) 920106011000036101 Quinapril (GA) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +933214671000036108 Alendraccord 10 mg uncoated tablet, 30, blister pack 161444 933204031000036101 Alendraccord 10 mg uncoated tablet, 30 933196071000036108 Alendraccord 10 mg uncoated tablet 933193781000036102 Alendraccord 933193781000036102 Alendraccord 46700011000036104 alendronate 10 mg tablet, 30 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +20531011000036105 Medroxyhexal 10 mg uncoated tablet, 30, bottle 79258 13729011000036106 Medroxyhexal 10 mg uncoated tablet, 30 7012011000036104 Medroxyhexal 10 mg uncoated tablet 3584011000036102 Medroxyhexal 3584011000036102 Medroxyhexal 27904011000036101 medroxyprogesterone acetate 10 mg tablet, 30 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +18680011000036102 Mirtazon 45 mg film-coated tablet, 30, blister pack 121869 11702011000036101 Mirtazon 45 mg film-coated tablet, 30 4821011000036108 Mirtazon 45 mg film-coated tablet 4432011000036107 Mirtazon 4432011000036107 Mirtazon 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +18595011000036102 Neorecormon 2000 units/0.3 mL injection, 6 x 0.3 mL syringes 104262 11274011000036108 Neorecormon 2000 units/0.3 mL injection, 6 x 0.3 mL syringes 4890011000036107 Neorecormon 2000 units/0.3 mL injection, 0.3 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26585011000036108 epoetin beta 2000 units/0.3 mL injection, 6 x 0.3 mL syringes 21993011000036102 epoetin beta 2000 units/0.3 mL injection, syringe 21625011000036109 epoetin beta +43662011000036103 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 10 x 200 mL vials 116892 41184011000036104 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 10 x 200 mL vials 39820011000036102 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 200 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46148011000036102 ciprofloxacin 400 mg/200 mL injection, 10 x 200 mL vials 45009011000036109 ciprofloxacin 400 mg/200 mL injection, vial 21245011000036105 ciprofloxacin +81005011000036101 Frusemide (Claris) 20 mg/2 mL injection solution, 25 x 2 mL ampoules 148003 80553011000036101 Frusemide (Claris) 20 mg/2 mL injection solution, 25 x 2 mL ampoules 80188011000036106 Frusemide (Claris) 20 mg/2 mL injection solution, 2 mL ampoule 80114011000036101 Frusemide (Claris) 80114011000036101 Frusemide (Claris) 81632011000036108 furosemide (frusemide) 20 mg/2 mL injection, 25 x 2 mL ampoules 22149011000036106 furosemide (frusemide) 20 mg/2 mL injection, ampoule 21329011000036103 furosemide (frusemide) +1067851000168104 Ibuprofen plus Codeine (Trust) film-coated tablet, 20, blister pack 175264 1067841000168101 Ibuprofen plus Codeine (Trust) film-coated tablet, 20 1067741000168107 Ibuprofen plus Codeine (Trust) film-coated tablet 1067731000168103 Ibuprofen plus Codeine (Trust) 1067731000168103 Ibuprofen plus Codeine (Trust) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +742341000168103 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet, 3, blister pack 220027 742331000168107 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet, 3 742291000168101 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet 742251000168106 Rizatriptan ODT (GH) 742251000168106 Rizatriptan ODT (GH) 742321000168109 rizatriptan 10 mg orally disintegrating tablet, 3 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +677881000168108 Osteo Pain Relief Paracetamol (Blooms The Chemist) 665 mg modified release tablet, 96, blister pack 277119 677871000168105 Osteo Pain Relief Paracetamol (Blooms The Chemist) 665 mg modified release tablet, 96 677861000168104 Osteo Pain Relief Paracetamol (Blooms The Chemist) 665 mg modified release tablet 677851000168101 Osteo Pain Relief Paracetamol (Blooms The Chemist) 677851000168101 Osteo Pain Relief Paracetamol (Blooms The Chemist) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +1033371000168103 Aten 100 mg film-coated tablet, 250, bottle 197719 1033361000168109 Aten 100 mg film-coated tablet, 250 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1033351000168107 atenolol 100 mg tablet, 250 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +905181000168101 Amisulpride (AJS) 200 mg uncoated tablet, 60, blister pack 234693 905171000168104 Amisulpride (AJS) 200 mg uncoated tablet, 60 905141000168106 Amisulpride (AJS) 200 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +920799011000036101 Amoxycillin/Clavulanic Acid 500/125 (Generic Health) film-coated tablet, 10, strip pack 82833 920478011000036105 Amoxycillin/Clavulanic Acid 500/125 (Generic Health) film-coated tablet, 10 920210011000036104 Amoxycillin/Clavulanic Acid 500/125 (Generic Health) film-coated tablet 40721000168108 Amoxycillin/Clavulanic Acid 500/125 (Generic Health) 40721000168108 Amoxycillin/Clavulanic Acid 500/125 (Generic Health) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +17772011000036107 Tylenol PBS 500 mg uncoated tablet, 100, bottle 106589 11338011000036105 Tylenol PBS 500 mg uncoated tablet, 100 4799011000036104 Tylenol PBS 500 mg uncoated tablet 26271000168103 Tylenol PBS 26271000168103 Tylenol PBS 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +921981000168106 Dicarz 6.25 mg film-coated tablet, 60, bottle 124080 83965011000036102 Dicarz 6.25 mg film-coated tablet, 60 83601011000036101 Dicarz 6.25 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +853731000168104 Alphastat 10 mg film-coated tablet, 30, bottle 212160 853551000168102 Alphastat 10 mg film-coated tablet, 30 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +853731000168104 Alphastat 10 mg film-coated tablet, 30, bottle 187389 853551000168102 Alphastat 10 mg film-coated tablet, 30 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +652391000168104 Onglyza 2.5 mg film-coated tablet, 28, blister pack 211214 652381000168102 Onglyza 2.5 mg film-coated tablet, 28 652361000168106 Onglyza 2.5 mg film-coated tablet 929821011000036106 Onglyza 929821011000036106 Onglyza 652371000168100 saxagliptin 2.5 mg tablet, 28 652351000168109 saxagliptin 2.5 mg tablet 931810011000036104 saxagliptin +990781000168108 Lyrica 50 mg hard capsule, 14, bottle 99480 990531000168103 Lyrica 50 mg hard capsule, 14 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1106441000168109 Imrest 7.5 mg film-coated tablet, 10, blister pack 99794 1106431000168100 Imrest 7.5 mg film-coated tablet, 10 7626011000036102 Imrest 7.5 mg film-coated tablet 4237011000036108 Imrest 4237011000036108 Imrest 86456011000036109 zopiclone 7.5 mg tablet, 10 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +37519011000036108 Sandimmun 25 mg soft capsule, 50, blister pack 13342 36787011000036103 Sandimmun 25 mg soft capsule, 50 36134011000036109 Sandimmun 25 mg soft capsule 3779011000036106 Sandimmun 3779011000036106 Sandimmun 38684011000036105 ciclosporin 25 mg capsule, 50 23296011000036100 ciclosporin 25 mg capsule 21379011000036104 ciclosporin +1078351000168100 Atomoxetine (GPPL) 100 mg hard capsule, 7, blister pack 234836 1078341000168102 Atomoxetine (GPPL) 100 mg hard capsule, 7 1078331000168106 Atomoxetine (GPPL) 100 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +933229791000036106 PTU 50 mg uncoated tablet, 100, bottle 13319 933223661000036108 PTU 50 mg uncoated tablet, 100 933219731000036101 PTU 50 mg uncoated tablet 933218901000036103 PTU 933218901000036103 PTU 26821011000036101 propylthiouracil 50 mg tablet, 100 22203011000036100 propylthiouracil 50 mg tablet 21852011000036109 propylthiouracil +945811000168106 Glimepiride (Sanofi) 1 mg uncoated tablet, 100, blister pack 142390 945801000168108 Glimepiride (Sanofi) 1 mg uncoated tablet, 100 945711000168103 Glimepiride (Sanofi) 1 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 945791000168107 glimepiride 1 mg tablet, 100 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +69328011000036106 Benzac AC 2.5% modified gel, 50 g, tube 25270 67128011000036107 Benzac AC 2.5% modified gel, 50 g 65432011000036105 Benzac AC 2.5% modified gel 17681000168105 Benzac AC 17681000168105 Benzac AC 71693011000036107 benzoyl peroxide 2.5% modified gel, 50 g 70131011000036107 benzoyl peroxide 2.5% modified gel 61709011000036104 benzoyl peroxide +77227011000036105 Escitalopram (Apo) 10 mg film-coated tablet, 100, bottle 146012 76643011000036102 Escitalopram (Apo) 10 mg film-coated tablet, 100 76084011000036103 Escitalopram (Apo) 10 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +738041000168104 Candesartan HCT 32/25 (Auro) uncoated tablet, 30, blister pack 199098 738031000168108 Candesartan HCT 32/25 (Auro) uncoated tablet, 30 738021000168105 Candesartan HCT 32/25 (Auro) uncoated tablet 738001000168101 Candesartan HCT 32/25 (Auro) 738001000168101 Candesartan HCT 32/25 (Auro) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +18783011000036101 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack, dual chamber composite pack 12343 11743011000036103 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack 4623011000036104 Solu-Medrol Act-O-Vial (methylprednisolone 40 mg) powder for injection, 40 mg vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 26759011000036103 methylprednisolone 40 mg injection [5 vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 22146011000036102 methylprednisolone 40 mg injection, vial 21605011000036100 methylprednisolone +18783011000036101 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack, dual chamber composite pack 171991 11743011000036103 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack 4623011000036104 Solu-Medrol Act-O-Vial (methylprednisolone 40 mg) powder for injection, 40 mg vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 26759011000036103 methylprednisolone 40 mg injection [5 vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 22146011000036102 methylprednisolone 40 mg injection, vial 21605011000036100 methylprednisolone +18783011000036101 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack, dual chamber composite pack 12343 11743011000036103 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack 638751000168108 Solu-Medrol Act-O-Vial (inert substance) diluent, 1 mL vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 26759011000036103 methylprednisolone 40 mg injection [5 vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +18783011000036101 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack, dual chamber composite pack 171991 11743011000036103 Solu-Medrol Act-O-Vial (5 x 40 mg vials, 5 x 1 mL inert diluent vials), 1 pack 638751000168108 Solu-Medrol Act-O-Vial (inert substance) diluent, 1 mL vial 30911000168104 Solu-Medrol Act-O-Vial 30911000168104 Solu-Medrol Act-O-Vial 26759011000036103 methylprednisolone 40 mg injection [5 vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +1063601000168106 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 20, blister pack 155753 1063591000168104 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 20 1063471000168104 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +19640011000036107 Nuelin SR 200 mg modified release tablet, 100, bottle 59526 12909011000036104 Nuelin SR 200 mg modified release tablet, 100 6199011000036100 Nuelin SR 200 mg modified release tablet 31931000168103 Nuelin SR 31931000168103 Nuelin SR 27432011000036103 theophylline 200 mg modified release tablet, 100 22779011000036104 theophylline 200 mg modified release tablet 21367011000036100 theophylline +44758011000036104 Co-Diovan 160/25 film-coated tablet, 28, blister pack 96742 42203011000036103 Co-Diovan 160/25 film-coated tablet, 28 40387011000036108 Co-Diovan 160/25 film-coated tablet 52921000168106 Co-Diovan 160/25 52921000168106 Co-Diovan 160/25 46963011000036104 valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 45360011000036103 valsartan 160 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +73329011000036101 Sabril 500 mg uncoated tablet, 100, blister pack 150021 12586011000036101 Sabril 500 mg uncoated tablet, 100 4548011000036101 Sabril 500 mg uncoated tablet 3802011000036106 Sabril 3802011000036106 Sabril 27219011000036102 vigabatrin 500 mg tablet, 100 22580011000036103 vigabatrin 500 mg tablet 21376011000036108 vigabatrin +784931000168107 Ketamine (GenRx) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 219038 784911000168102 Ketamine (GenRx) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 784891000168104 Ketamine (GenRx) 200 mg/2 mL injection solution, 2 mL ampoule 784841000168107 Ketamine (GenRx) 784841000168107 Ketamine (GenRx) 720621000168100 ketamine 200 mg/2 mL injection, 5 x 2 mL ampoules 720601000168109 ketamine 200 mg/2 mL injection, ampoule 34843011000036109 ketamine +61669011000036107 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet, 50, bottle 97353 57591011000036102 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet, 50 54356011000036109 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +819091000168109 Atomoxetine (Amneal) 18 mg hard capsule, 28, blister pack 238336 819081000168106 Atomoxetine (Amneal) 18 mg hard capsule, 28 819041000168101 Atomoxetine (Amneal) 18 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +20394011000036100 Cefaclor CD (Terry White Chemists) 375 mg modified release tablet, 10, blister pack 77100 13602011000036100 Cefaclor CD (Terry White Chemists) 375 mg modified release tablet, 10 6885011000036109 Cefaclor CD (Terry White Chemists) 375 mg modified release tablet 57081000168108 Cefaclor CD (Terry White Chemists) 57081000168108 Cefaclor CD (Terry White Chemists) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +61507011000036107 Extra Strength Mini-Tab (Pharmacist) tablet, 12, blister pack 92776 57432011000036105 Extra Strength Mini-Tab (Pharmacist) tablet, 12 54301011000036105 Extra Strength Mini-Tab (Pharmacist) tablet 16431000168109 Extra Strength Mini-Tab (Pharmacist) 16431000168109 Extra Strength Mini-Tab (Pharmacist) 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +1116851000168107 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 7, blister pack 161825 1116841000168105 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 7 1116831000168101 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 925434011000036109 amlodipine 5 mg + valsartan 320 mg tablet, 7 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +19049011000036109 Megace 160 mg uncoated tablet, 30, blister pack 40698 12357011000036106 Megace 160 mg uncoated tablet, 30 4593011000036103 Megace 160 mg uncoated tablet 3258011000036107 Megace 3258011000036107 Megace 27075011000036100 megestrol acetate 160 mg tablet, 30 22444011000036106 megestrol acetate 160 mg tablet 21922011000036100 megestrol +1123341000168103 Quetiapine XR (ZP) 300 mg modified release tablet, 10, blister pack 226799 1123331000168107 Quetiapine XR (ZP) 300 mg modified release tablet, 10 1123321000168109 Quetiapine XR (ZP) 300 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51535011000036107 quetiapine 300 mg modified release tablet, 10 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +660661000168105 Amoxycillin (AN) 500 mg hard capsule, 20, blister pack 185798 660651000168108 Amoxycillin (AN) 500 mg hard capsule, 20 660641000168106 Amoxycillin (AN) 500 mg hard capsule 660631000168102 Amoxycillin (AN) 660631000168102 Amoxycillin (AN) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +19563011000036103 Apomine 10 mg/mL injection solution, 5 x 1 mL ampoules 57139 12834011000036101 Apomine 10 mg/mL injection solution, 5 x 1 mL ampoules 6125011000036109 Apomine 10 mg/mL injection solution, ampoule 30841000168109 Apomine 30841000168109 Apomine 27387011000036101 apomorphine hydrochloride hemihydrate 10 mg/mL injection, 5 x 1 mL ampoules 22736011000036105 apomorphine hydrochloride hemihydrate 10 mg/mL injection, ampoule 21732011000036105 apomorphine +1059251000168100 Atomoxetine (Medis) 60 mg hard capsule, 7, blister pack 238332 1059241000168102 Atomoxetine (Medis) 60 mg hard capsule, 7 1059231000168106 Atomoxetine (Medis) 60 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +742021000168106 Amitriptyline (Alphapharm) 10 mg film-coated tablet, 50, blister pack 232796 742011000168104 Amitriptyline (Alphapharm) 10 mg film-coated tablet, 50 742001000168102 Amitriptyline (Alphapharm) 10 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +933229751000036102 Aptamil Gold Pepti-Junior powder for oral liquid, 450 g, can 933223321000036105 Aptamil Gold Pepti-Junior powder for oral liquid, 450 g 933219471000036107 Aptamil Gold Pepti-Junior powder for oral liquid 63291000168104 Aptamil Gold Pepti-Junior 63291000168104 Aptamil Gold Pepti-Junior 51429011000036100 protein hydrolysate formula with medium chain triglycerides powder for oral liquid, 450 g 50945011000036106 protein hydrolysate formula with medium chain triglycerides powder for oral liquid 50746011000036108 protein hydrolysate formula with medium chain triglycerides +20719011000036101 Kineret 100 mg/0.67 mL injection solution, 28 x 0.67 mL syringes 82872 13889011000036101 Kineret 100 mg/0.67 mL injection solution, 28 x 0.67 mL syringes 7175011000036109 Kineret 100 mg/0.67 mL injection solution, 0.67 mL syringe 3381011000036103 Kineret 3381011000036103 Kineret 27992011000036107 anakinra 100 mg/0.67 mL injection, 28 x 0.67 mL syringes 23315011000036101 anakinra 100 mg/0.67 mL injection, syringe 21279011000036108 anakinra +52708011000036105 Simvastatin (Spirit) 80 mg film-coated tablet, 90, bottle 116715 52536011000036104 Simvastatin (Spirit) 80 mg film-coated tablet, 90 52402011000036102 Simvastatin (Spirit) 80 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 52873011000036108 simvastatin 80 mg tablet, 90 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +933247111000036108 Omeprazole (PS) 20 mg enteric tablet, 30, blister pack 159688 933244101000036102 Omeprazole (PS) 20 mg enteric tablet, 30 933241511000036105 Omeprazole (PS) 20 mg enteric tablet 933240931000036101 Omeprazole (PS) 933240931000036101 Omeprazole (PS) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +759291000168108 Flixceli 100 mg powder for injection, 1 vial 217063 759281000168105 Flixceli 100 mg powder for injection, 1 vial 759271000168107 Flixceli 100 mg powder for injection, 100 mg vial 759261000168101 Flixceli 759261000168101 Flixceli 27724011000036101 infliximab 100 mg injection, 1 vial 23059011000036109 infliximab 100 mg injection, vial 21926011000036101 infliximab +55961000036103 Multaq 400 mg film-coated tablet, 100, blister pack 156373 52751000036108 Multaq 400 mg film-coated tablet, 100 48961000036109 Multaq 400 mg film-coated tablet 48081000036100 Multaq 48081000036100 Multaq 52771000036103 dronedarone 400 mg tablet, 100 48971000036101 dronedarone 400 mg tablet 56861000036100 dronedarone +18021011000036109 Nifedipine (Terry White Chemists) 20 mg film-coated tablet, 60, blister pack 127282 11837011000036106 Nifedipine (Terry White Chemists) 20 mg film-coated tablet, 60 4903011000036107 Nifedipine (Terry White Chemists) 20 mg film-coated tablet 2916011000036107 Nifedipine (Terry White Chemists) 2916011000036107 Nifedipine (Terry White Chemists) 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +1123381000168108 Quetiapine XR (ZP) 300 mg modified release tablet, 60, blister pack 226799 1123371000168105 Quetiapine XR (ZP) 300 mg modified release tablet, 60 1123321000168109 Quetiapine XR (ZP) 300 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +716451000168104 Pemzo 20 mg enteric capsule, 28, blister pack 149517 716431000168105 Pemzo 20 mg enteric capsule, 28 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716411000168100 omeprazole 20 mg enteric capsule, 28 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +87713011000036104 Galantyl 16 mg modified release capsule, 30, blister pack 157932 87452011000036109 Galantyl 16 mg modified release capsule, 30 87316011000036109 Galantyl 16 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 46980011000036109 galantamine 16 mg modified release capsule, 30 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +69251011000036106 Potassium Chloride 0.224% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 19469 67051011000036109 Potassium Chloride 0.224% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 65404011000036109 Potassium Chloride 0.224% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 36971000168105 Potassium Chloride 0.224% and Glucose 5% (Baxter) 36971000168105 Potassium Chloride 0.224% and Glucose 5% (Baxter) 71621011000036103 potassium chloride 2.24 g (potassium 30 mmol)/L + glucose 5% (50 g/L) injection, 1 L bag 70096011000036103 potassium chloride 2.24 g (potassium 30 mmol)/L + glucose 5% (50 g/L) injection, bag 69832011000036108 potassium chloride + glucose +990461000168105 Lyrica 25 mg hard capsule, 14, bottle 99478 990451000168108 Lyrica 25 mg hard capsule, 14 83262011000036109 Lyrica 25 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +44210011000036103 Klacid 250 mg/5 mL powder for oral liquid, 70 mL, bottle 56729 41686011000036106 Klacid 250 mg/5 mL powder for oral liquid, 70 mL 40143011000036104 Klacid 250 mg/5 mL powder for oral liquid, 5 mL 3147011000036106 Klacid 3147011000036106 Klacid 46503011000036106 clarithromycin 250 mg/5 mL powder for oral liquid, 70 mL 45190011000036109 clarithromycin 250 mg/5 mL powder for oral liquid 21836011000036107 clarithromycin +737721000168106 Carvedilol (Auro) 25 mg film-coated tablet, 30, blister pack 174807 737711000168104 Carvedilol (Auro) 25 mg film-coated tablet, 30 737701000168102 Carvedilol (Auro) 25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 84613011000036100 carvedilol 25 mg tablet, 30 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +810821000168105 Sildenafil (DRx) 20 mg film-coated tablet, 90, bottle 232109 682101000168103 Sildenafil (DRx) 20 mg film-coated tablet, 90 682091000168108 Sildenafil (DRx) 20 mg film-coated tablet 682081000168105 Sildenafil (DRx) 682081000168105 Sildenafil (DRx) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +986191000168107 Advil Double Strength Caplets 400 mg film-coated tablet, 50, blister pack 207376 986181000168109 Advil Double Strength Caplets 400 mg film-coated tablet, 50 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 986171000168106 ibuprofen 400 mg tablet, 50 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +716471000168108 Omepro 20 mg enteric capsule, 15, blister pack 149516 716461000168102 Omepro 20 mg enteric capsule, 15 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716341000168108 omeprazole 20 mg enteric capsule, 15 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +37596011000036100 Diprosone OV 0.05% modified ointment, 5 g, tube 18823 36863011000036107 Diprosone OV 0.05% modified ointment, 5 g 36199011000036102 Diprosone OV 0.05% modified ointment 8541000168102 Diprosone OV 8541000168102 Diprosone OV 38750011000036103 betamethasone (as dipropionate) 0.05% modified ointment, 5 g 125571000036107 betamethasone (as dipropionate) 0.05% modified ointment 21372011000036109 betamethasone dipropionate +61095011000036101 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 50 mL, bottle 71041 57038011000036100 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 50 mL 54168011000036109 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 5 mL 55471000168107 Cold and Allergy Children's Mixture (Chemists' Own) 55471000168107 Cold and Allergy Children's Mixture (Chemists' Own) 63710011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 50 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +926929011000036108 Anti-Inflammatory Pain Relief (Chemmart) 1% gel, 50 g, tube 91595 926323011000036104 Anti-Inflammatory Pain Relief (Chemmart) 1% gel, 50 g 925761011000036107 Anti-Inflammatory Pain Relief (Chemmart) 1% gel 28361000168104 Anti-Inflammatory Pain Relief (Chemmart) 28361000168104 Anti-Inflammatory Pain Relief (Chemmart) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +823381000168103 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 15 x 0.4 mL syringes 221718 823371000168101 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 15 x 0.4 mL syringes 823301000168106 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 0.4 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823361000168107 enoxaparin sodium 40 mg/0.4 mL injection, 15 x 0.4 mL syringes 33671011000036100 enoxaparin sodium 40 mg/0.4 mL injection, syringe 21553011000036103 enoxaparin sodium +669431000168109 Duloxetine (AN) 30 mg enteric capsule, 100, bottle 199009 669421000168106 Duloxetine (AN) 30 mg enteric capsule, 100 655091000168109 Duloxetine (AN) 30 mg enteric capsule 655081000168106 Duloxetine (AN) 655081000168106 Duloxetine (AN) 669411000168104 duloxetine 30 mg enteric capsule, 100 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +905021000168101 Candesartan (CH) 4 mg uncoated tablet, 30, blister pack 195377 905011000168108 Candesartan (CH) 4 mg uncoated tablet, 30 904971000168100 Candesartan (CH) 4 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +973501000168106 Pregabalin (Teva) 75 mg hard capsule, 14, blister pack 229587 973491000168104 Pregabalin (Teva) 75 mg hard capsule, 14 973481000168102 Pregabalin (Teva) 75 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +933215311000036109 Orfadin 5 mg hard capsule, 60, bottle 164173 933204751000036106 Orfadin 5 mg hard capsule, 60 933195711000036106 Orfadin 5 mg hard capsule 933193831000036108 Orfadin 933193831000036108 Orfadin 933204761000036109 nitisinone 5 mg capsule, 60 933195721000036104 nitisinone 5 mg capsule 933216371000036107 nitisinone +686511000168106 Laxative with Senna (Pharmacy Action) film-coated tablet, 90, bottle 200805 686501000168108 Laxative with Senna (Pharmacy Action) film-coated tablet, 90 686491000168101 Laxative with Senna (Pharmacy Action) film-coated tablet 686481000168104 Laxative with Senna (Pharmacy Action) 686481000168104 Laxative with Senna (Pharmacy Action) 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +712201000168103 Perindopril (Sandoz) 8 mg tablet, 30, blister pack 147567 712191000168101 Perindopril (Sandoz) 8 mg tablet, 30 712181000168104 Perindopril (Sandoz) 8 mg tablet 712111000168105 Perindopril (Sandoz) 712111000168105 Perindopril (Sandoz) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +933212621000036101 Ciprofloxacin (GN) 250 mg film-coated tablet, 20, blister pack 148849 933202361000036101 Ciprofloxacin (GN) 250 mg film-coated tablet, 20 933195361000036109 Ciprofloxacin (GN) 250 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 932363011000036105 ciprofloxacin 250 mg tablet, 20 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +1020671000168101 Asacol 400 mg enteric tablet, 90, blister pack 261419 1020661000168107 Asacol 400 mg enteric tablet, 90 1020581000168102 Asacol 400 mg enteric tablet 844981000168102 Asacol 844981000168102 Asacol 1020651000168105 mesalazine 400 mg enteric tablet, 90 1020571000168100 mesalazine 400 mg enteric tablet 21351011000036101 mesalazine +20240011000036107 Ranitidine (GenRx) 150 mg film-coated tablet, 60, blister pack 74413 13451011000036103 Ranitidine (GenRx) 150 mg film-coated tablet, 60 6733011000036102 Ranitidine (GenRx) 150 mg film-coated tablet 3049011000036108 Ranitidine (GenRx) 3049011000036108 Ranitidine (GenRx) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +20240011000036107 Ranitidine (GenRx) 150 mg film-coated tablet, 60, blister pack 121977 13451011000036103 Ranitidine (GenRx) 150 mg film-coated tablet, 60 6733011000036102 Ranitidine (GenRx) 150 mg film-coated tablet 3049011000036108 Ranitidine (GenRx) 3049011000036108 Ranitidine (GenRx) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +917871000168104 Zinnat 125 mg film-coated tablet, 10, blister pack 47620 917861000168105 Zinnat 125 mg film-coated tablet, 10 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917851000168108 cefuroxime 125 mg tablet, 10 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +825711000168109 H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial 90623 825701000168106 H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial 825681000168108 H-B-Vax II preservative free 40 microgram/mL injection suspension, vial 27541000168105 H-B-Vax II 27541000168105 H-B-Vax II 825691000168106 hepatitis B dialysis vaccine injection, 1 mL vial 825671000168105 hepatitis B dialysis vaccine injection, 1 mL vial 825191000168101 hepatitis B vaccine +17849011000036101 Meloxicam (GenRx) 7.5 mg uncoated tablet, 30, blister pack 127500 11841011000036102 Meloxicam (GenRx) 7.5 mg uncoated tablet, 30 4816011000036106 Meloxicam (GenRx) 7.5 mg uncoated tablet 4356011000036101 Meloxicam (GenRx) 4356011000036101 Meloxicam (GenRx) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +652311000168108 Capecitabine (Alphapharm) 500 mg film-coated tablet, 120, blister pack 200932 652301000168105 Capecitabine (Alphapharm) 500 mg film-coated tablet, 120 652291000168109 Capecitabine (Alphapharm) 500 mg film-coated tablet 652091000168102 Capecitabine (Alphapharm) 652091000168102 Capecitabine (Alphapharm) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +842891000168103 Aspecillin VK 250 mg hard capsule, 500, bottle 29546 842881000168101 Aspecillin VK 250 mg hard capsule, 500 842831000168102 Aspecillin VK 250 mg hard capsule 842161000168100 Aspecillin VK 842161000168100 Aspecillin VK 842871000168104 phenoxymethylpenicillin 250 mg capsule, 500 22958011000036104 phenoxymethylpenicillin 250 mg capsule 21370011000036105 phenoxymethylpenicillin +923916011000036104 Salpraz Heartburn Relief 20 mg enteric tablet, 14, blister pack 235309 923460011000036103 Salpraz Heartburn Relief 20 mg enteric tablet, 14 923094011000036104 Salpraz Heartburn Relief 20 mg enteric tablet 6111000168107 Salpraz Heartburn Relief 6111000168107 Salpraz Heartburn Relief 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +923916011000036104 Salpraz Heartburn Relief 20 mg enteric tablet, 14, blister pack 169504 923460011000036103 Salpraz Heartburn Relief 20 mg enteric tablet, 14 923094011000036104 Salpraz Heartburn Relief 20 mg enteric tablet 6111000168107 Salpraz Heartburn Relief 6111000168107 Salpraz Heartburn Relief 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +926401000168101 Zithromax 250 mg film-coated tablet, 2, blister pack 58795 926391000168103 Zithromax 250 mg film-coated tablet, 2 926371000168104 Zithromax 250 mg film-coated tablet 3528011000036100 Zithromax 3528011000036100 Zithromax 926381000168101 azithromycin 250 mg tablet, 2 926361000168105 azithromycin 250 mg tablet 21518011000036103 azithromycin +80037011000036107 Oxaliplatin (Alphapharm) 100 mg powder for injection, 5 vials 130854 79966011000036106 Oxaliplatin (Alphapharm) 100 mg powder for injection, 5 vials 79919011000036101 Oxaliplatin (Alphapharm) 100 mg powder for injection, 100 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80062011000036101 oxaliplatin 100 mg injection, 5 vials 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +19751011000036105 Navelbine 10 mg/mL concentrated injection, 1 mL vial 62246 13012011000036109 Navelbine 10 mg/mL concentrated injection, 1 mL vial 6301011000036106 Navelbine 10 mg/mL concentrated injection, vial 4394011000036104 Navelbine 4394011000036104 Navelbine 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +750791000168108 Sorbisol 70% non-crystallising oral liquid solution, 500 mL, bottle 152366 750781000168105 Sorbisol 70% non-crystallising oral liquid solution, 500 mL 750771000168107 Sorbisol 70% non-crystallising oral liquid solution 750761000168101 Sorbisol 750761000168101 Sorbisol 690621000168103 sorbitol solution 70% non-crystallising oral liquid, 500 mL 690601000168107 sorbitol solution 70% non-crystallising oral liquid 922041011000036102 sorbitol +60573011000036101 Panadol Children's 120 mg chewable tablet, 24, blister pack 15510 56531011000036108 Panadol Children's 120 mg chewable tablet, 24 53956011000036103 Panadol Children's 120 mg chewable tablet 49251000168100 Panadol Children's 49251000168100 Panadol Children's 63398011000036103 paracetamol 120 mg chewable tablet, 24 61940011000036107 paracetamol 120 mg chewable tablet 21433011000036107 paracetamol +952121000168102 Diclofenac (Amneal) 25 mg enteric tablet, 50, blister pack 272878 952111000168109 Diclofenac (Amneal) 25 mg enteric tablet, 50 952081000168104 Diclofenac (Amneal) 25 mg enteric tablet 952071000168102 Diclofenac (Amneal) 952071000168102 Diclofenac (Amneal) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +1089181000168108 Lorstat 10 mg film-coated tablet, 500, bottle 181403 1089171000168105 Lorstat 10 mg film-coated tablet, 500 20801000036102 Lorstat 10 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1089161000168104 atorvastatin 10 mg tablet, 500 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +44004011000036102 Clopixol Acuphase 100 mg/2 mL injection solution, 5 x 2 mL ampoules 46061 41495011000036102 Clopixol Acuphase 100 mg/2 mL injection solution, 5 x 2 mL ampoules 40015011000036104 Clopixol Acuphase 100 mg/2 mL injection solution, 2 mL ampoule 971000168105 Clopixol Acuphase 971000168105 Clopixol Acuphase 46341011000036104 zuclopenthixol acetate 100 mg/2 mL injection, 5 x 2 mL ampoules 45091011000036108 zuclopenthixol acetate 100 mg/2 mL injection, ampoule 44905011000036109 zuclopenthixol acetate +933247021000036100 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 14, blister pack 158413 933243851000036106 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 14 933241491000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet 933241021000036106 Prochlorperazine Maleate (PS) 933241021000036106 Prochlorperazine Maleate (PS) 924171011000036104 prochlorperazine maleate 5 mg tablet, 14 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +39387011000036105 Tryzan 2.5 mg uncoated tablet, 21, blister pack 129916 39271011000036104 Tryzan 2.5 mg uncoated tablet, 21 39210011000036103 Tryzan 2.5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39471011000036100 ramipril 2.5 mg tablet, 21 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +860011000168107 Citracal Plus D film-coated tablet, 100, bottle 129696 860001000168109 Citracal Plus D film-coated tablet, 100 859871000168106 Citracal Plus D film-coated tablet 920934011000036103 Citracal Plus D 920934011000036103 Citracal Plus D 859991000168100 calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100 859861000168100 calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +1076341000168103 Fexo (Chemists' Own) 180 mg film-coated tablet, 70, blister pack 134655 1076331000168107 Fexo (Chemists' Own) 180 mg film-coated tablet, 70 53840011000036109 Fexo (Chemists' Own) 180 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 1076321000168109 fexofenadine hydrochloride 180 mg tablet, 70 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1007781000168101 Novacodone 80 mg modified release tablet, 28, blister pack 227946 1007771000168104 Novacodone 80 mg modified release tablet, 28 1007711000168107 Novacodone 80 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +926878011000036107 Ralozam 2 mg uncoated tablet, 50, bottle 56977 926274011000036105 Ralozam 2 mg uncoated tablet, 50 925719011000036107 Ralozam 2 mg uncoated tablet 925521011000036100 Ralozam 925521011000036100 Ralozam 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +960661000168109 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet, 10, blister pack 255073 960651000168107 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet, 10 960621000168104 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet 960611000168106 Amoxicillin Clavulanic Acid 875/125 (Mylan) 960611000168106 Amoxicillin Clavulanic Acid 875/125 (Mylan) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1061351000168101 Mirtazapine (Auro) 15 mg film-coated tablet, 60, blister pack 183376 1061341000168103 Mirtazapine (Auro) 15 mg film-coated tablet, 60 1061311000168102 Mirtazapine (Auro) 15 mg film-coated tablet 714231000168102 Mirtazapine (Auro) 714231000168102 Mirtazapine (Auro) 46481011000036100 mirtazapine 15 mg tablet, 60 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +1009951000168100 Sildenafil PHT (Apotex) 20 mg film-coated tablet, 90, bottle 164803 1009941000168102 Sildenafil PHT (Apotex) 20 mg film-coated tablet, 90 1009931000168106 Sildenafil PHT (Apotex) 20 mg film-coated tablet 1009921000168108 Sildenafil PHT (Apotex) 1009921000168108 Sildenafil PHT (Apotex) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +44261011000036109 Serc 16 mg uncoated tablet, 10, blister pack 61687 41732011000036108 Serc 16 mg uncoated tablet, 10 40172011000036105 Serc 16 mg uncoated tablet 39692011000036103 Serc 39692011000036103 Serc 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +883551000168108 Betahistine (AS) 8 mg tablet, 10, blister pack 231714 883541000168106 Betahistine (AS) 8 mg tablet, 10 883531000168102 Betahistine (AS) 8 mg tablet 883521000168100 Betahistine (AS) 883521000168100 Betahistine (AS) 883091000168108 betahistine dihydrochloride 8 mg tablet, 10 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +919971000168102 Cilopam 40 mg film-coated tablet, 28, bottle 158867 919961000168108 Cilopam 40 mg film-coated tablet, 28 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +973541000168108 Lantim 50/5 eye drops solution, 3 x 2.5 mL, bottles 263083 973531000168104 Lantim 50/5 eye drops solution, 3 x 2.5 mL 973281000168101 Lantim 50/5 eye drops solution 973261000168105 Lantim 50/5 973261000168105 Lantim 50/5 778801000168108 latanoprost 0.005% + timolol 0.5% eye drops, 3 x 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +1046321000168105 Buprenorphine (SDZ) 15 microgram/hour patch, 1, sachet 269668 1046311000168103 Buprenorphine (SDZ) 15 microgram/hour patch, 1 1046291000168102 Buprenorphine (SDZ) 15 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046301000168101 buprenorphine 15 microgram/hour patch, 1 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +68746011000036106 Rikoderm lotion, 10 mL sachet 10931 66576011000036101 Rikoderm lotion, 10 mL sachet 65320011000036101 Rikoderm lotion, 10 mL sachet 65134011000036102 Rikoderm 65134011000036102 Rikoderm 71299011000036107 light liquid paraffin 15.9% + wool fat 0.6% lotion, 10 mL sachet 69937011000036100 light liquid paraffin 15.9% + wool fat 0.6% lotion, sachet 69787011000036102 light liquid paraffin + wool fat +82881011000036102 Simvastatin (Chemmart) 10 mg film-coated tablet, 30, bottle 157735 11305011000036105 Simvastatin (Chemmart) 10 mg film-coated tablet, 30 5644011000036109 Simvastatin (Chemmart) 10 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +933246951000036107 Pantoprazole (PS) 40 mg enteric tablet, 28, blister pack 158197 933243781000036109 Pantoprazole (PS) 40 mg enteric tablet, 28 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46657011000036100 pantoprazole 40 mg enteric tablet, 28 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +791451000168107 Trexject 10 mg/0.2 mL injection solution, 24 x 0.2 mL syringes 233715 791441000168105 Trexject 10 mg/0.2 mL injection solution, 24 x 0.2 mL syringes 791301000168100 Trexject 10 mg/0.2 mL injection solution, 0.2 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791431000168101 methotrexate 10 mg/0.2 mL injection, 24 x 0.2 mL syringes 791291000168101 methotrexate 10 mg/0.2 mL injection, syringe 21342011000036105 methotrexate +700029851000036103 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 87134011000036100 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 87079011000036108 Yasmin (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 87053011000036107 Yasmin 87053011000036107 Yasmin 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +700029851000036103 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 87134011000036100 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 87080011000036108 Yasmin (inert substance) film-coated tablet 87053011000036107 Yasmin 87053011000036107 Yasmin 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +20222011000036109 Oxynorm 10 mg hard capsule, 20, bottle 74144 13438011000036106 Oxynorm 10 mg hard capsule, 20 6720011000036107 Oxynorm 10 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +77210011000036102 Aquae Dry Mouth 10 mg/mL oral spray, 25 mL, bottle 135700 76626011000036106 Aquae Dry Mouth 10 mg/mL oral spray, 25 mL 76071011000036109 Aquae Dry Mouth 10 mg/mL oral spray 11651000168107 Aquae Dry Mouth 11651000168107 Aquae Dry Mouth 78179011000036105 carmellose sodium 10 mg/mL oral spray, 25 mL 77530011000036102 carmellose sodium 10 mg/mL oral spray 35688011000036105 carmellose sodium +87696011000036104 Famciclovir (Apo) 125 mg film-coated tablet, 28, blister pack 160559 87478011000036109 Famciclovir (Apo) 125 mg film-coated tablet, 28 87335011000036105 Famciclovir (Apo) 125 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87822011000036103 famciclovir 125 mg tablet, 28 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +61275011000036103 Dimetapp Headcold and Flu sugar coated tablet, 10, blister pack 77894 57211011000036107 Dimetapp Headcold and Flu sugar coated tablet, 10 54239011000036109 Dimetapp Headcold and Flu sugar coated tablet 53561011000036107 Dimetapp Headcold and Flu 53561011000036107 Dimetapp Headcold and Flu 63765011000036106 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 10 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +81082011000036105 Paracetamol (Apo) 500 mg uncoated tablet, 500, bottle 156815 80590011000036104 Paracetamol (Apo) 500 mg uncoated tablet, 500 78674011000036108 Paracetamol (Apo) 500 mg uncoated tablet 25791000168101 Paracetamol (Apo) 25791000168101 Paracetamol (Apo) 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +43816011000036109 Oxytrol 3.9 mg/24 hours patch, 8, sachet 125489 41321011000036100 Oxytrol 3.9 mg/24 hours patch, 8 39893011000036100 Oxytrol 3.9 mg/24 hours patch 39669011000036106 Oxytrol 39669011000036106 Oxytrol 46243011000036109 oxybutynin 3.9 mg/24 hours patch, 8 45044011000036104 oxybutynin 3.9 mg/24 hours patch 21620011000036100 oxybutynin +50412011000036108 Comfeel Plus Transparent (3533) 10 cm x 10 cm dressing, 10, carton 49359011000036105 Comfeel Plus Transparent (3533) 10 cm x 10 cm dressing, 10 48576011000036103 Comfeel Plus Transparent (3533) 10 cm x 10 cm dressing 56131000168105 Comfeel Plus Transparent (3533) 56131000168105 Comfeel Plus Transparent (3533) 51336011000036103 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing, 10 50870011000036107 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing 50714011000036106 dressing hydrocolloid superficial wound light exudate +1114801000168100 Rosuvastatin (Sandoz) 10 mg film-coated tablet, 30, bottle 183596 114861000036106 Rosuvastatin (Sandoz) 10 mg film-coated tablet, 30 112901000036106 Rosuvastatin (Sandoz) 10 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +945731000168108 Glimepiride (Sanofi) 1 mg uncoated tablet, 10, blister pack 142390 945721000168105 Glimepiride (Sanofi) 1 mg uncoated tablet, 10 945711000168103 Glimepiride (Sanofi) 1 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 925413011000036101 glimepiride 1 mg tablet, 10 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +79009011000036108 Momex SR 30 mg modified release tablet, 20, blister pack 132255 78806011000036103 Momex SR 30 mg modified release tablet, 20 78629011000036105 Momex SR 30 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 27107011000036109 morphine sulfate pentahydrate 30 mg modified release tablet, 20 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +37485011000036100 Metronidazole (Pfizer (Perth)) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 12728 36753011000036100 Metronidazole (Pfizer (Perth)) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 36112011000036108 Metronidazole (Pfizer (Perth)) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 35937011000036103 Metronidazole (Pfizer (Perth)) 35937011000036103 Metronidazole (Pfizer (Perth)) 35102011000036107 metronidazole 500 mg/100 mL (0.5%) injection, 100 mL vial 34850011000036104 metronidazole 500 mg/100 mL (0.5%) injection, vial 21482011000036106 metronidazole +55891000036103 Head Cold Relief (Blooms The Chemist) hard capsule, 24, blister pack 151168 51371000036109 Head Cold Relief (Blooms The Chemist) hard capsule, 24 49131000036108 Head Cold Relief (Blooms The Chemist) hard capsule 48471000036107 Head Cold Relief (Blooms The Chemist) 48471000036107 Head Cold Relief (Blooms The Chemist) 51381000036106 phenylephrine hydrochloride 6.1 mg + paracetamol 500 mg capsule, 24 931825011000036102 phenylephrine hydrochloride 6.1 mg + paracetamol 500 mg capsule 61800011000036107 phenylephrine + paracetamol +21182011000036105 Tramahexal SR 150 mg modified release tablet, 20, bottle 99257 14321011000036109 Tramahexal SR 150 mg modified release tablet, 20 7607011000036105 Tramahexal SR 150 mg modified release tablet 10981000168104 Tramahexal SR 10981000168104 Tramahexal SR 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +69457011000036102 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) intravenous infusion injection, 18 x 500 mL bags 48567 67257011000036108 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) intravenous infusion injection, 18 x 500 mL bags 65578011000036100 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) intravenous infusion injection, 500 mL bag 38121000168105 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 38121000168105 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 71807011000036109 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, 18 x 500 mL bags 70194011000036104 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +1029281000168108 Aten 25 mg film-coated tablet, 500, bottle 197715 1029271000168105 Aten 25 mg film-coated tablet, 500 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029261000168104 atenolol 25 mg tablet, 500 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +686471000168102 Xalaprost 0.005% eye drops solution, 2.5 mL, bottle 217151 686461000168108 Xalaprost 0.005% eye drops solution, 2.5 mL 686451000168106 Xalaprost 0.005% eye drops solution 686441000168109 Xalaprost 686441000168109 Xalaprost 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +883641000168107 Betahistine (AS) 16 mg tablet, 25, blister pack 231718 883631000168103 Betahistine (AS) 16 mg tablet, 25 883601000168105 Betahistine (AS) 16 mg tablet 883521000168100 Betahistine (AS) 883521000168100 Betahistine (AS) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +60127011000036101 Loratadine (Guardian) 10 mg tablet, 50, blister pack 127577 56086011000036109 Loratadine (Guardian) 10 mg tablet, 50 53783011000036107 Loratadine (Guardian) 10 mg tablet 53375011000036102 Loratadine (Guardian) 53375011000036102 Loratadine (Guardian) 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +68883011000036107 Minirin Melt 120 microgram sublingual wafer, 10, blister pack 121721 66661011000036106 Minirin Melt 120 microgram sublingual wafer, 10 65342011000036100 Minirin Melt 120 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 71370011000036100 desmopressin 120 microgram sublingual wafer, 10 69977011000036102 desmopressin 120 microgram sublingual wafer 21750011000036107 desmopressin +695141000168109 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 47382 695131000168100 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 695111000168105 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 20 mL vial 5191000168106 Ultravist-300 5191000168106 Ultravist-300 695121000168103 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 20 mL vials 695101000168107 iopromide 623 mg (iodine 300 mg)/mL injection, 20 mL vial 77425011000036101 iopromide +720881000168102 Botox 100 units powder for injection, 1 vial 67311 720871000168100 Botox 100 units powder for injection, 1 vial 720851000168109 Botox 100 units powder for injection, 100 units vial 3742011000036100 Botox 3742011000036100 Botox 720861000168106 botulinum toxin type A 100 units injection, 1 vial 720841000168107 botulinum toxin type A 100 units injection, vial 21857011000036106 botulinum toxin type A +823521000168106 Gastro-Stop 2 mg hard capsule, 8, blister pack 48935 823511000168104 Gastro-Stop 2 mg hard capsule, 8 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 933206161000036104 loperamide hydrochloride 2 mg capsule, 8 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +823521000168106 Gastro-Stop 2 mg hard capsule, 8, blister pack 264972 823511000168104 Gastro-Stop 2 mg hard capsule, 8 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 933206161000036104 loperamide hydrochloride 2 mg capsule, 8 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +1089261000168105 Lorstat 80 mg film-coated tablet, 500, bottle 181408 1089251000168108 Lorstat 80 mg film-coated tablet, 500 20761000036108 Lorstat 80 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1089241000168106 atorvastatin 80 mg tablet, 500 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +87687011000036102 Famciclovir (Apo) 250 mg film-coated tablet, 56, bottle 160560 87486011000036103 Famciclovir (Apo) 250 mg film-coated tablet, 56 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +60590011000036102 Zadine 100 microgram/mL oral liquid solution, 15 mL, bottle 18226 56548011000036100 Zadine 100 microgram/mL oral liquid solution, 15 mL 53967011000036109 Zadine 100 microgram/mL oral liquid solution 53132011000036100 Zadine 53132011000036100 Zadine 63414011000036101 azatadine maleate 100 microgram/mL oral liquid, 15 mL 61950011000036109 azatadine maleate 100 microgram/mL oral liquid 61785011000036102 azatadine +55801000036106 Anastrozole (Synthon) 1 mg film-coated tablet, 60, blister pack 155176 52591000036106 Anastrozole (Synthon) 1 mg film-coated tablet, 60 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52201000036101 anastrozole 1 mg tablet, 60 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +894191000168105 Olmesartan HCT 40/12.5 (AN) film-coated tablet, 30, blister pack 221120 894181000168107 Olmesartan HCT 40/12.5 (AN) film-coated tablet, 30 894171000168109 Olmesartan HCT 40/12.5 (AN) film-coated tablet 894161000168103 Olmesartan HCT 40/12.5 (AN) 894161000168103 Olmesartan HCT 40/12.5 (AN) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +1026631000168102 Esomeprazole (Pharmacor) 40 mg enteric tablet, 30, blister pack 210850 1026621000168100 Esomeprazole (Pharmacor) 40 mg enteric tablet, 30 1026571000168103 Esomeprazole (Pharmacor) 40 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +933247271000036105 Saizen 12 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 166478 933243971000036105 Saizen 12 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 933241591000036100 Saizen 12 mg/1.5 mL injection solution, 1.5 mL cartridge 35491000168107 Saizen 35491000168107 Saizen 933243981000036107 somatropin 12 mg/1.5 mL injection, 5 x 1.5 mL cartridges 933241601000036107 somatropin 12 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +86154011000036102 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 18, bottle 163795 85762011000036106 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 18 85379011000036108 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 86452011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 18 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +986281000168102 Advil Double Strength Liquid Capsules 400 mg soft capsule, 6, blister pack 207293 986271000168100 Advil Double Strength Liquid Capsules 400 mg soft capsule, 6 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986261000168106 ibuprofen 400 mg capsule, 6 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +925293011000036101 Gemcitabine (Sun) 1 g powder for injection, 1 vial 161807 924830011000036102 Gemcitabine (Sun) 1 g powder for injection, 1 vial 924521011000036106 Gemcitabine (Sun) 1 g powder for injection, vial 924410011000036102 Gemcitabine (Sun) 924410011000036102 Gemcitabine (Sun) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +18372011000036103 Sertraline (Terry White Chemists) 100 mg film-coated tablet, 30, blister pack 101488 11208011000036105 Sertraline (Terry White Chemists) 100 mg film-coated tablet, 30 4481011000036107 Sertraline (Terry White Chemists) 100 mg film-coated tablet 3824011000036108 Sertraline (Terry White Chemists) 3824011000036108 Sertraline (Terry White Chemists) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +18372011000036103 Sertraline (Terry White Chemists) 100 mg film-coated tablet, 30, blister pack 213182 11208011000036105 Sertraline (Terry White Chemists) 100 mg film-coated tablet, 30 4481011000036107 Sertraline (Terry White Chemists) 100 mg film-coated tablet 3824011000036108 Sertraline (Terry White Chemists) 3824011000036108 Sertraline (Terry White Chemists) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +917961000168103 Lovir 400 mg uncoated tablet, 56, blister pack 62380 917951000168100 Lovir 400 mg uncoated tablet, 56 917941000168102 Lovir 400 mg uncoated tablet 4208011000036103 Lovir 4208011000036103 Lovir 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +943081000168106 Fluvoxamine (Terry White Chemists) 50 mg film-coated tablet, 30, blister pack 147392 943071000168108 Fluvoxamine (Terry White Chemists) 50 mg film-coated tablet, 30 943061000168102 Fluvoxamine (Terry White Chemists) 50 mg film-coated tablet 943021000168107 Fluvoxamine (Terry White Chemists) 943021000168107 Fluvoxamine (Terry White Chemists) 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +1044631000168107 Amoxiclav 875/125 (Amneal) film-coated tablet, 10, blister pack 255081 1044621000168109 Amoxiclav 875/125 (Amneal) film-coated tablet, 10 1044591000168107 Amoxiclav 875/125 (Amneal) film-coated tablet 1044581000168109 Amoxiclav 875/125 (Amneal) 1044581000168109 Amoxiclav 875/125 (Amneal) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +21199011000036101 Estraderm 25 microgram/24 hours patch, 8, sachet 9972 14337011000036103 Estraderm 25 microgram/24 hours patch, 8 7621011000036107 Estraderm 25 microgram/24 hours patch 4174011000036102 Estraderm 4174011000036102 Estraderm 28328011000036100 estradiol 25 microgram/24 hours patch, 8 23640011000036109 estradiol 25 microgram/24 hours patch 21238011000036103 estradiol +32576011000036106 Alepam 15 mg uncoated tablet, 90, blister pack 17598 32371011000036103 Alepam 15 mg uncoated tablet, 90 32245011000036105 Alepam 15 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 32771011000036102 oxazepam 15 mg tablet, 90 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +18646011000036107 Durogesic 12 microgram/hour patch, 5, sachet 116828 11547011000036106 Durogesic 12 microgram/hour patch, 5 5540011000036105 Durogesic 12 microgram/hour patch 3568011000036107 Durogesic 3568011000036107 Durogesic 26685011000036103 fentanyl 12 microgram/hour patch, 5 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +52177011000036108 Benzoin and Menthol APF (extemporaneous) inhalation solution, 50 mL, poison bottle 52064011000036100 Benzoin and Menthol APF (extemporaneous) inhalation solution, 50 mL 51965011000036105 Benzoin and Menthol APF (extemporaneous) inhalation solution 51932011000036106 Benzoin and Menthol APF (extemporaneous) 51932011000036106 Benzoin and Menthol APF (extemporaneous) 52312011000036109 compound benzoin tincture + menthol 2% inhalation solution, 50 mL 52244011000036101 compound benzoin tincture + menthol 2% inhalation solution 52236011000036105 compound benzoin tincture + menthol +1027431000168103 Neuroccord 25 mg hard capsule, 14, bottle 235872 1027421000168101 Neuroccord 25 mg hard capsule, 14 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +19160011000036101 Sorbidin 10 mg tablet, 100, bottle 46043 12459011000036106 Sorbidin 10 mg tablet, 100 5014011000036109 Sorbidin 10 mg tablet 4044011000036105 Sorbidin 4044011000036105 Sorbidin 27133011000036109 isosorbide dinitrate 10 mg tablet, 100 22498011000036106 isosorbide dinitrate 10 mg tablet 21865011000036107 isosorbide dinitrate +69277011000036101 Glycine (Baxter) 1.5% (30 g/2 L) irrigation solution, 6 x 2 L bags 19478 67077011000036104 Glycine (Baxter) 1.5% (30 g/2 L) irrigation solution, 6 x 2 L bags 65294011000036106 Glycine (Baxter) 1.5% (30 g/2 L) irrigation solution, 2 L bag 65018011000036109 Glycine (Baxter) 65018011000036109 Glycine (Baxter) 71647011000036108 glycine 1.5% (30 g/2 L) solution, 6 x 2 L bags 70107011000036108 glycine 1.5% (30 g/2 L) solution, bag 69852011000036109 glycine +60307011000036100 Nurolasts Period Pain 275 mg film-coated tablet, 30, blister pack 137943 56266011000036102 Nurolasts Period Pain 275 mg film-coated tablet, 30 53855011000036102 Nurolasts Period Pain 275 mg film-coated tablet 26751000168101 Nurolasts Period Pain 26751000168101 Nurolasts Period Pain 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +60316011000036100 Donnalix Infant Drops oral liquid solution, 50 mL, bottle 13873 56275011000036100 Donnalix Infant Drops oral liquid solution, 50 mL 53859011000036100 Donnalix Infant Drops oral liquid solution 46991000168105 Donnalix Infant Drops 46991000168105 Donnalix Infant Drops 63282011000036109 atropine sulfate monohydrate 7.8 microgram/mL + hyoscine hydrobromide trihydrate 2.6 microgram/mL + hyoscyamine sulfate dihydrate 41.5 microgram/mL oral liquid, 50 mL 61910011000036103 atropine sulfate monohydrate 7.8 microgram/mL + hyoscine hydrobromide trihydrate 2.6 microgram/mL + hyoscyamine sulfate dihydrate 41.5 microgram/mL oral liquid 61708011000036107 atropine sulfate monohydrate + hyoscine hydrobromide trihydrate + hyoscyamine +892001000168107 Betistavert 16 mg uncoated tablet, 10, blister pack 212087 891991000168105 Betistavert 16 mg uncoated tablet, 10 891981000168107 Betistavert 16 mg uncoated tablet 891971000168109 Betistavert 891971000168109 Betistavert 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +61541011000036107 Pain Tabsule (Chemists' Own) uncoated tablet, 24, blister pack 93812 57466011000036102 Pain Tabsule (Chemists' Own) uncoated tablet, 24 54314011000036105 Pain Tabsule (Chemists' Own) uncoated tablet 4341000168101 Pain Tabsule (Chemists' Own) 4341000168101 Pain Tabsule (Chemists' Own) 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +931660011000036108 Twynsta 40/5 mg multilayer tablet, 14, blister pack 166265 930820011000036102 Twynsta 40/5 mg multilayer tablet, 14 930059011000036105 Twynsta 40/5 mg multilayer tablet 33031000168101 Twynsta 40/5 mg 33031000168101 Twynsta 40/5 mg 932433011000036108 telmisartan 40 mg + amlodipine 5 mg tablet, 14 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +59939011000036106 Cold and Flu Relief (Your Pharmacy) tablet, 24, blister pack 119720 55901011000036108 Cold and Flu Relief (Your Pharmacy) tablet, 24 53678011000036103 Cold and Flu Relief (Your Pharmacy) tablet 53241011000036109 Cold and Flu Relief (Your Pharmacy) 53241011000036109 Cold and Flu Relief (Your Pharmacy) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +785431000168104 Ritalin LA 60 mg modified release capsule, 100, bottle 236251 785421000168102 Ritalin LA 60 mg modified release capsule, 100 785371000168108 Ritalin LA 60 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 785411000168109 methylphenidate hydrochloride 60 mg modified release capsule, 100 785361000168102 methylphenidate hydrochloride 60 mg modified release capsule 21277011000036101 methylphenidate +975511000168105 Amoxiclav 500/100 (Juno) powder for injection, 10 x 600 mg vials 269162 975501000168107 Amoxiclav 500/100 (Juno) powder for injection, 10 x 600 mg vials 975421000168102 Amoxiclav 500/100 (Juno) powder for injection, 600 mg vial 975401000168106 Amoxiclav 500/100 (Juno) 975401000168106 Amoxiclav 500/100 (Juno) 975491000168100 amoxicillin 500 mg + clavulanic acid 100 mg injection, 10 x 600 mg vials 975411000168109 amoxicillin 500 mg + clavulanic acid 100 mg injection, 600 mg vial 21360011000036101 amoxicillin + clavulanic acid +1113111000168108 Allopurinol (TN) 300 mg uncoated tablet, 90, blister pack 269655 1113101000168105 Allopurinol (TN) 300 mg uncoated tablet, 90 1112951000168100 Allopurinol (TN) 300 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1113091000168100 allopurinol 300 mg tablet, 90 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +892021000168103 Betistavert 16 mg uncoated tablet, 25, blister pack 212087 892011000168105 Betistavert 16 mg uncoated tablet, 25 891981000168107 Betistavert 16 mg uncoated tablet 891971000168109 Betistavert 891971000168109 Betistavert 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1028801000168109 Alli 120 mg hard capsule, 84, blister pack 142843 1028791000168108 Alli 120 mg hard capsule, 84 1028781000168105 Alli 120 mg hard capsule 1021011000168107 Alli 1021011000168107 Alli 27485011000036101 orlistat 120 mg capsule, 84 22831011000036103 orlistat 120 mg capsule 21581011000036109 orlistat +1110181000168105 Nicotinell Tropical Fruit 4 mg chewing gum, 216, blister pack 279618 1110171000168107 Nicotinell Tropical Fruit 4 mg chewing gum, 216 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897451000168100 nicotine 4 mg gum, 216 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +61061011000036100 Bisolvon Dry 10 mg/5 mL oral liquid solution, 125 mL, bottle 68185 57004011000036104 Bisolvon Dry 10 mg/5 mL oral liquid solution, 125 mL 54155011000036109 Bisolvon Dry 10 mg/5 mL oral liquid solution, 5 mL 53355011000036100 Bisolvon Dry 53355011000036100 Bisolvon Dry 63683011000036104 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 125 mL 62045011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61744011000036109 dextromethorphan +68814011000036107 Strepsils orange lozenge, 16, blister pack 115527 66618011000036103 Strepsils orange lozenge, 16 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1114521000168106 Ketizenol 25 mg film-coated tablet, 20, blister pack 202254 1114511000168104 Ketizenol 25 mg film-coated tablet, 20 1114481000168106 Ketizenol 25 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +66561000036106 Albumex-4 10 g/250 mL injection solution, 250 mL vial 72895 64491000036109 Albumex-4 10 g/250 mL injection solution, 250 mL vial 61411000036101 Albumex-4 10 g/250 mL injection solution, 250 mL vial 18981000168102 Albumex-4 18981000168102 Albumex-4 64501000036102 albumin human 10 g/250 mL injection, 250 mL vial 61421000036108 albumin human 10 g/250 mL injection, vial 69754011000036102 albumin human +716291000168105 Pemzo 20 mg enteric capsule, 14, blister pack 149517 716281000168107 Pemzo 20 mg enteric capsule, 14 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +781081000168106 Fentanyl (Aspen) 250 microgram/5 mL injection solution, 5 x 5 mL ampoules 170930 781071000168108 Fentanyl (Aspen) 250 microgram/5 mL injection solution, 5 x 5 mL ampoules 781051000168104 Fentanyl (Aspen) 250 microgram/5 mL injection solution, 5 mL ampoule 123941000036106 Fentanyl (Aspen) 123941000036106 Fentanyl (Aspen) 781061000168102 fentanyl 250 microgram/5 mL injection, 5 x 5 mL ampoules 752391000168108 fentanyl 250 microgram/5 mL injection, ampoule 21258011000036102 fentanyl +929649011000036101 Isoleucine 1000 Amino Acid Supplement containing 1 g isoleucine powder for oral liquid, 30 x 4 g sachets 929479011000036103 Isoleucine 1000 Amino Acid Supplement containing 1 g isoleucine powder for oral liquid, 30 x 4 g sachets 407211000168108 Isoleucine 1000 Amino Acid Supplement containing 1 g isoleucine powder for oral liquid, 4 g sachet 929376011000036102 Isoleucine 1000 Amino Acid Supplement 929376011000036102 Isoleucine 1000 Amino Acid Supplement 929744011000036105 isoleucine with carbohydrate containing 1 g isoleucine powder for oral liquid, 30 x 4 g sachets 405181000168104 isoleucine with carbohydrate containing 1 g isoleucine powder for oral liquid, 4 g sachet 50770011000036109 isoleucine with carbohydrate +961121000168101 Bisoprolol (Apo) 3.75 mg tablet, 7, blister pack 182117 961111000168108 Bisoprolol (Apo) 3.75 mg tablet, 7 961101000168105 Bisoprolol (Apo) 3.75 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 875771000168102 bisoprolol fumarate 3.75 mg tablet, 7 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +858161000168100 Emexlon 10 mg film-coated tablet, 60, blister pack 229659 858151000168102 Emexlon 10 mg film-coated tablet, 60 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 671941000168101 metoclopramide hydrochloride 10 mg tablet, 60 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +933215271000036109 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 30, bottle 163525 933204241000036101 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 30 933195451000036103 Pravastatin Sodium (DRLA) 10 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +66441000036106 Nappy Rash Soothing and Healing (David Hosking's) cream, 120 g, jar 54249 63931000036104 Nappy Rash Soothing and Healing (David Hosking's) cream, 120 g 61671000036109 Nappy Rash Soothing and Healing (David Hosking's) cream 18891000168106 Nappy Rash Soothing and Healing (David Hosking's) 18891000168106 Nappy Rash Soothing and Healing (David Hosking's) 63941000036109 benzoin Sumatra 1% + camphor 1% + storax prepared 0.8% + wool fat 52.4% + zinc oxide 14.3% cream, 120 g 61681000036106 benzoin Sumatra 1% + camphor 1% + storax prepared 0.8% + wool fat 52.4% + zinc oxide 14.3% cream 66881000036104 benzoin Sumatra + camphor + storax prepared + wool fat + zinc oxide +710511000168102 Strepsils Soothing lozenge, 10, tube 165329 710501000168100 Strepsils Soothing lozenge, 10 710491000168107 Strepsils Soothing lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 85186011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 10 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +44441011000036101 Fibro-Vein 1% (20 mg/2 mL) injection solution, 5 x 2 mL ampoules 73362 41897011000036102 Fibro-Vein 1% (20 mg/2 mL) injection solution, 5 x 2 mL ampoules 40252011000036106 Fibro-Vein 1% (20 mg/2 mL) injection solution, 2 mL ampoule 35954011000036108 Fibro-Vein 35954011000036108 Fibro-Vein 46695011000036102 sodium tetradecyl sulfate 1% (20 mg/2 mL) injection, 5 x 2 mL ampoules 45271011000036106 sodium tetradecyl sulfate 1% (20 mg/2 mL) injection, ampoule 37728011000036107 sodium tetradecyl sulfate +86077011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 60, bottle 125246 85621011000036100 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 60 85297011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule 53321000168102 Ostelin Vitamin D 53321000168102 Ostelin Vitamin D 86409011000036109 colecalciferol 25 microgram (1000 units) capsule, 60 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +86077011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 60, bottle 199895 85621011000036100 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 60 85297011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule 53321000168102 Ostelin Vitamin D 53321000168102 Ostelin Vitamin D 86409011000036109 colecalciferol 25 microgram (1000 units) capsule, 60 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +920765011000036100 Allopurinol (Sandoz) 300 mg uncoated tablet, 60, bottle 65906 920444011000036104 Allopurinol (Sandoz) 300 mg uncoated tablet, 60 920185011000036107 Allopurinol (Sandoz) 300 mg uncoated tablet 920082011000036108 Allopurinol (Sandoz) 920082011000036108 Allopurinol (Sandoz) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +874681000168108 Beprol 1.25 mg film-coated tablet, 28, blister pack 175924 874671000168105 Beprol 1.25 mg film-coated tablet, 28 874661000168104 Beprol 1.25 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 46790011000036102 bisoprolol fumarate 1.25 mg tablet, 28 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +931746011000036108 Hairscience for Dandruff 2% shampoo, 250 mL, bottle 61439 930906011000036102 Hairscience for Dandruff 2% shampoo, 250 mL 930108011000036101 Hairscience for Dandruff 2% shampoo 929891011000036103 Hairscience for Dandruff 929891011000036103 Hairscience for Dandruff 932485011000036104 miconazole 2% shampoo, 250 mL 931881011000036108 miconazole 2% shampoo 21454011000036108 miconazole +712701000168106 Brintellix 5 mg film-coated tablet, 28, blister pack 203986 712691000168106 Brintellix 5 mg film-coated tablet, 28 712671000168105 Brintellix 5 mg film-coated tablet 712621000168109 Brintellix 712621000168109 Brintellix 712681000168108 vortioxetine 5 mg tablet, 28 712661000168104 vortioxetine 5 mg tablet 712651000168101 vortioxetine +66601000036106 Rapatabs (Accidental) 500 mg uncoated tablet, 24, blister pack 81738 64571000036106 Rapatabs (Accidental) 500 mg uncoated tablet, 24 61631000036107 Rapatabs (Accidental) 500 mg uncoated tablet 60231000036100 Rapatabs (Accidental) 60231000036100 Rapatabs (Accidental) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +921883011000036105 Sevikar 40/5 film-coated tablet, 30, blister pack 157563 921442011000036102 Sevikar 40/5 film-coated tablet, 30 921012011000036100 Sevikar 40/5 film-coated tablet 29001000168107 Sevikar 40/5 29001000168107 Sevikar 40/5 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +69448011000036103 Glucose (Baxter) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 48524 67248011000036107 Glucose (Baxter) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 65575011000036106 Glucose (Baxter) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71798011000036105 glucose 5% (12.5 g/250 mL) injection, 250 mL bag 70191011000036102 glucose 5% (12.5 g/250 mL) injection, bag 21354011000036103 glucose +920051000168109 Cefaclor (RBX) 375 mg modified release tablet, 10, blister pack 182058 920041000168107 Cefaclor (RBX) 375 mg modified release tablet, 10 920031000168103 Cefaclor (RBX) 375 mg modified release tablet 920001000168105 Cefaclor (RBX) 920001000168105 Cefaclor (RBX) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +66401000036108 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL vials 63955 64281000036106 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL vials 61311000036106 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 50 mL vial 5101000168100 Iomeron-300 5101000168100 Iomeron-300 64291000036108 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 10 x 50 mL vials 61321000036104 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 50 mL vial 931793011000036105 iomeprol +1101551000168103 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 50, blister pack 286356 1101541000168100 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 50 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +81099011000036101 Omeprazole (Apo) 20 mg enteric tablet, 30, blister pack 159732 66893011000036104 Omeprazole (Apo) 20 mg enteric tablet, 30 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +81099011000036101 Omeprazole (Apo) 20 mg enteric tablet, 30, blister pack 190946 66893011000036104 Omeprazole (Apo) 20 mg enteric tablet, 30 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +81099011000036101 Omeprazole (Apo) 20 mg enteric tablet, 30, blister pack 243812 66893011000036104 Omeprazole (Apo) 20 mg enteric tablet, 30 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +849481000168105 Vzole 50 mg film-coated tablet, 30, bottle 238240 849251000168104 Vzole 50 mg film-coated tablet, 30 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46817011000036103 voriconazole 50 mg tablet, 30 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +44450011000036105 Doxycycline (GenRx) 50 mg modified release capsule, 25, blister pack 74014 41906011000036109 Doxycycline (GenRx) 50 mg modified release capsule, 25 40258011000036109 Doxycycline (GenRx) 50 mg modified release capsule 3262011000036104 Doxycycline (GenRx) 3262011000036104 Doxycycline (GenRx) 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +963311000168105 Symbicort Rapihaler 100/6 pressurised inhalation, 120 actuations, metered dose aerosol can 115552 963301000168107 Symbicort Rapihaler 100/6 pressurised inhalation, 120 actuations 963281000168108 Symbicort Rapihaler 100/6 pressurised inhalation, actuation 963261000168104 Symbicort Rapihaler 100/6 963261000168104 Symbicort Rapihaler 100/6 963291000168106 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation pressurised inhalation, 120 actuations 963271000168105 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation pressurised inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +742181000168106 Arginine Hydrochloride (Phebra) 60% (15 g/25 mL) concentrated injection, 10 x 25 mL vials 22934 742171000168108 Arginine Hydrochloride (Phebra) 60% (15 g/25 mL) concentrated injection, 10 x 25 mL vials 742161000168102 Arginine Hydrochloride (Phebra) 60% (15 g/25 mL) concentrated injection, 25 mL vial 742151000168104 Arginine Hydrochloride (Phebra) 742151000168104 Arginine Hydrochloride (Phebra) 71685011000036109 arginine hydrochloride 60% (15 g/25 mL) injection, 10 x 25 mL vials 70124011000036108 arginine hydrochloride 60% (15 g/25 mL) injection, vial 69866011000036100 arginine hydrochloride +1050411000168106 Bupredermal 20 microgram/hour patch, 4, sachet 234744 1050401000168108 Bupredermal 20 microgram/hour patch, 4 1050351000168101 Bupredermal 20 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1046591000168104 buprenorphine 20 microgram/hour patch, 4 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +879781000168102 Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack 75659 13512011000036107 Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations 6794011000036106 Budamax Aqueous 64 microgram/actuation nasal spray, actuation 44611000168104 Budamax Aqueous 44611000168104 Budamax Aqueous 27779011000036101 budesonide 64 microgram/actuation nasal spray, 120 actuations 23109011000036108 budesonide 64 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +60110011000036109 Nurofen Caplet 200 mg sugar coated tablet, 4, blister pack 127287 56069011000036103 Nurofen Caplet 200 mg sugar coated tablet, 4 53777011000036106 Nurofen Caplet 200 mg sugar coated tablet 17551000168104 Nurofen Caplet 17551000168104 Nurofen Caplet 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +20685011000036107 Teveten Plus film-coated tablet, 28, blister pack 82405 13864011000036100 Teveten Plus film-coated tablet, 28 7151011000036109 Teveten Plus film-coated tablet 29551000168101 Teveten Plus 29551000168101 Teveten Plus 27981011000036100 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet, 28 23305011000036103 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet 21527011000036108 eprosartan + hydrochlorothiazide +20685011000036107 Teveten Plus film-coated tablet, 28, blister pack 143172 13864011000036100 Teveten Plus film-coated tablet, 28 7151011000036109 Teveten Plus film-coated tablet 29551000168101 Teveten Plus 29551000168101 Teveten Plus 27981011000036100 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet, 28 23305011000036103 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet 21527011000036108 eprosartan + hydrochlorothiazide +973221000168100 Lyzalon 300 mg hard capsule, 20, blister pack 224416 972491000168105 Lyzalon 300 mg hard capsule, 20 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +951801000168109 Leflunomide (Terry White Chemists) 20 mg uncoated tablet, 30, blister pack 129550 951791000168108 Leflunomide (Terry White Chemists) 20 mg uncoated tablet, 30 951781000168105 Leflunomide (Terry White Chemists) 20 mg uncoated tablet 951701000168102 Leflunomide (Terry White Chemists) 951701000168102 Leflunomide (Terry White Chemists) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +1102331000168107 Tranexamic Acid (SCP) 500 mg film-coated tablet, 100, blister pack 272728 1102321000168109 Tranexamic Acid (SCP) 500 mg film-coated tablet, 100 1102311000168102 Tranexamic Acid (SCP) 500 mg film-coated tablet 1102271000168102 Tranexamic Acid (SCP) 1102271000168102 Tranexamic Acid (SCP) 26862011000036101 tranexamic acid 500 mg tablet, 100 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +50618011000036109 Seroquel XR 300 mg modified release tablet, 10, blister pack 138921 49644011000036104 Seroquel XR 300 mg modified release tablet, 10 48797011000036108 Seroquel XR 300 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51535011000036107 quetiapine 300 mg modified release tablet, 10 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +61695011000036107 Vicks Formula 44 for Dry Coughs 6.67 mg/5 mL oral liquid solution, 180 mL, bottle 98840 57616011000036100 Vicks Formula 44 for Dry Coughs 6.67 mg/5 mL oral liquid solution, 180 mL 54366011000036101 Vicks Formula 44 for Dry Coughs 6.67 mg/5 mL oral liquid solution, 5 mL 53384011000036105 Vicks Formula 44 for Dry Coughs 53384011000036105 Vicks Formula 44 for Dry Coughs 63962011000036108 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid, 180 mL 62110011000036100 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid 61744011000036109 dextromethorphan +1115121000168100 Zithro 500 mg film-coated tablet, 3, blister pack 241812 1115111000168107 Zithro 500 mg film-coated tablet, 3 1115081000168102 Zithro 500 mg film-coated tablet 1115071000168100 Zithro 1115071000168100 Zithro 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +933247181000036100 Tevagrastim 480 microgram/0.8 mL injection solution, 10 x 0.8 mL syringes 163677 933243571000036103 Tevagrastim 480 microgram/0.8 mL injection solution, 10 x 0.8 mL syringes 933241531000036101 Tevagrastim 480 microgram/0.8 mL injection solution, 0.8 mL syringe 933240801000036104 Tevagrastim 933240801000036104 Tevagrastim 933243581000036101 filgrastim 480 microgram/0.8 mL injection, 10 x 0.8 mL syringes 933241541000036106 filgrastim 480 microgram/0.8 mL injection, syringe 21265011000036102 filgrastim +77373011000036105 Ostelin-1000 25 microgram soft capsule, 8, bottle 67032 76789011000036104 Ostelin-1000 25 microgram soft capsule, 8 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78293011000036100 ergocalciferol 25 microgram capsule, 8 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +1043991000168100 Pryzex 7.5 mg film-coated tablet, 30, blister pack 178987 1043981000168103 Pryzex 7.5 mg film-coated tablet, 30 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 89771000036101 olanzapine 7.5 mg tablet, 30 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +60607011000036106 Canesten Clotrimazole 1% cream, 70 g, tube 18697 56565011000036103 Canesten Clotrimazole 1% cream, 70 g 53975011000036108 Canesten Clotrimazole 1% cream 4270011000036105 Canesten Clotrimazole 4270011000036105 Canesten Clotrimazole 63428011000036102 clotrimazole 1% cream, 70 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +933230071000036101 Bicillin L-A 1.2 million units (900 mg)/2.3 mL injection suspension, 10 x 2.3 mL syringes 147169 933223911000036102 Bicillin L-A 1.2 million units (900 mg)/2.3 mL injection suspension, 10 x 2.3 mL syringes 933219991000036102 Bicillin L-A 1.2 million units (900 mg)/2.3 mL injection suspension, 2.3 mL syringe 4089011000036101 Bicillin L-A 4089011000036101 Bicillin L-A 933223921000036109 benzathine benzylpenicillin 1.2 million units (900 mg)/2.3 mL injection, 10 x 2.3 mL syringes 933220001000036107 benzathine benzylpenicillin 1.2 million units (900 mg)/2.3 mL injection, syringe 39429011000036100 benzathine benzylpenicillin +943801000168107 Medformin 850 mg film-coated tablet, 60, bottle 100289 943791000168106 Medformin 850 mg film-coated tablet, 60 943781000168108 Medformin 850 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +933247341000036106 Risperidone (Pfizer) 3 mg film-coated tablet, 60, blister pack 166683 933244071000036107 Risperidone (Pfizer) 3 mg film-coated tablet, 60 933241661000036106 Risperidone (Pfizer) 3 mg film-coated tablet 933240791000036103 Risperidone (Pfizer) 933240791000036103 Risperidone (Pfizer) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +55641000036105 Synastrozole 1 mg film-coated tablet, 50, blister pack 155175 52391000036100 Synastrozole 1 mg film-coated tablet, 50 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52111000036108 anastrozole 1 mg tablet, 50 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +894031000168105 Imatinib Adult (Cipla) 400 mg hard capsule, 180, blister pack 231746 894021000168107 Imatinib Adult (Cipla) 400 mg hard capsule, 180 893861000168106 Imatinib Adult (Cipla) 400 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 894011000168100 imatinib 400 mg capsule, 180 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +793371000168106 Ondansetron ODT (GH) 4 mg orally disintegrating tablet, 6, blister pack 231602 793361000168100 Ondansetron ODT (GH) 4 mg orally disintegrating tablet, 6 793331000168108 Ondansetron ODT (GH) 4 mg orally disintegrating tablet 793251000168107 Ondansetron ODT (GH) 793251000168107 Ondansetron ODT (GH) 719971000168109 ondansetron 4 mg orally disintegrating tablet, 6 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +922381000168100 Cephalexin (GA) 250 mg capsule, 20, blister pack 148204 922371000168103 Cephalexin (GA) 250 mg capsule, 20 922361000168109 Cephalexin (GA) 250 mg capsule 922291000168107 Cephalexin (GA) 922291000168107 Cephalexin (GA) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +1026791000168109 Pregabalin (Amneal) 150 mg hard capsule, 20, bottle 235880 1026781000168106 Pregabalin (Amneal) 150 mg hard capsule, 20 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +710351000168108 PKU Air 20 Red (Berry Blast) oral liquid solution, 30 x 174 mL pouches 710341000168106 PKU Air 20 Red (Berry Blast) oral liquid solution, 30 x 174 mL pouches 710331000168102 PKU Air 20 Red (Berry Blast) oral liquid solution, 174 mL pouch 710241000168100 PKU Air 20 710241000168100 PKU Air 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1058931000168105 Ondansetron (Auro) 4 mg film-coated tablet, 30, blister pack 173184 1058921000168107 Ondansetron (Auro) 4 mg film-coated tablet, 30 1058811000168106 Ondansetron (Auro) 4 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 1058911000168100 ondansetron 4 mg tablet, 30 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +21216011000036108 Roximycin 150 mg film-coated tablet, 10, bottle 99938 14350011000036103 Roximycin 150 mg film-coated tablet, 10 7632011000036103 Roximycin 150 mg film-coated tablet 4346011000036103 Roximycin 4346011000036103 Roximycin 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +44741011000036105 Testogel 1% (25 mg/2.5 g) gel, 7 x 2.5 g sachets 96129 42186011000036108 Testogel 1% (25 mg/2.5 g) gel, 7 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46947011000036101 testosterone 1% (25 mg/2.5 g) gel, 7 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +35660011000036106 Isopto Tears 0.5% eye drops solution, 15 mL, bottle 35553011000036101 Isopto Tears 0.5% eye drops solution, 15 mL 35478011000036102 Isopto Tears 0.5% eye drops solution 35444011000036108 Isopto Tears 35444011000036108 Isopto Tears 35759011000036104 hypromellose 0.5% eye drops, 15 mL 35701011000036109 hypromellose 0.5% eye drops 35690011000036109 hypromellose +845301000168107 Olmesartan (Alembic) 40 mg film-coated tablet, 30, blister pack 221061 845291000168106 Olmesartan (Alembic) 40 mg film-coated tablet, 30 845281000168108 Olmesartan (Alembic) 40 mg film-coated tablet 845241000168103 Olmesartan (Alembic) 845241000168103 Olmesartan (Alembic) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +891841000168106 Bicor 7.5 mg film-coated tablet, 100, blister pack 81607 891831000168102 Bicor 7.5 mg film-coated tablet, 100 891701000168102 Bicor 7.5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 874401000168102 bisoprolol fumarate 7.5 mg tablet, 100 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +933238751000036105 Freestyle Optium diagnostic strip, 100, bottle 133310 933235541000036105 Freestyle Optium diagnostic strip, 100 933234451000036108 Freestyle Optium diagnostic strip 51931000168104 Freestyle Optium 51931000168104 Freestyle Optium 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +60907011000036105 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 25 mL, bottle 60796 56861011000036101 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 25 mL 54104011000036103 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 5 mL 19951000168104 Dimetapp DM Cough and Cold Elixir 19951000168104 Dimetapp DM Cough and Cold Elixir 63615011000036100 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 25 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +59716011000036102 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 200 mL, bottle 10549 55711011000036101 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 200 mL 53625011000036105 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 63107011000036108 pholcodine 3 mg/mL oral liquid, 200 mL 61858011000036102 pholcodine 3 mg/mL oral liquid 21705011000036108 pholcodine +60093011000036108 Ibuprofen Children's (Pharmacy Choice) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 126539 56054011000036107 Ibuprofen Children's (Pharmacy Choice) 100 mg/5 mL oral liquid suspension, 200 mL 53772011000036109 Ibuprofen Children's (Pharmacy Choice) 100 mg/5 mL oral liquid suspension, 5 mL 44171000168104 Ibuprofen Children's (Pharmacy Choice) 44171000168104 Ibuprofen Children's (Pharmacy Choice) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +700029691000036106 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 28, blister pack 11351011000036102 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 28 4525011000036109 Microgynon 50 ED (levonorgestrel 125 microgram + ethinylestradiol 50 microgram) sugar coated tablet 700016051000036109 Microgynon 50 ED 700016051000036109 Microgynon 50 ED 28346011000036102 levonorgestrel 125 microgram + ethinylestradiol 50 microgram tablet [21] (&) inert substance tablet [7], 28 22024011000036101 levonorgestrel 125 microgram + ethinylestradiol 50 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029691000036106 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 28, blister pack 11351011000036102 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 28 4624011000036102 Microgynon 50 ED (inert substance) sugar coated tablet 700016051000036109 Microgynon 50 ED 700016051000036109 Microgynon 50 ED 28346011000036102 levonorgestrel 125 microgram + ethinylestradiol 50 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +883321000168109 Betahistavert 16 mg uncoated tablet, 30, blister pack 227606 883311000168102 Betahistavert 16 mg uncoated tablet, 30 883261000168108 Betahistavert 16 mg uncoated tablet 883251000168106 Betahistavert 883251000168106 Betahistavert 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +18012011000036108 Oral Rehydration Salts (Chemmart) powder for oral liquid, 10 x 4.9 g sachets 117069 11559011000036101 Oral Rehydration Salts (Chemmart) powder for oral liquid, 10 x 4.9 g sachets 5238011000036104 Oral Rehydration Salts (Chemmart) powder for oral liquid, 4.9 g sachet 4048011000036103 Oral Rehydration Salts (Chemmart) 4048011000036103 Oral Rehydration Salts (Chemmart) 28137011000036109 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 23446011000036105 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +712521000168105 Flucloxacillin (Apo) 250 mg capsule, 24, blister pack 226382 712511000168103 Flucloxacillin (Apo) 250 mg capsule, 24 712501000168101 Flucloxacillin (Apo) 250 mg capsule 712491000168108 Flucloxacillin (Apo) 712491000168108 Flucloxacillin (Apo) 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +926641000168102 Trasylol 2 000 000 KI units/200 mL intravenous infusion injection, 200 mL vial 58867 926631000168106 Trasylol 2 000 000 KI units/200 mL intravenous infusion injection, 200 mL vial 926611000168101 Trasylol 2 000 000 KI units/200 mL intravenous infusion injection, 200 mL vial 926521000168109 Trasylol 926521000168109 Trasylol 926621000168108 aprotinin 2 000 000 KI units/200 mL injection, 200 mL vial 926601000168104 aprotinin 2 000 000 KI units/200 mL injection, vial 926591000168106 aprotinin +69294011000036104 Glucose (Baxter) 50% (250 g/500 mL) intravenous infusion injection, 500 mL bag 19504 67094011000036102 Glucose (Baxter) 50% (250 g/500 mL) intravenous infusion injection, 500 mL bag 65489011000036109 Glucose (Baxter) 50% (250 g/500 mL) intravenous infusion injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71662011000036103 glucose 50% (250 g/500 mL) injection, 500 mL bag 70113011000036102 glucose 50% (250 g/500 mL) injection, bag 21354011000036103 glucose +55731000036106 Anastrozole (Synthon) 1 mg film-coated tablet, 14, blister pack 155176 52481000036108 Anastrozole (Synthon) 1 mg film-coated tablet, 14 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52021000036100 anastrozole 1 mg tablet, 14 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +652081000168100 Quetia 25 mg film-coated tablet, 60, blister pack 204153 652071000168103 Quetia 25 mg film-coated tablet, 60 652031000168101 Quetia 25 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +781001000168103 Oxycodone MR (GenRx) 20 mg modified release tablet, 28, blister pack 214495 780991000168104 Oxycodone MR (GenRx) 20 mg modified release tablet, 28 780961000168106 Oxycodone MR (GenRx) 20 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +853911000168107 Telmisartan (Alkem) 80 mg uncoated tablet, 10, blister pack 211903 853901000168109 Telmisartan (Alkem) 80 mg uncoated tablet, 10 853881000168107 Telmisartan (Alkem) 80 mg uncoated tablet 853811000168101 Telmisartan (Alkem) 853811000168101 Telmisartan (Alkem) 853891000168105 telmisartan 80 mg tablet, 10 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +1116811000168106 Telmisartan/Amlodipine 80/5 (Apo) uncoated tablet, 28, blister pack 276426 1116801000168108 Telmisartan/Amlodipine 80/5 (Apo) uncoated tablet, 28 1116791000168107 Telmisartan/Amlodipine 80/5 (Apo) uncoated tablet 1116781000168109 Telmisartan/Amlodipine 80/5 (Apo) 1116781000168109 Telmisartan/Amlodipine 80/5 (Apo) 932422011000036104 telmisartan 80 mg + amlodipine 5 mg tablet, 28 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +87662011000036101 Fosinopril Sodium/HCTZ 10/12.5 (GA) uncoated tablet, 30, blister pack 151949 87441011000036101 Fosinopril Sodium/HCTZ 10/12.5 (GA) uncoated tablet, 30 87308011000036105 Fosinopril Sodium/HCTZ 10/12.5 (GA) uncoated tablet 21101000168105 Fosinopril Sodium/HCTZ 10/12.5 (GA) 21101000168105 Fosinopril Sodium/HCTZ 10/12.5 (GA) 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1098081000168100 Valaciclovir (Auro) 500 mg film-coated tablet, 90, blister pack 173282 1098071000168103 Valaciclovir (Auro) 500 mg film-coated tablet, 90 1098001000168108 Valaciclovir (Auro) 500 mg film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 929224011000036102 valaciclovir 500 mg tablet, 90 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +960341000168101 Ciram 20 mg film-coated tablet, 100, bottle 158859 960331000168105 Ciram 20 mg film-coated tablet, 100 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 46708011000036102 citalopram 20 mg tablet, 100 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +61361011000036101 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 150 mL, bottle 81520 57286011000036104 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 150 mL 54260011000036109 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 5 mL 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 63794011000036109 ibuprofen 100 mg/5 mL oral liquid, 150 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +19126011000036107 Cilicaine V 250 mg/5 mL oral liquid suspension, 100 mL, bottle 43486 12429011000036105 Cilicaine V 250 mg/5 mL oral liquid suspension, 100 mL 4984011000036108 Cilicaine V 250 mg/5 mL oral liquid suspension, 5 mL 17711000168106 Cilicaine V 17711000168106 Cilicaine V 27116011000036109 phenoxymethylpenicillin 250 mg/5 mL oral liquid, 100 mL 22482011000036107 phenoxymethylpenicillin 250 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +772401000168107 Combantrin 50 mg/mL oral liquid suspension, 50 mL, bottle 10747 772391000168105 Combantrin 50 mg/mL oral liquid suspension, 50 mL 772281000168103 Combantrin 50 mg/mL oral liquid suspension 53233011000036109 Combantrin 53233011000036109 Combantrin 772381000168107 pyrantel 50 mg/mL oral liquid, 50 mL 772271000168101 pyrantel 50 mg/mL oral liquid 21475011000036105 pyrantel +1027271000168104 Neuroccord 75 mg hard capsule, 56, bottle 235854 1027261000168105 Neuroccord 75 mg hard capsule, 56 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +879621000168108 Bupivacaine (Claris) 0.5% (100 mg/20 mL) injection solution, 5 x 20 mL vials 223238 879611000168101 Bupivacaine (Claris) 0.5% (100 mg/20 mL) injection solution, 5 x 20 mL vials 879571000168105 Bupivacaine (Claris) 0.5% (100 mg/20 mL) injection solution, 20 mL vial 879561000168104 Bupivacaine (Claris) 879561000168104 Bupivacaine (Claris) 38660011000036102 bupivacaine hydrochloride 0.5% (100 mg/20 mL) injection, 5 x 20 mL vials 37911011000036101 bupivacaine hydrochloride 0.5% (100 mg/20 mL) injection, vial 37702011000036102 bupivacaine +926912011000036108 Ioscan 37.05 g/100 mL oral liquid solution, 100 mL, bottle 80666 926306011000036100 Ioscan 37.05 g/100 mL oral liquid solution, 100 mL 925750011000036107 Ioscan 37.05 g/100 mL oral liquid solution, 100 mL bottle 925572011000036107 Ioscan 925572011000036107 Ioscan 927399011000036108 sodium amidotrizoate 37.05 g/100 mL oral liquid, 100 mL 927040011000036106 sodium amidotrizoate 37.05 g/100 mL oral liquid, bottle 77441011000036100 amidotrizoic acid +933230111000036108 Ondansetron (Claris) 8 mg/4 mL injection solution, 4 mL ampoule 155610 933224111000036103 Ondansetron (Claris) 8 mg/4 mL injection solution, 4 mL ampoule 923031011000036107 Ondansetron (Claris) 8 mg/4 mL injection solution, 4 mL ampoule 922929011000036107 Ondansetron (Claris) 922929011000036107 Ondansetron (Claris) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +801871000168101 Actonate EC Once-a-Week 35 mg enteric tablet, 4, blister pack 166840 801861000168107 Actonate EC Once-a-Week 35 mg enteric tablet, 4 801801000168106 Actonate EC Once-a-Week 35 mg enteric tablet 801791000168105 Actonate EC Once-a-Week 801791000168105 Actonate EC Once-a-Week 75621000036104 risedronate sodium 35 mg enteric tablet, 4 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +772561000168109 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 14, blister pack 127168 772551000168107 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 14 39796011000036109 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet 39725011000036109 Zolpidem Tartrate (GenRx) 39725011000036109 Zolpidem Tartrate (GenRx) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +875321000168102 Bisoprolol (AN) 3.75 mg film-coated tablet, 100, blister pack 175914 875311000168109 Bisoprolol (AN) 3.75 mg film-coated tablet, 100 875261000168103 Bisoprolol (AN) 3.75 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 874891000168105 bisoprolol fumarate 3.75 mg tablet, 100 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +68660011000036106 Rikoderm lotion, 125 mL, bottle 10589 66515011000036103 Rikoderm lotion, 125 mL 65248011000036106 Rikoderm lotion 65134011000036102 Rikoderm 65134011000036102 Rikoderm 71247011000036105 light liquid paraffin 15.9% + wool fat 0.6% lotion, 125 mL 69917011000036107 light liquid paraffin 15.9% + wool fat 0.6% lotion 69787011000036102 light liquid paraffin + wool fat +1046001000168103 Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack 50641 1045991000168104 Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack 635181000168108 Immucyst (inert substance) diluent, 3 mL vial 28281000168104 Immucyst 28281000168104 Immucyst 1045981000168102 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 631981000168109 inert substance diluent, 3 mL vial 21220011000036103 inert substance +1046001000168103 Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack 50641 1045991000168104 Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack 1045941000168107 Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial 28281000168104 Immucyst 28281000168104 Immucyst 1045981000168102 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 1045931000168103 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial 32617011000036108 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain +17977011000036101 Epirubicin Hydrochloride (Mayne Pharma) 100 mg/50 mL injection solution, 50 mL vial 101582 11221011000036106 Epirubicin Hydrochloride (Mayne Pharma) 100 mg/50 mL injection solution, 50 mL vial 5498011000036106 Epirubicin Hydrochloride (Mayne Pharma) 100 mg/50 mL injection solution, 50 mL vial 3308011000036106 Epirubicin Hydrochloride (Mayne Pharma) 3308011000036106 Epirubicin Hydrochloride (Mayne Pharma) 26804011000036109 epirubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22188011000036109 epirubicin hydrochloride 100 mg/50 mL injection, vial 21230011000036100 epirubicin +69584011000036107 Acivir 5% cream, 5 g, tube 66076 67544011000036107 Acivir 5% cream, 5 g 65695011000036108 Acivir 5% cream 65185011000036108 Acivir 65185011000036108 Acivir 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +50609011000036103 Celsentri 300 mg film-coated tablet, 60, blister pack 137331 49635011000036101 Celsentri 300 mg film-coated tablet, 60 48793011000036104 Celsentri 300 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51527011000036100 maraviroc 300 mg tablet, 60 50991011000036103 maraviroc 300 mg tablet 50741011000036103 maraviroc +20627011000036109 Paxtine 20 mg film-coated tablet, 30, blister pack 227120 13807011000036107 Paxtine 20 mg film-coated tablet, 30 7093011000036107 Paxtine 20 mg film-coated tablet 3939011000036102 Paxtine 3939011000036102 Paxtine 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +20627011000036109 Paxtine 20 mg film-coated tablet, 30, blister pack 80956 13807011000036107 Paxtine 20 mg film-coated tablet, 30 7093011000036107 Paxtine 20 mg film-coated tablet 3939011000036102 Paxtine 3939011000036102 Paxtine 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1097121000168104 Binosto 70 mg effervescent tablet, 2, blister pack 177983 1097111000168106 Binosto 70 mg effervescent tablet, 2 1097041000168106 Binosto 70 mg effervescent tablet 1096991000168102 Binosto 1096991000168102 Binosto 1097101000168108 alendronate 70 mg effervescent tablet, 2 1097031000168102 alendronate 70 mg effervescent tablet 21736011000036109 alendronate +59784011000036107 Paralgin 500 mg uncoated tablet, 250, bottle 113998 55746011000036101 Paralgin 500 mg uncoated tablet, 250 5172011000036102 Paralgin 500 mg uncoated tablet 4130011000036109 Paralgin 4130011000036109 Paralgin 63848011000036107 paracetamol 500 mg tablet, 250 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +811461000168106 Afinitor 3 mg dispersible tablet, 30, blister pack 200204 811451000168109 Afinitor 3 mg dispersible tablet, 30 811431000168103 Afinitor 3 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811441000168107 everolimus 3 mg dispersible tablet, 30 811421000168101 everolimus 3 mg dispersible tablet 21615011000036103 everolimus +1014931000168107 Valaciclovir (Apotex) 500 mg film-coated tablet, 10, blister pack 158914 1014921000168109 Valaciclovir (Apotex) 500 mg film-coated tablet, 10 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +719281000168102 Lyxumia 20 microgram/dose injection solution, 14 doses, injection device 172719 719271000168100 Lyxumia 20 microgram/dose injection solution, 14 doses 719251000168109 Lyxumia 20 microgram/dose injection solution, dose 177641000036107 Lyxumia 177641000036107 Lyxumia 719261000168106 lixisenatide 20 microgram/dose injection, 14 doses 719241000168107 lixisenatide 20 microgram/dose injection, dose 177821000036103 lixisenatide +87721011000036107 Oxazepam (Apo) 30 mg uncoated tablet, 25, blister pack 163213 87487011000036100 Oxazepam (Apo) 30 mg uncoated tablet, 25 87337011000036100 Oxazepam (Apo) 30 mg uncoated tablet 61491000168104 Oxazepam (Apo) 61491000168104 Oxazepam (Apo) 32770011000036109 oxazepam 30 mg tablet, 25 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +18285011000036108 Seretide MDI 125/25 pressurised inhalation, 120 actuations, metered dose aerosol can 77830 11650011000036102 Seretide MDI 125/25 pressurised inhalation, 120 actuations 5512011000036102 Seretide MDI 125/25 pressurised inhalation, actuation 30441000168106 Seretide MDI 125/25 30441000168106 Seretide MDI 125/25 26724011000036100 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22119011000036103 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +18285011000036108 Seretide MDI 125/25 pressurised inhalation, 120 actuations, metered dose aerosol can 120662 11650011000036102 Seretide MDI 125/25 pressurised inhalation, 120 actuations 5512011000036102 Seretide MDI 125/25 pressurised inhalation, actuation 30441000168106 Seretide MDI 125/25 30441000168106 Seretide MDI 125/25 26724011000036100 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22119011000036103 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +758651000168109 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 210583 758641000168107 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 758621000168101 Chelsea-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 758611000168108 Chelsea-35 ED 758611000168108 Chelsea-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +758651000168109 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 210583 758641000168107 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 758631000168103 Chelsea-35 ED (inert substance) sugar coated tablet 758611000168108 Chelsea-35 ED 758611000168108 Chelsea-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +756841000168109 Duloxetine (Sandoz) 60 mg enteric capsule, 28, blister pack 197167 756831000168100 Duloxetine (Sandoz) 60 mg enteric capsule, 28 756771000168105 Duloxetine (Sandoz) 60 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +756841000168109 Duloxetine (Sandoz) 60 mg enteric capsule, 28, blister pack 199254 756831000168100 Duloxetine (Sandoz) 60 mg enteric capsule, 28 756771000168105 Duloxetine (Sandoz) 60 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +50344011000036101 Phenex-2 powder for oral liquid, 400 g, can 49497011000036103 Phenex-2 powder for oral liquid, 400 g 48705011000036101 Phenex-2 powder for oral liquid 43421000168105 Phenex-2 43421000168105 Phenex-2 51451011000036103 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 400 g 50960011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +43560011000036106 Stilnox CR 12.5 mg modified release tablet, 7, blister pack 120713 41248011000036102 Stilnox CR 12.5 mg modified release tablet, 7 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46190011000036107 zolpidem tartrate 12.5 mg modified release tablet, 7 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +840281000168103 Prometrium 100 mg soft capsule, 14, blister pack 232818 840271000168101 Prometrium 100 mg soft capsule, 14 840251000168105 Prometrium 100 mg soft capsule 840231000168104 Prometrium 840231000168104 Prometrium 840261000168107 progesterone 100 mg capsule, 14 840241000168108 progesterone 100 mg capsule 21412011000036108 progesterone +843251000168102 Centrum Select 50 Plus film-coated tablet, 30, bottle 156452 843241000168104 Centrum Select 50 Plus film-coated tablet, 30 843221000168105 Centrum Select 50 Plus film-coated tablet 920936011000036106 Centrum Select 50 Plus 920936011000036106 Centrum Select 50 Plus 843231000168108 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 30 843211000168103 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet 922055011000036102 dl-alpha-tocopherol + ascorbic acid + betacarotene + biotin + calcium hydrogen phosphate dihydrate + chromic chloride + colecalciferol + cupric oxide + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide heavy + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + phytomenadione + potassium sulfate + pyridoxine + retinol acetate + riboflavin + selenium + thiamine + zinc oxide +1105661000168103 Valpam 5 mg uncoated tablet, 30, blister pack 80811 1105651000168100 Valpam 5 mg uncoated tablet, 30 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 32774011000036104 diazepam 5 mg tablet, 30 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +60386011000036102 Micardis Plus 80/25 multilayer tablet, 56, blister pack 143761 56345011000036109 Micardis Plus 80/25 multilayer tablet, 56 53885011000036106 Micardis Plus 80/25 multilayer tablet 17051000168109 Micardis Plus 80/25 17051000168109 Micardis Plus 80/25 63316011000036101 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 56 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +43995011000036109 Apresoline 20 mg powder for injection, 5 ampoules 43190 41486011000036108 Apresoline 20 mg powder for injection, 5 ampoules 40009011000036104 Apresoline 20 mg powder for injection, 20 mg ampoule 39587011000036107 Apresoline 39587011000036107 Apresoline 46332011000036106 hydralazine hydrochloride 20 mg injection, 5 ampoules 45085011000036106 hydralazine hydrochloride 20 mg injection, ampoule 21368011000036104 hydralazine +834981000168103 Differin 0.1% cream, 50 g, tube 66174 834971000168101 Differin 0.1% cream, 50 g 40194011000036109 Differin 0.1% cream 39740011000036103 Differin 39740011000036103 Differin 834961000168107 adapalene 0.1% cream, 50 g 45228011000036103 adapalene 0.1% cream 44932011000036106 adapalene +20385011000036100 Mohexal 150 mg film-coated tablet, 60, blister pack 76934 13593011000036104 Mohexal 150 mg film-coated tablet, 60 6876011000036109 Mohexal 150 mg film-coated tablet 3315011000036103 Mohexal 3315011000036103 Mohexal 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +44142011000036108 Vesanoid 10 mg soft capsule, 100, bottle 53160 41618011000036107 Vesanoid 10 mg soft capsule, 100 40106011000036103 Vesanoid 10 mg soft capsule 39594011000036102 Vesanoid 39594011000036102 Vesanoid 46437011000036103 tretinoin 10 mg capsule, 100 45155011000036108 tretinoin 10 mg capsule 37794011000036109 tretinoin +933247431000036109 Fibre Health Granular Natural 576.3 mg/g powder for oral liquid, 336 g, jar 171157 933244271000036103 Fibre Health Granular Natural 576.3 mg/g powder for oral liquid, 336 g 933241781000036105 Fibre Health Granular Natural 576.3 mg/g powder for oral liquid 55671000168105 Fibre Health Granular 55671000168105 Fibre Health Granular 933244281000036101 psyllium husk powder 576.3 mg/g powder for oral liquid, 336 g 933241771000036108 psyllium husk powder 576.3 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +654811000168106 Valsartan (Apo) 160 mg film-coated tablet, 28, blister pack 185821 654801000168108 Valsartan (Apo) 160 mg film-coated tablet, 28 654791000168107 Valsartan (Apo) 160 mg film-coated tablet 654721000168105 Valsartan (Apo) 654721000168105 Valsartan (Apo) 63789011000036106 valsartan 160 mg tablet, 28 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +926861011000036108 Nicotinell Step-3 7 mg/24 hours patch, 7, sachet 42627 926257011000036101 Nicotinell Step-3 7 mg/24 hours patch, 7 925705011000036108 Nicotinell Step-3 7 mg/24 hours patch 51741000168105 Nicotinell Step-3 51741000168105 Nicotinell Step-3 27924011000036107 nicotine 7 mg/24 hours patch, 7 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +116611000036103 Rosuvastatin (Actavis) 10 mg film-coated tablet, 30, blister pack 183639 114901000036103 Rosuvastatin (Actavis) 10 mg film-coated tablet, 30 113401000036107 Rosuvastatin (Actavis) 10 mg film-coated tablet 112551000036104 Rosuvastatin (Actavis) 112551000036104 Rosuvastatin (Actavis) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +33518011000036108 Simvastatin (Generic Health) 10 mg film-coated tablet, 30, blister pack 123813 33261011000036107 Simvastatin (Generic Health) 10 mg film-coated tablet, 30 33027011000036100 Simvastatin (Generic Health) 10 mg film-coated tablet 32971011000036105 Simvastatin (Generic Health) 32971011000036105 Simvastatin (Generic Health) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +928853011000036105 Ramipril (Lupin) 5 mg hard capsule, 30, blister pack 134796 928215011000036106 Ramipril (Lupin) 5 mg hard capsule, 30 927874011000036101 Ramipril (Lupin) 5 mg hard capsule 927804011000036106 Ramipril (Lupin) 927804011000036106 Ramipril (Lupin) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +883961000168100 Betahistine (Medis) 8 mg tablet, 100, blister pack 231720 883951000168102 Betahistine (Medis) 8 mg tablet, 100 883901000168101 Betahistine (Medis) 8 mg tablet 883891000168100 Betahistine (Medis) 883891000168100 Betahistine (Medis) 883151000168104 betahistine dihydrochloride 8 mg tablet, 100 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +972861000168100 Lyzalon 150 mg hard capsule, 20, blister pack 224446 972401000168104 Lyzalon 150 mg hard capsule, 20 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +713961000168100 Xycilan 250 mg hard capsule, 20, blister pack 185795 713951000168102 Xycilan 250 mg hard capsule, 20 713941000168104 Xycilan 250 mg hard capsule 713931000168108 Xycilan 713931000168108 Xycilan 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +836031000168107 Codalgin uncoated tablet, 50, blister pack 13440 836021000168109 Codalgin uncoated tablet, 50 836011000168102 Codalgin uncoated tablet 3521011000036109 Codalgin 3521011000036109 Codalgin 63448011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +964271000168108 Normatens 300 microgram film-coated tablet, 10, blister pack 114123 964261000168102 Normatens 300 microgram film-coated tablet, 10 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964251000168104 moxonidine 300 microgram tablet, 10 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +702041000168108 Colaxsen film-coated tablet, 90, bottle 218552 702031000168104 Colaxsen film-coated tablet, 90 702001000168106 Colaxsen film-coated tablet 701961000168102 Colaxsen 701961000168102 Colaxsen 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +19253011000036103 Feldene 10 mg hard capsule, 50, blister pack 47656 12544011000036101 Feldene 10 mg hard capsule, 50 4729011000036105 Feldene 10 mg hard capsule 8391000168102 Feldene 8391000168102 Feldene 27762011000036104 piroxicam 10 mg capsule, 50 23093011000036100 piroxicam 10 mg capsule 21531011000036103 piroxicam +19933011000036101 Ziagen 20 mg/mL oral liquid solution, 240 mL, bottle 66879 13177011000036109 Ziagen 20 mg/mL oral liquid solution, 240 mL 6460011000036109 Ziagen 20 mg/mL oral liquid solution 3344011000036108 Ziagen 3344011000036108 Ziagen 27595011000036108 abacavir 20 mg/mL oral liquid, 240 mL 22934011000036107 abacavir 20 mg/mL oral liquid 21664011000036103 abacavir +83414011000036103 Symbicort Turbuhaler 400/12 powder for inhalation, 2 x 60 actuations, dry powder inhalers 80877 83332011000036105 Symbicort Turbuhaler 400/12 powder for inhalation, 2 x 60 actuations 33097011000036108 Symbicort Turbuhaler 400/12 powder for inhalation, actuation 1881000168103 Symbicort Turbuhaler 400/12 1881000168103 Symbicort Turbuhaler 400/12 83499011000036101 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 2 x 60 actuations 33685011000036105 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +909841000168102 Chorit 20 mg film-coated tablet, 30, bottle 179832 909531000168108 Chorit 20 mg film-coated tablet, 30 909501000168101 Chorit 20 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1036221000168100 Jinarc (28 x 30 mg tablets, 28 x 60 mg tablets), 56, blister pack 272788 1036211000168107 Jinarc (28 x 30 mg tablets, 28 x 60 mg tablets), 56 1036141000168103 Jinarc 30 mg tablet 1036121000168109 Jinarc 1036121000168109 Jinarc 1036201000168109 tolvaptan 30 mg tablet [28] (&) tolvaptan 60 mg tablet [28], 56 699281000168109 tolvaptan 30 mg tablet 686881000168102 tolvaptan +1036221000168100 Jinarc (28 x 30 mg tablets, 28 x 60 mg tablets), 56, blister pack 272788 1036211000168107 Jinarc (28 x 30 mg tablets, 28 x 60 mg tablets), 56 1036191000168106 Jinarc 60 mg tablet 1036121000168109 Jinarc 1036121000168109 Jinarc 1036201000168109 tolvaptan 30 mg tablet [28] (&) tolvaptan 60 mg tablet [28], 56 1036181000168108 tolvaptan 60 mg tablet 686881000168102 tolvaptan +37358011000036107 Duromine 40 mg modified release capsule, 7, blister pack 10942 36643011000036107 Duromine 40 mg modified release capsule, 7 36082011000036102 Duromine 40 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 38561011000036104 phentermine 40 mg modified release capsule, 7 37837011000036107 phentermine 40 mg modified release capsule 37725011000036101 phentermine +944041000168103 Medformin-1000 1 g film-coated tablet, 100, blister pack 100292 943991000168108 Medformin-1000 1 g film-coated tablet, 100 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 16921000036107 metformin hydrochloride 1 g tablet, 100 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +136841000036107 Intragam P 12 g/200 mL injection solution, 200 mL vial 68633 136601000036105 Intragam P 12 g/200 mL injection solution, 200 mL vial 136271000036104 Intragam P 12 g/200 mL injection solution, 200 mL vial 46781000168105 Intragam P 46781000168105 Intragam P 75474011000036100 normal immunoglobulin 12 g/200 mL injection, 200 mL vial 75082011000036105 normal immunoglobulin 12 g/200 mL injection, vial 74965011000036103 normal immunoglobulin +1016051000168105 Arizole 2 mg uncoated tablet, 30, bottle 198199 1016041000168108 Arizole 2 mg uncoated tablet, 30 1016031000168104 Arizole 2 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +1111101000168106 Bivalirudin (DBL) 250 mg powder for injection, 1 vial 267957 1111091000168101 Bivalirudin (DBL) 250 mg powder for injection, 1 vial 1111081000168104 Bivalirudin (DBL) 250 mg powder for injection, 250 mg vial 1111071000168102 Bivalirudin (DBL) 1111071000168102 Bivalirudin (DBL) 26568011000036104 bivalirudin 250 mg injection, 1 vial 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +852221000168103 Olmesartan/Amlodipine 20/5 (Myl) film-coated tablet, 30, blister pack 273618 852211000168105 Olmesartan/Amlodipine 20/5 (Myl) film-coated tablet, 30 852181000168106 Olmesartan/Amlodipine 20/5 (Myl) film-coated tablet 852171000168108 Olmesartan/Amlodipine 20/5 (Myl) 852171000168108 Olmesartan/Amlodipine 20/5 (Myl) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +923760011000036108 Gaviscon Peppermint chewable tablet, 24, blister pack 119282 923267011000036101 Gaviscon Peppermint chewable tablet, 24 922961011000036102 Gaviscon Peppermint chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924101011000036108 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 24 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +923760011000036108 Gaviscon Peppermint chewable tablet, 24, blister pack 156041 923267011000036101 Gaviscon Peppermint chewable tablet, 24 922961011000036102 Gaviscon Peppermint chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924101011000036108 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 24 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +19495011000036106 Lumin 20 mg film-coated tablet, 50, blister pack 55273 12771011000036104 Lumin 20 mg film-coated tablet, 50 6065011000036105 Lumin 20 mg film-coated tablet 4262011000036102 Lumin 4262011000036102 Lumin 27576011000036109 mianserin hydrochloride 20 mg tablet, 50 22915011000036103 mianserin hydrochloride 20 mg tablet 21371011000036103 mianserin +843571000168109 Utrogestan 200 mg shell pessary, 45, blister pack 232824 843561000168103 Utrogestan 200 mg shell pessary, 45 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843551000168100 progesterone 200 mg pessary, 45 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +920731011000036105 Memantine (Apo) 10 mg film-coated tablet, 14, bottle 159576 920419011000036106 Memantine (Apo) 10 mg film-coated tablet, 14 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38839011000036107 memantine hydrochloride 10 mg tablet, 14 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +136801000036109 Flebogamma 5% DIF 5 g/100 mL injection solution, 100 mL vial 143801 136561000036105 Flebogamma 5% DIF 5 g/100 mL injection solution, 100 mL vial 136331000036108 Flebogamma 5% DIF 5 g/100 mL injection solution, 100 mL vial 11731000168109 Flebogamma 5% DIF 11731000168109 Flebogamma 5% DIF 933201351000036109 normal immunoglobulin 5 g/100 mL injection, 100 mL vial 933194991000036104 normal immunoglobulin 5 g/100 mL injection, vial 74965011000036103 normal immunoglobulin +84336011000036106 Panto 40 mg enteric tablet, 30, blister pack 158556 84029011000036100 Panto 40 mg enteric tablet, 30 83658011000036103 Panto 40 mg enteric tablet 83563011000036106 Panto 83563011000036106 Panto 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +981491000168108 Desowen 0.05% ointment, 30 g, tube 67174 981481000168105 Desowen 0.05% ointment, 30 g 981371000168100 Desowen 0.05% ointment 39556011000036104 Desowen 39556011000036104 Desowen 981471000168107 desonide 0.05% ointment, 30 g 981361000168106 desonide 0.05% ointment 44914011000036107 desonide +69172011000036101 Magnesium Chloride (DBL) 480 mg/5 mL concentrated injection, 50 x 5 mL ampoules 16310 66972011000036108 Magnesium Chloride (DBL) 480 mg/5 mL concentrated injection, 50 x 5 mL ampoules 65475011000036100 Magnesium Chloride (DBL) 480 mg/5 mL concentrated injection, 5 mL ampoule 65158011000036105 Magnesium Chloride (DBL) 65158011000036105 Magnesium Chloride (DBL) 71545011000036105 magnesium chloride 480 mg/5 mL injection, 50 x 5 mL ampoules 70053011000036103 magnesium chloride 480 mg/5 mL injection, ampoule 878861000168107 magnesium +69149011000036105 Strepsils lemon sugar free lozenge, 4, blister pack 153118 66949011000036104 Strepsils lemon sugar free lozenge, 4 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71524011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 4 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1023251000168104 Bambini Teething 8.7% oral gel, 30 g, tube 223918 1023241000168101 Bambini Teething 8.7% oral gel, 30 g 1023141000168109 Bambini Teething 8.7% oral gel 1023071000168103 Bambini Teething 1023071000168103 Bambini Teething 1023231000168105 choline salicylate 8.7% oral gel, 30 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +963131000168102 Arflox 500 mg film-coated tablet, 10, bottle 92368 962901000168103 Arflox 500 mg film-coated tablet, 10 962861000168109 Arflox 500 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 933199771000036102 ciprofloxacin 500 mg tablet, 10 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +931470011000036101 Paroxetine (SAU) 20 mg film-coated tablet, 30, blister pack 152490 930649011000036104 Paroxetine (SAU) 20 mg film-coated tablet, 30 929990011000036100 Paroxetine (SAU) 20 mg film-coated tablet 929841011000036109 Paroxetine (SAU) 929841011000036109 Paroxetine (SAU) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +69561011000036106 Clearasil Pimple Treatment Tinted cream, 18.5 g, tube 60753 67361011000036103 Clearasil Pimple Treatment Tinted cream, 18.5 g 65630011000036108 Clearasil Pimple Treatment Tinted cream 29201000168102 Clearasil Pimple Treatment Tinted 29201000168102 Clearasil Pimple Treatment Tinted 71901011000036109 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream, 18.5 g 70241011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream 69816011000036101 bentonite + precipitated sulfur + triclosan +846421000168101 Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices 231152 846411000168108 Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices 846371000168107 Repatha Sureclick 140 mg/mL injection solution, injection device 846351000168103 Repatha Sureclick 846351000168103 Repatha Sureclick 806221000168109 evolocumab 140 mg/mL injection, 2 x 1 mL injection devices 806071000168100 evolocumab 140 mg/mL injection, injection device 805961000168102 evolocumab +810411000168101 Actonel Combi D effervescent granules, 24 sachets 810401000168104 Actonel Combi D effervescent granules, 24 sachets 810371000168102 Actonel Combi D effervescent granules, 1 sachet 35975011000036105 Actonel Combi D 35975011000036105 Actonel Combi D 810251000168101 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 24 sachets 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +19760011000036105 Periactin 4 mg uncoated tablet, 50, blister pack 62384 13021011000036105 Periactin 4 mg uncoated tablet, 50 6308011000036102 Periactin 4 mg uncoated tablet 3061011000036100 Periactin 3061011000036100 Periactin 27497011000036107 cyproheptadine hydrochloride sesquihydrate 4 mg tablet, 50 22840011000036109 cyproheptadine hydrochloride sesquihydrate 4 mg tablet 21554011000036101 cyproheptadine +1022201000168107 Butafen 200 mg film-coated tablet, 24, blister pack 155484 1022191000168109 Butafen 200 mg film-coated tablet, 24 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61138011000036108 Actifed CC Dry Cough 1 mg/mL oral liquid solution, 30 mL, bottle 72948 57081011000036103 Actifed CC Dry Cough 1 mg/mL oral liquid solution, 30 mL 54188011000036106 Actifed CC Dry Cough 1 mg/mL oral liquid solution 7921000168104 Actifed CC Dry Cough 7921000168104 Actifed CC Dry Cough 63965011000036100 pholcodine 1 mg/mL oral liquid, 30 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +77192011000036101 Inomax 800 ppm medicinal gas, 353 L, gas cylinder 128136 76608011000036102 Inomax 800 ppm medicinal gas, 353 L 76060011000036106 Inomax 800 ppm medicinal gas 21991000168101 Inomax 21991000168101 Inomax 78162011000036107 nitric oxide 800 ppm gas, 353 L 77520011000036100 nitric oxide 800 ppm gas 77477011000036107 nitric oxide +947331000168102 Gliclazide MR (Ardix) 30 mg modified release tablet, 100, blister pack 139729 947321000168100 Gliclazide MR (Ardix) 30 mg modified release tablet, 100 947261000168101 Gliclazide MR (Ardix) 30 mg modified release tablet 676731000168103 Gliclazide MR (Ardix) 676731000168103 Gliclazide MR (Ardix) 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +928935011000036102 Paracetamol (Sandoz) 500 mg uncoated tablet, 100, bottle 154938 33295011000036106 Paracetamol (Sandoz) 500 mg uncoated tablet, 100 33057011000036101 Paracetamol (Sandoz) 500 mg uncoated tablet 32984011000036104 Paracetamol (Sandoz) 32984011000036104 Paracetamol (Sandoz) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +756641000168108 Pramipexole ER (Apo) 3 mg modified release tablet, 10, blister pack 225627 756631000168104 Pramipexole ER (Apo) 3 mg modified release tablet, 10 756611000168109 Pramipexole ER (Apo) 3 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 756621000168102 pramipexole dihydrochloride monohydrate 3 mg modified release tablet, 10 87761011000036101 pramipexole dihydrochloride monohydrate 3 mg modified release tablet 37716011000036100 pramipexole +37355011000036101 Cymbalta 30 mg enteric capsule, 28, blister pack 120382 36697011000036108 Cymbalta 30 mg enteric capsule, 28 36128011000036100 Cymbalta 30 mg enteric capsule 35918011000036106 Cymbalta 35918011000036106 Cymbalta 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +818771000168101 Quetiapine XR (Apo) 300 mg modified release tablet, 30, blister pack 226818 818761000168107 Quetiapine XR (Apo) 300 mg modified release tablet, 30 818731000168104 Quetiapine XR (Apo) 300 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 795801000168108 quetiapine 300 mg modified release tablet, 30 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +86027011000036103 Coveram 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 154439 85679011000036102 Coveram 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10 85330011000036100 Coveram 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet 24931000168102 Coveram 5mg/10mg (perindopril arginine/amlodipine) 24931000168102 Coveram 5mg/10mg (perindopril arginine/amlodipine) 86425011000036103 perindopril arginine 5 mg + amlodipine 10 mg tablet, 10 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +34751011000036109 Kapanol 100 mg modified release capsule, 60, blister pack 48136 34332011000036103 Kapanol 100 mg modified release capsule, 60 5235011000036105 Kapanol 100 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 35180011000036109 morphine sulfate pentahydrate 100 mg modified release capsule, 60 22555011000036103 morphine sulfate pentahydrate 100 mg modified release capsule 21252011000036100 morphine +1044721000168102 Escitalopram (Sandoz) 10 mg film-coated tablet, 28, blister pack 290455 1044711000168109 Escitalopram (Sandoz) 10 mg film-coated tablet, 28 1044701000168106 Escitalopram (Sandoz) 10 mg film-coated tablet 1044661000168104 Escitalopram (Sandoz) 1044661000168104 Escitalopram (Sandoz) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +69466011000036108 Pinetarsol 1.6% gel, 100 g, tube 49249 67266011000036102 Pinetarsol 1.6% gel, 100 g 65583011000036100 Pinetarsol 1.6% gel 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 72034011000036106 tar 1.6% gel, 100 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +926961000168109 Emthexate 5 mg/2 mL injection solution, 25 x 2 mL vials 42765 926951000168107 Emthexate 5 mg/2 mL injection solution, 25 x 2 mL vials 926931000168101 Emthexate 5 mg/2 mL injection solution, 2 mL vial 926861000168102 Emthexate 926861000168102 Emthexate 926941000168105 methotrexate 5 mg/2 mL injection, 25 x 2 mL vials 22290011000036105 methotrexate 5 mg/2 mL injection, vial 21342011000036105 methotrexate +933238911000036108 Fentanyl (Sandoz) 12 microgram/hour patch, 7, sachet 152572 933236121000036104 Fentanyl (Sandoz) 12 microgram/hour patch, 7 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236131000036102 fentanyl 12 microgram/hour patch, 7 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +980491000168102 Eloxatin 50 mg powder for injection, 1 vial 75455 980481000168100 Eloxatin 50 mg powder for injection, 1 vial 980471000168103 Eloxatin 50 mg powder for injection, 50 mg vial 3353011000036109 Eloxatin 3353011000036109 Eloxatin 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +59689011000036103 Advil 200 mg sugar coated tablet, 2, blister pack 104221 55684011000036109 Advil 200 mg sugar coated tablet, 2 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63628011000036100 ibuprofen 200 mg tablet, 2 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +18818011000036105 Glyade 80 mg uncoated tablet, 100, blister pack 17650 12137011000036104 Glyade 80 mg uncoated tablet, 100 4675011000036104 Glyade 80 mg uncoated tablet 12101000168106 Glyade 12101000168106 Glyade 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +56211000036103 Anesia 1% 200 mg/20 mL injection emulsion, 5 x 20 mL vials 153210 51551000036106 Anesia 1% 200 mg/20 mL injection emulsion, 5 x 20 mL vials 48931000036103 Anesia 1% 200 mg/20 mL injection emulsion, 20 mL vial 43431000168108 Anesia 1% 43431000168108 Anesia 1% 927311011000036108 propofol 200 mg/20 mL injection, 5 x 20 mL vials 38040011000036103 propofol 200 mg/20 mL injection, vial 37750011000036109 propofol +931607011000036105 Pratin 80 mg film-coated tablet, 90, bottle 163559 930768011000036105 Pratin 80 mg film-coated tablet, 90 930039011000036106 Pratin 80 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932409011000036101 pravastatin sodium 80 mg tablet, 90 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +80018011000036104 Topiramate (Apo) 50 mg film-coated tablet, 60, bottle 124734 79953011000036109 Topiramate (Apo) 50 mg film-coated tablet, 60 79917011000036108 Topiramate (Apo) 50 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +1056521000168103 Atorvastatin (Ran) 10 mg film-coated tablet, 30, blister pack 179824 1056511000168105 Atorvastatin (Ran) 10 mg film-coated tablet, 30 1056501000168107 Atorvastatin (Ran) 10 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +801631000168103 Abilify 2 mg uncoated tablet, 28, blister pack 91001 801621000168101 Abilify 2 mg uncoated tablet, 28 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801611000168108 aripiprazole 2 mg tablet, 28 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +748121000168105 Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices 153980 748111000168103 Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices 748031000168107 Victoza 6 mg/mL injection solution, 3 mL injection device 97761000036103 Victoza 97761000036103 Victoza 748101000168101 liraglutide 6 mg/mL injection, 3 x 3 mL injection devices 748021000168109 liraglutide 6 mg/mL injection, 3 mL injection device 105271000036100 liraglutide +990141000168102 Paracetamol plus Codeine and Calmative (Blooms The Chemist) uncoated tablet, 20, blister pack 274570 990131000168106 Paracetamol plus Codeine and Calmative (Blooms The Chemist) uncoated tablet, 20 990121000168108 Paracetamol plus Codeine and Calmative (Blooms The Chemist) uncoated tablet 990111000168101 Paracetamol plus Codeine and Calmative (Blooms The Chemist) 990111000168101 Paracetamol plus Codeine and Calmative (Blooms The Chemist) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +713821000168102 Olanzapine (Auro) 2.5 mg uncoated tablet, 28, blister pack 179926 713811000168109 Olanzapine (Auro) 2.5 mg uncoated tablet, 28 713801000168106 Olanzapine (Auro) 2.5 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +1027591000168100 Neuroccord 25 mg hard capsule, 56, blister pack 235847 1027481000168102 Neuroccord 25 mg hard capsule, 56 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +59974011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 40 mL, bottle 120724 55936011000036106 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 40 mL 53666011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63164011000036101 ibuprofen 40 mg/mL oral liquid, 40 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +37528011000036106 Ancotil 2.5 g/250 mL injection solution, 5 x 250 mL bottles 13705 36796011000036100 Ancotil 2.5 g/250 mL injection solution, 5 x 250 mL bottles 36009011000036108 Ancotil 2.5 g/250 mL injection solution, 250 mL bottle 35991011000036101 Ancotil 35991011000036101 Ancotil 38693011000036107 flucytosine 2.5 g/250 mL injection, 5 x 250 mL bottles 37930011000036103 flucytosine 2.5 g/250 mL injection, bottle 37777011000036107 flucytosine +68815011000036106 Dencorub Arthritis Ice Therapy 4% gel, 200 g, jar 10228 66491011000036106 Dencorub Arthritis Ice Therapy 4% gel, 200 g 65474011000036104 Dencorub Arthritis Ice Therapy 4% gel 65039011000036108 Dencorub Arthritis Ice Therapy 65039011000036108 Dencorub Arthritis Ice Therapy 71224011000036102 menthol 4% gel, 200 g 69906011000036106 menthol 4% gel 52233011000036104 menthol +780271000168109 Oxycodone MR (GenRx) 30 mg modified release tablet, 20, blister pack 214489 780261000168103 Oxycodone MR (GenRx) 30 mg modified release tablet, 20 780251000168100 Oxycodone MR (GenRx) 30 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +61207011000036101 Strong Pain (Pharmacist) uncoated tablet, 96, blister pack 75646 57143011000036103 Strong Pain (Pharmacist) uncoated tablet, 96 54216011000036106 Strong Pain (Pharmacist) uncoated tablet 53175011000036105 Strong Pain (Pharmacist) 53175011000036105 Strong Pain (Pharmacist) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +892641000168102 Idelvion (1 x 1000 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 259939 892631000168106 Idelvion (1 x 1000 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 892611000168101 Idelvion (albutrepenonacog alfa 1000 units) powder for injection, 1000 units vial 887771000168104 Idelvion 887771000168104 Idelvion 892621000168108 albutrepenonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 892601000168104 albutrepenonacog alfa 1000 units injection, vial 887781000168101 albutrepenonacog alfa +892641000168102 Idelvion (1 x 1000 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 259939 892631000168106 Idelvion (1 x 1000 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 887811000168104 Idelvion (inert substance) diluent, 2.5 mL vial 887771000168104 Idelvion 887771000168104 Idelvion 892621000168108 albutrepenonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 633571000168100 inert substance diluent, 2.5 mL vial 21220011000036103 inert substance +681811000168102 Esomeprazole (Apotex) 20 mg enteric tablet, 30, blister pack 210849 681801000168100 Esomeprazole (Apotex) 20 mg enteric tablet, 30 681751000168106 Esomeprazole (Apotex) 20 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +827451000168105 Prevenar-13 injection suspension, 0.5 mL syringe 158450 827441000168108 Prevenar-13 injection suspension, 0.5 mL syringe 827421000168102 Prevenar-13 injection suspension, 0.5 mL syringe 922925011000036105 Prevenar-13 922925011000036105 Prevenar-13 827431000168104 pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe 827411000168109 pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe 827401000168106 pneumococcal 13 valent conjugate vaccine +20290011000036104 Frusemide (Terry White Chemists) 20 mg uncoated tablet, 100, bottle 186513 13499011000036106 Frusemide (Terry White Chemists) 20 mg uncoated tablet, 100 6781011000036109 Frusemide (Terry White Chemists) 20 mg uncoated tablet 3657011000036109 Frusemide (Terry White Chemists) 3657011000036109 Frusemide (Terry White Chemists) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +20290011000036104 Frusemide (Terry White Chemists) 20 mg uncoated tablet, 100, bottle 75575 13499011000036106 Frusemide (Terry White Chemists) 20 mg uncoated tablet, 100 6781011000036109 Frusemide (Terry White Chemists) 20 mg uncoated tablet 3657011000036109 Frusemide (Terry White Chemists) 3657011000036109 Frusemide (Terry White Chemists) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +24541000036106 Atorvachol 40 mg film-coated tablet, 30, blister pack 178542 22671000036109 Atorvachol 40 mg film-coated tablet, 30 20691000036109 Atorvachol 40 mg film-coated tablet 19871000036105 Atorvachol 19871000036105 Atorvachol 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +79076011000036105 Ramipril (Chemmart) 2.5 mg tablet, 30, blister pack 231164 78853011000036101 Ramipril (Chemmart) 2.5 mg tablet, 30 78659011000036106 Ramipril (Chemmart) 2.5 mg tablet 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +79076011000036105 Ramipril (Chemmart) 2.5 mg tablet, 30, blister pack 150894 78853011000036101 Ramipril (Chemmart) 2.5 mg tablet, 30 78659011000036106 Ramipril (Chemmart) 2.5 mg tablet 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +1031791000168104 Aten 100 mg film-coated tablet, 14, blister pack 197718 1031781000168102 Aten 100 mg film-coated tablet, 14 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031771000168100 atenolol 100 mg tablet, 14 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +20702011000036108 Alprax 250 microgram uncoated tablet, 50, blister pack 82638 13875011000036105 Alprax 250 microgram uncoated tablet, 50 7162011000036108 Alprax 250 microgram uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 28280011000036103 alprazolam 250 microgram tablet, 50 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +993271000168108 Lyrica 200 mg hard capsule, 60, blister pack 99533 993261000168102 Lyrica 200 mg hard capsule, 60 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1105801000168103 Valpam 5 mg uncoated tablet, 200, bottle 80812 1105791000168104 Valpam 5 mg uncoated tablet, 200 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105781000168102 diazepam 5 mg tablet, 200 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +680531000168103 Temodal 20 mg hard capsule, 5, sachet 164211 13245011000036103 Temodal 20 mg hard capsule, 5 6527011000036107 Temodal 20 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +809091000168107 Pemetrexed (MYX) 1 g powder for injection, 1 vial 222419 809081000168109 Pemetrexed (MYX) 1 g powder for injection, 1 vial 809071000168106 Pemetrexed (MYX) 1 g powder for injection, vial 736411000168106 Pemetrexed (MYX) 736411000168106 Pemetrexed (MYX) 742891000168100 pemetrexed 1 g injection, 1 vial 742871000168101 pemetrexed 1 g injection, vial 21321011000036102 pemetrexed +921824011000036102 Quitx Freshmint 4 mg chewing gum, 96, blister pack 143432 921414011000036100 Quitx Freshmint 4 mg chewing gum, 96 920993011000036107 Quitx Freshmint 4 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +990211000168106 Benadryl Mucus Relief 100 mg/5 mL oral liquid solution, 150 mL, bottle 204233 990201000168108 Benadryl Mucus Relief 100 mg/5 mL oral liquid solution, 150 mL 990181000168107 Benadryl Mucus Relief 100 mg/5 mL oral liquid solution, 5 mL 990171000168109 Benadryl Mucus Relief 990171000168109 Benadryl Mucus Relief 990191000168105 guaifenesin 100 mg/5 mL oral liquid, 150 mL 62028011000036101 guaifenesin 100 mg/5 mL oral liquid 61763011000036101 guaifenesin +927702011000036104 Axit 45 mg film-coated tablet, 30, blister pack 164493 927638011000036104 Axit 45 mg film-coated tablet, 30 927591011000036107 Axit 45 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +74769011000036106 Decongestant (Chemists' Own) Refill 0.05% nasal spray, 20 mL, bottle 117459 74220011000036103 Decongestant (Chemists' Own) Refill 0.05% nasal spray, 20 mL 73783011000036109 Decongestant (Chemists' Own) Refill 0.05% nasal spray 73767011000036102 Decongestant (Chemists' Own) 73767011000036102 Decongestant (Chemists' Own) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +696741000168102 Gliolan 30 mg/mL powder for oral liquid, 1.5 g, vial 202549 696731000168106 Gliolan 30 mg/mL powder for oral liquid, 1.5 g 696711000168101 Gliolan 30 mg/mL powder for oral liquid 696691000168104 Gliolan 696691000168104 Gliolan 696721000168108 aminolevulinic acid hydrochloride 30 mg/mL powder for oral liquid, 1.5 g 696701000168104 aminolevulinic acid hydrochloride 30 mg/mL powder for oral liquid 44958011000036105 aminolevulinic acid +955821000168102 Ramipril (Winthrop) 10 mg hard capsule, 7, blister pack 128854 955811000168109 Ramipril (Winthrop) 10 mg hard capsule, 7 933219401000036103 Ramipril (Winthrop) 10 mg hard capsule 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 46765011000036109 ramipril 10 mg capsule, 7 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +110991000036104 Foltabs 500 microgram uncoated tablet, 100, bottle 192487 109281000036101 Foltabs 500 microgram uncoated tablet, 100 107571000036108 Foltabs 500 microgram uncoated tablet 106351000036107 Foltabs 106351000036107 Foltabs 27037011000036107 folic acid 500 microgram tablet, 100 22410011000036105 folic acid 500 microgram tablet 21654011000036106 folic acid +933214351000036109 Seralin 100 mg film-coated tablet, 28, blister pack 160778 933203591000036107 Seralin 100 mg film-coated tablet, 28 933195851000036101 Seralin 100 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 46996011000036108 sertraline 100 mg tablet, 28 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +869221000168103 Pacrolim 5 mg hard capsule, 10, blister pack 224271 869211000168105 Pacrolim 5 mg hard capsule, 10 869201000168107 Pacrolim 5 mg hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 749331000168100 tacrolimus 5 mg capsule, 10 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +59666011000036105 Snuzaid Gel 50 mg soft capsule, 10, blister pack 101286 55658011000036105 Snuzaid Gel 50 mg soft capsule, 10 53724011000036104 Snuzaid Gel 50 mg soft capsule 62711000168107 Snuzaid Gel 62711000168107 Snuzaid Gel 63549011000036100 diphenhydramine hydrochloride 50 mg capsule, 10 62012011000036109 diphenhydramine hydrochloride 50 mg capsule 61716011000036106 diphenhydramine +848841000168109 Rivastigmelon-5 4.6 mg/24 hours patch, 7, sachet 233745 848831000168100 Rivastigmelon-5 4.6 mg/24 hours patch, 7 848821000168103 Rivastigmelon-5 4.6 mg/24 hours patch 848811000168105 Rivastigmelon-5 848811000168105 Rivastigmelon-5 771451000168103 rivastigmine 4.6 mg/24 hours patch, 7 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +1030881000168102 Aten 50 mg film-coated tablet, 10, blister pack 197716 1030871000168100 Aten 50 mg film-coated tablet, 10 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1030861000168106 atenolol 50 mg tablet, 10 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +926848011000036108 Hydrogen Peroxide (Gold Cross) 3% solution, 100 mL, bottle 27200 926244011000036109 Hydrogen Peroxide (Gold Cross) 3% solution, 100 mL 925695011000036102 Hydrogen Peroxide (Gold Cross) 3% solution 920953011000036101 Hydrogen Peroxide (Gold Cross) 920953011000036101 Hydrogen Peroxide (Gold Cross) 71334011000036108 hydrogen peroxide 3% solution, 100 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +931457011000036102 Ranitidine (GA) 300 mg film-coated tablet, 30, blister pack 148520 930636011000036109 Ranitidine (GA) 300 mg film-coated tablet, 30 929982011000036102 Ranitidine (GA) 300 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +1094061000168101 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 15 mL, bottle 281339 1094051000168103 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 15 mL 1093961000168103 Antimicrobial Hand Sanitiser (Elyptol) 70% gel 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1094041000168100 ethanol 70% gel, 15 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +742821000168102 Pemetrexed (Juno) 100 mg powder for injection, 1 vial 223304 742811000168109 Pemetrexed (Juno) 100 mg powder for injection, 1 vial 742801000168106 Pemetrexed (Juno) 100 mg powder for injection, 100 mg vial 742771000168109 Pemetrexed (Juno) 742771000168109 Pemetrexed (Juno) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +61380011000036105 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 20 mL, bottle 81817 57305011000036101 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 20 mL 54267011000036105 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 63883011000036106 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 20 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +993431000168109 Lyrica 200 mg hard capsule, 14, bottle 99534 993161000168108 Lyrica 200 mg hard capsule, 14 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +933214311000036105 Tralen 50 mg film-coated tablet, 28, blister pack 160773 933203531000036106 Tralen 50 mg film-coated tablet, 28 933195841000036104 Tralen 50 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 46995011000036101 sertraline 50 mg tablet, 28 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +44433011000036101 Midazolam (DBL) 50 mg/10 mL injection, 5 x 10 mL ampoules 71998 41889011000036105 Midazolam (DBL) 50 mg/10 mL injection, 5 x 10 mL ampoules 40244011000036100 Midazolam (DBL) 50 mg/10 mL injection, 10 mL ampoule 39659011000036101 Midazolam (DBL) 39659011000036101 Midazolam (DBL) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +826351000168101 Meruvax II (1 x 1000 TCID50 vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 10495 826341000168103 Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 826321000168109 Meruvax II (rubella live vaccine) powder for injection, vial 73729011000036100 Meruvax II 73729011000036100 Meruvax II 826331000168107 rubella live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 826311000168102 rubella live vaccine injection, vial 826301000168100 rubella live vaccine +826351000168101 Meruvax II (1 x 1000 TCID50 vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 10495 826341000168103 Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 634331000168105 Meruvax II (inert substance) diluent, 0.5 mL vial 73729011000036100 Meruvax II 73729011000036100 Meruvax II 826331000168107 rubella live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 634321000168107 inert substance diluent, 0.5 mL vial 21220011000036103 inert substance +840561000168109 Flolan (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack, composite pack 80342 840551000168107 Flolan (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack 7054011000036104 Flolan (epoprostenol 500 microgram) powder for injection, 500 microgram vial 2928011000036100 Flolan 2928011000036100 Flolan 817391000168100 epoprostenol 500 microgram injection [1 vial] (&) inert substance diluent [2 x 50 mL vials], 1 pack 23254011000036103 epoprostenol 500 microgram injection, vial 21703011000036107 epoprostenol +840561000168109 Flolan (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack, composite pack 80342 840551000168107 Flolan (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack 638621000168107 Flolan (inert substance) diluent, 50 mL vial 2928011000036100 Flolan 2928011000036100 Flolan 817391000168100 epoprostenol 500 microgram injection [1 vial] (&) inert substance diluent [2 x 50 mL vials], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +1079631000168105 Cold and Flu Relief PE Day and Night (Amcal) (36 x Day tablets, 12 x Night tablets), 48, blister pack 223837 1079621000168107 Cold and Flu Relief PE Day and Night (Amcal) (36 x Day tablets, 12 x Night tablets), 48 1079531000168106 Cold and Flu Relief PE Day and Night (Day) (Amcal) film-coated tablet 1079501000168104 Cold and Flu Relief PE Day and Night (Amcal) 1079511000168101 Cold and Flu Relief PE Day and Night (Day) (Amcal) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1079631000168105 Cold and Flu Relief PE Day and Night (Amcal) (36 x Day tablets, 12 x Night tablets), 48, blister pack 223837 1079621000168107 Cold and Flu Relief PE Day and Night (Amcal) (36 x Day tablets, 12 x Night tablets), 48 1079541000168102 Cold and Flu Relief PE Day and Night (Night) (Amcal) film-coated tablet 1079501000168104 Cold and Flu Relief PE Day and Night (Amcal) 1079521000168108 Cold and Flu Relief PE Day and Night (Night) (Amcal) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +85059011000036109 Cellcept 250 mg hard capsule, 100, blister pack 67313 84923011000036108 Cellcept 250 mg hard capsule, 100 6474011000036105 Cellcept 250 mg hard capsule 4308011000036109 Cellcept 4308011000036109 Cellcept 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +79067011000036102 Podophyllin Compound APF (extemporaneous) paint, 25 mL, poison bottle 78779011000036102 Podophyllin Compound APF (extemporaneous) paint, 25 mL 78622011000036100 Podophyllin Compound APF (extemporaneous) paint 59261000168100 Podophyllin Compound APF (extemporaneous) 59261000168100 Podophyllin Compound APF (extemporaneous) 79198011000036105 podophyllum resin 15% + compound benzoin tincture paint, 25 mL 79103011000036103 podophyllum resin 15% + compound benzoin tincture paint 79092011000036101 podophyllum resin + compound benzoin tincture +69483011000036104 Strepsils Plus lozenge, 18, blister pack 50509 67283011000036106 Strepsils Plus lozenge, 18 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71831011000036108 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 18 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +853411000168104 Alphastat 5 mg film-coated tablet, 7, bottle 187386 853401000168102 Alphastat 5 mg film-coated tablet, 7 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +853411000168104 Alphastat 5 mg film-coated tablet, 7, bottle 212158 853401000168102 Alphastat 5 mg film-coated tablet, 7 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1118451000168108 Quetin 300 mg film-coated tablet, 60, blister pack 204827 1118441000168106 Quetin 300 mg film-coated tablet, 60 1118411000168107 Quetin 300 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +749811000168103 Tacrolimus (CH) 1 mg hard capsule, 10, blister pack 224281 749801000168101 Tacrolimus (CH) 1 mg hard capsule, 10 749791000168102 Tacrolimus (CH) 1 mg hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 749071000168100 tacrolimus 1 mg capsule, 10 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +82377011000036104 Coplavix 75 mg/100 mg film-coated tablet, 84, blister pack 150443 82166011000036103 Coplavix 75 mg/100 mg film-coated tablet, 84 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82554011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 84 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +52185011000036105 Gentian Alkaline Mixture BP (extemporaneous) oral liquid solution, 200 mL, dispensing bottle 52069011000036104 Gentian Alkaline Mixture BP (extemporaneous) oral liquid solution, 200 mL 51970011000036105 Gentian Alkaline Mixture BP (extemporaneous) oral liquid solution 51940011000036106 Gentian Alkaline Mixture BP (extemporaneous) 51940011000036106 Gentian Alkaline Mixture BP (extemporaneous) 52317011000036106 concentrated compound gentian infusion 0.1 mL/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 52249011000036100 concentrated compound gentian infusion 0.1 mL/mL + sodium bicarbonate 50 mg/mL oral liquid 52231011000036100 concentrated compound gentian infusion + bicarbonate +61034011000036106 Imodium Advanced chewable tablet, 8, blister pack 66848 56977011000036109 Imodium Advanced chewable tablet, 8 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63675011000036105 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 8 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +50583011000036105 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 100, blister pack 134855 49615011000036109 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 100 4947011000036106 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +656091000168103 Rabeprazole Sodium (AN) 20 mg enteric tablet, 30, bottle 189218 656081000168101 Rabeprazole Sodium (AN) 20 mg enteric tablet, 30 656071000168104 Rabeprazole Sodium (AN) 20 mg enteric tablet 656061000168105 Rabeprazole Sodium (AN) 656061000168105 Rabeprazole Sodium (AN) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +925225011000036107 Ropicor-0.5 500 microgram film-coated tablet, 84, bottle 157774 924762011000036105 Ropicor-0.5 500 microgram film-coated tablet, 84 924463011000036109 Ropicor-0.5 500 microgram film-coated tablet 18811000168102 Ropicor-0.5 18811000168102 Ropicor-0.5 46971011000036105 ropinirole 500 microgram tablet, 84 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +60101011000036104 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 200 mL, bottle 126543 56062011000036108 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 200 mL 53775011000036101 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 5 mL 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +61550011000036103 Pain (Chemists' Own) uncoated tablet, 12, blister pack 93836 57472011000036108 Pain (Chemists' Own) uncoated tablet, 12 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 63876011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 12 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +993201000168103 Lyrica 200 mg hard capsule, 20, blister pack 99533 993191000168101 Lyrica 200 mg hard capsule, 20 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 903271000168106 pregabalin 200 mg capsule, 20 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +967241000168108 Febridol Plus uncoated tablet, 40, blister pack 154874 967231000168104 Febridol Plus uncoated tablet, 40 51998011000036101 Febridol Plus uncoated tablet 44291000168106 Febridol Plus 44291000168106 Febridol Plus 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +69241011000036108 Chlorhexidine Acetate (Baxter) 0.1% (1 g/L) irrigation solution, 1 L bottle 19463 67041011000036106 Chlorhexidine Acetate (Baxter) 0.1% (1 g/L) irrigation solution, 1 L bottle 65197011000036102 Chlorhexidine Acetate (Baxter) 0.1% (1 g/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71611011000036105 chlorhexidine acetate 0.1% (1 g/L) solution, 1 L bottle 70091011000036108 chlorhexidine acetate 0.1% (1 g/L) solution, bottle 21404011000036101 chlorhexidine +69532011000036109 Egozite Protective Baby 15% lotion, 375 mL, bottle 56806 67332011000036100 Egozite Protective Baby 15% lotion, 375 mL 65615011000036107 Egozite Protective Baby 15% lotion 65110011000036102 Egozite Protective Baby 65110011000036102 Egozite Protective Baby 71877011000036102 dimeticone-350 15% lotion, 375 mL 70228011000036103 dimeticone-350 15% lotion 69855011000036101 dimeticone-350 +20163011000036107 Gemfibrozil (Chemmart) 600 mg film-coated tablet, 60, bottle 73848 13386011000036107 Gemfibrozil (Chemmart) 600 mg film-coated tablet, 60 6671011000036105 Gemfibrozil (Chemmart) 600 mg film-coated tablet 4021011000036109 Gemfibrozil (Chemmart) 4021011000036109 Gemfibrozil (Chemmart) 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +823201000168104 Cervarix injection suspension, 10 x 0.5 mL syringes 126114 823191000168102 Cervarix injection suspension, 10 x 0.5 mL syringes 823141000168105 Cervarix injection suspension, 0.5 mL syringe 73753011000036102 Cervarix 73753011000036102 Cervarix 823181000168100 human papillomavirus bivalent vaccine injection, 10 x 0.5 mL syringes 823131000168101 human papillomavirus bivalent vaccine injection, 0.5 mL syringe 823121000168104 human papillomavirus bivalent vaccine +933082011000036106 Tramadol Hydrochloride SR (GA) 200 mg modified release tablet, 20, blister pack 154409 932879011000036102 Tramadol Hydrochloride SR (GA) 200 mg modified release tablet, 20 932740011000036106 Tramadol Hydrochloride SR (GA) 200 mg modified release tablet 24991000168103 Tramadol Hydrochloride SR (GA) 24991000168103 Tramadol Hydrochloride SR (GA) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +1096801000168103 Voltaren Emulgel No Mess Applicator 1.16% gel, 180 g, tube 282516 1096791000168104 Voltaren Emulgel No Mess Applicator 1.16% gel, 180 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1096781000168102 diclofenac diethylamine 1.16% gel, 180 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +56371000036103 Dotarem 2.79 g/10 mL injection solution, 10 mL syringe 160798 52151000036107 Dotarem 2.79 g/10 mL injection solution, 10 mL syringe 48851000036100 Dotarem 2.79 g/10 mL injection solution, 10 mL syringe 85269011000036107 Dotarem 85269011000036107 Dotarem 52181000036100 gadoteric acid 2.79 g/10 mL injection, 10 mL syringe 48861000036102 gadoteric acid 2.79 g/10 mL injection, syringe 86191011000036109 gadoteric acid +800181000168104 Abyraz 30 mg uncoated tablet, 20, blister pack 159504 800171000168102 Abyraz 30 mg uncoated tablet, 20 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800161000168108 aripiprazole 30 mg tablet, 20 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +1020511000168108 Aripiprazole (WT) 10 mg uncoated tablet, 250, bottle 217224 1020501000168105 Aripiprazole (WT) 10 mg uncoated tablet, 250 1020471000168104 Aripiprazole (WT) 10 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 1015711000168104 aripiprazole 10 mg tablet, 250 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +80035011000036102 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 vials 130848 79961011000036101 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 vials 79918011000036109 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80058011000036109 oxaliplatin 50 mg injection, 50 vials 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +749831000168108 Tacrolimus (CH) 1 mg hard capsule, 50, blister pack 224281 749821000168105 Tacrolimus (CH) 1 mg hard capsule, 50 749791000168102 Tacrolimus (CH) 1 mg hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 749101000168109 tacrolimus 1 mg capsule, 50 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +32585011000036106 Colifoam Rectal Foam 10% enema, 21.1 g, aerosol can 43026 32380011000036104 Colifoam Rectal Foam 10% enema, 21.1 g 32249011000036107 Colifoam Rectal Foam 10% enema 59271000168106 Colifoam Rectal Foam 59271000168106 Colifoam Rectal Foam 32780011000036103 hydrocortisone acetate 10% enema, 21.1 g 32702011000036100 hydrocortisone acetate 10% enema 21231011000036107 hydrocortisone acetate +1057971000168107 Valpro EC 200 mg enteric tablet, 100, blister pack 286315 1057961000168101 Valpro EC 200 mg enteric tablet, 100 1057911000168104 Valpro EC 200 mg enteric tablet 1057811000168105 Valpro EC 1057811000168105 Valpro EC 27139011000036107 valproate sodium 200 mg enteric tablet, 100 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +77382011000036107 B12 (Blackmores) 100 microgram uncoated tablet, 75, bottle 74185 76798011000036108 B12 (Blackmores) 100 microgram uncoated tablet, 75 76185011000036106 B12 (Blackmores) 100 microgram uncoated tablet 75974011000036103 B12 (Blackmores) 75974011000036103 B12 (Blackmores) 78302011000036100 cyanocobalamin 100 microgram tablet, 75 77600011000036103 cyanocobalamin 100 microgram tablet 77442011000036106 cyanocobalamin +921905011000036100 Exforge HCT 10/160/25 film-coated tablet, 56, blister pack 158166 921464011000036101 Exforge HCT 10/160/25 film-coated tablet, 56 921018011000036102 Exforge HCT 10/160/25 film-coated tablet 7471000168106 Exforge HCT 10/160/25 7471000168106 Exforge HCT 10/160/25 922592011000036104 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 56 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +988931000168105 Canazole One 150 mg hard capsule, 1, strip pack 149498 988921000168107 Canazole One 150 mg hard capsule, 1 988911000168100 Canazole One 150 mg hard capsule 988871000168103 Canazole One 988871000168103 Canazole One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +929124011000036104 Oxycontin 40 mg modified release tablet, 28, bottle 68192 928482011000036101 Oxycontin 40 mg modified release tablet, 28 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +929124011000036104 Oxycontin 40 mg modified release tablet, 28, bottle 200036 928482011000036101 Oxycontin 40 mg modified release tablet, 28 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +926665011000036102 Nicorette Classic 2 mg chewing gum, 30, blister pack 12515 926125011000036108 Nicorette Classic 2 mg chewing gum, 30 87066011000036109 Nicorette Classic 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 927324011000036103 nicotine 2 mg gum, 30 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +882271000168108 Spedra 50 mg uncoated tablet, 8, blister pack 228474 882261000168102 Spedra 50 mg uncoated tablet, 8 882111000168105 Spedra 50 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882251000168104 avanafil 50 mg tablet, 8 882101000168107 avanafil 50 mg tablet 882091000168102 avanafil +754101000168107 Xedone 10 mg hard capsule, 20, bottle 227851 754061000168109 Xedone 10 mg hard capsule, 20 754051000168107 Xedone 10 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +1047921000168109 Paracetamol/Codeine 500/30 (Apo) tablet, 50, blister pack 220980 1047911000168102 Paracetamol/Codeine 500/30 (Apo) tablet, 50 1047661000168105 Paracetamol/Codeine 500/30 (Apo) tablet 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +30551000036102 Paracetamol (Medix) 500 mg uncoated tablet, 24, blister pack 177294 28911000036105 Paracetamol (Medix) 500 mg uncoated tablet, 24 26821000036105 Paracetamol (Medix) 500 mg uncoated tablet 26151000036107 Paracetamol (Medix) 26151000036107 Paracetamol (Medix) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +933247591000036106 Iodosorb (66051340) 8 cm x 6 cm medicated dressing, 3 x 10 g sheet, sachet 62774 933244471000036102 Iodosorb (66051340) 8 cm x 6 cm medicated dressing, 3 x 10 g sheet 933241871000036102 Iodosorb (66051340) 8 cm x 6 cm medicated dressing, 10 g sheet 47021000168107 Iodosorb (66051340) 47021000168107 Iodosorb (66051340) 933244481000036100 cadexomer-iodine 8 cm x 6 cm dressing, 3 x 10 g sheet 933241881000036100 cadexomer-iodine 8 cm x 6 cm dressing, 10 g sheet 21550011000036106 cadexomer-iodine +723851000168103 Olanzapine ODT (Sandoz) 20 mg orally disintegrating tablet, 28, blister pack 179093 723841000168100 Olanzapine ODT (Sandoz) 20 mg orally disintegrating tablet, 28 723831000168109 Olanzapine ODT (Sandoz) 20 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +79701011000036107 Allerfexo 120 mg film-coated tablet, 20, blister pack 159415 79517011000036100 Allerfexo 120 mg film-coated tablet, 20 79393011000036107 Allerfexo 120 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 52884011000036101 fexofenadine hydrochloride 120 mg tablet, 20 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +1062321000168102 Cold and Flu PE Day (Cipla) uncoated tablet, 36, blister pack 219457 1062311000168109 Cold and Flu PE Day (Cipla) uncoated tablet, 36 1062241000168102 Cold and Flu PE Day (Cipla) uncoated tablet 1062231000168106 Cold and Flu PE Day (Cipla) 1062231000168106 Cold and Flu PE Day (Cipla) 1062301000168106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 36 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +82400011000036104 Senega and Ammonia Mixture (Amcal) oral liquid solution, 200 mL, bottle 16499 82189011000036105 Senega and Ammonia Mixture (Amcal) oral liquid solution, 200 mL 82031011000036109 Senega and Ammonia Mixture (Amcal) oral liquid solution 81977011000036109 Senega and Ammonia Mixture (Amcal) 81977011000036109 Senega and Ammonia Mixture (Amcal) 27010011000036101 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 200 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +87643011000036102 Perindopril Erbumine (Apo) 4 mg uncoated tablet, 30, blister pack 151912 87439011000036103 Perindopril Erbumine (Apo) 4 mg uncoated tablet, 30 87306011000036106 Perindopril Erbumine (Apo) 4 mg uncoated tablet 10411000168102 Perindopril Erbumine (Apo) 10411000168102 Perindopril Erbumine (Apo) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +792971000168100 Clofeme One Step 500 mg pessary, 1, blister pack 792961000168106 Clofeme One Step 500 mg pessary, 1 53892011000036102 Clofeme One Step 500 mg pessary 16061000168109 Clofeme One Step 16061000168109 Clofeme One Step 28089011000036100 clotrimazole 500 mg pessary, 1 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +990301000168101 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (32 x Day tablets, 16 x Night tablets), 48, blister pack 163459 990291000168102 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (32 x Day tablets, 16 x Night tablets), 48 990251000168107 Day plus Night Cold and Flu Relief PE (Day) (Blooms The Chemist) uncoated tablet 990221000168104 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) 990231000168101 Day plus Night Cold and Flu Relief PE (Day) (Blooms The Chemist) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +990301000168101 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (32 x Day tablets, 16 x Night tablets), 48, blister pack 163459 990291000168102 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (32 x Day tablets, 16 x Night tablets), 48 990261000168109 Day plus Night Cold and Flu Relief PE (Night) (Blooms The Chemist) uncoated tablet 990221000168104 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) 990241000168105 Day plus Night Cold and Flu Relief PE (Night) (Blooms The Chemist) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1065201000168109 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 10, blister pack 294343 1065191000168106 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 10 1065171000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065181000168108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 10 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +110901000036107 Citalo 20 mg film-coated tablet, 84, bottle 158874 930678011000036106 Citalo 20 mg film-coated tablet, 84 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +61371011000036106 Cold and Allergy Mixture (Pharmacy Health) oral liquid solution, 100 mL, bottle 81533 57296011000036103 Cold and Allergy Mixture (Pharmacy Health) oral liquid solution, 100 mL 54263011000036101 Cold and Allergy Mixture (Pharmacy Health) oral liquid solution, 5 mL 4461000168107 Cold and Allergy Mixture (Pharmacy Health) 4461000168107 Cold and Allergy Mixture (Pharmacy Health) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +780031000168102 Bupradone 2/0.5 sublingual tablet, 28, blister pack 152483 780021000168100 Bupradone 2/0.5 sublingual tablet, 28 779921000168101 Bupradone 2/0.5 sublingual tablet 779881000168108 Bupradone 2/0.5 779881000168108 Bupradone 2/0.5 26713011000036106 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet, 28 22108011000036108 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet 21739011000036100 buprenorphine + naloxone +996081000168109 Cisatracurium (Apo) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 237309 996071000168106 Cisatracurium (Apo) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 996061000168100 Cisatracurium (Apo) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 994781000168101 Cisatracurium (Apo) 994781000168101 Cisatracurium (Apo) 157601000036106 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL ampoules 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +19348011000036102 Famvir 250 mg film-coated tablet, 21, blister pack 51389 12636011000036101 Famvir 250 mg film-coated tablet, 21 5598011000036100 Famvir 250 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +757001000168101 Olanzacor 10 mg film-coated tablet, 28, blister pack 207847 756991000168108 Olanzacor 10 mg film-coated tablet, 28 756961000168101 Olanzacor 10 mg film-coated tablet 756671000168101 Olanzacor 756671000168101 Olanzacor 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +1036361000168101 Aranesp with Automatic Needle Guard 200 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 166091 1036351000168103 Aranesp with Automatic Needle Guard 200 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 1036321000168106 Aranesp with Automatic Needle Guard 200 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983941000168105 darbepoetin alfa 200 microgram/0.4 mL injection, 4 x 0.4 mL syringes 983891000168109 darbepoetin alfa 200 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +1032091000168106 Aripra 5 mg uncoated tablet, 100, bottle 217247 1032081000168108 Aripra 5 mg uncoated tablet, 100 1031641000168102 Aripra 5 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +987401000168109 Urorec 4 mg hard capsule, 10, blister pack 275256 987391000168107 Urorec 4 mg hard capsule, 10 987371000168106 Urorec 4 mg hard capsule 987341000168104 Urorec 987341000168104 Urorec 987381000168109 silodosin 4 mg capsule, 10 987361000168100 silodosin 4 mg capsule 987351000168102 silodosin +933239071000036107 Fentanyl (Sandoz) 75 microgram/hour patch, 7, sachet 152568 933235671000036102 Fentanyl (Sandoz) 75 microgram/hour patch, 7 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235681000036100 fentanyl 75 microgram/hour patch, 7 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +61129011000036102 Telfast Decongestant modified release tablet, 6, blister pack 72552 57072011000036100 Telfast Decongestant modified release tablet, 6 54182011000036108 Telfast Decongestant modified release tablet 53507011000036103 Telfast Decongestant 53507011000036103 Telfast Decongestant 63727011000036106 fexofenadine hydrochloride 60 mg + pseudoephedrine hydrochloride 120 mg modified release tablet, 6 62060011000036106 fexofenadine hydrochloride 60 mg + pseudoephedrine hydrochloride 120 mg modified release tablet 61821011000036105 fexofenadine + pseudoephedrine +834621000168106 Codral Forte uncoated tablet, 50, strip pack 11090 834611000168104 Codral Forte uncoated tablet, 50 834401000168104 Codral Forte uncoated tablet 25131000168101 Codral Forte 25131000168101 Codral Forte 834601000168102 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 50 834391000168101 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet 21831011000036102 aspirin + codeine +961441000168103 Lansoprazole (Apo) 15 mg enteric capsule, 28, blister pack 159350 961431000168107 Lansoprazole (Apo) 15 mg enteric capsule, 28 961411000168102 Lansoprazole (Apo) 15 mg enteric capsule 52481000168101 Lansoprazole (Apo) 52481000168101 Lansoprazole (Apo) 961421000168109 lansoprazole 15 mg enteric capsule, 28 22811011000036107 lansoprazole 15 mg enteric capsule 21491011000036101 lansoprazole +929931000168109 Citalopram (DRLA) 20 mg film-coated tablet, 100, bottle 167017 929921000168106 Citalopram (DRLA) 20 mg film-coated tablet, 100 929871000168102 Citalopram (DRLA) 20 mg film-coated tablet 929861000168108 Citalopram (DRLA) 929861000168108 Citalopram (DRLA) 46708011000036102 citalopram 20 mg tablet, 100 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +808851000168103 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) uncoated tablet, 30, blister pack 224323 807611000168101 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) uncoated tablet, 30 807601000168104 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) uncoated tablet 807591000168106 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) 807591000168106 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +86145011000036101 Loratadine (Trust) 10 mg uncoated tablet, 30, blister pack 161830 85753011000036108 Loratadine (Trust) 10 mg uncoated tablet, 30 85375011000036106 Loratadine (Trust) 10 mg uncoated tablet 85288011000036102 Loratadine (Trust) 85288011000036102 Loratadine (Trust) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +60539011000036100 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet, 24, blister pack 152039 56497011000036102 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet, 24 53942011000036104 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet 53346011000036105 Sinus Allergy and Pain Relief PE (Amcal) 53346011000036105 Sinus Allergy and Pain Relief PE (Amcal) 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +679341000168104 Benadryl PE Chesty Cough and Nasal Congestion oral liquid solution, 200 mL, bottle 151717 679331000168108 Benadryl PE Chesty Cough and Nasal Congestion oral liquid solution, 200 mL 679301000168101 Benadryl PE Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 679291000168102 Benadryl PE Chesty Cough and Nasal Congestion 679291000168102 Benadryl PE Chesty Cough and Nasal Congestion 63379011000036101 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 61932011000036107 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61724011000036106 guaifenesin + phenylephrine +1042301000168102 Atorvastatin (AS) 80 mg film-coated tablet, 20, blister pack 178526 1042291000168103 Atorvastatin (AS) 80 mg film-coated tablet, 20 1042201000168109 Atorvastatin (AS) 80 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841821000168107 atorvastatin 80 mg tablet, 20 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +61325011000036109 Paracetamol (Herron) 500 mg uncoated tablet, 12, blister pack 80924 57346011000036101 Paracetamol (Herron) 500 mg uncoated tablet, 12 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +687881000168100 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 184659 687871000168103 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, 2 x 140 actuations 687811000168106 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, actuation 687801000168108 Mometasone Furoate (Apo) 687801000168108 Mometasone Furoate (Apo) 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +1105481000168109 Seroquel 25 mg film-coated tablet, 20, blister pack 58112 1105471000168106 Seroquel 25 mg film-coated tablet, 20 6150011000036101 Seroquel 25 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +928870011000036100 Risperibell 4 mg film-coated tablet, 60, blister pack 139825 928232011000036106 Risperibell 4 mg film-coated tablet, 60 927890011000036104 Risperibell 4 mg film-coated tablet 927801011000036108 Risperibell 927801011000036108 Risperibell 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +710921000168104 Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 65857 710911000168106 Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 710871000168108 Recombinate (inert substance) diluent, 10 mL vial 710851000168104 Recombinate 710851000168104 Recombinate 933205581000036106 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +710921000168104 Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 65857 710911000168106 Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 710901000168108 Recombinate (octocog alfa 500 units) powder for injection, 500 units vial 710851000168104 Recombinate 710851000168104 Recombinate 933205581000036106 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 931815011000036108 octocog alfa 500 units injection, vial 69843011000036100 octocog alfa +933211341000036108 Roflo 250 mg film-coated tablet, 10, blister pack 125322 933200361000036100 Roflo 250 mg film-coated tablet, 10 933194331000036104 Roflo 250 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +671851000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 20, blister pack 196492 671841000168105 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 20 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 671831000168101 metoclopramide hydrochloride 10 mg tablet, 20 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +681991000168104 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet, 100, blister pack 214456 681981000168102 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet, 100 681921000168101 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +860811000168102 Amisulpride (Sanofi) 400 mg film-coated tablet, 60, blister pack 143106 860801000168100 Amisulpride (Sanofi) 400 mg film-coated tablet, 60 860791000168101 Amisulpride (Sanofi) 400 mg film-coated tablet 858991000168105 Amisulpride (Sanofi) 858991000168105 Amisulpride (Sanofi) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +921331000168109 Ceftriaxone (Pfizer) 1 g powder for injection, 10 vials 174446 921321000168106 Ceftriaxone (Pfizer) 1 g powder for injection, 10 vials 921241000168106 Ceftriaxone (Pfizer) 1 g powder for injection, vial 920781000168100 Ceftriaxone (Pfizer) 920781000168100 Ceftriaxone (Pfizer) 922546011000036109 ceftriaxone 1 g injection, 10 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +34682011000036100 Amlodipine (Apo) 5 mg uncoated tablet, 30, blister pack 135124 34268011000036101 Amlodipine (Apo) 5 mg uncoated tablet, 30 33996011000036103 Amlodipine (Apo) 5 mg uncoated tablet 30701000168100 Amlodipine (Apo) 30701000168100 Amlodipine (Apo) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +651991000168106 Minax XL 23.75 mg modified release tablet, 15, blister pack 205151 651981000168108 Minax XL 23.75 mg modified release tablet, 15 651971000168105 Minax XL 23.75 mg modified release tablet 651491000168101 Minax XL 651491000168101 Minax XL 28243011000036102 metoprolol succinate 23.75 mg modified release tablet, 15 23557011000036100 metoprolol succinate 23.75 mg modified release tablet 21662011000036107 metoprolol +984501000168103 Butafen 200 mg sugar coated tablet, 84, blister pack 126093 984491000168105 Butafen 200 mg sugar coated tablet, 84 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 984481000168107 ibuprofen 200 mg tablet, 84 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +926815011000036106 Reaptan 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 170798 926211011000036101 Reaptan 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10 925678011000036102 Reaptan 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet 53051000168108 Reaptan 10mg/5mg (perindopril arginine/amlodipine) 53051000168108 Reaptan 10mg/5mg (perindopril arginine/amlodipine) 86427011000036108 perindopril arginine 10 mg + amlodipine 5 mg tablet, 10 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +87663011000036108 Ciprofloxacin (GA) 750 mg film-coated tablet, 100, blister pack 148856 87425011000036102 Ciprofloxacin (GA) 750 mg film-coated tablet, 100 87303011000036100 Ciprofloxacin (GA) 750 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 87796011000036109 ciprofloxacin 750 mg tablet, 100 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +1101231000168106 Sitagliptin (Chemmart) 25 mg coated tablet, 28, blister pack 224390 1101221000168108 Sitagliptin (Chemmart) 25 mg coated tablet, 28 1101211000168101 Sitagliptin (Chemmart) 25 mg coated tablet 1101031000168102 Sitagliptin (Chemmart) 1101031000168102 Sitagliptin (Chemmart) 39485011000036105 sitagliptin 25 mg tablet, 28 39439011000036103 sitagliptin 25 mg tablet 39426011000036109 sitagliptin +21131011000036105 Paclitaxel (Ebewe) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 98549 14274011000036104 Paclitaxel (Ebewe) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 7560011000036104 Paclitaxel (Ebewe) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 3092011000036109 Paclitaxel (Ebewe) 3092011000036109 Paclitaxel (Ebewe) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +81003011000036102 Animine lotion, 125 mL, bottle 11470 80482011000036109 Animine lotion, 125 mL 80145011000036106 Animine lotion 80098011000036100 Animine 80098011000036100 Animine 81581011000036102 benzalkonium chloride 0.25% + lidocaine (lignocaine) hydrochloride 3% + calamine 20% lotion, 125 mL 81253011000036104 benzalkonium chloride 0.25% + lidocaine (lignocaine) hydrochloride 3% + calamine 20% lotion 81235011000036102 benzalkonium chloride + lidocaine (lignocaine) + calamine +715171000168109 Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g, tube 115390 715161000168103 Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g 715151000168100 Clotrimazole 3 Day (Guardian) 2% vaginal cream 19821000168104 Clotrimazole 3 Day (Guardian) 19821000168104 Clotrimazole 3 Day (Guardian) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +944361000168102 Goserelin (AstraZeneca) 10.8 mg implant, 1, syringe 124404 944351000168104 Goserelin (AstraZeneca) 10.8 mg implant, 1 944341000168101 Goserelin (AstraZeneca) 10.8 mg implant 944301000168103 Goserelin (AstraZeneca) 944301000168103 Goserelin (AstraZeneca) 83015011000036106 goserelin 10.8 mg implant, 1 22169011000036104 goserelin 10.8 mg implant 21305011000036109 goserelin +719441000168108 Diclofenac Sodium (GA) 50 mg enteric tablet, 50, blister pack 68942 80552011000036108 Diclofenac Sodium (GA) 50 mg enteric tablet, 50 80187011000036105 Diclofenac Sodium (GA) 50 mg enteric tablet 53267011000036108 Diclofenac Sodium (GA) 53267011000036108 Diclofenac Sodium (GA) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +754241000168101 Oxycodone (Medis) 20 mg hard capsule, 60, bottle 227832 754211000168100 Oxycodone (Medis) 20 mg hard capsule, 60 754181000168104 Oxycodone (Medis) 20 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +60297011000036106 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 12, blister pack 137681 56256011000036105 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 12 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63268011000036105 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 12 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +909521000168105 Chorit 20 mg film-coated tablet, 6, blister pack 179836 909511000168103 Chorit 20 mg film-coated tablet, 6 909501000168101 Chorit 20 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 841281000168105 atorvastatin 20 mg tablet, 6 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +650481000168109 Latanoprost (GH) 0.005% eye drops solution, 2.5 mL, bottle 200058 650471000168106 Latanoprost (GH) 0.005% eye drops solution, 2.5 mL 650461000168100 Latanoprost (GH) 0.005% eye drops solution 650451000168102 Latanoprost (GH) 650451000168102 Latanoprost (GH) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +1027841000168105 Zaldiar film-coated tablet, 20, blister pack 179677 1027831000168101 Zaldiar film-coated tablet, 20 1027821000168104 Zaldiar film-coated tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 680611000168109 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 20 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +19950011000036105 Dilaudid 2 mg uncoated tablet, 20, bottle 67353 13193011000036109 Dilaudid 2 mg uncoated tablet, 20 6476011000036102 Dilaudid 2 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 27605011000036103 hydromorphone hydrochloride 2 mg tablet, 20 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +19878011000036101 Stocrin 200 mg hard capsule, 90, bottle 65480 13125011000036103 Stocrin 200 mg hard capsule, 90 6408011000036107 Stocrin 200 mg hard capsule 4246011000036109 Stocrin 4246011000036109 Stocrin 27566011000036104 efavirenz 200 mg capsule, 90 22905011000036100 efavirenz 200 mg capsule 21616011000036105 efavirenz +696381000168108 Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles 15709 696371000168105 Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles 696351000168101 Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 50 mL bottle 27581000168100 Ultravist-240 27581000168100 Ultravist-240 696361000168104 iopromide 499 mg (iodine 240 mg)/mL injection, 10 x 50 mL bottles 696341000168103 iopromide 499 mg (iodine 240 mg)/mL injection, 50 mL bottle 77425011000036101 iopromide +1024781000168101 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 14, blister pack 193298 1024771000168104 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 14 1024761000168105 Pregabalin (Blooms The Chemist) 25 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +19633011000036100 EES 400 mg film-coated tablet, 25, bottle 59205 12902011000036109 EES 400 mg film-coated tablet, 25 6192011000036105 EES 400 mg film-coated tablet 4086011000036105 EES 4086011000036105 EES 27690011000036109 erythromycin (as ethylsuccinate) 400 mg tablet, 25 23027011000036101 erythromycin (as ethylsuccinate) 400 mg tablet 21523011000036104 erythromycin ethylsuccinate +156911000036102 Cisatracurium (Pfizer) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 195941 155821000036106 Cisatracurium (Pfizer) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 154931000036104 Cisatracurium (Pfizer) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 154571000036109 Cisatracurium (Pfizer) 154571000036109 Cisatracurium (Pfizer) 157601000036106 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL ampoules 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +988771000168106 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 50, blister pack 135089 988761000168100 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 50 988691000168101 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet 988681000168104 Paracetamol (Blooms The Chemist) 988681000168104 Paracetamol (Blooms The Chemist) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +713661000168106 Pioglitazone (Auro) 45 mg uncoated tablet, 28, blister pack 176383 713651000168109 Pioglitazone (Auro) 45 mg uncoated tablet, 28 713641000168107 Pioglitazone (Auro) 45 mg uncoated tablet 713631000168103 Pioglitazone (Auro) 713631000168103 Pioglitazone (Auro) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +892481000168109 Candesartan HCT 32/25 (Alphapharm) tablet, 7, bottle 206481 892441000168104 Candesartan HCT 32/25 (Alphapharm) tablet, 7 892431000168108 Candesartan HCT 32/25 (Alphapharm) tablet 892421000168105 Candesartan HCT 32/25 (Alphapharm) 892421000168105 Candesartan HCT 32/25 (Alphapharm) 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +986031000168107 Advil Double Strength Caplets 400 mg film-coated tablet, 36, blister pack 207376 986021000168109 Advil Double Strength Caplets 400 mg film-coated tablet, 36 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 986011000168102 ibuprofen 400 mg tablet, 36 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1044951000168108 Pryzex 2.5 mg film-coated tablet, 20, blister pack 178975 1044941000168106 Pryzex 2.5 mg film-coated tablet, 20 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044931000168102 olanzapine 2.5 mg tablet, 20 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +895151000168104 Atomoxetine (Sandoz) 10 mg hard capsule, 7, blister pack 238366 895141000168101 Atomoxetine (Sandoz) 10 mg hard capsule, 7 895131000168105 Atomoxetine (Sandoz) 10 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +60403011000036104 Nurofen Regular 200 mg sugar coated tablet, 12, blister pack 144202 56362011000036109 Nurofen Regular 200 mg sugar coated tablet, 12 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +664911000168108 Mirtazapine (GA) 30 mg film-coated tablet, 30, blister pack 121956 664901000168105 Mirtazapine (GA) 30 mg film-coated tablet, 30 664891000168106 Mirtazapine (GA) 30 mg film-coated tablet 123751000036107 Mirtazapine (GA) 123751000036107 Mirtazapine (GA) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +993111000168105 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 84, blister pack 201680 993101000168107 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 84 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 993091000168102 clopidogrel 75 mg + aspirin 75 mg tablet, 84 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +20584011000036101 Anpec 80 mg film-coated tablet, 100, bottle 80444 13772011000036100 Anpec 80 mg film-coated tablet, 100 7058011000036106 Anpec 80 mg film-coated tablet 3034011000036106 Anpec 3034011000036106 Anpec 27933011000036107 verapamil hydrochloride 80 mg tablet, 100 23257011000036109 verapamil hydrochloride 80 mg tablet 21287011000036109 verapamil +999051000168109 PKU Start powder for oral liquid, 400 g, can 999041000168107 PKU Start powder for oral liquid, 400 g 999031000168103 PKU Start powder for oral liquid 999021000168101 PKU Start 999021000168101 PKU Start 51438011000036106 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine powder for oral liquid, 400 g 50954011000036105 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine powder for oral liquid 50736011000036109 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine +50491011000036101 Eloflex (2480) 10 cm x 3.5 m high stretch bandage, 1, carton 49313011000036102 Eloflex (2480) 10 cm x 3.5 m high stretch bandage, 1 48667011000036100 Eloflex (2480) 10 cm x 3.5 m high stretch bandage 46881000168101 Eloflex (2480) 46881000168101 Eloflex (2480) 51295011000036108 bandage compression 10 cm x 3.5 m high stretch bandage, 1 50824011000036101 bandage compression 10 cm x 3.5 m high stretch bandage 50716011000036103 bandage compression +24381000036109 Torlemo DT 25 mg tablet, 56, blister pack 150763 22291000036105 Torlemo DT 25 mg tablet, 56 20731000036102 Torlemo DT 25 mg tablet 19101000168100 Torlemo DT 19101000168100 Torlemo DT 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +981771000168101 Levetiracetam (Apotex) 500 mg film-coated tablet, 60, blister pack 156314 981761000168107 Levetiracetam (Apotex) 500 mg film-coated tablet, 60 981751000168105 Levetiracetam (Apotex) 500 mg film-coated tablet 981711000168109 Levetiracetam (Apotex) 981711000168109 Levetiracetam (Apotex) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +19708011000036108 Duride 60 mg modified release tablet, 30, bottle 60908 12964011000036104 Duride 60 mg modified release tablet, 30 6253011000036106 Duride 60 mg modified release tablet 3668011000036104 Duride 3668011000036104 Duride 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +771441000168100 Flebogamma 10% DIF 5 g/50 mL injection solution, 50 mL vial 184353 771431000168109 Flebogamma 10% DIF 5 g/50 mL injection solution, 50 mL vial 771421000168106 Flebogamma 10% DIF 5 g/50 mL injection solution, 50 mL vial 771351000168109 Flebogamma 10% DIF 771351000168109 Flebogamma 10% DIF 108891000036105 normal immunoglobulin 5 g/50 mL injection, 50 mL vial 107151000036108 normal immunoglobulin 5 g/50 mL injection, vial 74965011000036103 normal immunoglobulin +33579011000036109 Humulin R Regular 100 units/mL injection solution, 5 x 3 mL cartridges 39666 33317011000036105 Humulin R Regular 100 units/mL injection solution, 5 x 3 mL cartridges 5089011000036107 Humulin R Regular 100 units/mL injection solution, 3 mL cartridge 17171000168104 Humulin R Regular 17171000168104 Humulin R Regular 27161011000036100 insulin neutral human 100 units/mL injection, 5 x 3 mL cartridges 22523011000036100 insulin neutral human 100 units/mL injection, cartridge 33644011000036103 insulin neutral human +1058211000168107 Levetiracetam (Auro) 750 mg film-coated tablet, 60, bottle 182820 1058201000168109 Levetiracetam (Auro) 750 mg film-coated tablet, 60 1058141000168103 Levetiracetam (Auro) 750 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +880261000168101 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet, 100, blister pack 215369 880251000168103 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet, 100 880201000168102 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +110671000036106 Finasteride (Apo) 5 mg film-coated tablet, 30, blister pack 155238 108831000036109 Finasteride (Apo) 5 mg film-coated tablet, 30 107081000036100 Finasteride (Apo) 5 mg film-coated tablet 106641000036104 Finasteride (Apo) 106641000036104 Finasteride (Apo) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +60377011000036107 Analgesic and Calmative (Pharmacor) uncoated tablet, 40, blister pack 142715 56336011000036101 Analgesic and Calmative (Pharmacor) uncoated tablet, 40 53881011000036109 Analgesic and Calmative (Pharmacor) uncoated tablet 53305011000036105 Analgesic and Calmative (Pharmacor) 53305011000036105 Analgesic and Calmative (Pharmacor) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +783831000168101 Remeron Soltab 15 mg orally disintegrating tablet, 30, blister pack 90436 783821000168104 Remeron Soltab 15 mg orally disintegrating tablet, 30 783811000168106 Remeron Soltab 15 mg orally disintegrating tablet 783801000168108 Remeron Soltab 783801000168108 Remeron Soltab 47681000036105 mirtazapine 15 mg orally disintegrating tablet, 30 47581000036109 mirtazapine 15 mg orally disintegrating tablet 21463011000036102 mirtazapine +869541000168106 Atomerra 25 mg hard capsule, 7, blister pack 234813 869531000168102 Atomerra 25 mg hard capsule, 7 869521000168100 Atomerra 25 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +1032571000168102 Atomoxetine (GXP) 40 mg hard capsule, 14, blister pack 234837 1032561000168108 Atomoxetine (GXP) 40 mg hard capsule, 14 1032531000168100 Atomoxetine (GXP) 40 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830671000168100 atomoxetine 40 mg capsule, 14 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +715331000168108 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g, tube 132866 715321000168105 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g 715311000168103 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream 52151000168100 Clotrimazole Thrush Treatment 6 Day (Chemmart) 52151000168100 Clotrimazole Thrush Treatment 6 Day (Chemmart) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +995921000168104 Difflam Lozenge Raspberry Sugar Free lozenge, 2, blister pack 51468 995911000168106 Difflam Lozenge Raspberry Sugar Free lozenge, 2 995881000168106 Difflam Lozenge Raspberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995651000168100 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +17885011000036109 Diltahexal CD 180 mg modified release capsule, 30, blister pack 131299 11918011000036109 Diltahexal CD 180 mg modified release capsule, 30 5663011000036101 Diltahexal CD 180 mg modified release capsule 26391000168107 Diltahexal CD 26391000168107 Diltahexal CD 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +981171000168102 Twinrix Junior injection suspension, 0.5 mL vial 140577 981161000168108 Twinrix Junior injection suspension, 0.5 mL vial 981141000168109 Twinrix Junior injection suspension, 0.5 mL vial 54661000168103 Twinrix Junior 54661000168103 Twinrix Junior 981151000168106 hepatitis A + hepatitis B child vaccine injection, 0.5 mL vial 981131000168100 hepatitis A + hepatitis B child vaccine injection, 0.5 mL vial 824501000168100 hepatitis A + hepatitis B vaccine +955501000168109 Kyprolis 30 mg powder for injection, 1 vial 266773 955491000168102 Kyprolis 30 mg powder for injection, 1 vial 955471000168103 Kyprolis 30 mg powder for injection, 30 mg vial 904391000168100 Kyprolis 904391000168100 Kyprolis 955481000168100 carfilzomib 30 mg injection, 1 vial 955461000168109 carfilzomib 30 mg injection, vial 904401000168103 carfilzomib +25021000036107 Atorvastatin (Chemmart) 20 mg film-coated tablet, 30, blister pack 153740 22281000036108 Atorvastatin (Chemmart) 20 mg film-coated tablet, 30 20281000036109 Atorvastatin (Chemmart) 20 mg film-coated tablet 19741000036106 Atorvastatin (Chemmart) 19741000036106 Atorvastatin (Chemmart) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1030401000168107 Atomoxetine (Genpar) 18 mg hard capsule, 14, blister pack 234845 1030391000168105 Atomoxetine (Genpar) 18 mg hard capsule, 14 1030341000168102 Atomoxetine (Genpar) 18 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830341000168103 atomoxetine 18 mg capsule, 14 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +920931000168104 Ceftriaxone (Pfizer) 500 mg powder for injection, 10 vials 174448 920921000168102 Ceftriaxone (Pfizer) 500 mg powder for injection, 10 vials 920831000168108 Ceftriaxone (Pfizer) 500 mg powder for injection, 500 mg vial 920781000168100 Ceftriaxone (Pfizer) 920781000168100 Ceftriaxone (Pfizer) 58911000036109 ceftriaxone 500 mg injection, 10 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +1030421000168103 Atomoxetine (Genpar) 18 mg hard capsule, 28, blister pack 234845 1030411000168105 Atomoxetine (Genpar) 18 mg hard capsule, 28 1030341000168102 Atomoxetine (Genpar) 18 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +19887011000036105 Zeldox 80 mg hard capsule, 60, blister pack 65529 13134011000036100 Zeldox 80 mg hard capsule, 60 6417011000036109 Zeldox 80 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27572011000036105 ziprasidone 80 mg capsule, 60 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +135881000036108 Candesartan Cilexetil HCT 32/25 (Pharmacor) uncoated tablet, 30, bottle 196422 135321000036100 Candesartan Cilexetil HCT 32/25 (Pharmacor) uncoated tablet, 30 134381000036100 Candesartan Cilexetil HCT 32/25 (Pharmacor) uncoated tablet 39411000168101 Candesartan Cilexetil HCT 32/25 (Pharmacor) 39411000168101 Candesartan Cilexetil HCT 32/25 (Pharmacor) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +955181000168106 Cefotaxime (Mylan) 2 g powder for injection, 10 vials 148198 955171000168108 Cefotaxime (Mylan) 2 g powder for injection, 10 vials 955161000168102 Cefotaxime (Mylan) 2 g powder for injection, 2 g vial 955151000168104 Cefotaxime (Mylan) 955151000168104 Cefotaxime (Mylan) 33815011000036103 cefotaxime 2 g injection, 10 vials 33683011000036109 cefotaxime 2 g injection, vial 21327011000036105 cefotaxime +1036841000168105 Jinarc (28 x 15 mg tablets, 28 x 45 mg tablets), 56, blister pack 272787 1036831000168101 Jinarc (28 x 15 mg tablets, 28 x 45 mg tablets), 56 1036791000168107 Jinarc 15 mg tablet 1036121000168109 Jinarc 1036121000168109 Jinarc 1036821000168104 tolvaptan 15 mg tablet [28] (&) tolvaptan 45 mg tablet [28], 56 686891000168104 tolvaptan 15 mg tablet 686881000168102 tolvaptan +1036841000168105 Jinarc (28 x 15 mg tablets, 28 x 45 mg tablets), 56, blister pack 272787 1036831000168101 Jinarc (28 x 15 mg tablets, 28 x 45 mg tablets), 56 1036811000168106 Jinarc 45 mg tablet 1036121000168109 Jinarc 1036121000168109 Jinarc 1036821000168104 tolvaptan 15 mg tablet [28] (&) tolvaptan 45 mg tablet [28], 56 1036801000168108 tolvaptan 45 mg tablet 686881000168102 tolvaptan +37655011000036107 Fibro-Vein 3% (150 mg/5 mL) injection solution, 10 x 5 mL vials 29772 36921011000036107 Fibro-Vein 3% (150 mg/5 mL) injection solution, 10 x 5 mL vials 36252011000036101 Fibro-Vein 3% (150 mg/5 mL) injection solution, 5 mL vial 35954011000036108 Fibro-Vein 35954011000036108 Fibro-Vein 38805011000036104 sodium tetradecyl sulfate 3% (150 mg/5 mL) injection, 10 x 5 mL vials 38016011000036105 sodium tetradecyl sulfate 3% (150 mg/5 mL) injection, vial 37728011000036107 sodium tetradecyl sulfate +933213991000036104 Citalopram (Auro) 20 mg film-coated tablet, 30, bottle 153678 933202001000036103 Citalopram (Auro) 20 mg film-coated tablet, 30 933194911000036109 Citalopram (Auro) 20 mg film-coated tablet 12311000168107 Citalopram (Auro) 12311000168107 Citalopram (Auro) 933202011000036101 citalopram 20 mg tablet, 30 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +69158011000036100 Disprin Direct 300 mg chewable tablet, 4, strip pack 15356 66958011000036109 Disprin Direct 300 mg chewable tablet, 4 65492011000036103 Disprin Direct 300 mg chewable tablet 38641000168105 Disprin Direct 38641000168105 Disprin Direct 71532011000036101 aspirin 300 mg chewable tablet, 4 87371000036106 aspirin 300 mg chewable tablet 21719011000036107 aspirin +60161011000036103 Pevaryl Foaming 1% solution, 3 x 10 g sachets 13042 56120011000036105 Pevaryl Foaming 1% solution, 3 x 10 g sachets 53799011000036109 Pevaryl Foaming 1% solution, 10 g sachet 12691000168105 Pevaryl Foaming 12691000168105 Pevaryl Foaming 63224011000036105 econazole nitrate 1% solution, 3 x 10 g sachets 61895011000036100 econazole nitrate 1% solution, sachet 37773011000036103 econazole +963771000168103 Olmetec 10 mg film-coated tablet, 10, blister pack 102134 963761000168109 Olmetec 10 mg film-coated tablet, 10 963741000168105 Olmetec 10 mg film-coated tablet 3066011000036105 Olmetec 3066011000036105 Olmetec 963751000168107 olmesartan medoxomil 10 mg tablet, 10 845311000168105 olmesartan medoxomil 10 mg tablet 32674011000036109 olmesartan +1036861000168109 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 6, blister pack 173498 1036851000168107 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 6 1032101000168101 Atorvastatin (Ranbaxy) 40 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 841061000168108 atorvastatin 40 mg tablet, 6 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +933246381000036104 Ciprofloxacin (PS) 750 mg film-coated tablet, 14, blister pack 148853 933243171000036108 Ciprofloxacin (PS) 750 mg film-coated tablet, 14 933241331000036105 Ciprofloxacin (PS) 750 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +792411000168100 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet, 20, blister pack 204244 792401000168103 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet, 20 792351000168105 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet 792341000168108 Sleep Aid (Pharmacy Action) 792341000168108 Sleep Aid (Pharmacy Action) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +926767011000036102 Duro-Tuss PE Dry Cough plus Nasal Decongestant oral liquid solution, 200 mL, bottle 153325 926164011000036102 Duro-Tuss PE Dry Cough plus Nasal Decongestant oral liquid solution, 200 mL 925651011000036108 Duro-Tuss PE Dry Cough plus Nasal Decongestant oral liquid solution, 15 mL 925565011000036108 Duro-Tuss PE Dry Cough plus Nasal Decongestant 925565011000036108 Duro-Tuss PE Dry Cough plus Nasal Decongestant 927327011000036109 phenylephrine hydrochloride 10 mg/15 mL + pholcodine 15 mg/15 mL oral liquid, 200 mL 926990011000036108 phenylephrine hydrochloride 10 mg/15 mL + pholcodine 15 mg/15 mL oral liquid 926976011000036103 phenylephrine + pholcodine +1083731000168105 Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL, pump pack 148398 74304011000036105 Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL 73792011000036101 Sudafed Nasal Decongestant 0.05% nasal spray 73750011000036105 Sudafed Nasal Decongestant 73750011000036105 Sudafed Nasal Decongestant 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +20258011000036106 Oratane 10 mg soft capsule, 60, blister pack 75034 13468011000036101 Oratane 10 mg soft capsule, 60 6751011000036104 Oratane 10 mg soft capsule 3045011000036106 Oratane 3045011000036106 Oratane 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +56531000036109 Ferinject 500 mg/10 mL injection solution, 10 mL vial 162641 52841000036102 Ferinject 500 mg/10 mL injection solution, 10 mL vial 49691000036100 Ferinject 500 mg/10 mL injection solution, 10 mL vial 48071000036102 Ferinject 48071000036102 Ferinject 52851000036104 iron (as ferric carboxymaltose) 500 mg/10 mL injection, 10 mL vial 49701000036100 iron (as ferric carboxymaltose) 500 mg/10 mL injection, vial 56811000036102 ferric carboxymaltose +747801000168108 Morphine MR (SCP) 30 mg modified release tablet, 20, blister pack 225422 747791000168107 Morphine MR (SCP) 30 mg modified release tablet, 20 747781000168109 Morphine MR (SCP) 30 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 27107011000036109 morphine sulfate pentahydrate 30 mg modified release tablet, 20 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +1105341000168106 Quetiapine (CH) 300 mg film-coated tablet, 60, blister pack 172848 1104461000168104 Quetiapine (CH) 300 mg film-coated tablet, 60 1104451000168101 Quetiapine (CH) 300 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +82409011000036105 Senega and Ammonia Mixture (Guardian) oral liquid solution, 200 mL, bottle 22914 82198011000036101 Senega and Ammonia Mixture (Guardian) oral liquid solution, 200 mL 82035011000036106 Senega and Ammonia Mixture (Guardian) oral liquid solution 81980011000036102 Senega and Ammonia Mixture (Guardian) 81980011000036102 Senega and Ammonia Mixture (Guardian) 27010011000036101 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 200 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +73771000036106 Menopur (1 x 1200 units vial, 2 x 1 mL inert diluent syringes), 1 pack, composite pack 161985 71521000036102 Menopur (1 x 1200 units vial, 2 x 1 mL inert diluent syringes), 1 pack 69661000036100 Menopur (human menopausal gonadotrophin 1200 units) powder for injection, 1200 units vial 69461000036103 Menopur 69461000036103 Menopur 71531000036100 human menopausal gonadotrophin 1200 units injection [1 vial] (&) inert substance diluent [2 x 1 mL syringes], 1 pack 69671000036108 human menopausal gonadotrophin 1200 units injection, vial 74621000036103 human menopausal gonadotrophin +73771000036106 Menopur (1 x 1200 units vial, 2 x 1 mL inert diluent syringes), 1 pack, composite pack 161985 71521000036102 Menopur (1 x 1200 units vial, 2 x 1 mL inert diluent syringes), 1 pack 634601000168108 Menopur (inert substance) diluent, 1 mL syringe 69461000036103 Menopur 69461000036103 Menopur 71531000036100 human menopausal gonadotrophin 1200 units injection [1 vial] (&) inert substance diluent [2 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +668201000168108 Riluzole (Pharmacor) 50 mg film-coated tablet, 14, blister pack 207455 668191000168105 Riluzole (Pharmacor) 50 mg film-coated tablet, 14 668171000168109 Riluzole (Pharmacor) 50 mg film-coated tablet 668161000168103 Riluzole (Pharmacor) 668161000168103 Riluzole (Pharmacor) 668181000168107 riluzole 50 mg tablet, 14 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +33509011000036102 Allereze 10 mg film-coated tablet, 50, blister pack 117492 33252011000036106 Allereze 10 mg film-coated tablet, 50 33019011000036102 Allereze 10 mg film-coated tablet 32966011000036105 Allereze 32966011000036105 Allereze 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +61360011000036108 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 81520 57285011000036106 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 100 mL 54260011000036109 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 5 mL 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +1111461000168100 Clopithromb 75 mg film-coated tablet, 28, blister pack 187040 1111451000168102 Clopithromb 75 mg film-coated tablet, 28 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1045201000168104 Amisulpride (Pharmacor) 200 mg uncoated tablet, 90, blister pack 234693 1045191000168102 Amisulpride (Pharmacor) 200 mg uncoated tablet, 90 1045141000168105 Amisulpride (Pharmacor) 200 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +753941000168108 Remifentanil (Apotex) 1 mg powder for injection, 5 vials 234710 753931000168104 Remifentanil (Apotex) 1 mg powder for injection, 5 vials 753921000168102 Remifentanil (Apotex) 1 mg powder for injection, vial 753811000168103 Remifentanil (Apotex) 753811000168103 Remifentanil (Apotex) 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +19313011000036100 Neoral 50 mg soft capsule, 30, blister pack 49723 12603011000036103 Neoral 50 mg soft capsule, 30 5354011000036104 Neoral 50 mg soft capsule 4180011000036101 Neoral 4180011000036101 Neoral 27973011000036109 ciclosporin 50 mg capsule, 30 23297011000036102 ciclosporin 50 mg capsule 21379011000036104 ciclosporin +745631000168106 Sandocal 1000 effervescent tablet, 10, tube 132582 745621000168108 Sandocal 1000 effervescent tablet, 10 745611000168101 Sandocal 1000 effervescent tablet 47131000168106 Sandocal 1000 47131000168106 Sandocal 1000 745581000168108 calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet, 10 745561000168104 calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet 745551000168101 calcium +20281011000036107 Vasocardol CD 360 mg modified release capsule, 30, bottle 75253 13491011000036107 Vasocardol CD 360 mg modified release capsule, 30 6773011000036100 Vasocardol CD 360 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +56691000036106 Meropenem (Sandoz) 500 mg powder for injection, 10 vials 163773 53131000036108 Meropenem (Sandoz) 500 mg powder for injection, 10 vials 49461000036109 Meropenem (Sandoz) 500 mg powder for injection, 500 mg vial 48371000036100 Meropenem (Sandoz) 48371000036100 Meropenem (Sandoz) 46463011000036102 meropenem 500 mg injection, 10 vials 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +116471000036107 Rosuvastatin (Terry White Chemists) 5 mg film-coated tablet, 30, blister pack 183065 114771000036109 Rosuvastatin (Terry White Chemists) 5 mg film-coated tablet, 30 112761000036108 Rosuvastatin (Terry White Chemists) 5 mg film-coated tablet 112581000036106 Rosuvastatin (Terry White Chemists) 112581000036106 Rosuvastatin (Terry White Chemists) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +44228011000036107 Atracurium Besylate (DBL) 25 mg/2.5 mL injection, 5 x 2.5 mL ampoules 57992 41700011000036102 Atracurium Besylate (DBL) 25 mg/2.5 mL injection, 5 x 2.5 mL ampoules 40148011000036109 Atracurium Besylate (DBL) 25 mg/2.5 mL injection, 2.5 mL ampoule 39752011000036102 Atracurium Besylate (DBL) 39752011000036102 Atracurium Besylate (DBL) 38563011000036103 atracurium besilate 25 mg/2.5 mL injection, 5 x 2.5 mL ampoules 37839011000036100 atracurium besilate 25 mg/2.5 mL injection, ampoule 37800011000036104 atracurium +161661000036106 Nimbex 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 55913 161551000036109 Nimbex 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 161481000036103 Nimbex 5 mg/2.5 mL injection solution, 2.5 mL ampoule 39720011000036100 Nimbex 39720011000036100 Nimbex 157601000036106 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL ampoules 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +44295011000036108 Fluorouracil (DBL) 1 g/20 mL injection solution, 5 x 20 mL vials 64403 41766011000036100 Fluorouracil (DBL) 1 g/20 mL injection solution, 5 x 20 mL vials 40189011000036106 Fluorouracil (DBL) 1 g/20 mL injection solution, 20 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 46573011000036100 fluorouracil 1 g/20 mL injection, 5 x 20 mL vials 23578011000036102 fluorouracil 1 g/20 mL injection, vial 21481011000036100 fluorouracil +835301000168108 Stop-It 2 mg hard capsule, 20, blister pack 199731 835291000168107 Stop-It 2 mg hard capsule, 20 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 87019011000036104 loperamide hydrochloride 2 mg capsule, 20 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +910161000168104 Amytal Sodium 500 mg powder for injection, 10 vials 14617 910151000168101 Amytal Sodium 500 mg powder for injection, 10 vials 910131000168107 Amytal Sodium 500 mg powder for injection, 500 mg vial 910101000168100 Amytal Sodium 910101000168100 Amytal Sodium 910141000168103 amobarbital (amylobarbitone) sodium 500 mg injection, 10 vials 910121000168109 amobarbital (amylobarbitone) sodium 500 mg injection, vial 910111000168102 amobarbital (amylobarbitone) +933239871000036104 Meloxicam (Terry White Chemists) 15 mg hard capsule, 20, blister pack 181205 933237191000036104 Meloxicam (Terry White Chemists) 15 mg hard capsule, 20 933234831000036102 Meloxicam (Terry White Chemists) 15 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 52891011000036100 meloxicam 15 mg capsule, 20 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +1019661000168106 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 28, blister pack 175208 1019651000168109 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 28 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019641000168107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 28 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +18827011000036100 Resprim Forte uncoated tablet, 10, bottle 17668 12147011000036100 Resprim Forte uncoated tablet, 10 5025011000036102 Resprim Forte uncoated tablet 28301000168100 Resprim Forte 28301000168100 Resprim Forte 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +1055961000168108 Erelzi 50 mg/mL injection solution, 1 mL syringe 281784 1055951000168106 Erelzi 50 mg/mL injection solution, 1 mL syringe 1055941000168109 Erelzi 50 mg/mL injection solution, syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 880491000168107 etanercept 50 mg/mL injection, 1 mL syringe 79116011000036107 etanercept 50 mg/mL injection, syringe 21347011000036107 etanercept +34639011000036101 Suboxone 8/2 sublingual tablet, 7, blister pack 120160 34229011000036100 Suboxone 8/2 sublingual tablet, 7 5640011000036104 Suboxone 8/2 sublingual tablet 7031000168100 Suboxone 8/2 7031000168100 Suboxone 8/2 35108011000036105 buprenorphine 8 mg + naloxone 2 mg sublingual tablet, 7 22109011000036100 buprenorphine 8 mg + naloxone 2 mg sublingual tablet 21739011000036100 buprenorphine + naloxone +24861000036105 Irinoccord 40 mg/2 mL concentrated injection, 2 mL vial 173873 22561000036100 Irinoccord 40 mg/2 mL concentrated injection, 2 mL vial 20571000036109 Irinoccord 40 mg/2 mL concentrated injection, 2 mL vial 19901000036105 Irinoccord 19901000036105 Irinoccord 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +43868011000036109 Benefix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128378 41364011000036109 Benefix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 630131000168100 Benefix (inert substance) diluent, 5 mL syringe 2121000168104 Benefix 2121000168104 Benefix 46268011000036108 nonacog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +43868011000036109 Benefix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128378 41364011000036109 Benefix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 39894011000036103 Benefix (nonacog alfa 2000 units) powder for injection, 2000 units vial 2121000168104 Benefix 2121000168104 Benefix 46268011000036108 nonacog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 45047011000036105 nonacog alfa 2000 units injection, vial 44863011000036102 nonacog alfa +60452011000036100 Difluzole 150 mg hard capsule, 1, blister pack 149125 56410011000036102 Difluzole 150 mg hard capsule, 1 53913011000036104 Difluzole 150 mg hard capsule 53518011000036104 Difluzole 53518011000036104 Difluzole 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +655451000168108 Ondansetron ODT (AN) 4 mg orally disintegrating tablet, 4, blister pack 196807 655441000168106 Ondansetron ODT (AN) 4 mg orally disintegrating tablet, 4 655431000168102 Ondansetron ODT (AN) 4 mg orally disintegrating tablet 655421000168100 Ondansetron ODT (AN) 655421000168100 Ondansetron ODT (AN) 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +91251000036103 Ledip 10 mg film-coated tablet, 28, blister pack 172204 89581000036107 Ledip 10 mg film-coated tablet, 28 88541000036109 Ledip 10 mg film-coated tablet 87531000036100 Ledip 87531000036100 Ledip 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +1030241000168108 Atilos 30 mg uncoated tablet, 7, blister pack 173477 1030231000168104 Atilos 30 mg uncoated tablet, 7 1030211000168109 Atilos 30 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929264011000036109 pioglitazone 30 mg tablet, 7 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +18302011000036106 Avapro 75 mg film-coated tablet, 30, bottle 101733 11234011000036106 Avapro 75 mg film-coated tablet, 30 5422011000036104 Avapro 75 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +921021000168108 Cilopam 10 mg film-coated tablet, 250, bottle 158863 921011000168101 Cilopam 10 mg film-coated tablet, 250 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203031000036104 citalopram 10 mg tablet, 250 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +19195011000036107 Kalma 250 microgram uncoated tablet, 50, bottle 46835 12488011000036106 Kalma 250 microgram uncoated tablet, 50 5703011000036108 Kalma 250 microgram uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 28280011000036103 alprazolam 250 microgram tablet, 50 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +20693011000036105 Pamacid 40 mg film-coated tablet, 30, bottle 82473 13870011000036101 Pamacid 40 mg film-coated tablet, 30 7157011000036101 Pamacid 40 mg film-coated tablet 3448011000036106 Pamacid 3448011000036106 Pamacid 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +110581000036107 Midazolam (Alphapharm) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 160208 109161000036103 Midazolam (Alphapharm) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 107201000036102 Midazolam (Alphapharm) 50 mg/10 mL injection solution, 10 mL ampoule 106461000036101 Midazolam (Alphapharm) 106461000036101 Midazolam (Alphapharm) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +1062401000168103 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 20, blister pack 196533 1062391000168100 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 20 1062341000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +19262011000036100 Mesasal 250 mg enteric tablet, 100, blister pack 48176 12552011000036107 Mesasal 250 mg enteric tablet, 100 6007011000036104 Mesasal 250 mg enteric tablet 3982011000036101 Mesasal 3982011000036101 Mesasal 27194011000036100 mesalazine 250 mg enteric tablet, 100 22556011000036105 mesalazine 250 mg enteric tablet 21351011000036101 mesalazine +929611000168109 Aczone 7.5% gel, 90 g, pump pack 266267 929601000168106 Aczone 7.5% gel, 90 g 929521000168101 Aczone 7.5% gel 929501000168105 Aczone 929501000168105 Aczone 929591000168104 dapsone 7.5% gel, 90 g 929511000168108 dapsone 7.5% gel 21608011000036106 dapsone +664031000168102 Midazolam (Act) 5 mg/mL injection solution, 1 mL ampoule 207224 664021000168100 Midazolam (Act) 5 mg/mL injection solution, 1 mL ampoule 664001000168109 Midazolam (Act) 5 mg/mL injection solution, ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 664011000168107 midazolam 5 mg/mL injection, 1 mL ampoule 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +43626011000036108 Simvabell 10 mg film-coated tablet, 100, bottle 100885 41102011000036107 Simvabell 10 mg film-coated tablet, 100 4684011000036107 Simvabell 10 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46244011000036106 simvastatin 10 mg tablet, 100 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1045271000168109 Hyoscine Butylbromide (SXP) 20 mg/mL injection solution, 5 x 1 mL ampoules 278817 1045261000168103 Hyoscine Butylbromide (SXP) 20 mg/mL injection solution, 5 x 1 mL ampoules 1045251000168100 Hyoscine Butylbromide (SXP) 20 mg/mL injection solution, ampoule 1045241000168102 Hyoscine Butylbromide (SXP) 1045241000168102 Hyoscine Butylbromide (SXP) 26954011000036107 hyoscine butylbromide 20 mg/mL injection, 5 x 1 mL ampoules 22329011000036104 hyoscine butylbromide 20 mg/mL injection, ampoule 21580011000036102 hyoscine butylbromide +923692011000036103 Grandicrit 2000 units/mL injection solution, 6 x 1 mL syringes 147857 923316011000036109 Grandicrit 2000 units/mL injection solution, 6 x 1 mL syringes 922997011000036108 Grandicrit 2000 units/mL injection solution, syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924129011000036104 epoetin lambda 2000 units/mL injection, 6 x 1 mL syringes 923954011000036103 epoetin lambda 2000 units/mL injection, syringe 923930011000036107 epoetin lambda +1118091000168109 Quetiapine XR (Amneal) 400 mg modified release tablet, 60, bottle 278890 1118061000168102 Quetiapine XR (Amneal) 400 mg modified release tablet, 60 1118051000168104 Quetiapine XR (Amneal) 400 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +68950011000036103 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 12 sachets 133242 66752011000036101 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 12 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71420011000036108 paracetamol 500 mg powder for oral liquid, 12 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +670481000168107 Amlodipine/Atorvastatin 5/20 (Blooms The Chemist) film-coated tablet, 30, blister pack 214376 670471000168109 Amlodipine/Atorvastatin 5/20 (Blooms The Chemist) film-coated tablet, 30 670461000168103 Amlodipine/Atorvastatin 5/20 (Blooms The Chemist) film-coated tablet 670451000168100 Amlodipine/Atorvastatin 5/20 (Blooms The Chemist) 670451000168100 Amlodipine/Atorvastatin 5/20 (Blooms The Chemist) 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +44586011000036109 Vfend 200 mg film-coated tablet, 28, blister pack 82505 42039011000036101 Vfend 200 mg film-coated tablet, 28 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46807011000036101 voriconazole 200 mg tablet, 28 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +86084011000036104 Fexal 180 mg film-coated tablet, 10, blister pack 140285 85630011000036105 Fexal 180 mg film-coated tablet, 10 85305011000036103 Fexal 180 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +20855011000036107 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92119 14018011000036105 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack 7296011000036107 Peg-Intron Redipen Injector (peginterferon alfa-2b 120 microgram) powder for injection, 120 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28081011000036104 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23391011000036102 peginterferon alfa-2b 120 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20855011000036107 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92119 14018011000036105 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28081011000036104 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20855011000036107 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92119 14018011000036105 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28081011000036104 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +1047441000168109 Buprenorphine (Sandoz) 10 microgram/hour patch, 2, sachet 269671 1047431000168100 Buprenorphine (Sandoz) 10 microgram/hour patch, 2 1047371000168109 Buprenorphine (Sandoz) 10 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 26681011000036100 buprenorphine 10 microgram/hour patch, 2 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +771121000168103 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 180561 771111000168105 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 771071000168103 Isabelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +771121000168103 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 180561 771111000168105 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 771081000168100 Isabelle (inert substance) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +1032411000168109 Atomoxetine (GXP) 60 mg hard capsule, 56, blister pack 234824 1032401000168106 Atomoxetine (GXP) 60 mg hard capsule, 56 1032331000168105 Atomoxetine (GXP) 60 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830311000168102 atomoxetine 60 mg capsule, 56 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +61533011000036107 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 100 mL, bottle 93726 57458011000036109 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 100 mL 54309011000036109 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 5 mL 39631000168109 Cold and Cough Elixir (Pharmacy Health) 39631000168109 Cold and Cough Elixir (Pharmacy Health) 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +50471011000036108 ENERGIVIT powder for oral liquid, 400 g, can 49273011000036102 ENERGIVIT powder for oral liquid, 400 g 48682011000036100 ENERGIVIT powder for oral liquid 48365011000036104 ENERGIVIT 48365011000036104 ENERGIVIT 51266011000036104 carbohydrate, fat, vitamins, minerals and trace elements powder for oral liquid, 400 g 50798011000036100 carbohydrate, fat, vitamins, minerals and trace elements powder for oral liquid 50766011000036102 carbohydrate, fat, vitamins, minerals and trace elements +19795011000036104 Karvea 150 mg uncoated tablet, 30, blister pack 63090 13053011000036107 Karvea 150 mg uncoated tablet, 30 6337011000036107 Karvea 150 mg uncoated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +895311000168102 Capecitabine (Apotex) 150 mg film-coated tablet, 60, blister pack 202726 895301000168100 Capecitabine (Apotex) 150 mg film-coated tablet, 60 895291000168101 Capecitabine (Apotex) 150 mg film-coated tablet 651701000168103 Capecitabine (Apotex) 651701000168103 Capecitabine (Apotex) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +933240031000036102 Simvacor 80 mg film-coated tablet, 100, bottle 182913 933236521000036106 Simvacor 80 mg film-coated tablet, 100 933234881000036103 Simvacor 80 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46250011000036104 simvastatin 80 mg tablet, 100 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +44269011000036108 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 5 x 0.72 mL syringes 61937 41740011000036108 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 5 x 0.72 mL syringes 40176011000036109 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 0.72 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46547011000036105 dalteparin sodium 18 000 anti-Xa units/0.72 mL injection, 5 x 0.72 mL syringes 45212011000036106 dalteparin sodium 18 000 anti-Xa units/0.72 mL injection, syringe 21450011000036103 dalteparin sodium +69192011000036106 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 500 mL bag 19425 66992011000036103 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 500 mL bag 65542011000036102 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 500 mL bag 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 71728011000036100 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, 500 mL bag 70153011000036107 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +668281000168100 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) uncoated tablet, 4, blister pack 206934 668271000168103 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) uncoated tablet, 4 668241000168105 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) uncoated tablet 668231000168101 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) 668231000168101 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +926780011000036101 Colgate Total Advanced Fresh toothpaste, 110 g, tube 154434 926177011000036102 Colgate Total Advanced Fresh toothpaste, 110 g 925658011000036104 Colgate Total Advanced Fresh toothpaste 63421000168102 Colgate Total Advanced Fresh 63421000168102 Colgate Total Advanced Fresh 927331011000036104 sodium fluoride 0.22% + triclosan 0.3% toothpaste, 110 g 926991011000036101 sodium fluoride 0.22% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +1049451000168102 Novacodone 60 mg modified release tablet, 28, blister pack 227945 1049441000168104 Novacodone 60 mg modified release tablet, 28 1049391000168103 Novacodone 60 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 789721000168108 oxycodone hydrochloride 60 mg modified release tablet, 28 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +19504011000036102 Cilicaine VK 250 mg hard capsule, 50, blister pack 55676 12780011000036100 Cilicaine VK 250 mg hard capsule, 50 6074011000036100 Cilicaine VK 250 mg hard capsule 20371000168108 Cilicaine VK 20371000168108 Cilicaine VK 27620011000036103 phenoxymethylpenicillin 250 mg capsule, 50 22958011000036104 phenoxymethylpenicillin 250 mg capsule 21370011000036105 phenoxymethylpenicillin +933211661000036102 Ciprofloxacin (BL) 750 mg film-coated tablet, 100, blister pack 114048 933199861000036100 Ciprofloxacin (BL) 750 mg film-coated tablet, 100 933194131000036102 Ciprofloxacin (BL) 750 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 87796011000036109 ciprofloxacin 750 mg tablet, 100 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +800991000168103 Actonate 75 mg film-coated tablet, 2, blister pack 163749 800981000168101 Actonate 75 mg film-coated tablet, 2 800961000168105 Actonate 75 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 800971000168104 risedronate sodium 75 mg tablet, 2 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +886861000168104 Candesan Combi 32/12.5 uncoated tablet, 30, blister pack 204578 886851000168101 Candesan Combi 32/12.5 uncoated tablet, 30 886841000168103 Candesan Combi 32/12.5 uncoated tablet 886831000168107 Candesan Combi 32/12.5 886831000168107 Candesan Combi 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1010911000168108 Adynovate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 278728 1010901000168105 Adynovate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010721000168103 Adynovate (inert substance) diluent, 5 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010891000168106 rurioctocog alfa pegol 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +1010911000168108 Adynovate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 278728 1010901000168105 Adynovate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010851000168101 Adynovate (rurioctocog alfa pegol 1000 units) powder for injection, 1000 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010891000168106 rurioctocog alfa pegol 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 1010841000168103 rurioctocog alfa pegol 1000 units injection, vial 1010651000168102 rurioctocog alfa pegol +30711000036109 Zondan 8 mg film-coated tablet, 10, blister pack 116416 28281000036106 Zondan 8 mg film-coated tablet, 10 26581000036109 Zondan 8 mg film-coated tablet 26301000036108 Zondan 26301000036108 Zondan 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +19553011000036107 Femtran 100 microgram/24 hours patch, 4, sachet 56848 12825011000036104 Femtran 100 microgram/24 hours patch, 4 6116011000036105 Femtran 100 microgram/24 hours patch 3994011000036109 Femtran 3994011000036109 Femtran 27382011000036103 estradiol 100 microgram/24 hours patch, 4 23636011000036108 estradiol 100 microgram/24 hours patch 21238011000036103 estradiol +783911000168100 Zantac 150 mg/10 mL oral liquid, 140 mL, bottle 146137 783901000168103 Zantac 150 mg/10 mL oral liquid, 140 mL 5902011000036108 Zantac 150 mg/10 mL oral liquid, 10 mL 3563011000036102 Zantac 3563011000036102 Zantac 63339011000036103 ranitidine 150 mg/10 mL oral liquid, 140 mL 22429011000036109 ranitidine 150 mg/10 mL oral liquid 21682011000036109 ranitidine +1113751000168108 Olanzapine ODT (Torrent) 10 mg orally disintegrating tablet, 28, blister pack 177801 1113741000168106 Olanzapine ODT (Torrent) 10 mg orally disintegrating tablet, 28 1113731000168102 Olanzapine ODT (Torrent) 10 mg orally disintegrating tablet 1113681000168106 Olanzapine ODT (Torrent) 1113681000168106 Olanzapine ODT (Torrent) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +931389011000036105 Psor-Asist (John Plunkett) cream, 100 g, jar 11628 930559011000036108 Psor-Asist (John Plunkett) cream, 100 g 929928011000036108 Psor-Asist (John Plunkett) cream 929874011000036108 Psor-Asist (John Plunkett) 929874011000036108 Psor-Asist (John Plunkett) 932342011000036106 coal tar solution 5% + fish oil natural 3.32% + retinol palmitate 0.0083% + salicylic acid 2% + precipitated sulfur 3% cream, 100 g 931820011000036106 coal tar solution 5% + fish oil natural 3.32% + retinol palmitate 0.0083% + salicylic acid 2% + precipitated sulfur 3% cream 931794011000036107 coal tar solution + fish oil natural + retinol palmitate + salicylic acid + precipitated sulfur +44828011000036100 Detrusitol 2 mg film-coated tablet, 28, blister pack 99394 42260011000036105 Detrusitol 2 mg film-coated tablet, 28 40408011000036103 Detrusitol 2 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47013011000036107 tolterodine tartrate 2 mg tablet, 28 45374011000036102 tolterodine tartrate 2 mg tablet 44907011000036104 tolterodine +61002011000036107 Aleve 220 mg film-coated tablet, 20, blister pack 63794 56945011000036100 Aleve 220 mg film-coated tablet, 20 54133011000036109 Aleve 220 mg film-coated tablet 53458011000036102 Aleve 53458011000036102 Aleve 63651011000036105 naproxen sodium 220 mg tablet, 20 62035011000036109 naproxen sodium 220 mg tablet 21304011000036105 naproxen +921101000168100 Cilopam 20 mg film-coated tablet, 56, bottle 158865 920721000168104 Cilopam 20 mg film-coated tablet, 56 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +69019011000036109 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 140597 66821011000036108 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71931011000036102 paracetamol 1 g powder for oral liquid, 1 sachet 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +663951000168106 Midazolam (Act) 15 mg/3 mL injection solution, 3 mL ampoule 207222 663941000168109 Midazolam (Act) 15 mg/3 mL injection solution, 3 mL ampoule 663921000168103 Midazolam (Act) 15 mg/3 mL injection solution, 3 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 663931000168100 midazolam 15 mg/3 mL injection, 3 mL ampoule 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +944681000168100 Risperidone (GenRx) 4 mg film-coated tablet, 60, blister pack 127581 944671000168103 Risperidone (GenRx) 4 mg film-coated tablet, 60 944661000168109 Risperidone (GenRx) 4 mg film-coated tablet 943311000168103 Risperidone (GenRx) 943311000168103 Risperidone (GenRx) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +972541000168101 Lyzalon 300 mg hard capsule, 60, bottle 224423 972531000168105 Lyzalon 300 mg hard capsule, 60 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +91171000036100 Tramadol (Sandoz) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 102013 89461000036101 Tramadol (Sandoz) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 88191000036106 Tramadol (Sandoz) 100 mg/2 mL injection solution, 2 mL ampoule 87293011000036107 Tramadol (Sandoz) 87293011000036107 Tramadol (Sandoz) 27537011000036109 tramadol hydrochloride 100 mg/2 mL injection, 5 x 2 mL ampoules 22877011000036109 tramadol hydrochloride 100 mg/2 mL injection, ampoule 21486011000036105 tramadol +55161000036101 Vicks Cough Honey 7.34 mg lozenge, 12, blister pack 143442 51351000036104 Vicks Cough Honey 7.34 mg lozenge, 12 49161000036102 Vicks Cough Honey 7.34 mg lozenge 48451000036102 Vicks Cough 48451000036102 Vicks Cough 51361000036101 dextromethorphan 7.34 mg lozenge, 12 49171000036105 dextromethorphan 7.34 mg lozenge 61744011000036109 dextromethorphan +18236011000036105 Lamitrin 25 mg tablet, 56, blister pack 114264 11468011000036108 Lamitrin 25 mg tablet, 56 5352011000036108 Lamitrin 25 mg tablet 4282011000036100 Lamitrin 4282011000036100 Lamitrin 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +749351000168106 Tacrolimus (AN) 5 mg hard capsule, 10, blister pack 224282 749341000168109 Tacrolimus (AN) 5 mg hard capsule, 10 749321000168103 Tacrolimus (AN) 5 mg hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 749331000168100 tacrolimus 5 mg capsule, 10 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +1058291000168103 Esomeprazole (SZ) 20 mg enteric tablet, 30, blister pack 207581 1058281000168101 Esomeprazole (SZ) 20 mg enteric tablet, 30 1058231000168102 Esomeprazole (SZ) 20 mg enteric tablet 1058221000168100 Esomeprazole (SZ) 1058221000168100 Esomeprazole (SZ) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +770961000168100 Flixotide CFC-Free 125 microgram/actuation pressurised inhalation, 60 actuations, metered dose aerosol can 63447 770951000168102 Flixotide CFC-Free 125 microgram/actuation pressurised inhalation, 60 actuations 6351011000036100 Flixotide CFC-Free 125 microgram/actuation pressurised inhalation, actuation 29811000168100 Flixotide 29811000168100 Flixotide 770941000168104 fluticasone propionate 125 microgram/actuation pressurised inhalation, 60 actuations 22870011000036108 fluticasone propionate 125 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +792651000168102 Abisart HCT 300/25 film-coated tablet, 90, bottle 215947 792641000168104 Abisart HCT 300/25 film-coated tablet, 90 98831000036101 Abisart HCT 300/25 film-coated tablet 13081000168109 Abisart HCT 300/25 13081000168109 Abisart HCT 300/25 792631000168108 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 90 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +933211981000036100 Donpesyn 5 mg film-coated tablet, 98, blister pack 142231 933201331000036101 Donpesyn 5 mg film-coated tablet, 98 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200841000036105 donepezil hydrochloride 5 mg tablet, 98 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +69115011000036104 Strepsils original flavour lozenge, 8, blister pack 14974 66916011000036103 Strepsils original flavour lozenge, 8 65227011000036108 Strepsils original flavour lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1066331000168100 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 20, blister pack 161544 1066321000168103 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 20 1066211000168102 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +882591000168107 Desvenlafaxine MR (Blooms The Chemist) 100 mg modified release tablet, 28, blister pack 215819 882581000168109 Desvenlafaxine MR (Blooms The Chemist) 100 mg modified release tablet, 28 882571000168106 Desvenlafaxine MR (Blooms The Chemist) 100 mg modified release tablet 882481000168105 Desvenlafaxine MR (Blooms The Chemist) 882481000168105 Desvenlafaxine MR (Blooms The Chemist) 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1096481000168109 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 10, blister pack 287308 1096461000168100 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 10 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +68873011000036102 Strepsils strawberry sugar free lozenge, 24, blister pack 101403 66466011000036104 Strepsils strawberry sugar free lozenge, 24 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +20172011000036107 Prazosin (Chemmart) 2 mg uncoated tablet, 100, blister pack 73860 13395011000036101 Prazosin (Chemmart) 2 mg uncoated tablet, 100 6680011000036109 Prazosin (Chemmart) 2 mg uncoated tablet 4317011000036106 Prazosin (Chemmart) 4317011000036106 Prazosin (Chemmart) 27728011000036108 prazosin 2 mg tablet, 100 23063011000036102 prazosin 2 mg tablet 21544011000036104 prazosin +719921000168108 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 224622 719911000168101 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 719881000168101 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 924216011000036103 somatropin 5 mg/1.5 mL injection, 5 x 1.5 mL cartridges 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +933239711000036104 Meloxicam (Apo) 15 mg hard capsule, 20, blister pack 181194 933237031000036104 Meloxicam (Apo) 15 mg hard capsule, 20 933234791000036105 Meloxicam (Apo) 15 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 52891011000036100 meloxicam 15 mg capsule, 20 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +1047601000168109 Buprenorphine (Sandoz) 15 microgram/hour patch, 2, sachet 269676 1047591000168102 Buprenorphine (Sandoz) 15 microgram/hour patch, 2 1047541000168105 Buprenorphine (Sandoz) 15 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 776161000168100 buprenorphine 15 microgram/hour patch, 2 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +989981000168102 Benadryl Mucus Relief Double Action Forte oral liquid solution, 200 mL, bottle 214072 989971000168100 Benadryl Mucus Relief Double Action Forte oral liquid solution, 200 mL 989891000168106 Benadryl Mucus Relief Double Action Forte oral liquid solution, 5 mL 989871000168105 Benadryl Mucus Relief Double Action Forte 989871000168105 Benadryl Mucus Relief Double Action Forte 989961000168106 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +955411000168106 Perindopril (Arrow) 8 mg uncoated tablet, 30, blister pack 129665 955401000168108 Perindopril (Arrow) 8 mg uncoated tablet, 30 955391000168106 Perindopril (Arrow) 8 mg uncoated tablet 955381000168108 Perindopril (Arrow) 955381000168108 Perindopril (Arrow) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +84371011000036104 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 10 mg film-coated tablet, 10, blister pack 165685 84064011000036108 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 10 mg film-coated tablet, 10 83690011000036105 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 10 mg film-coated tablet 37901000168103 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 37901000168103 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +86018011000036108 Lisinopril (DRLA) 10 mg uncoated tablet, 14, blister pack 152721 85656011000036109 Lisinopril (DRLA) 10 mg uncoated tablet, 14 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 86419011000036106 lisinopril 10 mg tablet, 14 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +972581000168106 Lyzalon 25 mg hard capsule, 60, blister pack 224435 972261000168104 Lyzalon 25 mg hard capsule, 60 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1079951000168106 Bisoprolol (Auro) 3.75 mg film-coated tablet, 28, blister pack 175918 1079941000168109 Bisoprolol (Auro) 3.75 mg film-coated tablet, 28 1079931000168100 Bisoprolol (Auro) 3.75 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 874831000168106 bisoprolol fumarate 3.75 mg tablet, 28 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +1023731000168104 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 12, blister pack 227168 1023721000168102 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 12 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71519011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 12 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +17859011000036103 Pravastatin Sodium (RL) 10 mg uncoated tablet, 30, blister pack 119207 11609011000036104 Pravastatin Sodium (RL) 10 mg uncoated tablet, 30 5202011000036107 Pravastatin Sodium (RL) 10 mg uncoated tablet 3142011000036109 Pravastatin Sodium (RL) 3142011000036109 Pravastatin Sodium (RL) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +852381000168108 Quepine XR 150 mg modified release tablet, 60, blister pack 199886 852371000168105 Quepine XR 150 mg modified release tablet, 60 852361000168104 Quepine XR 150 mg modified release tablet 852351000168101 Quepine XR 852351000168101 Quepine XR 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +24701000036104 Torvastat 10 mg film-coated tablet, 30, blister pack 167786 22431000036105 Torvastat 10 mg film-coated tablet, 30 20381000036104 Torvastat 10 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +24701000036104 Torvastat 10 mg film-coated tablet, 30, blister pack 194111 22431000036105 Torvastat 10 mg film-coated tablet, 30 20381000036104 Torvastat 10 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +116791000036100 Cavstat 40 mg film-coated tablet, 30, blister pack 234508 115051000036102 Cavstat 40 mg film-coated tablet, 30 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +116791000036100 Cavstat 40 mg film-coated tablet, 30, blister pack 186385 115051000036102 Cavstat 40 mg film-coated tablet, 30 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +81032011000036104 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 30, blister pack 104391 80474011000036109 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 30 80149011000036108 Carvedilol (Sandoz) 6.25 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +933246221000036108 Allevyn Gentle Border (66800269) 7.5 cm x 7.5 cm dressing, 10, carton 92774 933242691000036105 Allevyn Gentle Border (66800269) 7.5 cm x 7.5 cm dressing, 10 933241051000036100 Allevyn Gentle Border (66800269) 7.5 cm x 7.5 cm dressing 19171000168105 Allevyn Gentle Border (66800269) 19171000168105 Allevyn Gentle Border (66800269) 933242701000036105 dressing foam with silicone heavy exudate 7.5 cm x 7.5 cm dressing, 10 50897011000036104 dressing foam with silicone heavy exudate 7.5 cm x 7.5 cm dressing 50761011000036107 dressing foam with silicone heavy exudate +801231000168100 Abbapram 20 mg film-coated tablet, 7, blister pack 151310 801221000168103 Abbapram 20 mg film-coated tablet, 7 801211000168105 Abbapram 20 mg film-coated tablet 801201000168107 Abbapram 801201000168107 Abbapram 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1021561000168101 Voriconazole (Apo) 200 mg film-coated tablet, 28, blister pack 238282 1021551000168103 Voriconazole (Apo) 200 mg film-coated tablet, 28 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46807011000036101 voriconazole 200 mg tablet, 28 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +754421000168106 Oxycodone (AS) 5 mg hard capsule, 20, bottle 227830 754411000168104 Oxycodone (AS) 5 mg hard capsule, 20 754401000168102 Oxycodone (AS) 5 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +886931000168103 Praluent 75 mg/mL injection solution, 1 mL injection device 238285 886921000168101 Praluent 75 mg/mL injection solution, 1 mL injection device 886901000168105 Praluent 75 mg/mL injection solution, injection device 886871000168105 Praluent 886871000168105 Praluent 886911000168108 alirocumab 75 mg/mL injection, 1 mL injection device 886891000168106 alirocumab 75 mg/mL injection, injection device 886881000168108 alirocumab +663631000168105 Ketoral 30 mg/mL injection solution, 5 x 1 mL syringes 144524 663621000168107 Ketoral 30 mg/mL injection solution, 5 x 1 mL syringes 663601000168103 Ketoral 30 mg/mL injection solution, syringe 663581000168107 Ketoral 663581000168107 Ketoral 663611000168100 ketorolac trometamol 30 mg/mL injection, 5 x 1 mL syringes 663591000168105 ketorolac trometamol 30 mg/mL injection, syringe 44879011000036107 ketorolac +44346011000036104 Novonorm 2 mg uncoated tablet, 15, blister pack 67271 41813011000036105 Novonorm 2 mg uncoated tablet, 15 40209011000036105 Novonorm 2 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46619011000036101 repaglinide 2 mg tablet, 15 45241011000036105 repaglinide 2 mg tablet 44883011000036104 repaglinide +140451000036107 Versatis 5% dermal patch, 10, sachet 175178 138961000036102 Versatis 5% dermal patch, 10 137591000036100 Versatis 5% dermal patch 137391000036106 Versatis 137391000036106 Versatis 138971000036105 lidocaine (lignocaine) 5% patch, 10 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +19461011000036107 Kliogest film-coated tablet, 28, dial dispenser pack 54472 12738011000036105 Kliogest film-coated tablet, 28 6033011000036104 Kliogest film-coated tablet 3777011000036104 Kliogest 3777011000036104 Kliogest 27325011000036103 estradiol 2 mg + norethisterone acetate 1 mg tablet, 28 22678011000036103 estradiol 2 mg + norethisterone acetate 1 mg tablet 21228011000036101 estradiol + norethisterone acetate +19461011000036107 Kliogest film-coated tablet, 28, dial dispenser pack 183856 12738011000036105 Kliogest film-coated tablet, 28 6033011000036104 Kliogest film-coated tablet 3777011000036104 Kliogest 3777011000036104 Kliogest 27325011000036103 estradiol 2 mg + norethisterone acetate 1 mg tablet, 28 22678011000036103 estradiol 2 mg + norethisterone acetate 1 mg tablet 21228011000036101 estradiol + norethisterone acetate +37666011000036108 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses, tube 32265 36932011000036103 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses 36263011000036104 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 0.5% eye drops solution, 0.5 mL unit dose 19621000168103 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 19621000168103 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 38813011000036103 cyclopentolate hydrochloride 0.5% eye drops, 20 x 0.5 mL unit doses 38023011000036108 cyclopentolate hydrochloride 0.5% eye drops, unit dose 37706011000036103 cyclopentolate +912171000168109 Cavstat 40 mg film-coated tablet, 100, blister pack 234508 910621000168103 Cavstat 40 mg film-coated tablet, 100 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910611000168105 rosuvastatin 40 mg tablet, 100 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +827171000168106 Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe 68500 827161000168100 Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe 827111000168103 Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe 73715011000036108 Typherix 73715011000036108 Typherix 827151000168102 typhoid inactivated vaccine injection, 0.5 mL syringe 827101000168101 typhoid inactivated vaccine injection, 0.5 mL syringe 827091000168106 typhoid inactivated vaccine +168311000036106 Dermaveen Shower and Bath Oil 5% bath oil, 50 mL, tube 130060 167771000036103 Dermaveen Shower and Bath Oil 5% bath oil, 50 mL 167531000036105 Dermaveen Shower and Bath Oil 5% bath oil 9861000168106 Dermaveen Shower and Bath Oil 9861000168106 Dermaveen Shower and Bath Oil 167781000036101 colloidal oatmeal 5% bath oil, 50 mL 167541000036100 colloidal oatmeal 5% bath oil 77444011000036102 colloidal oatmeal +123321000036102 Firmagon (2 x 120 mg vials, 2 x inert diluent vials), 1 pack, composite pack 155072 123041000036107 Firmagon (2 x 120 mg vials, 2 x inert diluent vials), 1 pack 923030011000036100 Firmagon (inert substance) diluent, vial 922953011000036105 Firmagon 922953011000036105 Firmagon 123051000036105 degarelix 120 mg injection [2 vials] (&) inert substance diluent [2 vials], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +123321000036102 Firmagon (2 x 120 mg vials, 2 x inert diluent vials), 1 pack, composite pack 155072 123041000036107 Firmagon (2 x 120 mg vials, 2 x inert diluent vials), 1 pack 122791000036107 Firmagon (degarelix 120 mg) powder for injection, 120 mg vial 922953011000036105 Firmagon 922953011000036105 Firmagon 123051000036105 degarelix 120 mg injection [2 vials] (&) inert substance diluent [2 vials], 1 pack 122801000036106 degarelix 120 mg injection, vial 923929011000036103 degarelix +929106011000036102 Pioglitazone (Chemmart) 30 mg uncoated tablet, 98, blister pack 166917 928467011000036101 Pioglitazone (Chemmart) 30 mg uncoated tablet, 98 927990011000036109 Pioglitazone (Chemmart) 30 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929265011000036108 pioglitazone 30 mg tablet, 98 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +904221000168108 Amoxyclav Duo Forte 875/125 (SCP) film-coated tablet, 10, blister pack 231941 904211000168101 Amoxyclav Duo Forte 875/125 (SCP) film-coated tablet, 10 904201000168104 Amoxyclav Duo Forte 875/125 (SCP) film-coated tablet 904191000168102 Amoxyclav Duo Forte 875/125 (SCP) 904191000168102 Amoxyclav Duo Forte 875/125 (SCP) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +926733011000036101 Lisinopril (GA) 2.5 mg uncoated tablet, 50, blister pack 106498 926087011000036102 Lisinopril (GA) 2.5 mg uncoated tablet, 50 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927302011000036100 lisinopril 2.5 mg tablet, 50 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +1118131000168106 Serapine 100 mg film-coated tablet, 20, blister pack 204162 1118121000168108 Serapine 100 mg film-coated tablet, 20 1118111000168101 Serapine 100 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +736441000168105 Pemetrexed (MYX) 500 mg powder for injection, 1 vial 222415 736431000168101 Pemetrexed (MYX) 500 mg powder for injection, 1 vial 736421000168104 Pemetrexed (MYX) 500 mg powder for injection, 500 mg vial 736411000168106 Pemetrexed (MYX) 736411000168106 Pemetrexed (MYX) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +747961000168102 Docetaxel (Astron) 20 mg/mL concentrated injection, 1 mL vial 209469 747951000168104 Docetaxel (Astron) 20 mg/mL concentrated injection, 1 mL vial 747941000168101 Docetaxel (Astron) 20 mg/mL concentrated injection, vial 747931000168105 Docetaxel (Astron) 747931000168105 Docetaxel (Astron) 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +43952011000036109 Toradol 30 mg/mL injection solution, 5 x 1 mL ampoules 34357 41444011000036108 Toradol 30 mg/mL injection solution, 5 x 1 mL ampoules 39976011000036108 Toradol 30 mg/mL injection solution, ampoule 39688011000036101 Toradol 39688011000036101 Toradol 46295011000036100 ketorolac trometamol 30 mg/mL injection, 5 x 1 mL ampoules 45060011000036104 ketorolac trometamol 30 mg/mL injection, ampoule 44879011000036107 ketorolac +1030261000168107 Atomoxetine (Genpar) 40 mg hard capsule, 56, blister pack 234833 1030251000168105 Atomoxetine (Genpar) 40 mg hard capsule, 56 1030141000168100 Atomoxetine (Genpar) 40 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830721000168108 atomoxetine 40 mg capsule, 56 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1056201000168105 Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20, carton 1056191000168107 Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20 1056171000168106 Sorbact Absorption (S98222) 10 cm x 10 cm dressing 49901000168105 Sorbact Absorption (S98222) 49901000168105 Sorbact Absorption (S98222) 1056181000168109 dressing hydrophobic 10 cm x 10 cm dressing, 20 1055461000168104 dressing hydrophobic 10 cm x 10 cm dressing 1055281000168109 dressing hydrophobic +18351000036103 Glucobete 850 mg film-coated tablet, 60, blister pack 180438 16931000036109 Glucobete 850 mg film-coated tablet, 60 15761000036105 Glucobete 850 mg film-coated tablet 15181000036104 Glucobete 15181000036104 Glucobete 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +989251000168100 Terbinafine (Blooms The Chemist) 1% cream, 15 g, tube 257333 989241000168102 Terbinafine (Blooms The Chemist) 1% cream, 15 g 989231000168106 Terbinafine (Blooms The Chemist) 1% cream 989221000168108 Terbinafine (Blooms The Chemist) 989221000168108 Terbinafine (Blooms The Chemist) 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +1084291000168102 Salofalk 1.5 g modified release granules, 100 sachets 143611 1084281000168100 Salofalk 1.5 g modified release granules, 100 sachets 1084231000168101 Salofalk 1.5 g modified release granules, 1.5 g sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084271000168103 mesalazine 1.5 g modified release granules, 100 sachets 1084221000168104 mesalazine 1.5 g modified release granules, sachet 21351011000036101 mesalazine +77157011000036106 Bosisto's Eucalyptus Spray 250 mg/g pressurised spray, 200 g, aerosol can 110624 76579011000036106 Bosisto's Eucalyptus Spray 250 mg/g pressurised spray, 200 g 76040011000036101 Bosisto's Eucalyptus Spray 250 mg/g pressurised spray 76024011000036108 Bosisto's Eucalyptus Spray 76024011000036108 Bosisto's Eucalyptus Spray 78134011000036107 eucalyptus oil 250 mg/g spray, 200 g 77505011000036100 eucalyptus oil 250 mg/g spray 73351011000036104 eucalyptus oil +933064011000036100 Valvala 500 mg film-coated tablet, 30, blister pack 154465 932882011000036103 Valvala 500 mg film-coated tablet, 30 932741011000036104 Valvala 500 mg film-coated tablet 932700011000036100 Valvala 932700011000036100 Valvala 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +946691000168108 Risdone 6 mg film-coated tablet, 28, blister pack 144289 946681000168105 Risdone 6 mg film-coated tablet, 28 946571000168108 Risdone 6 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946671000168107 risperidone 6 mg tablet, 28 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +83403011000036102 Atacand Plus 32/12.5 uncoated tablet, 7, blister pack 154247 83322011000036107 Atacand Plus 32/12.5 uncoated tablet, 7 83252011000036104 Atacand Plus 32/12.5 uncoated tablet 61251000168108 Atacand Plus 32/12.5 61251000168108 Atacand Plus 32/12.5 83493011000036104 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 7 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1087901000168106 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 280422 1087891000168107 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 2 x 140 actuations 1087701000168108 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, actuation 1087671000168107 Mometasone Allergy Relief (GPPL) 1087671000168107 Mometasone Allergy Relief (GPPL) 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +44468011000036101 Vinorelbine (Pierre Fabre Medicament) 10 mg/mL concentrated injection, 10 x 1 mL vials 74663 41924011000036107 Vinorelbine (Pierre Fabre Medicament) 10 mg/mL concentrated injection, 10 x 1 mL vials 40266011000036102 Vinorelbine (Pierre Fabre Medicament) 10 mg/mL concentrated injection, vial 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 46712011000036102 vinorelbine 10 mg/mL injection, 10 x 1 mL vials 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +52778011000036101 Strong Pain Caplet (Pharmacor) uncoated tablet, 48, blister pack 75647 52588011000036107 Strong Pain Caplet (Pharmacor) uncoated tablet, 48 52433011000036100 Strong Pain Caplet (Pharmacor) uncoated tablet 6871000168106 Strong Pain Caplet (Pharmacor) 6871000168106 Strong Pain Caplet (Pharmacor) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +140411000036108 Evogam 16% 3.2 g/20 mL injection solution, 20 mL vial 173324 138881000036104 Evogam 16% 3.2 g/20 mL injection solution, 20 mL vial 138051000036104 Evogam 16% 3.2 g/20 mL injection solution, 20 mL vial 25611000168103 Evogam 16% 25611000168103 Evogam 16% 138891000036102 normal immunoglobulin 3.2 g/20 mL injection, 20 mL vial 138061000036101 normal immunoglobulin 3.2 g/20 mL injection, vial 74965011000036103 normal immunoglobulin +79710011000036102 Omeprazole (GA) 20 mg enteric tablet, 5, blister pack 159686 79525011000036104 Omeprazole (GA) 20 mg enteric tablet, 5 4956011000036105 Omeprazole (GA) 20 mg enteric tablet 3601011000036107 Omeprazole (GA) 3601011000036107 Omeprazole (GA) 79831011000036103 omeprazole 20 mg enteric tablet, 5 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +730661000168108 Pioglitazone (Apo) 15 mg uncoated tablet, 28, blister pack 166919 730651000168106 Pioglitazone (Apo) 15 mg uncoated tablet, 28 730641000168109 Pioglitazone (Apo) 15 mg uncoated tablet 730631000168100 Pioglitazone (Apo) 730631000168100 Pioglitazone (Apo) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +869701000168104 Tevaripiprazole 15 mg uncoated tablet, 30, blister pack 238032 869691000168104 Tevaripiprazole 15 mg uncoated tablet, 30 869681000168102 Tevaripiprazole 15 mg uncoated tablet 869611000168108 Tevaripiprazole 869611000168108 Tevaripiprazole 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +18493011000036107 Citalopram (RL) 20 mg film-coated tablet, 28, bottle 100787 11166011000036108 Citalopram (RL) 20 mg film-coated tablet, 28 5756011000036106 Citalopram (RL) 20 mg film-coated tablet 3291011000036107 Citalopram (RL) 3291011000036107 Citalopram (RL) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +989821000168109 Cold Sore (Blooms The Chemist) 5% cream, 5 g, tube 150427 989811000168102 Cold Sore (Blooms The Chemist) 5% cream, 5 g 989801000168100 Cold Sore (Blooms The Chemist) 5% cream 989791000168101 Cold Sore (Blooms The Chemist) 989791000168101 Cold Sore (Blooms The Chemist) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +928832011000036104 Rispernia 4 mg film-coated tablet, 60, bottle 127926 928194011000036105 Rispernia 4 mg film-coated tablet, 60 927853011000036101 Rispernia 4 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +20763011000036100 Eutroxsig 100 microgram uncoated tablet, 200, bottle 90766 13932011000036106 Eutroxsig 100 microgram uncoated tablet, 200 7220011000036103 Eutroxsig 100 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 28022011000036102 levothyroxine sodium 100 microgram tablet, 200 23345011000036105 levothyroxine sodium 100 microgram tablet 21577011000036109 levothyroxine +878451000168107 Baltine 60 mg enteric capsule, 10, blister pack 210679 878441000168105 Baltine 60 mg enteric capsule, 10 878401000168108 Baltine 60 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 878431000168101 duloxetine 60 mg enteric capsule, 10 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +1062631000168108 Rapideine Extra uncoated tablet, 24, blister pack 220728 1062621000168105 Rapideine Extra uncoated tablet, 24 1062551000168103 Rapideine Extra uncoated tablet 1062541000168100 Rapideine Extra 1062541000168100 Rapideine Extra 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +20521011000036108 Diamicron MR 30 mg modified release tablet, 100, blister pack 78940 13721011000036107 Diamicron MR 30 mg modified release tablet, 100 7003011000036109 Diamicron MR 30 mg modified release tablet 15271000168102 Diamicron MR 15271000168102 Diamicron MR 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +50482011000036106 Risperidone (Apo) 4 mg film-coated tablet, 60, blister pack 127615 49551011000036108 Risperidone (Apo) 4 mg film-coated tablet, 60 48754011000036107 Risperidone (Apo) 4 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +60968011000036105 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 24, blister pack 62807 56911011000036107 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 24 54118011000036108 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet 53181011000036100 Paracetamol (Pharmacist Formula) 53181011000036100 Paracetamol (Pharmacist Formula) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +747821000168104 Morphine MR (SCP) 30 mg modified release tablet, 28, blister pack 225422 747811000168106 Morphine MR (SCP) 30 mg modified release tablet, 28 747781000168109 Morphine MR (SCP) 30 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 929756011000036100 morphine sulfate pentahydrate 30 mg modified release tablet, 28 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +1062721000168103 Atorvator 10 mg film-coated tablet, 30, blister pack 179831 1061201000168107 Atorvator 10 mg film-coated tablet, 30 1061171000168108 Atorvator 10 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +749991000168100 Tacrolimus (CH) 500 microgram hard capsule, 100, blister pack 224272 749981000168103 Tacrolimus (CH) 500 microgram hard capsule, 100 749931000168104 Tacrolimus (CH) 500 microgram hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +993591000168107 Lyrica 225 mg hard capsule, 60, bottle 99536 993581000168109 Lyrica 225 mg hard capsule, 60 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +661621000168108 Topiramate (GH) 200 mg film-coated tablet, 60, bottle 135815 661611000168101 Topiramate (GH) 200 mg film-coated tablet, 60 661601000168104 Topiramate (GH) 200 mg film-coated tablet 661591000168106 Topiramate (GH) 661591000168106 Topiramate (GH) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +998411000168109 Desloratadine (Apo) 5 mg film-coated tablet, 45, bottle 202822 998301000168103 Desloratadine (Apo) 5 mg film-coated tablet, 45 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 998291000168104 desloratadine 5 mg tablet, 45 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +59698011000036107 Pain Plus (Capital Chemist) uncoated tablet, 20, blister pack 100214 55632011000036106 Pain Plus (Capital Chemist) uncoated tablet, 20 53634011000036108 Pain Plus (Capital Chemist) uncoated tablet 53092011000036101 Pain Plus (Capital Chemist) 53092011000036101 Pain Plus (Capital Chemist) 63709011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet, 20 62092011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +736601000168105 Clarithromycin (Apo) 500 mg film-coated tablet, 100, bottle 134883 736581000168101 Clarithromycin (Apo) 500 mg film-coated tablet, 100 736571000168104 Clarithromycin (Apo) 500 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +749971000168101 Tacrolimus (CH) 500 microgram hard capsule, 50, blister pack 224272 749961000168107 Tacrolimus (CH) 500 microgram hard capsule, 50 749931000168104 Tacrolimus (CH) 500 microgram hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 749271000168105 tacrolimus 500 microgram capsule, 50 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +1066971000168101 Cold and Flu PE Day and Night (Sandoz) (18 x Day tablets, 6 x Night tablets), 24, blister pack 222849 1066961000168107 Cold and Flu PE Day and Night (Sandoz) (18 x Day tablets, 6 x Night tablets), 24 1066951000168105 Cold and Flu PE Day and Night (Night) (Sandoz) film-coated tablet 1066871000168106 Cold and Flu PE Day and Night (Sandoz) 1066931000168104 Cold and Flu PE Day and Night (Night) (Sandoz) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1066971000168101 Cold and Flu PE Day and Night (Sandoz) (18 x Day tablets, 6 x Night tablets), 24, blister pack 222849 1066961000168107 Cold and Flu PE Day and Night (Sandoz) (18 x Day tablets, 6 x Night tablets), 24 1066941000168108 Cold and Flu PE Day and Night (Day) (Sandoz) film-coated tablet 1066871000168106 Cold and Flu PE Day and Night (Sandoz) 1066881000168109 Cold and Flu PE Day and Night (Day) (Sandoz) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +847951000168102 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle 229890 847941000168104 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 24 847881000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet 691961000168107 Calcium (Sandoz) 691961000168107 Calcium (Sandoz) 847931000168108 calcium carbonate 1.25 g (calcium 500 mg) tablet, 24 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +926896011000036100 Acetec 10 mg uncoated tablet, 30, blister pack 75498 926292011000036106 Acetec 10 mg uncoated tablet, 30 925736011000036109 Acetec 10 mg uncoated tablet 925507011000036102 Acetec 925507011000036102 Acetec 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +979161000168102 Lovenox 60 mg/0.6 mL injection solution, 6 x 0.6 mL syringes 80267 979151000168104 Lovenox 60 mg/0.6 mL injection solution, 6 x 0.6 mL syringes 979121000168107 Lovenox 60 mg/0.6 mL injection solution, 0.6 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823431000168105 enoxaparin sodium 60 mg/0.6 mL injection, 6 x 0.6 mL syringes 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +985551000168100 Advil Mini Caps 200 mg sugar coated tablet, 100, blister pack 104222 985541000168102 Advil Mini Caps 200 mg sugar coated tablet, 100 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +835671000168108 Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules 16368 835661000168102 Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules 835641000168101 Codeine Phosphate (Phebra) 50 mg/mL injection solution, ampoule 33951011000036104 Codeine Phosphate (Phebra) 33951011000036104 Codeine Phosphate (Phebra) 835651000168104 codeine phosphate hemihydrate 50 mg/mL injection, 5 x 1 mL ampoules 835631000168105 codeine phosphate hemihydrate 50 mg/mL injection, ampoule 21821011000036104 codeine +882751000168105 Bosentan (Ran) 62.5 mg film-coated tablet, 60, bottle 257754 878931000168108 Bosentan (Ran) 62.5 mg film-coated tablet, 60 878891000168100 Bosentan (Ran) 62.5 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1079801000168102 Carvedilol (Auro) 12.5 mg film-coated tablet, 60, bottle 174803 1079791000168103 Carvedilol (Auro) 12.5 mg film-coated tablet, 60 737761000168101 Carvedilol (Auro) 12.5 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +1010751000168106 Adynovate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 273517 1010741000168109 Adynovate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010721000168103 Adynovate (inert substance) diluent, 5 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010731000168100 rurioctocog alfa pegol 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +1010751000168106 Adynovate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 273517 1010741000168109 Adynovate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010671000168106 Adynovate (rurioctocog alfa pegol 250 units) powder for injection, 250 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010731000168100 rurioctocog alfa pegol 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 1010661000168100 rurioctocog alfa pegol 250 units injection, vial 1010651000168102 rurioctocog alfa pegol +1082041000168109 Zirizine 10 mg film-coated tablet, 30, blister pack 286354 1082031000168100 Zirizine 10 mg film-coated tablet, 30 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +737241000168107 Cardasa 100 mg enteric tablet, 28, blister pack 201525 737231000168103 Cardasa 100 mg enteric tablet, 28 737221000168101 Cardasa 100 mg enteric tablet 737211000168108 Cardasa 737211000168108 Cardasa 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +753621000168106 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet, 30, blister pack 218256 753571000168108 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet, 30 753561000168102 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet 753551000168104 Olmesartan/Amlodipine 40/5 (Apo) 753551000168104 Olmesartan/Amlodipine 40/5 (Apo) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +978521000168109 Rexulti 4 mg film-coated tablet, 30, blister pack 273224 978511000168102 Rexulti 4 mg film-coated tablet, 30 978491000168107 Rexulti 4 mg film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978501000168100 brexpiprazole 4 mg tablet, 30 978481000168109 brexpiprazole 4 mg tablet 978131000168104 brexpiprazole +1079161000168106 Atomoxetine (GPPL) 60 mg hard capsule, 56, blister pack 234849 1079151000168109 Atomoxetine (GPPL) 60 mg hard capsule, 56 1079081000168103 Atomoxetine (GPPL) 60 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830311000168102 atomoxetine 60 mg capsule, 56 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +18945011000036101 Myocrisin 20 mg/0.5 mL injection solution, 10 x 0.5 mL ampoules 27519 12253011000036109 Myocrisin 20 mg/0.5 mL injection solution, 10 x 0.5 mL ampoules 4948011000036107 Myocrisin 20 mg/0.5 mL injection solution, 0.5 mL ampoule 4337011000036104 Myocrisin 4337011000036104 Myocrisin 27017011000036100 sodium aurothiomalate 20 mg/0.5 mL injection, 10 x 0.5 mL ampoules 22390011000036104 sodium aurothiomalate 20 mg/0.5 mL injection, ampoule 21573011000036100 sodium aurothiomalate +664351000168105 Premarin 625 microgram film-coated tablet, 28, blister pack 177674 664341000168108 Premarin 625 microgram film-coated tablet, 28 664331000168104 Premarin 625 microgram film-coated tablet 2940011000036100 Premarin 2940011000036100 Premarin 27263011000036101 conjugated estrogens 625 microgram tablet, 28 22619011000036102 conjugated estrogens 625 microgram tablet 33629011000036100 conjugated estrogens +85024011000036107 Terbix 250 mg tablet, 42, blister pack 147740 84889011000036108 Terbix 250 mg tablet, 42 84784011000036109 Terbix 250 mg tablet 84759011000036102 Terbix 84759011000036102 Terbix 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +1059901000168105 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 14, blister pack 234479 1059891000168106 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 14 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910791000168107 rosuvastatin 10 mg tablet, 14 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1083651000168108 Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL, pump pack 59109 74356011000036106 Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL 73887011000036103 Decongestant (Terry White Chemists) 0.05% nasal spray 73702011000036103 Decongestant (Terry White Chemists) 73702011000036103 Decongestant (Terry White Chemists) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +749491000168105 Tacoccord 500 microgram hard capsule, 10, blister pack 224283 749481000168107 Tacoccord 500 microgram hard capsule, 10 749471000168109 Tacoccord 500 microgram hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 749241000168103 tacrolimus 500 microgram capsule, 10 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +961941000168109 Natrilix SR 1.5 mg modified release tablet, 30, blister pack 66849 961931000168100 Natrilix SR 1.5 mg modified release tablet, 30 6455011000036106 Natrilix SR 1.5 mg modified release tablet 47361000168100 Natrilix SR 47361000168100 Natrilix SR 672261000168100 indapamide hemihydrate 1.5 mg modified release tablet, 30 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +818631000168107 Afolia 450 units (33 microgram)/0.75 mL injection solution, 10 x 0.75 mL injection devices 262649 818621000168109 Afolia 450 units (33 microgram)/0.75 mL injection solution, 10 x 0.75 mL injection devices 818571000168106 Afolia 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741571000168107 follitropin alfa 450 units (33 microgram)/0.75 mL injection, 10 x 0.75 mL injection devices 741491000168109 follitropin alfa 450 units (33 microgram)/0.75 mL injection, injection device 21352011000036107 follitropin alfa +74091000036105 Astrix 100 mg enteric capsule, 84, blister pack 29551 72101000036108 Astrix 100 mg enteric capsule, 84 54009011000036105 Astrix 100 mg enteric capsule 3721011000036108 Astrix 3721011000036108 Astrix 72111000036105 aspirin 100 mg enteric capsule, 84 61985011000036109 aspirin 100 mg enteric capsule 21719011000036107 aspirin +81012011000036107 B.O.Z. (Gold Cross) ointment, 500 g, jar 14209 80505011000036105 B.O.Z. (Gold Cross) ointment, 500 g 80169011000036101 B.O.Z. (Gold Cross) ointment 80118011000036108 B.O.Z. (Gold Cross) 80118011000036108 B.O.Z. (Gold Cross) 81600011000036102 boric acid 0.25% + olive oil 25% + zinc oxide 7.5% ointment, 500 g 81268011000036103 boric acid 0.25% + olive oil 25% + zinc oxide 7.5% ointment 81215011000036105 boric acid + olive oil + zinc oxide +655691000168100 Atorvastatin (AN) 80 mg film-coated tablet, 30, blister pack 198849 655681000168103 Atorvastatin (AN) 80 mg film-coated tablet, 30 655671000168101 Atorvastatin (AN) 80 mg film-coated tablet 655571000168100 Atorvastatin (AN) 655571000168100 Atorvastatin (AN) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +73268011000036106 Celsentri 150 mg film-coated tablet, 180, bottle 137330 49629011000036101 Celsentri 150 mg film-coated tablet, 180 48792011000036106 Celsentri 150 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51521011000036108 maraviroc 150 mg tablet, 180 50990011000036105 maraviroc 150 mg tablet 50741011000036103 maraviroc +931642011000036104 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 30, bottle 166256 930802011000036105 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 30 930054011000036109 Pravastatin Sodium (Apo) 20 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +19296011000036103 Sabril 500 mg uncoated tablet, 100, bottle 49206 12586011000036101 Sabril 500 mg uncoated tablet, 100 4548011000036101 Sabril 500 mg uncoated tablet 3802011000036106 Sabril 3802011000036106 Sabril 27219011000036102 vigabatrin 500 mg tablet, 100 22580011000036103 vigabatrin 500 mg tablet 21376011000036108 vigabatrin +749511000168100 Tacoccord 500 microgram hard capsule, 50, blister pack 224283 749501000168103 Tacoccord 500 microgram hard capsule, 50 749471000168109 Tacoccord 500 microgram hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 749271000168105 tacrolimus 500 microgram capsule, 50 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +87626011000036106 Oxaliplatin (DBL) 50 mg/10 mL concentrated injection, 10 mL vial 131754 87421011000036104 Oxaliplatin (DBL) 50 mg/10 mL concentrated injection, 10 mL vial 87300011000036108 Oxaliplatin (DBL) 50 mg/10 mL concentrated injection, 10 mL vial 3002011000036107 Oxaliplatin (DBL) 3002011000036107 Oxaliplatin (DBL) 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +818451000168103 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 262647 818441000168100 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 818431000168109 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741291000168105 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, 0.375 mL injection device 741271000168109 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, injection device 21352011000036107 follitropin alfa +116931000036103 Caelyx 20 mg/10 mL concentrated injection, 10 mL vial 60384 115251000036108 Caelyx 20 mg/10 mL concentrated injection, 10 mL vial 113021000036109 Caelyx 20 mg/10 mL concentrated injection, 10 mL vial 3909011000036107 Caelyx 3909011000036107 Caelyx 114371000036108 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, 10 mL vial 113031000036106 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +52795011000036101 Axit 15 mg film-coated tablet, 5, bottle 97196 52603011000036106 Axit 15 mg film-coated tablet, 5 52439011000036102 Axit 15 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 52905011000036108 mirtazapine 15 mg tablet, 5 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +678701000168106 Cetrelief (Pharmacy Action) 10 mg film-coated tablet, 30, blister pack 190243 678691000168106 Cetrelief (Pharmacy Action) 10 mg film-coated tablet, 30 678661000168104 Cetrelief (Pharmacy Action) 10 mg film-coated tablet 678651000168101 Cetrelief (Pharmacy Action) 678651000168101 Cetrelief (Pharmacy Action) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +933214031000036103 Valdoxan 25 mg film-coated tablet, 7, blister pack 159712 933203661000036101 Valdoxan 25 mg film-coated tablet, 7 933195581000036106 Valdoxan 25 mg film-coated tablet 933193351000036105 Valdoxan 933193351000036105 Valdoxan 933203681000036106 agomelatine 25 mg tablet, 7 933195601000036101 agomelatine 25 mg tablet 933216401000036109 agomelatine +713501000168109 Capecitabine (MYX) 150 mg film-coated tablet, 60, blister pack 213041 713491000168102 Capecitabine (MYX) 150 mg film-coated tablet, 60 713481000168100 Capecitabine (MYX) 150 mg film-coated tablet 713471000168103 Capecitabine (MYX) 713471000168103 Capecitabine (MYX) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1015091000168106 Valaciclovir (Apotex) 500 mg film-coated tablet, 80, blister pack 158914 1015081000168108 Valaciclovir (Apotex) 500 mg film-coated tablet, 80 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929223011000036104 valaciclovir 500 mg tablet, 80 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +920691000168108 Aciclovir (Apo) 200 mg tablet, 25, blister pack 159140 920681000168105 Aciclovir (Apo) 200 mg tablet, 25 920671000168107 Aciclovir (Apo) 200 mg tablet 920661000168101 Aciclovir (Apo) 920661000168101 Aciclovir (Apo) 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +931612011000036106 Pravista 20 mg film-coated tablet, 100, bottle 163561 930773011000036107 Pravista 20 mg film-coated tablet, 100 930041011000036108 Pravista 20 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +60092011000036101 Ibuprofen Children's (Pharmacy Choice) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 126539 56053011000036105 Ibuprofen Children's (Pharmacy Choice) 100 mg/5 mL oral liquid suspension, 100 mL 53772011000036109 Ibuprofen Children's (Pharmacy Choice) 100 mg/5 mL oral liquid suspension, 5 mL 44171000168104 Ibuprofen Children's (Pharmacy Choice) 44171000168104 Ibuprofen Children's (Pharmacy Choice) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +20566011000036107 Bonefos 800 mg film-coated tablet, 60, bottle 181922 13757011000036100 Bonefos 800 mg film-coated tablet, 60 7042011000036106 Bonefos 800 mg film-coated tablet 3256011000036108 Bonefos 3256011000036108 Bonefos 27920011000036102 clodronate sodium 800 mg tablet, 60 23244011000036101 clodronate sodium 800 mg tablet 21247011000036100 clodronate +20566011000036107 Bonefos 800 mg film-coated tablet, 60, bottle 80125 13757011000036100 Bonefos 800 mg film-coated tablet, 60 7042011000036106 Bonefos 800 mg film-coated tablet 3256011000036108 Bonefos 3256011000036108 Bonefos 27920011000036102 clodronate sodium 800 mg tablet, 60 23244011000036101 clodronate sodium 800 mg tablet 21247011000036100 clodronate +894991000168108 Atomoxetine (Sandoz) 25 mg hard capsule, 7, blister pack 238368 894981000168105 Atomoxetine (Sandoz) 25 mg hard capsule, 7 894971000168107 Atomoxetine (Sandoz) 25 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +777381000168109 Karvea 300 mg film-coated tablet, 5, blister pack 101708 777371000168106 Karvea 300 mg film-coated tablet, 5 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777361000168100 irbesartan 300 mg tablet, 5 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +18510011000036107 Nilstat 500 000 units film-coated tablet, 50, bottle 15227 12079011000036102 Nilstat 500 000 units film-coated tablet, 50 5729011000036103 Nilstat 500 000 units film-coated tablet 32391000168106 Nilstat 32391000168106 Nilstat 26901011000036103 nystatin 500 000 units tablet, 50 22279011000036109 nystatin 500 000 units tablet 21669011000036102 nystatin +880581000168108 Bupivacaine (Claris) 0.5% (50 mg/10 mL) injection solution, 5 x 10 mL vials 223237 880571000168105 Bupivacaine (Claris) 0.5% (50 mg/10 mL) injection solution, 5 x 10 mL vials 880551000168101 Bupivacaine (Claris) 0.5% (50 mg/10 mL) injection solution, 10 mL vial 879561000168104 Bupivacaine (Claris) 879561000168104 Bupivacaine (Claris) 880561000168104 bupivacaine hydrochloride 0.5% (50 mg/10 mL) injection, 5 x 10 mL vials 880541000168103 bupivacaine hydrochloride 0.5% (50 mg/10 mL) injection, vial 37702011000036102 bupivacaine +916591000168103 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 170264 916581000168101 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 916521000168100 Aleviate 500 IU FVIII/1200 IU VWF (factor VIII 500 units + von Willebrand factor 1200 units) powder for injection, 1 vial 916501000168109 Aleviate 500 IU FVIII/1200 IU VWF 916501000168109 Aleviate 500 IU FVIII/1200 IU VWF 916571000168104 factor VIII 500 units + von Willebrand factor 1200 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 916511000168107 factor VIII 500 units + von Willebrand factor 1200 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +916591000168103 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 170264 916581000168101 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 916461000168109 Aleviate (inert substance) diluent, 10 mL vial 916501000168109 Aleviate 500 IU FVIII/1200 IU VWF 916281000168104 Aleviate 916571000168104 factor VIII 500 units + von Willebrand factor 1200 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +17994011000036104 Lipex 20 mg film-coated tablet, 30, blister pack 11617 11506011000036101 Lipex 20 mg film-coated tablet, 30 5881011000036109 Lipex 20 mg film-coated tablet 3298011000036103 Lipex 3298011000036103 Lipex 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +69566011000036101 Dettol Antiseptic Liquid 4.8% solution, 125 mL, bottle 61404 67366011000036108 Dettol Antiseptic Liquid 4.8% solution, 125 mL 65632011000036107 Dettol Antiseptic Liquid 4.8% solution 65186011000036101 Dettol Antiseptic Liquid 65186011000036101 Dettol Antiseptic Liquid 71906011000036104 chloroxylenol 4.8% solution, 125 mL 70243011000036106 chloroxylenol 4.8% solution 69808011000036100 chloroxylenol +19660011000036102 Endep 25 mg film-coated tablet, 50, bottle 59787 12924011000036106 Endep 25 mg film-coated tablet, 50 6214011000036104 Endep 25 mg film-coated tablet 4195011000036109 Endep 4195011000036109 Endep 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +52766011000036105 Lisinopril (Apo) 20 mg tablet, 30, bottle 144029 52576011000036101 Lisinopril (Apo) 20 mg tablet, 30 52425011000036101 Lisinopril (Apo) 20 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +13761000036109 Frusemide (PS) 40 mg uncoated tablet, 100, bottle 176038 8871000036100 Frusemide (PS) 40 mg uncoated tablet, 100 2101000036101 Frusemide (PS) 40 mg uncoated tablet 841000036100 Frusemide (PS) 841000036100 Frusemide (PS) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +84292011000036109 Octreotide (MaxRx) 50 microgram/mL injection solution, 5 x 1 mL ampoules 148404 83985011000036104 Octreotide (MaxRx) 50 microgram/mL injection solution, 5 x 1 mL ampoules 83620011000036104 Octreotide (MaxRx) 50 microgram/mL injection solution, ampoule 83565011000036107 Octreotide (MaxRx) 83565011000036107 Octreotide (MaxRx) 27090011000036102 octreotide 50 microgram/mL injection, 5 x 1 mL ampoules 22459011000036105 octreotide 50 microgram/mL injection, ampoule 21316011000036104 octreotide +800681000168108 Actonate 35 mg film-coated tablet, 10, blister pack 163748 800671000168105 Actonate 35 mg film-coated tablet, 10 800601000168100 Actonate 35 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 929753011000036106 risedronate sodium 35 mg tablet, 10 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +19671000036109 Influvac 2012 injection suspension, 10 x 0.5 mL syringes 81465 19231000036109 Influvac 2012 injection suspension, 10 x 0.5 mL syringes 18651000036109 Influvac 2012 injection suspension, 0.5 mL syringe 34491000168106 Influvac 2012 34491000168106 Influvac 2012 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +777981000168105 Endone XR 20 mg modified release tablet, 20, blister pack 153599 777971000168107 Endone XR 20 mg modified release tablet, 20 777961000168101 Endone XR 20 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +970991000168104 Pregabalin (Apo) 25 mg hard capsule, 100, bottle 193211 970981000168102 Pregabalin (Apo) 25 mg hard capsule, 100 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 970971000168100 pregabalin 25 mg capsule, 100 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +717131000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 140, blister pack 149417 717121000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 140 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716311000168109 omeprazole 20 mg enteric capsule, 140 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +1045891000168106 Bimtop 0.03% eye drops, 3 x 3 mL, bottles 274754 1045881000168108 Bimtop 0.03% eye drops, 3 x 3 mL 1045841000168103 Bimtop 0.03% eye drops 1045771000168102 Bimtop 1045771000168102 Bimtop 1045871000168105 bimatoprost 0.03% eye drops, 3 x 3 mL 23261011000036108 bimatoprost 0.03% eye drops 21297011000036105 bimatoprost +95691000036107 Azithromycin (Apo) 500 mg film-coated tablet, 3, blister pack 195910 94591000036107 Azithromycin (Apo) 500 mg film-coated tablet, 3 93381000036101 Azithromycin (Apo) 500 mg film-coated tablet 93201000036100 Azithromycin (Apo) 93201000036100 Azithromycin (Apo) 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +130491000036102 Pritor Plus 80/25 multilayer tablet, 28, blister pack 162923 127431000036100 Pritor Plus 80/25 multilayer tablet, 28 125081000036104 Pritor Plus 80/25 multilayer tablet 57191000168107 Pritor Plus 80/25 57191000168107 Pritor Plus 80/25 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +842481000168103 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 5 x 2.5 mL ampoules 12533 842471000168101 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 5 x 2.5 mL ampoules 5106011000036109 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 34231000168108 Ventolin Nebules 34231000168108 Ventolin Nebules 842461000168107 salbutamol 2.5 mg/2.5 mL inhalation solution, 5 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +803651000168105 Abilify ODT 15 mg orally disintegrating tablet, 28, blister pack 128898 803641000168108 Abilify ODT 15 mg orally disintegrating tablet, 28 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803631000168104 aripiprazole 15 mg orally disintegrating tablet, 28 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +151881000036105 Lamisil Once 1% collodion, 4 g, tube 124887 149911000036106 Lamisil Once 1% collodion, 4 g 148711000036102 Lamisil Once 1% collodion 29121000168102 Lamisil Once 29121000168102 Lamisil Once 149921000036104 terbinafine 1% collodion, 4 g 148721000036109 terbinafine 1% collodion 21575011000036104 terbinafine +59910011000036105 Strong Pain Relief (Chemmart) tablet, 48, blister pack 117609 55872011000036103 Strong Pain Relief (Chemmart) tablet, 48 53704011000036105 Strong Pain Relief (Chemmart) tablet 53479011000036108 Strong Pain Relief (Chemmart) 53479011000036108 Strong Pain Relief (Chemmart) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +69167011000036105 Sodium Acetate (DBL) 1.64 g/10 mL concentrated injection, 50 x 10 mL ampoules 16262 66967011000036104 Sodium Acetate (DBL) 1.64 g/10 mL concentrated injection, 50 x 10 mL ampoules 65509011000036101 Sodium Acetate (DBL) 1.64 g/10 mL concentrated injection, 10 mL ampoule 65028011000036103 Sodium Acetate (DBL) 65028011000036103 Sodium Acetate (DBL) 71540011000036101 sodium acetate 1.64 g/10 mL injection, 50 x 10 mL ampoules 70049011000036103 sodium acetate 1.64 g/10 mL injection, ampoule 69877011000036108 acetate +770461000168109 PKU Easy Microtabs modified release tablet, 110 g, bottle 770451000168107 PKU Easy Microtabs modified release tablet, 110 g 770431000168101 PKU Easy Microtabs modified release tablet 770211000168105 PKU Easy Microtabs 770211000168105 PKU Easy Microtabs 770441000168105 amino acid formula without phenylalanine modified release tablet, 110 g 770421000168104 amino acid formula without phenylalanine modified release tablet 50722011000036107 amino acid formula without phenylalanine +926758011000036107 Risperidone (Sandoz) 500 microgram film-coated tablet, 60, bottle 147345 926156011000036102 Risperidone (Sandoz) 500 microgram film-coated tablet, 60 925644011000036108 Risperidone (Sandoz) 500 microgram film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +45311000036104 Melox 15 mg hard capsule, 30, blister pack 181207 43461000036107 Melox 15 mg hard capsule, 30 40521000036107 Melox 15 mg hard capsule 40051000036105 Melox 40051000036105 Melox 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +60888011000036100 Dimetapp Cold and Allergy Extra Strength Drops oral liquid solution, 50 mL, bottle 59768 56842011000036104 Dimetapp Cold and Allergy Extra Strength Drops oral liquid solution, 50 mL 54096011000036104 Dimetapp Cold and Allergy Extra Strength Drops oral liquid solution 53841000168103 Dimetapp Cold and Allergy Extra Strength Drops 53841000168103 Dimetapp Cold and Allergy Extra Strength Drops 63605011000036102 brompheniramine maleate 800 microgram/mL + phenylephrine hydrochloride 1 mg/mL oral liquid, 50 mL 62026011000036100 brompheniramine maleate 800 microgram/mL + phenylephrine hydrochloride 1 mg/mL oral liquid 61726011000036103 brompheniramine + phenylephrine +841111000168109 Escitalopram (Blooms The Chemist) 10 mg film-coated tablet, 28, blister pack 272630 841101000168106 Escitalopram (Blooms The Chemist) 10 mg film-coated tablet, 28 841091000168101 Escitalopram (Blooms The Chemist) 10 mg film-coated tablet 841041000168109 Escitalopram (Blooms The Chemist) 841041000168109 Escitalopram (Blooms The Chemist) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +44739011000036108 Testogel 1% (25 mg/2.5 g) gel, 30 x 2.5 g sachets 96129 42184011000036100 Testogel 1% (25 mg/2.5 g) gel, 30 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46945011000036106 testosterone 1% (25 mg/2.5 g) gel, 30 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +19003011000036101 Aldomet 250 mg film-coated tablet, 100, bottle 34361 12310011000036104 Aldomet 250 mg film-coated tablet, 100 5685011000036102 Aldomet 250 mg film-coated tablet 4019011000036103 Aldomet 4019011000036103 Aldomet 27664011000036101 methyldopa 250 mg tablet, 100 23001011000036104 methyldopa 250 mg tablet 21515011000036109 methyldopa +19651000036104 Vaxigrip 2012 injection suspension, 10 x 0.5 mL syringes 80198 19211000036100 Vaxigrip 2012 injection suspension, 10 x 0.5 mL syringes 18671000036104 Vaxigrip 2012 injection suspension, 0.5 mL syringe 58191000168108 Vaxigrip 2012 58191000168108 Vaxigrip 2012 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +795381000168105 Instanyl 200 microgram/actuation nasal spray, 8 x 1 actuation, pump packs 197689 795371000168107 Instanyl 200 microgram/actuation nasal spray, 8 x 1 actuation 795261000168105 Instanyl 200 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795361000168101 fentanyl 200 microgram/actuation nasal spray, 8 x 1 actuation 795251000168108 fentanyl 200 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +1048881000168103 Dolased Forte uncoated tablet, 2, blister pack 203987 1048871000168101 Dolased Forte uncoated tablet, 2 685391000168103 Dolased Forte uncoated tablet 685381000168101 Dolased Forte 685381000168101 Dolased Forte 933223401000036106 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet, 2 933219641000036102 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +945041000168102 Cilopam-S 5 mg film-coated tablet, 28, blister pack 191871 945031000168106 Cilopam-S 5 mg film-coated tablet, 28 944981000168107 Cilopam-S 5 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +1057471000168104 Atorvastatin (Ran) 40 mg film-coated tablet, 6, blister pack 179827 1057461000168105 Atorvastatin (Ran) 40 mg film-coated tablet, 6 1057081000168106 Atorvastatin (Ran) 40 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 841061000168108 atorvastatin 40 mg tablet, 6 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1057431000168102 Ramipril (Auro) 5 mg uncoated tablet, 28, blister pack 175222 1057421000168100 Ramipril (Auro) 5 mg uncoated tablet, 28 1057401000168109 Ramipril (Auro) 5 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 1057411000168107 ramipril 5 mg tablet, 28 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1107801000168108 Midazolam (Intas) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207229 1107791000168107 Midazolam (Intas) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 1107731000168108 Midazolam (Intas) 15 mg/3 mL injection solution, 3 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +34831011000036107 Oxycontin 5 mg modified release tablet, 60, blister pack 93732 34406011000036100 Oxycontin 5 mg modified release tablet, 60 7349011000036100 Oxycontin 5 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35245011000036108 oxycodone hydrochloride 5 mg modified release tablet, 60 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +13801000036103 Aripiprazole (GH) 10 mg uncoated tablet, 30, blister pack 176808 8921000036105 Aripiprazole (GH) 10 mg uncoated tablet, 30 2791000036108 Aripiprazole (GH) 10 mg uncoated tablet 991000036104 Aripiprazole (GH) 991000036104 Aripiprazole (GH) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +677191000168102 Valsartan HCTZ 320/12.5 (Apo) film-coated tablet, 28, blister pack 202344 677181000168100 Valsartan HCTZ 320/12.5 (Apo) film-coated tablet, 28 677171000168103 Valsartan HCTZ 320/12.5 (Apo) film-coated tablet 677161000168109 Valsartan HCTZ 320/12.5 (Apo) 677161000168109 Valsartan HCTZ 320/12.5 (Apo) 81588011000036106 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet, 28 81263011000036108 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +1117591000168103 Donepezil (GH) 10 mg film-coated tablet, 84, blister pack 193667 1117581000168101 Donepezil (GH) 10 mg film-coated tablet, 84 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200991000036106 donepezil hydrochloride 10 mg tablet, 84 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +151971000036104 Nicorette Invisipatch 10 mg/16 hours patch, 14, sachet 162577 150061000036102 Nicorette Invisipatch 10 mg/16 hours patch, 14 148611000036109 Nicorette Invisipatch 10 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 150071000036105 nicotine 10 mg/16 hours patch, 14 22500011000036104 nicotine 10 mg/16 hours patch 21432011000036100 nicotine +21021011000036103 Stalevo 50/12.5/200 film-coated tablet, 100, bottle 96372 14167011000036101 Stalevo 50/12.5/200 film-coated tablet, 100 7446011000036102 Stalevo 50/12.5/200 film-coated tablet 2781000168104 Stalevo 50/12.5/200 2781000168104 Stalevo 50/12.5/200 28183011000036108 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 100 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +160541000036104 Kadcyla 100 mg powder for injection, 1 vial 201621 159351000036107 Kadcyla 100 mg powder for injection, 1 vial 158041000036101 Kadcyla 100 mg powder for injection, 100 mg vial 157721000036108 Kadcyla 157721000036108 Kadcyla 159361000036105 trastuzumab emtansine 100 mg injection, 1 vial 158051000036103 trastuzumab emtansine 100 mg injection, vial 160691000036106 trastuzumab emtansine +745991000168102 Celebrex 200 mg hard capsule, 120, blister pack 67902 745981000168100 Celebrex 200 mg hard capsule, 120 6496011000036105 Celebrex 200 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +20439011000036103 Aranesp 10 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 77950 13642011000036109 Aranesp 10 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 6925011000036107 Aranesp 10 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27852011000036107 darbepoetin alfa 10 microgram/0.4 mL injection, 4 x 0.4 mL syringes 23180011000036101 darbepoetin alfa 10 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +20802011000036105 Liprace 10 mg uncoated tablet, 30, blister pack 91378 13968011000036104 Liprace 10 mg uncoated tablet, 30 7254011000036109 Liprace 10 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +1045571000168107 Nexium 24HR Once Daily Dosing 20 mg enteric tablet, 7, blister pack 231439 1045561000168101 Nexium 24HR Once Daily Dosing 20 mg enteric tablet, 7 1045551000168103 Nexium 24HR Once Daily Dosing 20 mg enteric tablet 1045541000168100 Nexium 24HR Once Daily Dosing 1045541000168100 Nexium 24HR Once Daily Dosing 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +60404011000036102 Nurofen Regular 200 mg sugar coated tablet, 2, blister pack 144202 56363011000036102 Nurofen Regular 200 mg sugar coated tablet, 2 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63628011000036100 ibuprofen 200 mg tablet, 2 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +74181000036107 Selsun Gold 2.5% shampoo, 200 mL, bottle 29682 72221000036108 Selsun Gold 2.5% shampoo, 200 mL 69931000036102 Selsun Gold 2.5% shampoo 17291000168106 Selsun Gold 17291000168106 Selsun Gold 72231000036105 selenium sulfide 2.5% shampoo, 200 mL 69901000036109 selenium sulfide 2.5% shampoo 21422011000036103 selenium sulfide +68961011000036103 Coloxyl 120 mg film-coated tablet, 100, bottle 133300 66763011000036104 Coloxyl 120 mg film-coated tablet, 100 65476011000036107 Coloxyl 120 mg film-coated tablet 3026011000036101 Coloxyl 3026011000036101 Coloxyl 71415011000036105 docusate sodium 120 mg tablet, 100 70003011000036106 docusate sodium 120 mg tablet 21872011000036106 docusate +920700011000036105 Glucosamine Hydrochloride 1000 (Chemists' Own) 1 g film-coated tablet, 90, bottle 120388 920367011000036109 Glucosamine Hydrochloride 1000 (Chemists' Own) 1 g film-coated tablet, 90 920133011000036103 Glucosamine Hydrochloride 1000 (Chemists' Own) 1 g film-coated tablet 62571000168109 Glucosamine Hydrochloride 1000 (Chemists' Own) 62571000168109 Glucosamine Hydrochloride 1000 (Chemists' Own) 920851011000036106 glucosamine hydrochloride 1 g tablet, 90 82447011000036106 glucosamine hydrochloride 1 g tablet 69813011000036107 glucosamine +160561000036103 Kombiglyze XR 2.5/1000 modified release tablet, 14, blister pack 202207 159391000036103 Kombiglyze XR 2.5/1000 modified release tablet, 14 157851000036106 Kombiglyze XR 2.5/1000 modified release tablet 43031000168100 Kombiglyze XR 2.5/1000 43031000168100 Kombiglyze XR 2.5/1000 159401000036100 saxagliptin 2.5 mg + metformin hydrochloride 1 g modified release tablet, 14 157861000036109 saxagliptin 2.5 mg + metformin hydrochloride 1 g modified release tablet 160681000036109 saxagliptin + metformin +151931000036101 Symbicort Rapihaler 100/3 pressurised inhalation, 120 actuations, metered dose aerosol can 158899 149971000036100 Symbicort Rapihaler 100/3 pressurised inhalation, 120 actuations 148291000036102 Symbicort Rapihaler 100/3 pressurised inhalation, actuation 29191000168100 Symbicort Rapihaler 100/3 29191000168100 Symbicort Rapihaler 100/3 149981000036103 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 3 microgram/actuation pressurised inhalation, 120 actuations 148301000036103 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 3 microgram/actuation pressurised inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +778021000168108 Oxycodone MR (Apo) 40 mg modified release tablet, 60, blister pack 160090 778011000168101 Oxycodone MR (Apo) 40 mg modified release tablet, 60 777931000168109 Oxycodone MR (Apo) 40 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +975321000168107 Anthisan 2% cream, 25 g, tube 64381 975311000168100 Anthisan 2% cream, 25 g 975291000168104 Anthisan 2% cream 975261000168106 Anthisan 975261000168106 Anthisan 975301000168103 mepyramine maleate 2% cream, 25 g 975281000168102 mepyramine maleate 2% cream 975271000168100 mepyramine +1080131000168103 Bisoprolol (Auro) 1.25 mg film-coated tablet, 100, blister pack 175928 1080121000168101 Bisoprolol (Auro) 1.25 mg film-coated tablet, 100 1080071000168101 Bisoprolol (Auro) 1.25 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 46789011000036109 bisoprolol fumarate 1.25 mg tablet, 100 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1108911000168101 Midazolam (WP) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207227 1108901000168104 Midazolam (WP) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 1108851000168108 Midazolam (WP) 5 mg/5 mL injection solution, 5 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +19873011000036106 Eprex 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 65442 13120011000036107 Eprex 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 6403011000036102 Eprex 1000 units/0.5 mL injection solution, 0.5 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27561011000036109 epoetin alfa 1000 units/0.5 mL injection, 6 x 0.5 mL syringes 22900011000036109 epoetin alfa 1000 units/0.5 mL injection, syringe 21294011000036104 epoetin alfa +44533011000036106 Midazolam (Sandoz) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 78976 41986011000036105 Midazolam (Sandoz) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 40303011000036103 Midazolam (Sandoz) 50 mg/10 mL injection solution, 10 mL ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +850071000168108 Vzole 200 mg film-coated tablet, 20, bottle 238241 849771000168101 Vzole 200 mg film-coated tablet, 20 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46806011000036104 voriconazole 200 mg tablet, 20 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +920674011000036100 Quinapril (GA) 20 mg film-coated tablet, 30, blister pack 133235 920389011000036104 Quinapril (GA) 20 mg film-coated tablet, 30 920152011000036106 Quinapril (GA) 20 mg film-coated tablet 920106011000036101 Quinapril (GA) 920106011000036101 Quinapril (GA) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +1094881000168103 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 8, blister pack 287918 1094871000168101 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 8 1094831000168104 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule 53104011000036101 Diarrhoea Relief (Chemists' Own) 53104011000036101 Diarrhoea Relief (Chemists' Own) 933206161000036104 loperamide hydrochloride 2 mg capsule, 8 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +91441000036102 Robitussin Cold and Flu plus Decongestant uncoated tablet, 24, blister pack 179219 89661000036103 Robitussin Cold and Flu plus Decongestant uncoated tablet, 24 88481000036101 Robitussin Cold and Flu plus Decongestant uncoated tablet 87771000036107 Robitussin Cold and Flu plus Decongestant 87771000036107 Robitussin Cold and Flu plus Decongestant 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +1045591000168108 Nexium 24HR Once Daily Dosing 20 mg enteric tablet, 14, blister pack 231439 1045581000168105 Nexium 24HR Once Daily Dosing 20 mg enteric tablet, 14 1045551000168103 Nexium 24HR Once Daily Dosing 20 mg enteric tablet 1045541000168100 Nexium 24HR Once Daily Dosing 1045541000168100 Nexium 24HR Once Daily Dosing 700031831000036109 esomeprazole 20 mg enteric tablet, 14 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +931632011000036103 Aranesp with Automatic Needle Guard 150 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 166089 930792011000036105 Aranesp with Automatic Needle Guard 150 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 930047011000036100 Aranesp with Automatic Needle Guard 150 microgram/0.3 mL injection solution, 0.3 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27860011000036101 darbepoetin alfa 150 microgram/0.3 mL injection, 4 x 0.3 mL syringes 23188011000036104 darbepoetin alfa 150 microgram/0.3 mL injection, syringe 21234011000036105 darbepoetin alfa +43951011000036103 Toradol 10 mg/mL injection solution, 5 x 1 mL ampoules 34356 41443011000036106 Toradol 10 mg/mL injection solution, 5 x 1 mL ampoules 39975011000036101 Toradol 10 mg/mL injection solution, ampoule 39688011000036101 Toradol 39688011000036101 Toradol 46294011000036104 ketorolac trometamol 10 mg/mL injection, 5 x 1 mL ampoules 45059011000036100 ketorolac trometamol 10 mg/mL injection, ampoule 44879011000036107 ketorolac +19511000036102 Risperidone (Actavis) 4 mg film-coated tablet, 60, blister pack 159970 19131000036100 Risperidone (Actavis) 4 mg film-coated tablet, 60 18521000036104 Risperidone (Actavis) 4 mg film-coated tablet 9261000168107 Risperidone (Actavis) 9261000168107 Risperidone (Actavis) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +152041000036104 Evifyne 60 mg film-coated tablet, 28, blister pack 172550 150251000036106 Evifyne 60 mg film-coated tablet, 28 148731000036106 Evifyne 60 mg film-coated tablet 147791000036108 Evifyne 147791000036108 Evifyne 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +979441000168105 Paracetamol (CA) 500 mg uncoated tablet, 32, blister pack 197677 979431000168101 Paracetamol (CA) 500 mg uncoated tablet, 32 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 979421000168104 paracetamol 500 mg tablet, 32 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +992241000168109 Bisoprolol (Apotex) 2.5 mg tablet, 30, blister pack 182126 992231000168100 Bisoprolol (Apotex) 2.5 mg tablet, 30 992121000168107 Bisoprolol (Apotex) 2.5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79203011000036100 bisoprolol fumarate 2.5 mg tablet, 30 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +1051211000168100 Oxycodone (Sandoz) 80 mg modified release tablet, 20, blister pack 153591 785801000168109 Oxycodone (Sandoz) 80 mg modified release tablet, 20 676281000168105 Oxycodone (Sandoz) 80 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +20357011000036104 Puregon 300 units/0.36 mL injection solution, 0.36 mL cartridge 76436 13565011000036100 Puregon 300 units/0.36 mL injection solution, 0.36 mL cartridge 6847011000036108 Puregon 300 units/0.36 mL injection solution, 0.36 mL cartridge 2961011000036103 Puregon 2961011000036103 Puregon 27804011000036105 follitropin beta 300 units/0.36 mL injection, 0.36 mL cartridge 23132011000036108 follitropin beta 300 units/0.36 mL injection, cartridge 21333011000036104 follitropin beta +19491000036106 Risperidone 0.5 (Actavis) 500 microgram film-coated tablet, 60, blister pack 159974 19151000036108 Risperidone 0.5 (Actavis) 500 microgram film-coated tablet, 60 18541000036107 Risperidone 0.5 (Actavis) 500 microgram film-coated tablet 64091000168108 Risperidone 0.5 (Actavis) 64091000168108 Risperidone 0.5 (Actavis) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +45471000036103 Hydroxychloroquine Sulfate (Apo) 200 mg tablet, 100, bottle 186393 43621000036101 Hydroxychloroquine Sulfate (Apo) 200 mg tablet, 100 40511000036100 Hydroxychloroquine Sulfate (Apo) 200 mg tablet 31541000168100 Hydroxychloroquine Sulfate (Apo) 31541000168100 Hydroxychloroquine Sulfate (Apo) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +812381000168100 Iptam 100 mg film-coated tablet, 24, blister pack 124087 812371000168103 Iptam 100 mg film-coated tablet, 24 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 812361000168109 sumatriptan 100 mg tablet, 24 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +61372011000036100 Cold and Allergy Mixture (Pharmacy Health) oral liquid solution, 200 mL, bottle 81533 57297011000036100 Cold and Allergy Mixture (Pharmacy Health) oral liquid solution, 200 mL 54263011000036101 Cold and Allergy Mixture (Pharmacy Health) oral liquid solution, 5 mL 4461000168107 Cold and Allergy Mixture (Pharmacy Health) 4461000168107 Cold and Allergy Mixture (Pharmacy Health) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +921976011000036101 Sodium Chloride (Pfizer (Perth)) 0.9% (90 mg/10 mL) injection solution, 50 x 10 mL ampoules 49278 921534011000036101 Sodium Chloride (Pfizer (Perth)) 0.9% (90 mg/10 mL) injection solution, 50 x 10 mL ampoules 5297011000036106 Sodium Chloride (Pfizer (Perth)) 0.9% (90 mg/10 mL) injection solution, 10 mL ampoule 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 71778011000036104 sodium chloride 0.9% (90 mg/10 mL) injection, 50 x 10 mL ampoules 22582011000036104 sodium chloride 0.9% (90 mg/10 mL) injection, ampoule 21308011000036103 sodium chloride +77354011000036109 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 20, blister pack 58928 76770011000036104 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 20 76173011000036100 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78303011000036107 calcium carbonate 500 mg chewable tablet, 20 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +803741000168103 Abilify ODT 15 mg orally disintegrating tablet, 60, blister pack 128898 803731000168107 Abilify ODT 15 mg orally disintegrating tablet, 60 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803721000168109 aripiprazole 15 mg orally disintegrating tablet, 60 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +44170011000036108 Cozaar 50 mg film-coated tablet, 30, blister pack 54809 41646011000036103 Cozaar 50 mg film-coated tablet, 30 40122011000036109 Cozaar 50 mg film-coated tablet 39592011000036106 Cozaar 39592011000036106 Cozaar 46465011000036101 losartan potassium 50 mg tablet, 30 45171011000036109 losartan potassium 50 mg tablet 44887011000036108 losartan +19343011000036107 Iopidine 0.5% eye drops solution, 10 mL, bottle 51190 12631011000036106 Iopidine 0.5% eye drops solution, 10 mL 5464011000036101 Iopidine 0.5% eye drops solution 3165011000036109 Iopidine 3165011000036109 Iopidine 27245011000036108 apraclonidine 0.5% eye drops, 10 mL 22604011000036100 apraclonidine 0.5% eye drops 21648011000036101 apraclonidine +178021000036107 Iodosorb 50% ointment, 10 g, tube 178031000036109 Iodosorb 50% ointment, 10 g 6322011000036107 Iodosorb 50% ointment 28461000168109 Iodosorb 28461000168109 Iodosorb 178041000036104 cadexomer-iodine 50% ointment, 10 g 22849011000036103 cadexomer-iodine 50% ointment 21550011000036106 cadexomer-iodine +899061000168103 Strensiq 18 mg/0.45 mL injection solution, 0.45 mL vial 266985 899051000168100 Strensiq 18 mg/0.45 mL injection solution, 0.45 mL vial 899031000168106 Strensiq 18 mg/0.45 mL injection solution, 0.45 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 899041000168102 asfotase alfa 18 mg/0.45 mL injection, 0.45 mL vial 899021000168108 asfotase alfa 18 mg/0.45 mL injection, vial 898041000168106 asfotase alfa +86889011000036102 Vita-D 25 microgram (1000 units) soft capsule, 60, bottle 164567 86771011000036107 Vita-D 25 microgram (1000 units) soft capsule, 60 86643011000036103 Vita-D 25 microgram (1000 units) soft capsule 86578011000036104 Vita-D 86578011000036104 Vita-D 86409011000036109 colecalciferol 25 microgram (1000 units) capsule, 60 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +44631011000036104 Levitra 10 mg film-coated tablet, 1, blister pack 90499 42084011000036109 Levitra 10 mg film-coated tablet, 1 40349011000036106 Levitra 10 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46851011000036103 vardenafil 10 mg tablet, 1 45333011000036101 vardenafil 10 mg tablet 44856011000036100 vardenafil +152001000036102 Nicorette Invisipatch 25 mg/16 hours patch, 14, sachet 162578 150111000036103 Nicorette Invisipatch 25 mg/16 hours patch, 14 148581000036102 Nicorette Invisipatch 25 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 150121000036105 nicotine 25 mg/16 hours patch, 14 148591000036100 nicotine 25 mg/16 hours patch 21432011000036100 nicotine +929705011000036102 MS Contin Suspension 60 mg modified release granules, 28 sachets 65397 929541011000036108 MS Contin Suspension 60 mg modified release granules, 28 sachets 6398011000036100 MS Contin Suspension 60 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 929762011000036109 morphine sulfate pentahydrate 60 mg modified release granules, 28 sachets 22895011000036105 morphine sulfate pentahydrate 60 mg modified release granules, 1 sachet 21252011000036100 morphine +923811011000036102 Sulprix 100 mg tablet, 60, bottle 156046 84010011000036104 Sulprix 100 mg tablet, 60 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +1037231000168100 Atorvastatin (RBX) 80 mg film-coated tablet, 30, blister pack 173512 1037221000168103 Atorvastatin (RBX) 80 mg film-coated tablet, 30 1037191000168109 Atorvastatin (RBX) 80 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +931390011000036103 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, 5 x 1 mL ampoules 12048 930574011000036105 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, 5 x 1 mL ampoules 929933011000036101 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, ampoule 929922011000036105 Adrenaline (Link) 929922011000036105 Adrenaline (Link) 26720011000036105 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, 5 x 1 mL ampoules 22115011000036100 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +34733011000036106 Pholcodine Linctus (Orion) 1 mg/mL oral liquid solution, 200 mL, bottle 42858 34317011000036108 Pholcodine Linctus (Orion) 1 mg/mL oral liquid solution, 200 mL 34038011000036104 Pholcodine Linctus (Orion) 1 mg/mL oral liquid solution 33945011000036100 Pholcodine Linctus (Orion) 33945011000036100 Pholcodine Linctus (Orion) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +118851000036104 Crinone 8% vaginal gel, 18 applications, applicator 83166 118511000036101 Crinone 8% vaginal gel, 18 applications 118031000036103 Crinone 8% vaginal gel, 1 application 3283011000036109 Crinone 3283011000036109 Crinone 118521000036108 progesterone 8% vaginal gel, 18 applications 118041000036108 progesterone 8% vaginal gel, 1 application 21412011000036108 progesterone +769501000168106 Dexamethasone (Mylan) 8 mg/2 mL injection solution, 10 x 2 mL vials 163199 769491000168104 Dexamethasone (Mylan) 8 mg/2 mL injection solution, 10 x 2 mL vials 769461000168106 Dexamethasone (Mylan) 8 mg/2 mL injection solution, 2 mL vial 769451000168109 Dexamethasone (Mylan) 769451000168109 Dexamethasone (Mylan) 53021000036107 dexamethasone phosphate 8 mg/2 mL injection, 10 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +91581000036107 Zometa 4 mg/100 mL injection solution, 5 x 100 mL vials 192265 90041000036102 Zometa 4 mg/100 mL injection solution, 5 x 100 mL vials 88431000036100 Zometa 4 mg/100 mL injection solution, 100 mL vial 3922011000036109 Zometa 3922011000036109 Zometa 90051000036104 zoledronic acid 4 mg/100 mL injection, 5 x 100 mL vials 88441000036105 zoledronic acid 4 mg/100 mL injection, vial 21790011000036102 zoledronic acid +975101000168101 Coversyl Plus LD 2/0.625 uncoated tablet, 30, blister pack 116473 975091000168106 Coversyl Plus LD 2/0.625 uncoated tablet, 30 975051000168101 Coversyl Plus LD 2/0.625 uncoated tablet 975041000168103 Coversyl Plus LD 2/0.625 975041000168103 Coversyl Plus LD 2/0.625 923751000168103 perindopril erbumine 2 mg + indapamide hemihydrate 625 microgram tablet, 30 923731000168109 perindopril erbumine 2 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +130411000036107 Candesartan Cilexetil (Sandoz) 4 mg tablet, 30, blister pack 147497 127411000036109 Candesartan Cilexetil (Sandoz) 4 mg tablet, 30 124711000036105 Candesartan Cilexetil (Sandoz) 4 mg tablet 123891000036107 Candesartan Cilexetil (Sandoz) 123891000036107 Candesartan Cilexetil (Sandoz) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +77344011000036106 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 50 mL syringe 51796 76760011000036108 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 50 mL syringe 76170011000036108 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 50 mL syringe 31781000168104 Optiray-350 Ultraject 31781000168104 Optiray-350 Ultraject 78267011000036106 ioversol 741 mg (iodine 350 mg)/mL injection, 50 mL syringe 77587011000036106 ioversol 741 mg (iodine 350 mg)/mL injection, 50 mL syringe 77421011000036103 ioversol +907581000168101 Celecoxib (Lupin) 100 mg hard capsule, 120, blister pack 196181 907571000168104 Celecoxib (Lupin) 100 mg hard capsule, 120 907321000168109 Celecoxib (Lupin) 100 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 907561000168105 celecoxib 100 mg capsule, 120 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +970751000168106 Pregabalin (Apo) 300 mg hard capsule, 100, bottle 193254 970741000168109 Pregabalin (Apo) 300 mg hard capsule, 100 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 970731000168100 pregabalin 300 mg capsule, 100 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1120731000168103 Quetiapine XR (AN) 400 mg modified release tablet, 60, blister pack 278854 1120721000168101 Quetiapine XR (AN) 400 mg modified release tablet, 60 1120711000168108 Quetiapine XR (AN) 400 mg modified release tablet 1120701000168105 Quetiapine XR (AN) 1120701000168105 Quetiapine XR (AN) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +820971000168108 Panadol Osteo 665 mg modified release tablet, 96, bottle 235560 11529011000036102 Panadol Osteo 665 mg modified release tablet, 96 5848011000036106 Panadol Osteo 665 mg modified release tablet 47941000168100 Panadol Osteo 47941000168100 Panadol Osteo 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +1074831000168105 Instanyl 200 microgram/actuation nasal spray, 20 actuations, pump pack 197692 1074821000168107 Instanyl 200 microgram/actuation nasal spray, 20 actuations 795261000168105 Instanyl 200 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1074811000168100 fentanyl 200 microgram/actuation nasal spray, 20 actuations 795251000168108 fentanyl 200 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +74221000036101 Levetiracetam (Pfizer) 500 mg film-coated tablet, 60, blister pack 182811 71821000036100 Levetiracetam (Pfizer) 500 mg film-coated tablet, 60 70111000036106 Levetiracetam (Pfizer) 500 mg film-coated tablet 69321000036103 Levetiracetam (Pfizer) 69321000036103 Levetiracetam (Pfizer) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +61441011000036102 Demazin Cough and Cold oral liquid solution, 200 mL, bottle 83341 57366011000036107 Demazin Cough and Cold oral liquid solution, 200 mL 54285011000036102 Demazin Cough and Cold oral liquid solution, 5 mL 31561000168101 Demazin Cough and Cold 31561000168101 Demazin Cough and Cold 63830011000036106 chlorphenamine maleate 2 mg/5 mL + pholcodine 5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid, 200 mL 62087011000036109 chlorphenamine maleate 2 mg/5 mL + pholcodine 5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid 61775011000036109 chlorphenamine + pholcodine + pseudoephedrine +912971000168107 Amlodipine (Sandoz) 2.5 mg uncoated tablet, 30, bottle 124577 912961000168101 Amlodipine (Sandoz) 2.5 mg uncoated tablet, 30 912951000168103 Amlodipine (Sandoz) 2.5 mg uncoated tablet 3220011000036106 Amlodipine (Sandoz) 3220011000036106 Amlodipine (Sandoz) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +929123011000036101 Oxycontin 40 mg modified release tablet, 28, blister pack 68191 928482011000036101 Oxycontin 40 mg modified release tablet, 28 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +929123011000036101 Oxycontin 40 mg modified release tablet, 28, blister pack 200024 928482011000036101 Oxycontin 40 mg modified release tablet, 28 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +924851000168105 Ramipril (SZ) 5 mg uncoated tablet, 30, blister pack 122020 924841000168108 Ramipril (SZ) 5 mg uncoated tablet, 30 924831000168104 Ramipril (SZ) 5 mg uncoated tablet 924371000168105 Ramipril (SZ) 924371000168105 Ramipril (SZ) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1087621000168106 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 36, blister pack 283196 1087611000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 36 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 986011000168102 ibuprofen 400 mg tablet, 36 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +61222011000036105 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 96, blister pack 76461 57158011000036105 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 96 54219011000036102 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet 16981000168101 Paracetamol Capseal (Chemists' Own) 16981000168101 Paracetamol Capseal (Chemists' Own) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +931759011000036101 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan application, 125 mL, bottle 77397 930919011000036108 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan application, 125 mL 930120011000036107 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan application 929913011000036107 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan 929913011000036107 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan 932492011000036108 ethanol 58.73% + iodine 0.1% + triclosan 0.5% application, 125 mL 931887011000036100 ethanol 58.73% + iodine 0.1% + triclosan 0.5% application 931787011000036102 ethanol + iodine + triclosan +682731000168106 Terbinafine (AN) 250 mg uncoated tablet, 42, blister pack 200225 682721000168108 Terbinafine (AN) 250 mg uncoated tablet, 42 681571000168107 Terbinafine (AN) 250 mg uncoated tablet 681561000168101 Terbinafine (AN) 681561000168101 Terbinafine (AN) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +1113341000168105 Quetiapine (CH) 25 mg film-coated tablet, 100, bottle 172839 1113331000168101 Quetiapine (CH) 25 mg film-coated tablet, 100 1103851000168100 Quetiapine (CH) 25 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 1076631000168103 quetiapine 25 mg tablet, 100 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +762101000168106 D3 (Bioceuticals) 25 microgram (1000 units) soft capsule, 240, bottle 159395 762091000168101 D3 (Bioceuticals) 25 microgram (1000 units) soft capsule, 240 762051000168106 D3 (Bioceuticals) 25 microgram (1000 units) soft capsule 762041000168109 D3 (Bioceuticals) 762041000168109 D3 (Bioceuticals) 762081000168104 colecalciferol 25 microgram (1000 units) capsule, 240 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +749121000168100 Tacoccord 1 mg hard capsule, 50, blister pack 224268 749111000168107 Tacoccord 1 mg hard capsule, 50 749061000168106 Tacoccord 1 mg hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 749101000168109 tacrolimus 1 mg capsule, 50 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +890491000168106 Candesartan plus HCTZ 32/12.5 (Pfizer) uncoated tablet, 7, blister pack 199097 890481000168108 Candesartan plus HCTZ 32/12.5 (Pfizer) uncoated tablet, 7 890471000168105 Candesartan plus HCTZ 32/12.5 (Pfizer) uncoated tablet 890461000168104 Candesartan plus HCTZ 32/12.5 (Pfizer) 890461000168104 Candesartan plus HCTZ 32/12.5 (Pfizer) 83493011000036104 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 7 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +73288011000036108 Jurnista 16 mg modified release tablet, 40, blister pack 141533 73086011000036100 Jurnista 16 mg modified release tablet, 40 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73484011000036100 hydromorphone hydrochloride 16 mg modified release tablet, 40 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +21008011000036104 Lisinopril (Chemmart) 20 mg tablet, 30, blister pack 143985 14154011000036104 Lisinopril (Chemmart) 20 mg tablet, 30 7433011000036107 Lisinopril (Chemmart) 20 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +21008011000036104 Lisinopril (Chemmart) 20 mg tablet, 30, blister pack 96325 14154011000036104 Lisinopril (Chemmart) 20 mg tablet, 30 7433011000036107 Lisinopril (Chemmart) 20 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +21008011000036104 Lisinopril (Chemmart) 20 mg tablet, 30, blister pack 213401 14154011000036104 Lisinopril (Chemmart) 20 mg tablet, 30 7433011000036107 Lisinopril (Chemmart) 20 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +131861000036101 Montair 4 mg chewable tablet, 28, blister pack 184829 128151000036101 Montair 4 mg chewable tablet, 28 125171000036102 Montair 4 mg chewable tablet 123921000036103 Montair 123921000036103 Montair 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +1091911000168100 Antiseptic Solution (Apohealth) 10% solution, 15 mL, bottle 281618 1091901000168103 Antiseptic Solution (Apohealth) 10% solution, 15 mL 1091891000168102 Antiseptic Solution (Apohealth) 10% solution 1091851000168107 Antiseptic Solution (Apohealth) 1091851000168107 Antiseptic Solution (Apohealth) 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +931419011000036103 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet, 24, blister pack 119293 930570011000036100 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet, 24 929944011000036103 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet 929904011000036107 Ibuprofen Pain Relief (Chemmart) 929904011000036107 Ibuprofen Pain Relief (Chemmart) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +926859011000036102 Nicotinell Step-2 14 mg/24 hours patch, 7, sachet 42625 926255011000036106 Nicotinell Step-2 14 mg/24 hours patch, 7 925703011000036107 Nicotinell Step-2 14 mg/24 hours patch 46531000168100 Nicotinell Step-2 46531000168100 Nicotinell Step-2 27925011000036106 nicotine 14 mg/24 hours patch, 7 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +60617011000036109 Seda 2.5% lotion, 6 mL, bottle 18899 56575011000036107 Seda 2.5% lotion, 6 mL 53981011000036103 Seda 2.5% lotion 53209011000036102 Seda 53209011000036102 Seda 63434011000036106 lidocaine (lignocaine) 2.5% lotion, 6 mL 61960011000036102 lidocaine (lignocaine) 2.5% lotion 21572011000036107 lidocaine (lignocaine) +60433011000036108 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 8 sachets 146071 56392011000036107 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 8 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63337011000036105 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 8 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +18319011000036104 Xergic 120 mg film-coated tablet, 30, blister pack 115377 11485011000036104 Xergic 120 mg film-coated tablet, 30 5888011000036100 Xergic 120 mg film-coated tablet 4325011000036107 Xergic 4325011000036107 Xergic 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +780671000168106 Fentanyl (Apo) 12 microgram/hour patch, 8, sachet 152577 780661000168100 Fentanyl (Apo) 12 microgram/hour patch, 8 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236151000036105 fentanyl 12 microgram/hour patch, 8 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +783551000168105 Palexia IR 100 mg film-coated tablet, 20, blister pack 165318 783541000168108 Palexia IR 100 mg film-coated tablet, 20 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783531000168104 tapentadol 100 mg tablet, 20 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +19016011000036105 Ciproxin 250 mg film-coated tablet, 2, blister pack 35317 12321011000036104 Ciproxin 250 mg film-coated tablet, 2 5064011000036108 Ciproxin 250 mg film-coated tablet 28351000168101 Ciproxin 28351000168101 Ciproxin 27061011000036107 ciprofloxacin 250 mg tablet, 2 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +44504011000036100 Cancidas 50 mg powder for injection, 1 vial 76531 41959011000036109 Cancidas 50 mg powder for injection, 1 vial 40287011000036102 Cancidas 50 mg powder for injection, 50 mg vial 39603011000036107 Cancidas 39603011000036107 Cancidas 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +1071631000168109 Cold and Flu PE Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 158504 1071621000168106 Cold and Flu PE Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24 1071611000168104 Cold and Flu PE Day and Night (Night) (Pharmacist) uncoated tablet 1071591000168109 Cold and Flu PE Day and Night (Pharmacist) 1067461000168100 Cold and Flu PE Day and Night (Night) (Pharmacist) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1071631000168109 Cold and Flu PE Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 158504 1071621000168106 Cold and Flu PE Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24 1071601000168102 Cold and Flu PE Day and Night (Day) (Pharmacist) uncoated tablet 1071591000168109 Cold and Flu PE Day and Night (Pharmacist) 1067431000168108 Cold and Flu PE Day and Night (Day) (Pharmacist) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +20618011000036104 Symbicort Turbuhaler 200/6 powder for inhalation, 120 actuations, dry powder inhaler 80876 13798011000036108 Symbicort Turbuhaler 200/6 powder for inhalation, 120 actuations 7084011000036105 Symbicort Turbuhaler 200/6 powder for inhalation, actuation 60421000168108 Symbicort Turbuhaler 200/6 60421000168108 Symbicort Turbuhaler 200/6 27942011000036101 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, 120 actuations 23266011000036103 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +911761000168109 Cavstat 40 mg film-coated tablet, 7, blister pack 234508 911751000168107 Cavstat 40 mg film-coated tablet, 7 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 853431000168109 rosuvastatin 40 mg tablet, 7 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +957841000168104 Ondansetron (Pfizer (Perth)) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 128253 957831000168108 Ondansetron (Pfizer (Perth)) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 5882011000036103 Ondansetron (Pfizer (Perth)) 8 mg/4 mL injection solution, 4 mL ampoule 3818011000036107 Ondansetron (Pfizer (Perth)) 3818011000036107 Ondansetron (Pfizer (Perth)) 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +1112061000168104 Syquet XR 200 mg modified release tablet, 60, blister pack 199876 1112051000168101 Syquet XR 200 mg modified release tablet, 60 1112041000168103 Syquet XR 200 mg modified release tablet 1111931000168101 Syquet XR 1111931000168101 Syquet XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +1063091000168109 Strong Pain Extra (Chemists' Own) uncoated tablet, 40, blister pack 208276 1063081000168106 Strong Pain Extra (Chemists' Own) uncoated tablet, 40 1063001000168103 Strong Pain Extra (Chemists' Own) uncoated tablet 1062981000168102 Strong Pain Extra (Chemists' Own) 1062981000168102 Strong Pain Extra (Chemists' Own) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +104551000036107 Irbesartan/HCTZ 150/12.5 (GA) film-coated tablet, 30, blister pack 192823 101761000036101 Irbesartan/HCTZ 150/12.5 (GA) film-coated tablet, 30 98571000036101 Irbesartan/HCTZ 150/12.5 (GA) film-coated tablet 54951000168107 Irbesartan/HCTZ 150/12.5 (GA) 54951000168107 Irbesartan/HCTZ 150/12.5 (GA) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +992401000168108 Bisoprolol (Apotex) 10 mg tablet, 7, blister pack 182127 992391000168106 Bisoprolol (Apotex) 10 mg tablet, 7 992371000168105 Bisoprolol (Apotex) 10 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 992381000168108 bisoprolol fumarate 10 mg tablet, 7 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +18682011000036103 Methotrexate (DBL) 50 mg/2 mL injection solution, 5 x 2 mL vials 16314 12104011000036102 Methotrexate (DBL) 50 mg/2 mL injection solution, 5 x 2 mL vials 5460011000036106 Methotrexate (DBL) 50 mg/2 mL injection solution, 2 mL vial 3375011000036108 Methotrexate (DBL) 3375011000036108 Methotrexate (DBL) 26914011000036103 methotrexate 50 mg/2 mL injection, 5 x 2 mL vials 22291011000036103 methotrexate 50 mg/2 mL injection, vial 21342011000036105 methotrexate +19483011000036106 Norvir 600 mg/7.5 mL oral liquid solution, 90 mL, bottle 55004 12760011000036102 Norvir 600 mg/7.5 mL oral liquid solution, 90 mL 6054011000036103 Norvir 600 mg/7.5 mL oral liquid solution, 7.5 mL 4168011000036101 Norvir 4168011000036101 Norvir 27337011000036106 ritonavir 600 mg/7.5 mL oral liquid, 90 mL 22690011000036107 ritonavir 600 mg/7.5 mL oral liquid 21438011000036102 ritonavir +13441000036102 Venla 37.5 mg modified release capsule, 28, blister pack 170460 8501000036106 Venla 37.5 mg modified release capsule, 28 3471000036106 Venla 37.5 mg modified release capsule 551000036100 Venla 551000036100 Venla 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +61568011000036107 Gavilast 12 Hour Action 150 mg film-coated tablet, 7, blister pack 94252 57490011000036102 Gavilast 12 Hour Action 150 mg film-coated tablet, 7 54322011000036106 Gavilast 12 Hour Action 150 mg film-coated tablet 23451000168100 Gavilast 12 Hour Action 23451000168100 Gavilast 12 Hour Action 63886011000036100 ranitidine 150 mg tablet, 7 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +979521000168100 Paracetamol (CA) 500 mg uncoated tablet, 100, blister pack 197677 979511000168107 Paracetamol (CA) 500 mg uncoated tablet, 100 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1113421000168109 Rivotril 500 microgram uncoated tablet, 50, blister pack 285708 1113411000168102 Rivotril 500 microgram uncoated tablet, 50 5073011000036104 Rivotril 500 microgram uncoated tablet 19081000168107 Rivotril 19081000168107 Rivotril 1113401000168100 clonazepam 500 microgram tablet, 50 22687011000036107 clonazepam 500 microgram tablet 21226011000036100 clonazepam +68967011000036106 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 2 sachets 134408 66769011000036101 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 2 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71421011000036101 paracetamol 500 mg powder for oral liquid, 2 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +953591000168102 Valproate (Winthrop) Sugar Free 200 mg/5 mL oral liquid, 300 mL, bottle 125623 953581000168100 Valproate (Winthrop) Sugar Free 200 mg/5 mL oral liquid, 300 mL 953571000168103 Valproate (Winthrop) Sugar Free 200 mg/5 mL oral liquid, 5 mL 952931000168101 Valproate (Winthrop) 952931000168101 Valproate (Winthrop) 30615011000036109 valproate sodium 200 mg/5 mL oral liquid, 300 mL 23088011000036109 valproate sodium 200 mg/5 mL oral liquid 21225011000036107 valproate +936271000168109 Cephacor 500 mg hard capsule, 20, blister pack 204540 936261000168103 Cephacor 500 mg hard capsule, 20 936251000168100 Cephacor 500 mg hard capsule 936241000168102 Cephacor 936241000168102 Cephacor 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +988151000168101 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 30 mL, bottle 178432 988141000168103 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 30 mL 988111000168102 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 63364011000036108 ibuprofen 40 mg/mL oral liquid, 30 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +39398011000036107 Tasigna 200 mg hard capsule, 112, blister pack 133086 39282011000036101 Tasigna 200 mg hard capsule, 112 39204011000036106 Tasigna 200 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 39479011000036101 nilotinib 200 mg capsule, 112 39436011000036107 nilotinib 200 mg capsule 39428011000036108 nilotinib +81204011000036109 Vicks Formula 44 Chesty Coughs 200 mg/15 mL oral liquid solution, 120 mL, bottle 91691 80706011000036104 Vicks Formula 44 Chesty Coughs 200 mg/15 mL oral liquid solution, 120 mL 80246011000036101 Vicks Formula 44 Chesty Coughs 200 mg/15 mL oral liquid solution, 15 mL 80139011000036107 Vicks Formula 44 Chesty Coughs 80139011000036107 Vicks Formula 44 Chesty Coughs 81755011000036108 guaifenesin 200 mg/15 mL oral liquid, 120 mL 81308011000036108 guaifenesin 200 mg/15 mL oral liquid 61763011000036101 guaifenesin +907491000168102 Celecoxib (GA) 100 mg capsule, 10, blister pack 204620 907481000168100 Celecoxib (GA) 100 mg capsule, 10 907461000168109 Celecoxib (GA) 100 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1027041000168102 Pregabalin (Amneal) 300 mg hard capsule, 56, bottle 235869 1026931000168107 Pregabalin (Amneal) 300 mg hard capsule, 56 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +975181000168109 Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76617 975171000168106 Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 975151000168102 Genotropin Miniquick (somatropin 400 microgram) powder for injection, 400 microgram syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 975161000168100 somatropin 400 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 975141000168104 somatropin 400 microgram injection, syringe 21295011000036100 somatropin +975181000168109 Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76617 975171000168106 Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 975161000168100 somatropin 400 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +18048011000036103 Karvea 300 mg film-coated tablet, 30, bottle 101709 11233011000036109 Karvea 300 mg film-coated tablet, 30 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +931436011000036101 Methylated Spirit Specially (Gold Cross) solution, 100 mL, bottle 14226 930615011000036105 Methylated Spirit Specially (Gold Cross) solution, 100 mL 929974011000036102 Methylated Spirit Specially (Gold Cross) solution 38981000168107 Methylated Spirit Specially (Gold Cross) 38981000168107 Methylated Spirit Specially (Gold Cross) 932371011000036104 ethanol 98% + methanol 2% solution, 100 mL 931837011000036105 ethanol 98% + methanol 2% solution 931790011000036102 ethanol + methanol +933113011000036107 Lamictal 50 mg tablet, 60, blister pack 57190 932919011000036101 Lamictal 50 mg tablet, 60 932766011000036103 Lamictal 50 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46989011000036103 lamotrigine 50 mg tablet, 60 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +37405011000036104 Imuran 50 mg powder for injection, 1 vial 11102 36653011000036105 Imuran 50 mg powder for injection, 1 vial 36119011000036103 Imuran 50 mg powder for injection, 50 mg vial 3070011000036103 Imuran 3070011000036103 Imuran 38571011000036109 azathioprine 50 mg injection, 1 vial 37845011000036101 azathioprine 50 mg injection, vial 21702011000036100 azathioprine +950701000168109 Ilevro 0.3% eye drops suspension, 3 mL, bottle 230200 950691000168109 Ilevro 0.3% eye drops suspension, 3 mL 950671000168108 Ilevro 0.3% eye drops suspension 950641000168101 Ilevro 950641000168101 Ilevro 950681000168106 nepafenac 0.3% eye drops, 3 mL 950661000168102 nepafenac 0.3% eye drops 950651000168104 nepafenac +21025011000036101 Solian 100 mg uncoated tablet, 30, blister pack 96422 14171011000036104 Solian 100 mg uncoated tablet, 30 7451011000036105 Solian 100 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +1107721000168105 Midazolam (Intas) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207235 1107711000168103 Midazolam (Intas) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 1107661000168108 Midazolam (Intas) 50 mg/10 mL injection solution, 10 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +933441000168105 Centevo 150/37.5/200 mg film-coated tablet, 250, bottle 238857 933431000168101 Centevo 150/37.5/200 mg film-coated tablet, 250 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933421000168104 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 250 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +33581011000036102 Clexane 20 mg/0.2 mL injection solution, 10 x 0.2 mL syringes 42965 33319011000036103 Clexane 20 mg/0.2 mL injection solution, 10 x 0.2 mL syringes 33079011000036106 Clexane 20 mg/0.2 mL injection solution, 0.2 mL syringe 2391000168100 Clexane 2391000168100 Clexane 33800011000036109 enoxaparin sodium 20 mg/0.2 mL injection, 10 x 0.2 mL syringes 33672011000036106 enoxaparin sodium 20 mg/0.2 mL injection, syringe 21553011000036103 enoxaparin sodium +783641000168109 Palexia IR 100 mg film-coated tablet, 40, blister pack 165318 783631000168100 Palexia IR 100 mg film-coated tablet, 40 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783621000168103 tapentadol 100 mg tablet, 40 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +74501000036109 Nizoral 1% shampoo, 6 mL, sachet 58177 72471000036108 Nizoral 1% shampoo, 6 mL 69711000036109 Nizoral 1% shampoo 4145011000036104 Nizoral 4145011000036104 Nizoral 72481000036105 ketoconazole 1% shampoo, 6 mL 69721000036102 ketoconazole 1% shampoo 21500011000036103 ketoconazole +800911000168107 Actonate 30 mg film-coated tablet, 14, blister pack 163747 800901000168109 Actonate 30 mg film-coated tablet, 14 800881000168107 Actonate 30 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 800891000168105 risedronate sodium 30 mg tablet, 14 23072011000036102 risedronate sodium 30 mg tablet 21476011000036103 risedronate +993931000168102 Candesartan (Apotex) 8 mg tablet, 7, blister pack 184888 993921000168100 Candesartan (Apotex) 8 mg tablet, 7 993911000168107 Candesartan (Apotex) 8 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 727101000168103 candesartan cilexetil 8 mg tablet, 7 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +697161000168100 Piax Plus Aspirin 75/100 uncoated tablet, 30, blister pack 219059 697151000168102 Piax Plus Aspirin 75/100 uncoated tablet, 30 697141000168104 Piax Plus Aspirin 75/100 uncoated tablet 697131000168108 Piax Plus Aspirin 75/100 697131000168108 Piax Plus Aspirin 75/100 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1070261000168105 Rapideine Caplets uncoated tablet, 24, blister pack 82094 1070251000168108 Rapideine Caplets uncoated tablet, 24 1070241000168106 Rapideine Caplets uncoated tablet 1070021000168108 Rapideine Caplets 1070021000168108 Rapideine Caplets 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +890171000168100 Bicalutamide (DRLA) 50 mg film-coated tablet, 28, blister pack 170314 890161000168106 Bicalutamide (DRLA) 50 mg film-coated tablet, 28 890151000168109 Bicalutamide (DRLA) 50 mg film-coated tablet 890141000168107 Bicalutamide (DRLA) 890141000168107 Bicalutamide (DRLA) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +926876011000036108 Resolve 2% solution, 25 mL, bottle 54039 926272011000036101 Resolve 2% solution, 25 mL 925717011000036100 Resolve 2% solution 925556011000036109 Resolve 925556011000036109 Resolve 927376011000036107 miconazole 2% solution, 25 mL 927019011000036108 miconazole 2% solution 21454011000036108 miconazole +13481000036106 Delucon 25 mg film-coated tablet, 60, blister pack 172833 8631000036103 Delucon 25 mg film-coated tablet, 60 1651000036102 Delucon 25 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +19834011000036106 Atacand 16 mg uncoated tablet, 30, blister pack 64108 13085011000036104 Atacand 16 mg uncoated tablet, 30 6369011000036106 Atacand 16 mg uncoated tablet 3659011000036102 Atacand 3659011000036102 Atacand 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +18336011000036102 Sertraline (GenRx) 100 mg film-coated tablet, 30, blister pack 101486 11206011000036106 Sertraline (GenRx) 100 mg film-coated tablet, 30 5253011000036108 Sertraline (GenRx) 100 mg film-coated tablet 3086011000036107 Sertraline (GenRx) 3086011000036107 Sertraline (GenRx) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +18519011000036101 Oroxine 50 microgram uncoated tablet, 200, blister pack 125498 11802011000036104 Oroxine 50 microgram uncoated tablet, 200 4909011000036105 Oroxine 50 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 28021011000036108 levothyroxine sodium 50 microgram tablet, 200 23344011000036106 levothyroxine sodium 50 microgram tablet 21577011000036109 levothyroxine +19107011000036104 Zoloft 50 mg film-coated tablet, 30, blister pack 42979 12412011000036105 Zoloft 50 mg film-coated tablet, 30 4942011000036109 Zoloft 50 mg film-coated tablet 3559011000036109 Zoloft 3559011000036109 Zoloft 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +815351000168100 Tevatrexed 500 mg powder for injection, 1 vial 232218 815341000168102 Tevatrexed 500 mg powder for injection, 1 vial 815331000168106 Tevatrexed 500 mg powder for injection, 500 mg vial 815321000168108 Tevatrexed 815321000168108 Tevatrexed 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +61051011000036107 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 24, blister pack 67366 56994011000036106 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 24 54149011000036108 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet 53376011000036109 Naproxen Sodium (Soul Pattinson) 53376011000036109 Naproxen Sodium (Soul Pattinson) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +13641000036104 Anastrozole (Chemmart) 1 mg film-coated tablet, 30, blister pack 173893 8211000036105 Anastrozole (Chemmart) 1 mg film-coated tablet, 30 2811000036109 Anastrozole (Chemmart) 1 mg film-coated tablet 391000036103 Anastrozole (Chemmart) 391000036103 Anastrozole (Chemmart) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1111961000168109 Syquet XR 300 mg modified release tablet, 60, blister pack 199867 1111951000168107 Syquet XR 300 mg modified release tablet, 60 1111941000168105 Syquet XR 300 mg modified release tablet 1111931000168101 Syquet XR 1111931000168101 Syquet XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +50565011000036108 Durotram XR (once a day) 200 mg modified release tablet, 2, blister pack 134822 49599011000036100 Durotram XR (once a day) 200 mg modified release tablet, 2 48787011000036107 Durotram XR (once a day) 200 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51503011000036102 tramadol hydrochloride 200 mg modified release tablet, 2 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +662761000168101 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 662751000168103 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 662741000168100 Evelyn 150/30 ED (inert substance) film-coated tablet 662621000168104 Evelyn 150/30 ED 662621000168104 Evelyn 150/30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +662761000168101 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 662751000168103 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 662731000168109 Evelyn 150/30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 662621000168104 Evelyn 150/30 ED 662621000168104 Evelyn 150/30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +69484011000036102 Strepsils Plus lozenge, 2, blister pack 50509 67284011000036108 Strepsils Plus lozenge, 2 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71832011000036102 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +13601000036102 Ondansetron Tabs (Pfizer) 4 mg film-coated tablet, 4, blister pack 173186 8741000036104 Ondansetron Tabs (Pfizer) 4 mg film-coated tablet, 4 2251000036107 Ondansetron Tabs (Pfizer) 4 mg film-coated tablet 14841000168109 Ondansetron Tabs (Pfizer) 14841000168109 Ondansetron Tabs (Pfizer) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +19650011000036109 Lipitor 40 mg film-coated tablet, 30, bottle 59608 12916011000036106 Lipitor 40 mg film-coated tablet, 30 6206011000036109 Lipitor 40 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +80995011000036104 Epirubicin Hydrochloride (Actavis) 100 mg/50 mL injection solution, 50 mL vial 146598 80532011000036107 Epirubicin Hydrochloride (Actavis) 100 mg/50 mL injection solution, 50 mL vial 80180011000036109 Epirubicin Hydrochloride (Actavis) 100 mg/50 mL injection solution, 50 mL vial 933193151000036108 Epirubicin Hydrochloride (Actavis) 933193151000036108 Epirubicin Hydrochloride (Actavis) 26804011000036109 epirubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22188011000036109 epirubicin hydrochloride 100 mg/50 mL injection, vial 21230011000036100 epirubicin +37556011000036106 Novantrone 25 mg/12.5 mL concentrated injection, 12.5 mL vial 15195 36824011000036102 Novantrone 25 mg/12.5 mL concentrated injection, 12.5 mL vial 36063011000036106 Novantrone 25 mg/12.5 mL concentrated injection, 12.5 mL vial 35900011000036106 Novantrone 35900011000036106 Novantrone 27781011000036108 mitozantrone 25 mg/12.5 mL injection, 12.5 mL vial 23111011000036106 mitozantrone 25 mg/12.5 mL injection, vial 21652011000036102 mitozantrone +1094801000168106 Hayfever Allergy Relief Cetirizine (Coles) 10 mg film-coated tablet, 10, blister pack 287406 1094791000168105 Hayfever Allergy Relief Cetirizine (Coles) 10 mg film-coated tablet, 10 1094731000168106 Hayfever Allergy Relief Cetirizine (Coles) 10 mg film-coated tablet 1094651000168109 Hayfever Allergy Relief Cetirizine (Coles) 1094651000168109 Hayfever Allergy Relief Cetirizine (Coles) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +658421000168108 Telmisartan (AN) 80 mg uncoated tablet, 28, blister pack 209339 658411000168101 Telmisartan (AN) 80 mg uncoated tablet, 28 658401000168104 Telmisartan (AN) 80 mg uncoated tablet 654411000168108 Telmisartan (AN) 654411000168108 Telmisartan (AN) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +60463011000036103 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 11 sachets 150167 56421011000036102 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 11 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63353011000036102 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 11 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +80017011000036100 Topiramate (Apo) 100 mg film-coated tablet, 60, bottle 124735 79954011000036106 Topiramate (Apo) 100 mg film-coated tablet, 60 79915011000036103 Topiramate (Apo) 100 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +679841000168109 Movectro 10 mg uncoated tablet, 8, blister pack 166483 679831000168100 Movectro 10 mg uncoated tablet, 8 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679821000168103 cladribine 10 mg tablet, 8 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +77400011000036101 Calmoseptine 20.6% ointment, 20 g, tube 78126 76816011000036107 Calmoseptine 20.6% ointment, 20 g 76190011000036101 Calmoseptine 20.6% ointment 75973011000036100 Calmoseptine 75973011000036100 Calmoseptine 78320011000036108 zinc oxide 20.6% ointment, 20 g 77605011000036107 zinc oxide 20.6% ointment 77446011000036105 zinc oxide +717291000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 50, bottle 167313 717271000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 50 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716641000168104 omeprazole 20 mg enteric capsule, 50 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +923481000168103 Anastrozole (Apotex) 1 mg film-coated tablet, 100, bottle 198271 923471000168101 Anastrozole (Apotex) 1 mg film-coated tablet, 100 923231000168103 Anastrozole (Apotex) 1 mg film-coated tablet 923221000168101 Anastrozole (Apotex) 923221000168101 Anastrozole (Apotex) 51991000036107 anastrozole 1 mg tablet, 100 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +923441000168108 PKU Sphere15 Vanilla powder for oral liquid, 30 x 27 g sachets 923431000168104 PKU Sphere15 Vanilla powder for oral liquid, 30 x 27 g sachets 923421000168102 PKU Sphere15 Vanilla powder for oral liquid, 27 g sachet 923361000168102 PKU Sphere15 923361000168102 PKU Sphere15 923391000168109 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 30 x 27 g sachets 923371000168108 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 27 g sachet 900801000168105 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine +69150011000036102 Strepsils lemon sugar free lozenge, 6, blister pack 153118 66950011000036107 Strepsils lemon sugar free lozenge, 6 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +151841000036101 Bricanyl Turbuhaler 500 microgram/actuation powder for inhalation, 100 actuations, dry powder inhaler 10278 149811000036103 Bricanyl Turbuhaler 500 microgram/actuation powder for inhalation, 100 actuations 5687011000036107 Bricanyl Turbuhaler 500 microgram/actuation powder for inhalation, actuation 7051000168106 Bricanyl Turbuhaler 7051000168106 Bricanyl Turbuhaler 149821000036105 terbutaline sulfate 500 microgram/actuation powder for inhalation, 100 actuations 21988011000036106 terbutaline sulfate 500 microgram/actuation powder for inhalation, actuation 21514011000036105 terbutaline +83041000036108 Gemfibrozil (GA) 600 mg film-coated tablet, 60, bottle 147595 82951000036102 Gemfibrozil (GA) 600 mg film-coated tablet, 60 82851000036108 Gemfibrozil (GA) 600 mg film-coated tablet 82821000036102 Gemfibrozil (GA) 82821000036102 Gemfibrozil (GA) 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +818081000168100 Adenosine (Mylan) 6 mg/2 mL injection solution, 6 x 2 mL vials 152014 818071000168103 Adenosine (Mylan) 6 mg/2 mL injection solution, 6 x 2 mL vials 818061000168109 Adenosine (Mylan) 6 mg/2 mL injection solution, 2 mL vial 818051000168107 Adenosine (Mylan) 818051000168107 Adenosine (Mylan) 46404011000036101 adenosine 6 mg/2 mL injection, 6 x 2 mL vials 45137011000036104 adenosine 6 mg/2 mL injection, vial 44942011000036105 adenosine +86850011000036104 Lanolin Anhydrous (Gold Cross) 1 g/g ointment, 50 g, jar 86736011000036100 Lanolin Anhydrous (Gold Cross) 1 g/g ointment, 50 g 86608011000036103 Lanolin Anhydrous (Gold Cross) 1 g/g ointment 86596011000036106 Lanolin Anhydrous (Gold Cross) 86596011000036106 Lanolin Anhydrous (Gold Cross) 87006011000036105 wool fat 1 g/g ointment, 50 g 86919011000036109 wool fat 1 g/g ointment 86903011000036109 wool fat +651021000168105 Tirofiban AC (Juno) 12.5 mg/50 mL concentrated injection, 50 mL vial 209216 651011000168103 Tirofiban AC (Juno) 12.5 mg/50 mL concentrated injection, 50 mL vial 651001000168101 Tirofiban AC (Juno) 12.5 mg/50 mL concentrated injection, 50 mL vial 650991000168102 Tirofiban AC (Juno) 650991000168102 Tirofiban AC (Juno) 27553011000036101 tirofiban 12.5 mg/50 mL injection, 50 mL vial 22892011000036102 tirofiban 12.5 mg/50 mL injection, vial 21609011000036103 tirofiban +50264011000036101 Hydrocoll Thin (900942/1) 10 cm x 10 cm dressing, 10, carton 49361011000036104 Hydrocoll Thin (900942/1) 10 cm x 10 cm dressing, 10 48771011000036107 Hydrocoll Thin (900942/1) 10 cm x 10 cm dressing 48011000168101 Hydrocoll Thin (900942/1) 48011000168101 Hydrocoll Thin (900942/1) 51336011000036103 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing, 10 50870011000036107 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing 50714011000036106 dressing hydrocolloid superficial wound light exudate +59783011000036105 Paralgin 500 mg uncoated tablet, 1000, bottle 220008 55745011000036108 Paralgin 500 mg uncoated tablet, 1000 5172011000036102 Paralgin 500 mg uncoated tablet 4130011000036109 Paralgin 4130011000036109 Paralgin 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +59783011000036105 Paralgin 500 mg uncoated tablet, 1000, bottle 113998 55745011000036108 Paralgin 500 mg uncoated tablet, 1000 5172011000036102 Paralgin 500 mg uncoated tablet 4130011000036109 Paralgin 4130011000036109 Paralgin 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +84315011000036107 Sulprix 100 mg tablet, 30, blister pack 156044 84008011000036100 Sulprix 100 mg tablet, 30 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +82879011000036109 Simvastatin (Apo) 40 mg film-coated tablet, 30, bottle 157733 73122011000036100 Simvastatin (Apo) 40 mg film-coated tablet, 30 72927011000036106 Simvastatin (Apo) 40 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +82879011000036109 Simvastatin (Apo) 40 mg film-coated tablet, 30, bottle 223454 73122011000036100 Simvastatin (Apo) 40 mg film-coated tablet, 30 72927011000036106 Simvastatin (Apo) 40 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +748961000168103 Cisatracurium (Accord) 20 mg/10 mL injection solution, 10 mL vial 222411 748951000168100 Cisatracurium (Accord) 20 mg/10 mL injection solution, 10 mL vial 748931000168106 Cisatracurium (Accord) 20 mg/10 mL injection solution, 10 mL vial 747971000168108 Cisatracurium (Accord) 747971000168108 Cisatracurium (Accord) 748941000168102 cisatracurium 20 mg/10 mL injection, 10 mL vial 748921000168108 cisatracurium 20 mg/10 mL injection, vial 44902011000036101 cisatracurium +796481000168107 Quetiapine (Accord) 300 mg film-coated tablet, 60, blister pack 203594 796471000168109 Quetiapine (Accord) 300 mg film-coated tablet, 60 796441000168102 Quetiapine (Accord) 300 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +59949011000036107 Xylocaine 5% ointment, 35 g, tube 12005 55911011000036105 Xylocaine 5% ointment, 35 g 53706011000036102 Xylocaine 5% ointment 2651000168102 Xylocaine 2651000168102 Xylocaine 63154011000036109 lidocaine (lignocaine) 5% ointment, 35 g 61873011000036105 lidocaine (lignocaine) 5% ointment 21572011000036107 lidocaine (lignocaine) +19844011000036107 Endep 50 mg film-coated tablet, 50, blister pack 64425 13094011000036104 Endep 50 mg film-coated tablet, 50 6378011000036106 Endep 50 mg film-coated tablet 4195011000036109 Endep 4195011000036109 Endep 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +677111000168106 Raloxifene Hydrochloride (AN) 60 mg film-coated tablet, 28, blister pack 207899 677101000168108 Raloxifene Hydrochloride (AN) 60 mg film-coated tablet, 28 677091000168103 Raloxifene Hydrochloride (AN) 60 mg film-coated tablet 677081000168101 Raloxifene Hydrochloride (AN) 677081000168101 Raloxifene Hydrochloride (AN) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +60947011000036102 Claratyne 10 mg effervescent tablet, 25, tube 62135 56890011000036106 Claratyne 10 mg effervescent tablet, 25 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63634011000036109 loratadine 10 mg effervescent tablet, 25 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +80972011000036102 Resdone 1 mg film-coated tablet, 30, blister pack 147672 80537011000036109 Resdone 1 mg film-coated tablet, 30 80183011000036101 Resdone 1 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81621011000036104 risperidone 1 mg tablet, 30 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +37539011000036101 Robinul 200 microgram/mL injection solution, 5 x 1 mL vials 13882 36807011000036102 Robinul 200 microgram/mL injection solution, 5 x 1 mL vials 36025011000036102 Robinul 200 microgram/mL injection solution, vial 35873011000036102 Robinul 35873011000036102 Robinul 38704011000036101 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, 5 x 1 mL vials 37938011000036101 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, vial 37771011000036104 glycopyrronium bromide (glycopyrrolate) +898901000168105 Strensiq 12 mg/0.3 mL injection solution, 0.3 mL vial 266984 898891000168106 Strensiq 12 mg/0.3 mL injection solution, 0.3 mL vial 898871000168105 Strensiq 12 mg/0.3 mL injection solution, 0.3 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 898881000168108 asfotase alfa 12 mg/0.3 mL injection, 0.3 mL vial 898861000168104 asfotase alfa 12 mg/0.3 mL injection, vial 898041000168106 asfotase alfa +79693011000036104 Cyprostat 50 mg uncoated tablet, 50, blister pack 156921 13544011000036109 Cyprostat 50 mg uncoated tablet, 50 6826011000036108 Cyprostat 50 mg uncoated tablet 3019011000036100 Cyprostat 3019011000036100 Cyprostat 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +792371000168101 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet, 10, blister pack 204244 792361000168107 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet, 10 792351000168105 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet 792341000168108 Sleep Aid (Pharmacy Action) 792341000168108 Sleep Aid (Pharmacy Action) 63825011000036104 doxylamine succinate 25 mg tablet, 10 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +931589011000036108 Redichol 80 mg film-coated tablet, 30, bottle 163555 930750011000036101 Redichol 80 mg film-coated tablet, 30 930035011000036109 Redichol 80 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +20040011000036101 Karvezide 300/12.5 uncoated tablet, 30, blister pack 69222 13272011000036105 Karvezide 300/12.5 uncoated tablet, 30 6554011000036100 Karvezide 300/12.5 uncoated tablet 16991000168103 Karvezide 300/12.5 16991000168103 Karvezide 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +929019011000036101 Firazyr 30 mg/3 mL injection solution, 3 mL syringe 160313 928380011000036108 Firazyr 30 mg/3 mL injection solution, 3 mL syringe 927962011000036105 Firazyr 30 mg/3 mL injection solution, 3 mL syringe 927779011000036102 Firazyr 927779011000036102 Firazyr 929231011000036103 icatibant 30 mg/3 mL injection, 3 mL syringe 929153011000036100 icatibant 30 mg/3 mL injection, syringe 929133011000036104 icatibant +1057151000168100 Raloxifene (Auro) 60 mg tablet, 30, bottle 203700 1057141000168102 Raloxifene (Auro) 60 mg tablet, 30 1057011000168100 Raloxifene (Auro) 60 mg tablet 1056951000168100 Raloxifene (Auro) 1056951000168100 Raloxifene (Auro) 1057131000168106 raloxifene hydrochloride 60 mg tablet, 30 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +697071000168105 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 200 mL bottle 48501 697061000168104 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 200 mL bottle 695771000168101 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 200 mL bottle 20471000168101 Ultravist-370 20471000168101 Ultravist-370 697051000168101 iopromide 769 mg (iodine 370 mg)/mL injection, 200 mL bottle 695761000168107 iopromide 769 mg (iodine 370 mg)/mL injection, 200 mL bottle 77425011000036101 iopromide +1078301000168104 Atomoxetine (GPPL) 80 mg hard capsule, 28, blister pack 234823 1078291000168100 Atomoxetine (GPPL) 80 mg hard capsule, 28 1078241000168108 Atomoxetine (GPPL) 80 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +913451000168104 Celetoid 200 mg hard capsule, 30, blister pack 206825 913441000168101 Celetoid 200 mg hard capsule, 30 913431000168105 Celetoid 200 mg hard capsule 913321000168102 Celetoid 913321000168102 Celetoid 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +920709011000036104 Ciprofloxacin (DBL) 400 mg/200 mL intravenous infusion injection, 20 x 200 mL bags 123042 920383011000036102 Ciprofloxacin (DBL) 400 mg/200 mL intravenous infusion injection, 20 x 200 mL bags 920146011000036108 Ciprofloxacin (DBL) 400 mg/200 mL intravenous infusion injection, 200 mL bag 920086011000036107 Ciprofloxacin (DBL) 920086011000036107 Ciprofloxacin (DBL) 46214011000036100 ciprofloxacin 400 mg/200 mL injection, 20 x 200 mL bags 45033011000036102 ciprofloxacin 400 mg/200 mL injection, bag 21245011000036105 ciprofloxacin +83361000036107 Xarelto 15 mg film-coated tablet, 28, blister pack 181185 83231000036108 Xarelto 15 mg film-coated tablet, 28 78921000036104 Xarelto 15 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 83241000036103 rivaroxaban 15 mg tablet, 28 78931000036102 rivaroxaban 15 mg tablet 79098011000036103 rivaroxaban +152411000036107 Latanoprost (Actavis) 0.005% eye drops solution, 2.5 mL, bottle 200059 150681000036101 Latanoprost (Actavis) 0.005% eye drops solution, 2.5 mL 148741000036101 Latanoprost (Actavis) 0.005% eye drops solution 147921000036108 Latanoprost (Actavis) 147921000036108 Latanoprost (Actavis) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +1029051000168109 Aquinaretic 10/12.5 film-coated tablet, 30, blister pack 173417 1029041000168107 Aquinaretic 10/12.5 film-coated tablet, 30 1029031000168103 Aquinaretic 10/12.5 film-coated tablet 1029021000168101 Aquinaretic 10/12.5 1029021000168101 Aquinaretic 10/12.5 27970011000036101 quinapril 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 23294011000036108 quinapril 10 mg + hydrochlorothiazide 12.5 mg tablet 21455011000036107 quinapril + hydrochlorothiazide +780951000168109 Fentanyl (Apo) 37 microgram/hour patch, 10, sachet 152566 780941000168107 Fentanyl (Apo) 37 microgram/hour patch, 10 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780931000168103 fentanyl 37 microgram/hour patch, 10 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +82395011000036103 Valprease 500 mg enteric tablet, 100, blister pack 153054 82184011000036109 Valprease 500 mg enteric tablet, 100 82026011000036102 Valprease 500 mg enteric tablet 81975011000036104 Valprease 81975011000036104 Valprease 27140011000036102 valproate sodium 500 mg enteric tablet, 100 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +772311000168101 Combantrin 50 mg/mL oral liquid suspension, 15 mL, bottle 10747 772301000168104 Combantrin 50 mg/mL oral liquid suspension, 15 mL 772281000168103 Combantrin 50 mg/mL oral liquid suspension 53233011000036109 Combantrin 53233011000036109 Combantrin 772291000168100 pyrantel 50 mg/mL oral liquid, 15 mL 772271000168101 pyrantel 50 mg/mL oral liquid 21475011000036105 pyrantel +1074331000168102 Clopidogrel (Auro) 75 mg film-coated tablet, 56, blister pack 171363 1074321000168100 Clopidogrel (Auro) 75 mg film-coated tablet, 56 1074241000168100 Clopidogrel (Auro) 75 mg film-coated tablet 1074231000168109 Clopidogrel (Auro) 1074231000168109 Clopidogrel (Auro) 87804011000036101 clopidogrel 75 mg tablet, 56 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +152451000036106 Tafinlar 75 mg hard capsule, 120, bottle 200936 150751000036103 Tafinlar 75 mg hard capsule, 120 148481000036103 Tafinlar 75 mg hard capsule 147911000036101 Tafinlar 147911000036101 Tafinlar 150761000036100 dabrafenib 75 mg capsule, 120 148491000036101 dabrafenib 75 mg capsule 152631000036101 dabrafenib +1048401000168108 Coparadeine Forte 500/30 tablet, 2, blister pack 220978 1048391000168106 Coparadeine Forte 500/30 tablet, 2 1048381000168108 Coparadeine Forte 500/30 tablet 1048371000168105 Coparadeine Forte 500/30 1048371000168105 Coparadeine Forte 500/30 1047211000168109 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 2 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +746631000168102 Ketamine (Hospira) 200 mg/2 mL injection solution, 5 x 2 mL vials 224732 746621000168100 Ketamine (Hospira) 200 mg/2 mL injection solution, 5 x 2 mL vials 746611000168107 Ketamine (Hospira) 200 mg/2 mL injection solution, 2 mL vial 746601000168109 Ketamine (Hospira) 746601000168109 Ketamine (Hospira) 35208011000036107 ketamine 200 mg/2 mL injection, 5 x 2 mL vials 34901011000036108 ketamine 200 mg/2 mL injection, vial 34843011000036109 ketamine +18498011000036102 Simvahexal 20 mg film-coated tablet, 30, blister pack 114798 14205011000036108 Simvahexal 20 mg film-coated tablet, 30 7486011000036105 Simvahexal 20 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +740211000168106 Alendronate D3 70 mg/140 microgram (Amneal) uncoated tablet, 4, blister pack 206933 740201000168108 Alendronate D3 70 mg/140 microgram (Amneal) uncoated tablet, 4 740171000168109 Alendronate D3 70 mg/140 microgram (Amneal) uncoated tablet 740161000168103 Alendronate D3 70 mg/140 microgram (Amneal) 740161000168103 Alendronate D3 70 mg/140 microgram (Amneal) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +1078621000168100 Atomoxetine (GPPL) 5 mg hard capsule, 7, blister pack 234842 1078611000168107 Atomoxetine (GPPL) 5 mg hard capsule, 7 1078601000168109 Atomoxetine (GPPL) 5 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 976311000168106 atomoxetine 5 mg capsule, 7 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +1112601000168108 Clopithromb 75 mg film-coated tablet, 120, bottle 187043 1112591000168101 Clopithromb 75 mg film-coated tablet, 120 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 925440011000036100 clopidogrel 75 mg tablet, 120 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +39423011000036103 Fludara 10 mg film-coated tablet, 15, blister pack 81998 39306011000036106 Fludara 10 mg film-coated tablet, 15 39219011000036109 Fludara 10 mg film-coated tablet 39183011000036105 Fludara 39183011000036105 Fludara 39494011000036105 fludarabine phosphate 10 mg tablet, 15 39442011000036107 fludarabine phosphate 10 mg tablet 39430011000036109 fludarabine +1071911000168109 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Day tablets, 8 x Night tablets), 24, blister pack 162417 1071901000168106 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Day tablets, 8 x Night tablets), 24 1071861000168100 Day plus Night Cold and Flu Relief PE (Night) (Priceline) uncoated tablet 1071821000168105 Day plus Night Cold and Flu Relief PE (Priceline) 1071841000168104 Day plus Night Cold and Flu Relief PE (Night) (Priceline) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1071911000168109 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Day tablets, 8 x Night tablets), 24, blister pack 162417 1071901000168106 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Day tablets, 8 x Night tablets), 24 1071851000168102 Day plus Night Cold and Flu Relief PE (Day) (Priceline) uncoated tablet 1071821000168105 Day plus Night Cold and Flu Relief PE (Priceline) 1071831000168108 Day plus Night Cold and Flu Relief PE (Day) (Priceline) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +61633011000036104 Demazin Cough Cold and Flu film-coated tablet, 24, blister pack 97031 57555011000036108 Demazin Cough Cold and Flu film-coated tablet, 24 54348011000036106 Demazin Cough Cold and Flu film-coated tablet 49731000168100 Demazin Cough Cold and Flu 49731000168100 Demazin Cough Cold and Flu 63924011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet, 24 62103011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +18014011000036104 Aylide 2 mg uncoated tablet, 30, blister pack 116859 11552011000036106 Aylide 2 mg uncoated tablet, 30 5730011000036107 Aylide 2 mg uncoated tablet 4143011000036100 Aylide 4143011000036100 Aylide 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +69647011000036102 Goanna Arthritis 10% cream, 250 g, tube 78992 67446011000036109 Goanna Arthritis 10% cream, 250 g 65668011000036100 Goanna Arthritis 10% cream 65065011000036104 Goanna Arthritis 65065011000036104 Goanna Arthritis 71974011000036102 trolamine salicylate 10% cream, 250 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +1112841000168106 Allopurinol (TN) 100 mg uncoated tablet, 90, blister pack 269643 1112831000168102 Allopurinol (TN) 100 mg uncoated tablet, 90 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112821000168100 allopurinol 100 mg tablet, 90 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +69001011000036108 Cold Sore (Nyal) cream, 10 g, tube 13656 66803011000036102 Cold Sore (Nyal) cream, 10 g 65380011000036106 Cold Sore (Nyal) cream 65027011000036104 Cold Sore (Nyal) 65027011000036104 Cold Sore (Nyal) 71433011000036103 menthol 0.5% + camphor 1.5% cream, 10 g 70008011000036101 menthol 0.5% + camphor 1.5% cream 69811011000036106 menthol + camphor +18451011000036102 Hyforil 10/12.5 mg uncoated tablet, 30, blister pack 124585 11770011000036105 Hyforil 10/12.5 mg uncoated tablet, 30 4622011000036106 Hyforil 10/12.5 mg uncoated tablet 9741000168101 Hyforil 10/12.5 mg 9741000168101 Hyforil 10/12.5 mg 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +748481000168103 Morphine MR (CH) 60 mg modified release tablet, 28, blister pack 225431 748471000168101 Morphine MR (CH) 60 mg modified release tablet, 28 748441000168108 Morphine MR (CH) 60 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 929757011000036102 morphine sulfate pentahydrate 60 mg modified release tablet, 28 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +84314011000036108 Sulprix 100 mg tablet, 100, blister pack 156044 84007011000036101 Sulprix 100 mg tablet, 100 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84637011000036102 amisulpride 100 mg tablet, 100 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +1039791000168100 Atorvastatin (Ascent) 10 mg film-coated tablet, 30, blister pack 178530 1039781000168103 Atorvastatin (Ascent) 10 mg film-coated tablet, 30 1039731000168104 Atorvastatin (Ascent) 10 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +85461000036104 Fendex ER 5 mg modified release tablet, 30, blister pack 184621 84921000036101 Fendex ER 5 mg modified release tablet, 30 84081000036101 Fendex ER 5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 27475011000036108 felodipine 5 mg modified release tablet, 30 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +748871000168104 Docetaxel (Intas) 20 mg/mL concentrated injection, 1 mL vial 209463 748861000168105 Docetaxel (Intas) 20 mg/mL concentrated injection, 1 mL vial 748851000168108 Docetaxel (Intas) 20 mg/mL concentrated injection, vial 748331000168105 Docetaxel (Intas) 748331000168105 Docetaxel (Intas) 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +160401000036101 Montelukast (APL) 10 mg film-coated tablet, 30, bottle 197210 159171000036100 Montelukast (APL) 10 mg film-coated tablet, 30 158211000036105 Montelukast (APL) 10 mg film-coated tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 159141000036107 montelukast 10 mg tablet, 30 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +86066011000036105 Ezovir 250 mg film-coated tablet, 14, blister pack 157788 85728011000036102 Ezovir 250 mg film-coated tablet, 14 85363011000036103 Ezovir 250 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 86449011000036103 famciclovir 250 mg tablet, 14 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +680071000168108 Lozanoc 50 mg hard capsule, 28, blister pack 206361 680061000168102 Lozanoc 50 mg hard capsule, 28 680011000168100 Lozanoc 50 mg hard capsule 679991000168108 Lozanoc 679991000168108 Lozanoc 680051000168104 itraconazole 50 mg capsule, 28 680001000168103 itraconazole 50 mg capsule 21903011000036100 itraconazole +50680011000036105 Glucoflex-R diagnostic strip, 50, bottle 61324 49704011000036103 Glucoflex-R diagnostic strip, 50 48832011000036101 Glucoflex-R diagnostic strip 48398011000036108 Glucoflex-R 48398011000036108 Glucoflex-R 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +160381000036101 Montelukast (APL) 10 mg film-coated tablet, 14, blister pack 197208 159151000036105 Montelukast (APL) 10 mg film-coated tablet, 14 158211000036105 Montelukast (APL) 10 mg film-coated tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +971391000168107 Glivanib 400 mg hard capsule, 180, blister pack 285900 971381000168109 Glivanib 400 mg hard capsule, 180 971271000168103 Glivanib 400 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 894011000168100 imatinib 400 mg capsule, 180 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +929086011000036108 Pioglitazone (Apotex) 15 mg uncoated tablet, 98, blister pack 166911 928447011000036108 Pioglitazone (Apotex) 15 mg uncoated tablet, 98 927985011000036104 Pioglitazone (Apotex) 15 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929268011000036102 pioglitazone 15 mg tablet, 98 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +13281000036105 Letrozole (RBX) 2.5 mg film-coated tablet, 30, blister pack 167832 8431000036100 Letrozole (RBX) 2.5 mg film-coated tablet, 30 3001000036105 Letrozole (RBX) 2.5 mg film-coated tablet 1211000036103 Letrozole (RBX) 1211000036103 Letrozole (RBX) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +20991011000036105 Gonal-F Multidose (1 x 450 units (32.76 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 96114 14137011000036109 Gonal-F Multidose (1 x 450 units (32.76 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 28169011000036108 follitropin alfa 450 units (32.76 microgram) injection [450 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +20991011000036105 Gonal-F Multidose (1 x 450 units (32.76 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 96114 14137011000036109 Gonal-F Multidose (1 x 450 units (32.76 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 7415011000036100 Gonal-F Multidose (follitropin alfa 450 units (32.76 microgram)) powder for injection, 450 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 28169011000036108 follitropin alfa 450 units (32.76 microgram) injection [450 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 23479011000036100 follitropin alfa 450 units (32.76 microgram) injection, 450 units vial 21352011000036107 follitropin alfa +17937011000036104 Isoptin 5 mg/2 mL injection solution, 5 x 2 mL ampoules 12796 11853011000036103 Isoptin 5 mg/2 mL injection solution, 5 x 2 mL ampoules 5077011000036108 Isoptin 5 mg/2 mL injection solution, 2 mL ampoule 4411000168109 Isoptin 4411000168109 Isoptin 26794011000036109 verapamil hydrochloride 5 mg/2 mL injection, 5 x 2 mL ampoules 22180011000036107 verapamil hydrochloride 5 mg/2 mL injection, ampoule 21287011000036109 verapamil +906941000168101 Celecoxib (LAPL) 200 mg hard capsule, 120, blister pack 196187 906931000168105 Celecoxib (LAPL) 200 mg hard capsule, 120 906731000168108 Celecoxib (LAPL) 200 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +13321000036101 Mycophenolate Mofetil (Apo) 500 mg film-coated tablet, 50, blister pack 168111 8451000036108 Mycophenolate Mofetil (Apo) 500 mg film-coated tablet, 50 2541000036107 Mycophenolate Mofetil (Apo) 500 mg film-coated tablet 23401000168104 Mycophenolate Mofetil (Apo) 23401000168104 Mycophenolate Mofetil (Apo) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +988311000168104 Risedronate (Apo) 75 mg film-coated tablet, 8, blister pack 181973 988301000168102 Risedronate (Apo) 75 mg film-coated tablet, 8 988231000168102 Risedronate (Apo) 75 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 801061000168101 risedronate sodium 75 mg tablet, 8 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +924211000168105 Temaze 10 mg uncoated tablet, 30, bottle 63863 924041000168100 Temaze 10 mg uncoated tablet, 30 6361011000036107 Temaze 10 mg uncoated tablet 3498011000036104 Temaze 3498011000036104 Temaze 924031000168109 temazepam 10 mg tablet, 30 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +913771000168102 Cirofaxin 250 mg film-coated tablet, 100, blister pack 114043 913761000168108 Cirofaxin 250 mg film-coated tablet, 100 913631000168108 Cirofaxin 250 mg film-coated tablet 933240751000036107 Cirofaxin 933240751000036107 Cirofaxin 932362011000036103 ciprofloxacin 250 mg tablet, 100 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +923854011000036108 Gemcitabine (DBL) 200 mg/5.3 mL injection solution, 5.3 mL vial 160201 923400011000036102 Gemcitabine (DBL) 200 mg/5.3 mL injection solution, 5.3 mL vial 923065011000036102 Gemcitabine (DBL) 200 mg/5.3 mL injection solution, 5.3 mL vial 72908011000036104 Gemcitabine (DBL) 72908011000036104 Gemcitabine (DBL) 924184011000036105 gemcitabine 200 mg/5.3 mL injection, 5.3 mL vial 923986011000036101 gemcitabine 200 mg/5.3 mL injection, vial 21644011000036108 gemcitabine +152481000036104 Ziprasidone (Apo) 60 mg hard capsule, 60, blister pack 201063 150791000036107 Ziprasidone (Apo) 60 mg hard capsule, 60 148261000036109 Ziprasidone (Apo) 60 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27571011000036104 ziprasidone 60 mg capsule, 60 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +152481000036104 Ziprasidone (Apo) 60 mg hard capsule, 60, blister pack 201059 150791000036107 Ziprasidone (Apo) 60 mg hard capsule, 60 148261000036109 Ziprasidone (Apo) 60 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27571011000036104 ziprasidone 60 mg capsule, 60 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +18935011000036102 Zincfrin 0.25% / 0.12% eye drops solution, 15 mL, bottle 25366 12243011000036106 Zincfrin 0.25% / 0.12% eye drops solution, 15 mL 4923011000036100 Zincfrin 0.25% / 0.12% eye drops solution 3841000168109 Zincfrin 0.25% / 0.12% 3841000168109 Zincfrin 0.25% / 0.12% 27008011000036102 zinc sulfate 0.25% + phenylephrine hydrochloride 0.12% eye drops, 15 mL 22381011000036107 zinc sulfate 0.25% + phenylephrine hydrochloride 0.12% eye drops 879421000168105 zinc sulfate + phenylephrine +85501000036104 Fendex ER 2.5 mg modified release tablet, 30, blister pack 184623 84581000036106 Fendex ER 2.5 mg modified release tablet, 30 84071000036103 Fendex ER 2.5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 27474011000036109 felodipine 2.5 mg modified release tablet, 30 22820011000036107 felodipine 2.5 mg modified release tablet 21440011000036100 felodipine +911601000168102 Cavstat 20 mg film-coated tablet, 56, blister pack 234514 911591000168109 Cavstat 20 mg film-coated tablet, 56 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911581000168106 rosuvastatin 20 mg tablet, 56 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +933072011000036102 Tramadol Hydrochloride SR (Apo) 150 mg modified release tablet, 20, blister pack 154394 932869011000036105 Tramadol Hydrochloride SR (Apo) 150 mg modified release tablet, 20 932730011000036107 Tramadol Hydrochloride SR (Apo) 150 mg modified release tablet 20051000168101 Tramadol Hydrochloride SR (Apo) 20051000168101 Tramadol Hydrochloride SR (Apo) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +797851000168104 Aciclovir (Watson) 800 mg uncoated tablet, 120, blister pack 202883 797841000168101 Aciclovir (Watson) 800 mg uncoated tablet, 120 797811000168100 Aciclovir (Watson) 800 mg uncoated tablet 795831000168101 Aciclovir (Watson) 795831000168101 Aciclovir (Watson) 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +1112921000168108 Allopurinol (TN) 100 mg uncoated tablet, 500, bottle 269656 1112911000168101 Allopurinol (TN) 100 mg uncoated tablet, 500 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112901000168104 allopurinol 100 mg tablet, 500 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +20289011000036106 Indapamide Hemihydrate (GenRx) 2.5 mg film-coated tablet, 90, blister pack 167027 13498011000036103 Indapamide Hemihydrate (GenRx) 2.5 mg film-coated tablet, 90 6780011000036102 Indapamide Hemihydrate (GenRx) 2.5 mg film-coated tablet 3193011000036105 Indapamide Hemihydrate (GenRx) 3193011000036105 Indapamide Hemihydrate (GenRx) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +20289011000036106 Indapamide Hemihydrate (GenRx) 2.5 mg film-coated tablet, 90, blister pack 75574 13498011000036103 Indapamide Hemihydrate (GenRx) 2.5 mg film-coated tablet, 90 6780011000036102 Indapamide Hemihydrate (GenRx) 2.5 mg film-coated tablet 3193011000036105 Indapamide Hemihydrate (GenRx) 3193011000036105 Indapamide Hemihydrate (GenRx) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +1112701000168102 Quetiapine (GH) 150 mg film-coated tablet, 50, blister pack 179903 1112691000168102 Quetiapine (GH) 150 mg film-coated tablet, 50 1112611000168106 Quetiapine (GH) 150 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1112681000168100 quetiapine 150 mg tablet, 50 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +1112781000168105 Allopurinol (TN) 100 mg uncoated tablet, 50, blister pack 269643 1112771000168107 Allopurinol (TN) 100 mg uncoated tablet, 50 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112761000168101 allopurinol 100 mg tablet, 50 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +1069941000168103 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet, 36, blister pack 203128 1069931000168107 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet, 36 1069861000168106 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet 1069851000168109 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) 1069851000168109 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) 1069921000168109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 36 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1114851000168101 Ketizenol 200 mg film-coated tablet, 20, blister pack 202256 1114841000168103 Ketizenol 200 mg film-coated tablet, 20 1114831000168107 Ketizenol 200 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +17839011000036102 Salbutamol Sterineb (Pfizer (Perth)) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 11354 11450011000036104 Salbutamol Sterineb (Pfizer (Perth)) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 5938011000036100 Salbutamol Sterineb (Pfizer (Perth)) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 25971000168100 Salbutamol Sterineb (Pfizer (Perth)) 25971000168100 Salbutamol Sterineb (Pfizer (Perth)) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +1039951000168108 Aspramide 10 mg film-coated tablet, 150, blister pack 196460 1039941000168106 Aspramide 10 mg film-coated tablet, 150 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 672021000168102 metoclopramide hydrochloride 10 mg tablet, 150 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +59765011000036108 Panafen Plus film-coated tablet, 48, blister pack 106616 55723011000036109 Panafen Plus film-coated tablet, 48 53642011000036100 Panafen Plus film-coated tablet 53591011000036109 Panafen Plus 53591011000036109 Panafen Plus 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +34814011000036100 Ritalin LA 20 mg modified release capsule, 100, bottle 82957 34389011000036104 Ritalin LA 20 mg modified release capsule, 100 34067011000036108 Ritalin LA 20 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 35233011000036106 methylphenidate hydrochloride 20 mg modified release capsule, 100 34907011000036100 methylphenidate hydrochloride 20 mg modified release capsule 21277011000036101 methylphenidate +82378011000036103 Coplavix 75 mg/100 mg film-coated tablet, 98, blister pack 150443 82167011000036100 Coplavix 75 mg/100 mg film-coated tablet, 98 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82555011000036108 clopidogrel 75 mg + aspirin 100 mg tablet, 98 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +774371000168102 Rizatriptan (Terry White Chemists) 10 mg orally disintegrating tablet, 2, blister pack 222329 774361000168108 Rizatriptan (Terry White Chemists) 10 mg orally disintegrating tablet, 2 774351000168106 Rizatriptan (Terry White Chemists) 10 mg orally disintegrating tablet 773611000168101 Rizatriptan (Terry White Chemists) 773611000168101 Rizatriptan (Terry White Chemists) 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +979991000168107 Octanate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 98209 979981000168109 Octanate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 979951000168102 Octanate (factor VIII 250 units) powder for injection, 250 units vial 979921000168105 Octanate 979921000168105 Octanate 979971000168106 factor VIII 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 979941000168104 factor VIII 250 units injection, vial 979931000168108 factor VIII +979991000168107 Octanate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 98209 979981000168109 Octanate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 979961000168100 Octanate (inert substance) diluent, 5 mL vial 979921000168105 Octanate 979921000168105 Octanate 979971000168106 factor VIII 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +921823011000036104 Enalapril Maleate (Sandoz) 20 mg uncoated tablet, 30, blister pack 121816 921389011000036106 Enalapril Maleate (Sandoz) 20 mg uncoated tablet, 30 920973011000036103 Enalapril Maleate (Sandoz) 20 mg uncoated tablet 920933011000036100 Enalapril Maleate (Sandoz) 920933011000036100 Enalapril Maleate (Sandoz) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +17903011000036104 Enalapril Maleate (DP) 20 mg uncoated tablet, 30, blister pack 121955 11706011000036102 Enalapril Maleate (DP) 20 mg uncoated tablet, 30 4505011000036100 Enalapril Maleate (DP) 20 mg uncoated tablet 4424011000036100 Enalapril Maleate (DP) 4424011000036100 Enalapril Maleate (DP) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +60254011000036105 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 12 sachets 134660 56213011000036109 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 12 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63354011000036100 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 12 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +152321000036109 Amoxyclav 500/125 (GH) film-coated tablet, 10, blister pack 198110 150551000036109 Amoxyclav 500/125 (GH) film-coated tablet, 10 148201000036105 Amoxyclav 500/125 (GH) film-coated tablet 5491000168104 Amoxyclav 500/125 (GH) 5491000168104 Amoxyclav 500/125 (GH) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +881421000168103 Busulfan (Apotex) 60 mg/10 mL injection solution, 8 x 10 mL vials 210228 881411000168105 Busulfan (Apotex) 60 mg/10 mL injection solution, 8 x 10 mL vials 881371000168109 Busulfan (Apotex) 60 mg/10 mL injection solution, 10 mL vial 874281000168106 Busulfan (Apotex) 874281000168106 Busulfan (Apotex) 929213011000036108 busulfan 60 mg/10 mL injection, 8 x 10 mL vials 929149011000036100 busulfan 60 mg/10 mL injection, vial 21405011000036102 busulfan +763631000168102 Zinnat 250 mg film-coated tablet, 50, blister pack 47621 763621000168100 Zinnat 250 mg film-coated tablet, 50 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 763611000168107 cefuroxime 250 mg tablet, 50 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +1074191000168100 Ciprofloxacin (Auro) 750 mg film-coated tablet, 28, blister pack 175439 1074181000168103 Ciprofloxacin (Auro) 750 mg film-coated tablet, 28 1074141000168108 Ciprofloxacin (Auro) 750 mg film-coated tablet 717841000168100 Ciprofloxacin (Auro) 717841000168100 Ciprofloxacin (Auro) 1074171000168101 ciprofloxacin 750 mg tablet, 28 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +50667011000036109 Carvedilol (Genepharm) 6.25 mg uncoated tablet, 60, blister pack 152438 49691011000036108 Carvedilol (Genepharm) 6.25 mg uncoated tablet, 60 48825011000036107 Carvedilol (Genepharm) 6.25 mg uncoated tablet 48379011000036105 Carvedilol (Genepharm) 48379011000036105 Carvedilol (Genepharm) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +675821000168101 Kudeq 100 mg hard capsule, 60, blister pack 211498 675811000168108 Kudeq 100 mg hard capsule, 60 675801000168105 Kudeq 100 mg hard capsule 675791000168109 Kudeq 675791000168109 Kudeq 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1121291000168100 Quetiapine XR (Medis) 300 mg modified release tablet, 30, blister pack 226812 1121281000168103 Quetiapine XR (Medis) 300 mg modified release tablet, 30 1121251000168105 Quetiapine XR (Medis) 300 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 795801000168108 quetiapine 300 mg modified release tablet, 30 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +748641000168105 Taxoccord 20 mg/mL concentrated injection, 1 mL vial 209467 748631000168101 Taxoccord 20 mg/mL concentrated injection, 1 mL vial 748621000168104 Taxoccord 20 mg/mL concentrated injection, vial 748131000168108 Taxoccord 748131000168108 Taxoccord 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +931690011000036106 Suvacid Heartburn Relief 20 mg enteric tablet, 14, blister pack 169503 930850011000036103 Suvacid Heartburn Relief 20 mg enteric tablet, 14 930071011000036109 Suvacid Heartburn Relief 20 mg enteric tablet 9761000168102 Suvacid Heartburn Relief 9761000168102 Suvacid Heartburn Relief 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +782911000168109 Palexia IR 50 mg film-coated tablet, 50, blister pack 165310 782901000168106 Palexia IR 50 mg film-coated tablet, 50 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782891000168107 tapentadol 50 mg tablet, 50 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +19805011000036104 Pirohexal-D 20 mg dispersible tablet, 25, blister pack 63398 13062011000036105 Pirohexal-D 20 mg dispersible tablet, 25 6346011000036108 Pirohexal-D 20 mg dispersible tablet 5501000168106 Pirohexal-D 5501000168106 Pirohexal-D 27882011000036100 piroxicam 20 mg dispersible tablet, 25 23210011000036102 piroxicam 20 mg dispersible tablet 21531011000036103 piroxicam +1022791000168105 Epiduo Forte gel, 45 g, pump pack 273168 1022781000168107 Epiduo Forte gel, 45 g 1022701000168104 Epiduo Forte gel 1022681000168102 Epiduo Forte 1022681000168102 Epiduo Forte 1022771000168109 adapalene 0.3% + benzoyl peroxide 2.5% gel, 45 g 1022691000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +1048471000168103 Coparadeine Forte 500/30 tablet, 10, blister pack 220978 1048461000168109 Coparadeine Forte 500/30 tablet, 10 1048381000168108 Coparadeine Forte 500/30 tablet 1048371000168105 Coparadeine Forte 500/30 1048371000168105 Coparadeine Forte 500/30 1047321000168108 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 10 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +44722011000036101 Chirocaine 250 mg/200 mL injection solution, 32 x 200 mL bags 94482 42167011000036109 Chirocaine 250 mg/200 mL injection solution, 32 x 200 mL bags 40373011000036109 Chirocaine 250 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46928011000036102 levobupivacaine 250 mg/200 mL injection, 32 x 200 mL bags 45348011000036105 levobupivacaine 250 mg/200 mL injection, bag 44881011000036100 levobupivacaine +43754011000036108 Zemplar 2 microgram soft capsule, 28, blister pack 121762 41258011000036100 Zemplar 2 microgram soft capsule, 28 39939011000036101 Zemplar 2 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46197011000036108 paricalcitol 2 microgram capsule, 28 45026011000036105 paricalcitol 2 microgram capsule 44899011000036102 paricalcitol +20837011000036103 Tracleer 125 mg film-coated tablet, 60, bottle 91920 14000011000036105 Tracleer 125 mg film-coated tablet, 60 7281011000036101 Tracleer 125 mg film-coated tablet 4105011000036106 Tracleer 4105011000036106 Tracleer 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1078441000168109 Atomoxetine (GPPL) 25 mg hard capsule, 7, blister pack 234834 1078431000168100 Atomoxetine (GPPL) 25 mg hard capsule, 7 1078421000168103 Atomoxetine (GPPL) 25 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +933211121000036103 Ablavar 4.88 g/20 mL injection solution, 5 x 20 mL vials 115547 933200081000036108 Ablavar 4.88 g/20 mL injection solution, 5 x 20 mL vials 933194361000036105 Ablavar 4.88 g/20 mL injection solution, 20 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933200091000036105 gadofosveset trisodium 4.88 g/20 mL injection, 5 x 20 mL vials 933194371000036102 gadofosveset trisodium 4.88 g/20 mL injection, vial 933216361000036104 gadofosveset +181951000036103 Picato 0.05% gel, 470 mg, tube 181961000036100 Picato 0.05% gel, 470 mg 117781000036100 Picato 0.05% gel 106611000036100 Picato 106611000036100 Picato 181971000036108 ingenol mebutate 0.05% gel, 470 mg 117791000036103 ingenol mebutate 0.05% gel 111241000036107 ingenol mebutate +130811000036109 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet, 30, blister pack 210565 128051000036102 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet, 30 124981000036104 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet 38861000168105 Candesartan Cilexetil HCTZ 16/12.5 (Apo) 38861000168105 Candesartan Cilexetil HCTZ 16/12.5 (Apo) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +130811000036109 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet, 30, blister pack 192184 128051000036102 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet, 30 124981000036104 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet 38861000168105 Candesartan Cilexetil HCTZ 16/12.5 (Apo) 38861000168105 Candesartan Cilexetil HCTZ 16/12.5 (Apo) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1046371000168106 Buprenorphine (SDZ) 15 microgram/hour patch, 2, sachet 269668 1046361000168100 Buprenorphine (SDZ) 15 microgram/hour patch, 2 1046291000168102 Buprenorphine (SDZ) 15 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 776161000168100 buprenorphine 15 microgram/hour patch, 2 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +20456011000036108 Cimetidine (GenRx) 800 mg film-coated tablet, 30, blister pack 78169 13659011000036101 Cimetidine (GenRx) 800 mg film-coated tablet, 30 6942011000036102 Cimetidine (GenRx) 800 mg film-coated tablet 3740011000036104 Cimetidine (GenRx) 3740011000036104 Cimetidine (GenRx) 27867011000036100 cimetidine 800 mg tablet, 30 23195011000036109 cimetidine 800 mg tablet 21427011000036101 cimetidine +778661000168108 Oxycodone MR (Apo) 15 mg modified release tablet, 20, blister pack 214492 778651000168106 Oxycodone MR (Apo) 15 mg modified release tablet, 20 778641000168109 Oxycodone MR (Apo) 15 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +60429011000036109 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 4 sachets 146071 56388011000036109 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 4 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63334011000036104 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 4 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +104871000036100 Irbesartan HCTZ 150/12.5 (Terry White Chemists) film-coated tablet, 30, blister pack 175213 102001000036109 Irbesartan HCTZ 150/12.5 (Terry White Chemists) film-coated tablet, 30 98481000036100 Irbesartan HCTZ 150/12.5 (Terry White Chemists) film-coated tablet 17241000168103 Irbesartan HCTZ 150/12.5 (Terry White Chemists) 17241000168103 Irbesartan HCTZ 150/12.5 (Terry White Chemists) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104871000036100 Irbesartan HCTZ 150/12.5 (Terry White Chemists) film-coated tablet, 30, blister pack 216083 102001000036109 Irbesartan HCTZ 150/12.5 (Terry White Chemists) film-coated tablet, 30 98481000036100 Irbesartan HCTZ 150/12.5 (Terry White Chemists) film-coated tablet 17241000168103 Irbesartan HCTZ 150/12.5 (Terry White Chemists) 17241000168103 Irbesartan HCTZ 150/12.5 (Terry White Chemists) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1114791000168101 Rosuvastatin (Sandoz) 5 mg film-coated tablet, 30, bottle 183593 114851000036108 Rosuvastatin (Sandoz) 5 mg film-coated tablet, 30 112831000036109 Rosuvastatin (Sandoz) 5 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +59847011000036108 Strong Pain Relief (Amcal) uncoated tablet, 100, blister pack 115171 55809011000036101 Strong Pain Relief (Amcal) uncoated tablet, 100 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 52903011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 100 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +69737011000036107 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 12, blister pack 92684 67536011000036103 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 12 65690011000036104 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 72037011000036100 paracetamol 500 mg capsule, 12 70282011000036109 paracetamol 500 mg capsule 21433011000036107 paracetamol +925156011000036104 Nicabate Soft Gum Mint 2 mg chewing gum, 96, blister pack 117055 924688011000036104 Nicabate Soft Gum Mint 2 mg chewing gum, 96 924413011000036105 Nicabate Soft Gum Mint 2 mg chewing gum 6191000168103 Nicabate Soft Gum Mint 6191000168103 Nicabate Soft Gum Mint 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +61033011000036109 Imodium Advanced chewable tablet, 6, blister pack 235794 56976011000036106 Imodium Advanced chewable tablet, 6 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63674011000036106 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 6 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +61033011000036109 Imodium Advanced chewable tablet, 6, blister pack 66848 56976011000036106 Imodium Advanced chewable tablet, 6 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63674011000036106 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 6 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +152361000036100 Raloxifene Hydrochloride (GH) 60 mg film-coated tablet, 28, blister pack 199295 150591000036100 Raloxifene Hydrochloride (GH) 60 mg film-coated tablet, 28 148561000036107 Raloxifene Hydrochloride (GH) 60 mg film-coated tablet 147951000036102 Raloxifene Hydrochloride (GH) 147951000036102 Raloxifene Hydrochloride (GH) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +19689011000036106 Alphapress 50 mg film-coated tablet, 100, bottle 60380 12947011000036103 Alphapress 50 mg film-coated tablet, 100 6237011000036103 Alphapress 50 mg film-coated tablet 4020011000036102 Alphapress 4020011000036102 Alphapress 27460011000036108 hydralazine hydrochloride 50 mg tablet, 100 22807011000036102 hydralazine hydrochloride 50 mg tablet 21368011000036104 hydralazine +971311000168103 Glivanib 400 mg hard capsule, 30, blister pack 285900 971301000168101 Glivanib 400 mg hard capsule, 30 971271000168103 Glivanib 400 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 830781000168107 imatinib 400 mg capsule, 30 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +992721000168108 Lyrica 100 mg hard capsule, 20, blister pack 99524 991211000168101 Lyrica 100 mg hard capsule, 20 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 903511000168101 pregabalin 100 mg capsule, 20 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +60588011000036101 Polaramine 2 mg uncoated tablet, 50, blister pack 18198 56546011000036104 Polaramine 2 mg uncoated tablet, 50 53966011000036106 Polaramine 2 mg uncoated tablet 9101000168102 Polaramine 9101000168102 Polaramine 63412011000036105 dexchlorpheniramine maleate 2 mg tablet, 50 61949011000036101 dexchlorpheniramine maleate 2 mg tablet 61749011000036105 dexchlorpheniramine +37521011000036102 Syntocinon 10 units/mL injection solution, 5 x 1 mL ampoules 13383 36789011000036105 Syntocinon 10 units/mL injection solution, 5 x 1 mL ampoules 36172011000036102 Syntocinon 10 units/mL injection solution, ampoule 35899011000036109 Syntocinon 35899011000036109 Syntocinon 38686011000036102 oxytocin 10 units/mL injection, 5 x 1 mL ampoules 37925011000036105 oxytocin 10 units/mL injection, ampoule 37765011000036106 oxytocin +703591000168101 Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe 180860 703581000168104 Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe 703561000168108 Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe 77681000036109 Eylea 77681000036109 Eylea 703571000168102 aflibercept 4 mg/0.1 mL injection, 0.1 mL syringe 703551000168106 aflibercept 4 mg/0.1 mL injection, syringe 82551000036105 aflibercept +783001000168104 Palexia IR 50 mg film-coated tablet, 90, blister pack 165310 782991000168100 Palexia IR 50 mg film-coated tablet, 90 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782981000168103 tapentadol 50 mg tablet, 90 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +654451000168109 Telmisartan (AN) 40 mg uncoated tablet, 28, blister pack 209335 654441000168107 Telmisartan (AN) 40 mg uncoated tablet, 28 654431000168103 Telmisartan (AN) 40 mg uncoated tablet 654411000168108 Telmisartan (AN) 654411000168108 Telmisartan (AN) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +1095521000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 20, blister pack 287305 1095511000168106 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 20 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +654311000168104 Simvastatin (AN) 10 mg film-coated tablet, 30, blister pack 170525 654301000168102 Simvastatin (AN) 10 mg film-coated tablet, 30 654291000168103 Simvastatin (AN) 10 mg film-coated tablet 654281000168101 Simvastatin (AN) 654281000168101 Simvastatin (AN) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +50646011000036100 Diprosone 0.05% ointment, 50 g, tube 144098 49672011000036107 Diprosone 0.05% ointment, 50 g 5175011000036105 Diprosone 0.05% ointment 10951000168106 Diprosone 10951000168106 Diprosone 51551011000036109 betamethasone (as dipropionate) 0.05% ointment, 50 g 22452011000036100 betamethasone (as dipropionate) 0.05% ointment 21372011000036109 betamethasone dipropionate +941021000168106 Amlodipine (Genepharm) 2.5 mg uncoated tablet, 30, blister pack 146236 941011000168104 Amlodipine (Genepharm) 2.5 mg uncoated tablet, 30 941001000168102 Amlodipine (Genepharm) 2.5 mg uncoated tablet 940991000168103 Amlodipine (Genepharm) 940991000168103 Amlodipine (Genepharm) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +710461000168100 Adenuric 80 mg film-coated tablet, 28, blister pack 205556 710451000168102 Adenuric 80 mg film-coated tablet, 28 710431000168108 Adenuric 80 mg film-coated tablet 710391000168103 Adenuric 710391000168103 Adenuric 710441000168104 febuxostat 80 mg tablet, 28 710421000168105 febuxostat 80 mg tablet 710411000168103 febuxostat +714801000168108 Zydelig 150 mg film-coated tablet, 60, bottle 218839 714791000168107 Zydelig 150 mg film-coated tablet, 60 714771000168106 Zydelig 150 mg film-coated tablet 714681000168104 Zydelig 714681000168104 Zydelig 714781000168109 idelalisib 150 mg tablet, 60 714761000168100 idelalisib 150 mg tablet 714701000168101 idelalisib +59697011000036106 Cold and Flu Day and Night (Guardian) (18 x Day tablets, 6 x Night tablets), 24, blister pack 107272 55731011000036105 Cold and Flu Day and Night (Guardian) (18 x Day tablets, 6 x Night tablets), 24 53719011000036108 Cold and Flu Day and Night (Day) (Guardian) film-coated tablet 35841000168101 Cold and Flu Day and Night (Guardian) 35961000168109 Cold and Flu Day and Night (Day) (Guardian) 63535011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [18] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [6], 24 62103011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +59697011000036106 Cold and Flu Day and Night (Guardian) (18 x Day tablets, 6 x Night tablets), 24, blister pack 107272 55731011000036105 Cold and Flu Day and Night (Guardian) (18 x Day tablets, 6 x Night tablets), 24 53673011000036108 Cold and Flu Day and Night (Night) (Guardian) film-coated tablet 35841000168101 Cold and Flu Day and Night (Guardian) 36081000168109 Cold and Flu Day and Night (Night) (Guardian) 63535011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [18] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [6], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +701901000168103 Laxative with Senna (Chemists' Own) film-coated tablet, 30, bottle 218551 701891000168102 Laxative with Senna (Chemists' Own) film-coated tablet, 30 701881000168100 Laxative with Senna (Chemists' Own) film-coated tablet 701871000168103 Laxative with Senna (Chemists' Own) 701871000168103 Laxative with Senna (Chemists' Own) 81746011000036103 docusate sodium 50 mg + sennoside B 8 mg tablet, 30 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +950381000168100 Frusemide (Sanofi) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 144454 950371000168103 Frusemide (Sanofi) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 950361000168109 Frusemide (Sanofi) 20 mg/2 mL injection solution, 2 mL ampoule 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 26762011000036103 furosemide (frusemide) 20 mg/2 mL injection, 5 x 2 mL ampoules 22149011000036106 furosemide (frusemide) 20 mg/2 mL injection, ampoule 21329011000036103 furosemide (frusemide) +61406011000036100 Kwells 300 microgram chewable tablet, 2, blister pack 82362 57331011000036105 Kwells 300 microgram chewable tablet, 2 54277011000036104 Kwells 300 microgram chewable tablet 53261011000036100 Kwells 53261011000036100 Kwells 76001000036106 hyoscine hydrobromide trihydrate 300 microgram chewable tablet, 2 75941000036101 hyoscine hydrobromide trihydrate 300 microgram chewable tablet 61734011000036108 hyoscine hydrobromide trihydrate +17920011000036103 Simvasyn 40 mg film-coated tablet, 30, blister pack 124692 11776011000036108 Simvasyn 40 mg film-coated tablet, 30 4625011000036103 Simvasyn 40 mg film-coated tablet 4188011000036104 Simvasyn 4188011000036104 Simvasyn 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +1026721000168107 Pregabalin (Amneal) 150 mg hard capsule, 60, blister pack 235877 1026711000168100 Pregabalin (Amneal) 150 mg hard capsule, 60 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +117881000036105 Picato 0.05% gel, 2 x 470 mg tubes 190113 117821000036109 Picato 0.05% gel, 2 x 470 mg 117781000036100 Picato 0.05% gel 106611000036100 Picato 106611000036100 Picato 117831000036106 ingenol mebutate 0.05% gel, 2 x 470 mg 117791000036103 ingenol mebutate 0.05% gel 111241000036107 ingenol mebutate +117891000036107 Picato 0.015% gel, 3 x 470 mg tubes 190122 117841000036101 Picato 0.015% gel, 3 x 470 mg 117761000036105 Picato 0.015% gel 106611000036100 Picato 106611000036100 Picato 117851000036103 ingenol mebutate 0.015% gel, 3 x 470 mg 117771000036102 ingenol mebutate 0.015% gel 111241000036107 ingenol mebutate +44032011000036101 Dalacin C 600 mg/4 mL injection solution, 10 x 4 mL ampoules 47636 41521011000036103 Dalacin C 600 mg/4 mL injection solution, 10 x 4 mL ampoules 40035011000036107 Dalacin C 600 mg/4 mL injection solution, 4 mL ampoule 10481000168108 Dalacin C 10481000168108 Dalacin C 46357011000036109 clindamycin 600 mg/4 mL injection, 10 x 4 mL ampoules 45103011000036104 clindamycin 600 mg/4 mL injection, ampoule 21255011000036108 clindamycin +778981000168106 Fentanyl (Apo) 75 microgram/hour patch, 4, sachet 152570 778971000168108 Fentanyl (Apo) 75 microgram/hour patch, 4 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235651000036107 fentanyl 75 microgram/hour patch, 4 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +17753011000036103 Inderal 10 mg film-coated tablet, 100, bottle 11228 11436011000036102 Inderal 10 mg film-coated tablet, 100 5865011000036108 Inderal 10 mg film-coated tablet 2946011000036102 Inderal 2946011000036102 Inderal 26939011000036109 propranolol hydrochloride 10 mg tablet, 100 22315011000036107 propranolol hydrochloride 10 mg tablet 21392011000036104 propranolol +849431000168109 Vzole 50 mg film-coated tablet, 10, bottle 238240 849161000168108 Vzole 50 mg film-coated tablet, 10 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46811011000036106 voriconazole 50 mg tablet, 10 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +69600011000036109 Acnederm Foaming Wash solution, 150 mL, bottle 70050 67399011000036102 Acnederm Foaming Wash solution, 150 mL 65647011000036108 Acnederm Foaming Wash solution 27381000168107 Acnederm Foaming Wash 27381000168107 Acnederm Foaming Wash 71934011000036104 chlorhexidine gluconate 0.5% + cetrimide 1% solution, 150 mL 70254011000036106 chlorhexidine gluconate 0.5% + cetrimide 1% solution 69756011000036105 chlorhexidine + cetrimide +796161000168105 Aciclovir (GH) 800 mg uncoated tablet, 120, blister pack 183862 796151000168108 Aciclovir (GH) 800 mg uncoated tablet, 120 796121000168100 Aciclovir (GH) 800 mg uncoated tablet 933234351000036100 Aciclovir (GH) 933234351000036100 Aciclovir (GH) 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +1103781000168103 Quetiapine (GH) 300 mg film-coated tablet, 50, blister pack 179896 1103771000168101 Quetiapine (GH) 300 mg film-coated tablet, 50 2211000036108 Quetiapine (GH) 300 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103761000168107 quetiapine 300 mg tablet, 50 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +920761011000036102 Diltiazem Hydrochloride (Sandoz) 60 mg film-coated tablet, 90, bottle 62646 920440011000036109 Diltiazem Hydrochloride (Sandoz) 60 mg film-coated tablet, 90 920181011000036105 Diltiazem Hydrochloride (Sandoz) 60 mg film-coated tablet 920089011000036103 Diltiazem Hydrochloride (Sandoz) 920089011000036103 Diltiazem Hydrochloride (Sandoz) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +706211000168104 Mycamine 100 mg powder for injection, 1 vial 196109 706201000168102 Mycamine 100 mg powder for injection, 1 vial 706181000168103 Mycamine 100 mg powder for injection, 100 mg vial 706091000168101 Mycamine 706091000168101 Mycamine 706191000168100 micafungin 100 mg injection, 1 vial 706171000168101 micafungin 100 mg injection, vial 706111000168109 micafungin +783321000168106 Palexia IR 75 mg film-coated tablet, 56, blister pack 165317 783311000168104 Palexia IR 75 mg film-coated tablet, 56 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783301000168102 tapentadol 75 mg tablet, 56 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +761621000168104 Cosamide 50 mg film-coated tablet, 28, blister pack 135207 39298011000036102 Cosamide 50 mg film-coated tablet, 28 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +780351000168105 Fentanyl (Apo) 50 microgram/hour patch, 8, sachet 152573 780341000168108 Fentanyl (Apo) 50 microgram/hour patch, 8 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236001000036108 fentanyl 50 microgram/hour patch, 8 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +763791000168109 Fenofibrate (RBX) 48 mg film-coated tablet, 60, blister pack 233493 763781000168106 Fenofibrate (RBX) 48 mg film-coated tablet, 60 763771000168108 Fenofibrate (RBX) 48 mg film-coated tablet 763691000168103 Fenofibrate (RBX) 763691000168103 Fenofibrate (RBX) 26701011000036108 fenofibrate 48 mg tablet, 60 22096011000036102 fenofibrate 48 mg tablet 21417011000036105 fenofibrate +130731000036107 Yervoy 50 mg/10 mL concentrated injection, 10 mL vial 174319 127771000036106 Yervoy 50 mg/10 mL concentrated injection, 10 mL vial 124161000036106 Yervoy 50 mg/10 mL concentrated injection, 10 mL vial 123711000036108 Yervoy 123711000036108 Yervoy 127781000036108 ipilimumab 50 mg/10 mL injection, 10 mL vial 124171000036103 ipilimumab 50 mg/10 mL injection, vial 132101000036102 ipilimumab +43938011000036106 Lamotrigine (Sandoz) Dispersible/Chewable 100 mg tablet, 56, blister pack 143569 41430011000036102 Lamotrigine (Sandoz) Dispersible/Chewable 100 mg tablet, 56 39810011000036109 Lamotrigine (Sandoz) Dispersible/Chewable 100 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +43938011000036106 Lamotrigine (Sandoz) Dispersible/Chewable 100 mg tablet, 56, blister pack 187278 41430011000036102 Lamotrigine (Sandoz) Dispersible/Chewable 100 mg tablet, 56 39810011000036109 Lamotrigine (Sandoz) Dispersible/Chewable 100 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +152161000036102 Prexum 10 mg film-coated tablet, 30, bottle 194886 150281000036104 Prexum 10 mg film-coated tablet, 30 148381000036109 Prexum 10 mg film-coated tablet 147811000036109 Prexum 147811000036109 Prexum 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +1082871000168108 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack 72724 74391011000036105 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations 73914011000036104 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, actuation 73700011000036102 Beconase Allergy and Hayfever 24 Hour 73700011000036102 Beconase Allergy and Hayfever 24 Hour 75488011000036102 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, 60 actuations 75089011000036100 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, actuation 861061000168102 fluticasone propionate +740051000168104 Ranitidine (AN) 300 mg film-coated tablet, 10, blister pack 148526 740041000168101 Ranitidine (AN) 300 mg film-coated tablet, 10 740011000168100 Ranitidine (AN) 300 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +44122011000036106 Sevorane 1 mL/mL inhalation solution, 100 mL, bottle 51919 41598011000036102 Sevorane 1 mL/mL inhalation solution, 100 mL 40091011000036100 Sevorane 1 mL/mL inhalation solution 39739011000036108 Sevorane 39739011000036108 Sevorane 46420011000036102 sevoflurane 1 mL/mL inhalation solution, 100 mL 45144011000036106 sevoflurane 1 mL/mL inhalation solution 44873011000036109 sevoflurane +926850011000036108 Ipecacuanha and Tolu Mixture Cough Expectorant (Gold Cross) oral liquid solution, 200 mL, bottle 27248 926246011000036101 Ipecacuanha and Tolu Mixture Cough Expectorant (Gold Cross) oral liquid solution, 200 mL 925696011000036109 Ipecacuanha and Tolu Mixture Cough Expectorant (Gold Cross) oral liquid solution, 10 mL 40401000168108 Ipecacuanha and Tolu Mixture Cough Expectorant (Gold Cross) 40401000168108 Ipecacuanha and Tolu Mixture Cough Expectorant (Gold Cross) 927356011000036105 camphor compound spirit 1 mL/10 mL + ipecacuanha tincture 0.25 mL/10 mL + tolu syrup 1 mL/10 mL oral liquid, 200 mL 927004011000036105 camphor compound spirit 1 mL/10 mL + ipecacuanha tincture 0.25 mL/10 mL + tolu syrup 1 mL/10 mL oral liquid 926961011000036103 camphor compound spirit + ipecacuanha tincture + tolu syrup +979841000168108 Losec 40 mg enteric tablet, 5, blister pack 63418 979831000168104 Losec 40 mg enteric tablet, 5 979821000168102 Losec 40 mg enteric tablet 3618011000036100 Losec 3618011000036100 Losec 798411000168102 omeprazole 40 mg enteric tablet, 5 798391000168102 omeprazole 40 mg enteric tablet 21676011000036101 omeprazole +45151000036102 Tenderwet 24 Active (609213) 7.5 cm x 7.5 cm dressing, 10, carton 42671000036106 Tenderwet 24 Active (609213) 7.5 cm x 7.5 cm dressing, 10 48462011000036100 Tenderwet 24 Active (609213) 7.5 cm x 7.5 cm dressing 28371000168105 Tenderwet 24 Active (609213) 28371000168105 Tenderwet 24 Active (609213) 42681000036108 dressing hydroactive debridement 7.5 cm x 7.5 cm dressing, 10 50898011000036103 dressing hydroactive debridement 7.5 cm x 7.5 cm dressing 50721011000036101 dressing hydroactive debridement +907101000168103 Celecoxib (GA) 200 mg capsule, 60, blister pack 204619 907091000168108 Celecoxib (GA) 200 mg capsule, 60 906871000168103 Celecoxib (GA) 200 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +20443011000036100 Aranesp 50 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 77955 13646011000036108 Aranesp 50 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 6929011000036109 Aranesp 50 microgram/0.5 mL injection solution, 0.5 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27856011000036106 darbepoetin alfa 50 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23184011000036106 darbepoetin alfa 50 microgram/0.5 mL injection, syringe 21234011000036105 darbepoetin alfa +60438011000036103 Stomach Ache and Pain Relief (Amcal) 10 mg tablet, 20, blister pack 147610 56397011000036109 Stomach Ache and Pain Relief (Amcal) 10 mg tablet, 20 53899011000036107 Stomach Ache and Pain Relief (Amcal) 10 mg tablet 53440011000036101 Stomach Ache and Pain Relief (Amcal) 53440011000036101 Stomach Ache and Pain Relief (Amcal) 46373011000036102 hyoscine butylbromide 10 mg tablet, 20 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +778941000168101 Fentanyl (Apo) 75 microgram/hour patch, 2, sachet 152570 778931000168105 Fentanyl (Apo) 75 microgram/hour patch, 2 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235611000036108 fentanyl 75 microgram/hour patch, 2 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +696831000168104 Pravastatin (Auro) 10 mg uncoated tablet, 30, bottle 191698 696801000168106 Pravastatin (Auro) 10 mg uncoated tablet, 30 696791000168105 Pravastatin (Auro) 10 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +20987011000036103 Simvar 20 mg film-coated tablet, 30, blister pack 95950 14133011000036100 Simvar 20 mg film-coated tablet, 30 7411011000036102 Simvar 20 mg film-coated tablet 3363011000036100 Simvar 3363011000036100 Simvar 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1039631000168107 Aspramide 10 mg film-coated tablet, 10, blister pack 196460 1039621000168109 Aspramide 10 mg film-coated tablet, 10 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 671801000168108 metoclopramide hydrochloride 10 mg tablet, 10 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +154261000036104 Atozet Composite Pack (30 x 10 mg tablets, 30 x 80 mg tablets), 1 pack, blister pack 196153 150491000036101 Atozet Composite Pack (30 x 10 mg tablets, 30 x 80 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 153961000036108 Atozet Composite Pack 3589011000036101 Ezetrol 150501000036108 ezetimibe 10 mg tablet [30] (&) atorvastatin 80 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +154261000036104 Atozet Composite Pack (30 x 10 mg tablets, 30 x 80 mg tablets), 1 pack, blister pack 196153 150491000036101 Atozet Composite Pack (30 x 10 mg tablets, 30 x 80 mg tablets), 1 pack 148321000036108 Atorvastatin (MSD) 80 mg film-coated tablet 153961000036108 Atozet Composite Pack 147851000036108 Atorvastatin (MSD) 150501000036108 ezetimibe 10 mg tablet [30] (&) atorvastatin 80 mg tablet [30], 1 pack 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +946001000168105 Invast 20 mg film-coated tablet, 30, bottle 100261 945991000168109 Invast 20 mg film-coated tablet, 30 945981000168106 Invast 20 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1020191000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 56, blister pack 190327 1020181000168107 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 56 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82552011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 56 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +152091000036105 Flutiform 50 microgram/5 microgram pressurised inhalation, 120 actuations, metered dose aerosol can 177869 150191000036108 Flutiform 50 microgram/5 microgram pressurised inhalation, 120 actuations 148811000036108 Flutiform 50 microgram/5 microgram pressurised inhalation, actuation 3711000168102 Flutiform 50 microgram/5 microgram 3711000168102 Flutiform 50 microgram/5 microgram 150201000036105 fluticasone propionate 50 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 5 microgram/actuation pressurised inhalation, 120 actuations 148831000036104 fluticasone propionate 50 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 5 microgram/actuation pressurised inhalation, actuation 861531000168103 fluticasone propionate + formoterol (eformoterol) +152131000036108 Metatar 100 mg film-coated tablet, 60, blister pack 192783 150841000036109 Metatar 100 mg film-coated tablet, 60 148101000036100 Metatar 100 mg film-coated tablet 147881000036101 Metatar 147881000036101 Metatar 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +913611000168103 Cisatracurium (AJS) 150 mg/30 mL injection solution, 30 mL vial 181600 913601000168101 Cisatracurium (AJS) 150 mg/30 mL injection solution, 30 mL vial 913591000168108 Cisatracurium (AJS) 150 mg/30 mL injection solution, 30 mL vial 913251000168100 Cisatracurium (AJS) 913251000168100 Cisatracurium (AJS) 161591000036100 cisatracurium 150 mg/30 mL injection, 30 mL vial 161501000036108 cisatracurium 150 mg/30 mL injection, vial 44902011000036101 cisatracurium +19959011000036104 Famvir 500 mg film-coated tablet, 56, blister pack 67391 13202011000036102 Famvir 500 mg film-coated tablet, 56 6484011000036101 Famvir 500 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +783231000168102 Palexia IR 75 mg film-coated tablet, 30, blister pack 165317 783221000168100 Palexia IR 75 mg film-coated tablet, 30 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783211000168107 tapentadol 75 mg tablet, 30 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +20473011000036104 Videx EC 125 mg enteric capsule, 30, bottle 78351 13673011000036101 Videx EC 125 mg enteric capsule, 30 6956011000036101 Videx EC 125 mg enteric capsule 30871000168102 Videx EC 30871000168102 Videx EC 27876011000036108 didanosine 125 mg enteric capsule, 30 23204011000036105 didanosine 125 mg enteric capsule 21467011000036106 didanosine +79084011000036106 Sodium Chloride (B Braun) 0.9% (9 g/L) intravenous infusion injection, 1 L bottle 49337 78878011000036108 Sodium Chloride (B Braun) 0.9% (9 g/L) intravenous infusion injection, 1 L bottle 78681011000036102 Sodium Chloride (B Braun) 0.9% (9 g/L) intravenous infusion injection, 1 L bottle 78605011000036104 Sodium Chloride (B Braun) 78605011000036104 Sodium Chloride (B Braun) 71355011000036106 sodium chloride 0.9% (9 g/L) injection, 1 L bottle 69969011000036101 sodium chloride 0.9% (9 g/L) injection, bottle 21308011000036103 sodium chloride +87634011000036101 Topiramate (RBX) 50 mg film-coated tablet, 60, bottle 157971 87459011000036104 Topiramate (RBX) 50 mg film-coated tablet, 60 87321011000036106 Topiramate (RBX) 50 mg film-coated tablet 87292011000036100 Topiramate (RBX) 87292011000036100 Topiramate (RBX) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +60635011000036107 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 100, bottle 24142 56593011000036102 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 100 54015011000036105 Paracetamol (Soul Pattinson) 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44015011000036101 Ocufen 0.03% eye drops solution, 5 mL, bottle 46863 41504011000036106 Ocufen 0.03% eye drops solution, 5 mL 40022011000036102 Ocufen 0.03% eye drops solution 4028011000036100 Ocufen 4028011000036100 Ocufen 46346011000036109 flurbiprofen sodium dihydrate 0.03% eye drops, 5 mL 45096011000036103 flurbiprofen sodium dihydrate 0.03% eye drops 21717011000036100 flurbiprofen +18421011000036103 Simvasyn 80 mg film-coated tablet, 30, blister pack 124693 11777011000036106 Simvasyn 80 mg film-coated tablet, 30 5958011000036104 Simvasyn 80 mg film-coated tablet 4188011000036104 Simvasyn 4188011000036104 Simvasyn 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +52719011000036100 Simvastatin (Spirit) 20 mg film-coated tablet, 30, bottle 116711 52528011000036103 Simvastatin (Spirit) 20 mg film-coated tablet, 30 52398011000036106 Simvastatin (Spirit) 20 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1095841000168107 Zertine 10 mg film-coated tablet, 40, blister pack 287404 1095831000168103 Zertine 10 mg film-coated tablet, 40 1081371000168108 Zertine 10 mg film-coated tablet 1081361000168102 Zertine 1081361000168102 Zertine 1082051000168106 cetirizine hydrochloride 10 mg tablet, 40 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +44499011000036106 Estraderm MX 75 microgram/24 hours patch, 8, sachet 76117 41954011000036108 Estraderm MX 75 microgram/24 hours patch, 8 40284011000036108 Estraderm MX 75 microgram/24 hours patch 9331000168106 Estraderm MX 9331000168106 Estraderm MX 28233011000036103 estradiol 75 microgram/24 hours patch, 8 23547011000036102 estradiol 75 microgram/24 hours patch 21238011000036103 estradiol +931598011000036104 Pratin 20 mg film-coated tablet, 500, bottle 163557 930759011000036107 Pratin 20 mg film-coated tablet, 500 930037011000036104 Pratin 20 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932417011000036106 pravastatin sodium 20 mg tablet, 500 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +69583011000036105 Dermadrate Dry Skin Treatment 10% cream, 250 g, jar 64166 67383011000036104 Dermadrate Dry Skin Treatment 10% cream, 250 g 65638011000036105 Dermadrate Dry Skin Treatment 10% cream 65152011000036107 Dermadrate Dry Skin Treatment 65152011000036107 Dermadrate Dry Skin Treatment 71918011000036102 urea 10% cream, 250 g 22378011000036108 urea 10% cream 21561011000036106 urea +714071000168109 Olanzapine (Auro) 7.5 mg uncoated tablet, 28, blister pack 179934 714061000168103 Olanzapine (Auro) 7.5 mg uncoated tablet, 28 714051000168100 Olanzapine (Auro) 7.5 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +1023111000168105 Ibuprofen (A) 200 mg film-coated tablet, 16, blister pack 161314 1023101000168107 Ibuprofen (A) 200 mg film-coated tablet, 16 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63307011000036101 ibuprofen 200 mg tablet, 16 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +34767011000036105 Dilaudid 4 mg uncoated tablet, 500, bottle 67354 34348011000036101 Dilaudid 4 mg uncoated tablet, 500 6477011000036104 Dilaudid 4 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35196011000036108 hydromorphone hydrochloride 4 mg tablet, 500 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +763951000168101 Modafin 100 mg uncoated tablet, 30, bottle 230326 763941000168103 Modafin 100 mg uncoated tablet, 30 763931000168107 Modafin 100 mg uncoated tablet 763921000168109 Modafin 763921000168109 Modafin 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +680401000168109 Ribomustin 100 mg powder for injection, 1 vial 211684 680391000168107 Ribomustin 100 mg powder for injection, 1 vial 680371000168106 Ribomustin 100 mg powder for injection, 100 mg vial 680271000168103 Ribomustin 680271000168103 Ribomustin 680381000168109 bendamustine hydrochloride 100 mg injection, 1 vial 680361000168100 bendamustine hydrochloride 100 mg injection, vial 680301000168101 bendamustine +761781000168105 Codapane Xtra uncoated tablet, 40, blister pack 199680 761771000168107 Codapane Xtra uncoated tablet, 40 761641000168105 Codapane Xtra uncoated tablet 761631000168101 Codapane Xtra 761631000168101 Codapane Xtra 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +18901011000036106 Sigmacort 1% ointment, 50 g, tube 19779 12209011000036103 Sigmacort 1% ointment, 50 g 5095011000036109 Sigmacort 1% ointment 3068011000036109 Sigmacort 3068011000036109 Sigmacort 28032011000036104 hydrocortisone acetate 1% ointment, 50 g 23353011000036107 hydrocortisone acetate 1% ointment 21231011000036107 hydrocortisone acetate +39376011000036100 Bicalutamide (GA) 50 mg film-coated tablet, 28, blister pack 129115 39264011000036107 Bicalutamide (GA) 50 mg film-coated tablet, 28 39216011000036100 Bicalutamide (GA) 50 mg film-coated tablet 39181011000036109 Bicalutamide (GA) 39181011000036109 Bicalutamide (GA) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1056791000168108 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet, 20, blister pack 196808 1056781000168105 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet, 20 1056721000168106 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet 1056641000168105 Ondansetron ODT (Auro) 1056641000168105 Ondansetron ODT (Auro) 697981000168107 ondansetron 4 mg orally disintegrating tablet, 20 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +931641011000036105 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 100, bottle 166256 930801011000036104 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 100 930054011000036109 Pravastatin Sodium (Apo) 20 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +59864011000036107 Anti Diarrhoea (Amcal) 2 mg uncoated tablet, 10, blister pack 115530 55826011000036100 Anti Diarrhoea (Amcal) 2 mg uncoated tablet, 10 53613011000036100 Anti Diarrhoea (Amcal) 2 mg uncoated tablet 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +59864011000036107 Anti Diarrhoea (Amcal) 2 mg uncoated tablet, 10, blister pack 222323 55826011000036100 Anti Diarrhoea (Amcal) 2 mg uncoated tablet, 10 53613011000036100 Anti Diarrhoea (Amcal) 2 mg uncoated tablet 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +82896011000036108 Dimetapp PE Sinus Day and Night (18 x Day tablets, 6 x Night tablets), 24, blister pack 160791 82790011000036108 Dimetapp PE Sinus Day and Night (18 x Day tablets, 6 x Night tablets), 24 82698011000036102 Dimetapp PE Sinus Day and Night (Day) uncoated tablet 42071000168106 Dimetapp PE Sinus Day and Night 42201000168106 Dimetapp PE Sinus Day and Night (Day) 83007011000036104 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +82896011000036108 Dimetapp PE Sinus Day and Night (18 x Day tablets, 6 x Night tablets), 24, blister pack 160791 82790011000036108 Dimetapp PE Sinus Day and Night (18 x Day tablets, 6 x Night tablets), 24 82699011000036105 Dimetapp PE Sinus Day and Night (Night) uncoated tablet 42071000168106 Dimetapp PE Sinus Day and Night 42321000168108 Dimetapp PE Sinus Day and Night (Night) 83007011000036104 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +804061000168104 Aczicrit 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 147850 804051000168101 Aczicrit 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 804001000168100 Aczicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924120011000036105 epoetin lambda 6000 units/0.6 mL injection, 6 x 0.6 mL syringes 923950011000036108 epoetin lambda 6000 units/0.6 mL injection, syringe 923930011000036107 epoetin lambda +82862011000036106 Actemra 200 mg/10 mL concentrated injection, 10 mL vial 149404 82769011000036104 Actemra 200 mg/10 mL concentrated injection, 10 mL vial 82679011000036100 Actemra 200 mg/10 mL concentrated injection, 10 mL vial 82659011000036103 Actemra 82659011000036103 Actemra 82990011000036100 tocilizumab 200 mg/10 mL injection, 10 mL vial 82927011000036107 tocilizumab 200 mg/10 mL injection, vial 82914011000036109 tocilizumab +694831000168105 Sildenafil (Sandoz) 100 mg uncoated tablet, 4, blister pack 148568 694821000168107 Sildenafil (Sandoz) 100 mg uncoated tablet, 4 694811000168100 Sildenafil (Sandoz) 100 mg uncoated tablet 694771000168100 Sildenafil (Sandoz) 694771000168100 Sildenafil (Sandoz) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +152251000036107 Novatin 10 mg hard capsule, 60, blister pack 196006 150381000036109 Novatin 10 mg hard capsule, 60 148501000036108 Novatin 10 mg hard capsule 147841000036105 Novatin 147841000036105 Novatin 150391000036106 acitretin 10 mg capsule, 60 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +931401011000036104 Soov IT ointment, 15 g, tube 116840 930562011000036108 Soov IT ointment, 15 g 929938011000036106 Soov IT ointment 35581000168108 Soov IT 35581000168108 Soov IT 932345011000036103 lidocaine (lignocaine) 5% + hydrocortisone 0.5% ointment, 15 g 931822011000036105 lidocaine (lignocaine) 5% + hydrocortisone 0.5% ointment 61836011000036102 lidocaine (lignocaine) + hydrocortisone +69069011000036108 Mylanta 2go Antacid Dual Action chewable tablet, 20, blister pack 14378 66871011000036107 Mylanta 2go Antacid Dual Action chewable tablet, 20 65467011000036104 Mylanta 2go Antacid Dual Action chewable tablet 64987011000036109 Mylanta 2go Antacid Dual Action 64987011000036109 Mylanta 2go Antacid Dual Action 71476011000036107 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet, 20 70025011000036103 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet 69870011000036107 alginic acid + magaldrate + bicarbonate +1104421000168109 Mogadon 5 mg uncoated tablet, 100, blister pack 13751 1104411000168102 Mogadon 5 mg uncoated tablet, 100 5371011000036104 Mogadon 5 mg uncoated tablet 3616011000036104 Mogadon 3616011000036104 Mogadon 1104401000168100 nitrazepam 5 mg tablet, 100 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +933121000168107 Centevo 150/37.5/200 mg film-coated tablet, 28, bottle 238857 933111000168100 Centevo 150/37.5/200 mg film-coated tablet, 28 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933101000168103 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 28 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +52205011000036109 Metex XR 500 mg modified release tablet, 90, blister pack 143464 52094011000036103 Metex XR 500 mg modified release tablet, 90 51989011000036105 Metex XR 500 mg modified release tablet 10431000168107 Metex XR 10431000168107 Metex XR 28291011000036109 metformin hydrochloride 500 mg modified release tablet, 90 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +79658011000036100 Pradaxa 75 mg hard capsule, 60, blister pack 137832 79466011000036109 Pradaxa 75 mg hard capsule, 60 79353011000036101 Pradaxa 75 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79800011000036103 dabigatran etexilate 75 mg capsule, 60 79736011000036105 dabigatran etexilate 75 mg capsule 79729011000036103 dabigatran +791731000168106 Trexject 20 mg/0.4 mL injection solution, 6 x 0.4 mL syringes 233719 791721000168108 Trexject 20 mg/0.4 mL injection solution, 6 x 0.4 mL syringes 791641000168107 Trexject 20 mg/0.4 mL injection solution, 0.4 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791711000168101 methotrexate 20 mg/0.4 mL injection, 6 x 0.4 mL syringes 791631000168103 methotrexate 20 mg/0.4 mL injection, syringe 21342011000036105 methotrexate +1027361000168101 Neuroccord 75 mg hard capsule, 21, blister pack 235849 1027351000168103 Neuroccord 75 mg hard capsule, 21 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854851000168103 pregabalin 75 mg capsule, 21 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1035381000168104 Senega and Ammonia Mixture (Amcal) Cherry oral liquid, 200 mL, bottle 222489 1035371000168102 Senega and Ammonia Mixture (Amcal) Cherry oral liquid, 200 mL 1035341000168109 Senega and Ammonia Mixture (Amcal) Cherry oral liquid 81977011000036109 Senega and Ammonia Mixture (Amcal) 81977011000036109 Senega and Ammonia Mixture (Amcal) 27010011000036101 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 200 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +927683011000036101 HCU Gel powder for oral liquid, 30 x 24 g sachets 927616011000036109 HCU Gel powder for oral liquid, 30 x 24 g sachets 477921000168103 HCU Gel powder for oral liquid, 24 g sachet 33691000168106 HCU Gel 33691000168106 HCU Gel 927728011000036109 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 30 x 24 g sachets 477671000168108 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 24 g sachet 50753011000036104 amino acid formula with vitamins and minerals without methionine +80052011000036106 Sulprix 400 mg film-coated tablet, 90, blister pack 152460 79980011000036105 Sulprix 400 mg film-coated tablet, 90 79927011000036104 Sulprix 400 mg film-coated tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +1115171000168104 Stilnoxium CR 12.5 mg modified release tablet, 28, blister pack 120714 1115161000168105 Stilnoxium CR 12.5 mg modified release tablet, 28 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46189011000036100 zolpidem tartrate 12.5 mg modified release tablet, 28 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +958891000168106 Aropax CR 12.5 mg modified release tablet, 7, blister pack 101596 958881000168108 Aropax CR 12.5 mg modified release tablet, 7 958861000168104 Aropax CR 12.5 mg modified release tablet 957531000168105 Aropax CR 957531000168105 Aropax CR 958871000168105 paroxetine 12.5 mg modified release tablet, 7 958851000168101 paroxetine 12.5 mg modified release tablet 21618011000036109 paroxetine +1037551000168108 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 200 mL, bottle 57233 1037541000168106 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 200 mL 1037481000168100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 5 mL 26351000168102 Benadryl Cough Medicine for Dry Coughs 26351000168102 Benadryl Cough Medicine for Dry Coughs 63799011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 200 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +20203011000036109 Captopril (Terry White Chemists) 50 mg uncoated tablet, 90, blister pack 74007 13422011000036105 Captopril (Terry White Chemists) 50 mg uncoated tablet, 90 6704011000036108 Captopril (Terry White Chemists) 50 mg uncoated tablet 4036011000036101 Captopril (Terry White Chemists) 4036011000036101 Captopril (Terry White Chemists) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +18537011000036101 Aylide 1 mg uncoated tablet, 30, blister pack 116858 11551011000036100 Aylide 1 mg uncoated tablet, 30 5527011000036109 Aylide 1 mg uncoated tablet 4143011000036100 Aylide 4143011000036100 Aylide 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +1040271000168100 Atorvastatin (Ascent) 80 mg film-coated tablet, 20, blister pack 178531 1040261000168106 Atorvastatin (Ascent) 80 mg film-coated tablet, 20 1040231000168103 Atorvastatin (Ascent) 80 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841821000168107 atorvastatin 80 mg tablet, 20 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +923845011000036109 Acetadote 6 g/30 mL injection, 4 x 30 mL vials 159242 923391011000036103 Acetadote 6 g/30 mL injection, 4 x 30 mL vials 923055011000036108 Acetadote 6 g/30 mL injection, 30 mL vial 922916011000036106 Acetadote 922916011000036106 Acetadote 924179011000036100 acetylcysteine 6 g/30 mL injection, 4 x 30 mL vials 923983011000036107 acetylcysteine 6 g/30 mL injection, vial 21423011000036105 acetylcysteine +923845011000036109 Acetadote 6 g/30 mL injection, 4 x 30 mL vials 183299 923391011000036103 Acetadote 6 g/30 mL injection, 4 x 30 mL vials 923055011000036108 Acetadote 6 g/30 mL injection, 30 mL vial 922916011000036106 Acetadote 922916011000036106 Acetadote 924179011000036100 acetylcysteine 6 g/30 mL injection, 4 x 30 mL vials 923983011000036107 acetylcysteine 6 g/30 mL injection, vial 21423011000036105 acetylcysteine +949701000168103 Monogen powder for oral liquid, 400 g, can 949691000168103 Monogen powder for oral liquid, 400 g 949681000168101 Monogen powder for oral liquid 48445011000036100 Monogen 48445011000036100 Monogen 949651000168108 protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid, 400 g 949631000168102 protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid 710151000168105 protein formula with carbohydrate, fat, vitamins and minerals +182111000036108 Clofeme Thrush Treatment 1% cream, 10 g, tube 190861000168105 Clofeme Thrush Treatment 1% cream, 10 g 53891011000036108 Clofeme Thrush Treatment 1% cream 3811000168105 Clofeme Thrush Treatment 3811000168105 Clofeme Thrush Treatment 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +59881011000036107 Worm Treatment (Guardian) 100 mg chewable tablet, 6, blister pack 116341 55843011000036109 Worm Treatment (Guardian) 100 mg chewable tablet, 6 53622011000036102 Worm Treatment (Guardian) 100 mg chewable tablet 53587011000036102 Worm Treatment (Guardian) 53587011000036102 Worm Treatment (Guardian) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +44422011000036105 Agenerase 150 mg soft capsule, 240, bottle 71483 41881011000036106 Agenerase 150 mg soft capsule, 240 40238011000036108 Agenerase 150 mg soft capsule 39638011000036108 Agenerase 39638011000036108 Agenerase 46684011000036100 amprenavir 150 mg capsule, 240 45263011000036100 amprenavir 150 mg capsule 44922011000036108 amprenavir +778301000168102 Endone XR 10 mg modified release tablet, 60, blister pack 153604 778291000168103 Endone XR 10 mg modified release tablet, 60 778201000168109 Endone XR 10 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +774691000168108 Dimetapp Allergic Rhinitis oral liquid solution, 50 mL, bottle 231997 774681000168105 Dimetapp Allergic Rhinitis oral liquid solution, 50 mL 774601000168102 Dimetapp Allergic Rhinitis oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63604011000036101 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 50 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +924491000168102 Carvedilol (DRLA) 6.25 mg film-coated tablet, 500, bottle 166013 924481000168100 Carvedilol (DRLA) 6.25 mg film-coated tablet, 500 924421000168104 Carvedilol (DRLA) 6.25 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924471000168103 carvedilol 6.25 mg tablet, 500 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +797711000168108 Citalopram (A) 20 mg film-coated tablet, 56, blister pack 234595 797451000168102 Citalopram (A) 20 mg film-coated tablet, 56 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +50663011000036100 Amlotrust 5 mg uncoated tablet, 30, blister pack 150616 49687011000036101 Amlotrust 5 mg uncoated tablet, 30 48822011000036104 Amlotrust 5 mg uncoated tablet 48428011000036109 Amlotrust 48428011000036109 Amlotrust 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +1082961000168109 Rynacrom Metered Dose 2% nasal spray, 26 mL, pump pack 27790 12266011000036106 Rynacrom Metered Dose 2% nasal spray, 26 mL 5822011000036106 Rynacrom Metered Dose 2% nasal spray 57331000168105 Rynacrom Metered Dose 57331000168105 Rynacrom Metered Dose 27028011000036105 sodium cromoglycate 2% nasal spray, 26 mL 22401011000036100 sodium cromoglycate 2% nasal spray 21253011000036107 cromoglycate +59851011000036102 Strong Pain Relief (Amcal) uncoated tablet, 50, blister pack 115171 55813011000036102 Strong Pain Relief (Amcal) uncoated tablet, 50 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 52904011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 50 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +929028011000036103 Risedronate (Apo) 35 mg film-coated tablet, 4, blister pack 160642 928389011000036102 Risedronate (Apo) 35 mg film-coated tablet, 4 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +166981000036100 Precision Plus diagnostic strip, 100, carton 63982 49706011000036106 Precision Plus diagnostic strip, 100 48834011000036105 Precision Plus diagnostic strip 48338011000036100 Precision Plus 48338011000036100 Precision Plus 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1108121000168105 Midavel 15 mg/3 mL injection solution, 3 mL ampoule 207228 1108111000168103 Midavel 15 mg/3 mL injection solution, 3 mL ampoule 1108101000168101 Midavel 15 mg/3 mL injection solution, 3 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 663931000168100 midazolam 15 mg/3 mL injection, 3 mL ampoule 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +152201000036106 Candesartan Cilexetil (Auro) 16 mg uncoated tablet, 30, blister pack 195374 150321000036108 Candesartan Cilexetil (Auro) 16 mg uncoated tablet, 30 148671000036103 Candesartan Cilexetil (Auro) 16 mg uncoated tablet 147891000036104 Candesartan Cilexetil (Auro) 147891000036104 Candesartan Cilexetil (Auro) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1098091000168102 Valaciclovir (Auro) 500 mg film-coated tablet, 30, bottle 173285 1098051000168107 Valaciclovir (Auro) 500 mg film-coated tablet, 30 1098001000168108 Valaciclovir (Auro) 500 mg film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +60365011000036106 Nurofen Back Pain 200 mg film-coated tablet, 4, blister pack 142080 56324011000036107 Nurofen Back Pain 200 mg film-coated tablet, 4 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +945361000168101 Citlam-S 20 mg film-coated tablet, 56, blister pack 191880 945351000168103 Citlam-S 20 mg film-coated tablet, 56 945281000168101 Citlam-S 20 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 945341000168100 escitalopram 20 mg tablet, 56 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +44332011000036102 Desowen 0.05% lotion, 30 mL, bottle 67182 41799011000036106 Desowen 0.05% lotion, 30 mL 40205011000036108 Desowen 0.05% lotion 39556011000036104 Desowen 39556011000036104 Desowen 46605011000036100 desonide 0.05% lotion, 30 mL 45237011000036101 desonide 0.05% lotion 44914011000036107 desonide +44606011000036101 Doxy Acne Pack 50 mg film-coated tablet, 30, blister pack 83351 42059011000036102 Doxy Acne Pack 50 mg film-coated tablet, 30 40342011000036101 Doxy Acne Pack 50 mg film-coated tablet 15141000168101 Doxy Acne Pack 15141000168101 Doxy Acne Pack 46826011000036109 doxycycline 50 mg tablet, 30 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +37337011000036105 Rifadin 150 mg capsule, 100, bottle 10114 36612011000036107 Rifadin 150 mg capsule, 100 36033011000036101 Rifadin 150 mg capsule 3470011000036108 Rifadin 3470011000036108 Rifadin 27196011000036108 rifampicin 150 mg capsule, 100 22557011000036108 rifampicin 150 mg capsule 21532011000036109 rifampicin +882061000168109 Calcitriol (GA) 0.25 microgram soft capsule, 100, blister pack 224866 83318011000036104 Calcitriol (GA) 0.25 microgram soft capsule, 100 83249011000036106 Calcitriol (GA) 0.25 microgram soft capsule 83234011000036109 Calcitriol (GA) 83234011000036109 Calcitriol (GA) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +177061000036104 Xeomin 50 units powder for injection, 1 vial 205507 175301000036107 Xeomin 50 units powder for injection, 1 vial 173581000036107 Xeomin 50 units powder for injection, 50 units vial 172671000036102 Xeomin 172671000036102 Xeomin 175311000036109 incobotulinumtoxinA 50 units injection, 1 vial 173591000036109 incobotulinumtoxinA 50 units injection, vial 177251000036108 incobotulinumtoxinA +44757011000036100 Co-Diovan 160/25 film-coated tablet, 14, blister pack 96742 42202011000036105 Co-Diovan 160/25 film-coated tablet, 14 40387011000036108 Co-Diovan 160/25 film-coated tablet 52921000168106 Co-Diovan 160/25 52921000168106 Co-Diovan 160/25 46962011000036106 valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 14 45360011000036103 valsartan 160 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +977101000168107 Pregabalin (Apotex) 200 mg hard capsule, 20, blister pack 267557 977091000168102 Pregabalin (Apotex) 200 mg hard capsule, 20 977061000168109 Pregabalin (Apotex) 200 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 903271000168106 pregabalin 200 mg capsule, 20 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1118721000168109 Quetin 200 mg film-coated tablet, 20, blister pack 204839 1118711000168102 Quetin 200 mg film-coated tablet, 20 1118701000168100 Quetin 200 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +52166011000036100 Menthol APF (extemporaneous) 2% inhalation solution, 50 mL, poison bottle 52065011000036101 Menthol APF (extemporaneous) 2% inhalation solution, 50 mL 51966011000036103 Menthol APF (extemporaneous) 2% inhalation solution 51944011000036101 Menthol APF (extemporaneous) 51944011000036101 Menthol APF (extemporaneous) 52313011000036102 menthol 2% inhalation solution, 50 mL 52245011000036102 menthol 2% inhalation solution 52233011000036104 menthol +680481000168101 Altargo 1% ointment, 5 g, tube 198947 680471000168104 Altargo 1% ointment, 5 g 680451000168108 Altargo 1% ointment 680411000168107 Altargo 680411000168107 Altargo 680461000168105 retapamulin 1% ointment, 5 g 680441000168106 retapamulin 1% ointment 680431000168102 retapamulin +974221000168102 Minirin 100 microgram uncoated tablet, 30, bottle 93678 974211000168109 Minirin 100 microgram uncoated tablet, 30 974181000168105 Minirin 100 microgram uncoated tablet 13491000168101 Minirin 13491000168101 Minirin 816161000168107 desmopressin acetate 100 microgram tablet, 30 816111000168109 desmopressin acetate 100 microgram tablet 21750011000036107 desmopressin +19292011000036102 Permax 1 mg uncoated tablet, 100, blister pack 49026 12582011000036100 Permax 1 mg uncoated tablet, 100 4800011000036105 Permax 1 mg uncoated tablet 3138011000036108 Permax 3138011000036108 Permax 27218011000036105 pergolide 1 mg tablet, 100 22579011000036103 pergolide 1 mg tablet 21344011000036101 pergolide +931725011000036104 Synthamin 9 Amino Acid 5.5% without Electrolytes intravenous infusion injection, 12 x 500 mL bottles 19452 930885011000036103 Synthamin 9 Amino Acid 5.5% without Electrolytes intravenous infusion injection, 12 x 500 mL bottles 930089011000036102 Synthamin 9 Amino Acid 5.5% without Electrolytes intravenous infusion injection, 500 mL bottle 929880011000036109 Synthamin 9 Amino Acid 5.5% without Electrolytes 929880011000036109 Synthamin 9 Amino Acid 5.5% without Electrolytes 932468011000036108 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles 931867011000036102 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle 77452011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +60762011000036102 Difflam Anti-Inflammatory Lozenge Mint Fresh Sugar Free 3 mg lozenge, 2, blister pack 53814 56720011000036103 Difflam Anti-Inflammatory Lozenge Mint Fresh Sugar Free 3 mg lozenge, 2 54048011000036107 Difflam Anti-Inflammatory Lozenge Mint Fresh Sugar Free 3 mg lozenge 38441000168108 Difflam Anti-Inflammatory Lozenge 38441000168108 Difflam Anti-Inflammatory Lozenge 63529011000036103 benzydamine hydrochloride 3 mg lozenge, 2 62003011000036104 benzydamine hydrochloride 3 mg lozenge 21819011000036105 benzydamine +847581000168101 Creon Forte enteric capsule, 100, bottle 67248 847571000168104 Creon Forte enteric capsule, 100 847561000168105 Creon Forte enteric capsule 42331000168106 Creon Forte 42331000168106 Creon Forte 847391000168106 lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule, 100 847371000168105 lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule 847131000168105 lipase + amylase + protease +761141000168104 Cabergoline (Apotex) 500 microgram tablet, 8, bottle 218127 761131000168108 Cabergoline (Apotex) 500 microgram tablet, 8 761101000168101 Cabergoline (Apotex) 500 microgram tablet 761051000168101 Cabergoline (Apotex) 761051000168101 Cabergoline (Apotex) 27272011000036101 cabergoline 500 microgram tablet, 8 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +927682011000036108 MMA/PA Gel powder for oral liquid, 30 x 24 g sachets 927620011000036104 MMA/PA Gel powder for oral liquid, 30 x 24 g sachets 411811000168101 MMA/PA Gel powder for oral liquid, 24 g sachet 42611000168107 MMA/PA Gel 42611000168107 MMA/PA Gel 927731011000036103 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 30 x 24 g sachets 411631000168107 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 24 g sachet 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +885031000168105 Kovaltry (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 246795 885021000168107 Kovaltry (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 885011000168100 Kovaltry (octocog alfa 2000 units) powder for injection, 2000 units vial 884791000168107 Kovaltry 884791000168107 Kovaltry 101111000036104 octocog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 70006011000036100 octocog alfa 2000 units injection, vial 69843011000036100 octocog alfa +885031000168105 Kovaltry (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 246795 885021000168107 Kovaltry (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 884861000168109 Kovaltry (inert substance) diluent, 5 mL syringe 884791000168107 Kovaltry 884791000168107 Kovaltry 101111000036104 octocog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +14331000036101 Bisoprolol Fumarate (Apo) 5 mg tablet, 28, blister pack 182114 7951000036100 Bisoprolol Fumarate (Apo) 5 mg tablet, 28 1501000036102 Bisoprolol Fumarate (Apo) 5 mg tablet 33791000168100 Bisoprolol Fumarate (Apo) 33791000168100 Bisoprolol Fumarate (Apo) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +81013011000036100 Salicylic Acid (Gold Cross) 2% ointment, 500 g, jar 14244 80507011000036100 Salicylic Acid (Gold Cross) 2% ointment, 500 g 80170011000036103 Salicylic Acid (Gold Cross) 2% ointment 65087011000036106 Salicylic Acid (Gold Cross) 65087011000036106 Salicylic Acid (Gold Cross) 81601011000036109 salicylic acid 2% ointment, 500 g 52254011000036103 salicylic acid 2% ointment 52232011000036106 salicylic acid +896821000168108 Adrenaline Auto Inject (Sun-JV) 300 microgram/0.3 mL injection solution, 1 dose, injection device 231705 896811000168101 Adrenaline Auto Inject (Sun-JV) 300 microgram/0.3 mL injection solution, 1 dose 896801000168104 Adrenaline Auto Inject (Sun-JV) 300 microgram/0.3 mL injection solution, dose 896791000168100 Adrenaline Auto Inject (Sun-JV) 896791000168100 Adrenaline Auto Inject (Sun-JV) 726721000168105 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose 726701000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +933212901000036101 Pantoprazole (Apo) 20 mg enteric tablet, 500, bottle 156339 933202541000036108 Pantoprazole (Apo) 20 mg enteric tablet, 500 933195171000036104 Pantoprazole (Apo) 20 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 933202551000036106 pantoprazole 20 mg enteric tablet, 500 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +81059011000036108 Iscover 300 mg film-coated tablet, 14, blister pack 151280 80568011000036100 Iscover 300 mg film-coated tablet, 14 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81647011000036109 clopidogrel 300 mg tablet, 14 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +902191000168107 Moviprep (2 x A sachets, 2 x B sachets), 4 sachets 155398 902181000168109 Moviprep (2 x A sachets, 2 x B sachets), 4 sachets 902161000168100 Moviprep B powder for oral liquid, sachet 106591000036109 Moviprep 106591000036109 Moviprep 902171000168106 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid [2 sachets] (&) ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid [2 sachets], 4 sachets 902151000168102 ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, sachet 77435011000036104 ascorbic acid +902191000168107 Moviprep (2 x A sachets, 2 x B sachets), 4 sachets 155398 902181000168109 Moviprep (2 x A sachets, 2 x B sachets), 4 sachets 902141000168104 Moviprep A powder for oral liquid, sachet 106591000036109 Moviprep 106591000036109 Moviprep 902171000168106 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid [2 sachets] (&) ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid [2 sachets], 4 sachets 902131000168108 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid, sachet 69825011000036102 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate +692261000168109 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet, 20, blister pack 215397 692251000168107 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet, 20 692231000168101 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692241000168105 amitriptyline hydrochloride 25 mg tablet, 20 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +807121000168102 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) uncoated tablet, 30, blister pack 224317 806921000168102 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) uncoated tablet, 30 806911000168109 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) uncoated tablet 806851000168102 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) 806851000168102 Perindopril Arginine/Amlodipine 10/5 (Blooms The Chemist) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +80016011000036103 Topiramate (Apo) 200 mg film-coated tablet, 60, bottle 124736 79955011000036105 Topiramate (Apo) 200 mg film-coated tablet, 60 79914011000036102 Topiramate (Apo) 200 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +116601000036100 Rosuvastatin (Actavis) 5 mg film-coated tablet, 30, blister pack 183634 114891000036104 Rosuvastatin (Actavis) 5 mg film-coated tablet, 30 113431000036100 Rosuvastatin (Actavis) 5 mg film-coated tablet 112551000036104 Rosuvastatin (Actavis) 112551000036104 Rosuvastatin (Actavis) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +804701000168102 Otezla 30 mg film-coated tablet, 168, blister pack 220423 804691000168102 Otezla 30 mg film-coated tablet, 168 804641000168105 Otezla 30 mg film-coated tablet 804611000168106 Otezla 804611000168106 Otezla 804681000168100 apremilast 30 mg tablet, 168 804631000168101 apremilast 30 mg tablet 804621000168104 apremilast +60399011000036105 Febridol Co uncoated tablet, 24, blister pack 144070 56358011000036101 Febridol Co uncoated tablet, 24 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +19050011000036101 Diabex 500 mg film-coated tablet, 100, blister pack 40806 12358011000036107 Diabex 500 mg film-coated tablet, 100 4736011000036103 Diabex 500 mg film-coated tablet 24861000168103 Diabex 24861000168103 Diabex 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +921840011000036109 Dalacin C 150 mg hard capsule, 100, blister pack 12275 921392011000036100 Dalacin C 150 mg hard capsule, 100 32213011000036102 Dalacin C 150 mg hard capsule 10481000168108 Dalacin C 10481000168108 Dalacin C 922536011000036105 clindamycin 150 mg capsule, 100 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +18128011000036108 Concerta 27 mg modified release tablet, 30, bottle 124502 11763011000036109 Concerta 27 mg modified release tablet, 30 4920011000036108 Concerta 27 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 26765011000036106 methylphenidate hydrochloride 27 mg modified release tablet, 30 22152011000036104 methylphenidate hydrochloride 27 mg modified release tablet 21277011000036101 methylphenidate +679431000168102 Cisatracurium Concentrate (DBL) 5 mg/2.5 mL injection solution, 5 x 2.5 mL vials 170579 679421000168100 Cisatracurium Concentrate (DBL) 5 mg/2.5 mL injection solution, 5 x 2.5 mL vials 679401000168109 Cisatracurium Concentrate (DBL) 5 mg/2.5 mL injection solution, 2.5 mL vial 679381000168109 Cisatracurium Concentrate (DBL) 679381000168109 Cisatracurium Concentrate (DBL) 679411000168107 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL vials 679391000168107 cisatracurium 5 mg/2.5 mL injection, vial 44902011000036101 cisatracurium +14371000036104 Bisoprolol Fumarate (Terry White Chemists) 5 mg tablet, 28, blister pack 182122 7991000036109 Bisoprolol Fumarate (Terry White Chemists) 5 mg tablet, 28 3591000036106 Bisoprolol Fumarate (Terry White Chemists) 5 mg tablet 1181000036104 Bisoprolol Fumarate (Terry White Chemists) 1181000036104 Bisoprolol Fumarate (Terry White Chemists) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +931061000168100 Glycopyrrolate (Accord) 600 microgram/3 mL injection solution, 5 x 3 mL ampoules 237403 931051000168102 Glycopyrrolate (Accord) 600 microgram/3 mL injection solution, 5 x 3 mL ampoules 931031000168108 Glycopyrrolate (Accord) 600 microgram/3 mL injection solution, 3 mL ampoule 930711000168108 Glycopyrrolate (Accord) 930711000168108 Glycopyrrolate (Accord) 931041000168104 glycopyrronium bromide (glycopyrrolate) 600 microgram/3 mL injection, 5 x 3 mL ampoules 931021000168105 glycopyrronium bromide (glycopyrrolate) 600 microgram/3 mL injection, ampoule 37771011000036104 glycopyrronium bromide (glycopyrrolate) +1043421000168108 Pryzex ODT 5 mg orally disintegrating tablet, 50, blister pack 179079 1043411000168101 Pryzex ODT 5 mg orally disintegrating tablet, 50 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043401000168104 olanzapine 5 mg orally disintegrating tablet, 50 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +37394011000036105 Hydrozole cream, 30 g, tube 10319 36621011000036108 Hydrozole cream, 30 g 36024011000036101 Hydrozole cream 23501000168103 Hydrozole 23501000168103 Hydrozole 38541011000036108 hydrocortisone 1% + clotrimazole 1% cream, 30 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +50357011000036109 Carbohydrate-Free Mixture powder for oral liquid, 225 g, can 49270011000036105 Carbohydrate-Free Mixture powder for oral liquid, 225 g 48710011000036108 Carbohydrate-Free Mixture powder for oral liquid 16761000168107 Carbohydrate-Free Mixture 16761000168107 Carbohydrate-Free Mixture 51263011000036105 milk protein and fat formula with vitamins and minerals carbohydrate free powder for oral liquid, 225 g 50796011000036104 milk protein and fat formula with vitamins and minerals carbohydrate free powder for oral liquid 50764011000036105 milk protein and fat formula with vitamins and minerals carbohydrate free +683691000168106 Irinotecan Hydrochloride Trihydrate (MYX) 100 mg/5 mL concentrated injection, 5 mL vial 209857 683681000168108 Irinotecan Hydrochloride Trihydrate (MYX) 100 mg/5 mL concentrated injection, 5 mL vial 683671000168105 Irinotecan Hydrochloride Trihydrate (MYX) 100 mg/5 mL concentrated injection, 5 mL vial 683661000168104 Irinotecan Hydrochloride Trihydrate (MYX) 683661000168104 Irinotecan Hydrochloride Trihydrate (MYX) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +929105011000036109 Pioglitazone (Chemmart) 30 mg uncoated tablet, 7, blister pack 166917 928466011000036104 Pioglitazone (Chemmart) 30 mg uncoated tablet, 7 927990011000036109 Pioglitazone (Chemmart) 30 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929264011000036109 pioglitazone 30 mg tablet, 7 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +13161000036108 Quetiapine (RBX) 200 mg film-coated tablet, 60, blister pack 166435 8261000036107 Quetiapine (RBX) 200 mg film-coated tablet, 60 2721000036105 Quetiapine (RBX) 200 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +18082011000036106 Lisinobell 5 mg uncoated tablet, 30, blister pack 107309 11364011000036107 Lisinobell 5 mg uncoated tablet, 30 4605011000036107 Lisinobell 5 mg uncoated tablet 3209011000036108 Lisinobell 3209011000036108 Lisinobell 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +82344011000036109 Epiramax 100 mg film-coated tablet, 60, blister pack 135594 82133011000036104 Epiramax 100 mg film-coated tablet, 60 82003011000036101 Epiramax 100 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +974281000168103 Bosentan (GH) 125 mg film-coated tablet, 14, blister pack 235892 974271000168101 Bosentan (GH) 125 mg film-coated tablet, 14 974261000168107 Bosentan (GH) 125 mg film-coated tablet 974251000168105 Bosentan (GH) 974251000168105 Bosentan (GH) 884061000168103 bosentan 125 mg tablet, 14 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1077981000168107 Atomoxetine (AN) 40 mg hard capsule, 28, blister pack 234832 1077971000168109 Atomoxetine (AN) 40 mg hard capsule, 28 1077921000168108 Atomoxetine (AN) 40 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +112351000036106 Gemcitabine (AS) 200 mg/20 mL concentrated injection, 20 mL vial 193201 112311000036107 Gemcitabine (AS) 200 mg/20 mL concentrated injection, 20 mL vial 112271000036107 Gemcitabine (AS) 200 mg/20 mL concentrated injection, 20 mL vial 87721000036108 Gemcitabine (AS) 87721000036108 Gemcitabine (AS) 71488011000036101 gemcitabine 200 mg/20 mL injection, 20 mL vial 70031011000036103 gemcitabine 200 mg/20 mL injection, vial 21644011000036108 gemcitabine +18301011000036100 Nupentin 100 mg hard capsule, 100, bottle 101695 11227011000036103 Nupentin 100 mg hard capsule, 100 5950011000036101 Nupentin 100 mg hard capsule 1181000168106 Nupentin 1181000168106 Nupentin 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +818721000168102 Quetiapine XR (Apo) 200 mg modified release tablet, 100, blister pack 226821 818711000168109 Quetiapine XR (Apo) 200 mg modified release tablet, 100 818641000168103 Quetiapine XR (Apo) 200 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51533011000036106 quetiapine 200 mg modified release tablet, 100 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +1115431000168106 Serapine 300 mg film-coated tablet, 60, blister pack 204164 1115421000168108 Serapine 300 mg film-coated tablet, 60 1115371000168102 Serapine 300 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +905501000168103 Farydak 20 mg hard capsule, 12, blister pack 230845 905491000168105 Farydak 20 mg hard capsule, 12 905441000168102 Farydak 20 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 905481000168107 panobinostat 20 mg capsule, 12 905431000168106 panobinostat 20 mg capsule 905421000168108 panobinostat +18324011000036108 Oxalatin 50 mg powder for injection, 1 vial 126124 11822011000036106 Oxalatin 50 mg powder for injection, 1 vial 5764011000036106 Oxalatin 50 mg powder for injection, 50 mg vial 3031011000036108 Oxalatin 3031011000036108 Oxalatin 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +56141000036108 Lisinopril (DRLA) 2.5 mg uncoated tablet, 84, blister pack 152719 51461000036105 Lisinopril (DRLA) 2.5 mg uncoated tablet, 84 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927304011000036109 lisinopril 2.5 mg tablet, 84 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +980401000168108 Augmentin ES 600 powder for oral liquid, 100 mL, bottle 98693 980391000168106 Augmentin ES 600 powder for oral liquid, 100 mL 980191000168109 Augmentin ES 600 powder for oral liquid, 5 mL 980171000168108 Augmentin ES 600 980171000168108 Augmentin ES 600 980381000168108 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid, 100 mL 980181000168106 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +1043741000168105 Pryzex 10 mg film-coated tablet, 40, blister pack 178996 1043731000168101 Pryzex 10 mg film-coated tablet, 40 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043721000168104 olanzapine 10 mg tablet, 40 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +14401000036102 Atorvastatin (Pfizer) 10 mg film-coated tablet, 30, blister pack 182939 8171000036107 Atorvastatin (Pfizer) 10 mg film-coated tablet, 30 2041000036104 Atorvastatin (Pfizer) 10 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +79636011000036100 Relistor 12 mg/0.6 mL injection solution, 0.6 mL vial 144062 79477011000036101 Relistor 12 mg/0.6 mL injection solution, 0.6 mL vial 79362011000036103 Relistor 12 mg/0.6 mL injection solution, 0.6 mL vial 79340011000036107 Relistor 79340011000036107 Relistor 79808011000036101 methylnaltrexone bromide 12 mg/0.6 mL injection, 0.6 mL vial 79741011000036104 methylnaltrexone bromide 12 mg/0.6 mL injection, vial 79730011000036107 methylnaltrexone +56161000036109 Fexofenadine Hydrochloride (Pharmacy Health) 180 mg film-coated tablet, 30, blister pack 152779 51481000036100 Fexofenadine Hydrochloride (Pharmacy Health) 180 mg film-coated tablet, 30 49661000036107 Fexofenadine Hydrochloride (Pharmacy Health) 180 mg film-coated tablet 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +13121000036104 Quetiapine (RBX) 300 mg film-coated tablet, 60, strip pack 166422 8231000036101 Quetiapine (RBX) 300 mg film-coated tablet, 60 2711000036103 Quetiapine (RBX) 300 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +17771011000036101 Ceftriaxone (ICP) 500 mg powder for injection, 1 vial 114500 11475011000036106 Ceftriaxone (ICP) 500 mg powder for injection, 1 vial 5838011000036107 Ceftriaxone (ICP) 500 mg powder for injection, 500 mg vial 3437011000036106 Ceftriaxone (ICP) 3437011000036106 Ceftriaxone (ICP) 26661011000036103 ceftriaxone 500 mg injection, 1 vial 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +952711000168108 Emend 40 mg hard capsule, 1, blister pack 123271 952701000168105 Emend 40 mg hard capsule, 1 952681000168107 Emend 40 mg hard capsule 3261011000036105 Emend 3261011000036105 Emend 952691000168105 aprepitant 40 mg capsule, 1 952671000168109 aprepitant 40 mg capsule 21632011000036103 aprepitant +181471000036102 Enalapril Maleate (Actavis) 10 mg tablet, 30, blister pack 196458 181001000036103 Enalapril Maleate (Actavis) 10 mg tablet, 30 180441000036100 Enalapril Maleate (Actavis) 10 mg tablet 172841000036108 Enalapril Maleate (Actavis) 172841000036108 Enalapril Maleate (Actavis) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +1106761000168102 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 10, blister pack 119095 1106751000168104 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 10 1106721000168107 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet 1106711000168100 Zolpidem (Dr. Reddy's) 1106711000168100 Zolpidem (Dr. Reddy's) 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +18566011000036106 MS Contin 10 mg modified release tablet, 20, blister pack 14461 12026011000036105 MS Contin 10 mg modified release tablet, 20 5826011000036105 MS Contin 10 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +18566011000036106 MS Contin 10 mg modified release tablet, 20, blister pack 210776 12026011000036105 MS Contin 10 mg modified release tablet, 20 5826011000036105 MS Contin 10 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +1060721000168102 Aripiprazole (Apo) 5 mg uncoated tablet, 100, bottle 152911 1060711000168109 Aripiprazole (Apo) 5 mg uncoated tablet, 100 963511000168100 Aripiprazole (Apo) 5 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +813341000168101 Saxenda 6 mg/mL injection solution, 3 x 3 mL injection devices 225804 813331000168105 Saxenda 6 mg/mL injection solution, 3 x 3 mL injection devices 813301000168103 Saxenda 6 mg/mL injection solution, 3 mL injection device 813291000168104 Saxenda 813291000168104 Saxenda 748101000168101 liraglutide 6 mg/mL injection, 3 x 3 mL injection devices 748021000168109 liraglutide 6 mg/mL injection, 3 mL injection device 105271000036100 liraglutide +1119771000168101 Quetiapine XR (GXP) 150 mg modified release tablet, 60, blister pack 199875 1119761000168107 Quetiapine XR (GXP) 150 mg modified release tablet, 60 1119751000168105 Quetiapine XR (GXP) 150 mg modified release tablet 1119321000168101 Quetiapine XR (GXP) 1119321000168101 Quetiapine XR (GXP) 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +60981011000036103 Sudafed Sinus plus Pain Relief uncoated tablet, 24, blister pack 63230 56924011000036102 Sudafed Sinus plus Pain Relief uncoated tablet, 24 54123011000036107 Sudafed Sinus plus Pain Relief uncoated tablet 53113011000036101 Sudafed Sinus plus Pain Relief 53113011000036101 Sudafed Sinus plus Pain Relief 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +79077011000036108 Ramipril (Chemmart) 10 mg tablet, 30, blister pack 231165 78859011000036103 Ramipril (Chemmart) 10 mg tablet, 30 78665011000036103 Ramipril (Chemmart) 10 mg tablet 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +79077011000036108 Ramipril (Chemmart) 10 mg tablet, 30, blister pack 150905 78859011000036103 Ramipril (Chemmart) 10 mg tablet, 30 78665011000036103 Ramipril (Chemmart) 10 mg tablet 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +14441000036104 Anastrozole (Chemmart) 1 mg film-coated tablet, 30, bottle 186003 8211000036105 Anastrozole (Chemmart) 1 mg film-coated tablet, 30 2811000036109 Anastrozole (Chemmart) 1 mg film-coated tablet 391000036103 Anastrozole (Chemmart) 391000036103 Anastrozole (Chemmart) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +896981000168101 Adrenaline Auto Inject Jr (Sun-JV) 150 microgram/0.3 mL injection solution, 2 x 1 dose, injection devices 231704 896971000168104 Adrenaline Auto Inject Jr (Sun-JV) 150 microgram/0.3 mL injection solution, 2 x 1 dose 896941000168106 Adrenaline Auto Inject Jr (Sun-JV) 150 microgram/0.3 mL injection solution, dose 896931000168102 Adrenaline Auto Inject Jr (Sun-JV) 896931000168102 Adrenaline Auto Inject Jr (Sun-JV) 880901000168108 adrenaline (epinephrine) 150 microgram/0.3 mL injection, 2 x 1 dose 726651000168106 adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +839101000168108 Joncia 50 mg hard capsule, 14, blister pack 176513 839091000168103 Joncia 50 mg hard capsule, 14 839071000168104 Joncia 50 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839081000168101 milnacipran hydrochloride 50 mg capsule, 14 839061000168105 milnacipran hydrochloride 50 mg capsule 838911000168100 milnacipran +923878011000036104 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 14, blister pack 163768 923422011000036105 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 14 923077011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 924196011000036101 lercanidipine hydrochloride 10 mg tablet, 14 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +50599011000036107 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 2 mL vial 135540 49626011000036105 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 2 mL vial 48791011000036100 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 2 mL vial 48324011000036105 Fludarabine Phosphate (Ebewe) 48324011000036105 Fludarabine Phosphate (Ebewe) 51518011000036105 fludarabine phosphate 50 mg/2 mL injection, 2 mL vial 50989011000036103 fludarabine phosphate 50 mg/2 mL injection, vial 39430011000036109 fludarabine +931486011000036105 Topiramate (Generic Health) 100 mg film-coated tablet, 60, blister pack 155183 928311011000036103 Topiramate (Generic Health) 100 mg film-coated tablet, 60 927940011000036101 Topiramate (Generic Health) 100 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +68874011000036100 Potassium Chloride Sterile (AstraZeneca) 750 mg (potassium 10 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 12043 66652011000036105 Potassium Chloride Sterile (AstraZeneca) 750 mg (potassium 10 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 65444011000036100 Potassium Chloride Sterile (AstraZeneca) 750 mg (potassium 10 mmol)/10 mL concentrated injection, 10 mL ampoule 5321000168106 Potassium Chloride Sterile (AstraZeneca) 5321000168106 Potassium Chloride Sterile (AstraZeneca) 71362011000036108 potassium chloride 750 mg (potassium 10 mmol)/10 mL injection, 50 x 10 mL ampoules 69974011000036108 potassium chloride 750 mg (potassium 10 mmol)/10 mL injection, ampoule 21274011000036107 potassium chloride +714961000168102 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g, tube 101964 714951000168104 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g 714931000168105 Anti Fungal V 6 Day (Amcal) 1% vaginal cream 39961000168107 Anti Fungal V 6 Day (Amcal) 39961000168107 Anti Fungal V 6 Day (Amcal) 714941000168101 clotrimazole 1% vaginal cream, 20 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +33580011000036109 Clexane 40 mg/0.4 mL injection solution, 10 x 0.4 mL syringes 42962 33318011000036106 Clexane 40 mg/0.4 mL injection solution, 10 x 0.4 mL syringes 33078011000036103 Clexane 40 mg/0.4 mL injection solution, 0.4 mL syringe 2391000168100 Clexane 2391000168100 Clexane 33799011000036103 enoxaparin sodium 40 mg/0.4 mL injection, 10 x 0.4 mL syringes 33671011000036100 enoxaparin sodium 40 mg/0.4 mL injection, syringe 21553011000036103 enoxaparin sodium +1106841000168107 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 30, blister pack 119095 1106831000168103 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 30 1106721000168107 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet 1106711000168100 Zolpidem (Dr. Reddy's) 1106711000168100 Zolpidem (Dr. Reddy's) 51486011000036103 zolpidem tartrate 10 mg tablet, 30 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1119691000168106 Quetiapine XR (Actavis) 400 mg modified release tablet, 10, blister pack 226805 1119681000168108 Quetiapine XR (Actavis) 400 mg modified release tablet, 10 1119671000168105 Quetiapine XR (Actavis) 400 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51538011000036101 quetiapine 400 mg modified release tablet, 10 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +926714011000036109 Perindopril Erbumine (Generic Health) 8 mg uncoated tablet, 30, blister pack 125456 926135011000036105 Perindopril Erbumine (Generic Health) 8 mg uncoated tablet, 30 925608011000036106 Perindopril Erbumine (Generic Health) 8 mg uncoated tablet 925543011000036101 Perindopril Erbumine (Generic Health) 925543011000036101 Perindopril Erbumine (Generic Health) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +951581000168104 Trandolapril (GenRx) 2 mg capsule, 28, blister pack 135980 951571000168102 Trandolapril (GenRx) 2 mg capsule, 28 951561000168108 Trandolapril (GenRx) 2 mg capsule 951491000168100 Trandolapril (GenRx) 951491000168100 Trandolapril (GenRx) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +142701000036102 Xylocaine Jelly 2% gel, 15 g, tube 12026 142461000036106 Xylocaine Jelly 2% gel, 15 g 53616011000036106 Xylocaine Jelly 2% gel 18711000168105 Xylocaine Jelly 18711000168105 Xylocaine Jelly 142471000036103 lidocaine (lignocaine) hydrochloride 2% gel, 15 g 61889011000036102 lidocaine (lignocaine) hydrochloride 2% gel 21572011000036107 lidocaine (lignocaine) +885191000168105 Rocuronium (Baxter) 50 mg/5 mL injection solution, 5 mL vial 169601 885181000168107 Rocuronium (Baxter) 50 mg/5 mL injection solution, 5 mL vial 885161000168103 Rocuronium (Baxter) 50 mg/5 mL injection solution, 5 mL vial 885151000168100 Rocuronium (Baxter) 885151000168100 Rocuronium (Baxter) 885171000168109 rocuronium bromide 50 mg/5 mL injection, 5 mL vial 45193011000036101 rocuronium bromide 50 mg/5 mL injection, vial 44919011000036108 rocuronium +20231011000036101 MS Mono 30 mg modified release capsule, 10, blister pack 74156 13443011000036100 MS Mono 30 mg modified release capsule, 10 6725011000036103 MS Mono 30 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27750011000036105 morphine sulfate pentahydrate 30 mg modified release capsule, 10 23081011000036100 morphine sulfate pentahydrate 30 mg modified release capsule 21252011000036100 morphine +69116011000036106 Strepsils honey and lemon lozenge, 16, blister pack 14975 66917011000036100 Strepsils honey and lemon lozenge, 16 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1089721000168105 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 6, blister pack 281501 1089711000168103 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 6 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +910871000168103 Cavstat 10 mg film-coated tablet, 20, blister pack 234485 910861000168109 Cavstat 10 mg film-coated tablet, 20 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910851000168107 rosuvastatin 10 mg tablet, 20 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +82121000036106 Tenolten 50 mg uncoated tablet, 30, blister pack 186397 80651000036108 Tenolten 50 mg uncoated tablet, 30 78631000036106 Tenolten 50 mg uncoated tablet 77871000036108 Tenolten 77871000036108 Tenolten 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1118641000168108 Quetin 150 mg film-coated tablet, 60, blister pack 204858 1118631000168104 Quetin 150 mg film-coated tablet, 60 1118601000168106 Quetin 150 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +103821000036101 Donepezil Hydrochloride (DRLA) 10 mg film-coated tablet, 28, blister pack 157133 101191000036109 Donepezil Hydrochloride (DRLA) 10 mg film-coated tablet, 28 98131000036109 Donepezil Hydrochloride (DRLA) 10 mg film-coated tablet 97841000036107 Donepezil Hydrochloride (DRLA) 97841000036107 Donepezil Hydrochloride (DRLA) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +69715011000036105 Claramax 5 mg film-coated tablet, 7, blister pack 91115 67514011000036101 Claramax 5 mg film-coated tablet, 7 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72030011000036101 desloratadine 5 mg tablet, 7 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +969791000168104 Lypralin 75 mg hard capsule, 21, blister pack 235863 969781000168102 Lypralin 75 mg hard capsule, 21 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854851000168103 pregabalin 75 mg capsule, 21 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +21170011000036100 Kivexa film-coated tablet, 30, blister pack 99090 14312011000036108 Kivexa film-coated tablet, 30 7598011000036104 Kivexa film-coated tablet 3852011000036100 Kivexa 3852011000036100 Kivexa 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +60157011000036102 Dry Tickly Cough Medicine (Terry White Chemists) 1 mg/mL oral liquid solution, 200 mL, bottle 130023 56116011000036100 Dry Tickly Cough Medicine (Terry White Chemists) 1 mg/mL oral liquid solution, 200 mL 53795011000036107 Dry Tickly Cough Medicine (Terry White Chemists) 1 mg/mL oral liquid solution 39831000168108 Dry Tickly Cough Medicine (Terry White Chemists) 39831000168108 Dry Tickly Cough Medicine (Terry White Chemists) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +37613011000036101 Lignocaine 0.4% in Glucose 5% (Baxter) intravenous infusion injection, 18 x 500 mL bags 19437 36880011000036102 Lignocaine 0.4% in Glucose 5% (Baxter) intravenous infusion injection, 18 x 500 mL bags 36214011000036101 Lignocaine 0.4% in Glucose 5% (Baxter) intravenous infusion injection, 500 mL bag 19321000168106 Lignocaine 0.4% in Glucose 5% (Baxter) 19321000168106 Lignocaine 0.4% in Glucose 5% (Baxter) 38766011000036108 lidocaine (lignocaine) hydrochloride 0.4% (2 g/500 mL) + glucose 5% (25 g/500 mL) injection, 18 x 500 mL bags 37984011000036101 lidocaine (lignocaine) hydrochloride 0.4% (2 g/500 mL) + glucose 5% (25 g/500 mL) injection, bag 37736011000036106 lidocaine (lignocaine) + glucose +889371000168108 Bosleer 125 mg film-coated tablet, 112, blister pack 235893 889361000168102 Bosleer 125 mg film-coated tablet, 112 889311000168100 Bosleer 125 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884111000168102 bosentan 125 mg tablet, 112 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +14491000036105 Amlodipine (Pfizer) 10 mg uncoated tablet, 30, blister pack 192145 8301000036101 Amlodipine (Pfizer) 10 mg uncoated tablet, 30 1271000036109 Amlodipine (Pfizer) 10 mg uncoated tablet 731000036103 Amlodipine (Pfizer) 731000036103 Amlodipine (Pfizer) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +1052331000168106 Palexia SR 150 mg modified release tablet, 100, blister pack 165347 1052321000168108 Palexia SR 150 mg modified release tablet, 100 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052311000168101 tapentadol 150 mg modified release tablet, 100 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +705371000168109 Elocon Alcohol Free 0.1% cream, 50 g, tube 212416 705361000168103 Elocon Alcohol Free 0.1% cream, 50 g 705301000168104 Elocon Alcohol Free 0.1% cream 4301011000036100 Elocon 4301011000036100 Elocon 933237241000036104 mometasone furoate 0.1% cream, 50 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +86031011000036108 Coveram 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 154441 85684011000036107 Coveram 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30 85332011000036101 Coveram 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet 26071000168108 Coveram 10mg/10mg (perindopril arginine/amlodipine) 26071000168108 Coveram 10mg/10mg (perindopril arginine/amlodipine) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +60036011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 24, blister pack 123811 55998011000036102 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 24 53752011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet 53547011000036106 Strong Pain Relief (Pharmacy Choice) 53547011000036106 Strong Pain Relief (Pharmacy Choice) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +60036011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 24, blister pack 167854 55998011000036102 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 24 53752011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet 53547011000036106 Strong Pain Relief (Pharmacy Choice) 53547011000036106 Strong Pain Relief (Pharmacy Choice) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +59794011000036106 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 10 g, tube 114309 55756011000036104 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 10 g 53720011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63125011000036107 bifonazole 1% gel, 10 g 61865011000036102 bifonazole 1% gel 21899011000036106 bifonazole +909911000168107 Dexamfetamine (Genpar) 5 mg uncoated tablet, 100, bottle 270955 909901000168109 Dexamfetamine (Genpar) 5 mg uncoated tablet, 100 909891000168105 Dexamfetamine (Genpar) 5 mg uncoated tablet 909881000168107 Dexamfetamine (Genpar) 909881000168107 Dexamfetamine (Genpar) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +931555011000036102 Ondron 4 mg film-coated tablet, 4, blister pack 163438 930716011000036105 Ondron 4 mg film-coated tablet, 4 930026011000036100 Ondron 4 mg film-coated tablet 40221000168103 Ondron 40221000168103 Ondron 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +19361011000036102 Menorest 75 microgram/24 hours patch, 8, sachet 51623 12648011000036103 Menorest 75 microgram/24 hours patch, 8 5034011000036104 Menorest 75 microgram/24 hours patch 4116011000036101 Menorest 4116011000036101 Menorest 28233011000036103 estradiol 75 microgram/24 hours patch, 8 23547011000036102 estradiol 75 microgram/24 hours patch 21238011000036103 estradiol +38981000036100 Escitalup 20 mg film-coated tablet, 100, bottle 165887 35351000036101 Escitalup 20 mg film-coated tablet, 100 33141000036102 Escitalup 20 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +784601000168109 Remifentanil (AFT) 5 mg powder for injection, 5 vials 193698 784591000168102 Remifentanil (AFT) 5 mg powder for injection, 5 vials 784581000168100 Remifentanil (AFT) 5 mg powder for injection, 5 mg vial 784451000168106 Remifentanil (AFT) 784451000168106 Remifentanil (AFT) 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +888321000168103 Bosentan (Intas) 125 mg film-coated tablet, 112, blister pack 235887 888311000168105 Bosentan (Intas) 125 mg film-coated tablet, 112 888261000168104 Bosentan (Intas) 125 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884111000168102 bosentan 125 mg tablet, 112 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +929062011000036107 Valaciclovir (GA) 500 mg film-coated tablet, 30, blister pack 162728 928423011000036102 Valaciclovir (GA) 500 mg film-coated tablet, 30 927971011000036109 Valaciclovir (GA) 500 mg film-coated tablet 927808011000036104 Valaciclovir (GA) 927808011000036104 Valaciclovir (GA) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +69185011000036102 Tinaderm 1% lotion, 10 mL, bottle 18216 66985011000036107 Tinaderm 1% lotion, 10 mL 65497011000036101 Tinaderm 1% lotion 18701000168107 Tinaderm 18701000168107 Tinaderm 71558011000036102 tolnaftate 1% lotion, 10 mL 70064011000036109 tolnaftate 1% lotion 21680011000036105 tolnaftate +177221000036102 Femoston-Conti film-coated tablet, 28, blister pack 78654 175531000036109 Femoston-Conti film-coated tablet, 28 173511000036104 Femoston-Conti film-coated tablet 25041000168106 Femoston-Conti 25041000168106 Femoston-Conti 175541000036104 estradiol 1 mg + dydrogesterone 5 mg tablet, 28 173521000036106 estradiol 1 mg + dydrogesterone 5 mg tablet 21906011000036106 estradiol + dydrogesterone +764111000168101 Fenofibrate (RBX) 48 mg film-coated tablet, 60, bottle 233489 763781000168106 Fenofibrate (RBX) 48 mg film-coated tablet, 60 763771000168108 Fenofibrate (RBX) 48 mg film-coated tablet 763691000168103 Fenofibrate (RBX) 763691000168103 Fenofibrate (RBX) 26701011000036108 fenofibrate 48 mg tablet, 60 22096011000036102 fenofibrate 48 mg tablet 21417011000036105 fenofibrate +1072641000168108 Pantoprazole (Generic Health) 40 mg enteric tablet, 15, blister pack 191033 1072631000168104 Pantoprazole (Generic Health) 40 mg enteric tablet, 15 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46656011000036103 pantoprazole 40 mg enteric tablet, 15 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +906531000168104 Celecoxib (Medis) 200 mg capsule, 20, blister pack 204618 906521000168102 Celecoxib (Medis) 200 mg capsule, 20 906471000168100 Celecoxib (Medis) 200 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +785651000168107 Oxycodone (Sandoz) 10 mg modified release tablet, 28, bottle 153592 676321000168100 Oxycodone (Sandoz) 10 mg modified release tablet, 28 676311000168107 Oxycodone (Sandoz) 10 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +948421000168109 Lobivon 1.25 mg tablet, 28, blister pack 148877 948411000168102 Lobivon 1.25 mg tablet, 28 948401000168100 Lobivon 1.25 mg tablet 942981000168102 Lobivon 942981000168102 Lobivon 83485011000036102 nebivolol 1.25 mg tablet, 28 83430011000036103 nebivolol 1.25 mg tablet 83418011000036105 nebivolol +909751000168105 Chorit 40 mg film-coated tablet, 30, bottle 179848 909711000168109 Chorit 40 mg film-coated tablet, 30 909681000168108 Chorit 40 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1060761000168107 Ramipril (Auro) 5 mg hard capsule, 28, blister pack 203710 1060751000168105 Ramipril (Auro) 5 mg hard capsule, 28 1060731000168104 Ramipril (Auro) 5 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 1060741000168108 ramipril 5 mg capsule, 28 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +709501000168105 Influvac 2015 injection solution, 1 x 0.5 mL syringe 215555 709491000168103 Influvac 2015 injection solution, 1 x 0.5 mL syringe 709481000168101 Influvac 2015 injection solution, 0.5 mL syringe 709471000168104 Influvac 2015 709471000168104 Influvac 2015 709361000168100 influenza trivalent adult vaccine 2015 injection, 1 x 0.5 mL syringe 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +839181000168100 Joncia 50 mg hard capsule, 28, bottle 176514 839121000168104 Joncia 50 mg hard capsule, 28 839071000168104 Joncia 50 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839111000168106 milnacipran hydrochloride 50 mg capsule, 28 839061000168105 milnacipran hydrochloride 50 mg capsule 838911000168100 milnacipran +910961000168102 Cavstat 10 mg film-coated tablet, 50, blister pack 234485 910951000168104 Cavstat 10 mg film-coated tablet, 50 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910941000168101 rosuvastatin 10 mg tablet, 50 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1090871000168106 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 50, blister pack 286355 1090861000168100 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 50 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +68966011000036108 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 12 sachets 134408 66768011000036109 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 12 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71420011000036108 paracetamol 500 mg powder for oral liquid, 12 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +798491000168106 Abyraz 10 mg uncoated tablet, 7, blister pack 159503 798481000168108 Abyraz 10 mg uncoated tablet, 7 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 798471000168105 aripiprazole 10 mg tablet, 7 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1064051000168101 Febridol Xtra Paracetamol and Codeine film-coated tablet, 40, blister pack 210575 1064041000168103 Febridol Xtra Paracetamol and Codeine film-coated tablet, 40 1064011000168102 Febridol Xtra Paracetamol and Codeine film-coated tablet 1064001000168100 Febridol Xtra Paracetamol and Codeine 1064001000168100 Febridol Xtra Paracetamol and Codeine 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +84349011000036101 Diclofenac Sodium (Apo) 50 mg enteric tablet, 50, blister pack 160730 84042011000036107 Diclofenac Sodium (Apo) 50 mg enteric tablet, 50 83666011000036105 Diclofenac Sodium (Apo) 50 mg enteric tablet 54531000168107 Diclofenac Sodium (Apo) 54531000168107 Diclofenac Sodium (Apo) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +850551000168109 Olmesartan (Myl) 20 mg film-coated tablet, 10, blister pack 273571 850541000168107 Olmesartan (Myl) 20 mg film-coated tablet, 10 850521000168101 Olmesartan (Myl) 20 mg film-coated tablet 849221000168107 Olmesartan (Myl) 849221000168107 Olmesartan (Myl) 850531000168103 olmesartan medoxomil 20 mg tablet, 10 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +18727011000036103 Simvastatin (Chemmart) 40 mg film-coated tablet, 30, blister pack 211958 11307011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet, 30 5689011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +18727011000036103 Simvastatin (Chemmart) 40 mg film-coated tablet, 30, blister pack 131648 11307011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet, 30 5689011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +18727011000036103 Simvastatin (Chemmart) 40 mg film-coated tablet, 30, blister pack 104534 11307011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet, 30 5689011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +18727011000036103 Simvastatin (Chemmart) 40 mg film-coated tablet, 30, blister pack 149806 11307011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet, 30 5689011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +929053011000036109 Galvumet 50/850 film-coated tablet, 60, blister pack 161217 928414011000036108 Galvumet 50/850 film-coated tablet, 60 927969011000036100 Galvumet 50/850 film-coated tablet 9411000168105 Galvumet 50/850 9411000168105 Galvumet 50/850 929251011000036104 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet, 60 929155011000036104 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet 929132011000036106 vildagliptin + metformin +807441000168104 Perindopril Arginine/Amlodipine 10/10 (Chemmart) uncoated tablet, 30, blister pack 224298 807431000168108 Perindopril Arginine/Amlodipine 10/10 (Chemmart) uncoated tablet, 30 807421000168105 Perindopril Arginine/Amlodipine 10/10 (Chemmart) uncoated tablet 807411000168103 Perindopril Arginine/Amlodipine 10/10 (Chemmart) 807411000168103 Perindopril Arginine/Amlodipine 10/10 (Chemmart) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +181631000036102 Candesartan Cilexetil HCTZ 32/12.5 (Terry White Chemists) uncoated tablet, 30, blister pack 210572 181171000036106 Candesartan Cilexetil HCTZ 32/12.5 (Terry White Chemists) uncoated tablet, 30 180571000036108 Candesartan Cilexetil HCTZ 32/12.5 (Terry White Chemists) uncoated tablet 56091000168108 Candesartan Cilexetil HCTZ 32/12.5 (Terry White Chemists) 56091000168108 Candesartan Cilexetil HCTZ 32/12.5 (Terry White Chemists) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +87748011000036101 Gadovist-1.0 9.07 g/15 mL injection solution, 10 x 15 mL vials 67047 87514011000036103 Gadovist-1.0 9.07 g/15 mL injection solution, 10 x 15 mL vials 87350011000036100 Gadovist-1.0 9.07 g/15 mL injection solution, 15 mL vial 55781000168103 Gadovist-1.0 55781000168103 Gadovist-1.0 87835011000036108 gadobutrol 9.07 g/15 mL injection, 10 x 15 mL vials 87766011000036106 gadobutrol 9.07 g/15 mL injection, vial 86196011000036104 gadobutrol +56321000036102 Potassium Chloride 40 mmol/1000 mL and Sodium Chloride 0.584% (Baxter) injection solution, 1 L bag 159381 51751000036100 Potassium Chloride 40 mmol/1000 mL and Sodium Chloride 0.584% (Baxter) injection solution, 1 L bag 49281000036100 Potassium Chloride 40 mmol/1000 mL and Sodium Chloride 0.584% (Baxter) injection solution, 1 L bag 15321000168109 Potassium Chloride 40 mmol/1000 mL and Sodium Chloride 0.584% (Baxter) 15321000168109 Potassium Chloride 40 mmol/1000 mL and Sodium Chloride 0.584% (Baxter) 51761000036102 potassium chloride 2.98 g (potassium 40 mmol)/L + sodium chloride 0.584% (5.84 g/L) injection, 1 L bag 49291000036103 potassium chloride 2.98 g (potassium 40 mmol)/L + sodium chloride 0.584% (5.84 g/L) injection, bag 69799011000036108 potassium chloride + sodium chloride +20421011000036104 Baclofen (GenRx) 10 mg tablet, 100, bottle 77577 13628011000036105 Baclofen (GenRx) 10 mg tablet, 100 6911011000036103 Baclofen (GenRx) 10 mg tablet 2976011000036103 Baclofen (GenRx) 2976011000036103 Baclofen (GenRx) 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +61563011000036102 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 20 mL, bottle 94150 57485011000036107 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 20 mL 54321011000036100 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 63883011000036106 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 20 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +87673011000036101 Clopidogrel (Winthrop) 75 mg film-coated tablet, 4, blister pack 148947 87433011000036101 Clopidogrel (Winthrop) 75 mg film-coated tablet, 4 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87802011000036105 clopidogrel 75 mg tablet, 4 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +18485011000036109 Epilim 100 mg uncoated tablet, 100, blister pack 15373 12089011000036108 Epilim 100 mg uncoated tablet, 100 4685011000036106 Epilim 100 mg uncoated tablet 46431000168104 Epilim 46431000168104 Epilim 26904011000036100 valproate sodium 100 mg tablet, 100 22281011000036102 valproate sodium 100 mg tablet 21225011000036107 valproate +1115571000168108 Quetiapine (Ascent) 100 mg film-coated tablet, 90, blister pack 202259 1115561000168102 Quetiapine (Ascent) 100 mg film-coated tablet, 90 1115551000168104 Quetiapine (Ascent) 100 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1078121000168106 Atomoxetine (AN) 80 mg hard capsule, 7, blister pack 234857 1078111000168104 Atomoxetine (AN) 80 mg hard capsule, 7 1078101000168102 Atomoxetine (AN) 80 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +44584011000036101 Vfend 200 mg film-coated tablet, 2, blister pack 82505 42037011000036108 Vfend 200 mg film-coated tablet, 2 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46805011000036106 voriconazole 200 mg tablet, 2 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +56301000036107 Potassium Chloride 10 mmol/100 mL and Sodium Chloride 0.29% (Baxter) injection solution, 100 mL bag 159379 51711000036104 Potassium Chloride 10 mmol/100 mL and Sodium Chloride 0.29% (Baxter) injection solution, 100 mL bag 49381000036105 Potassium Chloride 10 mmol/100 mL and Sodium Chloride 0.29% (Baxter) injection solution, 100 mL bag 40491000168102 Potassium Chloride 10 mmol/100 mL and Sodium Chloride 0.29% (Baxter) 40491000168102 Potassium Chloride 10 mmol/100 mL and Sodium Chloride 0.29% (Baxter) 51721000036106 potassium chloride 750 mg (potassium 10 mmol)/100 mL + sodium chloride 0.29% (292 mg/100 mL) injection, 100 mL bag 49391000036107 potassium chloride 750 mg (potassium 10 mmol)/100 mL + sodium chloride 0.29% (292 mg/100 mL) injection, bag 69799011000036108 potassium chloride + sodium chloride +14531000036105 Prazosin (Apo) 1 mg uncoated tablet, 100, blister pack 73858 8941000036102 Prazosin (Apo) 1 mg uncoated tablet, 100 2451000036106 Prazosin (Apo) 1 mg uncoated tablet 10301000168108 Prazosin (Apo) 10301000168108 Prazosin (Apo) 27727011000036107 prazosin 1 mg tablet, 100 23062011000036109 prazosin 1 mg tablet 21544011000036104 prazosin +700851000168102 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL injection device 700841000168104 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL injection device 700821000168105 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL injection device 686381000168107 Plegridy 686381000168107 Plegridy 700831000168108 peginterferon beta-1a 94 microgram/0.5 mL injection, 0.5 mL injection device 700811000168103 peginterferon beta-1a 94 microgram/0.5 mL injection, injection device 698561000168109 peginterferon beta-1a +79014011000036109 Nifedipine XR (Apo) 60 mg modified release tablet, 30, blister pack 152208 78862011000036103 Nifedipine XR (Apo) 60 mg modified release tablet, 30 78668011000036109 Nifedipine XR (Apo) 60 mg modified release tablet 501000168108 Nifedipine XR (Apo) 501000168108 Nifedipine XR (Apo) 28290011000036102 nifedipine 60 mg modified release tablet, 30 23604011000036108 nifedipine 60 mg modified release tablet 21241011000036108 nifedipine +922521000168108 Monace HCT 20/12.5 uncoated tablet, 30, bottle 131916 922451000168101 Monace HCT 20/12.5 uncoated tablet, 30 922441000168103 Monace HCT 20/12.5 uncoated tablet 922431000168107 Monace HCT 20/12.5 922431000168107 Monace HCT 20/12.5 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1098411000168104 Risedronate (Auro) 5 mg film-coated tablet, 14, blister pack 190155 1098401000168102 Risedronate (Auro) 5 mg film-coated tablet, 14 1098391000168104 Risedronate (Auro) 5 mg film-coated tablet 1098381000168102 Risedronate (Auro) 1098381000168102 Risedronate (Auro) 800791000168100 risedronate sodium 5 mg tablet, 14 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +43616011000036100 Carvedilol (GenRx) 25 mg film-coated tablet, 60, bottle 123843 11750011000036108 Carvedilol (GenRx) 25 mg film-coated tablet, 60 5579011000036103 Carvedilol (GenRx) 25 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +1091191000168106 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 2, blister pack 285250 1091181000168108 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 2 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 812811000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 2 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +34640011000036106 Fentanyl (AstraZeneca) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 12100 34230011000036109 Fentanyl (AstraZeneca) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 33973011000036100 Fentanyl (AstraZeneca) 100 microgram/2 mL injection solution, 2 mL ampoule 33946011000036107 Fentanyl (AstraZeneca) 33946011000036107 Fentanyl (AstraZeneca) 35181011000036102 fentanyl 100 microgram/2 mL injection, 10 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +69375011000036101 Microshield-4 4% solution, 5 L, bottle 30944 67175011000036102 Microshield-4 4% solution, 5 L 65560011000036106 Microshield-4 4% solution 32231000168100 Microshield-4 32231000168100 Microshield-4 71737011000036103 chlorhexidine gluconate 4% solution, 5 L 70178011000036100 chlorhexidine gluconate 4% solution 21404011000036101 chlorhexidine +1104021000168102 Quetiaccord 300 mg film-coated tablet, 20, blister pack 170857 1104011000168109 Quetiaccord 300 mg film-coated tablet, 20 3691000036107 Quetiaccord 300 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +59921011000036105 Paracetamol (Alphapharm) 500 mg uncoated tablet, 12, blister pack 118824 55883011000036100 Paracetamol (Alphapharm) 500 mg uncoated tablet, 12 53628011000036104 Paracetamol (Alphapharm) 500 mg uncoated tablet 53179011000036107 Paracetamol (Alphapharm) 53179011000036107 Paracetamol (Alphapharm) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +841921000168104 Atorvastatin (Amneal) 80 mg film-coated tablet, 50, blister pack 178525 841911000168106 Atorvastatin (Amneal) 80 mg film-coated tablet, 50 841791000168104 Atorvastatin (Amneal) 80 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841901000168108 atorvastatin 80 mg tablet, 50 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +34761011000036102 Ultiva 2 mg powder for injection, 5 vials 58689 34342011000036104 Ultiva 2 mg powder for injection, 5 vials 34055011000036109 Ultiva 2 mg powder for injection, 2 mg vial 33941011000036102 Ultiva 33941011000036102 Ultiva 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +1085291000168101 Synarel 200 microgram/actuation nasal spray, 60 actuations, pump pack 48127 164451000036107 Synarel 200 microgram/actuation nasal spray, 60 actuations 162371000036102 Synarel 200 microgram/actuation nasal spray, actuation 3065011000036103 Synarel 3065011000036103 Synarel 164461000036105 nafarelin 200 microgram/actuation nasal spray, 60 actuations 162381000036100 nafarelin 200 microgram/actuation nasal spray, actuation 21756011000036105 nafarelin +815991000168106 Espler 50 mg film-coated tablet, 20, blister pack 231446 815981000168108 Espler 50 mg film-coated tablet, 20 815971000168105 Espler 50 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 790561000168100 eplerenone 50 mg tablet, 20 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +928882011000036105 Enalapril Maleate (GH) 10 mg uncoated tablet, 30, blister pack 142940 928244011000036101 Enalapril Maleate (GH) 10 mg uncoated tablet, 30 927899011000036105 Enalapril Maleate (GH) 10 mg uncoated tablet 927800011000036101 Enalapril Maleate (GH) 927800011000036101 Enalapril Maleate (GH) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +1043581000168106 Pryzex 10 mg film-coated tablet, 10, blister pack 178996 1043571000168108 Pryzex 10 mg film-coated tablet, 10 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043561000168102 olanzapine 10 mg tablet, 10 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +718091000168104 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 144127 718081000168102 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 718051000168109 Carolyn-35 ED (inert substance) film-coated tablet 718031000168103 Carolyn-35 ED 718031000168103 Carolyn-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +718091000168104 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 144127 718081000168102 Carolyn-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 718041000168107 Carolyn-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 718031000168103 Carolyn-35 ED 718031000168103 Carolyn-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +854891000168108 Algerika 75 mg hard capsule, 56, blister pack 229589 854881000168105 Algerika 75 mg hard capsule, 56 854811000168104 Algerika 75 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +896661000168104 Prenoxad 1 mg/mL injection solution, 2 mL syringe 896651000168101 Prenoxad 1 mg/mL injection solution, 2 mL syringe 896631000168107 Prenoxad 1 mg/mL injection solution, 2 mL syringe 896611000168102 Prenoxad 896611000168102 Prenoxad 896641000168103 naloxone hydrochloride 1 mg/mL injection, 2 mL syringe 896621000168109 naloxone hydrochloride 1 mg/mL injection, syringe 33627011000036107 naloxone +985981000168104 Advil Double Strength Caplets 400 mg film-coated tablet, 24, blister pack 207376 985971000168102 Advil Double Strength Caplets 400 mg film-coated tablet, 24 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 932369011000036108 ibuprofen 400 mg tablet, 24 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1083921000168109 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 2.5 L, bottle 38572 1083911000168102 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 2.5 L 1083781000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 63471011000036105 benzydamine hydrochloride 0.15% mouthwash, 2.5 L 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +939881000168101 Celebrex 400 mg hard capsule, 60, blister pack 101341 939871000168104 Celebrex 400 mg hard capsule, 60 939701000168102 Celebrex 400 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 939861000168105 celecoxib 400 mg capsule, 60 939691000168102 celecoxib 400 mg capsule 21566011000036101 celecoxib +929703011000036103 MS Contin Suspension 30 mg modified release granules, 28 sachets 45841 929539011000036106 MS Contin Suspension 30 mg modified release granules, 28 sachets 5832011000036109 MS Contin Suspension 30 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 929760011000036105 morphine sulfate pentahydrate 30 mg modified release granules, 28 sachets 22497011000036105 morphine sulfate pentahydrate 30 mg modified release granules, 1 sachet 21252011000036100 morphine +713751000168100 Vitamin B12 (Blackmores) 100 microgram uncoated tablet, 75, bottle 74185 713741000168102 Vitamin B12 (Blackmores) 100 microgram uncoated tablet, 75 713731000168106 Vitamin B12 (Blackmores) 100 microgram uncoated tablet 713711000168101 Vitamin B12 (Blackmores) 713711000168101 Vitamin B12 (Blackmores) 78302011000036100 cyanocobalamin 100 microgram tablet, 75 77600011000036103 cyanocobalamin 100 microgram tablet 77442011000036106 cyanocobalamin +35637011000036104 Cellufresh 0.5% eye drops solution, 30 x 0.4 mL unit doses, ampoule 35544011000036102 Cellufresh 0.5% eye drops solution, 30 x 0.4 mL unit doses 35458011000036104 Cellufresh 0.5% eye drops solution, 0.4 mL unit dose 35428011000036103 Cellufresh 35428011000036103 Cellufresh 35755011000036101 carmellose sodium 0.5% eye drops, 30 x 0.4 mL unit doses 35697011000036105 carmellose sodium 0.5% eye drops, unit dose 35688011000036105 carmellose sodium +160241000036102 Crosuva 20 mg film-coated tablet, 30, blister pack 183646 158981000036106 Crosuva 20 mg film-coated tablet, 30 158241000036106 Crosuva 20 mg film-coated tablet 157751000036102 Crosuva 157751000036102 Crosuva 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +712311000168108 Oxytocin (GH) 5 units/mL injection solution, 5 x 1 mL ampoules 207985 712301000168105 Oxytocin (GH) 5 units/mL injection solution, 5 x 1 mL ampoules 712291000168109 Oxytocin (GH) 5 units/mL injection solution, ampoule 712101000168107 Oxytocin (GH) 712101000168107 Oxytocin (GH) 38687011000036104 oxytocin 5 units/mL injection, 5 x 1 mL ampoules 37926011000036103 oxytocin 5 units/mL injection, ampoule 37765011000036106 oxytocin +19891011000036103 Tolvon 20 mg film-coated tablet, 50, blister pack 65543 13138011000036107 Tolvon 20 mg film-coated tablet, 50 6421011000036108 Tolvon 20 mg film-coated tablet 4057011000036102 Tolvon 4057011000036102 Tolvon 27576011000036109 mianserin hydrochloride 20 mg tablet, 50 22915011000036103 mianserin hydrochloride 20 mg tablet 21371011000036103 mianserin +74837011000036105 Alpha Keri Oil application, 200 mL, bottle 24618 74324011000036104 Alpha Keri Oil application, 200 mL 5517011000036100 Alpha Keri Oil application 30578011000036102 Alpha Keri Oil 30578011000036102 Alpha Keri Oil 75431011000036100 liquid paraffin 80.7% + lanolin oil 2.64% application, 200 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +970111000168106 Lypralin 300 mg hard capsule, 60, blister pack 235879 970101000168108 Lypralin 300 mg hard capsule, 60 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +60854011000036101 Gastrolyte-R powder for oral liquid, 2 x 7.5 g sachets 58708 56808011000036106 Gastrolyte-R powder for oral liquid, 2 x 7.5 g sachets 54086011000036100 Gastrolyte-R powder for oral liquid, 7.5 g sachet 53420011000036103 Gastrolyte-R 53420011000036103 Gastrolyte-R 63584011000036109 oryza sativa 6 g + sodium citrate dihydrate 580 mg + sodium chloride 350 mg + potassium chloride 300 mg (potassium 4 mmol) powder for oral liquid, 2 x 7.5 g sachets 62021011000036105 oryza sativa 6 g + sodium citrate dihydrate 580 mg + sodium chloride 350 mg + potassium chloride 300 mg (potassium 4 mmol) powder for oral liquid, 7.5 g sachet 61797011000036108 oryza sativa + citric acid + sodium chloride + potassium chloride +813101000168101 Nuromol film-coated tablet, 9, blister pack 225322 813091000168106 Nuromol film-coated tablet, 9 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813081000168108 paracetamol 500 mg + ibuprofen 200 mg tablet, 9 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1049361000168105 Paramax Forte 500/30 tablet, 2, blister pack 220979 1049351000168108 Paramax Forte 500/30 tablet, 2 1049341000168106 Paramax Forte 500/30 tablet 1049251000168103 Paramax Forte 500/30 1049251000168103 Paramax Forte 500/30 1047211000168109 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 2 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +1104101000168105 Quetiapine (Pharmacor) 100 mg film-coated tablet, 20, blister pack 204829 1104091000168100 Quetiapine (Pharmacor) 100 mg film-coated tablet, 20 172851000036106 Quetiapine (Pharmacor) 100 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +44809011000036100 Concorz 50 mg film-coated tablet, 30, bottle 98695 14294011000036107 Concorz 50 mg film-coated tablet, 30 7580011000036102 Concorz 50 mg film-coated tablet 3452011000036105 Concorz 3452011000036105 Concorz 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +50472011000036102 Risperidone (Apo) 500 microgram film-coated tablet, 60, bottle 127607 49547011000036102 Risperidone (Apo) 500 microgram film-coated tablet, 60 48522011000036103 Risperidone (Apo) 500 microgram film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +82081000036108 Atenolol (AFT) 50 mg/10 mL oral liquid solution, 300 mL, bottle 184745 80601000036107 Atenolol (AFT) 50 mg/10 mL oral liquid solution, 300 mL 78461000036103 Atenolol (AFT) 50 mg/10 mL oral liquid solution, 10 mL 77921000036103 Atenolol (AFT) 77921000036103 Atenolol (AFT) 80611000036109 atenolol 50 mg/10 mL oral liquid, 300 mL 78471000036106 atenolol 50 mg/10 mL oral liquid 21624011000036105 atenolol +61096011000036108 Daktagold 2% cream, 15 g, tube 71115 57039011000036108 Daktagold 2% cream, 15 g 54169011000036101 Daktagold 2% cream 53512011000036102 Daktagold 53512011000036102 Daktagold 63711011000036105 ketoconazole 2% cream, 15 g 22202011000036107 ketoconazole 2% cream 21500011000036103 ketoconazole +807351000168108 Perindopril Arginine/Amlodipine 10/5 (Chemmart) uncoated tablet, 30, bottle 224336 807341000168106 Perindopril Arginine/Amlodipine 10/5 (Chemmart) uncoated tablet, 30 807321000168100 Perindopril Arginine/Amlodipine 10/5 (Chemmart) uncoated tablet 807281000168105 Perindopril Arginine/Amlodipine 10/5 (Chemmart) 807281000168105 Perindopril Arginine/Amlodipine 10/5 (Chemmart) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +925301011000036107 Exforge 10/320 film-coated tablet, 28, blister pack 161824 924838011000036100 Exforge 10/320 film-coated tablet, 28 924524011000036109 Exforge 10/320 film-coated tablet 20141000168104 Exforge 10/320 20141000168104 Exforge 10/320 925436011000036101 amlodipine 10 mg + valsartan 320 mg tablet, 28 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +1073871000168105 Cefepime (Auro) 1 g powder for injection, 1 vial 156640 1073861000168104 Cefepime (Auro) 1 g powder for injection, 1 vial 1073851000168101 Cefepime (Auro) 1 g powder for injection, vial 1073611000168103 Cefepime (Auro) 1073611000168103 Cefepime (Auro) 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +160221000036105 Crosuva 5 mg film-coated tablet, 30, blister pack 183636 158961000036101 Crosuva 5 mg film-coated tablet, 30 158231000036101 Crosuva 5 mg film-coated tablet 157751000036102 Crosuva 157751000036102 Crosuva 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +60128011000036100 Fenpaed 100 mg/5 mL oral liquid suspension, 100 mL, bottle 127602 56087011000036107 Fenpaed 100 mg/5 mL oral liquid suspension, 100 mL 53784011000036109 Fenpaed 100 mg/5 mL oral liquid suspension, 5 mL 53172011000036102 Fenpaed 53172011000036102 Fenpaed 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +152571000036100 Carbamazepine (Sandoz) 200 mg uncoated tablet, 100, blister pack 78211 150941000036104 Carbamazepine (Sandoz) 200 mg uncoated tablet, 100 6947011000036100 Carbamazepine (Sandoz) 200 mg uncoated tablet 3827011000036102 Carbamazepine (Sandoz) 3827011000036102 Carbamazepine (Sandoz) 46731000036102 carbamazepine 200 mg tablet, 100 23198011000036103 carbamazepine 200 mg tablet 21319011000036108 carbamazepine +56461000036102 Aciclovir Cold Sore (Pharmacy Choice) 5% cream, 5 g, tube 161228 52631000036106 Aciclovir Cold Sore (Pharmacy Choice) 5% cream, 5 g 48701000036108 Aciclovir Cold Sore (Pharmacy Choice) 5% cream 40121000168107 Aciclovir Cold Sore (Pharmacy Choice) 40121000168107 Aciclovir Cold Sore (Pharmacy Choice) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +1039151000168106 Atorvastatin (GA) 20 mg film-coated tablet, 50, blister pack 178538 1039141000168109 Atorvastatin (GA) 20 mg film-coated tablet, 50 1039051000168107 Atorvastatin (GA) 20 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841451000168102 atorvastatin 20 mg tablet, 50 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +18353011000036107 Artane 2 mg uncoated tablet, 200, bottle 15125 12073011000036100 Artane 2 mg uncoated tablet, 200 5050011000036105 Artane 2 mg uncoated tablet 3495011000036105 Artane 3495011000036105 Artane 26895011000036106 trihexyphenidyl (benzhexol) hydrochloride 2 mg tablet, 200 22273011000036106 trihexyphenidyl (benzhexol) hydrochloride 2 mg tablet 21635011000036106 trihexyphenidyl (benzhexol) +61217011000036103 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet, 24, blister pack 76460 57153011000036100 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet, 24 54218011000036105 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet 53596011000036104 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 53596011000036104 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +44083011000036100 Scandonest 3% (66 mg/2.2 mL) injection solution, 50 x 2.2 mL cartridges 49313 41570011000036106 Scandonest 3% (66 mg/2.2 mL) injection solution, 50 x 2.2 mL cartridges 40073011000036108 Scandonest 3% (66 mg/2.2 mL) injection solution, 2.2 mL cartridge 39620011000036108 Scandonest 39620011000036108 Scandonest 46399011000036109 mepivacaine hydrochloride 3% (66 mg/2.2 mL) injection, 50 x 2.2 mL cartridges 45133011000036108 mepivacaine hydrochloride 3% (66 mg/2.2 mL) injection, cartridge 44901011000036107 mepivacaine +52212011000036103 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 30, blister pack 145169 52099011000036102 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 30 51993011000036106 Pravastatin Sodium (Apo) 80 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +744141000168107 Alacare 8 mg dermal patch, 4, sachet 223468 744131000168103 Alacare 8 mg dermal patch, 4 744111000168108 Alacare 8 mg dermal patch 743961000168105 Alacare 743961000168105 Alacare 744121000168101 aminolevulinic acid 8 mg patch, 4 744101000168105 aminolevulinic acid 8 mg patch 44958011000036105 aminolevulinic acid +803011000168100 Abilify ODT 30 mg orally disintegrating tablet, 84, blister pack 128904 803001000168103 Abilify ODT 30 mg orally disintegrating tablet, 84 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802991000168104 aripiprazole 30 mg orally disintegrating tablet, 84 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +61459011000036100 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 100, blister pack 90630 57384011000036101 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 100 54291011000036100 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet 53173011000036109 Paracetamol (Nyal) 53173011000036109 Paracetamol (Nyal) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44325011000036108 Dalacin T 1% lotion, 60 mL, bottle 67060 41792011000036101 Dalacin T 1% lotion, 60 mL 40201011000036106 Dalacin T 1% lotion 9401000168107 Dalacin T 9401000168107 Dalacin T 46598011000036104 clindamycin 1% lotion, 60 mL 45233011000036105 clindamycin 1% lotion 21255011000036108 clindamycin +926723011000036103 Femclear Oral 150 mg hard capsule, 1, blister pack 125129 926124011000036109 Femclear Oral 150 mg hard capsule, 1 925602011000036108 Femclear Oral 150 mg hard capsule 44471000168109 Femclear Oral 44471000168109 Femclear Oral 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +43570011000036102 Zorac 0.05% cream, 30 g, tube 101328 41121011000036106 Zorac 0.05% cream, 30 g 39934011000036102 Zorac 0.05% cream 39675011000036100 Zorac 39675011000036100 Zorac 46103011000036102 tazarotene 0.05% cream, 30 g 44986011000036101 tazarotene 0.05% cream 44886011000036105 tazarotene +940061000168109 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 144123 940051000168107 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 940001000168108 Katie-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 939981000168107 Katie-35 ED 939981000168107 Katie-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +940061000168109 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 144123 940051000168107 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 940011000168106 Katie-35 ED (inert substance) film-coated tablet 939981000168107 Katie-35 ED 939981000168107 Katie-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +796021000168101 Midazolam (Accord) 15 mg/3 mL injection solution, 3 mL ampoule 207232 796011000168108 Midazolam (Accord) 15 mg/3 mL injection solution, 3 mL ampoule 796001000168105 Midazolam (Accord) 15 mg/3 mL injection solution, 3 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 663931000168100 midazolam 15 mg/3 mL injection, 3 mL ampoule 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +970031000168102 Lypralin 300 mg hard capsule, 21, blister pack 235879 970021000168100 Lypralin 300 mg hard capsule, 21 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855551000168101 pregabalin 300 mg capsule, 21 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +60416011000036108 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 10, blister pack 145584 56375011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 10 53895011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule 53491011000036102 Dimetapp PE Nasal Decongestant 53491011000036102 Dimetapp PE Nasal Decongestant 63322011000036105 phenylephrine hydrochloride 10 mg capsule, 10 61918011000036101 phenylephrine hydrochloride 10 mg capsule 37732011000036107 phenylephrine +44567011000036105 Bicor 1.25 mg film-coated tablet, 56, blister pack 81603 42020011000036109 Bicor 1.25 mg film-coated tablet, 56 40323011000036105 Bicor 1.25 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 46793011000036105 bisoprolol fumarate 1.25 mg tablet, 56 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +18111011000036106 Rivotril 500 microgram uncoated tablet, 100, bottle 13759 12012011000036101 Rivotril 500 microgram uncoated tablet, 100 5073011000036104 Rivotril 500 microgram uncoated tablet 19081000168107 Rivotril 19081000168107 Rivotril 27334011000036100 clonazepam 500 microgram tablet, 100 22687011000036107 clonazepam 500 microgram tablet 21226011000036100 clonazepam +1120011000168105 Quetiapine XR (Actavis) 50 mg modified release tablet, 60, blister pack 241753 1120001000168107 Quetiapine XR (Actavis) 50 mg modified release tablet, 60 1119951000168108 Quetiapine XR (Actavis) 50 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +798811000168104 Rizatriptan (TW) 10 mg orally disintegrating tablet, 2, blister pack 222203 798801000168102 Rizatriptan (TW) 10 mg orally disintegrating tablet, 2 798761000168105 Rizatriptan (TW) 10 mg orally disintegrating tablet 798751000168108 Rizatriptan (TW) 798751000168108 Rizatriptan (TW) 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +933131011000036102 Elmendos 25 mg tablet, 60, blister pack 98073 932934011000036107 Elmendos 25 mg tablet, 60 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46987011000036105 lamotrigine 25 mg tablet, 60 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +653171000168108 Ferinject 500 mg/10 mL injection solution, 5 x 10 mL vials 162641 653161000168102 Ferinject 500 mg/10 mL injection solution, 5 x 10 mL vials 49691000036100 Ferinject 500 mg/10 mL injection solution, 10 mL vial 48071000036102 Ferinject 48071000036102 Ferinject 653151000168104 iron (as ferric carboxymaltose) 500 mg/10 mL injection, 5 x 10 mL vials 49701000036100 iron (as ferric carboxymaltose) 500 mg/10 mL injection, vial 56811000036102 ferric carboxymaltose +83404011000036100 Atacand Plus 32/25 uncoated tablet, 30, blister pack 154251 83323011000036100 Atacand Plus 32/25 uncoated tablet, 30 83253011000036106 Atacand Plus 32/25 uncoated tablet 26321000168105 Atacand Plus 32/25 26321000168105 Atacand Plus 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +17869011000036108 Caduet 10/40 film-coated tablet, 30, blister pack 100702 11162011000036109 Caduet 10/40 film-coated tablet, 30 4766011000036105 Caduet 10/40 film-coated tablet 14261000168109 Caduet 10/40 14261000168109 Caduet 10/40 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +906851000168107 Celecoxib (LAPL) 200 mg hard capsule, 60, blister pack 196187 906841000168105 Celecoxib (LAPL) 200 mg hard capsule, 60 906731000168108 Celecoxib (LAPL) 200 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +833391000168103 Centrum film-coated tablet, 150, bottle 75827 833381000168101 Centrum film-coated tablet, 150 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833371000168104 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 150 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +43933011000036101 Amoxycillin (Apo) 500 mg hard capsule, 20, blister pack 208144 41425011000036109 Amoxycillin (Apo) 500 mg hard capsule, 20 39813011000036101 Amoxycillin (Apo) 500 mg hard capsule 39598011000036109 Amoxycillin (Apo) 39598011000036109 Amoxycillin (Apo) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +43933011000036101 Amoxycillin (Apo) 500 mg hard capsule, 20, blister pack 142538 41425011000036109 Amoxycillin (Apo) 500 mg hard capsule, 20 39813011000036101 Amoxycillin (Apo) 500 mg hard capsule 39598011000036109 Amoxycillin (Apo) 39598011000036109 Amoxycillin (Apo) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +1020461000168105 Aripiprazole (WT) 15 mg uncoated tablet, 30, blister pack 217234 1020451000168108 Aripiprazole (WT) 15 mg uncoated tablet, 30 1020401000168109 Aripiprazole (WT) 15 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1082551000168101 Atorvastatin (ZP) 80 mg film-coated tablet, 100, bottle 217173 1082541000168103 Atorvastatin (ZP) 80 mg film-coated tablet, 100 1082511000168102 Atorvastatin (ZP) 80 mg film-coated tablet 1082501000168100 Atorvastatin (ZP) 1082501000168100 Atorvastatin (ZP) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +43870011000036103 Fluconazole (Aspen) 200 mg/100 mL injection solution, 10 x 100 mL bags 128728 41366011000036101 Fluconazole (Aspen) 200 mg/100 mL injection solution, 10 x 100 mL bags 39857011000036102 Fluconazole (Aspen) 200 mg/100 mL injection solution, 100 mL bag 39689011000036109 Fluconazole (Aspen) 39689011000036109 Fluconazole (Aspen) 46270011000036102 fluconazole 200 mg/100 mL injection, 10 x 100 mL bags 32691011000036104 fluconazole 200 mg/100 mL injection, bag 21365011000036105 fluconazole +60946011000036100 Claratyne 10 mg effervescent tablet, 20, tube 62135 56889011000036104 Claratyne 10 mg effervescent tablet, 20 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63633011000036107 loratadine 10 mg effervescent tablet, 20 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +922010011000036100 Prohance 2.79 g/10 mL injection solution, 10 mL syringe 72674 921568011000036103 Prohance 2.79 g/10 mL injection solution, 10 mL syringe 921092011000036101 Prohance 2.79 g/10 mL injection solution, 10 mL syringe 20611000168106 Prohance 20611000168106 Prohance 922682011000036106 gadoteridol 2.79 g/10 mL injection, 10 mL syringe 922156011000036101 gadoteridol 2.79 g/10 mL injection, syringe 922035011000036101 gadoteridol +50219011000036104 Zipzoc (66051550) 80 cm (stockings) bandage, 4, carton 62437 49336011000036102 Zipzoc (66051550) 80 cm (stockings) bandage, 4 48652011000036107 Zipzoc (66051550) 80 cm (stockings) bandage 24761000168107 Zipzoc (66051550) 24761000168107 Zipzoc (66051550) 51317011000036107 bandage zinc paste 80 cm (stockings) bandage, 4 50846011000036106 bandage zinc paste 80 cm (stockings) bandage 50700011000036104 bandage zinc paste +39141000036104 Exatrust 25 mg film-coated tablet, 15, blister pack 167857 35541000036105 Exatrust 25 mg film-coated tablet, 15 32481000036107 Exatrust 25 mg film-coated tablet 32291000036108 Exatrust 32291000036108 Exatrust 933205271000036107 exemestane 25 mg tablet, 15 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +44296011000036101 Abelcet 100 mg/20 mL injection suspension, 20 mL vial 65406 41767011000036102 Abelcet 100 mg/20 mL injection suspension, 20 mL vial 40190011000036104 Abelcet 100 mg/20 mL injection suspension, 20 mL vial 39665011000036109 Abelcet 39665011000036109 Abelcet 46574011000036103 amphotericin B (as lipid complex) 100 mg/20 mL injection, 20 mL vial 45224011000036105 amphotericin B (as lipid complex) 100 mg/20 mL injection, vial 44943011000036103 amphotericin B lipid complex +951341000168101 Tenofovir (GH) 291 mg film-coated tablet, 100, bottle 269193 951331000168105 Tenofovir (GH) 291 mg film-coated tablet, 100 951281000168102 Tenofovir (GH) 291 mg film-coated tablet 951261000168106 Tenofovir (GH) 951261000168106 Tenofovir (GH) 951321000168107 tenofovir disoproxil phosphate 291 mg tablet, 100 951271000168100 tenofovir disoproxil phosphate 291 mg tablet 851521000168106 tenofovir disoproxil +1107481000168102 Serepax 15 mg uncoated tablet, 50, blister pack 174675 1107471000168100 Serepax 15 mg uncoated tablet, 50 5299011000036104 Serepax 15 mg uncoated tablet 3507011000036107 Serepax 3507011000036107 Serepax 980351000168101 oxazepam 15 mg tablet, 50 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +747751000168102 Morphine MR (SCP) 60 mg modified release tablet, 28, blister pack 225423 747741000168104 Morphine MR (SCP) 60 mg modified release tablet, 28 747711000168103 Morphine MR (SCP) 60 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 929757011000036102 morphine sulfate pentahydrate 60 mg modified release tablet, 28 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +923810011000036109 Sulprix 100 mg tablet, 50, bottle 156046 84009011000036108 Sulprix 100 mg tablet, 50 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84638011000036101 amisulpride 100 mg tablet, 50 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +1118001000168103 Quetiapine XR (Amneal) 50 mg modified release tablet, 60, blister pack 278893 1117981000168109 Quetiapine XR (Amneal) 50 mg modified release tablet, 60 1117971000168106 Quetiapine XR (Amneal) 50 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +910231000168102 Cisatracurium (Apotex) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 237306 910221000168100 Cisatracurium (Apotex) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 910211000168107 Cisatracurium (Apotex) 20 mg/10 mL injection solution, 10 mL ampoule 910171000168105 Cisatracurium (Apotex) 910171000168105 Cisatracurium (Apotex) 909161000168108 cisatracurium 20 mg/10 mL injection, 5 x 10 mL ampoules 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +44187011000036101 Remeron 15 mg film-coated tablet, 30, blister pack 55085 41663011000036103 Remeron 15 mg film-coated tablet, 30 40132011000036107 Remeron 15 mg film-coated tablet 3235011000036100 Remeron 3235011000036100 Remeron 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +61476011000036106 Paracetamol (Herron) 500 mg film-coated tablet, 96, blister pack 91501 57401011000036106 Paracetamol (Herron) 500 mg film-coated tablet, 96 54295011000036103 Paracetamol (Herron) 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +818401000168102 Afolia 150 units (11 microgram)/0.25 mL injection solution, 5 x 0.25 mL injection devices 262646 818391000168104 Afolia 150 units (11 microgram)/0.25 mL injection solution, 5 x 0.25 mL injection devices 818361000168106 Afolia 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741211000168101 follitropin alfa 150 units (11 microgram)/0.25 mL injection, 5 x 0.25 mL injection devices 741161000168109 follitropin alfa 150 units (11 microgram)/0.25 mL injection, injection device 21352011000036107 follitropin alfa +14281000036107 Ozin 7.5 mg uncoated tablet, 28, blister pack 179917 7891000036102 Ozin 7.5 mg uncoated tablet, 28 1451000036100 Ozin 7.5 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +974681000168101 Bosentan (GH) 125 mg film-coated tablet, 500, bottle 235883 974671000168104 Bosentan (GH) 125 mg film-coated tablet, 500 974261000168107 Bosentan (GH) 125 mg film-coated tablet 974251000168105 Bosentan (GH) 974251000168105 Bosentan (GH) 884191000168106 bosentan 125 mg tablet, 500 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +59829011000036104 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 24, blister pack 114906 55791011000036100 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 24 53626011000036103 Paracetamol (Your Pharmacy) 500 mg uncoated tablet 53318011000036101 Paracetamol (Your Pharmacy) 53318011000036101 Paracetamol (Your Pharmacy) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19615011000036107 Keflor 250 mg/5 mL powder for oral liquid, 75 mL, bottle 58653 12884011000036108 Keflor 250 mg/5 mL powder for oral liquid, 75 mL 6175011000036108 Keflor 250 mg/5 mL powder for oral liquid, 5 mL 52641000168108 Keflor 52641000168108 Keflor 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +37452011000036101 Solu-Medrol (1 x 2 g vial, 1 x 31.2 mL inert diluent vial), 1 pack, composite pack 12342 36724011000036104 Solu-Medrol (1 x 2 g vial, 1 x 31.2 mL inert diluent vial), 1 pack 36142011000036101 Solu-Medrol (methylprednisolone 2 g) powder for injection, 2 g vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 38634011000036103 methylprednisolone 2 g injection [1 vial] (&) inert substance diluent [31.2 mL vial], 1 pack 37893011000036105 methylprednisolone 2 g injection, vial 21605011000036100 methylprednisolone +37452011000036101 Solu-Medrol (1 x 2 g vial, 1 x 31.2 mL inert diluent vial), 1 pack, composite pack 12342 36724011000036104 Solu-Medrol (1 x 2 g vial, 1 x 31.2 mL inert diluent vial), 1 pack 643621000168103 Solu-Medrol (inert substance) diluent, 31.2 mL vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 38634011000036103 methylprednisolone 2 g injection [1 vial] (&) inert substance diluent [31.2 mL vial], 1 pack 643611000168105 inert substance diluent, 31.2 mL vial 21220011000036103 inert substance +786251000168102 Isoniazid (Arrow) 100 mg uncoated tablet, 100, bottle 13455 786241000168104 Isoniazid (Arrow) 100 mg uncoated tablet, 100 786231000168108 Isoniazid (Arrow) 100 mg uncoated tablet 786221000168105 Isoniazid (Arrow) 786221000168105 Isoniazid (Arrow) 26832011000036105 isoniazid 100 mg tablet, 100 22214011000036101 isoniazid 100 mg tablet 21726011000036106 isoniazid +20894011000036103 Sitriol 0.25 microgram soft capsule, 100, bottle 93229 14055011000036106 Sitriol 0.25 microgram soft capsule, 100 7333011000036104 Sitriol 0.25 microgram soft capsule 3984011000036105 Sitriol 3984011000036105 Sitriol 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +116521000036109 Rosuvastatin (Chemmart) 20 mg film-coated tablet, 30, blister pack 183071 114811000036109 Rosuvastatin (Chemmart) 20 mg film-coated tablet, 30 113191000036106 Rosuvastatin (Chemmart) 20 mg film-coated tablet 112531000036107 Rosuvastatin (Chemmart) 112531000036107 Rosuvastatin (Chemmart) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +1060401000168102 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 14, blister pack 234477 1060391000168104 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 14 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911771000168103 rosuvastatin 40 mg tablet, 14 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +56641000036100 Lanez 7.5 mg film-coated tablet, 28, blister pack 163409 53071000036106 Lanez 7.5 mg film-coated tablet, 28 48601000036100 Lanez 7.5 mg film-coated tablet 47331000168108 Lanez 47331000168108 Lanez 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +44354011000036105 Reductil 10 mg hard capsule, 30, blister pack 68115 41821011000036102 Reductil 10 mg hard capsule, 30 40214011000036106 Reductil 10 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46627011000036104 sibutramine hydrochloride 10 mg capsule, 30 45245011000036107 sibutramine hydrochloride 10 mg capsule 44877011000036100 sibutramine +60462011000036105 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 10 sachets 150167 56420011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 10 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63352011000036109 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 10 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +77228011000036106 Escitalopram (Apo) 10 mg film-coated tablet, 30, bottle 146012 76644011000036100 Escitalopram (Apo) 10 mg film-coated tablet, 30 76084011000036103 Escitalopram (Apo) 10 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +882381000168102 Spedra 100 mg uncoated tablet, 2, blister pack 228475 882371000168100 Spedra 100 mg uncoated tablet, 2 882321000168101 Spedra 100 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882361000168106 avanafil 100 mg tablet, 2 882311000168108 avanafil 100 mg tablet 882091000168102 avanafil +1073001000168109 Instanyl 100 microgram/actuation nasal spray, 10 actuations, pump pack 197691 1072991000168108 Instanyl 100 microgram/actuation nasal spray, 10 actuations 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1072981000168105 fentanyl 100 microgram/actuation nasal spray, 10 actuations 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +931554011000036101 Ondron 4 mg film-coated tablet, 10, blister pack 163438 930715011000036103 Ondron 4 mg film-coated tablet, 10 930026011000036100 Ondron 4 mg film-coated tablet 40221000168103 Ondron 40221000168103 Ondron 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +19759011000036109 Lovir 800 mg uncoated tablet, 35, blister pack 62381 13020011000036103 Lovir 800 mg uncoated tablet, 35 6307011000036103 Lovir 800 mg uncoated tablet 4208011000036103 Lovir 4208011000036103 Lovir 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +60094011000036105 Clotrimazole Antifungal (Pharmacy Choice) 1% cream, 20 g, tube 126540 56055011000036106 Clotrimazole Antifungal (Pharmacy Choice) 1% cream, 20 g 53773011000036102 Clotrimazole Antifungal (Pharmacy Choice) 1% cream 53791000168101 Clotrimazole Antifungal (Pharmacy Choice) 53791000168101 Clotrimazole Antifungal (Pharmacy Choice) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +942621000168105 Clarithromycin (Sandoz) 500 mg film-coated tablet, 100, blister pack 101271 942611000168103 Clarithromycin (Sandoz) 500 mg film-coated tablet, 100 769211000168107 Clarithromycin (Sandoz) 500 mg film-coated tablet 147831000036100 Clarithromycin (Sandoz) 147831000036100 Clarithromycin (Sandoz) 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +948741000168106 Ondansetron (Mylan) 8 mg/4 mL injection, 10 x 4 mL vials 148300 948731000168102 Ondansetron (Mylan) 8 mg/4 mL injection, 10 x 4 mL vials 948651000168104 Ondansetron (Mylan) 8 mg/4 mL injection, 4 mL vial 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 948721000168100 ondansetron 8 mg/4 mL injection, 10 x 4 mL vials 948641000168101 ondansetron 8 mg/4 mL injection, vial 21545011000036100 ondansetron +18866011000036107 Drixine Adult 0.05% nasal spray, 15 mL, bottle 18838 74326011000036107 Drixine Adult 0.05% nasal spray, 15 mL 73864011000036106 Drixine Adult 0.05% nasal spray 1631000168103 Drixine Adult 1631000168103 Drixine Adult 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +50201011000036100 Opsite Flexigrid (4629) 10 cm x 12 cm dressing, 10, carton 49377011000036101 Opsite Flexigrid (4629) 10 cm x 12 cm dressing, 10 48490011000036101 Opsite Flexigrid (4629) 10 cm x 12 cm dressing 8151000168109 Opsite Flexigrid (4629) 8151000168109 Opsite Flexigrid (4629) 51350011000036100 dressing film 10 cm x 12 cm dressing, 10 50874011000036102 dressing film 10 cm x 12 cm dressing 50711011000036108 dressing film +1120091000168101 Tiapine XR 300 mg modified release tablet, 60, blister pack 199870 1120081000168104 Tiapine XR 300 mg modified release tablet, 60 1120071000168102 Tiapine XR 300 mg modified release tablet 1119801000168104 Tiapine XR 1119801000168104 Tiapine XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +979031000168109 Piperacillin (Douglas) 1 g powder for injection, 10 vials 63780 979021000168106 Piperacillin (Douglas) 1 g powder for injection, 10 vials 978971000168103 Piperacillin (Douglas) 1 g powder for injection, vial 978861000168102 Piperacillin (Douglas) 978861000168102 Piperacillin (Douglas) 979011000168104 piperacillin 1 g injection, 10 vials 978961000168109 piperacillin 1 g injection, vial 978871000168108 piperacillin +1049521000168109 Oxycodone (Juno) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 279323 1049511000168102 Oxycodone (Juno) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 1049501000168100 Oxycodone (Juno) 20 mg/2 mL injection solution, 2 mL ampoule 1049121000168102 Oxycodone (Juno) 1049121000168102 Oxycodone (Juno) 35094011000036107 oxycodone hydrochloride 20 mg/2 mL injection, 5 x 2 mL ampoules 34846011000036103 oxycodone hydrochloride 20 mg/2 mL injection, ampoule 21259011000036105 oxycodone +1107161000168104 Olumiant 2 mg film-coated tablet, 28, blister pack 277905 1107151000168101 Olumiant 2 mg film-coated tablet, 28 1107101000168100 Olumiant 2 mg film-coated tablet 1107071000168109 Olumiant 1107071000168109 Olumiant 1107141000168103 baricitinib 2 mg tablet, 28 1107091000168105 baricitinib 2 mg tablet 1107081000168107 baricitinib +59811011000036105 Strong Pain Relief Plus (Amcal) uncoated tablet, 50, blister pack 114715 55773011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet, 50 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 52868011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 50 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +657781000168101 Ramipril (AN) 10 mg uncoated tablet, 30, blister pack 175233 657771000168104 Ramipril (AN) 10 mg uncoated tablet, 30 657761000168105 Ramipril (AN) 10 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +60336011000036106 C-Zine (Amcal) 10 mg film-coated tablet, 30, blister pack 139460 56295011000036106 C-Zine (Amcal) 10 mg film-coated tablet, 30 53864011000036109 C-Zine (Amcal) 10 mg film-coated tablet 53177011000036100 C-Zine (Amcal) 53177011000036100 C-Zine (Amcal) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +773361000168105 Claratyne Liquid Capsule 10 mg soft capsule, 24, blister pack 175273 773351000168108 Claratyne Liquid Capsule 10 mg soft capsule, 24 773241000168100 Claratyne Liquid Capsule 10 mg soft capsule 773221000168106 Claratyne Liquid Capsule 773221000168106 Claratyne Liquid Capsule 773341000168106 loratadine 10 mg capsule, 24 773231000168109 loratadine 10 mg capsule 21701011000036106 loratadine +923161000168100 Abacavir/Lamivudine 600/300 (Apo) film-coated tablet, 30, blister pack 239755 923151000168102 Abacavir/Lamivudine 600/300 (Apo) film-coated tablet, 30 923141000168104 Abacavir/Lamivudine 600/300 (Apo) film-coated tablet 923131000168108 Abacavir/Lamivudine 600/300 (Apo) 923131000168108 Abacavir/Lamivudine 600/300 (Apo) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +73298011000036109 Jurnista 32 mg modified release tablet, 35, blister pack 141534 73096011000036104 Jurnista 32 mg modified release tablet, 35 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73494011000036101 hydromorphone hydrochloride 32 mg modified release tablet, 35 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +700621000168106 Adempas 2 mg film-coated tablet, 42, blister pack 207598 700611000168104 Adempas 2 mg film-coated tablet, 42 700591000168109 Adempas 2 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700601000168102 riociguat 2 mg tablet, 42 700581000168106 riociguat 2 mg tablet 700211000168102 riociguat +704571000168104 B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials 22408 704561000168105 B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials 704531000168102 B-Dose Forte (Biological Therapies) injection solution, 2.5 mL vial 704521000168100 B-Dose Forte (Biological Therapies) 704521000168100 B-Dose Forte (Biological Therapies) 922617011000036105 thiamine hydrochloride 250 mg/2.5 mL + riboflavin sodium phosphate 5 mg/2.5 mL + nicotinamide 50 mg/2.5 mL + dexpanthenol 50 mg/2.5 mL + pyridoxine hydrochloride 100 mg/2.5 mL + cyanocobalamin 1 mg/2.5 mL injection, 6 x 2.5 mL vials 922109011000036101 thiamine hydrochloride 250 mg/2.5 mL + riboflavin sodium phosphate 5 mg/2.5 mL + nicotinamide 50 mg/2.5 mL + dexpanthenol 50 mg/2.5 mL + pyridoxine hydrochloride 100 mg/2.5 mL + cyanocobalamin 1 mg/2.5 mL injection, vial 922036011000036108 thiamine + riboflavin + nicotinamide + dexpanthenol + pyridoxine + cyanocobalamin +14241000036103 Quetiapine (Actavis) 200 mg film-coated tablet, 60, blister pack 179900 7851000036106 Quetiapine (Actavis) 200 mg film-coated tablet, 60 3431000036109 Quetiapine (Actavis) 200 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +60820011000036107 Nicotinell Fruit 2 mg chewing gum, 96, blister pack 58059 56776011000036104 Nicotinell Fruit 2 mg chewing gum, 96 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60820011000036107 Nicotinell Fruit 2 mg chewing gum, 96, blister pack 126013 56776011000036104 Nicotinell Fruit 2 mg chewing gum, 96 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1025761000168106 Neuroccord 300 mg hard capsule, 30, bottle 235861 1025751000168109 Neuroccord 300 mg hard capsule, 30 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970831000168107 pregabalin 300 mg capsule, 30 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +953031000168108 Finasteride (APL) 1 mg film-coated tablet, 28, blister pack 210615 953021000168105 Finasteride (APL) 1 mg film-coated tablet, 28 953011000168103 Finasteride (APL) 1 mg film-coated tablet 951741000168100 Finasteride (APL) 951741000168100 Finasteride (APL) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +908381000168109 Celecoxib (Bellwether) 100 mg hard capsule, 60, blister pack 196185 908371000168106 Celecoxib (Bellwether) 100 mg hard capsule, 60 908241000168105 Celecoxib (Bellwether) 100 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +781631000168104 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 215575 781621000168102 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 781611000168109 Nordette (inert substance) sugar coated tablet 781591000168104 Nordette 781591000168104 Nordette 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +781631000168104 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 215575 781621000168102 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 781601000168106 Nordette (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 781591000168104 Nordette 781591000168104 Nordette 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +69588011000036100 Bepanthen Antiseptic 0.05% cream, 100 g, tube 182923 67387011000036108 Bepanthen Antiseptic 0.05% cream, 100 g 65640011000036107 Bepanthen Antiseptic 0.05% cream 25631000168108 Bepanthen Antiseptic 25631000168108 Bepanthen Antiseptic 71922011000036105 benzalkonium chloride 0.05% cream, 100 g 70248011000036101 benzalkonium chloride 0.05% cream 50773011000036101 benzalkonium chloride +69588011000036100 Bepanthen Antiseptic 0.05% cream, 100 g, tube 66657 67387011000036108 Bepanthen Antiseptic 0.05% cream, 100 g 65640011000036107 Bepanthen Antiseptic 0.05% cream 25631000168108 Bepanthen Antiseptic 25631000168108 Bepanthen Antiseptic 71922011000036105 benzalkonium chloride 0.05% cream, 100 g 70248011000036101 benzalkonium chloride 0.05% cream 50773011000036101 benzalkonium chloride +906211000168107 Amisulpride (AN) 100 mg uncoated tablet, 90, blister pack 234715 906201000168109 Amisulpride (AN) 100 mg uncoated tablet, 90 906141000168103 Amisulpride (AN) 100 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +12071000036109 Zypine 7.5 mg film-coated tablet, 28, blister pack 154621 7121000036109 Zypine 7.5 mg film-coated tablet, 28 3311000036105 Zypine 7.5 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +33517011000036107 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 167894 33260011000036100 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack 641251000168107 Solu-Cortef Act-O-Vial (inert substance) diluent, 2 mL vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 33785011000036104 hydrocortisone (as sodium succinate) 250 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +33517011000036107 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 12339 33260011000036100 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack 641251000168107 Solu-Cortef Act-O-Vial (inert substance) diluent, 2 mL vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 33785011000036104 hydrocortisone (as sodium succinate) 250 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +33517011000036107 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 167894 33260011000036100 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack 33026011000036103 Solu-Cortef Act-O-Vial (hydrocortisone (as sodium succinate) 250 mg) powder for injection, 250 mg vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 33785011000036104 hydrocortisone (as sodium succinate) 250 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 33658011000036107 hydrocortisone (as sodium succinate) 250 mg injection, vial 21524011000036102 hydrocortisone sodium succinate +33517011000036107 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack, dual chamber composite pack 12339 33260011000036100 Solu-Cortef Act-O-Vial (1 x 250 mg vial, 1 x 2 mL inert diluent vial), 1 pack 33026011000036103 Solu-Cortef Act-O-Vial (hydrocortisone (as sodium succinate) 250 mg) powder for injection, 250 mg vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 33785011000036104 hydrocortisone (as sodium succinate) 250 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 33658011000036107 hydrocortisone (as sodium succinate) 250 mg injection, vial 21524011000036102 hydrocortisone sodium succinate +44838011000036102 Enablex 15 mg modified release tablet, 56, blister pack 99439 42270011000036101 Enablex 15 mg modified release tablet, 56 40411011000036109 Enablex 15 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47023011000036103 darifenacin 15 mg modified release tablet, 56 45377011000036108 darifenacin 15 mg modified release tablet 44860011000036105 darifenacin +818321000168101 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 10 x 0.125 mL injection devices 262645 818311000168108 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 10 x 0.125 mL injection devices 818231000168105 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741131000168101 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, 10 x 0.125 mL injection devices 741051000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, injection device 21352011000036107 follitropin alfa +60578011000036106 Dithrasal 2% ointment, 50 g, tube 15560 56536011000036103 Dithrasal 2% ointment, 50 g 53959011000036107 Dithrasal 2% ointment 53372011000036105 Dithrasal 53372011000036105 Dithrasal 63402011000036107 dithranol 2% ointment, 50 g 61942011000036106 dithranol 2% ointment 61732011000036104 dithranol +55091000036109 Clopidogrel (Apo) 75 mg film-coated tablet, 500, bottle 129642 50911000036107 Clopidogrel (Apo) 75 mg film-coated tablet, 500 84778011000036107 Clopidogrel (Apo) 75 mg film-coated tablet 18441000168101 Clopidogrel (Apo) 18441000168101 Clopidogrel (Apo) 50921000036100 clopidogrel 75 mg tablet, 500 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +55091000036109 Clopidogrel (Apo) 75 mg film-coated tablet, 500, bottle 221806 50911000036107 Clopidogrel (Apo) 75 mg film-coated tablet, 500 84778011000036107 Clopidogrel (Apo) 75 mg film-coated tablet 18441000168101 Clopidogrel (Apo) 18441000168101 Clopidogrel (Apo) 50921000036100 clopidogrel 75 mg tablet, 500 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1072911000168104 Pantoprazole (Generic Health) 20 mg enteric tablet, 50, blister pack 191032 1072901000168102 Pantoprazole (Generic Health) 20 mg enteric tablet, 50 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46676011000036101 pantoprazole 20 mg enteric tablet, 50 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +142221000036103 Xyntha 250 IU (1 x 250 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174837 141631000036107 Xyntha 250 IU (1 x 250 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 141391000036101 Xyntha 250 IU (moroctocog alfa 250 units) powder for injection, 250 units syringe 47431000168102 Xyntha 250 IU 47431000168102 Xyntha 250 IU 141641000036102 moroctocog alfa 250 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 141401000036103 moroctocog alfa 250 units injection, syringe 44868011000036107 moroctocog alfa +142221000036103 Xyntha 250 IU (1 x 250 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174837 141631000036107 Xyntha 250 IU (1 x 250 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 47431000168102 Xyntha 250 IU 83556011000036108 Xyntha 141641000036102 moroctocog alfa 250 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +785931000168106 Fentanyl (Watson) 12 microgram/hour patch, 5, sachet 190794 785921000168108 Fentanyl (Watson) 12 microgram/hour patch, 5 785911000168101 Fentanyl (Watson) 12 microgram/hour patch 785901000168104 Fentanyl (Watson) 785901000168104 Fentanyl (Watson) 26685011000036103 fentanyl 12 microgram/hour patch, 5 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +69629011000036106 Laxettes chocolate 12 mg/square block, 36 squares, sachet 76933 67428011000036106 Laxettes chocolate 12 mg/square block, 36 squares 65658011000036106 Laxettes chocolate 12 mg/square block 64991011000036102 Laxettes 64991011000036102 Laxettes 71959011000036104 sennosides A and B 12 mg/square block, 36 squares 70262011000036107 sennosides A and B 12 mg/square block 69834011000036104 sennosides A and B +104231000036101 Ondansetron (Kabi) 8 mg/4 mL injection solution, 4 mL ampoule 188775 102361000036106 Ondansetron (Kabi) 8 mg/4 mL injection solution, 4 mL ampoule 99201000036103 Ondansetron (Kabi) 8 mg/4 mL injection solution, 4 mL ampoule 97751000036101 Ondansetron (Kabi) 97751000036101 Ondansetron (Kabi) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +923121000168105 Anastrozole (WT) 1 mg film-coated tablet, 30, blister pack 188392 923111000168103 Anastrozole (WT) 1 mg film-coated tablet, 30 923101000168101 Anastrozole (WT) 1 mg film-coated tablet 923091000168106 Anastrozole (WT) 923091000168106 Anastrozole (WT) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +121501000036101 Heartburn and Acid Indigestion Relief (Pharmacy Action) 150 mg film-coated tablet, 28, blister pack 191837 120421000036103 Heartburn and Acid Indigestion Relief (Pharmacy Action) 150 mg film-coated tablet, 28 119621000036102 Heartburn and Acid Indigestion Relief (Pharmacy Action) 150 mg film-coated tablet 119231000036103 Heartburn and Acid Indigestion Relief (Pharmacy Action) 119231000036103 Heartburn and Acid Indigestion Relief (Pharmacy Action) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +749921000168102 Tacrolimus (CH) 5 mg hard capsule, 100, blister pack 224278 749911000168109 Tacrolimus (CH) 5 mg hard capsule, 100 749861000168100 Tacrolimus (CH) 5 mg hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 652651000168101 tacrolimus 5 mg capsule, 100 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +751771000168104 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 20, blister pack 196502 751761000168105 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 20 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 671831000168101 metoclopramide hydrochloride 10 mg tablet, 20 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +833151000168105 Centrum film-coated tablet, 60, bottle 75827 833141000168108 Centrum film-coated tablet, 60 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833131000168104 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 60 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +698121000168106 Azathioprine (GH) 50 mg film-coated tablet, 100, blister pack 219041 698111000168104 Azathioprine (GH) 50 mg film-coated tablet, 100 698101000168102 Azathioprine (GH) 50 mg film-coated tablet 698091000168107 Azathioprine (GH) 698091000168107 Azathioprine (GH) 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +14211000036104 Quetiapine (GH) 200 mg film-coated tablet, 60, blister pack 179897 7821000036100 Quetiapine (GH) 200 mg film-coated tablet, 60 2201000036106 Quetiapine (GH) 200 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +816071000168102 Espler 50 mg film-coated tablet, 90, blister pack 231446 816061000168108 Espler 50 mg film-coated tablet, 90 815971000168105 Espler 50 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 790641000168103 eplerenone 50 mg tablet, 90 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +14171000036102 Trovas 80 mg film-coated tablet, 30, blister pack 179847 7781000036109 Trovas 80 mg film-coated tablet, 30 2401000036105 Trovas 80 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +95551000036102 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet, 50, blister pack 186049 94441000036100 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet, 50 93691000036106 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet 93351000036108 Fexofenadine Hydrochloride (Terry White Chemists) 93351000036108 Fexofenadine Hydrochloride (Terry White Chemists) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +61304011000036104 Regaine Men's Regular Strength 2% application, 3 x 60 mL, bottles 79911 57240011000036109 Regaine Men's Regular Strength 2% application, 3 x 60 mL 54250011000036102 Regaine Men's Regular Strength 2% application 12441000168104 Regaine Men's Regular Strength 12441000168104 Regaine Men's Regular Strength 63778011000036108 minoxidil 2% application, 3 x 60 mL 62111011000036107 minoxidil 2% application 21642011000036104 minoxidil +55111000036103 Thymoglobuline 25 mg powder for injection, 1 vial 139787 51211000036109 Thymoglobuline 25 mg powder for injection, 1 vial 49551000036105 Thymoglobuline 25 mg powder for injection, 25 mg vial 48181000036101 Thymoglobuline 48181000036101 Thymoglobuline 51221000036102 antithymocyte immunoglobulin rabbit 25 mg injection, 1 vial 49561000036108 antithymocyte immunoglobulin rabbit 25 mg injection, vial 56871000036108 antithymocyte immunoglobulin rabbit +18266011000036103 Duotrav eye drops solution, 2.5 mL, bottle 125607 11808011000036101 Duotrav eye drops solution, 2.5 mL 4893011000036104 Duotrav eye drops solution 53771000168102 Duotrav 53771000168102 Duotrav 26778011000036108 travoprost 0.004% + timolol 0.5% eye drops, 2.5 mL 22165011000036101 travoprost 0.004% + timolol 0.5% eye drops 21860011000036103 travoprost + timolol +18266011000036103 Duotrav eye drops solution, 2.5 mL, bottle 177772 11808011000036101 Duotrav eye drops solution, 2.5 mL 4893011000036104 Duotrav eye drops solution 53771000168102 Duotrav 53771000168102 Duotrav 26778011000036108 travoprost 0.004% + timolol 0.5% eye drops, 2.5 mL 22165011000036101 travoprost 0.004% + timolol 0.5% eye drops 21860011000036103 travoprost + timolol +1118081000168106 Quetiapine XR (Amneal) 200 mg modified release tablet, 60, blister pack 278883 1117951000168102 Quetiapine XR (Amneal) 200 mg modified release tablet, 60 1117941000168104 Quetiapine XR (Amneal) 200 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +888891000168107 Bosentan (Astron) 62.5 mg film-coated tablet, 500, bottle 235890 888881000168109 Bosentan (Astron) 62.5 mg film-coated tablet, 500 888831000168108 Bosentan (Astron) 62.5 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884281000168101 bosentan 62.5 mg tablet, 500 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1021671000168106 Voriconazole (Apo) 200 mg powder for injection, 1 vial 238283 1021661000168100 Voriconazole (Apo) 200 mg powder for injection, 1 vial 1021651000168102 Voriconazole (Apo) 200 mg powder for injection, 200 mg vial 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46801011000036109 voriconazole 200 mg injection, 1 vial 45322011000036105 voriconazole 200 mg injection, vial 44875011000036105 voriconazole +18508011000036106 Sprycel 70 mg film-coated tablet, 60, bottle 125561 11807011000036102 Sprycel 70 mg film-coated tablet, 60 4516011000036105 Sprycel 70 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 26777011000036107 dasatinib 70 mg tablet, 60 22164011000036100 dasatinib 70 mg tablet 21627011000036104 dasatinib +1090271000168105 Eleva 50 mg film-coated tablet, 28, bottle 95582 1090261000168104 Eleva 50 mg film-coated tablet, 28 7396011000036100 Eleva 50 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 46995011000036101 sertraline 50 mg tablet, 28 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +39301000036100 Levi 250 mg film-coated tablet, 60, blister pack 168790 35761000036104 Levi 250 mg film-coated tablet, 60 32461000036102 Levi 250 mg film-coated tablet 56201000168107 Levi 56201000168107 Levi 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +176901000036102 Madeline (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 202833 175111000036107 Madeline (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 173571000036105 Madeline (inert substance) film-coated tablet 172711000036101 Madeline 172711000036101 Madeline 115201000036107 desogestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +176901000036102 Madeline (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 202833 175111000036107 Madeline (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 173561000036102 Madeline (desogestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 172711000036101 Madeline 172711000036101 Madeline 115201000036107 desogestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 113001000036104 desogestrel 150 microgram + ethinylestradiol 30 microgram tablet 117021000036104 desogestrel + ethinylestradiol +918911000168102 Rosuvastatin (Generic Health) 5 mg film-coated tablet, 7, blister pack 210835 918901000168100 Rosuvastatin (Generic Health) 5 mg film-coated tablet, 7 918891000168104 Rosuvastatin (Generic Health) 5 mg film-coated tablet 918641000168106 Rosuvastatin (Generic Health) 918641000168106 Rosuvastatin (Generic Health) 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +773271000168107 Claratyne Liquid Capsule 10 mg soft capsule, 2, blister pack 175273 773261000168101 Claratyne Liquid Capsule 10 mg soft capsule, 2 773241000168100 Claratyne Liquid Capsule 10 mg soft capsule 773221000168106 Claratyne Liquid Capsule 773221000168106 Claratyne Liquid Capsule 773251000168103 loratadine 10 mg capsule, 2 773231000168109 loratadine 10 mg capsule 21701011000036106 loratadine +61062011000036106 Bisolvon Dry 10 mg/5 mL oral liquid solution, 200 mL, bottle 68185 57005011000036100 Bisolvon Dry 10 mg/5 mL oral liquid solution, 200 mL 54155011000036109 Bisolvon Dry 10 mg/5 mL oral liquid solution, 5 mL 53355011000036100 Bisolvon Dry 53355011000036100 Bisolvon Dry 63684011000036102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62045011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61744011000036109 dextromethorphan +1098811000168101 Antiseptic Ointment (Amcal) 10% ointment, 25 g, tube 271972 1098801000168104 Antiseptic Ointment (Amcal) 10% ointment, 25 g 1098791000168100 Antiseptic Ointment (Amcal) 10% ointment 1098781000168103 Antiseptic Ointment (Amcal) 1098781000168103 Antiseptic Ointment (Amcal) 71716011000036107 povidone-iodine 10% ointment, 25 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +79723011000036101 Rectogesic 0.2% ointment, 20 g, tube 66382 79534011000036101 Rectogesic 0.2% ointment, 20 g 79401011000036100 Rectogesic 0.2% ointment 76016011000036108 Rectogesic 76016011000036108 Rectogesic 79840011000036109 glyceryl trinitrate 0.2% ointment, 20 g 79757011000036109 glyceryl trinitrate 0.2% ointment 21388011000036102 glyceryl trinitrate +37931000036103 Epiccord 50 mg/25 mL concentrated injection, 25 mL vial 165694 34221000036103 Epiccord 50 mg/25 mL concentrated injection, 25 mL vial 32871000036108 Epiccord 50 mg/25 mL concentrated injection, 25 mL vial 32301000036107 Epiccord 32301000036107 Epiccord 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +20819011000036103 Adefin XL 60 mg modified release tablet, 30, blister pack 91778 13982011000036100 Adefin XL 60 mg modified release tablet, 30 7269011000036100 Adefin XL 60 mg modified release tablet 461000168108 Adefin XL 461000168108 Adefin XL 28290011000036102 nifedipine 60 mg modified release tablet, 30 23604011000036108 nifedipine 60 mg modified release tablet 21241011000036108 nifedipine +991761000168108 Amitriptyline (Apo) 50 mg film-coated tablet, 100, bottle 215390 991751000168106 Amitriptyline (Apo) 50 mg film-coated tablet, 100 991741000168109 Amitriptyline (Apo) 50 mg film-coated tablet 991701000168107 Amitriptyline (Apo) 991701000168107 Amitriptyline (Apo) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +33522011000036100 Citalobell 20 mg film-coated tablet, 28, blister pack 124714 33265011000036109 Citalobell 20 mg film-coated tablet, 28 33031011000036105 Citalobell 20 mg film-coated tablet 32991011000036103 Citalobell 32991011000036103 Citalobell 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +79659011000036108 Pradaxa 110 mg hard capsule, 60, bottle 138421 79467011000036107 Pradaxa 110 mg hard capsule, 60 79354011000036104 Pradaxa 110 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79801011000036105 dabigatran etexilate 110 mg capsule, 60 79737011000036108 dabigatran etexilate 110 mg capsule 79729011000036103 dabigatran +19787011000036108 Vistide 375 mg/5 mL concentrated injection, 5 mL vial 63050 13045011000036105 Vistide 375 mg/5 mL concentrated injection, 5 mL vial 6331011000036104 Vistide 375 mg/5 mL concentrated injection, 5 mL vial 3488011000036100 Vistide 3488011000036100 Vistide 27515011000036107 cidofovir 375 mg/5 mL injection, 5 mL vial 22857011000036107 cidofovir 375 mg/5 mL injection, vial 21907011000036109 cidofovir +20294011000036109 Frusemide (Chemmart) 40 mg uncoated tablet, 100, bottle 186521 13503011000036102 Frusemide (Chemmart) 40 mg uncoated tablet, 100 6785011000036106 Frusemide (Chemmart) 40 mg uncoated tablet 3810011000036105 Frusemide (Chemmart) 3810011000036105 Frusemide (Chemmart) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +20294011000036109 Frusemide (Chemmart) 40 mg uncoated tablet, 100, bottle 75581 13503011000036102 Frusemide (Chemmart) 40 mg uncoated tablet, 100 6785011000036106 Frusemide (Chemmart) 40 mg uncoated tablet 3810011000036105 Frusemide (Chemmart) 3810011000036105 Frusemide (Chemmart) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +1107401000168105 Delucon 200 mg film-coated tablet, 20, blister pack 172847 1107391000168108 Delucon 200 mg film-coated tablet, 20 1601000036103 Delucon 200 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +841841000168101 Atorvastatin (Amneal) 80 mg film-coated tablet, 20, blister pack 178525 841831000168105 Atorvastatin (Amneal) 80 mg film-coated tablet, 20 841791000168104 Atorvastatin (Amneal) 80 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841821000168107 atorvastatin 80 mg tablet, 20 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +140851000036109 Tamsulosin Hydrochloride SR (Sandoz) 400 microgram modified release tablet, 10, blister pack 196007 139321000036102 Tamsulosin Hydrochloride SR (Sandoz) 400 microgram modified release tablet, 10 137451000036105 Tamsulosin Hydrochloride SR (Sandoz) 400 microgram modified release tablet 20811000168107 Tamsulosin Hydrochloride SR (Sandoz) 20811000168107 Tamsulosin Hydrochloride SR (Sandoz) 139331000036100 tamsulosin hydrochloride 400 microgram modified release tablet, 10 33655011000036101 tamsulosin hydrochloride 400 microgram modified release tablet 33648011000036105 tamsulosin +14081000036104 Olanzapine ODT (PS) 5 mg orally disintegrating tablet, 28, blister pack 179083 7731000036105 Olanzapine ODT (PS) 5 mg orally disintegrating tablet, 28 1241000036102 Olanzapine ODT (PS) 5 mg orally disintegrating tablet 30591000168104 Olanzapine ODT (PS) 30591000168104 Olanzapine ODT (PS) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +11951000036107 Olanzapine (Generic Health) 7.5 mg tablet, 28, blister pack 152168 6671000036100 Olanzapine (Generic Health) 7.5 mg tablet, 28 3261000036102 Olanzapine (Generic Health) 7.5 mg tablet 711000168100 Olanzapine (Generic Health) 711000168100 Olanzapine (Generic Health) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +77412011000036104 Multivitamin and Minerals (Cenovis) film-coated tablet, 100, bottle 90801 76828011000036100 Multivitamin and Minerals (Cenovis) film-coated tablet, 100 76196011000036103 Multivitamin and Minerals (Cenovis) film-coated tablet 76005011000036103 Multivitamin and Minerals (Cenovis) 76005011000036103 Multivitamin and Minerals (Cenovis) 78332011000036105 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 75 mg + calcium (as hydrogen phosphate dihydrate) 10 mg (phosphorus 7.7 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 2 microgram + iron (as ferrous fumarate) 5 mg + iodine 145 microgram + magnesium (as oxide) 36 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 25 mg + calcium pantothenate 8 mg + potassium (as sulfate) 5 mg + pyridoxine hydrochloride 2 mg + retinol acetate 430 microgram (1250 units) + riboflavin 10 mg + thiamine nitrate 10 mg + zinc (as oxide) 1.5 mg tablet, 100 77611011000036107 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 75 mg + calcium (as hydrogen phosphate dihydrate) 10 mg (phosphorus 7.7 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 2 microgram + iron (as ferrous fumarate) 5 mg + iodine 145 microgram + magnesium (as oxide) 36 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 25 mg + calcium pantothenate 8 mg + potassium (as sulfate) 5 mg + pyridoxine hydrochloride 2 mg + retinol acetate 430 microgram (1250 units) + riboflavin 10 mg + thiamine nitrate 10 mg + zinc (as oxide) 1.5 mg tablet 77471011000036104 dl-alpha-tocopherol + ascorbic acid + calcium hydrogen phosphate dihydrate + colecalciferol + cupric sulfate + cyanocobalamin + ferrous fumarate + iodine + magnesium oxide + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + potassium sulfate + pyridoxine + retinol acetate + riboflavin + thiamine + zinc oxide +17898011000036102 Ondaz Zydis 8 mg wafer, 4, blister pack 116435 11525011000036104 Ondaz Zydis 8 mg wafer, 4 5086011000036103 Ondaz Zydis 8 mg wafer 51911000168109 Ondaz Zydis 51911000168109 Ondaz Zydis 27519011000036109 ondansetron 8 mg wafer, 4 22859011000036100 ondansetron 8 mg wafer 21545011000036100 ondansetron +985341000168105 Afstyla (1 x 2000 units vial, 1 x inert diluent vial), 1 pack, composite pack 271636 985331000168101 Afstyla (1 x 2000 units vial, 1 x inert diluent vial), 1 pack 984581000168106 Afstyla (inert substance) diluent, vial 984051000168109 Afstyla 984051000168109 Afstyla 985321000168104 lonoctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +985341000168105 Afstyla (1 x 2000 units vial, 1 x inert diluent vial), 1 pack, composite pack 271636 985331000168101 Afstyla (1 x 2000 units vial, 1 x inert diluent vial), 1 pack 985311000168106 Afstyla (lonoctocog alfa 2000 units) powder for injection, 2000 units vial 984051000168109 Afstyla 984051000168109 Afstyla 985321000168104 lonoctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 985301000168108 lonoctocog alfa 2000 units injection, vial 984551000168104 lonoctocog alfa +86112011000036102 Levetiracetam (Apo) 250 mg tablet, 100, bottle 156322 85709011000036102 Levetiracetam (Apo) 250 mg tablet, 100 85346011000036103 Levetiracetam (Apo) 250 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 86439011000036104 levetiracetam 250 mg tablet, 100 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +37694011000036103 Ebixa 10 mg film-coated tablet, 50, blister pack 82026 36960011000036108 Ebixa 10 mg film-coated tablet, 50 36282011000036108 Ebixa 10 mg film-coated tablet 19751000168102 Ebixa 19751000168102 Ebixa 38841011000036109 memantine hydrochloride 10 mg tablet, 50 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +19568011000036108 Amaryl 4 mg uncoated tablet, 30, blister pack 57191 12839011000036100 Amaryl 4 mg uncoated tablet, 30 6130011000036102 Amaryl 4 mg uncoated tablet 4320011000036103 Amaryl 4320011000036103 Amaryl 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +920691011000036105 Fluconazole (Sandoz) 200 mg hard capsule, 28, blister pack 104293 920353011000036109 Fluconazole (Sandoz) 200 mg hard capsule, 28 920123011000036100 Fluconazole (Sandoz) 200 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +20513011000036100 Sotahexal 80 mg uncoated tablet, 60, blister pack 78710 13713011000036104 Sotahexal 80 mg uncoated tablet, 60 6995011000036100 Sotahexal 80 mg uncoated tablet 2989011000036101 Sotahexal 2989011000036101 Sotahexal 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +974541000168105 Amlodipine (Amneal) 10 mg tablet, 30, blister pack 212155 974531000168101 Amlodipine (Amneal) 10 mg tablet, 30 974521000168104 Amlodipine (Amneal) 10 mg tablet 973861000168109 Amlodipine (Amneal) 973861000168109 Amlodipine (Amneal) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +44359011000036106 Reductil 15 mg hard capsule, 7, blister pack 68116 41826011000036107 Reductil 15 mg hard capsule, 7 40215011000036105 Reductil 15 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46632011000036103 sibutramine hydrochloride 15 mg capsule, 7 45246011000036100 sibutramine hydrochloride 15 mg capsule 44877011000036100 sibutramine +14121000036101 Trovas 20 mg film-coated tablet, 30, blister pack 179829 7761000036104 Trovas 20 mg film-coated tablet, 30 2421000036100 Trovas 20 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +104141000036100 Irbesartan (Chemmart) 300 mg tablet, 30, blister pack 216058 101321000036109 Irbesartan (Chemmart) 300 mg tablet, 30 98751000036100 Irbesartan (Chemmart) 300 mg tablet 97631000036103 Irbesartan (Chemmart) 97631000036103 Irbesartan (Chemmart) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +104141000036100 Irbesartan (Chemmart) 300 mg tablet, 30, blister pack 169790 101321000036109 Irbesartan (Chemmart) 300 mg tablet, 30 98751000036100 Irbesartan (Chemmart) 300 mg tablet 97631000036103 Irbesartan (Chemmart) 97631000036103 Irbesartan (Chemmart) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +884711000168103 Betarc 16 mg tablet, 10, blister pack 231715 884701000168101 Betarc 16 mg tablet, 10 884691000168101 Betarc 16 mg tablet 884681000168104 Betarc 884681000168104 Betarc 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +61546011000036102 Pain (Chemists' Own) uncoated tablet, 20, bottle 93828 57473011000036101 Pain (Chemists' Own) uncoated tablet, 20 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +45791000036105 Simvastatin (DRLA) 40 mg film-coated tablet, 30, blister pack 194759 43801000036105 Simvastatin (DRLA) 40 mg film-coated tablet, 30 41171000036109 Simvastatin (DRLA) 40 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +781911000168104 Voriconazole (Alphapharm) 50 mg film-coated tablet, 2, blister pack 206984 781901000168102 Voriconazole (Alphapharm) 50 mg film-coated tablet, 2 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46814011000036109 voriconazole 50 mg tablet, 2 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +968101000168103 Revestive (28 x 5 mg vials, 28 x 0.5 mL inert diluent syringes), 1 pack, composite pack 274911 968091000168108 Revestive (28 x 5 mg vials, 28 x 0.5 mL inert diluent syringes), 1 pack 968071000168107 Revestive (inert substance) diluent, 0.5 mL syringe 968031000168109 Revestive 968031000168109 Revestive 968081000168105 teduglutide 5 mg injection [28 vials] (&) inert substance diluent [28 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +968101000168103 Revestive (28 x 5 mg vials, 28 x 0.5 mL inert diluent syringes), 1 pack, composite pack 274911 968091000168108 Revestive (28 x 5 mg vials, 28 x 0.5 mL inert diluent syringes), 1 pack 968061000168101 Revestive (teduglutide 5 mg) powder for injection, 5 mg vial 968031000168109 Revestive 968031000168109 Revestive 968081000168105 teduglutide 5 mg injection [28 vials] (&) inert substance diluent [28 x 0.5 mL syringes], 1 pack 968051000168103 teduglutide 5 mg injection, vial 968041000168100 teduglutide +803331000168108 Abilify ODT 20 mg orally disintegrating tablet, 56, blister pack 128903 803321000168105 Abilify ODT 20 mg orally disintegrating tablet, 56 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803311000168103 aripiprazole 20 mg orally disintegrating tablet, 56 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +73901000036100 Pioglitazone (Pfizer) 45 mg uncoated tablet, 28, blister pack 176387 71591000036104 Pioglitazone (Pfizer) 45 mg uncoated tablet, 28 70391000036103 Pioglitazone (Pfizer) 45 mg uncoated tablet 69351000036109 Pioglitazone (Pfizer) 69351000036109 Pioglitazone (Pfizer) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +56621000036108 Lanez 2.5 mg film-coated tablet, 28, blister pack 163407 53051000036101 Lanez 2.5 mg film-coated tablet, 28 48591000036107 Lanez 2.5 mg film-coated tablet 47331000168108 Lanez 47331000168108 Lanez 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +931623011000036108 Pravista 80 mg film-coated tablet, 90, bottle 163563 930784011000036100 Pravista 80 mg film-coated tablet, 90 930043011000036109 Pravista 80 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932409011000036101 pravastatin sodium 80 mg tablet, 90 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +766921000168100 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 211154 766911000168107 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 766831000168106 Micronelle 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 766821000168108 Micronelle 20 ED 766821000168108 Micronelle 20 ED 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +766921000168100 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 211154 766911000168107 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 766841000168102 Micronelle 20 ED (inert substance) film-coated tablet 766821000168108 Micronelle 20 ED 766821000168108 Micronelle 20 ED 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +948971000168102 Risperidone (GA) 6 mg film-coated tablet, 60, bottle 127879 948951000168106 Risperidone (GA) 6 mg film-coated tablet, 60 948941000168109 Risperidone (GA) 6 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 929205011000036107 risperidone 6 mg tablet, 60 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +987511000168108 Urorec 8 mg hard capsule, 30, blister pack 275265 987501000168105 Urorec 8 mg hard capsule, 30 987451000168108 Urorec 8 mg hard capsule 987341000168104 Urorec 987341000168104 Urorec 987491000168103 silodosin 8 mg capsule, 30 987441000168106 silodosin 8 mg capsule 987351000168102 silodosin +679111000168101 Benadryl Chesty Forte oral liquid solution, 200 mL, bottle (Old Formulation 2017) 73178 679101000168104 Benadryl Chesty Forte oral liquid solution, 200 mL (Old Formulation 2017) 679071000168108 Benadryl Chesty Forte oral liquid solution, 5 mL (Old Formulation 2017) 679061000168102 Benadryl Chesty Forte 679061000168102 Benadryl Chesty Forte 63967011000036105 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +60670011000036100 Panadol Gel Cap 500 mg gelatin coated tablet, 4, blister pack 40932 56628011000036108 Panadol Gel Cap 500 mg gelatin coated tablet, 4 54014011000036106 Panadol Gel Cap 500 mg gelatin coated tablet 3661000168107 Panadol Gel Cap 3661000168107 Panadol Gel Cap 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +700541000168101 Adempas 1.5 mg film-coated tablet, 42, blister pack 207597 700531000168105 Adempas 1.5 mg film-coated tablet, 42 700511000168100 Adempas 1.5 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700521000168107 riociguat 1.5 mg tablet, 42 700501000168103 riociguat 1.5 mg tablet 700211000168102 riociguat +1017381000168102 Imatinib (Apotex) 100 mg film-coated tablet, 60, blister pack 196036 1017371000168100 Imatinib (Apotex) 100 mg film-coated tablet, 60 1017361000168106 Imatinib (Apotex) 100 mg film-coated tablet 848961000168101 Imatinib (Apotex) 848961000168101 Imatinib (Apotex) 28142011000036106 imatinib 100 mg tablet, 60 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +18382011000036107 Fluzole 50 mg hard capsule, 28, blister pack 120775 11656011000036104 Fluzole 50 mg hard capsule, 28 5772011000036109 Fluzole 50 mg hard capsule 57311000168100 Fluzole 57311000168100 Fluzole 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +1120331000168102 Xque XR 400 mg modified release tablet, 60, blister pack 226806 1120321000168100 Xque XR 400 mg modified release tablet, 60 1120271000168107 Xque XR 400 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +60105011000036102 Nurofen 200 mg sugar coated tablet, 72, blister pack 127272 56066011000036107 Nurofen 200 mg sugar coated tablet, 72 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63320011000036106 ibuprofen 200 mg tablet, 72 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +86872011000036103 Topiramate (GA) 50 mg film-coated tablet, 60, blister pack 155178 86758011000036100 Topiramate (GA) 50 mg film-coated tablet, 60 86634011000036102 Topiramate (GA) 50 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +931661000168105 Centevo 100/25/200 mg film-coated tablet, 50, bottle 238855 931651000168108 Centevo 100/25/200 mg film-coated tablet, 50 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931641000168106 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 50 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +820011000168101 Daktarin 2% oral gel, 10 g, tube 13287 820001000168104 Daktarin 2% oral gel, 10 g 819981000168105 Daktarin 2% oral gel 431000168100 Daktarin 431000168100 Daktarin 819991000168108 miconazole 2% oral gel, 10 g 817971000168100 miconazole 2% oral gel 21454011000036108 miconazole +20986011000036101 Simvar 10 mg film-coated tablet, 30, blister pack 95949 14132011000036107 Simvar 10 mg film-coated tablet, 30 7410011000036109 Simvar 10 mg film-coated tablet 3363011000036100 Simvar 3363011000036100 Simvar 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1047511000168106 Bupretec 5 microgram/hour patch, 2, sachet 234730 1047501000168108 Bupretec 5 microgram/hour patch, 2 1047471000168102 Bupretec 5 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 26680011000036107 buprenorphine 5 microgram/hour patch, 2 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +116841000036103 Famciclovir (Auro) 500 mg film-coated tablet, 56, blister pack 195182 115091000036106 Famciclovir (Auro) 500 mg film-coated tablet, 56 113501000036106 Famciclovir (Auro) 500 mg film-coated tablet 112681000036107 Famciclovir (Auro) 112681000036107 Famciclovir (Auro) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +953271000168101 Gabapentin (AN) 300 mg hard capsule, 1000, blister pack 263841 953261000168107 Gabapentin (AN) 300 mg hard capsule, 1000 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953251000168105 gabapentin 300 mg capsule, 1000 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +14051000036106 Ramipril (Chemmart) 10 mg capsule, 30, blister pack 179019 7701000036103 Ramipril (Chemmart) 10 mg capsule, 30 3341000036106 Ramipril (Chemmart) 10 mg capsule 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +18283011000036107 Retrovir 250 mg hard capsule, 60, blister pack 10996 11399011000036105 Retrovir 250 mg hard capsule, 60 5138011000036102 Retrovir 250 mg hard capsule 3895011000036100 Retrovir 3895011000036100 Retrovir 26634011000036109 zidovudine 250 mg capsule, 60 22040011000036108 zidovudine 250 mg capsule 21429011000036108 zidovudine +987831000168100 Zyprexa 20 mg film-coated tablet, 28, blister pack 77390 987821000168103 Zyprexa 20 mg film-coated tablet, 28 987811000168105 Zyprexa 20 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 6841000036106 olanzapine 20 mg tablet, 28 1361000036106 olanzapine 20 mg tablet 21485011000036103 olanzapine +43881011000036102 Pravastatin Sodium (RL) 40 mg uncoated tablet, 30, bottle 129599 11611011000036101 Pravastatin Sodium (RL) 40 mg uncoated tablet, 30 6011011000036109 Pravastatin Sodium (RL) 40 mg uncoated tablet 3142011000036109 Pravastatin Sodium (RL) 3142011000036109 Pravastatin Sodium (RL) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +81197011000036103 Sennesoft (Herron) film-coated tablet, 100, blister pack 82877 80699011000036103 Sennesoft (Herron) film-coated tablet, 100 80243011000036107 Sennesoft (Herron) film-coated tablet 18961000168106 Sennesoft (Herron) 18961000168106 Sennesoft (Herron) 81751011000036106 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 100 81306011000036109 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet 81227011000036109 sennoside B + senna leaf powder + docusate +830741000168102 Atomoxetine (Apo) 40 mg hard capsule, 56, blister pack 234810 830731000168106 Atomoxetine (Apo) 40 mg hard capsule, 56 830641000168107 Atomoxetine (Apo) 40 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830721000168108 atomoxetine 40 mg capsule, 56 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +978471000168106 Rexulti 3 mg film-coated tablet, 30, blister pack 273221 978461000168100 Rexulti 3 mg film-coated tablet, 30 978411000168103 Rexulti 3 mg film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978451000168102 brexpiprazole 3 mg tablet, 30 978401000168101 brexpiprazole 3 mg tablet 978131000168104 brexpiprazole +95371000036104 Clearlax (MediHealth) 17 g powder for oral liquid, 30 sachets 173393 94201000036102 Clearlax (MediHealth) 17 g powder for oral liquid, 30 sachets 93571000036106 Clearlax (MediHealth) 17 g powder for oral liquid, 1 sachet 922945011000036108 Clearlax (MediHealth) 922945011000036108 Clearlax (MediHealth) 94211000036100 macrogol-3350 17 g powder for oral liquid, 30 sachets 93581000036108 macrogol-3350 17 g powder for oral liquid, 1 sachet 87750011000036101 macrogol-3350 +44123011000036104 Sevorane 1 mL/mL inhalation solution, 250 mL, bottle 51919 41599011000036105 Sevorane 1 mL/mL inhalation solution, 250 mL 40091011000036100 Sevorane 1 mL/mL inhalation solution 39739011000036108 Sevorane 39739011000036108 Sevorane 46421011000036109 sevoflurane 1 mL/mL inhalation solution, 250 mL 45144011000036106 sevoflurane 1 mL/mL inhalation solution 44873011000036109 sevoflurane +905661000168101 Ceftriaxone (Kabi) 2 g powder for injection, 10 vials 223324 905651000168103 Ceftriaxone (Kabi) 2 g powder for injection, 10 vials 905591000168109 Ceftriaxone (Kabi) 2 g powder for injection, 2 g vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 905641000168100 ceftriaxone 2 g injection, 10 vials 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +1038991000168108 Atorvastatin (Actavis) 10 mg film-coated tablet, 30, blister pack 185027 1038981000168105 Atorvastatin (Actavis) 10 mg film-coated tablet, 30 1038951000168103 Atorvastatin (Actavis) 10 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +921968011000036105 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles 48243 921526011000036106 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles 921061011000036105 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 75 mL bottle 21931000168100 Omnipaque-300 21931000168100 Omnipaque-300 922648011000036103 iohexol 647 mg (iodine 300 mg)/mL injection, 10 x 75 mL bottles 922133011000036108 iohexol 647 mg (iodine 300 mg)/mL injection, 75 mL bottle 77459011000036103 iohexol +20928011000036106 Butamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 93950 14082011000036105 Butamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 7360011000036101 Butamol 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 3074011000036108 Butamol 3074011000036108 Butamol 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +20928011000036106 Butamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 158052 14082011000036105 Butamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 7360011000036101 Butamol 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 3074011000036108 Butamol 3074011000036108 Butamol 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +931777011000036105 Concerta 54 mg modified release tablet, 100, bottle 93864 930937011000036108 Concerta 54 mg modified release tablet, 100 7355011000036104 Concerta 54 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932506011000036101 methylphenidate hydrochloride 54 mg modified release tablet, 100 23439011000036102 methylphenidate hydrochloride 54 mg modified release tablet 21277011000036101 methylphenidate +1077801000168109 Atomoxetine (AN) 100 mg hard capsule, 28, blister pack 234798 1077791000168108 Atomoxetine (AN) 100 mg hard capsule, 28 1077741000168100 Atomoxetine (AN) 100 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +19326011000036103 Glucophage 850 mg film-coated tablet, 60, blister pack 50469 12616011000036107 Glucophage 850 mg film-coated tablet, 60 5046011000036106 Glucophage 850 mg film-coated tablet 3898011000036106 Glucophage 3898011000036106 Glucophage 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +19142011000036105 Pressin 2 mg uncoated tablet, 100, blister pack 44557 12441011000036109 Pressin 2 mg uncoated tablet, 100 4855011000036106 Pressin 2 mg uncoated tablet 3517011000036105 Pressin 3517011000036105 Pressin 27728011000036108 prazosin 2 mg tablet, 100 23063011000036102 prazosin 2 mg tablet 21544011000036104 prazosin +807671000168109 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) uncoated tablet, 30, blister pack 224314 807661000168103 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) uncoated tablet, 30 807651000168100 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) uncoated tablet 807641000168102 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) 807641000168102 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +928950011000036107 Topiramate (Generic Health) 100 mg film-coated tablet, 60, bottle 155213 928311011000036103 Topiramate (Generic Health) 100 mg film-coated tablet, 60 927940011000036101 Topiramate (Generic Health) 100 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +11911000036108 Venlafaxine XR (Sandoz) 75 mg modified release capsule, 28, blister pack 151880 6631000036102 Venlafaxine XR (Sandoz) 75 mg modified release capsule, 28 2591000036101 Venlafaxine XR (Sandoz) 75 mg modified release capsule 14321000168105 Venlafaxine XR (Sandoz) 14321000168105 Venlafaxine XR (Sandoz) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +11911000036108 Venlafaxine XR (Sandoz) 75 mg modified release capsule, 28, blister pack 285261 6631000036102 Venlafaxine XR (Sandoz) 75 mg modified release capsule, 28 2591000036101 Venlafaxine XR (Sandoz) 75 mg modified release capsule 14321000168105 Venlafaxine XR (Sandoz) 14321000168105 Venlafaxine XR (Sandoz) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +921959011000036107 Zofran 8 mg/4 mL injection solution, 10 x 4 mL ampoules 47264 921517011000036100 Zofran 8 mg/4 mL injection solution, 10 x 4 mL ampoules 5196011000036106 Zofran 8 mg/4 mL injection solution, 4 mL ampoule 2471000168108 Zofran 2471000168108 Zofran 922639011000036105 ondansetron 8 mg/4 mL injection, 10 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +68931011000036106 Nicotinell Mint 4 mg chewing gum, 180, blister pack 126044 66701011000036101 Nicotinell Mint 4 mg chewing gum, 180 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71517011000036106 nicotine 4 mg gum, 180 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +19234011000036100 Proxen SR 750 mg modified release tablet, 28, bottle 47373 12525011000036100 Proxen SR 750 mg modified release tablet, 28 5298011000036107 Proxen SR 750 mg modified release tablet 50891000168102 Proxen SR 50891000168102 Proxen SR 27172011000036104 naproxen 750 mg modified release tablet, 28 22534011000036101 naproxen 750 mg modified release tablet 21304011000036105 naproxen +1051851000168100 Oxylieve MR 40 mg modified release tablet, 20, blister pack 153602 1051841000168102 Oxylieve MR 40 mg modified release tablet, 20 1051831000168106 Oxylieve MR 40 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +914251000168103 Amoxyclav 875/125 (Generic Health) film-coated tablet, 2, blister pack 255076 914241000168100 Amoxyclav 875/125 (Generic Health) film-coated tablet, 2 914131000168104 Amoxyclav 875/125 (Generic Health) film-coated tablet 914121000168102 Amoxyclav 875/125 (Generic Health) 914121000168102 Amoxyclav 875/125 (Generic Health) 913921000168101 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 2 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +987031000168105 Act-3 200 mg soft capsule, 10, blister pack 77290 987021000168107 Act-3 200 mg soft capsule, 10 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63926011000036103 ibuprofen 200 mg capsule, 10 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +176741000036101 Cadivast 10/80 film-coated tablet, 30, bottle 199217 174911000036106 Cadivast 10/80 film-coated tablet, 30 172931000036108 Cadivast 10/80 film-coated tablet 46581000168104 Cadivast 10/80 46581000168104 Cadivast 10/80 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +931700011000036104 Citalopram (Pfizer) 40 mg film-coated tablet, 28, blister pack 171338 930860011000036105 Citalopram (Pfizer) 40 mg film-coated tablet, 28 930078011000036100 Citalopram (Pfizer) 40 mg film-coated tablet 929840011000036102 Citalopram (Pfizer) 929840011000036102 Citalopram (Pfizer) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +84401011000036100 Zanidip 10 mg film-coated tablet, 28, blister pack 77506 84092011000036101 Zanidip 10 mg film-coated tablet, 28 6900011000036107 Zanidip 10 mg film-coated tablet 4164011000036108 Zanidip 4164011000036108 Zanidip 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +46111000036105 Atorvastatin (Stada) 10 mg film-coated tablet, 30, blister pack 180322 43391000036105 Atorvastatin (Stada) 10 mg film-coated tablet, 30 41041000036103 Atorvastatin (Stada) 10 mg film-coated tablet 40251000036104 Atorvastatin (Stada) 40251000036104 Atorvastatin (Stada) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +848061000168102 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 222684 848051000168104 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 847881000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet 692001000168103 Alendronate Plus D3 and Calcium (Sandoz) 691961000168107 Calcium (Sandoz) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +848061000168102 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 222684 848051000168104 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 718911000168109 Alendronate Plus D3 70 mg/140 microgram (Sandoz) uncoated tablet 692001000168103 Alendronate Plus D3 and Calcium (Sandoz) 718901000168106 Alendronate Plus D3 70 mg/140 microgram (Sandoz) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +44481011000036108 Diprivan 500 mg/50 mL injection emulsion, 50 mL syringe 75562 41936011000036101 Diprivan 500 mg/50 mL injection emulsion, 50 mL syringe 40273011000036101 Diprivan 500 mg/50 mL injection emulsion, 50 mL syringe 39630011000036106 Diprivan 39630011000036106 Diprivan 46723011000036100 propofol 500 mg/50 mL injection, 50 mL syringe 45283011000036102 propofol 500 mg/50 mL injection, syringe 37750011000036109 propofol +815671000168104 Deflectum 10/5 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200821 815661000168105 Deflectum 10/5 (perindopril arginine/amlodipine) uncoated tablet, 10 815651000168108 Deflectum 10/5 (perindopril arginine/amlodipine) uncoated tablet 815641000168106 Deflectum 10/5 (perindopril arginine/amlodipine) 815641000168106 Deflectum 10/5 (perindopril arginine/amlodipine) 86427011000036108 perindopril arginine 10 mg + amlodipine 5 mg tablet, 10 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +86781000036107 Gynol II 2% vaginal gel, 108 g, tube 102963 86351000036104 Gynol II 2% vaginal gel, 108 g 86061000036104 Gynol II 2% vaginal gel 19711000168103 Gynol II 19711000168103 Gynol II 86361000036101 nonoxinol-9 2% vaginal gel, 108 g 86071000036107 nonoxinol-9 2% vaginal gel 931798011000036100 nonoxinol-9 +69312011000036103 Riodine S Surgical Scrub 7.5% solution, 5 L, bottle 21200 67112011000036104 Riodine S Surgical Scrub 7.5% solution, 5 L 65301011000036103 Riodine S Surgical Scrub 7.5% solution 35091000168101 Riodine S Surgical Scrub 35091000168101 Riodine S Surgical Scrub 71680011000036100 povidone-iodine 7.5% solution, 5 L 70175011000036106 povidone-iodine 7.5% solution 21660011000036108 povidone-iodine +60589011000036109 Zadine 100 microgram/mL oral liquid solution, 100 mL, bottle 18226 56547011000036101 Zadine 100 microgram/mL oral liquid solution, 100 mL 53967011000036109 Zadine 100 microgram/mL oral liquid solution 53132011000036100 Zadine 53132011000036100 Zadine 63413011000036103 azatadine maleate 100 microgram/mL oral liquid, 100 mL 61950011000036109 azatadine maleate 100 microgram/mL oral liquid 61785011000036102 azatadine +43997011000036104 Brevibloc 100 mg/10 mL injection solution, 20 x 10 mL vials 43494 41488011000036107 Brevibloc 100 mg/10 mL injection solution, 20 x 10 mL vials 40011011000036101 Brevibloc 100 mg/10 mL injection solution, 10 mL vial 39685011000036107 Brevibloc 39685011000036107 Brevibloc 46334011000036102 esmolol hydrochloride 100 mg/10 mL injection, 20 x 10 mL vials 45087011000036101 esmolol hydrochloride 100 mg/10 mL injection, vial 44945011000036102 esmolol +743661000168104 Jardiamet 12.5 mg/1000 mg film-coated tablet, 60, blister pack 229820 743651000168101 Jardiamet 12.5 mg/1000 mg film-coated tablet, 60 743601000168100 Jardiamet 12.5 mg/1000 mg film-coated tablet 743581000168109 Jardiamet 12.5 mg/1000 mg 743581000168109 Jardiamet 12.5 mg/1000 mg 743641000168103 empagliflozin 12.5 mg + metformin hydrochloride 1 g tablet, 60 743591000168107 empagliflozin 12.5 mg + metformin hydrochloride 1 g tablet 743221000168107 empagliflozin + metformin +982731000168105 Glivec 50 mg hard capsule, 30, blister pack 78441 982721000168107 Glivec 50 mg hard capsule, 30 982701000168103 Glivec 50 mg hard capsule 3084011000036104 Glivec 3084011000036104 Glivec 982711000168100 imatinib 50 mg capsule, 30 982691000168103 imatinib 50 mg capsule 21401011000036104 imatinib +839421000168107 Advantan 0.1% fatty ointment, 5 g, tube 49382 839411000168100 Advantan 0.1% fatty ointment, 5 g 4508011000036106 Advantan 0.1% fatty ointment 3513011000036101 Advantan 3513011000036101 Advantan 839401000168103 methylprednisolone aceponate 0.1% fatty ointment, 5 g 124361000036108 methylprednisolone aceponate 0.1% fatty ointment 21605011000036100 methylprednisolone +86095011000036101 Lisinopril (GA) 10 mg uncoated tablet, 84, blister pack 106501 85619011000036106 Lisinopril (GA) 10 mg uncoated tablet, 84 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 86422011000036106 lisinopril 10 mg tablet, 84 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +933761000168103 Centevo 200/50/200 mg film-coated tablet, 98, bottle 238859 933751000168100 Centevo 200/50/200 mg film-coated tablet, 98 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933741000168102 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 98 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +123331000036100 Firmagon (1 x 80 mg vial, 1 x inert diluent vial), 1 pack, composite pack 155074 123061000036108 Firmagon (1 x 80 mg vial, 1 x inert diluent vial), 1 pack 923030011000036100 Firmagon (inert substance) diluent, vial 922953011000036105 Firmagon 922953011000036105 Firmagon 123071000036100 degarelix 80 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +123331000036100 Firmagon (1 x 80 mg vial, 1 x inert diluent vial), 1 pack, composite pack 155074 123061000036108 Firmagon (1 x 80 mg vial, 1 x inert diluent vial), 1 pack 122731000036106 Firmagon (degarelix 80 mg) powder for injection, 80 mg vial 922953011000036105 Firmagon 922953011000036105 Firmagon 123071000036100 degarelix 80 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 122741000036101 degarelix 80 mg injection, vial 923929011000036103 degarelix +61223011000036103 Antifungal Clotrimazole (Soul Pattinson) 1% cream, 20 g, tube 76703 57159011000036102 Antifungal Clotrimazole (Soul Pattinson) 1% cream, 20 g 54220011000036101 Antifungal Clotrimazole (Soul Pattinson) 1% cream 53391011000036106 Antifungal Clotrimazole (Soul Pattinson) 53391011000036106 Antifungal Clotrimazole (Soul Pattinson) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +908541000168107 Celecoxib (Lup) 200 mg hard capsule, 120, blister pack 196189 908531000168103 Celecoxib (Lup) 200 mg hard capsule, 120 908421000168100 Celecoxib (Lup) 200 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +19551011000036106 Ikorel 20 mg uncoated tablet, 60, blister pack 56846 12823011000036100 Ikorel 20 mg uncoated tablet, 60 6114011000036102 Ikorel 20 mg uncoated tablet 4319011000036104 Ikorel 4319011000036104 Ikorel 27380011000036102 nicorandil 20 mg tablet, 60 22729011000036103 nicorandil 20 mg tablet 21260011000036106 nicorandil +1107311000168104 Olumiant 4 mg film-coated tablet, 28, blister pack 277917 1107301000168102 Olumiant 4 mg film-coated tablet, 28 1107251000168108 Olumiant 4 mg film-coated tablet 1107071000168109 Olumiant 1107071000168109 Olumiant 1107291000168103 baricitinib 4 mg tablet, 28 1107241000168106 baricitinib 4 mg tablet 1107081000168107 baricitinib +37486011000036107 Meloxicam (Winthrop) 7.5 mg uncoated tablet, 30, blister pack 127739 36754011000036103 Meloxicam (Winthrop) 7.5 mg uncoated tablet, 30 36126011000036104 Meloxicam (Winthrop) 7.5 mg uncoated tablet 35876011000036108 Meloxicam (Winthrop) 35876011000036108 Meloxicam (Winthrop) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +925283011000036100 Votrient 200 mg film-coated tablet, 30, bottle 161282 924820011000036100 Votrient 200 mg film-coated tablet, 30 924513011000036103 Votrient 200 mg film-coated tablet 924364011000036100 Votrient 924364011000036100 Votrient 925425011000036106 pazopanib 200 mg tablet, 30 925382011000036100 pazopanib 200 mg tablet 925371011000036103 pazopanib +683131000168100 Finasteride (AN) 5 mg film-coated tablet, 30, blister pack 189273 683121000168103 Finasteride (AN) 5 mg film-coated tablet, 30 683111000168105 Finasteride (AN) 5 mg film-coated tablet 683101000168107 Finasteride (AN) 683101000168107 Finasteride (AN) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +854571000168109 Quetiapine (Alkem) 100 mg film-coated tablet, 60, blister pack 204851 854561000168103 Quetiapine (Alkem) 100 mg film-coated tablet, 60 854531000168106 Quetiapine (Alkem) 100 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1025921000168104 Pregabalin (Amneal) 25 mg hard capsule, 84, blister pack 235857 1025911000168106 Pregabalin (Amneal) 25 mg hard capsule, 84 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970161000168109 pregabalin 25 mg capsule, 84 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +807761000168106 Irbesartan (Apo) 75 mg film-coated tablet, 30, blister pack 169797 807751000168109 Irbesartan (Apo) 75 mg film-coated tablet, 30 807741000168107 Irbesartan (Apo) 75 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +807761000168106 Irbesartan (Apo) 75 mg film-coated tablet, 30, blister pack 213325 807751000168109 Irbesartan (Apo) 75 mg film-coated tablet, 30 807741000168107 Irbesartan (Apo) 75 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +917221000168101 Empliciti 300 mg powder for injection, 1 vial 260052 917211000168108 Empliciti 300 mg powder for injection, 1 vial 917191000168107 Empliciti 300 mg powder for injection, vial 917111000168103 Empliciti 917111000168103 Empliciti 917201000168105 elotuzumab 300 mg injection, 1 vial 917181000168109 elotuzumab 300 mg injection, vial 917121000168105 elotuzumab +978391000168103 Rexulti 2 mg film-coated tablet, 30, blister pack 273223 978381000168101 Rexulti 2 mg film-coated tablet, 30 978331000168102 Rexulti 2 mg film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978371000168104 brexpiprazole 2 mg tablet, 30 978321000168100 brexpiprazole 2 mg tablet 978131000168104 brexpiprazole +91261000036100 Ledip 20 mg film-coated tablet, 28, blister pack 172206 89591000036109 Ledip 20 mg film-coated tablet, 28 88551000036107 Ledip 20 mg film-coated tablet 87531000036100 Ledip 87531000036100 Ledip 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +992081000168105 Sitagliptin (Apo) 50 mg coated tablet, 28, blister pack 224389 992071000168107 Sitagliptin (Apo) 50 mg coated tablet, 28 992061000168101 Sitagliptin (Apo) 50 mg coated tablet 992051000168103 Sitagliptin (Apo) 992051000168103 Sitagliptin (Apo) 39484011000036106 sitagliptin 50 mg tablet, 28 39438011000036106 sitagliptin 50 mg tablet 39426011000036109 sitagliptin +59702011000036104 Anti-Fungal (Amcal) 1% cream, 20 g, tube 102019 55674011000036100 Anti-Fungal (Amcal) 1% cream, 20 g 53621011000036108 Anti-Fungal (Amcal) 1% cream 53464011000036101 Anti-Fungal (Amcal) 53464011000036101 Anti-Fungal (Amcal) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +19067011000036109 Eleuphrat 0.05% cream, 15 g, tube 41865 12375011000036103 Eleuphrat 0.05% cream, 15 g 4872011000036101 Eleuphrat 0.05% cream 3233011000036101 Eleuphrat 3233011000036101 Eleuphrat 27084011000036108 betamethasone (as dipropionate) 0.05% cream, 15 g 22453011000036107 betamethasone (as dipropionate) 0.05% cream 21372011000036109 betamethasone dipropionate +979111000168100 Piperacillin (Douglas) 4 g powder for injection, 10 vials 63782 979101000168103 Piperacillin (Douglas) 4 g powder for injection, 10 vials 979051000168103 Piperacillin (Douglas) 4 g powder for injection, 4 g vial 978861000168102 Piperacillin (Douglas) 978861000168102 Piperacillin (Douglas) 979091000168108 piperacillin 4 g injection, 10 vials 979041000168100 piperacillin 4 g injection, vial 978871000168108 piperacillin +899861000168109 Afluria Quad 2017 injection suspension, 10 x 0.5 mL syringes 262428 899851000168107 Afluria Quad 2017 injection suspension, 10 x 0.5 mL syringes 899811000168106 Afluria Quad 2017 injection suspension, 0.5 mL syringe 899801000168108 Afluria Quad 2017 899801000168108 Afluria Quad 2017 899451000168109 influenza quadrivalent adult vaccine 2017 injection, 10 x 0.5 mL syringes 899401000168105 influenza quadrivalent adult vaccine 2017 injection, 0.5 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +907901000168101 Celecoxib (Generic Health) 200 mg hard capsule, 50, blister pack 196183 907891000168100 Celecoxib (Generic Health) 200 mg hard capsule, 50 907781000168107 Celecoxib (Generic Health) 200 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +11751000036105 Sertraline (Pfizer) 50 mg film-coated tablet, 30, blister pack 114742 6441000036109 Sertraline (Pfizer) 50 mg film-coated tablet, 30 3061000036109 Sertraline (Pfizer) 50 mg film-coated tablet 711000036107 Sertraline (Pfizer) 711000036107 Sertraline (Pfizer) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +653031000168109 Panadeine Caplet uncoated tablet, 40, blister pack 152840 653021000168106 Panadeine Caplet uncoated tablet, 40 53943011000036106 Panadeine Caplet uncoated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 652931000168102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +37578011000036107 Aminophylline (DBL) 250 mg/10 mL injection solution, 5 x 10 mL ampoules 16355 36845011000036100 Aminophylline (DBL) 250 mg/10 mL injection solution, 5 x 10 mL ampoules 36146011000036102 Aminophylline (DBL) 250 mg/10 mL injection solution, 10 mL ampoule 35871011000036103 Aminophylline (DBL) 35871011000036103 Aminophylline (DBL) 38733011000036107 aminophylline 250 mg/10 mL injection, 5 x 10 mL ampoules 37962011000036108 aminophylline 250 mg/10 mL injection, ampoule 37801011000036106 aminophylline +44665011000036109 Abilify 5 mg uncoated tablet, 98, blister pack 90925 42117011000036108 Abilify 5 mg uncoated tablet, 98 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46879011000036101 aripiprazole 5 mg tablet, 98 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +987191000168105 Act-3 200 mg soft capsule, 100, blister pack 77290 987181000168107 Act-3 200 mg soft capsule, 100 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63927011000036100 ibuprofen 200 mg capsule, 100 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +18555011000036105 Xylocaine Viscous 2% oral liquid, 200 mL, bottle 12007 11632011000036104 Xylocaine Viscous 2% oral liquid, 200 mL 5718011000036100 Xylocaine Viscous 2% oral liquid 13281000168103 Xylocaine Viscous 13281000168103 Xylocaine Viscous 26712011000036104 lidocaine (lignocaine) hydrochloride 2% oral liquid, 200 mL 22107011000036107 lidocaine (lignocaine) hydrochloride 2% oral liquid 21572011000036107 lidocaine (lignocaine) +61015011000036102 Visine Allergy 0.025% / 0.3% eye drops solution, 15 mL, bottle 66073 56958011000036108 Visine Allergy 0.025% / 0.3% eye drops solution, 15 mL 54139011000036107 Visine Allergy 0.025% / 0.3% eye drops solution 6601000168102 Visine Allergy 0.025% / 0.3% 6601000168102 Visine Allergy 0.025% / 0.3% 27188011000036106 naphazoline hydrochloride 0.025% + pheniramine maleate 0.3% eye drops, 15 mL 22550011000036107 naphazoline hydrochloride 0.025% + pheniramine maleate 0.3% eye drops 21769011000036106 naphazoline + pheniramine +61257011000036106 Nicotine (Amcal) 21 mg/24 hours patch, 28, sachet 77120 57193011000036106 Nicotine (Amcal) 21 mg/24 hours patch, 28 54231011000036105 Nicotine (Amcal) 21 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63763011000036105 nicotine 21 mg/24 hours patch, 28 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +1083601000168109 Decongestant (Guardian) 0.05% nasal spray, 18 mL, pump pack 72391 74387011000036103 Decongestant (Guardian) 0.05% nasal spray, 18 mL 73911011000036102 Decongestant (Guardian) 0.05% nasal spray 73720011000036106 Decongestant (Guardian) 73720011000036106 Decongestant (Guardian) 75486011000036101 oxymetazoline hydrochloride 0.05% nasal spray, 18 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +902031000168107 Amisulpride (SCP) 400 mg uncoated tablet, 30, blister pack 234698 902021000168109 Amisulpride (SCP) 400 mg uncoated tablet, 30 902011000168102 Amisulpride (SCP) 400 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 901641000168102 amisulpride 400 mg tablet, 30 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +751611000168100 Bugesic 100 mg/5 mL oral liquid suspension, 60 mL, bottle 80886 751601000168103 Bugesic 100 mg/5 mL oral liquid suspension, 60 mL 751591000168105 Bugesic 100 mg/5 mL oral liquid suspension, 5 mL 53403011000036104 Bugesic 53403011000036104 Bugesic 63888011000036101 ibuprofen 100 mg/5 mL oral liquid, 60 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +919231000168108 Temolide 100 mg hard capsule, 5, bottle 192688 919221000168105 Temolide 100 mg hard capsule, 5 919211000168103 Temolide 100 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +1052011000168103 Palexia SR 100 mg modified release tablet, 40, blister pack 165346 1052001000168101 Palexia SR 100 mg modified release tablet, 40 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051991000168103 tapentadol 100 mg modified release tablet, 40 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +18600011000036103 Serepax 15 mg uncoated tablet, 25, blister pack 10414 11269011000036101 Serepax 15 mg uncoated tablet, 25 5299011000036104 Serepax 15 mg uncoated tablet 3507011000036107 Serepax 3507011000036107 Serepax 32769011000036106 oxazepam 15 mg tablet, 25 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +18600011000036103 Serepax 15 mg uncoated tablet, 25, blister pack 174675 11269011000036101 Serepax 15 mg uncoated tablet, 25 5299011000036104 Serepax 15 mg uncoated tablet 3507011000036107 Serepax 3507011000036107 Serepax 32769011000036106 oxazepam 15 mg tablet, 25 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +749441000168102 Tacoccord 5 mg hard capsule, 50, blister pack 224271 749431000168106 Tacoccord 5 mg hard capsule, 50 749401000168104 Tacoccord 5 mg hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +18174011000036102 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Terry White Chemists) uncoated tablet, 30, blister pack 127121 11834011000036100 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Terry White Chemists) uncoated tablet, 30 4550011000036101 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Terry White Chemists) uncoated tablet 2511000168104 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Terry White Chemists) 2511000168104 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Terry White Chemists) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +933621000168101 Centevo 200/50/200 mg film-coated tablet, 28, bottle 238859 933611000168108 Centevo 200/50/200 mg film-coated tablet, 28 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933601000168105 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 28 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +82401000036105 Rabeprazole Sodium (Terry White Chemists) 10 mg enteric tablet, 28, blister pack 189766 80371000036107 Rabeprazole Sodium (Terry White Chemists) 10 mg enteric tablet, 28 78601000036104 Rabeprazole Sodium (Terry White Chemists) 10 mg enteric tablet 77991000036100 Rabeprazole Sodium (Terry White Chemists) 77991000036100 Rabeprazole Sodium (Terry White Chemists) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +905801000168101 Carlevent 150/37.5/200 film-coated tablet, 100, bottle 195749 905791000168102 Carlevent 150/37.5/200 film-coated tablet, 100 905781000168100 Carlevent 150/37.5/200 film-coated tablet 905771000168103 Carlevent 150/37.5/200 905771000168103 Carlevent 150/37.5/200 28185011000036109 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 100 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +20386011000036107 Mohexal 300 mg film-coated tablet, 60, blister pack 76935 13594011000036102 Mohexal 300 mg film-coated tablet, 60 6877011000036107 Mohexal 300 mg film-coated tablet 3315011000036103 Mohexal 3315011000036103 Mohexal 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +935771000168105 Roxithromycin (GenRx) 300 mg film-coated tablet, 5, blister pack 133747 935761000168104 Roxithromycin (GenRx) 300 mg film-coated tablet, 5 935751000168101 Roxithromycin (GenRx) 300 mg film-coated tablet 935701000168100 Roxithromycin (GenRx) 935701000168100 Roxithromycin (GenRx) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +18358011000036102 Auscap 20 mg capsule, 28, blister pack 190676 11343011000036104 Auscap 20 mg capsule, 28 5528011000036105 Auscap 20 mg capsule 3883011000036100 Auscap 3883011000036100 Auscap 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +910071000168109 Caspofungin (CW) 50 mg powder for injection, 1 vial 269939 910061000168103 Caspofungin (CW) 50 mg powder for injection, 1 vial 910051000168100 Caspofungin (CW) 50 mg powder for injection, 50 mg vial 910041000168102 Caspofungin (CW) 910041000168102 Caspofungin (CW) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +921942011000036104 Glycerol (Gold Cross) 1 mL/mL multi-purpose liquid, 100 mL, bottle 27346 921501011000036106 Glycerol (Gold Cross) 1 mL/mL multi-purpose liquid, 100 mL 921042011000036107 Glycerol (Gold Cross) 1 mL/mL multi-purpose liquid 920959011000036103 Glycerol (Gold Cross) 920959011000036103 Glycerol (Gold Cross) 922623011000036105 glycerol 1 mL/mL liquid, 100 mL 922115011000036101 glycerol 1 mL/mL liquid 21770011000036109 glycerol +13891000036106 Venlafaxine XR (Terry White Chemists) 150 mg modified release capsule, 28, blister pack 177461 7551000036108 Venlafaxine XR (Terry White Chemists) 150 mg modified release capsule, 28 1321000036102 Venlafaxine XR (Terry White Chemists) 150 mg modified release capsule 22511000168109 Venlafaxine XR (Terry White Chemists) 22511000168109 Venlafaxine XR (Terry White Chemists) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +20202011000036102 Captopril (GenRx) 25 mg uncoated tablet, 90, blister pack 74006 13421011000036104 Captopril (GenRx) 25 mg uncoated tablet, 90 6703011000036106 Captopril (GenRx) 25 mg uncoated tablet 3942011000036106 Captopril (GenRx) 3942011000036106 Captopril (GenRx) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +651481000168104 Capecitabine (GH) 500 mg film-coated tablet, 120, blister pack 200930 651471000168102 Capecitabine (GH) 500 mg film-coated tablet, 120 651461000168108 Capecitabine (GH) 500 mg film-coated tablet 651451000168106 Capecitabine (GH) 651451000168106 Capecitabine (GH) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +1072871000168102 Pantoprazole (Generic Health) 20 mg enteric tablet, 15, blister pack 191032 1072861000168108 Pantoprazole (Generic Health) 20 mg enteric tablet, 15 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46673011000036107 pantoprazole 20 mg enteric tablet, 15 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +103911000036100 Irbesartan (Sandoz) 300 mg film-coated tablet, 30, bottle 167405 101271000036102 Irbesartan (Sandoz) 300 mg film-coated tablet, 30 99391000036102 Irbesartan (Sandoz) 300 mg film-coated tablet 98031000036105 Irbesartan (Sandoz) 98031000036105 Irbesartan (Sandoz) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +933122011000036105 Ebixa Drops 10 mg/mL oral liquid solution, 100 mL, bottle 82025 932924011000036105 Ebixa Drops 10 mg/mL oral liquid solution, 100 mL 932769011000036107 Ebixa Drops 10 mg/mL oral liquid solution, drop 13791000168109 Ebixa Drops 13791000168109 Ebixa Drops 38836011000036103 memantine hydrochloride 10 mg/mL oral liquid, 100 mL 932770011000036105 memantine hydrochloride 10 mg/mL oral liquid, drop 37759011000036103 memantine +69220011000036103 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 10 x 1 L bottles 19460 67020011000036101 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 10 x 1 L bottles 65490011000036102 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 1 L bottle 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 71590011000036109 chlorhexidine acetate 0.05% (500 mg/L) + cetrimide 0.5% (5 g/L) solution, 10 x 1 L bottles 70080011000036102 chlorhexidine acetate 0.05% (500 mg/L) + cetrimide 0.5% (5 g/L) solution, bottle 69756011000036105 chlorhexidine + cetrimide +82327011000036100 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent vial), 1 pack, vial 144317 82145011000036102 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent vial), 1 pack 632391000168100 Novoseven RT (inert substance) diluent, 5 mL vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 82536011000036102 eptacog alfa (activated) 5 mg injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +82327011000036100 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent vial), 1 pack, vial 144317 82145011000036102 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent vial), 1 pack 82016011000036105 Novoseven RT (eptacog alfa (activated) 5 mg) powder for injection, 5 mg vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 82536011000036102 eptacog alfa (activated) 5 mg injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 82445011000036101 eptacog alfa (activated) 5 mg injection, vial 44889011000036101 eptacog alfa (activated) +13961000036106 Olanzapine (GA) 7.5 mg film-coated tablet, 28, blister pack 178990 7621000036101 Olanzapine (GA) 7.5 mg film-coated tablet, 28 3051000036106 Olanzapine (GA) 7.5 mg film-coated tablet 31571000168107 Olanzapine (GA) 31571000168107 Olanzapine (GA) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +45951000036104 Ramipril (Terry White Chemists) 1.25 mg capsule, 30, blister pack 179022 43231000036102 Ramipril (Terry White Chemists) 1.25 mg capsule, 30 41061000036102 Ramipril (Terry White Chemists) 1.25 mg capsule 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +820091000168105 Daktarin 2% oral gel, 20 g, tube 13287 820081000168107 Daktarin 2% oral gel, 20 g 819981000168105 Daktarin 2% oral gel 431000168100 Daktarin 431000168100 Daktarin 820071000168109 miconazole 2% oral gel, 20 g 817971000168100 miconazole 2% oral gel 21454011000036108 miconazole +20018011000036107 Dinac 50 mg enteric tablet, 50, blister pack 68942 13254011000036104 Dinac 50 mg enteric tablet, 50 6536011000036107 Dinac 50 mg enteric tablet 4054011000036108 Dinac 4054011000036108 Dinac 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +1060441000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 20, blister pack 234477 1060431000168109 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 20 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911861000168100 rosuvastatin 40 mg tablet, 20 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +942301000168106 Cerdelga 84 mg hard capsule, 56, blister pack 218172 942291000168105 Cerdelga 84 mg hard capsule, 56 942271000168109 Cerdelga 84 mg hard capsule 942231000168106 Cerdelga 942231000168106 Cerdelga 942281000168107 eliglustat 84 mg capsule, 56 942261000168103 eliglustat 84 mg capsule 942251000168100 eliglustat +918551000168107 Anastrozole (Accord) 1 mg film-coated tablet, 30, blister pack 259988 918541000168105 Anastrozole (Accord) 1 mg film-coated tablet, 30 918531000168101 Anastrozole (Accord) 1 mg film-coated tablet 918521000168104 Anastrozole (Accord) 918521000168104 Anastrozole (Accord) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +766601000168100 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, 10 x 1 mL syringes 67145 766591000168107 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, 10 x 1 mL syringes 766511000168103 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766581000168109 nadroparin calcium 19 000 anti-Xa units/mL injection, 10 x 1 mL syringes 766501000168101 nadroparin calcium 19 000 anti-Xa units/mL injection, syringe 765071000168107 nadroparin +815751000168104 Deflectum 10/10 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200822 815741000168101 Deflectum 10/10 (perindopril arginine/amlodipine) uncoated tablet, 30 815711000168100 Deflectum 10/10 (perindopril arginine/amlodipine) uncoated tablet 815701000168103 Deflectum 10/10 (perindopril arginine/amlodipine) 815701000168103 Deflectum 10/10 (perindopril arginine/amlodipine) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +19776011000036103 Lipazil 600 mg film-coated tablet, 60, bottle 62742 13034011000036105 Lipazil 600 mg film-coated tablet, 60 6321011000036101 Lipazil 600 mg film-coated tablet 4409011000036107 Lipazil 4409011000036107 Lipazil 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +12111000036102 Anastrozole (GH) 1 mg film-coated tablet, 30, blister pack 155177 7161000036100 Anastrozole (GH) 1 mg film-coated tablet, 30 1421000036106 Anastrozole (GH) 1 mg film-coated tablet 1001000036109 Anastrozole (GH) 1001000036109 Anastrozole (GH) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +11791000036101 Mycophenolate (Sandoz) 250 mg capsule, 100, blister pack 148227 6531000036103 Mycophenolate (Sandoz) 250 mg capsule, 100 1351000036108 Mycophenolate (Sandoz) 250 mg capsule 1041000036107 Mycophenolate (Sandoz) 1041000036107 Mycophenolate (Sandoz) 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +21181011000036104 Tramahexal SR 150 mg modified release tablet, 20, blister pack 99252 14321011000036109 Tramahexal SR 150 mg modified release tablet, 20 7607011000036105 Tramahexal SR 150 mg modified release tablet 10981000168104 Tramahexal SR 10981000168104 Tramahexal SR 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +20686011000036100 Micardis Plus 40/12.5 multilayer tablet, 28, blister pack 82416 13865011000036101 Micardis Plus 40/12.5 multilayer tablet, 28 7152011000036103 Micardis Plus 40/12.5 multilayer tablet 37641000168109 Micardis Plus 40/12.5 37641000168109 Micardis Plus 40/12.5 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +37503011000036108 Stelazine Forte 1 mg/mL oral liquid solution, 1 L, bottle 13003 36771011000036103 Stelazine Forte 1 mg/mL oral liquid solution, 1 L 36101011000036104 Stelazine Forte 1 mg/mL oral liquid solution 63761000168101 Stelazine Forte 63761000168101 Stelazine Forte 38671011000036104 trifluoperazine 1 mg/mL oral liquid, 1 L 37917011000036109 trifluoperazine 1 mg/mL oral liquid 21507011000036102 trifluoperazine +675101000168102 Valoid 50 mg/mL injection solution, 5 x 1 mL ampoules 180894 675091000168107 Valoid 50 mg/mL injection solution, 5 x 1 mL ampoules 675071000168106 Valoid 50 mg/mL injection solution, ampoule 675041000168104 Valoid 675041000168104 Valoid 675081000168109 cyclizine lactate 50 mg/mL injection, 5 x 1 mL ampoules 675061000168100 cyclizine lactate 50 mg/mL injection, ampoule 675051000168102 cyclizine +20502011000036109 Metformin Hydrochloride (GenRx) 850 mg tablet, 60, blister pack 78621 13702011000036108 Metformin Hydrochloride (GenRx) 850 mg tablet, 60 6984011000036103 Metformin Hydrochloride (GenRx) 850 mg tablet 4170011000036107 Metformin Hydrochloride (GenRx) 4170011000036107 Metformin Hydrochloride (GenRx) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +13921000036102 Sequase 200 mg film-coated tablet, 60, blister pack 178487 7581000036101 Sequase 200 mg film-coated tablet, 60 2651000036109 Sequase 200 mg film-coated tablet 481000036106 Sequase 481000036106 Sequase 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +60531011000036104 Cold and Flu Relief PE (Guardian) uncoated tablet, 48, blister pack 152036 56489011000036105 Cold and Flu Relief PE (Guardian) uncoated tablet, 48 53939011000036108 Cold and Flu Relief PE (Guardian) uncoated tablet 53454011000036109 Cold and Flu Relief PE (Guardian) 53454011000036109 Cold and Flu Relief PE (Guardian) 63381011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 48 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +56781000036100 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 250, bottle 164953 53241000036109 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 250 39817011000036105 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 53251000036107 metformin hydrochloride 850 mg tablet, 250 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +60773011000036102 Logicin Flu Strength Day and Night (18 x Day tablets, 6 x Night tablets), 24, blister pack 54162 56731011000036107 Logicin Flu Strength Day and Night (18 x Day tablets, 6 x Night tablets), 24 54052011000036106 Logicin Flu Strength (Night Tablet) film-coated tablet 50041000168102 Logicin Flu Strength Day and Night 50151000168101 Logicin Flu Strength (Night Tablet) 63535011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [18] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [6], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +60773011000036102 Logicin Flu Strength Day and Night (18 x Day tablets, 6 x Night tablets), 24, blister pack 54162 56731011000036107 Logicin Flu Strength Day and Night (18 x Day tablets, 6 x Night tablets), 24 54053011000036104 Logicin Flu Strength (Day) film-coated tablet 50041000168102 Logicin Flu Strength Day and Night 50271000168104 Logicin Flu Strength (Day) 63535011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [18] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [6], 24 62103011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +35642011000036102 Liquifilm Forte 3% eye drops solution, 15 mL, bottle 35556011000036107 Liquifilm Forte 3% eye drops solution, 15 mL 35484011000036100 Liquifilm Forte 3% eye drops solution 59971000168102 Liquifilm Forte 59971000168102 Liquifilm Forte 35773011000036104 polyvinyl alcohol 3% eye drops, 15 mL 35714011000036109 polyvinyl alcohol 3% eye drops 35687011000036109 polyvinyl alcohol +116921000036100 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 47377 115211000036109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115231000036100 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +116921000036100 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 217121 115211000036109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115231000036100 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +116921000036100 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 47377 115211000036109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115231000036100 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +116921000036100 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 217121 115211000036109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115231000036100 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +79638011000036101 Flamazine 1% cream, 50 g, tube 159342 79455011000036108 Flamazine 1% cream, 50 g 79361011000036109 Flamazine 1% cream 79341011000036100 Flamazine 79341011000036100 Flamazine 79795011000036107 silver sulfadiazine 1% cream, 50 g 79735011000036103 silver sulfadiazine 1% cream 79732011000036106 silver sulfadiazine +130501000036109 Azithromycin (MaxRx) 500 mg powder for injection, 1 vial 169345 127951000036104 Azithromycin (MaxRx) 500 mg powder for injection, 1 vial 125391000036100 Azithromycin (MaxRx) 500 mg powder for injection, 500 mg vial 123931000036101 Azithromycin (MaxRx) 123931000036101 Azithromycin (MaxRx) 46892011000036101 azithromycin 500 mg injection, 1 vial 45336011000036107 azithromycin 500 mg injection, vial 21518011000036103 azithromycin +18761011000036100 Vancocin 125 mg capsule, 20, blister pack 14674 12057011000036107 Vancocin 125 mg capsule, 20 4907011000036103 Vancocin 125 mg capsule 28691000168104 Vancocin 28691000168104 Vancocin 26884011000036108 vancomycin 125 mg capsule, 20 22262011000036106 vancomycin 125 mg capsule 21381011000036106 vancomycin +44402011000036103 Glyade 80 mg film-coated tablet, 100, blister pack 70433 41862011000036102 Glyade 80 mg film-coated tablet, 100 40230011000036106 Glyade 80 mg film-coated tablet 12101000168106 Glyade 12101000168106 Glyade 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +933212161000036100 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 98, blister pack 142235 933200831000036100 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 98 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200841000036105 donepezil hydrochloride 5 mg tablet, 98 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +20697011000036101 Ciprol 500 mg film-coated tablet, 14, bottle 82478 13872011000036102 Ciprol 500 mg film-coated tablet, 14 7159011000036108 Ciprol 500 mg film-coated tablet 3369011000036102 Ciprol 3369011000036102 Ciprol 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +55501000036108 Anastrozole (AU) 1 mg film-coated tablet, 50, blister pack 155174 52101000036106 Anastrozole (AU) 1 mg film-coated tablet, 50 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52111000036108 anastrozole 1 mg tablet, 50 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +44376011000036100 Stilnox 10 mg film-coated tablet, 14, blister pack 69681 41839011000036101 Stilnox 10 mg film-coated tablet, 14 40226011000036106 Stilnox 10 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +698761000168102 Mabthera SC 1.4 g/11.7 mL injection solution, 11.7 mL vial 207334 698751000168104 Mabthera SC 1.4 g/11.7 mL injection solution, 11.7 mL vial 698731000168105 Mabthera SC 1.4 g/11.7 mL injection solution, 11.7 mL vial 698711000168100 Mabthera SC 698711000168100 Mabthera SC 698741000168101 rituximab 1.4 g/11.7 mL injection, 11.7 mL vial 698721000168107 rituximab 1.4 g/11.7 mL injection, vial 21460011000036105 rituximab +1087391000168101 Monofer 1 g/10 mL injection solution, 5 x 10 mL vials 290834 1087381000168104 Monofer 1 g/10 mL injection solution, 5 x 10 mL vials 1087291000168106 Monofer 1 g/10 mL injection solution, 10 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1087371000168102 iron (as ferric derisomaltose) 1 g/10 mL injection, 5 x 10 mL vials 1087281000168108 iron (as ferric derisomaltose) 1 g/10 mL injection, vial 1085791000168105 ferric derisomaltose +954871000168102 Gabapentin (Apo) 800 mg film-coated tablet, 100, blister pack 131504 954831000168100 Gabapentin (Apo) 800 mg film-coated tablet, 100 954821000168103 Gabapentin (Apo) 800 mg film-coated tablet 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +18702011000036107 Carvedilol (Chemmart) 12.5 mg film-coated tablet, 60, blister pack 133039 11955011000036105 Carvedilol (Chemmart) 12.5 mg film-coated tablet, 60 5227011000036103 Carvedilol (Chemmart) 12.5 mg film-coated tablet 3037011000036100 Carvedilol (Chemmart) 3037011000036100 Carvedilol (Chemmart) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +61323011000036108 Paracetamol (Herron) 500 mg uncoated tablet, 100, blister pack 80924 57344011000036109 Paracetamol (Herron) 500 mg uncoated tablet, 100 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +852881000168103 Alvesco 40 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 93723 852871000168101 Alvesco 40 microgram/actuation pressurised inhalation, 120 actuations 852851000168105 Alvesco 40 microgram/actuation pressurised inhalation, actuation 3011011000036104 Alvesco 3011011000036104 Alvesco 852861000168107 ciclesonide 40 microgram/actuation pressurised inhalation, 120 actuations 852841000168108 ciclesonide 40 microgram/actuation pressurised inhalation, actuation 21555011000036102 ciclesonide +1051281000168106 Targin 60/30 mg modified release tablet, 60, blister pack 243252 1051271000168108 Targin 60/30 mg modified release tablet, 60 826591000168103 Targin 60/30 mg modified release tablet 826291000168101 Targin 60/30 mg 826291000168101 Targin 60/30 mg 1051261000168102 oxycodone hydrochloride 60 mg + naloxone hydrochloride 30 mg modified release tablet, 60 826581000168101 oxycodone hydrochloride 60 mg + naloxone hydrochloride 30 mg modified release tablet 923931011000036100 oxycodone + naloxone +884301000168102 Bosentan (Accord) 62.5 mg film-coated tablet, 500, bottle 235884 884291000168103 Bosentan (Accord) 62.5 mg film-coated tablet, 500 884221000168100 Bosentan (Accord) 62.5 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884281000168101 bosentan 62.5 mg tablet, 500 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +12161000036100 Quetiapine (DRLA) 200 mg film-coated tablet, 60, blister pack 162378 7311000036100 Quetiapine (DRLA) 200 mg film-coated tablet, 60 3751000036108 Quetiapine (DRLA) 200 mg film-coated tablet 691000036105 Quetiapine (DRLA) 691000036105 Quetiapine (DRLA) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +50666011000036106 Carvedilol (Genepharm) 6.25 mg uncoated tablet, 30, blister pack 152438 49690011000036101 Carvedilol (Genepharm) 6.25 mg uncoated tablet, 30 48825011000036107 Carvedilol (Genepharm) 6.25 mg uncoated tablet 48379011000036105 Carvedilol (Genepharm) 48379011000036105 Carvedilol (Genepharm) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +18051000036101 Zilfojim 8 mg film-coated tablet, 10, blister pack 173183 16701000036104 Zilfojim 8 mg film-coated tablet, 10 15641000036100 Zilfojim 8 mg film-coated tablet 15201000036100 Zilfojim 15201000036100 Zilfojim 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +656961000168106 Anastrozole (AN) 1 mg film-coated tablet, 30, blister pack 158749 656951000168109 Anastrozole (AN) 1 mg film-coated tablet, 30 656941000168107 Anastrozole (AN) 1 mg film-coated tablet 656931000168103 Anastrozole (AN) 656931000168103 Anastrozole (AN) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1058521000168102 Ondansetron (Auro) 8 mg film-coated tablet, 30, blister pack 173182 1058511000168109 Ondansetron (Auro) 8 mg film-coated tablet, 30 1058451000168109 Ondansetron (Auro) 8 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 1058501000168106 ondansetron 8 mg tablet, 30 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +69203011000036104 Ringer's (Baxter) irrigation solution, 500 mL bottle 19444 67003011000036102 Ringer's (Baxter) irrigation solution, 500 mL bottle 65340011000036104 Ringer's (Baxter) irrigation solution, 500 mL bottle 65107011000036104 Ringer's (Baxter) 65107011000036104 Ringer's (Baxter) 71573011000036105 sodium chloride 4.3 g/500 mL + potassium chloride 150 mg/500 mL + calcium chloride dihydrate 165 mg/500 mL solution, 500 mL bottle 70072011000036107 sodium chloride 4.3 g/500 mL + potassium chloride 150 mg/500 mL + calcium chloride dihydrate 165 mg/500 mL solution, bottle 69841011000036101 sodium chloride + potassium chloride + calcium chloride dihydrate +933246771000036100 Lisinopril (PS) 20 mg uncoated tablet, 50, blister pack 152714 933243411000036105 Lisinopril (PS) 20 mg uncoated tablet, 50 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 78127011000036104 lisinopril 20 mg tablet, 50 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1016741000168106 Atomoxetine (Apotex) 80 mg hard capsule, 28, blister pack 199926 1016731000168102 Atomoxetine (Apotex) 80 mg hard capsule, 28 1016721000168100 Atomoxetine (Apotex) 80 mg hard capsule 1013681000168104 Atomoxetine (Apotex) 1013681000168104 Atomoxetine (Apotex) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +931622011000036101 Pravista 80 mg film-coated tablet, 500, bottle 163563 930783011000036102 Pravista 80 mg film-coated tablet, 500 930043011000036109 Pravista 80 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 52330011000036100 pravastatin sodium 80 mg tablet, 500 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +37592011000036104 Demazin 12 hour Repetab modified release tablet, 18, blister pack 18810 36859011000036100 Demazin 12 hour Repetab modified release tablet, 18 36198011000036105 Demazin 12 hour Repetab modified release tablet 48631000168100 Demazin 12 hour Repetab 48631000168100 Demazin 12 hour Repetab 38746011000036102 dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg modified release tablet, 18 37972011000036101 dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg modified release tablet 37723011000036102 dexchlorpheniramine + pseudoephedrine +69239011000036106 Chlorhexidine Acetate (Baxter) 0.1% (500 mg/500 mL) irrigation solution, 500 mL bottle 19463 67039011000036109 Chlorhexidine Acetate (Baxter) 0.1% (500 mg/500 mL) irrigation solution, 500 mL bottle 65358011000036100 Chlorhexidine Acetate (Baxter) 0.1% (500 mg/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71609011000036107 chlorhexidine acetate 0.1% (500 mg/500 mL) solution, 500 mL bottle 70090011000036101 chlorhexidine acetate 0.1% (500 mg/500 mL) solution, bottle 21404011000036101 chlorhexidine +60381011000036107 Paracetamol (Pharmacist Own) 500 mg uncoated tablet, 96, blister pack 143014 56340011000036100 Paracetamol (Pharmacist Own) 500 mg uncoated tablet, 96 53883011000036105 Paracetamol (Pharmacist Own) 500 mg uncoated tablet 53397011000036103 Paracetamol (Pharmacist Own) 53397011000036103 Paracetamol (Pharmacist Own) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1047031000168108 Buprenorphine (SZ) 10 microgram/hour patch, 2, sachet 269674 1047021000168105 Buprenorphine (SZ) 10 microgram/hour patch, 2 1046971000168107 Buprenorphine (SZ) 10 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 26681011000036100 buprenorphine 10 microgram/hour patch, 2 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +68768011000036101 Strepsils orange lozenge, 6, blister pack 115527 66624011000036102 Strepsils orange lozenge, 6 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +55591000036100 Synastrozole 1 mg film-coated tablet, 14, blister pack 155175 52331000036101 Synastrozole 1 mg film-coated tablet, 14 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52021000036100 anastrozole 1 mg tablet, 14 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1032981000168107 Ramipril (Apotex) 5 mg capsule, 30, bottle 179014 1032921000168108 Ramipril (Apotex) 5 mg capsule, 30 1032911000168101 Ramipril (Apotex) 5 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +86167011000036104 Demazin Cold Relief Day and Night (6 x Day tablets, 6 x Night tablets), 12, blister pack 18356 85775011000036107 Demazin Cold Relief Day and Night (6 x Day tablets, 6 x Night tablets), 12 85388011000036105 Demazin Cold Relief Day and Night (Day) 120 mg multilayer tablet 62991000168101 Demazin Cold Relief Day and Night 63221000168101 Demazin Cold Relief Day and Night (Day) 86459011000036100 pseudoephedrine sulfate 120 mg tablet [6] (&) dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg tablet [6], 12 86233011000036101 pseudoephedrine sulfate 120 mg tablet 21540011000036109 pseudoephedrine +86167011000036104 Demazin Cold Relief Day and Night (6 x Day tablets, 6 x Night tablets), 12, blister pack 18356 85775011000036107 Demazin Cold Relief Day and Night (6 x Day tablets, 6 x Night tablets), 12 85387011000036109 Demazin Cold Relief Day and Night (Night) multilayer tablet 62991000168101 Demazin Cold Relief Day and Night 63101000168101 Demazin Cold Relief Day and Night (Night) 86459011000036100 pseudoephedrine sulfate 120 mg tablet [6] (&) dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg tablet [6], 12 86232011000036108 dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg tablet 37723011000036102 dexchlorpheniramine + pseudoephedrine +50254011000036109 PKU Express 15 Tropical powder for oral liquid, 30 x 25 g sachets 49533011000036105 PKU Express 15 Tropical powder for oral liquid, 30 x 25 g sachets 261411000168101 PKU Express 15 Tropical powder for oral liquid, 25 g sachet 14751000168101 PKU Express 15 14751000168101 PKU Express 15 51476011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 25 g sachets 247011000168109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 25 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +929087011000036106 Pioglitazone (Apotex) 45 mg uncoated tablet, 28, blister pack 166913 928448011000036109 Pioglitazone (Apotex) 45 mg uncoated tablet, 28 927986011000036106 Pioglitazone (Apotex) 45 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +43725011000036106 Cefalotin (Sandoz) 1 g powder for injection, 5 vials 116692 41173011000036106 Cefalotin (Sandoz) 1 g powder for injection, 5 vials 39873011000036109 Cefalotin (Sandoz) 1 g powder for injection, vial 39670011000036109 Cefalotin (Sandoz) 39670011000036109 Cefalotin (Sandoz) 46139011000036109 cefalotin 1 g injection, 5 vials 22864011000036109 cefalotin 1 g injection, vial 21844011000036103 cefalotin +1061771000168109 Atorvastatin (GX) 80 mg film-coated tablet, 30, blister pack 217178 1061761000168103 Atorvastatin (GX) 80 mg film-coated tablet, 30 1061691000168104 Atorvastatin (GX) 80 mg film-coated tablet 1061681000168102 Atorvastatin (GX) 1061681000168102 Atorvastatin (GX) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +12201000036109 Quipine 200 mg film-coated tablet, 60, blister pack 162388 7371000036106 Quipine 200 mg film-coated tablet, 60 3041000036108 Quipine 200 mg film-coated tablet 961000036106 Quipine 961000036106 Quipine 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +17961000036100 Bleo 15K 15 000 international units powder for injection, 1 vial 157341 16591000036100 Bleo 15K 15 000 international units powder for injection, 1 vial 15491000036109 Bleo 15K 15 000 international units powder for injection, 15 000 international units vial 24191000168101 Bleo 15K 24191000168101 Bleo 15K 27097011000036101 bleomycin sulfate 15 000 international units injection, 1 vial 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +176581000036102 Doxorubicin Hydrochloride (MYX) 200 mg/100 mL concentrated injection, 100 mL vial 174248 174791000036104 Doxorubicin Hydrochloride (MYX) 200 mg/100 mL concentrated injection, 100 mL vial 173141000036107 Doxorubicin Hydrochloride (MYX) 200 mg/100 mL concentrated injection, 100 mL vial 172771000036107 Doxorubicin Hydrochloride (MYX) 172771000036107 Doxorubicin Hydrochloride (MYX) 33809011000036103 doxorubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 33680011000036101 doxorubicin hydrochloride 200 mg/100 mL injection, vial 21638011000036100 doxorubicin +60646011000036101 Tixylix Dry Cough and Cold 2 Years+ oral liquid solution, 100 mL, bottle 27550 56604011000036107 Tixylix Dry Cough and Cold 2 Years+ oral liquid solution, 100 mL 54001011000036106 Tixylix Dry Cough and Cold 2 Years+ oral liquid solution, 5 mL 36211000168109 Tixylix Dry Cough and Cold 2 Years+ 36211000168109 Tixylix Dry Cough and Cold 2 Years+ 63456011000036102 pholcodine 5 mg/5 mL + promethazine hydrochloride 3.6 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid, 100 mL 61977011000036107 pholcodine 5 mg/5 mL + promethazine hydrochloride 3.6 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid 61809011000036101 pholcodine + promethazine + pseudoephedrine +1047011000168103 Tramal SR 200 mg modified release tablet, 60, blister pack 75949 1047001000168101 Tramal SR 200 mg modified release tablet, 60 6814011000036108 Tramal SR 200 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 38674011000036101 tramadol hydrochloride 200 mg modified release tablet, 60 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +20167011000036103 Diltiazem Hydrochloride (GenRx) 60 mg film-coated tablet, 90, bottle 73854 13390011000036105 Diltiazem Hydrochloride (GenRx) 60 mg film-coated tablet, 90 6675011000036107 Diltiazem Hydrochloride (GenRx) 60 mg film-coated tablet 56231000168100 Diltiazem Hydrochloride (GenRx) 56231000168100 Diltiazem Hydrochloride (GenRx) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +933229481000036102 Dencorub Regular Strength Heat cream, 150 g, tube 10133 933223451000036107 Dencorub Regular Strength Heat cream, 150 g 933219701000036108 Dencorub Regular Strength Heat cream 24821000168108 Dencorub Regular Strength Heat 24821000168108 Dencorub Regular Strength Heat 71201011000036105 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream, 150 g 69899011000036106 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +891451000168105 Candesartan plus HCTZ 16/12.5 (Pfizer) uncoated tablet, 30, blister pack 199102 891441000168108 Candesartan plus HCTZ 16/12.5 (Pfizer) uncoated tablet, 30 891411000168109 Candesartan plus HCTZ 16/12.5 (Pfizer) uncoated tablet 891401000168106 Candesartan plus HCTZ 16/12.5 (Pfizer) 891401000168106 Candesartan plus HCTZ 16/12.5 (Pfizer) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +95781000036101 Azithromycin (Apo) 500 mg film-coated tablet, 100, bottle 195919 94681000036106 Azithromycin (Apo) 500 mg film-coated tablet, 100 93381000036101 Azithromycin (Apo) 500 mg film-coated tablet 93201000036100 Azithromycin (Apo) 93201000036100 Azithromycin (Apo) 94691000036108 azithromycin 500 mg tablet, 100 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +933213621000036107 Citalopram (IPCA) 20 mg film-coated tablet, 14, blister pack 158871 933203221000036107 Citalopram (IPCA) 20 mg film-coated tablet, 14 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1061811000168109 Ramipril (Auro) 1.25 mg hard capsule, 30, blister pack 203703 1060961000168105 Ramipril (Auro) 1.25 mg hard capsule, 30 1060951000168108 Ramipril (Auro) 1.25 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +923752011000036102 Novicrit 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 147847 923305011000036104 Novicrit 1000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 922991011000036100 Novicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924134011000036103 epoetin lambda 1000 units/0.5 mL injection, 6 x 0.5 mL syringes 923957011000036109 epoetin lambda 1000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +903311000168106 Brillior 200 mg hard capsule, 56, blister pack 224343 903301000168108 Brillior 200 mg hard capsule, 56 903241000168104 Brillior 200 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +59771000036106 Clarithromycin (PS) 250 mg film-coated tablet, 14, blister pack 184263 58861000036104 Clarithromycin (PS) 250 mg film-coated tablet, 14 58381000036100 Clarithromycin (PS) 250 mg film-coated tablet 58111000036106 Clarithromycin (PS) 58111000036106 Clarithromycin (PS) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +887521000168108 Cansartan HCTZ 16/12.5 uncoated tablet, 30, bottle 253375 887311000168106 Cansartan HCTZ 16/12.5 uncoated tablet, 30 887301000168108 Cansartan HCTZ 16/12.5 uncoated tablet 887291000168107 Cansartan HCTZ 16/12.5 887291000168107 Cansartan HCTZ 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1024321000168104 Betadine Sore Throat Lozenges Orange lozenge, 16, blister pack 227169 1024311000168106 Betadine Sore Throat Lozenges Orange lozenge, 16 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +18437011000036109 Valproate EC (Winthrop) 500 mg enteric tablet, 100, blister pack 125621 11810011000036100 Valproate EC (Winthrop) 500 mg enteric tablet, 100 4566011000036106 Valproate EC (Winthrop) 500 mg enteric tablet 41341000168107 Valproate EC (Winthrop) 41341000168107 Valproate EC (Winthrop) 27140011000036102 valproate sodium 500 mg enteric tablet, 100 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +79048011000036105 Bispro 2.5 mg film-coated tablet, 100, blister pack 130178 78785011000036106 Bispro 2.5 mg film-coated tablet, 100 78625011000036108 Bispro 2.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79202011000036107 bisoprolol fumarate 2.5 mg tablet, 100 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +176421000036104 Cephalexin (Apo) 500 mg hard capsule, 20, blister pack 133852 174621000036109 Cephalexin (Apo) 500 mg hard capsule, 20 173481000036106 Cephalexin (Apo) 500 mg hard capsule 29951000168107 Cephalexin (Apo) 29951000168107 Cephalexin (Apo) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +715761000168104 Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g, tube 150662 715751000168101 Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g 715741000168103 Clotrimazole 3 Day (Apo) 2% vaginal cream 43711000168108 Clotrimazole 3 Day (Apo) 43711000168108 Clotrimazole 3 Day (Apo) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +55431000036102 Anastrozole (AU) 1 mg film-coated tablet, 10, blister pack 155174 51961000036100 Anastrozole (AU) 1 mg film-coated tablet, 10 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 51971000036108 anastrozole 1 mg tablet, 10 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +18188011000036104 Carvedilol (Chemmart) 6.25 mg film-coated tablet, 60, blister pack 133038 11954011000036106 Carvedilol (Chemmart) 6.25 mg film-coated tablet, 60 6017011000036101 Carvedilol (Chemmart) 6.25 mg film-coated tablet 3037011000036100 Carvedilol (Chemmart) 3037011000036100 Carvedilol (Chemmart) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +59931000036107 Amoxycillin (PS) 500 mg hard capsule, 3, blister pack 188960 59051000036103 Amoxycillin (PS) 500 mg hard capsule, 3 58221000036109 Amoxycillin (PS) 500 mg hard capsule 58141000036107 Amoxycillin (PS) 58141000036107 Amoxycillin (PS) 59061000036100 amoxicillin 500 mg capsule, 3 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +38341000036108 Escitalopram (LAPL) 10 mg film-coated tablet, 30, bottle 165843 34671000036101 Escitalopram (LAPL) 10 mg film-coated tablet, 30 33061000036102 Escitalopram (LAPL) 10 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +928845011000036108 Dry Tickly Cough Medicine (Chemmart) 1 mg/mL oral liquid solution, 200 mL, bottle 130022 928207011000036104 Dry Tickly Cough Medicine (Chemmart) 1 mg/mL oral liquid solution, 200 mL 927866011000036104 Dry Tickly Cough Medicine (Chemmart) 1 mg/mL oral liquid solution 18691000168107 Dry Tickly Cough Medicine (Chemmart) 18691000168107 Dry Tickly Cough Medicine (Chemmart) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +986941000168102 Diprivan 1 g/100 mL injection emulsion, 100 mL vial 75564 986931000168106 Diprivan 1 g/100 mL injection emulsion, 100 mL vial 986921000168108 Diprivan 1 g/100 mL injection emulsion, 100 mL vial 39630011000036106 Diprivan 39630011000036106 Diprivan 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +966591000168104 Diavance 250/1.25 film-coated tablet, 10, blister pack 120263 966581000168102 Diavance 250/1.25 film-coated tablet, 10 966561000168106 Diavance 250/1.25 film-coated tablet 966551000168109 Diavance 250/1.25 966551000168109 Diavance 250/1.25 966571000168100 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet, 10 23507011000036105 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet 21813011000036107 metformin + glibenclamide +926840011000036106 Pyrenel Foam application, 100 mL, bottle 18939 926236011000036100 Pyrenel Foam application, 100 mL 925689011000036104 Pyrenel Foam application 51041000168107 Pyrenel Foam 51041000168107 Pyrenel Foam 927348011000036107 pyrethrin I 0.175% + pyrethrin II 0.175% + piperonyl butoxide 1.75% application, 100 mL 926998011000036105 pyrethrin I 0.175% + pyrethrin II 0.175% + piperonyl butoxide 1.75% application 926964011000036100 pyrethrin I + pyrethrin II + piperonyl butoxide +929018011000036109 Sumatriptan (Apo) 100 mg film-coated tablet, 2, blister pack 160196 928379011000036108 Sumatriptan (Apo) 100 mg film-coated tablet, 2 927961011000036104 Sumatriptan (Apo) 100 mg film-coated tablet 5701000168101 Sumatriptan (Apo) 5701000168101 Sumatriptan (Apo) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +933212251000036105 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 98, blister pack 142236 933201001000036105 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 98 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933201011000036107 donepezil hydrochloride 10 mg tablet, 98 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +81086011000036109 Ibuprofen plus Codeine (Amcal) film-coated tablet, 48, blister pack 158232 80594011000036109 Ibuprofen plus Codeine (Amcal) film-coated tablet, 48 80205011000036101 Ibuprofen plus Codeine (Amcal) film-coated tablet 80134011000036106 Ibuprofen plus Codeine (Amcal) 80134011000036106 Ibuprofen plus Codeine (Amcal) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +854161000168106 Aliquen 300 mg film-coated tablet, 60, blister pack 204842 854151000168109 Aliquen 300 mg film-coated tablet, 60 854121000168101 Aliquen 300 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +44412011000036100 Somac 20 mg enteric tablet, 50, blister pack 70829 41871011000036103 Somac 20 mg enteric tablet, 50 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46676011000036101 pantoprazole 20 mg enteric tablet, 50 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +681681000168109 Esomeprazole (Apotex) 40 mg enteric tablet, 7, blister pack 210843 681671000168106 Esomeprazole (Apotex) 40 mg enteric tablet, 7 681661000168100 Esomeprazole (Apotex) 40 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +717041000168108 Omepro 20 mg enteric capsule, 60, blister pack 149516 716841000168103 Omepro 20 mg enteric capsule, 60 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716831000168107 omeprazole 20 mg enteric capsule, 60 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +849821000168108 Vzole 200 mg film-coated tablet, 28, blister pack 238242 849811000168101 Vzole 200 mg film-coated tablet, 28 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46807011000036101 voriconazole 200 mg tablet, 28 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +933212081000036106 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 120, blister pack 142235 933201491000036105 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 120 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933201031000036103 donepezil hydrochloride 5 mg tablet, 120 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +61614011000036107 Nurofen Liquid Capsule 200 mg soft capsule, 32, blister pack 96115 57536011000036102 Nurofen Liquid Capsule 200 mg soft capsule, 32 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63914011000036103 ibuprofen 200 mg capsule, 32 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +33513011000036103 Lorano 10 mg uncoated tablet, 30, blister pack 119753 33256011000036105 Lorano 10 mg uncoated tablet, 30 33023011000036109 Lorano 10 mg uncoated tablet 32980011000036109 Lorano 32980011000036109 Lorano 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +704251000168106 Noxicid 40 mg enteric capsule, 30, blister pack 161342 704241000168109 Noxicid 40 mg enteric capsule, 30 704231000168100 Noxicid 40 mg enteric capsule 704221000168103 Noxicid 704221000168103 Noxicid 682531000168102 esomeprazole 40 mg enteric capsule, 30 682511000168107 esomeprazole 40 mg enteric capsule 21697011000036107 esomeprazole +1041481000168108 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device 96237 1041471000168105 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device 1041451000168101 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device 47151000168100 Gonal-F Pen 47151000168100 Gonal-F Pen 1041461000168104 follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, 1.5 mL injection device 1041441000168103 follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, injection device 21352011000036107 follitropin alfa +933045011000036109 Vycin IV 500 mg powder for injection, 1 vial 118999 932852011000036105 Vycin IV 500 mg powder for injection, 1 vial 932719011000036108 Vycin IV 500 mg powder for injection, 500 mg vial 40201000168107 Vycin IV 40201000168107 Vycin IV 27499011000036100 vancomycin 500 mg injection, 1 vial 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +61699011000036109 Regaine 2% application, 60 mL, bottle 9985 57620011000036105 Regaine 2% application, 60 mL 54368011000036102 Regaine 2% application 25841000168103 Regaine 25841000168103 Regaine 63964011000036104 minoxidil 2% application, 60 mL 62111011000036107 minoxidil 2% application 21642011000036104 minoxidil +59969011000036100 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 30 mL, bottle 120723 55931011000036101 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 30 mL 53694011000036102 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63364011000036108 ibuprofen 40 mg/mL oral liquid, 30 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +60021011000036104 Paracetamol (Priceline) 500 mg film-coated tablet, 96, blister pack 123368 55983011000036108 Paracetamol (Priceline) 500 mg film-coated tablet, 96 53746011000036109 Paracetamol (Priceline) 500 mg film-coated tablet 53428011000036101 Paracetamol (Priceline) 53428011000036101 Paracetamol (Priceline) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +983691000168105 Frusemide (CA) 40 mg tablet, 100, bottle 186522 983681000168107 Frusemide (CA) 40 mg tablet, 100 983671000168109 Frusemide (CA) 40 mg tablet 983661000168103 Frusemide (CA) 983661000168103 Frusemide (CA) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +20792011000036105 Formet-1000 1 g film-coated tablet, 90, blister pack 91113 13958011000036105 Formet-1000 1 g film-coated tablet, 90 7244011000036106 Formet-1000 1 g film-coated tablet 20461000168107 Formet-1000 20461000168107 Formet-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1046871000168102 Tramal SR 100 mg modified release tablet, 60, blister pack 75947 1046861000168108 Tramal SR 100 mg modified release tablet, 60 6812011000036104 Tramal SR 100 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 38672011000036105 tramadol hydrochloride 100 mg modified release tablet, 60 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +815581000168100 Deflectum 5/10 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200820 815571000168103 Deflectum 5/10 (perindopril arginine/amlodipine) uncoated tablet, 30 815541000168105 Deflectum 5/10 (perindopril arginine/amlodipine) uncoated tablet 815531000168101 Deflectum 5/10 (perindopril arginine/amlodipine) 815531000168101 Deflectum 5/10 (perindopril arginine/amlodipine) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +765231000168100 Citrulline Easy 1 g tablet, 300, bottle 765221000168103 Citrulline Easy 1 g tablet, 300 765201000168107 Citrulline Easy 1 g tablet 765131000168105 Citrulline Easy 765131000168105 Citrulline Easy 765211000168105 citrulline 1 g tablet, 300 765191000168109 citrulline 1 g tablet 765181000168106 citrulline +750241000168107 Magnesium Forte 400 (Wagner) hard capsule, 100, bottle 123796 750231000168103 Magnesium Forte 400 (Wagner) hard capsule, 100 750211000168108 Magnesium Forte 400 (Wagner) hard capsule 23081000168102 Magnesium Forte 400 (Wagner) 23081000168102 Magnesium Forte 400 (Wagner) 750221000168101 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2mg) capsule, 100 750201000168105 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule 750191000168107 magnesium + zinc +750241000168107 Magnesium Forte 400 (Wagner) hard capsule, 100, bottle 220522 750231000168103 Magnesium Forte 400 (Wagner) hard capsule, 100 750211000168108 Magnesium Forte 400 (Wagner) hard capsule 23081000168102 Magnesium Forte 400 (Wagner) 23081000168102 Magnesium Forte 400 (Wagner) 750221000168101 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2mg) capsule, 100 750201000168105 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule 750191000168107 magnesium + zinc +1113251000168102 Quetiapine (CH) 150 mg film-coated tablet, 90, blister pack 172831 1113241000168104 Quetiapine (CH) 150 mg film-coated tablet, 90 1113211000168103 Quetiapine (CH) 150 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 939061000168104 quetiapine 150 mg tablet, 90 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +891611000168106 Bicor 3.75 mg film-coated tablet, 56, blister pack 81605 891601000168108 Bicor 3.75 mg film-coated tablet, 56 891491000168100 Bicor 3.75 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 875901000168105 bisoprolol fumarate 3.75 mg tablet, 56 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +18121000036106 Vascalace 2.5 mg uncoated tablet, 30, blister pack 175221 16741000036101 Vascalace 2.5 mg uncoated tablet, 30 15341000036105 Vascalace 2.5 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +60535011000036102 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet, 96, blister pack 152037 56493011000036106 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet, 96 53940011000036103 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet 53169011000036104 Sinus Allergy and Pain Relief PE (Guardian) 53169011000036104 Sinus Allergy and Pain Relief PE (Guardian) 63384011000036106 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 96 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +853041000168105 Gabapen 100 mg hard capsule, 100, blister pack 204495 853031000168101 Gabapen 100 mg hard capsule, 100 853021000168104 Gabapen 100 mg hard capsule 853011000168106 Gabapen 853011000168106 Gabapen 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +931668011000036105 Twynsta 80/10 mg multilayer tablet, 30, blister pack 166266 930828011000036100 Twynsta 80/10 mg multilayer tablet, 30 930060011000036106 Twynsta 80/10 mg multilayer tablet 7561000168104 Twynsta 80/10 mg 7561000168104 Twynsta 80/10 mg 932441011000036108 telmisartan 80 mg + amlodipine 10 mg tablet, 30 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +770551000168108 Actair 300 IR sublingual tablet, 88, blister pack 770541000168106 Actair 300 IR sublingual tablet, 88 770381000168108 Actair 300 IR sublingual tablet 768771000168102 Actair 300 IR 768771000168102 Actair 300 IR 770531000168102 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet, 88 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +50228011000036101 Aquacel (177903) 15 cm x 15 cm dressing, 5, carton 49381011000036101 Aquacel (177903) 15 cm x 15 cm dressing, 5 48456011000036109 Aquacel (177903) 15 cm x 15 cm dressing 59481000168108 Aquacel (177903) 59481000168108 Aquacel (177903) 51354011000036105 dressing hydrofibre alternate to alginates 15 cm x 15 cm dressing, 5 50877011000036108 dressing hydrofibre alternate to alginates 15 cm x 15 cm dressing 50717011000036100 dressing hydrofibre alternate to alginates +782271000168105 Voriconazole (Alphapharm) 200 mg film-coated tablet, 14, blister pack 206993 782261000168104 Voriconazole (Alphapharm) 200 mg film-coated tablet, 14 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46804011000036107 voriconazole 200 mg tablet, 14 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +104461000036106 Juvicor 100 mg/20 mg film-coated tablet, 28, blister pack 191478 101641000036106 Juvicor 100 mg/20 mg film-coated tablet, 28 98251000036108 Juvicor 100 mg/20 mg film-coated tablet 54751000168109 Juvicor 100 mg/20 mg 54751000168109 Juvicor 100 mg/20 mg 101651000036109 sitagliptin 100 mg + simvastatin 20 mg tablet, 28 98261000036106 sitagliptin 100 mg + simvastatin 20 mg tablet 105261000036108 sitagliptin + simvastatin +69736011000036109 Resolve Itch Cleansing 1.6% gel, 75 g, tube 92662 67535011000036105 Resolve Itch Cleansing 1.6% gel, 75 g 65689011000036106 Resolve Itch Cleansing 1.6% gel 65058011000036104 Resolve Itch Cleansing 65058011000036104 Resolve Itch Cleansing 72036011000036103 tar 1.6% gel, 75 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +746061000168100 Cholstat 20 mg uncoated tablet, 10, blister pack 98488 746051000168102 Cholstat 20 mg uncoated tablet, 10 7551011000036104 Cholstat 20 mg uncoated tablet 3920011000036105 Cholstat 3920011000036105 Cholstat 746041000168104 pravastatin sodium 20 mg tablet, 10 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +59900011000036107 Hair Retreva 5% application, 60 mL, bottle 117216 55862011000036105 Hair Retreva 5% application, 60 mL 53691011000036100 Hair Retreva 5% application 53314011000036108 Hair Retreva 53314011000036108 Hair Retreva 63889011000036109 minoxidil 5% application, 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +802601000168101 Abilify ODT 10 mg orally disintegrating tablet, 60, blister pack 128893 802591000168108 Abilify ODT 10 mg orally disintegrating tablet, 60 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802581000168105 aripiprazole 10 mg orally disintegrating tablet, 60 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +50493011000036100 Sorbsan (1410) 10 cm x 10 cm medicated dressing, 1, carton 49340011000036101 Sorbsan (1410) 10 cm x 10 cm medicated dressing, 1 48499011000036107 Sorbsan (1410) 10 cm x 10 cm medicated dressing 18631000168108 Sorbsan (1410) 18631000168108 Sorbsan (1410) 51319011000036100 dressing alginate superficial wound 10 cm x 10 cm dressing, 1 50857011000036106 dressing alginate superficial wound 10 cm x 10 cm dressing 50715011000036105 dressing alginate superficial wound +61169011000036106 Ibuprofen (Herron) 200 mg film-coated tablet, 96, blister pack 74712 57112011000036103 Ibuprofen (Herron) 200 mg film-coated tablet, 96 54200011000036105 Ibuprofen (Herron) 200 mg film-coated tablet 53265011000036103 Ibuprofen (Herron) 53265011000036103 Ibuprofen (Herron) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1096251000168103 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet, 100, blister pack 286619 1096241000168100 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet, 100 1096071000168102 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet 1096061000168108 Iron (Apohealth) 1096061000168108 Iron (Apohealth) 1087981000168103 ferrous fumarate 200 mg (iron 65.7 mg) tablet, 100 933220681000036107 ferrous fumarate 200 mg (iron 65.7 mg) tablet 933232111000036107 ferrous fumarate +37438011000036104 Tysabri 300 mg/15 mL concentrated injection, 15 mL vial 112372 36659011000036108 Tysabri 300 mg/15 mL concentrated injection, 15 mL vial 36185011000036103 Tysabri 300 mg/15 mL concentrated injection, 15 mL vial 35877011000036106 Tysabri 35877011000036106 Tysabri 38577011000036101 natalizumab 300 mg/15 mL injection, 15 mL vial 37850011000036107 natalizumab 300 mg/15 mL injection, vial 37802011000036100 natalizumab +17956011000036101 Lucentis 3 mg/0.3 mL injection solution, 0.3 mL vial 125969 11819011000036106 Lucentis 3 mg/0.3 mL injection solution, 0.3 mL vial 5247011000036101 Lucentis 3 mg/0.3 mL injection solution, 0.3 mL vial 3299011000036106 Lucentis 3299011000036106 Lucentis 26785011000036109 ranibizumab 3 mg/0.3 mL injection, 0.3 mL vial 22171011000036108 ranibizumab 3 mg/0.3 mL injection, vial 21495011000036104 ranibizumab +991121000168104 Bisoprolol (Apotex) 1.25 mg tablet, 56, blister pack 182109 991111000168106 Bisoprolol (Apotex) 1.25 mg tablet, 56 990981000168105 Bisoprolol (Apotex) 1.25 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 46793011000036105 bisoprolol fumarate 1.25 mg tablet, 56 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +73324011000036102 Sutent 50 mg capsule, 28, blister pack 149116 41290011000036107 Sutent 50 mg capsule, 28 39864011000036100 Sutent 50 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46225011000036107 sunitinib 50 mg capsule, 28 45036011000036108 sunitinib 50 mg capsule 44859011000036109 sunitinib +933074011000036106 Tramadol Hydrochloride SR (Chemmart) 100 mg modified release tablet, 20, blister pack 154396 932871011000036101 Tramadol Hydrochloride SR (Chemmart) 100 mg modified release tablet, 20 932732011000036106 Tramadol Hydrochloride SR (Chemmart) 100 mg modified release tablet 8361000168109 Tramadol Hydrochloride SR (Chemmart) 8361000168109 Tramadol Hydrochloride SR (Chemmart) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +12321000036107 Olanzapine ODT (DRLA) 5 mg orally disintegrating tablet, 28, blister pack 163411 7231000036102 Olanzapine ODT (DRLA) 5 mg orally disintegrating tablet, 28 1681000036109 Olanzapine ODT (DRLA) 5 mg orally disintegrating tablet 721000168107 Olanzapine ODT (DRLA) 721000168107 Olanzapine ODT (DRLA) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +745901000168108 Celebrex 200 mg hard capsule, 20, blister pack 67902 745891000168109 Celebrex 200 mg hard capsule, 20 6496011000036105 Celebrex 200 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +86013011000036103 Lisinopril (DRLA) 20 mg uncoated tablet, 30, blister pack 152722 85666011000036101 Lisinopril (DRLA) 20 mg uncoated tablet, 30 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +992331000168107 Bisoprolol (Apotex) 2.5 mg tablet, 100, blister pack 182126 992321000168109 Bisoprolol (Apotex) 2.5 mg tablet, 100 992121000168107 Bisoprolol (Apotex) 2.5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79202011000036107 bisoprolol fumarate 2.5 mg tablet, 100 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +704131000168105 Esomeprazole (Sandoz) 40 mg enteric tablet, 30, blister pack 205826 704121000168107 Esomeprazole (Sandoz) 40 mg enteric tablet, 30 704111000168100 Esomeprazole (Sandoz) 40 mg enteric tablet 704101000168103 Esomeprazole (Sandoz) 704101000168103 Esomeprazole (Sandoz) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +18934011000036101 Tobrex 0.3% eye drops solution, 5 mL, bottle 25365 12242011000036104 Tobrex 0.3% eye drops solution, 5 mL 5551011000036100 Tobrex 0.3% eye drops solution 3114011000036106 Tobrex 3114011000036106 Tobrex 27007011000036103 tobramycin 0.3% eye drops, 5 mL 22380011000036100 tobramycin 0.3% eye drops 21646011000036100 tobramycin +18077011000036100 Pulmicort Respule 1 mg/2 mL inhalation solution, 30 x 2 mL ampoules 10071 11164011000036100 Pulmicort Respule 1 mg/2 mL inhalation solution, 30 x 2 mL ampoules 4776011000036100 Pulmicort Respule 1 mg/2 mL inhalation solution, 2 mL ampoule 25381000168103 Pulmicort Respule 25381000168103 Pulmicort Respule 26550011000036108 budesonide 1 mg/2 mL inhalation solution, 30 x 2 mL ampoules 21959011000036106 budesonide 1 mg/2 mL inhalation solution, ampoule 21307011000036104 budesonide +992171000168108 Bisoprolol (Apotex) 2.5 mg tablet, 10, blister pack 182126 992161000168102 Bisoprolol (Apotex) 2.5 mg tablet, 10 992121000168107 Bisoprolol (Apotex) 2.5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79201011000036101 bisoprolol fumarate 2.5 mg tablet, 10 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +844401000168103 Zactin 20 mg tablet, 28, blister pack 90913 844391000168100 Zactin 20 mg tablet, 28 844381000168103 Zactin 20 mg tablet 2952011000036104 Zactin 2952011000036104 Zactin 844321000168102 fluoxetine 20 mg tablet, 28 844301000168106 fluoxetine 20 mg tablet 21411011000036102 fluoxetine +18401011000036108 Tobramycin (Pfizer (Perth)) 80 mg/2 mL injection solution, 5 x 2 mL ampoules 101217 11178011000036104 Tobramycin (Pfizer (Perth)) 80 mg/2 mL injection solution, 5 x 2 mL ampoules 5113011000036101 Tobramycin (Pfizer (Perth)) 80 mg/2 mL injection solution, 2 mL ampoule 3940011000036107 Tobramycin (Pfizer (Perth)) 3940011000036107 Tobramycin (Pfizer (Perth)) 26553011000036100 tobramycin 80 mg/2 mL injection, 5 x 2 mL ampoules 21962011000036106 tobramycin 80 mg/2 mL injection, ampoule 21646011000036100 tobramycin +931691011000036104 Suvacid Heartburn Relief 20 mg enteric tablet, 7, blister pack 169503 930851011000036105 Suvacid Heartburn Relief 20 mg enteric tablet, 7 930071011000036109 Suvacid Heartburn Relief 20 mg enteric tablet 9761000168102 Suvacid Heartburn Relief 9761000168102 Suvacid Heartburn Relief 924214011000036106 pantoprazole 20 mg enteric tablet, 7 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1033941000168109 Atomoxetine (GXP) 5 mg hard capsule, 14, blister pack 234852 1033931000168100 Atomoxetine (GXP) 5 mg hard capsule, 14 1033841000168100 Atomoxetine (GXP) 5 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 976341000168105 atomoxetine 5 mg capsule, 14 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +933212171000036108 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 120, blister pack 142236 933200851000036108 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 120 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200861000036106 donepezil hydrochloride 10 mg tablet, 120 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +32571011000036101 Rivotril (5 x 1 mg/mL ampoules, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 13757 32362011000036102 Rivotril (5 x 1 mg/mL ampoules, 5 x 1 mL inert diluent ampoules), 1 pack 636471000168109 Rivotril (inert substance) diluent, 1 mL ampoule 19081000168107 Rivotril 19081000168107 Rivotril 32768011000036103 clonazepam 1 mg/mL injection [5 x 1 mL ampoules] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +32571011000036101 Rivotril (5 x 1 mg/mL ampoules, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 13757 32362011000036102 Rivotril (5 x 1 mg/mL ampoules, 5 x 1 mL inert diluent ampoules), 1 pack 32239011000036106 Rivotril (clonazepam 1 mg/mL) concentrated injection, ampoule 19081000168107 Rivotril 19081000168107 Rivotril 32768011000036103 clonazepam 1 mg/mL injection [5 x 1 mL ampoules] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 32699011000036100 clonazepam 1 mg/mL injection, ampoule 21226011000036100 clonazepam +900341000168102 Amlodipine (RBX) 10 mg tablet, 30, blister pack 195702 900331000168106 Amlodipine (RBX) 10 mg tablet, 30 900321000168108 Amlodipine (RBX) 10 mg tablet 900311000168101 Amlodipine (RBX) 900311000168101 Amlodipine (RBX) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +44720011000036100 Chirocaine 250 mg/200 mL injection solution, 200 mL bag 94482 42165011000036104 Chirocaine 250 mg/200 mL injection solution, 200 mL bag 40373011000036109 Chirocaine 250 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46926011000036101 levobupivacaine 250 mg/200 mL injection, 200 mL bag 45348011000036105 levobupivacaine 250 mg/200 mL injection, bag 44881011000036100 levobupivacaine +954951000168103 Topiramate (Sandoz) 200 mg film-coated tablet, 60, blister pack 135807 79951011000036108 Topiramate (Sandoz) 200 mg film-coated tablet, 60 79913011000036104 Topiramate (Sandoz) 200 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +1110511000168106 Nicotinell Ice Mint 4 mg chewing gum, 204, blister pack 279616 1110501000168108 Nicotinell Ice Mint 4 mg chewing gum, 204 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897421000168108 nicotine 4 mg gum, 204 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +74927011000036103 Decongestant (Pharmacy Health) Refill 0.05% nasal spray, 20 mL, bottle 81756 74414011000036104 Decongestant (Pharmacy Health) Refill 0.05% nasal spray, 20 mL 73935011000036108 Decongestant (Pharmacy Health) Refill 0.05% nasal spray 53408011000036109 Decongestant (Pharmacy Health) 53408011000036109 Decongestant (Pharmacy Health) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +61640011000036106 Advil 200 mg soft capsule, 100, blister pack 97229 57562011000036105 Advil 200 mg soft capsule, 100 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63927011000036100 ibuprofen 200 mg capsule, 100 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +1029851000168102 Aten 25 mg film-coated tablet, 84, blister pack 197714 1029841000168104 Aten 25 mg film-coated tablet, 84 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029831000168108 atenolol 25 mg tablet, 84 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +19696011000036101 Gelofusine 20 g/500 mL injection solution, 500 mL bottle 60644 12954011000036107 Gelofusine 20 g/500 mL injection solution, 500 mL bottle 6244011000036105 Gelofusine 20 g/500 mL injection solution, 500 mL bottle 4101011000036109 Gelofusine 4101011000036109 Gelofusine 27466011000036106 succinylated gelatin 20 g/500 mL injection, 500 mL bottle 22813011000036108 succinylated gelatin 20 g/500 mL injection, bottle 32620011000036100 succinylated gelatin +1018431000168108 Sumatriptan (WT) 50 mg film-coated tablet, 2, blister pack 160187 1018421000168105 Sumatriptan (WT) 50 mg film-coated tablet, 2 1018411000168103 Sumatriptan (WT) 50 mg film-coated tablet 1018401000168101 Sumatriptan (WT) 1018401000168101 Sumatriptan (WT) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +55271000036101 Pantoprazole (Sandoz) 40 mg enteric tablet, 30, bottle 147368 83981011000036101 Pantoprazole (Sandoz) 40 mg enteric tablet, 30 83617011000036107 Pantoprazole (Sandoz) 40 mg enteric tablet 83562011000036104 Pantoprazole (Sandoz) 83562011000036104 Pantoprazole (Sandoz) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +18034011000036109 Sodium Valproate (Sandoz) 200 mg enteric tablet, 100, blister pack 134367 11983011000036102 Sodium Valproate (Sandoz) 200 mg enteric tablet, 100 5497011000036105 Sodium Valproate (Sandoz) 200 mg enteric tablet 4312011000036109 Sodium Valproate (Sandoz) 4312011000036109 Sodium Valproate (Sandoz) 27139011000036107 valproate sodium 200 mg enteric tablet, 100 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +839831000168107 Polio Sabin Multidose oral liquid solution, 100 vials 13046 839821000168109 Polio Sabin Multidose oral liquid solution, 100 vials 839801000168100 Polio Sabin Multidose oral liquid solution, 1 vial 60241000168103 Polio Sabin 60241000168103 Polio Sabin 839811000168102 polio trivalent live vaccine oral liquid, 100 vials 839791000168101 polio trivalent live vaccine oral liquid, 1 vial 839781000168104 polio trivalent live vaccine +25291000036103 Amoxycillin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 97629 23071000036107 Amoxycillin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL 19961000036109 Amoxycillin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 5 mL 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +25291000036103 Amoxycillin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 76227 23071000036107 Amoxycillin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL 19961000036109 Amoxycillin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 5 mL 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +928851011000036109 Ramipril (Lupin) 2.5 mg hard capsule, 30, blister pack 134791 928213011000036105 Ramipril (Lupin) 2.5 mg hard capsule, 30 927872011000036105 Ramipril (Lupin) 2.5 mg hard capsule 927804011000036106 Ramipril (Lupin) 927804011000036106 Ramipril (Lupin) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +68922011000036103 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 118485 66635011000036101 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 65421011000036101 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 71924011000036101 glucose 5% (25 g/500 mL) injection, 500 mL bottle 70249011000036109 glucose 5% (25 g/500 mL) injection, bottle 21354011000036103 glucose +888801000168101 Bosentan (Astron) 125 mg film-coated tablet, 56, blister pack 235886 888791000168102 Bosentan (Astron) 125 mg film-coated tablet, 56 888701000168108 Bosentan (Astron) 125 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +21161011000036102 Seaze 25 mg tablet, 56, blister pack 99032 14303011000036103 Seaze 25 mg tablet, 56 7589011000036108 Seaze 25 mg tablet 3240011000036108 Seaze 3240011000036108 Seaze 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +677021000168100 Raloxifene Hydrochloride (Apo) 60 mg film-coated tablet, 28, bottle 184794 677001000168109 Raloxifene Hydrochloride (Apo) 60 mg film-coated tablet, 28 676981000168100 Raloxifene Hydrochloride (Apo) 60 mg film-coated tablet 676961000168109 Raloxifene Hydrochloride (Apo) 676961000168109 Raloxifene Hydrochloride (Apo) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +933246931000036104 Pantoprazole (PS) 40 mg enteric tablet, 140, blister pack 158197 933243761000036104 Pantoprazole (PS) 40 mg enteric tablet, 140 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46655011000036105 pantoprazole 40 mg enteric tablet, 140 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +782231000168107 Voriconazole (Alphapharm) 200 mg film-coated tablet, 2, blister pack 206993 782221000168109 Voriconazole (Alphapharm) 200 mg film-coated tablet, 2 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46805011000036106 voriconazole 200 mg tablet, 2 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +43571011000036109 Sutent 50 mg capsule, 7, bottle 123147 41292011000036106 Sutent 50 mg capsule, 7 39864011000036100 Sutent 50 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46227011000036102 sunitinib 50 mg capsule, 7 45036011000036108 sunitinib 50 mg capsule 44859011000036109 sunitinib +896021000168104 Atomoxetine (Sandoz) 60 mg hard capsule, 7, blister pack 238370 896011000168106 Atomoxetine (Sandoz) 60 mg hard capsule, 7 896001000168108 Atomoxetine (Sandoz) 60 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +933229651000036107 Morphine Sulfate MR (Apotex) 10 mg modified release tablet, 28, blister pack 132251 933223551000036106 Morphine Sulfate MR (Apotex) 10 mg modified release tablet, 28 933219661000036101 Morphine Sulfate MR (Apotex) 10 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +68725011000036102 Senega and Ammonia Mixture (McGloin's) oral liquid solution, 200 mL, bottle 11523 66615011000036109 Senega and Ammonia Mixture (McGloin's) oral liquid solution, 200 mL 65211011000036107 Senega and Ammonia Mixture (McGloin's) oral liquid solution 64951011000036106 Senega and Ammonia Mixture (McGloin's) 64951011000036106 Senega and Ammonia Mixture (McGloin's) 71336011000036100 ammonium bicarbonate 25 mg/mL + senega root 8.2 mg/mL oral liquid, 200 mL 69958011000036103 ammonium bicarbonate 25 mg/mL + senega root 8.2 mg/mL oral liquid 21924011000036109 ammonium + senega root +933246521000036105 Ranitidine (PS) 150 mg film-coated tablet, 60, blister pack 148523 933243071000036109 Ranitidine (PS) 150 mg film-coated tablet, 60 933241311000036101 Ranitidine (PS) 150 mg film-coated tablet 933240941000036106 Ranitidine (PS) 933240941000036106 Ranitidine (PS) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +929686011000036102 Vexazone 15 mg uncoated tablet, 98, blister pack 164345 929522011000036104 Vexazone 15 mg uncoated tablet, 98 929406011000036101 Vexazone 15 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929268011000036102 pioglitazone 15 mg tablet, 98 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +68895011000036107 Pinetarsol 2.3% bath oil, 15 mL, bottle 10632 66535011000036106 Pinetarsol 2.3% bath oil, 15 mL 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71267011000036103 tar 2.3% bath oil, 15 mL 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +81077011000036104 Seroquel XR 150 mg modified release tablet, 60, blister pack 153883 80586011000036102 Seroquel XR 150 mg modified release tablet, 60 80201011000036103 Seroquel XR 150 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +698701000168103 Betahistine (Apo) 16 mg uncoated tablet, 25, blister pack 217105 698691000168103 Betahistine (Apo) 16 mg uncoated tablet, 25 698681000168101 Betahistine (Apo) 16 mg uncoated tablet 698671000168104 Betahistine (Apo) 698671000168104 Betahistine (Apo) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1067381000168101 Cold and Flu Relief PE Day and Night (Pharmacy Care) (18 x Day tablets, 6 x Night tablets), 24, blister pack 223838 1067371000168104 Cold and Flu Relief PE Day and Night (Pharmacy Care) (18 x Day tablets, 6 x Night tablets), 24 1067361000168105 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Care) film-coated tablet 1067321000168100 Cold and Flu Relief PE Day and Night (Pharmacy Care) 1067341000168106 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Care) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1067381000168101 Cold and Flu Relief PE Day and Night (Pharmacy Care) (18 x Day tablets, 6 x Night tablets), 24, blister pack 223838 1067371000168104 Cold and Flu Relief PE Day and Night (Pharmacy Care) (18 x Day tablets, 6 x Night tablets), 24 1067351000168108 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Care) film-coated tablet 1067321000168100 Cold and Flu Relief PE Day and Night (Pharmacy Care) 1067331000168102 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Care) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +12361000036103 Olanzapine (RBX) 5 mg uncoated tablet, 28, blister pack 157853 6731000036108 Olanzapine (RBX) 5 mg uncoated tablet, 28 2881000036101 Olanzapine (RBX) 5 mg uncoated tablet 1591000168103 Olanzapine (RBX) 1591000168103 Olanzapine (RBX) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +19225011000036103 Cisplatin (DBL) 50 mg/50 mL injection solution, 50 mL vial 47275 12515011000036106 Cisplatin (DBL) 50 mg/50 mL injection solution, 50 mL vial 5633011000036106 Cisplatin (DBL) 50 mg/50 mL injection solution, 50 mL vial 3785011000036102 Cisplatin (DBL) 3785011000036102 Cisplatin (DBL) 27222011000036102 cisplatin 50 mg/50 mL injection, 50 mL vial 22583011000036106 cisplatin 50 mg/50 mL injection, vial 21771011000036102 cisplatin +44549011000036105 Vaniqa 11.5% cream, 2 x 30 g tubes 80167 42002011000036101 Vaniqa 11.5% cream, 2 x 30 g 40314011000036104 Vaniqa 11.5% cream 39569011000036103 Vaniqa 39569011000036103 Vaniqa 46777011000036105 eflornithine 11.5% cream, 2 x 30 g 45312011000036100 eflornithine 11.5% cream 44937011000036108 eflornithine +1096171000168101 Aleve 24 Hour 660 mg modified release tablet, 4, blister pack 263421 1096161000168107 Aleve 24 Hour 660 mg modified release tablet, 4 1096141000168108 Aleve 24 Hour 660 mg modified release tablet 1096101000168106 Aleve 24 Hour 1096101000168106 Aleve 24 Hour 1096151000168105 naproxen sodium 660 mg modified release tablet, 4 1096131000168104 naproxen sodium 660 mg modified release tablet 21304011000036105 naproxen +20783011000036102 Cortival-1/5 0.02% cream, 100 g, tube 91053 13952011000036107 Cortival-1/5 0.02% cream, 100 g 7238011000036103 Cortival-1/5 0.02% cream 55981000168101 Cortival-1/5 55981000168101 Cortival-1/5 28033011000036106 betamethasone (as valerate) 0.02% cream, 100 g 23354011000036109 betamethasone (as valerate) 0.02% cream 21366011000036103 betamethasone valerate +59611000036107 Lamivudine (Alphapharm) 150 mg film-coated tablet, 60, blister pack 167592 59091000036107 Lamivudine (Alphapharm) 150 mg film-coated tablet, 60 58211000036102 Lamivudine (Alphapharm) 150 mg film-coated tablet 58071000036104 Lamivudine (Alphapharm) 58071000036104 Lamivudine (Alphapharm) 27321011000036100 lamivudine 150 mg tablet, 60 22674011000036105 lamivudine 150 mg tablet 21665011000036104 lamivudine +747591000168100 Morphine MR (SCP) 10 mg modified release tablet, 20, blister pack 225421 747581000168103 Morphine MR (SCP) 10 mg modified release tablet, 20 747571000168101 Morphine MR (SCP) 10 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +835481000168108 Prolistat 120 mg hard capsule, 84, blister pack 268252 835471000168105 Prolistat 120 mg hard capsule, 84 835441000168103 Prolistat 120 mg hard capsule 835431000168107 Prolistat 835431000168107 Prolistat 27485011000036101 orlistat 120 mg capsule, 84 22831011000036103 orlistat 120 mg capsule 21581011000036109 orlistat +60208011000036105 Sinus (Chemmart) uncoated tablet, 24, blister pack 133183 56167011000036101 Sinus (Chemmart) uncoated tablet, 24 53816011000036102 Sinus (Chemmart) uncoated tablet 53463011000036103 Sinus (Chemmart) 53463011000036103 Sinus (Chemmart) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +38181000036102 Escilupin 5 mg film-coated tablet, 30, bottle 165835 34511000036108 Escilupin 5 mg film-coated tablet, 30 33081000036107 Escilupin 5 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +834031000168103 Differin 0.1% gel, 50 g, tube 53918 834021000168101 Differin 0.1% gel, 50 g 40114011000036108 Differin 0.1% gel 39740011000036103 Differin 39740011000036103 Differin 834011000168108 adapalene 0.1% gel, 50 g 45163011000036103 adapalene 0.1% gel 44932011000036106 adapalene +44069011000036100 Flixotide Junior Inhaler 50 microgram/actuation pressurised inhalation, 60 actuations, metered dose aerosol can 48552 41556011000036107 Flixotide Junior Inhaler 50 microgram/actuation pressurised inhalation, 60 actuations 40060011000036109 Flixotide Junior Inhaler 50 microgram/actuation pressurised inhalation, actuation 441000168109 Flixotide Junior Inhaler 441000168109 Flixotide Junior Inhaler 46519011000036106 fluticasone propionate 50 microgram/actuation pressurised inhalation, 60 actuations 23151011000036103 fluticasone propionate 50 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +753371000168102 Oxycodone (ZP) 10 mg hard capsule, 60, bottle 227827 753361000168108 Oxycodone (ZP) 10 mg hard capsule, 60 753331000168100 Oxycodone (ZP) 10 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +69452011000036104 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 48525 67252011000036106 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 65576011000036104 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71802011000036107 glucose 5% (5 g/100 mL) injection, 100 mL bag 70192011000036108 glucose 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +1058711000168103 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 500, bottle 234464 1058701000168101 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 500 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910641000168109 rosuvastatin 40 mg tablet, 500 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1047191000168108 Buprenorphine (Sandoz) 5 microgram/hour patch, 2, sachet 269679 1047181000168105 Buprenorphine (Sandoz) 5 microgram/hour patch, 2 1047151000168103 Buprenorphine (Sandoz) 5 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 26680011000036107 buprenorphine 5 microgram/hour patch, 2 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +933246611000036104 Lisinopril (PS) 5 mg uncoated tablet, 50, blister pack 152712 933243251000036105 Lisinopril (PS) 5 mg uncoated tablet, 50 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 83480011000036106 lisinopril 5 mg tablet, 50 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +973721000168105 Pregabalin (GH) 25 mg hard capsule, 14, blister pack 215685 973711000168103 Pregabalin (GH) 25 mg hard capsule, 14 973701000168101 Pregabalin (GH) 25 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +933246841000036104 Pantoprazole (PS) 20 mg enteric tablet, 15, blister pack 158196 933243671000036102 Pantoprazole (PS) 20 mg enteric tablet, 15 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46673011000036107 pantoprazole 20 mg enteric tablet, 15 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +816711000168108 Atomoxetine (Amneal) 80 mg hard capsule, 28, blister pack 238340 816701000168105 Atomoxetine (Amneal) 80 mg hard capsule, 28 816651000168100 Atomoxetine (Amneal) 80 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +852721000168108 Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack 166853 852711000168101 Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 26281000168100 Actonel EC Combi 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 852701000168104 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +852721000168108 Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack 166853 852711000168101 Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28 930063011000036103 Actonel EC Once-a-Week 35 mg enteric tablet 26281000168100 Actonel EC Combi 700017651000036104 Actonel EC Once-a-Week 852701000168104 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +957931000168104 Danzetron 8 mg film-coated tablet, 10, blister pack 107051 957921000168102 Danzetron 8 mg film-coated tablet, 10 957891000168107 Danzetron 8 mg film-coated tablet 957881000168109 Danzetron 957881000168109 Danzetron 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +32554011000036101 Meloxicam (Pharmacor) 7.5 mg uncoated tablet, 30, blister pack 127415 32346011000036109 Meloxicam (Pharmacor) 7.5 mg uncoated tablet, 30 32223011000036106 Meloxicam (Pharmacor) 7.5 mg uncoated tablet 32185011000036102 Meloxicam (Pharmacor) 32185011000036102 Meloxicam (Pharmacor) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +715921000168106 Probitor 20 mg enteric capsule, 14, blister pack 715911000168104 Probitor 20 mg enteric capsule, 14 715901000168102 Probitor 20 mg enteric capsule 2966011000036108 Probitor 2966011000036108 Probitor 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +20013011000036102 Dicloxsig 250 mg capsule, 24, bottle 68834 13249011000036101 Dicloxsig 250 mg capsule, 24 6531011000036102 Dicloxsig 250 mg capsule 4055011000036107 Dicloxsig 4055011000036107 Dicloxsig 27778011000036109 dicloxacillin 250 mg capsule, 24 23108011000036100 dicloxacillin 250 mg capsule 21398011000036101 dicloxacillin +20013011000036102 Dicloxsig 250 mg capsule, 24, bottle 162744 13249011000036101 Dicloxsig 250 mg capsule, 24 6531011000036102 Dicloxsig 250 mg capsule 4055011000036107 Dicloxsig 4055011000036107 Dicloxsig 27778011000036109 dicloxacillin 250 mg capsule, 24 23108011000036100 dicloxacillin 250 mg capsule 21398011000036101 dicloxacillin +920693011000036106 Citalopram (Sandoz) 20 mg film-coated tablet, 28, blister pack 101691 920348011000036101 Citalopram (Sandoz) 20 mg film-coated tablet, 28 920119011000036107 Citalopram (Sandoz) 20 mg film-coated tablet 920080011000036109 Citalopram (Sandoz) 920080011000036109 Citalopram (Sandoz) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +921891011000036108 Exforge HCT 5/160/12.5 film-coated tablet, 7, blister pack 157954 921450011000036104 Exforge HCT 5/160/12.5 film-coated tablet, 7 921015011000036108 Exforge HCT 5/160/12.5 film-coated tablet 14521000168101 Exforge HCT 5/160/12.5 14521000168101 Exforge HCT 5/160/12.5 922578011000036107 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 7 922093011000036109 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +21100011000036105 Nyogel 0.1% eye gel, 5 g, bottle 97737 14243011000036102 Nyogel 0.1% eye gel, 5 g 7529011000036101 Nyogel 0.1% eye gel 3579011000036107 Nyogel 3579011000036107 Nyogel 28242011000036109 timolol 0.1% eye gel, 5 g 23556011000036103 timolol 0.1% eye gel 21318011000036100 timolol +1044291000168109 Pryzex 5 mg film-coated tablet, 28, blister pack 178991 1044281000168106 Pryzex 5 mg film-coated tablet, 28 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +17801000036108 Seronia 25 mg film-coated tablet, 60, blister pack 143704 16521000036103 Seronia 25 mg film-coated tablet, 60 15431000036108 Seronia 25 mg film-coated tablet 15121000036100 Seronia 15121000036100 Seronia 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +925365011000036105 Nicorette Microtab 2 mg sublingual tablet, 30, blister pack 80872 924901011000036105 Nicorette Microtab 2 mg sublingual tablet, 30 87081011000036101 Nicorette Microtab 2 mg sublingual tablet 13101000168102 Nicorette Microtab 13101000168102 Nicorette Microtab 925450011000036103 nicotine 2 mg sublingual tablet, 30 87210011000036103 nicotine 2 mg sublingual tablet 21432011000036100 nicotine +920471000168109 Montelukast (APL) 5 mg chewable tablet, 30, bottle 193241 920461000168103 Montelukast (APL) 5 mg chewable tablet, 30 920391000168101 Montelukast (APL) 5 mg chewable tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 920451000168100 montelukast 5 mg chewable tablet, 30 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +884461000168106 Bosentan (Sun) 62.5 mg film-coated tablet, 56, bottle 257760 884411000168108 Bosentan (Sun) 62.5 mg film-coated tablet, 56 884401000168105 Bosentan (Sun) 62.5 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +972271000168105 Lyzalon 25 mg hard capsule, 60, bottle 224422 972261000168104 Lyzalon 25 mg hard capsule, 60 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +116281000036108 Robitussin Cold and Flu Junior 5 mg/5 mL oral liquid solution, 200 mL, bottle 146790 114521000036104 Robitussin Cold and Flu Junior 5 mg/5 mL oral liquid solution, 200 mL 113511000036108 Robitussin Cold and Flu Junior 5 mg/5 mL oral liquid solution, 5 mL 63461000168107 Robitussin Cold and Flu Junior 63461000168107 Robitussin Cold and Flu Junior 72001011000036101 phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 70274011000036109 phenylephrine hydrochloride 5 mg/5 mL oral liquid 37732011000036107 phenylephrine +1113571000168109 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 20, blister pack 179092 1113561000168103 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 20 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043261000168104 olanzapine 5 mg orally disintegrating tablet, 20 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +59978011000036100 Sudafed PE Sinus Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48, blister pack 120945 55940011000036107 Sudafed PE Sinus Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48 53728011000036106 Sudafed PE Sinus Day and Night Relief (Night) film-coated tablet 43201000168102 Sudafed PE Sinus Day and Night Relief 43441000168104 Sudafed PE Sinus Day and Night Relief (Night) 63167011000036107 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +59978011000036100 Sudafed PE Sinus Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48, blister pack 120945 55940011000036107 Sudafed PE Sinus Day and Night Relief (32 x Day tablets, 16 x Night tablets), 48 53727011000036105 Sudafed PE Sinus Day and Night Relief (Day) film-coated tablet 43201000168102 Sudafed PE Sinus Day and Night Relief 43321000168100 Sudafed PE Sinus Day and Night Relief (Day) 63167011000036107 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +25131000036108 Atorvastatin (GH) 40 mg film-coated tablet, 30, blister pack 180330 22831000036108 Atorvastatin (GH) 40 mg film-coated tablet, 30 20831000036109 Atorvastatin (GH) 40 mg film-coated tablet 19801000036101 Atorvastatin (GH) 19801000036101 Atorvastatin (GH) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +104641000036108 Donepezil Hydrochloride (Generic Health) 5 mg film-coated tablet, 28, blister pack 172750 101821000036102 Donepezil Hydrochloride (Generic Health) 5 mg film-coated tablet, 28 99211000036101 Donepezil Hydrochloride (Generic Health) 5 mg film-coated tablet 98021000036108 Donepezil Hydrochloride (Generic Health) 98021000036108 Donepezil Hydrochloride (Generic Health) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +926725011000036102 Vancomycin (ICP) 1 g powder for injection, 1 vial 119000 926116011000036109 Vancomycin (ICP) 1 g powder for injection, 1 vial 925627011000036104 Vancomycin (ICP) 1 g powder for injection, vial 925584011000036107 Vancomycin (ICP) 925584011000036107 Vancomycin (ICP) 27498011000036108 vancomycin 1 g injection, 1 vial 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +60705011000036109 Dimetapp PE Sinus Cold uncoated tablet, 24, blister pack 43458 56663011000036106 Dimetapp PE Sinus Cold uncoated tablet, 24 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63495011000036101 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 24 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +1034261000168103 Atomoxetine (CH) 60 mg hard capsule, 28, blister pack 234839 1034251000168100 Atomoxetine (CH) 60 mg hard capsule, 28 1034171000168103 Atomoxetine (CH) 60 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +18591011000036104 Avapro HCT 150/12.5 film-coated tablet, 30, blister pack 102017 11246011000036104 Avapro HCT 150/12.5 film-coated tablet, 30 5350011000036109 Avapro HCT 150/12.5 film-coated tablet 24771000168101 Avapro HCT 150/12.5 24771000168101 Avapro HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1032661000168109 Anti Diarrhoea (Amcal) 2 mg hard capsule, 10, blister pack 205128 1032651000168107 Anti Diarrhoea (Amcal) 2 mg hard capsule, 10 1032581000168104 Anti Diarrhoea (Amcal) 2 mg hard capsule 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 835231000168108 loperamide hydrochloride 2 mg capsule, 10 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +34713011000036100 Methadone Hydrochloride Syrup (Orion) 1 mg/mL oral liquid solution, 20 mL, bottle 21164 34297011000036104 Methadone Hydrochloride Syrup (Orion) 1 mg/mL oral liquid solution, 20 mL 34020011000036104 Methadone Hydrochloride Syrup (Orion) 1 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35146011000036104 methadone hydrochloride 1 mg/mL oral liquid, 20 mL 34868011000036108 methadone hydrochloride 1 mg/mL oral liquid 21357011000036109 methadone +930381000168101 Cavstat 5 mg film-coated tablet, 7, blister pack 234543 930371000168104 Cavstat 5 mg film-coated tablet, 7 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1042921000168107 Pryzex ODT 10 mg orally disintegrating tablet, 10, blister pack 179076 1042911000168100 Pryzex ODT 10 mg orally disintegrating tablet, 10 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1042901000168103 olanzapine 10 mg orally disintegrating tablet, 10 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +61340011000036103 Panadol Mini Cap 500 mg gelatin coated tablet, 4, blister pack 81007 57265011000036108 Panadol Mini Cap 500 mg gelatin coated tablet, 4 54256011000036104 Panadol Mini Cap 500 mg gelatin coated tablet 25261000168103 Panadol Mini Cap 25261000168103 Panadol Mini Cap 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44189011000036108 Remeron 15 mg film-coated tablet, 90, blister pack 55085 41665011000036102 Remeron 15 mg film-coated tablet, 90 40132011000036107 Remeron 15 mg film-coated tablet 3235011000036100 Remeron 3235011000036100 Remeron 46482011000036106 mirtazapine 15 mg tablet, 90 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +1064331000168105 Strong Pain Relief (Trust) uncoated tablet, 30, blister pack 201679 1064321000168107 Strong Pain Relief (Trust) uncoated tablet, 30 1064231000168103 Strong Pain Relief (Trust) uncoated tablet 1064221000168101 Strong Pain Relief (Trust) 1064221000168101 Strong Pain Relief (Trust) 967201000168106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 30 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +79039011000036103 Bispro 10 mg film-coated tablet, 28, blister pack 130182 78800011000036101 Bispro 10 mg film-coated tablet, 28 78627011000036103 Bispro 10 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +38021000036102 Escitalopram (LAPL) 5 mg film-coated tablet, 30, bottle 165827 34351000036100 Escitalopram (LAPL) 5 mg film-coated tablet, 30 33021000036106 Escitalopram (LAPL) 5 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +1038581000168102 Atomoxetine (Actavis) 40 mg hard capsule, 28, blister pack 237255 1038571000168100 Atomoxetine (Actavis) 40 mg hard capsule, 28 1038531000168103 Atomoxetine (Actavis) 40 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +12521000036102 Anastrozole (RBX) 1 mg film-coated tablet, 30, blister pack 158253 6811000036105 Anastrozole (RBX) 1 mg film-coated tablet, 30 2901000036103 Anastrozole (RBX) 1 mg film-coated tablet 1191000036102 Anastrozole (RBX) 1191000036102 Anastrozole (RBX) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +18093011000036100 Esipram 10 mg film-coated tablet, 28, blister pack 128781 11860011000036104 Esipram 10 mg film-coated tablet, 28 5194011000036103 Esipram 10 mg film-coated tablet 3816011000036108 Esipram 3816011000036108 Esipram 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1030011000168103 Atomoxetine (Genpar) 100 mg hard capsule, 7, blister pack 234835 1030001000168101 Atomoxetine (Genpar) 100 mg hard capsule, 7 1029991000168100 Atomoxetine (Genpar) 100 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +965221000168108 Clarithromycin (GenRx) 500 mg film-coated tablet, 14, blister pack 134857 965211000168101 Clarithromycin (GenRx) 500 mg film-coated tablet, 14 965181000168100 Clarithromycin (GenRx) 500 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 46431011000036106 clarithromycin 500 mg tablet, 14 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +652531000168108 Movicol Orange Concentrate oral liquid solution, 500 mL, bottle 212114 652521000168105 Movicol Orange Concentrate oral liquid solution, 500 mL 652501000168101 Movicol Orange Concentrate oral liquid solution, 25 mL 22351000168103 Movicol 22351000168103 Movicol 652511000168103 macrogol-3350 13.125 g/25 mL + sodium chloride 350.7 mg/25 mL + sodium bicarbonate 178.5 mg/25 mL + potassium chloride 46.6 mg/25 mL oral liquid, 500 mL 652491000168108 macrogol-3350 13.125 g/25 mL + sodium chloride 350.7 mg/25 mL + sodium bicarbonate 178.5 mg/25 mL + potassium chloride 46.6 mg/25 mL oral liquid 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +949151000168103 Risperidone (WT) 2 mg film-coated tablet, 60, bottle 127897 949141000168100 Risperidone (WT) 2 mg film-coated tablet, 60 949131000168109 Risperidone (WT) 2 mg film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +44703011000036101 Tacidine 150 mg capsule, 60, bottle 94206 14089011000036100 Tacidine 150 mg capsule, 60 7367011000036100 Tacidine 150 mg capsule 4018011000036106 Tacidine 4018011000036106 Tacidine 28206011000036101 nizatidine 150 mg capsule, 60 23518011000036109 nizatidine 150 mg capsule 21421011000036109 nizatidine +20570011000036100 Nicabate CQ 21 mg/24 hours patch, 7, sachet 80205 13760011000036108 Nicabate CQ 21 mg/24 hours patch, 7 7045011000036103 Nicabate CQ 21 mg/24 hours patch 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 27923011000036105 nicotine 21 mg/24 hours patch, 7 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +888641000168100 Capecitabine (Teva) 150 mg film-coated tablet, 60, blister pack 229772 888631000168109 Capecitabine (Teva) 150 mg film-coated tablet, 60 888621000168106 Capecitabine (Teva) 150 mg film-coated tablet 888561000168102 Capecitabine (Teva) 888561000168102 Capecitabine (Teva) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1047171000168107 Buprenorphine (Sandoz) 5 microgram/hour patch, 1, sachet 269679 1047161000168101 Buprenorphine (Sandoz) 5 microgram/hour patch, 1 1047151000168103 Buprenorphine (Sandoz) 5 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046451000168108 buprenorphine 5 microgram/hour patch, 1 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +661071000168102 Omeprazole (AN) 20 mg enteric tablet, 30, bottle 149424 661051000168106 Omeprazole (AN) 20 mg enteric tablet, 30 661041000168109 Omeprazole (AN) 20 mg enteric tablet 661031000168100 Omeprazole (AN) 661031000168100 Omeprazole (AN) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +69392011000036104 No-Doz Awakeners 100 mg uncoated tablet, 24, strip pack 40353 67192011000036100 No-Doz Awakeners 100 mg uncoated tablet, 24 65307011000036106 No-Doz Awakeners 100 mg uncoated tablet 24711000168109 No-Doz Awakeners 24711000168109 No-Doz Awakeners 71751011000036105 caffeine 100 mg tablet, 24 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +819601000168106 Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe 95260 819591000168104 Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe 819571000168100 Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe 34301000168108 Somatuline Autogel 34301000168108 Somatuline Autogel 819581000168102 lanreotide 60 mg/0.5 mL injection, 0.5 mL syringe 819561000168106 lanreotide 60 mg/0.5 mL injection, syringe 21278011000036100 lanreotide +933246681000036107 Lisinopril (PS) 10 mg uncoated tablet, 30, blister pack 152713 933243321000036107 Lisinopril (PS) 10 mg uncoated tablet, 30 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +750561000168108 Antenex 5 mg uncoated tablet, 900, blister pack 17605 750551000168106 Antenex 5 mg uncoated tablet, 900 32248011000036104 Antenex 5 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 750541000168109 diazepam 5 mg tablet, 900 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +20664011000036105 Gabapentin (Douglas) 300 mg hard capsule, 100, blister pack 81811 13844011000036105 Gabapentin (Douglas) 300 mg hard capsule, 100 7131011000036105 Gabapentin (Douglas) 300 mg hard capsule 3047011000036101 Gabapentin (Douglas) 3047011000036101 Gabapentin (Douglas) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +901621000168108 Amisulpride (CH) 200 mg uncoated tablet, 90, blister pack 234704 901611000168101 Amisulpride (CH) 200 mg uncoated tablet, 90 901551000168101 Amisulpride (CH) 200 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +904681000168109 Ceftriaxone (Kabi) 500 mg powder for injection, 1 vial 223323 904671000168106 Ceftriaxone (Kabi) 500 mg powder for injection, 1 vial 904661000168100 Ceftriaxone (Kabi) 500 mg powder for injection, 500 mg vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 26661011000036103 ceftriaxone 500 mg injection, 1 vial 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +956561000168100 Zolpidem (Hexal) 10 mg film-coated tablet, 7, blister pack 116893 956551000168102 Zolpidem (Hexal) 10 mg film-coated tablet, 7 956541000168104 Zolpidem (Hexal) 10 mg film-coated tablet 956531000168108 Zolpidem (Hexal) 956531000168108 Zolpidem (Hexal) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +33565011000036103 Quinapril (Pharmacor) 10 mg film-coated tablet, 30, blister pack 144093 33303011000036103 Quinapril (Pharmacor) 10 mg film-coated tablet, 30 33065011000036100 Quinapril (Pharmacor) 10 mg film-coated tablet 32961011000036100 Quinapril (Pharmacor) 32961011000036100 Quinapril (Pharmacor) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +933212481000036102 Epirubicin Hydrochloride (Actavis) 10 mg powder for injection, 1 vial 145965 933201761000036106 Epirubicin Hydrochloride (Actavis) 10 mg powder for injection, 1 vial 933195111000036105 Epirubicin Hydrochloride (Actavis) 10 mg powder for injection, 10 mg vial 933193151000036108 Epirubicin Hydrochloride (Actavis) 933193151000036108 Epirubicin Hydrochloride (Actavis) 933201771000036103 epirubicin hydrochloride 10 mg injection, 1 vial 933195121000036103 epirubicin hydrochloride 10 mg injection, vial 21230011000036100 epirubicin +104321000036106 Abisart 75 mg film-coated tablet, 30, bottle 170777 101491000036102 Abisart 75 mg film-coated tablet, 30 98741000036103 Abisart 75 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +104321000036106 Abisart 75 mg film-coated tablet, 30, bottle 214578 101491000036102 Abisart 75 mg film-coated tablet, 30 98741000036103 Abisart 75 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +12481000036102 Ondansetron ODT (DRLA) 4 mg orally disintegrating tablet, 10, blister pack 163640 7301000036102 Ondansetron ODT (DRLA) 4 mg orally disintegrating tablet, 10 3191000036103 Ondansetron ODT (DRLA) 4 mg orally disintegrating tablet 47061000168102 Ondansetron ODT (DRLA) 47061000168102 Ondansetron ODT (DRLA) 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +60372011000036105 Otrivin Junior 0.05% nasal drops solution, 10 mL, bottle 142226 56331011000036106 Otrivin Junior 0.05% nasal drops solution, 10 mL 53877011000036109 Otrivin Junior 0.05% nasal drops solution 34841000168100 Otrivin Junior 34841000168100 Otrivin Junior 63313011000036107 xylometazoline hydrochloride 0.05% nasal drops, 10 mL 61916011000036100 xylometazoline hydrochloride 0.05% nasal drops 61748011000036102 xylometazoline +1055741000168106 Sorbact Superabsorbent (98501) 10 cm x 10 cm dressing, 10, carton 173776 1055731000168102 Sorbact Superabsorbent (98501) 10 cm x 10 cm dressing, 10 1055721000168100 Sorbact Superabsorbent (98501) 10 cm x 10 cm dressing 1055711000168107 Sorbact Superabsorbent (98501) 1055711000168107 Sorbact Superabsorbent (98501) 1055481000168108 dressing hydrophobic 10 cm x 10 cm dressing, 10 1055461000168104 dressing hydrophobic 10 cm x 10 cm dressing 1055281000168109 dressing hydrophobic +933213541000036103 Citalopram (IPCA) 10 mg film-coated tablet, 1000, bottle 158869 933202981000036105 Citalopram (IPCA) 10 mg film-coated tablet, 1000 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202991000036107 citalopram 10 mg tablet, 1000 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1058801000168108 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 500, bottle 234496 1058791000168107 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 500 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910741000168104 rosuvastatin 20 mg tablet, 500 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +18564011000036103 Mestinon 60 mg sugar coated tablet, 150, bottle 13748 12006011000036100 Mestinon 60 mg sugar coated tablet, 150 5987011000036106 Mestinon 60 mg sugar coated tablet 47101000168104 Mestinon 47101000168104 Mestinon 26844011000036100 pyridostigmine bromide 60 mg tablet, 150 22225011000036108 pyridostigmine bromide 60 mg tablet 21240011000036101 pyridostigmine +933212401000036108 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 60, blister pack 142238 933201191000036103 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 60 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200951000036102 donepezil hydrochloride 10 mg tablet, 60 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +87743011000036106 Lamotrigine (Apo) 100 mg tablet, 56, blister pack 167523 87509011000036104 Lamotrigine (Apo) 100 mg tablet, 56 87346011000036104 Lamotrigine (Apo) 100 mg tablet 11141000168104 Lamotrigine (Apo) 11141000168104 Lamotrigine (Apo) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +60508011000036102 Cold and Flu Relief PE (Chemists' Own) uncoated tablet, 96, blister pack 150873 56466011000036103 Cold and Flu Relief PE (Chemists' Own) uncoated tablet, 96 53930011000036102 Cold and Flu Relief PE (Chemists' Own) uncoated tablet 53188011000036109 Cold and Flu Relief PE (Chemists' Own) 53188011000036109 Cold and Flu Relief PE (Chemists' Own) 63382011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 96 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +844161000168109 Combantrin-1 with Mebendazole 100 mg tablet, 6, blister pack 57119 844151000168107 Combantrin-1 with Mebendazole 100 mg tablet, 6 844141000168105 Combantrin-1 with Mebendazole 100 mg tablet 53266011000036105 Combantrin-1 with Mebendazole 53266011000036105 Combantrin-1 with Mebendazole 26822011000036107 mebendazole 100 mg tablet, 6 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +920664011000036106 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 21, bottle 107248 920434011000036100 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 21 920176011000036107 Doxycycline (Mayne Pharma) 100 mg modified release capsule 920064011000036102 Doxycycline (Mayne Pharma) 920064011000036102 Doxycycline (Mayne Pharma) 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +929640011000036107 Momex SR 60 mg modified release tablet, 28, blister pack 132257 929488011000036101 Momex SR 60 mg modified release tablet, 28 78630011000036101 Momex SR 60 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 929757011000036102 morphine sulfate pentahydrate 60 mg modified release tablet, 28 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +60191011000036101 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet, 16, blister pack 132577 56150011000036109 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet, 16 53809011000036109 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet 53526011000036106 Diarrhoea Relief (Priceline) 53526011000036106 Diarrhoea Relief (Priceline) 63805011000036108 loperamide hydrochloride 2.15 mg tablet, 16 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +928960011000036100 Pioglitazone (Pharmacor) 15 mg uncoated tablet, 28, blister pack 156716 928321011000036105 Pioglitazone (Pharmacor) 15 mg uncoated tablet, 28 927949011000036107 Pioglitazone (Pharmacor) 15 mg uncoated tablet 927785011000036106 Pioglitazone (Pharmacor) 927785011000036106 Pioglitazone (Pharmacor) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +1015621000168104 Aripiprazole (ZP) 15 mg uncoated tablet, 250, bottle 217193 1015611000168106 Aripiprazole (ZP) 15 mg uncoated tablet, 250 1015221000168101 Aripiprazole (ZP) 15 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 1015601000168108 aripiprazole 15 mg tablet, 250 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +68758011000036107 Nicotinell Fruit 2 mg chewing gum, 120, blister pack 126013 66683011000036105 Nicotinell Fruit 2 mg chewing gum, 120 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71509011000036101 nicotine 2 mg gum, 120 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +917501000168107 Amikacin (RMB) 500 mg/2 mL injection solution, 5 x 2 mL ampoules 262735 917491000168100 Amikacin (RMB) 500 mg/2 mL injection solution, 5 x 2 mL ampoules 917481000168103 Amikacin (RMB) 500 mg/2 mL injection solution, 2 mL ampoule 917471000168101 Amikacin (RMB) 917471000168101 Amikacin (RMB) 917341000168101 amikacin 500 mg/2 mL injection, 5 x 2 mL ampoules 917321000168107 amikacin 500 mg/2 mL injection, ampoule 37805011000036108 amikacin +17891000036100 Torzole 20 mg enteric tablet, 30, blister pack 155107 16561000036107 Torzole 20 mg enteric tablet, 30 15671000036107 Torzole 20 mg enteric tablet 15281000036106 Torzole 15281000036106 Torzole 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +848541000168107 Entecavir (RBX) 500 microgram film-coated tablet, 30, blister pack 256612 848531000168103 Entecavir (RBX) 500 microgram film-coated tablet, 30 848521000168101 Entecavir (RBX) 500 microgram film-coated tablet 848511000168108 Entecavir (RBX) 848511000168108 Entecavir (RBX) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +925319011000036108 Clopidogrel (Actavis) 75 mg film-coated tablet, 56, blister pack 164866 924855011000036105 Clopidogrel (Actavis) 75 mg film-coated tablet, 56 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 87804011000036101 clopidogrel 75 mg tablet, 56 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +933229571000036103 Atropine Sulfate (AstraZeneca) 1.2 mg/mL injection solution, 50 x 1 mL ampoules 12056 933223491000036103 Atropine Sulfate (AstraZeneca) 1.2 mg/mL injection solution, 50 x 1 mL ampoules 933219511000036102 Atropine Sulfate (AstraZeneca) 1.2 mg/mL injection solution, ampoule 3899011000036103 Atropine Sulfate (AstraZeneca) 3899011000036103 Atropine Sulfate (AstraZeneca) 933223361000036101 atropine sulfate monohydrate 1.2 mg/mL injection, 50 x 1 mL ampoules 933219521000036109 atropine sulfate monohydrate 1.2 mg/mL injection, ampoule 933232141000036108 atropine sulfate monohydrate +1024071000168101 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 12, blister pack 227167 1024061000168107 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 12 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71519011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 12 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1060081000168100 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 90, blister pack 234479 1058891000168102 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 90 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911061000168106 rosuvastatin 10 mg tablet, 90 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +55341000036100 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 90, blister pack 147409 51151000036101 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 90 48901000036105 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet 48431000036105 Metformin Hydrochloride 1000 (Meditab) 48431000036105 Metformin Hydrochloride 1000 (Meditab) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +926091000168101 Amorol 5% application, 2.5 mL, bottle 207880 926081000168104 Amorol 5% application, 2.5 mL 926071000168102 Amorol 5% application 926061000168108 Amorol 926061000168108 Amorol 776941000168102 amorolfine 5% application, 2.5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +1064371000168108 Strong Pain Relief (Trust) uncoated tablet, 40, blister pack 201679 1064361000168102 Strong Pain Relief (Trust) uncoated tablet, 40 1064231000168103 Strong Pain Relief (Trust) uncoated tablet 1064221000168101 Strong Pain Relief (Trust) 1064221000168101 Strong Pain Relief (Trust) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +116201000036102 Kiovig 10% 2.5 g/25 mL injection solution, 25 mL vial 131966 114461000036109 Kiovig 10% 2.5 g/25 mL injection solution, 25 mL vial 112861000036103 Kiovig 10% 2.5 g/25 mL injection solution, 25 mL vial 17421000168108 Kiovig 10% 17421000168108 Kiovig 10% 114471000036101 normal immunoglobulin 2.5 g/25 mL injection, 25 mL vial 112871000036106 normal immunoglobulin 2.5 g/25 mL injection, vial 74965011000036103 normal immunoglobulin +19970011000036107 Celebrex 100 mg hard capsule, 60, blister pack 67901 13213011000036106 Celebrex 100 mg hard capsule, 60 6495011000036103 Celebrex 100 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +933247091000036102 Ramipril (PS) 10 mg hard capsule, 30, blister pack 153847 933243461000036107 Ramipril (PS) 10 mg hard capsule, 30 933241391000036106 Ramipril (PS) 10 mg hard capsule 933241001000036101 Ramipril (PS) 933241001000036101 Ramipril (PS) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +909431000168109 Chorit 10 mg film-coated tablet, 30, bottle 179849 909421000168106 Chorit 10 mg film-coated tablet, 30 909391000168104 Chorit 10 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +81761000036105 Riluzole (Sandoz) 50 mg film-coated tablet, 56, blister pack 167717 79991000036105 Riluzole (Sandoz) 50 mg film-coated tablet, 56 78421000036107 Riluzole (Sandoz) 50 mg film-coated tablet 78101000036106 Riluzole (Sandoz) 78101000036106 Riluzole (Sandoz) 27912011000036108 riluzole 50 mg tablet, 56 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +104781000036108 Irbesartan HCTZ 150/12.5 (Chemmart) film-coated tablet, 30, blister pack 175201 101931000036105 Irbesartan HCTZ 150/12.5 (Chemmart) film-coated tablet, 30 98681000036103 Irbesartan HCTZ 150/12.5 (Chemmart) film-coated tablet 52711000168102 Irbesartan HCTZ 150/12.5 (Chemmart) 52711000168102 Irbesartan HCTZ 150/12.5 (Chemmart) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104781000036108 Irbesartan HCTZ 150/12.5 (Chemmart) film-coated tablet, 30, blister pack 216080 101931000036105 Irbesartan HCTZ 150/12.5 (Chemmart) film-coated tablet, 30 98681000036103 Irbesartan HCTZ 150/12.5 (Chemmart) film-coated tablet 52711000168102 Irbesartan HCTZ 150/12.5 (Chemmart) 52711000168102 Irbesartan HCTZ 150/12.5 (Chemmart) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +12681000036100 Olanzapine (Terry White Chemists) 10 mg film-coated tablet, 28, blister pack 158971 6881000036102 Olanzapine (Terry White Chemists) 10 mg film-coated tablet, 28 1921000036103 Olanzapine (Terry White Chemists) 10 mg film-coated tablet 15211000168105 Olanzapine (Terry White Chemists) 15211000168105 Olanzapine (Terry White Chemists) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +43734011000036109 Stildem 10 mg film-coated tablet, 20, blister pack 120379 41223011000036109 Stildem 10 mg film-coated tablet, 20 39843011000036108 Stildem 10 mg film-coated tablet 39634011000036101 Stildem 39634011000036101 Stildem 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +18693011000036109 Olmetec 40 mg film-coated tablet, 30, blister pack 102139 11249011000036108 Olmetec 40 mg film-coated tablet, 30 4474011000036101 Olmetec 40 mg film-coated tablet 3066011000036105 Olmetec 3066011000036105 Olmetec 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +1035791000168102 Atorvastatin (RBX) 20 mg film-coated tablet, 30, blister pack 173484 1035781000168100 Atorvastatin (RBX) 20 mg film-coated tablet, 30 1035751000168107 Atorvastatin (RBX) 20 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +20629011000036102 Cialis 20 mg film-coated tablet, 4, blister pack 81137 13809011000036100 Cialis 20 mg film-coated tablet, 4 7095011000036108 Cialis 20 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 27945011000036109 tadalafil 20 mg tablet, 4 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +44017011000036106 Phenytoin Sodium (DBL) 250 mg/5 mL injection solution, 5 x 5 mL ampoules 46943 41506011000036103 Phenytoin Sodium (DBL) 250 mg/5 mL injection solution, 5 x 5 mL ampoules 40024011000036106 Phenytoin Sodium (DBL) 250 mg/5 mL injection solution, 5 mL ampoule 39613011000036109 Phenytoin Sodium (DBL) 39613011000036109 Phenytoin Sodium (DBL) 46348011000036108 phenytoin sodium 250 mg/5 mL injection, 5 x 5 mL ampoules 45098011000036104 phenytoin sodium 250 mg/5 mL injection, ampoule 21672011000036100 phenytoin +937231000168108 SalplusF Inhaler 125/25 pressurised inhalation, 120 actuations, metered dose aerosol can 267104 937221000168105 SalplusF Inhaler 125/25 pressurised inhalation, 120 actuations 937211000168103 SalplusF Inhaler 125/25 pressurised inhalation, actuation 937201000168101 SalplusF Inhaler 125/25 937201000168101 SalplusF Inhaler 125/25 26724011000036100 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22119011000036103 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +780861000168104 Fentanyl (Apo) 37 microgram/hour patch, 5, sachet 152566 780851000168101 Fentanyl (Apo) 37 microgram/hour patch, 5 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780841000168103 fentanyl 37 microgram/hour patch, 5 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +716401000168103 Omepro 20 mg enteric capsule, 14, bottle 167314 716371000168101 Omepro 20 mg enteric capsule, 14 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +44848011000036103 Perfalgan 1 g/100 mL intravenous infusion injection, 12 x 100 mL vials 99869 42280011000036107 Perfalgan 1 g/100 mL intravenous infusion injection, 12 x 100 mL vials 40418011000036100 Perfalgan 1 g/100 mL intravenous infusion injection, 100 mL vial 39596011000036105 Perfalgan 39596011000036105 Perfalgan 47031011000036102 paracetamol 1 g/100 mL injection, 12 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +61682011000036100 Panafen IB 200 mg film-coated tablet, 50, blister pack 97858 57604011000036106 Panafen IB 200 mg film-coated tablet, 50 54360011000036104 Panafen IB 200 mg film-coated tablet 9381000168107 Panafen IB 9381000168107 Panafen IB 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1115021000168101 Stilnoxium CR 12.5 mg modified release tablet, 14, blister pack 120714 1115011000168108 Stilnoxium CR 12.5 mg modified release tablet, 14 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46185011000036102 zolpidem tartrate 12.5 mg modified release tablet, 14 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +933229801000036105 Ceftriaxone (Max Pharma) 250 mg powder for injection, 5 vials 104486 933223161000036103 Ceftriaxone (Max Pharma) 250 mg powder for injection, 5 vials 933219531000036106 Ceftriaxone (Max Pharma) 250 mg powder for injection, 250 mg vial 933219181000036101 Ceftriaxone (Max Pharma) 933219181000036101 Ceftriaxone (Max Pharma) 933200111000036104 ceftriaxone 250 mg injection, 5 vials 933194011000036105 ceftriaxone 250 mg injection, vial 21610011000036107 ceftriaxone +12641000036109 Ceptolate 250 mg hard capsule, 100, blister pack 165766 7921000036106 Ceptolate 250 mg hard capsule, 100 1591000036105 Ceptolate 250 mg hard capsule 521000036106 Ceptolate 521000036106 Ceptolate 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +933212491000036100 Epirubicin Hydrochloride (Actavis) 50 mg powder for injection, 1 vial 146241 933201851000036104 Epirubicin Hydrochloride (Actavis) 50 mg powder for injection, 1 vial 933195131000036101 Epirubicin Hydrochloride (Actavis) 50 mg powder for injection, 50 mg vial 933193151000036108 Epirubicin Hydrochloride (Actavis) 933193151000036108 Epirubicin Hydrochloride (Actavis) 26719011000036109 epirubicin hydrochloride 50 mg injection, 1 vial 22114011000036104 epirubicin hydrochloride 50 mg injection, vial 21230011000036100 epirubicin +909411000168104 Chorit 10 mg film-coated tablet, 28, bottle 179849 909401000168102 Chorit 10 mg film-coated tablet, 28 909391000168104 Chorit 10 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890061000168107 atorvastatin 10 mg tablet, 28 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +892251000168103 Betahist 16 mg uncoated tablet, 60, blister pack 212079 892241000168100 Betahist 16 mg uncoated tablet, 60 892171000168101 Betahist 16 mg uncoated tablet 892161000168107 Betahist 892161000168107 Betahist 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1061491000168102 Atorvator 40 mg film-coated tablet, 30, bottle 179857 1061481000168100 Atorvator 40 mg film-coated tablet, 30 1061451000168107 Atorvator 40 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1076201000168107 Quetiapine (Auro) 300 mg film-coated tablet, 60, blister pack 172832 1075581000168109 Quetiapine (Auro) 300 mg film-coated tablet, 60 1075571000168106 Quetiapine (Auro) 300 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +156661000036108 Leflunomide (GH) 10 mg film-coated tablet, 30, bottle 125401 155731000036101 Leflunomide (GH) 10 mg film-coated tablet, 30 154951000036107 Leflunomide (GH) 10 mg film-coated tablet 154471000036108 Leflunomide (GH) 154471000036108 Leflunomide (GH) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +1102181000168106 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet, 30, blister pack 286104 1102171000168108 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet, 30 1102141000168101 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet 1102101000168103 Olmesartan HCTZ 20/12.5 (Pharmacor) 1102101000168103 Olmesartan HCTZ 20/12.5 (Pharmacor) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +60637011000036102 Rapideine uncoated tablet, 100, bottle 24144 56595011000036101 Rapideine uncoated tablet, 100 54016011000036103 Rapideine uncoated tablet 53593011000036105 Rapideine 53593011000036105 Rapideine 63447011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 100 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +20749011000036109 Viread 300 mg film-coated tablet, 30, bottle 90370 13918011000036100 Viread 300 mg film-coated tablet, 30 7204011000036102 Viread 300 mg film-coated tablet 3788011000036108 Viread 3788011000036108 Viread 28009011000036104 tenofovir disoproxil fumarate 300 mg tablet, 30 23332011000036101 tenofovir disoproxil fumarate 300 mg tablet 851521000168106 tenofovir disoproxil +925233011000036108 Rispaccord 3 mg film-coated tablet, 60, blister pack 159968 924770011000036102 Rispaccord 3 mg film-coated tablet, 60 924469011000036107 Rispaccord 3 mg film-coated tablet 37391000168108 Rispaccord 37391000168108 Rispaccord 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +32580011000036102 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) injection solution, 500 mL bag 19495 32375011000036101 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) injection solution, 500 mL bag 5203011000036100 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) injection solution, 500 mL bag 4241000168107 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 4241000168107 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 32775011000036100 sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, 500 mL bag 22348011000036109 sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +984011000168108 Aranesp 300 microgram/0.6 mL injection solution, 0.6 mL syringe 77961 984001000168105 Aranesp 300 microgram/0.6 mL injection solution, 0.6 mL syringe 983981000168100 Aranesp 300 microgram/0.6 mL injection solution, 0.6 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983991000168102 darbepoetin alfa 300 microgram/0.6 mL injection, 0.6 mL syringe 983971000168103 darbepoetin alfa 300 microgram/0.6 mL injection, syringe 21234011000036105 darbepoetin alfa +60714011000036107 Claratyne Children's Peach 1 mg/mL oral liquid solution, 15 mL, bottle 44453 56672011000036106 Claratyne Children's Peach 1 mg/mL oral liquid solution, 15 mL 54028011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63588011000036102 loratadine 1 mg/mL oral liquid, 15 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +925192011000036106 Gabaccord 800 mg film-coated tablet, 100, blister pack 156103 924729011000036109 Gabaccord 800 mg film-coated tablet, 100 924439011000036101 Gabaccord 800 mg film-coated tablet 924406011000036102 Gabaccord 924406011000036102 Gabaccord 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +86158011000036109 Rebif 12 million units (132 microgram)/1.5 mL injection solution, 4 x 1.5 mL cartridges 165746 85766011000036105 Rebif 12 million units (132 microgram)/1.5 mL injection solution, 4 x 1.5 mL cartridges 85381011000036101 Rebif 12 million units (132 microgram)/1.5 mL injection solution, 1.5 mL cartridge 2943011000036108 Rebif 2943011000036108 Rebif 86455011000036102 interferon beta-1a 12 million units (132 microgram)/1.5 mL injection, 4 x 1.5 mL cartridges 86230011000036109 interferon beta-1a 12 million units (132 microgram)/1.5 mL injection, cartridge 21462011000036109 interferon beta-1a +784881000168102 Ondansetron (GH) 4 mg film-coated tablet, 10, blister pack 231645 784871000168100 Ondansetron (GH) 4 mg film-coated tablet, 10 784781000168106 Ondansetron (GH) 4 mg film-coated tablet 784771000168108 Ondansetron (GH) 784771000168108 Ondansetron (GH) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +849341000168107 Olmesartan (Myl) 40 mg film-coated tablet, 30, blister pack 273572 849321000168101 Olmesartan (Myl) 40 mg film-coated tablet, 30 849271000168108 Olmesartan (Myl) 40 mg film-coated tablet 849221000168107 Olmesartan (Myl) 849221000168107 Olmesartan (Myl) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +920791011000036100 Midazolam (DBL) 5 mg/mL injection, 5 x 1 mL ampoules 81387 920470011000036108 Midazolam (DBL) 5 mg/mL injection, 5 x 1 mL ampoules 920202011000036103 Midazolam (DBL) 5 mg/mL injection, ampoule 39659011000036101 Midazolam (DBL) 39659011000036101 Midazolam (DBL) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +780541000168100 Levetiracetam (Juno) 500 mg/100 mL injection solution, 100 mL, bag 224492 780531000168109 Levetiracetam (Juno) 500 mg/100 mL injection solution, 100 mL 780511000168104 Levetiracetam (Juno) 500 mg/100 mL injection solution 779491000168109 Levetiracetam (Juno) 779491000168109 Levetiracetam (Juno) 780521000168106 levetiracetam 500 mg/100 mL injection, 100 mL 780501000168102 levetiracetam 500 mg/100 mL injection 21766011000036102 levetiracetam +920727011000036100 Pantoprazole (Generic Health) 40 mg enteric tablet, 100, blister pack 191033 920414011000036105 Pantoprazole (Generic Health) 40 mg enteric tablet, 100 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46653011000036109 pantoprazole 40 mg enteric tablet, 100 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +920727011000036100 Pantoprazole (Generic Health) 40 mg enteric tablet, 100, blister pack 155115 920414011000036105 Pantoprazole (Generic Health) 40 mg enteric tablet, 100 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46653011000036109 pantoprazole 40 mg enteric tablet, 100 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +18256011000036106 Oxaliplatin (Ebewe) 100 mg powder for injection, 1 vial 125868 11818011000036103 Oxaliplatin (Ebewe) 100 mg powder for injection, 1 vial 5376011000036109 Oxaliplatin (Ebewe) 100 mg powder for injection, 100 mg vial 3096011000036108 Oxaliplatin (Ebewe) 3096011000036108 Oxaliplatin (Ebewe) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +684411000168102 Irbesartan (Actavis) 150 mg film-coated tablet, 30, blister pack 223015 684401000168100 Irbesartan (Actavis) 150 mg film-coated tablet, 30 684391000168102 Irbesartan (Actavis) 150 mg film-coated tablet 669761000168107 Irbesartan (Actavis) 669761000168107 Irbesartan (Actavis) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +931564011000036109 Cholpra 20 mg film-coated tablet, 100, bottle 163543 930725011000036109 Cholpra 20 mg film-coated tablet, 100 930029011000036109 Cholpra 20 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +990481000168101 Lyrica 25 mg hard capsule, 20, bottle 99478 990471000168104 Lyrica 25 mg hard capsule, 20 83262011000036109 Lyrica 25 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +930701000168105 Cavstat 5 mg film-coated tablet, 100, blister pack 234543 928571000168106 Cavstat 5 mg film-coated tablet, 100 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 928561000168100 rosuvastatin 5 mg tablet, 100 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1114701000168107 Quetiapine (Unichem) 200 mg film-coated tablet, 60, blister pack 212148 1114691000168107 Quetiapine (Unichem) 200 mg film-coated tablet, 60 1114681000168109 Quetiapine (Unichem) 200 mg film-coated tablet 1114531000168109 Quetiapine (Unichem) 1114531000168109 Quetiapine (Unichem) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +836361000168102 Acarizax sublingual tablet, 10, blister pack 250392 836351000168104 Acarizax sublingual tablet, 10 836301000168103 Acarizax sublingual tablet 836231000168103 Acarizax 836231000168103 Acarizax 836341000168101 American house dust mite extract + European house dust mite extract (total 12 SQ-HDM) sublingual tablet, 10 836291000168104 American house dust mite extract + European house dust mite extract (total 12 SQ-HDM) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +785241000168107 Memantine (Generic Health) 20 mg film-coated tablet, 28, blister pack 168427 785231000168103 Memantine (Generic Health) 20 mg film-coated tablet, 28 667621000168101 Memantine (Generic Health) 20 mg film-coated tablet 667581000168101 Memantine (Generic Health) 667581000168101 Memantine (Generic Health) 83496011000036105 memantine hydrochloride 20 mg tablet, 28 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +952301000168109 Dicarz 12.5 mg film-coated tablet, 60, bottle 124083 83966011000036109 Dicarz 12.5 mg film-coated tablet, 60 83602011000036107 Dicarz 12.5 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +701731000168108 Frusemide (RBX) 40 mg tablet, 100, bottle 186514 701721000168105 Frusemide (RBX) 40 mg tablet, 100 701711000168103 Frusemide (RBX) 40 mg tablet 701701000168101 Frusemide (RBX) 701701000168101 Frusemide (RBX) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +19396011000036105 Sunscreen SPF 15 Milk (Hamilton) lotion, 125 mL, bottle 52908 12681011000036100 Sunscreen SPF 15 Milk (Hamilton) lotion, 125 mL 5536011000036109 Sunscreen SPF 15 Milk (Hamilton) lotion 30577011000036103 Sunscreen SPF 15 Milk (Hamilton) 30577011000036103 Sunscreen SPF 15 Milk (Hamilton) 27282011000036105 butyl methoxydibenzoylmethane 1.5% + 4-methylbenzylidene camphor 1.5% + octyl methoxycinnamate 7.5% lotion, 125 mL 22637011000036102 butyl methoxydibenzoylmethane 1.5% + 4-methylbenzylidene camphor 1.5% + octyl methoxycinnamate 7.5% lotion 21868011000036101 butyl methoxydibenzoylmethane + 4-methylbenzylidene camphor + octyl methoxycinnamate +1016421000168109 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 200632 1016411000168102 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 1016361000168109 Drospirenone/EE 3/20 (Apotex) (drospirenone 3 mg + ethinylestradiol 20 microgram) film-coated tablet 1016131000168103 Drospirenone/EE 3/20 (Apotex) 1016131000168103 Drospirenone/EE 3/20 (Apotex) 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +1016421000168109 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 200632 1016411000168102 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 1016391000168102 Drospirenone/EE 3/20 (Apotex) (inert substance) film-coated tablet 1016131000168103 Drospirenone/EE 3/20 (Apotex) 1016131000168103 Drospirenone/EE 3/20 (Apotex) 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +38501000036100 Escitalupin 10 mg film-coated tablet, 30, bottle 165853 34831000036102 Escitalupin 10 mg film-coated tablet, 30 33071000036105 Escitalupin 10 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +61314011000036102 Diovan 80 mg film-coated tablet, 28, blister pack 80868 57250011000036106 Diovan 80 mg film-coated tablet, 28 54254011000036107 Diovan 80 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63784011000036105 valsartan 80 mg tablet, 28 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +933212571000036103 Ranitidine (GN) 300 mg film-coated tablet, 7, blister pack 148526 933202251000036108 Ranitidine (GN) 300 mg film-coated tablet, 7 933195281000036109 Ranitidine (GN) 300 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +81112011000036104 Dizole 50 mg hard capsule, 100, blister pack 162640 80617011000036106 Dizole 50 mg hard capsule, 100 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81677011000036108 fluconazole 50 mg capsule, 100 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +851511000168104 Entecavir (Mylan) 500 microgram film-coated tablet, 30, blister pack 220090 851501000168102 Entecavir (Mylan) 500 microgram film-coated tablet, 30 851491000168109 Entecavir (Mylan) 500 microgram film-coated tablet 851431000168105 Entecavir (Mylan) 851431000168105 Entecavir (Mylan) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +43752011000036104 Zorac 0.1% cream, 3.5 g, tube 101327 41116011000036109 Zorac 0.1% cream, 3.5 g 39887011000036108 Zorac 0.1% cream 39675011000036100 Zorac 39675011000036100 Zorac 46098011000036102 tazarotene 0.1% cream, 3.5 g 44985011000036108 tazarotene 0.1% cream 44886011000036105 tazarotene +905161000168105 Amisulpride (AJS) 200 mg uncoated tablet, 30, blister pack 234693 905151000168108 Amisulpride (AJS) 200 mg uncoated tablet, 30 905141000168106 Amisulpride (AJS) 200 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 901561000168104 amisulpride 200 mg tablet, 30 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +37403011000036100 Cymbalta 30 mg enteric capsule, 7, blister pack 120382 36698011000036109 Cymbalta 30 mg enteric capsule, 7 36128011000036100 Cymbalta 30 mg enteric capsule 35918011000036106 Cymbalta 35918011000036106 Cymbalta 38611011000036105 duloxetine 30 mg enteric capsule, 7 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +55981000036108 Multaq 400 mg film-coated tablet, 50, blister pack 156373 52801000036100 Multaq 400 mg film-coated tablet, 50 48961000036109 Multaq 400 mg film-coated tablet 48081000036100 Multaq 48081000036100 Multaq 52811000036103 dronedarone 400 mg tablet, 50 48971000036101 dronedarone 400 mg tablet 56861000036100 dronedarone +977891000168105 Pregabalin (Teva) 50 mg hard capsule, 56, blister pack 229555 977881000168107 Pregabalin (Teva) 50 mg hard capsule, 56 977831000168106 Pregabalin (Teva) 50 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +701351000168103 Lansoprazole ODT (Apo) 30 mg orally disintegrating tablet, 28, blister pack 216794 701331000168109 Lansoprazole ODT (Apo) 30 mg orally disintegrating tablet, 28 701291000168103 Lansoprazole ODT (Apo) 30 mg orally disintegrating tablet 701281000168101 Lansoprazole ODT (Apo) 701281000168101 Lansoprazole ODT (Apo) 79819011000036106 lansoprazole 30 mg orally disintegrating tablet, 28 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +780581000168105 Fentanyl (Apo) 12 microgram/hour patch, 3, sachet 152577 780571000168107 Fentanyl (Apo) 12 microgram/hour patch, 3 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236081000036102 fentanyl 12 microgram/hour patch, 3 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +85371000036100 Fendex ER 10 mg modified release tablet, 100, bottle 184618 84801000036102 Fendex ER 10 mg modified release tablet, 100 84091000036104 Fendex ER 10 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84811000036100 felodipine 10 mg modified release tablet, 100 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +920722011000036102 Pantofast 40 mg enteric tablet, 30, blister pack 155106 920409011000036109 Pantofast 40 mg enteric tablet, 30 920167011000036104 Pantofast 40 mg enteric tablet 920103011000036107 Pantofast 920103011000036107 Pantofast 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +60037011000036105 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 48, blister pack 123811 55999011000036105 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 48 53752011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet 53547011000036106 Strong Pain Relief (Pharmacy Choice) 53547011000036106 Strong Pain Relief (Pharmacy Choice) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +60037011000036105 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 48, blister pack 167854 55999011000036105 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 48 53752011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet 53547011000036106 Strong Pain Relief (Pharmacy Choice) 53547011000036106 Strong Pain Relief (Pharmacy Choice) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +933229891000036102 Cholvastin 20 mg uncoated tablet, 30, blister pack 140038 933223691000036101 Cholvastin 20 mg uncoated tablet, 30 933219761000036107 Cholvastin 20 mg uncoated tablet 933219281000036108 Cholvastin 933219281000036108 Cholvastin 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +700029901000036108 Noriday 28 Day 350 microgram uncoated tablet, 28, blister pack 11149011000036106 Noriday 28 Day 350 microgram uncoated tablet, 28 4560011000036108 Noriday 28 Day 350 microgram uncoated tablet 700013841000036109 Noriday 28 Day 700013841000036109 Noriday 28 Day 28349011000036106 norethisterone 350 microgram tablet, 28 22533011000036103 norethisterone 350 microgram tablet 21579011000036102 norethisterone +834351000168106 Bacthecal 10 mg/20 mL intrathecal injection, 20 mL ampoule 227897 834341000168109 Bacthecal 10 mg/20 mL intrathecal injection, 20 mL ampoule 834331000168100 Bacthecal 10 mg/20 mL intrathecal injection, 20 mL ampoule 767341000168109 Bacthecal 767341000168109 Bacthecal 27307011000036102 baclofen 10 mg/20 mL intrathecal injection, 20 mL ampoule 22660011000036109 baclofen 10 mg/20 mL intrathecal injection, ampoule 21227011000036102 baclofen +933247001000036105 Pantoprazole (PS) 40 mg enteric tablet, 60, blister pack 158197 933243831000036103 Pantoprazole (PS) 40 mg enteric tablet, 60 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46662011000036107 pantoprazole 40 mg enteric tablet, 60 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1052811000168108 Palexia SR 200 mg modified release tablet, 40, blister pack 165356 1052801000168105 Palexia SR 200 mg modified release tablet, 40 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052791000168109 tapentadol 200 mg modified release tablet, 40 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +1033461000168104 Atomoxetine (CH) 100 mg hard capsule, 14, blister pack 234818 1033451000168101 Atomoxetine (CH) 100 mg hard capsule, 14 1033421000168109 Atomoxetine (CH) 100 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830121000168107 atomoxetine 100 mg capsule, 14 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +50425011000036106 XMET Analog powder for oral liquid, 400 g, can 49483011000036108 XMET Analog powder for oral liquid, 400 g 48755011000036106 XMET Analog powder for oral liquid 36351000168100 XMET Analog 36351000168100 XMET Analog 51440011000036108 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 400 g 50957011000036104 amino acid formula with vitamins and minerals without methionine powder for oral liquid 50753011000036104 amino acid formula with vitamins and minerals without methionine +949931000168107 Frusemide (Sanofi) 40 mg tablet, 30, bottle 144452 949921000168109 Frusemide (Sanofi) 40 mg tablet, 30 949911000168102 Frusemide (Sanofi) 40 mg tablet 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 928621000168109 furosemide (frusemide) 40 mg tablet, 30 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +19190011000036103 Monopril 10 mg uncoated tablet, 30, bottle 46751 12483011000036101 Monopril 10 mg uncoated tablet, 30 5088011000036104 Monopril 10 mg uncoated tablet 3248011000036105 Monopril 3248011000036105 Monopril 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +933229881000036104 Nicorette Microtab Lemon 2 mg sublingual tablet, 30, blister pack 135851 933223681000036103 Nicorette Microtab Lemon 2 mg sublingual tablet, 30 933219751000036109 Nicorette Microtab Lemon 2 mg sublingual tablet 13101000168102 Nicorette Microtab 13101000168102 Nicorette Microtab 925450011000036103 nicotine 2 mg sublingual tablet, 30 87210011000036103 nicotine 2 mg sublingual tablet 21432011000036100 nicotine +699401000168100 Arixtra 7.5 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 97799 699391000168102 Arixtra 7.5 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 699341000168105 Arixtra 7.5 mg/0.6 mL injection solution, 0.6 mL syringe 3651011000036101 Arixtra 3651011000036101 Arixtra 699381000168100 fondaparinux sodium 7.5 mg/0.6 mL injection, 10 x 0.6 mL syringes 699331000168101 fondaparinux sodium 7.5 mg/0.6 mL injection, syringe 21445011000036109 fondaparinux +55911000036100 Worm Treatment (Pharmacy Health) 100 mg chewable tablet, 6, blister pack 151452 51411000036108 Worm Treatment (Pharmacy Health) 100 mg chewable tablet, 6 48581000036105 Worm Treatment (Pharmacy Health) 100 mg chewable tablet 48241000036104 Worm Treatment (Pharmacy Health) 48241000036104 Worm Treatment (Pharmacy Health) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +69058011000036106 Calamine Oily (David Craig) 50 mg/mL lotion, 500 mL, bottle 14288 66860011000036109 Calamine Oily (David Craig) 50 mg/mL lotion, 500 mL 65252011000036105 Calamine Oily (David Craig) 50 mg/mL lotion 65015011000036103 Calamine Oily (David Craig) 65015011000036103 Calamine Oily (David Craig) 71469011000036106 calamine 50 mg/mL lotion, 500 mL 70022011000036106 calamine 50 mg/mL lotion 69791011000036109 calamine +930741000168107 Glycopyrrolate (Accord) 200 microgram/mL injection solution, 5 x 1 mL ampoules 237760 930731000168103 Glycopyrrolate (Accord) 200 microgram/mL injection solution, 5 x 1 mL ampoules 930721000168101 Glycopyrrolate (Accord) 200 microgram/mL injection solution, ampoule 930711000168108 Glycopyrrolate (Accord) 930711000168108 Glycopyrrolate (Accord) 86451011000036104 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, 5 x 1 mL ampoules 86229011000036100 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, ampoule 37771011000036104 glycopyrronium bromide (glycopyrrolate) +787251000168104 Palladone XL 24 mg modified release capsule, 10, bottle 116608 787241000168101 Palladone XL 24 mg modified release capsule, 10 787221000168107 Palladone XL 24 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 787231000168105 hydromorphone hydrochloride 24 mg modified release capsule, 10 787211000168100 hydromorphone hydrochloride 24 mg modified release capsule 21480011000036107 hydromorphone +905001000168105 Candesartan (CH) 4 mg uncoated tablet, 28, blister pack 195377 904991000168104 Candesartan (CH) 4 mg uncoated tablet, 28 904971000168100 Candesartan (CH) 4 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 904981000168102 candesartan cilexetil 4 mg tablet, 28 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +1095611000168107 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 70, blister pack 287305 1095601000168109 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 70 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1076321000168109 fexofenadine hydrochloride 180 mg tablet, 70 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1110601000168109 Dormizol CR 12.5 mg modified release tablet, 2, blister pack 120715 1110591000168102 Dormizol CR 12.5 mg modified release tablet, 2 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46186011000036109 zolpidem tartrate 12.5 mg modified release tablet, 2 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +44805011000036102 Fresofol 1% 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 98270 42239011000036105 Fresofol 1% 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 40400011000036100 Fresofol 1% 200 mg/20 mL injection emulsion, 20 mL ampoule 52331000168108 Fresofol 1% 52331000168108 Fresofol 1% 38832011000036102 propofol 200 mg/20 mL injection, 5 x 20 mL ampoules 38037011000036101 propofol 200 mg/20 mL injection, ampoule 37750011000036109 propofol +992811000168109 Flumazenil (Apo) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 236674 992801000168106 Flumazenil (Apo) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 992791000168105 Flumazenil (Apo) 500 microgram/5 mL injection solution, 5 mL ampoule 992781000168107 Flumazenil (Apo) 992781000168107 Flumazenil (Apo) 38694011000036109 flumazenil 500 microgram/5 mL injection, 5 x 5 mL ampoules 37931011000036105 flumazenil 500 microgram/5 mL injection, ampoule 37762011000036103 flumazenil +60140011000036100 Tefodine 120 mg film-coated tablet, 20, blister pack 129141 56099011000036101 Tefodine 120 mg film-coated tablet, 20 53789011000036105 Tefodine 120 mg film-coated tablet 53099011000036106 Tefodine 53099011000036106 Tefodine 52884011000036101 fexofenadine hydrochloride 120 mg tablet, 20 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +43580011000036108 Simvatrust 80 mg film-coated tablet, 30, blister pack 123818 41305011000036107 Simvatrust 80 mg film-coated tablet, 30 39835011000036108 Simvatrust 80 mg film-coated tablet 39653011000036104 Simvatrust 39653011000036104 Simvatrust 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +1035631000168109 Aranesp 10 microgram/0.4 mL injection solution, 0.4 mL injection device 122848 1035621000168106 Aranesp 10 microgram/0.4 mL injection solution, 0.4 mL injection device 1035601000168102 Aranesp 10 microgram/0.4 mL injection solution, 0.4 mL injection device 6471000168109 Aranesp 6471000168109 Aranesp 1035611000168104 darbepoetin alfa 10 microgram/0.4 mL injection, 0.4 mL injection device 1035591000168109 darbepoetin alfa 10 microgram/0.4 mL injection device 21234011000036105 darbepoetin alfa +933213301000036106 Lisinopril (IPCA) 5 mg uncoated tablet, 30, blister pack 152716 933201651000036103 Lisinopril (IPCA) 5 mg uncoated tablet, 30 933194781000036104 Lisinopril (IPCA) 5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +887841000168100 Idelvion (1 x 250 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 255552 887831000168109 Idelvion (1 x 250 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 887811000168104 Idelvion (inert substance) diluent, 2.5 mL vial 887771000168104 Idelvion 887771000168104 Idelvion 887821000168106 albutrepenonacog alfa 250 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 633571000168100 inert substance diluent, 2.5 mL vial 21220011000036103 inert substance +887841000168100 Idelvion (1 x 250 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 255552 887831000168109 Idelvion (1 x 250 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 887801000168102 Idelvion (albutrepenonacog alfa 250 units) powder for injection, 250 units vial 887771000168104 Idelvion 887771000168104 Idelvion 887821000168106 albutrepenonacog alfa 250 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 887791000168103 albutrepenonacog alfa 250 units injection, vial 887781000168101 albutrepenonacog alfa +1117031000168109 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 30, blister pack 161826 1117021000168106 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 30 1116951000168104 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 925437011000036103 amlodipine 10 mg + valsartan 320 mg tablet, 30 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +69307011000036104 Riodine 10% solution, 100 mL, bottle 21199 67107011000036100 Riodine 10% solution, 100 mL 65224011000036102 Riodine 10% solution 65019011000036101 Riodine 65019011000036101 Riodine 71675011000036102 povidone-iodine 10% solution, 100 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +909251000168104 Chorit 80 mg film-coated tablet, 6, blister pack 179859 909241000168101 Chorit 80 mg film-coated tablet, 6 909231000168105 Chorit 80 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 840961000168104 atorvastatin 80 mg tablet, 6 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +130821000036102 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet, 30, bottle 192194 128051000036102 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet, 30 124981000036104 Candesartan Cilexetil HCTZ 16/12.5 (Apo) uncoated tablet 38861000168105 Candesartan Cilexetil HCTZ 16/12.5 (Apo) 38861000168105 Candesartan Cilexetil HCTZ 16/12.5 (Apo) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1076431000168101 Aripiprazole (Auro) 10 mg uncoated tablet, 60, blister pack 198205 1076421000168104 Aripiprazole (Auro) 10 mg uncoated tablet, 60 1076351000168101 Aripiprazole (Auro) 10 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787431000168109 aripiprazole 10 mg tablet, 60 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +18590011000036106 Lisinobell 20 mg uncoated tablet, 30, bottle 107314 11366011000036104 Lisinobell 20 mg uncoated tablet, 30 4580011000036105 Lisinobell 20 mg uncoated tablet 3209011000036108 Lisinobell 3209011000036108 Lisinobell 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +703771000168107 Ciprofloxacin (Apo) 750 mg film-coated tablet, 14, blister pack 135652 703761000168101 Ciprofloxacin (Apo) 750 mg film-coated tablet, 14 703751000168103 Ciprofloxacin (Apo) 750 mg film-coated tablet 703671000168103 Ciprofloxacin (Apo) 703671000168103 Ciprofloxacin (Apo) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +1024961000168108 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 14, blister pack 193302 1024951000168106 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 14 1024941000168109 Pregabalin (Blooms The Chemist) 150 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +892091000168101 Betistavert 16 mg uncoated tablet, 100, blister pack 212087 892081000168104 Betistavert 16 mg uncoated tablet, 100 891981000168107 Betistavert 16 mg uncoated tablet 891971000168109 Betistavert 891971000168109 Betistavert 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +923879011000036107 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 28, blister pack 163768 923423011000036103 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 28 923077011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +994891000168108 Cisatracurium (Apo) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 237305 994881000168105 Cisatracurium (Apo) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 994871000168107 Cisatracurium (Apo) 10 mg/5 mL injection solution, 5 mL ampoule 994781000168101 Cisatracurium (Apo) 994781000168101 Cisatracurium (Apo) 161571000036104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL ampoules 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +763541000168105 Zinnat 250 mg film-coated tablet, 2, blister pack 47621 763531000168101 Zinnat 250 mg film-coated tablet, 2 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 763521000168104 cefuroxime 250 mg tablet, 2 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +37575011000036101 Hyoscine Hydrobromide (DBL) 400 microgram/mL injection solution, 5 x 1 mL ampoules 16347 36842011000036108 Hyoscine Hydrobromide (DBL) 400 microgram/mL injection solution, 5 x 1 mL ampoules 36138011000036102 Hyoscine Hydrobromide (DBL) 400 microgram/mL injection solution, ampoule 35971011000036108 Hyoscine Hydrobromide (DBL) 35971011000036108 Hyoscine Hydrobromide (DBL) 38730011000036104 hyoscine hydrobromide 400 microgram/mL injection, 5 x 1 mL ampoules 37960011000036109 hyoscine hydrobromide 400 microgram/mL injection, ampoule 37778011000036108 hyoscine hydrobromide +52790011000036105 Axit 15 mg film-coated tablet, 30, blister pack 97194 52602011000036104 Axit 15 mg film-coated tablet, 30 52439011000036102 Axit 15 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +17731000036108 Quinapril (Pfizer) 5 mg film-coated tablet, 30, blister pack 123434 16481000036103 Quinapril (Pfizer) 5 mg film-coated tablet, 30 15841000036101 Quinapril (Pfizer) 5 mg film-coated tablet 15111000036107 Quinapril (Pfizer) 15111000036107 Quinapril (Pfizer) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +19002011000036108 Actrapid 100 units/mL injection solution, 1 x 10 mL vial 34336 12309011000036108 Actrapid 100 units/mL injection solution, 1 x 10 mL vial 5863011000036107 Actrapid 100 units/mL injection solution, 10 mL vial 19771000168106 Actrapid 19771000168106 Actrapid 27056011000036105 insulin neutral human 100 units/mL injection, 1 x 10 mL vial 22425011000036107 insulin neutral human 100 units/mL injection, vial 33644011000036103 insulin neutral human +19002011000036108 Actrapid 100 units/mL injection solution, 1 x 10 mL vial 169625 12309011000036108 Actrapid 100 units/mL injection solution, 1 x 10 mL vial 5863011000036107 Actrapid 100 units/mL injection solution, 10 mL vial 19771000168106 Actrapid 19771000168106 Actrapid 27056011000036105 insulin neutral human 100 units/mL injection, 1 x 10 mL vial 22425011000036107 insulin neutral human 100 units/mL injection, vial 33644011000036103 insulin neutral human +43657011000036105 Vesicare 10 mg film-coated tablet, 30, blister pack 117227 41193011000036102 Vesicare 10 mg film-coated tablet, 30 39921011000036102 Vesicare 10 mg film-coated tablet 39622011000036107 Vesicare 39622011000036107 Vesicare 46155011000036106 solifenacin succinate 10 mg tablet, 30 45011011000036107 solifenacin succinate 10 mg tablet 44891011000036101 solifenacin +81801000036104 Anastrozole (Stada) 1 mg film-coated tablet, 30, blister pack 158749 79921000036107 Anastrozole (Stada) 1 mg film-coated tablet, 30 78721000036102 Anastrozole (Stada) 1 mg film-coated tablet 77821000036109 Anastrozole (Stada) 77821000036109 Anastrozole (Stada) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1114941000168107 Stilnoxium CR 12.5 mg modified release tablet, 2, blister pack 120714 1114931000168103 Stilnoxium CR 12.5 mg modified release tablet, 2 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46186011000036109 zolpidem tartrate 12.5 mg modified release tablet, 2 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +933213221000036109 Lisinopril (IPCA) 2.5 mg uncoated tablet, 30, blister pack 152715 933201611000036102 Lisinopril (IPCA) 2.5 mg uncoated tablet, 30 933194771000036101 Lisinopril (IPCA) 2.5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 927301011000036106 lisinopril 2.5 mg tablet, 30 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +73342011000036108 Tiger Balm Oil liniment, 28 mL, bottle 17098 73136011000036103 Tiger Balm Oil liniment, 28 mL 72931011000036101 Tiger Balm Oil liniment 34401000168100 Tiger Balm Oil 34401000168100 Tiger Balm Oil 73516011000036100 camphor 9% + menthol 10% + cajuput oil 7% + mint oil dementholised 6% + clove bud oil 5% liniment, 28 mL 73380011000036102 camphor 9% + menthol 10% + cajuput oil 7% + mint oil dementholised 6% + clove bud oil 5% liniment 73353011000036103 camphor + menthol + cajuput oil + mint oil dementholised + clove bud oil +81095011000036103 Dizole 100 mg hard capsule, 30, blister pack 159620 80603011000036104 Dizole 100 mg hard capsule, 30 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81671011000036100 fluconazole 100 mg capsule, 30 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +1093521000168103 Voltaren Emulgel No Mess Applicator 1.16% gel, 2 x 120 g, tubes 282516 1093511000168105 Voltaren Emulgel No Mess Applicator 1.16% gel, 2 x 120 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1093501000168107 diclofenac diethylamine 1.16% gel, 2 x 120 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +44617011000036100 Sinutab Sinus and Pain Relief uncoated tablet, 10, blister pack 90131 42070011000036105 Sinutab Sinus and Pain Relief uncoated tablet, 10 40346011000036102 Sinutab Sinus and Pain Relief uncoated tablet 39567011000036105 Sinutab Sinus and Pain Relief 39567011000036105 Sinutab Sinus and Pain Relief 46837011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 10 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +667191000168109 Duloxetine (Pharmacor) 30 mg enteric capsule, 28, blister pack 209159 667181000168106 Duloxetine (Pharmacor) 30 mg enteric capsule, 28 667171000168108 Duloxetine (Pharmacor) 30 mg enteric capsule 667101000168103 Duloxetine (Pharmacor) 667101000168103 Duloxetine (Pharmacor) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +156701000036101 Fosinopril Sodium (Apo) 20 mg uncoated tablet, 30, blister pack 119876 155721000036103 Fosinopril Sodium (Apo) 20 mg uncoated tablet, 30 154761000036108 Fosinopril Sodium (Apo) 20 mg uncoated tablet 154501000036100 Fosinopril Sodium (Apo) 154501000036100 Fosinopril Sodium (Apo) 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +60534011000036101 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet, 48, blister pack 152037 56492011000036104 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet, 48 53940011000036103 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet 53169011000036104 Sinus Allergy and Pain Relief PE (Guardian) 53169011000036104 Sinus Allergy and Pain Relief PE (Guardian) 63383011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +18428011000036107 Coversyl 2.5 mg film-coated tablet, 30, tube 101564 11217011000036107 Coversyl 2.5 mg film-coated tablet, 30 5612011000036107 Coversyl 2.5 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +660891000168104 Pioglitazone (AN) 15 mg uncoated tablet, 28, blister pack 176388 660881000168102 Pioglitazone (AN) 15 mg uncoated tablet, 28 660871000168100 Pioglitazone (AN) 15 mg uncoated tablet 660861000168106 Pioglitazone (AN) 660861000168106 Pioglitazone (AN) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +1110681000168101 Dormizol CR 12.5 mg modified release tablet, 20, blister pack 120715 1110671000168104 Dormizol CR 12.5 mg modified release tablet, 20 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46187011000036107 zolpidem tartrate 12.5 mg modified release tablet, 20 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +60671011000036107 Panadol Gel Cap 500 mg gelatin coated tablet, 48, blister pack 40932 56629011000036100 Panadol Gel Cap 500 mg gelatin coated tablet, 48 54014011000036106 Panadol Gel Cap 500 mg gelatin coated tablet 3661000168107 Panadol Gel Cap 3661000168107 Panadol Gel Cap 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +68913011000036101 Ivelip 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 101425 66472011000036105 Ivelip 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 65300011000036105 Ivelip 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 65097011000036107 Ivelip 65097011000036107 Ivelip 71206011000036100 soya oil 20% (100 g/500 mL) injection, 500 mL bag 70266011000036106 soya oil 20% (100 g/500 mL) injection, bag 69767011000036104 soya oil +85411000036101 Fendex ER 5 mg modified release tablet, 30, bottle 184619 84921000036101 Fendex ER 5 mg modified release tablet, 30 84081000036101 Fendex ER 5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 27475011000036108 felodipine 5 mg modified release tablet, 30 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +60346011000036105 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 20, blister pack 160499 56305011000036102 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 20 53870011000036108 Strong Pain with Calmative (Terry White Chemists) uncoated tablet 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60346011000036105 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 20, blister pack 140288 56305011000036102 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 20 53870011000036108 Strong Pain with Calmative (Terry White Chemists) uncoated tablet 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +19764011000036100 Metohexal 50 mg uncoated tablet, 100, blister pack 62560 13086011000036106 Metohexal 50 mg uncoated tablet, 100 6370011000036109 Metohexal 50 mg uncoated tablet 3356011000036103 Metohexal 3356011000036103 Metohexal 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +660751000168104 Calcitriol (AN) 0.25 microgram soft capsule, 100, bottle 99717 660741000168101 Calcitriol (AN) 0.25 microgram soft capsule, 100 660731000168105 Calcitriol (AN) 0.25 microgram soft capsule 660721000168107 Calcitriol (AN) 660721000168107 Calcitriol (AN) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +18402011000036102 Progynova 1 mg sugar coated tablet, 56, blister pack 10708 11357011000036105 Progynova 1 mg sugar coated tablet, 56 5190011000036108 Progynova 1 mg sugar coated tablet 3837011000036104 Progynova 3837011000036104 Progynova 26621011000036109 estradiol valerate 1 mg tablet, 56 22027011000036107 estradiol valerate 1 mg tablet 21238011000036103 estradiol +69658011000036104 Gasbusters 200 mg soft capsule, 10, blister pack 80295 67457011000036109 Gasbusters 200 mg soft capsule, 10 65673011000036103 Gasbusters 200 mg soft capsule 65074011000036109 Gasbusters 65074011000036109 Gasbusters 71985011000036105 simethicone 200 mg capsule, 10 70273011000036107 simethicone 200 mg capsule 69826011000036109 simethicone +12961000036102 Quetiapine (Chemmart) 25 mg film-coated tablet, 60, blister pack 166065 8081000036105 Quetiapine (Chemmart) 25 mg film-coated tablet, 60 2051000036101 Quetiapine (Chemmart) 25 mg film-coated tablet 421000036105 Quetiapine (Chemmart) 421000036105 Quetiapine (Chemmart) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +952541000168103 Fluvoxamine (AN) 100 mg film-coated tablet, 10, blister pack 168718 952531000168107 Fluvoxamine (AN) 100 mg film-coated tablet, 10 952521000168109 Fluvoxamine (AN) 100 mg film-coated tablet 952311000168107 Fluvoxamine (AN) 952311000168107 Fluvoxamine (AN) 927343011000036102 fluvoxamine maleate 100 mg tablet, 10 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +61631011000036100 Chesty Cough (Amcal) oral liquid solution, 100 mL, bottle 96918 57553011000036107 Chesty Cough (Amcal) oral liquid solution, 100 mL 54347011000036105 Chesty Cough (Amcal) oral liquid solution, 10 mL 53579011000036103 Chesty Cough (Amcal) 53579011000036103 Chesty Cough (Amcal) 63946011000036101 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 100 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +38661000036102 Escitalopram (Generic Health) 15 mg film-coated tablet, 30, bottle 165863 35031000036107 Escitalopram (Generic Health) 15 mg film-coated tablet, 30 32811000036102 Escitalopram (Generic Health) 15 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +750881000168101 Nicotinell Step-2 14 mg/24 hours patch, 3, sachet 42625 750871000168104 Nicotinell Step-2 14 mg/24 hours patch, 3 925703011000036107 Nicotinell Step-2 14 mg/24 hours patch 46531000168100 Nicotinell Step-2 46531000168100 Nicotinell Step-2 71996011000036102 nicotine 14 mg/24 hours patch, 3 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +1119601000168100 Quetiapine (Watson) 100 mg film-coated tablet, 90, blister pack 202263 1119591000168107 Quetiapine (Watson) 100 mg film-coated tablet, 90 1119541000168104 Quetiapine (Watson) 100 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +50665011000036104 Carvedilol (Genepharm) 3.125 mg uncoated tablet, 30, blister pack 152437 49689011000036108 Carvedilol (Genepharm) 3.125 mg uncoated tablet, 30 48824011000036108 Carvedilol (Genepharm) 3.125 mg uncoated tablet 48379011000036105 Carvedilol (Genepharm) 48379011000036105 Carvedilol (Genepharm) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +704091000168108 Esomeprazole (AN) 40 mg enteric tablet, 30, blister pack 205839 704081000168105 Esomeprazole (AN) 40 mg enteric tablet, 30 704071000168107 Esomeprazole (AN) 40 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +61151011000036100 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL, bottle 74522 57094011000036101 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL 54195011000036101 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +20338011000036104 Trileptal 150 mg film-coated tablet, 100, blister pack 76200 13547011000036103 Trileptal 150 mg film-coated tablet, 100 6829011000036104 Trileptal 150 mg film-coated tablet 4244011000036101 Trileptal 4244011000036101 Trileptal 27800011000036100 oxcarbazepine 150 mg tablet, 100 23128011000036108 oxcarbazepine 150 mg tablet 21420011000036102 oxcarbazepine +73333011000036102 Lamotrust 200 mg tablet, 56, blister pack 150750 73127011000036103 Lamotrust 200 mg tablet, 56 72929011000036104 Lamotrust 200 mg tablet 72919011000036109 Lamotrust 72919011000036109 Lamotrust 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +1067661000168103 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 15, blister pack 175119 1067651000168100 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 15 1067531000168107 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +44814011000036104 Daivobet 50/500 ointment, 120 g, tube 98773 42246011000036102 Daivobet 50/500 ointment, 120 g 40404011000036105 Daivobet 50/500 ointment 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 46999011000036104 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment, 120 g 45370011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment 44974011000036100 calcipotriol + betamethasone dipropionate +1050481000168100 Bupannus 15 microgram/hour patch, 4, sachet 234724 1050471000168103 Bupannus 15 microgram/hour patch, 4 1050421000168104 Bupannus 15 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1046411000168107 buprenorphine 15 microgram/hour patch, 4 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +1059121000168104 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 500, bottle 235364 1059111000168106 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 500 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 928591000168107 rosuvastatin 5 mg tablet, 500 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +59746011000036107 Anti-Fungal (Amcal) 1% cream, 50 g, tube 102019 55676011000036108 Anti-Fungal (Amcal) 1% cream, 50 g 53621011000036108 Anti-Fungal (Amcal) 1% cream 53464011000036101 Anti-Fungal (Amcal) 53464011000036101 Anti-Fungal (Amcal) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +753051000168109 Oxycodone (GX) 20 mg hard capsule, 60, bottle 227824 753041000168107 Oxycodone (GX) 20 mg hard capsule, 60 753011000168108 Oxycodone (GX) 20 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +1059031000168102 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 30, bottle 235364 1059021000168100 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 30 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +834431000168106 Codral Forte uncoated tablet, 4, strip pack 11090 834421000168108 Codral Forte uncoated tablet, 4 834401000168104 Codral Forte uncoated tablet 25131000168101 Codral Forte 25131000168101 Codral Forte 834411000168101 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 4 834391000168101 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet 21831011000036102 aspirin + codeine +44240011000036107 Prograf 5 mg/mL concentrated injection, 10 x 1 mL ampoules 58932 41712011000036100 Prograf 5 mg/mL concentrated injection, 10 x 1 mL ampoules 40158011000036106 Prograf 5 mg/mL concentrated injection, ampoule 4131011000036102 Prograf 4131011000036102 Prograf 46524011000036102 tacrolimus 5 mg/mL injection, 10 x 1 mL ampoules 45200011000036109 tacrolimus 5 mg/mL injection, ampoule 21380011000036104 tacrolimus +922201000168101 Cephalexin (AS) 250 mg capsule, 20, blister pack 148202 922191000168104 Cephalexin (AS) 250 mg capsule, 20 922181000168102 Cephalexin (AS) 250 mg capsule 922141000168107 Cephalexin (AS) 922141000168107 Cephalexin (AS) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +84265011000036103 Dicarz 25 mg film-coated tablet, 30, blister pack 101742 83958011000036102 Dicarz 25 mg film-coated tablet, 30 83608011000036105 Dicarz 25 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 84613011000036100 carvedilol 25 mg tablet, 30 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +55821000036101 Anastrozole (Synthon) 1 mg film-coated tablet, 90, blister pack 155176 52611000036102 Anastrozole (Synthon) 1 mg film-coated tablet, 90 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52251000036100 anastrozole 1 mg tablet, 90 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +18736011000036103 Kefzol 1 g powder for injection, 10 vials 14647 12051011000036104 Kefzol 1 g powder for injection, 10 vials 5804011000036108 Kefzol 1 g powder for injection, vial 4076011000036103 Kefzol 4076011000036103 Kefzol 26880011000036103 cefazolin 1 g injection, 10 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +13001000036108 Olanzapine ODT (Terry White Chemists) 20 mg orally disintegrating tablet, 28, blister pack 159006 7091000036108 Olanzapine ODT (Terry White Chemists) 20 mg orally disintegrating tablet, 28 3601000036104 Olanzapine ODT (Terry White Chemists) 20 mg orally disintegrating tablet 12841000168101 Olanzapine ODT (Terry White Chemists) 12841000168101 Olanzapine ODT (Terry White Chemists) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +1044611000168102 Amoxiclav 875/125 (Amneal) film-coated tablet, 2, blister pack 255081 1044601000168100 Amoxiclav 875/125 (Amneal) film-coated tablet, 2 1044591000168107 Amoxiclav 875/125 (Amneal) film-coated tablet 1044581000168109 Amoxiclav 875/125 (Amneal) 1044581000168109 Amoxiclav 875/125 (Amneal) 913921000168101 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 2 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +69084011000036105 Oilatum Plus bath oil, 350 mL, bottle 14540 66885011000036102 Oilatum Plus bath oil, 350 mL 65371011000036107 Oilatum Plus bath oil 65096011000036109 Oilatum Plus 65096011000036109 Oilatum Plus 71486011000036100 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil, 350 mL 70030011000036105 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +60123011000036105 Loratadine (Amcal) 10 mg tablet, 30, blister pack 127576 56082011000036105 Loratadine (Amcal) 10 mg tablet, 30 53782011000036100 Loratadine (Amcal) 10 mg tablet 53343011000036104 Loratadine (Amcal) 53343011000036104 Loratadine (Amcal) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +964821000168108 Physiotens 300 microgram film-coated tablet, 56, blister pack 114120 964811000168101 Physiotens 300 microgram film-coated tablet, 56 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964371000168100 moxonidine 300 microgram tablet, 56 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +82860011000036107 Actemra 400 mg/20 mL concentrated injection, 20 mL vial 149402 82767011000036106 Actemra 400 mg/20 mL concentrated injection, 20 mL vial 82677011000036107 Actemra 400 mg/20 mL concentrated injection, 20 mL vial 82659011000036103 Actemra 82659011000036103 Actemra 82988011000036104 tocilizumab 400 mg/20 mL injection, 20 mL vial 82925011000036102 tocilizumab 400 mg/20 mL injection, vial 82914011000036109 tocilizumab +19687011000036104 Mabthera 500 mg/50 mL concentrated injection, 50 mL vial 60319 12945011000036108 Mabthera 500 mg/50 mL concentrated injection, 50 mL vial 6235011000036108 Mabthera 500 mg/50 mL concentrated injection, 50 mL vial 56711000168101 Mabthera 56711000168101 Mabthera 27458011000036104 rituximab 500 mg/50 mL injection, 50 mL vial 22805011000036107 rituximab 500 mg/50 mL injection, vial 21460011000036105 rituximab +973401000168105 Pregabalin (Teva) 25 mg hard capsule, 60, blister pack 229552 973391000168108 Pregabalin (Teva) 25 mg hard capsule, 60 973311000168104 Pregabalin (Teva) 25 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +682401000168108 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 205579 682391000168106 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 682311000168102 Eleanor 150/30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 682381000168108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +682401000168108 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 205579 682391000168106 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 682321000168109 Eleanor 150/30 ED (inert substance) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 682381000168108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +954631000168104 Nitro-Dur 7.5 mg/24 hours patch, 5, sachet 52348 954621000168102 Nitro-Dur 7.5 mg/24 hours patch, 5 954601000168106 Nitro-Dur 7.5 mg/24 hours patch 4271011000036103 Nitro-Dur 4271011000036103 Nitro-Dur 954611000168109 glyceryl trinitrate 7.5 mg/24 hours patch, 5 954591000168104 glyceryl trinitrate 7.5 mg/24 hours patch 21388011000036102 glyceryl trinitrate +1027451000168109 Neuroccord 25 mg hard capsule, 20, bottle 235872 1027441000168107 Neuroccord 25 mg hard capsule, 20 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +55751000036103 Anastrozole (Synthon) 1 mg film-coated tablet, 28, blister pack 155176 52531000036105 Anastrozole (Synthon) 1 mg film-coated tablet, 28 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52061000036109 anastrozole 1 mg tablet, 28 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +933247321000036103 Risperidone (Pfizer) 500 microgram film-coated tablet, 20, blister pack 166682 933244051000036102 Risperidone (Pfizer) 500 microgram film-coated tablet, 20 933241651000036108 Risperidone (Pfizer) 500 microgram film-coated tablet 933240791000036103 Risperidone (Pfizer) 933240791000036103 Risperidone (Pfizer) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1043971000168101 Pryzex 7.5 mg film-coated tablet, 28, blister pack 178987 1043961000168107 Pryzex 7.5 mg film-coated tablet, 28 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +1115261000168104 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 7, blister pack 158163 1115251000168101 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 7 1115241000168103 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 922583011000036107 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 7 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +883341000168103 Betahistavert 16 mg uncoated tablet, 60, blister pack 227606 883331000168107 Betahistavert 16 mg uncoated tablet, 60 883261000168108 Betahistavert 16 mg uncoated tablet 883251000168106 Betahistavert 883251000168106 Betahistavert 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1046851000168106 Tramal SR 100 mg modified release tablet, 4, blister pack 75947 1046841000168109 Tramal SR 100 mg modified release tablet, 4 6812011000036104 Tramal SR 100 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 1046831000168100 tramadol hydrochloride 100 mg modified release tablet, 4 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +801961000168100 Actonate EC Once-a-Week 35 mg enteric tablet, 16, blister pack 166840 801951000168102 Actonate EC Once-a-Week 35 mg enteric tablet, 16 801801000168106 Actonate EC Once-a-Week 35 mg enteric tablet 801791000168105 Actonate EC Once-a-Week 801791000168105 Actonate EC Once-a-Week 801941000168104 risedronate sodium 35 mg enteric tablet, 16 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +887681000168106 Praluent 75 mg/mL injection solution, 2 x 1 mL syringes 238304 887671000168108 Praluent 75 mg/mL injection solution, 2 x 1 mL syringes 887621000168107 Praluent 75 mg/mL injection solution, syringe 886871000168105 Praluent 886871000168105 Praluent 887661000168102 alirocumab 75 mg/mL injection, 2 x 1 mL syringes 887611000168100 alirocumab 75 mg/mL injection, syringe 886881000168108 alirocumab +1059071000168104 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 100, bottle 235364 1059061000168105 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 100 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 928561000168100 rosuvastatin 5 mg tablet, 100 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +20715011000036103 Alprazolam (DP) 1 mg tablet, 50, blister pack 82798 13885011000036103 Alprazolam (DP) 1 mg tablet, 50 7171011000036107 Alprazolam (DP) 1 mg tablet 3097011000036106 Alprazolam (DP) 3097011000036106 Alprazolam (DP) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +1035311000168105 Anti Diarrhoea Plus (Amcal) chewable tablet, 12, blister pack 221948 1035301000168107 Anti Diarrhoea Plus (Amcal) chewable tablet, 12 1035231000168107 Anti Diarrhoea Plus (Amcal) chewable tablet 1035221000168109 Anti Diarrhoea Plus (Amcal) 1035221000168109 Anti Diarrhoea Plus (Amcal) 63670011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 12 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +18025011000036106 Accomin Adult Mixture oral liquid solution, 200 mL, bottle 15219 12078011000036105 Accomin Adult Mixture oral liquid solution, 200 mL 5244011000036107 Accomin Adult Mixture oral liquid solution, 10 mL 63181000168109 Accomin Adult Mixture 63181000168109 Accomin Adult Mixture 93041000036107 lysine hydrochloride 300 mg/10 mL + thiamine hydrochloride 10 mg/10 mL + pyridoxine hydrochloride 5 mg/10 mL + cyanocobalamin 25 microgram/10 mL + iron (as ferric pyrophosphate) 10 mg/10 mL oral liquid, 200 mL 93031000036102 lysine hydrochloride 300 mg/10 mL + thiamine hydrochloride 10 mg/10 mL + pyridoxine hydrochloride 5 mg/10 mL + cyanocobalamin 25 microgram/10 mL + iron (as ferric pyrophosphate) 10 mg/10 mL oral liquid 21693011000036103 lysine + thiamine + pyridoxine + cyanocobalamin + ferric pyrophosphate +969061000168108 Pregabalin (DRLA) 300 mg hard capsule, 56, blister pack 263074 969051000168106 Pregabalin (DRLA) 300 mg hard capsule, 56 969001000168107 Pregabalin (DRLA) 300 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +105101000036104 Abisart HCT 300/12.5 film-coated tablet, 30, bottle 176857 102161000036109 Abisart HCT 300/12.5 film-coated tablet, 30 98801000036108 Abisart HCT 300/12.5 film-coated tablet 24981000168101 Abisart HCT 300/12.5 24981000168101 Abisart HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +105101000036104 Abisart HCT 300/12.5 film-coated tablet, 30, bottle 215945 102161000036109 Abisart HCT 300/12.5 film-coated tablet, 30 98801000036108 Abisart HCT 300/12.5 film-coated tablet 24981000168101 Abisart HCT 300/12.5 24981000168101 Abisart HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1033141000168107 Ramipril (Apotex) 10 mg capsule, 14, bottle 179023 1033051000168105 Ramipril (Apotex) 10 mg capsule, 14 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46763011000036108 ramipril 10 mg capsule, 14 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +81061011000036102 Iscover 300 mg film-coated tablet, 28, blister pack 151280 80570011000036106 Iscover 300 mg film-coated tablet, 28 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81649011000036102 clopidogrel 300 mg tablet, 28 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +87726011000036102 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 60, blister pack 164469 87492011000036101 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 60 87339011000036107 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +18222011000036108 Karvea 75 mg film-coated tablet, 30, blister pack 101702 11231011000036108 Karvea 75 mg film-coated tablet, 30 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +849501000168101 Vzole 50 mg film-coated tablet, 56, bottle 238240 849331000168103 Vzole 50 mg film-coated tablet, 56 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +61168011000036103 Ibuprofen (Herron) 200 mg film-coated tablet, 48, blister pack 74712 57111011000036109 Ibuprofen (Herron) 200 mg film-coated tablet, 48 54200011000036105 Ibuprofen (Herron) 200 mg film-coated tablet 53265011000036103 Ibuprofen (Herron) 53265011000036103 Ibuprofen (Herron) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1046141000168102 Dermaveen Extra Gentle Soap Free Wash 1% application, 1 L, pump pack 1046131000168106 Dermaveen Extra Gentle Soap Free Wash 1% application, 1 L 1046101000168104 Dermaveen Extra Gentle Soap Free Wash 1% application 1046091000168109 Dermaveen Extra Gentle Soap Free Wash 1046091000168109 Dermaveen Extra Gentle Soap Free Wash 167821000036105 colloidal oatmeal 1% application, 1 L 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +60680011000036106 Rapideine Plus uncoated tablet, 96, blister pack 42509 56638011000036106 Rapideine Plus uncoated tablet, 96 54017011000036100 Rapideine Plus uncoated tablet 53460011000036106 Rapideine Plus 53460011000036106 Rapideine Plus 63804011000036109 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 96 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +50391011000036105 Risperidone (GA) 2 mg film-coated tablet, 60, blister pack 127779 49554011000036106 Risperidone (GA) 2 mg film-coated tablet, 60 48704011000036100 Risperidone (GA) 2 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +1078531000168101 Atomoxetine (GPPL) 18 mg hard capsule, 7, blister pack 234841 1078521000168104 Atomoxetine (GPPL) 18 mg hard capsule, 7 1078511000168106 Atomoxetine (GPPL) 18 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +700029741000036109 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11360011000036102 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 4774011000036108 Triquilar ED (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029741000036109 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11360011000036102 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5303011000036109 Triquilar ED (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029741000036109 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11360011000036102 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5236011000036103 Triquilar ED (inert substance) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029741000036109 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11360011000036102 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5474011000036107 Triquilar ED (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +44257011000036105 Malarone 250/100 film-coated tablet, 24, blister pack 61100 41728011000036108 Malarone 250/100 film-coated tablet, 24 40169011000036108 Malarone 250/100 film-coated tablet 9841000168107 Malarone 250/100 9841000168107 Malarone 250/100 46535011000036101 atovaquone 250 mg + proguanil hydrochloride 100 mg tablet, 24 45207011000036105 atovaquone 250 mg + proguanil hydrochloride 100 mg tablet 44920011000036109 atovaquone + proguanil +47321000036103 Peg-Intron Redipen Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92008 46911000036108 Peg-Intron Redipen Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 7296011000036107 Peg-Intron Redipen Injector (peginterferon alfa-2b 120 microgram) powder for injection, 120 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46921000036101 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23391011000036102 peginterferon alfa-2b 120 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +47321000036103 Peg-Intron Redipen Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92008 46911000036108 Peg-Intron Redipen Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46921000036101 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +104961000036101 Duloxetine (Chemmart) 60 mg enteric capsule, 28, blister pack 195364 102131000036103 Duloxetine (Chemmart) 60 mg enteric capsule, 28 98411000036108 Duloxetine (Chemmart) 60 mg enteric capsule 97641000036108 Duloxetine (Chemmart) 97641000036108 Duloxetine (Chemmart) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +104961000036101 Duloxetine (Chemmart) 60 mg enteric capsule, 28, blister pack 217988 102131000036103 Duloxetine (Chemmart) 60 mg enteric capsule, 28 98411000036108 Duloxetine (Chemmart) 60 mg enteric capsule 97641000036108 Duloxetine (Chemmart) 97641000036108 Duloxetine (Chemmart) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +986301000168103 Advil Double Strength Liquid Capsules 400 mg soft capsule, 10, blister pack 207293 986291000168104 Advil Double Strength Liquid Capsules 400 mg soft capsule, 10 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 51241000036105 ibuprofen 400 mg capsule, 10 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +1067701000168105 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 24, blister pack 175119 1067691000168105 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 24 1067531000168107 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +885511000168108 Bivalirudin (AC) 250 mg powder for injection, 1 vial 226749 885501000168105 Bivalirudin (AC) 250 mg powder for injection, 1 vial 885491000168103 Bivalirudin (AC) 250 mg powder for injection, 250 mg vial 885481000168101 Bivalirudin (AC) 885481000168101 Bivalirudin (AC) 26568011000036104 bivalirudin 250 mg injection, 1 vial 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +667331000168107 Kaptan 200 mg film-coated tablet, 20, blister pack 202244 667321000168109 Kaptan 200 mg film-coated tablet, 20 667311000168102 Kaptan 200 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +982001000168101 Lovenox Forte 120 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 80270 981991000168103 Lovenox Forte 120 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 981961000168105 Lovenox Forte 120 mg/0.8 mL injection solution, 0.8 mL syringe 981881000168107 Lovenox Forte 981881000168107 Lovenox Forte 46702011000036100 enoxaparin sodium 120 mg/0.8 mL injection, 10 x 0.8 mL syringes 45275011000036108 enoxaparin sodium 120 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +652211000168100 Quetia 100 mg film-coated tablet, 90, blister pack 204154 652201000168103 Quetia 100 mg film-coated tablet, 90 652191000168101 Quetia 100 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +900661000168105 Capeccord 500 mg film-coated tablet, 30, blister pack 213036 900651000168108 Capeccord 500 mg film-coated tablet, 30 900641000168106 Capeccord 500 mg film-coated tablet 881761000168102 Capeccord 881761000168102 Capeccord 667791000168105 capecitabine 500 mg tablet, 30 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +18419011000036109 Avandamet 2/500 film-coated tablet, 56, blister pack 114516 11478011000036100 Avandamet 2/500 film-coated tablet, 56 5930011000036102 Avandamet 2/500 film-coated tablet 48361000168101 Avandamet 2/500 48361000168101 Avandamet 2/500 26663011000036102 rosiglitazone 2 mg + metformin hydrochloride 500 mg tablet, 56 22063011000036106 rosiglitazone 2 mg + metformin hydrochloride 500 mg tablet 21426011000036104 rosiglitazone + metformin +933229971000036105 Astromide 20 mg hard capsule, 5, bottle 144774 933223771000036105 Astromide 20 mg hard capsule, 5 933219891000036109 Astromide 20 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +1116711000168103 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 30, blister pack 151627 1116701000168101 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 30 1116621000168103 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 63233011000036105 amlodipine 5 mg + valsartan 160 mg tablet, 30 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +966911000168104 Diavance 500/2.5 film-coated tablet, 60, blister pack 120264 966901000168102 Diavance 500/2.5 film-coated tablet, 60 966821000168103 Diavance 500/2.5 film-coated tablet 966811000168105 Diavance 500/2.5 966811000168105 Diavance 500/2.5 966891000168101 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet, 60 23508011000036106 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet 21813011000036107 metformin + glibenclamide +1029531000168105 Aten 25 mg film-coated tablet, 14, blister pack 197714 1029521000168107 Aten 25 mg film-coated tablet, 14 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029511000168100 atenolol 25 mg tablet, 14 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +939561000168108 Celecoxib (Ranbaxy) 200 mg hard capsule, 50, blister pack 212788 939551000168106 Celecoxib (Ranbaxy) 200 mg hard capsule, 50 939451000168105 Celecoxib (Ranbaxy) 200 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +931414011000036104 Paracetamol (Home Brand) 500 mg uncoated tablet, 24, blister pack 133710 930601011000036106 Paracetamol (Home Brand) 500 mg uncoated tablet, 24 929963011000036106 Paracetamol (Home Brand) 500 mg uncoated tablet 927765011000036108 Paracetamol (Home Brand) 927765011000036108 Paracetamol (Home Brand) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +977571000168106 Aripiprazole (AN) 2 mg uncoated tablet, 30, blister pack 198202 977561000168100 Aripiprazole (AN) 2 mg uncoated tablet, 30 977531000168108 Aripiprazole (AN) 2 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +74910011000036106 Stonefish Antivenom (CSL) 2000 units injection solution, 1 vial 74892 74397011000036102 Stonefish Antivenom (CSL) 2000 units injection solution, 1 vial 73920011000036102 Stonefish Antivenom (CSL) 2000 units injection solution, vial 73747011000036109 Stonefish Antivenom (CSL) 73747011000036109 Stonefish Antivenom (CSL) 75494011000036108 stonefish antivenom 2000 units injection, 1 vial 75094011000036102 stonefish antivenom 2000 units injection, vial 74979011000036109 stonefish antivenom +34722011000036102 Methadone Hydrochloride Syrup (Orion) 3 mg/mL oral liquid solution, 20 mL, bottle 21176 34306011000036107 Methadone Hydrochloride Syrup (Orion) 3 mg/mL oral liquid solution, 20 mL 34029011000036105 Methadone Hydrochloride Syrup (Orion) 3 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35155011000036109 methadone hydrochloride 3 mg/mL oral liquid, 20 mL 34877011000036101 methadone hydrochloride 3 mg/mL oral liquid 21357011000036109 methadone +19524011000036108 Acyclo-V 800 mg film-coated tablet, 120, blister pack 56373 12796011000036101 Acyclo-V 800 mg film-coated tablet, 120 6089011000036105 Acyclo-V 800 mg film-coated tablet 3992011000036100 Acyclo-V 3992011000036100 Acyclo-V 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +1020941000168100 Advil 200 mg effervescent tablet, 10, strip pack 200186 1020931000168109 Advil 200 mg effervescent tablet, 10 1020911000168104 Advil 200 mg effervescent tablet 53215011000036102 Advil 53215011000036102 Advil 1020921000168106 ibuprofen 200 mg effervescent tablet, 10 1020901000168102 ibuprofen 200 mg effervescent tablet 21885011000036105 ibuprofen +68690011000036109 Duromine 15 mg modified release capsule, 300, blister pack 10941 66581011000036103 Duromine 15 mg modified release capsule, 300 65265011000036108 Duromine 15 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 71304011000036100 phentermine 15 mg modified release capsule, 300 69940011000036102 phentermine 15 mg modified release capsule 37725011000036101 phentermine +44771011000036106 Cefazolin (Sandoz) 2 g powder for injection, 10 bottles 97685 42216011000036107 Cefazolin (Sandoz) 2 g powder for injection, 10 bottles 40394011000036103 Cefazolin (Sandoz) 2 g powder for injection, 2 g bottle 3337011000036101 Cefazolin (Sandoz) 3337011000036101 Cefazolin (Sandoz) 46976011000036100 cefazolin 2 g injection, 10 bottles 45367011000036102 cefazolin 2 g injection, bottle 21621011000036107 cefazolin +60046011000036106 Strong Pain Relief (Priceline) uncoated tablet, 96, blister pack 124407 56008011000036107 Strong Pain Relief (Priceline) uncoated tablet, 96 53755011000036104 Strong Pain Relief (Priceline) uncoated tablet 53572011000036108 Strong Pain Relief (Priceline) 53572011000036108 Strong Pain Relief (Priceline) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +43743011000036108 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 5 x 50 mL vials 116879 41179011000036109 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 5 x 50 mL vials 39815011000036100 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 50 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46144011000036109 ciprofloxacin 100 mg/50 mL injection, 5 x 50 mL vials 45080011000036102 ciprofloxacin 100 mg/50 mL injection, vial 21245011000036105 ciprofloxacin +20561011000036102 Erythromycin (DBL) 250 mg enteric capsule, 25, blister pack 79999 13752011000036102 Erythromycin (DBL) 250 mg enteric capsule, 25 7037011000036109 Erythromycin (DBL) 250 mg enteric capsule 3331011000036109 Erythromycin (DBL) 3331011000036109 Erythromycin (DBL) 27918011000036106 erythromycin 250 mg enteric capsule, 25 23242011000036105 erythromycin 250 mg enteric capsule 21889011000036107 erythromycin +130901000036103 Famlo 250 mg film-coated tablet, 56, blister pack 176994 127831000036102 Famlo 250 mg film-coated tablet, 56 124791000036100 Famlo 250 mg film-coated tablet 123871000036108 Famlo 123871000036108 Famlo 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +896181000168104 Imatinib (GH) 400 mg hard capsule, 180, blister pack 281536 896171000168102 Imatinib (GH) 400 mg hard capsule, 180 896061000168109 Imatinib (GH) 400 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 894011000168100 imatinib 400 mg capsule, 180 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +900501000168108 Ampicillin (Agila) 1 g powder for injection, 5 vials 203932 900491000168101 Ampicillin (Agila) 1 g powder for injection, 5 vials 900481000168104 Ampicillin (Agila) 1 g powder for injection, vial 900381000168107 Ampicillin (Agila) 900381000168107 Ampicillin (Agila) 28099011000036101 ampicillin 1 g injection, 5 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +1024641000168101 Telmisartan HCTZ 80/25 mg (Apotex) multilayer tablet, 28, blister pack 198226 1024631000168105 Telmisartan HCTZ 80/25 mg (Apotex) multilayer tablet, 28 1024621000168107 Telmisartan HCTZ 80/25 mg (Apotex) multilayer tablet 1024611000168100 Telmisartan HCTZ 80/25 mg (Apotex) 1024611000168100 Telmisartan HCTZ 80/25 mg (Apotex) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +61648011000036108 Advil 200 mg soft capsule, 6, blister pack 97229 57570011000036102 Advil 200 mg soft capsule, 6 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63935011000036107 ibuprofen 200 mg capsule, 6 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +12841000036108 Olanzapine ODT (Apo) 15 mg orally disintegrating tablet, 28, blister pack 158992 6991000036107 Olanzapine ODT (Apo) 15 mg orally disintegrating tablet, 28 1371000036103 Olanzapine ODT (Apo) 15 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +21126011000036103 Fluorouracil (Ebewe) 500 mg/10 mL injection solution, 10 mL vial 98544 14269011000036106 Fluorouracil (Ebewe) 500 mg/10 mL injection solution, 10 mL vial 7555011000036102 Fluorouracil (Ebewe) 500 mg/10 mL injection solution, 10 mL vial 932710011000036102 Fluorouracil (Ebewe) 932710011000036102 Fluorouracil (Ebewe) 28263011000036108 fluorouracil 500 mg/10 mL injection, 10 mL vial 23577011000036103 fluorouracil 500 mg/10 mL injection, vial 21481011000036100 fluorouracil +933063011000036102 Valvala 500 mg film-coated tablet, 100, blister pack 154465 932881011000036109 Valvala 500 mg film-coated tablet, 100 932741011000036104 Valvala 500 mg film-coated tablet 932700011000036100 Valvala 932700011000036100 Valvala 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +12801000036105 Olanzapine (Apo) 7.5 mg film-coated tablet, 28, blister pack 158987 6961000036100 Olanzapine (Apo) 7.5 mg film-coated tablet, 28 2601000036108 Olanzapine (Apo) 7.5 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +1026811000168108 Pregabalin (Amneal) 150 mg hard capsule, 30, bottle 235880 1026801000168105 Pregabalin (Amneal) 150 mg hard capsule, 30 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 971611000168109 pregabalin 150 mg capsule, 30 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +68827011000036105 Savlon solution, 250 mL, bottle 11248 66598011000036108 Savlon solution, 250 mL 65545011000036105 Savlon solution 64957011000036103 Savlon 64957011000036103 Savlon 71321011000036108 chlorhexidine gluconate 0.3% + cetrimide 3% solution, 250 mL 69948011000036100 chlorhexidine gluconate 0.3% + cetrimide 3% solution 69756011000036105 chlorhexidine + cetrimide +933247161000036105 Tevagrastim 300 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 163675 933243541000036105 Tevagrastim 300 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 933241521000036103 Tevagrastim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 933240801000036104 Tevagrastim 933240801000036104 Tevagrastim 929230011000036105 filgrastim 300 microgram/0.5 mL injection, 5 x 0.5 mL syringes 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +38821000036107 Escitalopram (Lupin) 20 mg film-coated tablet, 28, blister pack 165874 35191000036107 Escitalopram (Lupin) 20 mg film-coated tablet, 28 32921000036103 Escitalopram (Lupin) 20 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +20938011000036109 Glivec 100 mg film-coated tablet, 60, blister pack 94216 14092011000036106 Glivec 100 mg film-coated tablet, 60 7370011000036105 Glivec 100 mg film-coated tablet 3084011000036104 Glivec 3084011000036104 Glivec 28142011000036106 imatinib 100 mg tablet, 60 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +948101000168105 Lamotran 25 mg tablet, 56, blister pack 147625 948091000168100 Lamotran 25 mg tablet, 56 948081000168103 Lamotran 25 mg tablet 948071000168101 Lamotran 948071000168101 Lamotran 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +55661000036106 Synastrozole 1 mg film-coated tablet, 56, blister pack 155175 52411000036100 Synastrozole 1 mg film-coated tablet, 56 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52161000036105 anastrozole 1 mg tablet, 56 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +853841000168102 Telmisartan (Alkem) 40 mg uncoated tablet, 28, blister pack 211904 853831000168106 Telmisartan (Alkem) 40 mg uncoated tablet, 28 853821000168108 Telmisartan (Alkem) 40 mg uncoated tablet 853811000168101 Telmisartan (Alkem) 853811000168101 Telmisartan (Alkem) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +19704011000036101 Kytril 2 mg film-coated tablet, 5, blister pack 60872 12961011000036102 Kytril 2 mg film-coated tablet, 5 6250011000036103 Kytril 2 mg film-coated tablet 3372011000036100 Kytril 3372011000036100 Kytril 27473011000036107 granisetron 2 mg tablet, 5 22819011000036106 granisetron 2 mg tablet 21431011000036106 granisetron +701271000168104 Alendronate Plus D3 70 mg/70 microgram (DRLA) uncoated tablet, 4, blister pack 206930 701261000168105 Alendronate Plus D3 70 mg/70 microgram (DRLA) uncoated tablet, 4 701251000168108 Alendronate Plus D3 70 mg/70 microgram (DRLA) uncoated tablet 701241000168106 Alendronate Plus D3 70 mg/70 microgram (DRLA) 701241000168106 Alendronate Plus D3 70 mg/70 microgram (DRLA) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +69067011000036101 Oxycontin 30 mg modified release tablet, 60, blister pack 143173 66869011000036103 Oxycontin 30 mg modified release tablet, 60 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 71474011000036104 oxycodone hydrochloride 30 mg modified release tablet, 60 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +52764011000036102 Lisinopril (Apo) 5 mg tablet, 30, bottle 144027 52574011000036109 Lisinopril (Apo) 5 mg tablet, 30 52424011000036100 Lisinopril (Apo) 5 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +935221000168104 Centevo 125/31.25/200 mg film-coated tablet, 130, bottle 238856 935211000168106 Centevo 125/31.25/200 mg film-coated tablet, 130 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935201000168108 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 130 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +699081000168103 Sevoflurane (Piramal) 1 mL/mL inhalation solution, 250 mL, bottle 202776 699071000168101 Sevoflurane (Piramal) 1 mL/mL inhalation solution, 250 mL 699061000168107 Sevoflurane (Piramal) 1 mL/mL inhalation solution 699051000168105 Sevoflurane (Piramal) 699051000168105 Sevoflurane (Piramal) 46421011000036109 sevoflurane 1 mL/mL inhalation solution, 250 mL 45144011000036106 sevoflurane 1 mL/mL inhalation solution 44873011000036109 sevoflurane +1035951000168105 Aranesp with Automatic Needle Guard 15 microgram/0.38 mL injection solution, 4 x 0.38 mL syringes 166088 1035941000168108 Aranesp with Automatic Needle Guard 15 microgram/0.38 mL injection solution, 4 x 0.38 mL syringes 1035911000168109 Aranesp with Automatic Needle Guard 15 microgram/0.38 mL injection solution, 0.38 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983861000168102 darbepoetin alfa 15 microgram/0.38 mL injection, 4 x 0.38 mL syringes 983811000168100 darbepoetin alfa 15 microgram/0.38 mL injection, syringe 21234011000036105 darbepoetin alfa +933230121000036101 Ondansetron (Alphapharm) 4 mg/2 mL injection solution, 2 mL ampoule 155842 933224121000036105 Ondansetron (Alphapharm) 4 mg/2 mL injection solution, 2 mL ampoule 929399011000036101 Ondansetron (Alphapharm) 4 mg/2 mL injection solution, 2 mL ampoule 929370011000036100 Ondansetron (Alphapharm) 929370011000036100 Ondansetron (Alphapharm) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +20732011000036103 Allopurinol (Terry White Chemists) 100 mg uncoated tablet, 200, bottle 83101 13901011000036107 Allopurinol (Terry White Chemists) 100 mg uncoated tablet, 200 7187011000036107 Allopurinol (Terry White Chemists) 100 mg uncoated tablet 3500011000036106 Allopurinol (Terry White Chemists) 3500011000036106 Allopurinol (Terry White Chemists) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +20732011000036103 Allopurinol (Terry White Chemists) 100 mg uncoated tablet, 200, bottle 219904 13901011000036107 Allopurinol (Terry White Chemists) 100 mg uncoated tablet, 200 7187011000036107 Allopurinol (Terry White Chemists) 100 mg uncoated tablet 3500011000036106 Allopurinol (Terry White Chemists) 3500011000036106 Allopurinol (Terry White Chemists) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +61014011000036101 Nurofen Cold and Flu with Decongestant film-coated tablet, 6, blister pack 65640 56957011000036107 Nurofen Cold and Flu with Decongestant film-coated tablet, 6 54138011000036104 Nurofen Cold and Flu with Decongestant film-coated tablet 49471000168108 Nurofen Cold and Flu with Decongestant 49471000168108 Nurofen Cold and Flu with Decongestant 63656011000036100 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 6 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +984091000168104 Butafen 200 mg sugar coated tablet, 8, blister pack 126093 984081000168102 Butafen 200 mg sugar coated tablet, 8 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63308011000036100 ibuprofen 200 mg tablet, 8 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1114621000168105 Ketizenol 100 mg film-coated tablet, 90, blister pack 202255 1114611000168103 Ketizenol 100 mg film-coated tablet, 90 1114601000168101 Ketizenol 100 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +20955011000036104 Levemir Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 141442 14110011000036103 Levemir Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 7387011000036103 Levemir Flexpen 100 units/mL injection solution, 3 mL cartridge 25431000168105 Levemir Flexpen 25431000168105 Levemir Flexpen 28156011000036107 insulin detemir 100 units/mL injection, 5 x 3 mL cartridges 23465011000036106 insulin detemir 100 units/mL injection, cartridge 21764011000036105 insulin detemir +20955011000036104 Levemir Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 95211 14110011000036103 Levemir Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 7387011000036103 Levemir Flexpen 100 units/mL injection solution, 3 mL cartridge 25431000168105 Levemir Flexpen 25431000168105 Levemir Flexpen 28156011000036107 insulin detemir 100 units/mL injection, 5 x 3 mL cartridges 23465011000036106 insulin detemir 100 units/mL injection, cartridge 21764011000036105 insulin detemir +1027291000168103 Neuroccord 75 mg hard capsule, 60, bottle 235854 1027281000168101 Neuroccord 75 mg hard capsule, 60 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +853201000168103 Aliquen 150 mg film-coated tablet, 60, blister pack 204821 853191000168101 Aliquen 150 mg film-coated tablet, 60 853181000168104 Aliquen 150 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +20158011000036108 Moclobemide (GenRx) 300 mg film-coated tablet, 60, blister pack 73835 13381011000036102 Moclobemide (GenRx) 300 mg film-coated tablet, 60 6666011000036105 Moclobemide (GenRx) 300 mg film-coated tablet 4206011000036102 Moclobemide (GenRx) 4206011000036102 Moclobemide (GenRx) 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +1018111000168109 Amisulpride (Apotex) 400 mg film-coated tablet, 10, blister pack 178897 1018101000168106 Amisulpride (Apotex) 400 mg film-coated tablet, 10 1018091000168101 Amisulpride (Apotex) 400 mg film-coated tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 933236831000036105 amisulpride 400 mg tablet, 10 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +1095931000168107 Ibuprofen (Genpar) 200 mg film-coated tablet, 80, blister pack 285310 1095921000168109 Ibuprofen (Genpar) 200 mg film-coated tablet, 80 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 1095911000168102 ibuprofen 200 mg tablet, 80 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +793281000168100 Ondansetron ODT (GH) 8 mg orally disintegrating tablet, 4, blister pack 231603 793271000168103 Ondansetron ODT (GH) 8 mg orally disintegrating tablet, 4 793261000168109 Ondansetron ODT (GH) 8 mg orally disintegrating tablet 793251000168107 Ondansetron ODT (GH) 793251000168107 Ondansetron ODT (GH) 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +1041871000168107 Atorvastatin (AS) 20 mg film-coated tablet, 40, blister pack 178540 1041861000168101 Atorvastatin (AS) 20 mg film-coated tablet, 40 1041791000168103 Atorvastatin (AS) 20 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841421000168105 atorvastatin 20 mg tablet, 40 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +20758011000036104 Avanza Soltab 15 mg orally disintegrating tablet, 30, blister pack 90597 13927011000036105 Avanza Soltab 15 mg orally disintegrating tablet, 30 7215011000036101 Avanza Soltab 15 mg orally disintegrating tablet 20511000168105 Avanza Soltab 20511000168105 Avanza Soltab 47681000036105 mirtazapine 15 mg orally disintegrating tablet, 30 47581000036109 mirtazapine 15 mg orally disintegrating tablet 21463011000036102 mirtazapine +20638011000036108 Profloxin 250 mg film-coated tablet, 14, blister pack 81460 13818011000036106 Profloxin 250 mg film-coated tablet, 14 7104011000036100 Profloxin 250 mg film-coated tablet 3630011000036107 Profloxin 3630011000036107 Profloxin 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +933247251000036100 Saizen 6 mg/1.03 mL injection solution, 5 x 1.03 mL cartridges 166475 933243931000036108 Saizen 6 mg/1.03 mL injection solution, 5 x 1.03 mL cartridges 933241571000036104 Saizen 6 mg/1.03 mL injection solution, 1.03 mL cartridge 35491000168107 Saizen 35491000168107 Saizen 933243941000036103 somatropin 6 mg/1.03 mL injection, 5 x 1.03 mL cartridges 933241581000036102 somatropin 6 mg/1.03 mL injection, cartridge 21295011000036100 somatropin +933212981000036107 Fosinopril Sodium HCTZ 20/12.5 mg (Chemmart) uncoated tablet, 30, blister pack 151948 933202781000036107 Fosinopril Sodium HCTZ 20/12.5 mg (Chemmart) uncoated tablet, 30 933194611000036100 Fosinopril Sodium HCTZ 20/12.5 mg (Chemmart) uncoated tablet 48131000168107 Fosinopril Sodium HCTZ 20/12.5 mg (Chemmart) 48131000168107 Fosinopril Sodium HCTZ 20/12.5 mg (Chemmart) 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1050321000168109 Bupredermal 40 microgram/hour patch, 2, sachet 234747 1050311000168102 Bupredermal 40 microgram/hour patch, 2 1050301000168100 Bupredermal 40 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 773951000168107 buprenorphine 40 microgram/hour patch, 2 773931000168101 buprenorphine 40 microgram/hour patch 21232011000036101 buprenorphine +18179011000036101 Perindopril Erbumine (DP) 4 mg uncoated tablet, 30, blister pack 121635 11682011000036105 Perindopril Erbumine (DP) 4 mg uncoated tablet, 30 5714011000036107 Perindopril Erbumine (DP) 4 mg uncoated tablet 3280011000036101 Perindopril Erbumine (DP) 3280011000036101 Perindopril Erbumine (DP) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +960491000168100 Ciram 40 mg film-coated tablet, 7, blister pack 158860 960481000168103 Ciram 40 mg film-coated tablet, 7 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202931000036106 citalopram 40 mg tablet, 7 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +938921000168102 Favint Respimat 2.5 microgram/actuation inhalation solution, 60 actuations, cartridge 132590 938911000168109 Favint Respimat 2.5 microgram/actuation inhalation solution, 60 actuations 938901000168106 Favint Respimat 2.5 microgram/actuation inhalation solution, actuation 938841000168104 Favint Respimat 938841000168104 Favint Respimat 718351000168106 tiotropium 2.5 microgram/actuation inhalation solution, 60 actuations 718331000168100 tiotropium 2.5 microgram/actuation inhalation solution, actuation 21484011000036102 tiotropium +19156011000036106 MS Contin Suspension 20 mg modified release granules, 20 sachets 45838 12455011000036109 MS Contin Suspension 20 mg modified release granules, 20 sachets 5417011000036106 MS Contin Suspension 20 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 27130011000036101 morphine sulfate pentahydrate 20 mg modified release granules, 20 sachets 22496011000036107 morphine sulfate pentahydrate 20 mg modified release granules, 1 sachet 21252011000036100 morphine +782591000168109 Eumovate 0.05% cream, 5 g, tube 178288 782581000168106 Eumovate 0.05% cream, 5 g 782561000168102 Eumovate 0.05% cream 782551000168104 Eumovate 782551000168104 Eumovate 782571000168108 clobetasone butyrate 0.05% cream, 5 g 61871011000036109 clobetasone butyrate 0.05% cream 61820011000036103 clobetasone +1110271000168101 Nicotinell Ice Mint 4 mg chewing gum, 12, blister pack 279616 1110261000168107 Nicotinell Ice Mint 4 mg chewing gum, 12 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +798261000168100 Abipra 30 mg uncoated tablet, 30, blister pack 173806 798251000168102 Abipra 30 mg uncoated tablet, 30 798241000168104 Abipra 30 mg uncoated tablet 798151000168109 Abipra 798151000168109 Abipra 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +43707011000036107 Fluorescein Sodium (Novartis) 500 mg/5 mL injection solution, 5 mL ampoule 124565 41315011000036109 Fluorescein Sodium (Novartis) 500 mg/5 mL injection solution, 5 mL ampoule 39890011000036108 Fluorescein Sodium (Novartis) 500 mg/5 mL injection solution, 5 mL ampoule 39678011000036106 Fluorescein Sodium (Novartis) 39678011000036106 Fluorescein Sodium (Novartis) 46240011000036101 fluorescein sodium 500 mg/5 mL injection, 5 mL ampoule 45043011000036101 fluorescein sodium 500 mg/5 mL injection, ampoule 44934011000036102 fluorescein +1057751000168101 Atorvastatin (Ran) 40 mg film-coated tablet, 100, bottle 179839 1057741000168103 Atorvastatin (Ran) 40 mg film-coated tablet, 100 1057081000168106 Atorvastatin (Ran) 40 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890291000168107 atorvastatin 40 mg tablet, 100 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +921961011000036101 Navoban 5 mg/5 mL injection solution, 10 x 5 mL ampoules 47517 921519011000036107 Navoban 5 mg/5 mL injection solution, 10 x 5 mL ampoules 5516011000036103 Navoban 5 mg/5 mL injection solution, 5 mL ampoule 3216011000036101 Navoban 3216011000036101 Navoban 922641011000036107 tropisetron 5 mg/5 mL injection, 10 x 5 mL ampoules 22543011000036102 tropisetron 5 mg/5 mL injection, ampoule 21700011000036104 tropisetron +676461000168100 Celecoxib (GH) 200 mg hard capsule, 30, blister pack 196188 676451000168102 Celecoxib (GH) 200 mg hard capsule, 30 676441000168104 Celecoxib (GH) 200 mg hard capsule 676401000168101 Celecoxib (GH) 676401000168101 Celecoxib (GH) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +68691011000036102 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 990 g, jar 10184 66490011000036104 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 990 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71223011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid, 990 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +967471000168102 Humira 40 mg/0.4 mL injection solution, 4 x 0.4 mL injection devices 281509 967461000168108 Humira 40 mg/0.4 mL injection solution, 4 x 0.4 mL injection devices 967411000168105 Humira 40 mg/0.4 mL injection solution, 0.4 mL injection device 4142011000036107 Humira 4142011000036107 Humira 967451000168106 adalimumab 40 mg/0.4 mL injection, 4 x 0.4 mL injection devices 967401000168107 adalimumab 40 mg/0.4 mL injection, injection device 21584011000036107 adalimumab +771491000168108 Doxy 100 mg film-coated tablet, 21, blister pack 64443 771481000168105 Doxy 100 mg film-coated tablet, 21 6382011000036104 Doxy 100 mg film-coated tablet 3392011000036105 Doxy 3392011000036105 Doxy 33813011000036104 doxycycline 100 mg tablet, 21 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +933211441000036101 Ivelip 20% (200 g/L) injection emulsion, 1 L bag 101426 933199901000036108 Ivelip 20% (200 g/L) injection emulsion, 1 L bag 933194241000036101 Ivelip 20% (200 g/L) injection emulsion, 1 L bag 65097011000036107 Ivelip 65097011000036107 Ivelip 933199911000036105 soya oil 20% (200 g/L) injection, 1 L bag 933194251000036103 soya oil 20% (200 g/L) injection, bag 69767011000036104 soya oil +1036271000168104 Jinarc (28 x 30 mg tablets, 28 x 90 mg tablets), 56, blister pack 272789 1036261000168105 Jinarc (28 x 30 mg tablets, 28 x 90 mg tablets), 56 1036241000168106 Jinarc 90 mg tablet 1036121000168109 Jinarc 1036121000168109 Jinarc 1036251000168108 tolvaptan 30 mg tablet [28] (&) tolvaptan 90 mg tablet [28], 56 1036231000168102 tolvaptan 90 mg tablet 686881000168102 tolvaptan +1036271000168104 Jinarc (28 x 30 mg tablets, 28 x 90 mg tablets), 56, blister pack 272789 1036261000168105 Jinarc (28 x 30 mg tablets, 28 x 90 mg tablets), 56 1036141000168103 Jinarc 30 mg tablet 1036121000168109 Jinarc 1036121000168109 Jinarc 1036251000168108 tolvaptan 30 mg tablet [28] (&) tolvaptan 90 mg tablet [28], 56 699281000168109 tolvaptan 30 mg tablet 686881000168102 tolvaptan +655911000168104 Montelukast (AN) 5 mg chewable tablet, 28, blister pack 184825 655901000168102 Montelukast (AN) 5 mg chewable tablet, 28 655891000168101 Montelukast (AN) 5 mg chewable tablet 655871000168102 Montelukast (AN) 655871000168102 Montelukast (AN) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +840371000168109 Prometrium 100 mg soft capsule, 30, blister pack 232818 840361000168103 Prometrium 100 mg soft capsule, 30 840251000168105 Prometrium 100 mg soft capsule 840231000168104 Prometrium 840231000168104 Prometrium 840351000168100 progesterone 100 mg capsule, 30 840241000168108 progesterone 100 mg capsule 21412011000036108 progesterone +87692011000036103 Famciclovir (Apo) 250 mg film-coated tablet, 20, blister pack 160556 87482011000036102 Famciclovir (Apo) 250 mg film-coated tablet, 20 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +931496011000036106 Topiramate (LAPL) 100 mg film-coated tablet, 60, blister pack 155209 928298011000036101 Topiramate (LAPL) 100 mg film-coated tablet, 60 927927011000036102 Topiramate (LAPL) 100 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +817591000168108 Dynoval 5/5 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200815 817581000168105 Dynoval 5/5 (perindopril arginine/amlodipine) uncoated tablet, 30 817551000168103 Dynoval 5/5 (perindopril arginine/amlodipine) uncoated tablet 817541000168100 Dynoval 5/5 (perindopril arginine/amlodipine) 817541000168100 Dynoval 5/5 (perindopril arginine/amlodipine) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +981441000168100 Pritor 80 mg uncoated tablet, 7, blister pack 68055 981431000168109 Pritor 80 mg uncoated tablet, 7 981411000168104 Pritor 80 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 981421000168106 telmisartan 80 mg tablet, 7 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +977191000168101 Pregabalin (Apotex) 225 mg hard capsule, 20, blister pack 267558 977181000168104 Pregabalin (Apotex) 225 mg hard capsule, 20 977151000168106 Pregabalin (Apotex) 225 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 903611000168100 pregabalin 225 mg capsule, 20 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +24491000036101 Telzir 50 mg/mL oral liquid suspension, 225 mL, bottle 101605 22031000036104 Telzir 50 mg/mL oral liquid suspension, 225 mL 20431000036106 Telzir 50 mg/mL oral liquid suspension 3867011000036107 Telzir 3867011000036107 Telzir 22041000036109 fosamprenavir 50 mg/mL oral liquid, 225 mL 20441000036101 fosamprenavir 50 mg/mL oral liquid 21811011000036106 fosamprenavir +802921000168101 Abilify ODT 30 mg orally disintegrating tablet, 30, blister pack 128904 802911000168108 Abilify ODT 30 mg orally disintegrating tablet, 30 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802901000168105 aripiprazole 30 mg orally disintegrating tablet, 30 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +1056421000168102 Riximyo 500 mg/50 mL concentrated injection, 2 x 50 mL vials 281781 1056411000168109 Riximyo 500 mg/50 mL concentrated injection, 2 x 50 mL vials 1056371000168108 Riximyo 500 mg/50 mL concentrated injection, 50 mL vial 1056361000168102 Riximyo 1056361000168102 Riximyo 1056401000168106 rituximab 500 mg/50 mL injection, 2 x 50 mL vials 22805011000036107 rituximab 500 mg/50 mL injection, vial 21460011000036105 rituximab +18043011000036108 Nupentin 400 mg hard capsule, 100, blister pack 101698 11229011000036105 Nupentin 400 mg hard capsule, 100 5995011000036102 Nupentin 400 mg hard capsule 1181000168106 Nupentin 1181000168106 Nupentin 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +77402011000036102 Blistex Complete Moisture lip stick, 4.25 g, tube 78609 76818011000036106 Blistex Complete Moisture lip stick, 4.25 g 76191011000036108 Blistex Complete Moisture lip stick 75986011000036104 Blistex Complete Moisture 75986011000036104 Blistex Complete Moisture 78322011000036107 octyl methoxycinnamate 7.5% + oxybenzone 2.5% stick, 4.25 g 77606011000036100 octyl methoxycinnamate 7.5% + oxybenzone 2.5% stick 77427011000036106 octyl methoxycinnamate + oxybenzone +165861000036108 Cranberry 15 000 (Herron) Natural Essentials 600 mg (equivalent to fresh juice 15 g) film-coated tablet, 30, bottle 200841 164021000036108 Cranberry 15 000 (Herron) Natural Essentials 600 mg (equivalent to fresh juice 15 g) film-coated tablet, 30 162191000036101 Cranberry 15 000 (Herron) Natural Essentials 600 mg (equivalent to fresh juice 15 g) film-coated tablet 14651000168105 Cranberry 15 000 (Herron) 14651000168105 Cranberry 15 000 (Herron) 164031000036105 cranberry 600 mg (equivalent to fresh juice 15 g) tablet, 30 162201000036104 cranberry 600 mg (equivalent to fresh juice 15 g) tablet 87199011000036107 cranberry +77310011000036105 Water for Irrigation (Baxter) irrigation solution, 500 mL bottle 35657 76726011000036102 Water for Irrigation (Baxter) irrigation solution, 500 mL bottle 76144011000036104 Water for Irrigation (Baxter) irrigation solution, 500 mL bottle 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78240011000036100 water for irrigation solution, 500 mL bottle 77566011000036106 water for irrigation solution, 500 mL bottle 77440011000036107 water for irrigation +34627011000036105 Pethidine Hydrochloride (DBL) 50 mg/mL injection solution, 5 x 1 mL ampoules 107386 34210011000036104 Pethidine Hydrochloride (DBL) 50 mg/mL injection solution, 5 x 1 mL ampoules 33963011000036107 Pethidine Hydrochloride (DBL) 50 mg/mL injection solution, ampoule 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35095011000036106 pethidine hydrochloride 50 mg/mL injection, 5 x 1 mL ampoules 34847011000036100 pethidine hydrochloride 50 mg/mL injection, ampoule 34839011000036106 pethidine +1044861000168103 Pryzex 2.5 mg film-coated tablet, 7, blister pack 178975 1044851000168100 Pryzex 2.5 mg film-coated tablet, 7 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 933204981000036101 olanzapine 2.5 mg tablet, 7 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +938601000168102 Celecoxib (Ran) 100 mg hard capsule, 20, blister pack 212785 938591000168109 Celecoxib (Ran) 100 mg hard capsule, 20 938531000168105 Celecoxib (Ran) 100 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +69728011000036105 Aerius 5 mg film-coated tablet, 60, blister pack 91116 67527011000036103 Aerius 5 mg film-coated tablet, 60 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72029011000036105 desloratadine 5 mg tablet, 60 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +60363011000036105 Nurofen Back Pain 200 mg film-coated tablet, 24, blister pack 142080 56322011000036103 Nurofen Back Pain 200 mg film-coated tablet, 24 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +19207011000036102 Risperdal 3 mg film-coated tablet, 60, blister pack 47010 12497011000036106 Risperdal 3 mg film-coated tablet, 60 5147011000036104 Risperdal 3 mg film-coated tablet 15481000168100 Risperdal 15481000168100 Risperdal 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +43802011000036107 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 10 x 50 mL vials 116879 41178011000036101 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 10 x 50 mL vials 39815011000036100 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 50 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46143011000036107 ciprofloxacin 100 mg/50 mL injection, 10 x 50 mL vials 45080011000036102 ciprofloxacin 100 mg/50 mL injection, vial 21245011000036105 ciprofloxacin +44214011000036108 Ogen 625 microgram uncoated tablet, 14, bottle 56965 41690011000036109 Ogen 625 microgram uncoated tablet, 14 6118011000036109 Ogen 625 microgram uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46507011000036102 oestrone sulfate sodium 625 microgram tablet, 14 22744011000036101 oestrone sulfate sodium 625 microgram tablet 21299011000036103 oestrone sulfate sodium +964581000168109 Normatens 400 microgram film-coated tablet, 28, blister pack 114124 964571000168106 Normatens 400 microgram film-coated tablet, 28 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964561000168100 moxonidine 400 microgram tablet, 28 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +960251000168109 Dormizol CR 6.25 mg modified release tablet, 28, blister pack 120712 960241000168107 Dormizol CR 6.25 mg modified release tablet, 28 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46181011000036104 zolpidem tartrate 6.25 mg modified release tablet, 28 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +933230211000036104 Cozavan 25 mg film-coated tablet, 30, blister pack 156235 933224081000036107 Cozavan 25 mg film-coated tablet, 30 933219971000036101 Cozavan 25 mg film-coated tablet 933218911000036101 Cozavan 933218911000036101 Cozavan 933224091000036109 losartan potassium 25 mg tablet, 30 933219981000036104 losartan potassium 25 mg tablet 44887011000036108 losartan +60268011000036109 Fexo (Guardian) 120 mg film-coated tablet, 30, blister pack 134668 56227011000036109 Fexo (Guardian) 120 mg film-coated tablet, 30 53845011000036100 Fexo (Guardian) 120 mg film-coated tablet 53537011000036107 Fexo (Guardian) 53537011000036107 Fexo (Guardian) 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +1056741000168100 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet, 4, blister pack 196808 1056731000168109 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet, 4 1056721000168106 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet 1056641000168105 Ondansetron ODT (Auro) 1056641000168105 Ondansetron ODT (Auro) 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +39409011000036108 Ranzepam 2 mg uncoated tablet, 50, blister pack 134589 39293011000036107 Ranzepam 2 mg uncoated tablet, 50 39203011000036109 Ranzepam 2 mg uncoated tablet 39186011000036104 Ranzepam 39186011000036104 Ranzepam 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +843201000168101 Elevit with Iodine film-coated tablet, 30, blister pack 174543 843191000168104 Elevit with Iodine film-coated tablet, 30 843171000168100 Elevit with Iodine film-coated tablet 34691000168109 Elevit with Iodine 34691000168109 Elevit with Iodine 843181000168102 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30 843161000168106 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet 931795011000036106 dl-alpha-tocopherol + ascorbic acid + biotin + calcium hydrogen phosphate + colecalciferol + cupric sulfate + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide light + magnesium phosphate dibasic trihydrate + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + thiamine + zinc sulfate monohydrate +19737011000036103 Androderm 2.5 mg/24 hours patch, 60, sachet 61818 12991011000036100 Androderm 2.5 mg/24 hours patch, 60 6279011000036107 Androderm 2.5 mg/24 hours patch 4192011000036101 Androderm 4192011000036101 Androderm 27488011000036107 testosterone 2.5 mg/24 hours patch, 60 22833011000036102 testosterone 2.5 mg/24 hours patch 21290011000036109 testosterone +59833011000036100 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 100, blister pack 114915 55795011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 100 53630011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet 29541000168103 Strong Pain Relief Tabsule (Amcal) 29541000168103 Strong Pain Relief Tabsule (Amcal) 63138011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 100 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +955921000168105 Genexol 30 mg/5 mL concentrated injection, 5 mL vial 129577 955911000168103 Genexol 30 mg/5 mL concentrated injection, 5 mL vial 955901000168101 Genexol 30 mg/5 mL concentrated injection, 5 mL vial 955891000168100 Genexol 955891000168100 Genexol 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +1057791000168106 Atorvastatin (Ran) 80 mg film-coated tablet, 28, bottle 179850 1057781000168108 Atorvastatin (Ran) 80 mg film-coated tablet, 28 1057581000168102 Atorvastatin (Ran) 80 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890391000168102 atorvastatin 80 mg tablet, 28 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +762901000168108 Oxycodone MR (Chemmart) 10 mg modified release tablet, 20, blister pack 214498 762891000168109 Oxycodone MR (Chemmart) 10 mg modified release tablet, 20 762881000168106 Oxycodone MR (Chemmart) 10 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +60072011000036106 Vermox 100 mg uncoated tablet, 4, blister pack 125654 56034011000036108 Vermox 100 mg uncoated tablet, 4 4928011000036105 Vermox 100 mg uncoated tablet 19531000168104 Vermox 19531000168104 Vermox 63201011000036102 mebendazole 100 mg tablet, 4 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +821931000168104 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack, composite pack 94483 821921000168102 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack 821881000168109 Dukoral (cholera vaccine) oral liquid suspension, 3 mL vial 13831000168103 Dukoral 13831000168103 Dukoral 821911000168109 cholera vaccine oral liquid [3 mL vial] (&) inert substance effervescent granules [5.6 g sachet], 1 pack 821871000168106 cholera vaccine oral liquid, 3 mL vial 821861000168100 cholera vaccine +821931000168104 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack, composite pack 94483 821921000168102 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack 821901000168106 Dukoral (inert substance) effervescent granules, 5.6 g sachet 13831000168103 Dukoral 13831000168103 Dukoral 821911000168109 cholera vaccine oral liquid [3 mL vial] (&) inert substance effervescent granules [5.6 g sachet], 1 pack 821891000168107 inert substance effervescent granules, 5.6 g sachet 21220011000036103 inert substance +1105711000168108 Valpam 5 mg uncoated tablet, 90, blister pack 80811 1105701000168105 Valpam 5 mg uncoated tablet, 90 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 750511000168105 diazepam 5 mg tablet, 90 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +889281000168102 Bosleer 62.5 mg film-coated tablet, 56, blister pack 235891 889271000168100 Bosleer 62.5 mg film-coated tablet, 56 889181000168109 Bosleer 62.5 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +17758011000036108 Minipress 2 mg uncoated tablet, 100, blister pack 10757 11379011000036100 Minipress 2 mg uncoated tablet, 100 4752011000036101 Minipress 2 mg uncoated tablet 4420011000036105 Minipress 4420011000036105 Minipress 27728011000036108 prazosin 2 mg tablet, 100 23063011000036102 prazosin 2 mg tablet 21544011000036104 prazosin +751361000168109 Canesten Plus cream, 15 g, tube 192113 751351000168107 Canesten Plus cream, 15 g 715871000168102 Canesten Plus cream 119221000036100 Canesten Plus 119221000036100 Canesten Plus 751341000168105 hydrocortisone 1% + clotrimazole 1% cream, 15 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +1023271000168108 Ibuprofen (A) 200 mg film-coated tablet, 32, blister pack 161314 1023261000168102 Ibuprofen (A) 200 mg film-coated tablet, 32 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 984381000168104 ibuprofen 200 mg tablet, 32 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +17830011000036108 Citalopram (Pharmacor) 20 mg film-coated tablet, 28, bottle 130622 11903011000036101 Citalopram (Pharmacor) 20 mg film-coated tablet, 28 5093011000036108 Citalopram (Pharmacor) 20 mg film-coated tablet 3890011000036109 Citalopram (Pharmacor) 3890011000036109 Citalopram (Pharmacor) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +990161000168103 Paracetamol plus Codeine and Calmative (Blooms The Chemist) uncoated tablet, 40, blister pack 274570 990151000168100 Paracetamol plus Codeine and Calmative (Blooms The Chemist) uncoated tablet, 40 990121000168108 Paracetamol plus Codeine and Calmative (Blooms The Chemist) uncoated tablet 990111000168101 Paracetamol plus Codeine and Calmative (Blooms The Chemist) 990111000168101 Paracetamol plus Codeine and Calmative (Blooms The Chemist) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1059761000168108 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 50, blister pack 234468 1059751000168106 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 50 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930541000168103 rosuvastatin 5 mg tablet, 50 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +763061000168100 Tobramycin (Mylan) 80 mg/2 mL injection solution, 5 x 2 mL vials 234429 763051000168102 Tobramycin (Mylan) 80 mg/2 mL injection solution, 5 x 2 mL vials 762961000168109 Tobramycin (Mylan) 80 mg/2 mL injection solution, 2 mL vial 762951000168107 Tobramycin (Mylan) 762951000168107 Tobramycin (Mylan) 27780011000036101 tobramycin 80 mg/2 mL injection, 5 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +18625011000036103 Neorecormon 6000 units/0.3 mL injection, 6 x 0.3 mL syringes 104266 11278011000036101 Neorecormon 6000 units/0.3 mL injection, 6 x 0.3 mL syringes 4608011000036101 Neorecormon 6000 units/0.3 mL injection, 0.3 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26589011000036105 epoetin beta 6000 units/0.3 mL injection, 6 x 0.3 mL syringes 21997011000036106 epoetin beta 6000 units/0.3 mL injection, syringe 21625011000036109 epoetin beta +1022221000168103 Butafen 200 mg film-coated tablet, 30, blister pack 155484 1022211000168105 Butafen 200 mg film-coated tablet, 30 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63849011000036104 ibuprofen 200 mg tablet, 30 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1019071000168107 Candesartan HCTZ 16/12.5 (Apotex) tablet, 7, blister pack 192195 1019061000168101 Candesartan HCTZ 16/12.5 (Apotex) tablet, 7 1019051000168103 Candesartan HCTZ 16/12.5 (Apotex) tablet 1019041000168100 Candesartan HCTZ 16/12.5 (Apotex) 1019041000168100 Candesartan HCTZ 16/12.5 (Apotex) 890801000168102 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 7 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1114381000168103 Zolpidem (GH) 10 mg film-coated tablet, 2, blister pack 210960 1114371000168101 Zolpidem (GH) 10 mg film-coated tablet, 2 1114361000168107 Zolpidem (GH) 10 mg film-coated tablet 1114351000168105 Zolpidem (GH) 1114351000168105 Zolpidem (GH) 46646011000036100 zolpidem tartrate 10 mg tablet, 2 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +18383011000036100 Simvastatin (Winthrop) 80 mg film-coated tablet, 30, blister pack 129986 11888011000036100 Simvastatin (Winthrop) 80 mg film-coated tablet, 30 5094011000036105 Simvastatin (Winthrop) 80 mg film-coated tablet 3335011000036106 Simvastatin (Winthrop) 3335011000036106 Simvastatin (Winthrop) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +33616011000036101 Lyrica 75 mg hard capsule, 56, bottle 99521 33353011000036106 Lyrica 75 mg hard capsule, 56 33111011000036105 Lyrica 75 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +74876011000036105 Normal Immunoglobulin-VF (CSL) 800 mg/5 mL injection solution, 5 mL vial 61216 74363011000036109 Normal Immunoglobulin-VF (CSL) 800 mg/5 mL injection solution, 5 mL vial 73894011000036108 Normal Immunoglobulin-VF (CSL) 800 mg/5 mL injection solution, 5 mL vial 15111000168100 Normal Immunoglobulin-VF (CSL) 15111000168100 Normal Immunoglobulin-VF (CSL) 75463011000036109 normal immunoglobulin 800 mg/5 mL injection, 5 mL vial 75074011000036105 normal immunoglobulin 800 mg/5 mL injection, vial 74965011000036103 normal immunoglobulin +165701000036102 Tasigna 150 mg hard capsule, 120, blister pack 171498 163811000036107 Tasigna 150 mg hard capsule, 120 2381000036105 Tasigna 150 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 163821000036100 nilotinib 150 mg capsule, 120 2391000036107 nilotinib 150 mg capsule 39428011000036108 nilotinib +19832011000036102 Atacand 4 mg uncoated tablet, 30, blister pack 64106 13083011000036100 Atacand 4 mg uncoated tablet, 30 6367011000036104 Atacand 4 mg uncoated tablet 3659011000036102 Atacand 3659011000036102 Atacand 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +44669011000036106 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 91562 42118011000036109 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46880011000036101 follitropin alfa 37.5 units (2.73 microgram) injection [37.5 units vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44669011000036106 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 91562 42118011000036109 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46880011000036101 follitropin alfa 37.5 units (2.73 microgram) injection [37.5 units vial] (&) inert substance diluent [1 mL vial], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +960171000168106 Dormizol CR 6.25 mg modified release tablet, 10, blister pack 120712 960161000168100 Dormizol CR 6.25 mg modified release tablet, 10 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46175011000036109 zolpidem tartrate 6.25 mg modified release tablet, 10 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +693541000168100 Clearlax (Herron) 17 g powder for oral liquid, 30 sachets 229620 693531000168109 Clearlax (Herron) 17 g powder for oral liquid, 30 sachets 693521000168106 Clearlax (Herron) 17 g powder for oral liquid, 1 sachet 693511000168104 Clearlax (Herron) 693511000168104 Clearlax (Herron) 94211000036100 macrogol-3350 17 g powder for oral liquid, 30 sachets 93581000036108 macrogol-3350 17 g powder for oral liquid, 1 sachet 87750011000036101 macrogol-3350 +1068301000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 20, blister pack 188379 1068291000168107 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 20 1068241000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +933211521000036105 Alendronate (Hexal) 70 mg film-coated tablet, 4, blister pack 135006 933200571000036100 Alendronate (Hexal) 70 mg film-coated tablet, 4 933194471000036109 Alendronate (Hexal) 70 mg film-coated tablet 933193711000036105 Alendronate (Hexal) 933193711000036105 Alendronate (Hexal) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +805891000168102 Uptravi 600 microgram film-coated tablet, 60, blister pack 234159 805881000168100 Uptravi 600 microgram film-coated tablet, 60 805861000168109 Uptravi 600 microgram film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 805871000168103 selexipag 600 microgram tablet, 60 805851000168107 selexipag 600 microgram tablet 805661000168108 selexipag +952621000168108 Tobi 300 mg/5 mL inhalation solution, 4 x 5 mL ampoules 73172 952611000168101 Tobi 300 mg/5 mL inhalation solution, 4 x 5 mL ampoules 933220961000036105 Tobi 300 mg/5 mL inhalation solution, 5 mL ampoule 53931000168103 Tobi 53931000168103 Tobi 952601000168104 tobramycin 300 mg/5 mL inhalation solution, 4 x 5 mL ampoules 933220971000036102 tobramycin 300 mg/5 mL inhalation solution, ampoule 21646011000036100 tobramycin +1092871000168107 Ibuprofen (Medix) Capsule Shaped 200 mg sugar coated tablet, 24, blister pack 286620 1092861000168101 Ibuprofen (Medix) Capsule Shaped 200 mg sugar coated tablet, 24 1092831000168109 Ibuprofen (Medix) Capsule Shaped 200 mg sugar coated tablet 1092521000168108 Ibuprofen (Medix) 1092521000168108 Ibuprofen (Medix) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +928879011000036106 Valaciclovir (RBX) 500 mg film-coated tablet, 30, blister pack 142803 928241011000036104 Valaciclovir (RBX) 500 mg film-coated tablet, 30 927897011000036103 Valaciclovir (RBX) 500 mg film-coated tablet 927814011000036108 Valaciclovir (RBX) 927814011000036108 Valaciclovir (RBX) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +973001000168104 Pregabalin (Apotex) 300 mg hard capsule, 14, blister pack 267559 972991000168100 Pregabalin (Apotex) 300 mg hard capsule, 14 972981000168103 Pregabalin (Apotex) 300 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +947281000168105 Gliclazide MR (Ardix) 30 mg modified release tablet, 20, blister pack 139729 947271000168107 Gliclazide MR (Ardix) 30 mg modified release tablet, 20 947261000168101 Gliclazide MR (Ardix) 30 mg modified release tablet 676731000168103 Gliclazide MR (Ardix) 676731000168103 Gliclazide MR (Ardix) 71436011000036109 gliclazide 30 mg modified release tablet, 20 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +933214261000036102 Reditra 50 mg film-coated tablet, 14, blister pack 160772 933203481000036109 Reditra 50 mg film-coated tablet, 14 933195831000036109 Reditra 50 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 929237011000036106 sertraline 50 mg tablet, 14 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1097211000168101 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 50, blister pack 286508 1097201000168104 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 50 1097001000168109 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet 1096981000168100 Ibuprofen Double Strength (Medreich) 1096981000168100 Ibuprofen Double Strength (Medreich) 986171000168106 ibuprofen 400 mg tablet, 50 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +77327011000036102 Water for Injections (AstraZeneca) injection solution, 5 x 5 mL ampoules 48350 76743011000036106 Water for Injections (AstraZeneca) injection solution, 5 x 5 mL ampoules 76157011000036107 Water for Injections (AstraZeneca) injection solution, 5 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78324011000036103 water for injections injection, 5 x 5 mL ampoules 77607011000036102 water for injections injection, 5 mL ampoule 77431011000036101 water for injections +771671000168105 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 180562 771661000168104 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 771571000168106 Drospirenone/Ethinyloestradiol (GH) (inert substance) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771671000168105 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 180562 771661000168104 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 771561000168100 Drospirenone/Ethinyloestradiol (GH) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +1039381000168102 Atorvastatin (GA) 10 mg film-coated tablet, 40, blister pack 178539 1039371000168100 Atorvastatin (GA) 10 mg film-coated tablet, 40 1039301000168105 Atorvastatin (GA) 10 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841561000168104 atorvastatin 10 mg tablet, 40 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +920780011000036106 Cefotaxime (DBL) 500 mg powder for injection, 10 vials 78701 920459011000036100 Cefotaxime (DBL) 500 mg powder for injection, 10 vials 920195011000036106 Cefotaxime (DBL) 500 mg powder for injection, 500 mg vial 920087011000036105 Cefotaxime (DBL) 920087011000036105 Cefotaxime (DBL) 46755011000036103 cefotaxime 500 mg injection, 10 vials 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +771651000168101 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 180562 771641000168103 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 771571000168106 Drospirenone/Ethinyloestradiol (GH) (inert substance) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771651000168101 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 180562 771641000168103 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 771561000168100 Drospirenone/Ethinyloestradiol (GH) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +60481011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 6 sachets 150168 56439011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 6 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63359011000036104 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 6 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +61495011000036105 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 50 mL, bottle 92446 57420011000036108 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 50 mL 54298011000036109 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 63884011000036108 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 50 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +44548011000036102 Vaniqa 11.5% cream, 15 g, tube 80167 42001011000036107 Vaniqa 11.5% cream, 15 g 40314011000036104 Vaniqa 11.5% cream 39569011000036103 Vaniqa 39569011000036103 Vaniqa 46776011000036107 eflornithine 11.5% cream, 15 g 45312011000036100 eflornithine 11.5% cream 44937011000036108 eflornithine +69103011000036102 Rubesal cream, 50 g, tube 14870 66904011000036109 Rubesal cream, 50 g 65541011000036108 Rubesal cream 65038011000036100 Rubesal 65038011000036100 Rubesal 71498011000036100 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% cream, 50 g 70038011000036107 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% cream 69779011000036103 camphor + salicylic acid + menthol +877701000168103 Albunate-5 12.5 g/250 mL intravenous infusion injection, 250 mL vial 223743 877691000168103 Albunate-5 12.5 g/250 mL intravenous infusion injection, 250 mL vial 877671000168104 Albunate-5 12.5 g/250 mL intravenous infusion injection, 250 mL vial 877651000168108 Albunate-5 877651000168108 Albunate-5 877681000168101 albumin human 12.5 g/250 mL injection, 250 mL vial 877661000168105 albumin human 12.5 g/250 mL injection, vial 69754011000036102 albumin human +788811000168100 Oxycodone MR (Terry White Chemists) 40 mg modified release tablet, 20, blister pack 160096 788801000168103 Oxycodone MR (Terry White Chemists) 40 mg modified release tablet, 20 788791000168104 Oxycodone MR (Terry White Chemists) 40 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +780221000168108 Fentanyl (Apo) 50 microgram/hour patch, 3, sachet 152573 780211000168101 Fentanyl (Apo) 50 microgram/hour patch, 3 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235931000036108 fentanyl 50 microgram/hour patch, 3 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +122541000036106 Aldara 5% cream, 2 g, pump pack 191815 122371000036107 Aldara 5% cream, 2 g 119411000036106 Aldara 5% cream 3048011000036100 Aldara 3048011000036100 Aldara 122381000036109 imiquimod 5% cream, 2 g 119421000036104 imiquimod 5% cream 21715011000036105 imiquimod +920744011000036109 Proctosedyl Rectal ointment, 15 g, tube 21847 920427011000036108 Proctosedyl Rectal ointment, 15 g 4979011000036103 Proctosedyl Rectal ointment 21921000168103 Proctosedyl Rectal 21921000168103 Proctosedyl Rectal 63730011000036108 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment, 15 g 22363011000036105 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment 21414011000036104 hydrocortisone + cinchocaine +1109951000168105 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 4, blister pack 219061 1109941000168108 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 4 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82550011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 4 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +926841011000036104 Optiray-160 339 mg (iodine 160 mg)/mL injection solution, 10 x 50 mL vials 20030 926237011000036102 Optiray-160 339 mg (iodine 160 mg)/mL injection solution, 10 x 50 mL vials 925690011000036106 Optiray-160 339 mg (iodine 160 mg)/mL injection solution, 50 mL vial 12731000168103 Optiray-160 12731000168103 Optiray-160 927349011000036104 ioversol 339 mg (iodine 160 mg)/mL injection, 10 x 50 mL vials 926999011000036102 ioversol 339 mg (iodine 160 mg)/mL injection, 50 mL vial 77421011000036103 ioversol +930061000168108 Zantac 300 mg effervescent tablet, 4, strip pack 45996 930051000168106 Zantac 300 mg effervescent tablet, 4 930031000168100 Zantac 300 mg effervescent tablet 3563011000036102 Zantac 3563011000036102 Zantac 930041000168109 ranitidine 300 mg effervescent tablet, 4 930021000168103 ranitidine 300 mg effervescent tablet 21682011000036109 ranitidine +20800011000036106 Isotretinoin (Chemmart) 20 mg soft capsule, 60, blister pack 91351 13966011000036103 Isotretinoin (Chemmart) 20 mg soft capsule, 60 7252011000036100 Isotretinoin (Chemmart) 20 mg soft capsule 3731011000036105 Isotretinoin (Chemmart) 3731011000036105 Isotretinoin (Chemmart) 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +20339011000036107 Trileptal 300 mg film-coated tablet, 100, blister pack 76201 13548011000036102 Trileptal 300 mg film-coated tablet, 100 6830011000036108 Trileptal 300 mg film-coated tablet 4244011000036101 Trileptal 4244011000036101 Trileptal 27801011000036107 oxcarbazepine 300 mg tablet, 100 23129011000036100 oxcarbazepine 300 mg tablet 21420011000036102 oxcarbazepine +848861000168108 Rivastigmelon-5 4.6 mg/24 hours patch, 30, sachet 233745 848851000168106 Rivastigmelon-5 4.6 mg/24 hours patch, 30 848821000168103 Rivastigmelon-5 4.6 mg/24 hours patch 848811000168105 Rivastigmelon-5 848811000168105 Rivastigmelon-5 38682011000036101 rivastigmine 4.6 mg/24 hours patch, 30 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +68861011000036108 Diaformin XR 500 mg modified release tablet, 120, blister pack 120868 66655011000036102 Diaformin XR 500 mg modified release tablet, 120 65316011000036106 Diaformin XR 500 mg modified release tablet 35531000168107 Diaformin XR 35531000168107 Diaformin XR 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +61305011000036100 Regaine Men's Extra Strength 5% application, 60 mL, bottle 79914 57241011000036102 Regaine Men's Extra Strength 5% application, 60 mL 54251011000036109 Regaine Men's Extra Strength 5% application 45451000168101 Regaine Men's Extra Strength 45451000168101 Regaine Men's Extra Strength 63889011000036109 minoxidil 5% application, 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +20097011000036105 Exelon 6 mg hard capsule, 56, blister pack 71448 13324011000036109 Exelon 6 mg hard capsule, 56 6610011000036106 Exelon 6 mg hard capsule 4601000168108 Exelon 4601000168108 Exelon 27694011000036104 rivastigmine 6 mg capsule, 56 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +993451000168103 Lyrica 200 mg hard capsule, 56, bottle 99534 993241000168101 Lyrica 200 mg hard capsule, 56 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1068341000168105 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 30, blister pack 188379 1068331000168101 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 30 1068241000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +37626011000036104 Chlorpromazine Hydrochloride Mixture (Orion) 5 mg/mL oral liquid solution, 500 mL, bottle 21145 36892011000036102 Chlorpromazine Hydrochloride Mixture (Orion) 5 mg/mL oral liquid solution, 500 mL 36226011000036101 Chlorpromazine Hydrochloride Mixture (Orion) 5 mg/mL oral liquid solution 61641000168109 Chlorpromazine Hydrochloride Mixture (Orion) 61641000168109 Chlorpromazine Hydrochloride Mixture (Orion) 38777011000036100 chlorpromazine hydrochloride 5 mg/mL oral liquid, 500 mL 22090011000036100 chlorpromazine hydrochloride 5 mg/mL oral liquid 21310011000036102 chlorpromazine +79655011000036106 Bridion 200 mg/2 mL injection solution, 10 x 2 mL vials 147716 79482011000036107 Bridion 200 mg/2 mL injection solution, 10 x 2 mL vials 79367011000036101 Bridion 200 mg/2 mL injection solution, 2 mL vial 79335011000036104 Bridion 79335011000036104 Bridion 79813011000036108 sugammadex 200 mg/2 mL injection, 10 x 2 mL vials 79743011000036103 sugammadex 200 mg/2 mL injection, vial 79728011000036106 sugammadex +1093921000168108 Tramadol/Paracetamol 37.5/325 (Apo) film-coated tablet, 20, blister pack 280699 1093911000168101 Tramadol/Paracetamol 37.5/325 (Apo) film-coated tablet, 20 1093901000168104 Tramadol/Paracetamol 37.5/325 (Apo) film-coated tablet 1093891000168103 Tramadol/Paracetamol 37.5/325 (Apo) 1093891000168103 Tramadol/Paracetamol 37.5/325 (Apo) 680611000168109 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 20 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +886311000168109 Carboplatin (Kabi) 150 mg/15 mL injection solution, 15 mL vial 171243 886301000168106 Carboplatin (Kabi) 150 mg/15 mL injection solution, 15 mL vial 886291000168105 Carboplatin (Kabi) 150 mg/15 mL injection solution, 15 mL vial 933234231000036101 Carboplatin (Kabi) 933234231000036101 Carboplatin (Kabi) 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +972911000168109 Pregabalin (Apotex) 150 mg hard capsule, 14, blister pack 267556 972901000168106 Pregabalin (Apotex) 150 mg hard capsule, 14 972891000168107 Pregabalin (Apotex) 150 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1114291000168105 Rekovelle 36 microgram/1.08 mL injection solution, 1.08 mL cartridge 271652 1114281000168107 Rekovelle 36 microgram/1.08 mL injection solution, 1.08 mL cartridge 1114261000168103 Rekovelle 36 microgram/1.08 mL injection solution, 1.08 mL cartridge 1113721000168100 Rekovelle 1113721000168100 Rekovelle 1114271000168109 follitropin delta 36 microgram/1.08 mL injection, 1.08 mL cartridge 1114251000168100 follitropin delta 36 microgram/1.08 mL injection, cartridge 1113771000168104 follitropin delta +56231000036107 Anesia 1% 500 mg/50 mL injection emulsion, 50 mL vial 153581 51581000036104 Anesia 1% 500 mg/50 mL injection emulsion, 50 mL vial 49431000036103 Anesia 1% 500 mg/50 mL injection emulsion, 50 mL vial 43431000168108 Anesia 1% 43431000168108 Anesia 1% 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +901301000168109 Amoxil 500 mg hard capsule, 3, blister pack 57574 901291000168108 Amoxil 500 mg hard capsule, 3 6140011000036103 Amoxil 500 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 59061000036100 amoxicillin 500 mg capsule, 3 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +901301000168109 Amoxil 500 mg hard capsule, 3, blister pack 273936 901291000168108 Amoxil 500 mg hard capsule, 3 6140011000036103 Amoxil 500 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 59061000036100 amoxicillin 500 mg capsule, 3 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +701991000168109 Logem 25 mg tablet, 56, blister pack 99059 701981000168106 Logem 25 mg tablet, 56 701971000168108 Logem 25 mg tablet 701951000168104 Logem 701951000168104 Logem 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +50298011000036106 Kindergen powder for oral liquid, 400 g, can 49276011000036108 Kindergen powder for oral liquid, 400 g 48740011000036104 Kindergen powder for oral liquid 48317011000036108 Kindergen 48317011000036108 Kindergen 51268011000036100 whey protein formula supplemented with amino acids, vitamins and minerals, and low in protein, phosphate, potassium and lactose powder for oral liquid, 400 g 50800011000036102 whey protein formula supplemented with amino acids, vitamins and minerals, and low in protein, phosphate, potassium and lactose powder for oral liquid 50756011000036105 whey protein formula supplemented with amino acids, vitamins and minerals, and low in protein, phosphate, potassium and lactose +52225011000036100 Amoxycillin (Sandoz) 500 mg hard capsule, 20, blister pack 63333 52110011000036104 Amoxycillin (Sandoz) 500 mg hard capsule, 20 7277011000036101 Amoxycillin (Sandoz) 500 mg hard capsule 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +839191000168102 Joncia 50 mg hard capsule, 56, bottle 176514 839151000168107 Joncia 50 mg hard capsule, 56 839071000168104 Joncia 50 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839141000168105 milnacipran hydrochloride 50 mg capsule, 56 839061000168105 milnacipran hydrochloride 50 mg capsule 838911000168100 milnacipran +1036111000168102 Atorvastatin (RBX) 40 mg film-coated tablet, 100, bottle 173499 1036101000168100 Atorvastatin (RBX) 40 mg film-coated tablet, 100 1036011000168101 Atorvastatin (RBX) 40 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890291000168107 atorvastatin 40 mg tablet, 100 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +131141000036109 Candesartan Cilexetil (Stada) 8 mg uncoated tablet, 30, bottle 195476 128251000036108 Candesartan Cilexetil (Stada) 8 mg uncoated tablet, 30 125141000036109 Candesartan Cilexetil (Stada) 8 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +989111000168106 Diarrhoea Relief (Blooms The Chemist) 2 mg hard capsule, 10, blister pack 253812 989101000168108 Diarrhoea Relief (Blooms The Chemist) 2 mg hard capsule, 10 989091000168103 Diarrhoea Relief (Blooms The Chemist) 2 mg hard capsule 989081000168101 Diarrhoea Relief (Blooms The Chemist) 989081000168101 Diarrhoea Relief (Blooms The Chemist) 835231000168108 loperamide hydrochloride 2 mg capsule, 10 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +24561000036107 Atorvachol 80 mg film-coated tablet, 30, blister pack 178525 22651000036104 Atorvachol 80 mg film-coated tablet, 30 20651000036100 Atorvachol 80 mg film-coated tablet 19871000036105 Atorvachol 19871000036105 Atorvachol 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +804791000168108 Cotellic 20 mg film-coated tablet, 63, blister pack 237017 804781000168105 Cotellic 20 mg film-coated tablet, 63 804761000168101 Cotellic 20 mg film-coated tablet 804731000168109 Cotellic 804731000168109 Cotellic 804771000168107 cobimetinib 20 mg tablet, 63 804751000168103 cobimetinib 20 mg tablet 804741000168100 cobimetinib +165541000036109 Basecal200 providing 200 kilocalories powder for oral liquid, 30 x 43 g sachets 163501000036107 Basecal200 providing 200 kilocalories powder for oral liquid, 30 x 43 g sachets 532491000168102 Basecal200 providing 200 kilocalories powder for oral liquid, 43 g sachet 161901000036102 Basecal200 161901000036102 Basecal200 163511000036109 carbohydrates, fat, vitamins, minerals, trace elements and supplemented with arachidonic acid and docosahexaenoic acid providing 200 kilocalories powder for oral liquid, 30 x 43 g sachets 532251000168106 carbohydrates, fat, vitamins, minerals, trace elements and supplemented with arachidonic acid and docosahexaenoic acid providing 200 kilocalories powder for oral liquid, 43 g sachet 166291000036106 carbohydrates, fat, vitamins, minerals, trace elements and supplemented with arachidonic acid and docosahexaenoic acid +883661000168106 Betahistine (AS) 16 mg tablet, 100, blister pack 231718 883651000168109 Betahistine (AS) 16 mg tablet, 100 883601000168105 Betahistine (AS) 16 mg tablet 883521000168100 Betahistine (AS) 883521000168100 Betahistine (AS) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +886631000168108 Eloctate (1 x 250 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210521 886621000168105 Eloctate (1 x 250 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886601000168101 Eloctate (efmoroctocog alfa 250 units) powder for injection, 250 units vial 886371000168101 Eloctate 886371000168101 Eloctate 886611000168103 efmoroctocog alfa 250 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886591000168108 efmoroctocog alfa 250 units injection, vial 886411000168100 efmoroctocog alfa +886631000168108 Eloctate (1 x 250 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210521 886621000168105 Eloctate (1 x 250 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886451000168104 Eloctate (inert substance) diluent, 3 mL syringe 886371000168101 Eloctate 886371000168101 Eloctate 886611000168103 efmoroctocog alfa 250 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886441000168101 inert substance diluent, 3 mL syringe 21220011000036103 inert substance +923897011000036109 Panadol Sinus PE Night and Day Caplet (16 x Day tablets, 8 x Night tablets), 24, blister pack 167036 923441011000036101 Panadol Sinus PE Night and Day Caplet (16 x Day tablets, 8 x Night tablets), 24 923087011000036109 Panadol Sinus PE Night and Day Caplet (Night) uncoated tablet 25181000168100 Panadol Sinus PE Night and Day Caplet 25421000168107 Panadol Sinus PE Night and Day Caplet (Night) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +923897011000036109 Panadol Sinus PE Night and Day Caplet (16 x Day tablets, 8 x Night tablets), 24, blister pack 167036 923441011000036101 Panadol Sinus PE Night and Day Caplet (16 x Day tablets, 8 x Night tablets), 24 923086011000036106 Panadol Sinus PE Night and Day Caplet (Day) uncoated tablet 25181000168100 Panadol Sinus PE Night and Day Caplet 25301000168106 Panadol Sinus PE Night and Day Caplet (Day) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +61083011000036101 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 250 mL, bottle 70321 57026011000036102 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 250 mL 54164011000036102 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 5 mL 53414011000036100 Tussinol for Dry Coughs 53414011000036100 Tussinol for Dry Coughs 63700011000036101 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 250 mL 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +925451000168106 Androgel 1% (25 mg/2.5 g) gel, 14 x 2.5 g sachets 96122 925441000168109 Androgel 1% (25 mg/2.5 g) gel, 14 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46942011000036103 testosterone 1% (25 mg/2.5 g) gel, 14 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +933214501000036103 Sodium Chloride (B Braun) 0.9% (180 mg/20 mL) injection solution, 20 x 20 mL ampoules 154966 933202291000036104 Sodium Chloride (B Braun) 0.9% (180 mg/20 mL) injection solution, 20 x 20 mL ampoules 933195081000036101 Sodium Chloride (B Braun) 0.9% (180 mg/20 mL) injection solution, 20 mL ampoule 78605011000036104 Sodium Chloride (B Braun) 78605011000036104 Sodium Chloride (B Braun) 933202301000036100 sodium chloride 0.9% (180 mg/20 mL) injection, 20 x 20 mL ampoules 70200011000036109 sodium chloride 0.9% (180 mg/20 mL) injection, ampoule 21308011000036103 sodium chloride +1039221000168107 Atorvastatin (GA) 40 mg film-coated tablet, 30, blister pack 178532 1039211000168100 Atorvastatin (GA) 40 mg film-coated tablet, 30 1039161000168108 Atorvastatin (GA) 40 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +20149011000036103 Diaformin 500 mg film-coated tablet, 100, blister pack 73806 13373011000036106 Diaformin 500 mg film-coated tablet, 100 6658011000036103 Diaformin 500 mg film-coated tablet 42011000168103 Diaformin 42011000168103 Diaformin 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +912561000168106 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet, 7, blister pack 198386 912551000168109 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet, 7 912541000168107 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet 912531000168103 Candesartan Hydrochlorothiazide 32/12.5 (RZ) 912531000168103 Candesartan Hydrochlorothiazide 32/12.5 (RZ) 83493011000036104 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 7 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +17957011000036103 Depo-Medrol 40 mg/mL injection suspension, 5 x 1 mL vials 12299 11728011000036106 Depo-Medrol 40 mg/mL injection suspension, 5 x 1 mL vials 5415011000036101 Depo-Medrol 40 mg/mL injection suspension, vial 3444011000036104 Depo-Medrol 3444011000036104 Depo-Medrol 27431011000036109 methylprednisolone acetate 40 mg/mL injection, 5 x 1 mL vials 22778011000036107 methylprednisolone acetate 40 mg/mL injection, vial 21605011000036100 methylprednisolone +52755011000036109 Movalis 15 mg hard capsule, 10, blister pack 142229 52567011000036109 Movalis 15 mg hard capsule, 10 52421011000036103 Movalis 15 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 52889011000036100 meloxicam 15 mg capsule, 10 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +17821011000036103 Valproate EC (Winthrop) 200 mg enteric tablet, 100, blister pack 125620 11809011000036109 Valproate EC (Winthrop) 200 mg enteric tablet, 100 5569011000036106 Valproate EC (Winthrop) 200 mg enteric tablet 41341000168107 Valproate EC (Winthrop) 41341000168107 Valproate EC (Winthrop) 27139011000036107 valproate sodium 200 mg enteric tablet, 100 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +140941000036101 Pine Tar (Hamilton) 2.3% solution, 250 mL, bottle 42008 139391000036104 Pine Tar (Hamilton) 2.3% solution, 250 mL 4468011000036100 Pine Tar (Hamilton) 2.3% solution 30575011000036108 Pine Tar (Hamilton) 30575011000036108 Pine Tar (Hamilton) 139401000036101 tar 2.3% solution, 250 mL 22455011000036108 tar 2.3% solution 21402011000036105 tar +61478011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 1000, blister pack 91993 57403011000036107 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 1000 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18213011000036105 Nilstat 500 000 units hard capsule, 50, bottle 15228 12080011000036102 Nilstat 500 000 units hard capsule, 50 5258011000036103 Nilstat 500 000 units hard capsule 32391000168106 Nilstat 32391000168106 Nilstat 26902011000036109 nystatin 500 000 units capsule, 50 22280011000036109 nystatin 500 000 units capsule 21669011000036102 nystatin +61187011000036102 Ranitic (Hexal) 150 mg film-coated tablet, 14, blister pack 75206 57123011000036101 Ranitic (Hexal) 150 mg film-coated tablet, 14 54206011000036108 Ranitic (Hexal) 150 mg film-coated tablet 53331011000036101 Ranitic (Hexal) 53331011000036101 Ranitic (Hexal) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +924081000168105 Temaze 10 mg uncoated tablet, 50, blister pack 63864 924071000168107 Temaze 10 mg uncoated tablet, 50 6361011000036107 Temaze 10 mg uncoated tablet 3498011000036104 Temaze 3498011000036104 Temaze 924061000168101 temazepam 10 mg tablet, 50 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +947141000168108 Citlam-S 10 mg film-coated tablet, 14, blister pack 191886 947131000168104 Citlam-S 10 mg film-coated tablet, 14 947121000168102 Citlam-S 10 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 667881000168103 escitalopram 10 mg tablet, 14 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1111241000168100 Concentrated Sore Throat Gargle (Pharmacy Care) 7.5% mouthwash, 15 mL, bottle 269422 1111231000168109 Concentrated Sore Throat Gargle (Pharmacy Care) 7.5% mouthwash, 15 mL 1111221000168106 Concentrated Sore Throat Gargle (Pharmacy Care) 7.5% mouthwash 1111211000168104 Concentrated Sore Throat Gargle (Pharmacy Care) 1111211000168104 Concentrated Sore Throat Gargle (Pharmacy Care) 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +61236011000036107 Tri-Profen 200 mg film-coated tablet, 24, blister pack 76986 57172011000036109 Tri-Profen 200 mg film-coated tablet, 24 54224011000036106 Tri-Profen 200 mg film-coated tablet 53358011000036106 Tri-Profen 53358011000036106 Tri-Profen 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +20434011000036104 Clonac 50 mg enteric tablet, 50, bottle 145812 13637011000036107 Clonac 50 mg enteric tablet, 50 6920011000036103 Clonac 50 mg enteric tablet 3257011000036106 Clonac 3257011000036106 Clonac 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +20434011000036104 Clonac 50 mg enteric tablet, 50, bottle 77805 13637011000036107 Clonac 50 mg enteric tablet, 50 6920011000036103 Clonac 50 mg enteric tablet 3257011000036106 Clonac 3257011000036106 Clonac 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +60841011000036102 Aspro Clear 300 mg effervescent tablet, 18, strip pack 58566 56797011000036105 Aspro Clear 300 mg effervescent tablet, 18 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 63575011000036101 aspirin 300 mg effervescent tablet, 18 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +667651000168109 Memantine (Generic Health) 20 mg film-coated tablet, 56, blister pack 168427 667641000168107 Memantine (Generic Health) 20 mg film-coated tablet, 56 667621000168101 Memantine (Generic Health) 20 mg film-coated tablet 667581000168101 Memantine (Generic Health) 667581000168101 Memantine (Generic Health) 667631000168103 memantine hydrochloride 20 mg tablet, 56 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +660431000168100 Sumatriptan (AN) 50 mg film-coated tablet, 4, blister pack 187213 660421000168103 Sumatriptan (AN) 50 mg film-coated tablet, 4 660411000168105 Sumatriptan (AN) 50 mg film-coated tablet 660401000168107 Sumatriptan (AN) 660401000168107 Sumatriptan (AN) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +69048011000036109 Thymol Compound (David Craig) mouthwash, 500 mL, bottle 14233 66850011000036102 Thymol Compound (David Craig) mouthwash, 500 mL 65425011000036104 Thymol Compound (David Craig) mouthwash 65048011000036101 Thymol Compound (David Craig) 65048011000036101 Thymol Compound (David Craig) 71461011000036107 thymol 1.5 mg/mL + benzoic acid 8 mg/mL + sodium bicarbonate 3 mg/mL mouthwash, 500 mL 52251011000036101 thymol 1.5 mg/mL + benzoic acid 8 mg/mL + sodium bicarbonate 3 mg/mL mouthwash 52229011000036103 thymol + benzoic acid + bicarbonate +18092011000036107 Lisinopril (Pharmacor) 20 mg uncoated tablet, 30, blister pack 132556 11935011000036106 Lisinopril (Pharmacor) 20 mg uncoated tablet, 30 5673011000036108 Lisinopril (Pharmacor) 20 mg uncoated tablet 3046011000036104 Lisinopril (Pharmacor) 3046011000036104 Lisinopril (Pharmacor) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +929781000168108 Ninlaro 2.3 mg capsule, 1, blister pack 260936 929771000168105 Ninlaro 2.3 mg capsule, 1 929751000168101 Ninlaro 2.3 mg capsule 902241000168107 Ninlaro 902241000168107 Ninlaro 929761000168104 ixazomib 2.3 mg capsule, 1 929741000168103 ixazomib 2.3 mg capsule 902251000168109 ixazomib +923718011000036109 QV Bath Oil 85% bath oil, 10 mL sachet 10666 923262011000036103 QV Bath Oil 85% bath oil, 10 mL sachet 922960011000036109 QV Bath Oil 85% bath oil, 10 mL sachet 922937011000036102 QV Bath Oil 922937011000036102 QV Bath Oil 71278011000036105 light liquid paraffin 85% bath oil, 10 mL sachet 69927011000036103 light liquid paraffin 85% bath oil, sachet 33638011000036106 light liquid paraffin +20405011000036106 Lipitor 80 mg film-coated tablet, 30, blister pack 168344 13613011000036109 Lipitor 80 mg film-coated tablet, 30 6896011000036101 Lipitor 80 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +20405011000036106 Lipitor 80 mg film-coated tablet, 30, blister pack 166902 13613011000036109 Lipitor 80 mg film-coated tablet, 30 6896011000036101 Lipitor 80 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +20405011000036106 Lipitor 80 mg film-coated tablet, 30, blister pack 77326 13613011000036109 Lipitor 80 mg film-coated tablet, 30 6896011000036101 Lipitor 80 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +921932011000036103 B-Dose (Biological Therapies) injection solution, 6 x 2 mL vials 22266 921491011000036102 B-Dose (Biological Therapies) injection solution, 6 x 2 mL vials 921034011000036104 B-Dose (Biological Therapies) injection solution, 2 mL vial 920960011000036102 B-Dose (Biological Therapies) 920960011000036102 B-Dose (Biological Therapies) 922615011000036100 thiamine hydrochloride 20 mg/2 mL + riboflavin sodium phosphate 5 mg/2 mL + nicotinamide 50 mg/2 mL + dexpanthenol 5 mg/2 mL + pyridoxine hydrochloride 10 mg/2 mL + cyanocobalamin 1 mg/2 mL injection, 6 x 2 mL vials 922108011000036109 thiamine hydrochloride 20 mg/2 mL + riboflavin sodium phosphate 5 mg/2 mL + nicotinamide 50 mg/2 mL + dexpanthenol 5 mg/2 mL + pyridoxine hydrochloride 10 mg/2 mL + cyanocobalamin 1 mg/2 mL injection, vial 922036011000036108 thiamine + riboflavin + nicotinamide + dexpanthenol + pyridoxine + cyanocobalamin +1024801000168102 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 20, blister pack 193298 1024791000168103 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 20 1024761000168105 Pregabalin (Blooms The Chemist) 25 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +69290011000036109 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL pack, bag 19503 67090011000036107 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL pack 65521011000036105 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71658011000036106 glucose 5% (2.5 g/50 mL) injection, 50 mL pack 70112011000036109 glucose 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +77238011000036109 Gemcite 200 mg powder for injection, 1 vial 147414 76654011000036102 Gemcite 200 mg powder for injection, 1 vial 76092011000036108 Gemcite 200 mg powder for injection, 200 mg vial 75922011000036106 Gemcite 75922011000036106 Gemcite 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +920757011000036101 Diltiazem Hydrochloride (Sandoz) 60 mg film-coated tablet, 90, blister pack 60838 920440011000036109 Diltiazem Hydrochloride (Sandoz) 60 mg film-coated tablet, 90 920181011000036105 Diltiazem Hydrochloride (Sandoz) 60 mg film-coated tablet 920089011000036103 Diltiazem Hydrochloride (Sandoz) 920089011000036103 Diltiazem Hydrochloride (Sandoz) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +857771000168106 Allermom Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 233572 857761000168100 Allermom Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations 857671000168102 Allermom Aqueous 50 microgram/actuation nasal spray, actuation 857651000168106 Allermom Aqueous 857651000168106 Allermom Aqueous 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +131221000036106 Candesartan Cilexetil (Stada) 16 mg uncoated tablet, 30, blister pack 195489 128321000036105 Candesartan Cilexetil (Stada) 16 mg uncoated tablet, 30 125161000036105 Candesartan Cilexetil (Stada) 16 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1119921000168100 Quetiapine XR (Actavis) 300 mg modified release tablet, 60, blister pack 226807 1119911000168107 Quetiapine XR (Actavis) 300 mg modified release tablet, 60 1119861000168103 Quetiapine XR (Actavis) 300 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +834751000168107 Famciclovir (AN) 500 mg film-coated tablet, 3, blister pack 195174 834741000168105 Famciclovir (AN) 500 mg film-coated tablet, 3 656531000168109 Famciclovir (AN) 500 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +20647011000036106 Enidin 0.2% eye drops solution, 5 mL, bottle 81531 13827011000036101 Enidin 0.2% eye drops solution, 5 mL 7114011000036103 Enidin 0.2% eye drops solution 3820011000036103 Enidin 3820011000036103 Enidin 27954011000036108 brimonidine tartrate 0.2% eye drops, 5 mL 23278011000036107 brimonidine tartrate 0.2% eye drops 21861011000036105 brimonidine +20964011000036106 Clopine 200 mg tablet, 100, blister pack 95560 14118011000036101 Clopine 200 mg tablet, 100 7395011000036107 Clopine 200 mg tablet 3146011000036108 Clopine 3146011000036108 Clopine 28162011000036103 clozapine 200 mg tablet, 100 23471011000036104 clozapine 200 mg tablet 21222011000036104 clozapine +1024871000168107 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 14, blister pack 193300 1024861000168101 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 14 1024851000168103 Pregabalin (Blooms The Chemist) 75 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +977331000168103 Aripiprazole (AN) 5 mg uncoated tablet, 30, blister pack 198188 977321000168101 Aripiprazole (AN) 5 mg uncoated tablet, 30 977291000168109 Aripiprazole (AN) 5 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +751201000168101 Idarubicin (Aspen) 5 mg/5 mL concentrated injection, 5 mL vial 168376 751191000168104 Idarubicin (Aspen) 5 mg/5 mL concentrated injection, 5 mL vial 751181000168102 Idarubicin (Aspen) 5 mg/5 mL concentrated injection, 5 mL vial 751171000168100 Idarubicin (Aspen) 751171000168100 Idarubicin (Aspen) 27615011000036101 idarubicin hydrochloride 5 mg/5 mL injection, 5 mL vial 22953011000036109 idarubicin hydrochloride 5 mg/5 mL injection, vial 21720011000036108 idarubicin +933211201000036103 Minirin Melt 240 microgram sublingual wafer, 100, blister pack 121722 933200301000036104 Minirin Melt 240 microgram sublingual wafer, 100 933194031000036101 Minirin Melt 240 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 933200311000036102 desmopressin 240 microgram sublingual wafer, 100 933194041000036106 desmopressin 240 microgram sublingual wafer 21750011000036107 desmopressin +952861000168102 Gabitril 2.5 mg film-coated tablet, 20, bottle 121176 952851000168104 Gabitril 2.5 mg film-coated tablet, 20 952831000168105 Gabitril 2.5 mg film-coated tablet 3197011000036101 Gabitril 3197011000036101 Gabitril 952841000168101 tiagabine 2.5 mg tablet, 20 952821000168107 tiagabine 2.5 mg tablet 21707011000036103 tiagabine +1023431000168109 Aripiprazole (Teva) 20 mg uncoated tablet, 30, blister pack 237992 1023421000168106 Aripiprazole (Teva) 20 mg uncoated tablet, 30 1023411000168104 Aripiprazole (Teva) 20 mg uncoated tablet 1023011000168106 Aripiprazole (Teva) 1023011000168106 Aripiprazole (Teva) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +60510011000036101 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 48, blister pack 119158 56468011000036104 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 48 53931011000036109 Ibuprofen (Pharmacist) 200 mg film-coated tablet 53148011000036103 Ibuprofen (Pharmacist) 53148011000036103 Ibuprofen (Pharmacist) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60510011000036101 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 48, blister pack 151123 56468011000036104 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 48 53931011000036109 Ibuprofen (Pharmacist) 200 mg film-coated tablet 53148011000036103 Ibuprofen (Pharmacist) 53148011000036103 Ibuprofen (Pharmacist) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +86894011000036104 Caresens N diagnostic strip, 50, bottle 166186 86776011000036102 Caresens N diagnostic strip, 50 86648011000036108 Caresens N diagnostic strip 35441000168104 Caresens N 35441000168104 Caresens N 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +677751000168106 Simpral 250 microgram tablet, 100, blister pack 173138 677741000168109 Simpral 250 microgram tablet, 100 677731000168100 Simpral 250 microgram tablet 677661000168100 Simpral 677661000168100 Simpral 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +1096891000168109 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 8, blister pack 287475 1096881000168106 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 8 1096831000168105 Strepsils Extra Honey and Lemon 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72005011000036104 hexylresorcinol 2.4 mg lozenge, 8 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +1111321000168100 Clopithromb 75 mg film-coated tablet, 4, blister pack 187040 1111311000168107 Clopithromb 75 mg film-coated tablet, 4 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87802011000036105 clopidogrel 75 mg tablet, 4 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +60173011000036109 Exforge 10/160 film-coated tablet, 14, blister pack 130841 56132011000036107 Exforge 10/160 film-coated tablet, 14 53803011000036106 Exforge 10/160 film-coated tablet 22241000168106 Exforge 10/160 22241000168106 Exforge 10/160 63236011000036104 amlodipine 10 mg + valsartan 160 mg tablet, 14 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +79672011000036101 Loxalate 10 mg film-coated tablet, 30, blister pack 119964 79459011000036105 Loxalate 10 mg film-coated tablet, 30 79364011000036107 Loxalate 10 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +856331000168106 Alprolix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209223 856321000168108 Alprolix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack 855861000168102 Alprolix (inert substance) diluent, 5 mL syringe 855751000168109 Alprolix 855751000168109 Alprolix 856311000168101 eftrenonacog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +856331000168106 Alprolix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209223 856321000168108 Alprolix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack 856301000168104 Alprolix (eftrenonacog alfa 500 units) powder for injection, 500 units vial 855751000168109 Alprolix 855751000168109 Alprolix 856311000168101 eftrenonacog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 856291000168100 eftrenonacog alfa 500 units injection, vial 855831000168105 eftrenonacog alfa +156981000036105 Kalydeco 150 mg film-coated tablet, 56, bottle 198654 156041000036100 Kalydeco 150 mg film-coated tablet, 56 154781000036103 Kalydeco 150 mg film-coated tablet 154531000036107 Kalydeco 154531000036107 Kalydeco 156051000036102 ivacaftor 150 mg tablet, 56 154791000036101 ivacaftor 150 mg tablet 157061000036101 ivacaftor +37643011000036108 Phenergan 25 mg/mL injection solution, 10 x 1 mL ampoules 27545 36909011000036103 Phenergan 25 mg/mL injection solution, 10 x 1 mL ampoules 36241011000036109 Phenergan 25 mg/mL injection solution, ampoule 22661000168108 Phenergan 22661000168108 Phenergan 38794011000036103 promethazine hydrochloride 25 mg/mL injection, 10 x 1 mL ampoules 38006011000036107 promethazine hydrochloride 25 mg/mL injection, ampoule 21237011000036104 promethazine +1085381000168108 Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations, pump pack 67490 150921000036107 Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations 148821000036101 Atrovent Forte 44 microgram/actuation nasal spray, actuation 18601000168101 Atrovent Forte 18601000168101 Atrovent Forte 150931000036109 ipratropium bromide monohydrate 44 microgram/actuation nasal spray, 180 actuations 148841000036109 ipratropium bromide monohydrate 44 microgram/actuation nasal spray, actuation 21512011000036101 ipratropium +69031011000036101 Cod Liver Oil (David Craig) 20% ointment, 100 g, jar 14067 66833011000036106 Cod Liver Oil (David Craig) 20% ointment, 100 g 65498011000036100 Cod Liver Oil (David Craig) 20% ointment 65138011000036109 Cod Liver Oil (David Craig) 65138011000036109 Cod Liver Oil (David Craig) 71447011000036106 cod-liver oil 20% ointment, 100 g 70011011000036107 cod-liver oil 20% ointment 69868011000036101 cod-liver oil +971631000168104 Lypralin 150 mg hard capsule, 30, bottle 235852 971621000168102 Lypralin 150 mg hard capsule, 30 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 971611000168109 pregabalin 150 mg capsule, 30 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +918141000168100 Anastrozole (CH) 1 mg film-coated tablet, 30, blister pack 155679 918131000168109 Anastrozole (CH) 1 mg film-coated tablet, 30 918121000168106 Anastrozole (CH) 1 mg film-coated tablet 918111000168104 Anastrozole (CH) 918111000168104 Anastrozole (CH) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +156861000036107 Fosinopril Sodium/HCT 20/12.5 (Actavis) tablet, 30, blister pack 212128 156161000036103 Fosinopril Sodium/HCT 20/12.5 (Actavis) tablet, 30 154651000036100 Fosinopril Sodium/HCT 20/12.5 (Actavis) tablet 58721000168107 Fosinopril Sodium/HCT 20/12.5 (Actavis) 58721000168107 Fosinopril Sodium/HCT 20/12.5 (Actavis) 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1042281000168101 Nicotine (Amcal) 2 mg lozenge, 156, blister pack 213239 1042271000168104 Nicotine (Amcal) 2 mg lozenge, 156 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 898771000168102 nicotine 2 mg lozenge, 156 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +658971000168101 Mizart 40 mg uncoated tablet, 28, blister pack 180992 658921000168102 Mizart 40 mg uncoated tablet, 28 658911000168109 Mizart 40 mg uncoated tablet 658861000168100 Mizart 658861000168100 Mizart 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +18196011000036102 Simvastatin (DP) 10 mg film-coated tablet, 30, blister pack 104495 11292011000036109 Simvastatin (DP) 10 mg film-coated tablet, 30 4629011000036101 Simvastatin (DP) 10 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +18196011000036102 Simvastatin (DP) 10 mg film-coated tablet, 30, blister pack 199733 11292011000036109 Simvastatin (DP) 10 mg film-coated tablet, 30 4629011000036101 Simvastatin (DP) 10 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1059481000168106 Metformin (Auro) 850 mg film-coated tablet, 60, bottle 180432 714441000168107 Metformin (Auro) 850 mg film-coated tablet, 60 714381000168105 Metformin (Auro) 850 mg film-coated tablet 714361000168101 Metformin (Auro) 714361000168101 Metformin (Auro) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +43675011000036102 Ceftazidime (DBL) 1 g powder for injection, 5 vials 120543 41231011000036105 Ceftazidime (DBL) 1 g powder for injection, 5 vials 39859011000036109 Ceftazidime (DBL) 1 g powder for injection, vial 39610011000036101 Ceftazidime (DBL) 39610011000036101 Ceftazidime (DBL) 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +43811011000036104 Flumazenil (Hospira) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 121098 41249011000036105 Flumazenil (Hospira) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 39910011000036102 Flumazenil (Hospira) 500 microgram/5 mL injection solution, 5 mL ampoule 39722011000036101 Flumazenil (Hospira) 39722011000036101 Flumazenil (Hospira) 38694011000036109 flumazenil 500 microgram/5 mL injection, 5 x 5 mL ampoules 37931011000036105 flumazenil 500 microgram/5 mL injection, ampoule 37762011000036103 flumazenil +971711000168102 Lypralin 150 mg hard capsule, 200, bottle 235852 971701000168100 Lypralin 150 mg hard capsule, 200 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 971691000168100 pregabalin 150 mg capsule, 200 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +19466011000036102 Cosudex 50 mg film-coated tablet, 28 tablets, blister pack 54639 12743011000036104 Cosudex 50 mg film-coated tablet, 28 tablets 6037011000036108 Cosudex 50 mg film-coated tablet, 1 tablet 4172011000036106 Cosudex 4172011000036106 Cosudex 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +817441000168101 Advagraf XL 5 mg modified release capsule, 30, blister pack 269215 817431000168105 Advagraf XL 5 mg modified release capsule, 30 817421000168107 Advagraf XL 5 mg modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 920857011000036103 tacrolimus 5 mg modified release capsule, 30 920827011000036102 tacrolimus 5 mg modified release capsule 21380011000036104 tacrolimus +955591000168103 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 10 x 10 mL vials 12595 955581000168101 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 10 x 10 mL vials 955561000168105 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 10 mL vial 35991000168102 Omnipaque-180 35991000168102 Omnipaque-180 955571000168104 iohexol 388 mg (iodine 180 mg)/mL injection, 10 x 10 mL vials 955551000168108 iohexol 388 mg (iodine 180 mg)/mL injection, 10 mL vial 77459011000036103 iohexol +156821000036103 Caverject (1 x 20 microgram vial, 1 x inert diluent syringe), 1 pack, composite pack 202519 156101000036102 Caverject (1 x 20 microgram vial, 1 x inert diluent syringe), 1 pack 154821000036107 Caverject (alprostadil 20 microgram) powder for injection, 20 microgram vial 43991000168102 Caverject 43991000168102 Caverject 156111000036100 alprostadil 20 microgram injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 154831000036109 alprostadil 20 microgram injection, vial 21478011000036104 alprostadil +156821000036103 Caverject (1 x 20 microgram vial, 1 x inert diluent syringe), 1 pack, composite pack 202519 156101000036102 Caverject (1 x 20 microgram vial, 1 x inert diluent syringe), 1 pack 154771000036100 Caverject (inert substance) diluent, syringe 43991000168102 Caverject 43991000168102 Caverject 156111000036100 alprostadil 20 microgram injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +19619011000036109 Xalatan 0.005% eye drops solution, 2.5 mL, bottle 58775 12888011000036101 Xalatan 0.005% eye drops solution, 2.5 mL 6179011000036105 Xalatan 0.005% eye drops solution 3128011000036105 Xalatan 3128011000036105 Xalatan 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +788531000168107 Cortiment 9 mg modified release tablet, 50, blister pack 225849 788521000168109 Cortiment 9 mg modified release tablet, 50 788411000168103 Cortiment 9 mg modified release tablet 788391000168103 Cortiment 788391000168103 Cortiment 788511000168102 budesonide 9 mg modified release tablet, 50 788401000168101 budesonide 9 mg modified release tablet 21307011000036104 budesonide +35664011000036101 Liquifilm Tears 1.4% eye drops solution, 15 mL, bottle 35557011000036105 Liquifilm Tears 1.4% eye drops solution, 15 mL 35464011000036103 Liquifilm Tears 1.4% eye drops solution 56501000168109 Liquifilm Tears 56501000168109 Liquifilm Tears 35772011000036106 polyvinyl alcohol 1.4% eye drops, 15 mL 35713011000036107 polyvinyl alcohol 1.4% eye drops 35687011000036109 polyvinyl alcohol +1023591000168107 Mycophenolate (Sandoz) 250 mg capsule, 300, bottle 148224 1023581000168109 Mycophenolate (Sandoz) 250 mg capsule, 300 1351000036108 Mycophenolate (Sandoz) 250 mg capsule 1041000036107 Mycophenolate (Sandoz) 1041000036107 Mycophenolate (Sandoz) 27604011000036102 mycophenolate mofetil 250 mg capsule, 300 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +19224011000036102 Gentamicin (DBL) 80 mg/2 mL injection solution, 5 x 2 mL ampoules 47268 12514011000036107 Gentamicin (DBL) 80 mg/2 mL injection solution, 5 x 2 mL ampoules 5272011000036104 Gentamicin (DBL) 80 mg/2 mL injection solution, 2 mL ampoule 4253011000036100 Gentamicin (DBL) 4253011000036100 Gentamicin (DBL) 27165011000036103 gentamicin 80 mg/2 mL injection, 5 x 2 mL ampoules 22527011000036109 gentamicin 80 mg/2 mL injection, ampoule 21397011000036102 gentamicin +779941000168107 Bupradone 2/0.5 sublingual tablet, 7, blister pack 152483 779931000168103 Bupradone 2/0.5 sublingual tablet, 7 779921000168101 Bupradone 2/0.5 sublingual tablet 779881000168108 Bupradone 2/0.5 779881000168108 Bupradone 2/0.5 35107011000036109 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet, 7 22108011000036108 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet 21739011000036100 buprenorphine + naloxone +1088351000168105 Sical 0.25 microgram soft capsule, 100, blister pack 236776 11829011000036101 Sical 0.25 microgram soft capsule, 100 4999011000036108 Sical 0.25 microgram soft capsule 4197011000036104 Sical 4197011000036104 Sical 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +24331000036105 Cadatin 5/40 film-coated tablet, 30, blister pack 179138 22731000036101 Cadatin 5/40 film-coated tablet, 30 20101000036108 Cadatin 5/40 film-coated tablet 17861000168100 Cadatin 5/40 17861000168100 Cadatin 5/40 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +927692011000036109 Pentasa 1 g modified release granules, 120 sachets 161063 927628011000036102 Pentasa 1 g modified release granules, 120 sachets 7600011000036109 Pentasa 1 g modified release granules, sachet 3593011000036100 Pentasa 3593011000036100 Pentasa 927736011000036108 mesalazine 1 g modified release granules, 120 sachets 23619011000036106 mesalazine 1 g modified release granules, sachet 21351011000036101 mesalazine +785841000168106 Oxycodone (Sandoz) 80 mg modified release tablet, 60, bottle 153616 785831000168102 Oxycodone (Sandoz) 80 mg modified release tablet, 60 676281000168105 Oxycodone (Sandoz) 80 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35206011000036108 oxycodone hydrochloride 80 mg modified release tablet, 60 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +988791000168107 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 96, blister pack 135089 988781000168109 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 96 988691000168101 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet 988681000168104 Paracetamol (Blooms The Chemist) 988681000168104 Paracetamol (Blooms The Chemist) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +667511000168107 Lamotrigine (AN) 50 mg tablet, 56, blister pack 147632 667501000168109 Lamotrigine (AN) 50 mg tablet, 56 667491000168102 Lamotrigine (AN) 50 mg tablet 667441000168105 Lamotrigine (AN) 667441000168105 Lamotrigine (AN) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1122651000168101 Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes 285932 1122641000168103 Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes 1122621000168109 Fluzone High-Dose 2018 injection suspension, 0.5 mL syringe 1085441000168105 Fluzone High-Dose 2018 1085441000168105 Fluzone High-Dose 2018 1122631000168107 influenza trivalent geriatric vaccine 2018 injection, 5 x 0.5 mL syringes 1122611000168102 influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe 1085461000168109 influenza trivalent vaccine 2018 +18726011000036101 Lamotrigine (GenRx) 200 mg tablet, 56, blister pack 101369 11198011000036105 Lamotrigine (GenRx) 200 mg tablet, 56 4616011000036102 Lamotrigine (GenRx) 200 mg tablet 3001011000036101 Lamotrigine (GenRx) 3001011000036101 Lamotrigine (GenRx) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +60055011000036101 Ibuprofen (Priceline) 200 mg film-coated tablet, 24, blister pack 124621 56017011000036109 Ibuprofen (Priceline) 200 mg film-coated tablet, 24 53759011000036102 Ibuprofen (Priceline) 200 mg film-coated tablet 53413011000036102 Ibuprofen (Priceline) 53413011000036102 Ibuprofen (Priceline) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +56391000036104 Amline 5 mg uncoated tablet, 14, blister pack 160809 52241000036103 Amline 5 mg uncoated tablet, 14 48911000036107 Amline 5 mg uncoated tablet 48351000036105 Amline 48351000036105 Amline 84622011000036102 amlodipine 5 mg tablet, 14 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +800271000168108 Abyraz 30 mg uncoated tablet, 60, blister pack 159504 800261000168102 Abyraz 30 mg uncoated tablet, 60 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787851000168100 aripiprazole 30 mg tablet, 60 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +975971000168109 Amoxiclav 2000/200 (Juno) powder for injection, 50 x 2.2 g vials 269158 975961000168103 Amoxiclav 2000/200 (Juno) powder for injection, 50 x 2.2 g vials 975821000168100 Amoxiclav 2000/200 (Juno) powder for injection, 2.2 g vial 975801000168109 Amoxiclav 2000/200 (Juno) 975801000168109 Amoxiclav 2000/200 (Juno) 975951000168100 amoxicillin 2 g + clavulanic acid 200 mg injection, 50 x 2.2 g vials 975811000168107 amoxicillin 2 g + clavulanic acid 200 mg injection, 2.2 g vial 21360011000036101 amoxicillin + clavulanic acid +24401000036109 Gemaccord 200 mg powder for injection, 1 vial 159102 22411000036101 Gemaccord 200 mg powder for injection, 1 vial 20461000036100 Gemaccord 200 mg powder for injection, 200 mg vial 19911000036107 Gemaccord 19911000036107 Gemaccord 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +710781000168102 Regaine Men's Extra Strength 5% foam, 63 mL, aerosol can 159465 710771000168100 Regaine Men's Extra Strength 5% foam, 63 mL 710761000168106 Regaine Men's Extra Strength 5% foam 45451000168101 Regaine Men's Extra Strength 45451000168101 Regaine Men's Extra Strength 932397011000036103 minoxidil 5% foam, 63 mL 931846011000036106 minoxidil 5% foam 21642011000036104 minoxidil +1102741000168102 Aspramide 5 mg film-coated tablet, 30, blister pack 196499 1102731000168106 Aspramide 5 mg film-coated tablet, 30 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102721000168108 metoclopramide hydrochloride 5 mg tablet, 30 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +942851000168101 Perindopril and Indapamide 4/1.25 mg (BW) uncoated tablet, 30, blister pack 147150 942841000168103 Perindopril and Indapamide 4/1.25 mg (BW) uncoated tablet, 30 942831000168107 Perindopril and Indapamide 4/1.25 mg (BW) uncoated tablet 942821000168109 Perindopril and Indapamide 4/1.25 mg (BW) 942821000168109 Perindopril and Indapamide 4/1.25 mg (BW) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +19089011000036104 Minax 100 mg uncoated tablet, 60, blister pack 42750 12395011000036109 Minax 100 mg uncoated tablet, 60 4708011000036105 Minax 100 mg uncoated tablet 4275011000036101 Minax 4275011000036101 Minax 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +69348011000036108 Betadine Alcoholic Skin Preparation solution, 100 mL, bottle 29557 67148011000036109 Betadine Alcoholic Skin Preparation solution, 100 mL 65198011000036101 Betadine Alcoholic Skin Preparation solution 2991000168104 Betadine Alcoholic Skin Preparation 2991000168104 Betadine Alcoholic Skin Preparation 71713011000036101 povidone-iodine 10% + ethanol 30% solution, 100 mL 70144011000036106 povidone-iodine 10% + ethanol 30% solution 69802011000036103 povidone-iodine + ethanol +160151000036106 Cefaclor (Apo) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 226397 158891000036101 Cefaclor (Apo) 250 mg/5 mL powder for oral liquid, 75 mL 157981000036107 Cefaclor (Apo) 250 mg/5 mL powder for oral liquid, 5 mL 157761000036104 Cefaclor (Apo) 157761000036104 Cefaclor (Apo) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +160151000036106 Cefaclor (Apo) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 169113 158891000036101 Cefaclor (Apo) 250 mg/5 mL powder for oral liquid, 75 mL 157981000036107 Cefaclor (Apo) 250 mg/5 mL powder for oral liquid, 5 mL 157761000036104 Cefaclor (Apo) 157761000036104 Cefaclor (Apo) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +20996011000036100 Surgam 300 mg uncoated tablet, 60, blister pack 96238 14142011000036106 Surgam 300 mg uncoated tablet, 60 7421011000036109 Surgam 300 mg uncoated tablet 4106011000036104 Surgam 4106011000036104 Surgam 28174011000036101 tiaprofenic acid 300 mg tablet, 60 23484011000036105 tiaprofenic acid 300 mg tablet 21840011000036108 tiaprofenic acid +44341011000036109 Novonorm 500 microgram uncoated tablet, 120, blister pack 67270 41808011000036103 Novonorm 500 microgram uncoated tablet, 120 40208011000036102 Novonorm 500 microgram uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46614011000036102 repaglinide 500 microgram tablet, 120 45240011000036103 repaglinide 500 microgram tablet 44883011000036104 repaglinide +59813011000036106 Chilblain (Ayrton's) ointment, 30 g, tube 11476 55775011000036109 Chilblain (Ayrton's) ointment, 30 g 53606011000036108 Chilblain (Ayrton's) ointment 53559011000036101 Chilblain (Ayrton's) 53559011000036101 Chilblain (Ayrton's) 63133011000036108 camphor 6.8% + benzocaine 2% + peru balsam 2% + phenol 0.9% ointment, 30 g 61867011000036107 camphor 6.8% + benzocaine 2% + peru balsam 2% + phenol 0.9% ointment 61781011000036104 camphor + benzocaine + peru balsam + phenol +817361000168107 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 40, blister pack 273819 817351000168105 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 40 817321000168102 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +817361000168107 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 40, blister pack 193082 817351000168105 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 40 817321000168102 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +716721000168103 Pemzo 20 mg enteric capsule, 30, blister pack 149517 716711000168105 Pemzo 20 mg enteric capsule, 30 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +946961000168107 Goricap 1 mg hard capsule, 28, blister pack 139686 946951000168105 Goricap 1 mg hard capsule, 28 946941000168108 Goricap 1 mg hard capsule 941911000168103 Goricap 941911000168103 Goricap 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +823291000168105 Clexane with Automatic Safety Lock System 20 mg/0.2 mL injection solution, 10 x 0.2 mL syringes 221717 823281000168107 Clexane with Automatic Safety Lock System 20 mg/0.2 mL injection solution, 10 x 0.2 mL syringes 823271000168109 Clexane with Automatic Safety Lock System 20 mg/0.2 mL injection solution, 0.2 mL syringe 2391000168100 Clexane 2391000168100 Clexane 33800011000036109 enoxaparin sodium 20 mg/0.2 mL injection, 10 x 0.2 mL syringes 33672011000036106 enoxaparin sodium 20 mg/0.2 mL injection, syringe 21553011000036103 enoxaparin sodium +933214581000036109 Levetiracetam (LAPL) 250 mg film-coated tablet, 60, blister pack 161288 933203941000036108 Levetiracetam (LAPL) 250 mg film-coated tablet, 60 933195971000036102 Levetiracetam (LAPL) 250 mg film-coated tablet 933193691000036108 Levetiracetam (LAPL) 933193691000036108 Levetiracetam (LAPL) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +56071000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet, 10, blister pack 152719 51591000036102 Lisinopril (DRLA) 2.5 mg uncoated tablet, 10 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927297011000036109 lisinopril 2.5 mg tablet, 10 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +1045091000168103 Pryzex 2.5 mg film-coated tablet, 50, blister pack 178975 1045081000168101 Pryzex 2.5 mg film-coated tablet, 50 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1045071000168104 olanzapine 2.5 mg tablet, 50 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +19515011000036101 Mixtard 20/80 Penfill injection suspension, 5 x 3 mL cartridges 56200 12787011000036104 Mixtard 20/80 Penfill injection suspension, 5 x 3 mL cartridges 6081011000036106 Mixtard 20/80 Penfill injection suspension, 3 mL cartridge 53511000168104 Mixtard 20/80 Penfill 53511000168104 Mixtard 20/80 Penfill 27354011000036101 insulin neutral human 20 units/mL + insulin isophane human 80 units/mL injection, 5 x 3 mL cartridges 22707011000036104 insulin neutral human 20 units/mL + insulin isophane human 80 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +44839011000036105 Enablex 15 mg modified release tablet, 7, blister pack 99439 42271011000036108 Enablex 15 mg modified release tablet, 7 40411011000036109 Enablex 15 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47024011000036101 darifenacin 15 mg modified release tablet, 7 45377011000036108 darifenacin 15 mg modified release tablet 44860011000036105 darifenacin +994731000168102 Carbzero oral liquid emulsion, 15 x 225 mL bottles 994721000168100 Carbzero oral liquid emulsion, 15 x 225 mL bottles 994701000168109 Carbzero oral liquid emulsion, 225 mL bottle 161911000036100 Carbzero 161911000036100 Carbzero 994711000168107 long chain triglycerides oral liquid, 15 x 225 mL bottles 994691000168109 long chain triglycerides oral liquid, 225 mL bottle 166271000036107 long chain triglycerides +1075151000168106 Atenolol (RBX) 25 mg film-coated tablet, 10, blister pack 197757 1075141000168109 Atenolol (RBX) 25 mg film-coated tablet, 10 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029361000168108 atenolol 25 mg tablet, 10 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +989431000168105 Fluconazole (First Pharma) 150 mg hard capsule, 1, blister pack 989421000168107 Fluconazole (First Pharma) 150 mg hard capsule, 1 989411000168100 Fluconazole (First Pharma) 150 mg hard capsule 989401000168103 Fluconazole (First Pharma) 989401000168103 Fluconazole (First Pharma) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +68700011000036102 QV Skin Lotion, 250 mL, bottle 10630 66529011000036106 QV Skin Lotion, 250 mL 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71261011000036106 glycerol 5% + white soft paraffin 5% lotion, 250 mL 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +1028251000168109 Repatha 420 mg/3.5 mL injection solution, 3.5 mL cartridge 273084 1028241000168107 Repatha 420 mg/3.5 mL injection solution, 3.5 mL cartridge 1028221000168101 Repatha 420 mg/3.5 mL injection solution, 3.5 mL cartridge 805951000168104 Repatha 805951000168104 Repatha 1028231000168103 evolocumab 420 mg/3.5 mL injection, 3.5 mL cartridge 1028211000168108 evolocumab 420 mg/3.5 mL injection, cartridge 805961000168102 evolocumab +45881000036103 Spren 100 mg uncoated tablet, 112, blister pack 62261 43181000036105 Spren 100 mg uncoated tablet, 112 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +45881000036103 Spren 100 mg uncoated tablet, 112, blister pack 178592 43181000036105 Spren 100 mg uncoated tablet, 112 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +1045181000168100 Amisulpride (Pharmacor) 200 mg uncoated tablet, 60, blister pack 234693 1045171000168103 Amisulpride (Pharmacor) 200 mg uncoated tablet, 60 1045141000168105 Amisulpride (Pharmacor) 200 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +668151000168100 Fonatplus 70 mg/70 microgram uncoated tablet, 4, blister pack 206937 668141000168102 Fonatplus 70 mg/70 microgram uncoated tablet, 4 668101000168104 Fonatplus 70 mg/70 microgram uncoated tablet 668091000168109 Fonatplus 70 mg/70 microgram 668091000168109 Fonatplus 70 mg/70 microgram 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +20425011000036102 Mobic 7.5 mg uncoated tablet, 30, tube 77696 13630011000036106 Mobic 7.5 mg uncoated tablet, 30 6913011000036102 Mobic 7.5 mg uncoated tablet 3572011000036102 Mobic 3572011000036102 Mobic 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +694181000168103 Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll, carton 694171000168101 Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll 694151000168105 Medipore (2961) 2.5 cm x 9.1 m tape 34961000168108 Medipore (2961) 34961000168108 Medipore (2961) 694161000168107 tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll 694141000168108 tape non woven retention polyacrylate 2.5 cm x 9.1 m tape 50701011000036106 tape non woven retention polyacrylate +33599011000036104 Symbicort Turbuhaler 400/12 powder for inhalation, 120 actuations, dry powder inhaler 80877 33337011000036103 Symbicort Turbuhaler 400/12 powder for inhalation, 120 actuations 33097011000036108 Symbicort Turbuhaler 400/12 powder for inhalation, actuation 1881000168103 Symbicort Turbuhaler 400/12 1881000168103 Symbicort Turbuhaler 400/12 33817011000036108 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 120 actuations 33685011000036105 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +1068661000168102 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 30, blister pack 194227 1068651000168104 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 30 88451000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +19360011000036109 Menorest 50 microgram/24 hours patch, 8, sachet 51622 12647011000036104 Menorest 50 microgram/24 hours patch, 8 5412011000036109 Menorest 50 microgram/24 hours patch 4116011000036101 Menorest 4116011000036101 Menorest 28326011000036104 estradiol 50 microgram/24 hours patch, 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +44712011000036106 Chirocaine 125 mg/100 mL injection solution, 100 mL bag 94480 42157011000036100 Chirocaine 125 mg/100 mL injection solution, 100 mL bag 40371011000036108 Chirocaine 125 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46918011000036108 levobupivacaine 125 mg/100 mL injection, 100 mL bag 45346011000036106 levobupivacaine 125 mg/100 mL injection, bag 44881011000036100 levobupivacaine +37861000036102 Epicin 50 mg/25 mL concentrated injection, 25 mL vial 165687 34151000036102 Epicin 50 mg/25 mL concentrated injection, 25 mL vial 32781000036100 Epicin 50 mg/25 mL concentrated injection, 25 mL vial 32261000036101 Epicin 32261000036101 Epicin 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +61512011000036108 Diovan 40 mg film-coated tablet, 28, blister pack 93165 57437011000036107 Diovan 40 mg film-coated tablet, 28 54302011000036104 Diovan 40 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63855011000036103 valsartan 40 mg tablet, 28 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +19602011000036102 Roferon-A 3 million units/0.5 mL injection solution, 0.5 mL syringe 58594 12872011000036108 Roferon-A 3 million units/0.5 mL injection solution, 0.5 mL syringe 6163011000036100 Roferon-A 3 million units/0.5 mL injection solution, 0.5 mL syringe 3169011000036106 Roferon-A 3169011000036106 Roferon-A 27407011000036105 interferon alfa-2a 3 million units/0.5 mL injection, 0.5 mL syringe 22755011000036104 interferon alfa-2a 3 million units/0.5 mL injection, syringe 21592011000036102 interferon alfa-2a +1085841000168108 Monofer 500 mg/5 mL injection solution, 5 mL vial 290833 1085831000168104 Monofer 500 mg/5 mL injection solution, 5 mL vial 1085811000168109 Monofer 500 mg/5 mL injection solution, 5 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1085821000168102 iron (as ferric derisomaltose) 500 mg/5 mL injection, 5 mL vial 1085801000168106 iron (as ferric derisomaltose) 500 mg/5 mL injection, vial 1085791000168105 ferric derisomaltose +25041000036104 Atorvastatin (Apo) 10 mg film-coated tablet, 30, blister pack 153718 22191000036104 Atorvastatin (Apo) 10 mg film-coated tablet, 30 19931000036103 Atorvastatin (Apo) 10 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +59919011000036104 Paracetamol Drops Infants and Children 1 Month to 2 Years (Your Pharmacy) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 118072 55881011000036101 Paracetamol Drops Infants and Children 1 Month to 2 Years (Your Pharmacy) Colour Free 100 mg/mL oral liquid solution, 20 mL 53629011000036107 Paracetamol Drops Infants and Children 1 Month to 2 Years (Your Pharmacy) Colour Free 100 mg/mL oral liquid solution 54081000168104 Paracetamol Drops Infants and Children 1 Month to 2 Years (Your Pharmacy) 54081000168104 Paracetamol Drops Infants and Children 1 Month to 2 Years (Your Pharmacy) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +24971000036106 Atorvastatin (Chemmart) 40 mg film-coated tablet, 30, blister pack 153734 22231000036109 Atorvastatin (Chemmart) 40 mg film-coated tablet, 30 20261000036104 Atorvastatin (Chemmart) 40 mg film-coated tablet 19741000036106 Atorvastatin (Chemmart) 19741000036106 Atorvastatin (Chemmart) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +56551000036101 Riastap 1 g powder for injection, 1 vial 162828 52911000036106 Riastap 1 g powder for injection, 1 vial 49501000036109 Riastap 1 g powder for injection, vial 48101000036107 Riastap 48101000036107 Riastap 52921000036104 fibrinogen 1 g injection, 1 vial 49511000036106 fibrinogen 1 g injection, vial 56821000036109 fibrinogen +79706011000036102 Allerfexo 180 mg film-coated tablet, 30, blister pack 159416 79522011000036107 Allerfexo 180 mg film-coated tablet, 30 79394011000036109 Allerfexo 180 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +131541000036100 Meropenem (Kabi) 1 g powder for injection, 1 vial 196966 128511000036107 Meropenem (Kabi) 1 g powder for injection, 1 vial 125411000036100 Meropenem (Kabi) 1 g powder for injection, vial 123761000036105 Meropenem (Kabi) 123761000036105 Meropenem (Kabi) 128521000036100 meropenem 1 g injection, 1 vial 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +1113651000168104 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 50, blister pack 179092 1113641000168101 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 50 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043401000168104 olanzapine 5 mg orally disintegrating tablet, 50 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +1122251000168104 Influvac Tetra 2018 with 16 mm Needle injection suspension, 10 x 0.5 mL syringes 292237 1122241000168101 Influvac Tetra 2018 with 16 mm Needle injection suspension, 10 x 0.5 mL syringes 1122211000168100 Influvac Tetra 2018 with 16 mm Needle injection suspension, 0.5 mL syringe 1120931000168101 Influvac Tetra 2018 1120931000168101 Influvac Tetra 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +933246361000036109 Ciprofloxacin (PS) 750 mg film-coated tablet, 10, blister pack 148853 933243151000036103 Ciprofloxacin (PS) 750 mg film-coated tablet, 10 933241331000036105 Ciprofloxacin (PS) 750 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +69014011000036108 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 8 sachets 138697 66816011000036106 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 8 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71445011000036101 paracetamol 1 g powder for oral liquid, 8 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +822651000168105 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 150602 822641000168108 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 822621000168102 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 73760011000036103 Jespect 73760011000036103 Jespect 822631000168104 Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe 822611000168109 Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe 822601000168106 Japanese encephalitis (vero cell-derived) inactivated vaccine +933211841000036104 Amlodipine (Lupin) 10 mg uncoated tablet, 30, blister pack 139304 933200661000036107 Amlodipine (Lupin) 10 mg uncoated tablet, 30 933194591000036109 Amlodipine (Lupin) 10 mg uncoated tablet 933193801000036101 Amlodipine (Lupin) 933193801000036101 Amlodipine (Lupin) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +69256011000036101 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 12 x 1 L bags 19471 67056011000036104 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 12 x 1 L bags 65448011000036107 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 14561000168106 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 14561000168106 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 71626011000036108 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, 12 x 1 L bags 70098011000036104 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +854801000168102 Algerika 25 mg hard capsule, 60, blister pack 229554 854791000168103 Algerika 25 mg hard capsule, 60 854691000168109 Algerika 25 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1019711000168101 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 56, blister pack 175208 1019701000168104 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 56 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019691000168104 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 56 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +20613011000036109 Valpam 2 mg uncoated tablet, 50, blister pack 80809 13795011000036102 Valpam 2 mg uncoated tablet, 50 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +1113971000168102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 30, blister pack 179086 1113961000168108 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 30 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043041000168107 olanzapine 10 mg orally disintegrating tablet, 30 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +981121000168103 Lovenox 100 mg/mL injection solution, 6 x 1 mL syringes 80269 981111000168105 Lovenox 100 mg/mL injection solution, 6 x 1 mL syringes 981061000168109 Lovenox 100 mg/mL injection solution, syringe 112571000036109 Lovenox 112571000036109 Lovenox 823751000168106 enoxaparin sodium 100 mg/mL injection, 6 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +933211761000036108 Ciprofloxacin (BL) 500 mg film-coated tablet, 10, blister pack 114047 933199761000036105 Ciprofloxacin (BL) 500 mg film-coated tablet, 10 933194151000036105 Ciprofloxacin (BL) 500 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 933199771000036102 ciprofloxacin 500 mg tablet, 10 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +994091000168100 Candesartan (Apotex) 32 mg tablet, 7, blister pack 191758 994081000168103 Candesartan (Apotex) 32 mg tablet, 7 994061000168107 Candesartan (Apotex) 32 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 994071000168101 candesartan cilexetil 32 mg tablet, 7 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +659931000168106 Valaciclovir (Actavis) 500 mg film-coated tablet, 10, blister pack 170177 659921000168108 Valaciclovir (Actavis) 500 mg film-coated tablet, 10 2681000036102 Valaciclovir (Actavis) 500 mg film-coated tablet 761000036109 Valaciclovir (Actavis) 761000036109 Valaciclovir (Actavis) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +50595011000036105 Amlodipine (Apo) 5 mg uncoated tablet, 30, bottle 135145 34268011000036101 Amlodipine (Apo) 5 mg uncoated tablet, 30 33996011000036103 Amlodipine (Apo) 5 mg uncoated tablet 30701000168100 Amlodipine (Apo) 30701000168100 Amlodipine (Apo) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +43793011000036100 Zofran 8 mg/4 mL injection solution, 5 x 4 mL syringes 122092 41270011000036100 Zofran 8 mg/4 mL injection solution, 5 x 4 mL syringes 39906011000036102 Zofran 8 mg/4 mL injection solution, 4 mL syringe 2471000168108 Zofran 2471000168108 Zofran 46205011000036103 ondansetron 8 mg/4 mL injection, 5 x 4 mL syringes 45029011000036101 ondansetron 8 mg/4 mL injection, syringe 21545011000036100 ondansetron +69719011000036107 Aerius 5 mg film-coated tablet, 15, blister pack 91116 67518011000036108 Aerius 5 mg film-coated tablet, 15 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72020011000036104 desloratadine 5 mg tablet, 15 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1068621000168107 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 12, blister pack 194227 1068611000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 12 88451000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +803241000168105 Abilify ODT 20 mg orally disintegrating tablet, 20, blister pack 128903 803231000168101 Abilify ODT 20 mg orally disintegrating tablet, 20 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803221000168104 aripiprazole 20 mg orally disintegrating tablet, 20 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +44205011000036105 Uromitexan 600 mg film-coated tablet, 20, blister pack 56482 41681011000036101 Uromitexan 600 mg film-coated tablet, 20 40142011000036106 Uromitexan 600 mg film-coated tablet 4340011000036101 Uromitexan 4340011000036101 Uromitexan 46498011000036105 mesna 600 mg tablet, 20 45189011000036102 mesna 600 mg tablet 21302011000036101 mesna +655271000168103 Quetiapine (AN) 300 mg film-coated tablet, 60, blister pack 170856 655261000168109 Quetiapine (AN) 300 mg film-coated tablet, 60 655251000168107 Quetiapine (AN) 300 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +651251000168105 Malean 20 mg tablet, 30, blister pack 196489 651241000168108 Malean 20 mg tablet, 30 651231000168104 Malean 20 mg tablet 651221000168102 Malean 651221000168102 Malean 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +694101000168106 Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll, carton 694091000168101 Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll 694081000168104 Leukosilk (1022) 2.5 cm x 5 m tape 5381000168105 Leukosilk (1022) 5381000168105 Leukosilk (1022) 693991000168104 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll 693971000168100 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape 50731011000036104 tape plaster adhesive hypoallergenic +839591000168108 Paladopt 0.1% eye drops solution, 5 mL, bottle 227798 839581000168105 Paladopt 0.1% eye drops solution, 5 mL 839571000168107 Paladopt 0.1% eye drops solution 839561000168101 Paladopt 839561000168101 Paladopt 46800011000036102 olopatadine 0.1% eye drops, 5 mL 45321011000036104 olopatadine 0.1% eye drops 44954011000036103 olopatadine +35655011000036108 Sertra 100 mg film-coated tablet, 30, blister pack 107071 35580011000036100 Sertra 100 mg film-coated tablet, 30 35455011000036105 Sertra 100 mg film-coated tablet 35426011000036102 Sertra 35426011000036102 Sertra 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +933213941000036105 Citalopram (Auro) 20 mg film-coated tablet, 28, blister pack 153673 933201941000036107 Citalopram (Auro) 20 mg film-coated tablet, 28 933194911000036109 Citalopram (Auro) 20 mg film-coated tablet 12311000168107 Citalopram (Auro) 12311000168107 Citalopram (Auro) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +835311000168106 Esomeprazole (AN) 40 mg enteric tablet, 30, bottle 236437 704081000168105 Esomeprazole (AN) 40 mg enteric tablet, 30 704071000168107 Esomeprazole (AN) 40 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +959531000168104 Levetiracetam (Apo) 750 mg film-coated tablet, 500, bottle 156317 959521000168102 Levetiracetam (Apo) 750 mg film-coated tablet, 500 959411000168108 Levetiracetam (Apo) 750 mg film-coated tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 959511000168109 levetiracetam 750 mg tablet, 500 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +987261000168109 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 71008 987251000168107 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 987201000168108 Varilrix (inert substance) diluent, 0.5 mL ampoule 73749011000036102 Varilrix 73749011000036102 Varilrix 987241000168105 varicella-zoster live vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +987261000168109 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 71008 987251000168107 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 830871000168101 Varilrix (varicella-zoster live vaccine) powder for injection, vial 73749011000036102 Varilrix 73749011000036102 Varilrix 987241000168105 varicella-zoster live vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 830861000168107 varicella-zoster live vaccine 1995 PFU injection, vial 830851000168105 varicella-zoster live vaccine +12041000036102 Zypine 5 mg film-coated tablet, 28, bottle 154618 7151000036103 Zypine 5 mg film-coated tablet, 28 3271000036105 Zypine 5 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +20031011000036107 Doxyhexal 50 mg uncoated tablet, 25, blister pack 69049 13263011000036105 Doxyhexal 50 mg uncoated tablet, 25 6545011000036104 Doxyhexal 50 mg uncoated tablet 4389011000036102 Doxyhexal 4389011000036102 Doxyhexal 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +18060011000036105 Fosinopril Sodium (GenRx) 10 mg uncoated tablet, 30, blister pack 119858 11630011000036103 Fosinopril Sodium (GenRx) 10 mg uncoated tablet, 30 4936011000036109 Fosinopril Sodium (GenRx) 10 mg uncoated tablet 2930011000036104 Fosinopril Sodium (GenRx) 2930011000036104 Fosinopril Sodium (GenRx) 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +44470011000036107 Vinorelbine (Pierre Fabre Medicament) 50 mg/5 mL concentrated injection, 10 x 5 mL vials 74665 41926011000036104 Vinorelbine (Pierre Fabre Medicament) 50 mg/5 mL concentrated injection, 10 x 5 mL vials 40267011000036104 Vinorelbine (Pierre Fabre Medicament) 50 mg/5 mL concentrated injection, 5 mL vial 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 46713011000036109 vinorelbine 50 mg/5 mL injection, 10 x 5 mL vials 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +37439011000036107 Lamprene 50 mg soft capsule, 100, bottle 11116 36656011000036104 Lamprene 50 mg soft capsule, 100 36107011000036107 Lamprene 50 mg soft capsule 35946011000036102 Lamprene 35946011000036102 Lamprene 38574011000036107 clofazimine 50 mg capsule, 100 37848011000036107 clofazimine 50 mg capsule 37783011000036108 clofazimine +926793011000036108 Ondansetron (DRLA) 4 mg film-coated tablet, 4, blister pack 163428 926189011000036103 Ondansetron (DRLA) 4 mg film-coated tablet, 4 925665011000036104 Ondansetron (DRLA) 4 mg film-coated tablet 20111000168103 Ondansetron (DRLA) 20111000168103 Ondansetron (DRLA) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +1040911000168101 Britussol Cough Linctus oral liquid solution, 200 mL, bottle 93440 1040901000168104 Britussol Cough Linctus oral liquid solution, 200 mL 1040831000168102 Britussol Cough Linctus oral liquid solution, 5 mL 1040821000168100 Britussol Cough Linctus 1040821000168100 Britussol Cough Linctus 989961000168106 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +18392011000036108 Aristocort 0.02% cream, 100 g, tube 15121 12071011000036101 Aristocort 0.02% cream, 100 g 4667011000036103 Aristocort 0.02% cream 3359011000036107 Aristocort 3359011000036107 Aristocort 28165011000036106 triamcinolone acetonide 0.02% cream, 100 g 23475011000036102 triamcinolone acetonide 0.02% cream 21377011000036106 triamcinolone +907991000168107 Celecoxib (LAPL) 100 mg hard capsule, 60, blister pack 196179 907981000168109 Celecoxib (LAPL) 100 mg hard capsule, 60 907731000168106 Celecoxib (LAPL) 100 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +20765011000036104 Nufloxib 400 mg film-coated tablet, 14, blister pack 90774 13934011000036102 Nufloxib 400 mg film-coated tablet, 14 7222011000036104 Nufloxib 400 mg film-coated tablet 2926011000036104 Nufloxib 2926011000036104 Nufloxib 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +20765011000036104 Nufloxib 400 mg film-coated tablet, 14, blister pack 149416 13934011000036102 Nufloxib 400 mg film-coated tablet, 14 7222011000036104 Nufloxib 400 mg film-coated tablet 2926011000036104 Nufloxib 2926011000036104 Nufloxib 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +926772011000036106 Somac Heartburn Relief 20 mg enteric tablet, 14, blister pack 154252 926169011000036101 Somac Heartburn Relief 20 mg enteric tablet, 14 925654011000036106 Somac Heartburn Relief 20 mg enteric tablet 50831000168101 Somac Heartburn Relief 50831000168101 Somac Heartburn Relief 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +837501000168105 Adacel injection suspension, 0.5 mL vial 106554 837491000168103 Adacel injection suspension, 0.5 mL vial 837471000168104 Adacel injection suspension, 0.5 mL vial 73714011000036109 Adacel 73714011000036109 Adacel 837481000168101 diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial 837461000168105 diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial 837451000168108 diphtheria + tetanus + pertussis 5 component vaccine +970341000168108 Lypralin 25 mg hard capsule, 14, bottle 235870 970191000168102 Lypralin 25 mg hard capsule, 14 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +18472011000036105 D-Penamine 250 mg film-coated tablet, 100, bottle 14626 12046011000036107 D-Penamine 250 mg film-coated tablet, 100 4661011000036106 D-Penamine 250 mg film-coated tablet 2944011000036105 D-Penamine 2944011000036105 D-Penamine 26878011000036106 penicillamine 250 mg tablet, 100 22257011000036104 penicillamine 250 mg tablet 21611011000036100 penicillamine +805431000168103 Caelyx 50 mg/25 mL concentrated injection, 5 x 25 mL vials 79921 805421000168101 Caelyx 50 mg/25 mL concentrated injection, 5 x 25 mL vials 113181000036109 Caelyx 50 mg/25 mL concentrated injection, 25 mL vial 3909011000036107 Caelyx 3909011000036107 Caelyx 805411000168108 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, 5 x 25 mL vials 113171000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +69668011000036105 Nicabate Clear 14 mg/24 hours patch, 1, sachet 81034 67467011000036100 Nicabate Clear 14 mg/24 hours patch, 1 65675011000036102 Nicabate Clear 14 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71994011000036105 nicotine 14 mg/24 hours patch, 1 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +24881000036100 Irinoccord 100 mg/5 mL concentrated injection, 5 mL vial 173871 22551000036103 Irinoccord 100 mg/5 mL concentrated injection, 5 mL vial 20561000036101 Irinoccord 100 mg/5 mL concentrated injection, 5 mL vial 19901000036105 Irinoccord 19901000036105 Irinoccord 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +1103141000168109 Nicotine (NCHA) Classic 2 mg chewing gum, 96, blister pack 143429 1103131000168100 Nicotine (NCHA) Classic 2 mg chewing gum, 96 1103101000168107 Nicotine (NCHA) Classic 2 mg chewing gum 1103091000168102 Nicotine (NCHA) 1103091000168102 Nicotine (NCHA) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +933213861000036104 Ciprofloxacin (IPC) 750 mg film-coated tablet, 10, blister pack 153185 933201891000036108 Ciprofloxacin (IPC) 750 mg film-coated tablet, 10 933194831000036105 Ciprofloxacin (IPC) 750 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +839651000168102 Adacel Polio injection suspension, 0.5 mL syringe 106576 839641000168104 Adacel Polio injection suspension, 0.5 mL syringe 839621000168105 Adacel Polio injection suspension, 0.5 mL syringe 73693011000036101 Adacel Polio 73693011000036101 Adacel Polio 839631000168108 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 839611000168103 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 839601000168101 diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine +970261000168103 Lypralin 25 mg hard capsule, 60, blister pack 235874 970251000168100 Lypralin 25 mg hard capsule, 60 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +925238011000036103 Rispaccord-0.5 500 microgram film-coated tablet, 20, blister pack 159974 924775011000036106 Rispaccord-0.5 500 microgram film-coated tablet, 20 924474011000036100 Rispaccord-0.5 500 microgram film-coated tablet 48421000168101 Rispaccord-0.5 48421000168101 Rispaccord-0.5 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +161681000036101 Nimbex 150 mg/30 mL injection solution, 30 mL vial 55934 161581000036102 Nimbex 150 mg/30 mL injection solution, 30 mL vial 161491000036101 Nimbex 150 mg/30 mL injection solution, 30 mL vial 39720011000036100 Nimbex 39720011000036100 Nimbex 161591000036100 cisatracurium 150 mg/30 mL injection, 30 mL vial 161501000036108 cisatracurium 150 mg/30 mL injection, vial 44902011000036101 cisatracurium +1120241000168100 Cloipca 7.5 mg film-coated tablet, 30, blister pack 239218 1120231000168109 Cloipca 7.5 mg film-coated tablet, 30 1120221000168106 Cloipca 7.5 mg film-coated tablet 1120211000168104 Cloipca 1120211000168104 Cloipca 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +837581000168102 Tripacel injection suspension, 0.5 mL vial 63120 837571000168100 Tripacel injection suspension, 0.5 mL vial 837551000168109 Tripacel injection suspension, 0.5 mL vial 73745011000036104 Tripacel 73745011000036104 Tripacel 837561000168106 diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial 837541000168107 diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial 837451000168108 diphtheria + tetanus + pertussis 5 component vaccine +659701000168102 Candesartan Cilexetil HCTZ 32/25 (AN) uncoated tablet, 30, blister pack 204588 659461000168107 Candesartan Cilexetil HCTZ 32/25 (AN) uncoated tablet, 30 659451000168105 Candesartan Cilexetil HCTZ 32/25 (AN) uncoated tablet 659441000168108 Candesartan Cilexetil HCTZ 32/25 (AN) 659441000168108 Candesartan Cilexetil HCTZ 32/25 (AN) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +856811000168108 Entrip 50 mg film-coated tablet, 50, blister pack 232156 856801000168105 Entrip 50 mg film-coated tablet, 50 856771000168108 Entrip 50 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +959611000168105 Ranitidine (WT) 300 mg film-coated tablet, 10, blister pack 82325 959601000168107 Ranitidine (WT) 300 mg film-coated tablet, 10 959551000168105 Ranitidine (WT) 300 mg film-coated tablet 959541000168108 Ranitidine (WT) 959541000168108 Ranitidine (WT) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +989591000168108 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 5, blister pack 199859 989581000168105 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 5 989571000168107 Loratadine (Blooms The Chemist) 10 mg uncoated tablet 989561000168101 Loratadine (Blooms The Chemist) 989561000168101 Loratadine (Blooms The Chemist) 681171000168103 loratadine 10 mg tablet, 5 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +131461000036103 Candesartan Cilexetil HCT 32/12.5 (GH) uncoated tablet, 30, bottle 196415 128761000036102 Candesartan Cilexetil HCT 32/12.5 (GH) uncoated tablet, 30 125191000036103 Candesartan Cilexetil HCT 32/12.5 (GH) uncoated tablet 38961000168103 Candesartan Cilexetil HCT 32/12.5 (GH) 38961000168103 Candesartan Cilexetil HCT 32/12.5 (GH) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19823011000036107 Captopril (Douglas) 25 mg uncoated tablet, 90, blister pack 63776 13610011000036101 Captopril (Douglas) 25 mg uncoated tablet, 90 6893011000036107 Captopril (Douglas) 25 mg uncoated tablet 4305011000036103 Captopril (Douglas) 4305011000036103 Captopril (Douglas) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +938191000168103 Tevatiapine XR 150 mg modified release tablet, 60, blister pack 249752 938181000168101 Tevatiapine XR 150 mg modified release tablet, 60 938171000168104 Tevatiapine XR 150 mg modified release tablet 938101000168109 Tevatiapine XR 938101000168109 Tevatiapine XR 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +953181000168105 Gabapentin (AN) 300 mg hard capsule, 150, blister pack 263841 953171000168107 Gabapentin (AN) 300 mg hard capsule, 150 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953161000168101 gabapentin 300 mg capsule, 150 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +44087011000036109 Lignospan Special 2% / 1 in 80 000 injection solution, 50 x 2.2 mL cartridges 49328 41574011000036101 Lignospan Special 2% / 1 in 80 000 injection solution, 50 x 2.2 mL cartridges 40077011000036104 Lignospan Special 2% / 1 in 80 000 injection solution, 2.2 mL cartridge 45221000168105 Lignospan Special 2% / 1 in 80 000 45221000168105 Lignospan Special 2% / 1 in 80 000 46403011000036103 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, 50 x 2.2 mL cartridges 37875011000036100 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, cartridge 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +18634011000036100 Hytrin (7 x 1 mg tablets, 7 x 2 mg tablets), 14, blister pack 121315 11663011000036101 Hytrin (7 x 1 mg tablets, 7 x 2 mg tablets), 14 4845011000036108 Hytrin 1 mg uncoated tablet 3113011000036109 Hytrin 3113011000036109 Hytrin 26731011000036101 terazosin 1 mg tablet [7] (&) terazosin 2 mg tablet [7], 14 22126011000036104 terazosin 1 mg tablet 21396011000036100 terazosin +18634011000036100 Hytrin (7 x 1 mg tablets, 7 x 2 mg tablets), 14, blister pack 121315 11663011000036101 Hytrin (7 x 1 mg tablets, 7 x 2 mg tablets), 14 4902011000036100 Hytrin 2 mg uncoated tablet 3113011000036109 Hytrin 3113011000036109 Hytrin 26731011000036101 terazosin 1 mg tablet [7] (&) terazosin 2 mg tablet [7], 14 22127011000036101 terazosin 2 mg tablet 21396011000036100 terazosin +835401000168100 Esomeprazole (AN) 20 mg enteric tablet, 30, bottle 236436 704621000168101 Esomeprazole (AN) 20 mg enteric tablet, 30 704611000168108 Esomeprazole (AN) 20 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +926759011000036104 Robitussin Chesty Cough and Nasal Congestion PE oral liquid solution, 235 mL, bottle 150736 926157011000036104 Robitussin Chesty Cough and Nasal Congestion PE oral liquid solution, 235 mL 925645011000036107 Robitussin Chesty Cough and Nasal Congestion PE oral liquid solution, 10 mL 925558011000036108 Robitussin Chesty Cough and Nasal Congestion PE 925558011000036108 Robitussin Chesty Cough and Nasal Congestion PE 927325011000036104 guaifenesin 200 mg/10 mL + phenylephrine hydrochloride 10 mg/10 mL oral liquid, 235 mL 926989011000036101 guaifenesin 200 mg/10 mL + phenylephrine hydrochloride 10 mg/10 mL oral liquid 61724011000036106 guaifenesin + phenylephrine +12001000036100 Carvedilol (GN) 25 mg uncoated tablet, 60, blister pack 152440 6721000036106 Carvedilol (GN) 25 mg uncoated tablet, 60 1731000036104 Carvedilol (GN) 25 mg uncoated tablet 1091000036101 Carvedilol (GN) 1091000036101 Carvedilol (GN) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +69426011000036104 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 50 x 5 mL ampoules 48346 67226011000036106 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 50 x 5 mL ampoules 65564011000036101 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 5 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71817011000036107 sodium chloride 0.9% (45 mg/5 mL) injection, 50 x 5 mL ampoules 70199011000036103 sodium chloride 0.9% (45 mg/5 mL) injection, ampoule 21308011000036103 sodium chloride +835391000168102 Esomeprazole (AN) 40 mg enteric tablet, 100, bottle 236437 835381000168100 Esomeprazole (AN) 40 mg enteric tablet, 100 704071000168107 Esomeprazole (AN) 40 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +923820011000036102 Targin 20/10 mg modified release tablet, 20, blister pack 156189 923366011000036105 Targin 20/10 mg modified release tablet, 20 923037011000036104 Targin 20/10 mg modified release tablet 14801000168107 Targin 20/10 mg 14801000168107 Targin 20/10 mg 924164011000036107 oxycodone hydrochloride 20 mg + naloxone hydrochloride 10 mg modified release tablet, 20 923975011000036101 oxycodone hydrochloride 20 mg + naloxone hydrochloride 10 mg modified release tablet 923931011000036100 oxycodone + naloxone +55181000036106 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 144128 51441000036109 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 49061000036103 Jene-35 ED (inert substance) film-coated tablet 6021000168101 Jene-35 ED 6021000168101 Jene-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +55181000036106 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 144128 51441000036109 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 49051000036101 Jene-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 6021000168101 Jene-35 ED 6021000168101 Jene-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +700028781000036109 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream, 20 g, tube 261000168107 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream, 20 g 80241011000036106 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +73315011000036109 Tamiflu 45 mg hard capsule, 10, blister pack 145957 73113011000036103 Tamiflu 45 mg hard capsule, 10 72956011000036107 Tamiflu 45 mg hard capsule 39602011000036100 Tamiflu 39602011000036100 Tamiflu 73511011000036105 oseltamivir 45 mg capsule, 10 73375011000036104 oseltamivir 45 mg capsule 44916011000036104 oseltamivir +931381011000036106 Serdolect 16 mg film-coated tablet, 28, blister pack 127486 930583011000036103 Serdolect 16 mg film-coated tablet, 28 929951011000036103 Serdolect 16 mg film-coated tablet 929832011000036102 Serdolect 929832011000036102 Serdolect 932357011000036105 sertindole 16 mg tablet, 28 931829011000036100 sertindole 16 mg tablet 931786011000036100 sertindole +852471000168103 Descovy 200/10 mg film-coated tablet, 30, bottle 246093 852461000168109 Descovy 200/10 mg film-coated tablet, 30 852441000168105 Descovy 200/10 mg film-coated tablet 852411000168106 Descovy 200/10 mg 852411000168106 Descovy 200/10 mg 852451000168107 emtricitabine 200 mg + tenofovir alafenamide 10 mg tablet, 30 852431000168101 emtricitabine 200 mg + tenofovir alafenamide 10 mg tablet 852421000168104 emtricitabine + tenofovir alafenamide +1111561000168104 Quetiapine (DP) 300 mg film-coated tablet, 90, blister pack 202271 1111551000168101 Quetiapine (DP) 300 mg film-coated tablet, 90 1111421000168105 Quetiapine (DP) 300 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 667411000168106 quetiapine 300 mg tablet, 90 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +843841000168100 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 7, blister pack 218083 843831000168109 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 7 843821000168106 Desvenlafaxine (Sandoz) 50 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1056101000168101 Erelzi 25 mg/0.5 mL injection solution, 0.5 mL syringe 281783 1056091000168106 Erelzi 25 mg/0.5 mL injection solution, 0.5 mL syringe 1056051000168101 Erelzi 25 mg/0.5 mL injection solution, 0.5 mL syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 1056081000168108 etanercept 25 mg/0.5 mL injection, 0.5 mL syringe 45042011000036108 etanercept 25 mg/0.5 mL injection, syringe 21347011000036107 etanercept +955281000168104 Ceftriaxone (Mylan) 1 g powder for injection, 5 vials 148218 955271000168102 Ceftriaxone (Mylan) 1 g powder for injection, 5 vials 955241000168109 Ceftriaxone (Mylan) 1 g powder for injection, vial 955231000168100 Ceftriaxone (Mylan) 955231000168100 Ceftriaxone (Mylan) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +1092471000168105 Demazin PSE Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 286002 1092461000168104 Demazin PSE Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24 1092441000168103 Demazin PSE Cold and Flu Day and Night (Day) uncoated tablet 1092411000168102 Demazin PSE Cold and Flu Day and Night 1092421000168109 Demazin PSE Cold and Flu Day and Night (Day) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +1092471000168105 Demazin PSE Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 286002 1092461000168104 Demazin PSE Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24 1092451000168101 Demazin PSE Cold and Flu Day and Night (Night) uncoated tablet 1092411000168102 Demazin PSE Cold and Flu Day and Night 1092431000168107 Demazin PSE Cold and Flu Day and Night (Night) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +21102011000036109 Toprol-XL 47.5 mg modified release tablet, 30, blister pack 97786 14245011000036101 Toprol-XL 47.5 mg modified release tablet, 30 7531011000036103 Toprol-XL 47.5 mg modified release tablet 32970011000036103 Toprol-XL 32970011000036103 Toprol-XL 28244011000036100 metoprolol succinate 47.5 mg modified release tablet, 30 23558011000036104 metoprolol succinate 47.5 mg modified release tablet 21662011000036107 metoprolol +50598011000036104 Amlodipine (Chemmart) 10 mg uncoated tablet, 30, bottle 135152 34271011000036100 Amlodipine (Chemmart) 10 mg uncoated tablet, 30 33999011000036107 Amlodipine (Chemmart) 10 mg uncoated tablet 33922011000036106 Amlodipine (Chemmart) 33922011000036106 Amlodipine (Chemmart) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +1113891000168108 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 10, blister pack 179086 1113881000168105 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 10 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1042901000168103 olanzapine 10 mg orally disintegrating tablet, 10 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +928926011000036106 Valaciclovir (SZ) 500 mg film-coated tablet, 20, blister pack 154460 928288011000036102 Valaciclovir (SZ) 500 mg film-coated tablet, 20 927923011000036106 Valaciclovir (SZ) 500 mg film-coated tablet 927819011000036109 Valaciclovir (SZ) 927819011000036109 Valaciclovir (SZ) 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +50289011000036102 Cutilin Non-Stick Wound Pad (76301) 5 cm x 5 cm dressing, 5, carton 49393011000036101 Cutilin Non-Stick Wound Pad (76301) 5 cm x 5 cm dressing, 5 48739011000036109 Cutilin Non-Stick Wound Pad (76301) 5 cm x 5 cm dressing 53801000168100 Cutilin Non-Stick Wound Pad (76301) 53801000168100 Cutilin Non-Stick Wound Pad (76301) 51364011000036102 dressing non adherent 5 cm x 5 cm dressing, 5 50886011000036103 dressing non adherent 5 cm x 5 cm dressing 50699011000036100 dressing non adherent +923705011000036100 Grandicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 147832 923292011000036100 Grandicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 922981011000036104 Grandicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924115011000036107 epoetin lambda 7000 units/0.7 mL injection, 0.7 mL syringe 923948011000036108 epoetin lambda 7000 units/0.7 mL injection, syringe 923930011000036107 epoetin lambda +60210011000036106 Cold and Flu (Chemmart) uncoated tablet, 24, blister pack 133185 56169011000036108 Cold and Flu (Chemmart) uncoated tablet, 24 53818011000036103 Cold and Flu (Chemmart) uncoated tablet 53125011000036106 Cold and Flu (Chemmart) 53125011000036106 Cold and Flu (Chemmart) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +906121000168109 Farydak 10 mg hard capsule, 24, blister pack 229941 906111000168102 Farydak 10 mg hard capsule, 24 906031000168106 Farydak 10 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 906101000168100 panobinostat 10 mg capsule, 24 906021000168108 panobinostat 10 mg capsule 905421000168108 panobinostat +921111000168102 Cilopam 20 mg film-coated tablet, 84, bottle 158865 920741000168105 Cilopam 20 mg film-coated tablet, 84 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1045341000168108 Hyoscine Butylbromide (SXP) 20 mg/mL injection solution, 10 x 1 mL ampoules 278817 1045331000168104 Hyoscine Butylbromide (SXP) 20 mg/mL injection solution, 10 x 1 mL ampoules 1045251000168100 Hyoscine Butylbromide (SXP) 20 mg/mL injection solution, ampoule 1045241000168102 Hyoscine Butylbromide (SXP) 1045241000168102 Hyoscine Butylbromide (SXP) 1045321000168102 hyoscine butylbromide 20 mg/mL injection, 10 x 1 mL ampoules 22329011000036104 hyoscine butylbromide 20 mg/mL injection, ampoule 21580011000036102 hyoscine butylbromide +68777011000036108 Viodine Povidone-Iodine Antiseptic 10% ointment, 25 g, tube 10824 66564011000036103 Viodine Povidone-Iodine Antiseptic 10% ointment, 25 g 65262011000036100 Viodine Povidone-Iodine Antiseptic 10% ointment 47791000168106 Viodine Povidone-Iodine Antiseptic 47791000168106 Viodine Povidone-Iodine Antiseptic 71716011000036107 povidone-iodine 10% ointment, 25 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +972361000168108 Lyzalon 75 mg hard capsule, 60, bottle 224428 972351000168106 Lyzalon 75 mg hard capsule, 60 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +20860011000036105 Stelax 10 mg uncoated tablet, 100, bottle 92251 14023011000036109 Stelax 10 mg uncoated tablet, 100 7299011000036103 Stelax 10 mg uncoated tablet 3204011000036107 Stelax 3204011000036107 Stelax 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +963941000168108 Rapamune 5 mg sugar coated tablet, 30, blister pack 104240 963931000168104 Rapamune 5 mg sugar coated tablet, 30 963911000168109 Rapamune 5 mg sugar coated tablet 3482011000036103 Rapamune 3482011000036103 Rapamune 963921000168102 sirolimus 5 mg tablet, 30 963901000168106 sirolimus 5 mg tablet 21862011000036104 sirolimus +685371000168104 Flovir 125 mg film-coated tablet, 56, blister pack 195177 685361000168105 Flovir 125 mg film-coated tablet, 56 685311000168107 Flovir 125 mg film-coated tablet 685301000168109 Flovir 685301000168109 Flovir 87823011000036105 famciclovir 125 mg tablet, 56 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +1079901000168107 Carvedilol (Auro) 12.5 mg film-coated tablet, 60, blister pack 174791 1079791000168103 Carvedilol (Auro) 12.5 mg film-coated tablet, 60 737761000168101 Carvedilol (Auro) 12.5 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +1023751000168105 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 16, blister pack 227168 1023741000168108 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 16 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +928815011000036104 Potassium Chloride Sterile (AstraZeneca) 2 g (potassium 26.8 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 12042 928188011000036104 Potassium Chloride Sterile (AstraZeneca) 2 g (potassium 26.8 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 927832011000036107 Potassium Chloride Sterile (AstraZeneca) 2 g (potassium 26.8 mmol)/10 mL concentrated injection, 10 mL ampoule 5321000168106 Potassium Chloride Sterile (AstraZeneca) 5321000168106 Potassium Chloride Sterile (AstraZeneca) 929203011000036106 potassium chloride 2 g (potassium 26.8 mmol)/10 mL injection, 50 x 10 mL ampoules 929141011000036104 potassium chloride 2 g (potassium 26.8 mmol)/10 mL injection, ampoule 21274011000036107 potassium chloride +11881000036108 Venlafaxine XR (Sandoz) 150 mg modified release capsule, 28, blister pack 151875 6601000036109 Venlafaxine XR (Sandoz) 150 mg modified release capsule, 28 2581000036103 Venlafaxine XR (Sandoz) 150 mg modified release capsule 14321000168105 Venlafaxine XR (Sandoz) 14321000168105 Venlafaxine XR (Sandoz) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +11881000036108 Venlafaxine XR (Sandoz) 150 mg modified release capsule, 28, blister pack 285262 6601000036109 Venlafaxine XR (Sandoz) 150 mg modified release capsule, 28 2581000036103 Venlafaxine XR (Sandoz) 150 mg modified release capsule 14321000168105 Venlafaxine XR (Sandoz) 14321000168105 Venlafaxine XR (Sandoz) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +44678011000036106 Copegus 200 mg film-coated tablet, 140 tablets, bottle 91841 42127011000036104 Copegus 200 mg film-coated tablet, 140 tablets 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 3042011000036103 Copegus 3042011000036103 Copegus 46889011000036107 ribavirin 200 mg tablet, 140 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +17784011000036107 Cephalexin (Lupin) 250 mg hard capsule, 20, blister pack 127390 11840011000036109 Cephalexin (Lupin) 250 mg hard capsule, 20 5619011000036102 Cephalexin (Lupin) 250 mg hard capsule 3024011000036109 Cephalexin (Lupin) 3024011000036109 Cephalexin (Lupin) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +926823011000036101 Zitrocin 500 mg film-coated tablet, 2, blister pack 171321 926219011000036102 Zitrocin 500 mg film-coated tablet, 2 925682011000036109 Zitrocin 500 mg film-coated tablet 925522011000036106 Zitrocin 925522011000036106 Zitrocin 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +106101000036109 Senna-Col (Guardian) film-coated tablet, 8, bottle 139220 105991000036109 Senna-Col (Guardian) film-coated tablet, 8 105921000036106 Senna-Col (Guardian) film-coated tablet 53137011000036103 Senna-Col (Guardian) 53137011000036103 Senna-Col (Guardian) 81747011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet, 8 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +34766011000036107 Dilaudid 4 mg uncoated tablet, 100, bottle 67354 34347011000036102 Dilaudid 4 mg uncoated tablet, 100 6477011000036104 Dilaudid 4 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35195011000036101 hydromorphone hydrochloride 4 mg tablet, 100 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +24721000036109 Monofix-VF (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 101711 22071000036102 Monofix-VF (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 65385011000036102 Monofix-VF (factor IX 1000 units) powder for injection, 1000 units vial 40801000168106 Monofix-VF 40801000168106 Monofix-VF 22081000036100 factor IX 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 69904011000036103 factor IX 1000 units injection, vial 69788011000036101 factor IX +24721000036109 Monofix-VF (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 101711 22071000036102 Monofix-VF (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 642901000168106 Monofix-VF (inert substance) diluent, 10 mL vial 40801000168106 Monofix-VF 40801000168106 Monofix-VF 22081000036100 factor IX 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +933246201000036103 Allevyn Ag Adhesive (66800073) 7.5 cm x 7.5 cm medicated dressing, 10, carton 155735 933242761000036109 Allevyn Ag Adhesive (66800073) 7.5 cm x 7.5 cm medicated dressing, 10 933241081000036107 Allevyn Ag Adhesive (66800073) 7.5 cm x 7.5 cm medicated dressing 40281000168104 Allevyn Ag Adhesive (66800073) 40281000168104 Allevyn Ag Adhesive (66800073) 933242771000036101 dressing foam with silver 7.5 cm x 7.5 cm dressing, 10 933241091000036109 dressing foam with silver 7.5 cm x 7.5 cm dressing 933247641000036101 dressing foam with silver +931449011000036106 Fexofenadine Hydrochloride (Pharmacor) 120 mg film-coated tablet, 30, blister pack 144693 930628011000036105 Fexofenadine Hydrochloride (Pharmacor) 120 mg film-coated tablet, 30 929979011000036101 Fexofenadine Hydrochloride (Pharmacor) 120 mg film-coated tablet 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +20973011000036102 Zimstat 40 mg film-coated tablet, 30, blister pack 95675 14124011000036100 Zimstat 40 mg film-coated tablet, 30 7401011000036104 Zimstat 40 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +903471000168105 Brillior 150 mg hard capsule, 60, blister pack 224342 903461000168104 Brillior 150 mg hard capsule, 60 903381000168100 Brillior 150 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +50390011000036103 Lisinopril (Generic Health) 5 mg uncoated tablet, 30, blister pack 128154 49571011000036106 Lisinopril (Generic Health) 5 mg uncoated tablet, 30 48610011000036102 Lisinopril (Generic Health) 5 mg uncoated tablet 35443011000036106 Lisinopril (Generic Health) 35443011000036106 Lisinopril (Generic Health) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +906461000168106 Celecoxib (ZX) 100 mg hard capsule, 60, blister pack 206839 906451000168109 Celecoxib (ZX) 100 mg hard capsule, 60 906441000168107 Celecoxib (ZX) 100 mg hard capsule 906371000168107 Celecoxib (ZX) 906371000168107 Celecoxib (ZX) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +908611000168109 Celecoxib (Lup) 100 mg hard capsule, 30, blister pack 196184 908601000168106 Celecoxib (Lup) 100 mg hard capsule, 30 908551000168109 Celecoxib (Lup) 100 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 907411000168106 celecoxib 100 mg capsule, 30 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1021581000168105 Voriconazole (Apo) 200 mg film-coated tablet, 30, blister pack 238282 1021571000168107 Voriconazole (Apo) 200 mg film-coated tablet, 30 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46808011000036100 voriconazole 200 mg tablet, 30 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +972591000168109 Lyzalon 75 mg hard capsule, 14, blister pack 224436 972291000168106 Lyzalon 75 mg hard capsule, 14 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +46201000036103 Kapanol 10 mg modified release capsule, 28, blister pack 68439 43871000036101 Kapanol 10 mg modified release capsule, 28 6519011000036105 Kapanol 10 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 43881000036104 morphine sulfate pentahydrate 10 mg modified release capsule, 28 22976011000036101 morphine sulfate pentahydrate 10 mg modified release capsule 21252011000036100 morphine +908631000168104 Celecoxib (Lup) 100 mg hard capsule, 50, blister pack 196184 908621000168102 Celecoxib (Lup) 100 mg hard capsule, 50 908551000168109 Celecoxib (Lup) 100 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +61604011000036105 Strepfen Intensive orange sugar free 8.75 mg lozenge, 2, blister pack 157020 57526011000036100 Strepfen Intensive orange sugar free 8.75 mg lozenge, 2 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63908011000036107 flurbiprofen 8.75 mg lozenge, 2 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +61604011000036105 Strepfen Intensive orange sugar free 8.75 mg lozenge, 2, blister pack 96063 57526011000036100 Strepfen Intensive orange sugar free 8.75 mg lozenge, 2 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63908011000036107 flurbiprofen 8.75 mg lozenge, 2 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +33590011000036105 Adriamycin 200 mg/100 mL injection solution, 100 mL vial 64204 33328011000036100 Adriamycin 200 mg/100 mL injection solution, 100 mL vial 33089011000036100 Adriamycin 200 mg/100 mL injection solution, 100 mL vial 3524011000036107 Adriamycin 3524011000036107 Adriamycin 33809011000036103 doxorubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 33680011000036101 doxorubicin hydrochloride 200 mg/100 mL injection, vial 21638011000036100 doxorubicin +1079171000168100 Carvedilol (Auro) 3.125 mg film-coated tablet, 30, bottle 174798 737741000168100 Carvedilol (Auro) 3.125 mg film-coated tablet, 30 737731000168109 Carvedilol (Auro) 3.125 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +69443011000036108 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 48519 67243011000036102 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 65572011000036103 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71793011000036100 sodium chloride 0.9% (4.5 g/500 mL) injection, 18 x 500 mL bags 70188011000036105 sodium chloride 0.9% (4.5 g/500 mL) injection, bag 21308011000036103 sodium chloride +852401000168108 Entecavir (Sandoz) 1 mg film-coated tablet, 30, bottle 227416 851921000168101 Entecavir (Sandoz) 1 mg film-coated tablet, 30 851911000168108 Entecavir (Sandoz) 1 mg film-coated tablet 851901000168105 Entecavir (Sandoz) 851901000168105 Entecavir (Sandoz) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +856651000168108 Entrip 10 mg film-coated tablet, 1000, bottle 232153 856641000168106 Entrip 10 mg film-coated tablet, 1000 855901000168108 Entrip 10 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +34661011000036108 Fluconazole (DBL) 50 mg hard capsule, 28, strip pack 125200 11619011000036102 Fluconazole (DBL) 50 mg hard capsule, 28 5208011000036105 Fluconazole (DBL) 50 mg hard capsule 4135011000036100 Fluconazole (DBL) 4135011000036100 Fluconazole (DBL) 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +891291000168104 Capecitabine (Sandoz) 150 mg film-coated tablet, 30, bottle 201799 891281000168102 Capecitabine (Sandoz) 150 mg film-coated tablet, 30 650881000168106 Capecitabine (Sandoz) 150 mg film-coated tablet 650871000168108 Capecitabine (Sandoz) 650871000168108 Capecitabine (Sandoz) 667671000168100 capecitabine 150 mg tablet, 30 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1105151000168105 Midazolam (AN) 5 mg/5 mL injection solution, 5 mL ampoule 207247 1105141000168108 Midazolam (AN) 5 mg/5 mL injection solution, 5 mL ampoule 1105131000168104 Midazolam (AN) 5 mg/5 mL injection solution, 5 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 664171000168103 midazolam 5 mg/5 mL injection, 5 mL ampoule 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +803421000168100 Abilify ODT 20 mg orally disintegrating tablet, 90, blister pack 128903 803411000168107 Abilify ODT 20 mg orally disintegrating tablet, 90 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803401000168109 aripiprazole 20 mg orally disintegrating tablet, 90 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +929461000168105 Deptran 75 mg film-coated tablet, 10, blister pack 42359 929451000168108 Deptran 75 mg film-coated tablet, 10 929431000168102 Deptran 75 mg film-coated tablet 4412011000036104 Deptran 4412011000036104 Deptran 929441000168106 doxepin 75 mg tablet, 10 929421000168100 doxepin 75 mg tablet 21583011000036105 doxepin +166021000036102 Peg-Intron Clearclick Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204812 164211000036109 Peg-Intron Clearclick Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162601000036102 Peg-Intron Clearclick Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46861000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +166021000036102 Peg-Intron Clearclick Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204812 164211000036109 Peg-Intron Clearclick Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46861000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +86131011000036104 Levetiracetam (Apo) 250 mg tablet, 60, bottle 156322 85711011000036104 Levetiracetam (Apo) 250 mg tablet, 60 85346011000036103 Levetiracetam (Apo) 250 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +60276011000036100 Panadol Caplet 500 mg film-coated tablet, 12, blister pack 13590 56235011000036102 Panadol Caplet 500 mg film-coated tablet, 12 53849011000036103 Panadol Caplet 500 mg film-coated tablet 29141000168108 Panadol Caplet 29141000168108 Panadol Caplet 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +59747011000036105 MCT Procal powder for oral liquid, 25 x 16 g sachets 55628011000036106 MCT Procal powder for oral liquid, 25 x 16 g sachets 133831000168101 MCT Procal powder for oral liquid, 16 g sachet 53496011000036107 MCT Procal 53496011000036107 MCT Procal 63080011000036102 triglycerides medium chain formula powder for oral liquid, 25 x 16 g sachets 133701000168101 triglycerides medium chain formula powder for oral liquid, 16 g sachet 50781011000036105 triglycerides medium chain formula +60544011000036100 Panadeine Caplet uncoated tablet, 24, blister pack 152840 56502011000036107 Panadeine Caplet uncoated tablet, 24 53943011000036106 Panadeine Caplet uncoated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +24811000036108 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 18 x 500 mL bags 19434 22921000036100 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 18 x 500 mL bags 20151000036109 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 500 mL bag 46101000168101 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) 46101000168101 Heparin Sodium 1000 IU and Sodium Chloride 0.9% (Baxter) 38764011000036100 heparin sodium 1000 units/500 mL + sodium chloride 0.9% (4.5 g/500 mL) injection, 18 x 500 mL bags 37982011000036105 heparin sodium 1000 units/500 mL + sodium chloride 0.9% (4.5 g/500 mL) injection, bag 858621000168104 heparin + sodium chloride +685291000168108 Paramat 1 g/100 mL injection solution, 10 x 100 mL vials 172316 685281000168105 Paramat 1 g/100 mL injection solution, 10 x 100 mL vials 685271000168107 Paramat 1 g/100 mL injection solution, 100 mL vial 685261000168101 Paramat 685261000168101 Paramat 164061000036104 paracetamol 1 g/100 mL injection, 10 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +931462011000036109 Aspro Protect 100 mg enteric tablet, 100, blister pack 151084 930641011000036103 Aspro Protect 100 mg enteric tablet, 100 929986011000036103 Aspro Protect 100 mg enteric tablet 46331000168105 Aspro Protect 46331000168105 Aspro Protect 75611000036106 aspirin 100 mg enteric tablet, 100 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +994251000168102 Amisulpride (Apo) 50 mg tablet, 100, blister pack 178900 994241000168104 Amisulpride (Apo) 50 mg tablet, 100 994191000168104 Amisulpride (Apo) 50 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 924157011000036105 amisulpride 50 mg tablet, 100 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +11841000036104 Anastrozole (Sandoz) 1 mg film-coated tablet, 30, blister pack 142746 6481000036100 Anastrozole (Sandoz) 1 mg film-coated tablet, 30 3151000036107 Anastrozole (Sandoz) 1 mg film-coated tablet 741000036108 Anastrozole (Sandoz) 741000036108 Anastrozole (Sandoz) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +18371000036108 Glucobete 500 mg film-coated tablet, 100, bottle 180445 16951000036101 Glucobete 500 mg film-coated tablet, 100 15551000036101 Glucobete 500 mg film-coated tablet 15181000036104 Glucobete 15181000036104 Glucobete 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +17767011000036103 Diltahexal CD 240 mg modified release capsule, 30, bottle 131300 11919011000036101 Diltahexal CD 240 mg modified release capsule, 30 5120011000036102 Diltahexal CD 240 mg modified release capsule 26391000168107 Diltahexal CD 26391000168107 Diltahexal CD 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +929676011000036109 Vexazone 45 mg uncoated tablet, 50, blister pack 164343 929512011000036109 Vexazone 45 mg uncoated tablet, 50 929404011000036109 Vexazone 45 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929260011000036104 pioglitazone 45 mg tablet, 50 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +1036751000168102 Atorvastatin (RBX) 10 mg film-coated tablet, 28, bottle 173508 1036741000168104 Atorvastatin (RBX) 10 mg film-coated tablet, 28 1036691000168101 Atorvastatin (RBX) 10 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890061000168107 atorvastatin 10 mg tablet, 28 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +37473011000036106 Fortum 1 g powder for injection, 5 vials 12508 36741011000036104 Fortum 1 g powder for injection, 5 vials 36061011000036105 Fortum 1 g powder for injection, vial 36003011000036105 Fortum 36003011000036105 Fortum 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +1059801000168100 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 60, blister pack 234468 1059791000168101 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 60 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930601000168104 rosuvastatin 5 mg tablet, 60 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +68734011000036104 QV Skin Lotion, 1 L, bottle 10630 66525011000036109 QV Skin Lotion, 1 L 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71257011000036107 glycerol 5% + white soft paraffin 5% lotion, 1 L 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +925811000168108 Zorac 0.05% gel, 30 g, tube 59521 925801000168105 Zorac 0.05% gel, 30 g 925721000168107 Zorac 0.05% gel 39675011000036100 Zorac 39675011000036100 Zorac 925791000168109 tazarotene 0.05% gel, 30 g 925711000168100 tazarotene 0.05% gel 44886011000036105 tazarotene +60302011000036102 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 24, blister pack 137681 56261011000036107 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 24 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63273011000036107 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 24 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +745101000168106 Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5, carton 156976 745091000168101 Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5 745071000168102 Aquacel Ag (403771) 2 cm x 45 cm ribbon 54731000168103 Aquacel Ag (403771) 54731000168103 Aquacel Ag (403771) 745081000168104 dressing hydrofibre with silver 2 cm x 45 cm ribbon, 5 745061000168108 dressing hydrofibre with silver 2 cm x 45 cm ribbon 171041000036105 dressing hydrofibre with silver +131781000036101 Candesartan Cilexetil HCT 16/12.5 (GH) uncoated tablet, 30, blister pack 204580 128751000036100 Candesartan Cilexetil HCT 16/12.5 (GH) uncoated tablet, 30 125231000036108 Candesartan Cilexetil HCT 16/12.5 (GH) uncoated tablet 36251000168105 Candesartan Cilexetil HCT 16/12.5 (GH) 36251000168105 Candesartan Cilexetil HCT 16/12.5 (GH) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1070631000168100 Zinnat 250 mg film-coated tablet, 2, strip pack 44092 763531000168101 Zinnat 250 mg film-coated tablet, 2 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 763521000168104 cefuroxime 250 mg tablet, 2 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +931368011000036104 Cetirizine Hydrochloride (Chemmart) 10 mg film-coated tablet, 30, blister pack 134694 930607011000036103 Cetirizine Hydrochloride (Chemmart) 10 mg film-coated tablet, 30 929968011000036101 Cetirizine Hydrochloride (Chemmart) 10 mg film-coated tablet 929895011000036101 Cetirizine Hydrochloride (Chemmart) 929895011000036101 Cetirizine Hydrochloride (Chemmart) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +933214181000036100 Seralin 50 mg film-coated tablet, 14, blister pack 160770 933203401000036103 Seralin 50 mg film-coated tablet, 14 933195811000036100 Seralin 50 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 929237011000036106 sertraline 50 mg tablet, 14 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +942391000168100 Glucomet-1000 1 g film-coated tablet, 30, blister pack 147410 942381000168103 Glucomet-1000 1 g film-coated tablet, 30 942351000168105 Glucomet-1000 1 g film-coated tablet 942341000168108 Glucomet-1000 942341000168108 Glucomet-1000 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +18161011000036105 Sprycel 70 mg film-coated tablet, 60, blister pack 125562 11807011000036102 Sprycel 70 mg film-coated tablet, 60 4516011000036105 Sprycel 70 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 26777011000036107 dasatinib 70 mg tablet, 60 22164011000036100 dasatinib 70 mg tablet 21627011000036104 dasatinib +19037011000036101 Pharmorubicin 10 mg/5 mL injection solution, 5 mL vial 40098 12342011000036107 Pharmorubicin 10 mg/5 mL injection solution, 5 mL vial 5406011000036105 Pharmorubicin 10 mg/5 mL injection solution, 5 mL vial 24651000168101 Pharmorubicin 24651000168101 Pharmorubicin 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +61178011000036106 Panadeine Caplet film-coated tablet, 24, blister pack 75184 57121011000036102 Panadeine Caplet film-coated tablet, 24 54205011000036101 Panadeine Caplet film-coated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +44652011000036106 Ceftazidime (Sandoz) 2 g powder for injection, 1 vial 90916 42104011000036104 Ceftazidime (Sandoz) 2 g powder for injection, 1 vial 40353011000036106 Ceftazidime (Sandoz) 2 g powder for injection, 2 g vial 39747011000036102 Ceftazidime (Sandoz) 39747011000036102 Ceftazidime (Sandoz) 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +60227011000036103 Strepfen Intensive honey and lemon 8.75 mg lozenge, 8, blister pack 133376 56186011000036102 Strepfen Intensive honey and lemon 8.75 mg lozenge, 8 53828011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63912011000036107 flurbiprofen 8.75 mg lozenge, 8 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +17966011000036109 Epilim EC 200 mg enteric tablet, 100, blister pack 15369 12086011000036104 Epilim EC 200 mg enteric tablet, 100 4827011000036100 Epilim EC 200 mg enteric tablet 43831000168105 Epilim EC 43831000168105 Epilim EC 27139011000036107 valproate sodium 200 mg enteric tablet, 100 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +753691000168108 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet, 1000, bottle 218253 753681000168105 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet, 1000 753641000168100 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet 753631000168109 Olmesartan/Amlodipine 40/10 (Apo) 753631000168109 Olmesartan/Amlodipine 40/10 (Apo) 753671000168107 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 1000 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +925251011000036106 Sumatriptan (Apo) 50 mg film-coated tablet, 4, blister pack 160188 924788011000036105 Sumatriptan (Apo) 50 mg film-coated tablet, 4 924484011000036109 Sumatriptan (Apo) 50 mg film-coated tablet 5701000168101 Sumatriptan (Apo) 5701000168101 Sumatriptan (Apo) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +44393011000036102 Somac 40 mg enteric tablet, 5, bottle 69791 41853011000036100 Somac 40 mg enteric tablet, 5 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +803561000168106 Abilify ODT 15 mg orally disintegrating tablet, 10, blister pack 128898 803551000168109 Abilify ODT 15 mg orally disintegrating tablet, 10 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803541000168107 aripiprazole 15 mg orally disintegrating tablet, 10 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +18829011000036107 Kaluril 5 mg uncoated tablet, 50, blister pack 17677 12143011000036109 Kaluril 5 mg uncoated tablet, 50 5116011000036107 Kaluril 5 mg uncoated tablet 2945011000036109 Kaluril 2945011000036109 Kaluril 26945011000036108 amiloride hydrochloride dihydrate 5 mg tablet, 50 22320011000036105 amiloride hydrochloride dihydrate 5 mg tablet 21385011000036108 amiloride +920809011000036101 Vinorelbine (DBL) 10 mg/mL concentrated injection, 1 mL vial 97647 920488011000036100 Vinorelbine (DBL) 10 mg/mL concentrated injection, 1 mL vial 920219011000036105 Vinorelbine (DBL) 10 mg/mL concentrated injection, vial 920115011000036105 Vinorelbine (DBL) 920115011000036105 Vinorelbine (DBL) 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +835071000168101 Montelukast (AN) 10 mg film-coated tablet, 28, blister pack 184828 835061000168107 Montelukast (AN) 10 mg film-coated tablet, 28 835011000168109 Montelukast (AN) 10 mg film-coated tablet 655871000168102 Montelukast (AN) 655871000168102 Montelukast (AN) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +907971000168106 Celecoxib (Ascent) 200 mg capsule, 10, blister pack 204617 907961000168100 Celecoxib (Ascent) 200 mg capsule, 10 907951000168102 Celecoxib (Ascent) 200 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +987741000168103 Oncovin 1 mg powder for injection, 1 vial 94225 987731000168107 Oncovin 1 mg powder for injection, 1 vial 944551000168106 Oncovin (vincristine sulfate 1 mg) powder for injection, vial 944211000168108 Oncovin 944211000168108 Oncovin 987721000168109 vincristine sulfate 1 mg injection, 1 vial 944541000168109 vincristine sulfate 1 mg injection, vial 21749011000036104 vincristine +19628011000036107 Rani-2 150 mg film-coated tablet, 60, blister pack 59090 12897011000036101 Rani-2 150 mg film-coated tablet, 60 6187011000036106 Rani-2 150 mg film-coated tablet 32194011000036102 Rani-2 32194011000036102 Rani-2 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +17801011000036108 Onsetron 8 mg/4 mL injection solution, 4 mL ampoule 124505 11765011000036105 Onsetron 8 mg/4 mL injection solution, 4 mL ampoule 5547011000036106 Onsetron 8 mg/4 mL injection solution, 4 mL ampoule 7751000168109 Onsetron 7751000168109 Onsetron 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +19071011000036106 Clofen 10 mg uncoated tablet, 100, bottle 42146 12379011000036101 Clofen 10 mg uncoated tablet, 100 4728011000036102 Clofen 10 mg uncoated tablet 3955011000036100 Clofen 3955011000036100 Clofen 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +56711000036108 Oxytocin (Aspen) 10 units/mL injection solution, 5 x 1 mL ampoules 164131 53161000036102 Oxytocin (Aspen) 10 units/mL injection solution, 5 x 1 mL ampoules 48781000036102 Oxytocin (Aspen) 10 units/mL injection solution, ampoule 48221000036107 Oxytocin (Aspen) 48221000036107 Oxytocin (Aspen) 38686011000036102 oxytocin 10 units/mL injection, 5 x 1 mL ampoules 37925011000036105 oxytocin 10 units/mL injection, ampoule 37765011000036106 oxytocin +770871000168101 Emulsifying Ointment BP (David Craig) ointment, 100 g, jar 770861000168107 Emulsifying Ointment BP (David Craig) ointment, 100 g 770821000168102 Emulsifying Ointment BP (David Craig) ointment 770811000168109 Emulsifying Ointment BP (David Craig) 770811000168109 Emulsifying Ointment BP (David Craig) 770851000168105 white soft paraffin + emulsifying wax + liquid paraffin ointment, 100 g 86915011000036107 white soft paraffin + emulsifying wax + liquid paraffin ointment 77445011000036103 white soft paraffin + emulsifying wax + liquid paraffin +989271000168109 Terbinafine (Blooms The Chemist) 1% cream, 30 g, tube 257333 989261000168103 Terbinafine (Blooms The Chemist) 1% cream, 30 g 989231000168106 Terbinafine (Blooms The Chemist) 1% cream 989221000168108 Terbinafine (Blooms The Chemist) 989221000168108 Terbinafine (Blooms The Chemist) 932349011000036101 terbinafine hydrochloride 1% cream, 30 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +60878011000036105 Aspirin (Amcal) 100 mg uncoated tablet, 30, blister pack 59728 56832011000036103 Aspirin (Amcal) 100 mg uncoated tablet, 30 54093011000036105 Aspirin (Amcal) 100 mg uncoated tablet 53388011000036103 Aspirin (Amcal) 53388011000036103 Aspirin (Amcal) 63600011000036106 aspirin 100 mg tablet, 30 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +84324011000036100 Pantoprazole (Terry White Chemists) 40 mg enteric tablet, 30, blister pack 156333 84017011000036103 Pantoprazole (Terry White Chemists) 40 mg enteric tablet, 30 83646011000036104 Pantoprazole (Terry White Chemists) 40 mg enteric tablet 83559011000036104 Pantoprazole (Terry White Chemists) 83559011000036104 Pantoprazole (Terry White Chemists) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +977011000168106 Pregabalin (Apotex) 100 mg hard capsule, 20, blister pack 267555 977001000168108 Pregabalin (Apotex) 100 mg hard capsule, 20 976971000168102 Pregabalin (Apotex) 100 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 903511000168101 pregabalin 100 mg capsule, 20 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +46041000036105 Temozolomide (Orion) 140 mg hard capsule, 5, bottle 179870 43311000036100 Temozolomide (Orion) 140 mg hard capsule, 5 40931000036101 Temozolomide (Orion) 140 mg hard capsule 40411000036104 Temozolomide (Orion) 40411000036104 Temozolomide (Orion) 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +69702011000036100 Imflac Anti-Inflammatory Pain Relief 1% gel, 60 g, tube 91047 67501011000036101 Imflac Anti-Inflammatory Pain Relief 1% gel, 60 g 65684011000036105 Imflac Anti-Inflammatory Pain Relief 1% gel 15971000168106 Imflac Anti-Inflammatory Pain Relief 15971000168106 Imflac Anti-Inflammatory Pain Relief 72016011000036109 diclofenac sodium 1% gel, 60 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +926806011000036102 Fluvoxamine Maleate (GA) 100 mg film-coated tablet, 30, blister pack 168718 926202011000036109 Fluvoxamine Maleate (GA) 100 mg film-coated tablet, 30 925672011000036100 Fluvoxamine Maleate (GA) 100 mg film-coated tablet 925579011000036102 Fluvoxamine Maleate (GA) 925579011000036102 Fluvoxamine Maleate (GA) 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +11721000036104 Neocate Advance Vanilla powder for oral liquid, 400 g, can 6311000036103 Neocate Advance Vanilla powder for oral liquid, 400 g 15041000036107 Neocate Advance Vanilla powder for oral liquid 26901000168102 Neocate Advance 26901000168102 Neocate Advance 51426011000036109 amino acid synthetic formula powder for oral liquid, 400 g 50943011000036105 amino acid synthetic formula powder for oral liquid 50729011000036102 amino acid synthetic formula +920791000168102 Cilopam 40 mg film-coated tablet, 7, blister pack 158866 919921000168103 Cilopam 40 mg film-coated tablet, 7 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202931000036106 citalopram 40 mg tablet, 7 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +18211000036108 Vascalace 5 mg uncoated tablet, 30, bottle 175237 16781000036105 Vascalace 5 mg uncoated tablet, 30 15361000036106 Vascalace 5 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +60259011000036106 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 6 sachets 134660 56218011000036104 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 6 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63359011000036104 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 6 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +60501011000036106 Xyzal 5 mg film-coated tablet, 10, blister pack 150854 56459011000036102 Xyzal 5 mg film-coated tablet, 10 53929011000036106 Xyzal 5 mg film-coated tablet 53093011000036108 Xyzal 53093011000036108 Xyzal 63373011000036104 levocetirizine dihydrochloride 5 mg tablet, 10 61931011000036101 levocetirizine dihydrochloride 5 mg tablet 61816011000036108 levocetirizine +959851000168107 Lacosamide (Apo) 150 mg film-coated tablet, 14, blister pack 230197 959841000168105 Lacosamide (Apo) 150 mg film-coated tablet, 14 959831000168101 Lacosamide (Apo) 150 mg film-coated tablet 959641000168109 Lacosamide (Apo) 959641000168109 Lacosamide (Apo) 84630011000036103 lacosamide 150 mg tablet, 14 84430011000036100 lacosamide 150 mg tablet 84408011000036109 lacosamide +1041231000168108 Atorvastatin (Pfizer) 10 mg film-coated tablet, 90, bottle 182940 1041221000168105 Atorvastatin (Pfizer) 10 mg film-coated tablet, 90 2041000036104 Atorvastatin (Pfizer) 10 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 1041211000168103 atorvastatin 10 mg tablet, 90 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +903631000168105 Brillior 225 mg hard capsule, 20, blister pack 224344 903621000168107 Brillior 225 mg hard capsule, 20 903581000168107 Brillior 225 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 903611000168100 pregabalin 225 mg capsule, 20 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +1079261000168100 Carvedilol (Auro) 25 mg film-coated tablet, 60, bottle 174799 1079251000168102 Carvedilol (Auro) 25 mg film-coated tablet, 60 737701000168102 Carvedilol (Auro) 25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +86851011000036106 Silicare (Orion) 10% cream, 50 g, tube 86730011000036103 Silicare (Orion) 10% cream, 50 g 86605011000036109 Silicare (Orion) 10% cream 86595011000036104 Silicare (Orion) 86595011000036104 Silicare (Orion) 87000011000036107 dimeticone-350 10% cream, 50 g 86913011000036106 dimeticone-350 10% cream 69855011000036101 dimeticone-350 +60499011000036103 Veganin uncoated tablet, 50, blister pack 15074 56457011000036109 Veganin uncoated tablet, 50 53928011000036103 Veganin uncoated tablet 53242011000036103 Veganin 53242011000036103 Veganin 63371011000036100 aspirin 325 mg + codeine phosphate hemihydrate 8 mg tablet, 50 61930011000036108 aspirin 325 mg + codeine phosphate hemihydrate 8 mg tablet 21831011000036102 aspirin + codeine +44770011000036104 Cefazolin (Sandoz) 2 g powder for injection, 1 bottle 97685 42215011000036100 Cefazolin (Sandoz) 2 g powder for injection, 1 bottle 40394011000036103 Cefazolin (Sandoz) 2 g powder for injection, 2 g bottle 3337011000036101 Cefazolin (Sandoz) 3337011000036101 Cefazolin (Sandoz) 46975011000036107 cefazolin 2 g injection, 1 bottle 45367011000036102 cefazolin 2 g injection, bottle 21621011000036107 cefazolin +86885011000036104 Favic 500 mg film-coated tablet, 30, blister pack 159619 86767011000036105 Favic 500 mg film-coated tablet, 30 86640011000036106 Favic 500 mg film-coated tablet 86581011000036100 Favic 86581011000036100 Favic 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +993611000168102 Lyrica 225 mg hard capsule, 20, blister pack 99535 993541000168104 Lyrica 225 mg hard capsule, 20 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 903611000168100 pregabalin 225 mg capsule, 20 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +1062771000168102 Strong Pain Relief Plus (Amcal) uncoated tablet, 40, blister pack 224164 1062761000168108 Strong Pain Relief Plus (Amcal) uncoated tablet, 40 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +920881000168109 Cilopam 40 mg film-coated tablet, 56, blister pack 158866 919981000168104 Cilopam 40 mg film-coated tablet, 56 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202911000036102 citalopram 40 mg tablet, 56 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +50255011000036108 XP Maxamum powder for oral liquid, 500 g, can 49499011000036105 XP Maxamum powder for oral liquid, 500 g 48625011000036100 XP Maxamum powder for oral liquid 7961000168109 XP Maxamum 7961000168109 XP Maxamum 51452011000036109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 500 g 50960011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +73317011000036104 Nplate 250 microgram powder for injection, 1 vial 147187 73115011000036102 Nplate 250 microgram powder for injection, 1 vial 72942011000036106 Nplate 250 microgram powder for injection, 250 microgram vial 72909011000036107 Nplate 72909011000036107 Nplate 73512011000036104 romiplostim 250 microgram injection, 1 vial 73376011000036106 romiplostim 250 microgram injection, vial 73352011000036105 romiplostim +912241000168105 Caspofungin (MYX) 50 mg powder for injection, 1 vial 266512 912231000168101 Caspofungin (MYX) 50 mg powder for injection, 1 vial 912221000168104 Caspofungin (MYX) 50 mg powder for injection, 50 mg vial 912181000168107 Caspofungin (MYX) 912181000168107 Caspofungin (MYX) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +693861000168104 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 50, blister pack 215358 693851000168101 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 50 693821000168109 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +837901000168102 Airzate Accuhaler 500/50 powder for inhalation, 60 actuations, blister pack 208190 837891000168101 Airzate Accuhaler 500/50 powder for inhalation, 60 actuations 837851000168106 Airzate Accuhaler 500/50 powder for inhalation, actuation 837841000168109 Airzate Accuhaler 500/50 837841000168109 Airzate Accuhaler 500/50 27673011000036105 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 23010011000036109 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +1058431000168103 Levetiracetam (Auro) 250 mg film-coated tablet, 60, bottle 182830 713841000168108 Levetiracetam (Auro) 250 mg film-coated tablet, 60 713831000168104 Levetiracetam (Auro) 250 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +920732011000036104 Memantine (Apo) 10 mg film-coated tablet, 30, bottle 159576 920420011000036107 Memantine (Apo) 10 mg film-coated tablet, 30 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38840011000036102 memantine hydrochloride 10 mg tablet, 30 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +989841000168103 Cold Sore (Blooms The Chemist) 5% cream, 10 g, tube 150427 989831000168107 Cold Sore (Blooms The Chemist) 5% cream, 10 g 989801000168100 Cold Sore (Blooms The Chemist) 5% cream 989791000168101 Cold Sore (Blooms The Chemist) 989791000168101 Cold Sore (Blooms The Chemist) 46470011000036101 aciclovir 5% cream, 10 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +887041000168108 Praluent 150 mg/mL injection solution, 1 mL injection device 238299 887031000168104 Praluent 150 mg/mL injection solution, 1 mL injection device 887011000168109 Praluent 150 mg/mL injection solution, injection device 886871000168105 Praluent 886871000168105 Praluent 887021000168102 alirocumab 150 mg/mL injection, 1 mL injection device 887001000168106 alirocumab 150 mg/mL injection, injection device 886881000168108 alirocumab +79038011000036106 Bispro 5 mg film-coated tablet, 30, blister pack 130180 78794011000036106 Bispro 5 mg film-coated tablet, 30 78626011000036101 Bispro 5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79209011000036102 bisoprolol fumarate 5 mg tablet, 30 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +904111000168106 Amoxapin 250 mg hard capsule, 20, blister pack 198131 904101000168108 Amoxapin 250 mg hard capsule, 20 904091000168103 Amoxapin 250 mg hard capsule 904081000168101 Amoxapin 904081000168101 Amoxapin 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +44635011000036102 Levitra 10 mg film-coated tablet, 6, blister pack 90499 42088011000036102 Levitra 10 mg film-coated tablet, 6 40349011000036106 Levitra 10 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46855011000036101 vardenafil 10 mg tablet, 6 45333011000036101 vardenafil 10 mg tablet 44856011000036100 vardenafil +895541000168106 Apomine 100 mg/20 mL injection solution, 10 x 20 mL vials 260149 895531000168102 Apomine 100 mg/20 mL injection solution, 10 x 20 mL vials 895451000168107 Apomine 100 mg/20 mL injection solution, 20 mL vial 30841000168109 Apomine 30841000168109 Apomine 895521000168100 apomorphine hydrochloride hemihydrate 100 mg/20 mL injection, 10 x 20 mL vials 895441000168105 apomorphine hydrochloride hemihydrate 100 mg/20 mL injection, vial 21732011000036105 apomorphine +157621000036101 Daivobet 50/500 gel, 60 g, bottle 161936 157581000036101 Daivobet 50/500 gel, 60 g 933220011000036109 Daivobet 50/500 gel 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 157591000036104 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% gel, 60 g 933220021000036102 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% gel 44974011000036100 calcipotriol + betamethasone dipropionate +928892011000036106 Trandolapril (Pharmacor) 2 mg capsule, 28, blister pack 145241 928254011000036103 Trandolapril (Pharmacor) 2 mg capsule, 28 927907011000036108 Trandolapril (Pharmacor) 2 mg capsule 927809011000036107 Trandolapril (Pharmacor) 927809011000036107 Trandolapril (Pharmacor) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +61287011000036100 Sleepwell (Soul Pattinson) 25 mg tablet, 20, blister pack 78552 57223011000036104 Sleepwell (Soul Pattinson) 25 mg tablet, 20 54244011000036109 Sleepwell (Soul Pattinson) 25 mg tablet 53300011000036101 Sleepwell (Soul Pattinson) 53300011000036101 Sleepwell (Soul Pattinson) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +68826011000036107 Bosisto's Eucalyptus Rub cream, 250 g, tube 10909 66573011000036107 Bosisto's Eucalyptus Rub cream, 250 g 65505011000036103 Bosisto's Eucalyptus Rub cream 65060011000036108 Bosisto's Eucalyptus Rub 65060011000036108 Bosisto's Eucalyptus Rub 71296011000036103 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream, 250 g 69935011000036105 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +751681000168106 Metformin XR (Apo) 500 mg modified release tablet, 500, bottle 197407 751671000168108 Metformin XR (Apo) 500 mg modified release tablet, 500 106901000036107 Metformin XR (Apo) 500 mg modified release tablet 50561000168107 Metformin XR (Apo) 50561000168107 Metformin XR (Apo) 751661000168102 metformin hydrochloride 500 mg modified release tablet, 500 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +37701000036108 Respaz 2 mg film-coated tablet, 20, blister pack 165540 33981000036108 Respaz 2 mg film-coated tablet, 20 32511000036100 Respaz 2 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 81623011000036103 risperidone 2 mg tablet, 20 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +21091011000036106 Amohexal 250 mg hard capsule, 20, blister pack 97591 14234011000036101 Amohexal 250 mg hard capsule, 20 7520011000036107 Amohexal 250 mg hard capsule 3095011000036101 Amohexal 3095011000036101 Amohexal 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +91351000036107 Gemcitabine (AS) 200 mg powder for injection, 1 vial 177644 89911000036109 Gemcitabine (AS) 200 mg powder for injection, 1 vial 88491000036104 Gemcitabine (AS) 200 mg powder for injection, 200 mg vial 87721000036108 Gemcitabine (AS) 87721000036108 Gemcitabine (AS) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +43684011000036105 Fluconazole (Hexal) 150 mg hard capsule, 28, blister pack 104290 41136011000036103 Fluconazole (Hexal) 150 mg hard capsule, 28 39858011000036101 Fluconazole (Hexal) 150 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 46113011000036100 fluconazole 150 mg capsule, 28 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +17848011000036109 Cogentin 2 mg/2 mL injection solution, 5 x 2 mL ampoules 10452 11302011000036102 Cogentin 2 mg/2 mL injection solution, 5 x 2 mL ampoules 4894011000036102 Cogentin 2 mg/2 mL injection solution, 2 mL ampoule 3022011000036100 Cogentin 3022011000036100 Cogentin 26597011000036102 benzatropine mesilate 2 mg/2 mL injection, 5 x 2 mL ampoules 22005011000036106 benzatropine mesilate 2 mg/2 mL injection, ampoule 21334011000036102 benzatropine +18489011000036106 Lamotrigine (DP) 100 mg tablet, 56, blister pack 101358 11195011000036104 Lamotrigine (DP) 100 mg tablet, 56 5008011000036100 Lamotrigine (DP) 100 mg tablet 3413011000036108 Lamotrigine (DP) 3413011000036108 Lamotrigine (DP) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +97291000036100 Phenobarbitone Elixir (Orion) 15 mg/5 mL oral liquid solution, 100 mL, bottle 21187 96901000036103 Phenobarbitone Elixir (Orion) 15 mg/5 mL oral liquid solution, 100 mL 96441000036108 Phenobarbitone Elixir (Orion) 15 mg/5 mL oral liquid solution, 5 mL 28881000168103 Phenobarbitone Elixir (Orion) 28881000168103 Phenobarbitone Elixir (Orion) 38779011000036107 phenobarbital (phenobarbitone) 15 mg/5 mL oral liquid, 100 mL 37993011000036104 phenobarbital (phenobarbitone) 15 mg/5 mL oral liquid 21578011000036105 phenobarbital (phenobarbitone) +18846011000036101 Buscopan 20 mg/mL injection solution, 5 x 1 mL ampoules 17916 12158011000036102 Buscopan 20 mg/mL injection solution, 5 x 1 mL ampoules 5941011000036105 Buscopan 20 mg/mL injection solution, ampoule 2401000168103 Buscopan 2401000168103 Buscopan 26954011000036107 hyoscine butylbromide 20 mg/mL injection, 5 x 1 mL ampoules 22329011000036104 hyoscine butylbromide 20 mg/mL injection, ampoule 21580011000036102 hyoscine butylbromide +91391000036103 Oxaliplatin (AS) 100 mg/20 mL concentrated injection, 20 mL vial 177992 89951000036108 Oxaliplatin (AS) 100 mg/20 mL concentrated injection, 20 mL vial 88311000036104 Oxaliplatin (AS) 100 mg/20 mL concentrated injection, 20 mL vial 87701000036103 Oxaliplatin (AS) 87701000036103 Oxaliplatin (AS) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +34694011000036108 Dilasig 3.125 mg film-coated tablet, 30, blister pack 141459 34278011000036109 Dilasig 3.125 mg film-coated tablet, 30 34006011000036106 Dilasig 3.125 mg film-coated tablet 33959011000036100 Dilasig 33959011000036100 Dilasig 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +700027391000036106 Clarihexal 500 mg film-coated tablet, 14, blister pack 211000168109 Clarihexal 500 mg film-coated tablet, 14 923047011000036100 Clarihexal 500 mg film-coated tablet 3421011000036100 Clarihexal 3421011000036100 Clarihexal 46431011000036106 clarithromycin 500 mg tablet, 14 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +924991000168107 Androgel 1% (50 mg/5 g) gel, 2 x 5 g sachets 96130 924981000168109 Androgel 1% (50 mg/5 g) gel, 2 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 924971000168106 testosterone 1% (50 mg/5 g) gel, 2 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +946141000168106 Glimepiride (Sanofi) 3 mg uncoated tablet, 100, blister pack 142392 946131000168102 Glimepiride (Sanofi) 3 mg uncoated tablet, 100 946011000168108 Glimepiride (Sanofi) 3 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 946121000168100 glimepiride 3 mg tablet, 100 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +1048861000168107 Zaldiar film-coated tablet, 100, blister pack 179677 1048851000168105 Zaldiar film-coated tablet, 100 1027821000168104 Zaldiar film-coated tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 1048841000168108 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 100 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +74787011000036102 Roxithromycin (Terry White Chemists) 300 mg film-coated tablet, 5, blister pack 133753 74274011000036107 Roxithromycin (Terry White Chemists) 300 mg film-coated tablet, 5 73822011000036108 Roxithromycin (Terry White Chemists) 300 mg film-coated tablet 73772011000036106 Roxithromycin (Terry White Chemists) 73772011000036106 Roxithromycin (Terry White Chemists) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +674371000168105 MSUD Amino5 containing 5 g of protein equivalent powder for oral liquid, 30 x 6 g sachets 674361000168104 MSUD Amino5 containing 5 g of protein equivalent powder for oral liquid, 30 x 6 g sachets 674341000168103 MSUD Amino5 containing 5 g of protein equivalent powder for oral liquid, 6 g sachet 674311000168102 MSUD Amino5 674311000168102 MSUD Amino5 674351000168101 amino acid formula without valine, leucine and isoleucine containing 5 g of protein equivalent powder for oral liquid, 30 x 6 g sachets 674331000168107 amino acid formula without valine, leucine and isoleucine containing 5 g of protein equivalent powder for oral liquid, 6 g sachet 674321000168109 amino acid formula without valine, leucine and isoleucine +43964011000036108 Miostat 0.01% (150 microgram/1.5 mL) intraocular injection, 1.5 mL vial 40624 41456011000036103 Miostat 0.01% (150 microgram/1.5 mL) intraocular injection, 1.5 mL vial 39984011000036109 Miostat 0.01% (150 microgram/1.5 mL) intraocular injection, 1.5 mL vial 39621011000036101 Miostat 39621011000036101 Miostat 46305011000036109 carbachol 0.01% (150 microgram/1.5 mL) intraocular injection, 1.5 mL vial 45065011000036108 carbachol 0.01% (150 microgram/1.5 mL) intraocular injection, vial 37774011000036101 carbachol +13781000036104 Letrozole (Generic Health) 2.5 mg film-coated tablet, 30, blister pack 176278 8891000036101 Letrozole (Generic Health) 2.5 mg film-coated tablet, 30 1461000036102 Letrozole (Generic Health) 2.5 mg film-coated tablet 1121000036100 Letrozole (Generic Health) 1121000036100 Letrozole (Generic Health) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +20982011000036100 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL syringes 199412 14128011000036107 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL syringes 7406011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 28164011000036107 adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL syringes 23474011000036101 adalimumab 40 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +20982011000036100 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL syringes 95780 14128011000036107 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL syringes 7406011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 28164011000036107 adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL syringes 23474011000036101 adalimumab 40 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +913111000168106 Amlodipine (Alkem) 5 mg tablet, 30, blister pack 215708 913101000168108 Amlodipine (Alkem) 5 mg tablet, 30 913091000168103 Amlodipine (Alkem) 5 mg tablet 913041000168106 Amlodipine (Alkem) 913041000168106 Amlodipine (Alkem) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +118751000036108 Zipzoc (66000748) 80 cm (stockings) bandage, 10, carton 118391000036100 Zipzoc (66000748) 80 cm (stockings) bandage, 10 118201000036101 Zipzoc (66000748) 80 cm (stockings) bandage 40211000168105 Zipzoc (66000748) 40211000168105 Zipzoc (66000748) 933205481000036105 bandage zinc paste 80 cm (stockings) bandage, 10 50846011000036106 bandage zinc paste 80 cm (stockings) bandage 50700011000036104 bandage zinc paste +808221000168105 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 30, bottle 184808 808211000168103 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 30 808171000168100 Perindopril Arginine (Apo) 2.5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +97331000036108 Influvac 2013 injection suspension, 1 x 0.5 mL syringe 81465 96941000036100 Influvac 2013 injection suspension, 1 x 0.5 mL syringe 96421000036100 Influvac 2013 injection suspension, 0.5 mL syringe 35001000168107 Influvac 2013 35001000168107 Influvac 2013 96721000036105 influenza trivalent adult vaccine 2013 injection, 1 x 0.5 mL syringe 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +926686011000036106 Lisoril 10 mg uncoated tablet, 30, blister pack 106496 926075011000036100 Lisoril 10 mg uncoated tablet, 30 925621011000036107 Lisoril 10 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +812231000168108 Iptam 100 mg film-coated tablet, 5, blister pack 124087 812221000168105 Iptam 100 mg film-coated tablet, 5 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 812211000168103 sumatriptan 100 mg tablet, 5 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +37350011000036105 Suxamethonium Chloride (AstraZeneca) 100 mg/2 mL injection solution, 50 x 2 mL ampoules 11988 36682011000036105 Suxamethonium Chloride (AstraZeneca) 100 mg/2 mL injection solution, 50 x 2 mL ampoules 36108011000036108 Suxamethonium Chloride (AstraZeneca) 100 mg/2 mL injection solution, 2 mL ampoule 35959011000036109 Suxamethonium Chloride (AstraZeneca) 35959011000036109 Suxamethonium Chloride (AstraZeneca) 38595011000036100 suxamethonium chloride 100 mg/2 mL injection, 50 x 2 mL ampoules 37866011000036102 suxamethonium chloride 100 mg/2 mL injection, ampoule 37806011000036101 suxamethonium +1054251000168101 Jurnista 4 mg modified release tablet, 7, blister pack 155995 1054241000168103 Jurnista 4 mg modified release tablet, 7 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054231000168107 hydromorphone hydrochloride 4 mg modified release tablet, 7 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +69494011000036103 Dulcolax 5 mg enteric tablet, 10, blister pack 50792 67294011000036107 Dulcolax 5 mg enteric tablet, 10 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 71842011000036103 bisacodyl 5 mg enteric tablet, 10 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +60960011000036108 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 24, blister pack 62804 56903011000036106 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 24 54116011000036109 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet 53485011000036104 Extra Strength Pain Relief (Pharmacist) 53485011000036104 Extra Strength Pain Relief (Pharmacist) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18332011000036101 Voltaren 25 mg enteric tablet, 50, bottle 11072 11416011000036108 Voltaren 25 mg enteric tablet, 50 5367011000036101 Voltaren 25 mg enteric tablet 28551000168108 Voltaren 28551000168108 Voltaren 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +69579011000036102 Paraderm 5% cream, 50 g, tube 63331 67379011000036107 Paraderm 5% cream, 50 g 65636011000036106 Paraderm 5% cream 65046011000036100 Paraderm 65046011000036100 Paraderm 71917011000036103 bufexamac 5% cream, 50 g 70246011000036100 bufexamac 5% cream 69831011000036102 bufexamac +97241000036106 Intanza 2013 injection suspension, 1 x 0.1 mL syringe 150130 96771000036109 Intanza 2013 injection suspension, 1 x 0.1 mL syringe 96391000036107 Intanza 2013 injection suspension, 0.1 mL syringe 20081000168108 Intanza 2013 20081000168108 Intanza 2013 96781000036106 influenza trivalent adult vaccine 2013 injection, 1 x 0.1 mL syringe 96401000036105 influenza trivalent adult vaccine 2013 injection, 0.1 mL syringe 97351000036100 influenza trivalent vaccine 2013 +800731000168104 Actonate 35 mg film-coated tablet, 16, blister pack 163748 800721000168102 Actonate 35 mg film-coated tablet, 16 800601000168100 Actonate 35 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 929234011000036100 risedronate sodium 35 mg tablet, 16 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +972041000168107 Pregabalin (Apo) 75 mg hard capsule, 100, bottle 193247 972031000168103 Pregabalin (Apo) 75 mg hard capsule, 100 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 972021000168101 pregabalin 75 mg capsule, 100 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +79697011000036108 Grisovin 500 mg tablet, 28, blister pack 157849 79513011000036109 Grisovin 500 mg tablet, 28 79391011000036106 Grisovin 500 mg tablet 4329011000036109 Grisovin 4329011000036109 Grisovin 26769011000036108 griseofulvin 500 mg tablet, 28 22156011000036100 griseofulvin 500 mg tablet 21755011000036103 griseofulvin +774781000168100 Dimetapp Allergic Rhinitis oral liquid solution, 200 mL, bottle 231997 774771000168103 Dimetapp Allergic Rhinitis oral liquid solution, 200 mL 774601000168102 Dimetapp Allergic Rhinitis oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63602011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +946181000168101 Glimepiride (Sanofi) 4 mg uncoated tablet, 10, blister pack 142393 946171000168104 Glimepiride (Sanofi) 4 mg uncoated tablet, 10 946151000168108 Glimepiride (Sanofi) 4 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 946161000168105 glimepiride 4 mg tablet, 10 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +925260011000036106 Sumatriptan (Terry White Chemists) 100 mg film-coated tablet, 2, blister pack 160197 924797011000036105 Sumatriptan (Terry White Chemists) 100 mg film-coated tablet, 2 924492011000036104 Sumatriptan (Terry White Chemists) 100 mg film-coated tablet 924373011000036109 Sumatriptan (Terry White Chemists) 924373011000036109 Sumatriptan (Terry White Chemists) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +19581000036105 Fluvax 2012 injection suspension, 10 x 0.5 mL syringes 117397 19031000036104 Fluvax 2012 injection suspension, 10 x 0.5 mL syringes 18561000036108 Fluvax 2012 injection suspension, 0.5 mL syringe 27841000168107 Fluvax 2012 27841000168107 Fluvax 2012 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +1070401000168105 Cold and Flu (Non-Drowsy) (Pharmacist) uncoated tablet, 24, blister pack 54827 1070391000168108 Cold and Flu (Non-Drowsy) (Pharmacist) uncoated tablet, 24 1070381000168105 Cold and Flu (Non-Drowsy) (Pharmacist) uncoated tablet 1070371000168107 Cold and Flu (Non-Drowsy) (Pharmacist) 1070371000168107 Cold and Flu (Non-Drowsy) (Pharmacist) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +18165011000036107 Silic 15 cream, 500 g, jar 10667 11339011000036102 Silic 15 cream, 500 g 5332011000036107 Silic 15 cream 21301000168108 Silic 15 21301000168108 Silic 15 26614011000036104 dimeticone-350 15% + glycerol 2% cream, 500 g 22021011000036104 dimeticone-350 15% + glycerol 2% cream 32614011000036102 dimeticone-350 + glycerol +74311000036102 Mirtazapine (Pfizer) 30 mg orally disintegrating tablet, 30, blister pack 183408 71891000036102 Mirtazapine (Pfizer) 30 mg orally disintegrating tablet, 30 69521000036108 Mirtazapine (Pfizer) 30 mg orally disintegrating tablet 69301000036108 Mirtazapine (Pfizer) 69301000036108 Mirtazapine (Pfizer) 47691000036107 mirtazapine 30 mg orally disintegrating tablet, 30 47561000036104 mirtazapine 30 mg orally disintegrating tablet 21463011000036102 mirtazapine +39368011000036109 Tarceva 150 mg film-coated tablet, 30, blister pack 114721 39258011000036106 Tarceva 150 mg film-coated tablet, 30 39196011000036103 Tarceva 150 mg film-coated tablet 39177011000036109 Tarceva 39177011000036109 Tarceva 39461011000036105 erlotinib 150 mg tablet, 30 39433011000036101 erlotinib 150 mg tablet 39427011000036107 erlotinib +69010011000036103 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 4 sachets 138697 66812011000036107 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 4 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71442011000036109 paracetamol 1 g powder for oral liquid, 4 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1054571000168108 Oxycodone (Sandoz) 20 mg modified release tablet, 60, blister pack 153615 785881000168101 Oxycodone (Sandoz) 20 mg modified release tablet, 60 676371000168104 Oxycodone (Sandoz) 20 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +920723011000036109 Pantoprazole (Generic Health) 20 mg enteric tablet, 10, blister pack 155114 920410011000036100 Pantoprazole (Generic Health) 20 mg enteric tablet, 10 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 920855011000036108 pantoprazole 20 mg enteric tablet, 10 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +927821000168109 Emthexate 50 mg/2 mL injection solution, 25 x 2 mL vials 42766 927811000168102 Emthexate 50 mg/2 mL injection solution, 25 x 2 mL vials 927791000168101 Emthexate 50 mg/2 mL injection solution, 2 mL vial 926861000168102 Emthexate 926861000168102 Emthexate 927801000168100 methotrexate 50 mg/2 mL injection, 25 x 2 mL vials 22291011000036103 methotrexate 50 mg/2 mL injection, vial 21342011000036105 methotrexate +1042691000168101 Aspecillin V 125 mg/5 mL oral liquid suspension, 100 mL, bottle 45854 1042681000168104 Aspecillin V 125 mg/5 mL oral liquid suspension, 100 mL 1042671000168102 Aspecillin V 125 mg/5 mL oral liquid suspension, 5 mL 1042661000168108 Aspecillin V 1042661000168108 Aspecillin V 27211011000036101 phenoxymethylpenicillin 125 mg/5 mL oral liquid, 100 mL 22571011000036102 phenoxymethylpenicillin 125 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +151951000036109 Nicorette Invisipatch 15 mg/16 hours patch, 28, sachet 162576 150041000036103 Nicorette Invisipatch 15 mg/16 hours patch, 28 148601000036107 Nicorette Invisipatch 15 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 46761000036108 nicotine 15 mg/16 hours patch, 28 22501011000036106 nicotine 15 mg/16 hours patch 21432011000036100 nicotine +972121000168100 Doxorubicin (Actavis) 10 mg powder for injection, 1 vial 147451 972111000168107 Doxorubicin (Actavis) 10 mg powder for injection, 1 vial 972091000168104 Doxorubicin (Actavis) 10 mg powder for injection, 10 mg vial 972071000168100 Doxorubicin (Actavis) 972071000168100 Doxorubicin (Actavis) 972101000168109 doxorubicin hydrochloride 10 mg injection, 1 vial 972081000168102 doxorubicin hydrochloride 10 mg injection, vial 21638011000036100 doxorubicin +1121921000168109 Afluria Quad 2018 injection suspension, 1 x 0.5 mL syringe 262428 1121911000168102 Afluria Quad 2018 injection suspension, 1 x 0.5 mL syringe 1121891000168104 Afluria Quad 2018 injection suspension, 0.5 mL syringe 1121841000168107 Afluria Quad 2018 1121841000168107 Afluria Quad 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +1116541000168108 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 30, blister pack 158167 1116531000168104 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 30 1116341000168100 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 922591011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 30 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +18973011000036101 Progout 100 mg uncoated tablet, 100, bottle 27969 12281011000036103 Progout 100 mg uncoated tablet, 100 5743011000036103 Progout 100 mg uncoated tablet 4173011000036104 Progout 4173011000036104 Progout 27040011000036105 allopurinol 100 mg tablet, 100 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +37569011000036107 Naloxone Hydrochloride (DBL) 400 microgram/mL injection solution, 5 x 1 mL ampoules 16282 36836011000036108 Naloxone Hydrochloride (DBL) 400 microgram/mL injection solution, 5 x 1 mL ampoules 36087011000036100 Naloxone Hydrochloride (DBL) 400 microgram/mL injection solution, ampoule 35904011000036101 Naloxone Hydrochloride (DBL) 35904011000036101 Naloxone Hydrochloride (DBL) 38725011000036106 naloxone hydrochloride 400 microgram/mL injection, 5 x 1 mL ampoules 37955011000036106 naloxone hydrochloride 400 microgram/mL injection, ampoule 33627011000036107 naloxone +760751000168108 Emisima 100 mg powder for injection, 1 vial 217064 760741000168106 Emisima 100 mg powder for injection, 1 vial 760731000168102 Emisima 100 mg powder for injection, 100 mg vial 760721000168100 Emisima 760721000168100 Emisima 27724011000036101 infliximab 100 mg injection, 1 vial 23059011000036109 infliximab 100 mg injection, vial 21926011000036101 infliximab +18362011000036105 Pulmicort Turbuhaler 200 microgram/actuation powder for inhalation, 200 actuations, dry powder inhaler 10065 11153011000036106 Pulmicort Turbuhaler 200 microgram/actuation powder for inhalation, 200 actuations 4518011000036109 Pulmicort Turbuhaler 200 microgram/actuation powder for inhalation, actuation 53431000168105 Pulmicort Turbuhaler 53431000168105 Pulmicort Turbuhaler 26541011000036104 budesonide 200 microgram/actuation powder for inhalation, 200 actuations 21950011000036100 budesonide 200 microgram/actuation powder for inhalation, actuation 21307011000036104 budesonide +50676011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet, 60, blister pack 153324 49700011000036108 Paroxetine (Generic Health) 20 mg film-coated tablet, 60 48828011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet 48331011000036109 Paroxetine (Generic Health) 48331011000036109 Paroxetine (Generic Health) 51566011000036107 paroxetine 20 mg tablet, 60 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +987921000168106 Orcantas 15/6.14 film-coated tablet, 60, blister pack 273237 987911000168104 Orcantas 15/6.14 film-coated tablet, 60 987881000168104 Orcantas 15/6.14 film-coated tablet 987871000168102 Orcantas 15/6.14 987871000168102 Orcantas 15/6.14 984231000168107 trifluridine 15 mg + tipiracil 6.14 mg tablet, 60 984161000168105 trifluridine 15 mg + tipiracil 6.14 mg tablet 984151000168108 trifluridine + tipiracil +18430011000036108 Coloxyl 50 mg sugar coated tablet, 100, bottle 13447 11986011000036108 Coloxyl 50 mg sugar coated tablet, 100 5636011000036100 Coloxyl 50 mg sugar coated tablet 3026011000036101 Coloxyl 3026011000036101 Coloxyl 26830011000036106 docusate sodium 50 mg tablet, 100 22212011000036105 docusate sodium 50 mg tablet 21872011000036106 docusate +81195011000036108 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 20 g cream), 1 pack, composite pack 81770 80697011000036105 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 20 g cream), 1 pack 80241011000036106 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 81749011000036107 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [20 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +81195011000036108 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 20 g cream), 1 pack, composite pack 81770 80697011000036105 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) (1 x 500 mg pessary, 1 x 20 g cream), 1 pack 80242011000036100 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 500 mg compressed pessary 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 81749011000036107 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [20 g], 1 pack 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +69746011000036108 Ibuprofen Blue Tabsule (Herron) 200 mg film-coated tablet, 12, blister pack 98574 67545011000036106 Ibuprofen Blue Tabsule (Herron) 200 mg film-coated tablet, 12 65696011000036101 Ibuprofen Blue Tabsule (Herron) 200 mg film-coated tablet 8771000168104 Ibuprofen Blue Tabsule (Herron) 8771000168104 Ibuprofen Blue Tabsule (Herron) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1013861000168109 Valsartan (Apotex) 40 mg film-coated tablet, 56, blister pack 185857 1013851000168107 Valsartan (Apotex) 40 mg film-coated tablet, 56 1013691000168101 Valsartan (Apotex) 40 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63857011000036108 valsartan 40 mg tablet, 56 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +37448011000036100 Halcion 125 microgram uncoated tablet, 10, bottle 12304 36720011000036109 Halcion 125 microgram uncoated tablet, 10 36190011000036108 Halcion 125 microgram uncoated tablet 35989011000036101 Halcion 35989011000036101 Halcion 38630011000036108 triazolam 125 microgram tablet, 10 37890011000036102 triazolam 125 microgram tablet 37768011000036100 triazolam +18944011000036100 Myocrisin 10 mg/0.5 mL injection solution, 10 x 0.5 mL ampoules 27518 12252011000036102 Myocrisin 10 mg/0.5 mL injection solution, 10 x 0.5 mL ampoules 5426011000036100 Myocrisin 10 mg/0.5 mL injection solution, 0.5 mL ampoule 4337011000036104 Myocrisin 4337011000036104 Myocrisin 27016011000036103 sodium aurothiomalate 10 mg/0.5 mL injection, 10 x 0.5 mL ampoules 22389011000036106 sodium aurothiomalate 10 mg/0.5 mL injection, ampoule 21573011000036100 sodium aurothiomalate +61261011000036105 Panadol Gel Tab 500 mg gelatin coated tablet, 4, blister pack 77188 57197011000036102 Panadol Gel Tab 500 mg gelatin coated tablet, 4 54232011000036104 Panadol Gel Tab 500 mg gelatin coated tablet 28731000168106 Panadol Gel Tab 28731000168106 Panadol Gel Tab 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +979341000168103 Paracetamol (CA) 500 mg uncoated tablet, 16, blister pack 197677 979331000168107 Paracetamol (CA) 500 mg uncoated tablet, 16 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 63793011000036107 paracetamol 500 mg tablet, 16 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +97201000036108 Agrippal 2013 injection suspension, 1 x 0.5 mL syringe 144670 96751000036104 Agrippal 2013 injection suspension, 1 x 0.5 mL syringe 96411000036107 Agrippal 2013 injection suspension, 0.5 mL syringe 3501000168105 Agrippal 2013 3501000168105 Agrippal 2013 96721000036105 influenza trivalent adult vaccine 2013 injection, 1 x 0.5 mL syringe 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +61179011000036103 Panadeine Caplet film-coated tablet, 48, blister pack 75184 57122011000036108 Panadeine Caplet film-coated tablet, 48 54205011000036101 Panadeine Caplet film-coated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +50591011000036108 Clarithromycin (Chemmart) 500 mg film-coated tablet, 42, blister pack 134860 49623011000036104 Clarithromycin (Chemmart) 500 mg film-coated tablet, 42 48790011000036107 Clarithromycin (Chemmart) 500 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 51516011000036106 clarithromycin 500 mg tablet, 42 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +920654011000036103 Fluconazole (Sandoz) 100 mg/50 mL injection solution, 50 mL vial 104301 920354011000036106 Fluconazole (Sandoz) 100 mg/50 mL injection solution, 50 mL vial 920124011000036103 Fluconazole (Sandoz) 100 mg/50 mL injection solution, 50 mL vial 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 27177011000036102 fluconazole 100 mg/50 mL injection, 50 mL vial 22539011000036100 fluconazole 100 mg/50 mL injection, vial 21365011000036105 fluconazole +50637011000036101 Teveten Plus film-coated tablet, 14, blister pack 143172 49663011000036107 Teveten Plus film-coated tablet, 14 7151011000036109 Teveten Plus film-coated tablet 29551000168101 Teveten Plus 29551000168101 Teveten Plus 51546011000036101 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet, 14 23305011000036103 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet 21527011000036108 eprosartan + hydrochlorothiazide +69141011000036106 Nicotinell Classic 4 mg chewing gum, 192, blister pack 152894 66941011000036103 Nicotinell Classic 4 mg chewing gum, 192 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71518011000036107 nicotine 4 mg gum, 192 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +740621000168102 Metoprolol (RBX) 100 mg film-coated tablet, 60, blister pack 192783 740611000168109 Metoprolol (RBX) 100 mg film-coated tablet, 60 740581000168102 Metoprolol (RBX) 100 mg film-coated tablet 740521000168101 Metoprolol (RBX) 740521000168101 Metoprolol (RBX) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +1020051000168104 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 2, blister pack 190327 1020041000168101 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 2 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82546011000036103 clopidogrel 75 mg + aspirin 100 mg tablet, 2 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +931661011000036101 Twynsta 40/5 mg multilayer tablet, 28, blister pack 166265 930821011000036109 Twynsta 40/5 mg multilayer tablet, 28 930059011000036105 Twynsta 40/5 mg multilayer tablet 33031000168101 Twynsta 40/5 mg 33031000168101 Twynsta 40/5 mg 932434011000036105 telmisartan 40 mg + amlodipine 5 mg tablet, 28 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +662491000168100 Carvedilol (AN) 12.5 mg film-coated tablet, 60, bottle 174784 662481000168103 Carvedilol (AN) 12.5 mg film-coated tablet, 60 662471000168101 Carvedilol (AN) 12.5 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +68670011000036102 Bosisto's Eucalyptus Rub cream, 250 g, jar 10919 66573011000036107 Bosisto's Eucalyptus Rub cream, 250 g 65505011000036103 Bosisto's Eucalyptus Rub cream 65060011000036108 Bosisto's Eucalyptus Rub 65060011000036108 Bosisto's Eucalyptus Rub 71296011000036103 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream, 250 g 69935011000036105 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +933351000168101 Centevo 150/37.5/200 mg film-coated tablet, 150, bottle 238857 933341000168103 Centevo 150/37.5/200 mg film-coated tablet, 150 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933331000168107 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 150 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +926683011000036100 Lisoril 10 mg uncoated tablet, 84, blister pack 106496 926077011000036105 Lisoril 10 mg uncoated tablet, 84 925621011000036107 Lisoril 10 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 86422011000036106 lisinopril 10 mg tablet, 84 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +18005011000036102 Efudix 5% cream, 20 g, tube 13721 11999011000036100 Efudix 5% cream, 20 g 5402011000036106 Efudix 5% cream 3732011000036104 Efudix 3732011000036104 Efudix 26838011000036108 fluorouracil 5% cream, 20 g 22219011000036100 fluorouracil 5% cream 21481011000036100 fluorouracil +19541000036101 Pravastatin Sodium (Actavis) 40 mg uncoated tablet, 30, blister pack 156362 19101000036107 Pravastatin Sodium (Actavis) 40 mg uncoated tablet, 30 18591000036101 Pravastatin Sodium (Actavis) 40 mg uncoated tablet 18491000036102 Pravastatin Sodium (Actavis) 18491000036102 Pravastatin Sodium (Actavis) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +37363011000036106 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 156919 36613011000036100 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 629711000168103 Rifadin (inert substance) diluent, 10 mL ampoule 3470011000036108 Rifadin 3470011000036108 Rifadin 38533011000036108 rifampicin 600 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 629701000168101 inert substance diluent, 10 mL ampoule 21220011000036103 inert substance +37363011000036106 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 10115 36613011000036100 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 629711000168103 Rifadin (inert substance) diluent, 10 mL ampoule 3470011000036108 Rifadin 3470011000036108 Rifadin 38533011000036108 rifampicin 600 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 629701000168101 inert substance diluent, 10 mL ampoule 21220011000036103 inert substance +37363011000036106 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 156919 36613011000036100 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 36017011000036103 Rifadin (rifampicin 600 mg) powder for injection, 600 mg vial 3470011000036108 Rifadin 3470011000036108 Rifadin 38533011000036108 rifampicin 600 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 37819011000036107 rifampicin 600 mg injection, vial 21532011000036109 rifampicin +37363011000036106 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 10115 36613011000036100 Rifadin (1 x 600 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 36017011000036103 Rifadin (rifampicin 600 mg) powder for injection, 600 mg vial 3470011000036108 Rifadin 3470011000036108 Rifadin 38533011000036108 rifampicin 600 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 37819011000036107 rifampicin 600 mg injection, vial 21532011000036109 rifampicin +904451000168104 Kyprolis 60 mg powder for injection, 1 vial 283228 904441000168101 Kyprolis 60 mg powder for injection, 1 vial 904421000168107 Kyprolis 60 mg powder for injection, 60 mg vial 904391000168100 Kyprolis 904391000168100 Kyprolis 904431000168105 carfilzomib 60 mg injection, 1 vial 904411000168100 carfilzomib 60 mg injection, vial 904401000168103 carfilzomib +160631000036105 Nesina Met 12.5 mg/500 mg film-coated tablet, 56, blister pack 202308 159531000036108 Nesina Met 12.5 mg/500 mg film-coated tablet, 56 158191000036106 Nesina Met 12.5 mg/500 mg film-coated tablet 31121000168104 Nesina Met 12.5 mg/500 mg 31121000168104 Nesina Met 12.5 mg/500 mg 159541000036103 alogliptin 12.5 mg + metformin hydrochloride 500 mg tablet, 56 158201000036108 alogliptin 12.5 mg + metformin hydrochloride 500 mg tablet 160701000036106 alogliptin + metformin +903401000168100 Brillior 150 mg hard capsule, 14, blister pack 224342 903391000168102 Brillior 150 mg hard capsule, 14 903381000168100 Brillior 150 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +20828011000036100 Pegasys-RBV (4 x 180 microgram syringes, 140 x 200 mg tablets), 1 pack, composite pack 91843 13991011000036105 Pegasys-RBV (4 x 180 microgram syringes, 140 x 200 mg tablets), 1 pack 7272011000036103 Pegasys 180 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28056011000036104 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [140], 1 pack 23371011000036109 peginterferon alfa-2a 180 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20828011000036100 Pegasys-RBV (4 x 180 microgram syringes, 140 x 200 mg tablets), 1 pack, composite pack 91843 13991011000036105 Pegasys-RBV (4 x 180 microgram syringes, 140 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28056011000036104 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [140], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +121731000036103 Acris Once-a-Month 150 mg film-coated tablet, 1, bottle 195336 120811000036107 Acris Once-a-Month 150 mg film-coated tablet, 1 119301000036103 Acris Once-a-Month 150 mg film-coated tablet 19281000168101 Acris Once-a-Month 19281000168101 Acris Once-a-Month 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +1107941000168101 Midazolam (Intas) 5 mg/mL injection solution, 10 x 1 mL ampoules 207233 1107931000168105 Midazolam (Intas) 5 mg/mL injection solution, 10 x 1 mL ampoules 1107841000168105 Midazolam (Intas) 5 mg/mL injection solution, ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +740601000168106 Metoprolol (RBX) 100 mg film-coated tablet, 10, blister pack 192783 740591000168104 Metoprolol (RBX) 100 mg film-coated tablet, 10 740581000168102 Metoprolol (RBX) 100 mg film-coated tablet 740521000168101 Metoprolol (RBX) 740521000168101 Metoprolol (RBX) 670701000168108 metoprolol tartrate 100 mg tablet, 10 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +61042011000036103 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 30, blister pack 67363 56985011000036106 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 30 54147011000036101 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet 53575011000036100 Period Pain Relief (Pharmacist Formula) 53575011000036100 Period Pain Relief (Pharmacist Formula) 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +20285011000036109 Sotab 160 mg uncoated tablet, 60, blister pack 75461 13494011000036105 Sotab 160 mg uncoated tablet, 60 6776011000036106 Sotab 160 mg uncoated tablet 3976011000036109 Sotab 3976011000036109 Sotab 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +773821000168107 Calamine (David Craig) lotion, 100 mL, pump pack 14291 773811000168100 Calamine (David Craig) lotion, 100 mL 773791000168104 Calamine (David Craig) lotion 773371000168104 Calamine (David Craig) 773371000168104 Calamine (David Craig) 773801000168103 calamine 15% + zinc oxide 5% + phenol 0.4% lotion, 100 mL 773781000168102 calamine 15% + zinc oxide 5% + phenol 0.4% lotion 773771000168100 calamine + zinc oxide + phenol +77161011000036105 Carbosorb XS oral liquid suspension, 250 mL, bottle 106469 76565011000036100 Carbosorb XS oral liquid suspension, 250 mL 76036011000036102 Carbosorb XS oral liquid suspension 75961011000036106 Carbosorb XS 75961011000036106 Carbosorb XS 78122011000036101 activated charcoal 200 mg/mL + sorbitol 400 mg/mL oral liquid, 250 mL 77500011000036109 activated charcoal 200 mg/mL + sorbitol 400 mg/mL oral liquid 77465011000036106 activated charcoal + sorbitol +19428011000036105 Akamin 100 mg hard capsule, 11, blister pack 53640 12712011000036104 Akamin 100 mg hard capsule, 11 5521011000036101 Akamin 100 mg hard capsule 3121011000036101 Akamin 3121011000036101 Akamin 27304011000036108 minocycline 100 mg capsule, 11 22657011000036101 minocycline 100 mg capsule 21488011000036109 minocycline +783461000168106 Palexia IR 100 mg film-coated tablet, 5, blister pack 165318 783451000168109 Palexia IR 100 mg film-coated tablet, 5 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783441000168107 tapentadol 100 mg tablet, 5 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +929101000168104 Isordil 40 mg uncoated tablet, 20, bottle 40250 929051000168104 Isordil 40 mg uncoated tablet, 20 929031000168105 Isordil 40 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 929041000168101 isosorbide dinitrate 40 mg tablet, 20 929021000168107 isosorbide dinitrate 40 mg tablet 21865011000036107 isosorbide dinitrate +69592011000036102 Thrombotrol-VF (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 66736 67391011000036101 Thrombotrol-VF (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack 65642011000036106 Thrombotrol-VF (antithrombin III 1000 units) powder for injection, 1000 units vial 61071000168109 Thrombotrol-VF 61071000168109 Thrombotrol-VF 71926011000036109 antithrombin III 1000 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 70250011000036101 antithrombin III 1000 units injection, vial 69873011000036104 antithrombin III +69592011000036102 Thrombotrol-VF (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 66736 67391011000036101 Thrombotrol-VF (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack 646721000168100 Thrombotrol-VF (inert substance) diluent, 20 mL vial 61071000168109 Thrombotrol-VF 61071000168109 Thrombotrol-VF 71926011000036109 antithrombin III 1000 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 639231000168104 inert substance diluent, 20 mL vial 21220011000036103 inert substance +60806011000036100 Cold and Flu (Terry White Chemists) uncoated tablet, 24, blister pack 56874 56762011000036105 Cold and Flu (Terry White Chemists) uncoated tablet, 24 54069011000036106 Cold and Flu (Terry White Chemists) uncoated tablet 53323011000036102 Cold and Flu (Terry White Chemists) 53323011000036102 Cold and Flu (Terry White Chemists) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +18862011000036108 Celestone-M 0.02% ointment, 100 g, tube 172170 12173011000036105 Celestone-M 0.02% ointment, 100 g 5431011000036107 Celestone-M 0.02% ointment 43331000168102 Celestone-M 43331000168102 Celestone-M 27675011000036106 betamethasone (as valerate) 0.02% ointment, 100 g 23012011000036108 betamethasone (as valerate) 0.02% ointment 21366011000036103 betamethasone valerate +18862011000036108 Celestone-M 0.02% ointment, 100 g, tube 18779 12173011000036105 Celestone-M 0.02% ointment, 100 g 5431011000036107 Celestone-M 0.02% ointment 43331000168102 Celestone-M 43331000168102 Celestone-M 27675011000036106 betamethasone (as valerate) 0.02% ointment, 100 g 23012011000036108 betamethasone (as valerate) 0.02% ointment 21366011000036103 betamethasone valerate +649561000168105 Memantine (Apo) 20 mg film-coated tablet, 28, blister pack 207782 649551000168108 Memantine (Apo) 20 mg film-coated tablet, 28 649541000168106 Memantine (Apo) 20 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 83496011000036105 memantine hydrochloride 20 mg tablet, 28 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +21034011000036103 Glucovance 250/1.25 film-coated tablet, 90, blister pack 96725 14179011000036100 Glucovance 250/1.25 film-coated tablet, 90 7460011000036105 Glucovance 250/1.25 film-coated tablet 57351000168104 Glucovance 250/1.25 57351000168104 Glucovance 250/1.25 28195011000036108 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet, 90 23507011000036105 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet 21813011000036107 metformin + glibenclamide +59756011000036109 Auralgan ear drops solution, 15 mL, bottle 10460 55694011000036108 Auralgan ear drops solution, 15 mL 53709011000036106 Auralgan ear drops solution 53556011000036105 Auralgan 53556011000036105 Auralgan 63205011000036100 phenazone 5.4% + benzocaine 1.4% ear drops, 15 mL 61886011000036106 phenazone 5.4% + benzocaine 1.4% ear drops 61772011000036101 phenazone + benzocaine +953681000168101 Gabapentin (AN) 400 mg hard capsule, 500, blister pack 263842 953671000168104 Gabapentin (AN) 400 mg hard capsule, 500 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953661000168105 gabapentin 400 mg capsule, 500 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +933214901000036109 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 500, bottle 163566 933204491000036108 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 500 933195541000036102 Pravastatin Sodium (RZ) 40 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932419011000036104 pravastatin sodium 40 mg tablet, 500 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +912061000168102 Cavstat 40 mg film-coated tablet, 60, blister pack 234508 912051000168104 Cavstat 40 mg film-coated tablet, 60 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 912041000168101 rosuvastatin 40 mg tablet, 60 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +44494011000036105 Amikacin (DBL) 1 g/4 mL injection, 5 x 4 mL vials 76002 41949011000036106 Amikacin (DBL) 1 g/4 mL injection, 5 x 4 mL vials 40282011000036104 Amikacin (DBL) 1 g/4 mL injection, 4 mL vial 39646011000036108 Amikacin (DBL) 39646011000036108 Amikacin (DBL) 46733011000036103 amikacin 1 g/4 mL injection, 5 x 4 mL vials 45289011000036104 amikacin 1 g/4 mL injection, vial 37805011000036108 amikacin +50578011000036105 Clarithromycin (GenRx) 250 mg film-coated tablet, 2, blister pack 134853 49611011000036107 Clarithromycin (GenRx) 250 mg film-coated tablet, 2 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +945181000168108 Diltiazem CD (Sanofi) 240 mg modified release capsule, 7, blister pack 139400 945171000168105 Diltiazem CD (Sanofi) 240 mg modified release capsule, 7 945161000168104 Diltiazem CD (Sanofi) 240 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 46640011000036103 diltiazem hydrochloride 240 mg modified release capsule, 7 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +765161000168102 Fraxiparine 9500 anti-Xa units/mL injection solution, 10 x 1 mL syringes 51313 765151000168104 Fraxiparine 9500 anti-Xa units/mL injection solution, 10 x 1 mL syringes 765091000168108 Fraxiparine 9500 anti-Xa units/mL injection solution, syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765141000168101 nadroparin calcium 9500 anti-Xa units/mL injection, 10 x 1 mL syringes 765081000168105 nadroparin calcium 9500 anti-Xa units/mL injection, syringe 765071000168107 nadroparin +146241000036107 Jakavi 15 mg tablet, 56, blister pack 198936 144841000036101 Jakavi 15 mg tablet, 56 143771000036100 Jakavi 15 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 144851000036103 ruxolitinib 15 mg tablet, 56 143781000036103 ruxolitinib 15 mg tablet 146491000036100 ruxolitinib +59877011000036107 Extra Strength Pain Relief (Pharmacist Own) tablet, 100, bottle 116298 55839011000036106 Extra Strength Pain Relief (Pharmacist Own) tablet, 100 53604011000036100 Extra Strength Pain Relief (Pharmacist Own) tablet 53248011000036100 Extra Strength Pain Relief (Pharmacist Own) 53248011000036100 Extra Strength Pain Relief (Pharmacist Own) 63447011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 100 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +44713011000036104 Chirocaine 125 mg/100 mL injection solution, 24 x 100 mL bags 94480 42158011000036104 Chirocaine 125 mg/100 mL injection solution, 24 x 100 mL bags 40371011000036108 Chirocaine 125 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46919011000036100 levobupivacaine 125 mg/100 mL injection, 24 x 100 mL bags 45346011000036106 levobupivacaine 125 mg/100 mL injection, bag 44881011000036100 levobupivacaine +20936011000036105 Tacidine 300 mg capsule, 30, blister pack 94205 14090011000036107 Tacidine 300 mg capsule, 30 7368011000036104 Tacidine 300 mg capsule 4018011000036106 Tacidine 4018011000036106 Tacidine 28208011000036102 nizatidine 300 mg capsule, 30 23520011000036100 nizatidine 300 mg capsule 21421011000036109 nizatidine +92951000036101 Tamiflu 12 mg/mL powder for oral liquid, 75 mL, bottle 94647 92841000036109 Tamiflu 12 mg/mL powder for oral liquid, 75 mL 65694011000036109 Tamiflu 12 mg/mL powder for oral liquid 39602011000036100 Tamiflu 39602011000036100 Tamiflu 92851000036107 oseltamivir 12 mg/mL powder for oral liquid, 75 mL 70284011000036100 oseltamivir 12 mg/mL powder for oral liquid 44916011000036104 oseltamivir +970761000168108 Lypralin 300 mg hard capsule, 14, bottle 235848 969981000168100 Lypralin 300 mg hard capsule, 14 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +937641000168101 Paclitaxin 150 mg/25 mL concentrated injection, 25 mL vial 153508 937631000168105 Paclitaxin 150 mg/25 mL concentrated injection, 25 mL vial 937621000168107 Paclitaxin 150 mg/25 mL concentrated injection, 25 mL vial 937581000168107 Paclitaxin 937581000168107 Paclitaxin 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +662531000168100 Carvedilol (AN) 6.25 mg film-coated tablet, 60, bottle 174794 662511000168105 Carvedilol (AN) 6.25 mg film-coated tablet, 60 662501000168107 Carvedilol (AN) 6.25 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +60172011000036102 Exforge 5/160 film-coated tablet, 7, blister pack 130834 56131011000036101 Exforge 5/160 film-coated tablet, 7 53802011000036104 Exforge 5/160 film-coated tablet 8411000168102 Exforge 5/160 8411000168102 Exforge 5/160 63235011000036106 amlodipine 5 mg + valsartan 160 mg tablet, 7 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +60293011000036102 Dimetapp Daytime/Nightime Liquid Cap (18 x Day Liquid capsules, 6 x Night Liquid capsules), 24, blister pack 137255 56252011000036106 Dimetapp Daytime/Nightime Liquid Cap (18 x Day Liquid capsules, 6 x Night Liquid capsules), 24 53852011000036105 Dimetapp Daytime/Nightime (Day Liquid Capsule) soft capsule 2741000168109 Dimetapp Daytime/Nightime Liquid Cap 2861000168104 Dimetapp Daytime/Nightime (Day Liquid Capsule) 63264011000036103 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule [6], 24 61906011000036103 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61766011000036107 paracetamol + dextromethorphan +60293011000036102 Dimetapp Daytime/Nightime Liquid Cap (18 x Day Liquid capsules, 6 x Night Liquid capsules), 24, blister pack 137255 56252011000036106 Dimetapp Daytime/Nightime Liquid Cap (18 x Day Liquid capsules, 6 x Night Liquid capsules), 24 53853011000036103 Dimetapp Daytime/Nightime (Night Liquid Capsule) soft capsule 2741000168109 Dimetapp Daytime/Nightime Liquid Cap 2981000168102 Dimetapp Daytime/Nightime (Night Liquid Capsule) 63264011000036103 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule [6], 24 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +1025531000168107 Baclofen (Apo) 10 mg tablet, 100, bottle 77577 1025521000168109 Baclofen (Apo) 10 mg tablet, 100 1025511000168102 Baclofen (Apo) 10 mg tablet 1025431000168108 Baclofen (Apo) 1025431000168108 Baclofen (Apo) 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +59841000036107 Famotidine (PS) 20 mg film-coated tablet, 60, blister pack 186280 58951000036108 Famotidine (PS) 20 mg film-coated tablet, 60 58301000036106 Famotidine (PS) 20 mg film-coated tablet 58131000036102 Famotidine (PS) 58131000036102 Famotidine (PS) 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +50372011000036109 Peg (7423) 10 cm x 1.3 m bandage, 1, carton 49510011000036107 Peg (7423) 10 cm x 1.3 m bandage, 1 48509011000036100 Peg (7423) 10 cm x 1.3 m bandage 42131000168109 Peg (7423) 42131000168109 Peg (7423) 51460011000036103 bandage retention cohesive heavy 10 cm x 1.3 m bandage, 1 50967011000036108 bandage retention cohesive heavy 10 cm x 1.3 m bandage 50704011000036109 bandage retention cohesive heavy +20298011000036102 Tamoxifen (GenRx) 20 mg uncoated tablet, 60, blister pack 75590 13507011000036106 Tamoxifen (GenRx) 20 mg uncoated tablet, 60 6789011000036108 Tamoxifen (GenRx) 20 mg uncoated tablet 3691011000036105 Tamoxifen (GenRx) 3691011000036105 Tamoxifen (GenRx) 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +954721000168109 Captopril (WL) 25 mg uncoated tablet, 90, bottle 56652 954711000168102 Captopril (WL) 25 mg uncoated tablet, 90 954701000168100 Captopril (WL) 25 mg uncoated tablet 954581000168102 Captopril (WL) 954581000168102 Captopril (WL) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +50221011000036105 Nexcare Tegaderm Transparent (H1624) 6 cm x 7 cm dressing, 8, carton 49402011000036102 Nexcare Tegaderm Transparent (H1624) 6 cm x 7 cm dressing, 8 48619011000036108 Nexcare Tegaderm Transparent (H1624) 6 cm x 7 cm dressing 50731000168108 Nexcare Tegaderm Transparent (H1624) 50731000168108 Nexcare Tegaderm Transparent (H1624) 51371011000036105 dressing film 6 cm x 7 cm dressing, 8 50893011000036108 dressing film 6 cm x 7 cm dressing 50711011000036108 dressing film +787801000168104 Arizole 30 mg uncoated tablet, 28, blister pack 198196 787791000168100 Arizole 30 mg uncoated tablet, 28 787621000168109 Arizole 30 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787781000168103 aripiprazole 30 mg tablet, 28 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +920561000168102 Cilopam 10 mg film-coated tablet, 56, blister pack 158862 920551000168104 Cilopam 10 mg film-coated tablet, 56 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1094971000168106 Combimol film-coated tablet, 24, blister pack 286841 1094961000168100 Combimol film-coated tablet, 24 1094911000168103 Combimol film-coated tablet 1094861000168107 Combimol 1094861000168107 Combimol 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +73279011000036106 Jurnista 8 mg modified release tablet, 60, blister pack 141508 73077011000036105 Jurnista 8 mg modified release tablet, 60 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73475011000036108 hydromorphone hydrochloride 8 mg modified release tablet, 60 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +933213771000036101 Ciprofloxacin (IPC) 250 mg film-coated tablet, 100, blister pack 153183 933201791000036104 Ciprofloxacin (IPC) 250 mg film-coated tablet, 100 933194811000036101 Ciprofloxacin (IPC) 250 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 932362011000036103 ciprofloxacin 250 mg tablet, 100 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +923788011000036107 Zeldox IM (1 x 20 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack, composite pack 154458 923348011000036100 Zeldox IM (1 x 20 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack 633081000168106 Zeldox IM (inert substance) diluent, 1.2 mL ampoule 16471000168107 Zeldox IM 16471000168107 Zeldox IM 924149011000036101 ziprasidone 20 mg injection [1 vial] (&) inert substance diluent [1.2 mL ampoule], 1 pack 629931000168105 inert substance diluent, 1.2 mL ampoule 21220011000036103 inert substance +923788011000036107 Zeldox IM (1 x 20 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack, composite pack 154458 923348011000036100 Zeldox IM (1 x 20 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack 923023011000036106 Zeldox IM (ziprasidone 20 mg) powder for injection, 20 mg vial 16471000168107 Zeldox IM 16471000168107 Zeldox IM 924149011000036101 ziprasidone 20 mg injection [1 vial] (&) inert substance diluent [1.2 mL ampoule], 1 pack 923966011000036103 ziprasidone 20 mg injection, vial 21267011000036107 ziprasidone +152021000036107 Nicorette Invisipatch 25 mg/16 hours patch, 28, sachet 162578 150131000036107 Nicorette Invisipatch 25 mg/16 hours patch, 28 148581000036102 Nicorette Invisipatch 25 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 150141000036102 nicotine 25 mg/16 hours patch, 28 148591000036100 nicotine 25 mg/16 hours patch 21432011000036100 nicotine +812471000168105 Afonaise 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 201568 812461000168104 Afonaise 50 microgram/actuation nasal spray, 2 x 140 actuations 812411000168102 Afonaise 50 microgram/actuation nasal spray, actuation 812401000168100 Afonaise 812401000168100 Afonaise 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +20782011000036109 Cortic-DS 1% ointment, 50 g, tube 91052 13951011000036101 Cortic-DS 1% ointment, 50 g 7237011000036104 Cortic-DS 1% ointment 16801000168104 Cortic-DS 16801000168104 Cortic-DS 28032011000036104 hydrocortisone acetate 1% ointment, 50 g 23353011000036107 hydrocortisone acetate 1% ointment 21231011000036107 hydrocortisone acetate +43960011000036103 Stieva-A 0.1% cream, 6 g, tube 39838 41452011000036102 Stieva-A 0.1% cream, 6 g 39981011000036106 Stieva-A 0.1% cream 39639011000036100 Stieva-A 39639011000036100 Stieva-A 46301011000036107 tretinoin 0.1% cream, 6 g 45063011000036107 tretinoin 0.1% cream 37794011000036109 tretinoin +851281000168107 Entecavir (Apotex) 1 mg film-coated tablet, 30, blister pack 217583 851271000168109 Entecavir (Apotex) 1 mg film-coated tablet, 30 851261000168103 Entecavir (Apotex) 1 mg film-coated tablet 851191000168102 Entecavir (Apotex) 851191000168102 Entecavir (Apotex) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +656911000168108 Telmisartan (DRLA) 40 mg uncoated tablet, 28, blister pack 197307 656901000168105 Telmisartan (DRLA) 40 mg uncoated tablet, 28 656891000168106 Telmisartan (DRLA) 40 mg uncoated tablet 656831000168107 Telmisartan (DRLA) 656831000168107 Telmisartan (DRLA) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +740441000168106 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet, 10, blister pack 163654 740431000168102 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet, 10 740381000168109 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet 740371000168106 Ondansetron ODT (SZ) 740371000168106 Ondansetron ODT (SZ) 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +1087481000168107 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 10, blister pack 283196 1087471000168109 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 10 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 985891000168108 ibuprofen 400 mg tablet, 10 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +65941000036105 No-Doz Awakeners 100 mg uncoated tablet, 100, bottle 14881 63481000036105 No-Doz Awakeners 100 mg uncoated tablet, 100 65307011000036106 No-Doz Awakeners 100 mg uncoated tablet 24711000168109 No-Doz Awakeners 24711000168109 No-Doz Awakeners 63491000036107 caffeine 100 mg tablet, 100 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +61595011000036104 Nasal Decongestant (Guardian) 60 mg film-coated tablet, 12, blister pack 95782 57517011000036106 Nasal Decongestant (Guardian) 60 mg film-coated tablet, 12 54335011000036101 Nasal Decongestant (Guardian) 60 mg film-coated tablet 53297011000036106 Nasal Decongestant (Guardian) 53297011000036106 Nasal Decongestant (Guardian) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +79075011000036103 Ramipril (Terry White Chemists) 1.25 mg tablet, 30, blister pack 150891 78851011000036102 Ramipril (Terry White Chemists) 1.25 mg tablet, 30 78657011000036104 Ramipril (Terry White Chemists) 1.25 mg tablet 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +790861000168103 Quetiapine XR (AS) 400 mg modified release tablet, 30, blister pack 226819 790851000168100 Quetiapine XR (AS) 400 mg modified release tablet, 30 790781000168103 Quetiapine XR (AS) 400 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 790841000168102 quetiapine 400 mg modified release tablet, 30 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +926666011000036109 Nicorette Classic 4 mg chewing gum, 30, blister pack 12516 926126011000036101 Nicorette Classic 4 mg chewing gum, 30 87067011000036107 Nicorette Classic 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 927323011000036100 nicotine 4 mg gum, 30 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +85067011000036106 Etoposide (Ebewe) 100 mg/5 mL concentrated injection, 5 x 5 mL vials 96641 84931011000036109 Etoposide (Ebewe) 100 mg/5 mL concentrated injection, 5 x 5 mL vials 7456011000036100 Etoposide (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 3594011000036103 Etoposide (Ebewe) 3594011000036103 Etoposide (Ebewe) 85198011000036103 etoposide 100 mg/5 mL injection, 5 x 5 mL vials 23503011000036101 etoposide 100 mg/5 mL injection, vial 21469011000036104 etoposide +1109081000168102 Nicotinell Tropical Fruit 2 mg chewing gum, 96, blister pack 279617 1109071000168100 Nicotinell Tropical Fruit 2 mg chewing gum, 96 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +13461000036101 Venla 150 mg modified release capsule, 28, blister pack 210375 8521000036101 Venla 150 mg modified release capsule, 28 3461000036103 Venla 150 mg modified release capsule 551000036100 Venla 551000036100 Venla 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +13461000036101 Venla 150 mg modified release capsule, 28, blister pack 170471 8521000036101 Venla 150 mg modified release capsule, 28 3461000036103 Venla 150 mg modified release capsule 551000036100 Venla 551000036100 Venla 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +19651011000036102 Neoral 10 mg soft capsule, 60, blister pack 59614 12917011000036109 Neoral 10 mg soft capsule, 60 6207011000036107 Neoral 10 mg soft capsule 4180011000036101 Neoral 4180011000036101 Neoral 27439011000036108 ciclosporin 10 mg capsule, 60 22786011000036101 ciclosporin 10 mg capsule 21379011000036104 ciclosporin +37346011000036106 Indocid 1 mg powder for injection, 3 vials 10482 36628011000036104 Indocid 1 mg powder for injection, 3 vials 36068011000036101 Indocid 1 mg powder for injection, vial 3869011000036100 Indocid 3869011000036100 Indocid 38548011000036104 indometacin 1 mg injection, 3 vials 37828011000036105 indometacin 1 mg injection, vial 21301011000036107 indometacin +954961000168101 Ranitidine (GN) 300 mg film-coated tablet, 30, bottle 148527 933202241000036105 Ranitidine (GN) 300 mg film-coated tablet, 30 933195281000036109 Ranitidine (GN) 300 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +921887011000036101 Exforge HCT 5/160/12.5 film-coated tablet, 14, blister pack 157954 921446011000036103 Exforge HCT 5/160/12.5 film-coated tablet, 14 921015011000036108 Exforge HCT 5/160/12.5 film-coated tablet 14521000168101 Exforge HCT 5/160/12.5 14521000168101 Exforge HCT 5/160/12.5 922574011000036100 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 14 922093011000036109 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +925185011000036102 Sumaccord 50 mg film-coated tablet, 2, blister pack 154819 924722011000036104 Sumaccord 50 mg film-coated tablet, 2 924434011000036102 Sumaccord 50 mg film-coated tablet 924405011000036109 Sumaccord 924405011000036109 Sumaccord 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +20452011000036109 Sporahexal 250 mg hard capsule, 20, blister pack 78112 13655011000036103 Sporahexal 250 mg hard capsule, 20 6938011000036103 Sporahexal 250 mg hard capsule 3832011000036101 Sporahexal 3832011000036101 Sporahexal 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +926908011000036108 Optimark 9.93 g/30 mL injection solution, 30 mL syringe 76658 926302011000036104 Optimark 9.93 g/30 mL injection solution, 30 mL syringe 925746011000036108 Optimark 9.93 g/30 mL injection solution, 30 mL syringe 6001000168105 Optimark 6001000168105 Optimark 927396011000036104 gadoversetamide 9.93 g/30 mL injection, 30 mL syringe 927037011000036108 gadoversetamide 9.93 g/30 mL injection, syringe 926966011000036108 gadoversetamide +925194011000036102 Gabacor 600 mg film-coated tablet, 100, blister pack 156105 924731011000036107 Gabacor 600 mg film-coated tablet, 100 924441011000036104 Gabacor 600 mg film-coated tablet 924388011000036109 Gabacor 924388011000036109 Gabacor 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +82369011000036103 Coplavix 75 mg/100 mg film-coated tablet, 2, blister pack 150443 82158011000036105 Coplavix 75 mg/100 mg film-coated tablet, 2 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82546011000036103 clopidogrel 75 mg + aspirin 100 mg tablet, 2 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1120641000168102 Xque XR 50 mg modified release tablet, 60, blister pack 241752 1120631000168106 Xque XR 50 mg modified release tablet, 60 1120581000168108 Xque XR 50 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +764841000168109 Lozanoc 50 mg hard capsule, 28, bottle 206360 680061000168102 Lozanoc 50 mg hard capsule, 28 680011000168100 Lozanoc 50 mg hard capsule 679991000168108 Lozanoc 679991000168108 Lozanoc 680051000168104 itraconazole 50 mg capsule, 28 680001000168103 itraconazole 50 mg capsule 21903011000036100 itraconazole +829631000168105 Moxicam 7.5 mg hard capsule, 30, blister pack 232584 829621000168107 Moxicam 7.5 mg hard capsule, 30 829611000168100 Moxicam 7.5 mg hard capsule 4414011000036108 Moxicam 4414011000036108 Moxicam 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +146221000036104 Jakavi 20 mg tablet, 56, blister pack 198933 144801000036104 Jakavi 20 mg tablet, 56 143751000036105 Jakavi 20 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 144811000036102 ruxolitinib 20 mg tablet, 56 143761000036108 ruxolitinib 20 mg tablet 146491000036100 ruxolitinib +91671000036106 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 40, blister pack 193421 90161000036100 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 40 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +91671000036106 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 40, blister pack 210587 90161000036100 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 40 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +933213451000036104 Lisinopril (IPCA) 20 mg uncoated tablet, 28, blister pack 152718 933201721000036102 Lisinopril (IPCA) 20 mg uncoated tablet, 28 933194801000036103 Lisinopril (IPCA) 20 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 46264011000036101 lisinopril 20 mg tablet, 28 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +34759011000036108 MS Contin 5 mg modified release tablet, 60, blister pack 51760 34340011000036103 MS Contin 5 mg modified release tablet, 60 4460011000036102 MS Contin 5 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35188011000036106 morphine sulfate pentahydrate 5 mg modified release tablet, 60 22621011000036108 morphine sulfate pentahydrate 5 mg modified release tablet 21252011000036100 morphine +19317011000036109 Gemzar 200 mg powder for injection, 1 vial 49728 12607011000036107 Gemzar 200 mg powder for injection, 1 vial 4932011000036105 Gemzar 200 mg powder for injection, 200 mg vial 4296011000036100 Gemzar 4296011000036100 Gemzar 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +20966011000036103 Eleva 50 mg film-coated tablet, 30, blister pack 95581 14119011000036109 Eleva 50 mg film-coated tablet, 30 7396011000036100 Eleva 50 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +52698011000036104 Simvastatin (Spirit) 40 mg film-coated tablet, 30, bottle 116713 52531011000036109 Simvastatin (Spirit) 40 mg film-coated tablet, 30 52406011000036103 Simvastatin (Spirit) 40 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +757621000168100 Ceptolate 250 mg hard capsule, 50, bottle 165767 46671000036105 Ceptolate 250 mg hard capsule, 50 1591000036105 Ceptolate 250 mg hard capsule 521000036106 Ceptolate 521000036106 Ceptolate 46681000036107 mycophenolate mofetil 250 mg capsule, 50 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +1060171000168102 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 15, blister pack 234539 1060161000168108 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 15 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911401000168104 rosuvastatin 20 mg tablet, 15 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +743271000168108 Jardiamet 5 mg/850 mg film-coated tablet, 14, blister pack 229816 743261000168102 Jardiamet 5 mg/850 mg film-coated tablet, 14 743241000168101 Jardiamet 5 mg/850 mg film-coated tablet 743211000168100 Jardiamet 5 mg/850 mg 743211000168100 Jardiamet 5 mg/850 mg 743251000168104 empagliflozin 5 mg + metformin hydrochloride 850 mg tablet, 14 743231000168105 empagliflozin 5 mg + metformin hydrochloride 850 mg tablet 743221000168107 empagliflozin + metformin +44490011000036100 Fluorouracil (DBL) 2.5 g/50 mL injection solution, 50 mL vial 75832 41945011000036109 Fluorouracil (DBL) 2.5 g/50 mL injection solution, 50 mL vial 40278011000036106 Fluorouracil (DBL) 2.5 g/50 mL injection solution, 50 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 46730011000036106 fluorouracil 2.5 g/50 mL injection, 50 mL vial 45286011000036108 fluorouracil 2.5 g/50 mL injection, vial 21481011000036100 fluorouracil +61594011000036103 Decongestant Cough Mixture (Guardian) oral liquid solution, 100 mL, bottle 95778 57516011000036108 Decongestant Cough Mixture (Guardian) oral liquid solution, 100 mL 54334011000036100 Decongestant Cough Mixture (Guardian) oral liquid solution, 10 mL 56591000168103 Decongestant Cough Mixture (Guardian) 56591000168103 Decongestant Cough Mixture (Guardian) 63902011000036109 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 100 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62100011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 100 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61778011000036103 bromhexine + guaifenesin + pseudoephedrine +60990011000036106 Cold and Allergy Syrup (Pharmacist) oral liquid solution, 100 mL, bottle 63335 56933011000036102 Cold and Allergy Syrup (Pharmacist) oral liquid solution, 100 mL 54128011000036102 Cold and Allergy Syrup (Pharmacist) oral liquid solution, 5 mL 45981000168104 Cold and Allergy Syrup (Pharmacist) 45981000168104 Cold and Allergy Syrup (Pharmacist) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +25201000036106 Simvastatin (Sandoz) 5 mg film-coated tablet, 30, blister pack 114796 22111000036109 Simvastatin (Sandoz) 5 mg film-coated tablet, 30 20511000036103 Simvastatin (Sandoz) 5 mg film-coated tablet 933234211000036105 Simvastatin (Sandoz) 933234211000036105 Simvastatin (Sandoz) 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +985271000168106 Zyvox 200 mg/100 mL injection solution, 10 x 100 mL bags 79688 985261000168100 Zyvox 200 mg/100 mL injection solution, 10 x 100 mL bags 985191000168104 Zyvox 200 mg/100 mL injection solution, 100 mL bag 39746011000036100 Zyvox 39746011000036100 Zyvox 985251000168102 linezolid 200 mg/100 mL injection, 10 x 100 mL bags 985181000168102 linezolid 200 mg/100 mL injection, bag 44888011000036109 linezolid +20919011000036108 Ausfam 20 mg film-coated tablet, 60, blister pack 93788 14073011000036108 Ausfam 20 mg film-coated tablet, 60 7351011000036101 Ausfam 20 mg film-coated tablet 3986011000036102 Ausfam 3986011000036102 Ausfam 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +60374011000036101 Sinus Relief Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24, blister pack 142632 56333011000036107 Sinus Relief Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24 53879011000036102 Sinus Relief Day and Night (Night) (Priceline) uncoated tablet 57651000168107 Sinus Relief Day and Night (Priceline) 57771000168107 Sinus Relief Day and Night (Night) (Priceline) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +60374011000036101 Sinus Relief Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24, blister pack 142632 56333011000036107 Sinus Relief Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24 53880011000036102 Sinus Relief Day and Night (Day) (Priceline) uncoated tablet 57651000168107 Sinus Relief Day and Night (Priceline) 57891000168103 Sinus Relief Day and Night (Day) (Priceline) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +671261000168105 Amlodipine/Atorvastatin 10/10 (Terry White Chemists) film-coated tablet, 30, blister pack 214373 671251000168108 Amlodipine/Atorvastatin 10/10 (Terry White Chemists) film-coated tablet, 30 671241000168106 Amlodipine/Atorvastatin 10/10 (Terry White Chemists) film-coated tablet 671231000168102 Amlodipine/Atorvastatin 10/10 (Terry White Chemists) 671231000168102 Amlodipine/Atorvastatin 10/10 (Terry White Chemists) 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +924761000168103 Ramipril (Hexal) 5 mg film-coated tablet, 30, bottle 122021 924751000168100 Ramipril (Hexal) 5 mg film-coated tablet, 30 924741000168102 Ramipril (Hexal) 5 mg film-coated tablet 924461000168109 Ramipril (Hexal) 924461000168109 Ramipril (Hexal) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +795151000168101 Instanyl 100 microgram/actuation nasal spray, 2 x 1 actuation, pump packs 197688 795141000168103 Instanyl 100 microgram/actuation nasal spray, 2 x 1 actuation 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795131000168107 fentanyl 100 microgram/actuation nasal spray, 2 x 1 actuation 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +20435011000036100 Clonac 25 mg enteric tablet, 50, bottle 145811 13638011000036108 Clonac 25 mg enteric tablet, 50 6921011000036105 Clonac 25 mg enteric tablet 3257011000036106 Clonac 3257011000036106 Clonac 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +20435011000036100 Clonac 25 mg enteric tablet, 50, bottle 77806 13638011000036108 Clonac 25 mg enteric tablet, 50 6921011000036105 Clonac 25 mg enteric tablet 3257011000036106 Clonac 3257011000036106 Clonac 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +877221000168102 Briviact 75 mg film-coated tablet, 168, blister pack 243798 877211000168109 Briviact 75 mg film-coated tablet, 168 877101000168102 Briviact 75 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877201000168106 brivaracetam 75 mg tablet, 168 877091000168107 brivaracetam 75 mg tablet 876401000168109 brivaracetam +25361000036100 Cilex 125 mg/5 mL powder for oral liquid, 100 mL, bottle 91909 23141000036104 Cilex 125 mg/5 mL powder for oral liquid, 100 mL 20161000036107 Cilex 125 mg/5 mL powder for oral liquid, 5 mL 3195011000036106 Cilex 3195011000036106 Cilex 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +19046011000036100 Nizoral 200 mg uncoated tablet, 10, blister pack 40317 12354011000036100 Nizoral 200 mg uncoated tablet, 10 5379011000036100 Nizoral 200 mg uncoated tablet 4145011000036104 Nizoral 4145011000036104 Nizoral 27073011000036101 ketoconazole 200 mg tablet, 10 22443011000036109 ketoconazole 200 mg tablet 21500011000036103 ketoconazole +920421000168108 Montelukast (APL) 5 mg chewable tablet, 14, blister pack 193240 920411000168101 Montelukast (APL) 5 mg chewable tablet, 14 920391000168101 Montelukast (APL) 5 mg chewable tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 920401000168104 montelukast 5 mg chewable tablet, 14 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +59681000036104 Cyprocur 50 mg uncoated tablet, 50, blister pack 178007 59161000036104 Cyprocur 50 mg uncoated tablet, 50 58321000036101 Cyprocur 50 mg uncoated tablet 40221000036105 Cyprocur 40221000036105 Cyprocur 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +1086201000168103 Zovirax Duo cream, 2 g, tube 281884 1086191000168101 Zovirax Duo cream, 2 g 1086171000168102 Zovirax Duo cream 1086141000168109 Zovirax Duo 1086141000168109 Zovirax Duo 1086181000168104 aciclovir 5% + hydrocortisone 1% cream, 2 g 1086161000168108 aciclovir 5% + hydrocortisone 1% cream 1086151000168106 aciclovir + hydrocortisone +931497011000036109 Topiramate (Lupin) 25 mg film-coated tablet, 60, blister pack 155210 928310011000036105 Topiramate (Lupin) 25 mg film-coated tablet, 60 927939011000036106 Topiramate (Lupin) 25 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +1060031000168101 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 56, blister pack 234479 1060021000168104 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 56 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910971000168108 rosuvastatin 10 mg tablet, 56 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +708771000168101 Atozet 10 mg/40 mg tablet, 30, blister pack 216958 708761000168107 Atozet 10 mg/40 mg tablet, 30 708741000168108 Atozet 10 mg/40 mg tablet 708721000168102 Atozet 10 mg/40 mg 708721000168102 Atozet 10 mg/40 mg 708751000168105 ezetimibe 10 mg + atorvastatin 40 mg tablet, 30 708731000168104 ezetimibe 10 mg + atorvastatin 40 mg tablet 708601000168100 ezetimibe + atorvastatin +919141000168107 Temolide 5 mg hard capsule, 20, bottle 192690 919131000168103 Temolide 5 mg hard capsule, 20 919101000168105 Temolide 5 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 164261000036106 temozolomide 5 mg capsule, 20 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +18228011000036106 Phosphate (Sandoz) 500 mg effervescent tablet, 100, tube 13368 11977011000036103 Phosphate (Sandoz) 500 mg effervescent tablet, 100 5925011000036109 Phosphate (Sandoz) 500 mg effervescent tablet 3727011000036100 Phosphate (Sandoz) 3727011000036100 Phosphate (Sandoz) 26826011000036106 phosphorus 500 mg effervescent tablet, 100 22208011000036105 phosphorus 500 mg effervescent tablet 21894011000036105 phosphorus +809401000168107 Perindopril Arginine/Amlodipine 5/5 (Apo) uncoated tablet, 30, blister pack 224333 808881000168105 Perindopril Arginine/Amlodipine 5/5 (Apo) uncoated tablet, 30 808871000168107 Perindopril Arginine/Amlodipine 5/5 (Apo) uncoated tablet 808861000168101 Perindopril Arginine/Amlodipine 5/5 (Apo) 808861000168101 Perindopril Arginine/Amlodipine 5/5 (Apo) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +842621000168104 Infanrix injection suspension, 0.5 mL syringe 142370 842611000168106 Infanrix injection suspension, 0.5 mL syringe 842591000168101 Infanrix injection suspension, 0.5 mL syringe 842341000168101 Infanrix 842341000168101 Infanrix 842601000168108 diphtheria + tetanus + pertussis 3 component child vaccine injection, 0.5 mL syringe 842581000168104 diphtheria + tetanus + pertussis 3 component child vaccine injection, 0.5 mL syringe 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +52757011000036104 Movalis 15 mg hard capsule, 20, blister pack 142229 52569011000036102 Movalis 15 mg hard capsule, 20 52421011000036103 Movalis 15 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 52891011000036100 meloxicam 15 mg capsule, 20 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +44461011000036105 Clexane Forte 150 mg/mL injection solution, 15 x 1 mL syringes 74175 41917011000036105 Clexane Forte 150 mg/mL injection solution, 15 x 1 mL syringes 40263011000036108 Clexane Forte 150 mg/mL injection solution, syringe 8871000168107 Clexane Forte 8871000168107 Clexane Forte 46706011000036101 enoxaparin sodium 150 mg/mL injection, 15 x 1 mL syringes 45276011000036101 enoxaparin sodium 150 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +930471000168106 Cavstat 5 mg film-coated tablet, 20, blister pack 234543 930461000168100 Cavstat 5 mg film-coated tablet, 20 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930451000168102 rosuvastatin 5 mg tablet, 20 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +775101000168105 Targin 2.5/1.25 mg modified release tablet, 28, blister pack 216260 775091000168100 Targin 2.5/1.25 mg modified release tablet, 28 775041000168108 Targin 2.5/1.25 mg modified release tablet 775021000168102 Targin 2.5/1.25 mg 775021000168102 Targin 2.5/1.25 mg 775081000168103 oxycodone hydrochloride 2.5 mg + naloxone hydrochloride 1.25 mg modified release tablet, 28 775031000168104 oxycodone hydrochloride 2.5 mg + naloxone hydrochloride 1.25 mg modified release tablet 923931011000036100 oxycodone + naloxone +1117821000168102 Donepezil (GH) 5 mg film-coated tablet, 56, blister pack 193661 1117811000168109 Donepezil (GH) 5 mg film-coated tablet, 56 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200761000036101 donepezil hydrochloride 5 mg tablet, 56 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1116221000168100 Epirubicin (AN) 50 mg/25 mL concentrated injection, 25 mL vial 146597 1116211000168107 Epirubicin (AN) 50 mg/25 mL concentrated injection, 25 mL vial 1116201000168109 Epirubicin (AN) 50 mg/25 mL concentrated injection, 25 mL vial 1116161000168104 Epirubicin (AN) 1116161000168104 Epirubicin (AN) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +84305011000036105 Demazin PE Cold and Flu Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24, blister pack 152023 83998011000036106 Demazin PE Cold and Flu Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24 83633011000036109 Demazin PE Cold and Flu Day and Night Relief (Night) uncoated tablet 3231000168101 Demazin PE Cold and Flu Day and Night Relief 3461000168105 Demazin PE Cold and Flu Day and Night Relief (Night) 84633011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +84305011000036105 Demazin PE Cold and Flu Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24, blister pack 152023 83998011000036106 Demazin PE Cold and Flu Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24 83632011000036102 Demazin PE Cold and Flu Day and Night Relief (Day) uncoated tablet 3231000168101 Demazin PE Cold and Flu Day and Night Relief 3341000168104 Demazin PE Cold and Flu Day and Night Relief (Day) 84633011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +60326011000036108 Cetrelief (Generic Health) 10 mg film-coated tablet, 84, blister pack 138826 56285011000036107 Cetrelief (Generic Health) 10 mg film-coated tablet, 84 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63290011000036106 cetirizine hydrochloride 10 mg tablet, 84 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +146381000036108 Azithromycin (GA) 500 mg film-coated tablet, 2, blister pack 200051 145151000036105 Azithromycin (GA) 500 mg film-coated tablet, 2 143731000036102 Azithromycin (GA) 500 mg film-coated tablet 143271000036107 Azithromycin (GA) 143271000036107 Azithromycin (GA) 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +146401000036108 Aldiq 5% cream, 12 x 250 mg sachets 201801 145161000036108 Aldiq 5% cream, 12 x 250 mg sachets 143541000036102 Aldiq 5% cream, 250 mg sachet 143331000036103 Aldiq 143331000036103 Aldiq 27549011000036101 imiquimod 5% cream, 12 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +944861000168105 Doxycycline (GA) 100 mg film-coated tablet, 7, blister pack 148815 944851000168108 Doxycycline (GA) 100 mg film-coated tablet, 7 944841000168106 Doxycycline (GA) 100 mg film-coated tablet 944441000168108 Doxycycline (GA) 944441000168108 Doxycycline (GA) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +13621000036107 Ondansetron Tabs (Pfizer) 8 mg film-coated tablet, 4, blister pack 173187 8761000036103 Ondansetron Tabs (Pfizer) 8 mg film-coated tablet, 4 2261000036105 Ondansetron Tabs (Pfizer) 8 mg film-coated tablet 14841000168109 Ondansetron Tabs (Pfizer) 14841000168109 Ondansetron Tabs (Pfizer) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +34776011000036102 Oxycontin 20 mg modified release tablet, 60, bottle 68189 34356011000036103 Oxycontin 20 mg modified release tablet, 60 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +921904011000036104 Exforge HCT 10/160/25 film-coated tablet, 30, blister pack 158166 921463011000036103 Exforge HCT 10/160/25 film-coated tablet, 30 921018011000036102 Exforge HCT 10/160/25 film-coated tablet 7471000168106 Exforge HCT 10/160/25 7471000168106 Exforge HCT 10/160/25 922591011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 30 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +973811000168106 Pregabalin (Teva) 150 mg hard capsule, 21, blister pack 229593 973801000168108 Pregabalin (Teva) 150 mg hard capsule, 21 973751000168102 Pregabalin (Teva) 150 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855121000168102 pregabalin 150 mg capsule, 21 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +18349011000036107 Moduretic uncoated tablet, 50, blister pack 10499 11312011000036104 Moduretic uncoated tablet, 50 4509011000036103 Moduretic uncoated tablet 3937011000036109 Moduretic 3937011000036109 Moduretic 26950011000036102 amiloride hydrochloride dihydrate 5 mg + hydrochlorothiazide 50 mg tablet, 50 22325011000036101 amiloride hydrochloride dihydrate 5 mg + hydrochlorothiazide 50 mg tablet 21870011000036107 amiloride + hydrochlorothiazide +44023011000036106 Fluorouracil (DBL) 500 mg/20 mL injection solution, 20 mL vial 47262 41512011000036104 Fluorouracil (DBL) 500 mg/20 mL injection solution, 20 mL vial 40028011000036104 Fluorouracil (DBL) 500 mg/20 mL injection solution, 20 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 46396011000036100 fluorouracil 500 mg/20 mL injection, 20 mL vial 45130011000036100 fluorouracil 500 mg/20 mL injection, vial 21481011000036100 fluorouracil +846871000168103 Olmesartan HCT 40/25 (Alembic) film-coated tablet, 30, blister pack 221126 846861000168109 Olmesartan HCT 40/25 (Alembic) film-coated tablet, 30 846851000168107 Olmesartan HCT 40/25 (Alembic) film-coated tablet 846841000168105 Olmesartan HCT 40/25 (Alembic) 846841000168105 Olmesartan HCT 40/25 (Alembic) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +43706011000036109 Duac Once Daily gel, 40 g, tube 100707 41090011000036102 Duac Once Daily gel, 40 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46076011000036109 clindamycin 1% + benzoyl peroxide 5% gel, 40 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +1025691000168105 Telmisartan HCTZ 80/12.5 mg (Apotex) multilayer tablet, 28, blister pack 198228 1025681000168107 Telmisartan HCTZ 80/12.5 mg (Apotex) multilayer tablet, 28 1025671000168109 Telmisartan HCTZ 80/12.5 mg (Apotex) multilayer tablet 1025651000168100 Telmisartan HCTZ 80/12.5 mg (Apotex) 1025651000168100 Telmisartan HCTZ 80/12.5 mg (Apotex) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +979581000168101 Advil Plus film-coated tablet, 20, blister pack 184751 979571000168104 Advil Plus film-coated tablet, 20 979541000168106 Advil Plus film-coated tablet 979531000168102 Advil Plus 979531000168102 Advil Plus 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +30821000036105 Kerron 500 mg film-coated tablet, 60, bottle 182812 29201000036109 Kerron 500 mg film-coated tablet, 60 26501000036103 Kerron 500 mg film-coated tablet 29611000168101 Kerron 29611000168101 Kerron 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +920740011000036104 Lamotrigine (Apo) 50 mg tablet, 56, blister pack 167521 920423011000036104 Lamotrigine (Apo) 50 mg tablet, 56 920172011000036108 Lamotrigine (Apo) 50 mg tablet 11141000168104 Lamotrigine (Apo) 11141000168104 Lamotrigine (Apo) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +146081000036106 Candesartan Cilexetil (Pharmacor) 4 mg uncoated tablet, 30, bottle 195454 145191000036101 Candesartan Cilexetil (Pharmacor) 4 mg uncoated tablet, 30 143791000036101 Candesartan Cilexetil (Pharmacor) 4 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +86114011000036106 Levetiracetam (Apo) 500 mg tablet, 100, bottle 156321 85706011000036106 Levetiracetam (Apo) 500 mg tablet, 100 85345011000036105 Levetiracetam (Apo) 500 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 46172011000036101 levetiracetam 500 mg tablet, 100 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +1120551000168101 Xque XR 200 mg modified release tablet, 60, blister pack 226811 1120541000168103 Xque XR 200 mg modified release tablet, 60 1120491000168107 Xque XR 200 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +74451000036106 Polytar Plus 4% shampoo, 10 mL, bottle 58005 72371000036101 Polytar Plus 4% shampoo, 10 mL 69481000036108 Polytar Plus 4% shampoo 65078011000036102 Polytar Plus 65078011000036102 Polytar Plus 72381000036104 coal tar solution 4% shampoo, 10 mL 69491000036105 coal tar solution 4% shampoo 69856011000036108 coal tar solution +927731000168100 Zavedos 10 mg powder for injection, 1 vial 47318 927721000168103 Zavedos 10 mg powder for injection, 1 vial 927701000168107 Zavedos 10 mg powder for injection, 10 mg vial 4217011000036101 Zavedos 4217011000036101 Zavedos 927711000168105 idarubicin hydrochloride 10 mg injection, 1 vial 927691000168107 idarubicin hydrochloride 10 mg injection, vial 21720011000036108 idarubicin +925243011000036109 Rispericor-0.5 500 microgram film-coated tablet, 20, blister pack 159979 924780011000036108 Rispericor-0.5 500 microgram film-coated tablet, 20 924478011000036107 Rispericor-0.5 500 microgram film-coated tablet 25101000168108 Rispericor-0.5 25101000168108 Rispericor-0.5 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +146061000036101 T Lukast 5 mg chewable tablet, 28, blister pack 189246 145001000036108 T Lukast 5 mg chewable tablet, 28 143871000036106 T Lukast 5 mg chewable tablet 143371000036101 T Lukast 143371000036101 T Lukast 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +77374011000036107 Ostelin-1000 25 microgram soft capsule, 90, bottle 67032 76790011000036106 Ostelin-1000 25 microgram soft capsule, 90 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78294011000036103 ergocalciferol 25 microgram capsule, 90 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +928930011000036106 Valaciclovir (Sandoz) 500 mg film-coated tablet, 100, blister pack 154464 928292011000036104 Valaciclovir (Sandoz) 500 mg film-coated tablet, 100 927924011000036108 Valaciclovir (Sandoz) 500 mg film-coated tablet 927787011000036101 Valaciclovir (Sandoz) 927787011000036101 Valaciclovir (Sandoz) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +881651000168108 Candesartan HCTZ 32/25 (GPPL) uncoated tablet, 30, blister pack 253494 881551000168107 Candesartan HCTZ 32/25 (GPPL) uncoated tablet, 30 881541000168105 Candesartan HCTZ 32/25 (GPPL) uncoated tablet 881531000168101 Candesartan HCTZ 32/25 (GPPL) 881531000168101 Candesartan HCTZ 32/25 (GPPL) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +946461000168103 Frusemide (Winthrop) 10 mg/mL oral liquid solution, 30 mL, bottle 144479 946451000168100 Frusemide (Winthrop) 10 mg/mL oral liquid solution, 30 mL 946441000168102 Frusemide (Winthrop) 10 mg/mL oral liquid solution 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 26763011000036105 furosemide (frusemide) 10 mg/mL oral liquid, 30 mL 22150011000036103 furosemide (frusemide) 10 mg/mL oral liquid 21329011000036103 furosemide (frusemide) +911741000168105 Caspofungin (Amneal) 70 mg powder for injection, 1 vial 269935 911731000168101 Caspofungin (Amneal) 70 mg powder for injection, 1 vial 911721000168104 Caspofungin (Amneal) 70 mg powder for injection, 70 mg vial 910001000168104 Caspofungin (Amneal) 910001000168104 Caspofungin (Amneal) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +933213531000036108 Citalopram (IPCA) 10 mg film-coated tablet, 100, bottle 158869 933202961000036100 Citalopram (IPCA) 10 mg film-coated tablet, 100 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202971000036108 citalopram 10 mg tablet, 100 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +671341000168100 Amlodipine/Atorvastatin 10/40 (Chemmart) film-coated tablet, 30, blister pack 214366 671331000168109 Amlodipine/Atorvastatin 10/40 (Chemmart) film-coated tablet, 30 671321000168106 Amlodipine/Atorvastatin 10/40 (Chemmart) film-coated tablet 671311000168104 Amlodipine/Atorvastatin 10/40 (Chemmart) 671311000168104 Amlodipine/Atorvastatin 10/40 (Chemmart) 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +44644011000036100 Ranoxyl 150 mg film-coated tablet, 20, bottle 90519 42097011000036102 Ranoxyl 150 mg film-coated tablet, 20 7143011000036107 Ranoxyl 150 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +834121000168100 Domperidone (Apo) 10 mg uncoated tablet, 100, blister pack 242333 834111000168107 Domperidone (Apo) 10 mg uncoated tablet, 100 834051000168109 Domperidone (Apo) 10 mg uncoated tablet 834041000168107 Domperidone (Apo) 834041000168107 Domperidone (Apo) 833951000168107 domperidone 10 mg tablet, 100 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +81178011000036108 Robitussin Chesty Cough 200 mg soft capsule, 12, blister pack 74414 80680011000036108 Robitussin Chesty Cough 200 mg soft capsule, 12 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81735011000036109 guaifenesin 200 mg capsule, 12 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +151861000036100 Lignocaine 2% with Chlorhexidine Gluconate 0.05% (Pfizer (Perth)) gel, 10 mL, syringe 10854 149881000036106 Lignocaine 2% with Chlorhexidine Gluconate 0.05% (Pfizer (Perth)) gel, 10 mL 148431000036102 Lignocaine 2% with Chlorhexidine Gluconate 0.05% (Pfizer (Perth)) gel 26821000168103 Lignocaine 2% with Chlorhexidine Gluconate 0.05% (Pfizer (Perth)) 26821000168103 Lignocaine 2% with Chlorhexidine Gluconate 0.05% (Pfizer (Perth)) 63121011000036105 lidocaine (lignocaine) 2% + chlorhexidine gluconate 0.05% gel, 10 mL 61862011000036105 lidocaine (lignocaine) 2% + chlorhexidine gluconate 0.05% gel 61813011000036102 lidocaine (lignocaine) + chlorhexidine +1019891000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 28, blister pack 175199 1019881000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 28 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019871000168101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 28 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +65781000036104 Mitozantrone (Novotech) 20 mg/10 mL concentrated injection, 10 mL vial 107328 63111000036105 Mitozantrone (Novotech) 20 mg/10 mL concentrated injection, 10 mL vial 61591000036107 Mitozantrone (Novotech) 20 mg/10 mL concentrated injection, 10 mL vial 60121000036107 Mitozantrone (Novotech) 60121000036107 Mitozantrone (Novotech) 27985011000036103 mitozantrone 20 mg/10 mL injection, 10 mL vial 23309011000036101 mitozantrone 20 mg/10 mL injection, vial 21652011000036102 mitozantrone +1122161000168108 Fluquadri Junior 2018 injection suspension, 10 x 0.25 mL syringes 213964 1122151000168106 Fluquadri Junior 2018 injection suspension, 10 x 0.25 mL syringes 1122101000168107 Fluquadri Junior 2018 injection suspension, 0.25 mL syringe 1122081000168100 Fluquadri Junior 2018 1122081000168100 Fluquadri Junior 2018 1122141000168109 influenza quadrivalent child vaccine 2018 injection, 10 x 0.25 mL syringes 1122091000168102 influenza quadrivalent child vaccine 2018 injection, 0.25 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +945861000168109 Invast 10 mg film-coated tablet, 100, bottle 100260 945851000168107 Invast 10 mg film-coated tablet, 100 945821000168104 Invast 10 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 46244011000036106 simvastatin 10 mg tablet, 100 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +19012011000036106 Claratyne 10 mg uncoated tablet, 30, blister pack 34698 12317011000036103 Claratyne 10 mg uncoated tablet, 30 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +881331000168106 Actonate Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Aventis Pharma) tablets), 84, blister pack 163756 881321000168108 Actonate Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Aventis Pharma) tablets), 84 881231000168104 Calcium Carbonate (Aventis Pharma) 1.25 g (calcium 500 mg) film-coated tablet 881151000168103 Actonate Combi 881221000168102 Calcium Carbonate (Aventis Pharma) 881311000168101 risedronate sodium 35 mg tablet [12] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [72], 84 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +881331000168106 Actonate Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Aventis Pharma) tablets), 84, blister pack 163756 881321000168108 Actonate Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Aventis Pharma) tablets), 84 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 881151000168103 Actonate Combi 700024831000036105 Actonel Once-a-Week 881311000168101 risedronate sodium 35 mg tablet [12] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [72], 84 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +830191000168109 Atomoxetine (Apo) 100 mg hard capsule, 56, blister pack 234803 830181000168106 Atomoxetine (Apo) 100 mg hard capsule, 56 830091000168108 Atomoxetine (Apo) 100 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830171000168108 atomoxetine 100 mg capsule, 56 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +69557011000036107 Clearasil Pimple Treatment Vanishing cream, 25 g, tube 60674 67357011000036102 Clearasil Pimple Treatment Vanishing cream, 25 g 65628011000036107 Clearasil Pimple Treatment Vanishing cream 24691000168106 Clearasil Pimple Treatment Vanishing 24691000168106 Clearasil Pimple Treatment Vanishing 71903011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream, 25 g 70241011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream 69816011000036101 bentonite + precipitated sulfur + triclosan +1123291000168101 Quetiapine XR (ZP) 200 mg modified release tablet, 60, blister pack 226803 1123281000168104 Quetiapine XR (ZP) 200 mg modified release tablet, 60 1123231000168100 Quetiapine XR (ZP) 200 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +654581000168103 Dermatane 20 mg soft capsule, 60, blister pack 144130 654571000168101 Dermatane 20 mg soft capsule, 60 654561000168107 Dermatane 20 mg soft capsule 654421000168101 Dermatane 654421000168101 Dermatane 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +1117181000168106 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 56, blister pack 158169 1117171000168108 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 56 1117071000168107 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 922597011000036102 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 56 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +60879011000036102 Aspirin (Amcal) 100 mg uncoated tablet, 90, blister pack 59728 56833011000036105 Aspirin (Amcal) 100 mg uncoated tablet, 90 54093011000036105 Aspirin (Amcal) 100 mg uncoated tablet 53388011000036103 Aspirin (Amcal) 53388011000036103 Aspirin (Amcal) 26903011000036102 aspirin 100 mg tablet, 90 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +813011000168102 Nuromol film-coated tablet, 5, blister pack 225322 813001000168100 Nuromol film-coated tablet, 5 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 812991000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 5 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +44323011000036107 Crixivan 400 mg hard capsule, 6, blister pack 66979 41790011000036100 Crixivan 400 mg hard capsule, 6 6329011000036102 Crixivan 400 mg hard capsule 3537011000036103 Crixivan 3537011000036103 Crixivan 46596011000036103 indinavir 400 mg capsule, 6 22855011000036102 indinavir 400 mg capsule 21424011000036107 indinavir +662851000168108 Irbesartan (GH) 150 mg film-coated tablet, 30, blister pack 191404 662841000168106 Irbesartan (GH) 150 mg film-coated tablet, 30 662831000168102 Irbesartan (GH) 150 mg film-coated tablet 662791000168108 Irbesartan (GH) 662791000168108 Irbesartan (GH) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +984321000168103 Butafen 200 mg sugar coated tablet, 30, blister pack 126093 984311000168105 Butafen 200 mg sugar coated tablet, 30 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63849011000036104 ibuprofen 200 mg tablet, 30 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1065421000168101 Codoxamol uncoated tablet, 50, bottle 161869 1065411000168108 Codoxamol uncoated tablet, 50 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 52868011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 50 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +931523011000036104 Phenoxymethylpenicillin (AFT) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 159753 930684011000036108 Phenoxymethylpenicillin (AFT) 125 mg/5 mL powder for oral liquid, 100 mL 930009011000036101 Phenoxymethylpenicillin (AFT) 125 mg/5 mL powder for oral liquid, 5 mL 929833011000036109 Phenoxymethylpenicillin (AFT) 929833011000036109 Phenoxymethylpenicillin (AFT) 932400011000036107 phenoxymethylpenicillin 125 mg/5 mL powder for oral liquid, 100 mL 931848011000036105 phenoxymethylpenicillin 125 mg/5 mL powder for oral liquid 21370011000036105 phenoxymethylpenicillin +18927011000036109 Isopto Carpine 1% eye drops solution, 15 mL, bottle 25294 12235011000036106 Isopto Carpine 1% eye drops solution, 15 mL 4929011000036102 Isopto Carpine 1% eye drops solution 4348011000036104 Isopto Carpine 4348011000036104 Isopto Carpine 27788011000036104 pilocarpine hydrochloride 1% eye drops, 15 mL 23118011000036102 pilocarpine hydrochloride 1% eye drops 21254011000036109 pilocarpine +44542011000036100 Zyvox 600 mg/300 mL injection solution, 300 mL bag 79690 41995011000036104 Zyvox 600 mg/300 mL injection solution, 300 mL bag 40309011000036100 Zyvox 600 mg/300 mL injection solution, 300 mL bag 39746011000036100 Zyvox 39746011000036100 Zyvox 46770011000036109 linezolid 600 mg/300 mL injection, 300 mL bag 45308011000036100 linezolid 600 mg/300 mL injection, bag 44888011000036109 linezolid +60408011000036109 Nurofen Regular 200 mg sugar coated tablet, 6, blister pack 144202 56367011000036106 Nurofen Regular 200 mg sugar coated tablet, 6 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +20212011000036104 Nexium 20 mg enteric tablet, 30, blister pack 74133 13430011000036109 Nexium 20 mg enteric tablet, 30 7488011000036109 Nexium 20 mg enteric tablet 2929011000036108 Nexium 2929011000036108 Nexium 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +61440011000036109 Demazin Cough and Cold oral liquid solution, 15 mL, bottle 83341 57365011000036100 Demazin Cough and Cold oral liquid solution, 15 mL 54285011000036102 Demazin Cough and Cold oral liquid solution, 5 mL 31561000168101 Demazin Cough and Cold 31561000168101 Demazin Cough and Cold 63829011000036102 chlorphenamine maleate 2 mg/5 mL + pholcodine 5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid, 15 mL 62087011000036109 chlorphenamine maleate 2 mg/5 mL + pholcodine 5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid 61775011000036109 chlorphenamine + pholcodine + pseudoephedrine +69562011000036100 Clearasil Pimple Treatment Tinted cream, 20 g, tube 60753 67362011000036109 Clearasil Pimple Treatment Tinted cream, 20 g 65630011000036108 Clearasil Pimple Treatment Tinted cream 29201000168102 Clearasil Pimple Treatment Tinted 29201000168102 Clearasil Pimple Treatment Tinted 71902011000036103 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream, 20 g 70241011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream 69816011000036101 bentonite + precipitated sulfur + triclosan +789171000168108 Gemcitabine (Agila) 2 g powder for injection, 1 vial 184744 789161000168102 Gemcitabine (Agila) 2 g powder for injection, 1 vial 789151000168104 Gemcitabine (Agila) 2 g powder for injection, 2 g vial 788601000168104 Gemcitabine (Agila) 788601000168104 Gemcitabine (Agila) 73514011000036108 gemcitabine 2 g injection, 1 vial 73378011000036105 gemcitabine 2 g injection, vial 21644011000036108 gemcitabine +44161011000036106 Calcijex 1 microgram/mL injection solution, 25 x 1 mL ampoules 54452 41637011000036104 Calcijex 1 microgram/mL injection solution, 25 x 1 mL ampoules 40116011000036100 Calcijex 1 microgram/mL injection solution, ampoule 39553011000036105 Calcijex 39553011000036105 Calcijex 46456011000036100 calcitriol 1 microgram/mL injection, 25 x 1 mL ampoules 45165011000036102 calcitriol 1 microgram/mL injection, ampoule 21881011000036108 calcitriol +152431000036103 Invokana 100 mg film-coated tablet, 30, blister pack 200184 150711000036102 Invokana 100 mg film-coated tablet, 30 148361000036104 Invokana 100 mg film-coated tablet 147801000036107 Invokana 147801000036107 Invokana 150721000036109 canagliflozin 100 mg tablet, 30 148371000036107 canagliflozin 100 mg tablet 152601000036108 canagliflozin +1069761000168102 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 24, blister pack 211368 1069751000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 24 1069671000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +898671000168106 Nicotinell Peppermint 2 mg lozenge, 108, blister pack 276925 898661000168100 Nicotinell Peppermint 2 mg lozenge, 108 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 898651000168102 nicotine 2 mg lozenge, 108 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1022881000168103 Epiduo Forte gel, 2 g, tube 273181 1022871000168101 Epiduo Forte gel, 2 g 1022701000168104 Epiduo Forte gel 1022681000168102 Epiduo Forte 1022681000168102 Epiduo Forte 1022861000168107 adapalene 0.3% + benzoyl peroxide 2.5% gel, 2 g 1022691000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +1121201000168106 Quetiapine XR (Medis) 400 mg modified release tablet, 60, blister pack 226810 1121191000168108 Quetiapine XR (Medis) 400 mg modified release tablet, 60 1121161000168101 Quetiapine XR (Medis) 400 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +1089131000168107 Lorstat 10 mg film-coated tablet, 30, bottle 181403 22371000036100 Lorstat 10 mg film-coated tablet, 30 20801000036102 Lorstat 10 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1025051000168106 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 14, blister pack 193305 1025041000168109 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 14 1025031000168100 Pregabalin (Blooms The Chemist) 300 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +911261000168104 Carvedilol (Watson) 25 mg uncoated tablet, 60, blister pack 194080 911251000168101 Carvedilol (Watson) 25 mg uncoated tablet, 60 911241000168103 Carvedilol (Watson) 25 mg uncoated tablet 911151000168108 Carvedilol (Watson) 911151000168108 Carvedilol (Watson) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +20250011000036109 Pro-Cid 500 mg film-coated tablet, 100, bottle 74598 13461011000036105 Pro-Cid 500 mg film-coated tablet, 100 6743011000036101 Pro-Cid 500 mg film-coated tablet 2983011000036104 Pro-Cid 2983011000036104 Pro-Cid 27756011000036108 probenecid 500 mg tablet, 100 23087011000036108 probenecid 500 mg tablet 21340011000036106 probenecid +971401000168109 Lypralin 75 mg hard capsule, 14, bottle 235866 969761000168106 Lypralin 75 mg hard capsule, 14 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +923779011000036105 Tacrolimus (Sandoz) 5 mg hard capsule, 50, blister pack 153746 923339011000036107 Tacrolimus (Sandoz) 5 mg hard capsule, 50 923017011000036106 Tacrolimus (Sandoz) 5 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +19895011000036101 Clamoxyl Duo Forte 875/125 film-coated tablet, 10, blister pack 65702 13142011000036108 Clamoxyl Duo Forte 875/125 film-coated tablet, 10 6425011000036105 Clamoxyl Duo Forte 875/125 film-coated tablet 40941000168104 Clamoxyl Duo Forte 875/125 40941000168104 Clamoxyl Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +60956011000036103 Nicotinell Fruit 4 mg chewing gum, 24, blister pack 126017 56899011000036100 Nicotinell Fruit 4 mg chewing gum, 24 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60956011000036103 Nicotinell Fruit 4 mg chewing gum, 24, blister pack 62368 56899011000036100 Nicotinell Fruit 4 mg chewing gum, 24 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +156611000036106 Endoxan 50 mg tablet, 50, blister pack 155701000036108 Endoxan 50 mg tablet, 50 154861000036103 Endoxan 50 mg tablet 3255011000036101 Endoxan 3255011000036101 Endoxan 27715011000036108 cyclophosphamide 50 mg tablet, 50 23050011000036103 cyclophosphamide 50 mg tablet 21733011000036103 cyclophosphamide +913751000168106 Cisatracurium (SXP) 10 mg/5 mL injection solution, 5 x 5 mL vials 181595 913741000168109 Cisatracurium (SXP) 10 mg/5 mL injection solution, 5 x 5 mL vials 913731000168100 Cisatracurium (SXP) 10 mg/5 mL injection solution, 5 mL vial 913621000168105 Cisatracurium (SXP) 913621000168105 Cisatracurium (SXP) 679471000168104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL vials 679451000168108 cisatracurium 10 mg/5 mL injection, vial 44902011000036101 cisatracurium +59860011000036102 Xergic 180 mg film-coated tablet, 30, blister pack 115378 55822011000036104 Xergic 180 mg film-coated tablet, 30 53722011000036108 Xergic 180 mg film-coated tablet 4325011000036107 Xergic 4325011000036107 Xergic 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +86023011000036107 Lisinopril (DRLA) 20 mg uncoated tablet, 84, blister pack 152722 85669011000036105 Lisinopril (DRLA) 20 mg uncoated tablet, 84 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 78129011000036106 lisinopril 20 mg tablet, 84 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +59842011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 48, blister pack 114919 55804011000036102 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 48 53680011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet 29011000168105 Paracetamol Extra Tabsule (Guardian) 29011000168105 Paracetamol Extra Tabsule (Guardian) 63891011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 48 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +923926011000036107 Modavigil 100 mg tablet, 30, blister pack 82350 923470011000036107 Modavigil 100 mg tablet, 30 7144011000036109 Modavigil 100 mg tablet 3390011000036106 Modavigil 3390011000036106 Modavigil 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +923926011000036107 Modavigil 100 mg tablet, 30, blister pack 168497 923470011000036107 Modavigil 100 mg tablet, 30 7144011000036109 Modavigil 100 mg tablet 3390011000036106 Modavigil 3390011000036106 Modavigil 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +13301000036106 Mycophenolate Mofetil (Apo) 250 mg capsule, 100, bottle 168108 8441000036105 Mycophenolate Mofetil (Apo) 250 mg capsule, 100 2441000036108 Mycophenolate Mofetil (Apo) 250 mg capsule 23401000168104 Mycophenolate Mofetil (Apo) 23401000168104 Mycophenolate Mofetil (Apo) 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +60027011000036107 Heartburn Relief Extra Strength (Guardian) 300 mg film-coated tablet, 14, blister pack 123663 55989011000036106 Heartburn Relief Extra Strength (Guardian) 300 mg film-coated tablet, 14 53749011000036100 Heartburn Relief Extra Strength (Guardian) 300 mg film-coated tablet 17781000168100 Heartburn Relief Extra Strength (Guardian) 17781000168100 Heartburn Relief Extra Strength (Guardian) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +928996011000036104 Valaciclovir (Chemmart) 500 mg film-coated tablet, 80, blister pack 158913 928357011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet, 80 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929223011000036104 valaciclovir 500 mg tablet, 80 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1070081000168107 Rapideine Caplets film-coated tablet, 24, blister pack 83328 1070071000168109 Rapideine Caplets film-coated tablet, 24 1070031000168106 Rapideine Caplets film-coated tablet 1070021000168108 Rapideine Caplets 1070021000168108 Rapideine Caplets 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +1091281000168101 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 8, blister pack 285250 1091271000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 8 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813051000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 8 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +945501000168106 Ondansetron (Mylan) 4 mg/2 mL injection solution, 2 mL ampoule 138699 945491000168104 Ondansetron (Mylan) 4 mg/2 mL injection solution, 2 mL ampoule 945481000168102 Ondansetron (Mylan) 4 mg/2 mL injection solution, 2 mL ampoule 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +1121521000168104 Sequase XR 200 mg modified release tablet, 60, blister pack 212513 1121511000168106 Sequase XR 200 mg modified release tablet, 60 1121501000168108 Sequase XR 200 mg modified release tablet 1121431000168100 Sequase XR 1121431000168100 Sequase XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +925321011000036102 Clopidogrel (Actavis) 75 mg film-coated tablet, 7, blister pack 164866 924857011000036100 Clopidogrel (Actavis) 75 mg film-coated tablet, 7 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 87805011000036102 clopidogrel 75 mg tablet, 7 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +44079011000036108 Cisplatin (Pfizer (Perth)) 100 mg/100 mL injection solution, 100 mL vial 49302 41566011000036104 Cisplatin (Pfizer (Perth)) 100 mg/100 mL injection solution, 100 mL vial 40069011000036103 Cisplatin (Pfizer (Perth)) 100 mg/100 mL injection solution, 100 mL vial 3306011000036107 Cisplatin (Pfizer (Perth)) 3306011000036107 Cisplatin (Pfizer (Perth)) 27166011000036105 cisplatin 100 mg/100 mL injection, 100 mL vial 22528011000036105 cisplatin 100 mg/100 mL injection, vial 21771011000036102 cisplatin +791501000168109 Trexject 7.5 mg/0.15 mL injection solution, 0.15 mL syringe 233714 791491000168102 Trexject 7.5 mg/0.15 mL injection solution, 0.15 mL syringe 791471000168103 Trexject 7.5 mg/0.15 mL injection solution, 0.15 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791481000168100 methotrexate 7.5 mg/0.15 mL injection, 0.15 mL syringe 791461000168109 methotrexate 7.5 mg/0.15 mL injection, syringe 21342011000036105 methotrexate +20850011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92117 14013011000036100 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28076011000036102 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20850011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92117 14013011000036100 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack 7294011000036104 Peg-Intron Redipen Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28076011000036102 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20850011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92117 14013011000036100 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28076011000036102 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +795791000168107 Lonquex 6 mg/0.6 mL injection solution, 0.6 mL syringe 231016 795781000168109 Lonquex 6 mg/0.6 mL injection solution, 0.6 mL syringe 795761000168100 Lonquex 6 mg/0.6 mL injection solution, 0.6 mL syringe 795731000168108 Lonquex 795731000168108 Lonquex 795771000168106 lipegfilgrastim 6 mg/0.6 mL injection, 0.6 mL syringe 795751000168102 lipegfilgrastim 6 mg/0.6 mL injection, syringe 795741000168104 lipegfilgrastim +1014181000168105 Valsartan (Apotex) 80 mg film-coated tablet, 30, blister pack 185858 1014171000168107 Valsartan (Apotex) 80 mg film-coated tablet, 30 1013871000168103 Valsartan (Apotex) 80 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63785011000036109 valsartan 80 mg tablet, 30 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +1082781000168102 Solian 50 mg uncoated tablet, 10, blister pack 96421 1082771000168100 Solian 50 mg uncoated tablet, 10 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 860481000168106 amisulpride 50 mg tablet, 10 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1054891000168107 Palexia SR 250 mg modified release tablet, 50, blister pack 165357 1054881000168109 Palexia SR 250 mg modified release tablet, 50 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054871000168106 tapentadol 250 mg modified release tablet, 50 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +671581000168103 Momasone 0.1% cream, 30 g, tube 171795 671571000168101 Momasone 0.1% cream, 30 g 671491000168104 Momasone 0.1% cream 671481000168102 Momasone 671481000168102 Momasone 671561000168107 mometasone furoate 0.1% cream, 30 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +1052721000168107 Palexia SR 200 mg modified release tablet, 60, blister pack 165356 1052711000168100 Palexia SR 200 mg modified release tablet, 60 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052701000168103 tapentadol 200 mg modified release tablet, 60 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +921870011000036108 Humira 20 mg/0.4 mL injection solution, 2 x 0.4 mL syringes 155315 921429011000036109 Humira 20 mg/0.4 mL injection solution, 2 x 0.4 mL syringes 921004011000036107 Humira 20 mg/0.4 mL injection solution, 0.4 mL syringe 4142011000036107 Humira 4142011000036107 Humira 922559011000036102 adalimumab 20 mg/0.4 mL injection, 2 x 0.4 mL syringes 922085011000036106 adalimumab 20 mg/0.4 mL injection, syringe 21584011000036107 adalimumab +921870011000036108 Humira 20 mg/0.4 mL injection solution, 2 x 0.4 mL syringes 199411 921429011000036109 Humira 20 mg/0.4 mL injection solution, 2 x 0.4 mL syringes 921004011000036107 Humira 20 mg/0.4 mL injection solution, 0.4 mL syringe 4142011000036107 Humira 4142011000036107 Humira 922559011000036102 adalimumab 20 mg/0.4 mL injection, 2 x 0.4 mL syringes 922085011000036106 adalimumab 20 mg/0.4 mL injection, syringe 21584011000036107 adalimumab +69078011000036108 Virasolve cream, 5 g, tube 14500 66879011000036106 Virasolve cream, 5 g 65397011000036108 Virasolve cream 64999011000036103 Virasolve 64999011000036103 Virasolve 71483011000036106 idoxuridine 0.5% + lidocaine (lignocaine) hydrochloride 2% + benzalkonium chloride 0.5% cream, 5 g 70029011000036101 idoxuridine 0.5% + lidocaine (lignocaine) hydrochloride 2% + benzalkonium chloride 0.5% cream 69772011000036108 idoxuridine + lidocaine (lignocaine) + benzalkonium chloride +43724011000036107 Fluconazole (Hexal) 100 mg/50 mL injection solution, 50 mL vial 104301 41137011000036100 Fluconazole (Hexal) 100 mg/50 mL injection solution, 50 mL vial 39950011000036108 Fluconazole (Hexal) 100 mg/50 mL injection solution, 50 mL vial 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 27177011000036102 fluconazole 100 mg/50 mL injection, 50 mL vial 22539011000036100 fluconazole 100 mg/50 mL injection, vial 21365011000036105 fluconazole +656551000168103 Famciclovir (AN) 500 mg film-coated tablet, 30, blister pack 195174 656541000168100 Famciclovir (AN) 500 mg film-coated tablet, 30 656531000168109 Famciclovir (AN) 500 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1016351000168107 Aripiprazole (GX) 15 mg uncoated tablet, 30, blister pack 217217 1016341000168105 Aripiprazole (GX) 15 mg uncoated tablet, 30 1016251000168102 Aripiprazole (GX) 15 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +60344011000036102 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 20, blister pack 140287 56303011000036103 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 20 53869011000036105 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60344011000036102 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 20, blister pack 160498 56303011000036103 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 20 53869011000036105 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +931405011000036102 Rispernia 1 mg film-coated tablet, 60, blister pack 127919 928191011000036107 Rispernia 1 mg film-coated tablet, 60 927850011000036109 Rispernia 1 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +705821000168101 Sorbolene Cream with Glycerin (Orion) cream, 500 g, pump pack 705811000168108 Sorbolene Cream with Glycerin (Orion) cream, 500 g 705721000168107 Sorbolene Cream with Glycerin (Orion) cream 27931000168107 Sorbolene Cream with Glycerin (Orion) 27931000168107 Sorbolene Cream with Glycerin (Orion) 705801000168105 glycerol 10% + cetomacrogol aqueous cream, 500 g 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +59855011000036100 Paracetamol Extra (Guardian) uncoated tablet, 24, blister pack 115172 55817011000036106 Paracetamol Extra (Guardian) uncoated tablet, 24 53633011000036106 Paracetamol Extra (Guardian) uncoated tablet 53508011000036102 Paracetamol Extra (Guardian) 53508011000036102 Paracetamol Extra (Guardian) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +81033011000036106 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 30, blister pack 104396 80476011000036101 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 30 80150011000036100 Carvedilol (Sandoz) 12.5 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 81578011000036101 carvedilol 12.5 mg tablet, 30 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +688661000168109 Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1, carton 688651000168107 Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1 48613011000036105 Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll 33731000168104 Combine Roll (2902165) (BSN) 33731000168104 Combine Roll (2902165) (BSN) 688641000168105 gauze and cotton tissue combine roll 9 cm x 10 m wrapped pack roll, 1 50941011000036109 gauze and cotton tissue combine roll 9 cm x 10 m wrapped pack roll 50777011000036105 gauze and cotton tissue combine roll +911421000168108 Cavstat 20 mg film-coated tablet, 15, blister pack 234514 911411000168101 Cavstat 20 mg film-coated tablet, 15 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911401000168104 rosuvastatin 20 mg tablet, 15 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +34827011000036102 Actiq 600 microgram lozenge on handle, 3, blister pack 91601 34402011000036104 Actiq 600 microgram lozenge on handle, 3 34077011000036102 Actiq 600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 35241011000036106 fentanyl 600 microgram lozenge on handle, 3 34912011000036104 fentanyl 600 microgram lozenge on handle 21258011000036102 fentanyl +60858011000036108 Lorastyne 10 mg uncoated tablet, 1, blister pack 59231 56812011000036106 Lorastyne 10 mg uncoated tablet, 1 54088011000036101 Lorastyne 10 mg uncoated tablet 14761000168104 Lorastyne 14761000168104 Lorastyne 63629011000036108 loratadine 10 mg tablet, 1 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +152341000036101 Deotine 60 mg enteric capsule, 28, blister pack 199255 150571000036104 Deotine 60 mg enteric capsule, 28 148221000036100 Deotine 60 mg enteric capsule 148041000036103 Deotine 148041000036103 Deotine 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +933215461000036102 Olanzapine IM (Lilly) 10 mg powder for injection, 10 vials 167676 933204911000036109 Olanzapine IM (Lilly) 10 mg powder for injection, 10 vials 933196101000036103 Olanzapine IM (Lilly) 10 mg powder for injection, 10 mg vial 11161000168100 Olanzapine IM (Lilly) 11161000168100 Olanzapine IM (Lilly) 46746011000036108 olanzapine 10 mg injection, 10 vials 45297011000036107 olanzapine 10 mg injection, vial 21485011000036103 olanzapine +20469011000036109 Hypnodorm 1 mg film-coated tablet, 30, bottle 78344 13671011000036102 Hypnodorm 1 mg film-coated tablet, 30 6954011000036109 Hypnodorm 1 mg film-coated tablet 3206011000036104 Hypnodorm 3206011000036104 Hypnodorm 27874011000036100 flunitrazepam 1 mg tablet, 30 23202011000036101 flunitrazepam 1 mg tablet 21785011000036107 flunitrazepam +933214821000036105 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 90, bottle 163564 933204421000036105 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 90 933195521000036105 Pravastatin Sodium (RZ) 10 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932406011000036105 pravastatin sodium 10 mg tablet, 90 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +739961000168108 Ranitidine (AN) 150 mg film-coated tablet, 20, blister pack 148523 739951000168106 Ranitidine (AN) 150 mg film-coated tablet, 20 739921000168103 Ranitidine (AN) 150 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1065651000168106 Febridol Co uncoated tablet, 20, bottle 196355 56357011000036102 Febridol Co uncoated tablet, 20 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +43942011000036107 Ramipril (Pharmacor) 5 mg hard capsule, 30, blister pack 146721 41434011000036107 Ramipril (Pharmacor) 5 mg hard capsule, 30 39795011000036102 Ramipril (Pharmacor) 5 mg hard capsule 39763011000036100 Ramipril (Pharmacor) 39763011000036100 Ramipril (Pharmacor) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +928461000168101 Cavstat 10 mg film-coated tablet, 100, bottle 234548 911131000168102 Cavstat 10 mg film-coated tablet, 100 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911121000168100 rosuvastatin 10 mg tablet, 100 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1014341000168102 Valsartan (Apotex) 320 mg film-coated tablet, 28, blister pack 185860 1014331000168106 Valsartan (Apotex) 320 mg film-coated tablet, 28 1014251000168105 Valsartan (Apotex) 320 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63184011000036103 valsartan 320 mg tablet, 28 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +915671000168105 Xylocard 2% (100 mg/5 mL) injection solution, 2 x 5 mL ampoules 12032 915661000168104 Xylocard 2% (100 mg/5 mL) injection solution, 2 x 5 mL ampoules 915611000168102 Xylocard 2% (100 mg/5 mL) injection solution, 5 mL ampoule 4153011000036102 Xylocard 4153011000036102 Xylocard 915651000168101 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, 2 x 5 mL ampoules 45126011000036100 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +933213211000036102 Citalopram (IPCA) 40 mg film-coated tablet, 56, blister pack 158854 933202901000036104 Citalopram (IPCA) 40 mg film-coated tablet, 56 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202911000036102 citalopram 40 mg tablet, 56 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +77255011000036104 Dronalen Plus 70 mg/140 microgram uncoated tablet, 1, blister pack 153488 76671011000036102 Dronalen Plus 70 mg/140 microgram uncoated tablet, 1 76104011000036108 Dronalen Plus 70 mg/140 microgram uncoated tablet 46201000168105 Dronalen Plus 70 mg/140 microgram 46201000168105 Dronalen Plus 70 mg/140 microgram 46289011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 1 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +885601000168106 Bivalirudin (Juno) 250 mg powder for injection, 1 vial 226748 885591000168104 Bivalirudin (Juno) 250 mg powder for injection, 1 vial 885581000168102 Bivalirudin (Juno) 250 mg powder for injection, 250 mg vial 885571000168100 Bivalirudin (Juno) 885571000168100 Bivalirudin (Juno) 26568011000036104 bivalirudin 250 mg injection, 1 vial 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +808541000168102 Pramipexole XR (GP) 2.25 mg modified release tablet, 30, blister pack 225588 808531000168106 Pramipexole XR (GP) 2.25 mg modified release tablet, 30 808481000168108 Pramipexole XR (GP) 2.25 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 933225441000036108 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet, 30 933220621000036106 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet 37716011000036100 pramipexole +881491000168101 Esmya 5 mg tablet, 28, blister pack 237700 881481000168104 Esmya 5 mg tablet, 28 881461000168108 Esmya 5 mg tablet 881441000168109 Esmya 881441000168109 Esmya 881471000168102 ulipristal acetate 5 mg tablet, 28 881451000168106 ulipristal acetate 5 mg tablet 838541000168108 ulipristal +44413011000036107 Somac 20 mg enteric tablet, 56, blister pack 70829 41872011000036109 Somac 20 mg enteric tablet, 56 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46677011000036103 pantoprazole 20 mg enteric tablet, 56 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +842941000168102 Centavite Adult film-coated tablet, 30, bottle 195402 842931000168106 Centavite Adult film-coated tablet, 30 842911000168101 Centavite Adult film-coated tablet 730571000168101 Centavite Adult 730571000168101 Centavite Adult 842921000168108 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 30 842901000168104 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet 731481000168107 betacarotene + vitamin A + colecalciferol + dl-alpha-tocopherol + thiamine + riboflavin + nicotinamide + pantothenic acid + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + selenium + lutein + lycopene +60845011000036100 Aspro Clear 300 mg effervescent tablet, 42, strip pack 58566 56801011000036102 Aspro Clear 300 mg effervescent tablet, 42 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 63578011000036107 aspirin 300 mg effervescent tablet, 42 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +680171000168109 Paracetamol (Act) 1 g/100 mL injection solution, 10 x 100 mL vials 172315 680161000168103 Paracetamol (Act) 1 g/100 mL injection solution, 10 x 100 mL vials 680151000168100 Paracetamol (Act) 1 g/100 mL injection solution, 100 mL vial 680141000168102 Paracetamol (Act) 680141000168102 Paracetamol (Act) 164061000036104 paracetamol 1 g/100 mL injection, 10 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +990731000168107 Amoxy/Clav 875/125 (Apo) film-coated tablet, 60, blister pack 255080 990721000168109 Amoxy/Clav 875/125 (Apo) film-coated tablet, 60 990671000168101 Amoxy/Clav 875/125 (Apo) film-coated tablet 990661000168107 Amoxy/Clav 875/125 (Apo) 990661000168107 Amoxy/Clav 875/125 (Apo) 914061000168108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 60 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +18310011000036105 Cyproterone Acetate (GenRx) 100 mg uncoated tablet, 50, blister pack 101535 11216011000036109 Cyproterone Acetate (GenRx) 100 mg uncoated tablet, 50 5763011000036109 Cyproterone Acetate (GenRx) 100 mg uncoated tablet 3476011000036106 Cyproterone Acetate (GenRx) 3476011000036106 Cyproterone Acetate (GenRx) 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +145921000036102 Renastart powder for oral liquid, 6 x 400 g cans 144561000036103 Renastart powder for oral liquid, 6 x 400 g cans 144931000168108 Renastart powder for oral liquid, 400 g can 53154011000036108 Renastart 53154011000036108 Renastart 144571000036106 whey protein formula supplemented with amino acids, long chain polyunsaturated fatty acids, vitamins and minerals, low in protein, phosphate, potassium and lactose powder for oral liquid, 6 x 400 g cans 144801000168106 whey protein formula supplemented with amino acids, long chain polyunsaturated fatty acids, vitamins and minerals, low in protein, phosphate, potassium and lactose powder for oral liquid, 400 g can 61806011000036105 whey protein formula supplemented with amino acids, long chain polyunsaturated fatty acids, vitamins and minerals, low in protein, phosphate, potassium and lactose +782821000168105 Palexia IR 50 mg film-coated tablet, 28, blister pack 165310 782811000168103 Palexia IR 50 mg film-coated tablet, 28 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782801000168101 tapentadol 50 mg tablet, 28 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +160311000036109 Montelukast (RBX) 10 mg film-coated tablet, 28, blister pack 184834 159071000036104 Montelukast (RBX) 10 mg film-coated tablet, 28 158001000036104 Montelukast (RBX) 10 mg film-coated tablet 124131000036100 Montelukast (RBX) 124131000036100 Montelukast (RBX) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +885761000168104 Sitagliptin (Blooms The Chemist) 100 mg coated tablet, 28, blister pack 224398 885751000168101 Sitagliptin (Blooms The Chemist) 100 mg coated tablet, 28 885741000168103 Sitagliptin (Blooms The Chemist) 100 mg coated tablet 885731000168107 Sitagliptin (Blooms The Chemist) 885731000168107 Sitagliptin (Blooms The Chemist) 39482011000036102 sitagliptin 100 mg tablet, 28 39437011000036105 sitagliptin 100 mg tablet 39426011000036109 sitagliptin +19496011000036104 Mobilis 10 mg hard capsule, 50, blister pack 55280 12772011000036105 Mobilis 10 mg hard capsule, 50 6066011000036103 Mobilis 10 mg hard capsule 25271000168109 Mobilis 25271000168109 Mobilis 27762011000036104 piroxicam 10 mg capsule, 50 23093011000036100 piroxicam 10 mg capsule 21531011000036103 piroxicam +86040011000036102 Daily Dose Aspirin 100 mg enteric tablet, 180, blister pack 136679 85626011000036105 Daily Dose Aspirin 100 mg enteric tablet, 180 85303011000036104 Daily Dose Aspirin 100 mg enteric tablet 85252011000036107 Daily Dose Aspirin 85252011000036107 Daily Dose Aspirin 86411011000036107 aspirin 100 mg enteric tablet, 180 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +947871000168108 Risdone 500 microgram film-coated tablet, 56, blister pack 144200 947861000168102 Risdone 500 microgram film-coated tablet, 56 947741000168107 Risdone 500 microgram film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947851000168104 risperidone 500 microgram tablet, 56 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +17911011000036103 Ciprofloxacin (Genepharm) 500 mg film-coated tablet, 14, blister pack 114044 11455011000036108 Ciprofloxacin (Genepharm) 500 mg film-coated tablet, 14 4961011000036107 Ciprofloxacin (Genepharm) 500 mg film-coated tablet 3463011000036107 Ciprofloxacin (Genepharm) 3463011000036107 Ciprofloxacin (Genepharm) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +34626011000036107 Pethidine Hydrochloride (DBL) 100 mg/2 mL injection solution, 50 x 2 mL ampoules 107387 34213011000036107 Pethidine Hydrochloride (DBL) 100 mg/2 mL injection solution, 50 x 2 mL ampoules 33964011000036109 Pethidine Hydrochloride (DBL) 100 mg/2 mL injection solution, 2 mL ampoule 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35098011000036100 pethidine hydrochloride 100 mg/2 mL injection, 50 x 2 mL ampoules 34848011000036104 pethidine hydrochloride 100 mg/2 mL injection, ampoule 34839011000036106 pethidine +37431011000036108 Dicobalt Edetate (iNova) 300 mg/20 mL injection solution, 6 x 20 mL ampoules 10562 36630011000036103 Dicobalt Edetate (iNova) 300 mg/20 mL injection solution, 6 x 20 mL ampoules 36100011000036106 Dicobalt Edetate (iNova) 300 mg/20 mL injection solution, 20 mL ampoule 35988011000036109 Dicobalt Edetate (iNova) 35988011000036109 Dicobalt Edetate (iNova) 38550011000036104 dicobalt edetate 300 mg/20 mL injection, 6 x 20 mL ampoules 37830011000036106 dicobalt edetate 300 mg/20 mL injection, ampoule 37739011000036102 dicobalt edetate +748571000168102 Docetaxel (Mayne) 20 mg/mL concentrated injection, 1 mL vial 209471 748561000168108 Docetaxel (Mayne) 20 mg/mL concentrated injection, 1 mL vial 748551000168106 Docetaxel (Mayne) 20 mg/mL concentrated injection, vial 748511000168105 Docetaxel (Mayne) 748511000168105 Docetaxel (Mayne) 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +988561000168107 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 24, blister pack 193082 988551000168105 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 24 817321000168102 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +44512011000036107 Imtrate 60 mg modified release tablet, 30, bottle 77093 12918011000036105 Imtrate 60 mg modified release tablet, 30 6208011000036108 Imtrate 60 mg modified release tablet 4261011000036108 Imtrate 4261011000036108 Imtrate 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +60258011000036103 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 5 sachets 134660 56217011000036100 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 5 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63358011000036107 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 5 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +60926011000036102 Nurofen 200 mg sugar coated tablet, 4, blister pack 61869 56880011000036105 Nurofen 200 mg sugar coated tablet, 4 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60926011000036102 Nurofen 200 mg sugar coated tablet, 4, blister pack 127272 56880011000036105 Nurofen 200 mg sugar coated tablet, 4 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933215221000036105 Tronz 4 mg film-coated tablet, 6, blister pack 163436 933204171000036100 Tronz 4 mg film-coated tablet, 6 933196321000036106 Tronz 4 mg film-coated tablet 933193581000036105 Tronz 933193581000036105 Tronz 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +50526011000036105 Betadine Gauze 10% (22.5 cm x 7.5 cm) medicated dressing, 12 pads, carton 49426011000036108 Betadine Gauze 10% (22.5 cm x 7.5 cm) medicated dressing, 12 pads 48583011000036104 Betadine Gauze 10% (22.5 cm x 7.5 cm) medicated dressing, 1 pad 63451000168105 Betadine Gauze 63451000168105 Betadine Gauze 51394011000036100 povidone-iodine 10% (22.5 cm x 7.5 cm) dressing, 12 pads 50915011000036102 povidone-iodine 10% (22.5 cm x 7.5 cm) dressing, 1 pad 21660011000036108 povidone-iodine +1020211000168106 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 84, blister pack 190327 1020201000168108 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 84 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82554011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 84 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +931534011000036100 Risedro Once a Week 35 mg uncoated tablet, 4, blister pack 162455 930695011000036106 Risedro Once a Week 35 mg uncoated tablet, 4 930018011000036107 Risedro Once a Week 35 mg uncoated tablet 47671000168101 Risedro Once a Week 47671000168101 Risedro Once a Week 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +739981000168104 Ranitidine (AN) 150 mg film-coated tablet, 28, blister pack 148523 739971000168102 Ranitidine (AN) 150 mg film-coated tablet, 28 739921000168103 Ranitidine (AN) 150 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +152181000036107 Candesartan Cilexetil (Auro) 32 mg uncoated tablet, 30, blister pack 195371 150301000036103 Candesartan Cilexetil (Auro) 32 mg uncoated tablet, 30 148701000036104 Candesartan Cilexetil (Auro) 32 mg uncoated tablet 147891000036104 Candesartan Cilexetil (Auro) 147891000036104 Candesartan Cilexetil (Auro) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +748731000168109 Ketamine (Claris) 200 mg/2 mL injection solution, 25 x 2 mL ampoules 219960 748721000168106 Ketamine (Claris) 200 mg/2 mL injection solution, 25 x 2 mL ampoules 748591000168101 Ketamine (Claris) 200 mg/2 mL injection solution, 2 mL ampoule 748581000168104 Ketamine (Claris) 748581000168104 Ketamine (Claris) 748711000168104 ketamine 200 mg/2 mL injection, 25 x 2 mL ampoules 720601000168109 ketamine 200 mg/2 mL injection, ampoule 34843011000036109 ketamine +928878011000036103 Valaciclovir (RBX) 500 mg film-coated tablet, 100, blister pack 142803 928240011000036106 Valaciclovir (RBX) 500 mg film-coated tablet, 100 927897011000036103 Valaciclovir (RBX) 500 mg film-coated tablet 927814011000036108 Valaciclovir (RBX) 927814011000036108 Valaciclovir (RBX) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +37414011000036101 Diflucan 150 mg hard capsule, 1, blister pack 10181 36614011000036103 Diflucan 150 mg hard capsule, 1 36091011000036107 Diflucan 150 mg hard capsule 11811000168107 Diflucan 11811000168107 Diflucan 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1022401000168108 Allerid 5 mg/5 mL oral liquid solution, 200 mL, bottle 137661 1022391000168106 Allerid 5 mg/5 mL oral liquid solution, 200 mL 1022361000168104 Allerid 5 mg/5 mL oral liquid solution, 5 mL 1022351000168101 Allerid 1022351000168101 Allerid 142571000036102 cetirizine hydrochloride 5 mg/5 mL oral liquid, 200 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +39389011000036103 Tryzan 2.5 mg uncoated tablet, 7, blister pack 129916 39273011000036103 Tryzan 2.5 mg uncoated tablet, 7 39210011000036103 Tryzan 2.5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39472011000036106 ramipril 2.5 mg tablet, 7 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +69039011000036102 Panadol Back and Neck Pain Relief 500 mg film-coated tablet, 20, blister pack 141412 66841011000036106 Panadol Back and Neck Pain Relief 500 mg film-coated tablet, 20 65331011000036105 Panadol Back and Neck Pain Relief 500 mg film-coated tablet 5221000168100 Panadol Back and Neck Pain Relief 5221000168100 Panadol Back and Neck Pain Relief 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +877541000168105 Albunate-20 20 g/100 mL intravenous infusion injection, 100 mL vial 223740 877531000168101 Albunate-20 20 g/100 mL intravenous infusion injection, 100 mL vial 877521000168104 Albunate-20 20 g/100 mL intravenous infusion injection, 100 mL vial 877511000168106 Albunate-20 877511000168106 Albunate-20 71758011000036101 albumin human 20 g/100 mL injection, 100 mL vial 70173011000036105 albumin human 20 g/100 mL injection, vial 69754011000036102 albumin human +881831000168103 Capeccord 150 mg film-coated tablet, 120, blister pack 213032 881821000168101 Capeccord 150 mg film-coated tablet, 120 881771000168108 Capeccord 150 mg film-coated tablet 881761000168102 Capeccord 881761000168102 Capeccord 667721000168108 capecitabine 150 mg tablet, 120 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +18314011000036100 Fluconazole (Winthrop) 200 mg hard capsule, 28, blister pack 132656 11937011000036101 Fluconazole (Winthrop) 200 mg hard capsule, 28 5211011000036104 Fluconazole (Winthrop) 200 mg hard capsule 4012011000036108 Fluconazole (Winthrop) 4012011000036108 Fluconazole (Winthrop) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +77345011000036105 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 10 x 50 mL syringes 51796 76761011000036101 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 10 x 50 mL syringes 76170011000036108 Optiray-350 Ultraject 741 mg (iodine 350 mg)/mL injection solution, 50 mL syringe 31781000168104 Optiray-350 Ultraject 31781000168104 Optiray-350 Ultraject 78268011000036107 ioversol 741 mg (iodine 350 mg)/mL injection, 10 x 50 mL syringes 77587011000036106 ioversol 741 mg (iodine 350 mg)/mL injection, 50 mL syringe 77421011000036103 ioversol +926657011000036103 Risperidone (Sandoz) 3 mg film-coated tablet, 60, blister pack 126159 926138011000036104 Risperidone (Sandoz) 3 mg film-coated tablet, 60 925596011000036103 Risperidone (Sandoz) 3 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +926899011000036109 Onkotrone 10 mg/5 mL concentrated injection, 5 mL vial 75722 926295011000036103 Onkotrone 10 mg/5 mL concentrated injection, 5 mL vial 925739011000036100 Onkotrone 10 mg/5 mL concentrated injection, 5 mL vial 3966011000036104 Onkotrone 3966011000036104 Onkotrone 27755011000036101 mitozantrone 10 mg/5 mL injection, 5 mL vial 23086011000036105 mitozantrone 10 mg/5 mL injection, vial 21652011000036102 mitozantrone +19492011000036103 Tensig 50 mg uncoated tablet, 30, blister pack 55168 12768011000036100 Tensig 50 mg uncoated tablet, 30 6062011000036102 Tensig 50 mg uncoated tablet 4214011000036107 Tensig 4214011000036107 Tensig 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +69339011000036101 Brolene Eye Drops 0.1% eye drops, 10 mL, bottle 27486 67139011000036102 Brolene Eye Drops 0.1% eye drops, 10 mL 65535011000036109 Brolene Eye Drops 0.1% eye drops 65136011000036105 Brolene Eye Drops 65136011000036105 Brolene Eye Drops 71704011000036101 propamidine isethionate 0.1% eye drops, 10 mL 70138011000036103 propamidine isethionate 0.1% eye drops 69853011000036102 propamidine isethionate +60442011000036102 Panoxyl 10% gel, 40 g, tube 14823 56401011000036107 Panoxyl 10% gel, 40 g 53904011000036104 Panoxyl 10% gel 29651000168100 Panoxyl 29651000168100 Panoxyl 63342011000036107 benzoyl peroxide 10% gel, 40 g 61954011000036104 benzoyl peroxide 10% gel 61709011000036104 benzoyl peroxide +948191000168104 Lamotran 200 mg tablet, 56, blister pack 147628 948181000168102 Lamotran 200 mg tablet, 56 948171000168100 Lamotran 200 mg tablet 948071000168101 Lamotran 948071000168101 Lamotran 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +921913011000036104 Prograf-XL 1 mg modified release capsule, 60, blister pack 158440 921472011000036103 Prograf-XL 1 mg modified release capsule, 60 921021011000036104 Prograf-XL 1 mg modified release capsule 6831000168108 Prograf-XL 6831000168108 Prograf-XL 922600011000036106 tacrolimus 1 mg modified release capsule, 60 922099011000036107 tacrolimus 1 mg modified release capsule 21380011000036104 tacrolimus +152111000036104 Flutiform 250 microgram/10 microgram pressurised inhalation, 120 actuations, metered dose aerosol can 177875 150231000036103 Flutiform 250 microgram/10 microgram pressurised inhalation, 120 actuations 148851000036107 Flutiform 250 microgram/10 microgram pressurised inhalation, actuation 57901000168104 Flutiform 250 microgram/10 microgram 57901000168104 Flutiform 250 microgram/10 microgram 150241000036108 fluticasone propionate 250 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 10 microgram/actuation pressurised inhalation, 120 actuations 148861000036105 fluticasone propionate 250 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 10 microgram/actuation pressurised inhalation, actuation 861531000168103 fluticasone propionate + formoterol (eformoterol) +847351000168101 Creon 40 000 enteric capsule, 100, bottle 158451 847341000168103 Creon 40 000 enteric capsule, 100 847321000168109 Creon 40 000 enteric capsule 847121000168107 Creon 40 000 847121000168107 Creon 40 000 847331000168107 lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule, 100 847311000168102 lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule 847131000168105 lipase + amylase + protease +19098011000036108 Provera 10 mg uncoated tablet, 100, blister pack 42934 12405011000036104 Provera 10 mg uncoated tablet, 100 5765011000036105 Provera 10 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 27144011000036107 medroxyprogesterone acetate 10 mg tablet, 100 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +956091000168102 Aricept-D 5 mg orally disintegrating tablet, 7, blister pack 116850 956081000168100 Aricept-D 5 mg orally disintegrating tablet, 7 956061000168109 Aricept-D 5 mg orally disintegrating tablet 956041000168105 Aricept-D 956041000168105 Aricept-D 956071000168103 donepezil hydrochloride 5 mg orally disintegrating tablet, 7 956051000168107 donepezil hydrochloride 5 mg orally disintegrating tablet 21256011000036101 donepezil +80026011000036106 Tamate 50 mg film-coated tablet, 60, blister pack 150445 79973011000036107 Tamate 50 mg film-coated tablet, 60 79923011000036108 Tamate 50 mg film-coated tablet 79904011000036104 Tamate 79904011000036104 Tamate 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +697571000168102 Dilart 160 mg film-coated tablet, 28, blister pack 167426 697561000168108 Dilart 160 mg film-coated tablet, 28 697551000168106 Dilart 160 mg film-coated tablet 697391000168109 Dilart 697391000168109 Dilart 63789011000036106 valsartan 160 mg tablet, 28 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +1018041000168109 Amisulpride (Apotex) 50 mg tablet, 60, blister pack 178893 1018031000168100 Amisulpride (Apotex) 50 mg tablet, 60 1018021000168103 Amisulpride (Apotex) 50 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +18464011000036107 Panadol 500 mg moulded suppository, 24, strip pack 15488 12095011000036105 Panadol 500 mg moulded suppository, 24 5292011000036109 Panadol 500 mg moulded suppository 17311000168105 Panadol 17311000168105 Panadol 26907011000036106 paracetamol 500 mg suppository, 24 22284011000036104 paracetamol 500 mg suppository 21433011000036107 paracetamol +1042531000168104 Nicotine (Amcal) 4 mg lozenge, 144, blister pack 213240 1042521000168102 Nicotine (Amcal) 4 mg lozenge, 144 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897861000168100 nicotine 4 mg lozenge, 144 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +933213131000036102 Pravastatin Sodium (HX) 40 mg tablet, 30, blister pack 152456 933201551000036102 Pravastatin Sodium (HX) 40 mg tablet, 30 933194701000036105 Pravastatin Sodium (HX) 40 mg tablet 933193361000036108 Pravastatin Sodium (HX) 933193361000036108 Pravastatin Sodium (HX) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +904931000168103 Candesartan (CH) 16 mg uncoated tablet, 30, blister pack 195367 904921000168101 Candesartan (CH) 16 mg uncoated tablet, 30 904881000168108 Candesartan (CH) 16 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +757301000168104 Palexia SR 25 mg modified release tablet, 40, blister pack 229737 757291000168100 Palexia SR 25 mg modified release tablet, 40 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757281000168103 tapentadol 25 mg modified release tablet, 40 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +853131000168100 Gabapen 300 mg hard capsule, 4, blister pack 204499 853121000168103 Gabapen 300 mg hard capsule, 4 853051000168107 Gabapen 300 mg hard capsule 853011000168106 Gabapen 853011000168106 Gabapen 853111000168105 gabapentin 300 mg capsule, 4 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +60245011000036106 Fexo (Guardian) 180 mg film-coated tablet, 10, blister pack 134656 56204011000036109 Fexo (Guardian) 180 mg film-coated tablet, 10 53841011000036102 Fexo (Guardian) 180 mg film-coated tablet 53537011000036107 Fexo (Guardian) 53537011000036107 Fexo (Guardian) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +923753011000036109 Novicrit 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 147844 923304011000036103 Novicrit 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 922990011000036107 Novicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924120011000036105 epoetin lambda 6000 units/0.6 mL injection, 6 x 0.6 mL syringes 923950011000036108 epoetin lambda 6000 units/0.6 mL injection, syringe 923930011000036107 epoetin lambda +18708011000036105 Methyl Salicylate Compound (Gold Cross) ointment, 100 g, jar 14227 12016011000036102 Methyl Salicylate Compound (Gold Cross) ointment, 100 g 5043011000036100 Methyl Salicylate Compound (Gold Cross) ointment 3637011000036108 Methyl Salicylate Compound (Gold Cross) 3637011000036108 Methyl Salicylate Compound (Gold Cross) 26850011000036107 methyl salicylate 9.6% + menthol 4.6% + chloral hydrate 2.3% + zinc oxide 6.4% ointment, 100 g 22231011000036108 methyl salicylate 9.6% + menthol 4.6% + chloral hydrate 2.3% + zinc oxide 6.4% ointment 21843011000036100 methyl salicylate + menthol + chloral hydrate + zinc oxide +61423011000036104 Paracetamol (Herron) 500 mg uncoated tablet, 20, bottle 82690 57348011000036102 Paracetamol (Herron) 500 mg uncoated tablet, 20 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +85641000036102 Dutran 75 microgram/hour patch, 5, sachet 190792 84771000036100 Dutran 75 microgram/hour patch, 5 84101000036108 Dutran 75 microgram/hour patch 83931000036102 Dutran 83931000036102 Dutran 26651011000036105 fentanyl 75 microgram/hour patch, 5 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +61363011000036100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 50 mL, bottle 81520 57288011000036100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 50 mL 54260011000036109 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 5 mL 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 63869011000036106 ibuprofen 100 mg/5 mL oral liquid, 50 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +673911000168101 Contour Next diagnostic strip, 50, bottle 673901000168104 Contour Next diagnostic strip, 50 673871000168104 Contour Next diagnostic strip 673861000168105 Contour Next 673861000168105 Contour Next 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1123211000168105 Gardasil 9 injection suspension, 10 x 0.5 mL vials 224093 1123201000168107 Gardasil 9 injection suspension, 10 x 0.5 mL vials 1123151000168104 Gardasil 9 injection suspension, 0.5 mL vial 1122871000168109 Gardasil 9 1122871000168109 Gardasil 9 1123191000168109 human papillomavirus 9 valent vaccine injection, 10 x 0.5 mL vials 1123141000168101 human papillomavirus 9 valent vaccine injection, 0.5 mL vial 1122881000168107 human papillomavirus 9 valent vaccine +971161000168103 Glivanib 100 mg hard capsule, 24, blister pack 285899 971151000168100 Glivanib 100 mg hard capsule, 24 971141000168102 Glivanib 100 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 828811000168108 imatinib 100 mg capsule, 24 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +933215141000036108 Danset ODT 8 mg orally disintegrating tablet, 10, blister pack 163650 933204671000036106 Danset ODT 8 mg orally disintegrating tablet, 10 933195641000036103 Danset ODT 8 mg orally disintegrating tablet 32131000168105 Danset ODT 32131000168105 Danset ODT 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +879071000168102 Pregnyl (1 x 5000 units vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 273874 879061000168108 Pregnyl (1 x 5000 units vial, 1 x 1 mL inert diluent vial), 1 pack 878971000168106 Pregnyl (inert substance) diluent, 1 mL vial 3127011000036109 Pregnyl 3127011000036109 Pregnyl 879051000168106 human chorionic gonadotrophin 5000 units injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +879071000168102 Pregnyl (1 x 5000 units vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 273874 879061000168108 Pregnyl (1 x 5000 units vial, 1 x 1 mL inert diluent vial), 1 pack 879041000168109 Pregnyl (human chorionic gonadotrophin 5000 units) powder for injection, 5000 units vial 3127011000036109 Pregnyl 3127011000036109 Pregnyl 879051000168106 human chorionic gonadotrophin 5000 units injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 879031000168100 human chorionic gonadotrophin 5000 units injection, vial 33633011000036101 human chorionic gonadotrophin +18914011000036106 Albalon Liquifilm 0.1% eye drops solution, 15 mL, bottle 23197 12222011000036101 Albalon Liquifilm 0.1% eye drops solution, 15 mL 4745011000036106 Albalon Liquifilm 0.1% eye drops solution 55121000168103 Albalon Liquifilm 55121000168103 Albalon Liquifilm 26993011000036104 naphazoline hydrochloride 0.1% eye drops, 15 mL 22366011000036104 naphazoline hydrochloride 0.1% eye drops 21921011000036106 naphazoline +649881000168103 Rosuvastatin (DRLA) 20 mg film-coated tablet, 30, blister pack 210837 649871000168101 Rosuvastatin (DRLA) 20 mg film-coated tablet, 30 649861000168107 Rosuvastatin (DRLA) 20 mg film-coated tablet 649571000168104 Rosuvastatin (DRLA) 649571000168104 Rosuvastatin (DRLA) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +19462011000036101 Cyprone 50 mg uncoated tablet, 20, blister pack 54562 12739011000036102 Cyprone 50 mg uncoated tablet, 20 6034011000036102 Cyprone 50 mg uncoated tablet 4359011000036105 Cyprone 4359011000036105 Cyprone 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +19462011000036101 Cyprone 50 mg uncoated tablet, 20, blister pack 266552 12739011000036102 Cyprone 50 mg uncoated tablet, 20 6034011000036102 Cyprone 50 mg uncoated tablet 4359011000036105 Cyprone 4359011000036105 Cyprone 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +69112011000036107 Strepsils original flavour lozenge, 16, blister pack 14974 66913011000036109 Strepsils original flavour lozenge, 16 65227011000036108 Strepsils original flavour lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +43561011000036104 Fluorescein Sodium (Novartis) 500 mg/5 mL injection solution, 10 x 5 mL ampoules 124565 41316011000036102 Fluorescein Sodium (Novartis) 500 mg/5 mL injection solution, 10 x 5 mL ampoules 39890011000036108 Fluorescein Sodium (Novartis) 500 mg/5 mL injection solution, 5 mL ampoule 39678011000036106 Fluorescein Sodium (Novartis) 39678011000036106 Fluorescein Sodium (Novartis) 46241011000036108 fluorescein sodium 500 mg/5 mL injection, 10 x 5 mL ampoules 45043011000036101 fluorescein sodium 500 mg/5 mL injection, ampoule 44934011000036102 fluorescein +59911011000036103 Strong Pain Relief (Chemmart) tablet, 96, blister pack 117609 55873011000036105 Strong Pain Relief (Chemmart) tablet, 96 53704011000036105 Strong Pain Relief (Chemmart) tablet 53479011000036108 Strong Pain Relief (Chemmart) 53479011000036108 Strong Pain Relief (Chemmart) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +44529011000036107 Midazolam (Sandoz) 5 mg/mL injection solution, 5 x 1 mL ampoules 78972 41982011000036106 Midazolam (Sandoz) 5 mg/mL injection solution, 5 x 1 mL ampoules 40301011000036104 Midazolam (Sandoz) 5 mg/mL injection solution, ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +1089451000168109 Paracetamol (Genpar) 500 mg film-coated tablet, 50, blister pack 280973 1089441000168107 Paracetamol (Genpar) 500 mg film-coated tablet, 50 1089371000168107 Paracetamol (Genpar) 500 mg film-coated tablet 1089361000168101 Paracetamol (Genpar) 1089361000168101 Paracetamol (Genpar) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +68795011000036109 Stingose 20% gel, 25 g, tube 10315 66493011000036107 Stingose 20% gel, 25 g 65517011000036106 Stingose 20% gel 64947011000036100 Stingose 64947011000036100 Stingose 71226011000036105 aluminium sulfate 20% gel, 25 g 69908011000036105 aluminium sulfate 20% gel 69836011000036107 aluminium sulfate +954001000168103 Zolpidem (Chemmart) 5 mg film-coated tablet, 14, blister pack 127149 953991000168106 Zolpidem (Chemmart) 5 mg film-coated tablet, 14 953961000168104 Zolpidem (Chemmart) 5 mg film-coated tablet 923301000168103 Zolpidem (Chemmart) 923301000168103 Zolpidem (Chemmart) 926201000168102 zolpidem tartrate 5 mg tablet, 14 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +1025211000168104 Perindopril Combi LD 2.5/0.625 (Ardix) film-coated tablet, 30, bottle 269532 1025201000168102 Perindopril Combi LD 2.5/0.625 (Ardix) film-coated tablet, 30 1025171000168101 Perindopril Combi LD 2.5/0.625 (Ardix) film-coated tablet 1025161000168107 Perindopril Combi LD 2.5/0.625 (Ardix) 1025161000168107 Perindopril Combi LD 2.5/0.625 (Ardix) 26766011000036104 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet, 30 22153011000036106 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +34780011000036106 Oxycontin 80 mg modified release tablet, 60, blister pack 68193 34358011000036104 Oxycontin 80 mg modified release tablet, 60 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35206011000036108 oxycodone hydrochloride 80 mg modified release tablet, 60 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +956651000168101 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 200 mL bags 49602 956641000168103 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 200 mL bags 956601000168100 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 200 mL bag 920924011000036100 Visipaque 920924011000036100 Visipaque 956621000168109 iodixanol 652 mg (iodine 320 mg)/mL injection, 10 x 200 mL bags 956591000168107 iodixanol 652 mg (iodine 320 mg)/mL injection, 200 mL bag 922032011000036109 iodixanol +1023041000168105 Aripiprazole (Teva) 10 mg uncoated tablet, 30, blister pack 237952 1023031000168101 Aripiprazole (Teva) 10 mg uncoated tablet, 30 1023021000168104 Aripiprazole (Teva) 10 mg uncoated tablet 1023011000168106 Aripiprazole (Teva) 1023011000168106 Aripiprazole (Teva) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1091601000168107 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 30, bottle 283613 819641000168108 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 30 819611000168109 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +73245011000036108 Tiger Balm Red ointment, 18 g, jar 11209 73046011000036108 Tiger Balm Red ointment, 18 g 72930011000036108 Tiger Balm Red ointment 58511000168106 Tiger Balm Red 58511000168106 Tiger Balm Red 73452011000036102 camphor 11% + menthol 10% + cajuput oil 7% + mint oil dementholised 6% + clove bud oil 5% ointment, 18 g 73360011000036104 camphor 11% + menthol 10% + cajuput oil 7% + mint oil dementholised 6% + clove bud oil 5% ointment 73353011000036103 camphor + menthol + cajuput oil + mint oil dementholised + clove bud oil +881811000168108 Capeccord 150 mg film-coated tablet, 60, blister pack 213032 881801000168105 Capeccord 150 mg film-coated tablet, 60 881771000168108 Capeccord 150 mg film-coated tablet 881761000168102 Capeccord 881761000168102 Capeccord 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +956011000168106 Genexol 300 mg/50 mL concentrated injection, 50 mL vial 129580 956001000168108 Genexol 300 mg/50 mL concentrated injection, 50 mL vial 955991000168107 Genexol 300 mg/50 mL concentrated injection, 50 mL vial 955891000168100 Genexol 955891000168100 Genexol 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +21000011000036101 Cefaclor (Chemmart) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 169115 14146011000036105 Cefaclor (Chemmart) 250 mg/5 mL powder for oral liquid, 75 mL 7425011000036106 Cefaclor (Chemmart) 250 mg/5 mL powder for oral liquid, 5 mL 3425011000036103 Cefaclor (Chemmart) 3425011000036103 Cefaclor (Chemmart) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +21000011000036101 Cefaclor (Chemmart) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 96317 14146011000036105 Cefaclor (Chemmart) 250 mg/5 mL powder for oral liquid, 75 mL 7425011000036106 Cefaclor (Chemmart) 250 mg/5 mL powder for oral liquid, 5 mL 3425011000036103 Cefaclor (Chemmart) 3425011000036103 Cefaclor (Chemmart) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +68962011000036109 Sodium Thiosulfate (DBL) 25% (2.5 g/10 mL) injection solution, 5 x 10 mL vials 133490 66764011000036102 Sodium Thiosulfate (DBL) 25% (2.5 g/10 mL) injection solution, 5 x 10 mL vials 65200011000036103 Sodium Thiosulfate (DBL) 25% (2.5 g/10 mL) injection solution, 10 mL vial 65009011000036103 Sodium Thiosulfate (DBL) 65009011000036103 Sodium Thiosulfate (DBL) 71416011000036103 sodium thiosulfate pentahydrate 25% (2.5 g/10 mL) injection, 5 x 10 mL vials 70004011000036108 sodium thiosulfate pentahydrate 25% (2.5 g/10 mL) injection, vial 69828011000036108 sodium thiosulfate +77281000036106 Naproxen (Phebra) 125 mg/5 mL oral liquid suspension, 474 mL, bottle 196596 76981000036104 Naproxen (Phebra) 125 mg/5 mL oral liquid suspension, 474 mL 76681000036106 Naproxen (Phebra) 125 mg/5 mL oral liquid suspension, 5 mL 77511000036100 Naproxen (Phebra) 77511000036100 Naproxen (Phebra) 26538011000036109 naproxen 125 mg/5 mL oral liquid, 474 mL 21947011000036101 naproxen 125 mg/5 mL oral liquid 21304011000036105 naproxen +82888011000036106 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30, bottle 157746 11304011000036106 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30 4960011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +851761000168108 Bicalutamide (Tolmar) 50 mg film-coated tablet, 28, blister pack 226975 851751000168106 Bicalutamide (Tolmar) 50 mg film-coated tablet, 28 851741000168109 Bicalutamide (Tolmar) 50 mg film-coated tablet 851731000168100 Bicalutamide (Tolmar) 851731000168100 Bicalutamide (Tolmar) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1039721000168102 Atomoxetine (Actavis) 100 mg hard capsule, 7, blister pack 237260 1039711000168109 Atomoxetine (Actavis) 100 mg hard capsule, 7 1039681000168108 Atomoxetine (Actavis) 100 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +1108681000168100 Midazolam (Claris) 5 mg/mL injection solution, 10 x 1 mL ampoules 216024 1108671000168103 Midazolam (Claris) 5 mg/mL injection solution, 10 x 1 mL ampoules 1108641000168105 Midazolam (Claris) 5 mg/mL injection solution, ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +86841011000036108 Densiron-68 implant, 1, syringe 86738011000036101 Densiron-68 implant, 1 86612011000036103 Densiron-68 implant 86604011000036105 Densiron-68 86604011000036105 Densiron-68 87008011000036109 perfluorohexyloctane 30.5% + polydimethyl siloxane 69.5% implant, 1 86921011000036103 perfluorohexyloctane 30.5% + polydimethyl siloxane 69.5% implant 86906011000036103 perfluorohexyloctane + polydimethyl siloxane +1018841000168101 Aripiprazole (Actavis) 30 mg uncoated tablet, 30, blister pack 217203 1018831000168105 Aripiprazole (Actavis) 30 mg uncoated tablet, 30 1018821000168107 Aripiprazole (Actavis) 30 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +44045011000036105 Tazocin 4g / 500mg powder for injection, 10 x 4.5 g vials 48067 41534011000036103 Tazocin 4g / 500mg powder for injection, 10 x 4.5 g vials 40045011000036108 Tazocin 4g / 500mg powder for injection, 4.5 g vial 16581000168109 Tazocin 4g / 500mg 16581000168109 Tazocin 4g / 500mg 46369011000036107 piperacillin 4 g + tazobactam 500 mg injection, 10 x 4.5 g vials 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +812691000168109 Citalopram (Amneal) 40 mg film-coated tablet, 7, blister pack 158883 812681000168106 Citalopram (Amneal) 40 mg film-coated tablet, 7 812671000168108 Citalopram (Amneal) 40 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933202931000036106 citalopram 40 mg tablet, 7 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +61196011000036104 Bugesic 200 mg film-coated tablet, 40, blister pack 75376 57132011000036106 Bugesic 200 mg film-coated tablet, 40 54211011000036101 Bugesic 200 mg film-coated tablet 53403011000036104 Bugesic 53403011000036104 Bugesic 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60395011000036108 Febridol Co uncoated tablet, 10, blister pack 144070 56354011000036108 Febridol Co uncoated tablet, 10 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 63319011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 10 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +783141000168103 Palexia IR 75 mg film-coated tablet, 14, blister pack 165317 783131000168107 Palexia IR 75 mg film-coated tablet, 14 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783121000168109 tapentadol 75 mg tablet, 14 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +981911000168107 Lovenox Forte 150 mg/mL injection solution, 8 x 1 mL syringes 80271 981901000168109 Lovenox Forte 150 mg/mL injection solution, 8 x 1 mL syringes 981891000168105 Lovenox Forte 150 mg/mL injection solution, syringe 981881000168107 Lovenox Forte 981881000168107 Lovenox Forte 46707011000036103 enoxaparin sodium 150 mg/mL injection, 8 x 1 mL syringes 45276011000036101 enoxaparin sodium 150 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +926753011000036102 Nicorette Freshfruit 4 mg chewing gum, 30, blister pack 142472 926152011000036101 Nicorette Freshfruit 4 mg chewing gum, 30 87069011000036100 Nicorette Freshfruit 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 927323011000036100 nicotine 4 mg gum, 30 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +931532011000036109 Pioglitazone (Sandoz) 15 mg uncoated tablet, 28, blister pack 162223 930693011000036105 Pioglitazone (Sandoz) 15 mg uncoated tablet, 28 930016011000036108 Pioglitazone (Sandoz) 15 mg uncoated tablet 929842011000036103 Pioglitazone (Sandoz) 929842011000036103 Pioglitazone (Sandoz) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +933212891000036102 Pantoprazole (Apo) 20 mg enteric tablet, 30, bottle 156339 933202531000036103 Pantoprazole (Apo) 20 mg enteric tablet, 30 933195171000036104 Pantoprazole (Apo) 20 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +20493011000036108 Doxycycline (Terry White Chemists) 50 mg uncoated tablet, 25, blister pack 78599 13693011000036105 Doxycycline (Terry White Chemists) 50 mg uncoated tablet, 25 6975011000036106 Doxycycline (Terry White Chemists) 50 mg uncoated tablet 4107011000036101 Doxycycline (Terry White Chemists) 4107011000036101 Doxycycline (Terry White Chemists) 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +931568011000036102 Cholpra 40 mg film-coated tablet, 100, bottle 163545 930729011000036106 Cholpra 40 mg film-coated tablet, 100 930030011000036100 Cholpra 40 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +850801000168107 Temozolomide (Amneal) 5 mg hard capsule, 5, sachet 206042 850791000168106 Temozolomide (Amneal) 5 mg hard capsule, 5 850781000168108 Temozolomide (Amneal) 5 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +919601000168103 Antenex 10 mg uncoated tablet, 100, blister pack 17603 919591000168105 Antenex 10 mg uncoated tablet, 100 919541000168102 Antenex 10 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 919581000168107 diazepam 10 mg tablet, 100 919531000168106 diazepam 10 mg tablet 21688011000036107 diazepam +34712011000036107 Methadone Hydrochloride Syrup (Orion) 125 microgram/mL oral liquid solution, 20 mL, bottle 21162 34296011000036102 Methadone Hydrochloride Syrup (Orion) 125 microgram/mL oral liquid solution, 20 mL 34019011000036100 Methadone Hydrochloride Syrup (Orion) 125 microgram/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35145011000036106 methadone hydrochloride 125 microgram/mL oral liquid, 20 mL 34867011000036107 methadone hydrochloride 125 microgram/mL oral liquid 21357011000036109 methadone +920790011000036107 Tamoxifen (Sandoz) 20 mg film-coated tablet, 60, blister pack 80076 920469011000036105 Tamoxifen (Sandoz) 20 mg film-coated tablet, 60 920201011000036109 Tamoxifen (Sandoz) 20 mg film-coated tablet 920111011000036108 Tamoxifen (Sandoz) 920111011000036108 Tamoxifen (Sandoz) 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +677521000168106 Breo Ellipta 200/25 powder for inhalation, 14 actuations, blister pack 199747 677511000168104 Breo Ellipta 200/25 powder for inhalation, 14 actuations 677461000168102 Breo Ellipta 200/25 powder for inhalation, actuation 677421000168107 Breo Ellipta 200/25 677421000168107 Breo Ellipta 200/25 677501000168102 fluticasone furoate 200 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, 14 actuations 677451000168104 fluticasone furoate 200 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, actuation 861401000168109 fluticasone furoate + vilanterol +781221000168104 Oxycodone MR (GenRx) 10 mg modified release tablet, 60, blister pack 214494 781211000168106 Oxycodone MR (GenRx) 10 mg modified release tablet, 60 781151000168100 Oxycodone MR (GenRx) 10 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +1023201000168103 Ibuprofen (A) 200 mg film-coated tablet, 30, blister pack 161314 1023191000168101 Ibuprofen (A) 200 mg film-coated tablet, 30 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63849011000036104 ibuprofen 200 mg tablet, 30 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +876741000168103 Albunate-25 25 g/100 mL intravenous infusion injection, 100 mL vial 223739 876731000168107 Albunate-25 25 g/100 mL intravenous infusion injection, 100 mL vial 876711000168102 Albunate-25 25 g/100 mL intravenous infusion injection, 100 mL vial 876611000168109 Albunate-25 876611000168109 Albunate-25 876721000168109 albumin human 25 g/100 mL injection, 100 mL vial 876701000168100 albumin human 25 g/100 mL injection, vial 69754011000036102 albumin human +20977011000036106 Zimstat 20 mg film-coated tablet, 30, bottle 95679 14123011000036102 Zimstat 20 mg film-coated tablet, 30 7400011000036106 Zimstat 20 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +87722011000036101 Pentasa 1 g modified release tablet, 20, blister pack 164142 87488011000036104 Pentasa 1 g modified release tablet, 20 87338011000036104 Pentasa 1 g modified release tablet 3593011000036100 Pentasa 3593011000036100 Pentasa 87826011000036104 mesalazine 1 g modified release tablet, 20 87763011000036100 mesalazine 1 g modified release tablet 21351011000036101 mesalazine +957051000168109 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 200 mL bags 49609 957041000168107 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 200 mL bags 957021000168101 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 200 mL bag 920924011000036100 Visipaque 920924011000036100 Visipaque 957031000168103 iodixanol 550 mg (iodine 270 mg)/mL injection, 10 x 200 mL bags 957011000168108 iodixanol 550 mg (iodine 270 mg)/mL injection, 200 mL bag 922032011000036109 iodixanol +1095211000168109 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 10, blister pack 287307 1095201000168106 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 10 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +888251000168101 Tagrisso 40 mg film-coated tablet, 30, blister pack 255493 888241000168103 Tagrisso 40 mg film-coated tablet, 30 888221000168109 Tagrisso 40 mg film-coated tablet 888141000168106 Tagrisso 888141000168106 Tagrisso 888231000168107 osimertinib 40 mg tablet, 30 888211000168102 osimertinib 40 mg tablet 888151000168108 osimertinib +44345011000036106 Novonorm 2 mg uncoated tablet, 120, blister pack 67271 41812011000036103 Novonorm 2 mg uncoated tablet, 120 40209011000036105 Novonorm 2 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46618011000036109 repaglinide 2 mg tablet, 120 45241011000036105 repaglinide 2 mg tablet 44883011000036104 repaglinide +79668011000036106 Pradaxa 110 mg hard capsule, 30, blister pack 138402 79465011000036102 Pradaxa 110 mg hard capsule, 30 79354011000036104 Pradaxa 110 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79799011000036109 dabigatran etexilate 110 mg capsule, 30 79737011000036108 dabigatran etexilate 110 mg capsule 79729011000036103 dabigatran +1060671000168105 Aripiprazole (Apo) 2 mg uncoated tablet, 30, bottle 152917 963491000168105 Aripiprazole (Apo) 2 mg uncoated tablet, 30 963481000168107 Aripiprazole (Apo) 2 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +926933011000036107 Cold Sore (Pharmacy Health) 5% cream, 5 g, tube 91724 926327011000036108 Cold Sore (Pharmacy Health) 5% cream, 5 g 925763011000036108 Cold Sore (Pharmacy Health) 5% cream 925539011000036104 Cold Sore (Pharmacy Health) 925539011000036104 Cold Sore (Pharmacy Health) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +14351000036109 Bisoprolol Fumarate (Chemmart) 2.5 mg tablet, 28, blister pack 182118 7971000036105 Bisoprolol Fumarate (Chemmart) 2.5 mg tablet, 28 2181000036107 Bisoprolol Fumarate (Chemmart) 2.5 mg tablet 671000036106 Bisoprolol Fumarate (Chemmart) 671000036106 Bisoprolol Fumarate (Chemmart) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +86149011000036104 Famciclovir (Sandoz) 250 mg film-coated tablet, 56, blister pack 162313 85757011000036104 Famciclovir (Sandoz) 250 mg film-coated tablet, 56 85376011000036104 Famciclovir (Sandoz) 250 mg film-coated tablet 85265011000036105 Famciclovir (Sandoz) 85265011000036105 Famciclovir (Sandoz) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +931738011000036108 Ear Care Antiseptic (Natural Look) 0.13% lotion, 125 mL, bottle 45901 930898011000036105 Ear Care Antiseptic (Natural Look) 0.13% lotion, 125 mL 930102011000036104 Ear Care Antiseptic (Natural Look) 0.13% lotion 60721000168104 Ear Care Antiseptic (Natural Look) 60721000168104 Ear Care Antiseptic (Natural Look) 932478011000036100 benzalkonium chloride 0.13% lotion, 125 mL 929147011000036107 benzalkonium chloride 0.13% lotion 50773011000036101 benzalkonium chloride +20764011000036103 Eutroxsig 200 microgram uncoated tablet, 200, bottle 90767 13933011000036104 Eutroxsig 200 microgram uncoated tablet, 200 7221011000036105 Eutroxsig 200 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 28023011000036109 levothyroxine sodium 200 microgram tablet, 200 23346011000036103 levothyroxine sodium 200 microgram tablet 21577011000036109 levothyroxine +20885011000036103 Adefin 20 mg film-coated tablet, 60, blister pack 93000 14047011000036103 Adefin 20 mg film-coated tablet, 60 7325011000036100 Adefin 20 mg film-coated tablet 61521000168102 Adefin 61521000168102 Adefin 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +789901000168101 Oxycontin 15 mg modified release tablet, 100, bottle 200027 789891000168100 Oxycontin 15 mg modified release tablet, 100 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789881000168103 oxycodone hydrochloride 15 mg modified release tablet, 100 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +765411000168106 Fraxiparine 5700 anti-Xa units/0.6 mL injection solution, 2 x 0.6 mL syringes 51311 765401000168108 Fraxiparine 5700 anti-Xa units/0.6 mL injection solution, 2 x 0.6 mL syringes 765381000168108 Fraxiparine 5700 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765391000168106 nadroparin calcium 5700 anti-Xa units/0.6 mL injection, 2 x 0.6 mL syringes 765371000168105 nadroparin calcium 5700 anti-Xa units/0.6 mL injection, syringe 765071000168107 nadroparin +989041000168106 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 30, blister pack 253293 989031000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 30 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +989041000168106 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 30, blister pack 287306 989031000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 30 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +20447011000036109 Aranesp 150 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 77959 13650011000036107 Aranesp 150 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 6933011000036108 Aranesp 150 microgram/0.3 mL injection solution, 0.3 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27860011000036101 darbepoetin alfa 150 microgram/0.3 mL injection, 4 x 0.3 mL syringes 23188011000036104 darbepoetin alfa 150 microgram/0.3 mL injection, syringe 21234011000036105 darbepoetin alfa +13141000036107 Quetiapine (RBX) 100 mg film-coated tablet, 90, blister pack 166429 8241000036106 Quetiapine (RBX) 100 mg film-coated tablet, 90 3401000036102 Quetiapine (RBX) 100 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +20522011000036102 Iscover 75 mg film-coated tablet, 28, blister pack 79021 13722011000036101 Iscover 75 mg film-coated tablet, 28 7004011000036106 Iscover 75 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +50429011000036108 Omnitest Plus diagnostic strip, 50, bottle 130882 49574011000036109 Omnitest Plus diagnostic strip, 50 48777011000036104 Omnitest Plus diagnostic strip 54331000168102 Omnitest Plus 54331000168102 Omnitest Plus 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +68704011000036107 Benzemul Application 25% lotion, 200 mL, bottle 11491 66614011000036105 Benzemul Application 25% lotion, 200 mL 65466011000036102 Benzemul Application 25% lotion 61121000168109 Benzemul Application 61121000168109 Benzemul Application 71335011000036107 benzyl benzoate 25% lotion, 200 mL 69957011000036104 benzyl benzoate 25% lotion 69818011000036102 benzyl benzoate +1026491000168101 Pregabalin (Amneal) 75 mg hard capsule, 30, bottle 235842 1026481000168104 Pregabalin (Amneal) 75 mg hard capsule, 30 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 971431000168102 pregabalin 75 mg capsule, 30 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +933212811000036107 Lisinopril (Auro) 20 mg uncoated tablet, 30, blister pack 148275 933202171000036106 Lisinopril (Auro) 20 mg uncoated tablet, 30 933195261000036104 Lisinopril (Auro) 20 mg uncoated tablet 51351000168106 Lisinopril (Auro) 51351000168106 Lisinopril (Auro) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +931431000168100 Centevo 75/18.75/200 mg film-coated tablet, 150, bottle 238853 931421000168103 Centevo 75/18.75/200 mg film-coated tablet, 150 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931411000168105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 150 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +43815011000036102 Fluconazole (Hexal) 200 mg hard capsule, 28, bottle 104294 11286011000036107 Fluconazole (Hexal) 200 mg hard capsule, 28 4699011000036107 Fluconazole (Hexal) 200 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +19940011000036108 Magicul 400 mg film-coated tablet, 60, blister pack 213382 13184011000036107 Magicul 400 mg film-coated tablet, 60 6467011000036105 Magicul 400 mg film-coated tablet 3689011000036105 Magicul 3689011000036105 Magicul 27866011000036103 cimetidine 400 mg tablet, 60 23194011000036105 cimetidine 400 mg tablet 21427011000036101 cimetidine +19940011000036108 Magicul 400 mg film-coated tablet, 60, blister pack 67185 13184011000036107 Magicul 400 mg film-coated tablet, 60 6467011000036105 Magicul 400 mg film-coated tablet 3689011000036105 Magicul 3689011000036105 Magicul 27866011000036103 cimetidine 400 mg tablet, 60 23194011000036105 cimetidine 400 mg tablet 21427011000036101 cimetidine +44829011000036108 Detrusitol 2 mg film-coated tablet, 56, blister pack 99394 42261011000036103 Detrusitol 2 mg film-coated tablet, 56 40408011000036103 Detrusitol 2 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47014011000036109 tolterodine tartrate 2 mg tablet, 56 45374011000036102 tolterodine tartrate 2 mg tablet 44907011000036104 tolterodine +20159011000036100 Sotalol Hydrochloride (Terry White Chemists) 160 mg uncoated tablet, 60, bottle 73843 13382011000036108 Sotalol Hydrochloride (Terry White Chemists) 160 mg uncoated tablet, 60 6667011000036108 Sotalol Hydrochloride (Terry White Chemists) 160 mg uncoated tablet 3748011000036102 Sotalol Hydrochloride (Terry White Chemists) 3748011000036102 Sotalol Hydrochloride (Terry White Chemists) 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +933215781000036100 Raloxifene Hydrochloride (LY) 60 mg film-coated tablet, 28, blister pack 172551 933203821000036106 Raloxifene Hydrochloride (LY) 60 mg film-coated tablet, 28 933196351000036100 Raloxifene Hydrochloride (LY) 60 mg film-coated tablet 933193441000036100 Raloxifene Hydrochloride (LY) 933193441000036100 Raloxifene Hydrochloride (LY) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +776931000168106 Lovan 20 mg/5 mL oral liquid solution, 140 mL, bottle 57843 776921000168108 Lovan 20 mg/5 mL oral liquid solution, 140 mL 776731000168109 Lovan 20 mg/5 mL oral liquid solution, 5 mL 2938011000036102 Lovan 2938011000036102 Lovan 776911000168101 fluoxetine 20 mg/5 mL oral liquid, 140 mL 776721000168106 fluoxetine 20 mg/5 mL oral liquid 21411011000036102 fluoxetine +923806011000036109 Sulprix 50 mg tablet, 60, bottle 156045 923362011000036106 Sulprix 50 mg tablet, 60 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +709591000168104 Influvac Junior 2015 injection solution, 1 x 0.25 mL syringe 164381 709581000168102 Influvac Junior 2015 injection solution, 1 x 0.25 mL syringe 709561000168106 Influvac Junior 2015 injection solution, 0.25 mL syringe 709531000168103 Influvac Junior 2015 709531000168103 Influvac Junior 2015 709571000168100 influenza trivalent child vaccine 2015 injection, 1 x 0.25 mL syringe 709551000168109 influenza trivalent child vaccine 2015 injection, 0.25 mL syringe 709331000168108 influenza trivalent vaccine 2015 +82261000036105 Rabeprazole Sodium (Pfizer) 20 mg enteric tablet, 30, blister pack 189226 80231000036103 Rabeprazole Sodium (Pfizer) 20 mg enteric tablet, 30 78611000036102 Rabeprazole Sodium (Pfizer) 20 mg enteric tablet 77841000036101 Rabeprazole Sodium (Pfizer) 77841000036101 Rabeprazole Sodium (Pfizer) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +19479011000036103 Ceclor 250 mg/5 mL powder for oral liquid, 75 mL, bottle 54898 12756011000036107 Ceclor 250 mg/5 mL powder for oral liquid, 75 mL 6050011000036108 Ceclor 250 mg/5 mL powder for oral liquid, 5 mL 53821000168109 Ceclor 53821000168109 Ceclor 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +692351000168102 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet, 20, blister pack 215403 692341000168104 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet, 20 692321000168105 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692331000168108 amitriptyline hydrochloride 50 mg tablet, 20 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +21127011000036100 Fluorouracil (Ebewe) 1 g/20 mL injection solution, 20 mL vial 98545 14270011000036109 Fluorouracil (Ebewe) 1 g/20 mL injection solution, 20 mL vial 7556011000036109 Fluorouracil (Ebewe) 1 g/20 mL injection solution, 20 mL vial 932710011000036102 Fluorouracil (Ebewe) 932710011000036102 Fluorouracil (Ebewe) 28264011000036105 fluorouracil 1 g/20 mL injection, 20 mL vial 23578011000036102 fluorouracil 1 g/20 mL injection, vial 21481011000036100 fluorouracil +14421000036107 Atorvastatin (Pfizer) 40 mg film-coated tablet, 30, blister pack 182950 8191000036106 Atorvastatin (Pfizer) 40 mg film-coated tablet, 30 2031000036109 Atorvastatin (Pfizer) 40 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +44495011000036109 Tamiflu 75 mg hard capsule, 1, blister pack 76017 41950011000036103 Tamiflu 75 mg hard capsule, 1 40283011000036106 Tamiflu 75 mg hard capsule 39602011000036100 Tamiflu 39602011000036100 Tamiflu 46734011000036101 oseltamivir 75 mg capsule, 1 45290011000036106 oseltamivir 75 mg capsule 44916011000036104 oseltamivir +933211531000036107 Alendronate (HX) 70 mg film-coated tablet, 4, blister pack 135007 933200581000036103 Alendronate (HX) 70 mg film-coated tablet, 4 933194481000036106 Alendronate (HX) 70 mg film-coated tablet 933193741000036106 Alendronate (HX) 933193741000036106 Alendronate (HX) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +1081181000168109 Alpha Keri Bath and Body Oil application, 200 mL, bottle 24618 1081171000168106 Alpha Keri Bath and Body Oil application, 200 mL 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 75431011000036100 liquid paraffin 80.7% + lanolin oil 2.64% application, 200 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +794191000168107 Tacrolimus (Sandoz) 750 microgram hard capsule, 30, blister pack 229738 794181000168109 Tacrolimus (Sandoz) 750 microgram hard capsule, 30 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794171000168106 tacrolimus 750 microgram capsule, 30 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +933135011000036100 Elmendos 200 mg tablet, 60, blister pack 98076 932938011000036100 Elmendos 200 mg tablet, 60 932775011000036101 Elmendos 200 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46991011000036103 lamotrigine 200 mg tablet, 60 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +742791000168105 Actaze 45 mg uncoated tablet, 28, blister pack 254312 742781000168107 Actaze 45 mg uncoated tablet, 28 742741000168102 Actaze 45 mg uncoated tablet 742601000168105 Actaze 742601000168105 Actaze 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +672041000168108 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 150, blister pack 196492 672031000168104 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 150 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 672021000168102 metoclopramide hydrochloride 10 mg tablet, 150 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +79005011000036106 Momex SR 10 mg modified release tablet, 60, blister pack 132253 78805011000036105 Momex SR 10 mg modified release tablet, 60 78628011000036102 Momex SR 10 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +933212801000036105 Lisinopril (Auro) 10 mg uncoated tablet, 30, blister pack 148274 933202161000036103 Lisinopril (Auro) 10 mg uncoated tablet, 30 933195251000036102 Lisinopril (Auro) 10 mg uncoated tablet 51351000168106 Lisinopril (Auro) 51351000168106 Lisinopril (Auro) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +44034011000036105 Methotrexate (Pfizer (Perth)) 500 mg/20 mL injection solution, 20 mL vial 47648 41523011000036102 Methotrexate (Pfizer (Perth)) 500 mg/20 mL injection solution, 20 mL vial 40037011000036102 Methotrexate (Pfizer (Perth)) 500 mg/20 mL injection solution, 20 mL vial 3913011000036106 Methotrexate (Pfizer (Perth)) 3913011000036106 Methotrexate (Pfizer (Perth)) 27163011000036104 methotrexate 500 mg/20 mL injection, 20 mL vial 22525011000036104 methotrexate 500 mg/20 mL injection, vial 21342011000036105 methotrexate +748091000168106 Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices 153980 748081000168108 Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices 748031000168107 Victoza 6 mg/mL injection solution, 3 mL injection device 97761000036103 Victoza 97761000036103 Victoza 748071000168105 liraglutide 6 mg/mL injection, 2 x 3 mL injection devices 748021000168109 liraglutide 6 mg/mL injection, 3 mL injection device 105271000036100 liraglutide +672121000168101 Amlodipine/Atorvastatin 10/80 (Apo) film-coated tablet, 30, blister pack 214359 672111000168108 Amlodipine/Atorvastatin 10/80 (Apo) film-coated tablet, 30 672101000168105 Amlodipine/Atorvastatin 10/80 (Apo) film-coated tablet 672091000168100 Amlodipine/Atorvastatin 10/80 (Apo) 672091000168100 Amlodipine/Atorvastatin 10/80 (Apo) 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +61508011000036108 Extra Strength Mini-Tab (Pharmacist) tablet, 24, blister pack 92776 57433011000036103 Extra Strength Mini-Tab (Pharmacist) tablet, 24 54301011000036105 Extra Strength Mini-Tab (Pharmacist) tablet 16431000168109 Extra Strength Mini-Tab (Pharmacist) 16431000168109 Extra Strength Mini-Tab (Pharmacist) 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +44253011000036101 Tagamet 200 mg effervescent tablet, 30, tube 60819 41724011000036101 Tagamet 200 mg effervescent tablet, 30 40167011000036101 Tagamet 200 mg effervescent tablet 3003011000036100 Tagamet 3003011000036100 Tagamet 46531011000036103 cimetidine 200 mg effervescent tablet, 30 83131000036104 cimetidine 200 mg effervescent tablet 21427011000036101 cimetidine +18638011000036107 Fosinopril Sodium/HCT 10/12.5 (Sandoz) uncoated tablet, 30, bottle 124850 11780011000036104 Fosinopril Sodium/HCT 10/12.5 (Sandoz) uncoated tablet, 30 5577011000036105 Fosinopril Sodium/HCT 10/12.5 (Sandoz) uncoated tablet 60031000168103 Fosinopril Sodium/HCT 10/12.5 (Sandoz) 60031000168103 Fosinopril Sodium/HCT 10/12.5 (Sandoz) 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1085431000168101 Flo Nozoil 0.1% nasal spray, 15 mL, pump pack 125247 76603011000036107 Flo Nozoil 0.1% nasal spray, 15 mL 76057011000036103 Flo Nozoil 0.1% nasal spray 75956011000036109 Flo Nozoil 75956011000036109 Flo Nozoil 78157011000036100 sesame oil 0.1% nasal spray, 15 mL 77517011000036108 sesame oil 0.1% nasal spray 77449011000036101 sesame oil +1069351000168100 Hydromorphone (MPL) 2 mg uncoated tablet, 60, bottle 295423 1069341000168102 Hydromorphone (MPL) 2 mg uncoated tablet, 60 1069311000168101 Hydromorphone (MPL) 2 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35194011000036100 hydromorphone hydrochloride 2 mg tablet, 60 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +1110041000168104 Nicotinell Tropical Fruit 4 mg chewing gum, 168, blister pack 279618 1110031000168108 Nicotinell Tropical Fruit 4 mg chewing gum, 168 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71516011000036108 nicotine 4 mg gum, 168 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +61024011000036109 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 8, blister pack 66743 56967011000036103 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 8 54142011000036103 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 63665011000036101 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule, 8 62038011000036103 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +929023011000036108 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 4, blister pack 160640 928384011000036103 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 4 927963011000036103 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet 927817011000036102 Risedronate Sodium (Terry White Chemists) 927817011000036102 Risedronate Sodium (Terry White Chemists) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +933215861000036100 Gaviscon P Aniseed oral liquid suspension, 500 mL, bottle 39932 933205311000036107 Gaviscon P Aniseed oral liquid suspension, 500 mL 933196561000036105 Gaviscon P Aniseed oral liquid suspension, 10 mL 28611000168108 Gaviscon P 28611000168108 Gaviscon P 933202061000036104 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid, 500 mL 933194081000036102 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +86103011000036107 Lisinopril (GA) 10 mg uncoated tablet, 100, blister pack 106501 85613011000036108 Lisinopril (GA) 10 mg uncoated tablet, 100 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 86418011000036103 lisinopril 10 mg tablet, 100 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +34810011000036105 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 75 mL, bottle 78981 34385011000036101 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 75 mL 34065011000036103 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 35230011000036103 cefalexin 125 mg/5 mL powder for oral liquid, 75 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +660201000168106 Opsumit 10 mg film-coated tablet, 30, bottle 205427 660191000168108 Opsumit 10 mg film-coated tablet, 30 660171000168107 Opsumit 10 mg film-coated tablet 654891000168102 Opsumit 654891000168102 Opsumit 660181000168105 macitentan 10 mg tablet, 30 660161000168101 macitentan 10 mg tablet 660151000168103 macitentan +19387011000036107 Lexotan 3 mg uncoated tablet, 30, blister pack 52269 12672011000036102 Lexotan 3 mg uncoated tablet, 30 4558011000036104 Lexotan 3 mg uncoated tablet 3511011000036102 Lexotan 3511011000036102 Lexotan 27274011000036105 bromazepam 3 mg tablet, 30 22629011000036107 bromazepam 3 mg tablet 21586011000036104 bromazepam +77219011000036108 Hydrogen Peroxide (David Craig) 6% solution, 100 mL, bottle 14217 76635011000036102 Hydrogen Peroxide (David Craig) 6% solution, 100 mL 76079011000036108 Hydrogen Peroxide (David Craig) 6% solution 76018011000036107 Hydrogen Peroxide (David Craig) 76018011000036107 Hydrogen Peroxide (David Craig) 78184011000036100 hydrogen peroxide 6% solution, 100 mL 77534011000036107 hydrogen peroxide 6% solution 69793011000036105 hydrogen peroxide +925330011000036107 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 30, blister pack 165914 924866011000036106 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 30 924534011000036106 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 28127011000036106 lercanidipine hydrochloride 20 mg tablet, 30 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +17889011000036106 Kosteo 0.25 microgram soft capsule, 100, bottle 121501 11671011000036107 Kosteo 0.25 microgram soft capsule, 100 4485011000036109 Kosteo 0.25 microgram soft capsule 4093011000036100 Kosteo 4093011000036100 Kosteo 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +933247481000036108 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet, 100, blister pack 175917 933244341000036102 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet, 100 933241821000036101 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 79214011000036101 bisoprolol fumarate 10 mg tablet, 100 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +1052151000168103 Oxylieve MR 80 mg modified release tablet, 28, blister pack 153610 1052141000168100 Oxylieve MR 80 mg modified release tablet, 28 1052081000168109 Oxylieve MR 80 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +1077891000168103 Atomoxetine (AN) 60 mg hard capsule, 28, blister pack 234830 1077881000168101 Atomoxetine (AN) 60 mg hard capsule, 28 1077831000168102 Atomoxetine (AN) 60 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +905411000168101 Elevit Breastfeeding soft capsule, 30, blister pack 242535 905401000168104 Elevit Breastfeeding soft capsule, 30 905381000168104 Elevit Breastfeeding soft capsule 905031000168103 Elevit Breastfeeding 905031000168103 Elevit Breastfeeding 905391000168101 lutein 250 microgram + docosahexaenoic acid 200 mg + eicosapentaenoic acid 24 mg + betacarotene 6.5 mg + folic acid 500 microgram + iron 9 mg + iodine 225 microgram + thiamine nitrate 1.4 mg + riboflavin 1.6 mg + nicotinamide 17 mg + pantothenic acid 6.4 mg + pyridoxine hydrochloride 2 mg + cyanocobalamin 2.8 microgram + ascorbic acid 60 mg + colecalciferol 15 microgram (600 IU) + dl-alpha-tocopheryl acetate 10 mg (10 IU) + biotin 35 microgram + calcium 120 mg + zinc 10 mg + selenium 55 microgram capsule, 30 905371000168102 lutein 250 microgram + docosahexaenoic acid 200 mg + eicosapentaenoic acid 24 mg + betacarotene 6.5 mg + folic acid 500 microgram + iron 9 mg + iodine 225 microgram + thiamine nitrate 1.4 mg + riboflavin 1.6 mg + nicotinamide 17 mg + pantothenic acid 6.4 mg + pyridoxine hydrochloride 2 mg + cyanocobalamin 2.8 microgram + ascorbic acid 60 mg + colecalciferol 15 microgram (600 IU) + dl-alpha-tocopheryl acetate 10 mg (10 IU) + biotin 35 microgram + calcium 120 mg + zinc 10 mg + selenium 55 microgram capsule 905361000168108 lutein + docosahexaenoic acid + eicosapentaenoic acid + betacarotene + folic acid + iron + iodine + thiamine + riboflavin + nicotinamide + pantothenic acid + pyridoxine + cyanocobalamin + ascorbic acid + colecalciferol + dl-alpha-tocopheryl + biotin + calcium + zinc + selenium +1059711000168105 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 28, blister pack 234468 1059701000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 28 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930481000168109 rosuvastatin 5 mg tablet, 28 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +81091011000036100 Bisolvon Chesty 8 mg soluble tablet, 8, blister pack 158944 80599011000036105 Bisolvon Chesty 8 mg soluble tablet, 8 80206011000036108 Bisolvon Chesty 8 mg soluble tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 81667011000036102 bromhexine hydrochloride 8 mg soluble tablet, 8 88351000036100 bromhexine hydrochloride 8 mg soluble tablet 61780011000036106 bromhexine +43861011000036100 Lisinotrust 10 mg uncoated tablet, 28, blister pack 128155 41357011000036107 Lisinotrust 10 mg uncoated tablet, 28 39875011000036105 Lisinotrust 10 mg uncoated tablet 39731011000036109 Lisinotrust 39731011000036109 Lisinotrust 46263011000036103 lisinopril 10 mg tablet, 28 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +921817011000036104 Acidophilus Bifidus (Blackmores) hard capsule, 90, bottle 145755 921415011000036101 Acidophilus Bifidus (Blackmores) hard capsule, 90 920994011000036109 Acidophilus Bifidus (Blackmores) hard capsule 920955011000036100 Acidophilus Bifidus (Blackmores) 920955011000036100 Acidophilus Bifidus (Blackmores) 922551011000036101 lactobacillus acidophilus 0.5 billion organisms + bifidobacterium animalis 0.5 billion organisms capsule, 90 922080011000036102 lactobacillus acidophilus 0.5 billion organisms + bifidobacterium animalis 0.5 billion organisms capsule 922044011000036104 lactobacillus acidophilus + bifidobacterium animalis +1069441000168109 Hydromorphone (MPL) 4 mg uncoated tablet, 60, bottle 295424 1069431000168100 Hydromorphone (MPL) 4 mg uncoated tablet, 60 1069401000168107 Hydromorphone (MPL) 4 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35197011000036106 hydromorphone hydrochloride 4 mg tablet, 60 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +1072501000168105 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (18 x Day tablets, 6 x Night tablets), 24, blister pack 239594 1072491000168103 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (18 Day tablets, 6 x Night tablets), 24 1072471000168104 Cold and Flu Relief PE Day/Night (Day) (Discount Drug Stores) film-coated tablet 1072461000168105 Cold and Flu Relief PE Day/Night (Discount Drug Stores) 1072401000168109 Cold and Flu Relief PE Day/Night (Day) (Discount Drug Stores) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1072501000168105 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (18 x Day tablets, 6 x Night tablets), 24, blister pack 239594 1072491000168103 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (18 Day tablets, 6 x Night tablets), 24 1072481000168101 Cold and Flu Relief PE Day/Night (Night) (Discount Drug Stores) film-coated tablet 1072461000168105 Cold and Flu Relief PE Day/Night (Discount Drug Stores) 1072411000168107 Cold and Flu Relief PE Day/Night (Night) (Discount Drug Stores) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +759951000168107 Postrelle-1 1.5 mg uncoated tablet, 1, blister pack 221973 759941000168105 Postrelle-1 1.5 mg uncoated tablet, 1 759931000168101 Postrelle-1 1.5 mg uncoated tablet 759921000168104 Postrelle-1 759921000168104 Postrelle-1 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +933212721000036108 Ciprofloxacin (GN) 750 mg film-coated tablet, 20, blister pack 148853 933202461000036105 Ciprofloxacin (GN) 750 mg film-coated tablet, 20 933195381000036104 Ciprofloxacin (GN) 750 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 87797011000036107 ciprofloxacin 750 mg tablet, 20 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +923917011000036101 Salpraz Heartburn Relief 20 mg enteric tablet, 7, blister pack 235309 923461011000036105 Salpraz Heartburn Relief 20 mg enteric tablet, 7 923094011000036104 Salpraz Heartburn Relief 20 mg enteric tablet 6111000168107 Salpraz Heartburn Relief 6111000168107 Salpraz Heartburn Relief 924214011000036106 pantoprazole 20 mg enteric tablet, 7 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +923917011000036101 Salpraz Heartburn Relief 20 mg enteric tablet, 7, blister pack 169504 923461011000036105 Salpraz Heartburn Relief 20 mg enteric tablet, 7 923094011000036104 Salpraz Heartburn Relief 20 mg enteric tablet 6111000168107 Salpraz Heartburn Relief 6111000168107 Salpraz Heartburn Relief 924214011000036106 pantoprazole 20 mg enteric tablet, 7 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +43890011000036105 Neupro 2 mg/24 hours patch, 7, sachet 131370 41382011000036103 Neupro 2 mg/24 hours patch, 7 39798011000036108 Neupro 2 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46279011000036108 rotigotine 2 mg/24 hours patch, 7 45051011000036104 rotigotine 2 mg/24 hours patch 44880011000036107 rotigotine +743751000168105 Jardiamet 12.5 mg/850 mg film-coated tablet, 60, blister pack 229819 743741000168108 Jardiamet 12.5 mg/850 mg film-coated tablet, 60 743691000168106 Jardiamet 12.5 mg/850 mg film-coated tablet 743671000168105 Jardiamet 12.5 mg/850 mg 743671000168105 Jardiamet 12.5 mg/850 mg 743731000168104 empagliflozin 12.5 mg + metformin hydrochloride 850 mg tablet, 60 743681000168108 empagliflozin 12.5 mg + metformin hydrochloride 850 mg tablet 743221000168107 empagliflozin + metformin +948281000168109 Ranitidine (GN) 150 mg film-coated tablet, 28, bottle 148524 933202201000036107 Ranitidine (GN) 150 mg film-coated tablet, 28 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +21190011000036107 Acihexal 800 mg uncoated tablet, 120, blister pack 99421 14328011000036100 Acihexal 800 mg uncoated tablet, 120 7613011000036104 Acihexal 800 mg uncoated tablet 3239011000036103 Acihexal 3239011000036103 Acihexal 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +43688011000036103 Kytril 1 mg/mL injection solution, 1 mL ampoule 115317 41166011000036105 Kytril 1 mg/mL injection solution, 1 mL ampoule 39899011000036102 Kytril 1 mg/mL injection solution, ampoule 3372011000036100 Kytril 3372011000036100 Kytril 46133011000036106 granisetron 1 mg/mL injection, 1 mL ampoule 45003011000036106 granisetron 1 mg/mL injection, ampoule 21431011000036106 granisetron +18880011000036106 Fungilin 10 mg lozenge, 20, bottle 19295 12188011000036105 Fungilin 10 mg lozenge, 20 4859011000036108 Fungilin 10 mg lozenge 3952011000036108 Fungilin 3952011000036108 Fungilin 26972011000036101 amphotericin B 10 mg lozenge, 20 22345011000036103 amphotericin B 10 mg lozenge 21687011000036106 amphotericin B +69649011000036109 Nurofen 5% gel, 100 g, tube 79909 67448011000036108 Nurofen 5% gel, 100 g 65669011000036108 Nurofen 5% gel 5641000168109 Nurofen 5641000168109 Nurofen 71976011000036105 ibuprofen 5% gel, 100 g 70270011000036104 ibuprofen 5% gel 21885011000036105 ibuprofen +933211611000036104 Gaviscon Cool Mint oral liquid suspension, 150 mL, bottle 127289 933200531000036102 Gaviscon Cool Mint oral liquid suspension, 150 mL 933194071000036104 Gaviscon Cool Mint oral liquid suspension, 10 mL 21391000168102 Gaviscon Cool 21391000168102 Gaviscon Cool 933200541000036107 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid, 150 mL 933194081000036102 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +928869011000036103 Risperidone (Pharmacor) 4 mg film-coated tablet, 60, blister pack 139823 928231011000036100 Risperidone (Pharmacor) 4 mg film-coated tablet, 60 927889011000036106 Risperidone (Pharmacor) 4 mg film-coated tablet 927799011000036107 Risperidone (Pharmacor) 927799011000036107 Risperidone (Pharmacor) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +68940011000036100 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch, 7, sachet 129749 66732011000036102 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch, 7 65329011000036107 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch 35301000168109 Nicotine Phase-2 (Chemists' Own) 35301000168109 Nicotine Phase-2 (Chemists' Own) 27925011000036106 nicotine 14 mg/24 hours patch, 7 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +936961000168106 Nystatin (Pharmacy Action) 100 000 units/mL oral liquid suspension, 24 mL, bottle 280975 936951000168109 Nystatin (Pharmacy Action) 100 000 units/mL oral liquid suspension, 24 mL 936941000168107 Nystatin (Pharmacy Action) 100 000 units/mL oral liquid suspension 936931000168103 Nystatin (Pharmacy Action) 936931000168103 Nystatin (Pharmacy Action) 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +915351000168109 Certican 250 microgram dispersible tablet, 120, blister pack 97527 915341000168107 Certican 250 microgram dispersible tablet, 120 915231000168105 Certican 250 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915331000168103 everolimus 250 microgram dispersible tablet, 120 915221000168107 everolimus 250 microgram dispersible tablet 21615011000036103 everolimus +20044011000036106 Novorapid 100 units/mL injection solution, 1 x 10 mL vial 133443 13276011000036109 Novorapid 100 units/mL injection solution, 1 x 10 mL vial 6558011000036107 Novorapid 100 units/mL injection solution, 10 mL vial 2914011000036104 Novorapid 2914011000036104 Novorapid 27661011000036104 insulin aspart 100 units/mL injection, 1 x 10 mL vial 22998011000036108 insulin aspart 100 units/mL injection, vial 21699011000036100 insulin aspart +20044011000036106 Novorapid 100 units/mL injection solution, 1 x 10 mL vial 69364 13276011000036109 Novorapid 100 units/mL injection solution, 1 x 10 mL vial 6558011000036107 Novorapid 100 units/mL injection solution, 10 mL vial 2914011000036104 Novorapid 2914011000036104 Novorapid 27661011000036104 insulin aspart 100 units/mL injection, 1 x 10 mL vial 22998011000036108 insulin aspart 100 units/mL injection, vial 21699011000036100 insulin aspart +983041000168109 Cetirizine (AN) 10 mg film-coated tablet, 10, blister pack 126249 983031000168100 Cetirizine (AN) 10 mg film-coated tablet, 10 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1055051000168105 Pecfent 100 microgram/actuation nasal spray, 8 actuations, pump pack 185934 155891000036109 Pecfent 100 microgram/actuation nasal spray, 8 actuations 154891000036105 Pecfent 100 microgram/actuation nasal spray, actuation 154491000036107 Pecfent 154491000036107 Pecfent 155901000036105 fentanyl 100 microgram/actuation nasal spray, 8 actuations 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +929125011000036100 Oxycontin 80 mg modified release tablet, 28, blister pack 200030 928483011000036108 Oxycontin 80 mg modified release tablet, 28 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +929125011000036100 Oxycontin 80 mg modified release tablet, 28, blister pack 68193 928483011000036108 Oxycontin 80 mg modified release tablet, 28 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +933211291000036106 Roflo 250 mg film-coated tablet, 14, blister pack 125322 933200381000036105 Roflo 250 mg film-coated tablet, 14 933194331000036104 Roflo 250 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +69286011000036106 Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 19501 67086011000036109 Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 65219011000036106 Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 71725011000036106 sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, 500 mL bag 70150011000036104 sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +50337011000036108 HCU Express 15 powder for oral liquid, 30 x 25 g sachets 49485011000036109 HCU Express 15 powder for oral liquid, 30 x 25 g sachets 478701000168108 HCU Express 15 powder for oral liquid, 25 g sachet 54441000168104 HCU Express 15 54441000168104 HCU Express 15 51442011000036107 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 30 x 25 g sachets 478471000168109 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 25 g sachet 50753011000036104 amino acid formula with vitamins and minerals without methionine +709411000168107 Agrippal 2015 injection suspension, 10 x 0.5 mL syringes 144670 709401000168109 Agrippal 2015 injection suspension, 10 x 0.5 mL syringes 709351000168102 Agrippal 2015 injection suspension, 0.5 mL syringe 709321000168105 Agrippal 2015 709321000168105 Agrippal 2015 709391000168107 influenza trivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +742631000168103 Actaze 30 mg uncoated tablet, 28, blister pack 254292 742621000168101 Actaze 30 mg uncoated tablet, 28 742611000168108 Actaze 30 mg uncoated tablet 742601000168105 Actaze 742601000168105 Actaze 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +69528011000036109 Sodium Chloride (Baxter) 0.9% (27 g/3 L) irrigation solution, 4 x 3 L bags 54587 67328011000036100 Sodium Chloride (Baxter) 0.9% (27 g/3 L) irrigation solution, 4 x 3 L bags 65613011000036106 Sodium Chloride (Baxter) 0.9% (27 g/3 L) irrigation solution, 3 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71873011000036106 sodium chloride 0.9% (27 g/3 L) solution, 4 x 3 L bags 70226011000036102 sodium chloride 0.9% (27 g/3 L) solution, bag 21308011000036103 sodium chloride +657511000168101 Telmigen HCT 40/12.5mg multilayer tablet, 28, blister pack 208065 657501000168104 Telmigen HCT 40/12.5mg multilayer tablet, 28 657491000168106 Telmigen HCT 40/12.5mg multilayer tablet 657481000168108 Telmigen HCT 40/12.5mg 657481000168108 Telmigen HCT 40/12.5mg 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +933211211000036101 Roflo 250 mg film-coated tablet, 100, blister pack 125322 933200371000036108 Roflo 250 mg film-coated tablet, 100 933194331000036104 Roflo 250 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 932362011000036103 ciprofloxacin 250 mg tablet, 100 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +933215541000036104 Olanzapine (Lilly) 5 mg film-coated tablet, 7, blister pack 167680 933205021000036102 Olanzapine (Lilly) 5 mg film-coated tablet, 7 933196141000036100 Olanzapine (Lilly) 5 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 933205031000036100 olanzapine 5 mg tablet, 7 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1092561000168103 Paracetamol Children's 1 to 5 Years (Pharmacist Formula) 120 mg/5 mL oral liquid solution, 200 mL, bottle 285522 1092551000168100 Paracetamol Children's 1 to 5 Years (Pharmacist Formula) 120 mg/5 mL oral liquid solution, 200 mL 1092541000168102 Paracetamol Children's 1 to 5 Years (Pharmacist Formula) 120 mg/5 mL oral liquid solution, 5 mL 1092531000168106 Paracetamol Children's 1 to 5 Years (Pharmacist Formula) 1092531000168106 Paracetamol Children's 1 to 5 Years (Pharmacist Formula) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +879391000168103 Domperidone (Blooms The Chemist) 10 mg uncoated tablet, 25, blister pack 242337 879381000168101 Domperidone (Blooms The Chemist) 10 mg uncoated tablet, 25 879371000168104 Domperidone (Blooms The Chemist) 10 mg uncoated tablet 879361000168105 Domperidone (Blooms The Chemist) 879361000168105 Domperidone (Blooms The Chemist) 27065011000036109 domperidone 10 mg tablet, 25 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +828991000168106 Imatinib (RBX) 100 mg film-coated tablet, 60, blister pack 225484 828981000168108 Imatinib (RBX) 100 mg film-coated tablet, 60 828971000168105 Imatinib (RBX) 100 mg film-coated tablet 828961000168104 Imatinib (RBX) 828961000168104 Imatinib (RBX) 28142011000036106 imatinib 100 mg tablet, 60 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +33491011000036105 Ceftriaxone (Lupin) 1 g powder for injection, 5 vials 104489 33240011000036105 Ceftriaxone (Lupin) 1 g powder for injection, 5 vials 33009011000036104 Ceftriaxone (Lupin) 1 g powder for injection, vial 32956011000036102 Ceftriaxone (Lupin) 32956011000036102 Ceftriaxone (Lupin) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +86057011000036104 Ibuprofen plus Codeine (Chemmart) film-coated tablet, 48, blister pack 158118 85734011000036106 Ibuprofen plus Codeine (Chemmart) film-coated tablet, 48 85365011000036102 Ibuprofen plus Codeine (Chemmart) film-coated tablet 85266011000036103 Ibuprofen plus Codeine (Chemmart) 85266011000036103 Ibuprofen plus Codeine (Chemmart) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +671981000168106 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 100, blister pack 196492 671971000168108 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 100 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 82561011000036104 metoclopramide hydrochloride 10 mg tablet, 100 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +60661011000036102 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 2.5 L, bottle 38572 56619011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 2.5 L 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 63471011000036105 benzydamine hydrochloride 0.15% mouthwash, 2.5 L 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +827541000168109 Prevenar injection suspension, 0.5 mL syringe 118375 827531000168100 Prevenar injection suspension, 0.5 mL syringe 827511000168105 Prevenar injection suspension, 0.5 mL syringe 73731011000036102 Prevenar 73731011000036102 Prevenar 827521000168103 pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe 827501000168107 pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe 827491000168100 pneumococcal 7 valent conjugate vaccine +69349011000036100 Betadine Alcoholic Skin Preparation solution, 500 mL, bottle 29557 67149011000036101 Betadine Alcoholic Skin Preparation solution, 500 mL 65198011000036101 Betadine Alcoholic Skin Preparation solution 2991000168104 Betadine Alcoholic Skin Preparation 2991000168104 Betadine Alcoholic Skin Preparation 71714011000036104 povidone-iodine 10% + ethanol 30% solution, 500 mL 70144011000036106 povidone-iodine 10% + ethanol 30% solution 69802011000036103 povidone-iodine + ethanol +902441000168108 Candesartan (GPPL) 16 mg uncoated tablet, 30, bottle 195478 902391000168109 Candesartan (GPPL) 16 mg uncoated tablet, 30 902381000168106 Candesartan (GPPL) 16 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1086801000168104 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet, 10, strip pack 280580 1086791000168100 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet, 10 1086761000168107 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet 1086481000168105 Heartburn Relief Extra Strength (Trust) 1086481000168105 Heartburn Relief Extra Strength (Trust) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +674871000168101 Mekinist 500 microgram film-coated tablet, 30, bottle 205917 674861000168107 Mekinist 500 microgram film-coated tablet, 30 674841000168108 Mekinist 500 microgram film-coated tablet 674811000168109 Mekinist 674811000168109 Mekinist 674851000168105 trametinib 500 microgram tablet, 30 674831000168104 trametinib 500 microgram tablet 674821000168102 trametinib +746881000168102 Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial 173996 746871000168100 Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial 746861000168106 Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial 137251000036106 Granisetron (Sandoz) 137251000036106 Granisetron (Sandoz) 138931000036108 granisetron 3 mg/3 mL injection, 3 mL vial 137971000036106 granisetron 3 mg/3 mL injection, vial 21431011000036106 granisetron +974451000168106 Pregabalin (Apo) 150 mg hard capsule, 60, bottle 193249 970481000168106 Pregabalin (Apo) 150 mg hard capsule, 60 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +937001000168106 Calcium (Apo) 1.25 g (calcium 500 mg) film-coated tablet, 48, blister pack 936991000168104 Calcium (Apo) 1.25 g (calcium 500 mg) film-coated tablet, 48 936981000168102 Calcium (Apo) 1.25 g (calcium 500 mg) film-coated tablet 936971000168100 Calcium (Apo) 936971000168100 Calcium (Apo) 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +885121000168108 Betarc 8 mg tablet, 25, blister pack 231713 885111000168101 Betarc 8 mg tablet, 25 885081000168106 Betarc 8 mg tablet 884681000168104 Betarc 884681000168104 Betarc 883121000168107 betahistine dihydrochloride 8 mg tablet, 25 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +68923011000036105 Senega and Ammonia Mixture (McGloin's) oral liquid solution, 500 mL, bottle 11523 66616011000036102 Senega and Ammonia Mixture (McGloin's) oral liquid solution, 500 mL 65211011000036107 Senega and Ammonia Mixture (McGloin's) oral liquid solution 64951011000036106 Senega and Ammonia Mixture (McGloin's) 64951011000036106 Senega and Ammonia Mixture (McGloin's) 71337011000036102 ammonium bicarbonate 25 mg/mL + senega root 8.2 mg/mL oral liquid, 500 mL 69958011000036103 ammonium bicarbonate 25 mg/mL + senega root 8.2 mg/mL oral liquid 21924011000036109 ammonium + senega root +765571000168104 Fraxiparine 1900 anti-Xa units/0.2 mL injection solution, 2 x 0.2 mL syringes 51308 765561000168105 Fraxiparine 1900 anti-Xa units/0.2 mL injection solution, 2 x 0.2 mL syringes 765541000168106 Fraxiparine 1900 anti-Xa units/0.2 mL injection solution, 0.2 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765551000168108 nadroparin calcium 1900 anti-Xa units/0.2 mL injection, 2 x 0.2 mL syringes 765531000168102 nadroparin calcium 1900 anti-Xa units/0.2 mL injection, syringe 765071000168107 nadroparin +1014821000168101 Valaciclovir (Apotex) 500 mg film-coated tablet, 2, blister pack 158914 1014811000168108 Valaciclovir (Apotex) 500 mg film-coated tablet, 2 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 927316011000036103 valaciclovir 500 mg tablet, 2 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +50400011000036106 Pepti-Junior powder for oral liquid, 450 g, can 49471011000036104 Pepti-Junior powder for oral liquid, 450 g 48707011000036106 Pepti-Junior powder for oral liquid 48380011000036105 Pepti-Junior 48380011000036105 Pepti-Junior 51429011000036100 protein hydrolysate formula with medium chain triglycerides powder for oral liquid, 450 g 50945011000036106 protein hydrolysate formula with medium chain triglycerides powder for oral liquid 50746011000036108 protein hydrolysate formula with medium chain triglycerides +17762011000036100 Vinorelbine (Ebewe) 10 mg/mL concentrated injection, 1 mL vial 126693 11830011000036105 Vinorelbine (Ebewe) 10 mg/mL concentrated injection, 1 mL vial 5182011000036106 Vinorelbine (Ebewe) 10 mg/mL concentrated injection, vial 4298011000036101 Vinorelbine (Ebewe) 4298011000036101 Vinorelbine (Ebewe) 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +785791000168108 Oxycodone (Sandoz) 5 mg modified release tablet, 60, bottle 153613 785781000168105 Oxycodone (Sandoz) 5 mg modified release tablet, 60 679351000168102 Oxycodone (Sandoz) 5 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35245011000036108 oxycodone hydrochloride 5 mg modified release tablet, 60 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +19514011000036100 Climara 100 microgram/24 hours patch, 4, sachet 56198 12786011000036102 Climara 100 microgram/24 hours patch, 4 6080011000036104 Climara 100 microgram/24 hours patch 4358011000036102 Climara 4358011000036102 Climara 27382011000036103 estradiol 100 microgram/24 hours patch, 4 23636011000036108 estradiol 100 microgram/24 hours patch 21238011000036103 estradiol +679211000168106 Benadryl PE Dry Cough and Nasal Congestion oral liquid solution, 100 mL, bottle 150510 679201000168108 Benadryl PE Dry Cough and Nasal Congestion oral liquid solution, 100 mL 679191000168105 Benadryl PE Dry Cough and Nasal Congestion oral liquid solution, 5 mL 679181000168107 Benadryl PE Dry Cough and Nasal Congestion 679181000168107 Benadryl PE Dry Cough and Nasal Congestion 63366011000036100 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 61928011000036107 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61803011000036104 dextromethorphan + phenylephrine +1026331000168106 Pregabalin (Amneal) 75 mg hard capsule, 56, blister pack 235855 1026321000168108 Pregabalin (Amneal) 75 mg hard capsule, 56 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +50521011000036100 Minaphlex powder for oral liquid, 30 x 29 g sachets 49493011000036107 Minaphlex powder for oral liquid, 30 x 29 g sachets 260011000168101 Minaphlex powder for oral liquid, 29 g sachet 48443011000036101 Minaphlex 48443011000036101 Minaphlex 51448011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 29 g sachets 251031000168106 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 29 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +61537011000036103 Dolased Pain Relief Day and Night (20 x Day tablets, 10 x Night tablets), 30, blister pack 93793 57462011000036101 Dolased Pain Relief Day and Night (20 x Day tablets, 10 x Night tablets), 30 54310011000036100 Dolased Pain Relief (Day) uncoated tablet 10011000168109 Dolased Pain Relief Day and Night 10131000168103 Dolased Pain Relief (Day) 63873011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet [20] (&) paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet [10], 30 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +61537011000036103 Dolased Pain Relief Day and Night (20 x Day tablets, 10 x Night tablets), 30, blister pack 93793 57462011000036101 Dolased Pain Relief Day and Night (20 x Day tablets, 10 x Night tablets), 30 54311011000036107 Dolased Pain Relief (Night) uncoated tablet 10011000168109 Dolased Pain Relief Day and Night 10251000168102 Dolased Pain Relief (Night) 63873011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet [20] (&) paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet [10], 30 62092011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +81108011000036104 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 100 mL, bottle 162436 80613011000036102 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 100 mL 80209011000036104 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 10 mL 80122011000036100 Duro-Tuss Chesty Cough Liquid Forte 80122011000036100 Duro-Tuss Chesty Cough Liquid Forte 63946011000036101 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 100 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +44748011000036101 Etoposide (Ebewe) 400 mg/20 mL concentrated injection, 20 mL vial 96643 42193011000036103 Etoposide (Ebewe) 400 mg/20 mL concentrated injection, 20 mL vial 40382011000036106 Etoposide (Ebewe) 400 mg/20 mL concentrated injection, 20 mL vial 3594011000036103 Etoposide (Ebewe) 3594011000036103 Etoposide (Ebewe) 46953011000036108 etoposide 400 mg/20 mL injection, 20 mL vial 45355011000036101 etoposide 400 mg/20 mL injection, vial 21469011000036104 etoposide +61295011000036109 Ibuprofen (Chemists' Own) 200 mg film-coated tablet, 48, blister pack 79117 57231011000036103 Ibuprofen (Chemists' Own) 200 mg film-coated tablet, 48 54248011000036102 Ibuprofen (Chemists' Own) 200 mg film-coated tablet 53581011000036105 Ibuprofen (Chemists' Own) 53581011000036105 Ibuprofen (Chemists' Own) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +846391000168108 Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device 231152 846381000168105 Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device 846371000168107 Repatha Sureclick 140 mg/mL injection solution, injection device 846351000168103 Repatha Sureclick 846351000168103 Repatha Sureclick 806091000168104 evolocumab 140 mg/mL injection, 1 mL injection device 806071000168100 evolocumab 140 mg/mL injection, injection device 805961000168102 evolocumab +60598011000036100 Benzac W 10% gel, 50 g, tube 18554 56556011000036102 Benzac W 10% gel, 50 g 53971011000036106 Benzac W 10% gel 7001000168107 Benzac W 7001000168107 Benzac W 63422011000036100 benzoyl peroxide 10% gel, 50 g 61954011000036104 benzoyl peroxide 10% gel 61709011000036104 benzoyl peroxide +1084061000168102 Salofalk 500 mg modified release granules, 50 sachets 80648 1084051000168104 Salofalk 500 mg modified release granules, 50 sachets 1084031000168105 Salofalk 500 mg modified release granules, 500 mg sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084041000168101 mesalazine 500 mg modified release granules, 50 sachets 1084021000168107 mesalazine 500 mg modified release granules, sachet 21351011000036101 mesalazine +929716011000036107 Fluvax 2011 injection suspension, 1 x 0.5 mL syringe 91583 929552011000036100 Fluvax 2011 injection suspension, 1 x 0.5 mL syringe 929418011000036104 Fluvax 2011 injection suspension, 0.5 mL syringe 34771000168104 Fluvax 2011 34771000168104 Fluvax 2011 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +929716011000036107 Fluvax 2011 injection suspension, 1 x 0.5 mL syringe 117397 929552011000036100 Fluvax 2011 injection suspension, 1 x 0.5 mL syringe 929418011000036104 Fluvax 2011 injection suspension, 0.5 mL syringe 34771000168104 Fluvax 2011 34771000168104 Fluvax 2011 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +19560011000036106 Lopid 600 mg tablet, 60, bottle 57053 12831011000036104 Lopid 600 mg tablet, 60 6122011000036101 Lopid 600 mg tablet 3530011000036104 Lopid 3530011000036104 Lopid 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +713611000168108 Sutent 37.5 mg hard capsule, 28, blister pack 156801 713601000168105 Sutent 37.5 mg hard capsule, 28 713581000168101 Sutent 37.5 mg hard capsule 39776011000036101 Sutent 39776011000036101 Sutent 713591000168103 sunitinib 37.5 mg capsule, 28 713571000168104 sunitinib 37.5 mg capsule 44859011000036109 sunitinib +68681011000036101 Dencorub Extra Strength Heat gel, 100 g, tube 10146 66473011000036103 Dencorub Extra Strength Heat gel, 100 g 65469011000036106 Dencorub Extra Strength Heat gel 65163011000036109 Dencorub Extra Strength Heat 65163011000036109 Dencorub Extra Strength Heat 71207011000036102 methyl salicylate 26% + menthol 7% gel, 100 g 69902011000036107 methyl salicylate 26% + menthol 7% gel 69751011000036100 methyl salicylate + menthol +888091000168104 Bosentan (Intas) 62.5 mg film-coated tablet, 60, bottle 235888 888081000168102 Bosentan (Intas) 62.5 mg film-coated tablet, 60 888071000168100 Bosentan (Intas) 62.5 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +68894011000036108 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 660 g, jar 10184 66487011000036104 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 660 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71220011000036107 psyllium husk powder 312.8 mg/g powder for oral liquid, 660 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +933144011000036103 Elmendos 100 mg tablet, 60, bottle 98079 932937011000036101 Elmendos 100 mg tablet, 60 932774011000036100 Elmendos 100 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46990011000036105 lamotrigine 100 mg tablet, 60 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +60811011000036107 Demazin Cold Relief Syrup Colour Free oral liquid solution, 200 mL, bottle 57378 56767011000036107 Demazin Cold Relief Syrup Colour Free oral liquid solution, 200 mL 54071011000036102 Demazin Cold Relief Syrup Colour Free oral liquid solution, 5 mL 5951000168104 Demazin Cold Relief Syrup 5951000168104 Demazin Cold Relief Syrup 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +1040681000168100 Antibacterial Lozenges (Amcal) Honey and Lemon lozenge, 36, blister pack 210128 1040671000168103 Antibacterial Lozenges (Amcal) Honey and Lemon lozenge, 36 1040641000168105 Antibacterial Lozenges (Amcal) Honey and Lemon lozenge 1040581000168104 Antibacterial Lozenges (Amcal) 1040581000168104 Antibacterial Lozenges (Amcal) 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1065331000168109 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 40, blister pack 294343 1065321000168106 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 40 1065171000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 764231000168101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 40 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +59693011000036102 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 30 mL, bottle 10548 55708011000036107 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 30 mL 53715011000036106 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 15 mL 53306011000036103 Duro-Tuss Cough Liquid Expectorant 53306011000036103 Duro-Tuss Cough Liquid Expectorant 63104011000036102 pholcodine 15 mg/15 mL + bromhexine hydrochloride 12 mg/15 mL oral liquid, 30 mL 61857011000036103 pholcodine 15 mg/15 mL + bromhexine hydrochloride 12 mg/15 mL oral liquid 61746011000036101 pholcodine + bromhexine +74857011000036106 Sodium Chloride 0.18% and Glucose 4% (Baxter) injection solution, 12 x 1 L bags 48523 74344011000036101 Sodium Chloride 0.18% and Glucose 4% (Baxter) injection solution, 12 x 1 L bags 5545011000036101 Sodium Chloride 0.18% and Glucose 4% (Baxter) injection solution, 1 L bag 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 75447011000036107 sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, 12 x 1 L bags 22567011000036104 sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, bag 21257011000036103 sodium chloride + glucose +61053011000036108 Nicorette Buccal Inhalation 10 mg breath activated inhalation, 18 cartridges 67823 56996011000036103 Nicorette Buccal Inhalation 10 mg breath activated inhalation, 18 cartridges 54150011000036100 Nicorette Buccal Inhalation 10 mg breath activated inhalation, cartridge 19481000168102 Nicorette Buccal Inhalation 19481000168102 Nicorette Buccal Inhalation 63678011000036104 nicotine 10 mg breath activated inhalation, 18 cartridges 62042011000036102 nicotine 10 mg breath activated inhalation, cartridge 21432011000036100 nicotine +61612011000036103 Nurofen Liquid Capsule 200 mg soft capsule, 24, blister pack 96115 57534011000036105 Nurofen Liquid Capsule 200 mg soft capsule, 24 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63930011000036103 ibuprofen 200 mg capsule, 24 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +1086751000168105 Ibuprofen (Coles) 200 mg soft capsule, 24, blister pack 282488 1086741000168108 Ibuprofen (Coles) 200 mg soft capsule, 24 1086711000168109 Ibuprofen (Coles) 200 mg soft capsule 924365011000036101 Ibuprofen (Coles) 924365011000036101 Ibuprofen (Coles) 63930011000036103 ibuprofen 200 mg capsule, 24 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +980221000168103 Augmentin ES 600 powder for oral liquid, 50 mL, bottle 98693 980211000168105 Augmentin ES 600 powder for oral liquid, 50 mL 980191000168109 Augmentin ES 600 powder for oral liquid, 5 mL 980171000168108 Augmentin ES 600 980171000168108 Augmentin ES 600 980201000168107 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid, 50 mL 980181000168106 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +20009011000036101 Temodal 20 mg hard capsule, 5, bottle 68722 13245011000036103 Temodal 20 mg hard capsule, 5 6527011000036107 Temodal 20 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +1111411000168103 Clopithromb 75 mg film-coated tablet, 14, blister pack 187040 1111401000168101 Clopithromb 75 mg film-coated tablet, 14 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87800011000036106 clopidogrel 75 mg tablet, 14 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +50671011000036106 Paroxetine (Generic Health) 20 mg film-coated tablet, 14, blister pack 153324 49695011000036105 Paroxetine (Generic Health) 20 mg film-coated tablet, 14 48828011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet 48331011000036109 Paroxetine (Generic Health) 48331011000036109 Paroxetine (Generic Health) 51562011000036108 paroxetine 20 mg tablet, 14 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +60131011000036106 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 12, blister pack 127745 56090011000036107 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 12 53786011000036101 Naproxen Sodium (Priceline) 275 mg film-coated tablet 53286011000036107 Naproxen Sodium (Priceline) 53286011000036107 Naproxen Sodium (Priceline) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +69107011000036106 Strepsils eucalyptus and menthol lozenge, 16, blister pack 14973 66908011000036102 Strepsils eucalyptus and menthol lozenge, 16 65345011000036108 Strepsils eucalyptus and menthol lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71502011000036106 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge, 16 70040011000036109 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge 69851011000036103 amylmetacresol + dichlorobenzyl alcohol + menthol +790131000168100 Oxycontin 80 mg modified release tablet, 10, bottle 200034 790121000168103 Oxycontin 80 mg modified release tablet, 10 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790111000168105 oxycodone hydrochloride 80 mg modified release tablet, 10 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +913841000168103 Cisatracurium (SXP) 20 mg/10 mL injection solution, 5 x 10 mL vials 181597 913831000168107 Cisatracurium (SXP) 20 mg/10 mL injection solution, 5 x 10 mL vials 913821000168109 Cisatracurium (SXP) 20 mg/10 mL injection solution, 10 mL vial 913621000168105 Cisatracurium (SXP) 913621000168105 Cisatracurium (SXP) 913371000168101 cisatracurium 20 mg/10 mL injection, 5 x 10 mL vials 748921000168108 cisatracurium 20 mg/10 mL injection, vial 44902011000036101 cisatracurium +66101000036104 Medicated (Rawleigh's) ointment, 140 g, can 17777 63601000036101 Medicated (Rawleigh's) ointment, 140 g 60941000036101 Medicated (Rawleigh's) ointment 60381000036106 Medicated (Rawleigh's) 60381000036106 Medicated (Rawleigh's) 63611000036104 camphor 3.13% + eucalyptus oil 0.44% + menthol 2.14% + wool fat 6.98% ointment, 140 g 60951000036103 camphor 3.13% + eucalyptus oil 0.44% + menthol 2.14% + wool fat 6.98% ointment 66851000036106 camphor + eucalyptus oil + menthol + wool fat +879551000168101 Flucloxacillin (Blooms The Chemist) 250 mg capsule, 48, blister pack 226371 879541000168103 Flucloxacillin (Blooms The Chemist) 250 mg capsule, 48 879501000168100 Flucloxacillin (Blooms The Chemist) 250 mg capsule 879491000168107 Flucloxacillin (Blooms The Chemist) 879491000168107 Flucloxacillin (Blooms The Chemist) 879531000168107 flucloxacillin 250 mg capsule, 48 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +1057841000168109 Valpro EC 500 mg enteric tablet, 10, blister pack 286316 1057831000168100 Valpro EC 500 mg enteric tablet, 10 1057821000168103 Valpro EC 500 mg enteric tablet 1057811000168105 Valpro EC 1057811000168105 Valpro EC 942021000168100 valproate sodium 500 mg enteric tablet, 10 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +68865011000036105 Cold Sore (Chemists' Own) 5% cream, 20 g, tube 106588 66544011000036108 Cold Sore (Chemists' Own) 5% cream, 20 g 65428011000036105 Cold Sore (Chemists' Own) 5% cream 65189011000036105 Cold Sore (Chemists' Own) 65189011000036105 Cold Sore (Chemists' Own) 71275011000036104 aciclovir 5% cream, 20 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +948601000168103 Ondansetron (Mylan) 4 mg/2 mL injection, 5 x 2 mL vials 148299 948591000168105 Ondansetron (Mylan) 4 mg/2 mL injection, 5 x 2 mL vials 948541000168102 Ondansetron (Mylan) 4 mg/2 mL injection, 2 mL vial 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 948581000168107 ondansetron 4 mg/2 mL injection, 5 x 2 mL vials 948531000168106 ondansetron 4 mg/2 mL injection, vial 21545011000036100 ondansetron +81941000036106 Venlafaxine SR (Stada) 150 mg modified release capsule, 28, blister pack 160295 79961000036103 Venlafaxine SR (Stada) 150 mg modified release capsule, 28 78801000036100 Venlafaxine SR (Stada) 150 mg modified release capsule 53701000168107 Venlafaxine SR (Stada) 53701000168107 Venlafaxine SR (Stada) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +60327011000036106 Robitussin Cough and Chest Congestion oral liquid solution, 100 mL, bottle 13884 56286011000036100 Robitussin Cough and Chest Congestion oral liquid solution, 100 mL 53861011000036106 Robitussin Cough and Chest Congestion oral liquid solution, 5 mL 53223011000036107 Robitussin Cough and Chest Congestion 53223011000036107 Robitussin Cough and Chest Congestion 63291011000036104 guaifenesin 100 mg/5 mL + dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 100 mL 61911011000036105 guaifenesin 100 mg/5 mL + dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61793011000036104 guaifenesin + dextromethorphan +671901000168103 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 30, blister pack 196492 671891000168102 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 30 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 671881000168100 metoclopramide hydrochloride 10 mg tablet, 30 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +61082011000036108 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 200 mL, bottle 70321 57025011000036109 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 200 mL 54164011000036102 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 5 mL 53414011000036100 Tussinol for Dry Coughs 53414011000036100 Tussinol for Dry Coughs 63751011000036102 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 200 mL 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +69303011000036108 Hirudoid 0.3% cream, 14 g, tube 21033 67103011000036109 Hirudoid 0.3% cream, 14 g 65437011000036107 Hirudoid 0.3% cream 64958011000036102 Hirudoid 64958011000036102 Hirudoid 71671011000036104 heparinoids 0.3% cream, 14 g 70119011000036104 heparinoids 0.3% cream 69837011000036105 heparinoids +44218011000036101 Ogen 1.25 mg uncoated tablet, 14, bottle 56973 41694011000036104 Ogen 1.25 mg uncoated tablet, 14 6119011000036101 Ogen 1.25 mg uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46511011000036107 oestrone sulfate sodium 1.25 mg tablet, 14 22745011000036102 oestrone sulfate sodium 1.25 mg tablet 21299011000036103 oestrone sulfate sodium +1092641000168101 Indomethacin IV (Mylan) 1 mg powder for injection, 3 vials 208055 1092631000168105 Indomethacin IV (Mylan) 1 mg powder for injection, 3 vials 1092621000168107 Indomethacin IV (Mylan) 1 mg powder for injection, vial 1092611000168100 Indomethacin IV (Mylan) 1092611000168100 Indomethacin IV (Mylan) 38548011000036104 indometacin 1 mg injection, 3 vials 37828011000036105 indometacin 1 mg injection, vial 21301011000036107 indometacin +44702011000036108 Tacidine 150 mg capsule, 30, bottle 94206 42151011000036108 Tacidine 150 mg capsule, 30 7367011000036100 Tacidine 150 mg capsule 4018011000036106 Tacidine 4018011000036106 Tacidine 46912011000036105 nizatidine 150 mg capsule, 30 23518011000036109 nizatidine 150 mg capsule 21421011000036109 nizatidine +59843011000036104 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 50, blister pack 114919 55805011000036103 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 50 53680011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet 29011000168105 Paracetamol Extra Tabsule (Guardian) 29011000168105 Paracetamol Extra Tabsule (Guardian) 63140011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 50 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +69211011000036103 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 1 L bottle 19458 67011011000036101 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 1 L bottle 65239011000036104 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 1 L bottle 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 71581011000036101 chlorhexidine acetate 0.015% (150 mg/L) + cetrimide 0.15% (1.5 g/L) solution, 1 L bottle 70076011000036106 chlorhexidine acetate 0.015% (150 mg/L) + cetrimide 0.15% (1.5 g/L) solution, bottle 69756011000036105 chlorhexidine + cetrimide +915491000168108 Ampicillin (AG) 1 g powder for injection, 5 vials 203933 915481000168105 Ampicillin (AG) 1 g powder for injection, 5 vials 915471000168107 Ampicillin (AG) 1 g powder for injection, vial 915401000168102 Ampicillin (AG) 915401000168102 Ampicillin (AG) 28099011000036101 ampicillin 1 g injection, 5 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +18246011000036109 Mirtazapine (Sandoz) 45 mg film-coated tablet, 30, blister pack 117157 11562011000036101 Mirtazapine (Sandoz) 45 mg film-coated tablet, 30 5217011000036107 Mirtazapine (Sandoz) 45 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +879481000168109 Olopatadine (Blooms The Chemist) 0.1% eye drops solution, 5 mL, bottle 241492 879471000168106 Olopatadine (Blooms The Chemist) 0.1% eye drops solution, 5 mL 879461000168100 Olopatadine (Blooms The Chemist) 0.1% eye drops solution 879451000168102 Olopatadine (Blooms The Chemist) 879451000168102 Olopatadine (Blooms The Chemist) 46800011000036102 olopatadine 0.1% eye drops, 5 mL 45321011000036104 olopatadine 0.1% eye drops 44954011000036103 olopatadine +60085011000036105 Period Pain Relief (Pharmacy Choice) 275 mg film-coated tablet, 12, blister pack 126537 56046011000036101 Period Pain Relief (Pharmacy Choice) 275 mg film-coated tablet, 12 53770011000036105 Period Pain Relief (Pharmacy Choice) 275 mg film-coated tablet 53422011000036104 Period Pain Relief (Pharmacy Choice) 53422011000036104 Period Pain Relief (Pharmacy Choice) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +939971000168109 Alendronate (GenRx) 70 mg uncoated tablet, 4, blister pack 123864 939961000168103 Alendronate (GenRx) 70 mg uncoated tablet, 4 939951000168100 Alendronate (GenRx) 70 mg uncoated tablet 939941000168102 Alendronate (GenRx) 939941000168102 Alendronate (GenRx) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +974371000168109 Nortritabs 10 mg uncoated tablet, 100, bottle 221001 974361000168103 Nortritabs 10 mg uncoated tablet, 100 974291000168100 Nortritabs 10 mg uncoated tablet 974101000168102 Nortritabs 974101000168102 Nortritabs 967991000168106 nortriptyline 10 mg tablet, 100 22255011000036109 nortriptyline 10 mg tablet 21689011000036104 nortriptyline +1109721000168104 Nicotinell Ice Mint 2 mg chewing gum, 216, blister pack 279615 1109711000168106 Nicotinell Ice Mint 2 mg chewing gum, 216 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897621000168106 nicotine 2 mg gum, 216 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60569011000036106 Cold and Flu Day PE (Pharmacist) uncoated tablet, 24, blister pack 154971 56527011000036103 Cold and Flu Day PE (Pharmacist) uncoated tablet, 24 53954011000036106 Cold and Flu Day PE (Pharmacist) uncoated tablet 53583011000036106 Cold and Flu Day PE (Pharmacist) 53583011000036106 Cold and Flu Day PE (Pharmacist) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1059531000168109 Metformin 1000 (Auro) 1 g film-coated tablet, 100, bottle 180439 1059521000168106 Metformin 1000 (Auro) 1 g film-coated tablet, 100 714621000168103 Metformin 1000 (Auro) 1 g film-coated tablet 714611000168105 Metformin 1000 (Auro) 714611000168105 Metformin 1000 (Auro) 16921000036107 metformin hydrochloride 1 g tablet, 100 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +20539011000036109 Klacid 250 mg film-coated tablet, 100, blister pack 79564 13738011000036100 Klacid 250 mg film-coated tablet, 100 7020011000036105 Klacid 250 mg film-coated tablet 3147011000036106 Klacid 3147011000036106 Klacid 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +931695011000036102 Simvastatin (Pfizer) 10 mg film-coated tablet, 30, blister pack 170525 930855011000036107 Simvastatin (Pfizer) 10 mg film-coated tablet, 30 930073011000036105 Simvastatin (Pfizer) 10 mg film-coated tablet 929838011000036104 Simvastatin (Pfizer) 929838011000036104 Simvastatin (Pfizer) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +50383011000036107 Elastocrepe (36102320) 10 cm x 2.3 m bandage, 1, wrapping 49516011000036105 Elastocrepe (36102320) 10 cm x 2.3 m bandage, 1 48736011000036100 Elastocrepe (36102320) 10 cm x 2.3 m bandage 62881000168105 Elastocrepe (36102320) 62881000168105 Elastocrepe (36102320) 51464011000036108 bandage retention cotton crepe 10 cm x 2.3 m bandage, 1 50971011000036105 bandage retention cotton crepe 10 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +20574011000036105 Arixtra 2.5 mg/0.5 mL injection solution, 7 x 0.5 mL syringes 80279 13764011000036103 Arixtra 2.5 mg/0.5 mL injection solution, 7 x 0.5 mL syringes 7049011000036101 Arixtra 2.5 mg/0.5 mL injection solution, 0.5 mL syringe 3651011000036101 Arixtra 3651011000036101 Arixtra 27927011000036101 fondaparinux sodium 2.5 mg/0.5 mL injection, 7 x 0.5 mL syringes 23251011000036101 fondaparinux sodium 2.5 mg/0.5 mL injection, syringe 21445011000036109 fondaparinux +929066011000036106 Idarubicin Hydrochloride (Ebewe) 10 mg/10 mL concentrated injection, 5 x 10 mL vials 162931 928427011000036106 Idarubicin Hydrochloride (Ebewe) 10 mg/10 mL concentrated injection, 5 x 10 mL vials 927972011000036103 Idarubicin Hydrochloride (Ebewe) 10 mg/10 mL concentrated injection, 10 mL vial 927760011000036104 Idarubicin Hydrochloride (Ebewe) 927760011000036104 Idarubicin Hydrochloride (Ebewe) 929258011000036108 idarubicin hydrochloride 10 mg/10 mL injection, 5 x 10 mL vials 33681011000036108 idarubicin hydrochloride 10 mg/10 mL injection, vial 21720011000036108 idarubicin +648831000168105 Cocaine Hydrochloride Eye Drops Strong APF (extemporaneous) 5% eye drops solution, 5 mL, poison bottle 648821000168107 Cocaine Hydrochloride Eye Drops Strong APF (extemporaneous) 5% eye drops solution, 5 mL 648811000168100 Cocaine Hydrochloride Eye Drops Strong APF (extemporaneous) 5% eye drops solution 648801000168103 Cocaine Hydrochloride Eye Drops Strong APF (extemporaneous) 648801000168103 Cocaine Hydrochloride Eye Drops Strong APF (extemporaneous) 648551000168101 cocaine hydrochloride 5% eye drops, 5 mL 648531000168107 cocaine hydrochloride 5% eye drops 61796011000036105 cocaine +30501000036103 Moclobemide (PS) 300 mg film-coated tablet, 60, blister pack 184085 28801000036104 Moclobemide (PS) 300 mg film-coated tablet, 60 26541000036100 Moclobemide (PS) 300 mg film-coated tablet 26271000036105 Moclobemide (PS) 26271000036105 Moclobemide (PS) 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +880711000168108 Bupivacaine (Claris) 0.25% (50 mg/20 mL) injection solution, 20 mL vial 223236 880701000168105 Bupivacaine (Claris) 0.25% (50 mg/20 mL) injection solution, 20 mL vial 880681000168107 Bupivacaine (Claris) 0.25% (50 mg/20 mL) injection solution, 20 mL vial 879561000168104 Bupivacaine (Claris) 879561000168104 Bupivacaine (Claris) 880691000168105 bupivacaine hydrochloride 0.25% (50 mg/20 mL) injection, 20 mL vial 37852011000036106 bupivacaine hydrochloride 0.25% (50 mg/20 mL) injection, vial 37702011000036102 bupivacaine +1107541000168108 Syquet 100 mg film-coated tablet, 20, blister pack 203592 1107531000168104 Syquet 100 mg film-coated tablet, 20 15301000036107 Syquet 100 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +18557011000036100 Pulmicort Turbuhaler 100 microgram/actuation powder for inhalation, 200 actuations, dry powder inhaler 10063 11151011000036105 Pulmicort Turbuhaler 100 microgram/actuation powder for inhalation, 200 actuations 5652011000036103 Pulmicort Turbuhaler 100 microgram/actuation powder for inhalation, actuation 53431000168105 Pulmicort Turbuhaler 53431000168105 Pulmicort Turbuhaler 26539011000036101 budesonide 100 microgram/actuation powder for inhalation, 200 actuations 21948011000036100 budesonide 100 microgram/actuation powder for inhalation, actuation 21307011000036104 budesonide +708931000168102 Bisoprolol (Generic Health) 10 mg film-coated tablet, 28, blister pack 212058 708921000168100 Bisoprolol (Generic Health) 10 mg film-coated tablet, 28 708911000168107 Bisoprolol (Generic Health) 10 mg film-coated tablet 708841000168102 Bisoprolol (Generic Health) 708841000168102 Bisoprolol (Generic Health) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +20176011000036106 Prazosin (GenRx) 5 mg uncoated tablet, 100, blister pack 73866 13399011000036104 Prazosin (GenRx) 5 mg uncoated tablet, 100 6684011000036104 Prazosin (GenRx) 5 mg uncoated tablet 3943011000036104 Prazosin (GenRx) 3943011000036104 Prazosin (GenRx) 27729011000036100 prazosin 5 mg tablet, 100 23064011000036100 prazosin 5 mg tablet 21544011000036104 prazosin +741261000168103 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 10 x 0.25 mL injection devices 231046 741251000168100 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 10 x 0.25 mL injection devices 741171000168103 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741241000168102 follitropin alfa 150 units (11 microgram)/0.25 mL injection, 10 x 0.25 mL injection devices 741161000168109 follitropin alfa 150 units (11 microgram)/0.25 mL injection, injection device 21352011000036107 follitropin alfa +43896011000036108 Neupro 6 mg/24 hours patch, 7, sachet 131382 41388011000036100 Neupro 6 mg/24 hours patch, 7 39951011000036101 Neupro 6 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46285011000036104 rotigotine 6 mg/24 hours patch, 7 45053011000036103 rotigotine 6 mg/24 hours patch 44880011000036107 rotigotine +775561000168103 Forthane 1 mL/mL inhalation solution, 100 mL, bottle 29656 775551000168100 Forthane 1 mL/mL inhalation solution, 100 mL 775541000168102 Forthane 1 mL/mL inhalation solution 35961011000036103 Forthane 35961011000036103 Forthane 46487011000036108 isoflurane 1 mL/mL inhalation solution, 100 mL 45182011000036107 isoflurane 1 mL/mL inhalation solution 37776011000036109 isoflurane +1026171000168107 Neuroccord 150 mg hard capsule, 30, bottle 235841 1026161000168101 Neuroccord 150 mg hard capsule, 30 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 971611000168109 pregabalin 150 mg capsule, 30 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +121401000036100 Donepezil Hydrochloride (Pharmacor) 5 mg film-coated tablet, 28, blister pack 167195 120311000036100 Donepezil Hydrochloride (Pharmacor) 5 mg film-coated tablet, 28 119761000036100 Donepezil Hydrochloride (Pharmacor) 5 mg film-coated tablet 119181000036106 Donepezil Hydrochloride (Pharmacor) 119181000036106 Donepezil Hydrochloride (Pharmacor) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +60390011000036104 Dozile 25 mg tablet, 12, blister pack 143861 56349011000036106 Dozile 25 mg tablet, 12 53886011000036104 Dozile 25 mg tablet 53226011000036101 Dozile 53226011000036101 Dozile 63826011000036106 doxylamine succinate 25 mg tablet, 12 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +790221000168107 Oxycontin 30 mg modified release tablet, 10, bottle 200028 790211000168100 Oxycontin 30 mg modified release tablet, 10 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790201000168103 oxycodone hydrochloride 30 mg modified release tablet, 10 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +1120151000168105 Quetiapine (Watson) 200 mg film-coated tablet, 20, blister pack 202264 1120141000168108 Quetiapine (Watson) 200 mg film-coated tablet, 20 1120131000168104 Quetiapine (Watson) 200 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +18799011000036104 Betaloc 50 mg uncoated tablet, 100, blister pack 12065 11648011000036102 Betaloc 50 mg uncoated tablet, 100 5502011000036100 Betaloc 50 mg uncoated tablet 3906011000036103 Betaloc 3906011000036103 Betaloc 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +1043011000168108 Pryzex ODT 10 mg orally disintegrating tablet, 21, blister pack 179076 1043001000168105 Pryzex ODT 10 mg orally disintegrating tablet, 21 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1042991000168109 olanzapine 10 mg orally disintegrating tablet, 21 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +914551000168101 Famvir 250 mg film-coated tablet, 30, blister pack 51389 914541000168103 Famvir 250 mg film-coated tablet, 30 5598011000036100 Famvir 250 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 87819011000036103 famciclovir 250 mg tablet, 30 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +86022011000036100 Lisinopril (DRLA) 10 mg uncoated tablet, 100, blister pack 152721 85655011000036102 Lisinopril (DRLA) 10 mg uncoated tablet, 100 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 86418011000036103 lisinopril 10 mg tablet, 100 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +933216101000036100 Neurolite (2 x 900 microgram vials, 2 x inert diluent vials), 1 pack, composite pack 73014 933205711000036106 Neurolite (2 x 900 microgram vials, 2 x inert diluent vials), 1 pack 933196791000036105 Neurolite (bicisate dihydrochloride 900 microgram) powder for injection, vial 933193101000036107 Neurolite 933193101000036107 Neurolite 933205721000036104 bicisate dihydrochloride 900 microgram injection [2 vials] (&) inert substance diluent [2 vials], 1 pack 933196801000036109 bicisate dihydrochloride 900 microgram injection, vial 933216271000036101 bicisate dihydrochloride +933216101000036100 Neurolite (2 x 900 microgram vials, 2 x inert diluent vials), 1 pack, composite pack 73014 933205711000036106 Neurolite (2 x 900 microgram vials, 2 x inert diluent vials), 1 pack 933196811000036106 Neurolite (inert substance) diluent, vial 933193101000036107 Neurolite 933193101000036107 Neurolite 933205721000036104 bicisate dihydrochloride 900 microgram injection [2 vials] (&) inert substance diluent [2 vials], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +17780011000036102 Lamitrin 50 mg tablet, 56, blister pack 114265 11469011000036100 Lamitrin 50 mg tablet, 56 4839011000036109 Lamitrin 50 mg tablet 4282011000036100 Lamitrin 4282011000036100 Lamitrin 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +920781011000036104 Cefotaxime (DBL) 1 g powder for injection, 1 vial 78702 920460011000036104 Cefotaxime (DBL) 1 g powder for injection, 1 vial 920196011000036104 Cefotaxime (DBL) 1 g powder for injection, vial 920087011000036105 Cefotaxime (DBL) 920087011000036105 Cefotaxime (DBL) 33811011000036100 cefotaxime 1 g injection, 1 vial 33682011000036102 cefotaxime 1 g injection, vial 21327011000036105 cefotaxime +14261000036102 Quetiapine (Actavis) 100 mg film-coated tablet, 90, blister pack 179904 7871000036101 Quetiapine (Actavis) 100 mg film-coated tablet, 90 3421000036107 Quetiapine (Actavis) 100 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +875941000168107 Bispro 3.75 mg film-coated tablet, 100, blister pack 130179 875931000168103 Bispro 3.75 mg film-coated tablet, 100 875761000168108 Bispro 3.75 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 874891000168105 bisoprolol fumarate 3.75 mg tablet, 100 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +19041011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40192 12348011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5052011000036109 Logynon ED (inert substance) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19041011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40192 12348011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5990011000036106 Logynon ED (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +19041011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40192 12348011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5905011000036100 Logynon ED (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +19041011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40192 12348011000036105 Logynon ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 4981011000036105 Logynon ED (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700021511000036101 Logynon ED 700021511000036101 Logynon ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +61283011000036109 Diclofenac Sodium Anti-Inflammatory Pain Relief (Soul Pattinson) 25 mg enteric tablet, 30, blister pack 78265 57219011000036106 Diclofenac Sodium Anti-Inflammatory Pain Relief (Soul Pattinson) 25 mg enteric tablet, 30 54242011000036100 Diclofenac Sodium Anti-Inflammatory Pain Relief (Soul Pattinson) 25 mg enteric tablet 31631000168108 Diclofenac Sodium Anti-Inflammatory Pain Relief (Soul Pattinson) 31631000168108 Diclofenac Sodium Anti-Inflammatory Pain Relief (Soul Pattinson) 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +31461000036109 Actiq 200 microgram lozenge on handle, 9, blister pack 91598 29291000036101 Actiq 200 microgram lozenge on handle, 9 34075011000036107 Actiq 200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 29301000036102 fentanyl 200 microgram lozenge on handle, 9 34910011000036103 fentanyl 200 microgram lozenge on handle 21258011000036102 fentanyl +95641000036101 Nevirapine (RBX) 200 mg uncoated tablet, 14, blister pack 195528 94531000036106 Nevirapine (RBX) 200 mg uncoated tablet, 14 93601000036103 Nevirapine (RBX) 200 mg uncoated tablet 93341000036105 Nevirapine (RBX) 93341000036105 Nevirapine (RBX) 94541000036101 nevirapine 200 mg tablet, 14 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +59901011000036100 Febridol Infant Drops 100 mg/mL oral liquid solution, 20 mL, bottle 117287 55863011000036103 Febridol Infant Drops 100 mg/mL oral liquid solution, 20 mL 53668011000036106 Febridol Infant Drops 100 mg/mL oral liquid solution 56301000168100 Febridol Infant Drops 56301000168100 Febridol Infant Drops 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +12091000036108 Zypine 10 mg film-coated tablet, 28, bottle 154623 7141000036101 Zypine 10 mg film-coated tablet, 28 3231000036108 Zypine 10 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +1109641000168100 Cloap 75/100 uncoated tablet, 112, blister pack 219058 1109631000168109 Cloap 75/100 uncoated tablet, 112 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82544011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 112 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +991851000168101 Famciclovir (Apotex) 250 mg film-coated tablet, 14, blister pack 160562 991841000168103 Famciclovir (Apotex) 250 mg film-coated tablet, 14 991811000168102 Famciclovir (Apotex) 250 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 86449011000036103 famciclovir 250 mg tablet, 14 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +743111000168105 Morphine MR (AN) 100 mg modified release tablet, 28, blister pack 225428 743101000168107 Morphine MR (AN) 100 mg modified release tablet, 28 743071000168103 Morphine MR (AN) 100 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 929758011000036101 morphine sulfate pentahydrate 100 mg modified release tablet, 28 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +50366011000036103 Allevyn Plus Cavity (66047571) 5 cm x 6 cm dressing, 10, carton 121509 49395011000036100 Allevyn Plus Cavity (66047571) 5 cm x 6 cm dressing, 10 48654011000036103 Allevyn Plus Cavity (66047571) 5 cm x 6 cm dressing 16721000168102 Allevyn Plus Cavity (66047571) 16721000168102 Allevyn Plus Cavity (66047571) 51365011000036103 dressing hydroactive cavity wound 5 cm x 6 cm dressing, 10 50887011000036100 dressing hydroactive cavity wound 5 cm x 6 cm dressing 50752011000036106 dressing hydroactive cavity wound +1017471000168107 Imatinib (Apotex) 400 mg film-coated tablet, 30, blister pack 196037 1017461000168101 Imatinib (Apotex) 400 mg film-coated tablet, 30 1017451000168103 Imatinib (Apotex) 400 mg film-coated tablet 848961000168101 Imatinib (Apotex) 848961000168101 Imatinib (Apotex) 28143011000036104 imatinib 400 mg tablet, 30 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +39413011000036107 Cosamide 50 mg film-coated tablet, 90, blister pack 135207 39296011000036101 Cosamide 50 mg film-coated tablet, 90 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 39488011000036104 bicalutamide 50 mg tablet, 90 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +931361011000036108 Sudafed Sinus and Nasal Decongestant 60 mg uncoated tablet, 12, blister pack 11003 930557011000036101 Sudafed Sinus and Nasal Decongestant 60 mg uncoated tablet, 12 929941011000036101 Sudafed Sinus and Nasal Decongestant 60 mg uncoated tablet 929872011000036104 Sudafed Sinus and Nasal Decongestant 929872011000036104 Sudafed Sinus and Nasal Decongestant 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +44766011000036106 Repreve 500 microgram film-coated tablet, 84, blister pack 96868 42211011000036102 Repreve 500 microgram film-coated tablet, 84 40392011000036107 Repreve 500 microgram film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 46971011000036105 ropinirole 500 microgram tablet, 84 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +19525011000036107 Acyclo-V 800 mg film-coated tablet, 35, blister pack 56373 12797011000036103 Acyclo-V 800 mg film-coated tablet, 35 6089011000036105 Acyclo-V 800 mg film-coated tablet 3992011000036100 Acyclo-V 3992011000036100 Acyclo-V 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +929657011000036105 MS Contin 10 mg modified release tablet, 28, blister pack 14461 929493011000036105 MS Contin 10 mg modified release tablet, 28 5826011000036105 MS Contin 10 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +929657011000036105 MS Contin 10 mg modified release tablet, 28, blister pack 210776 929493011000036105 MS Contin 10 mg modified release tablet, 28 5826011000036105 MS Contin 10 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +833481000168109 Picolax powder for oral liquid, 20 x 20 g sachets 54113 833471000168106 Picolax powder for oral liquid, 20 x 20 g sachets 832621000168100 Picolax powder for oral liquid, 20 g sachet 920943011000036104 Picolax 920943011000036104 Picolax 833461000168100 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 x 20 g sachets 832611000168107 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet 870871000168104 picosulfate + magnesium carbonate + citric acid +1083741000168101 Vicks Sinex 0.05% nasal spray, 15 mL, pump pack 175764 28601000036103 Vicks Sinex 0.05% nasal spray, 15 mL 27101000036109 Vicks Sinex 0.05% nasal spray 73754011000036100 Vicks Sinex 73754011000036100 Vicks Sinex 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +19283011000036105 Nilstat Oral Drops 100 000 units/mL oral liquid suspension, 24 mL, bottle 48569 12573011000036102 Nilstat Oral Drops 100 000 units/mL oral liquid suspension, 24 mL 5590011000036102 Nilstat Oral Drops 100 000 units/mL oral liquid suspension 62301000168108 Nilstat Oral Drops 62301000168108 Nilstat Oral Drops 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +95601000036104 Panadol Optizorb 500 mg film-coated tablet, 24, blister pack 186245 94491000036106 Panadol Optizorb 500 mg film-coated tablet, 24 93671000036107 Panadol Optizorb 500 mg film-coated tablet 18201000168104 Panadol Optizorb 18201000168104 Panadol Optizorb 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69338011000036109 Emetrol oral liquid solution, 100 mL, bottle 27474 67138011000036105 Emetrol oral liquid solution, 100 mL 65360011000036109 Emetrol oral liquid solution, 10 mL 64981011000036101 Emetrol 64981011000036101 Emetrol 71703011000036103 fructose 3.75 g/10 mL + glucose monohydrate 3.75 g/10 mL + phosphoric acid 50 mg/10 mL oral liquid, 100 mL 70137011000036104 fructose 3.75 g/10 mL + glucose monohydrate 3.75 g/10 mL + phosphoric acid 50 mg/10 mL oral liquid 69827011000036107 fructose + glucose + phosphoric acid +37385011000036105 Quinapril (Sandoz) 20 mg film-coated tablet, 30, blister pack 117226 36669011000036103 Quinapril (Sandoz) 20 mg film-coated tablet, 30 36147011000036104 Quinapril (Sandoz) 20 mg film-coated tablet 35972011000036102 Quinapril (Sandoz) 35972011000036102 Quinapril (Sandoz) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +747771000168106 Morphine MR (SCP) 60 mg modified release tablet, 60, blister pack 225423 747761000168100 Morphine MR (SCP) 60 mg modified release tablet, 60 747711000168103 Morphine MR (SCP) 60 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 35167011000036108 morphine sulfate pentahydrate 60 mg modified release tablet, 60 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +1109321000168103 Nicotinell Tropical Fruit 2 mg chewing gum, 216, blister pack 279617 1109311000168105 Nicotinell Tropical Fruit 2 mg chewing gum, 216 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897621000168106 nicotine 2 mg gum, 216 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +678971000168104 Clindamycin (Apo) 150 mg hard capsule, 24, blister pack 214377 678961000168105 Clindamycin (Apo) 150 mg hard capsule, 24 678951000168108 Clindamycin (Apo) 150 mg hard capsule 678941000168106 Clindamycin (Apo) 678941000168106 Clindamycin (Apo) 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +841741000168107 Atorvastatin (Amneal) 40 mg film-coated tablet, 40, blister pack 178542 841731000168103 Atorvastatin (Amneal) 40 mg film-coated tablet, 40 841641000168102 Atorvastatin (Amneal) 40 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841721000168101 atorvastatin 40 mg tablet, 40 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +991531000168109 Aripiprazole (Apotex) 30 mg uncoated tablet, 30, blister pack 152922 991521000168106 Aripiprazole (Apotex) 30 mg uncoated tablet, 30 991511000168104 Aripiprazole (Apotex) 30 mg uncoated tablet 990871000168102 Aripiprazole (Apotex) 990871000168102 Aripiprazole (Apotex) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +60385011000036109 Micardis Plus 80/25 multilayer tablet, 28, blister pack 143761 56344011000036105 Micardis Plus 80/25 multilayer tablet, 28 53885011000036106 Micardis Plus 80/25 multilayer tablet 17051000168109 Micardis Plus 80/25 17051000168109 Micardis Plus 80/25 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +691951000168105 Alen Plus D3 70 mg/140 microgram uncoated tablet, 4, blister pack 206935 691941000168108 Alen Plus D3 70 mg/140 microgram uncoated tablet, 4 691931000168104 Alen Plus D3 70 mg/140 microgram uncoated tablet 691921000168102 Alen Plus D3 70 mg/140 microgram 691921000168102 Alen Plus D3 70 mg/140 microgram 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +982951000168101 Advil Double Strength 400 mg effervescent tablet, 40, strip pack 201391 982941000168103 Advil Double Strength 400 mg effervescent tablet, 40 982891000168104 Advil Double Strength 400 mg effervescent tablet 982871000168100 Advil Double Strength 982871000168100 Advil Double Strength 982931000168107 ibuprofen 400 mg effervescent tablet, 40 982881000168102 ibuprofen 400 mg effervescent tablet 21885011000036105 ibuprofen +14191000036103 Quetiapine (GH) 100 mg film-coated tablet, 90, blister pack 179895 7801000036105 Quetiapine (GH) 100 mg film-coated tablet, 90 2221000036101 Quetiapine (GH) 100 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +743091000168102 Morphine MR (AN) 100 mg modified release tablet, 20, blister pack 225428 743081000168100 Morphine MR (AN) 100 mg modified release tablet, 20 743071000168103 Morphine MR (AN) 100 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 27109011000036102 morphine sulfate pentahydrate 100 mg modified release tablet, 20 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +674691000168104 Ondansetron (Medis) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 124504 674681000168102 Ondansetron (Medis) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 674651000168109 Ondansetron (Medis) 4 mg/2 mL injection solution, 2 mL ampoule 674591000168103 Ondansetron (Medis) 674591000168103 Ondansetron (Medis) 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +740921000168106 Fentora 800 microgram orally disintegrating tablet, 4, blister pack 218436 740911000168104 Fentora 800 microgram orally disintegrating tablet, 4 740891000168101 Fentora 800 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740901000168102 fentanyl 800 microgram orally disintegrating tablet, 4 740881000168104 fentanyl 800 microgram orally disintegrating tablet 21258011000036102 fentanyl +792461000168102 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 10, blister pack 194033 792451000168104 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 10 792431000168105 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +32603011000036101 Genotropin Miniquick (7 x 1.2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76613 32398011000036101 Genotropin Miniquick (7 x 1.2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 6859011000036103 Genotropin Miniquick (somatropin 1.2 mg) powder for injection, 1.2 mg syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32796011000036104 somatropin 1.2 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 23142011000036107 somatropin 1.2 mg injection, syringe 21295011000036100 somatropin +32603011000036101 Genotropin Miniquick (7 x 1.2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76613 32398011000036101 Genotropin Miniquick (7 x 1.2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32796011000036104 somatropin 1.2 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +897551000168104 Nicotinell Mint 2 mg chewing gum, 204, blister pack 126043 897541000168101 Nicotinell Mint 2 mg chewing gum, 204 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897531000168105 nicotine 2 mg gum, 204 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +50608011000036106 Celsentri 300 mg film-coated tablet, 30, blister pack 137331 49634011000036100 Celsentri 300 mg film-coated tablet, 30 48793011000036104 Celsentri 300 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51526011000036103 maraviroc 300 mg tablet, 30 50991011000036103 maraviroc 300 mg tablet 50741011000036103 maraviroc +957371000168102 Amlodipine (Genepharm) 5 mg uncoated tablet, 30, blister pack 135138 957361000168108 Amlodipine (Genepharm) 5 mg uncoated tablet, 30 957351000168106 Amlodipine (Genepharm) 5 mg uncoated tablet 940991000168103 Amlodipine (Genepharm) 940991000168103 Amlodipine (Genepharm) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +1060351000168109 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 98, blister pack 234539 1060341000168107 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 98 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911681000168105 rosuvastatin 20 mg tablet, 98 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +991691000168107 Cinacalcet (Apo) 90 mg film-coated tablet, 28, blister pack 240294 991681000168109 Cinacalcet (Apo) 90 mg film-coated tablet, 28 991671000168106 Cinacalcet (Apo) 90 mg film-coated tablet 991661000168100 Cinacalcet (Apo) 991661000168100 Cinacalcet (Apo) 38845011000036106 cinacalcet 90 mg tablet, 28 38045011000036107 cinacalcet 90 mg tablet 37755011000036100 cinacalcet +79719011000036108 Adrenaline Min-I-Jet (CSL) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 28956 79530011000036106 Adrenaline Min-I-Jet (CSL) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 79399011000036105 Adrenaline Min-I-Jet (CSL) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 61411000168108 Adrenaline Min-I-Jet (CSL) 61411000168108 Adrenaline Min-I-Jet (CSL) 79836011000036108 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, 10 mL syringe 79755011000036104 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, syringe 21823011000036103 adrenaline (epinephrine) +121491000036108 Heartburn and Acid Indigestion Relief (Pharmacy Action) 150 mg film-coated tablet, 14, blister pack 191837 120411000036105 Heartburn and Acid Indigestion Relief (Pharmacy Action) 150 mg film-coated tablet, 14 119621000036102 Heartburn and Acid Indigestion Relief (Pharmacy Action) 150 mg film-coated tablet 119231000036103 Heartburn and Acid Indigestion Relief (Pharmacy Action) 119231000036103 Heartburn and Acid Indigestion Relief (Pharmacy Action) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +18315011000036101 Sprycel 50 mg film-coated tablet, 60, bottle 125559 11806011000036100 Sprycel 50 mg film-coated tablet, 60 5616011000036106 Sprycel 50 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 26776011000036109 dasatinib 50 mg tablet, 60 22163011000036102 dasatinib 50 mg tablet 21627011000036104 dasatinib +661851000168104 Bisoprolol (AN) 5 mg film-coated tablet, 28, blister pack 175922 661841000168101 Bisoprolol (AN) 5 mg film-coated tablet, 28 661831000168105 Bisoprolol (AN) 5 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +931670011000036104 Twynsta 80/10 mg multilayer tablet, 7, blister pack 166266 930830011000036104 Twynsta 80/10 mg multilayer tablet, 7 930060011000036106 Twynsta 80/10 mg multilayer tablet 7561000168104 Twynsta 80/10 mg 7561000168104 Twynsta 80/10 mg 932443011000036109 telmisartan 80 mg + amlodipine 10 mg tablet, 7 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +833241000168100 Centrum film-coated tablet, 120, bottle 75827 833231000168109 Centrum film-coated tablet, 120 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833221000168106 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 120 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +931751000168104 Centevo 100/25/200 mg film-coated tablet, 98, bottle 238855 931741000168101 Centevo 100/25/200 mg film-coated tablet, 98 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931731000168105 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 98 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +20384011000036104 Blenamax 15 000 international units powder for injection, 10 vials 76905 13592011000036106 Blenamax 15 000 international units powder for injection, 10 vials 6875011000036102 Blenamax 15 000 international units powder for injection, 15 000 international units vial 3245011000036104 Blenamax 3245011000036104 Blenamax 27824011000036104 bleomycin sulfate 15 000 international units injection, 10 vials 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +17831011000036101 Lioresal 10 mg uncoated tablet, 100, bottle 11038 11409011000036101 Lioresal 10 mg uncoated tablet, 100 4530011000036102 Lioresal 10 mg uncoated tablet 3860011000036106 Lioresal 3860011000036106 Lioresal 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +884641000168109 Lamitan 50 mg tablet, 56, blister pack 150752 884631000168100 Lamitan 50 mg tablet, 56 884621000168103 Lamitan 50 mg tablet 884551000168105 Lamitan 884551000168105 Lamitan 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +18073011000036109 Tranalpha 2 mg hard capsule, 28, blister pack 130876 11912011000036106 Tranalpha 2 mg hard capsule, 28 5605011000036101 Tranalpha 2 mg hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +18073011000036109 Tranalpha 2 mg hard capsule, 28, blister pack 198994 11912011000036106 Tranalpha 2 mg hard capsule, 28 5605011000036101 Tranalpha 2 mg hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +1026011000168103 Neuroccord 300 mg hard capsule, 21, blister pack 235864 1026001000168101 Neuroccord 300 mg hard capsule, 21 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855551000168101 pregabalin 300 mg capsule, 21 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1041001000168106 Atorvastatin (DRLA) 10 mg film-coated tablet, 30, blister pack 198826 1040991000168105 Atorvastatin (DRLA) 10 mg film-coated tablet, 30 1040981000168107 Atorvastatin (DRLA) 10 mg film-coated tablet 1040891000168103 Atorvastatin (DRLA) 1040891000168103 Atorvastatin (DRLA) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +786111000168108 Suboxone 4/1 sublingual film, 28, sachet 211117 786101000168105 Suboxone 4/1 sublingual film, 28 786081000168103 Suboxone 4/1 sublingual film 786061000168107 Suboxone 4/1 786061000168107 Suboxone 4/1 786091000168100 buprenorphine 4 mg + naloxone 1 mg sublingual film, 28 786071000168101 buprenorphine 4 mg + naloxone 1 mg sublingual film 21739011000036100 buprenorphine + naloxone +713291000168101 Pergoveris (1 x vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 152797 713281000168104 Pergoveris (1 x vial, 1 x 1 mL inert diluent vial), 1 pack 713251000168106 Pergoveris (follitropin alfa 150 units (10.92 microgram) + lutropin alfa 75 units) powder for injection, vial 713181000168106 Pergoveris 713181000168106 Pergoveris 713271000168102 follitropin alfa 150 units (10.92 microgram) + lutropin alfa 75 units injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 713241000168109 follitropin alfa 150 units (10.92 microgram) + lutropin alfa 75 units injection, vial 713231000168100 follitropin alfa + lutropin alfa +713291000168101 Pergoveris (1 x vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 152797 713281000168104 Pergoveris (1 x vial, 1 x 1 mL inert diluent vial), 1 pack 713261000168108 Pergoveris (inert substance) diluent, 1 mL vial 713181000168106 Pergoveris 713181000168106 Pergoveris 713271000168102 follitropin alfa 150 units (10.92 microgram) + lutropin alfa 75 units injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +1051671000168105 Palexia SR 50 mg modified release tablet, 56, blister pack 165332 1051661000168104 Palexia SR 50 mg modified release tablet, 56 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051651000168101 tapentadol 50 mg modified release tablet, 56 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +1066701000168108 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 15, blister pack 197884 1066691000168108 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 15 1066591000168109 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +69511011000036107 Dry Cough Medicine (Nyal) 15 mg/10 mL oral liquid solution, 200 mL, bottle 52355 67311011000036102 Dry Cough Medicine (Nyal) 15 mg/10 mL oral liquid solution, 200 mL 65603011000036109 Dry Cough Medicine (Nyal) 15 mg/10 mL oral liquid solution, 10 mL 65190011000036103 Dry Cough Medicine (Nyal) 65190011000036103 Dry Cough Medicine (Nyal) 71857011000036104 pentoxyverine citrate 15 mg/10 mL oral liquid, 200 mL 70217011000036108 pentoxyverine citrate 15 mg/10 mL oral liquid 69784011000036108 pentoxyverine citrate +923211000168108 Perindopril/Indapamide 4/1.25 (Apo) uncoated tablet, 30, blister pack 127122 923201000168105 Perindopril/Indapamide 4/1.25 (Apo) uncoated tablet, 30 923191000168107 Perindopril/Indapamide 4/1.25 (Apo) uncoated tablet 923181000168109 Perindopril/Indapamide 4/1.25 (Apo) 923181000168109 Perindopril/Indapamide 4/1.25 (Apo) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +14101000036106 Olanzapine ODT (GA) 10 mg orally disintegrating tablet, 28, blister pack 179091 7751000036102 Olanzapine ODT (GA) 10 mg orally disintegrating tablet, 28 3391000036100 Olanzapine ODT (GA) 10 mg orally disintegrating tablet 26831000168100 Olanzapine ODT (GA) 26831000168100 Olanzapine ODT (GA) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +1017401000168102 Imatinib (Apotex) 100 mg film-coated tablet, 180, blister pack 196036 1017391000168104 Imatinib (Apotex) 100 mg film-coated tablet, 180 1017361000168106 Imatinib (Apotex) 100 mg film-coated tablet 848961000168101 Imatinib (Apotex) 848961000168101 Imatinib (Apotex) 829001000168106 imatinib 100 mg tablet, 180 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +948791000168103 Invast 5 mg film-coated tablet, 100, bottle 100259 948781000168101 Invast 5 mg film-coated tablet, 100 948751000168108 Invast 5 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 46085011000036109 simvastatin 5 mg tablet, 100 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +20868011000036107 Fluoxetine (DP) 20 mg capsule, 28, blister pack 92687 14030011000036103 Fluoxetine (DP) 20 mg capsule, 28 7306011000036102 Fluoxetine (DP) 20 mg capsule 4095011000036104 Fluoxetine (DP) 4095011000036104 Fluoxetine (DP) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +20320011000036104 Tramal SR 100 mg modified release tablet, 20, blister pack 75947 13529011000036107 Tramal SR 100 mg modified release tablet, 20 6812011000036104 Tramal SR 100 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +1118221000168104 Serapine 200 mg film-coated tablet, 60, blister pack 204163 1118211000168106 Serapine 200 mg film-coated tablet, 60 1118181000168107 Serapine 200 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +11931000036104 Olanzapine (Generic Health) 2.5 mg tablet, 28, blister pack 152124 6651000036105 Olanzapine (Generic Health) 2.5 mg tablet, 28 3281000036107 Olanzapine (Generic Health) 2.5 mg tablet 711000168100 Olanzapine (Generic Health) 711000168100 Olanzapine (Generic Health) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +18292011000036104 Ozole 50 mg hard capsule, 28, blister pack 122901 11724011000036104 Ozole 50 mg hard capsule, 28 5757011000036109 Ozole 50 mg hard capsule 3098011000036107 Ozole 3098011000036107 Ozole 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +775421000168109 Hizentra 4 g/20 mL injection solution, 20 mL vial 207383 775411000168102 Hizentra 4 g/20 mL injection solution, 20 mL vial 775391000168102 Hizentra 4 g/20 mL injection solution, 20 mL vial 772751000168104 Hizentra 772751000168104 Hizentra 775401000168100 normal immunoglobulin 4 g/20 mL injection, 20 mL vial 775381000168100 normal immunoglobulin 4 g/20 mL injection, vial 74965011000036103 normal immunoglobulin +1077531000168100 Atomoxetine (AN) 18 mg hard capsule, 28, blister pack 234790 1077521000168103 Atomoxetine (AN) 18 mg hard capsule, 28 1077471000168101 Atomoxetine (AN) 18 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +69027011000036106 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 6 sachets 140597 66829011000036107 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 6 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71443011000036102 paracetamol 1 g powder for oral liquid, 6 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +850321000168105 Aripiprazole (Sandoz) 20 mg uncoated tablet, 30, blister pack 158285 850311000168103 Aripiprazole (Sandoz) 20 mg uncoated tablet, 30 850301000168101 Aripiprazole (Sandoz) 20 mg uncoated tablet 850231000168101 Aripiprazole (Sandoz) 850231000168101 Aripiprazole (Sandoz) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1111731000168103 Midalim 50 mg/10 mL injection solution, 10 mL ampoule 207234 1111721000168101 Midalim 50 mg/10 mL injection solution, 10 mL ampoule 1111711000168108 Midalim 50 mg/10 mL injection solution, 10 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 664091000168103 midazolam 50 mg/10 mL injection, 10 mL ampoule 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +17947011000036100 Seretide MDI 250/25 pressurised inhalation, 120 actuations, metered dose aerosol can 120663 11651011000036109 Seretide MDI 250/25 pressurised inhalation, 120 actuations 4943011000036102 Seretide MDI 250/25 pressurised inhalation, actuation 51161000168105 Seretide MDI 250/25 51161000168105 Seretide MDI 250/25 26725011000036101 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22120011000036102 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +17947011000036100 Seretide MDI 250/25 pressurised inhalation, 120 actuations, metered dose aerosol can 77831 11651011000036109 Seretide MDI 250/25 pressurised inhalation, 120 actuations 4943011000036102 Seretide MDI 250/25 pressurised inhalation, actuation 51161000168105 Seretide MDI 250/25 51161000168105 Seretide MDI 250/25 26725011000036101 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22120011000036102 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +30661000036100 Metformin Hydrochloride (Pfizer) 850 mg film-coated tablet, 60, blister pack 180436 29131000036106 Metformin Hydrochloride (Pfizer) 850 mg film-coated tablet, 60 26361000036107 Metformin Hydrochloride (Pfizer) 850 mg film-coated tablet 40351000168101 Metformin Hydrochloride (Pfizer) 40351000168101 Metformin Hydrochloride (Pfizer) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1075201000168103 Atenolol (RBX) 25 mg film-coated tablet, 28, blister pack 197757 1075191000168101 Atenolol (RBX) 25 mg film-coated tablet, 28 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029541000168101 atenolol 25 mg tablet, 28 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +121411000036103 Olanzapine ODT (RBX) 5 mg orally disintegrating tablet, 28, blister pack 177798 120281000036103 Olanzapine ODT (RBX) 5 mg orally disintegrating tablet, 28 119551000036109 Olanzapine ODT (RBX) 5 mg orally disintegrating tablet 47861000168108 Olanzapine ODT (RBX) 47861000168108 Olanzapine ODT (RBX) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +931593011000036109 Pratin 10 mg film-coated tablet, 30, bottle 163556 930754011000036106 Pratin 10 mg film-coated tablet, 30 930036011000036102 Pratin 10 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +18421000036100 Milivin OD 45 mg orally disintegrating tablet, 30, blister pack 183406 17001000036103 Milivin OD 45 mg orally disintegrating tablet, 30 15791000036103 Milivin OD 45 mg orally disintegrating tablet 19001000168104 Milivin OD 19001000168104 Milivin OD 47701000036107 mirtazapine 45 mg orally disintegrating tablet, 30 47571000036107 mirtazapine 45 mg orally disintegrating tablet 21463011000036102 mirtazapine +948831000168109 Invast 10 mg film-coated tablet, 30, blister pack 100255 945831000168101 Invast 10 mg film-coated tablet, 30 945821000168104 Invast 10 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1051761000168107 Palexia SR 50 mg modified release tablet, 100, blister pack 165332 1051751000168105 Palexia SR 50 mg modified release tablet, 100 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051741000168108 tapentadol 50 mg modified release tablet, 100 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +50268011000036108 MCT oral oil, 500 mL, bottle 49464011000036107 MCT oral oil, 500 mL 48649011000036100 MCT oral oil 58941000168103 MCT 58941000168103 MCT 51425011000036102 medium chain triglycerides oral oil, 500 mL 50942011000036103 medium chain triglycerides oral oil 50747011000036106 medium chain triglycerides +792501000168102 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 15, blister pack 194033 792491000168109 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 15 792431000168105 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +807621000168108 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) uncoated tablet, 30, bottle 224305 807611000168101 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) uncoated tablet, 30 807601000168104 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) uncoated tablet 807591000168106 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) 807591000168106 Perindopril Arginine/Amlodipine 10/10 (Terry White Chemists) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +933246431000036106 Lamotrigine (PS) 100 mg tablet, 56, blister pack 147633 933242981000036101 Lamotrigine (PS) 100 mg tablet, 56 933241251000036106 Lamotrigine (PS) 100 mg tablet 933240971000036104 Lamotrigine (PS) 933240971000036104 Lamotrigine (PS) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +1074881000168106 Atenolol (RBX) 100 mg film-coated tablet, 14, blister pack 197761 1074871000168108 Atenolol (RBX) 100 mg film-coated tablet, 14 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1031771000168100 atenolol 100 mg tablet, 14 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +14031000036103 Ramipril (Apo) 10 mg capsule, 30, bottle 179011 7711000036101 Ramipril (Apo) 10 mg capsule, 30 3551000036102 Ramipril (Apo) 10 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +657191000168104 Irbesartan HCTZ 300/25 (AN) film-coated tablet, 30, blister pack 192829 657181000168102 Irbesartan HCTZ 300/25 (AN) film-coated tablet, 30 657171000168100 Irbesartan HCTZ 300/25 (AN) film-coated tablet 657161000168106 Irbesartan HCTZ 300/25 (AN) 657161000168106 Irbesartan HCTZ 300/25 (AN) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +19099011000036100 Provera 10 mg uncoated tablet, 30, blister pack 42934 12404011000036103 Provera 10 mg uncoated tablet, 30 5765011000036105 Provera 10 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 27904011000036101 medroxyprogesterone acetate 10 mg tablet, 30 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +880531000168107 Brenzys 50 mg/mL injection solution, 4 x 1 mL syringes 245252 880521000168109 Brenzys 50 mg/mL injection solution, 4 x 1 mL syringes 880481000168109 Brenzys 50 mg/mL injection solution, syringe 880471000168106 Brenzys 880471000168106 Brenzys 79241011000036109 etanercept 50 mg/mL injection, 4 x 1 mL syringes 79116011000036107 etanercept 50 mg/mL injection, syringe 21347011000036107 etanercept +86864011000036101 Tazopip 4 g/0.5 g powder for injection, 4.5 g vial 144970 86750011000036102 Tazopip 4 g/0.5 g powder for injection, 4.5 g vial 86627011000036105 Tazopip 4 g/0.5 g powder for injection, 4.5 g vial 24101000168107 Tazopip 4 g/0.5 g 24101000168107 Tazopip 4 g/0.5 g 46368011000036104 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +910781000168109 Cavstat 10 mg film-coated tablet, 7, blister pack 234485 910771000168106 Cavstat 10 mg film-coated tablet, 7 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +974771000168108 Xatral SR 10 mg modified release tablet, 10, bottle 90911 974761000168102 Xatral SR 10 mg modified release tablet, 10 925752011000036106 Xatral SR 10 mg modified release tablet 33861000168103 Xatral SR 33861000168103 Xatral SR 974751000168104 alfuzosin hydrochloride 10 mg modified release tablet, 10 927041011000036104 alfuzosin hydrochloride 10 mg modified release tablet 926977011000036100 alfuzosin +902121000168105 Pico-Salax powder for oral liquid, 2 x 16.1 g sachets 138775 902111000168103 Pico-Salax powder for oral liquid, 2 x 16.1 g sachets 902091000168106 Pico-Salax powder for oral liquid, 16.1 g sachet 112631000036108 Pico-Salax 112631000036108 Pico-Salax 902101000168101 sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 2 x 16.1 g sachets 902081000168108 sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 16.1 g sachet 116971000036101 picosulfate + magnesium oxide + citric acid +933109011000036108 Lamictal 100 mg tablet, 56, bottle 51740 932913011000036104 Lamictal 100 mg tablet, 56 932764011000036106 Lamictal 100 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +928860011000036109 Rancet 10 mg film-coated tablet, 10, blister pack 138827 928222011000036108 Rancet 10 mg film-coated tablet, 10 927881011000036107 Rancet 10 mg film-coated tablet 927773011000036100 Rancet 927773011000036100 Rancet 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +20125011000036103 Zoton 30 mg enteric coated granules, 28 sachets 73031 13349011000036108 Zoton 30 mg enteric coated granules, 28 sachets 6634011000036106 Zoton 30 mg enteric coated granules, 30 mg sachet 39911000168109 Zoton 39911000168109 Zoton 27708011000036100 lansoprazole 30 mg enteric coated granules, 28 sachets 23043011000036108 lansoprazole 30 mg enteric coated granules, sachet 21491011000036101 lansoprazole +50544011000036104 Revlimid 10 mg hard capsule, 21, blister pack 132514 49581011000036103 Revlimid 10 mg hard capsule, 21 48780011000036106 Revlimid 10 mg hard capsule 48335011000036106 Revlimid 48335011000036106 Revlimid 51488011000036104 lenalidomide 10 mg capsule, 21 50984011000036104 lenalidomide 10 mg capsule 50719011000036107 lenalidomide +34631011000036100 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 5 x 100 mL bags 118321 34221011000036104 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 5 x 100 mL bags 33970011000036108 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 33950011000036106 Metronidazole (Sandoz) 33950011000036106 Metronidazole (Sandoz) 35101011000036101 metronidazole 500 mg/100 mL (0.5%) injection, 5 x 100 mL bags 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +79702011000036101 Allerfexo 120 mg film-coated tablet, 30, blister pack 159415 79518011000036104 Allerfexo 120 mg film-coated tablet, 30 79393011000036107 Allerfexo 120 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +1086391000168104 Hayfever Prevention and Relief (Chemmart Pharmacy) 50 microgram/actuation nasal spray, 65 actuations, pump pack 280063 1086381000168102 Hayfever Prevention and Relief (Chemmart Pharmacy) 50 microgram/actuation nasal spray, 65 actuations 1086371000168100 Hayfever Prevention and Relief (Chemmart Pharmacy) 50 microgram/actuation nasal spray, actuation 1086361000168106 Hayfever Prevention and Relief (Chemmart Pharmacy) 1086361000168106 Hayfever Prevention and Relief (Chemmart Pharmacy) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +20701011000036102 Alprax 250 microgram uncoated tablet, 50, bottle 82637 13875011000036105 Alprax 250 microgram uncoated tablet, 50 7162011000036108 Alprax 250 microgram uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 28280011000036103 alprazolam 250 microgram tablet, 50 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +68738011000036106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 500 mL bottle 118481 66633011000036102 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 500 mL bottle 65295011000036105 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 500 mL bottle 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 71344011000036109 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, 500 mL bottle 69963011000036104 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, bottle 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +1077851000168108 Atomoxetine (AN) 60 mg hard capsule, 7, blister pack 234830 1077841000168106 Atomoxetine (AN) 60 mg hard capsule, 7 1077831000168102 Atomoxetine (AN) 60 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +827221000168101 Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 45073 827211000168108 Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 827181000168109 Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe 73701011000036109 Typhim Vi 73701011000036109 Typhim Vi 827121000168105 typhoid inactivated vaccine injection, 10 x 0.5 mL syringes 827101000168101 typhoid inactivated vaccine injection, 0.5 mL syringe 827091000168106 typhoid inactivated vaccine +34723011000036109 Methadone Hydrochloride Syrup (Orion) 3.25 mg/mL oral liquid solution, 20 mL, bottle 21177 34307011000036105 Methadone Hydrochloride Syrup (Orion) 3.25 mg/mL oral liquid solution, 20 mL 34030011000036101 Methadone Hydrochloride Syrup (Orion) 3.25 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35156011000036102 methadone hydrochloride 3.25 mg/mL oral liquid, 20 mL 34878011000036100 methadone hydrochloride 3.25 mg/mL oral liquid 21357011000036109 methadone +790541000168104 Inpler 25 mg film-coated tablet, 120, blister pack 231447 790531000168108 Inpler 25 mg film-coated tablet, 120 790411000168104 Inpler 25 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 790521000168105 eplerenone 25 mg tablet, 120 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +1059851000168101 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 98, blister pack 234468 1059841000168103 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 98 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930671000168109 rosuvastatin 5 mg tablet, 98 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +34678011000036107 Subutex FDT 8 mg uncoated tablet, 28, blister pack 134405 34264011000036108 Subutex FDT 8 mg uncoated tablet, 28 33994011000036106 Subutex FDT 8 mg uncoated tablet 26941000168100 Subutex FDT 26941000168100 Subutex FDT 35223011000036109 buprenorphine 8 mg tablet, 28 23148011000036105 buprenorphine 8 mg tablet 21232011000036101 buprenorphine +18056011000036100 Mysoline 250 mg uncoated tablet, 200, bottle 11231 11438011000036103 Mysoline 250 mg uncoated tablet, 200 4487011000036104 Mysoline 250 mg uncoated tablet 3249011000036102 Mysoline 3249011000036102 Mysoline 26646011000036102 primidone 250 mg tablet, 200 22052011000036109 primidone 250 mg tablet 21272011000036103 primidone +741561000168101 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 5 x 0.75 mL injection devices 231053 741551000168103 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 5 x 0.75 mL injection devices 741501000168102 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741541000168100 follitropin alfa 450 units (33 microgram)/0.75 mL injection, 5 x 0.75 mL injection devices 741491000168109 follitropin alfa 450 units (33 microgram)/0.75 mL injection, injection device 21352011000036107 follitropin alfa +168261000036103 Dermasoft Sanitising Hand Gel gel, 100 mL, bottle 118961 167941000036107 Dermasoft Sanitising Hand Gel gel, 100 mL 167511000036101 Dermasoft Sanitising Hand Gel gel 30361000168100 Dermasoft Sanitising Hand Gel 30361000168100 Dermasoft Sanitising Hand Gel 167971000036100 ethanol 70% + triclosan 0.3% gel, 100 mL 167521000036108 ethanol 70% + triclosan 0.3% gel 931785011000036107 ethanol + triclosan +777431000168102 Karvea 300 mg film-coated tablet, 14, blister pack 101708 777421000168100 Karvea 300 mg film-coated tablet, 14 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777411000168107 irbesartan 300 mg tablet, 14 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +929057011000036100 Galvumet 50/1000 film-coated tablet, 30, blister pack 161218 928418011000036101 Galvumet 50/1000 film-coated tablet, 30 927970011000036102 Galvumet 50/1000 film-coated tablet 14481000168101 Galvumet 50/1000 14481000168101 Galvumet 50/1000 929255011000036102 vildagliptin 50 mg + metformin hydrochloride 1 g tablet, 30 929156011000036106 vildagliptin 50 mg + metformin hydrochloride 1 g tablet 929132011000036106 vildagliptin + metformin +18765011000036103 Ramipril (Winthrop) 5 mg uncoated tablet, 30, blister pack 128848 11869011000036105 Ramipril (Winthrop) 5 mg uncoated tablet, 30 5797011000036102 Ramipril (Winthrop) 5 mg uncoated tablet 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +18301000036104 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 28, blister pack 177800 16861000036105 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 28 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +18301000036104 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 28, blister pack 179092 16861000036105 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 28 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +841661000168103 Atorvastatin (Amneal) 40 mg film-coated tablet, 10, blister pack 178542 841651000168100 Atorvastatin (Amneal) 40 mg film-coated tablet, 10 841641000168102 Atorvastatin (Amneal) 40 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1072731000168107 Parapane PE Cold and Flu Day and Night (36 x Day tablets, 12 x Night tablets), 48, blister pack 220398 1072721000168109 Parapane PE Cold and Flu Day and Night (36 x Day tablets, 12 x Night tablets), 48 1072681000168103 Parapane PE Cold and Flu Day and Night (Day) film-coated tablet 1072671000168101 Parapane PE Cold and Flu Day and Night 1067241000168100 Parapane PE Cold and Flu Day and Night (Day) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1072731000168107 Parapane PE Cold and Flu Day and Night (36 x Day tablets, 12 x Night tablets), 48, blister pack 220398 1072721000168109 Parapane PE Cold and Flu Day and Night (36 x Day tablets, 12 x Night tablets), 48 1072691000168100 Parapane PE Cold and Flu Day and Night (Night) film-coated tablet 1072671000168101 Parapane PE Cold and Flu Day and Night 1067251000168103 Parapane PE Cold and Flu Day and Night (Night) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +60482011000036107 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 7 sachets 150168 56440011000036106 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 7 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63360011000036103 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 7 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +1057701000168100 Atorvastatin (Ran) 40 mg film-coated tablet, 30, bottle 179839 1057091000168109 Atorvastatin (Ran) 40 mg film-coated tablet, 30 1057081000168106 Atorvastatin (Ran) 40 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +760271000168106 Sildenafil (DRLA) 25 mg film-coated tablet, 1, blister pack 186282 760261000168100 Sildenafil (DRLA) 25 mg film-coated tablet, 1 760241000168104 Sildenafil (DRLA) 25 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760251000168102 sildenafil 25 mg tablet, 1 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +678891000168105 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 (CH) uncoated tablet, 30, blister pack 147136 678881000168107 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 (CH) uncoated tablet, 30 678871000168109 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 (CH) uncoated tablet 678861000168103 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 (CH) 678861000168103 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 (CH) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +73296011000036105 Jurnista 32 mg modified release tablet, 28, blister pack 141534 73094011000036107 Jurnista 32 mg modified release tablet, 28 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73492011000036105 hydromorphone hydrochloride 32 mg modified release tablet, 28 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +68980011000036107 Nurofen Period Pain 200 mg film-coated tablet, 6, blister pack 134618 66782011000036108 Nurofen Period Pain 200 mg film-coated tablet, 6 65504011000036102 Nurofen Period Pain 200 mg film-coated tablet 24371000168100 Nurofen Period Pain 24371000168100 Nurofen Period Pain 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +931704011000036109 Aspirin EC (Terry White Chemists) 100 mg enteric tablet, 168, blister pack 172169 930864011000036100 Aspirin EC (Terry White Chemists) 100 mg enteric tablet, 168 930080011000036108 Aspirin EC (Terry White Chemists) 100 mg enteric tablet 24781000168103 Aspirin EC (Terry White Chemists) 24781000168103 Aspirin EC (Terry White Chemists) 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +87688011000036101 Famciclovir (Apo) 125 mg film-coated tablet, 56, bottle 160558 87480011000036101 Famciclovir (Apo) 125 mg film-coated tablet, 56 87335011000036105 Famciclovir (Apo) 125 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87823011000036105 famciclovir 125 mg tablet, 56 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +940251000168104 Escitalopram (GenRx) 5 mg film-coated tablet, 28, blister pack 145505 940241000168101 Escitalopram (GenRx) 5 mg film-coated tablet, 28 940231000168105 Escitalopram (GenRx) 5 mg film-coated tablet 940221000168107 Escitalopram (GenRx) 940221000168107 Escitalopram (GenRx) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +44558011000036100 Midazolam (Hospira) 5 mg/mL injection solution, 5 x 1 mL ampoules 81387 42011011000036109 Midazolam (Hospira) 5 mg/mL injection solution, 5 x 1 mL ampoules 40320011000036102 Midazolam (Hospira) 5 mg/mL injection solution, ampoule 39655011000036103 Midazolam (Hospira) 39655011000036103 Midazolam (Hospira) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +740761000168104 Fentora 600 microgram orally disintegrating tablet, 4, blister pack 218434 740751000168101 Fentora 600 microgram orally disintegrating tablet, 4 740731000168107 Fentora 600 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740741000168103 fentanyl 600 microgram orally disintegrating tablet, 4 740721000168109 fentanyl 600 microgram orally disintegrating tablet 21258011000036102 fentanyl +20609011000036105 Amiodarone Hydrochloride (GenRx) 100 mg uncoated tablet, 30, blister pack 80767 13791011000036104 Amiodarone Hydrochloride (GenRx) 100 mg uncoated tablet, 30 7077011000036107 Amiodarone Hydrochloride (GenRx) 100 mg uncoated tablet 3412011000036101 Amiodarone Hydrochloride (GenRx) 3412011000036101 Amiodarone Hydrochloride (GenRx) 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +19733011000036107 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 61643 12986011000036109 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 4 x 28 6276011000036103 Norinyl-1 28 Day (inert substance) uncoated tablet 700015261000036108 Norinyl-1 28 Day 700015261000036108 Norinyl-1 28 Day 27486011000036108 norethisterone 1 mg + mestranol 50 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19733011000036107 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 61643 12986011000036109 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 4 x 28 6275011000036105 Norinyl-1 28 Day (norethisterone 1 mg + mestranol 50 microgram) uncoated tablet 700015261000036108 Norinyl-1 28 Day 700015261000036108 Norinyl-1 28 Day 27486011000036108 norethisterone 1 mg + mestranol 50 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22832011000036109 norethisterone 1 mg + mestranol 50 microgram tablet 21651011000036108 norethisterone + mestranol +44091011000036102 Lithicarb 250 mg film-coated tablet, 1000, bottle 49625 41577011000036107 Lithicarb 250 mg film-coated tablet, 1000 40079011000036106 Lithicarb 250 mg film-coated tablet 3104011000036109 Lithicarb 3104011000036109 Lithicarb 46406011000036109 lithium carbonate 250 mg tablet, 1000 22400011000036107 lithium carbonate 250 mg tablet 21570011000036108 lithium carbonate +43907011000036101 Ramipril (DP) 10 mg hard capsule, 30, blister pack 134803 41399011000036107 Ramipril (DP) 10 mg hard capsule, 30 39849011000036106 Ramipril (DP) 10 mg hard capsule 39698011000036100 Ramipril (DP) 39698011000036100 Ramipril (DP) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +742951000168102 Morphine MR (AN) 30 mg modified release tablet, 60, blister pack 225426 742941000168104 Morphine MR (AN) 30 mg modified release tablet, 60 742931000168108 Morphine MR (AN) 30 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 35166011000036105 morphine sulfate pentahydrate 30 mg modified release tablet, 60 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +980541000168106 Lovenox 80 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 80268 980531000168102 Lovenox 80 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 980501000168109 Lovenox 80 mg/0.8 mL injection solution, 0.8 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823571000168107 enoxaparin sodium 80 mg/0.8 mL injection, 6 x 0.8 mL syringes 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +52791011000036103 Axit 15 mg film-coated tablet, 5, blister pack 97194 52603011000036106 Axit 15 mg film-coated tablet, 5 52439011000036102 Axit 15 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 52905011000036108 mirtazapine 15 mg tablet, 5 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +79627011000036100 Antistine-Privine eye drops, 10 mL, bottle 11021 79456011000036101 Antistine-Privine eye drops, 10 mL 79363011000036105 Antistine-Privine eye drops 3947011000036108 Antistine-Privine 3947011000036108 Antistine-Privine 26636011000036101 naphazoline nitrate 0.025% + antazoline sulfate 0.5% eye drops, 10 mL 22042011000036107 naphazoline nitrate 0.025% + antazoline sulfate 0.5% eye drops 21810011000036104 naphazoline + antazoline +1074921000168104 Atenolol (RBX) 100 mg film-coated tablet, 30, blister pack 197761 1074911000168106 Atenolol (RBX) 100 mg film-coated tablet, 30 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1031831000168105 atenolol 100 mg tablet, 30 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +1094331000168107 Loratadine (Amcal) 10 mg uncoated tablet, 50, blister pack 226844 1094321000168109 Loratadine (Amcal) 10 mg uncoated tablet, 50 1094271000168102 Loratadine (Amcal) 10 mg uncoated tablet 53343011000036104 Loratadine (Amcal) 53343011000036104 Loratadine (Amcal) 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +19007011000036105 Minax 50 mg uncoated tablet, 100, bottle 34408 12394011000036105 Minax 50 mg uncoated tablet, 100 4707011000036109 Minax 50 mg uncoated tablet 4275011000036101 Minax 4275011000036101 Minax 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +31141000036103 Karbesat HCT 300/12.5 film-coated tablet, 30, blister pack 171437 28331000036100 Karbesat HCT 300/12.5 film-coated tablet, 30 26761000036106 Karbesat HCT 300/12.5 film-coated tablet 63831000168102 Karbesat HCT 300/12.5 63831000168102 Karbesat HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +661571000168105 Carvedilol (AN) 25 mg film-coated tablet, 60, blister pack 174804 661561000168104 Carvedilol (AN) 25 mg film-coated tablet, 60 661551000168101 Carvedilol (AN) 25 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +18373011000036105 Perindopril Erbumine (Chemmart) 4 mg uncoated tablet, 30, blister pack 121629 11676011000036102 Perindopril Erbumine (Chemmart) 4 mg uncoated tablet, 30 4882011000036105 Perindopril Erbumine (Chemmart) 4 mg uncoated tablet 3709011000036104 Perindopril Erbumine (Chemmart) 3709011000036104 Perindopril Erbumine (Chemmart) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +61572011000036102 Proven 100 mg/5 mL oral liquid suspension, 200 mL, bottle 94372 57494011000036107 Proven 100 mg/5 mL oral liquid suspension, 200 mL 54324011000036102 Proven 100 mg/5 mL oral liquid suspension, 5 mL 53524011000036103 Proven 53524011000036103 Proven 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +1085751000168100 Perjeta 420 mg/14 mL concentrated injection, 14 mL vial 196218 1085741000168102 Perjeta 420 mg/14 mL concentrated injection, 14 mL vial 1085731000168106 Perjeta 420 mg/14 mL concentrated injection, 14 mL vial 123851000036103 Perjeta 123851000036103 Perjeta 128471000036102 pertuzumab 420 mg/14 mL injection, 14 mL vial 125431000036109 pertuzumab 420 mg/14 mL injection, vial 132061000036104 pertuzumab +1060491000168108 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 42, blister pack 234477 1060481000168105 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 42 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911921000168102 rosuvastatin 40 mg tablet, 42 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +648601000168104 Sodium Selenite Drops (Nutrition Care) 800 microgram/mL oral liquid, 50 mL, bottle 154010 648591000168106 Sodium Selenite Drops (Nutrition Care) 800 microgram/mL oral liquid, 50 mL 36229011000036105 Sodium Selenite Drops (Nutrition Care) 800 microgram/mL oral liquid 17271000168105 Sodium Selenite Drops (Nutrition Care) 17271000168105 Sodium Selenite Drops (Nutrition Care) 648581000168108 selenium 800 microgram/mL oral liquid, 50 mL 37994011000036102 selenium 800 microgram/mL oral liquid 32671011000036106 selenium +829311000168106 Metex XR-1000 1 g modified release tablet, 30, blister pack 232639 829301000168108 Metex XR-1000 1 g modified release tablet, 30 829281000168109 Metex XR-1000 1 g modified release tablet 829271000168106 Metex XR-1000 829271000168106 Metex XR-1000 829291000168107 metformin hydrochloride 1 g modified release tablet, 30 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +20851011000036105 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 92117 14014011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 168 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28077011000036104 peginterferon alfa-2b 80 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [168] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20851011000036105 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 92117 14014011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 168 x Rebetol capsules), 1 pack 7294011000036104 Peg-Intron Redipen Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28077011000036104 peginterferon alfa-2b 80 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [168] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20851011000036105 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 92117 14014011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 168 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28077011000036104 peginterferon alfa-2b 80 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [168] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +31301000036104 Little Allergies 5 mg/5 mL oral liquid solution, 100 mL, bottle 177488 28921000036103 Little Allergies 5 mg/5 mL oral liquid solution, 100 mL 27121000036104 Little Allergies 5 mg/5 mL oral liquid solution, 5 mL 26191000036103 Little Allergies 26191000036103 Little Allergies 28931000036101 cetirizine hydrochloride 5 mg/5 mL oral liquid, 100 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +95281000036107 Morphine Sulfate (Wockhardt) 10 mg/mL injection solution, 10 x 1 mL ampoules 94111000036109 Morphine Sulfate (Wockhardt) 10 mg/mL injection solution, 10 x 1 mL ampoules 93361000036106 Morphine Sulfate (Wockhardt) 10 mg/mL injection solution, ampoule 93281000036106 Morphine Sulfate (Wockhardt) 93281000036106 Morphine Sulfate (Wockhardt) 94121000036102 morphine sulfate pentahydrate 10 mg/mL injection, 10 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +19641011000036100 Nuelin SR 300 mg modified release tablet, 100, bottle 59527 12910011000036108 Nuelin SR 300 mg modified release tablet, 100 6200011000036106 Nuelin SR 300 mg modified release tablet 31931000168103 Nuelin SR 31931000168103 Nuelin SR 27433011000036105 theophylline 300 mg modified release tablet, 100 22780011000036104 theophylline 300 mg modified release tablet 21367011000036100 theophylline +655181000168107 Quetiapine (AN) 100 mg film-coated tablet, 90, blister pack 170851 655171000168109 Quetiapine (AN) 100 mg film-coated tablet, 90 655161000168103 Quetiapine (AN) 100 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +19116011000036104 Glucobay 50 mg tablet, 90, blister pack 43194 12420011000036104 Glucobay 50 mg tablet, 90 4594011000036101 Glucobay 50 mg tablet 2971011000036108 Glucobay 2971011000036108 Glucobay 27110011000036106 acarbose 50 mg tablet, 90 22478011000036100 acarbose 50 mg tablet 21888011000036104 acarbose +13871000036107 Venlafaxine XR (Chemmart) 150 mg modified release capsule, 28, blister pack 177459 7531000036100 Venlafaxine XR (Chemmart) 150 mg modified release capsule, 28 1741000036109 Venlafaxine XR (Chemmart) 150 mg modified release capsule 28841000168108 Venlafaxine XR (Chemmart) 28841000168108 Venlafaxine XR (Chemmart) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +925081000168109 Androgel 1% (50 mg/5 g) gel, 14 x 5 g sachets 96130 925071000168106 Androgel 1% (50 mg/5 g) gel, 14 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925061000168100 testosterone 1% (50 mg/5 g) gel, 14 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +61542011000036101 Pain Tabsule (Chemists' Own) uncoated tablet, 48, blister pack 93812 57467011000036104 Pain Tabsule (Chemists' Own) uncoated tablet, 48 54314011000036105 Pain Tabsule (Chemists' Own) uncoated tablet 4341000168101 Pain Tabsule (Chemists' Own) 4341000168101 Pain Tabsule (Chemists' Own) 63891011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 48 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +672301000168108 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet, 90, blister pack 208010 672291000168107 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet, 90 672221000168105 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet 672211000168103 Indapamide Hemihydrate SR (Terry White Chemists) 672211000168103 Indapamide Hemihydrate SR (Terry White Chemists) 27590011000036104 indapamide hemihydrate 1.5 mg modified release tablet, 90 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +43607011000036100 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 5 x 50 mL bags 123038 41273011000036108 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 5 x 50 mL bags 39883011000036104 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 50 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46208011000036109 ciprofloxacin 100 mg/50 mL injection, 5 x 50 mL bags 45031011000036103 ciprofloxacin 100 mg/50 mL injection, bag 21245011000036105 ciprofloxacin +897711000168106 Nicotinell Peppermint 4 mg lozenge, 36, blister pack 276926 897701000168108 Nicotinell Peppermint 4 mg lozenge, 36 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897691000168108 nicotine 4 mg lozenge, 36 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +933246271000036107 Allevyn Ag Gentle Border (66800460) 7.5 cm x 7.5 cm medicated dressing, 10, carton 169184 933242831000036105 Allevyn Ag Gentle Border (66800460) 7.5 cm x 7.5 cm medicated dressing, 10 933241151000036104 Allevyn Ag Gentle Border (66800460) 7.5 cm x 7.5 cm medicated dressing 28781000168107 Allevyn Ag Gentle Border (66800460) 28781000168107 Allevyn Ag Gentle Border (66800460) 933242771000036101 dressing foam with silver 7.5 cm x 7.5 cm dressing, 10 933241091000036109 dressing foam with silver 7.5 cm x 7.5 cm dressing 933247641000036101 dressing foam with silver +18264011000036106 Puregon 900 units/1.08 mL injection solution, 1.08 mL cartridge 116843 11548011000036107 Puregon 900 units/1.08 mL injection solution, 1.08 mL cartridge 5375011000036102 Puregon 900 units/1.08 mL injection solution, 1.08 mL cartridge 2961011000036103 Puregon 2961011000036103 Puregon 26686011000036105 follitropin beta 900 units/1.08 mL injection, 1.08 mL cartridge 22082011000036102 follitropin beta 900 units/1.08 mL injection, cartridge 21333011000036104 follitropin beta +84283011000036101 Nordip 5 mg uncoated tablet, 30, blister pack 133159 83976011000036104 Nordip 5 mg uncoated tablet, 30 83613011000036103 Nordip 5 mg uncoated tablet 83546011000036106 Nordip 83546011000036106 Nordip 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +69522011000036106 Dermeze ointment, 100 g, jar 54259 67322011000036103 Dermeze ointment, 100 g 65611011000036105 Dermeze ointment 65171011000036103 Dermeze 65171011000036103 Dermeze 71867011000036108 liquid paraffin 50% + white soft paraffin 50% ointment, 100 g 70224011000036105 liquid paraffin 50% + white soft paraffin 50% ointment 69750011000036107 liquid paraffin + white soft paraffin +741421000168107 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 231052 741411000168100 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 741391000168100 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741401000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, 0.5 mL injection device 741381000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, injection device 21352011000036107 follitropin alfa +19825011000036108 Temaze 10 mg uncoated tablet, 25, bottle 63863 13077011000036101 Temaze 10 mg uncoated tablet, 25 6361011000036107 Temaze 10 mg uncoated tablet 3498011000036104 Temaze 3498011000036104 Temaze 28036011000036100 temazepam 10 mg tablet, 25 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +81004011000036100 Skin Active Eczema (Hamilton) cream, 100 g, jar 14843 80554011000036104 Skin Active Eczema (Hamilton) cream, 100 g 80189011000036103 Skin Active Eczema (Hamilton) cream 80094011000036107 Skin Active Eczema (Hamilton) 80094011000036107 Skin Active Eczema (Hamilton) 81633011000036101 coal tar solution 3% + dimeticone 2.5% + zinc oxide 10% cream, 100 g 81272011000036108 coal tar solution 3% + dimeticone 2.5% + zinc oxide 10% cream 81220011000036108 coal tar solution + dimeticone + zinc oxide +1049821000168107 Bupannus 5 microgram/hour patch, 4, sachet 234729 1049811000168100 Bupannus 5 microgram/hour patch, 4 1049761000168106 Bupannus 5 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1046501000168105 buprenorphine 5 microgram/hour patch, 4 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +933246111000036105 Lubri-Gel jelly, 50 g, tube 933242741000036108 Lubri-Gel jelly, 50 g 933241221000036100 Lubri-Gel jelly 933240741000036109 Lubri-Gel 933240741000036109 Lubri-Gel 933242751000036106 lubricating agent jelly, 50 g 50913011000036103 lubricating agent jelly 50706011000036101 lubricating agent +829231000168108 Imatinib (Teva) 400 mg film-coated tablet, 100, bottle 232238 829221000168105 Imatinib (Teva) 400 mg film-coated tablet, 100 829201000168101 Imatinib (Teva) 400 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 829211000168103 imatinib 400 mg tablet, 100 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +929014011000036102 Nivestim 480 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 160107 928375011000036106 Nivestim 480 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 927959011000036105 Nivestim 480 microgram/0.5 mL injection solution, 0.5 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 929227011000036108 filgrastim 480 microgram/0.5 mL injection, 5 x 0.5 mL syringes 22655011000036106 filgrastim 480 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +657871000168107 Candesartan Cilexetil (AN) 16 mg uncoated tablet, 30, blister pack 195497 657601000168103 Candesartan Cilexetil (AN) 16 mg uncoated tablet, 30 657591000168105 Candesartan Cilexetil (AN) 16 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +743571000168106 Jardiamet 12.5 mg/500 mg film-coated tablet, 60, blister pack 229818 743561000168100 Jardiamet 12.5 mg/500 mg film-coated tablet, 60 743511000168103 Jardiamet 12.5 mg/500 mg film-coated tablet 743491000168108 Jardiamet 12.5 mg/500 mg 743491000168108 Jardiamet 12.5 mg/500 mg 743551000168102 empagliflozin 12.5 mg + metformin hydrochloride 500 mg tablet, 60 743501000168101 empagliflozin 12.5 mg + metformin hydrochloride 500 mg tablet 743221000168107 empagliflozin + metformin +672361000168109 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet, 30, blister pack 208007 672351000168107 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet, 30 672321000168104 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet 672311000168106 Indapamide Hemihydrate SR (Apo) 672311000168106 Indapamide Hemihydrate SR (Apo) 672261000168100 indapamide hemihydrate 1.5 mg modified release tablet, 30 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +168421000036108 Dermaveen Moisturising 2% lotion, 50 mL, tube 56313 167961000036108 Dermaveen Moisturising 2% lotion, 50 mL 167551000036102 Dermaveen Moisturising 2% lotion 9661000168105 Dermaveen Moisturising 9661000168105 Dermaveen Moisturising 167991000036101 colloidal oatmeal 2% lotion, 50 mL 167561000036104 colloidal oatmeal 2% lotion 77444011000036102 colloidal oatmeal +691711000168106 Dotax 20 mg/mL concentrated injection, 1 mL vial 215840 691701000168108 Dotax 20 mg/mL concentrated injection, 1 mL vial 691691000168108 Dotax 20 mg/mL concentrated injection, vial 691681000168105 Dotax 691681000168105 Dotax 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +1066381000168104 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 70, blister pack 220519 1066371000168102 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 70 1066271000168105 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 1066361000168108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 70 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +672441000168103 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet, 30, blister pack 208006 672431000168107 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet, 30 672401000168100 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet 672391000168102 Indapamide Hemihydrate SR (Chemmart) 672391000168102 Indapamide Hemihydrate SR (Chemmart) 672261000168100 indapamide hemihydrate 1.5 mg modified release tablet, 30 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +933211851000036101 Pravastatin Sodium (Lupin) 10 mg film-coated tablet, 30, blister pack 139586 933200671000036104 Pravastatin Sodium (Lupin) 10 mg film-coated tablet, 30 933194621000036107 Pravastatin Sodium (Lupin) 10 mg film-coated tablet 933193951000036106 Pravastatin Sodium (Lupin) 933193951000036106 Pravastatin Sodium (Lupin) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +20067011000036107 Ranihexal 300 mg film-coated tablet, 30, blister pack 70356 13297011000036103 Ranihexal 300 mg film-coated tablet, 30 6581011000036108 Ranihexal 300 mg film-coated tablet 2927011000036101 Ranihexal 2927011000036101 Ranihexal 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +1075561000168100 Aripiprazole (Auro) 30 mg uncoated tablet, 28, blister pack 198177 1075551000168102 Aripiprazole (Auro) 30 mg uncoated tablet, 28 1075521000168105 Aripiprazole (Auro) 30 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787781000168103 aripiprazole 30 mg tablet, 28 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +60788011000036102 Unisom Sleepgel 50 mg soft capsule, 10, blister pack 55323 56747011000036100 Unisom Sleepgel 50 mg soft capsule, 10 54063011000036108 Unisom Sleepgel 50 mg soft capsule 14531000168103 Unisom Sleepgel 14531000168103 Unisom Sleepgel 63549011000036100 diphenhydramine hydrochloride 50 mg capsule, 10 62012011000036109 diphenhydramine hydrochloride 50 mg capsule 61716011000036106 diphenhydramine +919281000168109 Temolide 250 mg hard capsule, 5, bottle 192686 919271000168106 Temolide 250 mg hard capsule, 5 919261000168100 Temolide 250 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +931521000168104 Centevo 75/18.75/200 mg film-coated tablet, 250, bottle 238853 931511000168106 Centevo 75/18.75/200 mg film-coated tablet, 250 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931501000168108 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 250 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +37685011000036103 Propofol (Abbott) 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 77729 36951011000036108 Propofol (Abbott) 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 36277011000036102 Propofol (Abbott) 200 mg/20 mL injection emulsion, 20 mL ampoule 35974011000036106 Propofol (Abbott) 35974011000036106 Propofol (Abbott) 38832011000036102 propofol 200 mg/20 mL injection, 5 x 20 mL ampoules 38037011000036101 propofol 200 mg/20 mL injection, ampoule 37750011000036109 propofol +914231000168109 Amoxyclav 875/125 (Generic Health) film-coated tablet, 10, blister pack 255076 914221000168106 Amoxyclav 875/125 (Generic Health) film-coated tablet, 10 914131000168104 Amoxyclav 875/125 (Generic Health) film-coated tablet 914121000168102 Amoxyclav 875/125 (Generic Health) 914121000168102 Amoxyclav 875/125 (Generic Health) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +812151000168109 Iptam 100 mg film-coated tablet, 2, blister pack 124087 812141000168107 Iptam 100 mg film-coated tablet, 2 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +933211931000036104 Donpesyn 5 mg film-coated tablet, 50, blister pack 142231 933201261000036102 Donpesyn 5 mg film-coated tablet, 50 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200741000036102 donepezil hydrochloride 5 mg tablet, 50 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +921972011000036100 Sodium Chloride (Phebra) 0.9% (900 mg/100 mL) injection solution, 100 mL vial 48349 921530011000036106 Sodium Chloride (Phebra) 0.9% (900 mg/100 mL) injection solution, 100 mL vial 921064011000036108 Sodium Chloride (Phebra) 0.9% (900 mg/100 mL) injection solution, 100 mL vial 64963011000036103 Sodium Chloride (Phebra) 64963011000036103 Sodium Chloride (Phebra) 922651011000036105 sodium chloride 0.9% (900 mg/100 mL) injection, 100 mL vial 70201011000036102 sodium chloride 0.9% (900 mg/100 mL) injection, vial 21308011000036103 sodium chloride +1043331000168100 Pryzex ODT 5 mg orally disintegrating tablet, 28, blister pack 179079 1043321000168103 Pryzex ODT 5 mg orally disintegrating tablet, 28 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +18039011000036105 Fluconazole (Winthrop) 100 mg hard capsule, 28, blister pack 132654 11936011000036104 Fluconazole (Winthrop) 100 mg hard capsule, 28 4955011000036103 Fluconazole (Winthrop) 100 mg hard capsule 4012011000036108 Fluconazole (Winthrop) 4012011000036108 Fluconazole (Winthrop) 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +1069031000168108 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 12, blister pack 196531 1069021000168105 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 12 1068991000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +95321000036103 Citalopram (Apo) 40 mg film-coated tablet, 28, bottle 233165 83123011000036108 Citalopram (Apo) 40 mg film-coated tablet, 28 83069011000036107 Citalopram (Apo) 40 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +95321000036103 Citalopram (Apo) 40 mg film-coated tablet, 28, bottle 150628 83123011000036108 Citalopram (Apo) 40 mg film-coated tablet, 28 83069011000036107 Citalopram (Apo) 40 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +983361000168105 Tamoxifen (Apo) 20 mg uncoated tablet, 60, blister pack 75590 983351000168108 Tamoxifen (Apo) 20 mg uncoated tablet, 60 983341000168106 Tamoxifen (Apo) 20 mg uncoated tablet 983331000168102 Tamoxifen (Apo) 983331000168102 Tamoxifen (Apo) 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +747361000168101 Junomorph 100 mg/5 mL injection solution, 10 x 5 mL ampoules 224247 747351000168103 Junomorph 100 mg/5 mL injection solution, 10 x 5 mL ampoules 747321000168106 Junomorph 100 mg/5 mL injection solution, 5 mL ampoule 747261000168105 Junomorph 747261000168105 Junomorph 706961000168109 morphine hydrochloride trihydrate 100 mg/5 mL injection, 10 x 5 mL ampoules 706911000168106 morphine hydrochloride trihydrate 100 mg/5 mL injection, ampoule 21252011000036100 morphine +933216181000036106 Ivelip 20% (100 g/500 mL) injection emulsion, 500 mL bottle 77474 933205671000036105 Ivelip 20% (100 g/500 mL) injection emulsion, 500 mL bottle 933196691000036102 Ivelip 20% (100 g/500 mL) injection emulsion, 500 mL bottle 65097011000036107 Ivelip 65097011000036107 Ivelip 933205681000036107 soya oil 20% (100 g/500 mL) injection, 500 mL bottle 70180011000036108 soya oil 20% (100 g/500 mL) injection, bottle 69767011000036104 soya oil +11771000036100 Tasigna 200 mg hard capsule, 40, blister pack 133086 6461000036105 Tasigna 200 mg hard capsule, 40 39204011000036106 Tasigna 200 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 6471000036102 nilotinib 200 mg capsule, 40 39436011000036107 nilotinib 200 mg capsule 39428011000036108 nilotinib +18261000036105 Beprol 10 mg film-coated tablet, 28, blister pack 175923 16821000036101 Beprol 10 mg film-coated tablet, 28 15691000036106 Beprol 10 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +50302011000036101 TYR Gel powder for oral liquid, 30 x 20 g sachets 49284011000036109 TYR Gel powder for oral liquid, 30 x 20 g sachets 369321000168107 TYR Gel powder for oral liquid, 20 g sachet 21341000168105 TYR Gel 21341000168105 TYR Gel 51271011000036104 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 30 x 20 g sachets 369111000168103 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 20 g sachet 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +13941000036105 Olanzapine (GA) 2.5 mg film-coated tablet, 28, blister pack 178969 7601000036106 Olanzapine (GA) 2.5 mg film-coated tablet, 28 3101000036106 Olanzapine (GA) 2.5 mg film-coated tablet 31571000168107 Olanzapine (GA) 31571000168107 Olanzapine (GA) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +901961000168109 Amoxycillin (Watson) 250 mg hard capsule, 30, blister pack 198128 901951000168107 Amoxycillin (Watson) 250 mg hard capsule, 30 901921000168104 Amoxycillin (Watson) 250 mg hard capsule 900421000168103 Amoxycillin (Watson) 900421000168103 Amoxycillin (Watson) 900551000168107 amoxicillin 250 mg capsule, 30 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +931550011000036106 Danset 4 mg film-coated tablet, 6, blister pack 163434 930711011000036100 Danset 4 mg film-coated tablet, 6 930024011000036108 Danset 4 mg film-coated tablet 12931000168101 Danset 12931000168101 Danset 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +18980011000036103 Austrapen 1 g powder for injection, 5 vials 29354 12288011000036107 Austrapen 1 g powder for injection, 5 vials 5388011000036103 Austrapen 1 g powder for injection, vial 3658011000036105 Austrapen 3658011000036105 Austrapen 28099011000036101 ampicillin 1 g injection, 5 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +30891000036108 Aspirin (Guardian) 100 mg uncoated tablet, 112, blister pack 171759 28421000036106 Aspirin (Guardian) 100 mg uncoated tablet, 112 26431000036109 Aspirin (Guardian) 100 mg uncoated tablet 26091000036102 Aspirin (Guardian) 26091000036102 Aspirin (Guardian) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +69252011000036100 Potassium Chloride 0.224% and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 19469 67052011000036103 Potassium Chloride 0.224% and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 65404011000036109 Potassium Chloride 0.224% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 36971000168105 Potassium Chloride 0.224% and Glucose 5% (Baxter) 36971000168105 Potassium Chloride 0.224% and Glucose 5% (Baxter) 71622011000036109 potassium chloride 2.24 g (potassium 30 mmol)/L + glucose 5% (50 g/L) injection, 12 x 1 L bags 70096011000036103 potassium chloride 2.24 g (potassium 30 mmol)/L + glucose 5% (50 g/L) injection, bag 69832011000036108 potassium chloride + glucose +140671000036100 Candesartan Cilexetil HCTZ 32/12.5 (RBX) uncoated tablet, 30, blister pack 204575 139471000036105 Candesartan Cilexetil HCTZ 32/12.5 (RBX) uncoated tablet, 30 137541000036106 Candesartan Cilexetil HCTZ 32/12.5 (RBX) uncoated tablet 30651000168105 Candesartan Cilexetil HCTZ 32/12.5 (RBX) 30651000168105 Candesartan Cilexetil HCTZ 32/12.5 (RBX) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +923801011000036104 Sulprix 200 mg tablet, 60, bottle 156043 84014011000036109 Sulprix 200 mg tablet, 60 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +883201000168107 Betahistine (GX) 16 mg tablet, 10, blister pack 231712 883191000168109 Betahistine (GX) 16 mg tablet, 10 883181000168106 Betahistine (GX) 16 mg tablet 883061000168101 Betahistine (GX) 883061000168101 Betahistine (GX) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +61189011000036109 Day plus Night Sinus Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24, blister pack 75212 57125011000036100 Day plus Night Sinus Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24 54207011000036106 Day plus Night Sinus Relief (Night) (Soul Pattinson) uncoated tablet 53111011000036102 Day plus Night Sinus Relief (Soul Pattinson) 27721000168107 Day plus Night Sinus Relief (Night) (Soul Pattinson) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +61189011000036109 Day plus Night Sinus Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24, blister pack 75212 57125011000036100 Day plus Night Sinus Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24 54208011000036107 Day plus Night Sinus Relief (Day) (Soul Pattinson) uncoated tablet 53111011000036102 Day plus Night Sinus Relief (Soul Pattinson) 27851000168109 Day plus Night Sinus Relief (Day) (Soul Pattinson) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +44304011000036103 Aciclovir Intravenous (Pfizer (Perth)) 250 mg/10 mL injection solution, 5 x 10 mL ampoules 66116 41771011000036100 Aciclovir Intravenous (Pfizer (Perth)) 250 mg/10 mL injection solution, 5 x 10 mL ampoules 40192011000036100 Aciclovir Intravenous (Pfizer (Perth)) 250 mg/10 mL injection solution, 10 mL ampoule 7941000168105 Aciclovir Intravenous (Pfizer (Perth)) 7941000168105 Aciclovir Intravenous (Pfizer (Perth)) 46578011000036105 aciclovir 250 mg/10 mL injection, 5 x 10 mL ampoules 45226011000036102 aciclovir 250 mg/10 mL injection, ampoule 21239011000036106 aciclovir +86180011000036103 Dotarem 1.4 g/5 mL injection solution, 5 mL ampoule 76926 85787011000036105 Dotarem 1.4 g/5 mL injection solution, 5 mL ampoule 85401011000036108 Dotarem 1.4 g/5 mL injection solution, 5 mL ampoule 85269011000036107 Dotarem 85269011000036107 Dotarem 86470011000036108 gadoteric acid 1.4 g/5 mL injection, 5 mL ampoule 86243011000036100 gadoteric acid 1.4 g/5 mL injection, ampoule 86191011000036109 gadoteric acid +761871000168104 Daivonex 0.005% ointment, 100 g, tube 46683 761861000168105 Daivonex 0.005% ointment, 100 g 5390011000036104 Daivonex 0.005% ointment 30251000168107 Daivonex 30251000168107 Daivonex 761851000168108 calcipotriol 0.005% ointment, 100 g 22510011000036101 calcipotriol 0.005% ointment 21829011000036100 calcipotriol +845411000168101 Allmercap 20 mg/mL oral liquid suspension, 100 mL, bottle 213881 845401000168104 Allmercap 20 mg/mL oral liquid suspension, 100 mL 845381000168104 Allmercap 20 mg/mL oral liquid suspension 669561000168100 Allmercap 669561000168100 Allmercap 845391000168101 mercaptopurine monohydrate 20 mg/mL oral liquid, 100 mL 845371000168102 mercaptopurine monohydrate 20 mg/mL oral liquid 21818011000036102 mercaptopurine +73337011000036106 Ondansetron (Apo) 8 mg film-coated tablet, 10, blister pack 152188 73131011000036108 Ondansetron (Apo) 8 mg film-coated tablet, 10 72966011000036104 Ondansetron (Apo) 8 mg film-coated tablet 33231000168105 Ondansetron (Apo) 33231000168105 Ondansetron (Apo) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +879981000168100 Tenofovir (Blooms The Chemist) 300 mg coated tablet, 30, bottle 247318 879971000168103 Tenofovir (Blooms The Chemist) 300 mg coated tablet, 30 879961000168109 Tenofovir (Blooms The Chemist) 300 mg coated tablet 879951000168107 Tenofovir (Blooms The Chemist) 879951000168107 Tenofovir (Blooms The Chemist) 28009011000036104 tenofovir disoproxil fumarate 300 mg tablet, 30 23332011000036101 tenofovir disoproxil fumarate 300 mg tablet 851521000168106 tenofovir disoproxil +59982011000036107 Codral Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24, blister pack 121310 55944011000036102 Codral Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24 53730011000036107 Codral Cold and Flu plus Cough (Day) hard capsule 44661000168101 Codral Cold and Flu plus Cough Day and Night 44781000168100 Codral Cold and Flu plus Cough (Day) 63209011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 61888011000036105 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61764011000036104 paracetamol + phenylephrine + dextromethorphan +59982011000036107 Codral Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24, blister pack 121310 55944011000036102 Codral Cold and Flu plus Cough Day and Night (18 x Day capsules, 6 x Night capsules), 24 53731011000036100 Codral Cold and Flu plus Cough (Night) hard capsule 44661000168101 Codral Cold and Flu plus Cough Day and Night 44901000168106 Codral Cold and Flu plus Cough (Night) 63209011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 62063011000036103 paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61767011000036105 paracetamol + chlorphenamine + dextromethorphan +77236011000036105 Fluoxetine (Generic Health) 20 mg hard capsule, 28, blister pack 146600 76652011000036106 Fluoxetine (Generic Health) 20 mg hard capsule, 28 76090011000036109 Fluoxetine (Generic Health) 20 mg hard capsule 76009011000036101 Fluoxetine (Generic Health) 76009011000036101 Fluoxetine (Generic Health) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +18038011000036102 Talohexal 40 mg film-coated tablet, 28, blister pack 107061 11354011000036104 Talohexal 40 mg film-coated tablet, 28 4649011000036103 Talohexal 40 mg film-coated tablet 3441011000036102 Talohexal 3441011000036102 Talohexal 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +80046011000036108 Oxaliplatin (Alphapharm) 100 mg powder for injection, 1 vial 130854 79962011000036107 Oxaliplatin (Alphapharm) 100 mg powder for injection, 1 vial 79919011000036101 Oxaliplatin (Alphapharm) 100 mg powder for injection, 100 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +920651000168103 Cilopam 20 mg film-coated tablet, 28, blister pack 158864 920641000168100 Cilopam 20 mg film-coated tablet, 28 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +933246751000036105 Lisinopril (PS) 20 mg uncoated tablet, 28, blister pack 152714 933243391000036105 Lisinopril (PS) 20 mg uncoated tablet, 28 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 46264011000036101 lisinopril 20 mg tablet, 28 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +691221000168109 Ursosan 250 mg hard capsule, 100, blister pack 218444 691211000168102 Ursosan 250 mg hard capsule, 100 691201000168100 Ursosan 250 mg hard capsule 691191000168103 Ursosan 691191000168103 Ursosan 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +20403011000036105 Captopril (Douglas) 12.5 mg uncoated tablet, 90, bottle 77286 13611011000036108 Captopril (Douglas) 12.5 mg uncoated tablet, 90 6894011000036109 Captopril (Douglas) 12.5 mg uncoated tablet 4305011000036103 Captopril (Douglas) 4305011000036103 Captopril (Douglas) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +60453011000036107 Postinor-1 1.5 mg tablet, 1, blister pack 149269 56411011000036109 Postinor-1 1.5 mg tablet, 1 53914011000036102 Postinor-1 1.5 mg tablet 37801000168108 Postinor-1 37801000168108 Postinor-1 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +811181000168108 Afinitor 2 mg dispersible tablet, 30, blister pack 200203 811171000168105 Afinitor 2 mg dispersible tablet, 30 811151000168101 Afinitor 2 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811161000168104 everolimus 2 mg dispersible tablet, 30 811141000168103 everolimus 2 mg dispersible tablet 21615011000036103 everolimus +118761000036106 Handygauze Cohesive (8635) 10 cm x 2 m bandage, 1, carton 118331000036101 Handygauze Cohesive (8635) 10 cm x 2 m bandage, 1 118161000036105 Handygauze Cohesive (8635) 10 cm x 2 m bandage 22211000168107 Handygauze Cohesive (8635) 22211000168107 Handygauze Cohesive (8635) 118341000036106 bandage retention cohesive light 10 cm x 2 m bandage, 1 118171000036102 bandage retention cohesive light 10 cm x 2 m bandage 50748011000036107 bandage retention cohesive light +60924011000036105 Nurofen 200 mg sugar coated tablet, 2, blister pack 127272 56878011000036102 Nurofen 200 mg sugar coated tablet, 2 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63628011000036100 ibuprofen 200 mg tablet, 2 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60924011000036105 Nurofen 200 mg sugar coated tablet, 2, blister pack 61869 56878011000036102 Nurofen 200 mg sugar coated tablet, 2 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63628011000036100 ibuprofen 200 mg tablet, 2 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +34674011000036100 Erbitux 100 mg/20 mL injection solution, 20 mL vial 132393 34260011000036103 Erbitux 100 mg/20 mL injection solution, 20 mL vial 33990011000036101 Erbitux 100 mg/20 mL injection solution, 20 mL vial 4257011000036109 Erbitux 4257011000036109 Erbitux 35128011000036102 cetuximab 100 mg/20 mL injection, 20 mL vial 34858011000036102 cetuximab 100 mg/20 mL injection, vial 21547011000036105 cetuximab +50473011000036109 Restore Extra Thin (9921) 10 cm x 10 cm dressing, 5, carton 49372011000036103 Restore Extra Thin (9921) 10 cm x 10 cm dressing, 5 48626011000036107 Restore Extra Thin (9921) 10 cm x 10 cm dressing 19361000168101 Restore Extra Thin (9921) 19361000168101 Restore Extra Thin (9921) 51346011000036104 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing, 5 50870011000036107 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing 50714011000036106 dressing hydrocolloid superficial wound light exudate +848631000168104 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 161137 848621000168102 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 43191000168100 Fosamax Plus D-Cal 85275011000036101 Bonecal 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +848631000168104 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 161137 848621000168102 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 39850011000036103 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet 43191000168100 Fosamax Plus D-Cal 41041000168105 Fosamax Plus Once Weekly 70 mg/140 microgram 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +19768011000036107 Diltahexal 60 mg film-coated tablet, 90, bottle 62646 13026011000036100 Diltahexal 60 mg film-coated tablet, 90 6313011000036109 Diltahexal 60 mg film-coated tablet 3176011000036107 Diltahexal 3176011000036107 Diltahexal 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +933215051000036105 Denpax 75 microgram/hour patch, 5, sachet 163065 933204111000036106 Denpax 75 microgram/hour patch, 5 933196281000036102 Denpax 75 microgram/hour patch 933193221000036107 Denpax 933193221000036107 Denpax 26651011000036105 fentanyl 75 microgram/hour patch, 5 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +13711000036107 Fera 2.5 mg film-coated tablet, 30, blister pack 175100 8821000036104 Fera 2.5 mg film-coated tablet, 30 1541000036104 Fera 2.5 mg film-coated tablet 581000036107 Fera 581000036107 Fera 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +69422011000036103 Intralipid 20% (100 g/500 mL) intravenous infusion injection, 10 x 500 mL bottles 48245 67222011000036107 Intralipid 20% (100 g/500 mL) intravenous infusion injection, 10 x 500 mL bottles 65562011000036105 Intralipid 20% (100 g/500 mL) intravenous infusion injection, 500 mL bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71773011000036109 soya oil 20% (100 g/500 mL) injection, 10 x 500 mL bottles 70180011000036108 soya oil 20% (100 g/500 mL) injection, bottle 69767011000036104 soya oil +762191000168100 Uniclar Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 199815 762181000168103 Uniclar Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations 762121000168102 Uniclar Aqueous 50 microgram/actuation nasal spray, actuation 762111000168109 Uniclar Aqueous 762111000168109 Uniclar Aqueous 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +140591000036102 Rejuvenail Anti-Fungal 8% application, 6.6 mL, bottle 197723 139371000036103 Rejuvenail Anti-Fungal 8% application, 6.6 mL 137371000036107 Rejuvenail Anti-Fungal 8% application 29531000168107 Rejuvenail Anti-Fungal 29531000168107 Rejuvenail Anti-Fungal 139381000036101 ciclopirox 8% application, 6.6 mL 137381000036109 ciclopirox 8% application 21759011000036101 ciclopirox +60718011000036100 Claratyne Children's Peach 1 mg/mL oral liquid solution, 60 mL, bottle 44453 56676011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution, 60 mL 54028011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63591011000036105 loratadine 1 mg/mL oral liquid, 60 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +60548011000036107 Codis dispersible tablet, 48, strip pack 15358 56506011000036106 Codis dispersible tablet, 48 53945011000036107 Codis dispersible tablet 53140011000036100 Codis 53140011000036100 Codis 63387011000036100 aspirin 500 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 48 61935011000036104 aspirin 500 mg + codeine phosphate hemihydrate 8 mg dispersible tablet 21831011000036102 aspirin + codeine +20900011000036100 Celapram 40 mg film-coated tablet, 28, bottle 93545 14058011000036100 Celapram 40 mg film-coated tablet, 28 7336011000036105 Celapram 40 mg film-coated tablet 3143011000036102 Celapram 3143011000036102 Celapram 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +13691000036105 Letrozole (GA) 2.5 mg film-coated tablet, 30, blister pack 174638 8801000036109 Letrozole (GA) 2.5 mg film-coated tablet, 30 3111000036108 Letrozole (GA) 2.5 mg film-coated tablet 951000036108 Letrozole (GA) 951000036108 Letrozole (GA) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +903331000168101 Brillior 200 mg hard capsule, 60, blister pack 224343 903321000168104 Brillior 200 mg hard capsule, 60 903241000168104 Brillior 200 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +39404011000036107 Januvia 25 mg film-coated tablet, 28, blister pack 133188 39288011000036103 Januvia 25 mg film-coated tablet, 28 39189011000036108 Januvia 25 mg film-coated tablet 39185011000036106 Januvia 39185011000036106 Januvia 39485011000036105 sitagliptin 25 mg tablet, 28 39439011000036103 sitagliptin 25 mg tablet 39426011000036109 sitagliptin +681531000168109 Esomeprazole (Actavis) 40 mg enteric tablet, 30, blister pack 210844 681521000168106 Esomeprazole (Actavis) 40 mg enteric tablet, 30 681401000168103 Esomeprazole (Actavis) 40 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +87645011000036101 Sifrol ER 750 microgram modified release tablet, 10, blister pack 158755 87464011000036108 Sifrol ER 750 microgram modified release tablet, 10 87325011000036108 Sifrol ER 750 microgram modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 87814011000036104 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 10 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +20076011000036104 Magicul 800 mg film-coated tablet, 30, bottle 70765 13305011000036104 Magicul 800 mg film-coated tablet, 30 6589011000036107 Magicul 800 mg film-coated tablet 3689011000036105 Magicul 3689011000036105 Magicul 27867011000036100 cimetidine 800 mg tablet, 30 23195011000036109 cimetidine 800 mg tablet 21427011000036101 cimetidine +928871000168109 Zovirax 400 mg uncoated tablet, 70, blister pack 11015 928861000168103 Zovirax 400 mg uncoated tablet, 70 928851000168100 Zovirax 400 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 800451000168103 aciclovir 400 mg tablet, 70 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +69697011000036107 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 500 mL, bottle 90412 67496011000036100 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 500 mL 65683011000036108 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 72011011000036104 povidone-iodine 0.75% application, 500 mL 70277011000036103 povidone-iodine 0.75% application 21660011000036108 povidone-iodine +933229421000036103 Mersyndol Forte uncoated tablet, 2, blister pack 10109 933223391000036108 Mersyndol Forte uncoated tablet, 2 933219631000036107 Mersyndol Forte uncoated tablet 32431000168101 Mersyndol Forte 32431000168101 Mersyndol Forte 933223401000036106 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet, 2 933219641000036102 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +707491000168109 Azran 50 mg film-coated tablet, 100, blister pack 117793 707481000168106 Azran 50 mg film-coated tablet, 100 707471000168108 Azran 50 mg film-coated tablet 707431000168105 Azran 707431000168105 Azran 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +1059941000168107 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 20, blister pack 234479 1059931000168103 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 20 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910851000168107 rosuvastatin 10 mg tablet, 20 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +37520011000036109 Dihydergot 2.5 mg uncoated tablet, 100, bottle 13352 36788011000036102 Dihydergot 2.5 mg uncoated tablet, 100 36034011000036104 Dihydergot 2.5 mg uncoated tablet 2977011000036100 Dihydergot 2977011000036100 Dihydergot 38685011000036109 dihydroergotamine mesylate 2.5 mg tablet, 100 37924011000036106 dihydroergotamine mesylate 2.5 mg tablet 21542011000036108 dihydroergotamine +923824011000036107 Lisinopril (Sandoz) 5 mg tablet, 30, blister pack 158100 923370011000036103 Lisinopril (Sandoz) 5 mg tablet, 30 923041011000036108 Lisinopril (Sandoz) 5 mg tablet 79351011000036102 Lisinopril (Sandoz) 79351011000036102 Lisinopril (Sandoz) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +13851000036102 Orencia 125 mg/mL injection solution, 4 x 1 mL syringes 177176 7501000036107 Orencia 125 mg/mL injection solution, 4 x 1 mL syringes 2351000036103 Orencia 125 mg/mL injection solution, syringe 32969011000036101 Orencia 32969011000036101 Orencia 7511000036109 abatacept 125 mg/mL injection, 4 x 1 mL syringes 2361000036100 abatacept 125 mg/mL injection, syringe 33635011000036100 abatacept +1012421000168108 Perindopril (WT) 2 mg uncoated tablet, 30, blister pack 121634 1012411000168101 Perindopril (WT) 2 mg uncoated tablet, 30 1012401000168104 Perindopril (WT) 2 mg uncoated tablet 1012391000168101 Perindopril (WT) 1012391000168101 Perindopril (WT) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +170661000036109 Optifresh Tears 0.5% eye drops solution, 30 x 0.4 mL unit doses, ampoule 169711000036103 Optifresh Tears 0.5% eye drops solution, 30 x 0.4 mL unit doses 169141000036103 Optifresh Tears 0.5% eye drops solution, 0.4 mL unit dose 171561000036101 Optifresh Tears 171561000036101 Optifresh Tears 35755011000036101 carmellose sodium 0.5% eye drops, 30 x 0.4 mL unit doses 35697011000036105 carmellose sodium 0.5% eye drops, unit dose 35688011000036105 carmellose sodium +59751000036101 Clarithromycin (PS) 250 mg film-coated tablet, 10, blister pack 184263 58831000036105 Clarithromycin (PS) 250 mg film-coated tablet, 10 58381000036100 Clarithromycin (PS) 250 mg film-coated tablet 58111000036106 Clarithromycin (PS) 58111000036106 Clarithromycin (PS) 58841000036100 clarithromycin 250 mg tablet, 10 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +73278011000036103 Jurnista 8 mg modified release tablet, 50, blister pack 141508 73076011000036107 Jurnista 8 mg modified release tablet, 50 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73474011000036109 hydromorphone hydrochloride 8 mg modified release tablet, 50 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +19562011000036105 Chloromycetin 0.5% eye drops solution, 10 mL, bottle 57090 12833011000036103 Chloromycetin 0.5% eye drops solution, 10 mL 6124011000036105 Chloromycetin 0.5% eye drops solution 3326011000036102 Chloromycetin 3326011000036102 Chloromycetin 27386011000036104 chloramphenicol 0.5% eye drops, 10 mL 22735011000036103 chloramphenicol 0.5% eye drops 21330011000036107 chloramphenicol +917361000168102 Amikacin (AJS) 500 mg/2 mL injection solution, 5 x 2 mL ampoules 262736 917351000168104 Amikacin (AJS) 500 mg/2 mL injection solution, 5 x 2 mL ampoules 917331000168105 Amikacin (AJS) 500 mg/2 mL injection solution, 2 mL ampoule 917311000168100 Amikacin (AJS) 917311000168100 Amikacin (AJS) 917341000168101 amikacin 500 mg/2 mL injection, 5 x 2 mL ampoules 917321000168107 amikacin 500 mg/2 mL injection, ampoule 37805011000036108 amikacin +18604011000036108 Madopar 200/50 uncoated tablet, 100, bottle 13745 12003011000036106 Madopar 200/50 uncoated tablet, 100 5818011000036103 Madopar 200/50 uncoated tablet 50351000168103 Madopar 200/50 50351000168103 Madopar 200/50 26841011000036103 levodopa 200 mg + benserazide 50 mg tablet, 100 22222011000036100 levodopa 200 mg + benserazide 50 mg tablet 21331011000036100 levodopa + benserazide +61130011000036106 Throat Lozenge (Guardian) menthol and eucalyptus lozenge, 16, blister pack 72553 57073011000036107 Throat Lozenge (Guardian) menthol and eucalyptus lozenge, 16 54183011000036101 Throat Lozenge (Guardian) menthol and eucalyptus lozenge 38571000168102 Throat Lozenge (Guardian) 38571000168102 Throat Lozenge (Guardian) 63728011000036107 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 62061011000036104 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +20583011000036103 Anpec 40 mg film-coated tablet, 100, bottle 80443 13771011000036106 Anpec 40 mg film-coated tablet, 100 7057011000036105 Anpec 40 mg film-coated tablet 3034011000036106 Anpec 3034011000036106 Anpec 27932011000036100 verapamil hydrochloride 40 mg tablet, 100 23256011000036106 verapamil hydrochloride 40 mg tablet 21287011000036109 verapamil +18731011000036108 Sudafed Sinus and Nasal Congestion 60 mg uncoated tablet, 30, blister pack 11003 11401011000036100 Sudafed Sinus and Nasal Congestion 60 mg uncoated tablet, 30 4619011000036106 Sudafed Sinus and Nasal Congestion 60 mg uncoated tablet 3112011000036102 Sudafed Sinus and Nasal Congestion 3112011000036102 Sudafed Sinus and Nasal Congestion 27343011000036101 pseudoephedrine hydrochloride 60 mg tablet, 30 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +928917011000036100 Vaclovir 500 mg film-coated tablet, 6, blister pack 153822 928279011000036104 Vaclovir 500 mg film-coated tablet, 6 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929221011000036100 valaciclovir 500 mg tablet, 6 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +19186011000036101 Spiractin 25 mg uncoated tablet, 100, bottle 46689 12481011000036102 Spiractin 25 mg uncoated tablet, 100 6024011000036104 Spiractin 25 mg uncoated tablet 3212011000036100 Spiractin 3212011000036100 Spiractin 27647011000036100 spironolactone 25 mg tablet, 100 22984011000036100 spironolactone 25 mg tablet 21403011000036103 spironolactone +118841000036102 Crinone 8% vaginal gel, 15 applications, applicator 83166 118491000036105 Crinone 8% vaginal gel, 15 applications 118031000036103 Crinone 8% vaginal gel, 1 application 3283011000036109 Crinone 3283011000036109 Crinone 118501000036103 progesterone 8% vaginal gel, 15 applications 118041000036108 progesterone 8% vaginal gel, 1 application 21412011000036108 progesterone +874501000168101 Beezole 20 mg enteric tablet, 30, blister pack 205832 874491000168108 Beezole 20 mg enteric tablet, 30 874441000168100 Beezole 20 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +43679011000036100 Zemplar 4 microgram soft capsule, 30, bottle 121765 41262011000036108 Zemplar 4 microgram soft capsule, 30 39913011000036105 Zemplar 4 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46201011000036100 paricalcitol 4 microgram capsule, 30 45027011000036108 paricalcitol 4 microgram capsule 44899011000036102 paricalcitol +703101000168101 Keppra IV 500 mg/5 mL concentrated injection, 10 x 5 mL vials 120501 703091000168106 Keppra IV 500 mg/5 mL concentrated injection, 10 x 5 mL vials 703081000168108 Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial 703071000168105 Keppra IV 703071000168105 Keppra IV 120611000036108 levetiracetam 500 mg/5 mL injection, 10 x 5 mL vials 45019011000036106 levetiracetam 500 mg/5 mL injection, vial 21766011000036102 levetiracetam +1012581000168106 Mycophenolate (Apotex) 500 mg film-coated tablet, 50, blister pack 168104 1012571000168108 Mycophenolate (Apotex) 500 mg film-coated tablet, 50 1012561000168102 Mycophenolate (Apotex) 500 mg film-coated tablet 1012551000168104 Mycophenolate (Apotex) 1012551000168104 Mycophenolate (Apotex) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +799491000168101 Abyraz 15 mg uncoated tablet, 10, blister pack 159506 799481000168104 Abyraz 15 mg uncoated tablet, 10 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799471000168102 aripiprazole 15 mg tablet, 10 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +933212261000036108 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 120, blister pack 142237 933201021000036100 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 120 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933201031000036103 donepezil hydrochloride 5 mg tablet, 120 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +50463011000036102 Restore Calcicare (9938) 5 cm x 5 cm medicated dressing, 10, carton 49392011000036108 Restore Calcicare (9938) 5 cm x 5 cm medicated dressing, 10 48581011000036100 Restore Calcicare (9938) 5 cm x 5 cm medicated dressing 59791000168103 Restore Calcicare (9938) 59791000168103 Restore Calcicare (9938) 51363011000036104 dressing alginate superficial wound 5 cm x 5 cm dressing, 10 50885011000036105 dressing alginate superficial wound 5 cm x 5 cm dressing 50715011000036105 dressing alginate superficial wound +675271000168101 Celecoxib (Sandoz) 200 mg hard capsule, 30, blister pack 210632 675261000168107 Celecoxib (Sandoz) 200 mg hard capsule, 30 675251000168105 Celecoxib (Sandoz) 200 mg hard capsule 675211000168109 Celecoxib (Sandoz) 675211000168109 Celecoxib (Sandoz) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +691301000168107 Amlodipine (AN) 5 mg uncoated tablet, 30, blister pack 186306 691291000168106 Amlodipine (AN) 5 mg uncoated tablet, 30 691281000168108 Amlodipine (AN) 5 mg uncoated tablet 691231000168107 Amlodipine (AN) 691231000168107 Amlodipine (AN) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +59911000036103 Amoxycillin (PS) 250 mg hard capsule, 20, blister pack 188949 59031000036106 Amoxycillin (PS) 250 mg hard capsule, 20 58261000036100 Amoxycillin (PS) 250 mg hard capsule 58141000036107 Amoxycillin (PS) 58141000036107 Amoxycillin (PS) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +1041571000168109 Sinus Pain Relief PE (Amcal) film-coated tablet, 24, blister pack 210225 1041561000168103 Sinus Pain Relief PE (Amcal) film-coated tablet, 24 1041551000168100 Sinus Pain Relief PE (Amcal) film-coated tablet 1041521000168108 Sinus Pain Relief PE (Amcal) 1041521000168108 Sinus Pain Relief PE (Amcal) 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +845501000168103 Alendronate Plus D3 70 mg/70 microgram (Apotex) tablet, 4, blister pack 220366 845491000168105 Alendronate Plus D3 70 mg/70 microgram (Apotex) tablet, 4 845481000168107 Alendronate Plus D3 70 mg/70 microgram (Apotex) tablet 845471000168109 Alendronate Plus D3 70 mg/70 microgram (Apotex) 845471000168109 Alendronate Plus D3 70 mg/70 microgram (Apotex) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +946231000168107 Glimepiride (Sanofi) 4 mg uncoated tablet, 50, blister pack 142393 946221000168109 Glimepiride (Sanofi) 4 mg uncoated tablet, 50 946151000168108 Glimepiride (Sanofi) 4 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 946211000168102 glimepiride 4 mg tablet, 50 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +44389011000036103 Somac 40 mg enteric tablet, 15, bottle 69791 41850011000036108 Somac 40 mg enteric tablet, 15 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46656011000036103 pantoprazole 40 mg enteric tablet, 15 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +926797011000036104 Ondansetron (DRLA) 8 mg film-coated tablet, 6, blister pack 163429 926193011000036102 Ondansetron (DRLA) 8 mg film-coated tablet, 6 925666011000036106 Ondansetron (DRLA) 8 mg film-coated tablet 20111000168103 Ondansetron (DRLA) 20111000168103 Ondansetron (DRLA) 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +674221000168103 Molaxole powder for oral liquid, 30 sachets 213018 674211000168105 Molaxole powder for oral liquid, 30 sachets 674201000168107 Molaxole powder for oral liquid, sachet 172721000036108 Molaxole 172721000036108 Molaxole 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +18141000036103 Vascalace 5 mg uncoated tablet, 30, blister pack 175224 16781000036105 Vascalace 5 mg uncoated tablet, 30 15361000036106 Vascalace 5 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +17763011000036107 Nolvadex 10 mg film-coated tablet, 30, blister pack 11233 11440011000036101 Nolvadex 10 mg film-coated tablet, 30 5808011000036101 Nolvadex 10 mg film-coated tablet 61371000168107 Nolvadex 61371000168107 Nolvadex 26648011000036103 tamoxifen 10 mg tablet, 30 22662011000036108 tamoxifen 10 mg tablet 21494011000036103 tamoxifen +849841000168102 Vzole 200 mg film-coated tablet, 30, blister pack 238242 849831000168106 Vzole 200 mg film-coated tablet, 30 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46808011000036100 voriconazole 200 mg tablet, 30 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +707421000168107 Levetiracetam (AFT) 100 mg/mL oral liquid solution, 300 mL, bottle 218279 707411000168100 Levetiracetam (AFT) 100 mg/mL oral liquid solution, 300 mL 707401000168103 Levetiracetam (AFT) 100 mg/mL oral liquid solution 707391000168100 Levetiracetam (AFT) 707391000168100 Levetiracetam (AFT) 39462011000036104 levetiracetam 100 mg/mL oral liquid, 300 mL 39434011000036104 levetiracetam 100 mg/mL oral liquid 21766011000036102 levetiracetam +698851000168109 Zolpidem (AN) 10 mg film-coated tablet, 14, blister pack 131917 698841000168107 Zolpidem (AN) 10 mg film-coated tablet, 14 698831000168103 Zolpidem (AN) 10 mg film-coated tablet 698821000168101 Zolpidem (AN) 698821000168101 Zolpidem (AN) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +12251000036105 Olanzapine (DRLA) 5 mg film-coated tablet, 28, blister pack 163388 7451000036109 Olanzapine (DRLA) 5 mg film-coated tablet, 28 1851000036103 Olanzapine (DRLA) 5 mg film-coated tablet 36491000168101 Olanzapine (DRLA) 36491000168101 Olanzapine (DRLA) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +33526011000036101 Fosinopril Sodium (Winthrop) 10 mg uncoated tablet, 30, bottle 124846 33267011000036104 Fosinopril Sodium (Winthrop) 10 mg uncoated tablet, 30 33032011000036104 Fosinopril Sodium (Winthrop) 10 mg uncoated tablet 32993011000036102 Fosinopril Sodium (Winthrop) 32993011000036102 Fosinopril Sodium (Winthrop) 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +954811000168105 Gabapentin (Apo) 600 mg film-coated tablet, 500, bottle 131469 954801000168107 Gabapentin (Apo) 600 mg film-coated tablet, 500 730941000168101 Gabapentin (Apo) 600 mg film-coated tablet 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 35776011000036105 gabapentin 600 mg tablet, 500 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +12271000036100 Olanzapine (DRLA) 10 mg film-coated tablet, 28, blister pack 163390 7181000036105 Olanzapine (DRLA) 10 mg film-coated tablet, 28 1861000036100 Olanzapine (DRLA) 10 mg film-coated tablet 36491000168101 Olanzapine (DRLA) 36491000168101 Olanzapine (DRLA) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +657101000168105 Irbesartan (AN) 300 mg film-coated tablet, 30, blister pack 192801 657091000168100 Irbesartan (AN) 300 mg film-coated tablet, 30 657081000168103 Irbesartan (AN) 300 mg film-coated tablet 656971000168100 Irbesartan (AN) 656971000168100 Irbesartan (AN) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +81090011000036107 Bisolvon Chesty 8 mg soluble tablet, 48, blister pack 158944 80598011000036102 Bisolvon Chesty 8 mg soluble tablet, 48 80206011000036108 Bisolvon Chesty 8 mg soluble tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 81666011000036100 bromhexine hydrochloride 8 mg soluble tablet, 48 88351000036100 bromhexine hydrochloride 8 mg soluble tablet 61780011000036106 bromhexine +931360011000036101 Lemsip Cold and Flu with Decongestant hard capsule, 16, blister pack 123601 930578011000036103 Lemsip Cold and Flu with Decongestant hard capsule, 16 929947011000036109 Lemsip Cold and Flu with Decongestant hard capsule 929921011000036104 Lemsip Cold and Flu with Decongestant 929921011000036104 Lemsip Cold and Flu with Decongestant 932352011000036108 phenylephrine hydrochloride 6.1 mg + paracetamol 500 mg capsule, 16 931825011000036102 phenylephrine hydrochloride 6.1 mg + paracetamol 500 mg capsule 61800011000036107 phenylephrine + paracetamol +19271011000036101 Diflucan 200 mg hard capsule, 28, blister pack 48397 12561011000036108 Diflucan 200 mg hard capsule, 28 5051011000036103 Diflucan 200 mg hard capsule 11811000168107 Diflucan 11811000168107 Diflucan 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +767491000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 226240 767481000168107 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767491000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 178481 767481000168107 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767491000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 226240 767481000168107 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +767491000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 178481 767481000168107 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +20864011000036100 Canesten Clotrimazole Thrush Treatment Once 500 mg compressed pessary, 1, blister pack 92390 14026011000036103 Canesten Clotrimazole Thrush Treatment Once 500 mg compressed pessary, 1 7302011000036101 Canesten Clotrimazole Thrush Treatment Once 500 mg compressed pessary 700022731000036108 Canesten Clotrimazole Thrush Treatment Once 700022731000036108 Canesten Clotrimazole Thrush Treatment Once 28089011000036100 clotrimazole 500 mg pessary, 1 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +854091000168100 Quetiapine (Alkem) 300 mg film-coated tablet, 60, blister pack 204845 854081000168103 Quetiapine (Alkem) 300 mg film-coated tablet, 60 854051000168105 Quetiapine (Alkem) 300 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +929666011000036104 Ascorbic Acid (DBL) 500 mg/5 mL injection solution, 50 x 5 mL ampoules 16354 929502011000036106 Ascorbic Acid (DBL) 500 mg/5 mL injection solution, 50 x 5 mL ampoules 929401011000036106 Ascorbic Acid (DBL) 500 mg/5 mL injection solution, 5 mL ampoule 929368011000036106 Ascorbic Acid (DBL) 929368011000036106 Ascorbic Acid (DBL) 78209011000036100 ascorbic acid 500 mg/5 mL injection, 50 x 5 mL ampoules 77544011000036108 ascorbic acid 500 mg/5 mL injection, ampoule 77435011000036104 ascorbic acid +929191000168105 Somac 40 mg enteric tablet, 100, blister pack 69792 41847011000036107 Somac 40 mg enteric tablet, 100 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46653011000036109 pantoprazole 40 mg enteric tablet, 100 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +44209011000036107 Klacid 250 mg/5 mL powder for oral liquid, 50 mL, bottle 56729 41685011000036104 Klacid 250 mg/5 mL powder for oral liquid, 50 mL 40143011000036104 Klacid 250 mg/5 mL powder for oral liquid, 5 mL 3147011000036106 Klacid 3147011000036106 Klacid 46502011000036104 clarithromycin 250 mg/5 mL powder for oral liquid, 50 mL 45190011000036109 clarithromycin 250 mg/5 mL powder for oral liquid 21836011000036107 clarithromycin +920736011000036100 Memantine (Apo) 10 mg film-coated tablet, 14, blister pack 159582 920419011000036106 Memantine (Apo) 10 mg film-coated tablet, 14 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38839011000036107 memantine hydrochloride 10 mg tablet, 14 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +130401000036105 Candesartan Cilexetil (Sandoz) 32 mg tablet, 30, blister pack 147496 127401000036107 Candesartan Cilexetil (Sandoz) 32 mg tablet, 30 124651000036104 Candesartan Cilexetil (Sandoz) 32 mg tablet 123891000036107 Candesartan Cilexetil (Sandoz) 123891000036107 Candesartan Cilexetil (Sandoz) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +60119011000036103 Loratadine (Chemists' Own) 10 mg tablet, 10, blister pack 127572 56078011000036103 Loratadine (Chemists' Own) 10 mg tablet, 10 53781011000036106 Loratadine (Chemists' Own) 10 mg tablet 53461011000036104 Loratadine (Chemists' Own) 53461011000036104 Loratadine (Chemists' Own) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +842391000168109 Infanrix injection suspension, 0.5 mL vial 142369 842381000168106 Infanrix injection suspension, 0.5 mL vial 842361000168102 Infanrix injection suspension, 0.5 mL vial 842341000168101 Infanrix 842341000168101 Infanrix 842371000168108 diphtheria + tetanus + pertussis 3 component child vaccine injection, 0.5 mL vial 842351000168104 diphtheria + tetanus + pertussis 3 component child vaccine injection, 0.5 mL vial 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +68686011000036106 Dencorub Extra Strength Heat gel, 75 g, tube 10146 66474011000036101 Dencorub Extra Strength Heat gel, 75 g 65469011000036106 Dencorub Extra Strength Heat gel 65163011000036109 Dencorub Extra Strength Heat 65163011000036109 Dencorub Extra Strength Heat 71208011000036101 methyl salicylate 26% + menthol 7% gel, 75 g 69902011000036107 methyl salicylate 26% + menthol 7% gel 69751011000036100 methyl salicylate + menthol +746081000168109 Cholstat 20 mg uncoated tablet, 100, blister pack 98488 746071000168106 Cholstat 20 mg uncoated tablet, 100 7551011000036104 Cholstat 20 mg uncoated tablet 3920011000036105 Cholstat 3920011000036105 Cholstat 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +59930011000036100 Decongestant and Antihistamine Mixture (Guardian) oral liquid solution, 100 mL, bottle 119361 55892011000036108 Decongestant and Antihistamine Mixture (Guardian) oral liquid solution, 100 mL 53712011000036103 Decongestant and Antihistamine Mixture (Guardian) oral liquid solution, 5 mL 47821000168103 Decongestant and Antihistamine Mixture (Guardian) 47821000168103 Decongestant and Antihistamine Mixture (Guardian) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +18101000036101 Vascalace 1.25 mg uncoated tablet, 30, bottle 175218 16731000036106 Vascalace 1.25 mg uncoated tablet, 30 15331000036100 Vascalace 1.25 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +929011000168100 Isordil 30 mg uncoated tablet, 100, blister pack 40248 917781000168105 Isordil 30 mg uncoated tablet, 100 917731000168109 Isordil 30 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 917771000168107 isosorbide dinitrate 30 mg tablet, 100 917721000168106 isosorbide dinitrate 30 mg tablet 21865011000036107 isosorbide dinitrate +657141000168107 Letrozole (AN) 2.5 mg film-coated tablet, 30, blister pack 159227 657131000168103 Letrozole (AN) 2.5 mg film-coated tablet, 30 657121000168101 Letrozole (AN) 2.5 mg film-coated tablet 657111000168108 Letrozole (AN) 657111000168108 Letrozole (AN) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +1046941000168100 Buprenorphine (SZ) 5 microgram/hour patch, 4, sachet 269670 1046931000168109 Buprenorphine (SZ) 5 microgram/hour patch, 4 1046881000168104 Buprenorphine (SZ) 5 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046501000168105 buprenorphine 5 microgram/hour patch, 4 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +661441000168104 Lercanidipine Hydrochloride (AN) 20 mg film-coated tablet, 28, blister pack 172212 661431000168108 Lercanidipine Hydrochloride (AN) 20 mg film-coated tablet, 28 661421000168105 Lercanidipine Hydrochloride (AN) 20 mg film-coated tablet 661381000168101 Lercanidipine Hydrochloride (AN) 661381000168101 Lercanidipine Hydrochloride (AN) 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +920713011000036100 Metformin Hydrochloride (Sandoz) 500 mg film-coated tablet, 100, blister pack 125661 920400011000036103 Metformin Hydrochloride (Sandoz) 500 mg film-coated tablet, 100 920162011000036101 Metformin Hydrochloride (Sandoz) 500 mg film-coated tablet 920094011000036100 Metformin Hydrochloride (Sandoz) 920094011000036100 Metformin Hydrochloride (Sandoz) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +74836011000036107 Alpha Keri lotion, 200 mL, bottle 24617 74323011000036101 Alpha Keri lotion, 200 mL 5061011000036105 Alpha Keri lotion 30572011000036100 Alpha Keri 30572011000036100 Alpha Keri 75430011000036107 liquid paraffin 15.2% + lanolin oil 0.56% lotion, 200 mL 22370011000036106 liquid paraffin 15.2% + lanolin oil 0.56% lotion 33631011000036102 liquid paraffin + lanolin oil +31051000036101 Stromectol 3 mg uncoated tablet, 4, blister pack 181338 13264011000036107 Stromectol 3 mg uncoated tablet, 4 6546011000036106 Stromectol 3 mg uncoated tablet 3069011000036101 Stromectol 3069011000036101 Stromectol 27652011000036100 ivermectin 3 mg tablet, 4 22989011000036104 ivermectin 3 mg tablet 21548011000036106 ivermectin +969711000168108 Aripiprazole (AN) 30 mg uncoated tablet, 100, bottle 198201 969701000168105 Aripiprazole (AN) 30 mg uncoated tablet, 100 969471000168106 Aripiprazole (AN) 30 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787651000168101 aripiprazole 30 mg tablet, 100 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +19598011000036106 Flixotide Junior Accuhaler 100 microgram/actuation powder for inhalation, 60 actuations, blister pack 58439 12869011000036106 Flixotide Junior Accuhaler 100 microgram/actuation powder for inhalation, 60 actuations 6160011000036108 Flixotide Junior Accuhaler 100 microgram/actuation powder for inhalation, actuation 40261000168108 Flixotide Junior Accuhaler 40261000168108 Flixotide Junior Accuhaler 27405011000036100 fluticasone propionate 100 microgram/actuation powder for inhalation, 60 actuations 22753011000036100 fluticasone propionate 100 microgram/actuation powder for inhalation, actuation 861061000168102 fluticasone propionate +807991000168102 Perindopril Arginine (Apo) 5 mg film-coated tablet, 100, bottle 184806 807981000168100 Perindopril Arginine (Apo) 5 mg film-coated tablet, 100 807931000168101 Perindopril Arginine (Apo) 5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 806781000168100 perindopril arginine 5 mg tablet, 100 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +694601000168104 Clopaccord 75 mg film-coated tablet, 28, blister pack 187042 694591000168106 Clopaccord 75 mg film-coated tablet, 28 694561000168104 Clopaccord 75 mg film-coated tablet 694551000168101 Clopaccord 694551000168101 Clopaccord 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +808031000168104 Nail Repair (Sandoz) 5% application, 5 mL, bottle 205723 808021000168102 Nail Repair (Sandoz) 5% application, 5 mL 808011000168109 Nail Repair (Sandoz) 5% application 808001000168106 Nail Repair (Sandoz) 808001000168106 Nail Repair (Sandoz) 27384011000036107 amorolfine 5% application, 5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +61215011000036108 Strepfen Intensive cherry 8.75 mg lozenge, 8, blister pack 76192 57151011000036101 Strepfen Intensive cherry 8.75 mg lozenge, 8 54217011000036109 Strepfen Intensive cherry 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63912011000036107 flurbiprofen 8.75 mg lozenge, 8 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +883111000168100 Betahistine (GX) 8 mg tablet, 10, blister pack 231711 883101000168103 Betahistine (GX) 8 mg tablet, 10 883081000168105 Betahistine (GX) 8 mg tablet 883061000168101 Betahistine (GX) 883061000168101 Betahistine (GX) 883091000168108 betahistine dihydrochloride 8 mg tablet, 10 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +50336011000036105 Lyofoam Extra (603090) 20 cm x 15 cm dressing, 10, carton 49385011000036104 Lyofoam Extra (603090) 20 cm x 15 cm dressing, 10 48632011000036106 Lyofoam Extra (603090) 20 cm x 15 cm dressing 34461000168104 Lyofoam Extra (603090) 34461000168104 Lyofoam Extra (603090) 51358011000036103 dressing foam heavy exudate 20 cm x 15 cm dressing, 10 50881011000036108 dressing foam heavy exudate 20 cm x 15 cm dressing 50757011000036108 dressing foam heavy exudate +21054011000036104 Nizac 150 mg hard capsule, 60, blister pack 96961 14199011000036105 Nizac 150 mg hard capsule, 60 7480011000036107 Nizac 150 mg hard capsule 4551000168106 Nizac 4551000168106 Nizac 28206011000036101 nizatidine 150 mg capsule, 60 23518011000036109 nizatidine 150 mg capsule 21421011000036109 nizatidine +933246911000036108 Pantoprazole (PS) 40 mg enteric tablet, 100, blister pack 158197 933243741000036100 Pantoprazole (PS) 40 mg enteric tablet, 100 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46653011000036109 pantoprazole 40 mg enteric tablet, 100 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +704361000168104 Alendronate Plus D3 70 mg/70 microgram (Chemmart) tablet, 4, blister pack 220373 704351000168101 Alendronate Plus D3 70 mg/70 microgram (Chemmart) tablet, 4 704341000168103 Alendronate Plus D3 70 mg/70 microgram (Chemmart) tablet 704331000168107 Alendronate Plus D3 70 mg/70 microgram (Chemmart) 704331000168107 Alendronate Plus D3 70 mg/70 microgram (Chemmart) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +933212341000036104 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 98, blister pack 142237 933201131000036104 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 98 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200841000036105 donepezil hydrochloride 5 mg tablet, 98 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +69465011000036101 Pinetarsol 1.6% gel, 10 g, tube 49249 67265011000036109 Pinetarsol 1.6% gel, 10 g 65583011000036100 Pinetarsol 1.6% gel 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 72033011000036109 tar 1.6% gel, 10 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +25271000036102 Amoxycillin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 97627 23051000036102 Amoxycillin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL 20491000036107 Amoxycillin (Chemmart) 250 mg/5 mL powder for oral liquid, 5 mL 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +25271000036102 Amoxycillin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 76233 23051000036102 Amoxycillin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL 20491000036107 Amoxycillin (Chemmart) 250 mg/5 mL powder for oral liquid, 5 mL 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +19288011000036100 Ditropan 5 mg uncoated tablet, 100, bottle 48965 12578011000036107 Ditropan 5 mg uncoated tablet, 100 5068011000036101 Ditropan 5 mg uncoated tablet 3817011000036106 Ditropan 3817011000036106 Ditropan 27214011000036103 oxybutynin hydrochloride 5 mg tablet, 100 22574011000036104 oxybutynin hydrochloride 5 mg tablet 21620011000036100 oxybutynin +668421000168100 Advate (1 x 1500 units vial, 1 x 2 mL inert diluent vial), 1 pack 100387 668411000168107 Advate (1 x 1500 units vial, 1 x 2 mL inert diluent vial), 1 pack 668391000168107 Advate (inert substance) diluent, 2 mL vial 65054011000036106 Advate 65054011000036106 Advate 668401000168109 octocog alfa 1500 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +668421000168100 Advate (1 x 1500 units vial, 1 x 2 mL inert diluent vial), 1 pack 100387 668411000168107 Advate (1 x 1500 units vial, 1 x 2 mL inert diluent vial), 1 pack 929935011000036100 Advate (octocog alfa 1500 units) powder for injection, 1500 units vial 65054011000036106 Advate 65054011000036106 Advate 668401000168109 octocog alfa 1500 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 931817011000036103 octocog alfa 1500 units injection, vial 69843011000036100 octocog alfa +17781000036107 Simvastatin (Synthon) 40 mg film-coated tablet, 30, blister pack 100866 16461000036108 Simvastatin (Synthon) 40 mg film-coated tablet, 30 15631000036105 Simvastatin (Synthon) 40 mg film-coated tablet 15151000036106 Simvastatin (Synthon) 15151000036106 Simvastatin (Synthon) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +17867011000036101 Ondaz 4 mg/2 mL injection solution, 2 mL ampoule 116420 11516011000036103 Ondaz 4 mg/2 mL injection solution, 2 mL ampoule 5953011000036109 Ondaz 4 mg/2 mL injection solution, 2 mL ampoule 3761000168104 Ondaz 3761000168104 Ondaz 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +61644011000036101 Advil 200 mg soft capsule, 30, blister pack 97229 57566011000036109 Advil 200 mg soft capsule, 30 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63931011000036105 ibuprofen 200 mg capsule, 30 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +806621000168106 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet, 100, blister pack 184811 806611000168104 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet, 100 806551000168104 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 806601000168102 perindopril arginine 2.5 mg tablet, 100 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +793741000168103 Actemra 400 mg/20 mL concentrated injection, 4 x 20 mL vials 149402 793731000168107 Actemra 400 mg/20 mL concentrated injection, 4 x 20 mL vials 82677011000036107 Actemra 400 mg/20 mL concentrated injection, 20 mL vial 82659011000036103 Actemra 82659011000036103 Actemra 793721000168109 tocilizumab 400 mg/20 mL injection, 4 x 20 mL vials 82925011000036102 tocilizumab 400 mg/20 mL injection, vial 82914011000036109 tocilizumab +12431000036101 Quetiapine (Sandoz) 25 mg film-coated tablet, 60, blister pack 158104 6801000036108 Quetiapine (Sandoz) 25 mg film-coated tablet, 60 2911000036101 Quetiapine (Sandoz) 25 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +926751011000036103 Primovist 907.1 mg/5 mL injection solution, 5 x 5 mL vials 102088 926061011000036107 Primovist 907.1 mg/5 mL injection solution, 5 x 5 mL vials 925622011000036101 Primovist 907.1 mg/5 mL injection solution, 5 mL vial 920914011000036108 Primovist 920914011000036108 Primovist 927293011000036100 gadoxetate disodium 907.1 mg/5 mL injection, 5 x 5 mL vials 926980011000036107 gadoxetate disodium 907.1 mg/5 mL injection, vial 922038011000036107 gadoxetic acid +81031011000036105 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 30, bottle 104398 80476011000036101 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 30 80150011000036100 Carvedilol (Sandoz) 12.5 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 81578011000036101 carvedilol 12.5 mg tablet, 30 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +60675011000036109 Rapideine uncoated tablet, 24, blister pack 42397 56633011000036101 Rapideine uncoated tablet, 24 54016011000036103 Rapideine uncoated tablet 53593011000036105 Rapideine 53593011000036105 Rapideine 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +710231000168109 Nutrini Peptisorb oral liquid solution, 8 x 500 mL pouches 710221000168106 Nutrini Peptisorb oral liquid solution, 8 x 500 mL pouches 710191000168100 Nutrini Peptisorb oral liquid solution, 500 mL pouch 709981000168105 Nutrini Peptisorb 709981000168105 Nutrini Peptisorb 710211000168104 protein formula with carbohydrate, fat, vitamins and minerals oral liquid, 8 x 500 mL pouches 710171000168101 protein formula with carbohydrate, fat, vitamins and minerals oral liquid, 500 mL pouch 710151000168105 protein formula with carbohydrate, fat, vitamins and minerals +908861000168108 Celecoxib (GXP) 200 mg hard capsule, 30, blister pack 206834 908851000168106 Celecoxib (GXP) 200 mg hard capsule, 30 908841000168109 Celecoxib (GXP) 200 mg hard capsule 908811000168105 Celecoxib (GXP) 908811000168105 Celecoxib (GXP) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1089041000168102 Lorstat 40 mg film-coated tablet, 10, bottle 181409 1089031000168106 Lorstat 40 mg film-coated tablet, 10 20781000036103 Lorstat 40 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +669791000168100 Irbesartan (Actavis) 75 mg film-coated tablet, 30, blister pack 223014 669781000168103 Irbesartan (Actavis) 75 mg film-coated tablet, 30 669771000168101 Irbesartan (Actavis) 75 mg film-coated tablet 669761000168107 Irbesartan (Actavis) 669761000168107 Irbesartan (Actavis) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +35668011000036108 HPMC PAA 0.3% / 0.2% eye gel, 10 g, tube 35550011000036109 HPMC PAA 0.3% / 0.2% eye gel, 10 g 35463011000036100 HPMC PAA 0.3% / 0.2% eye gel 59831000168109 HPMC PAA 0.3% / 0.2% 59831000168109 HPMC PAA 0.3% / 0.2% 35757011000036106 hypromellose 0.3% + carbomer-980 0.2% eye gel, 10 g 35699011000036103 hypromellose 0.3% + carbomer-980 0.2% eye gel 35689011000036102 hypromellose + carbomer-980 +68729011000036100 Diaformin XR 500 mg modified release tablet, 100, blister pack 120868 66654011000036101 Diaformin XR 500 mg modified release tablet, 100 65316011000036106 Diaformin XR 500 mg modified release tablet 35531000168107 Diaformin XR 35531000168107 Diaformin XR 71364011000036104 metformin hydrochloride 500 mg modified release tablet, 100 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +19409011000036105 Placil 25 mg film-coated tablet, 50, blister pack 53313 12693011000036100 Placil 25 mg film-coated tablet, 50 4687011000036101 Placil 25 mg film-coated tablet 3632011000036106 Placil 3632011000036106 Placil 27730011000036109 clomipramine hydrochloride 25 mg tablet, 50 23065011000036101 clomipramine hydrochloride 25 mg tablet 21897011000036104 clomipramine +19409011000036105 Placil 25 mg film-coated tablet, 50, blister pack 143879 12693011000036100 Placil 25 mg film-coated tablet, 50 4687011000036101 Placil 25 mg film-coated tablet 3632011000036106 Placil 3632011000036106 Placil 27730011000036109 clomipramine hydrochloride 25 mg tablet, 50 23065011000036101 clomipramine hydrochloride 25 mg tablet 21897011000036104 clomipramine +13531000036108 Delucon 100 mg film-coated tablet, 90, blister pack 172843 8661000036109 Delucon 100 mg film-coated tablet, 90 1631000036105 Delucon 100 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +37674011000036106 Tropicamide Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 32289 36940011000036103 Tropicamide Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 36271011000036105 Tropicamide Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 50981000168106 Tropicamide Minims (Bausch & Lomb) 50981000168106 Tropicamide Minims (Bausch & Lomb) 38821011000036106 tropicamide 1% eye drops, 20 x 0.5 mL unit doses 38031011000036109 tropicamide 1% eye drops, unit dose 37747011000036108 tropicamide +1075931000168102 Quetiapine (Auro) 100 mg film-coated tablet, 60, blister pack 172846 1075921000168100 Quetiapine (Auro) 100 mg film-coated tablet, 60 1075471000168107 Quetiapine (Auro) 100 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +18774011000036108 Setrona 50 mg film-coated tablet, 30, blister pack 116623 11531011000036104 Setrona 50 mg film-coated tablet, 30 4916011000036103 Setrona 50 mg film-coated tablet 3851011000036106 Setrona 3851011000036106 Setrona 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +146311000036100 Sevikar HCT 40/5/12.5 film-coated tablet, 10, blister pack 199006 144991000036100 Sevikar HCT 40/5/12.5 film-coated tablet, 10 143611000036104 Sevikar HCT 40/5/12.5 film-coated tablet 25911000168108 Sevikar HCT 40/5/12.5 25911000168108 Sevikar HCT 40/5/12.5 145021000036103 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet, 10 143621000036106 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +37477011000036102 Ventolin 5 mg/5 mL concentrated injection, 5 x 5 mL ampoules 12528 36745011000036102 Ventolin 5 mg/5 mL concentrated injection, 5 x 5 mL ampoules 36090011000036100 Ventolin 5 mg/5 mL concentrated injection, 5 mL ampoule 34481000168108 Ventolin 34481000168108 Ventolin 38653011000036101 salbutamol 5 mg/5 mL injection, 5 x 5 mL ampoules 37906011000036108 salbutamol 5 mg/5 mL injection, ampoule 21493011000036100 salbutamol +747611000168105 Morphine MR (SCP) 10 mg modified release tablet, 28, blister pack 225421 747601000168107 Morphine MR (SCP) 10 mg modified release tablet, 28 747571000168101 Morphine MR (SCP) 10 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +73347011000036105 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution, 500 mL, bottle 27273 73141011000036109 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution, 500 mL 72943011000036104 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution 72913011000036106 Eucalyptus Oil (Gold Cross) 72913011000036106 Eucalyptus Oil (Gold Cross) 73521011000036103 eucalyptus oil 1 mL/mL inhalation solution, 500 mL 73382011000036103 eucalyptus oil 1 mL/mL inhalation solution 73351011000036104 eucalyptus oil +931602011000036108 Pratin 40 mg film-coated tablet, 500, bottle 163558 930763011000036100 Pratin 40 mg film-coated tablet, 500 930038011000036103 Pratin 40 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932419011000036104 pravastatin sodium 40 mg tablet, 500 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +900271000168101 Diacol tablet, 32, bottle 149914 900261000168107 Diacol tablet, 32 900241000168108 Diacol tablet 83543011000036100 Diacol 83543011000036100 Diacol 900251000168105 monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet, 32 900231000168104 monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet 900221000168102 monobasic sodium phosphate monohydrate + dibasic sodium phosphate +20239011000036102 Ranitidine (Chemmart) 150 mg film-coated tablet, 60, blister pack 74410 13450011000036105 Ranitidine (Chemmart) 150 mg film-coated tablet, 60 6732011000036109 Ranitidine (Chemmart) 150 mg film-coated tablet 4233011000036104 Ranitidine (Chemmart) 4233011000036104 Ranitidine (Chemmart) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +20239011000036102 Ranitidine (Chemmart) 150 mg film-coated tablet, 60, blister pack 121976 13450011000036105 Ranitidine (Chemmart) 150 mg film-coated tablet, 60 6732011000036109 Ranitidine (Chemmart) 150 mg film-coated tablet 4233011000036104 Ranitidine (Chemmart) 4233011000036104 Ranitidine (Chemmart) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1071681000168105 Cold and Flu PE (Terry White Chemists) film-coated tablet, 24, blister pack 256132 1071671000168107 Cold and Flu PE (Terry White Chemists) film-coated tablet, 24 1071661000168101 Cold and Flu PE (Terry White Chemists) film-coated tablet 85262011000036102 Cold and Flu PE (Terry White Chemists) 85262011000036102 Cold and Flu PE (Terry White Chemists) 63169011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +698611000168107 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes 214199 698601000168109 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes 698581000168100 Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL syringe 686381000168107 Plegridy 686381000168107 Plegridy 698591000168102 peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL syringes 698571000168103 peginterferon beta-1a 125 microgram/0.5 mL injection, syringe 698561000168109 peginterferon beta-1a +933246591000036108 Lisinopril (PS) 5 mg uncoated tablet, 28, blister pack 152712 933243231000036102 Lisinopril (PS) 5 mg uncoated tablet, 28 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 46262011000036105 lisinopril 5 mg tablet, 28 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +20677011000036105 Ranoxyl 150 mg film-coated tablet, 60, blister pack 199391 13856011000036100 Ranoxyl 150 mg film-coated tablet, 60 7143011000036107 Ranoxyl 150 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +20677011000036105 Ranoxyl 150 mg film-coated tablet, 60, blister pack 82324 13856011000036100 Ranoxyl 150 mg film-coated tablet, 60 7143011000036107 Ranoxyl 150 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +59724011000036102 Advil 200 mg sugar coated tablet, 100, blister pack 104221 55682011000036100 Advil 200 mg sugar coated tablet, 100 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +170981000036106 Panadol Extra Optizorb film-coated tablet, 36, blister pack 203990 170061000036100 Panadol Extra Optizorb film-coated tablet, 36 168931000036103 Panadol Extra Optizorb film-coated tablet 7671000168109 Panadol Extra Optizorb 7671000168109 Panadol Extra Optizorb 169911000036101 paracetamol 500 mg + caffeine 65 mg tablet, 36 168941000036108 paracetamol 500 mg + caffeine 65 mg tablet 171051000036108 paracetamol + caffeine +77132011000036108 Ostevit-D 25 microgram (1000 units) uncoated tablet, 90, bottle 119581 76596011000036105 Ostevit-D 25 microgram (1000 units) uncoated tablet, 90 76053011000036107 Ostevit-D 25 microgram (1000 units) uncoated tablet 41951000168108 Ostevit-D 41951000168108 Ostevit-D 78150011000036101 colecalciferol 25 microgram (1000 units) tablet, 90 77514011000036102 colecalciferol 25 microgram (1000 units) tablet 77447011000036108 colecalciferol +750491000168100 Antenex 2 mg uncoated tablet, 900, blister pack 17604 750481000168103 Antenex 2 mg uncoated tablet, 900 32247011000036100 Antenex 2 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 750471000168101 diazepam 2 mg tablet, 900 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +674141000168101 Movicol-Half powder for oral liquid, 30 sachets 109758 674131000168105 Movicol-Half powder for oral liquid, 30 sachets 674111000168100 Movicol-Half powder for oral liquid, 1 sachet 42391000168105 Movicol-Half 42391000168105 Movicol-Half 674121000168107 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 30 sachets 674101000168103 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 1 sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +937731000168102 Famciclovir (FBM) 250 mg film-coated tablet, 5, blister pack 177000 937721000168100 Famciclovir (FBM) 250 mg film-coated tablet, 5 937691000168109 Famciclovir (FBM) 250 mg film-coated tablet 937681000168106 Famciclovir (FBM) 937681000168106 Famciclovir (FBM) 87820011000036102 famciclovir 250 mg tablet, 5 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +17821000036103 Seronia 200 mg film-coated tablet, 60, blister pack 143716 16541000036106 Seronia 200 mg film-coated tablet, 60 15401000036101 Seronia 200 mg film-coated tablet 15121000036100 Seronia 15121000036100 Seronia 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +170821000036104 Panadol Extra film-coated tablet, 36, blister pack 166030 169901000036103 Panadol Extra film-coated tablet, 36 169211000036108 Panadol Extra film-coated tablet 25001000168109 Panadol Extra 25001000168109 Panadol Extra 169911000036101 paracetamol 500 mg + caffeine 65 mg tablet, 36 168941000036108 paracetamol 500 mg + caffeine 65 mg tablet 171051000036108 paracetamol + caffeine +933229661000036105 Morphine Sulfate MR (Apotex) 100 mg modified release tablet, 20, blister pack 132258 933223631000036102 Morphine Sulfate MR (Apotex) 100 mg modified release tablet, 20 933219691000036108 Morphine Sulfate MR (Apotex) 100 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 27109011000036102 morphine sulfate pentahydrate 100 mg modified release tablet, 20 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +668381000168109 Advate (1 x 4000 units vial, 1 x 5 mL inert diluent vial), 1 pack 214709 668021000168107 Advate (1 x 4000 units vial, 1 x 5 mL inert diluent vial), 1 pack 633331000168108 Advate (inert substance) diluent, 5 mL vial 65054011000036106 Advate 65054011000036106 Advate 668011000168100 octocog alfa 4000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +668381000168109 Advate (1 x 4000 units vial, 1 x 5 mL inert diluent vial), 1 pack 214709 668021000168107 Advate (1 x 4000 units vial, 1 x 5 mL inert diluent vial), 1 pack 668001000168103 Advate (octocog alfa 4000 units) powder for injection, 4000 units vial 65054011000036106 Advate 65054011000036106 Advate 668011000168100 octocog alfa 4000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 667991000168107 octocog alfa 4000 units injection, vial 69843011000036100 octocog alfa +806661000168101 Irbesartan (Blooms The Chemist) 75 mg film-coated tablet, 30, blister pack 259883 806651000168103 Irbesartan (Blooms The Chemist) 75 mg film-coated tablet, 30 806641000168100 Irbesartan (Blooms The Chemist) 75 mg film-coated tablet 806631000168109 Irbesartan (Blooms The Chemist) 806631000168109 Irbesartan (Blooms The Chemist) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +978061000168108 Bio Magnesium film-coated tablet, 50, bottle 164335 978051000168106 Bio Magnesium film-coated tablet, 50 978031000168100 Bio Magnesium film-coated tablet 45051000168105 Bio Magnesium 45051000168105 Bio Magnesium 978041000168109 magnesium oxide heavy 440 mg + magnesium phosphate pentahydrate 175 mg (total magnesium 301.5 mg) + calcium ascorbate dihydrate 50 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet, 50 978021000168103 magnesium oxide heavy 440 mg + magnesium phosphate pentahydrate 175 mg (total magnesium 301.5 mg) + calcium ascorbate dihydrate 50 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet 978011000168105 magnesium + ascorbic acid + pyridoxine + colecalciferol + manganese amino acid chelate +130321000036109 Camino Pro Restore oral liquid solution, 12 x 500 mL bottles 127231000036101 Camino Pro Restore oral liquid solution, 12 x 500 mL bottles 607181000168107 Camino Pro Restore oral liquid solution, 500 mL bottle 123881000036105 Camino Pro Restore 123881000036105 Camino Pro Restore 127241000036106 glycomacropeptide and essential amino acids oral liquid, 12 x 500 mL bottles 606861000168105 glycomacropeptide and essential amino acids oral liquid, 500 mL bottle 132131000036109 glycomacropeptide and essential amino acids +61353011000036109 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 250, blister pack 81474 57278011000036105 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 250 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63848011000036107 paracetamol 500 mg tablet, 250 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19922011000036105 Wellvone 750 mg/5 mL oral liquid suspension, 210 mL, bottle 66688 13167011000036103 Wellvone 750 mg/5 mL oral liquid suspension, 210 mL 6450011000036102 Wellvone 750 mg/5 mL oral liquid suspension, 5 mL 3057011000036104 Wellvone 3057011000036104 Wellvone 27586011000036102 atovaquone 750 mg/5 mL oral liquid, 210 mL 22925011000036109 atovaquone 750 mg/5 mL oral liquid 21877011000036108 atovaquone +44082011000036107 Scandonest 3% (54 mg/1.8 mL) injection solution, 50 x 1.8 mL cartridges 49310 41569011000036108 Scandonest 3% (54 mg/1.8 mL) injection solution, 50 x 1.8 mL cartridges 40072011000036101 Scandonest 3% (54 mg/1.8 mL) injection solution, 1.8 mL cartridge 39620011000036108 Scandonest 39620011000036108 Scandonest 46398011000036101 mepivacaine hydrochloride 3% (54 mg/1.8 mL) injection, 50 x 1.8 mL cartridges 45132011000036101 mepivacaine hydrochloride 3% (54 mg/1.8 mL) injection, cartridge 44901011000036107 mepivacaine +1123521000168100 Quetiapine XR (ZP) 50 mg modified release tablet, 30, blister pack 241754 1123511000168107 Quetiapine XR (ZP) 50 mg modified release tablet, 30 1123501000168109 Quetiapine XR (ZP) 50 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 809171000168107 quetiapine 50 mg modified release tablet, 30 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +61232011000036108 Nicotine (Amcal) Fruit 2 mg chewing gum, 12, blister pack 76845 57168011000036104 Nicotine (Amcal) Fruit 2 mg chewing gum, 12 54223011000036109 Nicotine (Amcal) Fruit 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +87190011000036101 Sugarless C 500mg (Cenovis) 500 mg chewable tablet, 100, bottle 55033 87126011000036105 Sugarless C 500mg (Cenovis) 500 mg chewable tablet, 100 87072011000036103 Sugarless C 500mg (Cenovis) 500 mg chewable tablet 9211000168109 Sugarless C 500mg (Cenovis) 9211000168109 Sugarless C 500mg (Cenovis) 87238011000036105 ascorbic acid 500 mg chewable tablet, 100 87207011000036100 ascorbic acid 500 mg chewable tablet 77435011000036104 ascorbic acid +60616011000036106 Seda 2.5% lotion, 15 mL, bottle 18899 56574011000036108 Seda 2.5% lotion, 15 mL 53981011000036103 Seda 2.5% lotion 53209011000036102 Seda 53209011000036102 Seda 63433011000036109 lidocaine (lignocaine) 2.5% lotion, 15 mL 61960011000036102 lidocaine (lignocaine) 2.5% lotion 21572011000036107 lidocaine (lignocaine) +1075971000168104 Aripiprazole (Auro) 5 mg uncoated tablet, 60, blister pack 198185 1075961000168105 Aripiprazole (Auro) 5 mg uncoated tablet, 60 1075851000168100 Aripiprazole (Auro) 5 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 46876011000036105 aripiprazole 5 mg tablet, 60 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +12411000036105 Quetiapine (Sandoz) 300 mg film-coated tablet, 60, bottle 158102 6781000036107 Quetiapine (Sandoz) 300 mg film-coated tablet, 60 3131000036104 Quetiapine (Sandoz) 300 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +926221000168106 Stilnox 5 mg film-coated tablet, 14, blister pack 58709 926211000168104 Stilnox 5 mg film-coated tablet, 14 926131000168104 Stilnox 5 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 926201000168102 zolpidem tartrate 5 mg tablet, 14 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +704431000168101 Parbezol 10 mg enteric tablet, 28, blister pack 216107 704421000168104 Parbezol 10 mg enteric tablet, 28 704411000168106 Parbezol 10 mg enteric tablet 703931000168106 Parbezol 703931000168106 Parbezol 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +85041011000036107 Panto 40 mg enteric tablet, 90, bottle 158555 84906011000036107 Panto 40 mg enteric tablet, 90 83658011000036103 Panto 40 mg enteric tablet 83563011000036106 Panto 83563011000036106 Panto 85192011000036101 pantoprazole 40 mg enteric tablet, 90 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +84328011000036107 Pantoprazole (Apo) 20 mg enteric tablet, 30, blister pack 156338 933202531000036103 Pantoprazole (Apo) 20 mg enteric tablet, 30 933195171000036104 Pantoprazole (Apo) 20 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +84328011000036107 Pantoprazole (Apo) 20 mg enteric tablet, 30, blister pack 213715 933202531000036103 Pantoprazole (Apo) 20 mg enteric tablet, 30 933195171000036104 Pantoprazole (Apo) 20 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1024091000168100 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 16, blister pack 227167 1024081000168103 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 16 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +17986011000036106 Vaxigrip 2007 injection solution, 1 x 0.5 mL syringe 129874 11883011000036105 Vaxigrip 2007 injection solution, 1 x 0.5 mL syringe 5233011000036109 Vaxigrip 2007 injection solution, 0.5 mL syringe 58381000168107 Vaxigrip 2007 58381000168107 Vaxigrip 2007 27994011000036103 influenza trivalent vaccine 2007 injection, 1 x 0.5 mL syringe 23317011000036106 influenza trivalent vaccine 2007 injection, 0.5 mL syringe 32638011000036100 influenza trivalent vaccine 2007 +12571000036103 Olanzapine ODT (Chemmart) 5 mg orally disintegrating tablet, 28, blister pack 158959 6821000036103 Olanzapine ODT (Chemmart) 5 mg orally disintegrating tablet, 28 2081000036108 Olanzapine ODT (Chemmart) 5 mg orally disintegrating tablet 15331000168107 Olanzapine ODT (Chemmart) 15331000168107 Olanzapine ODT (Chemmart) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +886011000168107 Paracetamol Osteo-Tab 665 mg modified release tablet, 96, bottle 202407 886001000168109 Paracetamol Osteo-Tab 665 mg modified release tablet, 96 885991000168108 Paracetamol Osteo-Tab 665 mg modified release tablet 885981000168105 Paracetamol Osteo-Tab 885981000168105 Paracetamol Osteo-Tab 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +146151000036103 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet, 24, blister pack 196020 145231000036106 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet, 24 143431000036106 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet 143441000036101 Ibuprofen (Pharmacy Action) 143441000036101 Ibuprofen (Pharmacy Action) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +926768011000036101 Buscopan Forte 20 mg film-coated tablet, 10, blister pack 153552 926165011000036103 Buscopan Forte 20 mg film-coated tablet, 10 925652011000036102 Buscopan Forte 20 mg film-coated tablet 22781000168109 Buscopan Forte 22781000168109 Buscopan Forte 924213011000036109 hyoscine butylbromide 20 mg tablet, 10 923994011000036108 hyoscine butylbromide 20 mg tablet 21580011000036102 hyoscine butylbromide +86163011000036108 Panvax H1N1 Junior Vaccine 7.5 microgram/0.25 mL injection suspension, 0.25 mL syringe 166312 85771011000036105 Panvax H1N1 Junior Vaccine 7.5 microgram/0.25 mL injection suspension, 0.25 mL syringe 85385011000036104 Panvax H1N1 Junior Vaccine 7.5 microgram/0.25 mL injection suspension, 0.25 mL syringe 13601000168109 Panvax H1N1 Junior Vaccine 13601000168109 Panvax H1N1 Junior Vaccine 86457011000036107 influenza child vaccine pandemic 2009 injection, 0.25 mL syringe 86231011000036102 influenza child vaccine pandemic 2009, 0.25 mL syringe 81214011000036106 influenza vaccine pandemic 2009 +44219011000036109 Ogen 1.25 mg uncoated tablet, 28, bottle 56973 41695011000036100 Ogen 1.25 mg uncoated tablet, 28 6119011000036101 Ogen 1.25 mg uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46512011000036101 oestrone sulfate sodium 1.25 mg tablet, 28 22745011000036102 oestrone sulfate sodium 1.25 mg tablet 21299011000036103 oestrone sulfate sodium +911671000168107 Cavstat 20 mg film-coated tablet, 90, blister pack 234514 910691000168101 Cavstat 20 mg film-coated tablet, 90 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910681000168104 rosuvastatin 20 mg tablet, 90 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +69439011000036105 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 48 x 100 mL bags 48515 67239011000036100 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 48 x 100 mL bags 65570011000036102 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71789011000036101 sodium chloride 0.9% (900 mg/100 mL) injection, 48 x 100 mL bags 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +928825011000036105 Carboplatin (Novotech) 150 mg/15 mL injection solution, 15 mL vial 107355 928177011000036108 Carboplatin (Novotech) 150 mg/15 mL injection solution, 15 mL vial 927842011000036106 Carboplatin (Novotech) 150 mg/15 mL injection solution, 15 mL vial 927763011000036107 Carboplatin (Novotech) 927763011000036107 Carboplatin (Novotech) 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +87671011000036102 Clopidogrel (Winthrop) 75 mg film-coated tablet, 7, blister pack 148947 87436011000036107 Clopidogrel (Winthrop) 75 mg film-coated tablet, 7 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87805011000036102 clopidogrel 75 mg tablet, 7 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +44612011000036102 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 10, blister pack 90128 42065011000036105 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 10 40345011000036109 Sinutab Sinus, Allergy and Pain Relief uncoated tablet 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 46832011000036108 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 10 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +767651000168103 Microshield Handrub solution, 500 mL, bottle 30945 767641000168100 Microshield Handrub solution, 500 mL 767631000168109 Microshield Handrub solution 65068011000036105 Microshield Handrub 65068011000036105 Microshield Handrub 71741011000036107 chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL 70161011000036104 chlorhexidine gluconate 0.5% + ethanol 70% solution 69801011000036109 chlorhexidine + ethanol +702861000168101 Gemcitabine (Kabi) 1 g/26.3 mL concentrated injection, 26.3 mL vial 220681 702851000168103 Gemcitabine (Kabi) 1 g/26.3 mL concentrated injection, 26.3 mL vial 702841000168100 Gemcitabine (Kabi) 1 g/26.3 mL concentrated injection, 26.3 mL vial 924404011000036105 Gemcitabine (Kabi) 924404011000036105 Gemcitabine (Kabi) 924185011000036109 gemcitabine 1 g/26.3 mL injection, 26.3 mL vial 923987011000036103 gemcitabine 1 g/26.3 mL injection, vial 21644011000036108 gemcitabine +59707011000036102 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 96, blister pack 100678 55646011000036109 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 96 53667011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet 53194011000036103 Paracetamol Pain Relief (Amcal) 53194011000036103 Paracetamol Pain Relief (Amcal) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +811011000168101 Clindamycin (Mylan) 300 mg/2 mL injection solution, 10 x 2 mL vials 189176 811001000168104 Clindamycin (Mylan) 300 mg/2 mL injection solution, 10 x 2 mL vials 810981000168103 Clindamycin (Mylan) 300 mg/2 mL injection solution, 2 mL vial 810961000168107 Clindamycin (Mylan) 810961000168107 Clindamycin (Mylan) 810991000168100 clindamycin 300 mg/2 mL injection, 10 x 2 mL vials 810971000168101 clindamycin 300 mg/2 mL injection, vial 21255011000036108 clindamycin +656821000168109 Famciclovir (AN) 250 mg film-coated tablet, 21, blister pack 195181 656811000168102 Famciclovir (AN) 250 mg film-coated tablet, 21 656771000168102 Famciclovir (AN) 250 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +672861000168101 Fycompa 4 mg film-coated tablet, 28, blister pack 207689 672851000168103 Fycompa 4 mg film-coated tablet, 28 672831000168109 Fycompa 4 mg film-coated tablet 672551000168100 Fycompa 672551000168100 Fycompa 672841000168100 perampanel 4 mg tablet, 28 672821000168106 perampanel 4 mg tablet 672561000168103 perampanel +694281000168105 Mepitac (298300) 2 cm x 3 m tape, 1 roll, carton 694271000168107 Mepitac (298300) 2 cm x 3 m tape, 1 roll 694231000168109 Mepitac (298300) 2 cm x 3 m tape 54401000168101 Mepitac (298300) 54401000168101 Mepitac (298300) 694251000168103 tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll 694221000168106 tape plaster adhesive with silicone 2 cm x 3 m tape 85068011000036107 tape plaster adhesive with silicone +933054011000036108 Motrig 50 mg tablet, 56, blister pack 106986 932846011000036107 Motrig 50 mg tablet, 56 932717011000036101 Motrig 50 mg tablet 925505011000036107 Motrig 925505011000036107 Motrig 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +17941000036101 Syquet 200 mg film-coated tablet, 60, blister pack 203593 16681000036101 Syquet 200 mg film-coated tablet, 60 15311000036109 Syquet 200 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +17941000036101 Syquet 200 mg film-coated tablet, 60, blister pack 162404 16681000036101 Syquet 200 mg film-coated tablet, 60 15311000036109 Syquet 200 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +20377011000036102 Slow-K 600 mg (potassium 8 mmol) modified release tablet, 100, bottle 76769 13585011000036102 Slow-K 600 mg (potassium 8 mmol) modified release tablet, 100 6868011000036100 Slow-K 600 mg (potassium 8 mmol) modified release tablet 3806011000036105 Slow-K 3806011000036105 Slow-K 27911011000036102 potassium chloride 600 mg (potassium 8 mmol) modified release tablet, 100 23235011000036103 potassium chloride 600 mg (potassium 8 mmol) modified release tablet 21274011000036107 potassium chloride +60221011000036106 Strepfen Intensive honey and lemon 8.75 mg lozenge, 12, blister pack 133376 56180011000036100 Strepfen Intensive honey and lemon 8.75 mg lozenge, 12 53828011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63906011000036108 flurbiprofen 8.75 mg lozenge, 12 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +773431000168108 Claratyne Reditab 10 mg orally disintegrating tablet, 2, blister pack 217147 773421000168105 Claratyne Reditab 10 mg orally disintegrating tablet, 2 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773411000168103 loratadine 10 mg orally disintegrating tablet, 2 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +1021351000168105 Voriconazole (Apo) 50 mg film-coated tablet, 20, blister pack 238281 1021341000168108 Voriconazole (Apo) 50 mg film-coated tablet, 20 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46815011000036108 voriconazole 50 mg tablet, 20 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +972211000168102 Lyzalon 25 mg hard capsule, 14, bottle 224422 972201000168100 Lyzalon 25 mg hard capsule, 14 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +934761000168100 Zantac 75 mg film-coated tablet, 12, blister pack 55238 934751000168102 Zantac 75 mg film-coated tablet, 12 934701000168101 Zantac 75 mg film-coated tablet 3563011000036102 Zantac 3563011000036102 Zantac 934741000168104 ranitidine 75 mg tablet, 12 934691000168101 ranitidine 75 mg tablet 21682011000036109 ranitidine +21208011000036109 Efexor-XR 37.5 mg modified release capsule, 28, blister pack 99802 14344011000036105 Efexor-XR 37.5 mg modified release capsule, 28 7627011000036104 Efexor-XR 37.5 mg modified release capsule 45291000168107 Efexor-XR 45291000168107 Efexor-XR 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +1047101000168102 Buprenorphine (SZ) 20 microgram/hour patch, 2, sachet 269675 1047091000168107 Buprenorphine (SZ) 20 microgram/hour patch, 2 1047061000168100 Buprenorphine (SZ) 20 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 26682011000036106 buprenorphine 20 microgram/hour patch, 2 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +50293011000036101 Elastoplast (2227) size E (35 cm to 45 cm) straight bandage, 1, wrapping 49330011000036100 Elastoplast (2227) size E (35 cm to 45 cm) straight bandage, 1 48614011000036107 Elastoplast (2227) size E (35 cm to 45 cm) straight bandage 38321000168107 Elastoplast (2227) 38321000168107 Elastoplast (2227) 51311011000036104 bandage tubular size E (35 cm to 45 cm) straight bandage, 1 50840011000036108 bandage tubular size E (35 cm to 45 cm) straight bandage 50697011000036107 bandage tubular +13551000036100 Quetiapine (Pfizer) 300 mg film-coated tablet, 60, blister pack 172848 8681000036104 Quetiapine (Pfizer) 300 mg film-coated tablet, 60 1281000036106 Quetiapine (Pfizer) 300 mg film-coated tablet 721000036100 Quetiapine (Pfizer) 721000036100 Quetiapine (Pfizer) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +25111000036104 Noxafil 40 mg/mL oral liquid suspension, 105 mL, bottle 115556 22091000036103 Noxafil 40 mg/mL oral liquid suspension, 105 mL 20351000036106 Noxafil 40 mg/mL oral liquid suspension 39709011000036103 Noxafil 39709011000036103 Noxafil 22101000036107 posaconazole 40 mg/mL oral liquid, 105 mL 20361000036109 posaconazole 40 mg/mL oral liquid 44898011000036105 posaconazole +20180011000036102 Clomipramine Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 50, blister pack 73875 13403011000036105 Clomipramine Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 50 6688011000036106 Clomipramine Hydrochloride (Terry White Chemists) 25 mg film-coated tablet 3744011000036109 Clomipramine Hydrochloride (Terry White Chemists) 3744011000036109 Clomipramine Hydrochloride (Terry White Chemists) 27730011000036109 clomipramine hydrochloride 25 mg tablet, 50 23065011000036101 clomipramine hydrochloride 25 mg tablet 21897011000036104 clomipramine +52786011000036107 Fluvax 2009 injection suspension, 1 x 0.5 mL syringe 91583 52596011000036109 Fluvax 2009 injection suspension, 1 x 0.5 mL syringe 52437011000036109 Fluvax 2009 injection suspension, 0.5 mL syringe 49931000168103 Fluvax 2009 49931000168103 Fluvax 2009 52901011000036106 influenza trivalent adult vaccine 2009 injection, 1 x 0.5 mL syringe 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +52786011000036107 Fluvax 2009 injection suspension, 1 x 0.5 mL syringe 117397 52596011000036109 Fluvax 2009 injection suspension, 1 x 0.5 mL syringe 52437011000036109 Fluvax 2009 injection suspension, 0.5 mL syringe 49931000168103 Fluvax 2009 49931000168103 Fluvax 2009 52901011000036106 influenza trivalent adult vaccine 2009 injection, 1 x 0.5 mL syringe 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +52786011000036107 Fluvax 2009 injection suspension, 1 x 0.5 mL syringe 145707 52596011000036109 Fluvax 2009 injection suspension, 1 x 0.5 mL syringe 52437011000036109 Fluvax 2009 injection suspension, 0.5 mL syringe 49931000168103 Fluvax 2009 49931000168103 Fluvax 2009 52901011000036106 influenza trivalent adult vaccine 2009 injection, 1 x 0.5 mL syringe 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +116191000036104 Kiovig 10% 1 g/10 mL injection solution, 10 mL vial 131953 114441000036108 Kiovig 10% 1 g/10 mL injection solution, 10 mL vial 112811000036100 Kiovig 10% 1 g/10 mL injection solution, 10 mL vial 17421000168108 Kiovig 10% 17421000168108 Kiovig 10% 114451000036106 normal immunoglobulin 1 g/10 mL injection, 10 mL vial 112821000036107 normal immunoglobulin 1 g/10 mL injection, vial 74965011000036103 normal immunoglobulin +929096011000036109 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 50, blister pack 166915 928457011000036105 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 50 927988011000036105 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929263011000036107 pioglitazone 30 mg tablet, 50 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +776291000168104 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 200 mL, bottle 231998 776281000168102 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 200 mL 776191000168107 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63602011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +833971000168103 Motilium 10 mg film-coated tablet, 100, blister pack 39510 833961000168109 Motilium 10 mg film-coated tablet, 100 5312011000036104 Motilium 10 mg film-coated tablet 4365011000036102 Motilium 4365011000036102 Motilium 833951000168107 domperidone 10 mg tablet, 100 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +50627011000036104 Risperidone (Generic Health) 3 mg film-coated tablet, 60, blister pack 139821 49653011000036103 Risperidone (Generic Health) 3 mg film-coated tablet, 60 48801011000036100 Risperidone (Generic Health) 3 mg film-coated tablet 48406011000036100 Risperidone (Generic Health) 48406011000036100 Risperidone (Generic Health) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +811091000168105 Prodeine uncoated tablet, 24, blister pack 200605 811081000168107 Prodeine uncoated tablet, 24 811031000168106 Prodeine uncoated tablet 811021000168108 Prodeine 811021000168108 Prodeine 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +920331000168100 Montelukast (APL) 4 mg chewable tablet, 14, blister pack 193238 920321000168103 Montelukast (APL) 4 mg chewable tablet, 14 920301000168107 Montelukast (APL) 4 mg chewable tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 920311000168105 montelukast 4 mg chewable tablet, 14 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +955131000168105 Extine 10 mg film-coated tablet, 30, bottle 120728 955021000168106 Extine 10 mg film-coated tablet, 30 955001000168102 Extine 10 mg film-coated tablet 4015011000036100 Extine 4015011000036100 Extine 955011000168104 paroxetine 10 mg tablet, 30 954991000168108 paroxetine 10 mg tablet 21618011000036109 paroxetine +19254011000036101 Tofranil 25 mg sugar coated tablet, 50, bottle 47706 12955011000036106 Tofranil 25 mg sugar coated tablet, 50 6245011000036109 Tofranil 25 mg sugar coated tablet 3278011000036109 Tofranil 3278011000036109 Tofranil 27467011000036109 imipramine hydrochloride 25 mg tablet, 50 22814011000036105 imipramine hydrochloride 25 mg tablet 21613011000036104 imipramine +935081000168106 Centevo 125/31.25/200 mg film-coated tablet, 50, bottle 238856 935071000168108 Centevo 125/31.25/200 mg film-coated tablet, 50 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935061000168102 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 50 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +61198011000036100 Naprogesic 275 mg film-coated tablet, 12, blister pack 75501 57134011000036102 Naprogesic 275 mg film-coated tablet, 12 54213011000036100 Naprogesic 275 mg film-coated tablet 53327011000036106 Naprogesic 53327011000036106 Naprogesic 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +61489011000036108 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 96, blister pack 91993 57414011000036106 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 96 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +922021000168102 Perindopril/Indapamide 4/1.25 (Pharmacy Clinice) uncoated tablet, 30, blister pack 127123 922011000168109 Perindopril/Indapamide 4/1.25 (Pharmacy Clinice) uncoated tablet, 30 922001000168106 Perindopril/Indapamide 4/1.25 (Pharmacy Clinice) uncoated tablet 921991000168109 Perindopril/Indapamide 4/1.25 (Pharmacy Clinice) 921991000168109 Perindopril/Indapamide 4/1.25 (Pharmacy Clinice) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +69243011000036109 Potassium Chloride 0.15% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 19465 67043011000036107 Potassium Chloride 0.15% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 65323011000036109 Potassium Chloride 0.15% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 38351000168104 Potassium Chloride 0.15% and Glucose 5% (Baxter) 38351000168104 Potassium Chloride 0.15% and Glucose 5% (Baxter) 71613011000036106 potassium chloride 1.5 g (potassium 20 mmol)/L + glucose 5% (50 g/L) injection, 1 L bag 70092011000036102 potassium chloride 1.5 g (potassium 20 mmol)/L + glucose 5% (50 g/L) injection, bag 69832011000036108 potassium chloride + glucose +33561011000036100 Oxaliplan 100 mg powder for injection, 1 vial 141080 33299011000036108 Oxaliplan 100 mg powder for injection, 1 vial 33061011000036102 Oxaliplan 100 mg powder for injection, 100 mg vial 32998011000036107 Oxaliplan 32998011000036107 Oxaliplan 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +18740011000036102 Synacthen Depot 1 mg/mL modified release injection, 1 mL ampoule 11060 11414011000036100 Synacthen Depot 1 mg/mL modified release injection, 1 mL ampoule 4862011000036108 Synacthen Depot 1 mg/mL modified release injection, ampoule 18501000168102 Synacthen Depot 18501000168102 Synacthen Depot 26640011000036100 tetracosactide (tetracosactrin) 1 mg/mL modified release injection, 1 mL ampoule 22046011000036106 tetracosactide (tetracosactrin) 1 mg/mL modified release injection, ampoule 21499011000036102 tetracosactide (tetracosactrin) +797801000168103 Paracetamol (AN) 1 g/100 mL injection solution, 12 x 100 mL vials 172315 797791000168104 Paracetamol (AN) 1 g/100 mL injection solution, 12 x 100 mL vials 797741000168107 Paracetamol (AN) 1 g/100 mL injection solution, 100 mL vial 797731000168103 Paracetamol (AN) 797731000168103 Paracetamol (AN) 47031011000036102 paracetamol 1 g/100 mL injection, 12 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +13231000036106 Lanzek 5 mg film-coated tablet, 28, blister pack 167680 8381000036107 Lanzek 5 mg film-coated tablet, 28 2331000036106 Lanzek 5 mg film-coated tablet 9311000168101 Lanzek 9311000168101 Lanzek 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1084791000168106 Nervoderm 5% dermal patch, 10, sachet 280081 1084781000168108 Nervoderm 5% dermal patch, 10 1084751000168101 Nervoderm 5% dermal patch 1084741000168103 Nervoderm 1084741000168103 Nervoderm 138971000036105 lidocaine (lignocaine) 5% patch, 10 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +79086011000036103 Zinvit film-coated tablet, 100, bottle 72413 78880011000036100 Zinvit film-coated tablet, 100 78683011000036101 Zinvit film-coated tablet 58671000168104 Zinvit 58671000168104 Zinvit 79246011000036104 zinc sulfate heptahydrate 220 mg + magnesium sulfate heptahydrate 50 mg + thiamine nitrate 5 mg + riboflavin 5 mg tablet, 100 79119011000036103 zinc sulfate heptahydrate 220 mg + magnesium sulfate heptahydrate 50 mg + thiamine nitrate 5 mg + riboflavin 5 mg tablet 79090011000036100 zinc sulfate heptahydrate + magnesium sulfate heptahydrate + thiamine + riboflavin +742061000168101 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 10, blister pack 232797 742051000168103 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 10 742031000168109 Amitriptyline (Alphapharm) 25 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +44236011000036106 Navoban 2 mg/2 mL injection solution, 2 mL ampoule 58550 41708011000036100 Navoban 2 mg/2 mL injection solution, 2 mL ampoule 40155011000036100 Navoban 2 mg/2 mL injection solution, 2 mL ampoule 3216011000036101 Navoban 3216011000036101 Navoban 46520011000036107 tropisetron 2 mg/2 mL injection, 2 mL ampoule 45197011000036105 tropisetron 2 mg/2 mL injection, ampoule 21700011000036104 tropisetron +933247071000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 56, blister pack 158413 933243891000036102 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 56 933241491000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet 933241021000036106 Prochlorperazine Maleate (PS) 933241021000036106 Prochlorperazine Maleate (PS) 924174011000036101 prochlorperazine maleate 5 mg tablet, 56 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +1059301000168106 Atomoxetine (Medis) 25 mg hard capsule, 28, blister pack 238330 1059291000168105 Atomoxetine (Medis) 25 mg hard capsule, 28 1059281000168107 Atomoxetine (Medis) 25 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +1024731000168102 Amclavox Duo 500/125 film-coated tablet, 10, blister pack 288118 1024671000168108 Amclavox Duo 500/125 film-coated tablet, 10 1024661000168102 Amclavox Duo 500/125 film-coated tablet 1024651000168104 Amclavox Duo 500/125 1024651000168104 Amclavox Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +819131000168106 Perindo Arg Combi 5/1.25 film-coated tablet, 30, bottle 194919 819121000168108 Perindo Arg Combi 5/1.25 film-coated tablet, 30 819111000168101 Perindo Arg Combi 5/1.25 film-coated tablet 819101000168104 Perindo Arg Combi 5/1.25 819101000168104 Perindo Arg Combi 5/1.25 26767011000036101 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 30 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +750971000168109 Nicotinell Step-2 14 mg/24 hours patch, 35, sachet 42625 750961000168103 Nicotinell Step-2 14 mg/24 hours patch, 35 925703011000036107 Nicotinell Step-2 14 mg/24 hours patch 46531000168100 Nicotinell Step-2 46531000168100 Nicotinell Step-2 750951000168100 nicotine 14 mg/24 hours patch, 35 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +797761000168106 Paracetamol (AN) 1 g/100 mL injection solution, 100 mL vial 172315 797751000168109 Paracetamol (AN) 1 g/100 mL injection solution, 100 mL vial 797741000168107 Paracetamol (AN) 1 g/100 mL injection solution, 100 mL vial 797731000168103 Paracetamol (AN) 797731000168103 Paracetamol (AN) 47030011000036109 paracetamol 1 g/100 mL injection, 100 mL vial 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +12731000036105 Olanzapine (Apo) 7.5 mg film-coated tablet, 28, bottle 158977 6961000036100 Olanzapine (Apo) 7.5 mg film-coated tablet, 28 2601000036108 Olanzapine (Apo) 7.5 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +20145011000036100 Daonil 5 mg uncoated tablet, 100, blister pack 73683 13369011000036101 Daonil 5 mg uncoated tablet, 100 6654011000036105 Daonil 5 mg uncoated tablet 4088011000036109 Daonil 4088011000036109 Daonil 27720011000036106 glibenclamide 5 mg tablet, 100 23055011000036107 glibenclamide 5 mg tablet 21911011000036104 glibenclamide +750651000168107 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 2 x 28, blister packs 133649 750641000168105 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 2 x 28 750591000168101 Yaz (inert substance) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750631000168101 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +750651000168107 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 2 x 28, blister packs 133649 750641000168105 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 2 x 28 750581000168104 Yaz (drospirenone 3 mg + ethinylestradiol 20 microgram) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750631000168101 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 2 x 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +1067891000168109 Ibuprofen plus Codeine (Trust) film-coated tablet, 30, blister pack 175264 1067881000168106 Ibuprofen plus Codeine (Trust) film-coated tablet, 30 1067741000168107 Ibuprofen plus Codeine (Trust) film-coated tablet 1067731000168103 Ibuprofen plus Codeine (Trust) 1067731000168103 Ibuprofen plus Codeine (Trust) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +695241000168101 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles 48506 695231000168105 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles 695211000168100 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 75 mL bottle 5191000168106 Ultravist-300 5191000168106 Ultravist-300 695221000168107 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 75 mL bottles 695201000168103 iopromide 623 mg (iodine 300 mg)/mL injection, 75 mL bottle 77425011000036101 iopromide +986231000168103 Canesten HC cream, 30 g, tube 251752 986221000168101 Canesten HC cream, 30 g 986111000168103 Canesten HC cream 981841000168102 Canesten HC 981841000168102 Canesten HC 38541011000036108 hydrocortisone 1% + clotrimazole 1% cream, 30 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +902691000168102 Brillior 50 mg hard capsule, 14, blister pack 224339 902681000168100 Brillior 50 mg hard capsule, 14 902671000168103 Brillior 50 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1063641000168108 Strong Pain Xtra (Pharmacist Formula) uncoated tablet, 20, blister pack 188380 1063631000168104 Strong Pain Xtra (Pharmacist Formula) uncoated tablet, 20 1063541000168107 Strong Pain Xtra (Pharmacist Formula) uncoated tablet 1063441000168106 Strong Pain Xtra (Pharmacist Formula) 1063441000168106 Strong Pain Xtra (Pharmacist Formula) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +931613011000036104 Pravista 20 mg film-coated tablet, 30, bottle 163561 930774011000036109 Pravista 20 mg film-coated tablet, 30 930041011000036108 Pravista 20 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +876991000168108 Aldara 5% cream, 30 x 250 mg sachets 64798 876981000168105 Aldara 5% cream, 30 x 250 mg sachets 6389011000036109 Aldara 5% cream, 250 mg sachet 3048011000036100 Aldara 3048011000036100 Aldara 876971000168107 imiquimod 5% cream, 30 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +50250011000036104 Comfeel Plus Pressure Relieving (3350) 7cm (butterfly shape) dressing, 1, carton 49337011000036104 Comfeel Plus Pressure Relieving (3350) 7cm (butterfly shape) dressing, 1 48589011000036101 Comfeel Plus Pressure Relieving (3350) 7cm (butterfly shape) dressing 42581000168100 Comfeel Plus Pressure Relieving (3350) 42581000168100 Comfeel Plus Pressure Relieving (3350) 51318011000036108 dressing hydrocolloid superficial wound moderate exudate 7cm (butterfly shape) dressing, 1 50847011000036109 dressing hydrocolloid superficial wound moderate exudate 7cm (butterfly shape) dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +1110451000168106 Nicotinell Ice Mint 4 mg chewing gum, 180, blister pack 279616 1110441000168109 Nicotinell Ice Mint 4 mg chewing gum, 180 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71517011000036106 nicotine 4 mg gum, 180 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +810861000168100 Ibuprofen (Blooms The Chemist) 200 mg film-coated tablet, 24, blister pack 253052 810851000168102 Ibuprofen (Blooms The Chemist) 200 mg film-coated tablet, 24 810841000168104 Ibuprofen (Blooms The Chemist) 200 mg film-coated tablet 810831000168108 Ibuprofen (Blooms The Chemist) 810831000168108 Ibuprofen (Blooms The Chemist) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60521011000036101 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet, 24, blister pack 151926 56479011000036104 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet, 24 53936011000036104 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet 5051000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) 5051000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +943301000168101 Medformin 250 mg film-coated tablet, 100, blister pack 100286 943271000168103 Medformin 250 mg film-coated tablet, 100 943221000168104 Medformin 250 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943261000168109 metformin hydrochloride 250 mg tablet, 100 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +834211000168102 Bacthecal 50 microgram/mL intrathecal injection, 1 mL ampoule 227896 834201000168100 Bacthecal 50 microgram/mL intrathecal injection, 1 mL ampoule 834191000168103 Bacthecal 50 microgram/mL intrathecal injection, ampoule 767341000168109 Bacthecal 767341000168109 Bacthecal 46450011000036103 baclofen 50 microgram/mL intrathecal injection, 1 mL ampoule 45161011000036104 baclofen 50 microgram/mL intrathecal injection, ampoule 21227011000036102 baclofen +1110371000168109 Nicotinell Ice Mint 4 mg chewing gum, 144, blister pack 279616 1110361000168103 Nicotinell Ice Mint 4 mg chewing gum, 144 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71515011000036101 nicotine 4 mg gum, 144 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +933214731000036100 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 500, bottle 163528 933204331000036104 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 500 933195481000036105 Pravastatin Sodium (DRLA) 40 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932419011000036104 pravastatin sodium 40 mg tablet, 500 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +18029011000036108 Ritalin 10 mg uncoated tablet, 100, blister pack 11052 11412011000036109 Ritalin 10 mg uncoated tablet, 100 5898011000036104 Ritalin 10 mg uncoated tablet 17251000168101 Ritalin 17251000168101 Ritalin 27703011000036105 methylphenidate hydrochloride 10 mg tablet, 100 23038011000036102 methylphenidate hydrochloride 10 mg tablet 21277011000036101 methylphenidate +37511011000036109 Retin-A 0.05% cream, 20 g, tube 13323 36779011000036104 Retin-A 0.05% cream, 20 g 36161011000036103 Retin-A 0.05% cream 35932011000036100 Retin-A 35932011000036100 Retin-A 38676011000036109 tretinoin 0.05% cream, 20 g 37948011000036102 tretinoin 0.05% cream 37794011000036109 tretinoin +690901000168103 Pentasa 4 g modified release granules, 30 sachets 216259 690891000168102 Pentasa 4 g modified release granules, 30 sachets 690871000168103 Pentasa 4 g modified release granules, 4 g sachet 3593011000036100 Pentasa 3593011000036100 Pentasa 690881000168100 mesalazine 4 g modified release granules, 30 sachets 690861000168109 mesalazine 4 g modified release granules, sachet 21351011000036101 mesalazine +12751000036102 Olanzapine (Apo) 2.5 mg film-coated tablet, 28, blister pack 158979 6931000036106 Olanzapine (Apo) 2.5 mg film-coated tablet, 28 2531000036102 Olanzapine (Apo) 2.5 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +677921000168101 Osteo Paracetamol (Apo) 665 mg modified release tablet, 96, blister pack 227113 677911000168108 Osteo Paracetamol (Apo) 665 mg modified release tablet, 96 677901000168105 Osteo Paracetamol (Apo) 665 mg modified release tablet 677891000168106 Osteo Paracetamol (Apo) 677891000168106 Osteo Paracetamol (Apo) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +986161000168100 Advil Double Strength Caplets 400 mg film-coated tablet, 48, blister pack 207376 986151000168102 Advil Double Strength Caplets 400 mg film-coated tablet, 48 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 986141000168104 ibuprofen 400 mg tablet, 48 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +933229741000036100 Pepti-Junior Gold (Karicare) powder for oral liquid, 450 g, can 933223301000036100 Pepti-Junior Gold (Karicare) powder for oral liquid, 450 g 933219371000036100 Pepti-Junior Gold (Karicare) powder for oral liquid 933219121000036102 Pepti-Junior Gold (Karicare) 933219121000036102 Pepti-Junior Gold (Karicare) 51429011000036100 protein hydrolysate formula with medium chain triglycerides powder for oral liquid, 450 g 50945011000036106 protein hydrolysate formula with medium chain triglycerides powder for oral liquid 50746011000036108 protein hydrolysate formula with medium chain triglycerides +885691000168100 Warfarin (Blooms The Chemist) 2 mg tablet, 50, bottle 225719 885681000168103 Warfarin (Blooms The Chemist) 2 mg tablet, 50 885671000168101 Warfarin (Blooms The Chemist) 2 mg tablet 885631000168104 Warfarin (Blooms The Chemist) 885631000168104 Warfarin (Blooms The Chemist) 26890011000036102 warfarin sodium 2 mg tablet, 50 22268011000036109 warfarin sodium 2 mg tablet 21248011000036104 warfarin +808671000168108 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet, 30, blister pack 184807 808661000168102 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet, 30 808631000168105 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +17841011000036100 Naprosyn SR 750 mg modified release tablet, 28, blister pack 10174 11238011000036104 Naprosyn SR 750 mg modified release tablet, 28 5634011000036108 Naprosyn SR 750 mg modified release tablet 39591000168109 Naprosyn SR 39591000168109 Naprosyn SR 27172011000036104 naproxen 750 mg modified release tablet, 28 22534011000036101 naproxen 750 mg modified release tablet 21304011000036105 naproxen +43824011000036109 Somidem 10 mg film-coated tablet, 7, bottle 119197 41217011000036109 Somidem 10 mg film-coated tablet, 7 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +43842011000036103 Mirtazapine (Chemmart) 15 mg film-coated tablet, 30, blister pack 127670 41339011000036104 Mirtazapine (Chemmart) 15 mg film-coated tablet, 30 39840011000036100 Mirtazapine (Chemmart) 15 mg film-coated tablet 32201011000036100 Mirtazapine (Chemmart) 32201011000036100 Mirtazapine (Chemmart) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +12591000036104 Olanzapine ODT (Chemmart) 20 mg orally disintegrating tablet, 28, blister pack 158962 6831000036101 Olanzapine ODT (Chemmart) 20 mg orally disintegrating tablet, 28 1971000036104 Olanzapine ODT (Chemmart) 20 mg orally disintegrating tablet 15331000168107 Olanzapine ODT (Chemmart) 15331000168107 Olanzapine ODT (Chemmart) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +59785011000036106 Paralgin 500 mg uncoated tablet, 500, bottle 113998 55747011000036103 Paralgin 500 mg uncoated tablet, 500 5172011000036102 Paralgin 500 mg uncoated tablet 4130011000036109 Paralgin 4130011000036109 Paralgin 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1110771000168108 Midazolam (WP) 50 mg/10 mL injection solution, 10 mL ampoule 207230 1110761000168102 Midazolam (WP) 50 mg/10 mL injection solution, 10 mL ampoule 1110751000168104 Midazolam (WP) 50 mg/10 mL injection solution, 10 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 664091000168103 midazolam 50 mg/10 mL injection, 10 mL ampoule 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +73269011000036103 Celsentri 300 mg film-coated tablet, 180, bottle 137332 49633011000036102 Celsentri 300 mg film-coated tablet, 180 48793011000036104 Celsentri 300 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51525011000036105 maraviroc 300 mg tablet, 180 50991011000036103 maraviroc 300 mg tablet 50741011000036103 maraviroc +50438011000036102 Cutifilm Plus (76308) 8 cm x 10 cm dressing, 5, carton 49410011000036103 Cutifilm Plus (76308) 8 cm x 10 cm dressing, 5 48474011000036103 Cutifilm Plus (76308) 8 cm x 10 cm dressing 47751000168101 Cutifilm Plus (76308) 47751000168101 Cutifilm Plus (76308) 51378011000036101 dressing film island 8 cm x 10 cm dressing, 5 50899011000036106 dressing film island 8 cm x 10 cm dressing 50727011000036109 dressing film island +782731000168101 Palexia IR 50 mg film-coated tablet, 10, blister pack 165310 782721000168104 Palexia IR 50 mg film-coated tablet, 10 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782711000168106 tapentadol 50 mg tablet, 10 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +81711000036108 Epirubicin Hydrochloride (Kabi) 50 mg/25 mL injection solution, 25 mL vial 175839 80131000036107 Epirubicin Hydrochloride (Kabi) 50 mg/25 mL injection solution, 25 mL vial 78941000036107 Epirubicin Hydrochloride (Kabi) 50 mg/25 mL injection solution, 25 mL vial 78081000036104 Epirubicin Hydrochloride (Kabi) 78081000036104 Epirubicin Hydrochloride (Kabi) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +145991000036104 IBS Support (Ethical Nutrients) 20 billion organisms hard capsule, 30, bottle 133842 144721000036101 IBS Support (Ethical Nutrients) 20 billion organisms hard capsule, 30 143451000036103 IBS Support (Ethical Nutrients) 20 billion organisms hard capsule 143401000036104 IBS Support (Ethical Nutrients) 143401000036104 IBS Support (Ethical Nutrients) 144731000036104 lactobacillus plantarum 20 billion organisms capsule, 30 143461000036100 lactobacillus plantarum 20 billion organisms capsule 146541000036105 lactobacillus plantarum +933212581000036101 After Work (Hamilton) cream, 500 mL, pump pack 14859 933202261000036106 After Work (Hamilton) cream, 500 mL 933195321000036100 After Work (Hamilton) cream 933193751000036109 After Work (Hamilton) 933193751000036109 After Work (Hamilton) 71552011000036100 dimeticone-350 10% + cetrimide 0.5% cream, 500 mL 70059011000036100 dimeticone-350 10% + cetrimide 0.5% cream 69804011000036107 dimeticone-350 + cetrimide +925282011000036107 Votrient 400 mg film-coated tablet, 60, bottle 161281 924819011000036101 Votrient 400 mg film-coated tablet, 60 924512011000036105 Votrient 400 mg film-coated tablet 924364011000036100 Votrient 924364011000036100 Votrient 925424011000036107 pazopanib 400 mg tablet, 60 925381011000036106 pazopanib 400 mg tablet 925371011000036103 pazopanib +716491000168109 Omepro 20 mg enteric capsule, 15, bottle 167314 716461000168102 Omepro 20 mg enteric capsule, 15 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716341000168108 omeprazole 20 mg enteric capsule, 15 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +750811000168107 Doxylin 100 mg film-coated tablet, 21, blister pack 63509 750801000168109 Doxylin 100 mg film-coated tablet, 21 6353011000036104 Doxylin 100 mg film-coated tablet 3714011000036103 Doxylin 3714011000036103 Doxylin 33813011000036104 doxycycline 100 mg tablet, 21 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +43996011000036102 Lariam 250 mg uncoated tablet, 8, blister pack 43321 41487011000036106 Lariam 250 mg uncoated tablet, 8 40010011000036108 Lariam 250 mg uncoated tablet 39563011000036101 Lariam 39563011000036101 Lariam 46333011000036104 mefloquine 250 mg tablet, 8 45086011000036104 mefloquine 250 mg tablet 44968011000036104 mefloquine +61147011000036106 Diarrhoea Relief (Pharmacist Formula) 2.15 mg uncoated tablet, 8, blister pack 73574 57090011000036106 Diarrhoea Relief (Pharmacist Formula) 2.15 mg uncoated tablet, 8 54193011000036102 Diarrhoea Relief (Pharmacist Formula) 2.15 mg uncoated tablet 53180011000036107 Diarrhoea Relief (Pharmacist Formula) 53180011000036107 Diarrhoea Relief (Pharmacist Formula) 63807011000036103 loperamide hydrochloride 2.15 mg tablet, 8 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +883591000168103 Betahistine (AS) 8 mg tablet, 100, blister pack 231714 883581000168101 Betahistine (AS) 8 mg tablet, 100 883531000168102 Betahistine (AS) 8 mg tablet 883521000168100 Betahistine (AS) 883521000168100 Betahistine (AS) 883151000168104 betahistine dihydrochloride 8 mg tablet, 100 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +61087011000036105 Cyklokapron 500 mg film-coated tablet, 96, blister pack 70405 57030011000036102 Cyklokapron 500 mg film-coated tablet, 96 4970011000036109 Cyklokapron 500 mg film-coated tablet 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 63704011000036106 tranexamic acid 500 mg tablet, 96 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +700029991000036100 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13006011000036105 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6292011000036107 Norimin-1 28 Day (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 700023341000036107 Norimin-1 28 Day 700023341000036107 Norimin-1 28 Day 28354011000036108 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +700029991000036100 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13006011000036105 Norimin-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6293011000036100 Norimin-1 28 Day (inert substance) uncoated tablet 700023341000036107 Norimin-1 28 Day 700023341000036107 Norimin-1 28 Day 28354011000036108 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +922027011000036108 Zofran 4 mg/2 mL injection solution, 10 x 2 mL ampoules 9978 921585011000036107 Zofran 4 mg/2 mL injection solution, 10 x 2 mL ampoules 7623011000036108 Zofran 4 mg/2 mL injection solution, 2 mL ampoule 2471000168108 Zofran 2471000168108 Zofran 922698011000036105 ondansetron 4 mg/2 mL injection, 10 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +827861000168105 Perindopril (AN) 8 mg uncoated tablet, 30, blister pack 212717 827851000168108 Perindopril (AN) 8 mg uncoated tablet, 30 827841000168106 Perindopril (AN) 8 mg uncoated tablet 827771000168107 Perindopril (AN) 827771000168107 Perindopril (AN) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +926734011000036104 Lisinopril (GA) 2.5 mg uncoated tablet, 56, blister pack 106498 926088011000036101 Lisinopril (GA) 2.5 mg uncoated tablet, 56 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927303011000036107 lisinopril 2.5 mg tablet, 56 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +18629011000036101 Nupentin 300 mg hard capsule, 100, bottle 101697 11228011000036102 Nupentin 300 mg hard capsule, 100 4944011000036100 Nupentin 300 mg hard capsule 1181000168106 Nupentin 1181000168106 Nupentin 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +772221000168102 Tranexamic Acid (Hospira) 1 g/10 mL injection solution, 10 x 10 mL ampoules 222160 772211000168109 Tranexamic Acid (Hospira) 1 g/10 mL injection solution, 10 x 10 mL ampoules 772181000168105 Tranexamic Acid (Hospira) 1 g/10 mL injection solution, 10 mL ampoule 772171000168107 Tranexamic Acid (Hospira) 772171000168107 Tranexamic Acid (Hospira) 932446011000036103 tranexamic acid 1 g/10 mL injection, 10 x 10 mL ampoules 931860011000036103 tranexamic acid 1 g/10 mL injection, ampoule 21746011000036108 tranexamic acid +73346011000036107 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution, 50 mL, bottle 27273 73140011000036102 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution, 50 mL 72943011000036104 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution 72913011000036106 Eucalyptus Oil (Gold Cross) 72913011000036106 Eucalyptus Oil (Gold Cross) 73520011000036105 eucalyptus oil 1 mL/mL inhalation solution, 50 mL 73382011000036103 eucalyptus oil 1 mL/mL inhalation solution 73351011000036104 eucalyptus oil +13371000036102 Anastrozole (DRLA) 1 mg film-coated tablet, 30, blister pack 168939 8461000036106 Anastrozole (DRLA) 1 mg film-coated tablet, 30 2571000036100 Anastrozole (DRLA) 1 mg film-coated tablet 661000036103 Anastrozole (DRLA) 661000036103 Anastrozole (DRLA) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +986391000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule, 24, blister pack 207293 986381000168106 Advil Double Strength Liquid Capsules 400 mg soft capsule, 24 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986371000168108 ibuprofen 400 mg capsule, 24 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +900681000168101 Capeccord 500 mg film-coated tablet, 60, blister pack 213036 900671000168104 Capeccord 500 mg film-coated tablet, 60 900641000168106 Capeccord 500 mg film-coated tablet 881761000168102 Capeccord 881761000168102 Capeccord 667821000168102 capecitabine 500 mg tablet, 60 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +742221000168103 Amitriptyline (Alphapharm) 50 mg film-coated tablet, 10, blister pack 232798 742211000168105 Amitriptyline (Alphapharm) 50 mg film-coated tablet, 10 742191000168109 Amitriptyline (Alphapharm) 50 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +928551000168102 Cavstat 5 mg film-coated tablet, 90, bottle 235277 928541000168104 Cavstat 5 mg film-coated tablet, 90 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 928531000168108 rosuvastatin 5 mg tablet, 90 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +33535011000036105 Dolapril 1 mg hard capsule, 28, blister pack 125433 33275011000036100 Dolapril 1 mg hard capsule, 28 33040011000036104 Dolapril 1 mg hard capsule 32987011000036105 Dolapril 32987011000036105 Dolapril 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +700029971000036104 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13008011000036109 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6294011000036103 Synphasic (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 4354011000036109 Synphasic 4354011000036109 Synphasic 28355011000036107 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +700029971000036104 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13008011000036109 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6296011000036106 Synphasic (inert substance) uncoated tablet 4354011000036109 Synphasic 4354011000036109 Synphasic 28355011000036107 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029971000036104 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13008011000036109 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6295011000036104 Synphasic (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 4354011000036109 Synphasic 4354011000036109 Synphasic 28355011000036107 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +969241000168100 Aripiprazole (AN) 15 mg uncoated tablet, 30, blister pack 198206 969231000168109 Aripiprazole (AN) 15 mg uncoated tablet, 30 969201000168102 Aripiprazole (AN) 15 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1020641000168108 Asacol 400 mg enteric tablet, 60, blister pack 261419 1020631000168104 Asacol 400 mg enteric tablet, 60 1020581000168102 Asacol 400 mg enteric tablet 844981000168102 Asacol 844981000168102 Asacol 1020621000168102 mesalazine 400 mg enteric tablet, 60 1020571000168100 mesalazine 400 mg enteric tablet 21351011000036101 mesalazine +902851000168108 Candesartan (Actavis) 8 mg uncoated tablet, 30, blister pack 195487 902841000168106 Candesartan (Actavis) 8 mg uncoated tablet, 30 902831000168102 Candesartan (Actavis) 8 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +44630011000036106 Levitra 5 mg film-coated tablet, 8, blister pack 90498 42083011000036107 Levitra 5 mg film-coated tablet, 8 40348011000036103 Levitra 5 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46850011000036105 vardenafil 5 mg tablet, 8 45332011000036108 vardenafil 5 mg tablet 44856011000036100 vardenafil +59947011000036100 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet, 48, blister pack 119999 55909011000036107 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet, 48 53695011000036103 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet 53192011000036107 Sudafed PE Sinus plus Allergy and Pain Relief 53192011000036107 Sudafed PE Sinus plus Allergy and Pain Relief 63383011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +69320011000036109 L-Arginine Hydrochloride (Phebra) 60% (15 g/25 mL) concentrated injection, 10 x 25 mL vials 22934 67120011000036105 L-Arginine Hydrochloride (Phebra) 60% (15 g/25 mL) concentrated injection, 10 x 25 mL vials 65488011000036101 L-Arginine Hydrochloride (Phebra) 60% (15 g/25 mL) concentrated injection, 25 mL vial 65059011000036107 L-Arginine Hydrochloride (Phebra) 65059011000036107 L-Arginine Hydrochloride (Phebra) 71685011000036109 arginine hydrochloride 60% (15 g/25 mL) injection, 10 x 25 mL vials 70124011000036108 arginine hydrochloride 60% (15 g/25 mL) injection, vial 69866011000036100 arginine hydrochloride +19177011000036106 Monopril 20 mg uncoated tablet, 30, blister pack 46473 12484011000036104 Monopril 20 mg uncoated tablet, 30 4846011000036101 Monopril 20 mg uncoated tablet 3248011000036105 Monopril 3248011000036105 Monopril 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +86171011000036102 Iodine 0.5% in Alcohol 70% (Orion) application, 100 mL, bottle 21255 85779011000036109 Iodine 0.5% in Alcohol 70% (Orion) application, 100 mL 85393011000036101 Iodine 0.5% in Alcohol 70% (Orion) application 33751000168105 Iodine 0.5% in Alcohol 70% (Orion) 33751000168105 Iodine 0.5% in Alcohol 70% (Orion) 86463011000036107 potassium iodide 0.5% + iodine 0.5% + ethanol 70% application, 100 mL 86236011000036107 potassium iodide 0.5% + iodine 0.5% + ethanol 70% application 86197011000036101 iodine + ethanol +68831011000036100 Diaformin XR 500 mg modified release tablet, 30, blister pack 120868 66656011000036109 Diaformin XR 500 mg modified release tablet, 30 65316011000036106 Diaformin XR 500 mg modified release tablet 35531000168107 Diaformin XR 35531000168107 Diaformin XR 71366011000036107 metformin hydrochloride 500 mg modified release tablet, 30 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +18441011000036100 Mylanta P Antacid chewable tablet, 100, blister pack 118509 11575011000036100 Mylanta P Antacid chewable tablet, 100 4642011000036108 Mylanta P Antacid chewable tablet 6421000168108 Mylanta P Antacid 6421000168108 Mylanta P Antacid 26696011000036106 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet, 100 22091011000036107 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +810771000168103 Quetiapine XR (Apo) 50 mg modified release tablet, 30, blister pack 241755 810761000168109 Quetiapine XR (Apo) 50 mg modified release tablet, 30 810731000168101 Quetiapine XR (Apo) 50 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 809171000168107 quetiapine 50 mg modified release tablet, 30 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +933215451000036100 Olanzapine IM (Lilly) 10 mg powder for injection, 1 vial 167676 933204901000036107 Olanzapine IM (Lilly) 10 mg powder for injection, 1 vial 933196101000036103 Olanzapine IM (Lilly) 10 mg powder for injection, 10 mg vial 11161000168100 Olanzapine IM (Lilly) 11161000168100 Olanzapine IM (Lilly) 46745011000036101 olanzapine 10 mg injection, 1 vial 45297011000036107 olanzapine 10 mg injection, vial 21485011000036103 olanzapine +52186011000036103 Spirit APF (extemporaneous) 0.5 mL/mL ear drops, 15 mL, dropper container 52063011000036102 Spirit APF (extemporaneous) 0.5 mL/mL ear drops, 15 mL 51964011000036106 Spirit APF (extemporaneous) 0.5 mL/mL ear drops 51956011000036106 Spirit APF (extemporaneous) 51956011000036106 Spirit APF (extemporaneous) 52311011000036103 ethanol 90% 0.5 mL/mL ear drops, 15 mL 52243011000036103 ethanol 90% 0.5 mL/mL ear drops 52228011000036106 ethanol 90% +81851000036103 Famciclovir (GA) 250 mg film-coated tablet, 56, blister pack 177018 80211000036107 Famciclovir (GA) 250 mg film-coated tablet, 56 78291000036109 Famciclovir (GA) 250 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1106341000168102 Temtabs 10 mg uncoated tablet, 5, blister pack 91058 1106331000168106 Temtabs 10 mg uncoated tablet, 5 7241011000036108 Temtabs 10 mg uncoated tablet 3039011000036107 Temtabs 3039011000036107 Temtabs 1104481000168108 temazepam 10 mg tablet, 5 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +759381000168101 Xenical 120 mg hard capsule, 42, blister pack 61598 759371000168104 Xenical 120 mg hard capsule, 42 6274011000036106 Xenical 120 mg hard capsule 4256011000036106 Xenical 4256011000036106 Xenical 759361000168105 orlistat 120 mg capsule, 42 22831011000036103 orlistat 120 mg capsule 21581011000036109 orlistat +909181000168104 Cisatracurium (Juno) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 226855 909171000168102 Cisatracurium (Juno) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 909151000168106 Cisatracurium (Juno) 20 mg/10 mL injection solution, 10 mL ampoule 909131000168100 Cisatracurium (Juno) 909131000168100 Cisatracurium (Juno) 909161000168108 cisatracurium 20 mg/10 mL injection, 5 x 10 mL ampoules 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +969151000168105 Pregabalin (DRLA) 150 mg hard capsule, 56, blister pack 263055 969141000168108 Pregabalin (DRLA) 150 mg hard capsule, 56 969091000168101 Pregabalin (DRLA) 150 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +86094011000036100 Clovix 75 mg film-coated tablet, 28, bottle 155965 85692011000036102 Clovix 75 mg film-coated tablet, 28 85337011000036104 Clovix 75 mg film-coated tablet 85248011000036108 Clovix 85248011000036108 Clovix 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +19931011000036102 Stelazine 5 mg film-coated tablet, 100, blister pack 66875 13175011000036104 Stelazine 5 mg film-coated tablet, 100 6458011000036100 Stelazine 5 mg film-coated tablet 7991000168102 Stelazine 7991000168102 Stelazine 27593011000036107 trifluoperazine 5 mg tablet, 100 22932011000036103 trifluoperazine 5 mg tablet 21507011000036102 trifluoperazine +929032011000036103 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 16, blister pack 160643 928393011000036101 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 16 927965011000036102 Risedronate Sodium (Chemmart) 35 mg film-coated tablet 927777011000036109 Risedronate Sodium (Chemmart) 927777011000036109 Risedronate Sodium (Chemmart) 929234011000036100 risedronate sodium 35 mg tablet, 16 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +933212661000036105 Ciprofloxacin (GN) 500 mg film-coated tablet, 14, blister pack 148852 933202401000036106 Ciprofloxacin (GN) 500 mg film-coated tablet, 14 933195371000036101 Ciprofloxacin (GN) 500 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +937091000168100 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 6, blister pack 191154 937081000168103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 6 119521000036103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule 119241000036108 Diarrhoea Relief (Pharmacy Action) 119241000036108 Diarrhoea Relief (Pharmacy Action) 823651000168102 loperamide hydrochloride 2 mg capsule, 6 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +710071000168102 PKU Air 15 White (Caribbean Crush) oral liquid solution, 30 x 130 mL pouches 710061000168108 PKU Air 15 White (Caribbean Crush) oral liquid solution, 30 x 130 mL pouches 710041000168109 PKU Air 15 White (Caribbean Crush) oral liquid solution, 130 mL pouch 709991000168108 PKU Air 15 709991000168108 PKU Air 15 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +933214811000036103 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 500, bottle 163564 933204411000036103 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 500 933195521000036105 Pravastatin Sodium (RZ) 10 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932415011000036101 pravastatin sodium 10 mg tablet, 500 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +800091000168102 Abyraz 30 mg uncoated tablet, 7, blister pack 159504 800081000168100 Abyraz 30 mg uncoated tablet, 7 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800071000168103 aripiprazole 30 mg tablet, 7 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +834291000168106 Aspalgin dispersible tablet, 50, blister pack 13431 834281000168108 Aspalgin dispersible tablet, 50 834231000168107 Aspalgin dispersible tablet 4318011000036107 Aspalgin 4318011000036107 Aspalgin 834271000168105 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 50 834221000168109 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet 21831011000036102 aspirin + codeine +784971000168105 Ondansetron (GH) 8 mg film-coated tablet, 4, blister pack 231646 784961000168104 Ondansetron (GH) 8 mg film-coated tablet, 4 784951000168101 Ondansetron (GH) 8 mg film-coated tablet 784771000168108 Ondansetron (GH) 784771000168108 Ondansetron (GH) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +33527011000036103 Fosinopril Sodium (Winthrop) 20 mg uncoated tablet, 30, bottle 124847 33268011000036103 Fosinopril Sodium (Winthrop) 20 mg uncoated tablet, 30 33033011000036106 Fosinopril Sodium (Winthrop) 20 mg uncoated tablet 32993011000036102 Fosinopril Sodium (Winthrop) 32993011000036102 Fosinopril Sodium (Winthrop) 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +677841000168103 Osteo Relief Paracetamol (Chemmart) 665 mg modified release tablet, 96, blister pack 277106 677831000168107 Osteo Relief Paracetamol (Chemmart) 665 mg modified release tablet, 96 677821000168109 Osteo Relief Paracetamol (Chemmart) 665 mg modified release tablet 677811000168102 Osteo Relief Paracetamol (Chemmart) 677811000168102 Osteo Relief Paracetamol (Chemmart) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +763721000168107 Fenofibrate (RBX) 145 mg film-coated tablet, 30, blister pack 233492 763711000168100 Fenofibrate (RBX) 145 mg film-coated tablet, 30 763701000168103 Fenofibrate (RBX) 145 mg film-coated tablet 763691000168103 Fenofibrate (RBX) 763691000168103 Fenofibrate (RBX) 26700011000036101 fenofibrate 145 mg tablet, 30 22095011000036109 fenofibrate 145 mg tablet 21417011000036105 fenofibrate +50327011000036105 Coban (1584) 10 cm x 2 m bandage, 1, carton 49295011000036107 Coban (1584) 10 cm x 2 m bandage, 1 48696011000036100 Coban (1584) 10 cm x 2 m bandage 49671000168106 Coban (1584) 49671000168106 Coban (1584) 51282011000036101 bandage retention cohesive heavy 10 cm x 2 m bandage, 1 50811011000036106 bandage retention cohesive heavy 10 cm x 2 m bandage 50704011000036109 bandage retention cohesive heavy +18518011000036109 Methotrexate (DBL) 1 g/10 mL injection solution, 10 mL vial 16312 12102011000036106 Methotrexate (DBL) 1 g/10 mL injection solution, 10 mL vial 4918011000036104 Methotrexate (DBL) 1 g/10 mL injection solution, 10 mL vial 3375011000036108 Methotrexate (DBL) 3375011000036108 Methotrexate (DBL) 28266011000036102 methotrexate 1 g/10 mL injection, 10 mL vial 23580011000036105 methotrexate 1 g/10 mL injection, vial 21342011000036105 methotrexate +943581000168102 Meloxicam (Spirit) 7.5 mg uncoated tablet, 30, blister pack 149085 943571000168100 Meloxicam (Spirit) 7.5 mg uncoated tablet, 30 943561000168106 Meloxicam (Spirit) 7.5 mg uncoated tablet 943551000168109 Meloxicam (Spirit) 943551000168109 Meloxicam (Spirit) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +18835011000036107 Staphylex 500 mg hard capsule, 24, blister pack 17684 13101011000036105 Staphylex 500 mg hard capsule, 24 6385011000036107 Staphylex 500 mg hard capsule 4347011000036100 Staphylex 4347011000036100 Staphylex 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +931729011000036102 Chlorofluor with Fluoride mouthwash, 250 mL, bottle 21513 930889011000036101 Chlorofluor with Fluoride mouthwash, 250 mL 930093011000036101 Chlorofluor with Fluoride mouthwash 929813011000036103 Chlorofluor with Fluoride 929813011000036103 Chlorofluor with Fluoride 932470011000036102 chlorhexidine gluconate 0.2% + sodium fluoride 0.003% mouthwash, 250 mL 931869011000036109 chlorhexidine gluconate 0.2% + sodium fluoride 0.003% mouthwash 931801011000036109 chlorhexidine + fluoride +13391000036103 Letrozole (DRLA) 2.5 mg tablet, 30, blister pack 171780 8611000036107 Letrozole (DRLA) 2.5 mg tablet, 30 3351000036109 Letrozole (DRLA) 2.5 mg tablet 751000036106 Letrozole (DRLA) 751000036106 Letrozole (DRLA) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +60753011000036100 Daktarin 2% pressurised spray, 100 g, aerosol can 51659 56711011000036103 Daktarin 2% pressurised spray, 100 g 54044011000036100 Daktarin 2% pressurised spray 431000168100 Daktarin 431000168100 Daktarin 63521011000036102 miconazole nitrate 2% spray, 100 g 62001011000036100 miconazole nitrate 2% spray 21454011000036108 miconazole +931487011000036108 Topira-Lax 200 mg film-coated tablet, 60, blister pack 155186 928304011000036102 Topira-Lax 200 mg film-coated tablet, 60 927933011000036108 Topira-Lax 200 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +929009011000036103 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 8, blister pack 158915 928370011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 8 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 927317011000036100 valaciclovir 500 mg tablet, 8 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +845091000168104 Asacol 800 mg enteric tablet, 180, blister pack 261420 845081000168102 Asacol 800 mg enteric tablet, 180 845001000168105 Asacol 800 mg enteric tablet 844981000168102 Asacol 844981000168102 Asacol 845071000168100 mesalazine 800 mg enteric tablet, 180 844991000168104 mesalazine 800 mg enteric tablet 21351011000036101 mesalazine +789261000168108 Abisart 150 mg film-coated tablet, 7, bottle 214580 789251000168106 Abisart 150 mg film-coated tablet, 7 98721000036106 Abisart 150 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 738151000168103 irbesartan 150 mg tablet, 7 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +819371000168106 Spren 100 mg uncoated tablet, 84, blister pack 62261 819361000168100 Spren 100 mg uncoated tablet, 84 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 819351000168102 aspirin 100 mg tablet, 84 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +1050551000168108 Bupannus 20 microgram/hour patch, 4, sachet 234725 1050541000168106 Bupannus 20 microgram/hour patch, 4 1050491000168102 Bupannus 20 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1046591000168104 buprenorphine 20 microgram/hour patch, 4 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +1076291000168101 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 50 mL vial 47068 1076281000168104 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 50 mL vial 1076261000168108 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 50 mL vial 5231000168102 Isovue-300 5231000168102 Isovue-300 1076271000168102 iopamidol 612 mg (iodine 300 mg)/mL injection, 50 mL vial 1076251000168106 iopamidol 612 mg (iodine 300 mg)/mL injection, 50 mL vial 77457011000036105 iopamidol +911511000168100 Cavstat 20 mg film-coated tablet, 42, blister pack 234514 911501000168103 Cavstat 20 mg film-coated tablet, 42 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911491000168105 rosuvastatin 20 mg tablet, 42 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +933215371000036103 Lunava 20 mg film-coated tablet, 30, bottle 164967 933204801000036103 Lunava 20 mg film-coated tablet, 30 933195761000036108 Lunava 20 mg film-coated tablet 933193181000036101 Lunava 933193181000036101 Lunava 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +32567011000036103 Reyataz 300 mg hard capsule, 60, bottle 134967 32358011000036105 Reyataz 300 mg hard capsule, 60 32235011000036109 Reyataz 300 mg hard capsule 3083011000036101 Reyataz 3083011000036101 Reyataz 32766011000036102 atazanavir 300 mg capsule, 60 32697011000036107 atazanavir 300 mg capsule 21324011000036104 atazanavir +921900011000036109 Exforge HCT 10/160/12.5 film-coated tablet, 56, blister pack 158164 921459011000036105 Exforge HCT 10/160/12.5 film-coated tablet, 56 921017011000036103 Exforge HCT 10/160/12.5 film-coated tablet 25011000168107 Exforge HCT 10/160/12.5 25011000168107 Exforge HCT 10/160/12.5 922587011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 56 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +933229981000036107 Astromide 5 mg hard capsule, 5, bottle 144780 933223781000036107 Astromide 5 mg hard capsule, 5 933219901000036105 Astromide 5 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +700029811000036102 Brevinor-1 21 Day uncoated tablet, 21, blister pack 11145011000036109 Brevinor-1 21 Day uncoated tablet, 21 4511011000036100 Brevinor-1 21 Day uncoated tablet 700011821000036102 Brevinor-1 21 Day 700011821000036102 Brevinor-1 21 Day 28343011000036108 norethisterone 1 mg + ethinylestradiol 35 microgram tablet, 21 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +47231000036108 Tegretol 200 mg uncoated tablet, 100, blister pack 41848 46721000036104 Tegretol 200 mg uncoated tablet, 100 5146011000036102 Tegretol 200 mg uncoated tablet 2231000168106 Tegretol 2231000168106 Tegretol 46731000036102 carbamazepine 200 mg tablet, 100 23198011000036103 carbamazepine 200 mg tablet 21319011000036108 carbamazepine +926670011000036102 Zelitrex 500 mg film-coated tablet, 42, blister pack 128739 926144011000036107 Zelitrex 500 mg film-coated tablet, 42 925639011000036108 Zelitrex 500 mg film-coated tablet 925537011000036106 Zelitrex 925537011000036106 Zelitrex 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +18963011000036108 Cortate 5 mg uncoated tablet, 50, bottle 27912 12271011000036106 Cortate 5 mg uncoated tablet, 50 4476011000036109 Cortate 5 mg uncoated tablet 4128011000036108 Cortate 4128011000036108 Cortate 27032011000036105 cortisone acetate 5 mg tablet, 50 22405011000036103 cortisone acetate 5 mg tablet 21779011000036103 cortisone +943901000168102 Medformin 850 mg film-coated tablet, 60, blister pack 100290 943791000168106 Medformin 850 mg film-coated tablet, 60 943781000168108 Medformin 850 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +43987011000036100 Ciproxin IV 100 mg/50 mL intravenous infusion injection, 50 mL vial 43098 41479011000036105 Ciproxin IV 100 mg/50 mL intravenous infusion injection, 50 mL vial 40004011000036100 Ciproxin IV 100 mg/50 mL intravenous infusion injection, 50 mL vial 31831000168107 Ciproxin IV 31831000168107 Ciproxin IV 46325011000036100 ciprofloxacin 100 mg/50 mL injection, 50 mL vial 45080011000036102 ciprofloxacin 100 mg/50 mL injection, vial 21245011000036105 ciprofloxacin +1123841000168108 Jadenu 360 mg film-coated tablet, 30, blister pack 293497 1123831000168104 Jadenu 360 mg film-coated tablet, 30 1123811000168109 Jadenu 360 mg film-coated tablet 1123691000168104 Jadenu 1123691000168104 Jadenu 1123821000168102 deferasirox 360 mg tablet, 30 1123801000168106 deferasirox 360 mg tablet 21549011000036103 deferasirox +44818011000036106 Daivobet 50/500 ointment, 60 g, tube 98773 42250011000036103 Daivobet 50/500 ointment, 60 g 40404011000036105 Daivobet 50/500 ointment 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 47003011000036105 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment, 60 g 45370011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment 44974011000036100 calcipotriol + betamethasone dipropionate +86162011000036101 Imovane 7.5 mg film-coated tablet, 10, blister pack 165934 85770011000036103 Imovane 7.5 mg film-coated tablet, 10 5421011000036105 Imovane 7.5 mg film-coated tablet 3857011000036103 Imovane 3857011000036103 Imovane 86456011000036109 zopiclone 7.5 mg tablet, 10 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +716331000168104 Pemzo 20 mg enteric capsule, 140, blister pack 149517 716321000168102 Pemzo 20 mg enteric capsule, 140 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716311000168109 omeprazole 20 mg enteric capsule, 140 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +69097011000036103 Lucentis 2.3 mg/0.23 mL injection solution, 0.23 mL vial 148325 66898011000036109 Lucentis 2.3 mg/0.23 mL injection solution, 0.23 mL vial 65326011000036103 Lucentis 2.3 mg/0.23 mL injection solution, 0.23 mL vial 3299011000036106 Lucentis 3299011000036106 Lucentis 71492011000036103 ranibizumab 2.3 mg/0.23 mL injection, 0.23 mL vial 70034011000036100 ranibizumab 2.3 mg/0.23 mL injection, vial 21495011000036104 ranibizumab +1054801000168101 Palexia SR 250 mg modified release tablet, 20, blister pack 165357 1054791000168102 Palexia SR 250 mg modified release tablet, 20 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054781000168100 tapentadol 250 mg modified release tablet, 20 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +37656011000036100 Silvazine cream, 500 g, jar 31767 36922011000036101 Silvazine cream, 500 g 5847011000036105 Silvazine cream 3826011000036100 Silvazine 3826011000036100 Silvazine 38806011000036106 silver sulfadiazine 1% + chlorhexidine gluconate 0.2% cream, 500 g 22421011000036105 silver sulfadiazine 1% + chlorhexidine gluconate 0.2% cream 21487011000036108 silver sulfadiazine + chlorhexidine +52777011000036102 Strong Pain Caplet (Pharmacor) uncoated tablet, 24, blister pack 75647 52587011000036106 Strong Pain Caplet (Pharmacor) uncoated tablet, 24 52433011000036100 Strong Pain Caplet (Pharmacor) uncoated tablet 6871000168106 Strong Pain Caplet (Pharmacor) 6871000168106 Strong Pain Caplet (Pharmacor) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +12911000036104 Olanzapine ODT (Terry White Chemists) 15 mg orally disintegrating tablet, 28, blister pack 158999 7041000036102 Olanzapine ODT (Terry White Chemists) 15 mg orally disintegrating tablet, 28 3611000036102 Olanzapine ODT (Terry White Chemists) 15 mg orally disintegrating tablet 12841000168101 Olanzapine ODT (Terry White Chemists) 12841000168101 Olanzapine ODT (Terry White Chemists) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +44621011000036101 Sinutab Sinus and Pain Relief uncoated tablet, 50, blister pack 90131 42074011000036100 Sinutab Sinus and Pain Relief uncoated tablet, 50 40346011000036102 Sinutab Sinus and Pain Relief uncoated tablet 39567011000036105 Sinutab Sinus and Pain Relief 39567011000036105 Sinutab Sinus and Pain Relief 46841011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 50 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +18175011000036103 Simvastatin (RL) 10 mg film-coated tablet, 30, bottle 116797 11543011000036102 Simvastatin (RL) 10 mg film-coated tablet, 30 4606011000036100 Simvastatin (RL) 10 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +60684011000036101 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 2 L, bottle 42870 56642011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 2 L 54019011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 63479011000036109 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash, 2 L 61990011000036104 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash 61818011000036107 benzydamine + chlorhexidine +130721000036105 Adesan 32 mg uncoated tablet, 30, bottle 171023 127711000036100 Adesan 32 mg uncoated tablet, 30 124701000036108 Adesan 32 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +20248011000036109 Mitozantrone (Pfizer (Perth)) 25 mg/12.5 mL concentrated injection, 12.5 mL vial 74511 13459011000036104 Mitozantrone (Pfizer (Perth)) 25 mg/12.5 mL concentrated injection, 12.5 mL vial 6741011000036102 Mitozantrone (Pfizer (Perth)) 25 mg/12.5 mL concentrated injection, 12.5 mL vial 4370011000036102 Mitozantrone (Pfizer (Perth)) 4370011000036102 Mitozantrone (Pfizer (Perth)) 27781011000036108 mitozantrone 25 mg/12.5 mL injection, 12.5 mL vial 23111011000036106 mitozantrone 25 mg/12.5 mL injection, vial 21652011000036102 mitozantrone +19777011000036100 Iodosorb 50% ointment, 2 x 20 g tubes 62773 13035011000036109 Iodosorb 50% ointment, 2 x 20 g 6322011000036107 Iodosorb 50% ointment 28461000168109 Iodosorb 28461000168109 Iodosorb 27506011000036103 cadexomer-iodine 50% ointment, 2 x 20 g 22849011000036103 cadexomer-iodine 50% ointment 21550011000036106 cadexomer-iodine +52203011000036108 Paclitaxel (Baxter) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 143028 52091011000036101 Paclitaxel (Baxter) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 51987011000036103 Paclitaxel (Baxter) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 51948011000036108 Paclitaxel (Baxter) 51948011000036108 Paclitaxel (Baxter) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +50318011000036100 Touch-In Plus diagnostic strip, 50, bottle 49252011000036107 Touch-In Plus diagnostic strip, 50 48725011000036105 Touch-In Plus diagnostic strip 33341000168107 Touch-In Plus 33341000168107 Touch-In Plus 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +74905011000036104 Imogam Rabies Pasteurised 1500 units/10 mL injection, 10 mL vial 72931 74392011000036104 Imogam Rabies Pasteurised 1500 units/10 mL injection, 10 mL vial 73915011000036100 Imogam Rabies Pasteurised 1500 units/10 mL injection, 10 mL vial 43121000168102 Imogam Rabies Pasteurised 43121000168102 Imogam Rabies Pasteurised 75489011000036105 rabies virus immunoglobulin 1500 units/10 mL injection, 10 mL vial 75090011000036107 rabies virus immunoglobulin 1500 units/10 mL injection, vial 74964011000036102 rabies virus immunoglobulin +68797011000036104 Potassium Chloride Sterile (Pfizer (Perth)) 750 mg (potassium 10 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 10793 66554011000036106 Potassium Chloride Sterile (Pfizer (Perth)) 750 mg (potassium 10 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 65460011000036100 Potassium Chloride Sterile (Pfizer (Perth)) 750 mg (potassium 10 mmol)/10 mL concentrated injection, 10 mL ampoule 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 71362011000036108 potassium chloride 750 mg (potassium 10 mmol)/10 mL injection, 50 x 10 mL ampoules 69974011000036108 potassium chloride 750 mg (potassium 10 mmol)/10 mL injection, ampoule 21274011000036107 potassium chloride +82890011000036105 Dimetapp PE Sinus Pain uncoated tablet, 30, blister pack 160361 82784011000036102 Dimetapp PE Sinus Pain uncoated tablet, 30 82694011000036109 Dimetapp PE Sinus Pain uncoated tablet 82664011000036107 Dimetapp PE Sinus Pain 82664011000036107 Dimetapp PE Sinus Pain 83003011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 30 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +929677011000036107 Vexazone 45 mg uncoated tablet, 7, blister pack 164343 929513011000036102 Vexazone 45 mg uncoated tablet, 7 929404011000036109 Vexazone 45 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +700029831000036106 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 87130011000036105 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 87076011000036104 Microgynon 20 ED (inert substance) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029831000036106 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 87130011000036105 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 87075011000036106 Microgynon 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +20171011000036101 Prazosin (Terry White Chemists) 2 mg uncoated tablet, 100, blister pack 73859 13394011000036100 Prazosin (Terry White Chemists) 2 mg uncoated tablet, 100 6679011000036109 Prazosin (Terry White Chemists) 2 mg uncoated tablet 2969011000036104 Prazosin (Terry White Chemists) 2969011000036104 Prazosin (Terry White Chemists) 27728011000036108 prazosin 2 mg tablet, 100 23063011000036102 prazosin 2 mg tablet 21544011000036104 prazosin +776061000168104 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 217121 776051000168101 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776041000168103 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776061000168104 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 47377 776051000168101 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776041000168103 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776061000168104 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 217121 776051000168101 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776041000168103 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +776061000168104 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 47377 776051000168101 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776041000168103 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +933140011000036108 Elmendos 50 mg tablet, 42, bottle 98078 932935011000036106 Elmendos 50 mg tablet, 42 932779011000036104 Elmendos 50 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46988011000036106 lamotrigine 50 mg tablet, 42 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +799811000168108 Abyraz 20 mg uncoated tablet, 10, blister pack 159505 799801000168105 Abyraz 20 mg uncoated tablet, 10 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799791000168109 aripiprazole 20 mg tablet, 10 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +802691000168107 Abilify ODT 10 mg orally disintegrating tablet, 98, blister pack 128893 802681000168109 Abilify ODT 10 mg orally disintegrating tablet, 98 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802671000168106 aripiprazole 10 mg orally disintegrating tablet, 98 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +66581000036101 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 79993 64551000036101 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 921971000168108 Biostate (inert substance) diluent, 10 mL vial 62851000168103 Biostate 500 IU FVIII/1000 IU VWF 900871000168100 Biostate 64561000036103 factor VIII 500 units + von Willebrand factor 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +66581000036101 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 79993 64551000036101 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 65671011000036104 Biostate 500 IU FVIII/1000 IU VWF (factor VIII 500 units + von Willebrand factor 1000 units) powder for injection, 1 vial 62851000168103 Biostate 500 IU FVIII/1000 IU VWF 62851000168103 Biostate 500 IU FVIII/1000 IU VWF 64561000036103 factor VIII 500 units + von Willebrand factor 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 70271011000036106 factor VIII 500 units + von Willebrand factor 1000 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +18509011000036103 Alphapress 25 mg uncoated tablet, 100, bottle 17575 12118011000036107 Alphapress 25 mg uncoated tablet, 100 4958011000036109 Alphapress 25 mg uncoated tablet 4020011000036102 Alphapress 4020011000036102 Alphapress 26928011000036104 hydralazine hydrochloride 25 mg tablet, 100 22305011000036105 hydralazine hydrochloride 25 mg tablet 21368011000036104 hydralazine +933065011000036101 Valvala 500 mg film-coated tablet, 42, blister pack 154465 932883011000036105 Valvala 500 mg film-coated tablet, 42 932741011000036104 Valvala 500 mg film-coated tablet 932700011000036100 Valvala 932700011000036100 Valvala 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +50395011000036107 Comfeel (4706) powder, 6 g, tube 49431011000036101 Comfeel (4706) powder, 6 g 48587011000036108 Comfeel (4706) powder 41701000168106 Comfeel (4706) 41701000168106 Comfeel (4706) 51399011000036104 dressing hydrocolloid cavity wound powder, 6 g 50919011000036100 dressing hydrocolloid cavity wound powder 50740011000036105 dressing hydrocolloid cavity wound +843031000168104 Centavite Adult film-coated tablet, 100, bottle 195402 843021000168102 Centavite Adult film-coated tablet, 100 842911000168101 Centavite Adult film-coated tablet 730571000168101 Centavite Adult 730571000168101 Centavite Adult 843011000168109 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 100 842901000168104 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet 731481000168107 betacarotene + vitamin A + colecalciferol + dl-alpha-tocopherol + thiamine + riboflavin + nicotinamide + pantothenic acid + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + selenium + lutein + lycopene +883361000168104 Betahistavert 16 mg uncoated tablet, 100, blister pack 227606 883351000168101 Betahistavert 16 mg uncoated tablet, 100 883261000168108 Betahistavert 16 mg uncoated tablet 883251000168106 Betahistavert 883251000168106 Betahistavert 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +746561000168109 Morphine Sulfate (Hospira) 15 mg/mL injection solution, 5 x 1 mL ampoules 225411 746551000168107 Morphine Sulfate (Hospira) 15 mg/mL injection solution, 5 x 1 mL ampoules 746541000168105 Morphine Sulfate (Hospira) 15 mg/mL injection solution, ampoule 746471000168102 Morphine Sulfate (Hospira) 746471000168102 Morphine Sulfate (Hospira) 26555011000036104 morphine sulfate pentahydrate 15 mg/mL injection, 5 x 1 mL ampoules 21964011000036102 morphine sulfate pentahydrate 15 mg/mL injection, ampoule 21252011000036100 morphine +771741000168108 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 179143 771731000168104 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 771521000168105 Drospirenone/Ethinyloestradiol (Lupin) (inert substance) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771741000168108 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 179143 771731000168104 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 771511000168103 Drospirenone/Ethinyloestradiol (Lupin) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +81159011000036103 Daktozin ointment, 15 g, tube 47360 80662011000036105 Daktozin ointment, 15 g 80230011000036103 Daktozin ointment 80105011000036104 Daktozin 80105011000036104 Daktozin 81720011000036103 miconazole nitrate 0.25% + zinc oxide 15% ointment, 15 g 81300011000036106 miconazole nitrate 0.25% + zinc oxide 15% ointment 81225011000036104 miconazole + zinc oxide +60136011000036101 Diareze 2 mg tablet, 20, blister pack 128825 56095011000036103 Diareze 2 mg tablet, 20 53787011000036103 Diareze 2 mg tablet 53445011000036105 Diareze 53445011000036105 Diareze 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +50404011000036101 Viscopaste (4948) 7.5 cm x 6 m bandage, 1, carton 49305011000036103 Viscopaste (4948) 7.5 cm x 6 m bandage, 1 48608011000036103 Viscopaste (4948) 7.5 cm x 6 m bandage 58071000168106 Viscopaste (4948) 58071000168106 Viscopaste (4948) 51290011000036104 bandage zinc paste 7.5 cm x 6 m bandage, 1 50819011000036105 bandage zinc paste 7.5 cm x 6 m bandage 50700011000036104 bandage zinc paste +66421000036103 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 100 mL vials 63961 64321000036102 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 100 mL vials 61351000036105 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 100 mL vial 8561000168103 Iomeron-350 8561000168103 Iomeron-350 64331000036100 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 10 x 100 mL vials 61361000036108 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 100 mL vial 931793011000036105 iomeprol +885531000168103 Bivalirudin (AC) 250 mg powder for injection, 10 vials 226749 885521000168101 Bivalirudin (AC) 250 mg powder for injection, 10 vials 885491000168103 Bivalirudin (AC) 250 mg powder for injection, 250 mg vial 885481000168101 Bivalirudin (AC) 885481000168101 Bivalirudin (AC) 851291000168105 bivalirudin 250 mg injection, 10 vials 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +923888011000036109 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet, 28, blister pack 163771 923432011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet, 28 923080011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 20 mg film-coated tablet 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +19597011000036105 Flixotide Accuhaler 250 microgram/actuation powder for inhalation, 60 actuations, blister pack 58438 12868011000036103 Flixotide Accuhaler 250 microgram/actuation powder for inhalation, 60 actuations 6159011000036107 Flixotide Accuhaler 250 microgram/actuation powder for inhalation, actuation 10121000168101 Flixotide Accuhaler 10121000168101 Flixotide Accuhaler 27404011000036104 fluticasone propionate 250 microgram/actuation powder for inhalation, 60 actuations 76321000036104 fluticasone propionate 250 microgram/actuation powder for inhalation, actuation 861061000168102 fluticasone propionate +928951011000036100 Topira-Lax 100 mg film-coated tablet, 60, bottle 155215 928312011000036109 Topira-Lax 100 mg film-coated tablet, 60 927941011000036108 Topira-Lax 100 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +933215131000036103 Danset ODT 4 mg orally disintegrating tablet, 4, blister pack 163649 933204661000036103 Danset ODT 4 mg orally disintegrating tablet, 4 933195631000036108 Danset ODT 4 mg orally disintegrating tablet 32131000168105 Danset ODT 32131000168105 Danset ODT 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +87739011000036108 Genotropin GoQuick (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 166829 87505011000036101 Genotropin GoQuick (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 640591000168108 Genotropin GoQuick (somatropin 5 mg) powder for injection, 5 mg cartridge 5561000168107 Genotropin GoQuick 5561000168107 Genotropin GoQuick 27895011000036107 somatropin 5 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 23220011000036109 somatropin 5 mg injection, cartridge 21295011000036100 somatropin +87739011000036108 Genotropin GoQuick (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 166829 87505011000036101 Genotropin GoQuick (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 630911000168107 Genotropin GoQuick (inert substance) diluent, 1 mL cartridge 5561000168107 Genotropin GoQuick 5561000168107 Genotropin GoQuick 27895011000036107 somatropin 5 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 630901000168109 inert substance diluent, 1 mL cartridge 21220011000036103 inert substance +44287011000036104 Ethyol 500 mg powder for injection, 3 vials 63789 41758011000036107 Ethyol 500 mg powder for injection, 3 vials 40184011000036105 Ethyol 500 mg powder for injection, 500 mg vial 39627011000036109 Ethyol 39627011000036109 Ethyol 46565011000036108 amifostine 500 mg injection, 3 vials 45220011000036100 amifostine 500 mg injection, vial 44944011000036101 amifostine +1050391000168106 Bupredermal 20 microgram/hour patch, 2, sachet 234744 1050381000168108 Bupredermal 20 microgram/hour patch, 2 1050351000168101 Bupredermal 20 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 26682011000036106 buprenorphine 20 microgram/hour patch, 2 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +60530011000036106 Cold and Flu Relief PE (Guardian) uncoated tablet, 24, blister pack 152036 56488011000036102 Cold and Flu Relief PE (Guardian) uncoated tablet, 24 53939011000036108 Cold and Flu Relief PE (Guardian) uncoated tablet 53454011000036109 Cold and Flu Relief PE (Guardian) 53454011000036109 Cold and Flu Relief PE (Guardian) 63380011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +21122011000036102 Cholstat 20 mg uncoated tablet, 30, blister pack 98488 14265011000036109 Cholstat 20 mg uncoated tablet, 30 7551011000036104 Cholstat 20 mg uncoated tablet 3920011000036105 Cholstat 3920011000036105 Cholstat 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +875301000168106 Bisoprolol (AN) 3.75 mg film-coated tablet, 30, blister pack 175914 875291000168105 Bisoprolol (AN) 3.75 mg film-coated tablet, 30 875261000168103 Bisoprolol (AN) 3.75 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 874861000168103 bisoprolol fumarate 3.75 mg tablet, 30 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +1106021000168105 Zolpibell 10 mg film-coated tablet, 7, blister pack 119087 1106011000168103 Zolpibell 10 mg film-coated tablet, 7 72953011000036101 Zolpibell 10 mg film-coated tablet 72921011000036103 Zolpibell 72921011000036103 Zolpibell 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +876831000168100 Betnovate-1/2 0.05% cream, 2 g, tube 12488 876821000168103 Betnovate-1/2 0.05% cream, 2 g 5450011000036104 Betnovate-1/2 0.05% cream 36901000168100 Betnovate-1/2 36901000168100 Betnovate-1/2 876811000168105 betamethasone (as valerate) 0.05% cream, 2 g 23355011000036108 betamethasone (as valerate) 0.05% cream 21366011000036103 betamethasone valerate +928998011000036100 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 10, blister pack 158915 928359011000036105 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 10 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +925310011000036102 Clopidogrel (Actavis) 75 mg film-coated tablet, 112, bottle 164865 924847011000036102 Clopidogrel (Actavis) 75 mg film-coated tablet, 112 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 87799011000036100 clopidogrel 75 mg tablet, 112 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +808351000168107 Perindopril Arginine (Apo) 5 mg film-coated tablet, 10, blister pack 184814 807941000168105 Perindopril Arginine (Apo) 5 mg film-coated tablet, 10 807931000168101 Perindopril Arginine (Apo) 5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 727301000168100 perindopril arginine 5 mg tablet, 10 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +19143011000036103 Pressin 5 mg uncoated tablet, 100, blister pack 44558 12442011000036103 Pressin 5 mg uncoated tablet, 100 4528011000036103 Pressin 5 mg uncoated tablet 3517011000036105 Pressin 3517011000036105 Pressin 27729011000036100 prazosin 5 mg tablet, 100 23064011000036100 prazosin 5 mg tablet 21544011000036104 prazosin +68840011000036106 Strepsils strawberry sugar free lozenge, 12, blister pack 101403 66463011000036105 Strepsils strawberry sugar free lozenge, 12 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71519011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 12 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +18192011000036101 Toprol-XL Titration Pack (15 x 23.75 mg tablets, 15 x 47.5 mg tablets, 15 x 95 mg tablets), 45, blister pack 115007 11481011000036101 Toprol-XL Titration Pack (15 x 23.75 mg tablets, 15 x 47.5 mg tablets, 15 x 95 mg tablets), 45 7530011000036105 Toprol-XL 23.75 mg modified release tablet 43281000168105 Toprol-XL Titration Pack 32970011000036103 Toprol-XL 26665011000036101 metoprolol succinate 23.75 mg modified release tablet [15] (&) metoprolol succinate 47.5 mg modified release tablet [15] (&) metoprolol succinate 95 mg modified release tablet [15], 45 23557011000036100 metoprolol succinate 23.75 mg modified release tablet 21662011000036107 metoprolol +18192011000036101 Toprol-XL Titration Pack (15 x 23.75 mg tablets, 15 x 47.5 mg tablets, 15 x 95 mg tablets), 45, blister pack 115007 11481011000036101 Toprol-XL Titration Pack (15 x 23.75 mg tablets, 15 x 47.5 mg tablets, 15 x 95 mg tablets), 45 7531011000036103 Toprol-XL 47.5 mg modified release tablet 43281000168105 Toprol-XL Titration Pack 32970011000036103 Toprol-XL 26665011000036101 metoprolol succinate 23.75 mg modified release tablet [15] (&) metoprolol succinate 47.5 mg modified release tablet [15] (&) metoprolol succinate 95 mg modified release tablet [15], 45 23558011000036104 metoprolol succinate 47.5 mg modified release tablet 21662011000036107 metoprolol +18192011000036101 Toprol-XL Titration Pack (15 x 23.75 mg tablets, 15 x 47.5 mg tablets, 15 x 95 mg tablets), 45, blister pack 115007 11481011000036101 Toprol-XL Titration Pack (15 x 23.75 mg tablets, 15 x 47.5 mg tablets, 15 x 95 mg tablets), 45 7532011000036109 Toprol-XL 95 mg modified release tablet 43281000168105 Toprol-XL Titration Pack 32970011000036103 Toprol-XL 26665011000036101 metoprolol succinate 23.75 mg modified release tablet [15] (&) metoprolol succinate 47.5 mg modified release tablet [15] (&) metoprolol succinate 95 mg modified release tablet [15], 45 23559011000036107 metoprolol succinate 95 mg modified release tablet 21662011000036107 metoprolol +77355011000036108 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 40, blister pack 58928 76771011000036106 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 40 76173011000036100 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78304011000036109 calcium carbonate 500 mg chewable tablet, 40 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +81022011000036102 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 35 x 250 mL bags 148935 80558011000036106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 35 x 250 mL bags 80190011000036105 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 250 mL bag 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 81637011000036105 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, 35 x 250 mL bags 81273011000036101 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +933230061000036109 Ondansetron (Claris) 4 mg/2 mL injection solution, 2 mL ampoule 147103 933223901000036104 Ondansetron (Claris) 4 mg/2 mL injection solution, 2 mL ampoule 922978011000036103 Ondansetron (Claris) 4 mg/2 mL injection solution, 2 mL ampoule 922929011000036107 Ondansetron (Claris) 922929011000036107 Ondansetron (Claris) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +69628011000036103 Laxettes chocolate 12 mg/square block, 24 squares, sachet 76933 67427011000036105 Laxettes chocolate 12 mg/square block, 24 squares 65658011000036106 Laxettes chocolate 12 mg/square block 64991011000036102 Laxettes 64991011000036102 Laxettes 71958011000036107 sennosides A and B 12 mg/square block, 24 squares 70262011000036107 sennosides A and B 12 mg/square block 69834011000036104 sennosides A and B +37639011000036105 Cytarabine (DBL) 100 mg/mL injection solution, 1 mL vial 25997 36905011000036100 Cytarabine (DBL) 100 mg/mL injection solution, 1 mL vial 36238011000036104 Cytarabine (DBL) 100 mg/mL injection solution, vial 35924011000036107 Cytarabine (DBL) 35924011000036107 Cytarabine (DBL) 38790011000036108 cytarabine 100 mg/mL injection, 1 mL vial 38003011000036101 cytarabine 100 mg/mL injection, vial 21916011000036109 cytarabine +703421000168102 Osmolax 1 g/g powder for oral liquid, 510 g, jar 165580 87504011000036100 Osmolax 1 g/g powder for oral liquid, 510 g 87345011000036106 Osmolax 1 g/g powder for oral liquid 87285011000036109 Osmolax 87285011000036109 Osmolax 87831011000036106 macrogol-3350 1 g/g powder for oral liquid, 510 g 87764011000036103 macrogol-3350 1 g/g powder for oral liquid 87750011000036101 macrogol-3350 +703421000168102 Osmolax 1 g/g powder for oral liquid, 510 g, jar 203142 87504011000036100 Osmolax 1 g/g powder for oral liquid, 510 g 87345011000036106 Osmolax 1 g/g powder for oral liquid 87285011000036109 Osmolax 87285011000036109 Osmolax 87831011000036106 macrogol-3350 1 g/g powder for oral liquid, 510 g 87764011000036103 macrogol-3350 1 g/g powder for oral liquid 87750011000036101 macrogol-3350 +692671000168101 Desfax 50 mg modified release tablet, 7, bottle 218079 692611000168109 Desfax 50 mg modified release tablet, 7 692601000168106 Desfax 50 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +18672011000036107 Indocid 100 mg moulded suppository, 20, strip pack 10480 11311011000036105 Indocid 100 mg moulded suppository, 20 5339011000036102 Indocid 100 mg moulded suppository 3869011000036100 Indocid 3869011000036100 Indocid 26600011000036106 indometacin 100 mg suppository, 20 22008011000036100 indometacin 100 mg suppository 21301011000036107 indometacin +789081000168105 Diabex XR 750 mg modified release tablet, 120, blister pack 142230 789071000168107 Diabex XR 750 mg modified release tablet, 120 788901000168108 Diabex XR 750 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 789061000168101 metformin hydrochloride 750 mg modified release tablet, 120 788891000168109 metformin hydrochloride 750 mg modified release tablet 21614011000036102 metformin +43653011000036101 Nexavar 200 mg film-coated tablet, 112, blister pack 123158 41293011000036104 Nexavar 200 mg film-coated tablet, 112 39863011000036102 Nexavar 200 mg film-coated tablet 39561011000036102 Nexavar 39561011000036102 Nexavar 46228011000036101 sorafenib 200 mg tablet, 112 45037011000036106 sorafenib 200 mg tablet 44870011000036101 sorafenib +1038031000168105 Intuniv 2 mg modified release tablet, 28, blister pack 275313 1038021000168107 Intuniv 2 mg modified release tablet, 28 1037971000168106 Intuniv 2 mg modified release tablet 1037851000168105 Intuniv 1037851000168105 Intuniv 1038011000168100 guanfacine 2 mg modified release tablet, 28 1037961000168100 guanfacine 2 mg modified release tablet 1037871000168101 guanfacine +18663011000036107 Antenex 5 mg uncoated tablet, 50, bottle 17583 32370011000036105 Antenex 5 mg uncoated tablet, 50 32248011000036104 Antenex 5 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +20745011000036107 Sigmaxin PG 62.5 microgram uncoated tablet, 200, bottle 90114 13914011000036107 Sigmaxin PG 62.5 microgram uncoated tablet, 200 7200011000036107 Sigmaxin PG 62.5 microgram uncoated tablet 41871000168109 Sigmaxin PG 41871000168109 Sigmaxin PG 28005011000036101 digoxin 62.5 microgram tablet, 200 23328011000036101 digoxin 62.5 microgram tablet 21696011000036109 digoxin +130641000036106 Fentanyl (Aspen) 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 170931 127671000036101 Fentanyl (Aspen) 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 125301000036108 Fentanyl (Aspen) 500 microgram/10 mL injection solution, 10 mL ampoule 123941000036106 Fentanyl (Aspen) 123941000036106 Fentanyl (Aspen) 35182011000036108 fentanyl 500 microgram/10 mL injection, 5 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +1063321000168105 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 12, blister pack 144070 1063311000168103 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 12 1063281000168100 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 63876011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 12 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +83395011000036106 Nebilet 1.25 mg tablet, 7, blister pack 148873 83313011000036109 Nebilet 1.25 mg tablet, 7 83246011000036102 Nebilet 1.25 mg tablet 83226011000036104 Nebilet 83226011000036104 Nebilet 83486011000036109 nebivolol 1.25 mg tablet, 7 83430011000036103 nebivolol 1.25 mg tablet 83418011000036105 nebivolol +1041891000168108 Atorvastatin (AS) 20 mg film-coated tablet, 50, blister pack 178540 1041881000168105 Atorvastatin (AS) 20 mg film-coated tablet, 50 1041791000168103 Atorvastatin (AS) 20 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841451000168102 atorvastatin 20 mg tablet, 50 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +20728011000036103 Allopurinol (GenRx) 100 mg uncoated tablet, 200, bottle 83095 13897011000036109 Allopurinol (GenRx) 100 mg uncoated tablet, 200 7183011000036103 Allopurinol (GenRx) 100 mg uncoated tablet 3620011000036109 Allopurinol (GenRx) 3620011000036109 Allopurinol (GenRx) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +12891000036102 Olanzapine (Apo) 5 mg film-coated tablet, 28, bottle 158997 7031000036107 Olanzapine (Apo) 5 mg film-coated tablet, 28 2971000036107 Olanzapine (Apo) 5 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +692591000168104 Desfax 100 mg modified release tablet, 1000, bottle 218081 692581000168102 Desfax 100 mg modified release tablet, 1000 692471000168104 Desfax 100 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 692571000168100 desvenlafaxine 100 mg modified release tablet, 1000 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +933247231000036108 Escitalopram (GA) 20 mg film-coated tablet, 28, blister pack 165431 933243621000036101 Escitalopram (GA) 20 mg film-coated tablet, 28 933241561000036107 Escitalopram (GA) 20 mg film-coated tablet 933240861000036100 Escitalopram (GA) 933240861000036100 Escitalopram (GA) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +843111000168108 Elevit film-coated tablet, 30, blister pack (Old Formulation 2014) 79412 843101000168105 Elevit film-coated tablet, 30 (Old Formulation 2014) 843081000168103 Elevit film-coated tablet (Old Formulation 2014) 61571000168101 Elevit 61571000168101 Elevit 843091000168100 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30 843071000168101 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet 85072011000036102 dl-alpha-tocopherol + ascorbic acid + biotin + calcium hydrogen phosphate + colecalciferol + cupric sulfate + cyanocobalamin + ferrous fumarate + folic acid + magnesium oxide light + magnesium phosphate dibasic trihydrate + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + thiamine + zinc sulfate monohydrate +945911000168100 Glimepiride (Sanofi) 2 mg uncoated tablet, 30, blister pack 142391 945901000168103 Glimepiride (Sanofi) 2 mg uncoated tablet, 30 945871000168103 Glimepiride (Sanofi) 2 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +37579011000036104 Aminophylline (DBL) 250 mg/10 mL injection solution, 50 x 10 mL ampoules 16355 36846011000036107 Aminophylline (DBL) 250 mg/10 mL injection solution, 50 x 10 mL ampoules 36146011000036102 Aminophylline (DBL) 250 mg/10 mL injection solution, 10 mL ampoule 35871011000036103 Aminophylline (DBL) 35871011000036103 Aminophylline (DBL) 38734011000036109 aminophylline 250 mg/10 mL injection, 50 x 10 mL ampoules 37962011000036108 aminophylline 250 mg/10 mL injection, ampoule 37801011000036106 aminophylline +60153011000036106 Fefol Spansule modified release capsule, 30, blister pack 12987 56112011000036104 Fefol Spansule modified release capsule, 30 53793011000036106 Fefol Spansule modified release capsule 10751000168108 Fefol Spansule 10751000168108 Fefol Spansule 63219011000036101 ferrous sulfate 270 mg (iron 87.4 mg) + folic acid 300 microgram modified release capsule, 30 61892011000036108 ferrous sulfate 270 mg (iron 87.4 mg) + folic acid 300 microgram modified release capsule 61711011000036101 ferrous sulfate + folic acid +690981000168106 Perindopril Erbumine (Blooms The Chemist) 8 mg uncoated tablet, 30, blister pack 151916 690971000168108 Perindopril Erbumine (Blooms The Chemist) 8 mg uncoated tablet, 30 690961000168102 Perindopril Erbumine (Blooms The Chemist) 8 mg uncoated tablet 690951000168104 Perindopril Erbumine (Blooms The Chemist) 690951000168104 Perindopril Erbumine (Blooms The Chemist) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +772541000168105 Diazepam (GenRx) 2 mg uncoated tablet, 50, blister pack 93666 772531000168101 Diazepam (GenRx) 2 mg uncoated tablet, 50 772521000168104 Diazepam (GenRx) 2 mg uncoated tablet 772511000168106 Diazepam (GenRx) 772511000168106 Diazepam (GenRx) 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +44150011000036106 Clarinase Repetab modified release tablet, 20, blister pack 53516 41626011000036100 Clarinase Repetab modified release tablet, 20 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46445011000036109 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 20 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +18586011000036108 Perindopril Erbumine (Pharmacor) 8 mg uncoated tablet, 30, blister pack 132513 11932011000036103 Perindopril Erbumine (Pharmacor) 8 mg uncoated tablet, 30 4501011000036102 Perindopril Erbumine (Pharmacor) 8 mg uncoated tablet 3695011000036107 Perindopril Erbumine (Pharmacor) 3695011000036107 Perindopril Erbumine (Pharmacor) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +693311000168109 Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules 49297 693301000168106 Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules 693281000168107 Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 20 mL ampoule 693201000168104 Lignocaine (Pfizer) 693201000168104 Lignocaine (Pfizer) 693291000168105 lidocaine (lignocaine) hydrochloride monohydrate 1% (200 mg/20 mL) injection, 30 x 20 mL ampoules 693271000168109 lidocaine (lignocaine) hydrochloride monohydrate 1% (200 mg/20 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +921836011000036108 Gentamicin (Pfizer (Perth)) 80 mg/2 mL injection solution, 50 x 2 mL ampoules 11376 921376011000036109 Gentamicin (Pfizer (Perth)) 80 mg/2 mL injection solution, 50 x 2 mL ampoules 5557011000036108 Gentamicin (Pfizer (Perth)) 80 mg/2 mL injection solution, 2 mL ampoule 3722011000036102 Gentamicin (Pfizer (Perth)) 3722011000036102 Gentamicin (Pfizer (Perth)) 922527011000036105 gentamicin 80 mg/2 mL injection, 50 x 2 mL ampoules 22527011000036109 gentamicin 80 mg/2 mL injection, ampoule 21397011000036102 gentamicin +37622011000036103 Marcain Spinal 0.5% (20 mg/4 mL) injection solution, 5 x 4 mL ampoules 21016 36889011000036108 Marcain Spinal 0.5% (20 mg/4 mL) injection solution, 5 x 4 mL ampoules 36223011000036107 Marcain Spinal 0.5% (20 mg/4 mL) injection solution, 4 mL ampoule 25211000168101 Marcain Spinal 25211000168101 Marcain Spinal 38774011000036106 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) injection, 5 x 4 mL ampoules 37989011000036100 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) injection, ampoule 37702011000036102 bupivacaine +935311000168103 Centevo 125/31.25/200 mg film-coated tablet, 200, bottle 238856 935301000168101 Centevo 125/31.25/200 mg film-coated tablet, 200 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935291000168102 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 200 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1118951000168103 Neocate Syneo powder for oral liquid, 400 g, can 1118941000168100 Neocate Syneo powder for oral liquid, 400 g 1118931000168109 Neocate Syneo powder for oral liquid 1118921000168106 Neocate Syneo 1118921000168106 Neocate Syneo 51427011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids powder for oral liquid, 400 g 50944011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids powder for oral liquid 50726011000036106 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids +1119511000168103 Quetiapine XR (GXP) 300 mg modified release tablet, 60, blister pack 199888 1119501000168101 Quetiapine XR (GXP) 300 mg modified release tablet, 60 1119491000168108 Quetiapine XR (GXP) 300 mg modified release tablet 1119321000168101 Quetiapine XR (GXP) 1119321000168101 Quetiapine XR (GXP) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +21045011000036103 Amoxycillin (Chemmart) 500 mg hard capsule, 20, blister pack 96878 14190011000036104 Amoxycillin (Chemmart) 500 mg hard capsule, 20 7471011000036108 Amoxycillin (Chemmart) 500 mg hard capsule 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +21045011000036103 Amoxycillin (Chemmart) 500 mg hard capsule, 20, blister pack 142540 14190011000036104 Amoxycillin (Chemmart) 500 mg hard capsule, 20 7471011000036108 Amoxycillin (Chemmart) 500 mg hard capsule 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +21045011000036103 Amoxycillin (Chemmart) 500 mg hard capsule, 20, blister pack 208145 14190011000036104 Amoxycillin (Chemmart) 500 mg hard capsule, 20 7471011000036108 Amoxycillin (Chemmart) 500 mg hard capsule 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +853931000168102 Telmisartan (Alkem) 80 mg uncoated tablet, 28, blister pack 211903 853921000168100 Telmisartan (Alkem) 80 mg uncoated tablet, 28 853881000168107 Telmisartan (Alkem) 80 mg uncoated tablet 853811000168101 Telmisartan (Alkem) 853811000168101 Telmisartan (Alkem) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +81125011000036101 Panvax H1N1 Vaccine 2009 150 microgram/5 mL injection suspension, 10 x 5 mL vials 165345 80630011000036100 Panvax H1N1 Vaccine 2009 150 microgram/5 mL injection suspension, 10 x 5 mL vials 366011000168107 Panvax H1N1 Vaccine 2009 150 microgram/5 mL injection suspension, 5 mL vial 24411000168104 Panvax H1N1 Vaccine 2009 24411000168104 Panvax H1N1 Vaccine 2009 81689011000036107 influenza multi-dose vaccine pandemic 2009 injection, 10 x 5 mL vials 365821000168103 influenza multi-dose vaccine pandemic 2009 injection, 5 mL vial 81214011000036106 influenza vaccine pandemic 2009 +130961000036104 Montelukast (Terry White Chemists) 4 mg chewable tablet, 28, blister pack 179113 127871000036100 Montelukast (Terry White Chemists) 4 mg chewable tablet, 28 124521000036109 Montelukast (Terry White Chemists) 4 mg chewable tablet 123801000036104 Montelukast (Terry White Chemists) 123801000036104 Montelukast (Terry White Chemists) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +13211000036102 Anastrozole (LW) 1 mg film-coated tablet, 30, blister pack 167647 8361000036102 Anastrozole (LW) 1 mg film-coated tablet, 30 3371000036104 Anastrozole (LW) 1 mg film-coated tablet 791000036102 Anastrozole (LW) 791000036102 Anastrozole (LW) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +761711000168104 Codapane Xtra uncoated tablet, 20, blister pack 199680 761701000168102 Codapane Xtra uncoated tablet, 20 761641000168105 Codapane Xtra uncoated tablet 761631000168101 Codapane Xtra 761631000168101 Codapane Xtra 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +796111000168107 Aciclovir (GH) 400 mg uncoated tablet, 100, blister pack 183861 796101000168109 Aciclovir (GH) 400 mg uncoated tablet, 100 796071000168100 Aciclovir (GH) 400 mg uncoated tablet 933234351000036100 Aciclovir (GH) 933234351000036100 Aciclovir (GH) 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +20565011000036100 Gliclazide (Terry White Chemists) 80 mg uncoated tablet, 100, blister pack 80087 13756011000036103 Gliclazide (Terry White Chemists) 80 mg uncoated tablet, 100 7041011000036100 Gliclazide (Terry White Chemists) 80 mg uncoated tablet 4284011000036109 Gliclazide (Terry White Chemists) 4284011000036109 Gliclazide (Terry White Chemists) 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +933123011000036103 Ebixa Drops 10 mg/mL oral liquid solution, 50 mL, bottle 82025 932925011000036109 Ebixa Drops 10 mg/mL oral liquid solution, 50 mL 932769011000036107 Ebixa Drops 10 mg/mL oral liquid solution, drop 13791000168109 Ebixa Drops 13791000168109 Ebixa Drops 38837011000036100 memantine hydrochloride 10 mg/mL oral liquid, 50 mL 932770011000036105 memantine hydrochloride 10 mg/mL oral liquid, drop 37759011000036103 memantine +915261000168102 Certican 250 microgram dispersible tablet, 50, blister pack 97527 915251000168104 Certican 250 microgram dispersible tablet, 50 915231000168105 Certican 250 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915241000168101 everolimus 250 microgram dispersible tablet, 50 915221000168107 everolimus 250 microgram dispersible tablet 21615011000036103 everolimus +18844011000036109 Atrovent UDV 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 17909 12156011000036101 Atrovent UDV 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 5397011000036103 Atrovent UDV 250 microgram/mL inhalation solution, ampoule 38811000168107 Atrovent UDV 38811000168107 Atrovent UDV 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +24471000036100 Roxet 20 mg film-coated tablet, 30, blister pack 176976 22631000036107 Roxet 20 mg film-coated tablet, 30 20481000036105 Roxet 20 mg film-coated tablet 19851000036100 Roxet 19851000036100 Roxet 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +19322011000036102 Lescol 40 mg hard capsule, 28, blister pack 50270 12612011000036108 Lescol 40 mg hard capsule, 28 4698011000036104 Lescol 40 mg hard capsule 47401000168109 Lescol 47401000168109 Lescol 27247011000036103 fluvastatin 40 mg capsule, 28 22606011000036108 fluvastatin 40 mg capsule 21564011000036109 fluvastatin +1014911000168102 Valaciclovir (Apotex) 500 mg film-coated tablet, 8, blister pack 158914 1014901000168100 Valaciclovir (Apotex) 500 mg film-coated tablet, 8 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 927317011000036100 valaciclovir 500 mg tablet, 8 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +43609011000036107 Procur 50 mg uncoated tablet, 50, bottle 101531 11212011000036105 Procur 50 mg uncoated tablet, 50 5040011000036108 Procur 50 mg uncoated tablet 4023011000036105 Procur 4023011000036105 Procur 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +19564011000036101 Capoten 25 mg uncoated tablet, 90, bottle 57153 12835011000036102 Capoten 25 mg uncoated tablet, 90 6126011000036102 Capoten 25 mg uncoated tablet 3934011000036103 Capoten 3934011000036103 Capoten 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +985751000168108 Avonex with Bioset Device (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack, composite pack 98007 985741000168106 Avonex with Bioset Device (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 641621000168102 Avonex (inert substance) diluent, 1.1 mL syringe 20651000168107 Avonex 20651000168107 Avonex 985731000168102 interferon beta-1a 12 million units (60 microgram) injection [4 vials] (&) inert substance diluent [4 x 1.1 mL syringes], 1 pack 641611000168109 inert substance diluent, 1.1 mL syringe 21220011000036103 inert substance +985751000168108 Avonex with Bioset Device (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack, composite pack 98007 985741000168106 Avonex with Bioset Device (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 985721000168100 Avonex with Bioset Device (interferon beta-1a 12 million units (60 microgram)) powder for injection, 60 microgram vial 20651000168107 Avonex 20651000168107 Avonex 985731000168102 interferon beta-1a 12 million units (60 microgram) injection [4 vials] (&) inert substance diluent [4 x 1.1 mL syringes], 1 pack 985711000168107 interferon beta-1a 12 million units (60 microgram) injection, vial 21462011000036109 interferon beta-1a +810131000168102 Entresto 24/26 film-coated tablet, 28, blister pack 234219 810121000168100 Entresto 24/26 film-coated tablet, 28 810041000168107 Entresto 24/26 film-coated tablet 810021000168101 Entresto 24/26 810021000168101 Entresto 24/26 810111000168107 sacubitril 24.3 mg + valsartan 25.7 mg tablet, 28 810031000168103 sacubitril 24.3 mg + valsartan 25.7 mg tablet 809631000168102 sacubitril + valsartan +86044011000036107 Amlodipine (DRLA) 5 mg tablet, 10, blister pack 147596 85637011000036106 Amlodipine (DRLA) 5 mg tablet, 10 85311011000036103 Amlodipine (DRLA) 5 mg tablet 85261011000036108 Amlodipine (DRLA) 85261011000036108 Amlodipine (DRLA) 84619011000036102 amlodipine 5 mg tablet, 10 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +972851000168102 Lyzalon 150 mg hard capsule, 14, blister pack 224446 972381000168104 Lyzalon 150 mg hard capsule, 14 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +697651000168107 Vascalace 10 mg capsule, 30, blister pack 203719 697341000168101 Vascalace 10 mg capsule, 30 697331000168105 Vascalace 10 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +61642011000036105 Advil 200 mg soft capsule, 20, blister pack 97229 57564011000036101 Advil 200 mg soft capsule, 20 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +715051000168104 Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube 18704 715041000168101 Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g 715031000168105 Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream 62831000168109 Canesten Clotrimazole Thrush Treatment 3 Day 62831000168109 Canesten Clotrimazole Thrush Treatment 3 Day 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +943941000168100 Medformin-1000 1 g film-coated tablet, 10, bottle 100291 943931000168109 Medformin-1000 1 g film-coated tablet, 10 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +50635011000036106 Augmentin Duo 500/125 film-coated tablet, 2, blister pack 142692 49661011000036106 Augmentin Duo 500/125 film-coated tablet, 2 6742011000036108 Augmentin Duo 500/125 film-coated tablet 37691000168101 Augmentin Duo 500/125 37691000168101 Augmentin Duo 500/125 51544011000036109 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 2 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +83385011000036107 Lisinopril (GA) 5 mg uncoated tablet, 50, blister pack 106500 83304011000036109 Lisinopril (GA) 5 mg uncoated tablet, 50 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 83480011000036106 lisinopril 5 mg tablet, 50 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +1013541000168108 Voluven injection solution, 10 x 500 mL bottles 120358 1013531000168104 Voluven injection solution, 10 x 500 mL bottles 1013511000168109 Voluven injection solution, 500 mL bottle 1013371000168107 Voluven 1013371000168107 Voluven 1013521000168102 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bottles 1013501000168106 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bottle 1013381000168105 hydroxyethyl starch 130/0.4 + sodium chloride +60942011000036104 Claratyne 10 mg effervescent tablet, 10, tube 62135 56885011000036101 Claratyne 10 mg effervescent tablet, 10 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 86561000036109 loratadine 10 mg effervescent tablet, 10 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +52709011000036102 Panadeine Extra uncoated tablet, 12, blister pack 101436 52516011000036105 Panadeine Extra uncoated tablet, 12 52397011000036105 Panadeine Extra uncoated tablet 9851000168109 Panadeine Extra 9851000168109 Panadeine Extra 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +877791000168109 Rizatriptan (Blooms The Chemist) 10 mg orally disintegrating tablet, 2, blister pack 222339 877781000168106 Rizatriptan (Blooms The Chemist) 10 mg orally disintegrating tablet, 2 877771000168108 Rizatriptan (Blooms The Chemist) 10 mg orally disintegrating tablet 877761000168102 Rizatriptan (Blooms The Chemist) 877761000168102 Rizatriptan (Blooms The Chemist) 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +925183011000036103 Disinfectant Hand Rub (Alsoft Health Care) solution, 500 mL, bottle 153574 924720011000036103 Disinfectant Hand Rub (Alsoft Health Care) solution, 500 mL 924432011000036106 Disinfectant Hand Rub (Alsoft Health Care) solution 924363011000036102 Disinfectant Hand Rub (Alsoft Health Care) 924363011000036102 Disinfectant Hand Rub (Alsoft Health Care) 925409011000036100 benzalkonium chloride 0.1% + ethanol 66% solution, 500 mL 925372011000036109 benzalkonium chloride 0.1% + ethanol 66% solution 925369011000036107 benzalkonium chloride + ethanol +165841000036107 Nevipin 200 mg uncoated tablet, 60, blister pack 199201 163981000036107 Nevipin 200 mg uncoated tablet, 60 162031000036101 Nevipin 200 mg uncoated tablet 161881000036100 Nevipin 161881000036100 Nevipin 27383011000036105 nevirapine 200 mg tablet, 60 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +673261000168106 Mirvaso 0.33% gel, 30 g, tube 212325 673251000168109 Mirvaso 0.33% gel, 30 g 673201000168105 Mirvaso 0.33% gel 673181000168109 Mirvaso 673181000168109 Mirvaso 673241000168107 brimonidine 0.33% gel, 30 g 673191000168107 brimonidine 0.33% gel 21861011000036105 brimonidine +68933011000036107 Minirin Melt 120 microgram sublingual wafer, 100, blister pack 121721 66662011000036100 Minirin Melt 120 microgram sublingual wafer, 100 65342011000036100 Minirin Melt 120 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 71371011000036107 desmopressin 120 microgram sublingual wafer, 100 69977011000036102 desmopressin 120 microgram sublingual wafer 21750011000036107 desmopressin +762921000168104 Oxycodone MR (Chemmart) 10 mg modified release tablet, 28, blister pack 214498 762911000168106 Oxycodone MR (Chemmart) 10 mg modified release tablet, 28 762881000168106 Oxycodone MR (Chemmart) 10 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +929684011000036105 Vexazone 15 mg uncoated tablet, 50, blister pack 164345 929520011000036103 Vexazone 15 mg uncoated tablet, 50 929406011000036101 Vexazone 15 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929266011000036101 pioglitazone 15 mg tablet, 50 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +810451000168100 Actonel Once-a-Week 35 mg film-coated tablet, 1, blister pack 82746 810441000168102 Actonel Once-a-Week 35 mg film-coated tablet, 1 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 700024831000036105 Actonel Once-a-Week 700024831000036105 Actonel Once-a-Week 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +680811000168105 Disodium Edetate (Biological Therapies) 3 g/100 mL concentrated injection, 100 mL vial 22279 680801000168107 Disodium Edetate (Biological Therapies) 3 g/100 mL concentrated injection, 100 mL vial 680781000168108 Disodium Edetate (Biological Therapies) 3 g/100 mL concentrated injection, 100 mL vial 680761000168104 Disodium Edetate (Biological Therapies) 680761000168104 Disodium Edetate (Biological Therapies) 680791000168106 edetate disodium 3 g/100 mL injection, 100 mL vial 680771000168105 edetate disodium 3 g/100 mL injection, vial 85074011000036106 edetic acid +69175011000036109 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 5 x 10 mL ampoules 16362 66975011000036100 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 5 x 10 mL ampoules 65233011000036102 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 10 mL ampoule 65081011000036103 Calcium Chloride (Phebra) 65081011000036103 Calcium Chloride (Phebra) 71548011000036104 calcium chloride dihydrate 1 g/10 mL injection, 5 x 10 mL ampoules 70056011000036109 calcium chloride dihydrate 1 g/10 mL injection, ampoule 69845011000036104 calcium chloride dihydrate +60000011000036102 Sinutab PE Sinus and Pain Relief film-coated tablet, 24, blister pack 123040 55962011000036103 Sinutab PE Sinus and Pain Relief film-coated tablet, 24 53740011000036106 Sinutab PE Sinus and Pain Relief film-coated tablet 53275011000036107 Sinutab PE Sinus and Pain Relief 53275011000036107 Sinutab PE Sinus and Pain Relief 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +44286011000036102 Ethyol 500 mg powder for injection, 1 vial 63789 41757011000036106 Ethyol 500 mg powder for injection, 1 vial 40184011000036105 Ethyol 500 mg powder for injection, 500 mg vial 39627011000036109 Ethyol 39627011000036109 Ethyol 46564011000036109 amifostine 500 mg injection, 1 vial 45220011000036100 amifostine 500 mg injection, vial 44944011000036101 amifostine +808991000168101 Pramipexole XR (GP) 4.5 mg modified release tablet, 30, blister pack 225617 808981000168104 Pramipexole XR (GP) 4.5 mg modified release tablet, 30 808951000168106 Pramipexole XR (GP) 4.5 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 87818011000036106 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet, 30 87762011000036107 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet 37716011000036100 pramipexole +797481000168109 Citalopram (A) 20 mg film-coated tablet, 84, bottle 158882 797471000168106 Citalopram (A) 20 mg film-coated tablet, 84 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +897941000168108 Nicotinell Peppermint 4 mg lozenge, 168, blister pack 276926 897931000168104 Nicotinell Peppermint 4 mg lozenge, 168 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897921000168102 nicotine 4 mg lozenge, 168 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +165771000036106 Temozolomide (Alphapharm) 5 mg hard capsule, 5, bottle 192687 163891000036102 Temozolomide (Alphapharm) 5 mg hard capsule, 5 162361000036105 Temozolomide (Alphapharm) 5 mg hard capsule 161971000036106 Temozolomide (Alphapharm) 161971000036106 Temozolomide (Alphapharm) 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +34771011000036107 Dilaudid 2 mg/mL injection solution, 10 x 1 mL ampoules 67356 34352011000036102 Dilaudid 2 mg/mL injection solution, 10 x 1 mL ampoules 6479011000036106 Dilaudid 2 mg/mL injection solution, ampoule 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35200011000036105 hydromorphone hydrochloride 2 mg/mL injection, 10 x 1 mL ampoules 22947011000036102 hydromorphone hydrochloride 2 mg/mL injection, ampoule 21480011000036107 hydromorphone +131041000036108 Atorvastatin (SZ) 10 mg film-coated tablet, 30, blister pack 179845 127941000036102 Atorvastatin (SZ) 10 mg film-coated tablet, 30 125471000036106 Atorvastatin (SZ) 10 mg film-coated tablet 124141000036105 Atorvastatin (SZ) 124141000036105 Atorvastatin (SZ) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +43851011000036107 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 20, blister pack 128034 41347011000036105 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 20 39801011000036104 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet 39566011000036107 Paracetamol (Pharmacy Choice) 39566011000036107 Paracetamol (Pharmacy Choice) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +20077011000036101 Magicul 800 mg film-coated tablet, 30, blister pack 70766 13305011000036104 Magicul 800 mg film-coated tablet, 30 6589011000036107 Magicul 800 mg film-coated tablet 3689011000036105 Magicul 3689011000036105 Magicul 27867011000036100 cimetidine 800 mg tablet, 30 23195011000036109 cimetidine 800 mg tablet 21427011000036101 cimetidine +797441000168104 Citalopram (A) 20 mg film-coated tablet, 28, bottle 158882 797431000168108 Citalopram (A) 20 mg film-coated tablet, 28 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +142771000036106 Zyrtec 5 mg/5 mL oral liquid solution, 75 mL, bottle 60948 142601000036105 Zyrtec 5 mg/5 mL oral liquid solution, 75 mL 142421000036102 Zyrtec 5 mg/5 mL oral liquid solution, 5 mL 3383011000036102 Zyrtec 3383011000036102 Zyrtec 142611000036107 cetirizine hydrochloride 5 mg/5 mL oral liquid, 75 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +60412011000036109 Strong Pain Plus (Priceline) uncoated tablet, 24, blister pack 144423 56371011000036108 Strong Pain Plus (Priceline) uncoated tablet, 24 53893011000036109 Strong Pain Plus (Priceline) uncoated tablet 53244011000036107 Strong Pain Plus (Priceline) 53244011000036107 Strong Pain Plus (Priceline) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +676151000168105 Celecoxib (Terry White Chemists) 100 mg hard capsule, 60, blister pack 226151 676141000168108 Celecoxib (Terry White Chemists) 100 mg hard capsule, 60 676131000168104 Celecoxib (Terry White Chemists) 100 mg hard capsule 676121000168102 Celecoxib (Terry White Chemists) 676121000168102 Celecoxib (Terry White Chemists) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +748161000168100 Taxoccord 80 mg/4 mL concentrated injection, 4 mL vial 209472 748151000168102 Taxoccord 80 mg/4 mL concentrated injection, 4 mL vial 748141000168104 Taxoccord 80 mg/4 mL concentrated injection, 4 mL vial 748131000168108 Taxoccord 748131000168108 Taxoccord 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +848951000168103 Itraconazole (Apo) 100 mg hard capsule, 60, blister pack 244473 848941000168100 Itraconazole (Apo) 100 mg hard capsule, 60 848781000168108 Itraconazole (Apo) 100 mg hard capsule 848771000168105 Itraconazole (Apo) 848771000168105 Itraconazole (Apo) 27156011000036102 itraconazole 100 mg capsule, 60 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +131051000036106 Candesartan Cilexetil (Aspen) 16 mg uncoated tablet, 30, blister pack 195443 128231000036100 Candesartan Cilexetil (Aspen) 16 mg uncoated tablet, 30 125071000036101 Candesartan Cilexetil (Aspen) 16 mg uncoated tablet 124121000036102 Candesartan Cilexetil (Aspen) 124121000036102 Candesartan Cilexetil (Aspen) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +926763011000036106 Fluconazole-1 (Terry White Chemists) 150 mg hard capsule, 1, blister pack 152688 926160011000036107 Fluconazole-1 (Terry White Chemists) 150 mg hard capsule, 1 925648011000036101 Fluconazole-1 (Terry White Chemists) 150 mg hard capsule 28011000168104 Fluconazole-1 (Terry White Chemists) 28011000168104 Fluconazole-1 (Terry White Chemists) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +73260011000036109 Fluconazole (Claris) 100 mg/50 mL injection solution, 5 x 50 mL vials 133463 73060011000036100 Fluconazole (Claris) 100 mg/50 mL injection solution, 5 x 50 mL vials 72925011000036101 Fluconazole (Claris) 100 mg/50 mL injection solution, 50 mL vial 72918011000036101 Fluconazole (Claris) 72918011000036101 Fluconazole (Claris) 73463011000036100 fluconazole 100 mg/50 mL injection, 5 x 50 mL vials 22539011000036100 fluconazole 100 mg/50 mL injection, vial 21365011000036105 fluconazole +32550011000036106 Tryzan 5 mg hard capsule, 30, blister pack 127152 32342011000036105 Tryzan 5 mg hard capsule, 30 32219011000036104 Tryzan 5 mg hard capsule 3401011000036105 Tryzan 3401011000036105 Tryzan 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +710711000168108 Strepsils Children 6+ Artificial Colour Free Orange lozenge, 16, blister pack 190585 710701000168105 Strepsils Children 6+ Artificial Colour Free Orange lozenge, 16 710691000168105 Strepsils Children 6+ Artificial Colour Free Orange lozenge 710571000168105 Strepsils Children 6+ 710571000168105 Strepsils Children 6+ 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +165681000036104 Influvac Junior 2014 injection suspension, 1 x 0.25 mL syringe 164381 163781000036109 Influvac Junior 2014 injection suspension, 1 x 0.25 mL syringe 162101000036109 Influvac Junior 2014 injection suspension, 0.25 mL syringe 47161000168103 Influvac Junior 2014 47161000168103 Influvac Junior 2014 163791000036106 influenza trivalent child vaccine 2014 injection, 1 x 0.25 mL syringe 162111000036106 influenza trivalent child vaccine 2014 injection, 0.25 mL syringe 166301000036105 influenza trivalent vaccine 2014 +21209011000036101 Zofran 4 mg film-coated tablet, 10, bottle 9980 14345011000036109 Zofran 4 mg film-coated tablet, 10 7628011000036103 Zofran 4 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +981591000168107 Desowen 0.05% ointment, 50 g, tube 67174 981581000168109 Desowen 0.05% ointment, 50 g 981371000168100 Desowen 0.05% ointment 39556011000036104 Desowen 39556011000036104 Desowen 981571000168106 desonide 0.05% ointment, 50 g 981361000168106 desonide 0.05% ointment 44914011000036107 desonide +847671000168100 Panzytrat 25 000 enteric capsule, 100, bottle 55941 847661000168106 Panzytrat 25 000 enteric capsule, 100 847641000168107 Panzytrat 25 000 enteric capsule 846981000168106 Panzytrat 25 000 846981000168106 Panzytrat 25 000 847651000168109 lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule, 100 847631000168103 lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule 847131000168105 lipase + amylase + protease +20918011000036100 Zanidip 20 mg film-coated tablet, 30, blister pack 93733 14072011000036101 Zanidip 20 mg film-coated tablet, 30 7350011000036108 Zanidip 20 mg film-coated tablet 4164011000036108 Zanidip 4164011000036108 Zanidip 28127011000036106 lercanidipine hydrochloride 20 mg tablet, 30 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +105191000036107 Ksart HCT 300/25 tablet, 30, blister pack 186252 102301000036107 Ksart HCT 300/25 tablet, 30 98391000036108 Ksart HCT 300/25 tablet 51221000168109 Ksart HCT 300/25 51221000168109 Ksart HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +44306011000036106 Differin 0.1% cream, 3 g, tube 66174 41773011000036104 Differin 0.1% cream, 3 g 40194011000036109 Differin 0.1% cream 39740011000036103 Differin 39740011000036103 Differin 46580011000036102 adapalene 0.1% cream, 3 g 45228011000036103 adapalene 0.1% cream 44932011000036106 adapalene +17902011000036106 Lamogine 200 mg tablet, 56, blister pack 114261 11466011000036109 Lamogine 200 mg tablet, 56 5969011000036102 Lamogine 200 mg tablet 2998011000036105 Lamogine 2998011000036105 Lamogine 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +1023291000168109 Ibuprofen (A) 200 mg film-coated tablet, 48, blister pack 161314 1023281000168106 Ibuprofen (A) 200 mg film-coated tablet, 48 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1039401000168102 Atomoxetine (Actavis) 80 mg hard capsule, 28, blister pack 237257 1039391000168104 Atomoxetine (Actavis) 80 mg hard capsule, 28 1039271000168108 Atomoxetine (Actavis) 80 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +933214411000036100 Reditra 100 mg film-coated tablet, 10, blister pack 160780 933203711000036105 Reditra 100 mg film-coated tablet, 10 933195871000036106 Reditra 100 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 929238011000036107 sertraline 100 mg tablet, 10 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +19904011000036107 Neurontin 300 mg hard capsule, 100, blister pack 66008 13149011000036103 Neurontin 300 mg hard capsule, 100 6432011000036104 Neurontin 300 mg hard capsule 4344011000036106 Neurontin 4344011000036106 Neurontin 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +18867011000036105 Ospolot 50 mg film-coated tablet, 200, bottle 18847 12178011000036100 Ospolot 50 mg film-coated tablet, 200 5628011000036104 Ospolot 50 mg film-coated tablet 4335011000036109 Ospolot 4335011000036109 Ospolot 26966011000036107 sulthiame 50 mg tablet, 200 22340011000036107 sulthiame 50 mg tablet 21786011000036100 sulthiame +33544011000036107 Gabapentin (GenRx) 600 mg film-coated tablet, 100, blister pack 131470 33284011000036108 Gabapentin (GenRx) 600 mg film-coated tablet, 100 33046011000036101 Gabapentin (GenRx) 600 mg film-coated tablet 3416011000036102 Gabapentin (GenRx) 3416011000036102 Gabapentin (GenRx) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +933247551000036102 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet, 28, blister pack 175930 933244411000036108 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet, 28 933241841000036109 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +68959011000036109 Dulcolax SP Drops 7.5 mg/mL oral liquid solution, 15 mL, bottle 133243 66761011000036100 Dulcolax SP Drops 7.5 mg/mL oral liquid solution, 15 mL 65325011000036105 Dulcolax SP Drops 7.5 mg/mL oral liquid solution, drop 56771000168109 Dulcolax SP Drops 56771000168109 Dulcolax SP Drops 71413011000036109 picosulfate sodium monohydrate 7.5 mg/mL oral liquid, 15 mL 70002011000036104 picosulfate sodium monohydrate 7.5 mg/mL oral liquid, drop 69785011000036107 picosulfate +926802011000036101 Fluvoxamine Maleate (GA) 50 mg film-coated tablet, 10, blister pack 168717 926198011000036107 Fluvoxamine Maleate (GA) 50 mg film-coated tablet, 10 925671011000036106 Fluvoxamine Maleate (GA) 50 mg film-coated tablet 925579011000036102 Fluvoxamine Maleate (GA) 925579011000036102 Fluvoxamine Maleate (GA) 927341011000036103 fluvoxamine maleate 50 mg tablet, 10 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +794101000168101 Tacrolimus (Sandoz) 750 microgram hard capsule, 14, blister pack 229738 794091000168106 Tacrolimus (Sandoz) 750 microgram hard capsule, 14 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794081000168108 tacrolimus 750 microgram capsule, 14 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +971891000168101 Bosentan (Sandoz) 62.5 mg film-coated tablet, 60, blister pack 242052 971881000168104 Bosentan (Sandoz) 62.5 mg film-coated tablet, 60 971871000168102 Bosentan (Sandoz) 62.5 mg film-coated tablet 971831000168100 Bosentan (Sandoz) 971831000168100 Bosentan (Sandoz) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +60118011000036106 Sore Throat Lozenge (Chemists' Own) menthol and eucalyptus lozenge, 16, blister pack 127496 56077011000036104 Sore Throat Lozenge (Chemists' Own) menthol and eucalyptus lozenge, 16 53780011000036104 Sore Throat Lozenge (Chemists' Own) menthol and eucalyptus lozenge 51601000168102 Sore Throat Lozenge (Chemists' Own) 51601000168102 Sore Throat Lozenge (Chemists' Own) 63728011000036107 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 62061011000036104 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +834851000168102 Viagra 100 mg film-coated tablet, 1, blister pack 64436 834841000168104 Viagra 100 mg film-coated tablet, 1 6381011000036105 Viagra 100 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 760371000168103 sildenafil 100 mg tablet, 1 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +77218011000036100 Natural E 500 IU (Blackmores) 335 mg (500 units) soft capsule, 50, bottle 139372 76634011000036101 Natural E 500 IU (Blackmores) 335 mg (500 units) soft capsule, 50 76078011000036100 Natural E 500 IU (Blackmores) 335 mg (500 units) soft capsule 49241000168102 Natural E 500 IU (Blackmores) 49241000168102 Natural E 500 IU (Blackmores) 78183011000036102 d-alpha-tocopherol 335 mg (500 units) capsule, 50 77533011000036105 d-alpha-tocopherol 335 mg (500 units) capsule 77434011000036103 d-alpha-tocopherol +921922011000036101 CoQ10 (Blackmores) 75 mg soft capsule, 90, bottle 163425 921481011000036101 CoQ10 (Blackmores) 75 mg soft capsule, 90 921027011000036107 CoQ10 (Blackmores) 75 mg soft capsule 920941011000036100 CoQ10 (Blackmores) 920941011000036100 CoQ10 (Blackmores) 922608011000036108 ubidecarenone 75 mg capsule, 90 922103011000036104 ubidecarenone 75 mg capsule 77424011000036100 ubidecarenone +69388011000036102 Panadol Sinus Relief uncoated tablet, 48, blister pack 35521 67188011000036103 Panadol Sinus Relief uncoated tablet, 48 65222011000036106 Panadol Sinus Relief uncoated tablet 11591000168101 Panadol Sinus Relief 11591000168101 Panadol Sinus Relief 63904011000036100 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 48 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +1014751000168104 Warfarin (Apo) 1 mg tablet, 50, bottle 225726 1014741000168101 Warfarin (Apo) 1 mg tablet, 50 1014731000168105 Warfarin (Apo) 1 mg tablet 1014721000168107 Warfarin (Apo) 1014721000168107 Warfarin (Apo) 27094011000036107 warfarin sodium 1 mg tablet, 50 22463011000036103 warfarin sodium 1 mg tablet 21248011000036104 warfarin +1022241000168109 Butafen 200 mg film-coated tablet, 32, blister pack 155484 1022231000168100 Butafen 200 mg film-coated tablet, 32 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 984381000168104 ibuprofen 200 mg tablet, 32 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +777021000168107 Inspra 25 mg film-coated tablet, 50, blister pack 100162 777011000168100 Inspra 25 mg film-coated tablet, 50 4780011000036109 Inspra 25 mg film-coated tablet 3018011000036108 Inspra 3018011000036108 Inspra 777001000168103 eplerenone 25 mg tablet, 50 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +122551000036109 Aldara 5% cream, 2 x 2 g pump packs 191815 122391000036106 Aldara 5% cream, 2 x 2 g 119411000036106 Aldara 5% cream 3048011000036100 Aldara 3048011000036100 Aldara 120401000036108 imiquimod 5% cream, 2 x 2 g 119421000036104 imiquimod 5% cream 21715011000036105 imiquimod +923858011000036101 Resolve Nappy Rash ointment, 15 g, tube 161435 923404011000036107 Resolve Nappy Rash ointment, 15 g 923068011000036108 Resolve Nappy Rash ointment 922946011000036101 Resolve Nappy Rash 922946011000036101 Resolve Nappy Rash 924188011000036103 miconazole 0.25% + zinc oxide 15% ointment, 15 g 923989011000036105 miconazole 0.25% + zinc oxide 15% ointment 81225011000036104 miconazole + zinc oxide +930151000168105 Zantac 150 mg effervescent tablet, 10, tube 45993 930141000168108 Zantac 150 mg effervescent tablet, 10 4531011000036109 Zantac 150 mg effervescent tablet 3563011000036102 Zantac 3563011000036102 Zantac 930131000168104 ranitidine 150 mg effervescent tablet, 10 83111000036108 ranitidine 150 mg effervescent tablet 21682011000036109 ranitidine +835891000168108 Codalgin Forte uncoated tablet, 20, blister pack 47807 835881000168105 Codalgin Forte uncoated tablet, 20 835871000168107 Codalgin Forte uncoated tablet 60751000168107 Codalgin Forte 60751000168107 Codalgin Forte 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +835891000168108 Codalgin Forte uncoated tablet, 20, blister pack 226337 835881000168105 Codalgin Forte uncoated tablet, 20 835871000168107 Codalgin Forte uncoated tablet 60751000168107 Codalgin Forte 60751000168107 Codalgin Forte 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +813431000168104 Adin Melt 60 microgram sublingual wafer, 10, blister pack 121723 813421000168102 Adin Melt 60 microgram sublingual wafer, 10 813401000168106 Adin Melt 60 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 813411000168109 desmopressin 60 microgram sublingual wafer, 10 813391000168109 desmopressin 60 microgram sublingual wafer 21750011000036107 desmopressin +32602011000036108 Genotropin Miniquick (7 x 1.4 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76612 32397011000036102 Genotropin Miniquick (7 x 1.4 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 6858011000036106 Genotropin Miniquick (somatropin 1.4 mg) powder for injection, 1.4 mg syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32795011000036106 somatropin 1.4 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 23141011000036101 somatropin 1.4 mg injection, syringe 21295011000036100 somatropin +32602011000036108 Genotropin Miniquick (7 x 1.4 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76612 32397011000036102 Genotropin Miniquick (7 x 1.4 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32795011000036106 somatropin 1.4 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +928987011000036102 Valaciclovir (Chemmart) 500 mg film-coated tablet, 20, blister pack 158913 928348011000036104 Valaciclovir (Chemmart) 500 mg film-coated tablet, 20 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +13071000036104 Quetiapine (Apo) 100 mg film-coated tablet, 90, blister pack 166077 8141000036100 Quetiapine (Apo) 100 mg film-coated tablet, 90 1491000036109 Quetiapine (Apo) 100 mg film-coated tablet 6221000168109 Quetiapine (Apo) 6221000168109 Quetiapine (Apo) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1073641000168104 Cefepime (Auro) 2 g powder for injection, 1 vial 156639 1073631000168108 Cefepime (Auro) 2 g powder for injection, 1 vial 1073621000168105 Cefepime (Auro) 2 g powder for injection, 2 g vial 1073611000168103 Cefepime (Auro) 1073611000168103 Cefepime (Auro) 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +20846011000036102 Lexapro 20 mg film-coated tablet, 28, blister pack 92053 14009011000036104 Lexapro 20 mg film-coated tablet, 28 7291011000036102 Lexapro 20 mg film-coated tablet 3210011000036104 Lexapro 3210011000036104 Lexapro 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +116751000036109 Cavstat 20 mg film-coated tablet, 30, bottle 186381 115031000036105 Cavstat 20 mg film-coated tablet, 30 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +116751000036109 Cavstat 20 mg film-coated tablet, 30, bottle 234476 115031000036105 Cavstat 20 mg film-coated tablet, 30 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +801691000168104 Abilify 2 mg uncoated tablet, 56, blister pack 91001 801681000168102 Abilify 2 mg uncoated tablet, 56 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801671000168100 aripiprazole 2 mg tablet, 56 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +881991000168106 Carboplatin (Accord) 450 mg/45 mL injection solution, 45 mL vial 215854 881981000168108 Carboplatin (Accord) 450 mg/45 mL injection solution, 45 mL vial 881971000168105 Carboplatin (Accord) 450 mg/45 mL injection solution, 45 mL vial 881881000168102 Carboplatin (Accord) 881881000168102 Carboplatin (Accord) 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +762991000168102 Tobramycin (Mylan) 80 mg/2 mL injection solution, 2 mL vial 234429 762981000168100 Tobramycin (Mylan) 80 mg/2 mL injection solution, 2 mL vial 762961000168109 Tobramycin (Mylan) 80 mg/2 mL injection solution, 2 mL vial 762951000168107 Tobramycin (Mylan) 762951000168107 Tobramycin (Mylan) 762971000168103 tobramycin 80 mg/2 mL injection, 2 mL vial 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +947191000168100 Risdone 3 mg film-coated tablet, 60, blister pack 144281 947181000168103 Risdone 3 mg film-coated tablet, 60 946971000168101 Risdone 3 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +86076011000036100 Gabapentin (Sandoz) 400 mg capsule, 100, blister pack 157195 85716011000036109 Gabapentin (Sandoz) 400 mg capsule, 100 85351011000036106 Gabapentin (Sandoz) 400 mg capsule 85264011000036106 Gabapentin (Sandoz) 85264011000036106 Gabapentin (Sandoz) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +1065101000168100 Paracode Extra uncoated tablet, 24, blister pack 292800 1065091000168105 Paracode Extra uncoated tablet, 24 1065011000168101 Paracode Extra uncoated tablet 1065001000168104 Paracode Extra 1065001000168104 Paracode Extra 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +105231000036102 Irbesartan HCT 300/25 (Stada) tablet, 30, blister pack 186256 102341000036105 Irbesartan HCT 300/25 (Stada) tablet, 30 98471000036102 Irbesartan HCT 300/25 (Stada) tablet 5361000168101 Irbesartan HCT 300/25 (Stada) 5361000168101 Irbesartan HCT 300/25 (Stada) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +44577011000036104 Patanol 0.1% eye drops solution, 1 mL, bottle 82000 42030011000036107 Patanol 0.1% eye drops solution, 1 mL 40330011000036104 Patanol 0.1% eye drops solution 39583011000036103 Patanol 39583011000036103 Patanol 46799011000036108 olopatadine 0.1% eye drops, 1 mL 45321011000036104 olopatadine 0.1% eye drops 44954011000036103 olopatadine +84353011000036101 Loratadine (Pharmacy Choice) 10 mg uncoated tablet, 30, blister pack 160831 84046011000036106 Loratadine (Pharmacy Choice) 10 mg uncoated tablet, 30 83668011000036109 Loratadine (Pharmacy Choice) 10 mg uncoated tablet 83597011000036104 Loratadine (Pharmacy Choice) 83597011000036104 Loratadine (Pharmacy Choice) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +20241011000036100 Ranitidine (Terry White Chemists) 300 mg film-coated tablet, 30, blister pack 74415 13452011000036109 Ranitidine (Terry White Chemists) 300 mg film-coated tablet, 30 6734011000036100 Ranitidine (Terry White Chemists) 300 mg film-coated tablet 4099011000036102 Ranitidine (Terry White Chemists) 4099011000036102 Ranitidine (Terry White Chemists) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +20241011000036100 Ranitidine (Terry White Chemists) 300 mg film-coated tablet, 30, blister pack 121978 13452011000036109 Ranitidine (Terry White Chemists) 300 mg film-coated tablet, 30 6734011000036100 Ranitidine (Terry White Chemists) 300 mg film-coated tablet 4099011000036102 Ranitidine (Terry White Chemists) 4099011000036102 Ranitidine (Terry White Chemists) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +989131000168101 Diarrhoea Relief (Blooms The Chemist) 2 mg hard capsule, 20, blister pack 253812 989121000168104 Diarrhoea Relief (Blooms The Chemist) 2 mg hard capsule, 20 989091000168103 Diarrhoea Relief (Blooms The Chemist) 2 mg hard capsule 989081000168101 Diarrhoea Relief (Blooms The Chemist) 989081000168101 Diarrhoea Relief (Blooms The Chemist) 87019011000036104 loperamide hydrochloride 2 mg capsule, 20 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +818811000168101 Quetiapine XR (Apo) 300 mg modified release tablet, 100, blister pack 226818 818801000168104 Quetiapine XR (Apo) 300 mg modified release tablet, 100 818731000168104 Quetiapine XR (Apo) 300 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51536011000036100 quetiapine 300 mg modified release tablet, 100 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +848881000168104 Itraconazole (Apo) 100 mg hard capsule, 6, blister pack 244473 848871000168102 Itraconazole (Apo) 100 mg hard capsule, 6 848781000168108 Itraconazole (Apo) 100 mg hard capsule 848771000168105 Itraconazole (Apo) 848771000168105 Itraconazole (Apo) 46363011000036109 itraconazole 100 mg capsule, 6 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +20316011000036109 PV Carpine 1% eye drops solution, 15 mL, bottle 75892 13525011000036105 PV Carpine 1% eye drops solution, 15 mL 6808011000036104 PV Carpine 1% eye drops solution 3091011000036103 PV Carpine 3091011000036103 PV Carpine 27788011000036104 pilocarpine hydrochloride 1% eye drops, 15 mL 23118011000036102 pilocarpine hydrochloride 1% eye drops 21254011000036109 pilocarpine +18141011000036101 Metformin Hydrochloride (Genepharm) 850 mg film-coated tablet, 60, blister pack 108667 11392011000036100 Metformin Hydrochloride (Genepharm) 850 mg film-coated tablet, 60 5943011000036106 Metformin Hydrochloride (Genepharm) 850 mg film-coated tablet 3243011000036100 Metformin Hydrochloride (Genepharm) 3243011000036100 Metformin Hydrochloride (Genepharm) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +923871011000036108 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet, 30, blister pack 163763 923416011000036101 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet, 30 923075011000036106 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 27841011000036104 lercanidipine hydrochloride 10 mg tablet, 30 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +780311000168109 Fentanyl (Apo) 50 microgram/hour patch, 7, sachet 152573 780301000168106 Fentanyl (Apo) 50 microgram/hour patch, 7 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235981000036107 fentanyl 50 microgram/hour patch, 7 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +131131000036104 Candesartan Cilexetil (Stada) 8 mg uncoated tablet, 30, blister pack 195475 128251000036108 Candesartan Cilexetil (Stada) 8 mg uncoated tablet, 30 125141000036109 Candesartan Cilexetil (Stada) 8 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +13051000036109 Quetiapine (Terry White Chemists) 300 mg film-coated tablet, 60, blister pack 166069 8121000036108 Quetiapine (Terry White Chemists) 300 mg film-coated tablet, 60 3561000036104 Quetiapine (Terry White Chemists) 300 mg film-coated tablet 491000036108 Quetiapine (Terry White Chemists) 491000036108 Quetiapine (Terry White Chemists) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +79018011000036102 Xarelto 10 mg film-coated tablet, 30, blister pack 147400 78833011000036100 Xarelto 10 mg film-coated tablet, 30 78644011000036107 Xarelto 10 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 79228011000036102 rivaroxaban 10 mg tablet, 30 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +659151000168102 Olanzapine ODT (AN) 10 mg orally disintegrating tablet, 28, blister pack 179081 659141000168104 Olanzapine ODT (AN) 10 mg orally disintegrating tablet, 28 659131000168108 Olanzapine ODT (AN) 10 mg orally disintegrating tablet 658541000168101 Olanzapine ODT (AN) 658541000168101 Olanzapine ODT (AN) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +37384011000036106 Citanest 0.5% (250 mg/50 mL) injection solution, 5 x 50 mL vials 12079 36709011000036106 Citanest 0.5% (250 mg/50 mL) injection solution, 5 x 50 mL vials 36145011000036109 Citanest 0.5% (250 mg/50 mL) injection solution, 50 mL vial 45001000168106 Citanest 45001000168106 Citanest 38622011000036109 prilocaine hydrochloride 0.5% (250 mg/50 mL) injection, 5 x 50 mL vials 37883011000036106 prilocaine hydrochloride 0.5% (250 mg/50 mL) injection, vial 37761011000036109 prilocaine +74818011000036102 Sebifin 250 mg uncoated tablet, 14, blister pack 149996 74305011000036109 Sebifin 250 mg uncoated tablet, 14 73788011000036104 Sebifin 250 mg uncoated tablet 73688011000036105 Sebifin 73688011000036105 Sebifin 75419011000036108 terbinafine 250 mg tablet, 14 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +988971000168108 Fexofenadine (Blooms The Chemist) 180 mg film-coated tablet, 10, blister pack 183644 988961000168102 Fexofenadine (Blooms The Chemist) 180 mg film-coated tablet, 10 988951000168104 Fexofenadine (Blooms The Chemist) 180 mg film-coated tablet 988941000168101 Fexofenadine (Blooms The Chemist) 988941000168101 Fexofenadine (Blooms The Chemist) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +19976011000036105 Cilex 250 mg hard capsule, 20, blister pack 67945 13219011000036109 Cilex 250 mg hard capsule, 20 6501011000036109 Cilex 250 mg hard capsule 3195011000036106 Cilex 3195011000036106 Cilex 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +19976011000036105 Cilex 250 mg hard capsule, 20, blister pack 144109 13219011000036109 Cilex 250 mg hard capsule, 20 6501011000036109 Cilex 250 mg hard capsule 3195011000036106 Cilex 3195011000036106 Cilex 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +767331000168100 Desvenlafaxine MR (Apo) 100 mg modified release tablet, 7, blister pack 227802 767321000168103 Desvenlafaxine MR (Apo) 100 mg modified release tablet, 7 767311000168105 Desvenlafaxine MR (Apo) 100 mg modified release tablet 765791000168105 Desvenlafaxine MR (Apo) 765791000168105 Desvenlafaxine MR (Apo) 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +985911000168105 Advil Double Strength Caplets 400 mg film-coated tablet, 10, blister pack 207376 985901000168107 Advil Double Strength Caplets 400 mg film-coated tablet, 10 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 985891000168108 ibuprofen 400 mg tablet, 10 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +82171000036105 Reedos 25 mg tablet, 56, bottle 187269 80661000036106 Reedos 25 mg tablet, 56 78791000036104 Reedos 25 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +82374011000036105 Coplavix 75 mg/100 mg film-coated tablet, 50, blister pack 150443 82163011000036109 Coplavix 75 mg/100 mg film-coated tablet, 50 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82551011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 50 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1073601000168101 Prochlorperazine Nausea Relief (Apo) 5 mg uncoated tablet, 5, blister pack 186540 1073591000168108 Prochlorperazine Nausea Relief (Apo) 5 mg uncoated tablet, 5 735931000168102 Prochlorperazine Nausea Relief (Apo) 5 mg uncoated tablet 735921000168100 Prochlorperazine Nausea Relief (Apo) 735921000168100 Prochlorperazine Nausea Relief (Apo) 795441000168107 prochlorperazine maleate 5 mg tablet, 5 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +667741000168102 Xelabine 150 mg film-coated tablet, 120, blister pack 213042 667731000168106 Xelabine 150 mg film-coated tablet, 120 667661000168106 Xelabine 150 mg film-coated tablet 667481000168100 Xelabine 667481000168100 Xelabine 667721000168108 capecitabine 150 mg tablet, 120 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +50540011000036109 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 28, blister pack 131918 49577011000036103 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 28 48778011000036103 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet 48261011000036105 Zolpidem Tartrate (Pharmacor) 48261011000036105 Zolpidem Tartrate (Pharmacor) 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1118551000168109 Quetin 100 mg film-coated tablet, 20, blister pack 204847 1118541000168107 Quetin 100 mg film-coated tablet, 20 1118531000168103 Quetin 100 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1049111000168109 Codphos 30 mg uncoated tablet, 20, blister pack 290336 1049101000168106 Codphos 30 mg uncoated tablet, 20 1049091000168101 Codphos 30 mg uncoated tablet 1049081000168104 Codphos 1049081000168104 Codphos 834811000168103 codeine phosphate hemihydrate 30 mg tablet, 20 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +61351011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 20, blister pack 81474 57276011000036106 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 20 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +81176011000036109 Robitussin Chesty Cough 200 mg soft capsule, 10, blister pack 74414 80678011000036100 Robitussin Chesty Cough 200 mg soft capsule, 10 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81733011000036108 guaifenesin 200 mg capsule, 10 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +681771000168102 Esomeprazole (Apotex) 20 mg enteric tablet, 7, blister pack 210849 681761000168108 Esomeprazole (Apotex) 20 mg enteric tablet, 7 681751000168106 Esomeprazole (Apotex) 20 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +59706011000036100 Diflucan One 150 mg hard capsule, 1, blister pack 100956 55653011000036100 Diflucan One 150 mg hard capsule, 1 53672011000036101 Diflucan One 150 mg hard capsule 700012181000036104 Diflucan One 700012181000036104 Diflucan One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +140921000036109 Rabeprazole Sodium (DRLA) 20 mg enteric tablet, 30, bottle 196566 139351000036108 Rabeprazole Sodium (DRLA) 20 mg enteric tablet, 30 137751000036103 Rabeprazole Sodium (DRLA) 20 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +762671000168109 Azadine 100 mg powder for injection, 1 vial 231512 762661000168103 Azadine 100 mg powder for injection, 1 vial 762651000168100 Azadine 100 mg powder for injection, 100 mg vial 762641000168102 Azadine 762641000168102 Azadine 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +1036341000168100 Aranesp with Automatic Needle Guard 200 microgram/0.4 mL injection solution, 0.4 mL syringe 166091 1036331000168109 Aranesp with Automatic Needle Guard 200 microgram/0.4 mL injection solution, 0.4 mL syringe 1036321000168106 Aranesp with Automatic Needle Guard 200 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983911000168106 darbepoetin alfa 200 microgram/0.4 mL injection, 0.4 mL syringe 983891000168109 darbepoetin alfa 200 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +1016191000168104 Aripiprazole (GX) 10 mg uncoated tablet, 250, bottle 217196 1016181000168102 Aripiprazole (GX) 10 mg uncoated tablet, 250 1016151000168109 Aripiprazole (GX) 10 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 1015711000168104 aripiprazole 10 mg tablet, 250 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +933211621000036106 Leflunomide (Apo) 10 mg film-coated tablet, 30, blister pack 129482 933200621000036103 Leflunomide (Apo) 10 mg film-coated tablet, 30 933194221000036109 Leflunomide (Apo) 10 mg film-coated tablet 32491000168102 Leflunomide (Apo) 32491000168102 Leflunomide (Apo) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +82031000036109 Cyproterone Acetate (PS) 50 mg uncoated tablet, 50, blister pack 184226 80581000036102 Cyproterone Acetate (PS) 50 mg uncoated tablet, 50 78481000036108 Cyproterone Acetate (PS) 50 mg uncoated tablet 77781000036100 Cyproterone Acetate (PS) 77781000036100 Cyproterone Acetate (PS) 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +791591000168103 Trexject 7.5 mg/0.15 mL injection solution, 12 x 0.15 mL syringes 233714 791581000168101 Trexject 7.5 mg/0.15 mL injection solution, 12 x 0.15 mL syringes 791471000168103 Trexject 7.5 mg/0.15 mL injection solution, 0.15 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791571000168104 methotrexate 7.5 mg/0.15 mL injection, 12 x 0.15 mL syringes 791461000168109 methotrexate 7.5 mg/0.15 mL injection, syringe 21342011000036105 methotrexate +44508011000036107 Chirocaine 75 mg/10 mL injection solution, 10 x 10 mL ampoules 76864 41963011000036102 Chirocaine 75 mg/10 mL injection solution, 10 x 10 mL ampoules 40291011000036109 Chirocaine 75 mg/10 mL injection solution, 10 mL ampoule 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46744011000036100 levobupivacaine 75 mg/10 mL injection, 10 x 10 mL ampoules 45296011000036109 levobupivacaine 75 mg/10 mL injection, ampoule 44881011000036100 levobupivacaine +955691000168104 Perindopril (Arrow) 2 mg uncoated tablet, 30, blister pack 129661 955681000168102 Perindopril (Arrow) 2 mg uncoated tablet, 30 955671000168100 Perindopril (Arrow) 2 mg uncoated tablet 955381000168108 Perindopril (Arrow) 955381000168108 Perindopril (Arrow) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +44459011000036104 Clexane Forte 120 mg/0.8 mL injection solution, 8 x 0.8 mL syringes 74173 41915011000036100 Clexane Forte 120 mg/0.8 mL injection solution, 8 x 0.8 mL syringes 40262011000036101 Clexane Forte 120 mg/0.8 mL injection solution, 0.8 mL syringe 8871000168107 Clexane Forte 8871000168107 Clexane Forte 46704011000036109 enoxaparin sodium 120 mg/0.8 mL injection, 8 x 0.8 mL syringes 45275011000036108 enoxaparin sodium 120 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +933214491000036105 Sodium Chloride (B Braun) 0.9% (90 mg/10 mL) injection solution, 20 x 10 mL ampoules 154965 933202271000036103 Sodium Chloride (B Braun) 0.9% (90 mg/10 mL) injection solution, 20 x 10 mL ampoules 933195071000036103 Sodium Chloride (B Braun) 0.9% (90 mg/10 mL) injection solution, 10 mL ampoule 78605011000036104 Sodium Chloride (B Braun) 78605011000036104 Sodium Chloride (B Braun) 933202281000036101 sodium chloride 0.9% (90 mg/10 mL) injection, 20 x 10 mL ampoules 22582011000036104 sodium chloride 0.9% (90 mg/10 mL) injection, ampoule 21308011000036103 sodium chloride +664731000168100 Cold and Flu Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 59899 664721000168103 Cold and Flu Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24 664671000168106 Cold and Flu Day and Night (Day) (Pharmacist) uncoated tablet 664491000168109 Cold and Flu Day and Night (Pharmacist) 664621000168105 Cold and Flu Day and Night (Day) (Pharmacist) 664711000168105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +664731000168100 Cold and Flu Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 59899 664721000168103 Cold and Flu Day and Night (Pharmacist) (16 x Day tablets, 8 x Night tablets), 24 664701000168107 Cold and Flu Day and Night (Night) (Pharmacist) uncoated tablet 664491000168109 Cold and Flu Day and Night (Pharmacist) 664661000168100 Cold and Flu Day and Night (Night) (Pharmacist) 664711000168105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [8], 24 664691000168107 pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet 664681000168109 pseudoephedrine + paracetamol + triprolidine +880781000168102 Bupivacaine (Claris) 0.25% (50 mg/20 mL) injection solution, 5 x 20 mL vials 223236 880771000168100 Bupivacaine (Claris) 0.25% (50 mg/20 mL) injection solution, 5 x 20 mL vials 880681000168107 Bupivacaine (Claris) 0.25% (50 mg/20 mL) injection solution, 20 mL vial 879561000168104 Bupivacaine (Claris) 879561000168104 Bupivacaine (Claris) 38579011000036108 bupivacaine hydrochloride 0.25% (50 mg/20 mL) injection, 5 x 20 mL vials 37852011000036106 bupivacaine hydrochloride 0.25% (50 mg/20 mL) injection, vial 37702011000036102 bupivacaine +18003011000036103 Amisulpride (Winthrop) 200 mg uncoated tablet, 60, blister pack 125174 11792011000036104 Amisulpride (Winthrop) 200 mg uncoated tablet, 60 4517011000036108 Amisulpride (Winthrop) 200 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +1065241000168106 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 20, blister pack 294343 1065231000168102 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 20 1065171000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 63139011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 20 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +19135011000036103 Otodex ear drops, 8 mL, bottle 43840 12436011000036103 Otodex ear drops, 8 mL 5254011000036105 Otodex ear drops 3634011000036102 Otodex 3634011000036102 Otodex 27119011000036100 framycetin sulfate 0.5% + gramicidin 0.005% + dexamethasone 0.05% ear drops, 8 mL 22485011000036104 framycetin sulfate 0.5% + gramicidin 0.005% + dexamethasone 0.05% ear drops 21593011000036109 framycetin sulfate + gramicidin + dexamethasone +1108361000168102 Midazolam (Claris) 15 mg/3 mL injection solution, 25 x 3 mL ampoules 216026 1108351000168104 Midazolam (Claris) 15 mg/3 mL injection solution, 25 x 3 mL ampoules 1108261000168106 Midazolam (Claris) 15 mg/3 mL injection solution, 3 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 1108341000168101 midazolam 15 mg/3 mL injection, 25 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +853451000168103 Alphastat 40 mg film-coated tablet, 7, blister pack 212163 853441000168100 Alphastat 40 mg film-coated tablet, 7 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 853431000168109 rosuvastatin 40 mg tablet, 7 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +853451000168103 Alphastat 40 mg film-coated tablet, 7, blister pack 187387 853441000168100 Alphastat 40 mg film-coated tablet, 7 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 853431000168109 rosuvastatin 40 mg tablet, 7 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +44750011000036101 Nexium IV 40 mg powder for injection, 10 vials 96678 42195011000036102 Nexium IV 40 mg powder for injection, 10 vials 40384011000036102 Nexium IV 40 mg powder for injection, 40 mg vial 58951000168101 Nexium IV 58951000168101 Nexium IV 46955011000036109 esomeprazole 40 mg injection, 10 vials 45357011000036106 esomeprazole 40 mg injection, vial 21697011000036107 esomeprazole +37675011000036105 Daivonex Scalp 0.005% solution, 30 mL, bottle 63268 36941011000036105 Daivonex Scalp 0.005% solution, 30 mL 36272011000036104 Daivonex Scalp 0.005% solution 56621000168101 Daivonex Scalp 56621000168101 Daivonex Scalp 38822011000036100 calcipotriol 0.005% solution, 30 mL 38032011000036103 calcipotriol 0.005% solution 21829011000036100 calcipotriol +19786011000036105 Dothep 75 mg film-coated tablet, 30, blister pack 62910 13044011000036106 Dothep 75 mg film-coated tablet, 30 6330011000036106 Dothep 75 mg film-coated tablet 3854011000036109 Dothep 3854011000036109 Dothep 27514011000036108 dosulepin (dothiepin) hydrochloride 75 mg tablet, 30 22856011000036109 dosulepin (dothiepin) hydrochloride 75 mg tablet 21722011000036107 dosulepin (dothiepin) +749851000168102 Tacrolimus (CH) 1 mg hard capsule, 100, blister pack 224281 749841000168104 Tacrolimus (CH) 1 mg hard capsule, 100 749791000168102 Tacrolimus (CH) 1 mg hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +1049431000168108 Paramax Forte 500/30 tablet, 10, blister pack 220979 1049421000168105 Paramax Forte 500/30 tablet, 10 1049341000168106 Paramax Forte 500/30 tablet 1049251000168103 Paramax Forte 500/30 1049251000168103 Paramax Forte 500/30 1047321000168108 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 10 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +77209011000036106 Aquae Dry Mouth 10 mg/mL oral spray, 100 mL, bottle 135700 76625011000036104 Aquae Dry Mouth 10 mg/mL oral spray, 100 mL 76071011000036109 Aquae Dry Mouth 10 mg/mL oral spray 11651000168107 Aquae Dry Mouth 11651000168107 Aquae Dry Mouth 78178011000036102 carmellose sodium 10 mg/mL oral spray, 100 mL 77530011000036102 carmellose sodium 10 mg/mL oral spray 35688011000036105 carmellose sodium +37433011000036109 Xylocaine 2% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 12021 36694011000036102 Xylocaine 2% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 36077011000036108 Xylocaine 2% with Adrenaline 1 in 200 000 injection solution, 20 mL vial 54131000168104 Xylocaine 2% with Adrenaline 1 in 200 000 54131000168104 Xylocaine 2% with Adrenaline 1 in 200 000 38607011000036100 lidocaine (lignocaine) hydrochloride 2% (400 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, 5 x 20 mL vials 37874011000036104 lidocaine (lignocaine) hydrochloride 2% (400 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, vial 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +1039241000168101 Atorvastatin (GA) 40 mg film-coated tablet, 40, blister pack 178532 1039231000168105 Atorvastatin (GA) 40 mg film-coated tablet, 40 1039161000168108 Atorvastatin (GA) 40 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841721000168101 atorvastatin 40 mg tablet, 40 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +736741000168102 Spren 100 mg uncoated tablet, 200, bottle 201237 736731000168106 Spren 100 mg uncoated tablet, 200 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 736721000168108 aspirin 100 mg tablet, 200 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +156931000036106 Enalapril Maleate (Apo) 5 mg tablet, 30, blister pack 196472 155961000036109 Enalapril Maleate (Apo) 5 mg tablet, 30 154691000036109 Enalapril Maleate (Apo) 5 mg tablet 154461000036100 Enalapril Maleate (Apo) 154461000036100 Enalapril Maleate (Apo) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +131281000036107 Candesartan Cilexetil (GA) 4 mg uncoated tablet, 30, blister pack 195506 128351000036104 Candesartan Cilexetil (GA) 4 mg uncoated tablet, 30 125131000036104 Candesartan Cilexetil (GA) 4 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +903811000168104 Celocox 200 mg hard capsule, 10, blister pack 212792 903801000168102 Celocox 200 mg hard capsule, 10 903791000168103 Celocox 200 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +970201000168104 Lypralin 25 mg hard capsule, 14, blister pack 235874 970191000168102 Lypralin 25 mg hard capsule, 14 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +981671000168105 Relpax 20 mg film-coated tablet, 30, bottle 68355 981661000168104 Relpax 20 mg film-coated tablet, 30 981641000168103 Relpax 20 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 981651000168101 eletriptan 20 mg tablet, 30 981631000168107 eletriptan 20 mg tablet 920818011000036107 eletriptan +933211301000036105 Roflo 750 mg film-coated tablet, 8, blister pack 125324 933200501000036109 Roflo 750 mg film-coated tablet, 8 933194351000036107 Roflo 750 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 87798011000036108 ciprofloxacin 750 mg tablet, 8 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +1053681000168107 Actiq 400 microgram lozenge on handle, 6, blister pack 91600 1053671000168109 Actiq 400 microgram lozenge on handle, 6 34076011000036100 Actiq 400 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053661000168103 fentanyl 400 microgram lozenge on handle, 6 34911011000036105 fentanyl 400 microgram lozenge on handle 21258011000036102 fentanyl +928883011000036103 Enalapril Maleate (GH) 20 mg uncoated tablet, 30, blister pack 142948 928245011000036102 Enalapril Maleate (GH) 20 mg uncoated tablet, 30 927900011000036107 Enalapril Maleate (GH) 20 mg uncoated tablet 927800011000036101 Enalapril Maleate (GH) 927800011000036101 Enalapril Maleate (GH) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +926831011000036100 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 30, blister pack 176510 926227011000036100 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 30 925685011000036101 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +165611000036107 Tasigna 200 mg hard capsule, 120, blister pack 133086 163661000036105 Tasigna 200 mg hard capsule, 120 39204011000036106 Tasigna 200 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 163671000036102 nilotinib 200 mg capsule, 120 39436011000036107 nilotinib 200 mg capsule 39428011000036108 nilotinib +20103011000036106 Neurontin 600 mg film-coated tablet, 100, blister pack 71793 13328011000036102 Neurontin 600 mg film-coated tablet, 100 6614011000036101 Neurontin 600 mg film-coated tablet 4344011000036106 Neurontin 4344011000036106 Neurontin 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +18305011000036103 Ordine 10 mg/mL oral liquid solution, 200 mL, bottle 150222 11384011000036105 Ordine 10 mg/mL oral liquid solution, 200 mL 4660011000036104 Ordine 10 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 26627011000036101 morphine hydrochloride trihydrate 10 mg/mL oral liquid, 200 mL 22033011000036101 morphine hydrochloride trihydrate 10 mg/mL oral liquid 21252011000036100 morphine +18305011000036103 Ordine 10 mg/mL oral liquid solution, 200 mL, bottle 10780 11384011000036105 Ordine 10 mg/mL oral liquid solution, 200 mL 4660011000036104 Ordine 10 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 26627011000036101 morphine hydrochloride trihydrate 10 mg/mL oral liquid, 200 mL 22033011000036101 morphine hydrochloride trihydrate 10 mg/mL oral liquid 21252011000036100 morphine +20541011000036106 Klacid 250 mg film-coated tablet, 100, bottle 79576 13738011000036100 Klacid 250 mg film-coated tablet, 100 7020011000036105 Klacid 250 mg film-coated tablet 3147011000036106 Klacid 3147011000036106 Klacid 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +852011000168104 Olmesartan HCT 20/12.5 (Myl) film-coated tablet, 10, blister pack 273576 852001000168102 Olmesartan HCT 20/12.5 (Myl) film-coated tablet, 10 851981000168102 Olmesartan HCT 20/12.5 (Myl) film-coated tablet 851971000168100 Olmesartan HCT 20/12.5 (Myl) 851971000168100 Olmesartan HCT 20/12.5 (Myl) 851991000168104 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 10 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +68806011000036102 Laxettes 12 mg film-coated tablet, 50, blister pack 12817 66710011000036106 Laxettes 12 mg film-coated tablet, 50 65217011000036104 Laxettes 12 mg film-coated tablet 64991011000036102 Laxettes 64991011000036102 Laxettes 71393011000036104 sennosides A and B 12 mg tablet, 50 69992011000036109 sennosides A and B 12 mg tablet 69834011000036104 sennosides A and B +931758011000036109 Robitussin Chesty Cough Forte oral liquid solution, 200 mL, bottle 76032 930918011000036100 Robitussin Chesty Cough Forte oral liquid solution, 200 mL 930119011000036106 Robitussin Chesty Cough Forte oral liquid solution, 10 mL 44071000168100 Robitussin Chesty Cough Forte 44071000168100 Robitussin Chesty Cough Forte 63947011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 200 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +901001000168107 Capex 150 mg film-coated tablet, 30, blister pack 213040 900991000168106 Capex 150 mg film-coated tablet, 30 900981000168108 Capex 150 mg film-coated tablet 900971000168105 Capex 900971000168105 Capex 667671000168100 capecitabine 150 mg tablet, 30 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +971571000168100 Bosentan (Apo) 62.5 mg film-coated tablet, 60, blister pack 271512 971561000168106 Bosentan (Apo) 62.5 mg film-coated tablet, 60 971551000168109 Bosentan (Apo) 62.5 mg film-coated tablet 971541000168107 Bosentan (Apo) 971541000168107 Bosentan (Apo) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +748321000168107 Morphine MR (CH) 30 mg modified release tablet, 20, blister pack 225430 748311000168100 Morphine MR (CH) 30 mg modified release tablet, 20 748301000168103 Morphine MR (CH) 30 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 27107011000036109 morphine sulfate pentahydrate 30 mg modified release tablet, 20 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +43929011000036100 Ozlodip 5 mg uncoated tablet, 30, blister pack 141652 41421011000036107 Ozlodip 5 mg uncoated tablet, 30 39930011000036107 Ozlodip 5 mg uncoated tablet 39615011000036105 Ozlodip 39615011000036105 Ozlodip 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +650381000168101 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 28, blister pack 202108 650371000168104 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 28 650321000168100 Pritor/Amlodipine 80 mg/5 mg multilayer tablet 650241000168100 Pritor/Amlodipine 80 mg/5 mg 650241000168100 Pritor/Amlodipine 80 mg/5 mg 932422011000036104 telmisartan 80 mg + amlodipine 5 mg tablet, 28 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +30571000036107 Ibuprofen Migraine Pain (Medichoice) 200 mg soft capsule, 20, blister pack 176201 28711000036108 Ibuprofen Migraine Pain (Medichoice) 200 mg soft capsule, 20 26771000036103 Ibuprofen Migraine Pain (Medichoice) 200 mg soft capsule 40411000168106 Ibuprofen Migraine Pain (Medichoice) 40411000168106 Ibuprofen Migraine Pain (Medichoice) 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +20299011000036105 Diclocil 500 mg capsule, 24, blister pack 75592 13508011000036107 Diclocil 500 mg capsule, 24 6790011000036101 Diclocil 500 mg capsule 4083011000036104 Diclocil 4083011000036104 Diclocil 27777011000036108 dicloxacillin 500 mg capsule, 24 23107011000036101 dicloxacillin 500 mg capsule 21398011000036101 dicloxacillin +669071000168103 Macrovic powder for oral liquid, 8 sachets 220583 669061000168109 Macrovic powder for oral liquid, 8 sachets 669011000168106 Macrovic powder for oral liquid, sachet 668291000168102 Macrovic 668291000168102 Macrovic 669051000168107 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +60994011000036101 Telfast 180 mg film-coated tablet, 20, blister pack 63338 56937011000036106 Telfast 180 mg film-coated tablet, 20 54129011000036105 Telfast 180 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1024891000168108 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 20, blister pack 193300 1024881000168105 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 20 1024851000168103 Pregabalin (Blooms The Chemist) 75 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +923790011000036106 Cephazolin (Alphapharm) 1 g powder for injection, 5 vials 154639 923350011000036100 Cephazolin (Alphapharm) 1 g powder for injection, 5 vials 923025011000036107 Cephazolin (Alphapharm) 1 g powder for injection, vial 922923011000036109 Cephazolin (Alphapharm) 922923011000036109 Cephazolin (Alphapharm) 32938011000036104 cefazolin 1 g injection, 5 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +85321000036104 Lucassin 850 microgram powder for injection, 1 vial 176845 84471000036108 Lucassin 850 microgram powder for injection, 1 vial 84021000036102 Lucassin 850 microgram powder for injection, 850 microgram vial 84001000036107 Lucassin 84001000036107 Lucassin 84481000036105 terlipressin 850 microgram injection, 1 vial 84031000036100 terlipressin 850 microgram injection, vial 85671000036109 terlipressin +1047901000168100 Buprenorphine (Sandoz) 20 microgram/hour patch, 4, sachet 269678 1047891000168104 Buprenorphine (Sandoz) 20 microgram/hour patch, 4 1047821000168101 Buprenorphine (Sandoz) 20 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046591000168104 buprenorphine 20 microgram/hour patch, 4 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +670521000168107 Amlodipine/Atorvastatin 5/10 (Blooms The Chemist) film-coated tablet, 30, blister pack 214394 670511000168100 Amlodipine/Atorvastatin 5/10 (Blooms The Chemist) film-coated tablet, 30 670501000168103 Amlodipine/Atorvastatin 5/10 (Blooms The Chemist) film-coated tablet 670491000168105 Amlodipine/Atorvastatin 5/10 (Blooms The Chemist) 670491000168105 Amlodipine/Atorvastatin 5/10 (Blooms The Chemist) 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +61397011000036107 Strong Pain Relief (Pharmacy Health) uncoated tablet, 96, blister pack 82020 57322011000036102 Strong Pain Relief (Pharmacy Health) uncoated tablet, 96 54272011000036101 Strong Pain Relief (Pharmacy Health) uncoated tablet 52395011000036100 Strong Pain Relief (Pharmacy Health) 52395011000036100 Strong Pain Relief (Pharmacy Health) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +1066611000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 10, blister pack 197884 1066601000168102 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 10 1066591000168109 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +921291000168103 Ciaxone 500 mg film-coated tablet, 14, blister pack 90909 921281000168101 Ciaxone 500 mg film-coated tablet, 14 921271000168104 Ciaxone 500 mg film-coated tablet 921121000168109 Ciaxone 921121000168109 Ciaxone 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +135701000036109 Palexia SR 250 mg modified release tablet, 28, blister pack 165357 135091000036104 Palexia SR 250 mg modified release tablet, 28 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 135101000036108 tapentadol 250 mg modified release tablet, 28 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +693721000168103 Velphoro 2.5 g (iron 500 mg) chewable tablet, 30, bottle 216702 693671000168106 Velphoro 2.5 g (iron 500 mg) chewable tablet, 30 693651000168102 Velphoro 2.5 g (iron 500 mg) chewable tablet 693111000168106 Velphoro 693111000168106 Velphoro 693661000168100 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet, 30 693641000168104 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet 693631000168108 iron +18982011000036104 Flopen 1 g powder for injection, 5 vials 29399 12290011000036106 Flopen 1 g powder for injection, 5 vials 4897011000036108 Flopen 1 g powder for injection, vial 3750011000036102 Flopen 3750011000036102 Flopen 28101011000036108 flucloxacillin 1 g injection, 5 vials 23409011000036107 flucloxacillin 1 g injection, vial 21623011000036108 flucloxacillin +925242011000036102 Rispericor 3 mg film-coated tablet, 60, blister pack 159978 924779011000036108 Rispericor 3 mg film-coated tablet, 60 924477011000036106 Rispericor 3 mg film-coated tablet 45561000168103 Rispericor 45561000168103 Rispericor 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +19152011000036107 Odrik 500 microgram hard capsule, 28, blister pack 45486 12451011000036107 Odrik 500 microgram hard capsule, 28 5290011000036105 Odrik 500 microgram hard capsule 3036011000036103 Odrik 3036011000036103 Odrik 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +830271000168102 Atomoxetine (Apo) 60 mg hard capsule, 28, blister pack 234788 830261000168108 Atomoxetine (Apo) 60 mg hard capsule, 28 830201000168107 Atomoxetine (Apo) 60 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +813191000168107 Nuromol film-coated tablet, 16, blister pack 225322 813181000168109 Nuromol film-coated tablet, 16 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813171000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 16 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +988811000168106 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 100, blister pack 135089 988801000168108 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 100 988691000168101 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet 988681000168104 Paracetamol (Blooms The Chemist) 988681000168104 Paracetamol (Blooms The Chemist) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18910011000036101 Progesterone (Orion) 200 mg moulded pessary, 15, jar 21195 12218011000036109 Progesterone (Orion) 200 mg moulded pessary, 15 5277011000036102 Progesterone (Orion) 200 mg moulded pessary 3508011000036108 Progesterone (Orion) 3508011000036108 Progesterone (Orion) 26989011000036100 progesterone 200 mg pessary, 15 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +1109811000168103 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 2, blister pack 219061 1109801000168101 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 2 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82546011000036103 clopidogrel 75 mg + aspirin 100 mg tablet, 2 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +669151000168106 Macrovic Flavoured Lemon powder for oral liquid, 8 sachets 220581 669141000168109 Macrovic Flavoured Lemon powder for oral liquid, 8 sachets 669111000168105 Macrovic Flavoured Lemon powder for oral liquid, sachet 668291000168102 Macrovic 668291000168102 Macrovic 669051000168107 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +836131000168108 Codalgin uncoated tablet, 40, blister pack 13440 836121000168105 Codalgin uncoated tablet, 40 836011000168102 Codalgin uncoated tablet 3521011000036109 Codalgin 3521011000036109 Codalgin 652931000168102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +19273011000036100 Diflucan 100 mg hard capsule, 28, blister pack 48401 12563011000036109 Diflucan 100 mg hard capsule, 28 5931011000036109 Diflucan 100 mg hard capsule 11811000168107 Diflucan 11811000168107 Diflucan 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +24311000036101 Cadatin 5/10 film-coated tablet, 30, blister pack 179136 22711000036105 Cadatin 5/10 film-coated tablet, 30 20091000036104 Cadatin 5/10 film-coated tablet 51111000168107 Cadatin 5/10 51111000168107 Cadatin 5/10 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +44597011000036108 Vfend 50 mg film-coated tablet, 50, blister pack 82507 42050011000036108 Vfend 50 mg film-coated tablet, 50 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46818011000036102 voriconazole 50 mg tablet, 50 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +44355011000036109 Reductil 10 mg hard capsule, 7, blister pack 68115 41822011000036108 Reductil 10 mg hard capsule, 7 40214011000036106 Reductil 10 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46628011000036103 sibutramine hydrochloride 10 mg capsule, 7 45245011000036107 sibutramine hydrochloride 10 mg capsule 44877011000036100 sibutramine +37692011000036107 Ebixa 10 mg film-coated tablet, 14, blister pack 82026 36958011000036104 Ebixa 10 mg film-coated tablet, 14 36282011000036108 Ebixa 10 mg film-coated tablet 19751000168102 Ebixa 19751000168102 Ebixa 38839011000036107 memantine hydrochloride 10 mg tablet, 14 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +762831000168105 Oxycodone MR (Chemmart) 30 mg modified release tablet, 20, blister pack 214500 762821000168107 Oxycodone MR (Chemmart) 30 mg modified release tablet, 20 762811000168100 Oxycodone MR (Chemmart) 30 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +673411000168109 Olysio 150 mg hard capsule, 7, blister pack 211697 673401000168106 Olysio 150 mg hard capsule, 7 673381000168106 Olysio 150 mg hard capsule 673341000168101 Olysio 673341000168101 Olysio 673391000168109 simeprevir 150 mg capsule, 7 673371000168108 simeprevir 150 mg capsule 673361000168102 simeprevir +17850011000036109 Ransim 20 mg film-coated tablet, 30, blister pack 120612 11644011000036109 Ransim 20 mg film-coated tablet, 30 5320011000036105 Ransim 20 mg film-coated tablet 4405011000036105 Ransim 4405011000036105 Ransim 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +883841000168108 Betahistine (Actavis) 16 mg tablet, 10, blister pack 231719 883831000168104 Betahistine (Actavis) 16 mg tablet, 10 883821000168102 Betahistine (Actavis) 16 mg tablet 883671000168100 Betahistine (Actavis) 883671000168100 Betahistine (Actavis) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +50626011000036102 Risperidone (Generic Health) 2 mg film-coated tablet, 60, blister pack 139813 49652011000036105 Risperidone (Generic Health) 2 mg film-coated tablet, 60 48800011000036107 Risperidone (Generic Health) 2 mg film-coated tablet 48406011000036100 Risperidone (Generic Health) 48406011000036100 Risperidone (Generic Health) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +849041000168105 Itracap 100 mg hard capsule, 4, blister pack 244472 849031000168101 Itracap 100 mg hard capsule, 4 849021000168104 Itracap 100 mg hard capsule 849011000168106 Itracap 849011000168106 Itracap 46362011000036102 itraconazole 100 mg capsule, 4 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +44159011000036100 Differin 0.1% gel, 5 g, tube 53918 41635011000036109 Differin 0.1% gel, 5 g 40114011000036108 Differin 0.1% gel 39740011000036103 Differin 39740011000036103 Differin 46454011000036108 adapalene 0.1% gel, 5 g 45163011000036103 adapalene 0.1% gel 44932011000036106 adapalene +779991000168104 Fentanyl (Apo) 25 microgram/hour patch, 1, sachet 152574 779981000168102 Fentanyl (Apo) 25 microgram/hour patch, 1 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235721000036108 fentanyl 25 microgram/hour patch, 1 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +925229011000036109 Letraccord 2.5 mg film-coated tablet, 30, blister pack 159227 924766011000036109 Letraccord 2.5 mg film-coated tablet, 30 924465011000036105 Letraccord 2.5 mg film-coated tablet 924397011000036109 Letraccord 924397011000036109 Letraccord 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +60582011000036104 Expectorant Mixture (Amcal) oral liquid solution, 200 mL, bottle 15768 56540011000036102 Expectorant Mixture (Amcal) oral liquid solution, 200 mL 53962011000036107 Expectorant Mixture (Amcal) oral liquid solution, 5 mL 42831000168103 Expectorant Mixture (Amcal) 42831000168103 Expectorant Mixture (Amcal) 63406011000036106 diphenhydramine hydrochloride 15 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 200 mL 61945011000036103 diphenhydramine hydrochloride 15 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +39369011000036101 Gabatine 100 mg capsule, 100, blister pack 107472 39253011000036101 Gabatine 100 mg capsule, 100 39217011000036102 Gabatine 100 mg capsule 39179011000036102 Gabatine 39179011000036102 Gabatine 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +152521000036104 Crampeze Night Cramps Forte film-coated tablet, 60, blister pack 202870 150861000036105 Crampeze Night Cramps Forte film-coated tablet, 60 148411000036106 Crampeze Night Cramps Forte film-coated tablet 147771000036109 Crampeze Night Cramps Forte 147771000036109 Crampeze Night Cramps Forte 150871000036102 rutoside 250 mg + magnesium (as oxide heavy) 150 mg + feverfew 150 mg + copper + calcium pantothenate 20 mg + nicotinamide 20 mg + thiamine hydrochloride 20 mg + d-alpha-tocopheryl acid succinate 150 units + colecalciferol 400 units tablet, 60 148421000036104 rutoside 250 mg + magnesium (as oxide heavy) 150 mg + feverfew 150 mg + copper + calcium pantothenate 20 mg + nicotinamide 20 mg + thiamine hydrochloride 20 mg + d-alpha-tocopheryl acid succinate 150 units + colecalciferol 400 units tablet 152611000036105 rutoside + magnesium oxide heavy + feverfew + copper + calcium pantothenate + nicotinamide + thiamine + d-alpha-tocopheryl acid succinate + colecalciferol +131371000036104 Dificid 200 mg film-coated tablet, 60, bottle 195623 128441000036109 Dificid 200 mg film-coated tablet, 60 125201000036101 Dificid 200 mg film-coated tablet 123661000036104 Dificid 123661000036104 Dificid 128451000036107 fidaxomicin 200 mg tablet, 60 125211000036104 fidaxomicin 200 mg tablet 132111000036100 fidaxomicin +1020391000168107 Aripiprazole (WT) 2 mg uncoated tablet, 30, blister pack 217209 1020381000168109 Aripiprazole (WT) 2 mg uncoated tablet, 30 1020371000168106 Aripiprazole (WT) 2 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +831881000168107 Cosentyx 150 mg/mL injection solution, 1 mL injection device 218800 831871000168109 Cosentyx 150 mg/mL injection solution, 1 mL injection device 713431000168101 Cosentyx 150 mg/mL injection solution, injection device 707151000168107 Cosentyx 707151000168107 Cosentyx 831861000168103 secukinumab 150 mg/mL injection, 1 mL injection device 713421000168104 secukinumab 150 mg/mL injection, injection device 707171000168103 secukinumab +978701000168105 Brevoxyl Creamy Wash 4% cream, 200 mL, tube 117862 978691000168105 Brevoxyl Creamy Wash 4% cream, 200 mL 978551000168101 Brevoxyl Creamy Wash 4% cream 978541000168103 Brevoxyl Creamy Wash 978541000168103 Brevoxyl Creamy Wash 978681000168107 benzoyl peroxide 4% cream, 200 mL 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +710801000168103 Regaine Men's Extra Strength 5% foam, 3 x 63 mL, aerosol cans 159465 710791000168104 Regaine Men's Extra Strength 5% foam, 3 x 63 mL 710761000168106 Regaine Men's Extra Strength 5% foam 45451000168101 Regaine Men's Extra Strength 45451000168101 Regaine Men's Extra Strength 932396011000036101 minoxidil 5% foam, 3 x 63 mL 931846011000036106 minoxidil 5% foam 21642011000036104 minoxidil +84382011000036101 Loratadine (Pharmacy Health) 10 mg uncoated tablet, 30, blister pack 167461 84074011000036102 Loratadine (Pharmacy Health) 10 mg uncoated tablet, 30 83696011000036108 Loratadine (Pharmacy Health) 10 mg uncoated tablet 83600011000036108 Loratadine (Pharmacy Health) 83600011000036108 Loratadine (Pharmacy Health) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +899471000168100 Fluquadri 2017 injection suspension, 10 x 0.5 mL syringes 213963 899461000168106 Fluquadri 2017 injection suspension, 10 x 0.5 mL syringes 899411000168108 Fluquadri 2017 injection suspension, 0.5 mL syringe 899321000168106 Fluquadri 2017 899321000168106 Fluquadri 2017 899451000168109 influenza quadrivalent adult vaccine 2017 injection, 10 x 0.5 mL syringes 899401000168105 influenza quadrivalent adult vaccine 2017 injection, 0.5 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +1040611000168106 Antibacterial Lozenges (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack 210129 1040601000168108 Antibacterial Lozenges (Amcal) Menthol and Eucalyptus lozenge, 16 1040591000168101 Antibacterial Lozenges (Amcal) Menthol and Eucalyptus lozenge 1040581000168104 Antibacterial Lozenges (Amcal) 1040581000168104 Antibacterial Lozenges (Amcal) 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +986071000168105 Candacort cream, 30 g, tube 240672 986061000168104 Candacort cream, 30 g 986051000168101 Candacort cream 986041000168103 Candacort 986041000168103 Candacort 38541011000036108 hydrocortisone 1% + clotrimazole 1% cream, 30 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +920770011000036100 Relpax 80 mg film-coated tablet, 4, blister pack 68358 920449011000036103 Relpax 80 mg film-coated tablet, 4 920187011000036102 Relpax 80 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 920866011000036109 eletriptan 80 mg tablet, 4 920829011000036109 eletriptan 80 mg tablet 920818011000036107 eletriptan +131361000036107 Dificid 200 mg film-coated tablet, 20, bottle 195623 128421000036101 Dificid 200 mg film-coated tablet, 20 125201000036101 Dificid 200 mg film-coated tablet 123661000036104 Dificid 123661000036104 Dificid 128431000036104 fidaxomicin 200 mg tablet, 20 125211000036104 fidaxomicin 200 mg tablet 132111000036100 fidaxomicin +931453011000036106 Ranitidine (GA) 150 mg film-coated tablet, 28, blister pack 148518 930632011000036105 Ranitidine (GA) 150 mg film-coated tablet, 28 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +68668011000036108 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 1.1 kg, jar 10184 66480011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 1.1 kg 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71213011000036108 psyllium husk powder 312.8 mg/g powder for oral liquid, 1.1 kg 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +1105621000168108 Valpam 2 mg uncoated tablet, 30, blister pack 80809 1105491000168107 Valpam 2 mg uncoated tablet, 30 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 32773011000036101 diazepam 2 mg tablet, 30 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +980311000168102 Murelax 15 mg uncoated tablet, 25, blister pack 75122 980301000168100 Murelax 15 mg uncoated tablet, 25 980261000168108 Murelax 15 mg uncoated tablet 3531011000036106 Murelax 3531011000036106 Murelax 32769011000036106 oxazepam 15 mg tablet, 25 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +697971000168109 Zilfojim ODT 4 mg orally disintegrating tablet, 10, blister pack 196804 697961000168103 Zilfojim ODT 4 mg orally disintegrating tablet, 10 697931000168106 Zilfojim ODT 4 mg orally disintegrating tablet 697891000168103 Zilfojim ODT 697891000168103 Zilfojim ODT 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +165521000036101 Carbzero oral liquid emulsion, 18 x 250 mL cartons 163561000036106 Carbzero oral liquid emulsion, 18 x 250 mL cartons 458851000168104 Carbzero oral liquid emulsion, 250 mL carton 161911000036100 Carbzero 161911000036100 Carbzero 163571000036103 long chain triglycerides oral liquid, 18 x 250 mL cartons 458631000168106 long chain triglycerides oral liquid, 250 mL carton 166271000036107 long chain triglycerides +933211381000036104 Roflo 250 mg film-coated tablet, 20, blister pack 125322 933200391000036107 Roflo 250 mg film-coated tablet, 20 933194331000036104 Roflo 250 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 932363011000036105 ciprofloxacin 250 mg tablet, 20 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +928824011000036106 Ibuprofen Children's (Chemmart) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 116311 928183011000036109 Ibuprofen Children's (Chemmart) 100 mg/5 mL oral liquid suspension, 200 mL 927838011000036105 Ibuprofen Children's (Chemmart) 100 mg/5 mL oral liquid suspension, 5 mL 48311000168104 Ibuprofen Children's (Chemmart) 48311000168104 Ibuprofen Children's (Chemmart) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +932621000168109 Fluoride (Laclede) Panda Punch Flavour foam, 165 mL, aerosol can 90268 932611000168102 Fluoride (Laclede) Panda Punch Flavour foam, 165 mL 932601000168100 Fluoride (Laclede) Panda Punch Flavour foam 932331000168103 Fluoride (Laclede) 932331000168103 Fluoride (Laclede) 932361000168106 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL 932341000168107 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam 61768011000036106 fluoride +938371000168102 Mouth Ulcer Gel (Nyal) oral gel, 10 g, tube 16132 938361000168108 Mouth Ulcer Gel (Nyal) oral gel, 10 g 938351000168106 Mouth Ulcer Gel (Nyal) oral gel 938341000168109 Mouth Ulcer Gel (Nyal) 938341000168109 Mouth Ulcer Gel (Nyal) 936651000168102 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g 936631000168108 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel 69880011000036101 salicylic acid + benzalkonium chloride + ethanol +1057931000168109 Valpro EC 200 mg enteric tablet, 10, blister pack 286315 1057921000168106 Valpro EC 200 mg enteric tablet, 10 1057911000168104 Valpro EC 200 mg enteric tablet 1057811000168105 Valpro EC 1057811000168105 Valpro EC 942111000168106 valproate sodium 200 mg enteric tablet, 10 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +37375011000036103 Xylocaine 1% (20 mg/2 mL) injection solution, 50 x 2 mL ampoules 12013 36688011000036108 Xylocaine 1% (20 mg/2 mL) injection solution, 50 x 2 mL ampoules 36164011000036100 Xylocaine 1% (20 mg/2 mL) injection solution, 2 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 38601011000036108 lidocaine (lignocaine) hydrochloride 1% (20 mg/2 mL) injection, 50 x 2 mL ampoules 37870011000036109 lidocaine (lignocaine) hydrochloride 1% (20 mg/2 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +817531000168109 Advagraf XL 5 mg modified release capsule, 50, blister pack 269215 817521000168106 Advagraf XL 5 mg modified release capsule, 50 817421000168107 Advagraf XL 5 mg modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 817511000168104 tacrolimus 5 mg modified release capsule, 50 920827011000036102 tacrolimus 5 mg modified release capsule 21380011000036104 tacrolimus +788441000168104 Cortiment 9 mg modified release tablet, 10, blister pack 225849 788431000168108 Cortiment 9 mg modified release tablet, 10 788411000168103 Cortiment 9 mg modified release tablet 788391000168103 Cortiment 788391000168103 Cortiment 788421000168105 budesonide 9 mg modified release tablet, 10 788401000168101 budesonide 9 mg modified release tablet 21307011000036104 budesonide +61368011000036105 Anti-Fungal (Pharmacy Health) 1% cream, 30 g, tube 81526 57293011000036109 Anti-Fungal (Pharmacy Health) 1% cream, 30 g 54261011000036102 Anti-Fungal (Pharmacy Health) 1% cream 53488011000036105 Anti-Fungal (Pharmacy Health) 53488011000036105 Anti-Fungal (Pharmacy Health) 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +60709011000036106 Codiphen uncoated tablet, 24, bottle 43907 56667011000036102 Codiphen uncoated tablet, 24 54026011000036106 Codiphen uncoated tablet 53317011000036102 Codiphen 53317011000036102 Codiphen 63498011000036107 aspirin 250 mg + codeine phosphate hemihydrate 8 mg tablet, 24 61993011000036107 aspirin 250 mg + codeine phosphate hemihydrate 8 mg tablet 21831011000036102 aspirin + codeine +1117991000168107 Quetiapine XR (Amneal) 50 mg modified release tablet, 60, bottle 278872 1117981000168109 Quetiapine XR (Amneal) 50 mg modified release tablet, 60 1117971000168106 Quetiapine XR (Amneal) 50 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +59991011000036102 Gastrogel-Ranitidine 150 mg film-coated tablet, 14, blister pack 121941 55953011000036101 Gastrogel-Ranitidine 150 mg film-coated tablet, 14 53736011000036105 Gastrogel-Ranitidine 150 mg film-coated tablet 13391000168105 Gastrogel-Ranitidine 13391000168105 Gastrogel-Ranitidine 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1015391000168109 Aripiprazole (ZP) 5 mg uncoated tablet, 250, bottle 217197 1015381000168106 Aripiprazole (ZP) 5 mg uncoated tablet, 250 1015351000168104 Aripiprazole (ZP) 5 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 1015321000168107 aripiprazole 5 mg tablet, 250 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +60951011000036108 Claratyne 10 mg effervescent tablet, 7, tube 62135 56894011000036101 Claratyne 10 mg effervescent tablet, 7 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63637011000036103 loratadine 10 mg effervescent tablet, 7 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +1117911000168103 Donepezil (GH) 5 mg film-coated tablet, 112, blister pack 193661 1117901000168101 Donepezil (GH) 5 mg film-coated tablet, 112 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 1117891000168100 donepezil hydrochloride 5 mg tablet, 112 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +749531000168105 Tacoccord 500 microgram hard capsule, 100, blister pack 224283 749521000168107 Tacoccord 500 microgram hard capsule, 100 749471000168109 Tacoccord 500 microgram hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +18536011000036104 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 14, blister pack 134855 11184011000036102 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 14 4947011000036106 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +18536011000036104 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 14, blister pack 101253 11184011000036102 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 14 4947011000036106 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +34665011000036105 Invega 3 mg modified release tablet, 56, blister pack 130502 34251011000036103 Invega 3 mg modified release tablet, 56 33986011000036104 Invega 3 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35120011000036104 paliperidone 3 mg modified release tablet, 56 34855011000036108 paliperidone 3 mg modified release tablet 34837011000036104 paliperidone +87654011000036102 Sumatriptan (Pharmacor) 50 mg film-coated tablet, 2, blister pack 154817 87447011000036109 Sumatriptan (Pharmacor) 50 mg film-coated tablet, 2 87314011000036101 Sumatriptan (Pharmacor) 50 mg film-coated tablet 87291011000036106 Sumatriptan (Pharmacor) 87291011000036106 Sumatriptan (Pharmacor) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +985431000168107 Advil Mini Caps 200 mg sugar coated tablet, 24, blister pack 104222 985421000168109 Advil Mini Caps 200 mg sugar coated tablet, 24 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1058251000168108 Esomeprazole (SZ) 20 mg enteric tablet, 7, blister pack 207581 1058241000168106 Esomeprazole (SZ) 20 mg enteric tablet, 7 1058231000168102 Esomeprazole (SZ) 20 mg enteric tablet 1058221000168100 Esomeprazole (SZ) 1058221000168100 Esomeprazole (SZ) 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +835251000168102 Stop-It 2 mg hard capsule, 10, blister pack 199731 835241000168104 Stop-It 2 mg hard capsule, 10 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 835231000168108 loperamide hydrochloride 2 mg capsule, 10 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +925277011000036101 Invega Sustenna 25 mg modified release injection, 1 syringe 160858 924814011000036102 Invega Sustenna 25 mg modified release injection, 1 syringe 924508011000036105 Invega Sustenna 25 mg modified release injection, syringe 26461000168105 Invega Sustenna 26461000168105 Invega Sustenna 925420011000036102 paliperidone 25 mg modified release injection, 1 syringe 925378011000036107 paliperidone 25 mg modified release injection, syringe 34837011000036104 paliperidone +1105381000168101 Seroquel 100 mg film-coated tablet, 20, blister pack 58113 1105371000168104 Seroquel 100 mg film-coated tablet, 20 6151011000036108 Seroquel 100 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +921970011000036104 Pethidine Hydrochloride (AstraZeneca) 100 mg/2 mL injection solution, 10 x 2 mL ampoules 48345 921528011000036105 Pethidine Hydrochloride (AstraZeneca) 100 mg/2 mL injection solution, 10 x 2 mL ampoules 921063011000036106 Pethidine Hydrochloride (AstraZeneca) 100 mg/2 mL injection solution, 2 mL ampoule 920940011000036107 Pethidine Hydrochloride (AstraZeneca) 920940011000036107 Pethidine Hydrochloride (AstraZeneca) 922650011000036103 pethidine hydrochloride 100 mg/2 mL injection, 10 x 2 mL ampoules 34848011000036104 pethidine hydrochloride 100 mg/2 mL injection, ampoule 34839011000036106 pethidine +18294011000036108 Aclin 200 mg uncoated tablet, 50, bottle 10232 11253011000036108 Aclin 200 mg uncoated tablet, 50 5686011000036109 Aclin 200 mg uncoated tablet 3035011000036105 Aclin 3035011000036105 Aclin 26570011000036105 sulindac 200 mg tablet, 50 21978011000036101 sulindac 200 mg tablet 21275011000036106 sulindac +44372011000036104 Flixotide Nebules 2 mg/2 mL inhalation solution, 10 x 2 mL ampoules 69002 41835011000036103 Flixotide Nebules 2 mg/2 mL inhalation solution, 10 x 2 mL ampoules 40222011000036107 Flixotide Nebules 2 mg/2 mL inhalation solution, 2 mL ampoule 26881000168104 Flixotide Nebules 26881000168104 Flixotide Nebules 46641011000036105 fluticasone propionate 2 mg/2 mL inhalation solution, 10 x 2 mL ampoules 45252011000036102 fluticasone propionate 2 mg/2 mL inhalation solution, ampoule 861061000168102 fluticasone propionate +788121000168102 Arizole 15 mg uncoated tablet, 56, blister pack 198204 788111000168109 Arizole 15 mg uncoated tablet, 56 787501000168101 Arizole 15 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 788101000168106 aripiprazole 15 mg tablet, 56 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +934031000168106 Xylonor spray solution, 36 g, pump actuated metered dose aerosol 49428 934021000168108 Xylonor spray solution, 36 g 934001000168104 Xylonor spray solution, actuation 933451000168107 Xylonor 933451000168107 Xylonor 934011000168101 lidocaine (lignocaine) 15% + cetrimide 0.15% spray, 36 g 933991000168107 lidocaine (lignocaine) 15% + cetrimide 0.15% spray, actuation 69859011000036104 lidocaine (lignocaine) + cetrimide +116511000036102 Rosuvastatin (Chemmart) 40 mg film-coated tablet, 30, blister pack 183069 114801000036107 Rosuvastatin (Chemmart) 40 mg film-coated tablet, 30 113201000036108 Rosuvastatin (Chemmart) 40 mg film-coated tablet 112531000036107 Rosuvastatin (Chemmart) 112531000036107 Rosuvastatin (Chemmart) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +81081011000036104 Paracetamol (Apo) 500 mg uncoated tablet, 1000, bottle 156815 80589011000036106 Paracetamol (Apo) 500 mg uncoated tablet, 1000 78674011000036108 Paracetamol (Apo) 500 mg uncoated tablet 25791000168101 Paracetamol (Apo) 25791000168101 Paracetamol (Apo) 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +938331000168100 Kevtam-1000 1 g film-coated tablet, 100, blister pack 278841 938321000168103 Kevtam-1000 1 g film-coated tablet, 100 938271000168105 Kevtam-1000 1 g film-coated tablet 938261000168104 Kevtam-1000 938261000168104 Kevtam-1000 46174011000036105 levetiracetam 1 g tablet, 100 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +696281000168104 Midazolam (MYX) 5 mg/mL injection solution, 10 x 1 mL ampoules 207241 696271000168102 Midazolam (MYX) 5 mg/mL injection solution, 10 x 1 mL ampoules 696261000168108 Midazolam (MYX) 5 mg/mL injection solution, ampoule 696191000168109 Midazolam (MYX) 696191000168109 Midazolam (MYX) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +777661000168107 Karvea 150 mg film-coated tablet, 28, blister pack 101706 777651000168105 Karvea 150 mg film-coated tablet, 28 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777641000168108 irbesartan 150 mg tablet, 28 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +69184011000036101 Tinaderm 1% cream, 20 g, tube 18214 66984011000036108 Tinaderm 1% cream, 20 g 65194011000036108 Tinaderm 1% cream 18701000168107 Tinaderm 18701000168107 Tinaderm 71557011000036103 tolnaftate 1% cream, 20 g 70063011000036107 tolnaftate 1% cream 21680011000036105 tolnaftate +61677011000036106 Finacea 15% gel, 5 g, tube 97747 57599011000036103 Finacea 15% gel, 5 g 54359011000036100 Finacea 15% gel 53281011000036102 Finacea 53281011000036102 Finacea 63950011000036102 azelaic acid 15% gel, 5 g 62107011000036102 azelaic acid 15% gel 61741011000036106 azelaic acid +882471000168107 Spedra 100 mg uncoated tablet, 12, blister pack 228475 882461000168101 Spedra 100 mg uncoated tablet, 12 882321000168101 Spedra 100 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882451000168103 avanafil 100 mg tablet, 12 882311000168108 avanafil 100 mg tablet 882091000168102 avanafil +80989011000036101 Effient 5 mg film-coated tablet, 28, blister pack 150809 80562011000036103 Effient 5 mg film-coated tablet, 28 80193011000036102 Effient 5 mg film-coated tablet 80100011000036108 Effient 80100011000036108 Effient 81641011000036101 prasugrel 5 mg tablet, 28 81276011000036107 prasugrel 5 mg tablet 81216011000036103 prasugrel +68942011000036101 Skin Therapy Lotion (Hamilton) lotion, 1 L, bottle 11077 66588011000036107 Skin Therapy Lotion (Hamilton) lotion, 1 L 65465011000036109 Skin Therapy Lotion (Hamilton) lotion 65076011000036101 Skin Therapy Lotion (Hamilton) 65076011000036101 Skin Therapy Lotion (Hamilton) 71311011000036101 glycerol 5% + light liquid paraffin 15% lotion, 1 L 69944011000036107 glycerol 5% + light liquid paraffin 15% lotion 69753011000036104 glycerol + light liquid paraffin +946911000168109 Risdone 4 mg film-coated tablet, 60, blister pack 144282 946901000168106 Risdone 4 mg film-coated tablet, 60 946751000168107 Risdone 4 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +73811000036106 Ceftriaxone (Alphapharm) 2 g powder for injection, 1 vial 164917 71561000036106 Ceftriaxone (Alphapharm) 2 g powder for injection, 1 vial 69841000036102 Ceftriaxone (Alphapharm) 2 g powder for injection, 2 g vial 69311000036105 Ceftriaxone (Alphapharm) 69311000036105 Ceftriaxone (Alphapharm) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +672531000168106 Sertraline (AN) 50 mg film-coated tablet, 30, blister pack 195315 672521000168108 Sertraline (AN) 50 mg film-coated tablet, 30 672511000168101 Sertraline (AN) 50 mg film-coated tablet 672471000168105 Sertraline (AN) 672471000168105 Sertraline (AN) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +20333011000036109 Physeptone 10 mg uncoated tablet, 20, blister pack 76083 13542011000036100 Physeptone 10 mg uncoated tablet, 20 6825011000036101 Physeptone 10 mg uncoated tablet 3289011000036107 Physeptone 3289011000036107 Physeptone 27795011000036109 methadone hydrochloride 10 mg tablet, 20 23124011000036101 methadone hydrochloride 10 mg tablet 21357011000036109 methadone +43860011000036107 Lisinotrust 5 mg uncoated tablet, 30, blister pack 128135 41356011000036109 Lisinotrust 5 mg uncoated tablet, 30 39836011000036101 Lisinotrust 5 mg uncoated tablet 39731011000036109 Lisinotrust 39731011000036109 Lisinotrust 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +19941011000036101 Magicul 400 mg film-coated tablet, 60, bottle 67186 13184011000036107 Magicul 400 mg film-coated tablet, 60 6467011000036105 Magicul 400 mg film-coated tablet 3689011000036105 Magicul 3689011000036105 Magicul 27866011000036103 cimetidine 400 mg tablet, 60 23194011000036105 cimetidine 400 mg tablet 21427011000036101 cimetidine +131601000036104 Duloxetine (GH) 30 mg enteric capsule, 28, blister pack 197150 128581000036104 Duloxetine (GH) 30 mg enteric capsule, 28 124541000036101 Duloxetine (GH) 30 mg enteric capsule 123961000036107 Duloxetine (GH) 123961000036107 Duloxetine (GH) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +77166011000036100 Supradyn effervescent tablet, 10, tube 117506 76589011000036100 Supradyn effervescent tablet, 10 76050011000036104 Supradyn effervescent tablet 75924011000036102 Supradyn 75924011000036102 Supradyn 78143011000036106 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 80 mg + biotin 200 microgram + calcium (as carbonate) 100 mg + colecalciferol 7.5 microgram + copper (as gluconate) 500 microgram + cyanocobalamin 4 microgram + ferrous sulfate 5 mg (iron 1.5 mg) + folic acid 200 microgram + magnesium (as phosphate dibasic trihydrate) 9 mg + manganese (as sulfate monohydrate) 500 microgram + nicotinamide 40 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 3 mg + riboflavin sodium phosphate 13 mg + monophosphothiamine 11.1 mg + zinc (as sulfate monohydrate) 1 mg effervescent tablet, 10 77511011000036100 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 80 mg + biotin 200 microgram + calcium (as carbonate) 100 mg + colecalciferol 7.5 microgram + copper (as gluconate) 500 microgram + cyanocobalamin 4 microgram + ferrous sulfate 5 mg (iron 1.5 mg) + folic acid 200 microgram + magnesium (as phosphate dibasic trihydrate) 9 mg + manganese (as sulfate monohydrate) 500 microgram + nicotinamide 40 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 3 mg + riboflavin sodium phosphate 13 mg + monophosphothiamine 11.1 mg + zinc (as sulfate monohydrate) 1 mg effervescent tablet 77439011000036102 dl-alpha-tocopherol + ascorbic acid + biotin + calcium carbonate + colecalciferol + copper gluconate + cyanocobalamin + ferrous sulfate + folic acid + magnesium phosphate dibasic trihydrate + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + monophosphothiamine + zinc sulfate monohydrate +880301000168109 Dipyridamole/Aspirin 200/25 (Blooms The Chemist) modified release capsule, 60, bottle 210818 880291000168108 Dipyridamole/Aspirin 200/25 (Blooms The Chemist) modified release capsule, 60 880281000168105 Dipyridamole/Aspirin 200/25 (Blooms The Chemist) modified release capsule 880271000168107 Dipyridamole/Aspirin 200/25 (Blooms The Chemist) 880271000168107 Dipyridamole/Aspirin 200/25 (Blooms The Chemist) 27629011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule, 60 22967011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule 21386011000036101 dipyridamole + aspirin +801051000168103 Actonate 75 mg film-coated tablet, 6, blister pack 163749 801041000168100 Actonate 75 mg film-coated tablet, 6 800961000168105 Actonate 75 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 801031000168109 risedronate sodium 75 mg tablet, 6 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +920971000168101 Cilopam 10 mg film-coated tablet, 56, bottle 158863 920551000168104 Cilopam 10 mg film-coated tablet, 56 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +946551000168104 Doxiris 50 mg film-coated tablet, 25, blister pack 148805 946541000168101 Doxiris 50 mg film-coated tablet, 25 946531000168105 Doxiris 50 mg film-coated tablet 946521000168107 Doxiris 946521000168107 Doxiris 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +20575011000036109 Anpec 80 mg film-coated tablet, 100, blister pack 80296 13772011000036100 Anpec 80 mg film-coated tablet, 100 7058011000036106 Anpec 80 mg film-coated tablet 3034011000036106 Anpec 3034011000036106 Anpec 27933011000036107 verapamil hydrochloride 80 mg tablet, 100 23257011000036109 verapamil hydrochloride 80 mg tablet 21287011000036109 verapamil +745601000168104 Calsource Ca1000 effervescent tablet, 10, tube 146629 745591000168106 Calsource Ca1000 effervescent tablet, 10 745571000168105 Calsource Ca1000 effervescent tablet 24471000168107 Calsource Ca1000 24471000168107 Calsource Ca1000 745581000168108 calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet, 10 745561000168104 calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet 745551000168101 calcium +925264011000036101 Venfax SR 75 mg modified release capsule, 28, blister pack 160294 924801011000036102 Venfax SR 75 mg modified release capsule, 28 924495011000036107 Venfax SR 75 mg modified release capsule 14411000168107 Venfax SR 14411000168107 Venfax SR 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +32928011000036102 Tritace 10 mg uncoated tablet, 30, blister pack 79253 32918011000036108 Tritace 10 mg uncoated tablet, 30 32909011000036102 Tritace 10 mg uncoated tablet 4384011000036103 Tritace 4384011000036103 Tritace 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +44277011000036107 Propecia 1 mg film-coated tablet, 30, blister pack 62084 41748011000036105 Propecia 1 mg film-coated tablet, 30 40180011000036100 Propecia 1 mg film-coated tablet 39667011000036104 Propecia 39667011000036104 Propecia 46555011000036102 finasteride 1 mg tablet, 30 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +61576011000036103 Cold and Flu (Capital Chemist) film-coated tablet, 24, blister pack 94536 57498011000036100 Cold and Flu (Capital Chemist) film-coated tablet, 24 54327011000036108 Cold and Flu (Capital Chemist) film-coated tablet 53538011000036108 Cold and Flu (Capital Chemist) 53538011000036108 Cold and Flu (Capital Chemist) 63960011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62109011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +19118011000036100 Cardol 160 mg uncoated tablet, 60, bottle 43241 12422011000036100 Cardol 160 mg uncoated tablet, 60 5048011000036105 Cardol 160 mg uncoated tablet 3631011000036100 Cardol 3631011000036100 Cardol 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +50508011000036101 Ketonex-1 powder for oral liquid, 350 g, can 49258011000036105 Ketonex-1 powder for oral liquid, 350 g 48645011000036102 Ketonex-1 powder for oral liquid 60051000168109 Ketonex-1 60051000168109 Ketonex-1 51251011000036102 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 350 g 50802011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +116431000036105 Rosuvastatin (Apo) 20 mg film-coated tablet, 30, bottle 183060 114741000036102 Rosuvastatin (Apo) 20 mg film-coated tablet, 30 113341000036103 Rosuvastatin (Apo) 20 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +929651000168105 Aczone 7.5% gel, 3 g, tube 266267 929641000168108 Aczone 7.5% gel, 3 g 929521000168101 Aczone 7.5% gel 929501000168105 Aczone 929501000168105 Aczone 929631000168104 dapsone 7.5% gel, 3 g 929511000168108 dapsone 7.5% gel 21608011000036106 dapsone +18876011000036102 Blenoxane 15 000 international units powder for injection, 10 vials 19244 12186011000036106 Blenoxane 15 000 international units powder for injection, 10 vials 5123011000036105 Blenoxane 15 000 international units powder for injection, 15 000 international units vial 3577011000036100 Blenoxane 3577011000036100 Blenoxane 27824011000036104 bleomycin sulfate 15 000 international units injection, 10 vials 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +910301000168102 Dexamfetamine (GPPL) 5 mg uncoated tablet, 100, blister pack 270956 910291000168103 Dexamfetamine (GPPL) 5 mg uncoated tablet, 100 910281000168101 Dexamfetamine (GPPL) 5 mg uncoated tablet 910271000168104 Dexamfetamine (GPPL) 910271000168104 Dexamfetamine (GPPL) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +989611000168103 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 10, blister pack 199859 989601000168101 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 10 989571000168107 Loratadine (Blooms The Chemist) 10 mg uncoated tablet 989561000168101 Loratadine (Blooms The Chemist) 989561000168101 Loratadine (Blooms The Chemist) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +44442011000036107 Refludan 50 mg powder for injection, 1 vial 73442 41898011000036101 Refludan 50 mg powder for injection, 1 vial 40253011000036104 Refludan 50 mg powder for injection, 50 mg vial 39727011000036104 Refludan 39727011000036104 Refludan 46696011000036109 lepirudin 50 mg injection, 1 vial 45272011000036100 lepirudin 50 mg injection, vial 44947011000036107 lepirudin +926819011000036108 Herceptin IV 60 mg powder for injection, 1 vial 171014 926215011000036104 Herceptin IV 60 mg powder for injection, 1 vial 925680011000036105 Herceptin IV 60 mg powder for injection, 60 mg vial 4161011000036105 Herceptin IV 4161011000036105 Herceptin IV 927344011000036100 trastuzumab 60 mg injection, 1 vial 926995011000036104 trastuzumab 60 mg injection, vial 21530011000036105 trastuzumab +1062361000168107 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 10, blister pack 196533 1062351000168105 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 10 1062341000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +69601011000036102 Acnederm Foaming Wash solution, 300 mL, bottle 70050 67400011000036100 Acnederm Foaming Wash solution, 300 mL 65647011000036108 Acnederm Foaming Wash solution 27381000168107 Acnederm Foaming Wash 27381000168107 Acnederm Foaming Wash 71935011000036100 chlorhexidine gluconate 0.5% + cetrimide 1% solution, 300 mL 70254011000036106 chlorhexidine gluconate 0.5% + cetrimide 1% solution 69756011000036105 chlorhexidine + cetrimide +918961000168104 Rosuvastatin (Generic Health) 20 mg film-coated tablet, 7, blister pack 210838 918951000168101 Rosuvastatin (Generic Health) 20 mg film-coated tablet, 7 918941000168103 Rosuvastatin (Generic Health) 20 mg film-coated tablet 918641000168106 Rosuvastatin (Generic Health) 918641000168106 Rosuvastatin (Generic Health) 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +30731000036100 Zondan 4 mg film-coated tablet, 10, blister pack 116409 28261000036101 Zondan 4 mg film-coated tablet, 10 26461000036103 Zondan 4 mg film-coated tablet 26301000036108 Zondan 26301000036108 Zondan 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +131451000036101 Candesartan Cilexetil Combi 32/25 (Aspen) uncoated tablet, 30, bottle 196408 128741000036103 Candesartan Cilexetil Combi 32/25 (Aspen) uncoated tablet, 30 124941000036108 Candesartan Cilexetil Combi 32/25 (Aspen) uncoated tablet 20701000168102 Candesartan Cilexetil Combi 32/25 (Aspen) 20701000168102 Candesartan Cilexetil Combi 32/25 (Aspen) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +34742011000036100 MS Normal 20 mg film-coated tablet, 56, bottle 47544 34326011000036102 MS Normal 20 mg film-coated tablet, 56 34043011000036105 MS Normal 20 mg film-coated tablet 33936011000036108 MS Normal 33936011000036108 MS Normal 35174011000036108 morphine sulfate pentahydrate 20 mg tablet, 56 22548011000036107 morphine sulfate pentahydrate 20 mg tablet 21252011000036100 morphine +899631000168100 Mucoclear 6% (240 mg/4 mL) inhalation solution, 20 x 4 mL ampoules 209500 899621000168103 Mucoclear 6% (240 mg/4 mL) inhalation solution, 20 x 4 mL ampoules 899601000168107 Mucoclear 6% (240 mg/4 mL) inhalation solution, 4 mL ampoule 899581000168103 Mucoclear 899581000168103 Mucoclear 899611000168105 sodium chloride 6% (240 mg/4 mL) inhalation solution, 20 x 4 mL ampoules 899591000168100 sodium chloride 6% (240 mg/4 mL) inhalation solution, ampoule 21308011000036103 sodium chloride +81023011000036109 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 30 x 250 mL bags 148935 80557011000036105 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 30 x 250 mL bags 80190011000036105 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 250 mL bag 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 81636011000036107 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, 30 x 250 mL bags 81273011000036101 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +676881000168106 Leflunomide (AN) 20 mg film-coated tablet, 30, bottle 210924 676871000168108 Leflunomide (AN) 20 mg film-coated tablet, 30 676861000168102 Leflunomide (AN) 20 mg film-coated tablet 676851000168104 Leflunomide (AN) 676851000168104 Leflunomide (AN) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +86009011000036102 Lisinopril (DRLA) 10 mg uncoated tablet, 28, blister pack 152721 85657011000036107 Lisinopril (DRLA) 10 mg uncoated tablet, 28 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 46263011000036103 lisinopril 10 mg tablet, 28 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +933213851000036102 Ciprofloxacin (IPC) 500 mg film-coated tablet, 8, blister pack 153184 933201881000036106 Ciprofloxacin (IPC) 500 mg film-coated tablet, 8 933194821000036108 Ciprofloxacin (IPC) 500 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 933199841000036101 ciprofloxacin 500 mg tablet, 8 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +739001000168106 Natural E 100 IU (Blackmores) 67 mg (100 units) soft capsule, 42, bottle 197066 738991000168106 Natural E 100 IU (Blackmores) 67 mg (100 units) soft capsule, 42 738971000168105 Natural E 100 IU (Blackmores) 67 mg (100 units) soft capsule 738951000168101 Natural E 100 IU (Blackmores) 738951000168101 Natural E 100 IU (Blackmores) 738981000168108 d-alpha-tocopherol 67 mg (100 units) capsule, 42 738961000168104 d-alpha-tocopherol 67 mg (100 units) capsule 77434011000036103 d-alpha-tocopherol +921061000168103 Cilopam 10 mg film-coated tablet, 1000, bottle 158863 921051000168100 Cilopam 10 mg film-coated tablet, 1000 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202991000036107 citalopram 10 mg tablet, 1000 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +43618011000036101 Imigran FDT 100 mg film-coated tablet, 18, blister pack 106715 41141011000036109 Imigran FDT 100 mg film-coated tablet, 18 39948011000036108 Imigran FDT 100 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 46115011000036104 sumatriptan 100 mg tablet, 18 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +698291000168100 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1 mL inert diluent syringes), 1 pack 71160 41877011000036106 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1 mL inert diluent syringes), 1 pack 633821000168103 Avonex (inert substance) diluent, 1 mL syringe 20651000168107 Avonex 20651000168107 Avonex 46680011000036105 interferon beta-1a 6 million units (30 microgram) injection [4 vials] (&) inert substance diluent [4 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +698291000168100 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1 mL inert diluent syringes), 1 pack 71160 41877011000036106 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1 mL inert diluent syringes), 1 pack 7029011000036104 Avonex (interferon beta-1a 6 million units (30 microgram)) powder for injection, 30 microgram vial 20651000168107 Avonex 20651000168107 Avonex 46680011000036105 interferon beta-1a 6 million units (30 microgram) injection [4 vials] (&) inert substance diluent [4 x 1 mL syringes], 1 pack 23238011000036109 interferon beta-1a 6 million units (30 microgram) injection, vial 21462011000036109 interferon beta-1a +779671000168106 Bupradex 2 mg sublingual tablet, 28, blister pack 152476 779661000168100 Bupradex 2 mg sublingual tablet, 28 779571000168107 Bupradex 2 mg sublingual tablet 779151000168107 Bupradex 779151000168107 Bupradex 685761000168106 buprenorphine 2 mg sublingual tablet, 28 685571000168105 buprenorphine 2 mg sublingual tablet 21232011000036101 buprenorphine +87652011000036106 Cimzia 200 mg/mL injection solution, 2 x 1 mL syringes 154726 87446011000036106 Cimzia 200 mg/mL injection solution, 2 x 1 mL syringes 87313011000036103 Cimzia 200 mg/mL injection solution, syringe 87279011000036100 Cimzia 87279011000036100 Cimzia 87809011000036100 certolizumab pegol 200 mg/mL injection, 2 x 1 mL syringes 87756011000036103 certolizumab pegol 200 mg/mL injection, syringe 87751011000036108 certolizumab pegol +81158011000036106 Karvol Decongestant inhalation solution, 20 capsules, blister pack 43397 80661011000036104 Karvol Decongestant inhalation solution, 20 capsules 80229011000036107 Karvol Decongestant inhalation solution, 1 capsule 80129011000036105 Karvol Decongestant 80129011000036105 Karvol Decongestant 81719011000036104 menthol 35.55 mg + Scotch pine needle oil 9 mg + pine oil pumilio 103 mg + terpineol 66.6 mg inhalation solution, 20 capsules 81299011000036108 menthol 35.55 mg + Scotch pine needle oil 9 mg + pine oil pumilio 103 mg + terpineol 66.6 mg inhalation solution, 1 capsule 81226011000036106 menthol + Scotch pine needle oil + pine oil pumilio + terpineol +972451000168100 Lyzalon 150 mg hard capsule, 60, bottle 224425 972441000168102 Lyzalon 150 mg hard capsule, 60 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1088081000168101 Difflam Lozenge Strawberry Sugar Free lozenge, 8, blister pack 280581 1088071000168104 Difflam Lozenge Strawberry Sugar Free lozenge, 8 1088061000168105 Difflam Lozenge Strawberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995761000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 8 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +86035011000036105 Ibuprofen plus Codeine (Guardian) film-coated tablet, 48, blister pack 158211 85740011000036102 Ibuprofen plus Codeine (Guardian) film-coated tablet, 48 85367011000036107 Ibuprofen plus Codeine (Guardian) film-coated tablet 85267011000036100 Ibuprofen plus Codeine (Guardian) 85267011000036100 Ibuprofen plus Codeine (Guardian) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +931428011000036100 Hedanol 500 mg uncoated tablet, 24, blister pack 132709 930594011000036102 Hedanol 500 mg uncoated tablet, 24 929961011000036105 Hedanol 500 mg uncoated tablet 929865011000036103 Hedanol 929865011000036103 Hedanol 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +933211701000036109 Ciprofloxacin (BL) 250 mg film-coated tablet, 20, blister pack 114046 933199741000036109 Ciprofloxacin (BL) 250 mg film-coated tablet, 20 933194141000036107 Ciprofloxacin (BL) 250 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 932363011000036105 ciprofloxacin 250 mg tablet, 20 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +82491000036102 Hylo-Forte 0.2% eye drops solution, 10 mL, bottle 192034 80551000036109 Hylo-Forte 0.2% eye drops solution, 10 mL 78641000036101 Hylo-Forte 0.2% eye drops solution 54111000168109 Hylo-Forte 54111000168109 Hylo-Forte 80561000036107 hyaluronate sodium 0.2% eye drops, 10 mL 78651000036103 hyaluronate sodium 0.2% eye drops 83071000036101 hyaluronate sodium +747681000168104 Morphine MR (SCP) 100 mg modified release tablet, 28, blister pack 225424 747671000168102 Morphine MR (SCP) 100 mg modified release tablet, 28 747641000168109 Morphine MR (SCP) 100 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 929758011000036101 morphine sulfate pentahydrate 100 mg modified release tablet, 28 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +21174011000036105 Pentasa 500 mg modified release tablet, 100, blister pack 99139 14315011000036100 Pentasa 500 mg modified release tablet, 100 7601011000036102 Pentasa 500 mg modified release tablet 3593011000036100 Pentasa 3593011000036100 Pentasa 28306011000036109 mesalazine 500 mg modified release tablet, 100 23620011000036107 mesalazine 500 mg modified release tablet 21351011000036101 mesalazine +655501000168105 Ondansetron ODT (AN) 8 mg orally disintegrating tablet, 10, blister pack 196805 655491000168103 Ondansetron ODT (AN) 8 mg orally disintegrating tablet, 10 655481000168101 Ondansetron ODT (AN) 8 mg orally disintegrating tablet 655421000168100 Ondansetron ODT (AN) 655421000168100 Ondansetron ODT (AN) 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +743181000168104 Morphine MR (AN) 60 mg modified release tablet, 28, blister pack 225427 743171000168102 Morphine MR (AN) 60 mg modified release tablet, 28 743141000168109 Morphine MR (AN) 60 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 929757011000036102 morphine sulfate pentahydrate 60 mg modified release tablet, 28 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +86067011000036108 Ezovir 500 mg film-coated tablet, 3, blister pack 157787 85725011000036108 Ezovir 500 mg film-coated tablet, 3 85362011000036105 Ezovir 500 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +24951000036101 Atorvastatin (Apo) 40 mg film-coated tablet, 30, bottle 153728 22261000036103 Atorvastatin (Apo) 40 mg film-coated tablet, 30 20041000036105 Atorvastatin (Apo) 40 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +60308011000036104 Nurolasts Period Pain 275 mg film-coated tablet, 4, blister pack 137943 56267011000036104 Nurolasts Period Pain 275 mg film-coated tablet, 4 53855011000036102 Nurolasts Period Pain 275 mg film-coated tablet 26751000168101 Nurolasts Period Pain 26751000168101 Nurolasts Period Pain 63739011000036102 naproxen sodium 275 mg tablet, 4 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +845981000168103 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 83093 845971000168101 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 845961000168107 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 73692011000036108 NeisVac-C 73692011000036108 NeisVac-C 845901000168106 meningococcal C conjugate vaccine injection, 0.5 mL syringe 845881000168109 meningococcal C conjugate vaccine injection, 0.5 mL syringe 826391000168106 meningococcal C conjugate vaccine +77183011000036109 Lisinopril (GA) 20 mg uncoated tablet, 14, blister pack 106502 76569011000036103 Lisinopril (GA) 20 mg uncoated tablet, 14 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 78126011000036102 lisinopril 20 mg tablet, 14 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +670441000168102 Amlodipine/Atorvastatin 10/80 (Blooms The Chemist) film-coated tablet, 30, blister pack 214369 670431000168106 Amlodipine/Atorvastatin 10/80 (Blooms The Chemist) film-coated tablet, 30 670421000168108 Amlodipine/Atorvastatin 10/80 (Blooms The Chemist) film-coated tablet 670411000168101 Amlodipine/Atorvastatin 10/80 (Blooms The Chemist) 670411000168101 Amlodipine/Atorvastatin 10/80 (Blooms The Chemist) 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +84362011000036103 Xyntha 500 IU (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161715 84055011000036101 Xyntha 500 IU (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack 83679011000036109 Xyntha 500 IU (moroctocog alfa 500 units) powder for injection, 500 units vial 9291000168100 Xyntha 500 IU 9291000168100 Xyntha 500 IU 46162011000036108 moroctocog alfa 500 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45014011000036105 moroctocog alfa 500 units injection, vial 44868011000036107 moroctocog alfa +84362011000036103 Xyntha 500 IU (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161715 84055011000036101 Xyntha 500 IU (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 9291000168100 Xyntha 500 IU 83556011000036108 Xyntha 46162011000036108 moroctocog alfa 500 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +60066011000036100 Bisolvon Chesty 8 mg uncoated tablet, 10, blister pack 17915 56028011000036104 Bisolvon Chesty 8 mg uncoated tablet, 10 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63196011000036107 bromhexine hydrochloride 8 mg tablet, 10 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +60066011000036100 Bisolvon Chesty 8 mg uncoated tablet, 10, blister pack 125375 56028011000036104 Bisolvon Chesty 8 mg uncoated tablet, 10 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63196011000036107 bromhexine hydrochloride 8 mg tablet, 10 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +704841000168108 Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules 12404 704831000168104 Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules 704821000168102 Lasix 20 mg/2 mL injection solution, 2 mL ampoule 26171000168109 Lasix 26171000168109 Lasix 26762011000036103 furosemide (frusemide) 20 mg/2 mL injection, 5 x 2 mL ampoules 22149011000036106 furosemide (frusemide) 20 mg/2 mL injection, ampoule 21329011000036103 furosemide (frusemide) +796841000168104 Aciclovir (Ascent) 800 mg uncoated tablet, 120, blister pack 202880 796831000168108 Aciclovir (Ascent) 800 mg uncoated tablet, 120 796751000168107 Aciclovir (Ascent) 800 mg uncoated tablet 796651000168103 Aciclovir (Ascent) 796651000168103 Aciclovir (Ascent) 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +694041000168109 Leukopor (2474) 5 cm x 5 m tape, 1 roll, carton 694031000168100 Leukopor (2474) 5 cm x 5 m tape, 1 roll 694021000168103 Leukopor (2474) 5 cm x 5 m tape 50971000168108 Leukopor (2474) 50971000168108 Leukopor (2474) 689081000168102 tape plaster adhesive hypoallergenic 5 cm x 5 m tape, 1 roll 689041000168107 tape plaster adhesive hypoallergenic 5 cm x 5 m tape 50731011000036104 tape plaster adhesive hypoallergenic +929667011000036101 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 50 x 2 mL vials 16375 929503011000036104 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 50 x 2 mL vials 4568011000036105 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 2 mL vial 3506011000036109 Dexamethasone Phosphate (DBL) 3506011000036109 Dexamethasone Phosphate (DBL) 929752011000036104 dexamethasone phosphate 8 mg/2 mL injection, 50 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +929667011000036101 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 50 x 2 mL vials 178774 929503011000036104 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 50 x 2 mL vials 4568011000036105 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 2 mL vial 3506011000036109 Dexamethasone Phosphate (DBL) 3506011000036109 Dexamethasone Phosphate (DBL) 929752011000036104 dexamethasone phosphate 8 mg/2 mL injection, 50 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +771101000168107 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 180561 771091000168102 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 771071000168103 Isabelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +771101000168107 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 180561 771091000168102 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 771081000168100 Isabelle (inert substance) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +50531011000036103 Tubifast (2436) green 10 m medium limb size bandage, 1, carton 49322011000036104 Tubifast (2436) green 10 m medium limb size bandage, 1 48726011000036103 Tubifast (2436) green 10 m medium limb size bandage 58681000168101 Tubifast (2436) 58681000168101 Tubifast (2436) 51303011000036100 bandage tubular light weight 10 m medium limb size bandage, 1 50832011000036108 bandage tubular light weight 10 m medium limb size bandage 50703011000036107 bandage tubular light weight +59983011000036100 Codral Cold and Flu plus Cough Day and Night (36 x Day capsules, 12 x Night capsules), 48, blister pack 121310 55945011000036103 Codral Cold and Flu plus Cough Day and Night (36 x Day capsules, 12 x Night capsules), 48 53730011000036107 Codral Cold and Flu plus Cough (Day) hard capsule 44661000168101 Codral Cold and Flu plus Cough Day and Night 44781000168100 Codral Cold and Flu plus Cough (Day) 63210011000036107 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [36] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [12], 48 61888011000036105 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61764011000036104 paracetamol + phenylephrine + dextromethorphan +59983011000036100 Codral Cold and Flu plus Cough Day and Night (36 x Day capsules, 12 x Night capsules), 48, blister pack 121310 55945011000036103 Codral Cold and Flu plus Cough Day and Night (36 x Day capsules, 12 x Night capsules), 48 53731011000036100 Codral Cold and Flu plus Cough (Night) hard capsule 44661000168101 Codral Cold and Flu plus Cough Day and Night 44901000168106 Codral Cold and Flu plus Cough (Night) 63210011000036107 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [36] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [12], 48 62063011000036103 paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61767011000036105 paracetamol + chlorphenamine + dextromethorphan +59741011000036102 Rikodeine 19 mg/10 mL oral liquid solution, 200 mL, bottle 10587 55719011000036102 Rikodeine 19 mg/10 mL oral liquid solution, 200 mL 53614011000036103 Rikodeine 19 mg/10 mL oral liquid solution, 10 mL 53421011000036105 Rikodeine 53421011000036105 Rikodeine 63115011000036101 dihydrocodeine tartrate 19 mg/10 mL oral liquid, 200 mL 61860011000036106 dihydrocodeine tartrate 19 mg/10 mL oral liquid 34841011000036108 dihydrocodeine +1055921000168103 Erelzi Auto-Injector 50 mg/mL injection solution, 12 x 1 mL injection devices 281780 1055911000168105 Erelzi Auto-Injector 50 mg/mL injection solution, 12 x 1 mL injection devices 1055821000168106 Erelzi Auto-Injector 50 mg/mL injection solution, injection device 1055811000168104 Erelzi Auto-Injector 1055811000168104 Erelzi Auto-Injector 1055901000168107 etanercept 50 mg/mL injection, 12 x 1 mL injection devices 897981000168103 etanercept 50 mg/mL injection, injection device 21347011000036107 etanercept +1064601000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 36, blister pack 202702 1064591000168101 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 36 1064451000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064581000168104 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 36 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +18971011000036102 Panafcortelone 5 mg uncoated tablet, 60, bottle 27962 12279011000036105 Panafcortelone 5 mg uncoated tablet, 60 5651011000036109 Panafcortelone 5 mg uncoated tablet 3294011000036105 Panafcortelone 3294011000036105 Panafcortelone 27039011000036100 prednisolone 5 mg tablet, 60 22412011000036109 prednisolone 5 mg tablet 21273011000036105 prednisolone +1070901000168103 Analgesic Calmative (Trust) uncoated tablet, 36, blister pack 217762 1070891000168102 Analgesic Calmative (Trust) uncoated tablet, 36 1070341000168100 Analgesic Calmative (Trust) uncoated tablet 1070331000168109 Analgesic Calmative (Trust) 1070331000168109 Analgesic Calmative (Trust) 1064581000168104 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 36 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +760501000168104 Sildenafil (DRLA) 50 mg film-coated tablet, 1, blister pack 186293 760491000168106 Sildenafil (DRLA) 50 mg film-coated tablet, 1 760471000168105 Sildenafil (DRLA) 50 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760481000168108 sildenafil 50 mg tablet, 1 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +1013061000168103 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 12 x 200 mL vials 49425 1013051000168100 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 12 x 200 mL vials 1013031000168106 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 200 mL vial 28191000168109 Optiray-320 28191000168109 Optiray-320 1013041000168102 ioversol 678 mg (iodine 320 mg)/mL injection, 12 x 200 mL vials 1013021000168108 ioversol 678 mg (iodine 320 mg)/mL injection, 200 mL vial 77421011000036103 ioversol +664131000168101 Midazolam (Act) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 207244 664121000168104 Midazolam (Act) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 664081000168101 Midazolam (Act) 50 mg/10 mL injection solution, 10 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +848311000168103 Alinivir 200 mg uncoated tablet, 90, blister pack 202875 848301000168101 Alinivir 200 mg uncoated tablet, 90 848271000168103 Alinivir 200 mg uncoated tablet 848211000168106 Alinivir 848211000168106 Alinivir 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +1047581000168100 Bupretec 5 microgram/hour patch, 4, sachet 234730 1047571000168103 Bupretec 5 microgram/hour patch, 4 1047471000168102 Bupretec 5 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1046501000168105 buprenorphine 5 microgram/hour patch, 4 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +742861000168107 Urex Forte 500 mg uncoated tablet, 50, blister pack 196972 12783011000036108 Urex Forte 500 mg uncoated tablet, 50 6077011000036106 Urex Forte 500 mg uncoated tablet 18581000168105 Urex Forte 18581000168105 Urex Forte 27350011000036106 furosemide (frusemide) 500 mg tablet, 50 22703011000036108 furosemide (frusemide) 500 mg tablet 21329011000036103 furosemide (frusemide) +69492011000036107 Ear Clear for Swimmers ear drops solution, 30 mL, bottle 50555 67292011000036103 Ear Clear for Swimmers ear drops solution, 30 mL 65594011000036104 Ear Clear for Swimmers ear drops solution 65173011000036102 Ear Clear for Swimmers 65173011000036102 Ear Clear for Swimmers 71840011000036102 acetic acid 1.65% + isopropyl alcohol 63.3% ear drops, 30 mL 70209011000036103 acetic acid 1.65% + isopropyl alcohol 63.3% ear drops 69771011000036102 acetic acid + isopropyl alcohol +166091000036104 Temaccord 20 mg hard capsule, 5, sachet 206031 164301000036100 Temaccord 20 mg hard capsule, 5 162261000036100 Temaccord 20 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +50499011000036102 TYR Express 15 powder for oral liquid, 30 x 25 g sachets 49286011000036101 TYR Express 15 powder for oral liquid, 30 x 25 g sachets 370031000168105 TYR Express 15 powder for oral liquid, 25 g sachet 21361000168109 TYR Express 15 21361000168109 TYR Express 15 51273011000036103 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 30 x 25 g sachets 369841000168106 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 25 g sachet 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +116831000036108 Zopral ODT 30 mg orally disintegrating tablet, 28, blister pack 187431 115071000036107 Zopral ODT 30 mg orally disintegrating tablet, 28 112891000036105 Zopral ODT 30 mg orally disintegrating tablet 14811000168105 Zopral ODT 14811000168105 Zopral ODT 79819011000036106 lansoprazole 30 mg orally disintegrating tablet, 28 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +68976011000036103 Nurofen Period Pain 200 mg film-coated tablet, 12, blister pack 134618 66778011000036101 Nurofen Period Pain 200 mg film-coated tablet, 12 65504011000036102 Nurofen Period Pain 200 mg film-coated tablet 24371000168100 Nurofen Period Pain 24371000168100 Nurofen Period Pain 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +670841000168104 Metoprolol Tartrate (AN) 50 mg film-coated tablet, 100, blister pack 192767 670831000168108 Metoprolol Tartrate (AN) 50 mg film-coated tablet, 100 670791000168102 Metoprolol Tartrate (AN) 50 mg film-coated tablet 670681000168105 Metoprolol Tartrate (AN) 670681000168105 Metoprolol Tartrate (AN) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +60985011000036101 Promethazine Hydrochloride Elixir (Pharmacist) 1 mg/mL oral liquid solution, 200 mL, bottle 63254 56928011000036109 Promethazine Hydrochloride Elixir (Pharmacist) 1 mg/mL oral liquid solution, 200 mL 54124011000036109 Promethazine Hydrochloride Elixir (Pharmacist) 1 mg/mL oral liquid solution 41401000168102 Promethazine Hydrochloride Elixir (Pharmacist) 41401000168102 Promethazine Hydrochloride Elixir (Pharmacist) 63644011000036105 promethazine hydrochloride 1 mg/mL oral liquid, 200 mL 62044011000036106 promethazine hydrochloride 1 mg/mL oral liquid 21237011000036104 promethazine +655821000168103 Venlafaxine SR (AN) 75 mg modified release capsule, 28, blister pack 160294 655811000168105 Venlafaxine SR (AN) 75 mg modified release capsule, 28 655801000168107 Venlafaxine SR (AN) 75 mg modified release capsule 655751000168101 Venlafaxine SR (AN) 655751000168101 Venlafaxine SR (AN) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +901321000168100 Amoxil 500 mg hard capsule, 30, blister pack 57574 901311000168107 Amoxil 500 mg hard capsule, 30 6140011000036103 Amoxil 500 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +901321000168100 Amoxil 500 mg hard capsule, 30, blister pack 273936 901311000168107 Amoxil 500 mg hard capsule, 30 6140011000036103 Amoxil 500 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +44168011000036102 Merrem IV 500 mg powder for injection, 10 vials 54675 41644011000036106 Merrem IV 500 mg powder for injection, 10 vials 40121011000036103 Merrem IV 500 mg powder for injection, 500 mg vial 45961000168108 Merrem IV 45961000168108 Merrem IV 46463011000036102 meropenem 500 mg injection, 10 vials 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +955451000168107 Perindopril (Arrow) 4 mg uncoated tablet, 30, blister pack 129664 955441000168105 Perindopril (Arrow) 4 mg uncoated tablet, 30 955431000168101 Perindopril (Arrow) 4 mg uncoated tablet 955381000168108 Perindopril (Arrow) 955381000168108 Perindopril (Arrow) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +20230011000036108 MS Mono 60 mg modified release capsule, 10, bottle 74155 13442011000036107 MS Mono 60 mg modified release capsule, 10 6724011000036102 MS Mono 60 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27749011000036102 morphine sulfate pentahydrate 60 mg modified release capsule, 10 23080011000036107 morphine sulfate pentahydrate 60 mg modified release capsule 21252011000036100 morphine +1066291000168106 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 20, blister pack 220519 1066281000168108 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 20 1066271000168105 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +970441000168101 Lypralin 25 mg hard capsule, 200, bottle 235870 970431000168105 Lypralin 25 mg hard capsule, 200 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970421000168107 pregabalin 25 mg capsule, 200 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +61559011000036109 Dry Cough Mixture (Chemmart) oral liquid solution, 200 mL, bottle 94135 57481011000036105 Dry Cough Mixture (Chemmart) oral liquid solution, 200 mL 54319011000036106 Dry Cough Mixture (Chemmart) oral liquid solution, 5 mL 56261000168108 Dry Cough Mixture (Chemmart) 56261000168108 Dry Cough Mixture (Chemmart) 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +60666011000036107 Kiddicol Children's Cough Mixture (Chemists' Own) oral liquid solution, 200 mL, bottle 40403 56624011000036101 Kiddicol Children's Cough Mixture (Chemists' Own) oral liquid solution, 200 mL 54013011000036109 Kiddicol Children's Cough Mixture (Chemists' Own) oral liquid solution, 10 mL 57821000168100 Kiddicol Children's Cough Mixture (Chemists' Own) 57821000168100 Kiddicol Children's Cough Mixture (Chemists' Own) 63475011000036107 pholcodine 3 mg/10 mL + phenylephrine hydrochloride 2.5 mg/10 mL + chlorphenamine maleate 2 mg/10 mL + ammonium chloride 50 mg/10 mL oral liquid, 200 mL 61988011000036103 pholcodine 3 mg/10 mL + phenylephrine hydrochloride 2.5 mg/10 mL + chlorphenamine maleate 2 mg/10 mL + ammonium chloride 50 mg/10 mL oral liquid 61788011000036108 pholcodine + phenylephrine + chlorphenamine + ammonium chloride +980631000168103 Desowen 0.05% cream, 25 g, tube 67167 980621000168101 Desowen 0.05% cream, 25 g 980601000168105 Desowen 0.05% cream 39556011000036104 Desowen 39556011000036104 Desowen 980611000168108 desonide 0.05% cream, 25 g 980591000168103 desonide 0.05% cream 44914011000036107 desonide +1109411000168101 Midalim 5 mg/5 mL injection solution, 5 x 5 mL ampoules 207223 1109401000168104 Midalim 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1109331000168100 Midalim 5 mg/5 mL injection solution, 5 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +921923011000036108 Nystatin Drops (Omegapharm) 100 000 units/mL oral liquid suspension, 24 mL, bottle 164020 921482011000036107 Nystatin Drops (Omegapharm) 100 000 units/mL oral liquid suspension, 24 mL 921028011000036108 Nystatin Drops (Omegapharm) 100 000 units/mL oral liquid suspension 58271000168101 Nystatin Drops (Omegapharm) 58271000168101 Nystatin Drops (Omegapharm) 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +1021601000168101 Voriconazole (Apo) 200 mg film-coated tablet, 50, blister pack 238282 1021591000168108 Voriconazole (Apo) 200 mg film-coated tablet, 50 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46809011000036108 voriconazole 200 mg tablet, 50 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +61043011000036105 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 4, blister pack 67363 56986011000036104 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 4 54147011000036101 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet 53575011000036100 Period Pain Relief (Pharmacist Formula) 53575011000036100 Period Pain Relief (Pharmacist Formula) 63739011000036102 naproxen sodium 275 mg tablet, 4 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +984881000168109 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 30, blister pack 200606 984871000168106 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 30 984841000168104 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet 984781000168100 Cetirizine (Blooms The Chemist) 984781000168100 Cetirizine (Blooms The Chemist) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +20307011000036109 Xeloda 150 mg film-coated tablet, 60, blister pack 75731 13516011000036106 Xeloda 150 mg film-coated tablet, 60 6798011000036104 Xeloda 150 mg film-coated tablet 3560011000036105 Xeloda 3560011000036105 Xeloda 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +60317011000036102 Cetrelief (Generic Health) 10 mg film-coated tablet, 10, blister pack 138826 56276011000036107 Cetrelief (Generic Health) 10 mg film-coated tablet, 10 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +59792011000036102 Dymadon capsule shaped 500 mg uncoated tablet, 4, blister pack 114080 55754011000036107 Dymadon capsule shaped 500 mg uncoated tablet, 4 53696011000036105 Dymadon capsule shaped 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +24791000036107 Volirop 12.5 mg film-coated tablet, 60, blister pack 174795 22581000036105 Volirop 12.5 mg film-coated tablet, 60 20211000036101 Volirop 12.5 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +812061000168107 Affora 20 mg film-coated tablet, 7, blister pack 198057 812051000168105 Affora 20 mg film-coated tablet, 7 812031000168104 Affora 20 mg film-coated tablet 811911000168100 Affora 811911000168100 Affora 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +37683011000036104 Sifrol 125 microgram uncoated tablet, 30, blister pack 67238 36949011000036109 Sifrol 125 microgram uncoated tablet, 30 36275011000036107 Sifrol 125 microgram uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +788301000168109 Viclofen 25 mg enteric tablet, 30, blister pack 75245 788291000168108 Viclofen 25 mg enteric tablet, 30 788241000168100 Viclofen 25 mg enteric tablet 788231000168109 Viclofen 788231000168109 Viclofen 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +933212021000036105 Donpesyn 10 mg film-coated tablet, 50, blister pack 142234 933201431000036109 Donpesyn 10 mg film-coated tablet, 50 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200911000036101 donepezil hydrochloride 10 mg tablet, 50 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1019481000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 56, blister pack 175215 1019471000168103 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 56 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019461000168109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 56 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +668751000168101 Easymate II diagnostic strip, 50, bottle 668741000168103 Easymate II diagnostic strip, 50 668731000168107 Easymate II diagnostic strip 668721000168109 Easymate II 668721000168109 Easymate II 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +925328011000036106 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 14, blister pack 165914 924864011000036103 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 14 924534011000036106 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924197011000036103 lercanidipine hydrochloride 20 mg tablet, 14 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +693951000168109 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet, 100, blister pack 215364 693941000168107 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet, 100 693891000168106 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +166001000036107 Peg-Intron Clearclick Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204811 164201000036107 Peg-Intron Clearclick Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162591000036109 Peg-Intron Clearclick Injector (peginterferon alfa-2b 50 microgram) powder for injection, 50 microgram cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46841000036104 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23388011000036105 peginterferon alfa-2b 50 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +166001000036107 Peg-Intron Clearclick Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204811 164201000036107 Peg-Intron Clearclick Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46841000036104 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +60306011000036103 Nurolasts Period Pain 275 mg film-coated tablet, 24, blister pack 137943 56265011000036109 Nurolasts Period Pain 275 mg film-coated tablet, 24 53855011000036102 Nurolasts Period Pain 275 mg film-coated tablet 26751000168101 Nurolasts Period Pain 26751000168101 Nurolasts Period Pain 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +775331000168101 Hizentra 1 g/5 mL injection solution, 5 mL vial 207386 775321000168104 Hizentra 1 g/5 mL injection solution, 5 mL vial 775301000168108 Hizentra 1 g/5 mL injection solution, 5 mL vial 772751000168104 Hizentra 772751000168104 Hizentra 775311000168106 normal immunoglobulin 1 g/5 mL injection, 5 mL vial 775291000168107 normal immunoglobulin 1 g/5 mL injection, vial 74965011000036103 normal immunoglobulin +763081000168109 Oxycodone MR (Chemmart) 15 mg modified release tablet, 60, blister pack 214486 763071000168106 Oxycodone MR (Chemmart) 15 mg modified release tablet, 60 763001000168101 Oxycodone MR (Chemmart) 15 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 71472011000036108 oxycodone hydrochloride 15 mg modified release tablet, 60 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +955371000168105 Tazocin EF 2 g/250 mg powder for injection, 2.25 g vial 132521 955361000168104 Tazocin EF 2 g/250 mg powder for injection, 2.25 g vial 955351000168101 Tazocin EF 2 g/250 mg powder for injection, 2.25 g vial 955221000168103 Tazocin EF 2 g/250 mg 955221000168103 Tazocin EF 2 g/250 mg 924112011000036104 piperacillin 2 g + tazobactam 250 mg injection, 2.25 g vial 923946011000036109 piperacillin 2 g + tazobactam 250 mg injection, 2.25 g vial 44928011000036106 piperacillin + tazobactam +83405011000036101 Atacand Plus 32/25 uncoated tablet, 7, blister pack 154251 83324011000036103 Atacand Plus 32/25 uncoated tablet, 7 83253011000036106 Atacand Plus 32/25 uncoated tablet 26321000168105 Atacand Plus 32/25 26321000168105 Atacand Plus 32/25 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +24631000036100 Biso 10 mg tablet, 28, blister pack 164256 22691000036108 Biso 10 mg tablet, 28 20291000036106 Biso 10 mg tablet 19861000036102 Biso 19861000036102 Biso 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +18328011000036101 Quinbisul 300 mg film-coated tablet, 50, bottle 116545 11528011000036105 Quinbisul 300 mg film-coated tablet, 50 4791011000036103 Quinbisul 300 mg film-coated tablet 3978011000036108 Quinbisul 3978011000036108 Quinbisul 26678011000036104 quinine bisulfate heptahydrate 300 mg tablet, 50 22074011000036102 quinine bisulfate heptahydrate 300 mg tablet 21513011000036108 quinine +1038921000168106 Atorvastatin (Actavis) 40 mg film-coated tablet, 10, blister pack 185033 1038911000168104 Atorvastatin (Actavis) 40 mg film-coated tablet, 10 1038901000168102 Atorvastatin (Actavis) 40 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1049751000168109 Oxycone 200 mg/20 mL injection solution, 4 x 20 mL ampoules 279326 1049741000168107 Oxycone 200 mg/20 mL injection solution, 4 x 20 mL ampoules 1049731000168103 Oxycone 200 mg/20 mL injection solution, 20 mL ampoule 1049161000168107 Oxycone 1049161000168107 Oxycone 786311000168106 oxycodone hydrochloride 200 mg/20 mL injection, 4 x 20 mL ampoules 786291000168107 oxycodone hydrochloride 200 mg/20 mL injection, ampoule 21259011000036105 oxycodone +168331000036102 Dermaveen Soap Free Wash 1% application, 1 L, pump pack 159188 167811000036103 Dermaveen Soap Free Wash 1% application, 1 L 167591000036106 Dermaveen Soap Free Wash 1% application 23461000168103 Dermaveen Soap Free Wash 23461000168103 Dermaveen Soap Free Wash 167821000036105 colloidal oatmeal 1% application, 1 L 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +61334011000036107 Paracetamol (Herron) 500 mg uncoated tablet, 500, blister pack 80924 57353011000036105 Paracetamol (Herron) 500 mg uncoated tablet, 500 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +843751000168108 Clonidine HCl (MZ) 150 microgram/mL injection solution, 10 x 1 mL ampoules 233725 843741000168106 Clonidine HCl (MZ) 150 microgram/mL injection solution, 10 x 1 mL ampoules 843701000168109 Clonidine HCl (MZ) 150 microgram/mL injection solution, ampoule 843691000168109 Clonidine HCl (MZ) 843691000168109 Clonidine HCl (MZ) 843731000168102 clonidine hydrochloride 150 microgram/mL injection, 10 x 1 mL ampoules 37967011000036105 clonidine hydrochloride 150 microgram/mL injection, ampoule 21589011000036108 clonidine +35659011000036105 Refresh Tears Plus 0.5% eye drops solution, 15 mL, bottle 35567011000036101 Refresh Tears Plus 0.5% eye drops solution, 15 mL 35459011000036107 Refresh Tears Plus 0.5% eye drops solution 35440011000036103 Refresh Tears Plus 35440011000036103 Refresh Tears Plus 35764011000036108 carmellose sodium 0.5% eye drops, 15 mL 35705011000036106 carmellose sodium 0.5% eye drops 35688011000036105 carmellose sodium +85050011000036103 Sudafed PE Sinus and Anti-Inflammatory Pain Relief film-coated tablet, 24, blister pack 164735 84914011000036102 Sudafed PE Sinus and Anti-Inflammatory Pain Relief film-coated tablet, 24 84799011000036109 Sudafed PE Sinus and Anti-Inflammatory Pain Relief film-coated tablet 84768011000036104 Sudafed PE Sinus and Anti-Inflammatory Pain Relief 84768011000036104 Sudafed PE Sinus and Anti-Inflammatory Pain Relief 85184011000036106 phenylephrine hydrochloride 5 mg + ibuprofen 200 mg tablet, 24 85088011000036109 phenylephrine hydrochloride 5 mg + ibuprofen 200 mg tablet 85071011000036108 phenylephrine + ibuprofen +749371000168102 Tacrolimus (AN) 5 mg hard capsule, 50, blister pack 224282 749361000168108 Tacrolimus (AN) 5 mg hard capsule, 50 749321000168103 Tacrolimus (AN) 5 mg hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +970521000168106 Pregabalin (Apo) 75 mg hard capsule, 14, blister pack 193274 970511000168104 Pregabalin (Apo) 75 mg hard capsule, 14 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1023771000168101 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 24, blister pack 227168 1023761000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 24 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1075611000168102 Aripiprazole (Auro) 30 mg uncoated tablet, 56, blister pack 198177 1075601000168100 Aripiprazole (Auro) 30 mg uncoated tablet, 56 1075521000168105 Aripiprazole (Auro) 30 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787821000168108 aripiprazole 30 mg tablet, 56 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +43943011000036100 Ramipril (Pharmacor) 10 mg hard capsule, 30, blister pack 146722 41435011000036106 Ramipril (Pharmacor) 10 mg hard capsule, 30 39803011000036103 Ramipril (Pharmacor) 10 mg hard capsule 39763011000036100 Ramipril (Pharmacor) 39763011000036100 Ramipril (Pharmacor) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +1082141000168108 Zirizine 10 mg film-coated tablet, 70, blister pack 286354 1082131000168104 Zirizine 10 mg film-coated tablet, 70 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 1082121000168102 cetirizine hydrochloride 10 mg tablet, 70 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +166161000036107 Temaccord 250 mg hard capsule, 20, sachet 206035 164401000036106 Temaccord 250 mg hard capsule, 20 162241000036101 Temaccord 250 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 164411000036108 temozolomide 250 mg capsule, 20 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +794741000168100 Candesartan (Blooms The Chemist) 32 mg uncoated tablet, 30, blister pack 260093 794731000168109 Candesartan (Blooms The Chemist) 32 mg uncoated tablet, 30 794721000168106 Candesartan (Blooms The Chemist) 32 mg uncoated tablet 794681000168100 Candesartan (Blooms The Chemist) 794681000168100 Candesartan (Blooms The Chemist) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +60109011000036100 Nurofen Caplet 200 mg sugar coated tablet, 24, blister pack 127287 56068011000036106 Nurofen Caplet 200 mg sugar coated tablet, 24 53777011000036106 Nurofen Caplet 200 mg sugar coated tablet 17551000168104 Nurofen Caplet 17551000168104 Nurofen Caplet 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +715531000168103 Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube 94875 715521000168101 Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g 715511000168108 Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream 56361000168104 Femizol Clotrimazole Thrush Treatment 3 Day 56361000168104 Femizol Clotrimazole Thrush Treatment 3 Day 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +131771000036103 Candesartan Cilexetil Combi 32/25 (Aspen) uncoated tablet, 30, blister pack 204579 128741000036103 Candesartan Cilexetil Combi 32/25 (Aspen) uncoated tablet, 30 124941000036108 Candesartan Cilexetil Combi 32/25 (Aspen) uncoated tablet 20701000168102 Candesartan Cilexetil Combi 32/25 (Aspen) 20701000168102 Candesartan Cilexetil Combi 32/25 (Aspen) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +931659011000036107 Twynsta 40/10 mg multilayer tablet, 98, blister pack 166264 930819011000036103 Twynsta 40/10 mg multilayer tablet, 98 930058011000036102 Twynsta 40/10 mg multilayer tablet 23641000168100 Twynsta 40/10 mg 23641000168100 Twynsta 40/10 mg 932432011000036101 telmisartan 40 mg + amlodipine 10 mg tablet, 98 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +933214171000036102 Seralin 50 mg film-coated tablet, 10, blister pack 160770 933203391000036101 Seralin 50 mg film-coated tablet, 10 933195811000036100 Seralin 50 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 929236011000036108 sertraline 50 mg tablet, 10 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +18962011000036101 Cortate 25 mg uncoated tablet, 60, bottle 27910 12270011000036104 Cortate 25 mg uncoated tablet, 60 4475011000036102 Cortate 25 mg uncoated tablet 4128011000036108 Cortate 4128011000036108 Cortate 27031011000036104 cortisone acetate 25 mg tablet, 60 22404011000036102 cortisone acetate 25 mg tablet 21779011000036103 cortisone +131691000036107 Firmagon (1 x 80 mg vial, 1 x inert diluent syringe), 1 pack, composite pack 200047 128661000036108 Firmagon (1 x 80 mg vial, 1 x inert diluent syringe), 1 pack 125331000036101 Firmagon (inert substance) diluent, syringe 922953011000036105 Firmagon 922953011000036105 Firmagon 128671000036100 degarelix 80 mg injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +131691000036107 Firmagon (1 x 80 mg vial, 1 x inert diluent syringe), 1 pack, composite pack 200047 128661000036108 Firmagon (1 x 80 mg vial, 1 x inert diluent syringe), 1 pack 122731000036106 Firmagon (degarelix 80 mg) powder for injection, 80 mg vial 922953011000036105 Firmagon 922953011000036105 Firmagon 128671000036100 degarelix 80 mg injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 122741000036101 degarelix 80 mg injection, vial 923929011000036103 degarelix +74131000036108 Neutrogena T/Gel Therapeutic Shampoo 0.5% shampoo, 25 mL, bottle 29628 72181000036102 Neutrogena T/Gel Therapeutic Shampoo 0.5% shampoo, 25 mL 70191000036101 Neutrogena T/Gel Therapeutic Shampoo 0.5% shampoo 65153011000036100 Neutrogena T/Gel Therapeutic Shampoo 65153011000036100 Neutrogena T/Gel Therapeutic Shampoo 72191000036100 coal tar 0.5% shampoo, 25 mL 70201000036104 coal tar 0.5% shampoo 69872011000036106 coal tar +678801000168104 Tenaxil SR 1.5 mg modified release tablet, 90, blister pack 139607 678791000168100 Tenaxil SR 1.5 mg modified release tablet, 90 678781000168103 Tenaxil SR 1.5 mg modified release tablet 678771000168101 Tenaxil SR 678771000168101 Tenaxil SR 27590011000036104 indapamide hemihydrate 1.5 mg modified release tablet, 90 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +80044011000036100 Oxaliplatin (Alphapharm) 50 mg powder for injection, 3 vials 130848 79959011000036107 Oxaliplatin (Alphapharm) 50 mg powder for injection, 3 vials 79918011000036109 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80056011000036105 oxaliplatin 50 mg injection, 3 vials 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +659431000168104 Paroxetine (AN) 20 mg film-coated tablet, 30, blister pack 176975 659421000168102 Paroxetine (AN) 20 mg film-coated tablet, 30 659411000168109 Paroxetine (AN) 20 mg film-coated tablet 659401000168106 Paroxetine (AN) 659401000168106 Paroxetine (AN) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +82340011000036104 Epiramax 200 mg film-coated tablet, 60, bottle 135597 82134011000036102 Epiramax 200 mg film-coated tablet, 60 82004011000036104 Epiramax 200 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +69233011000036108 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 500 mL bottle 19462 67033011000036106 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 500 mL bottle 65357011000036101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 500 mL bottle 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 71603011000036109 chlorhexidine acetate 0.1% (500 mg/500 mL) + cetrimide 1% (5 g/500 mL) solution, 500 mL bottle 70087011000036101 chlorhexidine acetate 0.1% (500 mg/500 mL) + cetrimide 1% (5 g/500 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +818491000168108 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 10 x 0.375 mL injection devices 262647 818481000168105 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 10 x 0.375 mL injection devices 818431000168109 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741351000168105 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, 10 x 0.375 mL injection devices 741271000168109 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, injection device 21352011000036107 follitropin alfa +662121000168105 Amoxiclav 875/125 (AN) film-coated tablet, 10, blister pack 123971 662111000168103 Amoxiclav 875/125 (AN) film-coated tablet, 10 662081000168108 Amoxiclav 875/125 (AN) film-coated tablet 662061000168104 Amoxiclav 875/125 (AN) 662061000168104 Amoxiclav 875/125 (AN) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +52718011000036108 Simvastatin (Spirit) 80 mg film-coated tablet, 30, bottle 116715 52534011000036107 Simvastatin (Spirit) 80 mg film-coated tablet, 30 52402011000036102 Simvastatin (Spirit) 80 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +60743011000036103 Paraderm Plus cream, 30 g, tube 50451 56701011000036100 Paraderm Plus cream, 30 g 54040011000036105 Paraderm Plus cream 53236011000036103 Paraderm Plus 53236011000036103 Paraderm Plus 63519011000036108 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 30 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +921940011000036103 Bis-Pectin oral liquid suspension, 200 mL, bottle 27309 921499011000036103 Bis-Pectin oral liquid suspension, 200 mL 921040011000036108 Bis-Pectin oral liquid suspension, 15 mL 920947011000036108 Bis-Pectin 920947011000036108 Bis-Pectin 922621011000036109 codeine phosphate hemihydrate 8.1 mg/15 mL + aluminium hydroxide 375 mg/15 mL + light kaolin 1.9 g/15 mL + pectin 120 mg/15 mL oral liquid, 200 mL 922113011000036102 codeine phosphate hemihydrate 8.1 mg/15 mL + aluminium hydroxide 375 mg/15 mL + light kaolin 1.9 g/15 mL + pectin 120 mg/15 mL oral liquid 922048011000036106 codeine + aluminium hydroxide + light kaolin + pectin +1083551000168107 Decongestant (Amcal) 0.05% nasal spray, 18 mL, pump pack 117621 74225011000036107 Decongestant (Amcal) 0.05% nasal spray, 18 mL 73794011000036105 Decongestant (Amcal) 0.05% nasal spray 73712011000036100 Decongestant (Amcal) 73712011000036100 Decongestant (Amcal) 75486011000036101 oxymetazoline hydrochloride 0.05% nasal spray, 18 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +44151011000036104 Clarinase Repetab modified release tablet, 6, blister pack 53516 41627011000036102 Clarinase Repetab modified release tablet, 6 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46446011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 6 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +135941000036109 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) uncoated tablet, 30, blister pack 204568 135301000036105 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) uncoated tablet, 30 134561000036102 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) uncoated tablet 56581000168101 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) 56581000168101 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +743021000168104 Morphine MR (AN) 10 mg modified release tablet, 20, blister pack 225425 743011000168106 Morphine MR (AN) 10 mg modified release tablet, 20 743001000168108 Morphine MR (AN) 10 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +747841000168105 Morphine MR (SCP) 30 mg modified release tablet, 60, blister pack 225422 747831000168101 Morphine MR (SCP) 30 mg modified release tablet, 60 747781000168109 Morphine MR (SCP) 30 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 35166011000036105 morphine sulfate pentahydrate 30 mg modified release tablet, 60 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +84373011000036103 Loratadine (Pharmacist Formula) 10 mg uncoated tablet, 10, blister pack 166228 84066011000036100 Loratadine (Pharmacist Formula) 10 mg uncoated tablet, 10 83691011000036103 Loratadine (Pharmacist Formula) 10 mg uncoated tablet 83591011000036107 Loratadine (Pharmacist Formula) 83591011000036107 Loratadine (Pharmacist Formula) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +903651000168104 Brillior 225 mg hard capsule, 56, blister pack 224344 903641000168101 Brillior 225 mg hard capsule, 56 903581000168107 Brillior 225 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +968431000168101 Pemetrexed (Apo) 100 mg powder for injection, 1 vial 210439 968421000168104 Pemetrexed (Apo) 100 mg powder for injection, 1 vial 968411000168106 Pemetrexed (Apo) 100 mg powder for injection, 100 mg vial 968401000168108 Pemetrexed (Apo) 968401000168108 Pemetrexed (Apo) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +61060011000036107 Dry Tickly Cough (Chemists' Own) 1 mg/mL oral liquid solution, 200 mL, bottle 68111 57003011000036101 Dry Tickly Cough (Chemists' Own) 1 mg/mL oral liquid solution, 200 mL 54154011000036105 Dry Tickly Cough (Chemists' Own) 1 mg/mL oral liquid solution 53393011000036107 Dry Tickly Cough (Chemists' Own) 53393011000036107 Dry Tickly Cough (Chemists' Own) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +165931000036107 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204807 164131000036109 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 28076011000036102 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165931000036107 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204807 164131000036109 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack 162601000036102 Peg-Intron Clearclick Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28076011000036102 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165931000036107 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204807 164131000036109 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 140 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28076011000036102 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +140271000036103 Refresh Night Time 1 g/g eye ointment, 2 x 3.5 g tubes 138691000036103 Refresh Night Time 1 g/g eye ointment, 2 x 3.5 g 137671000036103 Refresh Night Time 1 g/g eye ointment 137261000036109 Refresh Night Time 137261000036109 Refresh Night Time 35761011000036105 paraffin 1 g/g eye ointment, 2 x 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +34691011000036105 Salbutamol (GA) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135469 34275011000036103 Salbutamol (GA) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 34003011000036100 Salbutamol (GA) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33943011000036101 Salbutamol (GA) 33943011000036101 Salbutamol (GA) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +34691011000036105 Salbutamol (GA) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 199799 34275011000036103 Salbutamol (GA) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 34003011000036100 Salbutamol (GA) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33943011000036101 Salbutamol (GA) 33943011000036101 Salbutamol (GA) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +847991000168107 Alendrobell 10 mg uncoated tablet, 30, blister pack 130162 847981000168109 Alendrobell 10 mg uncoated tablet, 30 847971000168106 Alendrobell 10 mg uncoated tablet 32182011000036105 Alendrobell 32182011000036105 Alendrobell 46700011000036104 alendronate 10 mg tablet, 30 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +655861000168108 Venlafaxine SR (AN) 150 mg modified release capsule, 28, blister pack 160295 655851000168106 Venlafaxine SR (AN) 150 mg modified release capsule, 28 655841000168109 Venlafaxine SR (AN) 150 mg modified release capsule 655751000168101 Venlafaxine SR (AN) 655751000168101 Venlafaxine SR (AN) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +933671000168100 Centevo 200/50/200 mg film-coated tablet, 50, bottle 238859 933661000168106 Centevo 200/50/200 mg film-coated tablet, 50 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933651000168109 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 50 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +933214091000036102 Visanne 2 mg tablet, 168, blister pack 160465 933203301000036109 Visanne 2 mg tablet, 168 933195781000036103 Visanne 2 mg tablet 933193281000036108 Visanne 933193281000036108 Visanne 933203311000036106 dienogest 2 mg tablet, 168 933195801000036102 dienogest 2 mg tablet 933216351000036102 dienogest +925311011000036109 Clopidogrel (Actavis) 75 mg film-coated tablet, 120, bottle 164865 924848011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet, 120 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 925440011000036100 clopidogrel 75 mg tablet, 120 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1092091000168100 Anti-Inflammatory (Herron) 1% gel, 100 g, tube 285415 1092081000168103 Anti-Inflammatory (Herron) 1% gel, 100 g 1092031000168104 Anti-Inflammatory (Herron) 1% gel 1092021000168102 Anti-Inflammatory (Herron) 1092021000168102 Anti-Inflammatory (Herron) 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +59775011000036104 Anti-Fungal (Guardian) 1% cream, 10 g, tube 102008 55669011000036107 Anti-Fungal (Guardian) 1% cream, 10 g 53723011000036101 Anti-Fungal (Guardian) 1% cream 53208011000036105 Anti-Fungal (Guardian) 53208011000036105 Anti-Fungal (Guardian) 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +20898011000036105 Celapram 40 mg film-coated tablet, 28, blister pack 93543 14058011000036100 Celapram 40 mg film-coated tablet, 28 7336011000036105 Celapram 40 mg film-coated tablet 3143011000036102 Celapram 3143011000036102 Celapram 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +927181000168100 Zovirax 800 mg uncoated tablet, 5, blister pack 45083 927161000168109 Zovirax 800 mg uncoated tablet, 5 927141000168105 Zovirax 800 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 844511000168104 aciclovir 800 mg tablet, 5 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +1087801000168101 Gesicomb film-coated tablet, 2, blister pack 283035 1087791000168102 Gesicomb film-coated tablet, 2 1087781000168100 Gesicomb film-coated tablet 1087751000168107 Gesicomb 1087751000168107 Gesicomb 812811000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 2 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +20592011000036106 Diltiazem Hydrochloride CD (GenRx) 240 mg modified release capsule, 30, blister pack 80553 13942011000036105 Diltiazem Hydrochloride CD (GenRx) 240 mg modified release capsule, 30 7230011000036100 Diltiazem Hydrochloride CD (GenRx) 240 mg modified release capsule 37971000168108 Diltiazem Hydrochloride CD (GenRx) 37971000168108 Diltiazem Hydrochloride CD (GenRx) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +59715011000036109 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 48, blister pack 100678 55644011000036101 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 48 53667011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet 53194011000036103 Paracetamol Pain Relief (Amcal) 53194011000036103 Paracetamol Pain Relief (Amcal) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +920672011000036109 Perindopril Erbumine (GA) 8 mg uncoated tablet, 30, blister pack 121636 920374011000036109 Perindopril Erbumine (GA) 8 mg uncoated tablet, 30 920140011000036105 Perindopril Erbumine (GA) 8 mg uncoated tablet 920105011000036108 Perindopril Erbumine (GA) 920105011000036108 Perindopril Erbumine (GA) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +920672011000036109 Perindopril Erbumine (GA) 8 mg uncoated tablet, 30, blister pack 203126 920374011000036109 Perindopril Erbumine (GA) 8 mg uncoated tablet, 30 920140011000036105 Perindopril Erbumine (GA) 8 mg uncoated tablet 920105011000036108 Perindopril Erbumine (GA) 920105011000036108 Perindopril Erbumine (GA) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +60017011000036103 Codral Nightime Cold and Flu film-coated tablet, 48, blister pack 123363 55979011000036100 Codral Nightime Cold and Flu film-coated tablet, 48 53745011000036102 Codral Nightime Cold and Flu film-coated tablet 60091000168104 Codral Nightime Cold and Flu 60091000168104 Codral Nightime Cold and Flu 63383011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +923709011000036103 Oxaliplatin (Baxter) 50 mg powder for injection, 1 vial 150000 923330011000036101 Oxaliplatin (Baxter) 50 mg powder for injection, 1 vial 923007011000036108 Oxaliplatin (Baxter) 50 mg powder for injection, 50 mg vial 922922011000036102 Oxaliplatin (Baxter) 922922011000036102 Oxaliplatin (Baxter) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +659471000168101 Candesartan Cilexetil HCTZ 32/25 (AN) uncoated tablet, 30, bottle 196399 659461000168107 Candesartan Cilexetil HCTZ 32/25 (AN) uncoated tablet, 30 659451000168105 Candesartan Cilexetil HCTZ 32/25 (AN) uncoated tablet 659441000168108 Candesartan Cilexetil HCTZ 32/25 (AN) 659441000168108 Candesartan Cilexetil HCTZ 32/25 (AN) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +933211941000036109 Donpesyn 5 mg film-coated tablet, 56, blister pack 142231 933201271000036105 Donpesyn 5 mg film-coated tablet, 56 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200761000036101 donepezil hydrochloride 5 mg tablet, 56 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1062591000168108 Rapideine Extra uncoated tablet, 12, blister pack 220728 1062581000168105 Rapideine Extra uncoated tablet, 12 1062551000168103 Rapideine Extra uncoated tablet 1062541000168100 Rapideine Extra 1062541000168100 Rapideine Extra 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +60394011000036109 Vinorelbine (Link Medical Products) 50 mg/5 mL concentrated injection, 5 mL vial 144046 56353011000036106 Vinorelbine (Link Medical Products) 50 mg/5 mL concentrated injection, 5 mL vial 53888011000036100 Vinorelbine (Link Medical Products) 50 mg/5 mL concentrated injection, 5 mL vial 53400011000036107 Vinorelbine (Link Medical Products) 53400011000036107 Vinorelbine (Link Medical Products) 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +981351000168109 Lovenox 100 mg/mL injection solution, 15 x 1 mL syringes 80269 981341000168107 Lovenox 100 mg/mL injection solution, 15 x 1 mL syringes 981061000168109 Lovenox 100 mg/mL injection solution, syringe 112571000036109 Lovenox 112571000036109 Lovenox 823801000168100 enoxaparin sodium 100 mg/mL injection, 15 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +20112011000036101 Qvar Inhaler 50 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 71992 13337011000036100 Qvar Inhaler 50 microgram/actuation pressurised inhalation, 200 actuations 6622011000036100 Qvar Inhaler 50 microgram/actuation pressurised inhalation, actuation 45381000168100 Qvar Inhaler 45381000168100 Qvar Inhaler 27701011000036109 beclometasone dipropionate 50 microgram/actuation pressurised inhalation, 200 actuations 23036011000036101 beclometasone dipropionate 50 microgram/actuation pressurised inhalation, actuation 21435011000036108 beclometasone +676561000168104 Vasafil 25 mg film-coated tablet, 4, blister pack 172073 676551000168101 Vasafil 25 mg film-coated tablet, 4 676541000168103 Vasafil 25 mg film-coated tablet 675921000168109 Vasafil 675921000168109 Vasafil 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +80963011000036102 Zinc and Salicylic Acid (David Craig) paste, 100 g, jar 14249 80512011000036104 Zinc and Salicylic Acid (David Craig) paste, 100 g 80173011000036106 Zinc and Salicylic Acid (David Craig) paste 80137011000036100 Zinc and Salicylic Acid (David Craig) 80137011000036100 Zinc and Salicylic Acid (David Craig) 81606011000036104 salicylic acid 2% + zinc oxide 24% paste, 100 g 81271011000036102 salicylic acid 2% + zinc oxide 24% paste 81212011000036102 salicylic acid + zinc oxide +84319011000036109 Sulprix 200 mg tablet, 100, blister pack 156048 84012011000036100 Sulprix 200 mg tablet, 100 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84641011000036106 amisulpride 200 mg tablet, 100 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +131681000036105 Firmagon (2 x 120 mg vials, 2 x inert diluent syringes), 1 pack, composite pack 200046 128641000036107 Firmagon (2 x 120 mg vials, 2 x inert diluent syringes), 1 pack 125331000036101 Firmagon (inert substance) diluent, syringe 922953011000036105 Firmagon 922953011000036105 Firmagon 128651000036105 degarelix 120 mg injection [2 vials] (&) inert substance diluent [2 syringes], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +131681000036105 Firmagon (2 x 120 mg vials, 2 x inert diluent syringes), 1 pack, composite pack 200046 128641000036107 Firmagon (2 x 120 mg vials, 2 x inert diluent syringes), 1 pack 122791000036107 Firmagon (degarelix 120 mg) powder for injection, 120 mg vial 922953011000036105 Firmagon 922953011000036105 Firmagon 128651000036105 degarelix 120 mg injection [2 vials] (&) inert substance diluent [2 syringes], 1 pack 122801000036106 degarelix 120 mg injection, vial 923929011000036103 degarelix +904131000168101 Amoxapin 250 mg hard capsule, 30, blister pack 198131 904121000168104 Amoxapin 250 mg hard capsule, 30 904091000168103 Amoxapin 250 mg hard capsule 904081000168101 Amoxapin 904081000168101 Amoxapin 900551000168107 amoxicillin 250 mg capsule, 30 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +899311000168104 Brenzys Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 245253 899301000168102 Brenzys Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 899261000168105 Brenzys Auto-Injector 50 mg/mL injection solution, injection device 899251000168108 Brenzys Auto-Injector 899251000168108 Brenzys Auto-Injector 898001000168109 etanercept 50 mg/mL injection, 4 x 1 mL injection devices 897981000168103 etanercept 50 mg/mL injection, injection device 21347011000036107 etanercept +920702011000036109 Terbinafine (GA) 250 mg uncoated tablet, 42, blister pack 119754 920366011000036106 Terbinafine (GA) 250 mg uncoated tablet, 42 920132011000036105 Terbinafine (GA) 250 mg uncoated tablet 920113011000036109 Terbinafine (GA) 920113011000036109 Terbinafine (GA) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +82351000036103 Rabeprazole Sodium (Generic Health) 20 mg enteric tablet, 30, blister pack 189748 80321000036108 Rabeprazole Sodium (Generic Health) 20 mg enteric tablet, 30 78521000036108 Rabeprazole Sodium (Generic Health) 20 mg enteric tablet 77851000036103 Rabeprazole Sodium (Generic Health) 77851000036103 Rabeprazole Sodium (Generic Health) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +50574011000036103 Durotram XR (once a day) 300 mg modified release tablet, 30, blister pack 134823 49608011000036101 Durotram XR (once a day) 300 mg modified release tablet, 30 48788011000036108 Durotram XR (once a day) 300 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51511011000036101 tramadol hydrochloride 300 mg modified release tablet, 30 50988011000036106 tramadol hydrochloride 300 mg modified release tablet 21486011000036105 tramadol +1015071000168105 Valaciclovir (Apotex) 500 mg film-coated tablet, 60, blister pack 158914 1015061000168104 Valaciclovir (Apotex) 500 mg film-coated tablet, 60 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929222011000036106 valaciclovir 500 mg tablet, 60 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +166251000036102 Amlodipine (Spirit) 5 mg uncoated tablet, 30, blister pack 96950 164511000036107 Amlodipine (Spirit) 5 mg uncoated tablet, 30 162291000036107 Amlodipine (Spirit) 5 mg uncoated tablet 161871000036102 Amlodipine (Spirit) 161871000036102 Amlodipine (Spirit) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +37376011000036105 Marcain 0.5% with Adrenaline 1 in 200 000 Dental injection solution, 50 x 2.2 mL cartridges 11954 36677011000036104 Marcain 0.5% with Adrenaline 1 in 200 000 Dental injection solution, 50 x 2.2 mL cartridges 36113011000036101 Marcain 0.5% with Adrenaline 1 in 200 000 Dental injection solution, 2.2 mL cartridge 24631000168107 Marcain 0.5% with Adrenaline 1 in 200 000 Dental 24631000168107 Marcain 0.5% with Adrenaline 1 in 200 000 Dental 38590011000036109 bupivacaine hydrochloride monohydrate 0.5% (11 mg/2.2 mL) + adrenaline (epinephrine) 1 in 200 000 (11 microgram/2.2 mL) injection, 50 x 2.2 mL cartridges 37861011000036107 bupivacaine hydrochloride monohydrate 0.5% (11 mg/2.2 mL) + adrenaline (epinephrine) 1 in 200 000 (11 microgram/2.2 mL) injection, cartridge 37718011000036101 bupivacaine + adrenaline (epinephrine) +778001000168104 Endone XR 20 mg modified release tablet, 28, blister pack 153599 777991000168108 Endone XR 20 mg modified release tablet, 28 777961000168101 Endone XR 20 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +50398011000036101 Cystine Amino Acid Supplement containing 500 mg cystine powder for oral liquid, 30 x 4 g sachets 49291011000036105 Cystine Amino Acid Supplement containing 500 mg cystine powder for oral liquid, 30 x 4 g sachets 311391000168106 Cystine Amino Acid Supplement containing 500 mg cystine powder for oral liquid, 4 g sachet 48312011000036106 Cystine Amino Acid Supplement 48312011000036106 Cystine Amino Acid Supplement 51278011000036108 cystine with carbohydrate containing 500 mg cystine powder for oral liquid, 30 x 4 g sachets 311211000168105 cystine with carbohydrate containing 500 mg cystine powder for oral liquid, 4 g sachet 50735011000036102 cystine with carbohydrate +77371011000036109 Ostelin-1000 25 microgram soft capsule, 6, bottle 67032 76787011000036106 Ostelin-1000 25 microgram soft capsule, 6 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78291011000036101 ergocalciferol 25 microgram capsule, 6 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +963441000168102 Aripiprazole (Apo) 10 mg uncoated tablet, 100, bottle 152920 963431000168106 Aripiprazole (Apo) 10 mg uncoated tablet, 100 870071000168105 Aripiprazole (Apo) 10 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +929679011000036100 Vexazone 30 mg uncoated tablet, 28, blister pack 164344 929515011000036101 Vexazone 30 mg uncoated tablet, 28 929405011000036108 Vexazone 30 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +60018011000036102 Paracetamol (Priceline) 500 mg film-coated tablet, 12, blister pack 123368 55980011000036100 Paracetamol (Priceline) 500 mg film-coated tablet, 12 53746011000036109 Paracetamol (Priceline) 500 mg film-coated tablet 53428011000036101 Paracetamol (Priceline) 53428011000036101 Paracetamol (Priceline) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +812201000168101 Iptam 100 mg film-coated tablet, 4, blister pack 124087 812191000168104 Iptam 100 mg film-coated tablet, 4 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 46116011000036106 sumatriptan 100 mg tablet, 4 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +69180011000036106 Skin Therapy Wash (Hamilton) 3.5% lotion, 10 mL sachet 17123 66980011000036103 Skin Therapy Wash (Hamilton) 3.5% lotion, 10 mL sachet 65400011000036104 Skin Therapy Wash (Hamilton) 3.5% lotion, 10 mL sachet 32203011000036104 Skin Therapy Wash (Hamilton) 32203011000036104 Skin Therapy Wash (Hamilton) 71553011000036107 light liquid paraffin 3.5% lotion, 10 mL sachet 70060011000036104 light liquid paraffin 3.5% lotion, sachet 33638011000036106 light liquid paraffin +74281000036100 Mirtazapine (Pfizer) 30 mg film-coated tablet, 30, blister pack 183399 71861000036109 Mirtazapine (Pfizer) 30 mg film-coated tablet, 30 69881000036106 Mirtazapine (Pfizer) 30 mg film-coated tablet 69301000036108 Mirtazapine (Pfizer) 69301000036108 Mirtazapine (Pfizer) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +20854011000036108 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92118 14017011000036109 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 84 x Rebetol capsules), 1 pack 7295011000036100 Peg-Intron Redipen Injector (peginterferon alfa-2b 100 microgram) powder for injection, 100 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28080011000036106 peginterferon alfa-2b 100 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23390011000036109 peginterferon alfa-2b 100 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20854011000036108 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92118 14017011000036109 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 84 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28080011000036106 peginterferon alfa-2b 100 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20854011000036108 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92118 14017011000036109 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 84 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28080011000036106 peginterferon alfa-2b 100 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +61068011000036109 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 100 mL, bottle 68601 57011011000036100 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 100 mL 54160011000036107 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 63687011000036108 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 100 mL 62048011000036104 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +44474011000036102 Orgalutran 250 microgram/0.5 mL injection solution, 0.5 mL syringe 74931 41930011000036104 Orgalutran 250 microgram/0.5 mL injection solution, 0.5 mL syringe 40271011000036102 Orgalutran 250 microgram/0.5 mL injection solution, 0.5 mL syringe 39579011000036106 Orgalutran 39579011000036106 Orgalutran 46717011000036100 ganirelix 250 microgram/0.5 mL injection, 0.5 mL syringe 45281011000036103 ganirelix 250 microgram/0.5 mL injection, syringe 44862011000036109 ganirelix +65681000036108 Cold Sore (Amcal) 5% cream, 5 g, tube 106590 63071000036103 Cold Sore (Amcal) 5% cream, 5 g 61541000036101 Cold Sore (Amcal) 5% cream 60201000036107 Cold Sore (Amcal) 60201000036107 Cold Sore (Amcal) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +69301011000036107 Parachoc 2.5 mL/5 mL oral liquid emulsion, 200 mL, bottle 20865 67101011000036108 Parachoc 2.5 mL/5 mL oral liquid emulsion, 200 mL 65306011000036108 Parachoc 2.5 mL/5 mL oral liquid emulsion, 5 mL 64944011000036106 Parachoc 64944011000036106 Parachoc 71669011000036108 liquid paraffin 2.5 mL/5 mL oral liquid, 200 mL 70118011000036107 liquid paraffin 2.5 mL/5 mL oral liquid 33623011000036103 liquid paraffin +44520011000036101 Napamide 2.5 mg film-coated tablet, 90, bottle 77359 12775011000036102 Napamide 2.5 mg film-coated tablet, 90 6069011000036107 Napamide 2.5 mg film-coated tablet 4110011000036104 Napamide 4110011000036104 Napamide 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +21060011000036102 Simvahexal 20 mg film-coated tablet, 30, bottle 97047 14205011000036108 Simvahexal 20 mg film-coated tablet, 30 7486011000036105 Simvahexal 20 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +933241000168109 Centevo 150/37.5/200 mg film-coated tablet, 90, bottle 238857 933231000168100 Centevo 150/37.5/200 mg film-coated tablet, 90 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933221000168103 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 90 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +996681000168101 Renvela 2.4 g powder for oral liquid, 60 sachets 220890 996671000168104 Renvela 2.4 g powder for oral liquid, 60 sachets 996621000168100 Renvela 2.4 g powder for oral liquid, 2.4 g sachet 996601000168109 Renvela 996601000168109 Renvela 996661000168105 sevelamer carbonate 2.4 g powder for oral liquid, 60 sachets 996611000168107 sevelamer carbonate 2.4 g powder for oral liquid, sachet 32634011000036107 sevelamer +61431011000036103 Imodium Melt 2 mg orally disintegrating tablet, 2, blister pack 83176 57356011000036104 Imodium Melt 2 mg orally disintegrating tablet, 2 54283011000036103 Imodium Melt 2 mg orally disintegrating tablet 7341000168106 Imodium Melt 7341000168106 Imodium Melt 47721000036102 loperamide hydrochloride 2 mg orally disintegrating tablet, 2 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +800711000168109 Actonate 35 mg film-coated tablet, 12, blister pack 163748 800701000168106 Actonate 35 mg film-coated tablet, 12 800601000168100 Actonate 35 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1057451000168108 Ramipril (Auro) 5 mg uncoated tablet, 30, blister pack 175222 1057441000168106 Ramipril (Auro) 5 mg uncoated tablet, 30 1057401000168109 Ramipril (Auro) 5 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +861491000168103 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16, blister pack 133507 861481000168101 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16 861361000168100 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 861241000168105 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +923765011000036104 Gaviscon Cool chewable tablet, 16, compact 133124 923277011000036107 Gaviscon Cool chewable tablet, 16 922968011000036106 Gaviscon Cool chewable tablet 21391000168102 Gaviscon Cool 21391000168102 Gaviscon Cool 924111011000036105 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 16 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +719061000168104 Privigen 40 g/400 mL injection solution, 400 mL bottle 219160 719051000168101 Privigen 40 g/400 mL injection solution, 400 mL bottle 719031000168107 Privigen 40 g/400 mL injection solution, 400 mL bottle 718951000168105 Privigen 718951000168105 Privigen 719041000168103 normal immunoglobulin 40 g/400 mL injection, 400 mL bottle 719021000168109 normal immunoglobulin 40 g/400 mL injection, bottle 74965011000036103 normal immunoglobulin +930291000168108 Zofran 8 mg/4 mL injection solution, 4 x 4 mL ampoules 47264 930281000168105 Zofran 8 mg/4 mL injection solution, 4 x 4 mL ampoules 5196011000036106 Zofran 8 mg/4 mL injection solution, 4 mL ampoule 2471000168108 Zofran 2471000168108 Zofran 930271000168107 ondansetron 8 mg/4 mL injection, 4 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +20311011000036104 Lisodur 10 mg uncoated tablet, 30, blister pack 75846 13520011000036101 Lisodur 10 mg uncoated tablet, 30 6802011000036102 Lisodur 10 mg uncoated tablet 3180011000036103 Lisodur 3180011000036103 Lisodur 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +19124011000036104 Iodosorb (66051070) 3 g sterile dusting powder, 7 sachets 43364 12427011000036103 Iodosorb (66051070) 3 g sterile dusting powder, 7 sachets 5798011000036101 Iodosorb (66051070) 3 g sterile dusting powder, 3 g sachet 63931000168106 Iodosorb (66051070) 63931000168106 Iodosorb (66051070) 27114011000036101 cadexomer-iodine 3 g sterile dusting powder, 7 sachets 22480011000036108 cadexomer-iodine 3 g sterile dusting powder, sachet 21550011000036106 cadexomer-iodine +50231011000036107 XP Maxamum powder for oral liquid, 30 x 50 g sachets 49494011000036109 XP Maxamum powder for oral liquid, 30 x 50 g sachets 249691000168102 XP Maxamum powder for oral liquid, 50 g sachet 7961000168109 XP Maxamum 7961000168109 XP Maxamum 51449011000036102 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 50 g sachets 249491000168100 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 50 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +83415011000036104 Symbicort Turbuhaler 400/12 powder for inhalation, 60 actuations, dry powder inhaler 80877 83333011000036103 Symbicort Turbuhaler 400/12 powder for inhalation, 60 actuations 33097011000036108 Symbicort Turbuhaler 400/12 powder for inhalation, actuation 1881000168103 Symbicort Turbuhaler 400/12 1881000168103 Symbicort Turbuhaler 400/12 83500011000036102 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 60 actuations 33685011000036105 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +60803011000036106 Imodium Caplet 2 mg uncoated tablet, 5, blister pack 56001 56759011000036105 Imodium Caplet 2 mg uncoated tablet, 5 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63556011000036106 loperamide hydrochloride 2 mg tablet, 5 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +796461000168103 Quetiapine (Accord) 300 mg film-coated tablet, 20, blister pack 203594 796451000168100 Quetiapine (Accord) 300 mg film-coated tablet, 20 796441000168102 Quetiapine (Accord) 300 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +921858011000036108 Aloxi 250 microgram/5 mL injection solution, 5 mL vial 114185 921379011000036100 Aloxi 250 microgram/5 mL injection solution, 5 mL vial 920975011000036102 Aloxi 250 microgram/5 mL injection solution, 5 mL vial 920922011000036109 Aloxi 920922011000036109 Aloxi 922530011000036107 palonosetron 250 microgram/5 mL injection, 5 mL vial 922072011000036107 palonosetron 250 microgram/5 mL injection, vial 922052011000036105 palonosetron +20174011000036103 Prazosin (Terry White Chemists) 5 mg uncoated tablet, 100, blister pack 73863 13397011000036106 Prazosin (Terry White Chemists) 5 mg uncoated tablet, 100 6682011000036108 Prazosin (Terry White Chemists) 5 mg uncoated tablet 2969011000036104 Prazosin (Terry White Chemists) 2969011000036104 Prazosin (Terry White Chemists) 27729011000036100 prazosin 5 mg tablet, 100 23064011000036100 prazosin 5 mg tablet 21544011000036104 prazosin +671111000168102 Zolmitriptan (Apo) 2.5 mg film-coated tablet, 2, blister pack 200878 671101000168100 Zolmitriptan (Apo) 2.5 mg film-coated tablet, 2 671091000168105 Zolmitriptan (Apo) 2.5 mg film-coated tablet 671081000168107 Zolmitriptan (Apo) 671081000168107 Zolmitriptan (Apo) 27480011000036105 zolmitriptan 2.5 mg tablet, 2 22826011000036105 zolmitriptan 2.5 mg tablet 21516011000036102 zolmitriptan +91461000036101 Yaz Flex tablet, 4 x 30, dial dispenser packs 179878 89681000036108 Yaz Flex tablet, 4 x 30 88411000036109 Yaz Flex tablet 87551000036108 Yaz Flex 87551000036108 Yaz Flex 89701000036105 drospirenone 3 mg + ethinylestradiol 20 microgram tablet, 4 x 30 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +34772011000036101 Dilaudid-HP 10 mg/mL injection solution, 10 x 1 mL ampoules 67357 34353011000036109 Dilaudid-HP 10 mg/mL injection solution, 10 x 1 mL ampoules 6480011000036106 Dilaudid-HP 10 mg/mL injection solution, ampoule 1601000168105 Dilaudid-HP 1601000168105 Dilaudid-HP 35201011000036103 hydromorphone hydrochloride 10 mg/mL injection, 10 x 1 mL ampoules 22948011000036101 hydromorphone hydrochloride 10 mg/mL injection, ampoule 21480011000036107 hydromorphone +61598011000036105 Sinus with Antihistamine (Terry White Chemists) uncoated tablet, 48, blister pack 95856 57520011000036103 Sinus with Antihistamine (Terry White Chemists) uncoated tablet, 48 54337011000036106 Sinus with Antihistamine (Terry White Chemists) uncoated tablet 53477011000036101 Sinus with Antihistamine (Terry White Chemists) 53477011000036101 Sinus with Antihistamine (Terry White Chemists) 63903011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 48 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +60502011000036100 Xyzal 5 mg film-coated tablet, 2, blister pack 150854 56460011000036101 Xyzal 5 mg film-coated tablet, 2 53929011000036106 Xyzal 5 mg film-coated tablet 53093011000036108 Xyzal 53093011000036108 Xyzal 63374011000036102 levocetirizine dihydrochloride 5 mg tablet, 2 61931011000036101 levocetirizine dihydrochloride 5 mg tablet 61816011000036108 levocetirizine +1103531000168108 Quetiapine (RBX) 300 mg film-coated tablet, 100, strip pack 166422 1103521000168105 Quetiapine (RBX) 300 mg film-coated tablet, 100 2711000036103 Quetiapine (RBX) 300 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +60986011000036108 Progan Promethazine Elixir 1 mg/mL oral liquid solution, 100 mL, bottle 63256 56929011000036101 Progan Promethazine Elixir 1 mg/mL oral liquid solution, 100 mL 54125011000036108 Progan Promethazine Elixir 1 mg/mL oral liquid solution 11951000168100 Progan Promethazine Elixir 11951000168100 Progan Promethazine Elixir 63682011000036106 promethazine hydrochloride 1 mg/mL oral liquid, 100 mL 62044011000036106 promethazine hydrochloride 1 mg/mL oral liquid 21237011000036104 promethazine +795321000168106 Instanyl 200 microgram/actuation nasal spray, 2 x 1 actuation, pump packs 197689 795311000168104 Instanyl 200 microgram/actuation nasal spray, 2 x 1 actuation 795261000168105 Instanyl 200 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795301000168102 fentanyl 200 microgram/actuation nasal spray, 2 x 1 actuation 795251000168108 fentanyl 200 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +130551000036105 Femrelief One 150 mg hard capsule, 1, strip pack 170239 127491000036104 Femrelief One 150 mg hard capsule, 1 124601000036100 Femrelief One 150 mg hard capsule 38271000168100 Femrelief One 38271000168100 Femrelief One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1100311000168103 Delucon 25 mg film-coated tablet, 100, bottle 172844 1100301000168101 Delucon 25 mg film-coated tablet, 100 1651000036102 Delucon 25 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 1076631000168103 quetiapine 25 mg tablet, 100 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +753541000168101 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet, 1000, bottle 218243 753531000168105 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet, 1000 753481000168107 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet 753471000168109 Olmesartan/Amlodipine 20/5 (Apo) 753471000168109 Olmesartan/Amlodipine 20/5 (Apo) 753521000168107 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 1000 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +44147011000036105 Clarinase Repetab modified release tablet, 14, blister pack 53516 41623011000036106 Clarinase Repetab modified release tablet, 14 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46442011000036101 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 14 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +73305011000036107 Jurnista 64 mg modified release tablet, 14, blister pack 141535 73103011000036100 Jurnista 64 mg modified release tablet, 14 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73501011000036108 hydromorphone hydrochloride 64 mg modified release tablet, 14 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +809351000168100 PKU Baby oral liquid solution, 500 mL bottle 809341000168102 PKU Baby oral liquid solution, 500 mL bottle 809321000168108 PKU Baby oral liquid solution, 500 mL bottle 807071000168102 PKU Baby 807071000168102 PKU Baby 809331000168106 amino acid formula with fat, carbohydrate, vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine and supplemented with docosahexaenoic acid oral liquid, 500 mL bottle 809311000168101 amino acid formula with fat, carbohydrate, vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine and supplemented with docosahexaenoic acid oral liquid, 500 mL bottle 809301000168104 amino acid formula with fat, carbohydrate, vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine and supplemented with docosahexaenoic acid +19654011000036104 Distaph 250 mg hard capsule, 24, blister pack 59654 12919011000036102 Distaph 250 mg hard capsule, 24 6209011000036100 Distaph 250 mg hard capsule 4299011000036109 Distaph 4299011000036109 Distaph 27778011000036109 dicloxacillin 250 mg capsule, 24 23108011000036100 dicloxacillin 250 mg capsule 21398011000036101 dicloxacillin +43990011000036100 Nimotop 10 mg/50 mL intravenous infusion injection, 50 mL vial 43101 41481011000036103 Nimotop 10 mg/50 mL intravenous infusion injection, 50 mL vial 40006011000036108 Nimotop 10 mg/50 mL intravenous infusion injection, 50 mL vial 39664011000036105 Nimotop 39664011000036105 Nimotop 46327011000036105 nimodipine 10 mg/50 mL injection, 50 mL vial 45082011000036103 nimodipine 10 mg/50 mL injection, vial 44927011000036105 nimodipine +791001000168102 Quetiapine XR (AS) 200 mg modified release tablet, 100, blister pack 226820 790991000168103 Quetiapine XR (AS) 200 mg modified release tablet, 100 790911000168107 Quetiapine XR (AS) 200 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51533011000036106 quetiapine 200 mg modified release tablet, 100 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +820861000168109 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet, 6, blister pack 202686 820851000168107 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet, 6 820801000168108 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet 820781000168109 Worm Treatment (Pharmacy Action) 820781000168109 Worm Treatment (Pharmacy Action) 26822011000036107 mebendazole 100 mg tablet, 6 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +1009601000168108 Letrozole (Apotex) 2.5 mg film-coated tablet, 10, blister pack 163829 1009591000168101 Letrozole (Apotex) 2.5 mg film-coated tablet, 10 1009571000168102 Letrozole (Apotex) 2.5 mg film-coated tablet 1009561000168108 Letrozole (Apotex) 1009561000168108 Letrozole (Apotex) 1009581000168104 letrozole 2.5 mg tablet, 10 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +50604011000036104 Celsentri 150 mg film-coated tablet, 30, blister pack 137329 49630011000036105 Celsentri 150 mg film-coated tablet, 30 48792011000036106 Celsentri 150 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51522011000036102 maraviroc 150 mg tablet, 30 50990011000036105 maraviroc 150 mg tablet 50741011000036103 maraviroc +19487011000036102 Anandron 150 mg uncoated tablet, 30, blister pack 55059 12763011000036105 Anandron 150 mg uncoated tablet, 30 6057011000036109 Anandron 150 mg uncoated tablet 3875011000036106 Anandron 3875011000036106 Anandron 27340011000036109 nilutamide 150 mg tablet, 30 22693011000036104 nilutamide 150 mg tablet 21437011000036103 nilutamide +77417011000036102 Charcocaps 200 mg hard capsule, 60, bottle 93912 76833011000036107 Charcocaps 200 mg hard capsule, 60 76199011000036107 Charcocaps 200 mg hard capsule 75941011000036102 Charcocaps 75941011000036102 Charcocaps 78337011000036107 activated charcoal 200 mg capsule, 60 77614011000036105 activated charcoal 200 mg capsule 77437011000036109 activated charcoal +1054551000168104 Oxycodone (Sandoz) 40 mg modified release tablet, 60, blister pack 153611 785721000168106 Oxycodone (Sandoz) 40 mg modified release tablet, 60 676341000168106 Oxycodone (Sandoz) 40 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +858351000168104 Amichlor 10 mg film-coated tablet, 50, blister pack 215373 858341000168101 Amichlor 10 mg film-coated tablet, 50 858281000168102 Amichlor 10 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1074771000168100 Instanyl 50 microgram/actuation nasal spray, 40 actuations, pump pack 197690 1074761000168106 Instanyl 50 microgram/actuation nasal spray, 40 actuations 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1074751000168109 fentanyl 50 microgram/actuation nasal spray, 40 actuations 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +160581000036108 Kombiglyze XR 5/1000 modified release tablet, 28, blister pack 202208 159431000036107 Kombiglyze XR 5/1000 modified release tablet, 28 157831000036103 Kombiglyze XR 5/1000 modified release tablet 8301000168108 Kombiglyze XR 5/1000 8301000168108 Kombiglyze XR 5/1000 159441000036102 saxagliptin 5 mg + metformin hydrochloride 1 g modified release tablet, 28 157841000036108 saxagliptin 5 mg + metformin hydrochloride 1 g modified release tablet 160681000036109 saxagliptin + metformin +683901000168109 Lansoprazole ODT (GH) 15 mg orally disintegrating tablet, 7, blister pack 216793 683891000168105 Lansoprazole ODT (GH) 15 mg orally disintegrating tablet, 7 683871000168109 Lansoprazole ODT (GH) 15 mg orally disintegrating tablet 683811000168101 Lansoprazole ODT (GH) 683811000168101 Lansoprazole ODT (GH) 683881000168107 lansoprazole 15 mg orally disintegrating tablet, 7 79747011000036107 lansoprazole 15 mg orally disintegrating tablet 21491011000036101 lansoprazole +1091811000168106 Concentrated Antiseptic Sore Throat Gargle (Apohealth) 7.5% mouthwash, 15 mL, bottle 280613 1091801000168108 Concentrated Antiseptic Sore Throat Gargle (Apohealth) 7.5% mouthwash, 15 mL 1091791000168107 Concentrated Antiseptic Sore Throat Gargle (Apohealth) 7.5% mouthwash 1091781000168109 Concentrated Antiseptic Sore Throat Gargle (Apohealth) 1091781000168109 Concentrated Antiseptic Sore Throat Gargle (Apohealth) 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +19441011000036103 Desferrioxamine Mesylate (DBL) 500 mg powder for injection, 10 vials 53942 12723011000036102 Desferrioxamine Mesylate (DBL) 500 mg powder for injection, 10 vials 5240011000036102 Desferrioxamine Mesylate (DBL) 500 mg powder for injection, 500 mg vial 3118011000036104 Desferrioxamine Mesylate (DBL) 3118011000036104 Desferrioxamine Mesylate (DBL) 27313011000036108 desferrioxamine mesilate 500 mg injection, 10 vials 22666011000036107 desferrioxamine mesilate 500 mg injection, vial 21587011000036101 desferrioxamine +61055011000036109 Nicorette Buccal Inhalation 10 mg breath activated inhalation, 6 cartridges 67823 56998011000036104 Nicorette Buccal Inhalation 10 mg breath activated inhalation, 6 cartridges 54150011000036100 Nicorette Buccal Inhalation 10 mg breath activated inhalation, cartridge 19481000168102 Nicorette Buccal Inhalation 19481000168102 Nicorette Buccal Inhalation 63680011000036107 nicotine 10 mg breath activated inhalation, 6 cartridges 62042011000036102 nicotine 10 mg breath activated inhalation, cartridge 21432011000036100 nicotine +44752011000036102 Co-Diovan 80/12.5 film-coated tablet, 28, blister pack 96740 42197011000036107 Co-Diovan 80/12.5 film-coated tablet, 28 40385011000036103 Co-Diovan 80/12.5 film-coated tablet 34621000168107 Co-Diovan 80/12.5 34621000168107 Co-Diovan 80/12.5 46957011000036104 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 45358011000036107 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +662401000168106 Metformin Hydrochloride (AN) 500 mg film-coated tablet, 100, blister pack 180434 662391000168109 Metformin Hydrochloride (AN) 500 mg film-coated tablet, 100 662381000168106 Metformin Hydrochloride (AN) 500 mg film-coated tablet 662341000168101 Metformin Hydrochloride (AN) 662341000168101 Metformin Hydrochloride (AN) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +1062911000168108 Ibuprofen plus Codeine (Amcal) film-coated tablet, 30, blister pack 227475 1062901000168105 Ibuprofen plus Codeine (Amcal) film-coated tablet, 30 80205011000036101 Ibuprofen plus Codeine (Amcal) film-coated tablet 80134011000036106 Ibuprofen plus Codeine (Amcal) 80134011000036106 Ibuprofen plus Codeine (Amcal) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +61470011000036108 Paracetamol (Herron) 500 mg film-coated tablet, 12, blister pack 91501 57395011000036103 Paracetamol (Herron) 500 mg film-coated tablet, 12 54295011000036103 Paracetamol (Herron) 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19356011000036104 Largactil 25 mg film-coated tablet, 100, blister pack 51618 12643011000036108 Largactil 25 mg film-coated tablet, 100 5304011000036106 Largactil 25 mg film-coated tablet 36041000168104 Largactil 36041000168104 Largactil 27252011000036103 chlorpromazine hydrochloride 25 mg tablet, 100 22610011000036108 chlorpromazine hydrochloride 25 mg tablet 21310011000036102 chlorpromazine +1080091000168100 Bisoprolol (Auro) 1.25 mg film-coated tablet, 28, blister pack 175928 1080081000168103 Bisoprolol (Auro) 1.25 mg film-coated tablet, 28 1080071000168101 Bisoprolol (Auro) 1.25 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 46790011000036102 bisoprolol fumarate 1.25 mg tablet, 28 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +815611000168107 Deflectum 5/5 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200819 815601000168109 Deflectum 5/5 (perindopril arginine/amlodipine) uncoated tablet, 10 815591000168102 Deflectum 5/5 (perindopril arginine/amlodipine) uncoated tablet 815471000168102 Deflectum 5/5 (perindopril arginine/amlodipine) 815471000168102 Deflectum 5/5 (perindopril arginine/amlodipine) 86423011000036104 perindopril arginine 5 mg + amlodipine 5 mg tablet, 10 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +732071000168108 Lercanidipine (Blooms the Chemist) 10 mg film-coated tablet, 28, blister pack 163767 732061000168102 Lercanidipine (Blooms the Chemist) 10 mg film-coated tablet, 28 732051000168104 Lercanidipine (Blooms the Chemist) 10 mg film-coated tablet 731871000168106 Lercanidipine (Blooms the Chemist) 731871000168106 Lercanidipine (Blooms the Chemist) 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +795181000168108 Instanyl 100 microgram/actuation nasal spray, 6 x 1 actuation, pump packs 197688 795171000168105 Instanyl 100 microgram/actuation nasal spray, 6 x 1 actuation 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795161000168104 fentanyl 100 microgram/actuation nasal spray, 6 x 1 actuation 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +753501000168103 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet, 30, blister pack 218240 753491000168105 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet, 30 753481000168107 Olmesartan/Amlodipine 20/5 (Apo) film-coated tablet 753471000168109 Olmesartan/Amlodipine 20/5 (Apo) 753471000168109 Olmesartan/Amlodipine 20/5 (Apo) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +1034091000168103 Atomoxetine (CH) 10 mg hard capsule, 7, blister pack 234831 1034081000168101 Atomoxetine (CH) 10 mg hard capsule, 7 1034071000168104 Atomoxetine (CH) 10 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +769531000168104 Dexamethasone (Mylan) 4 mg/mL injection solution, 5 x 1 mL vials 163200 769521000168102 Dexamethasone (Mylan) 4 mg/mL injection solution, 5 x 1 mL vials 769511000168109 Dexamethasone (Mylan) 4 mg/mL injection solution, vial 769451000168109 Dexamethasone (Mylan) 769451000168109 Dexamethasone (Mylan) 676701000168105 dexamethasone phosphate 4 mg/mL injection, 5 x 1 mL vials 676681000168107 dexamethasone phosphate 4 mg/mL injection, vial 21511011000036107 dexamethasone phosphate +130391000036107 Candesartan Cilexetil (Sandoz) 8 mg tablet, 30, blister pack 147493 127391000036109 Candesartan Cilexetil (Sandoz) 8 mg tablet, 30 124721000036103 Candesartan Cilexetil (Sandoz) 8 mg tablet 123891000036107 Candesartan Cilexetil (Sandoz) 123891000036107 Candesartan Cilexetil (Sandoz) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +20092011000036108 Endep 10 mg film-coated tablet, 50, blister pack 71044 13319011000036100 Endep 10 mg film-coated tablet, 50 6605011000036104 Endep 10 mg film-coated tablet 4195011000036109 Endep 4195011000036109 Endep 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +73275011000036109 Jurnista 8 mg modified release tablet, 30, blister pack 141508 73073011000036101 Jurnista 8 mg modified release tablet, 30 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73471011000036106 hydromorphone hydrochloride 8 mg modified release tablet, 30 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +85034011000036109 Paroxo 20 mg film-coated tablet, 56, blister pack 152489 84899011000036107 Paroxo 20 mg film-coated tablet, 56 84788011000036102 Paroxo 20 mg film-coated tablet 84767011000036100 Paroxo 84767011000036100 Paroxo 51565011000036100 paroxetine 20 mg tablet, 56 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +774871000168106 Nexazole 40 mg enteric tablet, 30, blister pack 205824 774861000168100 Nexazole 40 mg enteric tablet, 30 774811000168103 Nexazole 40 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +131921000036104 Candesartan Cilexetil (Apo) 4 mg uncoated tablet, 30, blister pack 210529 128191000036105 Candesartan Cilexetil (Apo) 4 mg uncoated tablet, 30 124661000036101 Candesartan Cilexetil (Apo) 4 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +131921000036104 Candesartan Cilexetil (Apo) 4 mg uncoated tablet, 30, blister pack 184887 128191000036105 Candesartan Cilexetil (Apo) 4 mg uncoated tablet, 30 124661000036101 Candesartan Cilexetil (Apo) 4 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +18957011000036108 Lithicarb 250 mg uncoated tablet, 200, bottle 27761 12265011000036104 Lithicarb 250 mg uncoated tablet, 200 4540011000036103 Lithicarb 250 mg uncoated tablet 3104011000036109 Lithicarb 3104011000036109 Lithicarb 27027011000036109 lithium carbonate 250 mg tablet, 200 22400011000036107 lithium carbonate 250 mg tablet 21570011000036108 lithium carbonate +796301000168107 Quetiapine (Accord) 100 mg film-coated tablet, 20, blister pack 203592 796291000168106 Quetiapine (Accord) 100 mg film-coated tablet, 20 796281000168108 Quetiapine (Accord) 100 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +43784011000036102 Sutent 12.5 mg capsule, 30, bottle 123139 41283011000036103 Sutent 12.5 mg capsule, 30 39790011000036106 Sutent 12.5 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46218011000036107 sunitinib 12.5 mg capsule, 30 45034011000036100 sunitinib 12.5 mg capsule 44859011000036109 sunitinib +1057611000168109 Ramipril (Auro) 10 mg uncoated tablet, 30, bottle 175227 1057561000168106 Ramipril (Auro) 10 mg uncoated tablet, 30 1057521000168101 Ramipril (Auro) 10 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +20635011000036102 Ciprofloxacin (Sandoz) 250 mg film-coated tablet, 14, blister pack 81460 13815011000036100 Ciprofloxacin (Sandoz) 250 mg film-coated tablet, 14 7101011000036103 Ciprofloxacin (Sandoz) 250 mg film-coated tablet 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +20635011000036102 Ciprofloxacin (Sandoz) 250 mg film-coated tablet, 14, blister pack 81219 13815011000036100 Ciprofloxacin (Sandoz) 250 mg film-coated tablet, 14 7101011000036103 Ciprofloxacin (Sandoz) 250 mg film-coated tablet 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +770581000168101 Actair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack, composite pack 233470 770571000168104 Actair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack 770381000168108 Actair 300 IR sublingual tablet 769041000168102 Actair Initiation Treatment 768771000168102 Actair 300 IR 770561000168105 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet [3] (&) American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet [7], 1 pack 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +770581000168101 Actair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack, composite pack 233470 770571000168104 Actair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack 770331000168107 Actair 100 IR sublingual tablet 769041000168102 Actair Initiation Treatment 768701000168107 Actair 100 IR 770561000168105 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet [3] (&) American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet [7], 1 pack 770321000168109 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +131901000036109 Candesartan Cilexetil (Apo) 8 mg uncoated tablet, 30, blister pack 210530 128201000036107 Candesartan Cilexetil (Apo) 8 mg uncoated tablet, 30 124671000036109 Candesartan Cilexetil (Apo) 8 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +131901000036109 Candesartan Cilexetil (Apo) 8 mg uncoated tablet, 30, blister pack 184884 128201000036107 Candesartan Cilexetil (Apo) 8 mg uncoated tablet, 30 124671000036109 Candesartan Cilexetil (Apo) 8 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +130371000036108 Ketocal 3:1 (3:1 ratio long chain fat to carbohydrate plus protein) powder for oral liquid, 300 g, can 127291000036100 Ketocal 3:1 (3:1 ratio long chain fat to carbohydrate plus protein) powder for oral liquid, 300 g 124781000036102 Ketocal 3:1 (3:1 ratio long chain fat to carbohydrate plus protein) powder for oral liquid 60351000168106 Ketocal 3:1 60351000168106 Ketocal 3:1 132891000036100 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate (3:1 ratio long chain fat to carbohydrate plus protein) powder for oral liquid, 300 g 132861000036107 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate (3:1 ratio long chain fat to carbohydrate plus protein) powder for oral liquid 79093011000036108 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate +895891000168100 Beriplex P/N 250 IU (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 156330 895881000168103 Beriplex P/N 250 IU (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 895861000168107 Beriplex P/N (inert substance) diluent, 10 mL vial 892281000168105 Beriplex P/N 250 IU 895711000168101 Beriplex P/N 895871000168101 factor II 200 units + factor VII 100 units + factor IX 200 units + factor X 220 units + protein C 150 units + protein S 120 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +895891000168100 Beriplex P/N 250 IU (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 156330 895881000168103 Beriplex P/N 250 IU (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 895851000168105 Beriplex P/N 250 IU (factor II 200 units + factor VII 100 units + factor IX 200 units + factor X 220 units + protein C 150 units + protein S 120 units) powder for injection, vial 892281000168105 Beriplex P/N 250 IU 892281000168105 Beriplex P/N 250 IU 895871000168101 factor II 200 units + factor VII 100 units + factor IX 200 units + factor X 220 units + protein C 150 units + protein S 120 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 895841000168108 factor II 200 units + factor VII 100 units + factor IX 200 units + factor X 220 units + protein C 150 units + protein S 120 units injection, vial 891151000168102 factor II + factor VII + factor IX + factor X + protein C + protein S +84309011000036107 Memanxa 10 mg film-coated tablet, 56, blister pack 152754 84002011000036103 Memanxa 10 mg film-coated tablet, 56 83638011000036104 Memanxa 10 mg film-coated tablet 83555011000036101 Memanxa 83555011000036101 Memanxa 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +77384011000036103 Andrews Tums Antacid Orange 500 mg chewable tablet, 40, blister pack 74672 76800011000036106 Andrews Tums Antacid Orange 500 mg chewable tablet, 40 76186011000036104 Andrews Tums Antacid Orange 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78304011000036109 calcium carbonate 500 mg chewable tablet, 40 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +160661000036104 Sotalol Hydrochloride (Apo) 80 mg uncoated tablet, 60, bottle 83094 159581000036107 Sotalol Hydrochloride (Apo) 80 mg uncoated tablet, 60 158181000036109 Sotalol Hydrochloride (Apo) 80 mg uncoated tablet 157711000036101 Sotalol Hydrochloride (Apo) 157711000036101 Sotalol Hydrochloride (Apo) 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +745001000168107 Abstral 800 microgram sublingual tablet, 30, blister pack 228209 744991000168101 Abstral 800 microgram sublingual tablet, 30 744941000168109 Abstral 800 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744981000168104 fentanyl 800 microgram sublingual tablet, 30 744931000168100 fentanyl 800 microgram sublingual tablet 21258011000036102 fentanyl +39394011000036100 Tryzan 10 mg uncoated tablet, 10, blister pack 129921 39278011000036108 Tryzan 10 mg uncoated tablet, 10 39207011000036100 Tryzan 10 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39476011000036105 ramipril 10 mg tablet, 10 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +999731000168101 Memantine (Apotex) 10 mg film-coated tablet, 14, bottle 159579 999471000168109 Memantine (Apotex) 10 mg film-coated tablet, 14 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38839011000036107 memantine hydrochloride 10 mg tablet, 14 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +61585011000036103 Zantac Relief Extra Strength 300 mg film-coated tablet, 2, blister pack 95076 57507011000036108 Zantac Relief Extra Strength 300 mg film-coated tablet, 2 54330011000036105 Zantac Relief Extra Strength 300 mg film-coated tablet 13051000168102 Zantac Relief Extra Strength 13051000168102 Zantac Relief Extra Strength 63894011000036107 ranitidine 300 mg tablet, 2 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +658041000168107 Telmisartan (GH) 40 mg uncoated tablet, 28, blister pack 209337 658031000168103 Telmisartan (GH) 40 mg uncoated tablet, 28 658021000168101 Telmisartan (GH) 40 mg uncoated tablet 658011000168108 Telmisartan (GH) 658011000168108 Telmisartan (GH) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +1034131000168101 Atomoxetine (CH) 10 mg hard capsule, 28, blister pack 234831 1034121000168104 Atomoxetine (CH) 10 mg hard capsule, 28 1034071000168104 Atomoxetine (CH) 10 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +61539011000036105 Coldeze (Chemists' Own) film-coated tablet, 24, blister pack 93797 57464011000036105 Coldeze (Chemists' Own) film-coated tablet, 24 54312011000036101 Coldeze (Chemists' Own) film-coated tablet 53416011000036108 Coldeze (Chemists' Own) 53416011000036108 Coldeze (Chemists' Own) 63955011000036106 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet, 24 62108011000036101 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet 61727011000036100 chlorphenamine + paracetamol +1066201000168100 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 36, blister pack 210587 1066191000168103 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 36 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 1064581000168104 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 36 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +812321000168104 Iptam 100 mg film-coated tablet, 18, blister pack 124087 812311000168106 Iptam 100 mg film-coated tablet, 18 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 46115011000036104 sumatriptan 100 mg tablet, 18 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +962321000168106 Premia Low 0.45/1.5 Continuous sugar coated tablet, 28, blister pack 80615 962311000168104 Premia Low 0.45/1.5 Continuous sugar coated tablet, 28 962291000168103 Premia Low 0.45/1.5 Continuous sugar coated tablet 962271000168104 Premia Low 0.45/1.5 Continuous 962271000168104 Premia Low 0.45/1.5 Continuous 962301000168102 conjugated estrogens 450 microgram + medroxyprogesterone acetate 1.5 mg tablet, 28 962281000168101 conjugated estrogens 450 microgram + medroxyprogesterone acetate 1.5 mg tablet 33637011000036105 conjugated estrogens + medroxyprogesterone +1091931000168105 Antiseptic Solution (Apohealth) 10% solution, 100 mL, bottle 281618 1091921000168107 Antiseptic Solution (Apohealth) 10% solution, 100 mL 1091891000168102 Antiseptic Solution (Apohealth) 10% solution 1091851000168107 Antiseptic Solution (Apohealth) 1091851000168107 Antiseptic Solution (Apohealth) 71675011000036102 povidone-iodine 10% solution, 100 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +39381011000036102 Bicalutamide (GA) 50 mg film-coated tablet, 500, bottle 129116 39265011000036106 Bicalutamide (GA) 50 mg film-coated tablet, 500 39216011000036100 Bicalutamide (GA) 50 mg film-coated tablet 39181011000036109 Bicalutamide (GA) 39181011000036109 Bicalutamide (GA) 39466011000036100 bicalutamide 50 mg tablet, 500 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +957981000168103 Clarithro 500 mg film-coated tablet, 100, blister pack 117203 957971000168101 Clarithro 500 mg film-coated tablet, 100 957941000168108 Clarithro 500 mg film-coated tablet 4200011000036100 Clarithro 4200011000036100 Clarithro 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +44186011000036104 Remeron 15 mg film-coated tablet, 10, blister pack 55085 41662011000036105 Remeron 15 mg film-coated tablet, 10 40132011000036107 Remeron 15 mg film-coated tablet 3235011000036100 Remeron 3235011000036100 Remeron 46480011000036107 mirtazapine 15 mg tablet, 10 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +929077011000036103 Zircol 10 mg film-coated tablet, 28, blister pack 166273 928438011000036105 Zircol 10 mg film-coated tablet, 28 927982011000036107 Zircol 10 mg film-coated tablet 927766011000036101 Zircol 927766011000036101 Zircol 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +800641000168103 Actonate 35 mg film-coated tablet, 2, blister pack 163748 800631000168107 Actonate 35 mg film-coated tablet, 2 800601000168100 Actonate 35 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 929754011000036108 risedronate sodium 35 mg tablet, 2 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +911881000168109 Cavstat 40 mg film-coated tablet, 20, blister pack 234508 911871000168106 Cavstat 40 mg film-coated tablet, 20 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911861000168100 rosuvastatin 40 mg tablet, 20 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +926902011000036105 Metrol 50 mg uncoated tablet, 100, blister pack 75835 13661011000036107 Metrol 50 mg uncoated tablet, 100 6944011000036106 Metrol 50 mg uncoated tablet 3236011000036107 Metrol 3236011000036107 Metrol 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +20622011000036107 Alprazolam (Terry White Chemists) 1 mg tablet, 50, bottle 80918 13802011000036105 Alprazolam (Terry White Chemists) 1 mg tablet, 50 7088011000036103 Alprazolam (Terry White Chemists) 1 mg tablet 3439011000036104 Alprazolam (Terry White Chemists) 3439011000036104 Alprazolam (Terry White Chemists) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +778161000168104 Endone XR 40 mg modified release tablet, 60, blister pack 153602 778151000168101 Endone XR 40 mg modified release tablet, 60 778061000168103 Endone XR 40 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +43565011000036102 Simvastatin (DP) 40 mg film-coated tablet, 100, bottle 125783 41326011000036105 Simvastatin (DP) 40 mg film-coated tablet, 100 5821011000036100 Simvastatin (DP) 40 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46248011000036104 simvastatin 40 mg tablet, 100 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +81208011000036102 Vytorin 10/10 uncoated tablet, 5, blister pack 98100 80710011000036104 Vytorin 10/10 uncoated tablet, 5 80247011000036103 Vytorin 10/10 uncoated tablet 38111000168103 Vytorin 10/10 38111000168103 Vytorin 10/10 81759011000036105 ezetimibe 10 mg + simvastatin 10 mg tablet, 5 81309011000036100 ezetimibe 10 mg + simvastatin 10 mg tablet 21565011000036108 ezetimibe + simvastatin +1091771000168106 Chesty Cough Medicine (Coles) 100 mg/5 mL oral liquid, 200 mL, bottle 281377 1091761000168100 Chesty Cough Medicine (Coles) 100 mg/5 mL oral liquid, 200 mL 1091751000168102 Chesty Cough Medicine (Coles) 100 mg/5 mL oral liquid, 5 mL 1091591000168100 Chesty Cough Medicine (Coles) 1091591000168100 Chesty Cough Medicine (Coles) 63614011000036104 guaifenesin 100 mg/5 mL oral liquid, 200 mL 62028011000036101 guaifenesin 100 mg/5 mL oral liquid 61763011000036101 guaifenesin +933104011000036107 Lamictal 25 mg tablet, 56, blister pack 46268 932912011000036106 Lamictal 25 mg tablet, 56 932763011000036109 Lamictal 25 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +933104011000036107 Lamictal 25 mg tablet, 56, blister pack 51548 932912011000036106 Lamictal 25 mg tablet, 56 932763011000036109 Lamictal 25 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +43823011000036107 Mirtazapine (Sandoz) 30 mg film-coated tablet, 60, bottle 117182 41186011000036107 Mirtazapine (Sandoz) 30 mg film-coated tablet, 60 5576011000036107 Mirtazapine (Sandoz) 30 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 46150011000036102 mirtazapine 30 mg tablet, 60 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +950441000168103 Doxycycline Acne Pack (GN) 50 mg film-coated tablet, 30, blister pack 148809 950431000168107 Doxycycline Acne Pack (GN) 50 mg film-coated tablet, 30 950401000168100 Doxycycline Acne Pack (GN) 50 mg film-coated tablet 950391000168102 Doxycycline Acne Pack (GN) 950391000168102 Doxycycline Acne Pack (GN) 46826011000036109 doxycycline 50 mg tablet, 30 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +821021000168101 Panadol Osteo 665 mg modified release tablet, 1000, bottle 235560 821011000168108 Panadol Osteo 665 mg modified release tablet, 1000 5848011000036106 Panadol Osteo 665 mg modified release tablet 47941000168100 Panadol Osteo 47941000168100 Panadol Osteo 677961000168106 paracetamol 665 mg modified release tablet, 1000 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +965131000168101 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 28, blister pack 134861 965121000168104 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 28 965051000168108 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 46432011000036100 clarithromycin 500 mg tablet, 28 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +104511000036108 Irbesat 300 mg film-coated tablet, 30, blister pack 192802 101721000036105 Irbesat 300 mg film-coated tablet, 30 98891000036100 Irbesat 300 mg film-coated tablet 98041000036100 Irbesat 98041000036100 Irbesat 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +728931000168109 Bisolvon Chesty Forte 8 mg uncoated tablet, 30, blister pack 125375 728921000168106 Bisolvon Chesty Forte 8 mg uncoated tablet, 30 728911000168104 Bisolvon Chesty Forte 8 mg uncoated tablet 13191000168108 Bisolvon Chesty Forte 13191000168108 Bisolvon Chesty Forte 63199011000036103 bromhexine hydrochloride 8 mg tablet, 30 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +988091000168105 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 200 mL, bottle 178433 988081000168107 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 200 mL 988001000168104 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 5 mL 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +81024011000036106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 20 x 250 mL bags 148935 80556011000036107 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 20 x 250 mL bags 80190011000036105 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 250 mL bag 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 81635011000036100 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, 20 x 250 mL bags 81273011000036101 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +1074611000168101 Cefazolin (Auro) 2 g powder for injection, 10 vials 174073 1074601000168104 Cefazolin (Auro) 2 g powder for injection, 10 vials 1074531000168107 Cefazolin (Auro) 2 g powder for injection, 2 g vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 1074591000168106 cefazolin 2 g injection, 10 vials 923967011000036100 cefazolin 2 g injection, vial 21621011000036107 cefazolin +19333011000036106 Flucloxacillin (Mayne Pharma) 1 g powder for injection, 5 vials 50579 12621011000036109 Flucloxacillin (Mayne Pharma) 1 g powder for injection, 5 vials 4680011000036102 Flucloxacillin (Mayne Pharma) 1 g powder for injection, vial 4068011000036107 Flucloxacillin (Mayne Pharma) 4068011000036107 Flucloxacillin (Mayne Pharma) 28101011000036108 flucloxacillin 1 g injection, 5 vials 23409011000036107 flucloxacillin 1 g injection, vial 21623011000036108 flucloxacillin +881601000168109 Candesartan HCTZ 32/12.5 (GXP) uncoated tablet, 30, blister pack 253552 881591000168102 Candesartan HCTZ 32/12.5 (GXP) uncoated tablet, 30 881581000168100 Candesartan HCTZ 32/12.5 (GXP) uncoated tablet 881571000168103 Candesartan HCTZ 32/12.5 (GXP) 881571000168103 Candesartan HCTZ 32/12.5 (GXP) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +723071000168101 Amlodipine (Blooms The Chemist) 10 mg uncoated tablet, 30, blister pack 135128 723061000168107 Amlodipine (Blooms The Chemist) 10 mg uncoated tablet, 30 723051000168105 Amlodipine (Blooms The Chemist) 10 mg uncoated tablet 723011000168109 Amlodipine (Blooms The Chemist) 723011000168109 Amlodipine (Blooms The Chemist) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +121671000036106 Gastro-Soothe 10 mg film-coated tablet, 20, blister pack 193438 120681000036100 Gastro-Soothe 10 mg film-coated tablet, 20 119731000036106 Gastro-Soothe 10 mg film-coated tablet 119121000036105 Gastro-Soothe 119121000036105 Gastro-Soothe 46373011000036102 hyoscine butylbromide 10 mg tablet, 20 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +992421000168104 Bisoprolol (Apotex) 10 mg tablet, 10, blister pack 182127 992411000168106 Bisoprolol (Apotex) 10 mg tablet, 10 992371000168105 Bisoprolol (Apotex) 10 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79213011000036103 bisoprolol fumarate 10 mg tablet, 10 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +45581000036100 Pravastatin Sodium (PS) 10 mg film-coated tablet, 30, blister pack 190390 43711000036101 Pravastatin Sodium (PS) 10 mg film-coated tablet, 30 41471000036100 Pravastatin Sodium (PS) 10 mg film-coated tablet 40261000036101 Pravastatin Sodium (PS) 40261000036101 Pravastatin Sodium (PS) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +928855011000036106 Ramipril (Lupin) 10 mg hard capsule, 30, blister pack 134801 928217011000036101 Ramipril (Lupin) 10 mg hard capsule, 30 927876011000036109 Ramipril (Lupin) 10 mg hard capsule 927804011000036106 Ramipril (Lupin) 927804011000036106 Ramipril (Lupin) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +1063071000168108 Caplets (Winthrop) uncoated tablet, 2, blister pack 138544 1063061000168102 Caplets (Winthrop) uncoated tablet, 2 1063041000168101 Caplets (Winthrop) uncoated tablet 1062991000168104 Caplets (Winthrop) 1062991000168104 Caplets (Winthrop) 1063051000168104 paracetamol 448 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 2 1063031000168105 paracetamol 448 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +43552011000036100 Somidem 10 mg film-coated tablet, 2, bottle 119197 41216011000036106 Somidem 10 mg film-coated tablet, 2 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46646011000036100 zolpidem tartrate 10 mg tablet, 2 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +77217011000036101 Natural E 500 IU (Blackmores) 335 mg (500 units) soft capsule, 150, bottle 139372 76633011000036103 Natural E 500 IU (Blackmores) 335 mg (500 units) soft capsule, 150 76078011000036100 Natural E 500 IU (Blackmores) 335 mg (500 units) soft capsule 49241000168102 Natural E 500 IU (Blackmores) 49241000168102 Natural E 500 IU (Blackmores) 78182011000036109 d-alpha-tocopherol 335 mg (500 units) capsule, 150 77533011000036105 d-alpha-tocopherol 335 mg (500 units) capsule 77434011000036103 d-alpha-tocopherol +757611000168107 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 28, blister pack 123670 757601000168109 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 28 757531000168101 Ranitidine (Chemists' Own) 150 mg film-coated tablet 757521000168104 Ranitidine (Chemists' Own) 757521000168104 Ranitidine (Chemists' Own) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +18940011000036105 Flagyl 200 mg uncoated tablet, 21, blister pack 27497 12248011000036101 Flagyl 200 mg uncoated tablet, 21 4881011000036104 Flagyl 200 mg uncoated tablet 6921000168102 Flagyl 6921000168102 Flagyl 27574011000036101 metronidazole 200 mg tablet, 21 22913011000036104 metronidazole 200 mg tablet 21482011000036106 metronidazole +18940011000036105 Flagyl 200 mg uncoated tablet, 21, blister pack 160171 12248011000036101 Flagyl 200 mg uncoated tablet, 21 4881011000036104 Flagyl 200 mg uncoated tablet 6921000168102 Flagyl 6921000168102 Flagyl 27574011000036101 metronidazole 200 mg tablet, 21 22913011000036104 metronidazole 200 mg tablet 21482011000036106 metronidazole +920752011000036103 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 7, blister pack 51689 920435011000036101 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 7 920176011000036107 Doxycycline (Mayne Pharma) 100 mg modified release capsule 920064011000036102 Doxycycline (Mayne Pharma) 920064011000036102 Doxycycline (Mayne Pharma) 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +18018011000036106 Oziclide MR 30 mg modified release tablet, 100, blister pack 124592 11772011000036109 Oziclide MR 30 mg modified release tablet, 100 5956011000036103 Oziclide MR 30 mg modified release tablet 45071000168101 Oziclide MR 45071000168101 Oziclide MR 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +74813011000036107 Somac 40 mg enteric coated granules, 30 sachets 148005 74300011000036100 Somac 40 mg enteric coated granules, 30 sachets 73826011000036107 Somac 40 mg enteric coated granules, 40 mg sachet 10171000168100 Somac 10171000168100 Somac 75416011000036104 pantoprazole 40 mg enteric coated granules, 30 sachets 75050011000036102 pantoprazole 40 mg enteric coated granules, sachet 21563011000036107 pantoprazole +1045691000168107 Noxicid Tabs Heartburn Relief 20 mg enteric tablet, 14, blister pack 252680 1045681000168109 Noxicid Tabs Heartburn Relief 20 mg enteric tablet, 14 1045651000168102 Noxicid Tabs Heartburn Relief 20 mg enteric tablet 1045641000168104 Noxicid Tabs Heartburn Relief 1045641000168104 Noxicid Tabs Heartburn Relief 700031831000036109 esomeprazole 20 mg enteric tablet, 14 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +61402011000036104 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet, 96, blister pack 82119 57327011000036100 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet, 96 54275011000036109 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +87697011000036101 Famciclovir (Apo) 125 mg film-coated tablet, 40, blister pack 160559 87479011000036101 Famciclovir (Apo) 125 mg film-coated tablet, 40 87335011000036105 Famciclovir (Apo) 125 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +786501000168104 Fentanyl (Sandoz) 37 microgram/hour patch, 10, sachet 152567 786491000168106 Fentanyl (Sandoz) 37 microgram/hour patch, 10 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780931000168103 fentanyl 37 microgram/hour patch, 10 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +43633011000036100 Nexavar 200 mg film-coated tablet, 120, blister pack 123158 41294011000036102 Nexavar 200 mg film-coated tablet, 120 39863011000036102 Nexavar 200 mg film-coated tablet 39561011000036102 Nexavar 39561011000036102 Nexavar 46229011000036109 sorafenib 200 mg tablet, 120 45037011000036106 sorafenib 200 mg tablet 44870011000036101 sorafenib +1097591000168108 Bavencio 200 mg/10 mL concentrated injection, 10 mL vial 282729 1097581000168105 Bavencio 200 mg/10 mL concentrated injection, 10 mL vial 1097561000168101 Bavencio 200 mg/10 mL concentrated injection, 10 mL vial 1097531000168109 Bavencio 1097531000168109 Bavencio 1097571000168107 avelumab 200 mg/10 mL injection, 10 mL vial 1097551000168103 avelumab 200 mg/10 mL injection, vial 1097541000168100 avelumab +1005411000168107 Prostin E2 2 mg/3 g vaginal gel, 3 g syringe 9984 1005401000168109 Prostin E2 2 mg/3 g vaginal gel, 3 g syringe 1005381000168109 Prostin E2 2 mg/3 g vaginal gel, 3 g syringe 35895011000036107 Prostin E2 35895011000036107 Prostin E2 1005391000168107 dinoprostone 2 mg/3 g vaginal gel, 3 g syringe 1005371000168106 dinoprostone 2 mg/3 g vaginal gel, syringe 37724011000036100 dinoprostone +45541000036109 Enalapril Maleate (PS) 10 mg uncoated tablet, 30, blister pack 188553 43671000036102 Enalapril Maleate (PS) 10 mg uncoated tablet, 30 40751000036107 Enalapril Maleate (PS) 10 mg uncoated tablet 40281000036106 Enalapril Maleate (PS) 40281000036106 Enalapril Maleate (PS) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +52724011000036109 Simvastatin (Spirit) 40 mg film-coated tablet, 30, blister pack 116704 52531011000036109 Simvastatin (Spirit) 40 mg film-coated tablet, 30 52406011000036103 Simvastatin (Spirit) 40 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +999651000168103 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 195218 999641000168100 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 999551000168104 Drospirenone/EE 3/30 (Apotex) (inert substance) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999651000168103 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 195218 999641000168100 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 999541000168101 Drospirenone/EE 3/30 (Apotex) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +59962011000036105 Nurofen Tension Headache 200 mg tablet, 48, blister pack 120354 55924011000036100 Nurofen Tension Headache 200 mg tablet, 48 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +121711000036107 Fresofol 1% MCT/LCT 1 g/100 mL injection emulsion, 10 x 100 mL vials 193610 120731000036105 Fresofol 1% MCT/LCT 1 g/100 mL injection emulsion, 10 x 100 mL vials 119371000036107 Fresofol 1% MCT/LCT 1 g/100 mL injection emulsion, 100 mL vial 16441000168100 Fresofol 1% MCT/LCT 16441000168100 Fresofol 1% MCT/LCT 120741000036100 propofol 1 g/100 mL injection, 10 x 100 mL vials 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +1078881000168102 Atostat 20 mg film-coated tablet, 30, bottle 194108 1078851000168109 Atostat 20 mg film-coated tablet, 30 1078841000168107 Atostat 20 mg film-coated tablet 1078191000168108 Atostat 1078191000168108 Atostat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +803771000168105 Abilify ODT 15 mg orally disintegrating tablet, 84, blister pack 128898 803761000168104 Abilify ODT 15 mg orally disintegrating tablet, 84 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803751000168101 aripiprazole 15 mg orally disintegrating tablet, 84 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +20979011000036104 Zimstat 80 mg film-coated tablet, 30, bottle 95681 14125011000036101 Zimstat 80 mg film-coated tablet, 30 7402011000036105 Zimstat 80 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +69618011000036109 Mylanta 2go Rolltab Spearmint chewable tablet, 24, wrapping 75881 67417011000036101 Mylanta 2go Rolltab Spearmint chewable tablet, 24 65655011000036100 Mylanta 2go Rolltab Spearmint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71948011000036105 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 24 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +1051491000168108 Palexia SR 50 mg modified release tablet, 10, blister pack 165332 1051481000168105 Palexia SR 50 mg modified release tablet, 10 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051471000168107 tapentadol 50 mg modified release tablet, 10 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +91621000036107 Anticol Max Blackcurrant 2.5 mg lozenge, 16, blister pack 192714 90091000036108 Anticol Max Blackcurrant 2.5 mg lozenge, 16 88511000036108 Anticol Max Blackcurrant 2.5 mg lozenge 48161000036106 Anticol Max 48161000036106 Anticol Max 51261000036106 hexylresorcinol 2.5 mg lozenge, 16 49041000036104 hexylresorcinol 2.5 mg lozenge 69854011000036100 hexylresorcinol +86019011000036100 Lisinopril (DRLA) 20 mg uncoated tablet, 14, blister pack 152722 85664011000036109 Lisinopril (DRLA) 20 mg uncoated tablet, 14 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 78126011000036102 lisinopril 20 mg tablet, 14 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1100471000168104 Delucon 150 mg film-coated tablet, 90, blister pack 172849 1100461000168105 Delucon 150 mg film-coated tablet, 90 1100371000168106 Delucon 150 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 939061000168104 quetiapine 150 mg tablet, 90 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +19303011000036102 Carboplatin (Pfizer (Perth)) 150 mg/15 mL injection solution, 15 mL vial 49348 12593011000036106 Carboplatin (Pfizer (Perth)) 150 mg/15 mL injection solution, 15 mL vial 5693011000036104 Carboplatin (Pfizer (Perth)) 150 mg/15 mL injection solution, 15 mL vial 3371011000036106 Carboplatin (Pfizer (Perth)) 3371011000036106 Carboplatin (Pfizer (Perth)) 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +69197011000036108 Plasma-Lyte 56 Maintenance in 5% Glucose intravenous infusion injection, 12 x 1 L bags 19441 66997011000036101 Plasma-Lyte 56 Maintenance in 5% Glucose intravenous infusion injection, 12 x 1 L bags 65201011000036105 Plasma-Lyte 56 Maintenance in 5% Glucose intravenous infusion injection, 1 L bag 65118011000036100 Plasma-Lyte 56 Maintenance in 5% Glucose 65118011000036100 Plasma-Lyte 56 Maintenance in 5% Glucose 71567011000036107 sodium chloride 2.34 g/L + potassium acetate 1.28 g (potassium 13 mmol)/L + magnesium acetate tetrahydrate 320 mg/L + glucose 5% (50 g/L) injection, 12 x 1 L bags 70068011000036102 sodium chloride 2.34 g/L + potassium acetate 1.28 g (potassium 13 mmol)/L + magnesium acetate tetrahydrate 320 mg/L + glucose 5% (50 g/L) injection, bag 69847011000036109 sodium chloride + potassium + magnesium acetate tetrahydrate + glucose +923869011000036104 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet, 14, blister pack 163763 923414011000036109 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet, 14 923075011000036106 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 924196011000036101 lercanidipine hydrochloride 10 mg tablet, 14 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +753221000168109 Oxycodone (GX) 5 mg hard capsule, 60, blister pack 227847 753211000168102 Oxycodone (GX) 5 mg hard capsule, 60 753181000168101 Oxycodone (GX) 5 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +809391000168105 Perindopril Arginine/Amlodipine 5/10 (Apo) uncoated tablet, 30, blister pack 224325 808721000168100 Perindopril Arginine/Amlodipine 5/10 (Apo) uncoated tablet, 30 808711000168107 Perindopril Arginine/Amlodipine 5/10 (Apo) uncoated tablet 808701000168109 Perindopril Arginine/Amlodipine 5/10 (Apo) 808701000168109 Perindopril Arginine/Amlodipine 5/10 (Apo) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +1094781000168107 Ibuprofen (Genpar) 200 mg film-coated tablet, 2, blister pack 285310 1094771000168109 Ibuprofen (Genpar) 200 mg film-coated tablet, 2 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63628011000036100 ibuprofen 200 mg tablet, 2 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +50444011000036105 Caprilon powder for oral liquid, 420 g, can 49472011000036105 Caprilon powder for oral liquid, 420 g 48535011000036108 Caprilon powder for oral liquid 48366011000036106 Caprilon 48366011000036106 Caprilon 51430011000036109 triglycerides medium chain formula powder for oral liquid, 420 g 50946011000036104 triglycerides medium chain formula powder for oral liquid 50781011000036105 triglycerides medium chain formula +52167011000036102 Kaolin and Opium Mixture APF (extemporaneous) with Hydroxybenzoate Compound Solution oral liquid solution, 200 mL, dispensing bottle 52071011000036108 Kaolin and Opium Mixture APF (extemporaneous) with Hydroxybenzoate Compound Solution oral liquid solution, 200 mL 51972011000036109 Kaolin and Opium Mixture APF (extemporaneous) with Hydroxybenzoate Compound Solution oral liquid solution 51942011000036105 Kaolin and Opium Mixture APF (extemporaneous) 51942011000036105 Kaolin and Opium Mixture APF (extemporaneous) 52318011000036107 light kaolin 250 mg/mL + opium tincture 0.05 mL/mL oral liquid, 200 mL 52250011000036108 light kaolin 250 mg/mL + opium tincture 0.05 mL/mL oral liquid 52235011000036103 light kaolin + opium tincture +734491000168107 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 56 x Ribavirin (Abbvie) 600 mg tablets), 1 pack, composite pack 234442 734481000168109 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 56 x Ribavirin (Abbvie) 600 mg tablets), 1 pack 726021000168108 Viekira Pak film-coated tablet 733851000168101 Viekira Pak-RBV 722981000168107 Viekira Pak 734471000168106 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [4 x 14] (&) dasabuvir 250 mg tablet [4 x 14] (&) ribavirin 600 mg tablet [56], 1 pack 726011000168101 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet 726001000168104 paritaprevir + ritonavir + ombitasvir +734491000168107 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 56 x Ribavirin (Abbvie) 600 mg tablets), 1 pack, composite pack 234442 734481000168109 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 56 x Ribavirin (Abbvie) 600 mg tablets), 1 pack 734361000168105 Ribavirin (Abbvie) 600 mg film-coated tablet 733851000168101 Viekira Pak-RBV 733611000168103 Ribavirin (Abbvie) 734471000168106 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [4 x 14] (&) dasabuvir 250 mg tablet [4 x 14] (&) ribavirin 600 mg tablet [56], 1 pack 734351000168108 ribavirin 600 mg tablet 21714011000036106 ribavirin +734491000168107 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 56 x Ribavirin (Abbvie) 600 mg tablets), 1 pack, composite pack 234442 734481000168109 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 56 x Ribavirin (Abbvie) 600 mg tablets), 1 pack 726051000168100 Viekira Pak 250 mg film-coated tablet 733851000168101 Viekira Pak-RBV 722981000168107 Viekira Pak 734471000168106 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [4 x 14] (&) dasabuvir 250 mg tablet [4 x 14] (&) ribavirin 600 mg tablet [56], 1 pack 726041000168102 dasabuvir 250 mg tablet 726031000168106 dasabuvir +675521000168104 Telmisartan HCT 80/12.5mg (GH) multilayer tablet, 28, blister pack 208075 675511000168106 Telmisartan HCT 80/12.5mg (GH) multilayer tablet, 28 675501000168108 Telmisartan HCT 80/12.5mg (GH) multilayer tablet 675491000168101 Telmisartan HCT 80/12.5mg (GH) 675491000168101 Telmisartan HCT 80/12.5mg (GH) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +796621000168106 Acitretin (iNova) 10 mg hard capsule, 60, blister pack 196005 796611000168104 Acitretin (iNova) 10 mg hard capsule, 60 796601000168102 Acitretin (iNova) 10 mg hard capsule 796431000168106 Acitretin (iNova) 796431000168106 Acitretin (iNova) 150391000036106 acitretin 10 mg capsule, 60 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +931468011000036107 Paroxetine (SAU) 20 mg film-coated tablet, 20, blister pack 152490 930647011000036106 Paroxetine (SAU) 20 mg film-coated tablet, 20 929990011000036100 Paroxetine (SAU) 20 mg film-coated tablet 929841011000036109 Paroxetine (SAU) 929841011000036109 Paroxetine (SAU) 51563011000036101 paroxetine 20 mg tablet, 20 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +91781000036104 Zidoval 0.75% vaginal gel, 40 g, tube 73743 90311000036100 Zidoval 0.75% vaginal gel, 40 g 87951000036100 Zidoval 0.75% vaginal gel 925517011000036104 Zidoval 925517011000036104 Zidoval 90321000036107 metronidazole 0.75% vaginal gel, 40 g 87961000036102 metronidazole 0.75% vaginal gel 21482011000036106 metronidazole +44491011000036107 Aciclovir IV (Sandoz) 500 mg powder for injection, 5 vials 75838 41946011000036102 Aciclovir IV (Sandoz) 500 mg powder for injection, 5 vials 40279011000036103 Aciclovir IV (Sandoz) 500 mg powder for injection, 500 mg vial 43921000168104 Aciclovir IV (Sandoz) 43921000168104 Aciclovir IV (Sandoz) 46731011000036104 aciclovir 500 mg injection, 5 vials 45287011000036106 aciclovir 500 mg injection, vial 21239011000036106 aciclovir +50415011000036100 Solugel (10336) gel, 50 g, tube 49457011000036105 Solugel (10336) gel, 50 g 48713011000036100 Solugel (10336) gel 61731000168108 Solugel (10336) 61731000168108 Solugel (10336) 51419011000036105 dressing hydrogel amorphous gel, 50 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +744681000168106 Abstral 200 microgram sublingual tablet, 30, blister pack 193335 744671000168108 Abstral 200 microgram sublingual tablet, 30 744621000168107 Abstral 200 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744661000168102 fentanyl 200 microgram sublingual tablet, 30 744611000168100 fentanyl 200 microgram sublingual tablet 21258011000036102 fentanyl +20121011000036100 Azopt 1% eye drops, 5 mL, bottle 72750 13345011000036106 Azopt 1% eye drops, 5 mL 6630011000036101 Azopt 1% eye drops 4060011000036105 Azopt 4060011000036105 Azopt 28309011000036100 brinzolamide 1% eye drops, 5 mL 23623011000036104 brinzolamide 1% eye drops 21710011000036101 brinzolamide +923748011000036101 Novicrit 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 147859 923319011000036100 Novicrit 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 922999011000036101 Novicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924132011000036107 epoetin lambda 5000 units/0.5 mL injection, 6 x 0.5 mL syringes 923956011000036106 epoetin lambda 5000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +1103371000168100 Quetiapine (RBX) 200 mg film-coated tablet, 20, strip pack 166438 1103361000168106 Quetiapine (RBX) 200 mg film-coated tablet, 20 2721000036105 Quetiapine (RBX) 200 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +18515011000036103 Moxiclav Duo 500/125 film-coated tablet, 10, blister pack 123967 11752011000036107 Moxiclav Duo 500/125 film-coated tablet, 10 4926011000036106 Moxiclav Duo 500/125 film-coated tablet 2971000168100 Moxiclav Duo 500/125 2971000168100 Moxiclav Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +18699011000036107 Moxicam 7.5 mg uncoated tablet, 30, blister pack 126214 11824011000036102 Moxicam 7.5 mg uncoated tablet, 30 5780011000036104 Moxicam 7.5 mg uncoated tablet 4414011000036108 Moxicam 4414011000036108 Moxicam 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +80985011000036103 Resdone 500 microgram film-coated tablet, 30, blister pack 147652 80535011000036104 Resdone 500 microgram film-coated tablet, 30 80182011000036108 Resdone 500 microgram film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 51484011000036106 risperidone 500 microgram tablet, 30 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +121551000036100 Paracetamol (Pharmacy Action) 500 mg uncoated tablet, 48, blister pack 192004 120471000036104 Paracetamol (Pharmacy Action) 500 mg uncoated tablet, 48 119531000036101 Paracetamol (Pharmacy Action) 500 mg uncoated tablet 119251000036106 Paracetamol (Pharmacy Action) 119251000036106 Paracetamol (Pharmacy Action) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +104351000036100 Irbesartan/HCTZ 150/12.5 (RBX) film-coated tablet, 30, blister pack 190470 101561000036108 Irbesartan/HCTZ 150/12.5 (RBX) film-coated tablet, 30 99251000036102 Irbesartan/HCTZ 150/12.5 (RBX) film-coated tablet 46831000168102 Irbesartan/HCTZ 150/12.5 (RBX) 46831000168102 Irbesartan/HCTZ 150/12.5 (RBX) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +923461000168107 Anastrozole (Apotex) 1 mg film-coated tablet, 30, bottle 198271 923451000168105 Anastrozole (Apotex) 1 mg film-coated tablet, 30 923231000168103 Anastrozole (Apotex) 1 mg film-coated tablet 923221000168101 Anastrozole (Apotex) 923221000168101 Anastrozole (Apotex) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +19758011000036101 Lovir 800 mg uncoated tablet, 120, blister pack 62381 13019011000036104 Lovir 800 mg uncoated tablet, 120 6307011000036103 Lovir 800 mg uncoated tablet 4208011000036103 Lovir 4208011000036103 Lovir 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +69605011000036100 Bisalax 5 mg enteric tablet, 50, blister pack 70516 67404011000036105 Bisalax 5 mg enteric tablet, 50 6628011000036102 Bisalax 5 mg enteric tablet 1091000168108 Bisalax 1091000168108 Bisalax 71939011000036103 bisacodyl 5 mg enteric tablet, 50 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +950761000168105 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100, bottle 75406 950751000168108 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100 950731000168102 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet 920925011000036101 Urocit-K 920925011000036101 Urocit-K 950741000168106 potassium citrate 1.08 g (potassium 10 mmol) modified release tablet, 100 950721000168100 potassium citrate 1.08 g (potassium 10 mmol) modified release tablet 950711000168107 potassium citrate +1011291000168102 Montelukast (Apotex) 4 mg chewable tablet, 14, blister pack 179108 1011281000168100 Montelukast (Apotex) 4 mg chewable tablet, 14 1011241000168105 Montelukast (Apotex) 4 mg chewable tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 920311000168105 montelukast 4 mg chewable tablet, 14 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +920726011000036103 Pantoprazole (Generic Health) 40 mg enteric tablet, 10, blister pack 155115 920413011000036108 Pantoprazole (Generic Health) 40 mg enteric tablet, 10 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 920856011000036101 pantoprazole 40 mg enteric tablet, 10 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +921812011000036101 Por-8 5 units/mL injection solution, 5 x 1 mL ampoules 13369 921401011000036100 Por-8 5 units/mL injection solution, 5 x 1 mL ampoules 920986011000036102 Por-8 5 units/mL injection solution, ampoule 920928011000036107 Por-8 920928011000036107 Por-8 922544011000036101 ornipressin 5 units/mL injection, 5 x 1 mL ampoules 922077011000036109 ornipressin 5 units/mL injection, ampoule 922051011000036104 ornipressin +60434011000036105 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 9 sachets 146071 56393011000036100 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 9 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63338011000036106 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 9 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +675561000168109 Telmisartan HCT 80/25mg (GH) multilayer tablet, 28, blister pack 208076 675551000168107 Telmisartan HCT 80/25mg (GH) multilayer tablet, 28 675541000168105 Telmisartan HCT 80/25mg (GH) multilayer tablet 675531000168101 Telmisartan HCT 80/25mg (GH) 675531000168101 Telmisartan HCT 80/25mg (GH) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +821181000168101 Signifor LAR (1 x 40 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 225273 821171000168104 Signifor LAR (1 x 40 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 821101000168109 Signifor LAR (inert substance) diluent, 2 mL syringe 821061000168106 Signifor LAR 821061000168106 Signifor LAR 821161000168105 pasireotide 40 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +821181000168101 Signifor LAR (1 x 40 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 225273 821171000168104 Signifor LAR (1 x 40 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 821151000168108 Signifor LAR (pasireotide 40 mg) modified release injection, 40 mg vial 821061000168106 Signifor LAR 821061000168106 Signifor LAR 821161000168105 pasireotide 40 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 821141000168106 pasireotide 40 mg modified release injection, vial 177231000036100 pasireotide +800871000168109 Actonate 5 mg film-coated tablet, 84, blister pack 163746 800861000168103 Actonate 5 mg film-coated tablet, 84 800751000168105 Actonate 5 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 800851000168100 risedronate sodium 5 mg tablet, 84 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +77181011000036108 Lisinopril (GA) 20 mg uncoated tablet, 30, blister pack 106502 76571011000036107 Lisinopril (GA) 20 mg uncoated tablet, 30 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +727501000168109 Volibris 10 mg film-coated tablet, 10, blister pack 143739 727491000168102 Volibris 10 mg film-coated tablet, 10 82010011000036107 Volibris 10 mg film-coated tablet 81978011000036105 Volibris 81978011000036105 Volibris 727481000168100 ambrisentan 10 mg tablet, 10 82440011000036105 ambrisentan 10 mg tablet 82428011000036105 ambrisentan +61385011000036101 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 50 mL, bottle 81838 57310011000036108 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 50 mL 54268011000036106 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 5 mL 26101000168104 Congested Cold and Cough Elixir (Soul Pattinson) 26101000168104 Congested Cold and Cough Elixir (Soul Pattinson) 63871011000036102 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 50 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +43600011000036101 Simvabell 5 mg film-coated tablet, 250, bottle 100884 41100011000036108 Simvabell 5 mg film-coated tablet, 250 5425011000036107 Simvabell 5 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46086011000036102 simvastatin 5 mg tablet, 250 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +60387011000036104 Micardis Plus 80/25 multilayer tablet, 7, blister pack 143761 56346011000036102 Micardis Plus 80/25 multilayer tablet, 7 53885011000036106 Micardis Plus 80/25 multilayer tablet 17051000168109 Micardis Plus 80/25 17051000168109 Micardis Plus 80/25 63317011000036103 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 7 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +68667011000036107 Difflam Extra Strength 5% gel, 30 g, tube 10932 66577011000036103 Difflam Extra Strength 5% gel, 30 g 65279011000036102 Difflam Extra Strength 5% gel 41021000168104 Difflam Extra Strength 41021000168104 Difflam Extra Strength 71300011000036105 benzydamine hydrochloride 5% gel, 30 g 69938011000036104 benzydamine hydrochloride 5% gel 21819011000036105 benzydamine +17972011000036103 Avapro 75 mg film-coated tablet, 30, blister pack 101730 11234011000036106 Avapro 75 mg film-coated tablet, 30 5422011000036104 Avapro 75 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +685751000168109 Subutex 8 mg sublingual tablet, 28, blister pack 76663 685741000168107 Subutex 8 mg sublingual tablet, 28 685631000168106 Subutex 8 mg sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685731000168103 buprenorphine 8 mg sublingual tablet, 28 685621000168108 buprenorphine 8 mg sublingual tablet 21232011000036101 buprenorphine +773641000168102 Claratyne Reditab 10 mg orally disintegrating tablet, 60, blister pack 217147 773631000168106 Claratyne Reditab 10 mg orally disintegrating tablet, 60 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773621000168108 loratadine 10 mg orally disintegrating tablet, 60 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +60871011000036101 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 500 mL, bottle 59271 56825011000036109 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 500 mL 54090011000036102 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 10 mL 10841000168100 Decongestant and Expectorant Cough Medicine (Pharmacist) 10841000168100 Decongestant and Expectorant Cough Medicine (Pharmacist) 63594011000036108 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 500 mL 62082011000036107 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +82408011000036102 Senegar oral liquid solution, 200 mL, bottle 19792 82197011000036102 Senegar oral liquid solution, 200 mL 82034011000036107 Senegar oral liquid solution 81971011000036101 Senegar 81971011000036101 Senegar 27010011000036101 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 200 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +881641000168106 Candesartan HCTZ 32/12.5 (GPPL) uncoated tablet, 30, bottle 253512 881631000168102 Candesartan HCTZ 32/12.5 (GPPL) uncoated tablet, 30 881621000168100 Candesartan HCTZ 32/12.5 (GPPL) uncoated tablet 881611000168107 Candesartan HCTZ 32/12.5 (GPPL) 881611000168107 Candesartan HCTZ 32/12.5 (GPPL) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +662721000168106 Telmisartan (Chemmart) 40 mg uncoated tablet, 28, blister pack 189930 662711000168104 Telmisartan (Chemmart) 40 mg uncoated tablet, 28 662701000168102 Telmisartan (Chemmart) 40 mg uncoated tablet 662661000168109 Telmisartan (Chemmart) 662661000168109 Telmisartan (Chemmart) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +1040071000168105 Atorvastatin (Ascent) 20 mg film-coated tablet, 40, blister pack 178544 1040061000168104 Atorvastatin (Ascent) 20 mg film-coated tablet, 40 1039991000168103 Atorvastatin (Ascent) 20 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841421000168105 atorvastatin 20 mg tablet, 40 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +18035011000036108 Ondaz 4 mg film-coated tablet, 10, blister pack 116396 11508011000036102 Ondaz 4 mg film-coated tablet, 10 5169011000036104 Ondaz 4 mg film-coated tablet 3761000168104 Ondaz 3761000168104 Ondaz 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +675681000168101 Celexi 100 mg hard capsule, 60, blister pack 206828 675671000168104 Celexi 100 mg hard capsule, 60 675661000168105 Celexi 100 mg hard capsule 675651000168108 Celexi 675651000168108 Celexi 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +658361000168108 Telmisartan (Sandoz) 40 mg uncoated tablet, 28, blister pack 199699 658351000168106 Telmisartan (Sandoz) 40 mg uncoated tablet, 28 658341000168109 Telmisartan (Sandoz) 40 mg uncoated tablet 658331000168100 Telmisartan (Sandoz) 658331000168100 Telmisartan (Sandoz) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +74441000036108 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 2 mL cartridge 56529 72351000036106 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 2 mL cartridge 70271000036108 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 2 mL cartridge 4089011000036101 Bicillin L-A 4089011000036101 Bicillin L-A 72361000036109 benzathine benzylpenicillin 1.2 million units (900 mg)/2 mL injection, 2 mL cartridge 70281000036105 benzathine benzylpenicillin 1.2 million units (900 mg)/2 mL injection, cartridge 39429011000036100 benzathine benzylpenicillin +61702011000036109 Codral Dry Cough 1 mg/mL oral liquid solution, 30 mL, bottle 99944 57623011000036102 Codral Dry Cough 1 mg/mL oral liquid solution, 30 mL 54369011000036105 Codral Dry Cough 1 mg/mL oral liquid solution 1431000168101 Codral Dry Cough 1431000168101 Codral Dry Cough 63965011000036100 pholcodine 1 mg/mL oral liquid, 30 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +60901011000036102 Donnatab uncoated tablet, 25, blister pack 60604 56855011000036105 Donnatab uncoated tablet, 25 54102011000036107 Donnatab uncoated tablet 53341011000036100 Donnatab 53341011000036100 Donnatab 63611011000036102 atropine sulfate monohydrate 19.4 microgram + hyoscine hydrobromide trihydrate 6.5 microgram + hyoscyamine sulfate dihydrate 103.7 microgram tablet, 25 62027011000036102 atropine sulfate monohydrate 19.4 microgram + hyoscine hydrobromide trihydrate 6.5 microgram + hyoscyamine sulfate dihydrate 103.7 microgram tablet 61708011000036107 atropine sulfate monohydrate + hyoscine hydrobromide trihydrate + hyoscyamine +68683011000036100 Mylanta 2go Double Strength chewable tablet, 50, blister pack 118508 66642011000036108 Mylanta 2go Double Strength chewable tablet, 50 65303011000036102 Mylanta 2go Double Strength chewable tablet 4781000168105 Mylanta 2go Double Strength 4781000168105 Mylanta 2go Double Strength 71352011000036103 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet, 50 69967011000036108 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +727561000168105 Coversyl Plus 5/1.25 film-coated tablet, 10, bottle 124553 727551000168108 Coversyl Plus 5/1.25 film-coated tablet, 10 5861011000036106 Coversyl Plus 5/1.25 film-coated tablet 48401000168105 Coversyl Plus 5/1.25 48401000168105 Coversyl Plus 5/1.25 727541000168106 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 10 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +69030011000036108 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 9 sachets 140597 66832011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 9 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71446011000036108 paracetamol 1 g powder for oral liquid, 9 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +59979011000036108 Codral Cold and Flu film-coated tablet, 12, blister pack 121309 55941011000036100 Codral Cold and Flu film-coated tablet, 12 53729011000036103 Codral Cold and Flu film-coated tablet 45721000168100 Codral Cold and Flu 45721000168100 Codral Cold and Flu 63168011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 12 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +936371000168101 Cephalkem 250 mg hard capsule, 20, blister pack 204538 936361000168107 Cephalkem 250 mg hard capsule, 20 936351000168105 Cephalkem 250 mg hard capsule 936341000168108 Cephalkem 936341000168108 Cephalkem 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +104671000036101 Donepezil Hydrochloride (RBX) 10 mg film-coated tablet, 28, blister pack 172754 101861000036106 Donepezil Hydrochloride (RBX) 10 mg film-coated tablet, 28 99261000036104 Donepezil Hydrochloride (RBX) 10 mg film-coated tablet 98111000036100 Donepezil Hydrochloride (RBX) 98111000036100 Donepezil Hydrochloride (RBX) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +957821000168105 Ondansetron (Pfizer (Perth)) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 128247 957811000168103 Ondansetron (Pfizer (Perth)) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 5707011000036104 Ondansetron (Pfizer (Perth)) 4 mg/2 mL injection solution, 2 mL ampoule 3818011000036107 Ondansetron (Pfizer (Perth)) 3818011000036107 Ondansetron (Pfizer (Perth)) 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +959261000168105 Ciram 20 mg film-coated tablet, 56, blister pack 158858 959251000168108 Ciram 20 mg film-coated tablet, 56 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +650981000168100 Tacrolimus (Pharmacor) 500 microgram hard capsule, 100, bottle 209274 650971000168103 Tacrolimus (Pharmacor) 500 microgram hard capsule, 100 650961000168109 Tacrolimus (Pharmacor) 500 microgram hard capsule 650951000168107 Tacrolimus (Pharmacor) 650951000168107 Tacrolimus (Pharmacor) 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +688491000168100 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL, bottle 27213 688481000168103 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL 688401000168106 Friars' Balsam Compound Benzoin (Gold Cross) tincture 688371000168108 Friars' Balsam Compound Benzoin (Gold Cross) 688371000168108 Friars' Balsam Compound Benzoin (Gold Cross) 688471000168101 benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 200 mL 688391000168109 benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture 688381000168106 benzoin Sumatra + storax prepared + Aloes cape +68713011000036107 Triclosan Pre-Op Wash (Orion) 1% application, 40 mL tube 10851 66568011000036105 Triclosan Pre-Op Wash (Orion) 1% application, 40 mL tube 65199011000036109 Triclosan Pre-Op Wash (Orion) 1% application, 40 mL tube 12531000168107 Triclosan Pre-Op Wash (Orion) 12531000168107 Triclosan Pre-Op Wash (Orion) 71291011000036108 triclosan 1% application, 40 mL tube 69934011000036106 triclosan 1% application, tube 69817011000036103 triclosan +44007011000036108 Dobutamine (DBL) 250 mg/20 mL injection solution, 20 mL vial 46451 41498011000036108 Dobutamine (DBL) 250 mg/20 mL injection solution, 20 mL vial 40018011000036105 Dobutamine (DBL) 250 mg/20 mL injection solution, 20 mL vial 39623011000036100 Dobutamine (DBL) 39623011000036100 Dobutamine (DBL) 46460011000036105 dobutamine 250 mg/20 mL injection, 20 mL vial 45168011000036108 dobutamine 250 mg/20 mL injection, vial 37709011000036107 dobutamine +74780011000036103 Atgam 250 mg/5 mL concentrated injection, 5 mL ampoule 12282 74236011000036102 Atgam 250 mg/5 mL concentrated injection, 5 mL ampoule 73815011000036106 Atgam 250 mg/5 mL concentrated injection, 5 mL ampoule 73690011000036109 Atgam 73690011000036109 Atgam 75369011000036104 antithymocyte immunoglobulin equine 250 mg/5 mL injection, 5 mL ampoule 75025011000036105 antithymocyte immunoglobulin equine 250 mg/5 mL injection, ampoule 74954011000036105 antithymocyte immunoglobulin equine +1065791000168107 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 24, blister pack 220729 1065781000168109 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 24 1065661000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +896531000168108 Imatinib (AN) 100 mg hard capsule, 60, blister pack 281365 896521000168105 Imatinib (AN) 100 mg hard capsule, 60 896471000168107 Imatinib (AN) 100 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 830821000168102 imatinib 100 mg capsule, 60 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +32565011000036108 Alendrobell 70 mg uncoated tablet, 4, blister pack 130163 32356011000036106 Alendrobell 70 mg uncoated tablet, 4 32233011000036108 Alendrobell 70 mg uncoated tablet 32182011000036105 Alendrobell 32182011000036105 Alendrobell 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +932921000168100 Cilamox 250 mg/5 mL powder for oral liquid, 100 mL, bottle 57377 932911000168107 Cilamox 250 mg/5 mL powder for oral liquid, 100 mL 932901000168109 Cilamox 250 mg/5 mL powder for oral liquid, 5 mL 4046011000036102 Cilamox 4046011000036102 Cilamox 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +1039751000168105 Atorvastatin (Ascent) 10 mg film-coated tablet, 10, blister pack 178530 1039741000168108 Atorvastatin (Ascent) 10 mg film-coated tablet, 10 1039731000168104 Atorvastatin (Ascent) 10 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +727321000168109 Coversyl 5 mg film-coated tablet, 10, bottle 101568 727311000168102 Coversyl 5 mg film-coated tablet, 10 5228011000036102 Coversyl 5 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 727301000168100 perindopril arginine 5 mg tablet, 10 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +19458011000036109 Fosamax 40 mg uncoated tablet, 30, blister pack 54380 12735011000036104 Fosamax 40 mg uncoated tablet, 30 6030011000036107 Fosamax 40 mg uncoated tablet 2922011000036103 Fosamax 2922011000036103 Fosamax 27322011000036106 alendronate 40 mg tablet, 30 22675011000036109 alendronate 40 mg tablet 21736011000036109 alendronate +87638011000036108 Pravastatin Sodium (Sandoz) 10 mg tablet, 30, blister pack 152451 87443011000036100 Pravastatin Sodium (Sandoz) 10 mg tablet, 30 87310011000036106 Pravastatin Sodium (Sandoz) 10 mg tablet 83228011000036100 Pravastatin Sodium (Sandoz) 83228011000036100 Pravastatin Sodium (Sandoz) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +18083011000036104 Omeprazole (Winthrop) 20 mg enteric tablet, 30, blister pack 117205 11564011000036105 Omeprazole (Winthrop) 20 mg enteric tablet, 30 5854011000036101 Omeprazole (Winthrop) 20 mg enteric tablet 3612011000036103 Omeprazole (Winthrop) 3612011000036103 Omeprazole (Winthrop) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +43968011000036101 Vancocin CP 1 g powder for injection, 1 vial 41609 41460011000036108 Vancocin CP 1 g powder for injection, 1 vial 39987011000036103 Vancocin CP 1 g powder for injection, vial 24181000168104 Vancocin CP 24181000168104 Vancocin CP 27498011000036108 vancomycin 1 g injection, 1 vial 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +18974011000036104 Panafcort 5 mg uncoated tablet, 60, bottle 27974 12282011000036109 Panafcort 5 mg uncoated tablet, 60 5716011000036104 Panafcort 5 mg uncoated tablet 3838011000036103 Panafcort 3838011000036103 Panafcort 27351011000036104 prednisone 5 mg tablet, 60 22704011000036105 prednisone 5 mg tablet 21496011000036106 prednisone +18006011000036109 Paroxetine (DP) 20 mg film-coated tablet, 30, blister pack 129419 11874011000036103 Paroxetine (DP) 20 mg film-coated tablet, 30 4529011000036106 Paroxetine (DP) 20 mg film-coated tablet 3729011000036107 Paroxetine (DP) 3729011000036107 Paroxetine (DP) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +68821011000036102 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 440 g, jar 10184 66484011000036105 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 440 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71217011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid, 440 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +77152011000036109 Metamucil Fibrecap 525 mg hard capsule, 100, bottle 118183 76592011000036106 Metamucil Fibrecap 525 mg hard capsule, 100 76051011000036106 Metamucil Fibrecap 525 mg hard capsule 36031000168108 Metamucil Fibrecap 36031000168108 Metamucil Fibrecap 78146011000036100 psyllium husk powder 525 mg capsule, 100 77512011000036106 psyllium husk powder 525 mg capsule 21683011000036102 psyllium husk powder +59950011000036104 Xylocaine Special Adhesive 10% ointment, 15 g, tube 12006 55912011000036104 Xylocaine Special Adhesive 10% ointment, 15 g 53669011000036103 Xylocaine Special Adhesive 10% ointment 24361000168106 Xylocaine Special Adhesive 24361000168106 Xylocaine Special Adhesive 63155011000036108 lidocaine (lignocaine) 10% ointment, 15 g 61874011000036107 lidocaine (lignocaine) 10% ointment 21572011000036107 lidocaine (lignocaine) +18173011000036104 Tenormin 50 mg uncoated tablet, 30, blister pack 11257 11446011000036103 Tenormin 50 mg uncoated tablet, 30 4796011000036108 Tenormin 50 mg uncoated tablet 3833011000036108 Tenormin 3833011000036108 Tenormin 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +19586011000036106 Pravachol 40 mg uncoated tablet, 30, blister pack 58075 12857011000036108 Pravachol 40 mg uncoated tablet, 30 6148011000036101 Pravachol 40 mg uncoated tablet 3848011000036104 Pravachol 3848011000036104 Pravachol 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +50299011000036103 XP Analog LCP powder for oral liquid, 400 g, can 49481011000036107 XP Analog LCP powder for oral liquid, 400 g 48675011000036101 XP Analog LCP powder for oral liquid 48360011000036108 XP Analog LCP 48360011000036108 XP Analog LCP 51438011000036106 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine powder for oral liquid, 400 g 50954011000036105 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine powder for oral liquid 50736011000036109 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine +992661000168106 Bisoprolol (Apotex) 5 mg tablet, 42, blister pack 182129 992651000168109 Bisoprolol (Apotex) 5 mg tablet, 42 992561000168105 Bisoprolol (Apotex) 5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79210011000036106 bisoprolol fumarate 5 mg tablet, 42 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +921849011000036103 Rocephin 1 g powder for injection, 10 vials 13762 921405011000036103 Rocephin 1 g powder for injection, 10 vials 5738011000036109 Rocephin 1 g powder for injection, vial 3203011000036105 Rocephin 3203011000036105 Rocephin 922546011000036109 ceftriaxone 1 g injection, 10 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +61247011000036109 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 30 mL, bottle 77013 57183011000036107 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 30 mL 54227011000036100 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 5 mL 22861000168109 Benadryl for the Family Dry Cough and Nasal Congestion 22861000168109 Benadryl for the Family Dry Cough and Nasal Congestion 63755011000036100 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 30 mL 62073011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61751011000036109 dextromethorphan + pseudoephedrine +931649011000036109 Twynsta 80/5 mg multilayer tablet, 28, blister pack 166263 930809011000036100 Twynsta 80/5 mg multilayer tablet, 28 930057011000036103 Twynsta 80/5 mg multilayer tablet 12411000168103 Twynsta 80/5 mg 12411000168103 Twynsta 80/5 mg 932422011000036104 telmisartan 80 mg + amlodipine 5 mg tablet, 28 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +1074311000168107 Clopidogrel (Auro) 75 mg film-coated tablet, 28, blister pack 171363 1074301000168109 Clopidogrel (Auro) 75 mg film-coated tablet, 28 1074241000168100 Clopidogrel (Auro) 75 mg film-coated tablet 1074231000168109 Clopidogrel (Auro) 1074231000168109 Clopidogrel (Auro) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +20726011000036102 Epirubicin Hydrochloride (Mayne Pharma) 50 mg/25 mL injection solution, 25 mL vial 83023 13895011000036104 Epirubicin Hydrochloride (Mayne Pharma) 50 mg/25 mL injection solution, 25 mL vial 7181011000036104 Epirubicin Hydrochloride (Mayne Pharma) 50 mg/25 mL injection solution, 25 mL vial 3308011000036106 Epirubicin Hydrochloride (Mayne Pharma) 3308011000036106 Epirubicin Hydrochloride (Mayne Pharma) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +68731011000036102 Glucose (Phebra) 50% (5 g/10 mL) concentrated injection, 5 x 10 mL ampoules 12103 66659011000036100 Glucose (Phebra) 50% (5 g/10 mL) concentrated injection, 5 x 10 mL ampoules 65296011000036103 Glucose (Phebra) 50% (5 g/10 mL) concentrated injection, 10 mL ampoule 65179011000036104 Glucose (Phebra) 65179011000036104 Glucose (Phebra) 71368011000036106 glucose 50% (5 g/10 mL) injection, 5 x 10 mL ampoules 69975011000036107 glucose 50% (5 g/10 mL) injection, ampoule 21354011000036103 glucose +37637011000036103 Mydriacyl 0.5% eye drops solution, 15 mL, bottle 25356 36903011000036101 Mydriacyl 0.5% eye drops solution, 15 mL 36236011000036103 Mydriacyl 0.5% eye drops solution 35955011000036107 Mydriacyl 35955011000036107 Mydriacyl 38788011000036109 tropicamide 0.5% eye drops, 15 mL 38001011000036102 tropicamide 0.5% eye drops 37747011000036108 tropicamide +754911000168107 Torvastat 10 mg film-coated tablet, 30, bottle 194112 22431000036105 Torvastat 10 mg film-coated tablet, 30 20381000036104 Torvastat 10 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +864461000168108 Amitriptyline (AN) 10 mg tablet, 50, bottle 232117 864451000168106 Amitriptyline (AN) 10 mg tablet, 50 864441000168109 Amitriptyline (AN) 10 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +69202011000036106 Ringer's (Baxter) irrigation solution, 10 x 1 L bottles 19444 67002011000036109 Ringer's (Baxter) irrigation solution, 10 x 1 L bottles 65516011000036108 Ringer's (Baxter) irrigation solution, 1 L bottle 65107011000036104 Ringer's (Baxter) 65107011000036104 Ringer's (Baxter) 71572011000036103 sodium chloride 8.6 g/L + potassium chloride 300 mg/L + calcium chloride dihydrate 330 mg/L solution, 10 x 1 L bottles 70071011000036101 sodium chloride 8.6 g/L + potassium chloride 300 mg/L + calcium chloride dihydrate 330 mg/L solution, bottle 69841011000036101 sodium chloride + potassium chloride + calcium chloride dihydrate +923851011000036105 Prolia with Automatic Needle Guard 60 mg/mL injection solution, 1 mL syringe 159323 923397011000036106 Prolia with Automatic Needle Guard 60 mg/mL injection solution, 1 mL syringe 923061011000036104 Prolia with Automatic Needle Guard 60 mg/mL injection solution, syringe 54741000168107 Prolia with Automatic Needle Guard 54741000168107 Prolia with Automatic Needle Guard 924182011000036101 denosumab 60 mg/mL injection, 1 mL syringe 923985011000036108 denosumab 60 mg/mL injection, syringe 923928011000036106 denosumab +37560011000036101 Neo-Synephrine 1% (10 mg/mL) injection solution, 25 x 1 mL ampoules 15472 36827011000036108 Neo-Synephrine 1% (10 mg/mL) injection solution, 25 x 1 mL ampoules 36099011000036106 Neo-Synephrine 1% (10 mg/mL) injection solution, ampoule 35927011000036101 Neo-Synephrine 35927011000036101 Neo-Synephrine 38716011000036107 phenylephrine hydrochloride 1% (10 mg/mL) injection, 25 x 1 mL ampoules 37947011000036103 phenylephrine hydrochloride 1% (10 mg/mL) injection, ampoule 37732011000036107 phenylephrine +19102011000036101 Zoloft 100 mg film-coated tablet, 30, blister pack 42950 12407011000036109 Zoloft 100 mg film-coated tablet, 30 4788011000036106 Zoloft 100 mg film-coated tablet 3559011000036109 Zoloft 3559011000036109 Zoloft 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +931667011000036109 Twynsta 80/10 mg multilayer tablet, 28, blister pack 166266 930827011000036101 Twynsta 80/10 mg multilayer tablet, 28 930060011000036106 Twynsta 80/10 mg multilayer tablet 7561000168104 Twynsta 80/10 mg 7561000168104 Twynsta 80/10 mg 932440011000036101 telmisartan 80 mg + amlodipine 10 mg tablet, 28 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +757151000168103 Palexia SR 25 mg modified release tablet, 10, blister pack 229737 757141000168100 Palexia SR 25 mg modified release tablet, 10 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757131000168109 tapentadol 25 mg modified release tablet, 10 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +18490011000036104 Paracetamol (Terry White Chemists) 500 mg uncoated tablet, 100, blister pack 115528 11496011000036107 Paracetamol (Terry White Chemists) 500 mg uncoated tablet, 100 5380011000036100 Paracetamol (Terry White Chemists) 500 mg uncoated tablet 3389011000036104 Paracetamol (Terry White Chemists) 3389011000036104 Paracetamol (Terry White Chemists) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +997321000168106 Meloxicam (Apotex) 15 mg hard capsule, 20, blister pack 181197 997311000168104 Meloxicam (Apotex) 15 mg hard capsule, 20 997281000168101 Meloxicam (Apotex) 15 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 52891011000036100 meloxicam 15 mg capsule, 20 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +44084011000036103 Scandonest Special 2% / 1 in 100 000 injection solution, 50 x 1.8 mL cartridges 49318 41571011000036104 Scandonest Special 2% / 1 in 100 000 injection solution, 50 x 1.8 mL cartridges 40074011000036105 Scandonest Special 2% / 1 in 100 000 injection solution, 1.8 mL cartridge 43481000168109 Scandonest Special 2% / 1 in 100 000 43481000168109 Scandonest Special 2% / 1 in 100 000 46400011000036106 mepivacaine hydrochloride 2% (36 mg/1.8 mL) + adrenaline (epinephrine) 1 in 100 000 (18 microgram/1.8 mL) injection, 50 x 1.8 mL cartridges 45134011000036105 mepivacaine hydrochloride 2% (36 mg/1.8 mL) + adrenaline (epinephrine) 1 in 100 000 (18 microgram/1.8 mL) injection, cartridge 44936011000036105 mepivacaine + adrenaline (epinephrine) +60117011000036105 Sore Throat Lozenge (Chemists' Own) raspberry lozenge, 16, blister pack 127495 56076011000036102 Sore Throat Lozenge (Chemists' Own) raspberry lozenge, 16 53779011000036104 Sore Throat Lozenge (Chemists' Own) raspberry lozenge 51601000168102 Sore Throat Lozenge (Chemists' Own) 51601000168102 Sore Throat Lozenge (Chemists' Own) 63728011000036107 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 62061011000036104 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +958461000168102 Somavert (30 x 20 mg vials, 30 x inert diluent vials), 1 pack, composite pack 107105 958451000168104 Somavert (30 x 20 mg vials, 30 x inert diluent vials), 1 pack 958401000168103 Somavert (pegvisomant 20 mg) powder for injection, 20 mg vial 958111000168106 Somavert 958111000168106 Somavert 958441000168101 pegvisomant 20 mg injection [30 vials] (&) inert substance diluent [30 vials], 1 pack 958391000168100 pegvisomant 20 mg injection, vial 958121000168104 pegvisomant +958461000168102 Somavert (30 x 20 mg vials, 30 x inert diluent vials), 1 pack, composite pack 107105 958451000168104 Somavert (30 x 20 mg vials, 30 x inert diluent vials), 1 pack 958151000168107 Somavert (inert substance) diluent, vial 958111000168106 Somavert 958111000168106 Somavert 958441000168101 pegvisomant 20 mg injection [30 vials] (&) inert substance diluent [30 vials], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +929011011000036100 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 90, blister pack 158915 928372011000036103 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 90 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929224011000036102 valaciclovir 500 mg tablet, 90 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1031161000168107 Aten 50 mg film-coated tablet, 60, blister pack 197716 1031151000168105 Aten 50 mg film-coated tablet, 60 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031141000168108 atenolol 50 mg tablet, 60 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1005591000168104 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags 162869 1005581000168102 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags 1005571000168100 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 100 mL bag 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1004551000168105 ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags 1004531000168104 ropivacaine hydrochloride 200 mg/100 mL injection, bag 44857011000036102 ropivacaine +712171000168102 Perindopril (Sandoz) 4 mg tablet, 30, blister pack 147566 712161000168108 Perindopril (Sandoz) 4 mg tablet, 30 712151000168106 Perindopril (Sandoz) 4 mg tablet 712111000168105 Perindopril (Sandoz) 712111000168105 Perindopril (Sandoz) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +1022851000168105 Epiduo Forte gel, 70 g, pump pack 273168 1022841000168108 Epiduo Forte gel, 70 g 1022701000168104 Epiduo Forte gel 1022681000168102 Epiduo Forte 1022681000168102 Epiduo Forte 1022831000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel, 70 g 1022691000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +44349011000036108 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 67518 41816011000036104 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 40210011000036101 Benefix (nonacog alfa 1000 units) powder for injection, 1000 units vial 2121000168104 Benefix 2121000168104 Benefix 46622011000036101 nonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 45242011000036104 nonacog alfa 1000 units injection, vial 44863011000036102 nonacog alfa +44349011000036108 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 67518 41816011000036104 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 635121000168109 Benefix (inert substance) diluent, 5 mL vial 2121000168104 Benefix 2121000168104 Benefix 46622011000036101 nonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +896491000168108 Imatinib (AN) 100 mg hard capsule, 24, blister pack 281365 896481000168105 Imatinib (AN) 100 mg hard capsule, 24 896471000168107 Imatinib (AN) 100 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 828811000168108 imatinib 100 mg capsule, 24 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1073991000168104 Cold and Flu Day and Night (Medreich) (36 x Day tablets, 12 x Night tablets), 48, blister pack 203127 1073981000168102 Cold and Flu Day and Night (Medreich) (36 x Day tablets, 12 x Night tablets), 48 1073951000168109 Cold and Flu Day and Night (Night) (Medreich) film-coated tablet 1073911000168108 Cold and Flu Day and Night (Medreich) 1073931000168103 Cold and Flu Day and Night (Night) (Medreich) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1073991000168104 Cold and Flu Day and Night (Medreich) (36 x Day tablets, 12 x Night tablets), 48, blister pack 203127 1073981000168102 Cold and Flu Day and Night (Medreich) (36 x Day tablets, 12 x Night tablets), 48 1073941000168107 Cold and Flu Day and Night (Day) (Medreich) film-coated tablet 1073911000168108 Cold and Flu Day and Night (Medreich) 1073921000168101 Cold and Flu Day and Night (Day) (Medreich) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +797831000168105 Aciclovir (Watson) 800 mg uncoated tablet, 35, blister pack 202883 797821000168107 Aciclovir (Watson) 800 mg uncoated tablet, 35 797811000168100 Aciclovir (Watson) 800 mg uncoated tablet 795831000168101 Aciclovir (Watson) 795831000168101 Aciclovir (Watson) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +61620011000036109 Nurofen Migraine Pain 200 mg film-coated tablet, 10, blister pack 96215 57542011000036102 Nurofen Migraine Pain 200 mg film-coated tablet, 10 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +68885011000036108 QV Skin Lotion, 10 mL, bottle 10630 66526011000036102 QV Skin Lotion, 10 mL 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71258011000036108 glycerol 5% + white soft paraffin 5% lotion, 10 mL 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +44820011000036102 Seaze 2 mg tablet, 30, blister pack 99021 42252011000036104 Seaze 2 mg tablet, 30 40406011000036102 Seaze 2 mg tablet 3240011000036108 Seaze 3240011000036108 Seaze 47005011000036106 lamotrigine 2 mg tablet, 30 45372011000036106 lamotrigine 2 mg tablet 21643011000036106 lamotrigine +1065401000168105 Codoxamol uncoated tablet, 48, bottle 161869 1065391000168108 Codoxamol uncoated tablet, 48 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 52867011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 48 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +19903011000036105 Neurontin 300 mg hard capsule, 100, bottle 66007 13149011000036103 Neurontin 300 mg hard capsule, 100 6432011000036104 Neurontin 300 mg hard capsule 4344011000036106 Neurontin 4344011000036106 Neurontin 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +44555011000036106 Fasturtec (3 x 1.5 mg vials, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 80836 42008011000036103 Fasturtec (3 x 1.5 mg vials, 3 x 1 mL inert diluent ampoules), 1 pack 40318011000036106 Fasturtec (rasburicase 1.5 mg) powder for injection, 1.5 mg vial 39660011000036100 Fasturtec 39660011000036100 Fasturtec 46781011000036105 rasburicase 1.5 mg injection [3 vials] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 45314011000036109 rasburicase 1.5 mg injection, vial 44913011000036105 rasburicase +44555011000036106 Fasturtec (3 x 1.5 mg vials, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 80836 42008011000036103 Fasturtec (3 x 1.5 mg vials, 3 x 1 mL inert diluent ampoules), 1 pack 646401000168100 Fasturtec (inert substance) diluent, 1 mL ampoule 39660011000036100 Fasturtec 39660011000036100 Fasturtec 46781011000036105 rasburicase 1.5 mg injection [3 vials] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +160341000036105 Montair 10 mg film-coated tablet, 28, blister pack 184836 159101000036109 Montair 10 mg film-coated tablet, 28 158101000036103 Montair 10 mg film-coated tablet 123921000036103 Montair 123921000036103 Montair 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +720831000168103 Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials 22863 720821000168101 Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials 720811000168108 Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 5 mL vial 53361000168107 Sodium Selenate Decahydrate (Phebra) 53361000168107 Sodium Selenate Decahydrate (Phebra) 38783011000036104 sodium selenate decahydrate 111 microgram/5 mL injection, 10 x 5 mL vials 37996011000036105 sodium selenate decahydrate 111 microgram/5 mL injection, vial 32671011000036106 selenium +1099921000168106 Clarithrom 250 mg film-coated tablet, 100, blister pack 184265 1099911000168104 Clarithrom 250 mg film-coated tablet, 100 1099801000168107 Clarithrom 250 mg film-coated tablet 1099701000168100 Clarithrom 1099701000168100 Clarithrom 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +37393011000036108 Rifadin 300 mg capsule, 100, bottle 10111 36610011000036108 Rifadin 300 mg capsule, 100 36005011000036106 Rifadin 300 mg capsule 3470011000036108 Rifadin 3470011000036108 Rifadin 27198011000036107 rifampicin 300 mg capsule, 100 22558011000036109 rifampicin 300 mg capsule 21532011000036109 rifampicin +866471000168105 Amitriptyline (GPPL) 50 mg tablet, 1000, bottle 232139 865611000168106 Amitriptyline (GPPL) 50 mg tablet, 1000 865541000168109 Amitriptyline (GPPL) 50 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +85012011000036108 Clopidogrel (Apo) 75 mg film-coated tablet, 28, blister pack 129641 84880011000036102 Clopidogrel (Apo) 75 mg film-coated tablet, 28 84778011000036107 Clopidogrel (Apo) 75 mg film-coated tablet 18441000168101 Clopidogrel (Apo) 18441000168101 Clopidogrel (Apo) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +85012011000036108 Clopidogrel (Apo) 75 mg film-coated tablet, 28, blister pack 198523 84880011000036102 Clopidogrel (Apo) 75 mg film-coated tablet, 28 84778011000036107 Clopidogrel (Apo) 75 mg film-coated tablet 18441000168101 Clopidogrel (Apo) 18441000168101 Clopidogrel (Apo) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +69215011000036101 Chlorhexidine Acetate (Baxter) 0.02% (100 mg/500 mL) irrigation solution, 500 mL bottle 19459 67015011000036104 Chlorhexidine Acetate (Baxter) 0.02% (100 mg/500 mL) irrigation solution, 500 mL bottle 65272011000036107 Chlorhexidine Acetate (Baxter) 0.02% (100 mg/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71585011000036104 chlorhexidine acetate 0.02% (100 mg/500 mL) solution, 500 mL bottle 70078011000036105 chlorhexidine acetate 0.02% (100 mg/500 mL) solution, bottle 21404011000036101 chlorhexidine +20070011000036102 Zactin 20 mg hard capsule, 28, blister pack 70502 13300011000036108 Zactin 20 mg hard capsule, 28 6584011000036106 Zactin 20 mg hard capsule 2952011000036104 Zactin 2952011000036104 Zactin 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +20070011000036102 Zactin 20 mg hard capsule, 28, blister pack 53773 13300011000036108 Zactin 20 mg hard capsule, 28 6584011000036106 Zactin 20 mg hard capsule 2952011000036104 Zactin 2952011000036104 Zactin 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +962801000168108 Anandron 150 mg uncoated tablet, 10, blister pack 55059 962791000168107 Anandron 150 mg uncoated tablet, 10 6057011000036109 Anandron 150 mg uncoated tablet 3875011000036106 Anandron 3875011000036106 Anandron 962781000168109 nilutamide 150 mg tablet, 10 22693011000036104 nilutamide 150 mg tablet 21437011000036103 nilutamide +1095581000168100 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 60, blister pack 287305 1095571000168103 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 60 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1077321000168107 fexofenadine hydrochloride 180 mg tablet, 60 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +50260011000036106 Isoleucine Amino Acid Supplement containing 50 mg isoleucine powder for oral liquid, 30 x 4 g sachets 49289011000036105 Isoleucine Amino Acid Supplement containing 50 mg isoleucine powder for oral liquid, 30 x 4 g sachets 406311000168102 Isoleucine Amino Acid Supplement containing 50 mg isoleucine powder for oral liquid, 4 g sachet 48376011000036101 Isoleucine Amino Acid Supplement 48376011000036101 Isoleucine Amino Acid Supplement 51276011000036109 isoleucine with carbohydrate containing 50 mg isoleucine powder for oral liquid, 30 x 4 g sachets 404271000168107 isoleucine with carbohydrate containing 50 mg isoleucine powder for oral liquid, 4 g sachet 50770011000036109 isoleucine with carbohydrate +1044181000168104 Pryzex 5 mg film-coated tablet, 10, blister pack 178991 1044171000168102 Pryzex 5 mg film-coated tablet, 10 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044161000168108 olanzapine 5 mg tablet, 10 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1031391000168103 Atomoxetine (GXP) 10 mg hard capsule, 56, blister pack 234816 1031381000168101 Atomoxetine (GXP) 10 mg hard capsule, 56 1031301000168109 Atomoxetine (GXP) 10 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 829971000168102 atomoxetine 10 mg capsule, 56 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +18001011000036104 Bupropion (RL) 150 mg modified release tablet, 30, blister pack 119665 11626011000036103 Bupropion (RL) 150 mg modified release tablet, 30 4463011000036105 Bupropion (RL) 150 mg modified release tablet 3551011000036105 Bupropion (RL) 3551011000036105 Bupropion (RL) 27771011000036100 bupropion hydrochloride 150 mg modified release tablet, 30 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +1097751000168106 Klyx enema, 120 mL, bottle 287769 1097741000168109 Klyx enema, 120 mL 1097721000168103 Klyx enema, 120 mL 1097691000168107 Klyx 1097691000168107 Klyx 1097731000168100 docusate sodium 1 mg/mL + sorbitol solution (70 per cent) (crystallising) 357 mg/mL enema, 120 mL 1097711000168105 docusate sodium 1 mg/mL + sorbitol solution (70 per cent) (crystallising) 357 mg/mL enema, 120 mL 1097701000168107 docusate + sorbitol +77336011000036102 Atropine Sulfate Min-I-Jet (CSL) 1 mg/10 mL injection solution, 10 mL syringe 48529 76752011000036102 Atropine Sulfate Min-I-Jet (CSL) 1 mg/10 mL injection solution, 10 mL syringe 76163011000036107 Atropine Sulfate Min-I-Jet (CSL) 1 mg/10 mL injection solution, 10 mL syringe 17221000168109 Atropine Sulfate Min-I-Jet (CSL) 17221000168109 Atropine Sulfate Min-I-Jet (CSL) 78260011000036105 atropine sulfate monohydrate 1 mg/10 mL injection, 10 mL syringe 77581011000036103 atropine sulfate monohydrate 1 mg/10 mL injection, syringe 933232141000036108 atropine sulfate monohydrate +60905011000036100 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 100 mL, bottle 60796 56859011000036107 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 100 mL 54104011000036103 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 5 mL 19951000168104 Dimetapp DM Cough and Cold Elixir 19951000168104 Dimetapp DM Cough and Cold Elixir 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +52201011000036107 Temodal 140 mg hard capsule, 5, bottle 142240 52089011000036101 Temodal 140 mg hard capsule, 5 51985011000036108 Temodal 140 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +740071000168108 Ranitidine (AN) 300 mg film-coated tablet, 14, blister pack 148526 740061000168102 Ranitidine (AN) 300 mg film-coated tablet, 14 740011000168100 Ranitidine (AN) 300 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +44336011000036103 Combivent pressurised inhalation, 300 actuations, metered dose aerosol can 67268 41803011000036108 Combivent pressurised inhalation, 300 actuations 40206011000036101 Combivent pressurised inhalation, actuation 39570011000036100 Combivent 39570011000036100 Combivent 46609011000036103 ipratropium bromide 20 microgram/actuation + salbutamol 100 microgram/actuation pressurised inhalation, 300 actuations 45238011000036100 ipratropium bromide 20 microgram/actuation + salbutamol 100 microgram/actuation pressurised inhalation, actuation 44956011000036106 ipratropium + salbutamol +684381000168100 Dulose 3.34 g/5 mL oral liquid solution, 500 mL, bottle 220095 684371000168103 Dulose 3.34 g/5 mL oral liquid solution, 500 mL 684361000168109 Dulose 3.34 g/5 mL oral liquid solution, 5 mL 684351000168107 Dulose 684351000168107 Dulose 27821011000036102 lactulose 3.34 g/5 mL oral liquid, 500 mL 23149011000036102 lactulose 3.34 g/5 mL oral liquid 21591011000036108 lactulose +1065631000168100 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 40, blister pack 190420 1065621000168103 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 40 1065551000168105 Analgesic Calmative (Discount Drug Stores) uncoated tablet 1065541000168108 Analgesic Calmative (Discount Drug Stores) 1065541000168108 Analgesic Calmative (Discount Drug Stores) 28971000036104 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 40 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +789311000168102 Abisart 150 mg film-coated tablet, 90, bottle 214580 789301000168100 Abisart 150 mg film-coated tablet, 90 98721000036106 Abisart 150 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 789291000168101 irbesartan 150 mg tablet, 90 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +59718011000036103 Advil 200 mg sugar coated tablet, 24, blister pack 104221 55686011000036101 Advil 200 mg sugar coated tablet, 24 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +727241000168109 Pariet 20 mg enteric tablet, 5, blister pack 76186 727231000168100 Pariet 20 mg enteric tablet, 5 6828011000036107 Pariet 20 mg enteric tablet 3351011000036108 Pariet 3351011000036108 Pariet 727221000168103 rabeprazole sodium 20 mg enteric tablet, 5 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +59945011000036105 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet, 12, blister pack 119999 55907011000036100 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet, 12 53695011000036103 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet 53192011000036107 Sudafed PE Sinus plus Allergy and Pain Relief 53192011000036107 Sudafed PE Sinus plus Allergy and Pain Relief 63182011000036107 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 12 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +866531000168106 Amitriptyline (RS) 10 mg tablet, 100, blister pack 232140 866521000168108 Amitriptyline (RS) 10 mg tablet, 100 866491000168106 Amitriptyline (RS) 10 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +727181000168106 Zeldox 60 mg hard capsule, 20, blister pack 65528 727171000168108 Zeldox 60 mg hard capsule, 20 6416011000036106 Zeldox 60 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 727161000168102 ziprasidone 60 mg capsule, 20 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +68649011000036107 KP24 Medicated Foam 1% application, 100 mL, bottle 116798 66630011000036105 KP24 Medicated Foam 1% application, 100 mL 65441011000036103 KP24 Medicated Foam 1% application 58061000168100 KP24 Medicated Foam 58061000168100 KP24 Medicated Foam 71341011000036106 malathion 1% application, 100 mL 69961011000036100 malathion 1% application 69786011000036100 malathion +1039891000168105 Aspramide 10 mg film-coated tablet, 60, blister pack 196460 1039881000168107 Aspramide 10 mg film-coated tablet, 60 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 671941000168101 metoclopramide hydrochloride 10 mg tablet, 60 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +825841000168102 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 72347 825831000168106 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 825811000168101 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 38281000168102 H-B-Vax II Paediatric 38281000168102 H-B-Vax II Paediatric 825821000168108 hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL vial 825801000168104 hepatitis B child vaccine 5 microgram/0.5 mL injection, vial 825191000168101 hepatitis B vaccine +907221000168103 Celecoxib (BW) 200 mg hard capsule, 120, blister pack 196177 907211000168105 Celecoxib (BW) 200 mg hard capsule, 120 906951000168104 Celecoxib (BW) 200 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +87651011000036100 Sifrol ER 1.5 mg modified release tablet, 30, blister pack 158757 87466011000036100 Sifrol ER 1.5 mg modified release tablet, 30 87326011000036101 Sifrol ER 1.5 mg modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 87816011000036107 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet, 30 87760011000036108 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet 37716011000036100 pramipexole +74601000036108 Ionil-T Plus 1% shampoo, 500 mL, bottle 92302 72671000036105 Ionil-T Plus 1% shampoo, 500 mL 70171000036100 Ionil-T Plus 1% shampoo 64965011000036102 Ionil-T Plus 64965011000036102 Ionil-T Plus 72681000036107 refined coal tar 1% shampoo, 500 mL 70181000036103 refined coal tar 1% shampoo 69766011000036102 refined coal tar +662881000168101 Irbesartan (GH) 300 mg film-coated tablet, 30, blister pack 191084 662871000168104 Irbesartan (GH) 300 mg film-coated tablet, 30 662861000168105 Irbesartan (GH) 300 mg film-coated tablet 662791000168108 Irbesartan (GH) 662791000168108 Irbesartan (GH) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +1074291000168108 Clopidogrel (Auro) 75 mg film-coated tablet, 100, bottle 171361 1074281000168105 Clopidogrel (Auro) 75 mg film-coated tablet, 100 1074241000168100 Clopidogrel (Auro) 75 mg film-coated tablet 1074231000168109 Clopidogrel (Auro) 1074231000168109 Clopidogrel (Auro) 1074271000168107 clopidogrel 75 mg tablet, 100 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +921847011000036105 Magnevist 4.69 g/10 mL injection solution, 10 x 10 mL vials 10697 921375011000036102 Magnevist 4.69 g/10 mL injection solution, 10 x 10 mL vials 920980011000036100 Magnevist 4.69 g/10 mL injection solution, 10 mL vial 920916011000036100 Magnevist 920916011000036100 Magnevist 922526011000036107 gadopentetate dimeglumine 4.69 g/10 mL injection, 10 x 10 mL vials 922070011000036108 gadopentetate dimeglumine 4.69 g/10 mL injection, vial 922037011000036106 gadopentetic acid +104831000036102 Irbesartan HCTZ 300/12.5 (Terry White Chemists) film-coated tablet, 30, blister pack 175209 101961000036104 Irbesartan HCTZ 300/12.5 (Terry White Chemists) film-coated tablet, 30 98461000036105 Irbesartan HCTZ 300/12.5 (Terry White Chemists) film-coated tablet 62201000168101 Irbesartan HCTZ 300/12.5 (Terry White Chemists) 62201000168101 Irbesartan HCTZ 300/12.5 (Terry White Chemists) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104831000036102 Irbesartan HCTZ 300/12.5 (Terry White Chemists) film-coated tablet, 30, blister pack 216084 101961000036104 Irbesartan HCTZ 300/12.5 (Terry White Chemists) film-coated tablet, 30 98461000036105 Irbesartan HCTZ 300/12.5 (Terry White Chemists) film-coated tablet 62201000168101 Irbesartan HCTZ 300/12.5 (Terry White Chemists) 62201000168101 Irbesartan HCTZ 300/12.5 (Terry White Chemists) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +84344011000036102 Stalevo 75/18.75/200 film-coated tablet, 100, bottle 160686 84037011000036105 Stalevo 75/18.75/200 film-coated tablet, 100 83664011000036102 Stalevo 75/18.75/200 film-coated tablet 1981000168109 Stalevo 75/18.75/200 1981000168109 Stalevo 75/18.75/200 84649011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 100 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +780651000168102 Fentanyl (Apo) 12 microgram/hour patch, 7, sachet 152577 780641000168104 Fentanyl (Apo) 12 microgram/hour patch, 7 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236131000036102 fentanyl 12 microgram/hour patch, 7 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +988411000168108 Cafex 100 mg uncoated tablet, 2, blister pack 174161 988401000168105 Cafex 100 mg uncoated tablet, 2 988391000168108 Cafex 100 mg uncoated tablet 988381000168105 Cafex 988381000168105 Cafex 71750011000036103 caffeine 100 mg tablet, 2 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +823671000168106 Gastro-Stop 2 mg hard capsule, 6, blister pack 48935 823661000168100 Gastro-Stop 2 mg hard capsule, 6 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 823651000168102 loperamide hydrochloride 2 mg capsule, 6 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +823671000168106 Gastro-Stop 2 mg hard capsule, 6, blister pack 264972 823661000168100 Gastro-Stop 2 mg hard capsule, 6 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 823651000168102 loperamide hydrochloride 2 mg capsule, 6 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +925171011000036107 Femzole 150 mg hard capsule, 1, blister pack 151864 924708011000036109 Femzole 150 mg hard capsule, 1 924426011000036107 Femzole 150 mg hard capsule 32621000168101 Femzole 32621000168101 Femzole 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +86130011000036106 Levetiracetam (Terry White Chemists) 500 mg tablet, 60, blister pack 156319 85703011000036100 Levetiracetam (Terry White Chemists) 500 mg tablet, 60 85344011000036106 Levetiracetam (Terry White Chemists) 500 mg tablet 85285011000036108 Levetiracetam (Terry White Chemists) 85285011000036108 Levetiracetam (Terry White Chemists) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +20554011000036107 Solavert 80 mg uncoated tablet, 60, bottle 79915 13747011000036102 Solavert 80 mg uncoated tablet, 60 7032011000036107 Solavert 80 mg uncoated tablet 3758011000036100 Solavert 3758011000036100 Solavert 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +18567011000036109 Rancef 500 mg hard capsule, 20, blister pack 116868 11556011000036105 Rancef 500 mg hard capsule, 20 4750011000036100 Rancef 500 mg hard capsule 3515011000036100 Rancef 3515011000036100 Rancef 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +87732011000036103 Risperidone (DRLA) 2 mg film-coated tablet, 20, blister pack 165516 87498011000036103 Risperidone (DRLA) 2 mg film-coated tablet, 20 87342011000036103 Risperidone (DRLA) 2 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 81623011000036103 risperidone 2 mg tablet, 20 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +761401000168106 Heparin Sodium (DBL) 5000 units/0.2 mL injection solution, 50 x 0.2 mL ampoules 16349 761391000168109 Heparin Sodium (DBL) 5000 units/0.2 mL injection solution, 50 x 0.2 mL ampoules 4806011000036108 Heparin Sodium (DBL) 5000 units/0.2 mL injection solution, 0.2 mL ampoule 4435011000036104 Heparin Sodium (DBL) 4435011000036104 Heparin Sodium (DBL) 761381000168106 heparin sodium 5000 units/0.2 mL injection, 50 x 0.2 mL ampoules 22295011000036101 heparin sodium 5000 units/0.2 mL injection, ampoule 858661000168109 heparin +1080571000168109 Dermadrate Dry Skin Treatment 10% cream, 100 g, tube 67382011000036106 Dermadrate Dry Skin Treatment 10% cream, 100 g 65638011000036105 Dermadrate Dry Skin Treatment 10% cream 65152011000036107 Dermadrate Dry Skin Treatment 65152011000036107 Dermadrate Dry Skin Treatment 27005011000036108 urea 10% cream, 100 g 22378011000036108 urea 10% cream 21561011000036106 urea +1048521000168100 Coparadeine Forte 500/30 tablet, 20, blister pack 220978 1048511000168107 Coparadeine Forte 500/30 tablet, 20 1048381000168108 Coparadeine Forte 500/30 tablet 1048371000168105 Coparadeine Forte 500/30 1048371000168105 Coparadeine Forte 500/30 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +930771000168100 Glycopyrrolate (Accord) 200 microgram/mL injection solution, 10 x 1 mL ampoules 237760 930761000168106 Glycopyrrolate (Accord) 200 microgram/mL injection solution, 10 x 1 mL ampoules 930721000168101 Glycopyrrolate (Accord) 200 microgram/mL injection solution, ampoule 930711000168108 Glycopyrrolate (Accord) 930711000168108 Glycopyrrolate (Accord) 930751000168109 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, 10 x 1 mL ampoules 86229011000036100 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, ampoule 37771011000036104 glycopyrronium bromide (glycopyrrolate) +1027141000168103 Esomeprazole (Pharmacor) 20 mg enteric tablet, 15, blister pack 210855 1027131000168107 Esomeprazole (Pharmacor) 20 mg enteric tablet, 15 1027101000168100 Esomeprazole (Pharmacor) 20 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 681261000168103 esomeprazole 20 mg enteric tablet, 15 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +849211000168100 Vzole 50 mg film-coated tablet, 20, blister pack 238239 849201000168103 Vzole 50 mg film-coated tablet, 20 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46815011000036108 voriconazole 50 mg tablet, 20 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +20019011000036104 Aldactone 25 mg film-coated tablet, 100, blister pack 68953 13255011000036100 Aldactone 25 mg film-coated tablet, 100 6537011000036105 Aldactone 25 mg film-coated tablet 3099011000036104 Aldactone 3099011000036104 Aldactone 27647011000036100 spironolactone 25 mg tablet, 100 22984011000036100 spironolactone 25 mg tablet 21403011000036103 spironolactone +19505011000036103 Topamax 25 mg film-coated tablet, 60, bottle 55935 13030011000036100 Topamax 25 mg film-coated tablet, 60 6317011000036100 Topamax 25 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +780331000168104 Oxycodone MR (GenRx) 30 mg modified release tablet, 28, blister pack 214489 780321000168102 Oxycodone MR (GenRx) 30 mg modified release tablet, 28 780251000168100 Oxycodone MR (GenRx) 30 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +1100081000168106 Valganciclovir (Chemmart) 450 mg film-coated tablet, 120, bottle 184307 1100071000168108 Valganciclovir (Chemmart) 450 mg film-coated tablet, 120 1100041000168101 Valganciclovir (Chemmart) 450 mg film-coated tablet 1100031000168105 Valganciclovir (Chemmart) 1100031000168105 Valganciclovir (Chemmart) 1012701000168108 valganciclovir 450 mg tablet, 120 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +931615011000036103 Pravista 20 mg film-coated tablet, 90, bottle 163561 930776011000036101 Pravista 20 mg film-coated tablet, 90 930041011000036108 Pravista 20 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932407011000036108 pravastatin sodium 20 mg tablet, 90 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +17950011000036104 Oroxine 100 microgram uncoated tablet, 200, blister pack 125499 11803011000036106 Oroxine 100 microgram uncoated tablet, 200 4757011000036104 Oroxine 100 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 28022011000036102 levothyroxine sodium 100 microgram tablet, 200 23345011000036105 levothyroxine sodium 100 microgram tablet 21577011000036109 levothyroxine +60271011000036105 Cetirizine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 134696 56230011000036106 Cetirizine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 30 53847011000036105 Cetirizine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 53170011000036101 Cetirizine Hydrochloride (Terry White Chemists) 53170011000036101 Cetirizine Hydrochloride (Terry White Chemists) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +729191000168101 Aspirin EC (Trust) 100 mg enteric tablet, 28, blister pack 177615 729181000168104 Aspirin EC (Trust) 100 mg enteric tablet, 28 729171000168102 Aspirin EC (Trust) 100 mg enteric tablet 729161000168108 Aspirin EC (Trust) 729161000168108 Aspirin EC (Trust) 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +1095741000168101 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet, 30, blister pack 287705 1095731000168105 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet, 30 1095681000168101 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet 1095591000168102 Anti-Inflammatory Pain Relief (Blooms The Chemist) 1095591000168102 Anti-Inflammatory Pain Relief (Blooms The Chemist) 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +1031761000168106 Aripra 10 mg uncoated tablet, 30, blister pack 217207 1031751000168109 Aripra 10 mg uncoated tablet, 30 1031741000168107 Aripra 10 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +50363011000036109 Intrasite (7313) gel, 25 g, tube 49455011000036100 Intrasite (7313) gel, 25 g 48648011000036108 Intrasite (7313) gel 62701000168109 Intrasite (7313) 62701000168109 Intrasite (7313) 51418011000036102 dressing hydrogel amorphous gel, 25 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +864701000168103 Amitriptyline (GXP) 10 mg tablet, 50, blister pack 232128 864691000168103 Amitriptyline (GXP) 10 mg tablet, 50 864681000168101 Amitriptyline (GXP) 10 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +654271000168104 Zinc Compound Paste BP (extemporaneous) 25% paste, 100 g, screw cap jar 654261000168105 Zinc Compound Paste BP (extemporaneous) 25% paste, 100 g 654251000168108 Zinc Compound Paste BP (extemporaneous) 25% paste 654241000168106 Zinc Compound Paste BP (extemporaneous) 654241000168106 Zinc Compound Paste BP (extemporaneous) 81604011000036107 zinc oxide 25% paste, 100 g 81270011000036109 zinc oxide 25% paste 77446011000036105 zinc oxide +936711000168105 Calcium (Blooms The Chemist) 1.25 g (calcium 500 mg) film-coated tablet, 48, blister pack 936701000168107 Calcium (Blooms The Chemist) 1.25 g (calcium 500 mg) film-coated tablet, 48 936691000168107 Calcium (Blooms The Chemist) 1.25 g (calcium 500 mg) film-coated tablet 936681000168109 Calcium (Blooms The Chemist) 936681000168109 Calcium (Blooms The Chemist) 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +104991000036108 Aridon 10 mg film-coated tablet, 28, blister pack 175987 102061000036108 Aridon 10 mg film-coated tablet, 28 98521000036100 Aridon 10 mg film-coated tablet 97831000036102 Aridon 97831000036102 Aridon 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +20293011000036107 Frusemide (Terry White Chemists) 40 mg uncoated tablet, 100, bottle 75579 13502011000036109 Frusemide (Terry White Chemists) 40 mg uncoated tablet, 100 6784011000036107 Frusemide (Terry White Chemists) 40 mg uncoated tablet 3657011000036109 Frusemide (Terry White Chemists) 3657011000036109 Frusemide (Terry White Chemists) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +20293011000036107 Frusemide (Terry White Chemists) 40 mg uncoated tablet, 100, bottle 186530 13502011000036109 Frusemide (Terry White Chemists) 40 mg uncoated tablet, 100 6784011000036107 Frusemide (Terry White Chemists) 40 mg uncoated tablet 3657011000036109 Frusemide (Terry White Chemists) 3657011000036109 Frusemide (Terry White Chemists) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +791871000168101 Trexject 25 mg/0.5 mL injection solution, 4 x 0.5 mL syringes 233721 791861000168107 Trexject 25 mg/0.5 mL injection solution, 4 x 0.5 mL syringes 791811000168109 Trexject 25 mg/0.5 mL injection solution, 0.5 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791851000168105 methotrexate 25 mg/0.5 mL injection, 4 x 0.5 mL syringes 791801000168106 methotrexate 25 mg/0.5 mL injection, syringe 21342011000036105 methotrexate +44602011000036100 Replagal 3.5 mg/3.5 mL concentrated injection, 3.5 mL vial 82818 42055011000036104 Replagal 3.5 mg/3.5 mL concentrated injection, 3.5 mL vial 40339011000036105 Replagal 3.5 mg/3.5 mL concentrated injection, 3.5 mL vial 39648011000036107 Replagal 39648011000036107 Replagal 46822011000036105 agalsidase alfa 3.5 mg/3.5 mL injection, 3.5 mL vial 45327011000036107 agalsidase alfa 3.5 mg/3.5 mL injection, vial 44931011000036100 agalsidase alfa +60262011000036106 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 9 sachets 134660 56221011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 9 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63362011000036104 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 9 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +796141000168106 Aciclovir (GH) 800 mg uncoated tablet, 35, blister pack 183862 796131000168102 Aciclovir (GH) 800 mg uncoated tablet, 35 796121000168100 Aciclovir (GH) 800 mg uncoated tablet 933234351000036100 Aciclovir (GH) 933234351000036100 Aciclovir (GH) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +797671000168109 Actilyse (1 x 20 mg vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 43375 797661000168103 Actilyse (1 x 20 mg vial, 1 x 20 mL inert diluent vial), 1 pack 797631000168106 Actilyse (alteplase 20 mg) powder for injection, 20 mg vial 29761000168106 Actilyse 29761000168106 Actilyse 797651000168100 alteplase 20 mg injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 797621000168108 alteplase 20 mg injection, vial 44903011000036108 alteplase +797671000168109 Actilyse (1 x 20 mg vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 43375 797661000168103 Actilyse (1 x 20 mg vial, 1 x 20 mL inert diluent vial), 1 pack 797641000168102 Actilyse (inert substance) diluent, 20 mL vial 29761000168106 Actilyse 29761000168106 Actilyse 797651000168100 alteplase 20 mg injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 639231000168104 inert substance diluent, 20 mL vial 21220011000036103 inert substance +791161000168102 Trexject 15 mg/0.3 mL injection solution, 0.3 mL syringe 233717 791151000168104 Trexject 15 mg/0.3 mL injection solution, 0.3 mL syringe 791131000168105 Trexject 15 mg/0.3 mL injection solution, 0.3 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791141000168101 methotrexate 15 mg/0.3 mL injection, 0.3 mL syringe 791121000168107 methotrexate 15 mg/0.3 mL injection, syringe 21342011000036105 methotrexate +941691000168104 Metformin (AS) 500 mg film-coated tablet, 100, blister pack 147647 941681000168102 Metformin (AS) 500 mg film-coated tablet, 100 941671000168100 Metformin (AS) 500 mg film-coated tablet 941571000168104 Metformin (AS) 941571000168104 Metformin (AS) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +965451000168104 Olmetec Plus 20/25 mg film-coated tablet, 30, blister pack 115732 965441000168101 Olmetec Plus 20/25 mg film-coated tablet, 30 965401000168103 Olmetec Plus 20/25 mg film-coated tablet 965391000168100 Olmetec Plus 20/25 mg 965391000168100 Olmetec Plus 20/25 mg 846911000168100 olmesartan medoxomil 20 mg + hydrochlorothiazide 25 mg tablet, 30 846891000168102 olmesartan medoxomil 20 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +83192011000036105 Vaxigrip 2010 injection solution, 1 x 0.5 mL syringe 80198 83138011000036100 Vaxigrip 2010 injection solution, 1 x 0.5 mL syringe 83080011000036104 Vaxigrip 2010 injection solution, 0.5 mL syringe 21781000168101 Vaxigrip 2010 21781000168101 Vaxigrip 2010 83211011000036102 influenza trivalent adult vaccine 2010 injection, 1 x 0.5 mL syringe 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +69146011000036101 Strepsils lemon sugar free lozenge, 2, blister pack 153118 66946011000036108 Strepsils lemon sugar free lozenge, 2 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71521011000036105 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +20503011000036102 Plavix 75 mg film-coated tablet, 28, blister pack 78622 13703011000036101 Plavix 75 mg film-coated tablet, 28 6985011000036104 Plavix 75 mg film-coated tablet 3475011000036104 Plavix 3475011000036104 Plavix 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +866791000168103 Amitriptyline (Mylan) 25 mg film-coated tablet, 50, blister pack 232800 866781000168101 Amitriptyline (Mylan) 25 mg film-coated tablet, 50 866751000168108 Amitriptyline (Mylan) 25 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +74745011000036101 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 30, blister pack 118736 930802011000036105 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 30 930054011000036109 Pravastatin Sodium (Apo) 20 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +73258011000036100 Xyvion 2.5 mg uncoated tablet, 84, blister pack 132518 73058011000036109 Xyvion 2.5 mg uncoated tablet, 84 72968011000036100 Xyvion 2.5 mg uncoated tablet 72915011000036107 Xyvion 72915011000036107 Xyvion 46484011000036102 tibolone 2.5 mg tablet, 84 45180011000036108 tibolone 2.5 mg tablet 44915011000036106 tibolone +74732011000036105 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 30, blister pack 118737 930805011000036102 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 30 930055011000036108 Pravastatin Sodium (Apo) 40 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +130711000036103 Adesan 8 mg uncoated tablet, 30, blister pack 171022 127701000036102 Adesan 8 mg uncoated tablet, 30 124591000036107 Adesan 8 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +926764011000036108 Lercadip 10 mg film-coated tablet, 28, blister pack 152709 926161011000036100 Lercadip 10 mg film-coated tablet, 28 925649011000036109 Lercadip 10 mg film-coated tablet 925544011000036104 Lercadip 925544011000036104 Lercadip 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +60468011000036108 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 5 sachets 150167 56426011000036107 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 5 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63358011000036107 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 5 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +778961000168102 Fentanyl (Apo) 75 microgram/hour patch, 3, sachet 152570 778951000168104 Fentanyl (Apo) 75 microgram/hour patch, 3 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235631000036104 fentanyl 75 microgram/hour patch, 3 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +44589011000036100 Vfend 200 mg film-coated tablet, 56, blister pack 82505 42042011000036105 Vfend 200 mg film-coated tablet, 56 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +73271011000036107 Jurnista 8 mg modified release tablet, 100, blister pack 141508 73069011000036106 Jurnista 8 mg modified release tablet, 100 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73467011000036109 hydromorphone hydrochloride 8 mg modified release tablet, 100 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +130851000036108 Metoprolol Tartrate (Apo) 50 mg film-coated tablet, 100, blister pack 192766 128101000036102 Metoprolol Tartrate (Apo) 50 mg film-coated tablet, 100 124741000036106 Metoprolol Tartrate (Apo) 50 mg film-coated tablet 123701000036106 Metoprolol Tartrate (Apo) 123701000036106 Metoprolol Tartrate (Apo) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +130871000036103 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet, 30, blister pack 193113 128121000036107 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet, 30 124581000036105 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet 43931000168101 Candesartan Cilexetil HCTZ 32/25 (Apo) 43931000168101 Candesartan Cilexetil HCTZ 32/25 (Apo) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +130871000036103 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet, 30, blister pack 210567 128121000036107 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet, 30 124581000036105 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet 43931000168101 Candesartan Cilexetil HCTZ 32/25 (Apo) 43931000168101 Candesartan Cilexetil HCTZ 32/25 (Apo) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +849531000168108 Sildenafil (Amneal) 25 mg film-coated tablet, 4, blister pack 202925 849521000168105 Sildenafil (Amneal) 25 mg film-coated tablet, 4 849511000168103 Sildenafil (Amneal) 25 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +1097271000168109 Voltaren Emulgel No Mess Applicator (1 x 120 g gel, 1 x 20 g gel), 1 pack, tubes 282516 1097261000168103 Voltaren Emulgel No Mess Applicator (1 x 120 g gel, 1 x 20 g gel), 1 pack 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1097251000168100 diclofenac diethylamine 11.6 mg / 1 g gel [120 g] (&) diclofenac diethylamine 11.6 mg / 1 g gel [20 g], 1 pack 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +130691000036100 Adesan 16 mg uncoated tablet, 30, bottle 171020 127681000036104 Adesan 16 mg uncoated tablet, 30 124691000036108 Adesan 16 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +788991000168102 Diabex XR 750 mg modified release tablet, 60, blister pack 142230 788981000168100 Diabex XR 750 mg modified release tablet, 60 788901000168108 Diabex XR 750 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 788971000168103 metformin hydrochloride 750 mg modified release tablet, 60 788891000168109 metformin hydrochloride 750 mg modified release tablet 21614011000036102 metformin +59701011000036105 Junior Cough and Cold (Guardian) oral liquid solution, 100 mL, bottle 101405 55661011000036108 Junior Cough and Cold (Guardian) oral liquid solution, 100 mL 53631011000036105 Junior Cough and Cold (Guardian) oral liquid solution, 10 mL 53486011000036106 Junior Cough and Cold (Guardian) 53486011000036106 Junior Cough and Cold (Guardian) 63551011000036101 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62013011000036102 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61761011000036102 chlorphenamine + dextromethorphan + pseudoephedrine +68662011000036105 Nicotinell Fruit 4 mg chewing gum, 192, blister pack 126017 66692011000036102 Nicotinell Fruit 4 mg chewing gum, 192 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71518011000036107 nicotine 4 mg gum, 192 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +66411000036105 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 50 mL vials 63960 64301000036107 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 50 mL vials 61331000036102 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 50 mL vial 8561000168103 Iomeron-350 8561000168103 Iomeron-350 64311000036109 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 10 x 50 mL vials 61341000036107 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 50 mL vial 931793011000036105 iomeprol +1052541000168105 Palexia SR 150 mg modified release tablet, 20, blister pack 165347 1052531000168101 Palexia SR 150 mg modified release tablet, 20 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052521000168104 tapentadol 150 mg modified release tablet, 20 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +86854011000036109 Iodine Solution Aqueous (David Craig) solution, 100 mL, bottle 86734011000036108 Iodine Solution Aqueous (David Craig) solution, 100 mL 86618011000036100 Iodine Solution Aqueous (David Craig) solution 86601011000036107 Iodine Solution Aqueous (David Craig) 86601011000036107 Iodine Solution Aqueous (David Craig) 87004011000036102 iodine 5% (50 mg/mL) + potassium iodide 10% (100 mg/mL) solution, 100 mL 86917011000036102 iodine 5% (50 mg/mL) + potassium iodide 10% (100 mg/mL) solution 61782011000036105 iodine +1010161000168109 Sildenafil (Apotex) 100 mg film-coated tablet, 8, blister pack 164809 1010151000168107 Sildenafil (Apotex) 100 mg film-coated tablet, 8 1010101000168108 Sildenafil (Apotex) 100 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 760421000168109 sildenafil 100 mg tablet, 8 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +17967011000036107 Duatrol SR 665 mg modified release tablet, 96, blister pack 116621 11530011000036106 Duatrol SR 665 mg modified release tablet, 96 4758011000036103 Duatrol SR 665 mg modified release tablet 43271000168107 Duatrol SR 43271000168107 Duatrol SR 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +20610011000036101 Amiodarone Hydrochloride (GenRx) 200 mg uncoated tablet, 30, blister pack 80768 13792011000036105 Amiodarone Hydrochloride (GenRx) 200 mg uncoated tablet, 30 7078011000036108 Amiodarone Hydrochloride (GenRx) 200 mg uncoated tablet 3412011000036101 Amiodarone Hydrochloride (GenRx) 3412011000036101 Amiodarone Hydrochloride (GenRx) 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +688971000168109 Hypafix (71443-1) 5 cm x 10 m tape, 1 roll, carton 688961000168103 Hypafix (71443-1) 5 cm x 10 m tape, 1 roll 688941000168102 Hypafix (71443-1) 5 cm x 10 m tape 55431000168109 Hypafix (71443-1) 55431000168109 Hypafix (71443-1) 688951000168100 tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll 688931000168106 tape non woven retention polyacrylate 5 cm x 10 m tape 50701011000036106 tape non woven retention polyacrylate +864601000168109 Amitriptyline (AN) 50 mg tablet, 100, blister pack 232120 864591000168102 Amitriptyline (AN) 50 mg tablet, 100 864541000168105 Amitriptyline (AN) 50 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +958301000168106 Dormizol 5 mg film-coated tablet, 14, blister pack 117952 958291000168105 Dormizol 5 mg film-coated tablet, 14 958241000168102 Dormizol 5 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 926201000168102 zolpidem tartrate 5 mg tablet, 14 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +812641000168101 Citalopram (Amneal) 10 mg film-coated tablet, 56, blister pack 158879 812631000168105 Citalopram (Amneal) 10 mg film-coated tablet, 56 812561000168103 Citalopram (Amneal) 10 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +137061000036102 Durafiber (66800560) 10 cm x 10 cm dressing, 10, carton 136951000036104 Durafiber (66800560) 10 cm x 10 cm dressing, 10 136881000036103 Durafiber (66800560) 10 cm x 10 cm dressing 27761000168102 Durafiber (66800560) 27761000168102 Durafiber (66800560) 136961000036101 dressing gelling fibre 10 cm x 10 cm dressing, 10 136891000036101 dressing gelling fibre 10 cm x 10 cm dressing 137081000036107 dressing gelling fibre +17766011000036101 Amira 300 mg film-coated tablet, 60, blister pack 126318 11827011000036108 Amira 300 mg film-coated tablet, 60 5372011000036105 Amira 300 mg film-coated tablet 3762011000036108 Amira 3762011000036108 Amira 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +931459011000036109 Ranitidine (Winthrop) 150 mg film-coated tablet, 60, blister pack 148528 930638011000036108 Ranitidine (Winthrop) 150 mg film-coated tablet, 60 929983011000036109 Ranitidine (Winthrop) 150 mg film-coated tablet 929882011000036108 Ranitidine (Winthrop) 929882011000036108 Ranitidine (Winthrop) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +79020011000036106 Xarelto 10 mg film-coated tablet, 100, blister pack 147400 78831011000036101 Xarelto 10 mg film-coated tablet, 100 78644011000036107 Xarelto 10 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 79226011000036101 rivaroxaban 10 mg tablet, 100 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +804091000168106 Cardiprin 100 mg tablet, 100, blister pack 15357 804081000168108 Cardiprin 100 mg tablet, 100 803961000168101 Cardiprin 100 mg tablet 4114011000036109 Cardiprin 4114011000036109 Cardiprin 804071000168105 aspirin 100 mg tablet, 100 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +86164011000036105 Panvax H1N1 Junior Vaccine 7.5 microgram/0.25 mL injection suspension, 10 x 0.25 mL syringes 166312 85772011000036104 Panvax H1N1 Junior Vaccine 7.5 microgram/0.25 mL injection suspension, 10 x 0.25 mL syringes 85385011000036104 Panvax H1N1 Junior Vaccine 7.5 microgram/0.25 mL injection suspension, 0.25 mL syringe 13601000168109 Panvax H1N1 Junior Vaccine 13601000168109 Panvax H1N1 Junior Vaccine 86458011000036108 influenza child vaccine pandemic 2009 injection, 10 x 0.25 mL syringes 86231011000036102 influenza child vaccine pandemic 2009, 0.25 mL syringe 81214011000036106 influenza vaccine pandemic 2009 +21171011000036107 Kivexa film-coated tablet, 30, bottle 99097 14312011000036108 Kivexa film-coated tablet, 30 7598011000036104 Kivexa film-coated tablet 3852011000036100 Kivexa 3852011000036100 Kivexa 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +1091611000168105 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 30, bottle 283614 819721000168109 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 30 819691000168100 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +866711000168107 Amitriptyline (RS) 50 mg tablet, 100, blister pack 232144 866701000168109 Amitriptyline (RS) 50 mg tablet, 100 866651000168104 Amitriptyline (RS) 50 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +787461000168101 Arizole 10 mg uncoated tablet, 30, bottle 198197 787381000168102 Arizole 10 mg uncoated tablet, 30 787341000168107 Arizole 10 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +921866011000036101 Vancomycin (Alphapharm) 1 g powder for injection, 1 vial 153439 921425011000036107 Vancomycin (Alphapharm) 1 g powder for injection, 1 vial 921002011000036103 Vancomycin (Alphapharm) 1 g powder for injection, vial 920929011000036104 Vancomycin (Alphapharm) 920929011000036104 Vancomycin (Alphapharm) 27498011000036108 vancomycin 1 g injection, 1 vial 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +795481000168102 Nausrelief 5 mg uncoated tablet, 10, blister pack 186710 795471000168100 Nausrelief 5 mg uncoated tablet, 10 795431000168103 Nausrelief 5 mg uncoated tablet 795421000168101 Nausrelief 795421000168101 Nausrelief 924183011000036108 prochlorperazine maleate 5 mg tablet, 10 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +52749011000036108 Fexal 120 mg film-coated tablet, 30, blister pack 140284 52561011000036101 Fexal 120 mg film-coated tablet, 30 52419011000036109 Fexal 120 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +763911000168102 Esbriet 267 mg hard capsule, 270, bottle 235577 763901000168100 Esbriet 267 mg hard capsule, 270 763881000168102 Esbriet 267 mg hard capsule 763841000168107 Esbriet 763841000168107 Esbriet 763891000168104 pirfenidone 267 mg capsule, 270 763871000168100 pirfenidone 267 mg capsule 763861000168106 pirfenidone +925128011000036104 Antiviral Cold Sore (Nyal) 5% cream, 5 g, tube 147218 924700011000036107 Antiviral Cold Sore (Nyal) 5% cream, 5 g 924424011000036104 Antiviral Cold Sore (Nyal) 5% cream 924411011000036109 Antiviral Cold Sore (Nyal) 924411011000036109 Antiviral Cold Sore (Nyal) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +1026821000168101 Pregabalin (Amneal) 150 mg hard capsule, 56, bottle 235880 1026691000168103 Pregabalin (Amneal) 150 mg hard capsule, 56 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +941121000168107 Evelexa XR 150 mg modified release capsule, 28, blister pack 146744 941111000168100 Evelexa XR 150 mg modified release capsule, 28 941101000168103 Evelexa XR 150 mg modified release capsule 941031000168109 Evelexa XR 941031000168109 Evelexa XR 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +1095901000168100 Ibuprofen (Genpar) 200 mg film-coated tablet, 72, blister pack 285310 1095891000168104 Ibuprofen (Genpar) 200 mg film-coated tablet, 72 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63320011000036106 ibuprofen 200 mg tablet, 72 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +86002011000036107 Lisinopril (DRLA) 20 mg uncoated tablet, 56, blister pack 152722 85668011000036102 Lisinopril (DRLA) 20 mg uncoated tablet, 56 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 78128011000036103 lisinopril 20 mg tablet, 56 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +182091000036102 Bisacodyl (Fresenius Kabi) 5 mg enteric tablet, 3, blister pack 216361000168103 Bisacodyl (Fresenius Kabi) 5 mg enteric tablet, 3 85390011000036109 Bisacodyl (Fresenius Kabi) 5 mg enteric tablet 85273011000036102 Bisacodyl (Fresenius Kabi) 85273011000036102 Bisacodyl (Fresenius Kabi) 216311000168101 bisacodyl 5 mg enteric tablet, 3 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +1046191000168105 Dexmine 5 mg uncoated tablet, 100, bottle 291473 1046181000168107 Dexmine 5 mg uncoated tablet, 100 1046171000168109 Dexmine 5 mg uncoated tablet 1046161000168103 Dexmine 1046161000168103 Dexmine 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +774711000168106 Nexazole 20 mg enteric tablet, 30, blister pack 205846 774701000168108 Nexazole 20 mg enteric tablet, 30 774571000168108 Nexazole 20 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +61286011000036103 Sleepwell (Soul Pattinson) 25 mg tablet, 12, blister pack 78552 57222011000036106 Sleepwell (Soul Pattinson) 25 mg tablet, 12 54244011000036109 Sleepwell (Soul Pattinson) 25 mg tablet 53300011000036101 Sleepwell (Soul Pattinson) 53300011000036101 Sleepwell (Soul Pattinson) 63826011000036106 doxylamine succinate 25 mg tablet, 12 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +923860011000036105 Haemorol 250 mg/5 mL injection solution, 5 x 5 mL vials 161711 923406011000036104 Haemorol 250 mg/5 mL injection solution, 5 x 5 mL vials 923070011000036102 Haemorol 250 mg/5 mL injection solution, 5 mL vial 922913011000036100 Haemorol 922913011000036100 Haemorol 924189011000036106 phenol 250 mg/5 mL injection, 5 x 5 mL vials 923990011000036103 phenol 250 mg/5 mL injection, vial 77463011000036105 phenol +925205011000036103 Pravaccord 40 mg uncoated tablet, 30, blister pack 156362 924742011000036102 Pravaccord 40 mg uncoated tablet, 30 924449011000036100 Pravaccord 40 mg uncoated tablet 924396011000036106 Pravaccord 924396011000036106 Pravaccord 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +1031071000168102 Aten 50 mg film-coated tablet, 50, blister pack 197716 1031061000168108 Aten 50 mg film-coated tablet, 50 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031051000168106 atenolol 50 mg tablet, 50 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +18734011000036106 Caduet 5/10 film-coated tablet, 30, blister pack 100695 11156011000036100 Caduet 5/10 film-coated tablet, 30 5010011000036104 Caduet 5/10 film-coated tablet 50121000168109 Caduet 5/10 50121000168109 Caduet 5/10 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +926867011000036100 Water for Injections (Phebra) injection solution, 50 mL vial 48353 926263011000036101 Water for Injections (Phebra) injection solution, 50 mL vial 925711011000036108 Water for Injections (Phebra) injection solution, 50 mL vial 75970011000036108 Water for Injections (Phebra) 75970011000036108 Water for Injections (Phebra) 927367011000036104 water for injections injection, 50 mL vial 927014011000036107 water for injections injection, 50 mL vial 77431011000036101 water for injections +60969011000036102 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 48, blister pack 62807 56912011000036101 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 48 54118011000036108 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet 53181011000036100 Paracetamol (Pharmacist Formula) 53181011000036100 Paracetamol (Pharmacist Formula) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1065471000168100 Codoxamol uncoated tablet, 100, bottle 161869 1065461000168106 Codoxamol uncoated tablet, 100 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 1065451000168109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 100 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +881281000168103 Actonate Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Aventis Pharma) tablets), 14, blister pack 163756 881271000168101 Actonate Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Aventis Pharma) tablets), 14 881231000168104 Calcium Carbonate (Aventis Pharma) 1.25 g (calcium 500 mg) film-coated tablet 881151000168103 Actonate Combi 881221000168102 Calcium Carbonate (Aventis Pharma) 881261000168107 risedronate sodium 35 mg tablet [2] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [12], 14 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +881281000168103 Actonate Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Aventis Pharma) tablets), 14, blister pack 163756 881271000168101 Actonate Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Aventis Pharma) tablets), 14 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 881151000168103 Actonate Combi 700024831000036105 Actonel Once-a-Week 881261000168107 risedronate sodium 35 mg tablet [2] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [12], 14 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1043861000168100 Pryzex 7.5 mg film-coated tablet, 14, blister pack 178987 1043851000168102 Pryzex 7.5 mg film-coated tablet, 14 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043841000168104 olanzapine 7.5 mg tablet, 14 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +798291000168107 Abipra 20 mg uncoated tablet, 30, blister pack 173811 798281000168109 Abipra 20 mg uncoated tablet, 30 798271000168106 Abipra 20 mg uncoated tablet 798151000168109 Abipra 798151000168109 Abipra 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +863961000168102 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags 144671 863951000168104 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags 863841000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863941000168101 glucose monohydrate 5% (5 g/100 mL) injection, 55 x 100 mL bags 863831000168101 glucose monohydrate 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +61453011000036103 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 48, blister pack 90120 57378011000036103 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 48 54288011000036108 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +20687011000036102 Micardis Plus 80/12.5 multilayer tablet, 28, blister pack 82418 13866011000036108 Micardis Plus 80/12.5 multilayer tablet, 28 7153011000036105 Micardis Plus 80/12.5 multilayer tablet 3411000168107 Micardis Plus 80/12.5 3411000168107 Micardis Plus 80/12.5 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +671751000168102 Amlodipine/Atorvastatin 5/10 (Chemmart) film-coated tablet, 30, blister pack 214361 671741000168104 Amlodipine/Atorvastatin 5/10 (Chemmart) film-coated tablet, 30 671731000168108 Amlodipine/Atorvastatin 5/10 (Chemmart) film-coated tablet 671721000168105 Amlodipine/Atorvastatin 5/10 (Chemmart) 671721000168105 Amlodipine/Atorvastatin 5/10 (Chemmart) 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +898361000168107 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet, 500, bottle 195275 898351000168105 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet, 500 134431000036107 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet 63361000168102 Candesartan/HCT 32 mg/25 mg (Sandoz) 63361000168102 Candesartan/HCT 32 mg/25 mg (Sandoz) 898341000168108 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 500 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +60652011000036103 Murine Clear Eyes 0.012% eye drops solution, 15 mL, bottle 29589 56610011000036104 Murine Clear Eyes 0.012% eye drops solution, 15 mL 54005011000036108 Murine Clear Eyes 0.012% eye drops solution 53592011000036103 Murine Clear Eyes 53592011000036103 Murine Clear Eyes 63462011000036106 naphazoline hydrochloride 0.012% eye drops, 15 mL 61981011000036107 naphazoline hydrochloride 0.012% eye drops 21921011000036106 naphazoline +896211000168100 Imatinib (GH) 100 mg hard capsule, 24, blister pack 281535 896201000168103 Imatinib (GH) 100 mg hard capsule, 24 896191000168101 Imatinib (GH) 100 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 828811000168108 imatinib 100 mg capsule, 24 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +705591000168102 Noxafil 100 mg modified release tablet, 24, blister pack 216283 705571000168103 Noxafil 100 mg modified release tablet, 24 705541000168105 Noxafil 100 mg modified release tablet 39709011000036103 Noxafil 39709011000036103 Noxafil 705551000168107 posaconazole 100 mg modified release tablet, 24 705531000168101 posaconazole 100 mg modified release tablet 44898011000036105 posaconazole +45261000036107 Simvastatin (DRLA) 80 mg film-coated tablet, 30, bottle 164089 43791000036106 Simvastatin (DRLA) 80 mg film-coated tablet, 30 41181000036106 Simvastatin (DRLA) 80 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +43805011000036104 Zorac 0.05% cream, 15 g, tube 101328 41119011000036100 Zorac 0.05% cream, 15 g 39934011000036102 Zorac 0.05% cream 39675011000036100 Zorac 39675011000036100 Zorac 46101011000036103 tazarotene 0.05% cream, 15 g 44986011000036101 tazarotene 0.05% cream 44886011000036105 tazarotene +962641000168109 Zinnat 250 mg/5 mL powder for oral liquid, 70 mL, bottle 81301 962631000168100 Zinnat 250 mg/5 mL powder for oral liquid, 70 mL 962581000168103 Zinnat 250 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 962621000168103 cefuroxime 250 mg/5 mL powder for oral liquid, 70 mL 962571000168101 cefuroxime 250 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +43668011000036100 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 5 x 100 mL bags 123041 41276011000036102 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 5 x 100 mL bags 39914011000036107 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 100 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46211011000036103 ciprofloxacin 200 mg/100 mL injection, 5 x 100 mL bags 45032011000036109 ciprofloxacin 200 mg/100 mL injection, bag 21245011000036105 ciprofloxacin +1033811000168104 Atomoxetine (CH) 40 mg hard capsule, 14, blister pack 234826 1033801000168102 Atomoxetine (CH) 40 mg hard capsule, 14 1033771000168104 Atomoxetine (CH) 40 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830671000168100 atomoxetine 40 mg capsule, 14 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +861811000168105 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60, bottle 79535 861801000168107 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60 861751000168101 Caltrate Plus with Vitamin D 200 IU film-coated tablet 18071000168104 Caltrate Plus with Vitamin D 200 IU 18071000168104 Caltrate Plus with Vitamin D 200 IU 861791000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 60 861741000168103 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet 861731000168107 calcium + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide +1023131000168100 Ibuprofen (A) 200 mg film-coated tablet, 20, blister pack 161314 1023121000168103 Ibuprofen (A) 200 mg film-coated tablet, 20 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1039571000168106 Atorvastatin (Ascent) 40 mg film-coated tablet, 40, blister pack 178527 1039561000168100 Atorvastatin (Ascent) 40 mg film-coated tablet, 40 1039441000168100 Atorvastatin (Ascent) 40 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841721000168101 atorvastatin 40 mg tablet, 40 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +77326011000036100 Water for Injections (AstraZeneca) injection solution, 10 x 5 mL ampoules 48350 76742011000036104 Water for Injections (AstraZeneca) injection solution, 10 x 5 mL ampoules 76157011000036107 Water for Injections (AstraZeneca) injection solution, 5 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78323011000036100 water for injections injection, 10 x 5 mL ampoules 77607011000036102 water for injections injection, 5 mL ampoule 77431011000036101 water for injections +50213011000036102 XP Analog powder for oral liquid, 400 g, can 49495011000036108 XP Analog powder for oral liquid, 400 g 48555011000036107 XP Analog powder for oral liquid 10861000168101 XP Analog 10861000168101 XP Analog 51451011000036103 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 400 g 50960011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1047791000168109 Paracetamol/Codeine 500/30 (Apo) tablet, 20, blister pack 220980 1047781000168106 Paracetamol/Codeine 500/30 (Apo) tablet, 20 1047661000168105 Paracetamol/Codeine 500/30 (Apo) tablet 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +925701000168103 Calcium Chloride (Phebra) 740 mg/5 mL injection solution, 50 x 5 mL ampoules 16361 925691000168103 Calcium Chloride (Phebra) 740 mg/5 mL injection solution, 50 x 5 mL ampoules 925671000168104 Calcium Chloride (Phebra) 740 mg/5 mL injection solution, 5 mL ampoule 65081011000036103 Calcium Chloride (Phebra) 65081011000036103 Calcium Chloride (Phebra) 925681000168101 calcium chloride dihydrate 740 mg/5 mL injection, 50 x 5 mL ampoules 925661000168105 calcium chloride dihydrate 740 mg/5 mL injection, ampoule 69845011000036104 calcium chloride dihydrate +798611000168100 Abyraz 10 mg uncoated tablet, 30, blister pack 159503 798601000168103 Abyraz 10 mg uncoated tablet, 30 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +922821000168106 Ciprofloxacin (AN) 250 mg film-coated tablet, 28, blister pack 175441 922811000168104 Ciprofloxacin (AN) 250 mg film-coated tablet, 28 922771000168104 Ciprofloxacin (AN) 250 mg film-coated tablet 661241000168100 Ciprofloxacin (AN) 661241000168100 Ciprofloxacin (AN) 922801000168102 ciprofloxacin 250 mg tablet, 28 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +61557011000036102 Diclofenac Sodium Anti-Inflammatory Pain Relief (Pharmacist) 25 mg enteric tablet, 30, blister pack 94120 57479011000036103 Diclofenac Sodium Anti-Inflammatory Pain Relief (Pharmacist) 25 mg enteric tablet, 30 54318011000036103 Diclofenac Sodium Anti-Inflammatory Pain Relief (Pharmacist) 25 mg enteric tablet 60891000168107 Diclofenac Sodium Anti-Inflammatory Pain Relief (Pharmacist) 60891000168107 Diclofenac Sodium Anti-Inflammatory Pain Relief (Pharmacist) 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +847841000168108 Alfentanil (GH) 1 mg/2 mL injection solution, 10 x 2 mL ampoules 200007 847831000168104 Alfentanil (GH) 1 mg/2 mL injection solution, 10 x 2 mL ampoules 699831000168109 Alfentanil (GH) 1 mg/2 mL injection solution, 2 mL ampoule 699791000168103 Alfentanil (GH) 699791000168103 Alfentanil (GH) 847821000168102 alfentanil 1 mg/2 mL injection, 10 x 2 mL ampoules 34896011000036107 alfentanil 1 mg/2 mL injection, ampoule 34836011000036102 alfentanil +813281000168102 Nuromol film-coated tablet, 30, blister pack 225322 813271000168100 Nuromol film-coated tablet, 30 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +929661011000036109 Fluvax Junior 2011 injection suspension, 1 x 0.25 mL syringe 149127 929497011000036101 Fluvax Junior 2011 injection suspension, 1 x 0.25 mL syringe 929397011000036108 Fluvax Junior 2011 injection suspension, 0.25 mL syringe 55831000168106 Fluvax Junior 2011 55831000168106 Fluvax Junior 2011 929773011000036109 influenza trivalent child vaccine 2011-2012 injection, 1 x 0.25 mL syringe 929728011000036100 influenza trivalent child vaccine 2011-2012 injection, 0.25 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +17938011000036103 Testosterone (Organon) 100 mg implant, 1, tube 14523 12042011000036108 Testosterone (Organon) 100 mg implant, 1 4722011000036100 Testosterone (Organon) 100 mg implant 3364011000036103 Testosterone (Organon) 3364011000036103 Testosterone (Organon) 26874011000036104 testosterone 100 mg implant, 1 22253011000036108 testosterone 100 mg implant 21290011000036109 testosterone +18664011000036109 Glimepiride (Sandoz) 4 mg uncoated tablet, 30, blister pack 121790 11693011000036104 Glimepiride (Sandoz) 4 mg uncoated tablet, 30 5506011000036101 Glimepiride (Sandoz) 4 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +923783011000036102 Cafnea 25 mg/5 mL oral liquid solution, 10 x 5 mL vials 153874 923343011000036105 Cafnea 25 mg/5 mL oral liquid solution, 10 x 5 mL vials 923020011000036103 Cafnea 25 mg/5 mL oral liquid solution, 5 mL 922910011000036108 Cafnea 922910011000036108 Cafnea 924144011000036102 caffeine citrate 25 mg/5 mL oral liquid, 10 x 5 mL vials 923963011000036109 caffeine citrate 25 mg/5 mL oral liquid 69867011000036102 caffeine +61413011000036108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 50 mL, bottle 82401 57338011000036101 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 50 mL 54279011000036106 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 63817011000036100 paracetamol 120 mg/5 mL oral liquid, 50 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +68799011000036106 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 0.2% irrigation solution, 30 mL ampoule 11324 66603011000036106 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 0.2% irrigation solution, 30 mL ampoule 65436011000036109 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 0.2% irrigation solution, 30 mL ampoule 37211000168107 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 37211000168107 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 71325011000036105 chlorhexidine gluconate 0.2% solution, 30 mL ampoule 69951011000036107 chlorhexidine gluconate 0.2% solution, ampoule 21404011000036101 chlorhexidine +1101361000168107 Docetaxel (Sanofi) 80 mg/4 mL concentrated injection, 4 mL vial 161376 1101351000168105 Docetaxel (Sanofi) 80 mg/4 mL concentrated injection, 4 mL vial 1101341000168108 Docetaxel (Sanofi) 80 mg/4 mL concentrated injection, 4 mL vial 1030221000168102 Docetaxel (Sanofi) 1030221000168102 Docetaxel (Sanofi) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +80967011000036106 Resdone 2 mg film-coated tablet, 20, blister pack 147673 80540011000036107 Resdone 2 mg film-coated tablet, 20 80184011000036104 Resdone 2 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81623011000036103 risperidone 2 mg tablet, 20 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +931091000168107 Glycopyrrolate (Accord) 600 microgram/3 mL injection solution, 10 x 3 mL ampoules 237403 931081000168109 Glycopyrrolate (Accord) 600 microgram/3 mL injection solution, 10 x 3 mL ampoules 931031000168108 Glycopyrrolate (Accord) 600 microgram/3 mL injection solution, 3 mL ampoule 930711000168108 Glycopyrrolate (Accord) 930711000168108 Glycopyrrolate (Accord) 931071000168106 glycopyrronium bromide (glycopyrrolate) 600 microgram/3 mL injection, 10 x 3 mL ampoules 931021000168105 glycopyrronium bromide (glycopyrrolate) 600 microgram/3 mL injection, ampoule 37771011000036104 glycopyrronium bromide (glycopyrrolate) +37538011000036109 Robinul 200 microgram/mL injection solution, 25 x 1 mL vials 13882 36806011000036100 Robinul 200 microgram/mL injection solution, 25 x 1 mL vials 36025011000036102 Robinul 200 microgram/mL injection solution, vial 35873011000036102 Robinul 35873011000036102 Robinul 38703011000036103 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, 25 x 1 mL vials 37938011000036101 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, vial 37771011000036104 glycopyrronium bromide (glycopyrrolate) +739431000168107 Bepanthen 5% ointment, 30 g, tube 97936 739421000168109 Bepanthen 5% ointment, 30 g 739401000168100 Bepanthen 5% ointment 739331000168101 Bepanthen 739331000168101 Bepanthen 739411000168102 dexpanthenol 5% ointment, 30 g 739391000168102 dexpanthenol 5% ointment 739381000168100 dexpanthenol +939681000168100 Frusemide (Sanofi) 10 mg/mL oral liquid solution, 30 mL, bottle 144453 939671000168103 Frusemide (Sanofi) 10 mg/mL oral liquid solution, 30 mL 939661000168109 Frusemide (Sanofi) 10 mg/mL oral liquid solution 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 26763011000036105 furosemide (frusemide) 10 mg/mL oral liquid, 30 mL 22150011000036103 furosemide (frusemide) 10 mg/mL oral liquid 21329011000036103 furosemide (frusemide) +1009281000168102 Oxaliplatin (Apo) 50 mg/10 mL concentrated injection, 10 mL vial 245532 1009271000168100 Oxaliplatin (Apo) 50 mg/10 mL concentrated injection, 10 mL vial 1009261000168106 Oxaliplatin (Apo) 50 mg/10 mL concentrated injection, 10 mL vial 1009251000168109 Oxaliplatin (Apo) 1009251000168109 Oxaliplatin (Apo) 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +764051000168104 Citalopram (AN) 10 mg film-coated tablet, 30, bottle 171335 764041000168101 Citalopram (AN) 10 mg film-coated tablet, 30 764011000168100 Citalopram (AN) 10 mg film-coated tablet 662261000168106 Citalopram (AN) 662261000168106 Citalopram (AN) 933201971000036100 citalopram 10 mg tablet, 30 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +914211000168104 Cisatracurium (AFT) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 191833 914201000168102 Cisatracurium (AFT) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 914161000168107 Cisatracurium (AFT) 20 mg/10 mL injection solution, 10 mL ampoule 682941000168104 Cisatracurium (AFT) 682941000168104 Cisatracurium (AFT) 909161000168108 cisatracurium 20 mg/10 mL injection, 5 x 10 mL ampoules 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +856101000168102 Algerika 50 mg hard capsule, 56, blister pack 229557 856091000168107 Algerika 50 mg hard capsule, 56 856011000168103 Algerika 50 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +18635011000036101 Isoniazid (Fawns & McAllan) 100 mg uncoated tablet, 100, bottle 13455 11989011000036104 Isoniazid (Fawns & McAllan) 100 mg uncoated tablet, 100 4613011000036108 Isoniazid (Fawns & McAllan) 100 mg uncoated tablet 3746011000036101 Isoniazid (Fawns & McAllan) 3746011000036101 Isoniazid (Fawns & McAllan) 26832011000036105 isoniazid 100 mg tablet, 100 22214011000036101 isoniazid 100 mg tablet 21726011000036106 isoniazid +926740011000036108 Nicotine (Guardian) 7 mg/24 hours patch, 7, sachet 114849 926095011000036106 Nicotine (Guardian) 7 mg/24 hours patch, 7 925636011000036104 Nicotine (Guardian) 7 mg/24 hours patch 924357011000036102 Nicotine (Guardian) 924357011000036102 Nicotine (Guardian) 27924011000036107 nicotine 7 mg/24 hours patch, 7 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +1063871000168102 Pain Relief Plus (Chemplus) uncoated tablet, 40, blister pack 188740 1063861000168108 Pain Relief Plus (Chemplus) uncoated tablet, 40 1063721000168109 Pain Relief Plus (Chemplus) uncoated tablet 1063711000168102 Pain Relief Plus (Chemplus) 1063711000168102 Pain Relief Plus (Chemplus) 28971000036104 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 40 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +59771011000036101 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 200 mL, bottle 10548 55707011000036106 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 200 mL 53715011000036106 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 15 mL 53306011000036103 Duro-Tuss Cough Liquid Expectorant 53306011000036103 Duro-Tuss Cough Liquid Expectorant 63103011000036104 pholcodine 15 mg/15 mL + bromhexine hydrochloride 12 mg/15 mL oral liquid, 200 mL 61857011000036103 pholcodine 15 mg/15 mL + bromhexine hydrochloride 12 mg/15 mL oral liquid 61746011000036101 pholcodine + bromhexine +752541000168108 Oxycodone (WT) 10 mg hard capsule, 20, blister pack 227842 752501000168106 Oxycodone (WT) 10 mg hard capsule, 20 752491000168104 Oxycodone (WT) 10 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +18422011000036109 Hytrin 2 mg uncoated tablet, 28, blister pack 121317 11664011000036104 Hytrin 2 mg uncoated tablet, 28 4902011000036100 Hytrin 2 mg uncoated tablet 3113011000036109 Hytrin 3113011000036109 Hytrin 26732011000036107 terazosin 2 mg tablet, 28 22127011000036101 terazosin 2 mg tablet 21396011000036100 terazosin +50236011000036102 Pro-Phree powder for oral liquid, 400 g, can 49274011000036100 Pro-Phree powder for oral liquid, 400 g 48686011000036101 Pro-Phree powder for oral liquid 48349011000036109 Pro-Phree 48349011000036109 Pro-Phree 51266011000036104 carbohydrate, fat, vitamins, minerals and trace elements powder for oral liquid, 400 g 50798011000036100 carbohydrate, fat, vitamins, minerals and trace elements powder for oral liquid 50766011000036102 carbohydrate, fat, vitamins, minerals and trace elements +1073671000168106 Cefepime (Auro) 2 g powder for injection, 5 vials 156639 1073661000168100 Cefepime (Auro) 2 g powder for injection, 5 vials 1073621000168105 Cefepime (Auro) 2 g powder for injection, 2 g vial 1073611000168103 Cefepime (Auro) 1073611000168103 Cefepime (Auro) 1073651000168102 cefepime 2 g injection, 5 vials 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +963121000168100 Arflox 500 mg film-coated tablet, 2, bottle 92368 962881000168100 Arflox 500 mg film-coated tablet, 2 962861000168109 Arflox 500 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 962871000168103 ciprofloxacin 500 mg tablet, 2 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +44394011000036100 Somac 40 mg enteric tablet, 50, bottle 69791 41854011000036103 Somac 40 mg enteric tablet, 50 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46660011000036108 pantoprazole 40 mg enteric tablet, 50 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1026501000168108 Pregabalin (Amneal) 75 mg hard capsule, 56, bottle 235842 1026321000168108 Pregabalin (Amneal) 75 mg hard capsule, 56 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1069331000168106 Hydromorphone (MPL) 2 mg uncoated tablet, 20, bottle 295423 1069321000168108 Hydromorphone (MPL) 2 mg uncoated tablet, 20 1069311000168101 Hydromorphone (MPL) 2 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 27605011000036103 hydromorphone hydrochloride 2 mg tablet, 20 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +813321000168107 Saxenda 6 mg/mL injection solution, 3 mL injection device 225804 813311000168100 Saxenda 6 mg/mL injection solution, 3 mL injection device 813301000168103 Saxenda 6 mg/mL injection solution, 3 mL injection device 813291000168104 Saxenda 813291000168104 Saxenda 748041000168103 liraglutide 6 mg/mL injection, 3 mL injection device 748021000168109 liraglutide 6 mg/mL injection, 3 mL injection device 105271000036100 liraglutide +1003081000168105 Levactam-1000 1 g film-coated tablet, 60, blister pack 177055 1003071000168107 Levactam-1000 1 g film-coated tablet, 60 1003061000168101 Levactam-1000 1 g film-coated tablet 1003051000168103 Levactam-1000 1003051000168103 Levactam-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +44152011000036105 Clarinase Repetab modified release tablet, 7, blister pack 53516 41628011000036101 Clarinase Repetab modified release tablet, 7 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46447011000036104 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 7 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +1046651000168105 Buprenorphine (SDZ) 10 microgram/hour patch, 1, sachet 269677 1046641000168108 Buprenorphine (SDZ) 10 microgram/hour patch, 1 1046621000168102 Buprenorphine (SDZ) 10 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046631000168104 buprenorphine 10 microgram/hour patch, 1 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +859401000168104 Allermosone Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 233575 859391000168101 Allermosone Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations 859251000168101 Allermosone Aqueous 50 microgram/actuation nasal spray, actuation 859241000168103 Allermosone Aqueous 859241000168103 Allermosone Aqueous 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +142761000036103 Zyrtec 5 mg/5 mL oral liquid solution, 60 mL, bottle 60948 142581000036100 Zyrtec 5 mg/5 mL oral liquid solution, 60 mL 142421000036102 Zyrtec 5 mg/5 mL oral liquid solution, 5 mL 3383011000036102 Zyrtec 3383011000036102 Zyrtec 142591000036103 cetirizine hydrochloride 5 mg/5 mL oral liquid, 60 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +1081211000168108 Alpha Keri Bath and Body Oil application, 300 mL, bottle 24618 1081201000168105 Alpha Keri Bath and Body Oil application, 300 mL 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 1081191000168107 liquid paraffin 80.7% + lanolin oil 2.64% application, 300 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +18906011000036101 Sinemet CR 200/50 modified release tablet, 100, bottle 20322 12214011000036102 Sinemet CR 200/50 modified release tablet, 100 6008011000036103 Sinemet CR 200/50 modified release tablet 26771000168105 Sinemet CR 200/50 26771000168105 Sinemet CR 200/50 26985011000036102 levodopa 200 mg + carbidopa 50 mg modified release tablet, 100 22358011000036106 levodopa 200 mg + carbidopa 50 mg modified release tablet 21326011000036107 levodopa + carbidopa +18906011000036101 Sinemet CR 200/50 modified release tablet, 100, bottle 171694 12214011000036102 Sinemet CR 200/50 modified release tablet, 100 6008011000036103 Sinemet CR 200/50 modified release tablet 26771000168105 Sinemet CR 200/50 26771000168105 Sinemet CR 200/50 26985011000036102 levodopa 200 mg + carbidopa 50 mg modified release tablet, 100 22358011000036106 levodopa 200 mg + carbidopa 50 mg modified release tablet 21326011000036107 levodopa + carbidopa +18226011000036107 Cotazym-S Forte capsule, 250, bottle 10653 11336011000036106 Cotazym-S Forte capsule, 250 5613011000036100 Cotazym-S Forte capsule 48501000168106 Cotazym-S Forte 48501000168106 Cotazym-S Forte 26612011000036108 lipase 10 000 units + protease 750 units + alpha amylase 7700 units capsule, 250 22019011000036105 lipase 10 000 units + protease 750 units + alpha amylase 7700 units capsule 21649011000036109 lipase + protease + alpha amylase +181451000036107 Exemestane (GH) 25 mg film-coated tablet, 30, blister pack 167858 180981000036104 Exemestane (GH) 25 mg film-coated tablet, 30 180511000036102 Exemestane (GH) 25 mg film-coated tablet 180351000036105 Exemestane (GH) 180351000036105 Exemestane (GH) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +18445011000036103 Simvastatin (Genepharm) 80 mg film-coated tablet, 30, blister pack 115418 11490011000036109 Simvastatin (Genepharm) 80 mg film-coated tablet, 30 4781011000036102 Simvastatin (Genepharm) 80 mg film-coated tablet 2992011000036107 Simvastatin (Genepharm) 2992011000036107 Simvastatin (Genepharm) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +1090971000168101 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 12, blister pack 286271 1090961000168107 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 12 1090951000168105 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 63179011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 12 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +18180011000036101 Egoderm 1% cream, 50 g, tube 10612 11326011000036108 Egoderm 1% cream, 50 g 5250011000036100 Egoderm 1% cream 4182011000036102 Egoderm 4182011000036102 Egoderm 26605011000036102 ichthammol 1% cream, 50 g 22013011000036107 ichthammol 1% cream 21816011000036101 ichthammol +1064991000168105 Paracode uncoated tablet, 40, blister pack 292799 1064981000168107 Paracode uncoated tablet, 40 1064911000168101 Paracode uncoated tablet 1064901000168104 Paracode 1064901000168104 Paracode 652931000168102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +61655011000036104 Ibuprofen (Guardian) 200 mg film-coated tablet, 96, blister pack 97232 57577011000036101 Ibuprofen (Guardian) 200 mg film-coated tablet, 96 54353011000036103 Ibuprofen (Guardian) 200 mg film-coated tablet 53129011000036108 Ibuprofen (Guardian) 53129011000036108 Ibuprofen (Guardian) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61194011000036107 Bugesic 200 mg film-coated tablet, 20, blister pack 75376 57130011000036107 Bugesic 200 mg film-coated tablet, 20 54211011000036101 Bugesic 200 mg film-coated tablet 53403011000036104 Bugesic 53403011000036104 Bugesic 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +84291011000036103 Octreotide (MaxRx) 500 microgram/mL injection solution, 5 x 1 mL ampoules 148403 83984011000036103 Octreotide (MaxRx) 500 microgram/mL injection solution, 5 x 1 mL ampoules 83619011000036100 Octreotide (MaxRx) 500 microgram/mL injection solution, ampoule 83565011000036107 Octreotide (MaxRx) 83565011000036107 Octreotide (MaxRx) 27089011000036109 octreotide 500 microgram/mL injection, 5 x 1 mL ampoules 22458011000036102 octreotide 500 microgram/mL injection, ampoule 21316011000036104 octreotide +44636011000036109 Levitra 10 mg film-coated tablet, 8, blister pack 90499 42089011000036105 Levitra 10 mg film-coated tablet, 8 40349011000036106 Levitra 10 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46856011000036108 vardenafil 10 mg tablet, 8 45333011000036101 vardenafil 10 mg tablet 44856011000036100 vardenafil +935731000168107 Roxithromycin (GenRx) 150 mg film-coated tablet, 10, blister pack 133746 935721000168109 Roxithromycin (GenRx) 150 mg film-coated tablet, 10 935711000168102 Roxithromycin (GenRx) 150 mg film-coated tablet 935701000168100 Roxithromycin (GenRx) 935701000168100 Roxithromycin (GenRx) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +61436011000036108 Sleep Right (Pharmacy Health) 25 mg uncoated tablet, 10, blister pack 83231 57361011000036102 Sleep Right (Pharmacy Health) 25 mg uncoated tablet, 10 54284011000036101 Sleep Right (Pharmacy Health) 25 mg uncoated tablet 53425011000036107 Sleep Right (Pharmacy Health) 53425011000036107 Sleep Right (Pharmacy Health) 63825011000036104 doxylamine succinate 25 mg tablet, 10 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +83398011000036100 Ciprofloxacin (GA) 500 mg film-coated tablet, 14, blister pack 148855 83311011000036108 Ciprofloxacin (GA) 500 mg film-coated tablet, 14 83245011000036109 Ciprofloxacin (GA) 500 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +82903011000036105 Progesterone (Orion) 100 mg moulded pessary, 15, strip pack 165112 12217011000036108 Progesterone (Orion) 100 mg moulded pessary, 15 4600011000036103 Progesterone (Orion) 100 mg moulded pessary 3508011000036108 Progesterone (Orion) 3508011000036108 Progesterone (Orion) 26988011000036108 progesterone 100 mg pessary, 15 22361011000036109 progesterone 100 mg pessary 21412011000036108 progesterone +181491000036103 Rabeprazole Sodium (RBX) 20 mg enteric tablet, 30, blister pack 196565 181031000036105 Rabeprazole Sodium (RBX) 20 mg enteric tablet, 30 180601000036100 Rabeprazole Sodium (RBX) 20 mg enteric tablet 180311000036106 Rabeprazole Sodium (RBX) 180311000036106 Rabeprazole Sodium (RBX) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +177201000036107 Carbamazepine (Sandoz) 100 mg uncoated tablet, 100, blister pack 78217 175501000036102 Carbamazepine (Sandoz) 100 mg uncoated tablet, 100 6948011000036104 Carbamazepine (Sandoz) 100 mg uncoated tablet 3827011000036102 Carbamazepine (Sandoz) 3827011000036102 Carbamazepine (Sandoz) 46711000036106 carbamazepine 100 mg tablet, 100 23199011000036106 carbamazepine 100 mg tablet 21319011000036108 carbamazepine +69473011000036109 Finalgon cream, 50 g, tube 49505 67273011000036101 Finalgon cream, 50 g 65588011000036105 Finalgon cream 64971011000036109 Finalgon 64971011000036109 Finalgon 71821011000036106 nonivamide 0.17% + nicoboxil 1.08% cream, 50 g 70203011000036101 nonivamide 0.17% + nicoboxil 1.08% cream 69748011000036107 nonivamide + nicoboxil +926766011000036100 Duro-Tuss PE Dry Cough plus Nasal Decongestant oral liquid solution, 100 mL, bottle 153325 926163011000036104 Duro-Tuss PE Dry Cough plus Nasal Decongestant oral liquid solution, 100 mL 925651011000036108 Duro-Tuss PE Dry Cough plus Nasal Decongestant oral liquid solution, 15 mL 925565011000036108 Duro-Tuss PE Dry Cough plus Nasal Decongestant 925565011000036108 Duro-Tuss PE Dry Cough plus Nasal Decongestant 927326011000036106 phenylephrine hydrochloride 10 mg/15 mL + pholcodine 15 mg/15 mL oral liquid, 100 mL 926990011000036108 phenylephrine hydrochloride 10 mg/15 mL + pholcodine 15 mg/15 mL oral liquid 926976011000036103 phenylephrine + pholcodine +747011000168101 Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule 217092 747001000168104 Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule 746991000168106 Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule 730921000168107 Granisetron (Apotex) 730921000168107 Granisetron (Apotex) 28229011000036102 granisetron 3 mg/3 mL injection, 3 mL ampoule 23543011000036106 granisetron 3 mg/3 mL injection, ampoule 21431011000036106 granisetron +755641000168104 Vttack 50 mg film-coated tablet, 30, blister pack 206983 755631000168108 Vttack 50 mg film-coated tablet, 30 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46817011000036103 voriconazole 50 mg tablet, 30 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +881961000168104 Carboplatin (Accord) 150 mg/15 mL injection solution, 15 mL vial 215853 881951000168101 Carboplatin (Accord) 150 mg/15 mL injection solution, 15 mL vial 881941000168103 Carboplatin (Accord) 150 mg/15 mL injection solution, 15 mL vial 881881000168102 Carboplatin (Accord) 881881000168102 Carboplatin (Accord) 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +893751000168104 Imatinib Adult (Cipla) 100 mg hard capsule, 24, blister pack 231747 893741000168101 Imatinib Adult (Cipla) 100 mg hard capsule, 24 893731000168105 Imatinib Adult (Cipla) 100 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 828811000168108 imatinib 100 mg capsule, 24 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +997641000168109 Duloxetine (Apotex) 30 mg enteric capsule, 28, blister pack 195348 997631000168100 Duloxetine (Apotex) 30 mg enteric capsule, 28 997601000168107 Duloxetine (Apotex) 30 mg enteric capsule 997521000168102 Duloxetine (Apotex) 997521000168102 Duloxetine (Apotex) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +1090811000168103 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 20, blister pack 286355 1090801000168101 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 20 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 1082001000168107 cetirizine hydrochloride 10 mg tablet, 20 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +56181000036104 Amoxycillin (Generic Health) 250 mg hard capsule, 20, blister pack 152850 51511000036107 Amoxycillin (Generic Health) 250 mg hard capsule, 20 49321000036109 Amoxycillin (Generic Health) 250 mg hard capsule 929914011000036109 Amoxycillin (Generic Health) 929914011000036109 Amoxycillin (Generic Health) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +56181000036104 Amoxycillin (Generic Health) 250 mg hard capsule, 20, blister pack 207004 51511000036107 Amoxycillin (Generic Health) 250 mg hard capsule, 20 49321000036109 Amoxycillin (Generic Health) 250 mg hard capsule 929914011000036109 Amoxycillin (Generic Health) 929914011000036109 Amoxycillin (Generic Health) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +59846011000036105 Diarrhoea Relief (Your Pharmacy) 2 mg uncoated tablet, 20, blister pack 114971 55808011000036109 Diarrhoea Relief (Your Pharmacy) 2 mg uncoated tablet, 20 53697011000036108 Diarrhoea Relief (Your Pharmacy) 2 mg uncoated tablet 53551011000036100 Diarrhoea Relief (Your Pharmacy) 53551011000036100 Diarrhoea Relief (Your Pharmacy) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +864841000168107 Amitriptyline (GXP) 25 mg tablet, 10, blister pack 232130 864831000168103 Amitriptyline (GXP) 25 mg tablet, 10 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +755601000168101 Vttack 50 mg film-coated tablet, 20, blister pack 206983 755591000168108 Vttack 50 mg film-coated tablet, 20 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46815011000036108 voriconazole 50 mg tablet, 20 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +60860011000036104 Lorastyne 10 mg uncoated tablet, 30, blister pack 59231 56814011000036102 Lorastyne 10 mg uncoated tablet, 30 54088011000036101 Lorastyne 10 mg uncoated tablet 14761000168104 Lorastyne 14761000168104 Lorastyne 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +60353011000036101 Benadryl for the Family Original oral liquid solution, 25 mL, bottle 14114 56312011000036108 Benadryl for the Family Original oral liquid solution, 25 mL 53872011000036107 Benadryl for the Family Original oral liquid solution, 5 mL 3541000168107 Benadryl for the Family Original 3541000168107 Benadryl for the Family Original 63301011000036109 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 25 mL 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +34738011000036101 Pethidine Hydrochloride (DBL) 75 mg/1.5 mL injection solution, 50 x 1.5 mL ampoules 47213 34322011000036101 Pethidine Hydrochloride (DBL) 75 mg/1.5 mL injection solution, 50 x 1.5 mL ampoules 34039011000036107 Pethidine Hydrochloride (DBL) 75 mg/1.5 mL injection solution, 1.5 mL ampoule 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35170011000036103 pethidine hydrochloride 75 mg/1.5 mL injection, 50 x 1.5 mL ampoules 34886011000036106 pethidine hydrochloride 75 mg/1.5 mL injection, ampoule 34839011000036106 pethidine +872331000168109 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 91344 872321000168106 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 872301000168102 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 36521000168104 Extraneal 7.5% 36521000168104 Extraneal 7.5% 872311000168104 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 872291000168103 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag 861151000168100 icodextrin + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +922661000168102 Anastrozole (AS) 1 mg film-coated tablet, 30, blister pack 188390 922651000168104 Anastrozole (AS) 1 mg film-coated tablet, 30 922641000168101 Anastrozole (AS) 1 mg film-coated tablet 922631000168105 Anastrozole (AS) 922631000168105 Anastrozole (AS) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +859481000168107 Zovirax Dispersible 800 mg tablet, 5, bottle 51433 859471000168109 Zovirax Dispersible 800 mg tablet, 5 859211000168102 Zovirax Dispersible 800 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 844511000168104 aciclovir 800 mg tablet, 5 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +1102571000168104 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet, 30, bottle 286111 1102371000168105 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet, 30 1102281000168104 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet 1102201000168107 Olmesartan HCTZ 40/25 (Pharmacor) 1102201000168107 Olmesartan HCTZ 40/25 (Pharmacor) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +18975011000036100 Sodibic 840 mg soft capsule, 100, bottle 27977 12283011000036102 Sodibic 840 mg soft capsule, 100 5307011000036100 Sodibic 840 mg soft capsule 4372011000036103 Sodibic 4372011000036103 Sodibic 27041011000036103 sodium bicarbonate 840 mg capsule, 100 22413011000036102 sodium bicarbonate 840 mg capsule 21761011000036107 bicarbonate +927708011000036101 Norfloxacin (GA) 400 mg film-coated tablet, 6, blister pack 79112 927642011000036103 Norfloxacin (GA) 400 mg film-coated tablet, 6 927593011000036108 Norfloxacin (GA) 400 mg film-coated tablet 927575011000036103 Norfloxacin (GA) 927575011000036103 Norfloxacin (GA) 920869011000036100 norfloxacin 400 mg tablet, 6 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +79031011000036102 Bispro 2.5 mg film-coated tablet, 42, blister pack 130178 78788011000036100 Bispro 2.5 mg film-coated tablet, 42 78625011000036108 Bispro 2.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79204011000036103 bisoprolol fumarate 2.5 mg tablet, 42 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +87633011000036103 Topiramate (RBX) 100 mg film-coated tablet, 60, bottle 157966 87458011000036107 Topiramate (RBX) 100 mg film-coated tablet, 60 87320011000036104 Topiramate (RBX) 100 mg film-coated tablet 87292011000036100 Topiramate (RBX) 87292011000036100 Topiramate (RBX) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +821981000168103 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack, composite pack 94483 821971000168101 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack 821881000168109 Dukoral (cholera vaccine) oral liquid suspension, 3 mL vial 13831000168103 Dukoral 13831000168103 Dukoral 821961000168107 cholera vaccine oral liquid [2 x 3 mL vials] (&) inert substance effervescent granules [2 x 5.6 g sachets], 1 pack 821871000168106 cholera vaccine oral liquid, 3 mL vial 821861000168100 cholera vaccine +821981000168103 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack, composite pack 94483 821971000168101 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack 821901000168106 Dukoral (inert substance) effervescent granules, 5.6 g sachet 13831000168103 Dukoral 13831000168103 Dukoral 821961000168107 cholera vaccine oral liquid [2 x 3 mL vials] (&) inert substance effervescent granules [2 x 5.6 g sachets], 1 pack 821891000168107 inert substance effervescent granules, 5.6 g sachet 21220011000036103 inert substance +781291000168102 Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes 129948 781281000168100 Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes 781261000168109 Apomine PFS 50 mg/10 mL injection solution, 10 mL syringe 29671000168109 Apomine PFS 29671000168109 Apomine PFS 781271000168103 apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, 5 x 10 mL syringes 781251000168107 apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, syringe 21732011000036105 apomorphine +39001000036103 Escitalup 20 mg film-coated tablet, 28, blister pack 165888 35371000036106 Escitalup 20 mg film-coated tablet, 28 33141000036102 Escitalup 20 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1035051000168109 Atomoxetine (CH) 5 mg hard capsule, 14, blister pack 234844 1035041000168107 Atomoxetine (CH) 5 mg hard capsule, 14 1035011000168108 Atomoxetine (CH) 5 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 976341000168105 atomoxetine 5 mg capsule, 14 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +59673011000036106 Advil 200 mg sugar coated tablet, 6, blister pack 104221 55691011000036105 Advil 200 mg sugar coated tablet, 6 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1052131000168109 Palexia SR 100 mg modified release tablet, 14, blister pack 165346 1052121000168106 Palexia SR 100 mg modified release tablet, 14 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052111000168104 tapentadol 100 mg modified release tablet, 14 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +709521000168101 Influvac 2015 injection solution, 10 x 0.5 mL syringes 215555 709511000168108 Influvac 2015 injection solution, 10 x 0.5 mL syringes 709481000168101 Influvac 2015 injection solution, 0.5 mL syringe 709471000168104 Influvac 2015 709471000168104 Influvac 2015 709391000168107 influenza trivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +19459011000036101 EES 400 mg/5 mL powder for oral liquid, 100 mL, bottle 54456 12736011000036106 EES 400 mg/5 mL powder for oral liquid, 100 mL 6031011000036100 EES 400 mg/5 mL powder for oral liquid, 5 mL 4086011000036105 EES 4086011000036105 EES 27323011000036104 erythromycin (as ethylsuccinate) 400 mg/5 mL powder for oral liquid, 100 mL 22676011000036102 erythromycin (as ethylsuccinate) 400 mg/5 mL powder for oral liquid 21523011000036104 erythromycin ethylsuccinate +82868011000036109 Mircera 100 microgram/0.3 mL injection solution, 0.3 mL syringe 153806 82775011000036105 Mircera 100 microgram/0.3 mL injection solution, 0.3 mL syringe 82685011000036109 Mircera 100 microgram/0.3 mL injection solution, 0.3 mL syringe 82658011000036106 Mircera 82658011000036106 Mircera 82995011000036109 epoetin beta 100 microgram/0.3 mL injection, 0.3 mL syringe 82932011000036108 epoetin beta 100 microgram/0.3 mL injection, syringe 21625011000036109 epoetin beta +743721000168102 Jardiamet 12.5 mg/850 mg film-coated tablet, 14, blister pack 229819 743711000168109 Jardiamet 12.5 mg/850 mg film-coated tablet, 14 743691000168106 Jardiamet 12.5 mg/850 mg film-coated tablet 743671000168105 Jardiamet 12.5 mg/850 mg 743671000168105 Jardiamet 12.5 mg/850 mg 743701000168106 empagliflozin 12.5 mg + metformin hydrochloride 850 mg tablet, 14 743681000168108 empagliflozin 12.5 mg + metformin hydrochloride 850 mg tablet 743221000168107 empagliflozin + metformin +1030711000168100 Atilos 45 mg uncoated tablet, 50, blister pack 173478 1030701000168103 Atilos 45 mg uncoated tablet, 50 1030581000168100 Atilos 45 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929260011000036104 pioglitazone 45 mg tablet, 50 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +37492011000036109 Metronidazole (DBL) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL bags 129476 36760011000036101 Metronidazole (DBL) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL bags 36102011000036105 Metronidazole (DBL) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 35949011000036106 Metronidazole (DBL) 35949011000036106 Metronidazole (DBL) 35100011000036108 metronidazole 500 mg/100 mL (0.5%) injection, 10 x 100 mL bags 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +925360011000036101 Pharmorubicin RD 50 mg powder for injection, 1 vial 40220 924896011000036109 Pharmorubicin RD 50 mg powder for injection, 1 vial 924538011000036104 Pharmorubicin RD 50 mg powder for injection, 50 mg vial 27051000168102 Pharmorubicin RD 27051000168102 Pharmorubicin RD 26719011000036109 epirubicin hydrochloride 50 mg injection, 1 vial 22114011000036104 epirubicin hydrochloride 50 mg injection, vial 21230011000036100 epirubicin +906491000168104 Celecoxib (Medis) 200 mg capsule, 10, blister pack 204618 906481000168102 Celecoxib (Medis) 200 mg capsule, 10 906471000168100 Celecoxib (Medis) 200 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1064031000168107 Febridol Xtra Paracetamol and Codeine film-coated tablet, 24, blister pack 210575 1064021000168109 Febridol Xtra Paracetamol and Codeine film-coated tablet, 24 1064011000168102 Febridol Xtra Paracetamol and Codeine film-coated tablet 1064001000168100 Febridol Xtra Paracetamol and Codeine 1064001000168100 Febridol Xtra Paracetamol and Codeine 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1098231000168105 Nasal Decongestant PE (Amcal) 10 mg film-coated tablet, 24, blister pack 248411 1098221000168107 Nasal Decongestant PE (Amcal) 10 mg film-coated tablet, 24 1098211000168100 Nasal Decongestant PE (Amcal) 10 mg film-coated tablet 1098141000168109 Nasal Decongestant PE (Amcal) 1098141000168109 Nasal Decongestant PE (Amcal) 63400011000036108 phenylephrine hydrochloride 10 mg tablet, 24 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +69283011000036100 Osmitrol 20% (100 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 19496 67083011000036103 Osmitrol 20% (100 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 65395011000036103 Osmitrol 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 65181011000036106 Osmitrol 65181011000036106 Osmitrol 71652011000036108 mannitol 20% (100 g/500 mL) injection, 18 x 500 mL bags 70109011000036101 mannitol 20% (100 g/500 mL) injection, bag 69778011000036106 mannitol +60134011000036109 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 30, blister pack 127745 56093011000036104 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 30 53786011000036101 Naproxen Sodium (Priceline) 275 mg film-coated tablet 53286011000036107 Naproxen Sodium (Priceline) 53286011000036107 Naproxen Sodium (Priceline) 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +60595011000036106 Benzac W 2.5% gel, 10 g, tube 18553 56553011000036108 Benzac W 2.5% gel, 10 g 53970011000036104 Benzac W 2.5% gel 7001000168107 Benzac W 7001000168107 Benzac W 63419011000036100 benzoyl peroxide 2.5% gel, 10 g 61953011000036101 benzoyl peroxide 2.5% gel 61709011000036104 benzoyl peroxide +69110011000036108 Strepsils eucalyptus and menthol lozenge, 6, blister pack 14973 66911011000036108 Strepsils eucalyptus and menthol lozenge, 6 65345011000036108 Strepsils eucalyptus and menthol lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71505011000036103 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge, 6 70040011000036109 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge 69851011000036103 amylmetacresol + dichlorobenzyl alcohol + menthol +50455011000036107 XLYS, Low Try Analog powder for oral liquid, 400 g, can 49259011000036102 XLYS, Low Try Analog powder for oral liquid, 400 g 48770011000036100 XLYS, Low Try Analog powder for oral liquid 63651000168107 XLYS, Low Try Analog 63651000168107 XLYS, Low Try Analog 51252011000036108 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 400 g 50955011000036109 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +1090851000168102 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 40, blister pack 286355 1090841000168104 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 40 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 1082051000168106 cetirizine hydrochloride 10 mg tablet, 40 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +922020011000036107 Vitaminorum film-coated tablet, 100, bottle 96847 921578011000036106 Vitaminorum film-coated tablet, 100 921097011000036104 Vitaminorum film-coated tablet 920926011000036108 Vitaminorum 920926011000036108 Vitaminorum 922692011000036107 ascorbic acid 80 mg + biotin 10 microgram + calcium (as hydrogen phosphate) 70 mg + cyanocobalamin 5 microgram + d-alpha-tocopheryl acid succinate 8.6 mg (10 units) + iron (as ferrous fumarate) 5 mg + folic acid 100 microgram + iodine 99 microgram + magnesium (as oxide heavy) 38 mg + manganese (as sulfate monohydrate) 2 mg + nicotinamide 25 mg + pantothenic acid (as calcium pantothenate) 9.2 mg + pyridoxine hydrochloride 4 mg + riboflavin 10 mg + thiamine hydrochloride 10 mg + zinc (as sulfate monohydrate) 2 mg tablet, 100 922161011000036104 ascorbic acid 80 mg + biotin 10 microgram + calcium (as hydrogen phosphate) 70 mg + cyanocobalamin 5 microgram + d-alpha-tocopheryl acid succinate 8.6 mg (10 units) + iron (as ferrous fumarate) 5 mg + folic acid 100 microgram + iodine 99 microgram + magnesium (as oxide heavy) 38 mg + manganese (as sulfate monohydrate) 2 mg + nicotinamide 25 mg + pantothenic acid (as calcium pantothenate) 9.2 mg + pyridoxine hydrochloride 4 mg + riboflavin 10 mg + thiamine hydrochloride 10 mg + zinc (as sulfate monohydrate) 2 mg tablet 922054011000036101 ascorbic acid + biotin + calcium hydrogen phosphate + cyanocobalamin + d-alpha-tocopheryl acid succinate + ferrous fumarate + folic acid + iodine + magnesium oxide heavy + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + thiamine + zinc sulfate monohydrate +69329011000036103 Benzac AC 5% modified gel, 10 g, tube 25271 67129011000036104 Benzac AC 5% modified gel, 10 g 65322011000036102 Benzac AC 5% modified gel 17681000168105 Benzac AC 17681000168105 Benzac AC 71694011000036109 benzoyl peroxide 5% modified gel, 10 g 70132011000036101 benzoyl peroxide 5% modified gel 61709011000036104 benzoyl peroxide +1065151000168101 Paracode Extra uncoated tablet, 40, blister pack 292800 1065141000168103 Paracode Extra uncoated tablet, 40 1065011000168101 Paracode Extra uncoated tablet 1065001000168104 Paracode Extra 1065001000168104 Paracode Extra 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +952571000168105 Hytrin 1 mg uncoated tablet, 28, blister pack 121316 952561000168104 Hytrin 1 mg uncoated tablet, 28 4845011000036108 Hytrin 1 mg uncoated tablet 3113011000036109 Hytrin 3113011000036109 Hytrin 952551000168101 terazosin 1 mg tablet, 28 22126011000036104 terazosin 1 mg tablet 21396011000036100 terazosin +77268011000036104 Panadol Rapid Soluble 500 mg effervescent tablet, 4, strip pack 15509 76684011000036108 Panadol Rapid Soluble 500 mg effervescent tablet, 4 76115011000036109 Panadol Rapid Soluble 500 mg effervescent tablet 13471000168102 Panadol Rapid Soluble 13471000168102 Panadol Rapid Soluble 83221000036106 paracetamol 500 mg effervescent tablet, 4 83101000036106 paracetamol 500 mg effervescent tablet 21433011000036107 paracetamol +909871000168109 Dexamfettabs 5 mg uncoated tablet, 100, bottle 270953 909801000168104 Dexamfettabs 5 mg uncoated tablet, 100 909791000168100 Dexamfettabs 5 mg uncoated tablet 909781000168103 Dexamfettabs 909781000168103 Dexamfettabs 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +1030751000168104 Atilos 45 mg uncoated tablet, 98, blister pack 173478 1030741000168101 Atilos 45 mg uncoated tablet, 98 1030581000168100 Atilos 45 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929262011000036100 pioglitazone 45 mg tablet, 98 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +705351000168100 Elocon Alcohol Free 0.1% cream, 15 g, tube 212416 705341000168102 Elocon Alcohol Free 0.1% cream, 15 g 705301000168104 Elocon Alcohol Free 0.1% cream 4301011000036100 Elocon 4301011000036100 Elocon 27412011000036106 mometasone furoate 0.1% cream, 15 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +934361000168101 Centevo 175/43.75/200 mg film-coated tablet, 100, bottle 238858 934351000168103 Centevo 175/43.75/200 mg film-coated tablet, 100 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934341000168100 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 100 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +60376011000036109 Analgesic and Calmative (Pharmacor) uncoated tablet, 20, blister pack 142715 56335011000036108 Analgesic and Calmative (Pharmacor) uncoated tablet, 20 53881011000036109 Analgesic and Calmative (Pharmacor) uncoated tablet 53305011000036105 Analgesic and Calmative (Pharmacor) 53305011000036105 Analgesic and Calmative (Pharmacor) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +933238961000036105 Fentanyl (Sandoz) 100 microgram/hour patch, 3, sachet 152576 933236231000036106 Fentanyl (Sandoz) 100 microgram/hour patch, 3 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236251000036103 fentanyl 100 microgram/hour patch, 3 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +718181000168101 Meropenem (Ranbaxy) 1 g powder for injection, 1 vial 167024 718171000168104 Meropenem (Ranbaxy) 1 g powder for injection, 1 vial 718161000168105 Meropenem (Ranbaxy) 1 g powder for injection, vial 718151000168108 Meropenem (Ranbaxy) 718151000168108 Meropenem (Ranbaxy) 128521000036100 meropenem 1 g injection, 1 vial 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +864921000168109 Amitriptyline (GXP) 25 mg tablet, 1000, blister pack 232130 864911000168102 Amitriptyline (GXP) 25 mg tablet, 1000 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +951521000168103 Trandolapril (GenRx) 1 mg capsule, 28, blister pack 135970 951511000168105 Trandolapril (GenRx) 1 mg capsule, 28 951501000168107 Trandolapril (GenRx) 1 mg capsule 951491000168100 Trandolapril (GenRx) 951491000168100 Trandolapril (GenRx) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +38961000036105 Escitalupin 20 mg film-coated tablet, 30, bottle 165885 35331000036109 Escitalupin 20 mg film-coated tablet, 30 33041000036103 Escitalupin 20 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +50553011000036103 Primolut N 5 mg uncoated tablet, 100, strip pack 134491 49589011000036104 Primolut N 5 mg uncoated tablet, 100 5473011000036105 Primolut N 5 mg uncoated tablet 28521000168100 Primolut N 28521000168100 Primolut N 51494011000036105 norethisterone 5 mg tablet, 100 22025011000036102 norethisterone 5 mg tablet 21579011000036102 norethisterone +21026011000036108 Solian 200 mg uncoated tablet, 60, blister pack 96425 14172011000036105 Solian 200 mg uncoated tablet, 60 7452011000036104 Solian 200 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +66321000036107 Iodosorb (66051360) 10 cm x 8 cm medicated dressing, 2 x 17 g sheet, sachet 62774 64221000036105 Iodosorb (66051360) 10 cm x 8 cm medicated dressing, 2 x 17 g sheet 933241891000036103 Iodosorb (66051360) 10 cm x 8 cm medicated dressing, 17 g sheet 46051000168101 Iodosorb (66051360) 46051000168101 Iodosorb (66051360) 64231000036107 cadexomer-iodine 10 cm x 8 cm dressing, 2 x 17 g sheet 933241901000036102 cadexomer-iodine 10 cm x 8 cm dressing, 17 g sheet 21550011000036106 cadexomer-iodine +19286011000036104 Gastro-Stop 2 mg hard capsule, 12, blister pack 48935 12576011000036108 Gastro-Stop 2 mg hard capsule, 12 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 27212011000036107 loperamide hydrochloride 2 mg capsule, 12 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +19286011000036104 Gastro-Stop 2 mg hard capsule, 12, blister pack 264972 12576011000036108 Gastro-Stop 2 mg hard capsule, 12 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 27212011000036107 loperamide hydrochloride 2 mg capsule, 12 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +69456011000036100 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) intravenous infusion injection, 500 mL bag 48567 67256011000036105 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) intravenous infusion injection, 500 mL bag 65578011000036100 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) intravenous infusion injection, 500 mL bag 38121000168105 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 38121000168105 Potassium Chloride 0.15% and Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 71806011000036106 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, 500 mL bag 70194011000036104 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +798791000168103 Rizatriptan (TW) 10 mg orally disintegrating tablet, 1, blister pack 222203 798781000168101 Rizatriptan (TW) 10 mg orally disintegrating tablet, 1 798761000168105 Rizatriptan (TW) 10 mg orally disintegrating tablet 798751000168108 Rizatriptan (TW) 798751000168108 Rizatriptan (TW) 798771000168104 rizatriptan 10 mg orally disintegrating tablet, 1 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +20087011000036109 Akamin 50 mg film-coated tablet, 60, bottle 70852 13314011000036101 Akamin 50 mg film-coated tablet, 60 6600011000036108 Akamin 50 mg film-coated tablet 3121011000036101 Akamin 3121011000036101 Akamin 27684011000036103 minocycline 50 mg tablet, 60 23021011000036109 minocycline 50 mg tablet 21488011000036109 minocycline +1060901000168109 Atomerra 5 mg hard capsule, 14, blister pack 234812 1060891000168105 Atomerra 5 mg hard capsule, 14 1060861000168103 Atomerra 5 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 976341000168105 atomoxetine 5 mg capsule, 14 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +902471000168101 Candesartan (GPPL) 4 mg uncoated tablet, 30, blister pack 195467 902461000168107 Candesartan (GPPL) 4 mg uncoated tablet, 30 902451000168105 Candesartan (GPPL) 4 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +18848011000036102 Catapres 100 microgram uncoated tablet, 100, blister pack 17921 12159011000036105 Catapres 100 microgram uncoated tablet, 100 4963011000036108 Catapres 100 microgram uncoated tablet 3655011000036104 Catapres 3655011000036104 Catapres 26955011000036106 clonidine hydrochloride 100 microgram tablet, 100 22330011000036108 clonidine hydrochloride 100 microgram tablet 21589011000036108 clonidine +916881000168103 Amitriptyline (RS) 25 mg tablet, 1000, bottle 232143 866631000168105 Amitriptyline (RS) 25 mg tablet, 1000 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +20300011000036108 Diclocil 250 mg capsule, 24, blister pack 75593 13509011000036104 Diclocil 250 mg capsule, 24 6791011000036108 Diclocil 250 mg capsule 4083011000036104 Diclocil 4083011000036104 Diclocil 27778011000036109 dicloxacillin 250 mg capsule, 24 23108011000036100 dicloxacillin 250 mg capsule 21398011000036101 dicloxacillin +69214011000036100 Chlorhexidine Acetate (Baxter) 0.02% (20 mg/100 mL) irrigation solution, 24 x 100 mL bottles 19459 67014011000036103 Chlorhexidine Acetate (Baxter) 0.02% (20 mg/100 mL) irrigation solution, 24 x 100 mL bottles 65335011000036107 Chlorhexidine Acetate (Baxter) 0.02% (20 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71584011000036103 chlorhexidine acetate 0.02% (20 mg/100 mL) solution, 24 x 100 mL bottles 70077011000036109 chlorhexidine acetate 0.02% (20 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +20784011000036100 Cortival-1/2 0.05% cream, 15 g, tube 91054 13953011000036100 Cortival-1/2 0.05% cream, 15 g 7239011000036106 Cortival-1/2 0.05% cream 44681000168105 Cortival-1/2 44681000168105 Cortival-1/2 28034011000036108 betamethasone (as valerate) 0.05% cream, 15 g 23355011000036108 betamethasone (as valerate) 0.05% cream 21366011000036103 betamethasone valerate +68891011000036105 Metsal gel, 50 g, tube 10343 66497011000036103 Metsal gel, 50 g 65353011000036105 Metsal gel 65146011000036109 Metsal 65146011000036109 Metsal 71229011000036101 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% gel, 50 g 69910011000036106 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% gel 69781011000036105 eucalyptus oil + menthol liquid + methyl salicylate +20571011000036107 Nicabate CQ 7 mg/24 hours patch, 7, sachet 80206 13761011000036101 Nicabate CQ 7 mg/24 hours patch, 7 7046011000036105 Nicabate CQ 7 mg/24 hours patch 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 27924011000036107 nicotine 7 mg/24 hours patch, 7 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +952771000168100 Fluzole 150 mg hard capsule, 4, blister pack 120776 952761000168106 Fluzole 150 mg hard capsule, 4 952721000168101 Fluzole 150 mg hard capsule 57311000168100 Fluzole 57311000168100 Fluzole 952751000168109 fluconazole 150 mg capsule, 4 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +66001000036100 Amolin Baby cream, 50 g, tube 15685 63521000036105 Amolin Baby cream, 50 g 60571000036101 Amolin Baby cream 11051000168101 Amolin Baby 11051000168101 Amolin Baby 63531000036107 calamine 3.75% + almond oil 2.85% + salicylic acid 0.47% + zinc oxide 1.6% cream, 50 g 60581000036104 calamine 3.75% + almond oil 2.85% + salicylic acid 0.47% + zinc oxide 1.6% cream 66701000036103 calamine + almond oil + salicylic acid + zinc oxide +20329011000036105 Enalapril Maleate (Winthrop) 5 mg uncoated tablet, 30, blister pack 76042 13538011000036101 Enalapril Maleate (Winthrop) 5 mg uncoated tablet, 30 6821011000036103 Enalapril Maleate (Winthrop) 5 mg uncoated tablet 3391011000036104 Enalapril Maleate (Winthrop) 3391011000036104 Enalapril Maleate (Winthrop) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +87650011000036107 Sifrol ER 750 microgram modified release tablet, 30, blister pack 158755 87465011000036107 Sifrol ER 750 microgram modified release tablet, 30 87325011000036108 Sifrol ER 750 microgram modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 87815011000036100 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 30 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +663361000168109 Sumatriptan (Sandoz) 100 mg film-coated tablet, 2, blister pack 187215 663351000168107 Sumatriptan (Sandoz) 100 mg film-coated tablet, 2 663341000168105 Sumatriptan (Sandoz) 100 mg film-coated tablet 137411000036106 Sumatriptan (Sandoz) 137411000036106 Sumatriptan (Sandoz) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +986001000168100 Advil Double Strength Caplets 400 mg film-coated tablet, 30, blister pack 207376 985991000168101 Advil Double Strength Caplets 400 mg film-coated tablet, 30 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 27938011000036102 ibuprofen 400 mg tablet, 30 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +37463011000036104 Streptase 250 000 units powder for injection, 1 vial 12417 36733011000036104 Streptase 250 000 units powder for injection, 1 vial 36018011000036102 Streptase 250 000 units powder for injection, 250 000 units vial 35967011000036106 Streptase 35967011000036106 Streptase 38643011000036104 streptokinase 250 000 units injection, 1 vial 37898011000036100 streptokinase 250 000 units injection, vial 37726011000036108 streptokinase +774231000168107 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 96, blister pack 210274 774221000168109 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 96 774051000168109 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 774211000168102 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet, 96 774041000168107 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet 61758011000036100 bromhexine + guaifenesin +1073811000168102 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 24, blister pack 230261 1073801000168100 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 24 824371000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet 824361000168105 Paracetamol Pain Relief (Apohealth) 824361000168105 Paracetamol Pain Relief (Apohealth) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +160261000036101 Monteccord 10 mg film-coated tablet, 14, blister pack 184828 159001000036108 Monteccord 10 mg film-coated tablet, 14 157871000036101 Monteccord 10 mg film-coated tablet 157781000036109 Monteccord 157781000036109 Monteccord 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +19816011000036109 Alprim 300 mg uncoated tablet, 7, blister pack 63518 13071011000036109 Alprim 300 mg uncoated tablet, 7 6355011000036103 Alprim 300 mg uncoated tablet 3675011000036101 Alprim 3675011000036101 Alprim 27532011000036107 trimethoprim 300 mg tablet, 7 22872011000036107 trimethoprim 300 mg tablet 21246011000036103 trimethoprim +931768011000036103 Savlon Antibacterial Moisturising Liquid Wash 0.3% w/v solution, 500 mL, bottle 80243 930928011000036106 Savlon Antibacterial Moisturising Liquid Wash 0.3% w/v solution, 500 mL 930125011000036103 Savlon Antibacterial Moisturising Liquid Wash 0.3% w/v solution 531000168101 Savlon Antibacterial Moisturising Liquid Wash 531000168101 Savlon Antibacterial Moisturising Liquid Wash 932498011000036106 triclosan 0.3% w/v solution, 500 mL 931891011000036107 triclosan 0.3% w/v solution 69817011000036103 triclosan +20813011000036101 Famotidine (Terry White Chemists) 40 mg film-coated tablet, 30, blister pack 91512 13976011000036108 Famotidine (Terry White Chemists) 40 mg film-coated tablet, 30 7262011000036105 Famotidine (Terry White Chemists) 40 mg film-coated tablet 4260011000036101 Famotidine (Terry White Chemists) 4260011000036101 Famotidine (Terry White Chemists) 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +951401000168106 Modafinil (AN) 100 mg uncoated tablet, 30, blister pack 269912 951391000168109 Modafinil (AN) 100 mg uncoated tablet, 30 951361000168102 Modafinil (AN) 100 mg uncoated tablet 951351000168104 Modafinil (AN) 951351000168104 Modafinil (AN) 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +79688011000036108 Sinutab Sinus and Pain Relief uncoated tablet, 12, blister pack 156808 79508011000036102 Sinutab Sinus and Pain Relief uncoated tablet, 12 40346011000036102 Sinutab Sinus and Pain Relief uncoated tablet 39567011000036105 Sinutab Sinus and Pain Relief 39567011000036105 Sinutab Sinus and Pain Relief 63119011000036104 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 12 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +68972011000036102 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 7 sachets 134408 66774011000036108 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 7 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71426011000036106 paracetamol 500 mg powder for oral liquid, 7 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +669101000168107 Macrovic powder for oral liquid, 30 sachets 220583 669091000168102 Macrovic powder for oral liquid, 30 sachets 669011000168106 Macrovic powder for oral liquid, sachet 668291000168102 Macrovic 668291000168102 Macrovic 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +1101201000168104 Denavil 300 mg film-coated tablet, 30, bottle 172815 1101191000168102 Denavil 300 mg film-coated tablet, 30 1101181000168100 Denavil 300 mg film-coated tablet 1101071000168104 Denavil 1101071000168104 Denavil 27947011000036104 lamivudine 300 mg tablet, 30 23271011000036103 lamivudine 300 mg tablet 21665011000036104 lamivudine +933239041000036100 Fentanyl (Sandoz) 75 microgram/hour patch, 3, sachet 152568 933235621000036101 Fentanyl (Sandoz) 75 microgram/hour patch, 3 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235631000036104 fentanyl 75 microgram/hour patch, 3 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +700029391000036104 Thrush Relief (Johnson and Johnson) 1% cream, 10 g, tube 301000168104 Thrush Relief (Johnson and Johnson) 1% cream, 10 g 80161011000036100 Thrush Relief (Johnson and Johnson) 1% cream 80124011000036109 Thrush Relief (Johnson and Johnson) 80124011000036109 Thrush Relief (Johnson and Johnson) 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +68926011000036104 De-Gas 100 mg soft capsule, 5, blister pack 10395 66503011000036101 De-Gas 100 mg soft capsule, 5 65256011000036109 De-Gas 100 mg soft capsule 65132011000036106 De-Gas 65132011000036106 De-Gas 71235011000036101 simethicone 100 mg capsule, 5 69912011000036105 simethicone 100 mg capsule 69826011000036109 simethicone +893791000168109 Imatinib Adult (Cipla) 100 mg hard capsule, 60, blister pack 231747 893781000168106 Imatinib Adult (Cipla) 100 mg hard capsule, 60 893731000168105 Imatinib Adult (Cipla) 100 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 830821000168102 imatinib 100 mg capsule, 60 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1073831000168107 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 48, blister pack 230261 1073821000168109 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 48 824371000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet 824361000168105 Paracetamol Pain Relief (Apohealth) 824361000168105 Paracetamol Pain Relief (Apohealth) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1091131000168107 Diclofenac (Medreich) 25 mg enteric tablet, 20, blister pack 284835 1091121000168109 Diclofenac (Medreich) 25 mg enteric tablet, 20 1091091000168105 Diclofenac (Medreich) 25 mg enteric tablet 1091051000168100 Diclofenac (Medreich) 1091051000168100 Diclofenac (Medreich) 63834011000036101 diclofenac sodium 25 mg enteric tablet, 20 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +77222011000036108 Oxaliplatin (Actavis) 50 mg powder for injection, 1 vial 143840 76638011000036108 Oxaliplatin (Actavis) 50 mg powder for injection, 1 vial 76080011000036108 Oxaliplatin (Actavis) 50 mg powder for injection, 50 mg vial 75942011000036108 Oxaliplatin (Actavis) 75942011000036108 Oxaliplatin (Actavis) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +19332011000036104 Anzatax 30 mg/5 mL concentrated injection, 5 mL vial 50578 12620011000036102 Anzatax 30 mg/5 mL concentrated injection, 5 mL vial 5656011000036104 Anzatax 30 mg/5 mL concentrated injection, 5 mL vial 3081011000036102 Anzatax 3081011000036102 Anzatax 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +795821000168104 Quetiapine XR (AS) 300 mg modified release tablet, 30, blister pack 226822 795811000168106 Quetiapine XR (AS) 300 mg modified release tablet, 30 791011000168104 Quetiapine XR (AS) 300 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 795801000168108 quetiapine 300 mg modified release tablet, 30 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +60163011000036102 Exforge 5/80 film-coated tablet, 14, blister pack 130787 56122011000036109 Exforge 5/80 film-coated tablet, 14 53801011000036105 Exforge 5/80 film-coated tablet 29171000168101 Exforge 5/80 29171000168101 Exforge 5/80 63226011000036102 amlodipine 5 mg + valsartan 80 mg tablet, 14 61897011000036105 amlodipine 5 mg + valsartan 80 mg tablet 61712011000036107 amlodipine + valsartan +1000371000168104 Tadalafil PHT (Apo) 20 mg film-coated tablet, 1000, bottle 205859 1000361000168105 Tadalafil PHT (Apo) 20 mg film-coated tablet, 1000 1000341000168106 Tadalafil PHT (Apo) 20 mg film-coated tablet 1000321000168100 Tadalafil PHT (Apo) 1000321000168100 Tadalafil PHT (Apo) 1000351000168108 tadalafil 20 mg tablet, 1000 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +926783011000036109 Metformin 1000 (Apo) 1 g film-coated tablet, 90, bottle 157225 926225011000036105 Metformin 1000 (Apo) 1 g film-coated tablet, 90 925684011000036100 Metformin 1000 (Apo) 1 g film-coated tablet 22791000168107 Metformin 1000 (Apo) 22791000168107 Metformin 1000 (Apo) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +19378011000036103 Minitran 15 mg/24 hours patch, 30, sachet 52030 12665011000036101 Minitran 15 mg/24 hours patch, 30 5625011000036105 Minitran 15 mg/24 hours patch 2932011000036100 Minitran 2932011000036100 Minitran 27269011000036103 glyceryl trinitrate 15 mg/24 hours patch, 30 22625011000036105 glyceryl trinitrate 15 mg/24 hours patch 21388011000036102 glyceryl trinitrate +731031000168103 Esomeprazole (Act) 40 mg powder for injection, 10 vials 203825 731021000168101 Esomeprazole (Act) 40 mg powder for injection, 10 vials 731011000168108 Esomeprazole (Act) 40 mg powder for injection, 40 mg vial 731001000168105 Esomeprazole (Act) 731001000168105 Esomeprazole (Act) 46955011000036109 esomeprazole 40 mg injection, 10 vials 45357011000036106 esomeprazole 40 mg injection, vial 21697011000036107 esomeprazole +729571000168106 Fess 0.704% nasal spray, 75 mL, pump pack 76559011000036108 Fess 0.704% nasal spray, 75 mL 76031011000036107 Fess 0.704% nasal spray 5581000168103 Fess 5581000168103 Fess 78116011000036105 sodium chloride 0.704% nasal spray, 75 mL 77493011000036107 sodium chloride 0.704% nasal spray 21308011000036103 sodium chloride +929079011000036105 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 28, blister pack 166910 928440011000036107 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 28 927984011000036103 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +931391011000036105 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, 50 x 1 mL ampoules 12048 930575011000036109 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, 50 x 1 mL ampoules 929933011000036101 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, ampoule 929922011000036105 Adrenaline (Link) 929922011000036105 Adrenaline (Link) 63243011000036106 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, 50 x 1 mL ampoules 22115011000036100 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +928932011000036105 Valaciclovir (Sandoz) 500 mg film-coated tablet, 30, blister pack 154464 928294011000036108 Valaciclovir (Sandoz) 500 mg film-coated tablet, 30 927924011000036108 Valaciclovir (Sandoz) 500 mg film-coated tablet 927787011000036101 Valaciclovir (Sandoz) 927787011000036101 Valaciclovir (Sandoz) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +937031000168104 Alendronate Plus D3 and Calcium (Apo) (4 x Alendronate Plus D3 70 mg/140 microgram, 48 x Calcium tablets), 1 pack, composite pack 246777 937021000168102 Alendronate Plus D3 and Calcium (Apo) (4 x Alendronate Plus D3 70 mg/140 microgram, 48 x Calcium tablets), 1 pack 936981000168102 Calcium (Apo) 1.25 g (calcium 500 mg) film-coated tablet 937011000168109 Alendronate Plus D3 and Calcium (Apo) 936971000168100 Calcium (Apo) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +937031000168104 Alendronate Plus D3 and Calcium (Apo) (4 x Alendronate Plus D3 70 mg/140 microgram, 48 x Calcium tablets), 1 pack, composite pack 246777 937021000168102 Alendronate Plus D3 and Calcium (Apo) (4 x Alendronate Plus D3 70 mg/140 microgram, 48 x Calcium tablets), 1 pack 691801000168101 Alendronate Plus D3 70 mg/140 microgram (Apo) tablet 937011000168109 Alendronate Plus D3 and Calcium (Apo) 691791000168102 Alendronate Plus D3 70 mg/140 microgram (Apo) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +1095421000168103 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 90, blister pack 287307 1095411000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 90 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1077401000168106 fexofenadine hydrochloride 180 mg tablet, 90 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +801601000168105 Abilify 2 mg uncoated tablet, 20, blister pack 91001 801591000168103 Abilify 2 mg uncoated tablet, 20 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801581000168101 aripiprazole 2 mg tablet, 20 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +68730011000036109 Pinetarsol 2.3% bath oil, 500 mL, bottle 10632 66541011000036105 Pinetarsol 2.3% bath oil, 500 mL 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71273011000036100 tar 2.3% bath oil, 500 mL 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +18151011000036103 Lantus Solostar 100 units/mL injection solution, 5 x 3 mL cartridges 128468 11858011000036108 Lantus Solostar 100 units/mL injection solution, 5 x 3 mL cartridges 4835011000036107 Lantus Solostar 100 units/mL injection solution, 3 mL cartridge 63031000168107 Lantus Solostar 63031000168107 Lantus Solostar 27848011000036108 insulin glargine 100 units/mL injection, 5 x 3 mL cartridges 23176011000036105 insulin glargine 100 units/mL injection, cartridge 21815011000036108 insulin glargine +66091000036108 Potassium Chloride (NPM) 65 mg (potassium 34 mg) uncoated tablet, 84, bottle 16796 63621000036106 Potassium Chloride (NPM) 65 mg (potassium 34 mg) uncoated tablet, 84 60921000036109 Potassium Chloride (NPM) 65 mg (potassium 34 mg) uncoated tablet 60471000036102 Potassium Chloride (NPM) 60471000036102 Potassium Chloride (NPM) 63631000036108 potassium chloride 65 mg (potassium 34 mg) tablet, 84 60931000036106 potassium chloride 65 mg (potassium 34 mg) tablet 21274011000036107 potassium chloride +19148011000036108 Natrilix 2.5 mg film-coated tablet, 90, blister pack 45361 12447011000036101 Natrilix 2.5 mg film-coated tablet, 90 5468011000036108 Natrilix 2.5 mg film-coated tablet 50211000168107 Natrilix 50211000168107 Natrilix 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +919691000168109 Tranexamic Acid (Apo) 500 mg film-coated tablet, 100, blister pack 272732 919681000168106 Tranexamic Acid (Apo) 500 mg film-coated tablet, 100 919671000168108 Tranexamic Acid (Apo) 500 mg film-coated tablet 919661000168102 Tranexamic Acid (Apo) 919661000168102 Tranexamic Acid (Apo) 26862011000036101 tranexamic acid 500 mg tablet, 100 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +19390011000036107 Neotigason 10 mg hard capsule, 100, blister pack 52455 12675011000036105 Neotigason 10 mg hard capsule, 100 4617011000036104 Neotigason 10 mg hard capsule 2993011000036100 Neotigason 2993011000036100 Neotigason 27277011000036104 acitretin 10 mg capsule, 100 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +1032121000168105 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 28, bottle 173488 1032111000168103 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 28 1032101000168101 Atorvastatin (Ranbaxy) 40 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890251000168102 atorvastatin 40 mg tablet, 28 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1073971000168100 Cold and Flu Day and Night (Medreich) (18 x Day tablets, 6 x Night tablets), 24, blister pack 203127 1073961000168106 Cold and Flu Day and Night (Medreich) (18 x Day tablets, 6 x Night tablets), 24 1073951000168109 Cold and Flu Day and Night (Night) (Medreich) film-coated tablet 1073911000168108 Cold and Flu Day and Night (Medreich) 1073931000168103 Cold and Flu Day and Night (Night) (Medreich) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1073971000168100 Cold and Flu Day and Night (Medreich) (18 x Day tablets, 6 x Night tablets), 24, blister pack 203127 1073961000168106 Cold and Flu Day and Night (Medreich) (18 x Day tablets, 6 x Night tablets), 24 1073941000168107 Cold and Flu Day and Night (Day) (Medreich) film-coated tablet 1073911000168108 Cold and Flu Day and Night (Medreich) 1073921000168101 Cold and Flu Day and Night (Day) (Medreich) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +20346011000036104 Salbutamol (Terry White Chemists) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 76225 13555011000036106 Salbutamol (Terry White Chemists) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6837011000036109 Salbutamol (Terry White Chemists) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 3642011000036105 Salbutamol (Terry White Chemists) 3642011000036105 Salbutamol (Terry White Chemists) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +44763011000036100 Repreve 250 microgram film-coated tablet, 12, blister pack 96866 42208011000036108 Repreve 250 microgram film-coated tablet, 12 40391011000036101 Repreve 250 microgram film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 46968011000036109 ropinirole 250 microgram tablet, 12 45364011000036108 ropinirole 250 microgram tablet 44882011000036106 ropinirole +19632011000036107 Tegretol 100 mg/5 mL oral liquid suspension, 300 mL, bottle 59160 12901011000036103 Tegretol 100 mg/5 mL oral liquid suspension, 300 mL 6191011000036104 Tegretol 100 mg/5 mL oral liquid suspension, 5 mL 2231000168106 Tegretol 2231000168106 Tegretol 27426011000036102 carbamazepine 100 mg/5 mL oral liquid, 300 mL 22773011000036102 carbamazepine 100 mg/5 mL oral liquid 21319011000036108 carbamazepine +39399011000036104 Tasigna 200 mg hard capsule, 28, blister pack 133086 39283011000036108 Tasigna 200 mg hard capsule, 28 39204011000036106 Tasigna 200 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 39480011000036101 nilotinib 200 mg capsule, 28 39436011000036107 nilotinib 200 mg capsule 39428011000036108 nilotinib +60779011000036104 Vectavir pump pack 1% cream, 2 g, bottle 54743 56737011000036104 Vectavir pump pack 1% cream, 2 g 54057011000036108 Vectavir pump pack 1% cream 53127011000036101 Vectavir 53127011000036101 Vectavir 63540011000036106 penciclovir 1% cream, 2 g 62007011000036108 penciclovir 1% cream 61783011000036103 penciclovir +952891000168109 Gabitril 2.5 mg film-coated tablet, 50, bottle 121176 952881000168106 Gabitril 2.5 mg film-coated tablet, 50 952831000168105 Gabitril 2.5 mg film-coated tablet 3197011000036101 Gabitril 3197011000036101 Gabitril 952871000168108 tiagabine 2.5 mg tablet, 50 952821000168107 tiagabine 2.5 mg tablet 21707011000036103 tiagabine +1069651000168108 Analgesic/Calmative (Sandoz) uncoated tablet, 20, blister pack 211514 1069641000168106 Analgesic/Calmative (Sandoz) uncoated tablet, 20 1069611000168107 Analgesic/Calmative (Sandoz) uncoated tablet 1069601000168109 Analgesic/Calmative (Sandoz) 1069601000168109 Analgesic/Calmative (Sandoz) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +906811000168106 Celecoxib (LAPL) 200 mg hard capsule, 30, blister pack 196187 906801000168108 Celecoxib (LAPL) 200 mg hard capsule, 30 906731000168108 Celecoxib (LAPL) 200 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +865101000168101 Amitriptyline (CH) 10 mg tablet, 250, bottle 232123 865091000168106 Amitriptyline (CH) 10 mg tablet, 250 865031000168107 Amitriptyline (CH) 10 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +73339011000036104 Amoxycillin (Ranbaxy) 250 mg hard capsule, 20, blister pack 152852 73133011000036109 Amoxycillin (Ranbaxy) 250 mg hard capsule, 20 72964011000036107 Amoxycillin (Ranbaxy) 250 mg hard capsule 72924011000036100 Amoxycillin (Ranbaxy) 72924011000036100 Amoxycillin (Ranbaxy) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +73339011000036104 Amoxycillin (Ranbaxy) 250 mg hard capsule, 20, blister pack 207006 73133011000036109 Amoxycillin (Ranbaxy) 250 mg hard capsule, 20 72964011000036107 Amoxycillin (Ranbaxy) 250 mg hard capsule 72924011000036100 Amoxycillin (Ranbaxy) 72924011000036100 Amoxycillin (Ranbaxy) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +59754011000036101 Paracetamol (Guardian) 500 mg uncoated tablet, 48, blister pack 100679 55650011000036108 Paracetamol (Guardian) 500 mg uncoated tablet, 48 53656011000036104 Paracetamol (Guardian) 500 mg uncoated tablet 53128011000036100 Paracetamol (Guardian) 53128011000036100 Paracetamol (Guardian) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +687851000168107 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, 140 actuations, pump pack 184659 687841000168105 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, 140 actuations 687811000168106 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, actuation 687801000168108 Mometasone Furoate (Apo) 687801000168108 Mometasone Furoate (Apo) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +44279011000036100 Entocort 3 mg modified release capsule, 100, bottle 62812 41750011000036105 Entocort 3 mg modified release capsule, 100 40181011000036107 Entocort 3 mg modified release capsule 39744011000036108 Entocort 39744011000036108 Entocort 46557011000036107 budesonide 3 mg modified release capsule, 100 45217011000036108 budesonide 3 mg modified release capsule 21307011000036104 budesonide +1039111000168105 Atorvastatin (GA) 20 mg film-coated tablet, 30, blister pack 178538 1039101000168107 Atorvastatin (GA) 20 mg film-coated tablet, 30 1039051000168107 Atorvastatin (GA) 20 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +85023011000036105 Gabitril 5 mg film-coated tablet, 50, bottle 120271 84876011000036106 Gabitril 5 mg film-coated tablet, 50 4711011000036104 Gabitril 5 mg film-coated tablet 3197011000036101 Gabitril 3197011000036101 Gabitril 85174011000036102 tiagabine 5 mg tablet, 50 22110011000036109 tiagabine 5 mg tablet 21707011000036103 tiagabine +721071000168102 Keppra-1000 1 g film-coated tablet, 60, blister pack 77558 721061000168108 Keppra-1000 1 g film-coated tablet, 60 720981000168108 Keppra-1000 1 g film-coated tablet 720921000168109 Keppra-1000 720921000168109 Keppra-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +721071000168102 Keppra-1000 1 g film-coated tablet, 60, blister pack 120513 721061000168108 Keppra-1000 1 g film-coated tablet, 60 720981000168108 Keppra-1000 1 g film-coated tablet 720921000168109 Keppra-1000 720921000168109 Keppra-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +813161000168100 Nuromol film-coated tablet, 12, blister pack 225322 813151000168102 Nuromol film-coated tablet, 12 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +18681011000036109 Sinemet 250/25 uncoated tablet, 100, bottle 171666 11319011000036109 Sinemet 250/25 uncoated tablet, 100 4650011000036106 Sinemet 250/25 uncoated tablet 27891000168104 Sinemet 250/25 27891000168104 Sinemet 250/25 28304011000036101 levodopa 250 mg + carbidopa 25 mg tablet, 100 23618011000036103 levodopa 250 mg + carbidopa 25 mg tablet 21326011000036107 levodopa + carbidopa +18681011000036109 Sinemet 250/25 uncoated tablet, 100, bottle 10516 11319011000036109 Sinemet 250/25 uncoated tablet, 100 4650011000036106 Sinemet 250/25 uncoated tablet 27891000168104 Sinemet 250/25 27891000168104 Sinemet 250/25 28304011000036101 levodopa 250 mg + carbidopa 25 mg tablet, 100 23618011000036103 levodopa 250 mg + carbidopa 25 mg tablet 21326011000036107 levodopa + carbidopa +20709011000036103 Actonel Once-a-Week 35 mg film-coated tablet, 4, blister pack 82746 13880011000036107 Actonel Once-a-Week 35 mg film-coated tablet, 4 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 700024831000036105 Actonel Once-a-Week 700024831000036105 Actonel Once-a-Week 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +135691000036109 Palexia SR 200 mg modified release tablet, 28, blister pack 165356 135071000036103 Palexia SR 200 mg modified release tablet, 28 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 135081000036101 tapentadol 200 mg modified release tablet, 28 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +44521011000036108 Cosudex 150 mg film-coated tablet, 28, blister pack 77715 41974011000036106 Cosudex 150 mg film-coated tablet, 28 40297011000036101 Cosudex 150 mg film-coated tablet 4172011000036106 Cosudex 4172011000036106 Cosudex 46753011000036104 bicalutamide 150 mg tablet, 28 45300011000036102 bicalutamide 150 mg tablet 21879011000036101 bicalutamide +922501000168104 Topiramate (Chemmart) 50 mg film-coated tablet, 60, blister pack 124738 922491000168106 Topiramate (Chemmart) 50 mg film-coated tablet, 60 922481000168108 Topiramate (Chemmart) 50 mg film-coated tablet 922471000168105 Topiramate (Chemmart) 922471000168105 Topiramate (Chemmart) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +18318011000036107 Simvastatin (GenRx) 40 mg film-coated tablet, 30, blister pack 131588 11298011000036107 Simvastatin (GenRx) 40 mg film-coated tablet, 30 5385011000036109 Simvastatin (GenRx) 40 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +18318011000036107 Simvastatin (GenRx) 40 mg film-coated tablet, 30, blister pack 104523 11298011000036107 Simvastatin (GenRx) 40 mg film-coated tablet, 30 5385011000036109 Simvastatin (GenRx) 40 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +890821000168106 Canpek 16/12.5 uncoated tablet, 7, blister pack 198392 890811000168104 Canpek 16/12.5 uncoated tablet, 7 890791000168103 Canpek 16/12.5 uncoated tablet 890781000168101 Canpek 16/12.5 890781000168101 Canpek 16/12.5 890801000168102 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 7 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +961591000168105 Bisoprolol (Apo) 1.25 mg tablet, 7, blister pack 182108 961581000168107 Bisoprolol (Apo) 1.25 mg tablet, 7 961571000168109 Bisoprolol (Apo) 1.25 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 46794011000036107 bisoprolol fumarate 1.25 mg tablet, 7 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1021891000168106 Atelvia 35 mg film-coated tablet, 1, blister pack 163753 1021881000168108 Atelvia 35 mg film-coated tablet, 1 1021871000168105 Atelvia 35 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +798631000168105 Abyraz 10 mg uncoated tablet, 56, blister pack 159503 798621000168107 Abyraz 10 mg uncoated tablet, 56 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787401000168102 aripiprazole 10 mg tablet, 56 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +929670011000036106 Acris Once-a-Week 35 mg film-coated tablet, 12, blister pack 163785 929506011000036105 Acris Once-a-Week 35 mg film-coated tablet, 12 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 22031000168106 Acris Once-a-Week 22031000168106 Acris Once-a-Week 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +925541000168105 Androgel 1% (25 mg/2.5 g) gel, 50 x 2.5 g sachets 96122 925531000168101 Androgel 1% (25 mg/2.5 g) gel, 50 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46946011000036104 testosterone 1% (25 mg/2.5 g) gel, 50 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +670671000168107 Diclofenac Sodium (AN) 50 mg enteric tablet, 50, blister pack 188547 670661000168101 Diclofenac Sodium (AN) 50 mg enteric tablet, 50 670651000168103 Diclofenac Sodium (AN) 50 mg enteric tablet 670611000168104 Diclofenac Sodium (AN) 670611000168104 Diclofenac Sodium (AN) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +1003161000168102 Levetiracetam 1000 (AN) 1 g film-coated tablet, 60, blister pack 189881 1003151000168104 Levetiracetam 1000 (AN) 1 g film-coated tablet, 60 1003141000168101 Levetiracetam 1000 (AN) 1 g film-coated tablet 1003131000168105 Levetiracetam 1000 (AN) 1003131000168105 Levetiracetam 1000 (AN) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +79083011000036109 Sodium Chloride (B Braun) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bottle 49335 78877011000036107 Sodium Chloride (B Braun) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bottle 78680011000036109 Sodium Chloride (B Braun) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bottle 78605011000036104 Sodium Chloride (B Braun) 78605011000036104 Sodium Chloride (B Braun) 71354011000036107 sodium chloride 0.9% (4.5 g/500 mL) injection, 500 mL bottle 69968011000036109 sodium chloride 0.9% (4.5 g/500 mL) injection, bottle 21308011000036103 sodium chloride +1065311000168104 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 36, blister pack 294343 1065301000168102 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 36 1065171000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 764201000168108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 36 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +892471000168106 Candesartan HCT 32/25 (Alphapharm) tablet, 30, blister pack 206483 892461000168100 Candesartan HCT 32/25 (Alphapharm) tablet, 30 892431000168108 Candesartan HCT 32/25 (Alphapharm) tablet 892421000168105 Candesartan HCT 32/25 (Alphapharm) 892421000168105 Candesartan HCT 32/25 (Alphapharm) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1004771000168106 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags 72876 1004761000168100 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags 1004741000168104 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 100 mL bag 36801000168105 Naropin 0.2% with Fentanyl 400 microgram/100 mL 36801000168105 Naropin 0.2% with Fentanyl 400 microgram/100 mL 1004751000168102 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, 5 x 100 mL bags 1004731000168108 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, bag 34842011000036102 ropivacaine + fentanyl +43841011000036109 Mirtazapine (GenRx) 15 mg film-coated tablet, 30, blister pack 127669 41338011000036107 Mirtazapine (GenRx) 15 mg film-coated tablet, 30 39908011000036103 Mirtazapine (GenRx) 15 mg film-coated tablet 32202011000036106 Mirtazapine (GenRx) 32202011000036106 Mirtazapine (GenRx) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +752581000168103 Oxycodone (WT) 20 mg hard capsule, 20, bottle 227855 752571000168101 Oxycodone (WT) 20 mg hard capsule, 20 752561000168107 Oxycodone (WT) 20 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +1091011000168101 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 24, blister pack 286271 1091001000168104 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 24 1090951000168105 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +926919011000036103 Siterone 50 mg uncoated tablet, 50, blister pack 90402 926313011000036108 Siterone 50 mg uncoated tablet, 50 925755011000036103 Siterone 50 mg uncoated tablet 925504011000036108 Siterone 925504011000036108 Siterone 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +1034731000168100 Atomoxetine (CH) 18 mg hard capsule, 7, blister pack 234827 1034721000168103 Atomoxetine (CH) 18 mg hard capsule, 7 1034711000168105 Atomoxetine (CH) 18 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +965931000168103 Liprace 2.5 mg uncoated tablet, 30, bottle 91375 963231000168107 Liprace 2.5 mg uncoated tablet, 30 963221000168109 Liprace 2.5 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 927301011000036106 lisinopril 2.5 mg tablet, 30 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +1025821000168107 Neuroccord 300 mg hard capsule, 60, bottle 235861 1025811000168100 Neuroccord 300 mg hard capsule, 60 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +704631000168103 Esomeprazole (AN) 20 mg enteric tablet, 30, blister pack 205844 704621000168101 Esomeprazole (AN) 20 mg enteric tablet, 30 704611000168108 Esomeprazole (AN) 20 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +1066521000168107 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 24, blister pack 161545 1066511000168100 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 24 1066481000168107 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +18572011000036100 Didronel 200 mg uncoated tablet, 60, bottle 14438 12025011000036103 Didronel 200 mg uncoated tablet, 60 5083011000036109 Didronel 200 mg uncoated tablet 3484011000036107 Didronel 3484011000036107 Didronel 26859011000036101 etidronate disodium 200 mg tablet, 60 22513011000036109 etidronate disodium 200 mg tablet 21656011000036103 etidronate disodium +1069011000168103 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 10, blister pack 196531 1069001000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 10 1068991000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +914531000168107 Famvir 250 mg film-coated tablet, 14, blister pack 51389 914521000168109 Famvir 250 mg film-coated tablet, 14 5598011000036100 Famvir 250 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 86449011000036103 famciclovir 250 mg tablet, 14 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +19373011000036108 Plendil ER 5 mg modified release tablet, 30, blister pack 51775 12660011000036105 Plendil ER 5 mg modified release tablet, 30 5836011000036108 Plendil ER 5 mg modified release tablet 12021000168103 Plendil ER 12021000168103 Plendil ER 27475011000036108 felodipine 5 mg modified release tablet, 30 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +121391000036103 Donepezil Hydrochloride (Pharmacor) 10 mg film-coated tablet, 28, blister pack 167194 120301000036102 Donepezil Hydrochloride (Pharmacor) 10 mg film-coated tablet, 28 119741000036101 Donepezil Hydrochloride (Pharmacor) 10 mg film-coated tablet 119181000036106 Donepezil Hydrochloride (Pharmacor) 119181000036106 Donepezil Hydrochloride (Pharmacor) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +951201000168105 Modafinil (Sandoz) 100 mg uncoated tablet, 30, blister pack 269914 951191000168107 Modafinil (Sandoz) 100 mg uncoated tablet, 30 951161000168100 Modafinil (Sandoz) 100 mg uncoated tablet 951091000168106 Modafinil (Sandoz) 951091000168106 Modafinil (Sandoz) 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +865481000168103 Amitriptyline (GPPL) 25 mg tablet, 250, bottle 232137 865471000168101 Amitriptyline (GPPL) 25 mg tablet, 250 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 863131000168107 amitriptyline hydrochloride 25 mg tablet, 250 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +135851000036101 Cefepime (AFT) 1 g powder for injection, 1 vial 196279 135271000036107 Cefepime (AFT) 1 g powder for injection, 1 vial 134421000036105 Cefepime (AFT) 1 g powder for injection, vial 134151000036105 Cefepime (AFT) 134151000036105 Cefepime (AFT) 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +121351000036107 Quetiapine (Pharmacy Choice) 100 mg film-coated tablet, 90, blister pack 162407 120241000036107 Quetiapine (Pharmacy Choice) 100 mg film-coated tablet, 90 119481000036103 Quetiapine (Pharmacy Choice) 100 mg film-coated tablet 119201000036105 Quetiapine (Pharmacy Choice) 119201000036105 Quetiapine (Pharmacy Choice) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +69364011000036106 Betadine Cold Sore Paint Pain Relief Formula paint, 8 mL, bottle 29717 67164011000036107 Betadine Cold Sore Paint Pain Relief Formula paint, 8 mL 65367011000036105 Betadine Cold Sore Paint Pain Relief Formula paint 61551000168105 Betadine Cold Sore Paint Pain Relief Formula 61551000168105 Betadine Cold Sore Paint Pain Relief Formula 71727011000036101 povidone-iodine 10% + ethanol 30% + lauromacrogol-400 1% paint, 8 mL 70152011000036100 povidone-iodine 10% + ethanol 30% + lauromacrogol-400 1% paint 69796011000036104 povidone-iodine + ethanol + lauromacrogol-400 +891141000168104 Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial 158423 891131000168108 Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial 891111000168103 Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial 922906011000036108 Mozobil 922906011000036108 Mozobil 891121000168105 plerixafor 24 mg/1.2 mL injection, 1.2 mL vial 891101000168101 plerixafor 24 mg/1.2 mL injection, vial 923939011000036101 plerixafor +1081531000168100 Clindamycin (Mylan) 600 mg/4 mL injection solution, 10 x 4 mL vials 191745 1081521000168103 Clindamycin (Mylan) 600 mg/4 mL injection solution, 10 x 4 mL vials 1081501000168107 Clindamycin (Mylan) 600 mg/4 mL injection solution, 4 mL vial 810961000168107 Clindamycin (Mylan) 810961000168107 Clindamycin (Mylan) 1081511000168105 clindamycin 600 mg/4 mL injection, 10 x 4 mL vials 1081491000168100 clindamycin 600 mg/4 mL injection, vial 21255011000036108 clindamycin +33494011000036108 Vagifem 25 microgram modified release pessary, 15, blister pack 10265 33239011000036100 Vagifem 25 microgram modified release pessary, 15 33004011000036100 Vagifem 25 microgram modified release pessary 3671011000036103 Vagifem 3671011000036103 Vagifem 33772011000036103 estradiol 25 microgram modified release pessary, 15 33653011000036102 estradiol 25 microgram modified release pessary 21238011000036103 estradiol +940481000168105 Humira 40 mg/0.8 mL injection solution, 3 x 0.8 mL syringes 199412 940471000168107 Humira 40 mg/0.8 mL injection solution, 3 x 0.8 mL syringes 7406011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 940461000168101 adalimumab 40 mg/0.8 mL injection, 3 x 0.8 mL syringes 23474011000036101 adalimumab 40 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +824791000168104 Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe 147331 824781000168102 Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe 824761000168106 Havrix 1440 ELISA units/mL injection suspension, syringe 73776011000036105 Havrix 73776011000036105 Havrix 824771000168100 hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL syringe 824751000168109 hepatitis A adult vaccine 1440 ELISA units/mL injection, syringe 824641000168102 hepatitis A vaccine +60987011000036106 Progan Promethazine Elixir 1 mg/mL oral liquid solution, 200 mL, bottle 63256 56930011000036105 Progan Promethazine Elixir 1 mg/mL oral liquid solution, 200 mL 54125011000036108 Progan Promethazine Elixir 1 mg/mL oral liquid solution 11951000168100 Progan Promethazine Elixir 11951000168100 Progan Promethazine Elixir 63644011000036105 promethazine hydrochloride 1 mg/mL oral liquid, 200 mL 62044011000036106 promethazine hydrochloride 1 mg/mL oral liquid 21237011000036104 promethazine +717461000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 90, blister pack 149417 717451000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 90 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716961000168106 omeprazole 20 mg enteric capsule, 90 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +957341000168109 Gemfibrozil (WL) 600 mg film-coated tablet, 60, bottle 56654 957331000168100 Gemfibrozil (WL) 600 mg film-coated tablet, 60 957321000168103 Gemfibrozil (WL) 600 mg film-coated tablet 957311000168105 Gemfibrozil (WL) 957311000168105 Gemfibrozil (WL) 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +20755011000036105 Strattera 25 mg hard capsule, 28, blister pack 90594 13924011000036104 Strattera 25 mg hard capsule, 28 7212011000036109 Strattera 25 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +923792011000036105 Evoltra 20 mg/20 mL concentrated injection, 20 mL vial 154991 923352011000036101 Evoltra 20 mg/20 mL concentrated injection, 20 mL vial 923027011000036102 Evoltra 20 mg/20 mL concentrated injection, 20 mL vial 922920011000036101 Evoltra 922920011000036101 Evoltra 924151011000036102 clofarabine 20 mg/20 mL injection, 20 mL vial 923968011000036104 clofarabine 20 mg/20 mL injection, vial 923933011000036104 clofarabine +69490011000036108 Strepsils Plus lozenge, 8, blister pack 50509 67290011000036102 Strepsils Plus lozenge, 8 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71838011000036104 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +79631011000036105 Roxithromycin (GA) 150 mg film-coated tablet, 10, blister pack 154656 79501011000036106 Roxithromycin (GA) 150 mg film-coated tablet, 10 79385011000036109 Roxithromycin (GA) 150 mg film-coated tablet 79350011000036109 Roxithromycin (GA) 79350011000036109 Roxithromycin (GA) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +20266011000036104 Pamisol 15 mg/5 mL concentrated injection, 5 mL vial 75106 13476011000036105 Pamisol 15 mg/5 mL concentrated injection, 5 mL vial 6759011000036100 Pamisol 15 mg/5 mL concentrated injection, 5 mL vial 3449011000036103 Pamisol 3449011000036103 Pamisol 27765011000036107 pamidronate disodium 15 mg/5 mL injection, 5 mL vial 23096011000036106 pamidronate disodium 15 mg/5 mL injection, vial 21339011000036101 pamidronate disodium +1064671000168103 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 12, blister pack 199369 1064661000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 12 1064611000168106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 63876011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 12 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +865241000168107 Amitriptyline (CH) 25 mg tablet, 50, bottle 232125 865161000168100 Amitriptyline (CH) 25 mg tablet, 50 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +43922011000036105 Pravastatin Sodium (Generic Health) 20 mg film-coated tablet, 30, blister pack 139600 41414011000036102 Pravastatin Sodium (Generic Health) 20 mg film-coated tablet, 30 39812011000036108 Pravastatin Sodium (Generic Health) 20 mg film-coated tablet 39647011000036106 Pravastatin Sodium (Generic Health) 39647011000036106 Pravastatin Sodium (Generic Health) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1066841000168104 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 20, blister pack 197885 1066831000168108 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 20 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +87684011000036108 Famciclovir (Apo) 250 mg film-coated tablet, 20, bottle 160560 87482011000036102 Famciclovir (Apo) 250 mg film-coated tablet, 20 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +953051000168102 Finasteride (APL) 1 mg film-coated tablet, 30, blister pack 210615 953041000168104 Finasteride (APL) 1 mg film-coated tablet, 30 953011000168103 Finasteride (APL) 1 mg film-coated tablet 951741000168100 Finasteride (APL) 951741000168100 Finasteride (APL) 46555011000036102 finasteride 1 mg tablet, 30 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +1056011000168102 Erelzi 50 mg/mL injection solution, 4 x 1 mL syringes 281784 1056001000168100 Erelzi 50 mg/mL injection solution, 4 x 1 mL syringes 1055941000168109 Erelzi 50 mg/mL injection solution, syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 79241011000036109 etanercept 50 mg/mL injection, 4 x 1 mL syringes 79116011000036107 etanercept 50 mg/mL injection, syringe 21347011000036107 etanercept +104191000036106 Irbesartan (Chemmart) 150 mg tablet, 30, blister pack 169796 101371000036108 Irbesartan (Chemmart) 150 mg tablet, 30 98761000036102 Irbesartan (Chemmart) 150 mg tablet 97631000036103 Irbesartan (Chemmart) 97631000036103 Irbesartan (Chemmart) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +104191000036106 Irbesartan (Chemmart) 150 mg tablet, 30, blister pack 216057 101371000036108 Irbesartan (Chemmart) 150 mg tablet, 30 98761000036102 Irbesartan (Chemmart) 150 mg tablet 97631000036103 Irbesartan (Chemmart) 97631000036103 Irbesartan (Chemmart) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +953411000168105 Gabapentin (AN) 400 mg hard capsule, 50, blister pack 263842 953401000168107 Gabapentin (AN) 400 mg hard capsule, 50 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953391000168105 gabapentin 400 mg capsule, 50 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +884611000168105 Lamitan 25 mg tablet, 56, blister pack 150751 884601000168107 Lamitan 25 mg tablet, 56 884591000168100 Lamitan 25 mg tablet 884551000168105 Lamitan 884551000168105 Lamitan 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +20945011000036102 Dimirel 3 mg uncoated tablet, 30, blister pack 94477 14100011000036101 Dimirel 3 mg uncoated tablet, 30 7377011000036106 Dimirel 3 mg uncoated tablet 3387011000036106 Dimirel 3387011000036106 Dimirel 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +657401000168100 Escitalopram (AN) 10 mg film-coated tablet, 28, blister pack 190287 657391000168102 Escitalopram (AN) 10 mg film-coated tablet, 28 657381000168100 Escitalopram (AN) 10 mg film-coated tablet 657371000168103 Escitalopram (AN) 657371000168103 Escitalopram (AN) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +19540011000036101 Zyprexa 5 mg film-coated tablet, 28, blister pack 56604 12812011000036102 Zyprexa 5 mg film-coated tablet, 28 6103011000036101 Zyprexa 5 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1034411000168100 Paracetamol Soluble (Amcal) 500 mg effervescent tablet, 20, strip pack 220687 1034401000168103 Paracetamol Soluble (Amcal) 500 mg effervescent tablet, 20 1034391000168100 Paracetamol Soluble (Amcal) 500 mg effervescent tablet 1034381000168103 Paracetamol Soluble (Amcal) 1034381000168103 Paracetamol Soluble (Amcal) 83211000036104 paracetamol 500 mg effervescent tablet, 20 83101000036106 paracetamol 500 mg effervescent tablet 21433011000036107 paracetamol +140751000036100 Candesartan Cilexetil (RBX) 16 mg uncoated tablet, 30, blister pack 195473 139211000036103 Candesartan Cilexetil (RBX) 16 mg uncoated tablet, 30 137611000036109 Candesartan Cilexetil (RBX) 16 mg uncoated tablet 137351000036102 Candesartan Cilexetil (RBX) 137351000036102 Candesartan Cilexetil (RBX) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +56681000036109 Meropenem (Sandoz) 1 g powder for injection, 10 vials 163772 53121000036106 Meropenem (Sandoz) 1 g powder for injection, 10 vials 49521000036104 Meropenem (Sandoz) 1 g powder for injection, vial 48371000036100 Meropenem (Sandoz) 48371000036100 Meropenem (Sandoz) 46462011000036109 meropenem 1 g injection, 10 vials 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +923715011000036103 Grandicrit 9000 units/0.9 mL injection solution, 6 x 0.9 mL syringes 147851 923310011000036106 Grandicrit 9000 units/0.9 mL injection solution, 6 x 0.9 mL syringes 922994011000036102 Grandicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924124011000036100 epoetin lambda 9000 units/0.9 mL injection, 6 x 0.9 mL syringes 923952011000036107 epoetin lambda 9000 units/0.9 mL injection, syringe 923930011000036107 epoetin lambda +52206011000036102 Metex XR 500 mg modified release tablet, 300, bottle 143465 52093011000036100 Metex XR 500 mg modified release tablet, 300 51989011000036105 Metex XR 500 mg modified release tablet 10431000168107 Metex XR 10431000168107 Metex XR 52328011000036101 metformin hydrochloride 500 mg modified release tablet, 300 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +663841000168100 Solu-Medrol 1 g powder for injection, 5 vials 50698 663831000168109 Solu-Medrol 1 g powder for injection, 5 vials 4573011000036107 Solu-Medrol (methylprednisolone 1 g) powder for injection, vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 663821000168106 methylprednisolone 1 g injection, 5 vials 22145011000036109 methylprednisolone 1 g injection, vial 21605011000036100 methylprednisolone +865561000168108 Amitriptyline (GPPL) 50 mg tablet, 10, blister pack 232138 865551000168106 Amitriptyline (GPPL) 50 mg tablet, 10 865541000168109 Amitriptyline (GPPL) 50 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +56501000036102 Adrenaline (Aspen) 1 in 10 000 (1 mg/10 mL) injection solution, 10 x 10 mL ampoules 162463 52671000036108 Adrenaline (Aspen) 1 in 10 000 (1 mg/10 mL) injection solution, 10 x 10 mL ampoules 49181000036107 Adrenaline (Aspen) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL ampoule 53411011000036103 Adrenaline (Aspen) 53411011000036103 Adrenaline (Aspen) 71356011000036104 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, 10 x 10 mL ampoules 69970011000036103 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +1077601000168108 Atomoxetine (AN) 10 mg hard capsule, 14, blister pack 234797 1077591000168101 Atomoxetine (AN) 10 mg hard capsule, 14 1077561000168108 Atomoxetine (AN) 10 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 829921000168103 atomoxetine 10 mg capsule, 14 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +37951000036106 Escitalopram (Lupin) 5 mg film-coated tablet, 100, bottle 165825 34251000036109 Escitalopram (Lupin) 5 mg film-coated tablet, 100 32931000036101 Escitalopram (Lupin) 5 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +44331011000036108 Desowen 0.05% lotion, 100 mL, bottle 67182 41798011000036103 Desowen 0.05% lotion, 100 mL 40205011000036108 Desowen 0.05% lotion 39556011000036104 Desowen 39556011000036104 Desowen 46604011000036104 desonide 0.05% lotion, 100 mL 45237011000036101 desonide 0.05% lotion 44914011000036107 desonide +1030111000168104 Atilos 15 mg uncoated tablet, 98, blister pack 173476 1030101000168102 Atilos 15 mg uncoated tablet, 98 1029961000168107 Atilos 15 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929268011000036102 pioglitazone 15 mg tablet, 98 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +121511000036104 Heartburn and Acid Indigestion Relief Forte (Pharmacy Action) 300 mg film-coated tablet, 14, blister pack 191838 120431000036101 Heartburn and Acid Indigestion Relief Forte (Pharmacy Action) 300 mg film-coated tablet, 14 119511000036105 Heartburn and Acid Indigestion Relief Forte (Pharmacy Action) 300 mg film-coated tablet 44361000168108 Heartburn and Acid Indigestion Relief Forte (Pharmacy Action) 44361000168108 Heartburn and Acid Indigestion Relief Forte (Pharmacy Action) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +20363011000036104 Trimethoprim with Sulfamethoxazole DS (Chemmart) uncoated tablet, 10, blister pack 76535 13571011000036107 Trimethoprim with Sulfamethoxazole DS (Chemmart) uncoated tablet, 10 6853011000036101 Trimethoprim with Sulfamethoxazole DS (Chemmart) uncoated tablet 48741000168104 Trimethoprim with Sulfamethoxazole DS (Chemmart) 48741000168104 Trimethoprim with Sulfamethoxazole DS (Chemmart) 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +1030071000168106 Atilos 15 mg uncoated tablet, 50, blister pack 173476 1030061000168100 Atilos 15 mg uncoated tablet, 50 1029961000168107 Atilos 15 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929266011000036101 pioglitazone 15 mg tablet, 50 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +730471000168100 Aqium 66% gel, 70 mL, bottle 76927 730461000168106 Aqium 66% gel, 70 mL 730441000168107 Aqium 66% gel 65090011000036106 Aqium 65090011000036106 Aqium 730451000168109 ethanol 66% gel, 70 mL 730431000168103 ethanol 66% gel 69846011000036106 ethanol +824631000168106 Twinrix injection suspension, 1 mL syringe 140575 824621000168108 Twinrix injection suspension, 1 mL syringe 824571000168105 Twinrix injection suspension, 1 mL syringe 73697011000036105 Twinrix 73697011000036105 Twinrix 824611000168101 hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe 824561000168104 hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe 824501000168100 hepatitis A + hepatitis B vaccine +55131000036107 Anticol Max 2.5 mg lozenge, 16, blister pack 142196 51251000036108 Anticol Max 2.5 mg lozenge, 16 49031000036109 Anticol Max 2.5 mg lozenge 48161000036106 Anticol Max 48161000036106 Anticol Max 51261000036106 hexylresorcinol 2.5 mg lozenge, 16 49041000036104 hexylresorcinol 2.5 mg lozenge 69854011000036100 hexylresorcinol +951081000168108 Estamane 25 mg film-coated tablet, 90, blister pack 281353 951071000168105 Estamane 25 mg film-coated tablet, 90 951021000168109 Estamane 25 mg film-coated tablet 951011000168102 Estamane 951011000168102 Estamane 933205301000036105 exemestane 25 mg tablet, 90 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +1064511000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 20, blister pack 202702 1064501000168107 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 20 1064451000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +34657011000036109 Concerta 27 mg modified release tablet, 56, bottle 124502 34246011000036106 Concerta 27 mg modified release tablet, 56 4920011000036108 Concerta 27 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35117011000036107 methylphenidate hydrochloride 27 mg modified release tablet, 56 22152011000036104 methylphenidate hydrochloride 27 mg modified release tablet 21277011000036101 methylphenidate +68672011000036103 Mylanta Original oral liquid suspension, 500 mL, bottle 122007 66665011000036108 Mylanta Original oral liquid suspension, 500 mL 65235011000036101 Mylanta Original oral liquid suspension, 5 mL 34911000168105 Mylanta Original 34911000168105 Mylanta Original 26743011000036104 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid, 500 mL 22136011000036101 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +726141000168103 PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets 726131000168107 PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets 726121000168109 PKU Anamix Junior Chocolate powder for oral liquid, 36 g sachet 30231000168101 PKU Anamix Junior 30231000168101 PKU Anamix Junior 702781000168101 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 30 x 36 g sachets 702761000168105 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 36 g sachet 702751000168108 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine +44457011000036106 Clexane Forte 120 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 74173 41913011000036101 Clexane Forte 120 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 40262011000036101 Clexane Forte 120 mg/0.8 mL injection solution, 0.8 mL syringe 8871000168107 Clexane Forte 8871000168107 Clexane Forte 46702011000036100 enoxaparin sodium 120 mg/0.8 mL injection, 10 x 0.8 mL syringes 45275011000036108 enoxaparin sodium 120 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +20438011000036106 Quitx Step-3 7 mg/24 hours patch, 7, sachet 77930 13641011000036103 Quitx Step-3 7 mg/24 hours patch, 7 6924011000036108 Quitx Step-3 7 mg/24 hours patch 59201000168101 Quitx Step-3 59201000168101 Quitx Step-3 27924011000036107 nicotine 7 mg/24 hours patch, 7 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +929644011000036102 Tensocrepe (36301001) 10 cm x 2.3 m bandage, 1, wrapping 929477011000036105 Tensocrepe (36301001) 10 cm x 2.3 m bandage, 1 929385011000036102 Tensocrepe (36301001) 10 cm x 2.3 m bandage 48871000168103 Tensocrepe (36301001) 48871000168103 Tensocrepe (36301001) 51464011000036108 bandage retention cotton crepe 10 cm x 2.3 m bandage, 1 50971011000036105 bandage retention cotton crepe 10 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +1066681000168105 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 12, blister pack 197884 1066671000168107 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 12 1066591000168109 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1103051000168107 Duoresp Spiromax 400/12 powder for inhalation, 2 x 60 actuations, dry powder inhalers 267386 1103041000168105 Duoresp Spiromax 400/12 powder for inhalation, 2 x 60 actuations 1103011000168106 Duoresp Spiromax 400/12 powder for inhalation, actuation 1103001000168108 Duoresp Spiromax 400/12 1103001000168108 Duoresp Spiromax 400/12 83499011000036101 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 2 x 60 actuations 33685011000036105 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +933901000168101 Centevo 200/50/200 mg film-coated tablet, 200, bottle 238859 933891000168100 Centevo 200/50/200 mg film-coated tablet, 200 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933881000168103 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 200 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +756191000168105 Pramipexole ER (Apo) 1.5 mg modified release tablet, 10, blister pack 225580 756181000168107 Pramipexole ER (Apo) 1.5 mg modified release tablet, 10 756161000168103 Pramipexole ER (Apo) 1.5 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 756171000168109 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet, 10 87760011000036108 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet 37716011000036100 pramipexole +961751000168108 Bisoprolol (Apo) 1.25 mg tablet, 28, blister pack 182108 961741000168106 Bisoprolol (Apo) 1.25 mg tablet, 28 961571000168109 Bisoprolol (Apo) 1.25 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 46790011000036102 bisoprolol fumarate 1.25 mg tablet, 28 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1060261000168102 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 50, blister pack 234539 1060251000168104 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 50 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911521000168107 rosuvastatin 20 mg tablet, 50 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +60030011000036109 Heartburn Relief (Amcal) 150 mg film-coated tablet, 20, blister pack 123664 55992011000036100 Heartburn Relief (Amcal) 150 mg film-coated tablet, 20 53750011000036108 Heartburn Relief (Amcal) 150 mg film-coated tablet 53448011000036104 Heartburn Relief (Amcal) 53448011000036104 Heartburn Relief (Amcal) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +951041000168103 Estamane 25 mg film-coated tablet, 15, blister pack 281353 951031000168107 Estamane 25 mg film-coated tablet, 15 951021000168109 Estamane 25 mg film-coated tablet 951011000168102 Estamane 951011000168102 Estamane 933205271000036107 exemestane 25 mg tablet, 15 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +60647011000036103 Tixylix Dry Cough and Cold 2 Years+ oral liquid solution, 200 mL, bottle 27550 56605011000036106 Tixylix Dry Cough and Cold 2 Years+ oral liquid solution, 200 mL 54001011000036106 Tixylix Dry Cough and Cold 2 Years+ oral liquid solution, 5 mL 36211000168109 Tixylix Dry Cough and Cold 2 Years+ 36211000168109 Tixylix Dry Cough and Cold 2 Years+ 63457011000036104 pholcodine 5 mg/5 mL + promethazine hydrochloride 3.6 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid, 200 mL 61977011000036107 pholcodine 5 mg/5 mL + promethazine hydrochloride 3.6 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid 61809011000036101 pholcodine + promethazine + pseudoephedrine +39281000036101 Sleepwell (Gold Cross) 25 mg uncoated tablet, 20, blister pack 171259 35901000036101 Sleepwell (Gold Cross) 25 mg uncoated tablet, 20 32751000036107 Sleepwell (Gold Cross) 25 mg uncoated tablet 32211000036103 Sleepwell (Gold Cross) 32211000036103 Sleepwell (Gold Cross) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +18791011000036103 Minipress 1 mg uncoated tablet, 100, blister pack 10756 11378011000036108 Minipress 1 mg uncoated tablet, 100 5494011000036104 Minipress 1 mg uncoated tablet 4420011000036105 Minipress 4420011000036105 Minipress 27727011000036107 prazosin 1 mg tablet, 100 23062011000036109 prazosin 1 mg tablet 21544011000036104 prazosin +816091000168101 Espler 50 mg film-coated tablet, 120, blister pack 231446 816081000168104 Espler 50 mg film-coated tablet, 120 815971000168105 Espler 50 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 790671000168105 eplerenone 50 mg tablet, 120 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +21187011000036107 Mucomyst 1 g/5 mL inhalation solution, 6 x 5 mL ampoules 99408 14325011000036106 Mucomyst 1 g/5 mL inhalation solution, 6 x 5 mL ampoules 7611011000036100 Mucomyst 1 g/5 mL inhalation solution, 5 mL ampoule 3641011000036104 Mucomyst 3641011000036104 Mucomyst 28316011000036107 acetylcysteine 1 g/5 mL inhalation solution, 6 x 5 mL ampoules 23630011000036105 acetylcysteine 1 g/5 mL inhalation solution, ampoule 21423011000036105 acetylcysteine +908181000168107 Celecoxib (Generic Health) 100 mg hard capsule, 20, blister pack 196180 908171000168109 Celecoxib (Generic Health) 100 mg hard capsule, 20 908121000168108 Celecoxib (Generic Health) 100 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +37619011000036103 Pilocarpine Hydrochloride Neutral (Pharmatel) 0.5% eye drops solution, 10 mL, bottle 20396 36886011000036104 Pilocarpine Hydrochloride Neutral (Pharmatel) 0.5% eye drops solution, 10 mL 36220011000036104 Pilocarpine Hydrochloride Neutral (Pharmatel) 0.5% eye drops solution 32021000168106 Pilocarpine Hydrochloride Neutral (Pharmatel) 32021000168106 Pilocarpine Hydrochloride Neutral (Pharmatel) 38771011000036108 pilocarpine hydrochloride 0.5% eye drops, 10 mL 23117011000036103 pilocarpine hydrochloride 0.5% eye drops 21254011000036109 pilocarpine +871771000168104 Rehydration Formula Effervescent (Guardian) effervescent tablet, 20, tube 124628 871761000168105 Rehydration Formula Effervescent (Guardian) effervescent tablet, 20 871751000168108 Rehydration Formula Effervescent (Guardian) effervescent tablet 60451000036107 Rehydration Formula Effervescent (Guardian) 60451000036107 Rehydration Formula Effervescent (Guardian) 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +176921000036107 Gynotril 2.5 mg film-coated tablet, 30, blister pack 203379 175131000036103 Gynotril 2.5 mg film-coated tablet, 30 173201000036104 Gynotril 2.5 mg film-coated tablet 172821000036100 Gynotril 172821000036100 Gynotril 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +37911000036107 Epiccord 10 mg/5 mL concentrated injection, 5 mL vial 165692 34201000036108 Epiccord 10 mg/5 mL concentrated injection, 5 mL vial 32831000036106 Epiccord 10 mg/5 mL concentrated injection, 5 mL vial 32301000036107 Epiccord 32301000036107 Epiccord 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +17880011000036100 Grisovin 500 mg film-coated tablet, 28, blister pack 12510 11785011000036108 Grisovin 500 mg film-coated tablet, 28 4866011000036107 Grisovin 500 mg film-coated tablet 4329011000036109 Grisovin 4329011000036109 Grisovin 26769011000036108 griseofulvin 500 mg tablet, 28 22156011000036100 griseofulvin 500 mg tablet 21755011000036103 griseofulvin +18099011000036102 Cymevene 500 mg powder for injection, 5 vials 10047 11146011000036102 Cymevene 500 mg powder for injection, 5 vials 5855011000036102 Cymevene 500 mg powder for injection, 500 mg vial 3961011000036109 Cymevene 3961011000036109 Cymevene 26536011000036105 ganciclovir 500 mg injection, 5 vials 21945011000036106 ganciclovir 500 mg injection, vial 21698011000036108 ganciclovir +931683011000036102 Clopidogrel (RBX) 75 mg film-coated tablet, 28, blister pack 167831 930843011000036108 Clopidogrel (RBX) 75 mg film-coated tablet, 28 930066011000036109 Clopidogrel (RBX) 75 mg film-coated tablet 929897011000036106 Clopidogrel (RBX) 929897011000036106 Clopidogrel (RBX) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +81203011000036107 Hydralyte Ready to Use orange oral liquid, 1 L, bottle 90732 80705011000036106 Hydralyte Ready to Use orange oral liquid, 1 L 80245011000036108 Hydralyte Ready to Use orange oral liquid 33541000168104 Hydralyte Ready to Use 33541000168104 Hydralyte Ready to Use 81754011000036109 sodium chloride 2.5 mg/mL + potassium citrate monohydrate 2.2 mg (potassium 0.02 mmol)/mL + glucose monohydrate 16 mg/mL + citrate monohydrate 4.8 mg/mL oral liquid, 1 L 81307011000036107 sodium chloride 2.5 mg/mL + potassium citrate monohydrate 2.2 mg (potassium 0.02 mmol)/mL + glucose monohydrate 16 mg/mL + citrate monohydrate 4.8 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +18065011000036101 Gentamicin (Pfizer (Perth)) 80 mg/2 mL injection solution, 10 x 2 mL ampoules 11376 11451011000036106 Gentamicin (Pfizer (Perth)) 80 mg/2 mL injection solution, 10 x 2 mL ampoules 5557011000036108 Gentamicin (Pfizer (Perth)) 80 mg/2 mL injection solution, 2 mL ampoule 3722011000036102 Gentamicin (Pfizer (Perth)) 3722011000036102 Gentamicin (Pfizer (Perth)) 26655011000036107 gentamicin 80 mg/2 mL injection, 10 x 2 mL ampoules 22527011000036109 gentamicin 80 mg/2 mL injection, ampoule 21397011000036102 gentamicin +60814011000036105 Optrex 0.01% eye drops, 18 mL, bottle 57571 56770011000036102 Optrex 0.01% eye drops, 18 mL 54072011000036108 Optrex 0.01% eye drops 53471011000036109 Optrex 53471011000036109 Optrex 63560011000036101 naphazoline hydrochloride 0.01% eye drops, 18 mL 62016011000036108 naphazoline hydrochloride 0.01% eye drops 21921011000036106 naphazoline +756151000168100 Macrogol plus Electrolytes (Apo) powder for oral liquid, 20 sachets 204650 756141000168102 Macrogol plus Electrolytes (Apo) powder for oral liquid, 20 sachets 674071000168107 Macrogol plus Electrolytes (Apo) powder for oral liquid, sachet 154511000036103 Macrogol plus Electrolytes (Apo) 154511000036103 Macrogol plus Electrolytes (Apo) 756131000168106 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 20 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +850491000168103 Temozolomide (Amneal) 140 mg hard capsule, 5, sachet 206215 850481000168101 Temozolomide (Amneal) 140 mg hard capsule, 5 850471000168104 Temozolomide (Amneal) 140 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +790361000168106 Oxycontin 60 mg modified release tablet, 100, bottle 200029 790351000168109 Oxycontin 60 mg modified release tablet, 100 789681000168102 Oxycontin 60 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790341000168107 oxycodone hydrochloride 60 mg modified release tablet, 100 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +73328011000036109 Simvastatin (Apo) 80 mg film-coated tablet, 30, blister pack 149815 73123011000036107 Simvastatin (Apo) 80 mg film-coated tablet, 30 72932011000036107 Simvastatin (Apo) 80 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +73328011000036109 Simvastatin (Apo) 80 mg film-coated tablet, 30, blister pack 223451 73123011000036107 Simvastatin (Apo) 80 mg film-coated tablet, 30 72932011000036107 Simvastatin (Apo) 80 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +43731011000036106 Stilnox CR 12.5 mg modified release tablet, 28, blister pack 120713 41247011000036103 Stilnox CR 12.5 mg modified release tablet, 28 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46189011000036100 zolpidem tartrate 12.5 mg modified release tablet, 28 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +20600011000036104 Norfloxacin (Terry White Chemists) 400 mg film-coated tablet, 14, blister pack 80658 13782011000036109 Norfloxacin (Terry White Chemists) 400 mg film-coated tablet, 14 7068011000036100 Norfloxacin (Terry White Chemists) 400 mg film-coated tablet 3997011000036103 Norfloxacin (Terry White Chemists) 3997011000036103 Norfloxacin (Terry White Chemists) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +882561000168100 Spedra 200 mg uncoated tablet, 2, blister pack 228476 882551000168102 Spedra 200 mg uncoated tablet, 2 882501000168101 Spedra 200 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882541000168104 avanafil 200 mg tablet, 2 882491000168108 avanafil 200 mg tablet 882091000168102 avanafil +848161000168103 Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle 219773 848151000168100 Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 24 848121000168108 Reddycal 1.25 g (calcium 500 mg) film-coated tablet 691531000168105 Reddycal 691531000168105 Reddycal 847931000168108 calcium carbonate 1.25 g (calcium 500 mg) tablet, 24 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +18307011000036108 Coversyl Plus LD 2.5/0.625 film-coated tablet, 30, tube 124552 11766011000036103 Coversyl Plus LD 2.5/0.625 film-coated tablet, 30 5753011000036100 Coversyl Plus LD 2.5/0.625 film-coated tablet 581000168100 Coversyl Plus LD 2.5/0.625 581000168100 Coversyl Plus LD 2.5/0.625 26766011000036104 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet, 30 22153011000036106 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +18889011000036100 Cilicaine 1.5 g/3.4 mL injection suspension, 5 x 3.4 mL syringes 19666 12197011000036105 Cilicaine 1.5 g/3.4 mL injection suspension, 5 x 3.4 mL syringes 5125011000036106 Cilicaine 1.5 g/3.4 mL injection suspension, 3.4 mL syringe 55531000168108 Cilicaine 55531000168108 Cilicaine 26979011000036106 procaine benzylpenicillin (procaine penicillin) 1.5 g/3.4 mL injection, 5 x 3.4 mL syringes 22352011000036108 procaine benzylpenicillin (procaine penicillin) 1.5 g/3.4 mL injection, syringe 21306011000036102 procaine benzylpenicillin (procaine penicillin) +743361000168106 Jardiamet 5 mg/1000 mg film-coated tablet, 14, blister pack 229817 743351000168109 Jardiamet 5 mg/1000 mg film-coated tablet, 14 743331000168103 Jardiamet 5 mg/1000 mg film-coated tablet 743311000168108 Jardiamet 5 mg/1000 mg 743311000168108 Jardiamet 5 mg/1000 mg 743341000168107 empagliflozin 5 mg + metformin hydrochloride 1 g tablet, 14 743321000168101 empagliflozin 5 mg + metformin hydrochloride 1 g tablet 743221000168107 empagliflozin + metformin +659821000168100 Telmisartan HCTZ 80/12.5mg (Terry White Chemists) multilayer tablet, 28, blister pack 198239 659811000168107 Telmisartan HCTZ 80/12.5mg (Terry White Chemists) multilayer tablet, 28 659801000168109 Telmisartan HCTZ 80/12.5mg (Terry White Chemists) multilayer tablet 659791000168108 Telmisartan HCTZ 80/12.5mg (Terry White Chemists) 659791000168108 Telmisartan HCTZ 80/12.5mg (Terry White Chemists) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +966091000168109 Claraderm 0.05% cream, 2 g, tube 18412 966081000168106 Claraderm 0.05% cream, 2 g 966061000168102 Claraderm 0.05% cream 966031000168105 Claraderm 966031000168105 Claraderm 966071000168108 alclometasone dipropionate 0.05% cream, 2 g 966051000168104 alclometasone dipropionate 0.05% cream 966041000168101 alclometasone dipropionate +81019011000036102 Co-Diovan 320/25 film-coated tablet, 28, blister pack 135812 80495011000036102 Co-Diovan 320/25 film-coated tablet, 28 80164011000036102 Co-Diovan 320/25 film-coated tablet 54411000168103 Co-Diovan 320/25 54411000168103 Co-Diovan 320/25 81591011000036103 valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 28 81264011000036105 valsartan 320 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +18364011000036101 Hytrin 10 mg uncoated tablet, 28, blister pack 121319 11666011000036107 Hytrin 10 mg uncoated tablet, 28 5213011000036103 Hytrin 10 mg uncoated tablet 3113011000036109 Hytrin 3113011000036109 Hytrin 26734011000036103 terazosin 10 mg tablet, 28 22129011000036108 terazosin 10 mg tablet 21396011000036100 terazosin +929130011000036107 Norfloxacin (Sandoz) 400 mg film-coated tablet, 6, blister pack 76899 928487011000036104 Norfloxacin (Sandoz) 400 mg film-coated tablet, 6 927996011000036107 Norfloxacin (Sandoz) 400 mg film-coated tablet 927816011000036100 Norfloxacin (Sandoz) 927816011000036100 Norfloxacin (Sandoz) 920869011000036100 norfloxacin 400 mg tablet, 6 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +708961000168105 Eliquis 5 mg film-coated tablet, 28, blister pack 193474 708951000168108 Eliquis 5 mg film-coated tablet, 28 134241000036101 Eliquis 5 mg film-coated tablet 933234191000036106 Eliquis 933234191000036106 Eliquis 708941000168106 apixaban 5 mg tablet, 28 134251000036103 apixaban 5 mg tablet 933240151000036106 apixaban +61471011000036101 Paracetamol (Herron) 500 mg film-coated tablet, 24, blister pack 91501 57396011000036105 Paracetamol (Herron) 500 mg film-coated tablet, 24 54295011000036103 Paracetamol (Herron) 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +176881000036100 Signifor 300 microgram/mL injection solution, 60 x 1 mL ampoules 201485 175071000036100 Signifor 300 microgram/mL injection solution, 60 x 1 mL ampoules 173671000036106 Signifor 300 microgram/mL injection solution, ampoule 172571000036103 Signifor 172571000036103 Signifor 175081000036103 pasireotide 300 microgram/mL injection, 60 x 1 mL ampoules 173681000036108 pasireotide 300 microgram/mL injection, ampoule 177231000036100 pasireotide +39321000036105 Levi-1000 1 g film-coated tablet, 60, blister pack 168794 35781000036109 Levi-1000 1 g film-coated tablet, 60 32491000036109 Levi-1000 1 g film-coated tablet 48841000168105 Levi-1000 48841000168105 Levi-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +721791000168104 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL, bottle 15506 721781000168102 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL 721731000168103 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 5 mL 4791000168108 Panadol Children's Elixir 5 to 12 Years 4791000168108 Panadol Children's Elixir 5 to 12 Years 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +37550011000036108 Ovestin 1 mg uncoated tablet, 30, blister pack 14514 36818011000036103 Ovestin 1 mg uncoated tablet, 30 36156011000036100 Ovestin 1 mg uncoated tablet 45321000168104 Ovestin 45321000168104 Ovestin 38710011000036109 estriol 1 mg tablet, 30 37943011000036107 estriol 1 mg tablet 21663011000036100 estriol +44774011000036109 Reminyl 8 mg modified release capsule, 300, bottle 97882 42219011000036103 Reminyl 8 mg modified release capsule, 300 7535011000036101 Reminyl 8 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46979011000036109 galantamine 8 mg modified release capsule, 300 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +730391000168108 Spiolto Respimat inhalation solution, 60 actuations, cartridge 226452 730381000168105 Spiolto Respimat inhalation solution, 60 actuations 730361000168101 Spiolto Respimat inhalation solution, actuation 730331000168109 Spiolto Respimat 730331000168109 Spiolto Respimat 730371000168107 tiotropium 2.5 microgram/actuation + olodaterol 2.5 microgram/actuation inhalation solution, 60 actuations 730351000168103 tiotropium 2.5 microgram/actuation + olodaterol 2.5 microgram/actuation inhalation solution, actuation 730341000168100 tiotropium + olodaterol +32601011000036102 Genotropin Miniquick (7 x 1.6 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76611 32396011000036100 Genotropin Miniquick (7 x 1.6 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 6857011000036105 Genotropin Miniquick (somatropin 1.6 mg) powder for injection, 1.6 mg syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32794011000036107 somatropin 1.6 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 23140011000036108 somatropin 1.6 mg injection, syringe 21295011000036100 somatropin +32601011000036102 Genotropin Miniquick (7 x 1.6 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76611 32396011000036100 Genotropin Miniquick (7 x 1.6 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32794011000036107 somatropin 1.6 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +1077761000168101 Atomoxetine (AN) 100 mg hard capsule, 7, blister pack 234798 1077751000168103 Atomoxetine (AN) 100 mg hard capsule, 7 1077741000168100 Atomoxetine (AN) 100 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +80034011000036101 Topiramate (Sandoz) 200 mg film-coated tablet, 60, bottle 135810 79951011000036108 Topiramate (Sandoz) 200 mg film-coated tablet, 60 79913011000036104 Topiramate (Sandoz) 200 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +91141000036107 Morphine Hydrochloride (Phebra) 200 microgram/mL intrathecal injection, 10 x 1 mL vials 89421000036105 Morphine Hydrochloride (Phebra) 200 microgram/mL intrathecal injection, 10 x 1 mL vials 88161000036104 Morphine Hydrochloride (Phebra) 200 microgram/mL intrathecal injection, vial 87681000036100 Morphine Hydrochloride (Phebra) 87681000036100 Morphine Hydrochloride (Phebra) 89431000036107 morphine hydrochloride trihydrate 200 microgram/mL intrathecal injection, 10 x 1 mL vials 88171000036107 morphine hydrochloride trihydrate 200 microgram/mL intrathecal injection, vial 21252011000036100 morphine +34721011000036108 Methadone Hydrochloride Syrup (Orion) 2.75 mg/mL oral liquid solution, 20 mL, bottle 21175 34305011000036100 Methadone Hydrochloride Syrup (Orion) 2.75 mg/mL oral liquid solution, 20 mL 34028011000036102 Methadone Hydrochloride Syrup (Orion) 2.75 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35154011000036105 methadone hydrochloride 2.75 mg/mL oral liquid, 20 mL 34876011000036104 methadone hydrochloride 2.75 mg/mL oral liquid 21357011000036109 methadone +69640011000036103 Panadol Back and Neck Long Lasting 665 mg modified release tablet, 36, blister pack 78493 67439011000036101 Panadol Back and Neck Long Lasting 665 mg modified release tablet, 36 65666011000036104 Panadol Back and Neck Long Lasting 665 mg modified release tablet 50361000168101 Panadol Back and Neck Long Lasting 50361000168101 Panadol Back and Neck Long Lasting 71969011000036109 paracetamol 665 mg modified release tablet, 36 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +1098711000168109 Ibuprofen Infant Drops (Amcal) 40 mg/mL oral liquid suspension, 50 mL, bottle 232735 1098701000168106 Ibuprofen Infant Drops (Amcal) 40 mg/mL oral liquid suspension, 50 mL 1098691000168106 Ibuprofen Infant Drops (Amcal) 40 mg/mL oral liquid suspension 1098681000168108 Ibuprofen Infant Drops (Amcal) 1098681000168108 Ibuprofen Infant Drops (Amcal) 63165011000036102 ibuprofen 40 mg/mL oral liquid, 50 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +19885011000036100 Zeldox 40 mg hard capsule, 60, blister pack 65527 13132011000036109 Zeldox 40 mg hard capsule, 60 6415011000036104 Zeldox 40 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27570011000036106 ziprasidone 40 mg capsule, 60 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +69537011000036106 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) irrigation solution, 30 x 30 mL ampoules 57021 67337011000036103 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) irrigation solution, 30 x 30 mL ampoules 65617011000036102 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 31461000168102 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) 31461000168102 Chlorhexidine Gluconate 0.015% and Cetrimide 0.15% (Pfizer (Perth)) 71882011000036108 chlorhexidine gluconate 0.015% + cetrimide 0.15% solution, 30 x 30 mL ampoules 70230011000036102 chlorhexidine gluconate 0.015% + cetrimide 0.15% solution, ampoule 69756011000036105 chlorhexidine + cetrimide +44406011000036104 Somac 20 mg enteric tablet, 14, blister pack 70829 41866011000036103 Somac 20 mg enteric tablet, 14 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +660141000168100 Famotidine (AN) 20 mg film-coated tablet, 60, blister pack 186280 660131000168109 Famotidine (AN) 20 mg film-coated tablet, 60 660121000168106 Famotidine (AN) 20 mg film-coated tablet 660111000168104 Famotidine (AN) 660111000168104 Famotidine (AN) 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +86871000036104 Tisseel Duo 500 solution, 10 mL, dual chamber syringe 81929 86581000036104 Tisseel Duo 500 solution, 10 mL 86021000036108 Tisseel Duo 500 solution 85971000036101 Tisseel Duo 500 85971000036101 Tisseel Duo 500 86591000036102 aprotinin 3000 KI units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL + factor XIII 10 units/mL + fibrinogen 70 mg/mL + fibronectin 2 mg/mL + human thrombin 350 units/mL solution, 10 mL 86031000036105 aprotinin 3000 KI units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL + factor XIII 10 units/mL + fibrinogen 70 mg/mL + fibronectin 2 mg/mL + human thrombin 350 units/mL solution 91921000036102 aprotinin + calcium chloride dihydrate + factor XIII + fibrinogen + fibronectin + human thrombin +79717011000036101 Actilyse (1 x 50 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 17905 79528011000036105 Actilyse (1 x 50 mg vial, 1 x 50 mL inert diluent vial), 1 pack 79396011000036101 Actilyse (alteplase 50 mg) powder for injection, 50 mg vial 29761000168106 Actilyse 29761000168106 Actilyse 79834011000036100 alteplase 50 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 79752011000036107 alteplase 50 mg injection, vial 44903011000036108 alteplase +79717011000036101 Actilyse (1 x 50 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 17905 79528011000036105 Actilyse (1 x 50 mg vial, 1 x 50 mL inert diluent vial), 1 pack 636731000168101 Actilyse (inert substance) diluent, 50 mL vial 29761000168106 Actilyse 29761000168106 Actilyse 79834011000036100 alteplase 50 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +987051000168104 Act-3 200 mg soft capsule, 12, blister pack 77290 987041000168101 Act-3 200 mg soft capsule, 12 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63928011000036104 ibuprofen 200 mg capsule, 12 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +18480011000036100 Phenobarbitone Sodium (Fawns & McAllan) 200 mg/mL injection solution, 5 x 1 mL ampoules 13462 11990011000036106 Phenobarbitone Sodium (Fawns & McAllan) 200 mg/mL injection solution, 5 x 1 mL ampoules 4991011000036109 Phenobarbitone Sodium (Fawns & McAllan) 200 mg/mL injection solution, ampoule 3600011000036100 Phenobarbitone Sodium (Fawns & McAllan) 3600011000036100 Phenobarbitone Sodium (Fawns & McAllan) 26833011000036103 phenobarbital (phenobarbitone) sodium 200 mg/mL injection, 5 x 1 mL ampoules 22215011000036102 phenobarbital (phenobarbitone) sodium 200 mg/mL injection, ampoule 21578011000036105 phenobarbital (phenobarbitone) +1025861000168102 Pregabalin (Amneal) 25 mg hard capsule, 56, blister pack 235857 1025851000168104 Pregabalin (Amneal) 25 mg hard capsule, 56 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +18191011000036107 Ransim 80 mg film-coated tablet, 30, blister pack 120617 11646011000036101 Ransim 80 mg film-coated tablet, 30 5342011000036106 Ransim 80 mg film-coated tablet 4405011000036105 Ransim 4405011000036105 Ransim 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +61182011000036104 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 25, bottle 75200 57408011000036102 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 25 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63943011000036107 paracetamol 500 mg tablet, 25 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +661511000168102 Carvedilol (AN) 3.125 mg film-coated tablet, 30, bottle 174790 661501000168100 Carvedilol (AN) 3.125 mg film-coated tablet, 30 661491000168107 Carvedilol (AN) 3.125 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +959741000168104 Ciram 10 mg film-coated tablet, 250, bottle 158857 959731000168108 Ciram 10 mg film-coated tablet, 250 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203031000036104 citalopram 10 mg tablet, 250 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +20127011000036108 Cardizem 60 mg film-coated tablet, 90, bottle 73179 13351011000036107 Cardizem 60 mg film-coated tablet, 90 6636011000036103 Cardizem 60 mg film-coated tablet 60401000168104 Cardizem 60401000168104 Cardizem 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +657241000168104 Irbesartan HCTZ 300/12.5 (AN) film-coated tablet, 30, blister pack 192834 657231000168108 Irbesartan HCTZ 300/12.5 (AN) film-coated tablet, 30 657221000168105 Irbesartan HCTZ 300/12.5 (AN) film-coated tablet 657201000168101 Irbesartan HCTZ 300/12.5 (AN) 657201000168101 Irbesartan HCTZ 300/12.5 (AN) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +752261000168105 Oxycodone (Actavis) 20 mg hard capsule, 60, bottle 227831 752251000168108 Oxycodone (Actavis) 20 mg hard capsule, 60 752221000168100 Oxycodone (Actavis) 20 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +892791000168104 Betahistine (GPPL) 16 mg uncoated tablet, 60, blister pack 212085 892781000168102 Betahistine (GPPL) 16 mg uncoated tablet, 60 892711000168108 Betahistine (GPPL) 16 mg uncoated tablet 892701000168105 Betahistine (GPPL) 892701000168105 Betahistine (GPPL) 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1043221000168109 Pryzex ODT 5 mg orally disintegrating tablet, 10, blister pack 179079 1043211000168102 Pryzex ODT 5 mg orally disintegrating tablet, 10 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043201000168100 olanzapine 5 mg orally disintegrating tablet, 10 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +928864011000036104 Risperibell 1 mg film-coated tablet, 60, blister pack 139802 928226011000036107 Risperibell 1 mg film-coated tablet, 60 927884011000036105 Risperibell 1 mg film-coated tablet 927801011000036108 Risperibell 927801011000036108 Risperibell 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +52172011000036106 Codeine Phosphate Linctus APF (extemporaneous) 5 mg/mL oral liquid solution, 100 mL, dispensing bottle 52067011000036106 Codeine Phosphate Linctus APF (extemporaneous) 5 mg/mL oral liquid solution, 100 mL 51968011000036104 Codeine Phosphate Linctus APF (extemporaneous) 5 mg/mL oral liquid solution 51935011000036103 Codeine Phosphate Linctus APF (extemporaneous) 51935011000036103 Codeine Phosphate Linctus APF (extemporaneous) 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +18146011000036106 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 12534 11799011000036109 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 5490011000036109 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 34231000168108 Ventolin Nebules 34231000168108 Ventolin Nebules 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +69156011000036104 Disprin Direct 300 mg chewable tablet, 24, strip pack 15356 66956011000036105 Disprin Direct 300 mg chewable tablet, 24 65492011000036103 Disprin Direct 300 mg chewable tablet 38641000168105 Disprin Direct 38641000168105 Disprin Direct 87381000036108 aspirin 300 mg chewable tablet, 24 87371000036106 aspirin 300 mg chewable tablet 21719011000036107 aspirin +1073491000168109 Finasteride (Aurobindo) 5 mg film-coated tablet, 28, blister pack 210613 1073481000168106 Finasteride (Aurobindo) 5 mg film-coated tablet, 28 1073471000168108 Finasteride (Aurobindo) 5 mg film-coated tablet 1073461000168102 Finasteride (Aurobindo) 1073461000168102 Finasteride (Aurobindo) 933243481000036102 finasteride 5 mg tablet, 28 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +86048011000036100 Amlodipine (DRLA) 5 mg tablet, 30, blister pack 147596 85639011000036104 Amlodipine (DRLA) 5 mg tablet, 30 85311011000036103 Amlodipine (DRLA) 5 mg tablet 85261011000036108 Amlodipine (DRLA) 85261011000036108 Amlodipine (DRLA) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +81002011000036109 Diflucan Duo (1 x Diflucan One capsule, 1 x Thrush Relief (Johnson and Johnson) cream), 1 pack, composite pack 128452 80489011000036104 Diflucan Duo (1 x Diflucan One capsule, 1 x Thrush Relief (Johnson and Johnson) cream), 1 pack 80161011000036100 Thrush Relief (Johnson and Johnson) 1% cream 80113011000036103 Diflucan Duo 80124011000036109 Thrush Relief (Johnson and Johnson) 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +81002011000036109 Diflucan Duo (1 x Diflucan One capsule, 1 x Thrush Relief (Johnson and Johnson) cream), 1 pack, composite pack 128452 80489011000036104 Diflucan Duo (1 x Diflucan One capsule, 1 x Thrush Relief (Johnson and Johnson) cream), 1 pack 53672011000036101 Diflucan One 150 mg hard capsule 80113011000036103 Diflucan Duo 700012181000036104 Diflucan One 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +18388011000036105 Simvastatin (RL) 40 mg film-coated tablet, 30, bottle 116805 11545011000036101 Simvastatin (RL) 40 mg film-coated tablet, 30 4822011000036102 Simvastatin (RL) 40 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +865341000168101 Amitriptyline (CH) 50 mg tablet, 1000, bottle 232127 865331000168105 Amitriptyline (CH) 50 mg tablet, 1000 865281000168102 Amitriptyline (CH) 50 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +953211000168109 Gabapentin (AN) 300 mg hard capsule, 300, blister pack 263841 953201000168106 Gabapentin (AN) 300 mg hard capsule, 300 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953191000168108 gabapentin 300 mg capsule, 300 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +87742011000036104 Genotropin GoQuick (5 x 12 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack, dual chamber composite pack 166831 87508011000036107 Genotropin GoQuick (5 x 12 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack 7449011000036106 Genotropin (somatropin 12 mg) powder for injection, 12 mg cartridge 5561000168107 Genotropin GoQuick 3050011000036100 Genotropin 87833011000036107 somatropin 12 mg injection [5 cartridges] (&) inert substance diluent [5 x 1 mL cartridges], 1 pack 23496011000036101 somatropin 12 mg injection, cartridge 21295011000036100 somatropin +87742011000036104 Genotropin GoQuick (5 x 12 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack, dual chamber composite pack 166831 87508011000036107 Genotropin GoQuick (5 x 12 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack 637991000168102 Genotropin (inert substance) diluent, 1 mL cartridge 5561000168107 Genotropin GoQuick 3050011000036100 Genotropin 87833011000036107 somatropin 12 mg injection [5 cartridges] (&) inert substance diluent [5 x 1 mL cartridges], 1 pack 630901000168109 inert substance diluent, 1 mL cartridge 21220011000036103 inert substance +50512011000036101 PKU Express 15 powder for oral liquid, 30 x 25 g sachets 49491011000036106 PKU Express 15 powder for oral liquid, 30 x 25 g sachets 247221000168105 PKU Express 15 powder for oral liquid, 25 g sachet 14751000168101 PKU Express 15 14751000168101 PKU Express 15 51476011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 25 g sachets 247011000168109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 25 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1064831000168102 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 40, blister pack 199369 1064821000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 40 1064611000168106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +60831011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 20, blister pack 58353 56787011000036109 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 20 54080011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 63570011000036105 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule, 20 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +21153011000036105 Concorz 100 mg film-coated tablet, 30, blister pack 98698 14295011000036106 Concorz 100 mg film-coated tablet, 30 7581011000036109 Concorz 100 mg film-coated tablet 3452011000036105 Concorz 3452011000036105 Concorz 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +104031000036106 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet, 28, blister pack 213496 101521000036104 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet, 28 99371000036101 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet 97731000036109 Donepezil Hydrochloride (Apo) 97731000036109 Donepezil Hydrochloride (Apo) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +104031000036106 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet, 28, blister pack 168328 101521000036104 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet, 28 99371000036101 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet 97731000036109 Donepezil Hydrochloride (Apo) 97731000036109 Donepezil Hydrochloride (Apo) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +822141000168102 Paclitaxel (Agila) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 176336 822131000168106 Paclitaxel (Agila) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 822121000168108 Paclitaxel (Agila) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 822081000168106 Paclitaxel (Agila) 822081000168106 Paclitaxel (Agila) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +994261000168100 Lansoprazole (Apo) 15 mg enteric capsule, 28, strip pack 159346 961431000168107 Lansoprazole (Apo) 15 mg enteric capsule, 28 961411000168102 Lansoprazole (Apo) 15 mg enteric capsule 52481000168101 Lansoprazole (Apo) 52481000168101 Lansoprazole (Apo) 961421000168109 lansoprazole 15 mg enteric capsule, 28 22811011000036107 lansoprazole 15 mg enteric capsule 21491011000036101 lansoprazole +50328011000036106 Proguide (66000781) yellow 22 cm to 28 cm two layer bandage, 1, carton 49332011000036101 Proguide (66000781) yellow 22 cm to 28 cm two layer bandage, 1 48732011000036104 Proguide (66000781) yellow 22 cm to 28 cm two layer bandage 38051000168101 Proguide (66000781) 38051000168101 Proguide (66000781) 51313011000036103 bandage compression 22 cm to 28 cm two layer bandage, 1 50842011000036107 bandage compression 22 cm to 28 cm two layer bandage 50716011000036103 bandage compression +987771000168105 Zyprexa 15 mg film-coated tablet, 28, blister pack 77388 987761000168104 Zyprexa 15 mg film-coated tablet, 28 987751000168101 Zyprexa 15 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 6871000036104 olanzapine 15 mg tablet, 28 1381000036101 olanzapine 15 mg tablet 21485011000036103 olanzapine +73961000036101 Ionil Scalp Cleanser 2% shampoo, 250 mL, bottle 25281 71981000036107 Ionil Scalp Cleanser 2% shampoo, 250 mL 69981000036103 Ionil Scalp Cleanser 2% shampoo 54341000168106 Ionil Scalp Cleanser 54341000168106 Ionil Scalp Cleanser 71991000036109 salicylic acid 2% shampoo, 250 mL 69991000036101 salicylic acid 2% shampoo 52232011000036106 salicylic acid +1069171000168107 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 12, blister pack 197886 1069161000168101 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 12 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +44423011000036103 Agenerase 15 mg/mL oral liquid solution, 240 mL, bottle 71484 41882011000036100 Agenerase 15 mg/mL oral liquid solution, 240 mL 40239011000036100 Agenerase 15 mg/mL oral liquid solution 39638011000036108 Agenerase 39638011000036108 Agenerase 46685011000036101 amprenavir 15 mg/mL oral liquid, 240 mL 45264011000036103 amprenavir 15 mg/mL oral liquid 44922011000036108 amprenavir +50570011000036108 Durotram XR (once a day) 300 mg modified release tablet, 10, blister pack 134823 49604011000036108 Durotram XR (once a day) 300 mg modified release tablet, 10 48788011000036108 Durotram XR (once a day) 300 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51507011000036106 tramadol hydrochloride 300 mg modified release tablet, 10 50988011000036106 tramadol hydrochloride 300 mg modified release tablet 21486011000036105 tramadol +43714011000036104 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 10 x 200 mL bags 123042 41278011000036103 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 10 x 200 mL bags 39898011000036105 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 200 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46213011000036102 ciprofloxacin 400 mg/200 mL injection, 10 x 200 mL bags 45033011000036102 ciprofloxacin 400 mg/200 mL injection, bag 21245011000036105 ciprofloxacin +803451000168108 Abilify ODT 20 mg orally disintegrating tablet, 98, blister pack 128903 803441000168106 Abilify ODT 20 mg orally disintegrating tablet, 98 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803431000168102 aripiprazole 20 mg orally disintegrating tablet, 98 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +44607011000036103 Doxy Acne Pack 50 mg film-coated tablet, 7, blister pack 83351 42060011000036101 Doxy Acne Pack 50 mg film-coated tablet, 7 40342011000036101 Doxy Acne Pack 50 mg film-coated tablet 15141000168101 Doxy Acne Pack 15141000168101 Doxy Acne Pack 46827011000036107 doxycycline 50 mg tablet, 7 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +61666011000036103 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 96, blister pack 97350 57588011000036105 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 96 54357011000036107 Paracetamol Tabsule (Herron) 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +931571000168103 Centevo 100/25/200 mg film-coated tablet, 10, bottle 238855 931561000168109 Centevo 100/25/200 mg film-coated tablet, 10 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931551000168107 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 10 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +781771000168105 Rosuvastatin (Amneal) 10 mg film-coated tablet, 30, blister pack 183639 781761000168104 Rosuvastatin (Amneal) 10 mg film-coated tablet, 30 781751000168101 Rosuvastatin (Amneal) 10 mg film-coated tablet 781711000168102 Rosuvastatin (Amneal) 781711000168102 Rosuvastatin (Amneal) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +123291000036108 Tielle (MTL103E) 18 cm x 18 cm island dressing, 5, carton 123001000036109 Tielle (MTL103E) 18 cm x 18 cm island dressing, 5 122751000036103 Tielle (MTL103E) 18 cm x 18 cm island dressing 46911000168101 Tielle (MTL103E) 46911000168101 Tielle (MTL103E) 123021000036104 dressing hydropolymer high exudate semi-permeable non-adherent adhesive absorbent foam 18 cm x 18 cm island dressing, 5 122761000036100 dressing hydropolymer high exudate semi-permeable non-adherent adhesive absorbent foam 18 cm x 18 cm island dressing 123411000036104 dressing hydropolymer high exudate semi-permeable non-adherent adhesive absorbent foam +856741000168101 Entrip 25 mg film-coated tablet, 100, blister pack 232154 856731000168105 Entrip 25 mg film-coated tablet, 100 856661000168105 Entrip 25 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +103871000036102 Epirubicin Hydrochloride (SZ) 200 mg/100 mL concentrated injection, 100 mL vial 165693 101231000036104 Epirubicin Hydrochloride (SZ) 200 mg/100 mL concentrated injection, 100 mL vial 98291000036104 Epirubicin Hydrochloride (SZ) 200 mg/100 mL concentrated injection, 100 mL vial 97911000036103 Epirubicin Hydrochloride (SZ) 97911000036103 Epirubicin Hydrochloride (SZ) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +123311000036109 Tetrabenazine (Valeant) 25 mg uncoated tablet, 112, bottle 13695 123031000036102 Tetrabenazine (Valeant) 25 mg uncoated tablet, 112 122811000036108 Tetrabenazine (Valeant) 25 mg uncoated tablet 122681000036101 Tetrabenazine (Valeant) 122681000036101 Tetrabenazine (Valeant) 26837011000036107 tetrabenazine 25 mg tablet, 112 22218011000036108 tetrabenazine 25 mg tablet 21497011000036109 tetrabenazine +907861000168107 Celecoxib (LAPL) 100 mg hard capsule, 30, blister pack 196179 907851000168105 Celecoxib (LAPL) 100 mg hard capsule, 30 907731000168106 Celecoxib (LAPL) 100 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 907411000168106 celecoxib 100 mg capsule, 30 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1008641000168100 Cefuroxime (AL) 250 mg film-coated tablet, 10, blister pack 273227 1008631000168109 Cefuroxime (AL) 250 mg film-coated tablet, 10 1008581000168106 Cefuroxime (AL) 250 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 763551000168107 cefuroxime 250 mg tablet, 10 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +675201000168106 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 122788 675191000168108 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 675141000168100 Valette (inert substance) sugar coated tablet 674881000168103 Valette 674881000168103 Valette 675181000168105 dienogest 2 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +675201000168106 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 122788 675191000168108 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 675131000168109 Valette (dienogest 2 mg + ethinylestradiol 30 microgram) sugar coated tablet 674881000168103 Valette 674881000168103 Valette 675181000168105 dienogest 2 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 675121000168106 dienogest 2 mg + ethinylestradiol 30 microgram tablet 675111000168104 dienogest + ethinylestradiol +675241000168108 Celecoxib (Sandoz) 100 mg hard capsule, 60, blister pack 210630 675231000168104 Celecoxib (Sandoz) 100 mg hard capsule, 60 675221000168102 Celecoxib (Sandoz) 100 mg hard capsule 675211000168109 Celecoxib (Sandoz) 675211000168109 Celecoxib (Sandoz) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +74121000036106 Neutrogena T/Gel Therapeutic Shampoo 0.5% shampoo, 200 mL, bottle 29628 72161000036107 Neutrogena T/Gel Therapeutic Shampoo 0.5% shampoo, 200 mL 70191000036101 Neutrogena T/Gel Therapeutic Shampoo 0.5% shampoo 65153011000036100 Neutrogena T/Gel Therapeutic Shampoo 65153011000036100 Neutrogena T/Gel Therapeutic Shampoo 72171000036104 coal tar 0.5% shampoo, 200 mL 70201000036104 coal tar 0.5% shampoo 69872011000036106 coal tar +755831000168107 Vttack 200 mg film-coated tablet, 30, blister pack 206985 755821000168109 Vttack 200 mg film-coated tablet, 30 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46808011000036100 voriconazole 200 mg tablet, 30 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +68764011000036108 Duromine 15 mg modified release capsule, 30, blister pack 10941 66580011000036105 Duromine 15 mg modified release capsule, 30 65265011000036108 Duromine 15 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 71303011000036102 phentermine 15 mg modified release capsule, 30 69940011000036102 phentermine 15 mg modified release capsule 37725011000036101 phentermine +908501000168105 Celecoxib (Lup) 200 mg hard capsule, 50, blister pack 196189 908491000168103 Celecoxib (Lup) 200 mg hard capsule, 50 908421000168100 Celecoxib (Lup) 200 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1043361000168108 Pryzex ODT 5 mg orally disintegrating tablet, 30, blister pack 179079 1043351000168106 Pryzex ODT 5 mg orally disintegrating tablet, 30 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043341000168109 olanzapine 5 mg orally disintegrating tablet, 30 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +44181011000036109 Anzemet 50 mg/2.5 mL injection solution, 2.5 mL ampoule 55062 41657011000036103 Anzemet 50 mg/2.5 mL injection solution, 2.5 mL ampoule 40127011000036106 Anzemet 50 mg/2.5 mL injection solution, 2.5 mL ampoule 4210011000036102 Anzemet 4210011000036102 Anzemet 46475011000036105 dolasetron mesilate monohydrate 50 mg/2.5 mL injection, 2.5 mL ampoule 45175011000036106 dolasetron mesilate monohydrate 50 mg/2.5 mL injection, ampoule 21471011000036108 dolasetron +34704011000036100 Temgesic 300 microgram/mL injection solution, 5 x 1 mL ampoules 15394 34288011000036104 Temgesic 300 microgram/mL injection solution, 5 x 1 mL ampoules 34012011000036105 Temgesic 300 microgram/mL injection solution, ampoule 33926011000036105 Temgesic 33926011000036105 Temgesic 35137011000036100 buprenorphine 300 microgram/mL injection, 5 x 1 mL ampoules 34861011000036104 buprenorphine 300 microgram/mL injection, ampoule 21232011000036101 buprenorphine +747291000168103 Junomorph 20 mg/mL injection solution, 5 x 1 mL ampoules 224248 747281000168101 Junomorph 20 mg/mL injection solution, 5 x 1 mL ampoules 747271000168104 Junomorph 20 mg/mL injection solution, ampoule 747261000168105 Junomorph 747261000168105 Junomorph 706851000168104 morphine hydrochloride trihydrate 20 mg/mL injection, 5 x 1 mL ampoules 706831000168105 morphine hydrochloride trihydrate 20 mg/mL injection, ampoule 21252011000036100 morphine +657901000168107 Telmigen HCT 80/12.5mg multilayer tablet, 28, blister pack 208073 657891000168108 Telmigen HCT 80/12.5mg multilayer tablet, 28 657881000168105 Telmigen HCT 80/12.5mg multilayer tablet 657861000168101 Telmigen HCT 80/12.5mg 657861000168101 Telmigen HCT 80/12.5mg 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +20669011000036106 Cicloral 50 mg capsule, 30, blister pack 81961 13849011000036106 Cicloral 50 mg capsule, 30 7136011000036100 Cicloral 50 mg capsule 3483011000036105 Cicloral 3483011000036105 Cicloral 27973011000036109 ciclosporin 50 mg capsule, 30 23297011000036102 ciclosporin 50 mg capsule 21379011000036104 ciclosporin +68856011000036106 Savlon cream, 30 g, tube 11247 66594011000036101 Savlon cream, 30 g 65221011000036100 Savlon cream 64957011000036103 Savlon 64957011000036103 Savlon 71317011000036109 chlorhexidine hydrochloride 0.1% + cetrimide 0.5% cream, 30 g 69947011000036101 chlorhexidine hydrochloride 0.1% + cetrimide 0.5% cream 69756011000036105 chlorhexidine + cetrimide +850091000168109 Vzole 200 mg film-coated tablet, 30, bottle 238241 849831000168106 Vzole 200 mg film-coated tablet, 30 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46808011000036100 voriconazole 200 mg tablet, 30 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +917041000168103 Amitriptyline (RS) 50 mg tablet, 1000, bottle 232145 866721000168100 Amitriptyline (RS) 50 mg tablet, 1000 866651000168104 Amitriptyline (RS) 50 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +910601000168107 Cavstat 40 mg film-coated tablet, 90, bottle 234461 910591000168100 Cavstat 40 mg film-coated tablet, 90 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910581000168103 rosuvastatin 40 mg tablet, 90 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +920717011000036109 Pantofast 20 mg enteric tablet, 10, blister pack 155105 920404011000036108 Pantofast 20 mg enteric tablet, 10 920166011000036102 Pantofast 20 mg enteric tablet 920103011000036107 Pantofast 920103011000036107 Pantofast 920855011000036108 pantoprazole 20 mg enteric tablet, 10 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +131991000036101 Montelukast (GH) 4 mg chewable tablet, 28, blister pack 189240 128001000036103 Montelukast (GH) 4 mg chewable tablet, 28 125591000036106 Montelukast (GH) 4 mg chewable tablet 124021000036101 Montelukast (GH) 124021000036101 Montelukast (GH) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +81094011000036102 Dizole 100 mg hard capsule, 14, blister pack 159620 80602011000036106 Dizole 100 mg hard capsule, 14 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81670011000036107 fluconazole 100 mg capsule, 14 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +773001000168107 Heparin Sodium (Pfizer (Perth)) 5000 units/5 mL injection solution, 10 x 5 mL ampoules 49232 772991000168106 Heparin Sodium (Pfizer (Perth)) 5000 units/5 mL injection solution, 10 x 5 mL ampoules 5358011000036106 Heparin Sodium (Pfizer (Perth)) 5000 units/5 mL injection solution, 5 mL ampoule 3815011000036101 Heparin Sodium (Pfizer (Perth)) 3815011000036101 Heparin Sodium (Pfizer (Perth)) 772981000168108 heparin sodium 5000 units/5 mL injection, 10 x 5 mL ampoules 22581011000036105 heparin sodium 5000 units/5 mL injection, ampoule 858661000168109 heparin +43939011000036103 Lamotrigine (Sandoz) Dispersible/Chewable 200 mg tablet, 56, blister pack 143570 41431011000036109 Lamotrigine (Sandoz) Dispersible/Chewable 200 mg tablet, 56 39811011000036102 Lamotrigine (Sandoz) Dispersible/Chewable 200 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +43939011000036103 Lamotrigine (Sandoz) Dispersible/Chewable 200 mg tablet, 56, blister pack 187254 41431011000036109 Lamotrigine (Sandoz) Dispersible/Chewable 200 mg tablet, 56 39811011000036102 Lamotrigine (Sandoz) Dispersible/Chewable 200 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +755871000168105 Vttack 200 mg film-coated tablet, 56, blister pack 206985 755861000168104 Vttack 200 mg film-coated tablet, 56 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +19448011000036107 Acenorm 25 mg uncoated tablet, 90, blister pack 54091 12751011000036102 Acenorm 25 mg uncoated tablet, 90 6045011000036102 Acenorm 25 mg uncoated tablet 4183011000036109 Acenorm 4183011000036109 Acenorm 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +60077011000036108 Ear Clear for Ear Ache ear drops, 15 mL, bottle 125789 56038011000036101 Ear Clear for Ear Ache ear drops, 15 mL 53765011000036105 Ear Clear for Ear Ache ear drops 53147011000036104 Ear Clear for Ear Ache 53147011000036104 Ear Clear for Ear Ache 63205011000036100 phenazone 5.4% + benzocaine 1.4% ear drops, 15 mL 61886011000036106 phenazone 5.4% + benzocaine 1.4% ear drops 61772011000036101 phenazone + benzocaine +20727011000036104 Sotalol Hydrochloride (GenRx) 80 mg uncoated tablet, 60, bottle 83094 13896011000036106 Sotalol Hydrochloride (GenRx) 80 mg uncoated tablet, 60 7182011000036105 Sotalol Hydrochloride (GenRx) 80 mg uncoated tablet 3284011000036106 Sotalol Hydrochloride (GenRx) 3284011000036106 Sotalol Hydrochloride (GenRx) 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +19206011000036100 Risperdal 1 mg film-coated tablet, 60, blister pack 47008 12496011000036108 Risperdal 1 mg film-coated tablet, 60 4647011000036105 Risperdal 1 mg film-coated tablet 15481000168100 Risperdal 15481000168100 Risperdal 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1000051000168106 Pantoprazole Heartburn Relief (Apohealth) 20 mg enteric tablet, 14, blister pack 229698 1000041000168109 Pantoprazole Heartburn Relief (Apohealth) 20 mg enteric tablet, 14 1000011000168105 Pantoprazole Heartburn Relief (Apohealth) 20 mg enteric tablet 999971000168101 Pantoprazole Heartburn Relief (Apohealth) 999971000168101 Pantoprazole Heartburn Relief (Apohealth) 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +60923011000036108 Nurofen 200 mg sugar coated tablet, 12, blister pack 61869 56877011000036103 Nurofen 200 mg sugar coated tablet, 12 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60923011000036108 Nurofen 200 mg sugar coated tablet, 12, blister pack 127272 56877011000036103 Nurofen 200 mg sugar coated tablet, 12 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +926928011000036100 Anti-Inflammatory Pain Relief (Chemmart) 1% gel, 100 g, tube 91595 926322011000036106 Anti-Inflammatory Pain Relief (Chemmart) 1% gel, 100 g 925761011000036107 Anti-Inflammatory Pain Relief (Chemmart) 1% gel 28361000168104 Anti-Inflammatory Pain Relief (Chemmart) 28361000168104 Anti-Inflammatory Pain Relief (Chemmart) 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +1064191000168107 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 36, blister pack 196532 1064181000168109 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 36 1064071000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +19251011000036104 Naphcon-A 0.025% / 0.3% eye drops solution, 15 mL, bottle 47652 12542011000036105 Naphcon-A 0.025% / 0.3% eye drops solution, 15 mL 4703011000036100 Naphcon-A 0.025% / 0.3% eye drops solution 56491000168102 Naphcon-A 0.025% / 0.3% 56491000168102 Naphcon-A 0.025% / 0.3% 27188011000036106 naphazoline hydrochloride 0.025% + pheniramine maleate 0.3% eye drops, 15 mL 22550011000036107 naphazoline hydrochloride 0.025% + pheniramine maleate 0.3% eye drops 21769011000036106 naphazoline + pheniramine +77234011000036102 Escitalopram (Terry White Chemists) 10 mg film-coated tablet, 28, blister pack 146031 76650011000036107 Escitalopram (Terry White Chemists) 10 mg film-coated tablet, 28 76088011000036105 Escitalopram (Terry White Chemists) 10 mg film-coated tablet 75949011000036103 Escitalopram (Terry White Chemists) 75949011000036103 Escitalopram (Terry White Chemists) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +77234011000036102 Escitalopram (Terry White Chemists) 10 mg film-coated tablet, 28, blister pack 213725 76650011000036107 Escitalopram (Terry White Chemists) 10 mg film-coated tablet, 28 76088011000036105 Escitalopram (Terry White Chemists) 10 mg film-coated tablet 75949011000036103 Escitalopram (Terry White Chemists) 75949011000036103 Escitalopram (Terry White Chemists) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +966251000168107 Qpril 40 mg film-coated tablet, 30, blister pack 96925 966241000168105 Qpril 40 mg film-coated tablet, 30 966221000168104 Qpril 40 mg film-coated tablet 83545011000036104 Qpril 83545011000036104 Qpril 966231000168101 quinapril 40 mg tablet, 30 966211000168106 quinapril 40 mg tablet 21289011000036102 quinapril +992021000168106 Famciclovir (Apotex) 125 mg film-coated tablet, 40, blister pack 160557 992011000168104 Famciclovir (Apotex) 125 mg film-coated tablet, 40 991961000168106 Famciclovir (Apotex) 125 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +43697011000036103 Fluconazole (DBL) 150 mg hard capsule, 1, strip pack 125202 41319011000036106 Fluconazole (DBL) 150 mg hard capsule, 1 39942011000036105 Fluconazole (DBL) 150 mg hard capsule 4135011000036100 Fluconazole (DBL) 4135011000036100 Fluconazole (DBL) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +37411011000036104 Regitine 10 mg/mL injection solution, 5 x 1 mL ampoules 11051 36648011000036102 Regitine 10 mg/mL injection solution, 5 x 1 mL ampoules 36135011000036108 Regitine 10 mg/mL injection solution, ampoule 35874011000036100 Regitine 35874011000036100 Regitine 38566011000036109 phentolamine mesylate 10 mg/mL injection, 5 x 1 mL ampoules 37842011000036109 phentolamine mesylate 10 mg/mL injection, ampoule 37769011000036108 phentolamine +756511000168108 Pramipexole ER (Apo) 4.5 mg modified release tablet, 30, blister pack 225597 756501000168105 Pramipexole ER (Apo) 4.5 mg modified release tablet, 30 756461000168105 Pramipexole ER (Apo) 4.5 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 87818011000036106 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet, 30 87762011000036107 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet 37716011000036100 pramipexole +905761000168109 Carlevent 100/25/200 film-coated tablet, 100, bottle 195747 905751000168107 Carlevent 100/25/200 film-coated tablet, 100 905741000168105 Carlevent 100/25/200 film-coated tablet 905731000168101 Carlevent 100/25/200 905731000168101 Carlevent 100/25/200 28184011000036105 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 100 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +916401000168108 ADT Booster injection suspension, 5 x 0.5 mL vials 130906 916391000168106 ADT Booster injection suspension, 5 x 0.5 mL vials 916341000168103 ADT Booster injection suspension, 0.5 mL vial 12781000168102 ADT Booster 12781000168102 ADT Booster 916381000168108 diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL vials 916331000168107 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL vial 21826011000036109 diphtheria + tetanus vaccine +940161000168108 Celecoxib (Ranbaxy) 100 mg hard capsule, 60, blister pack 212786 940151000168106 Celecoxib (Ranbaxy) 100 mg hard capsule, 60 940081000168100 Celecoxib (Ranbaxy) 100 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +60561011000036107 Panadeine uncoated tablet, 100, blister pack 15478 56519011000036100 Panadeine uncoated tablet, 100 53950011000036101 Panadeine uncoated tablet 13481000168104 Panadeine 13481000168104 Panadeine 63447011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 100 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +884891000168102 Kovaltry (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 246796 884881000168100 Kovaltry (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 884851000168107 Kovaltry (octocog alfa 3000 units) powder for injection, 3000 units vial 884791000168107 Kovaltry 884791000168107 Kovaltry 884871000168103 octocog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 81274011000036104 octocog alfa 3000 units injection, vial 69843011000036100 octocog alfa +884891000168102 Kovaltry (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 246796 884881000168100 Kovaltry (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 884861000168109 Kovaltry (inert substance) diluent, 5 mL syringe 884791000168107 Kovaltry 884791000168107 Kovaltry 884871000168103 octocog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +60047011000036109 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 100 mL, bottle 124416 56009011000036104 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 100 mL 53756011000036106 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 5 mL 22401000168105 Paracetamol 5 to 12 Years (Priceline) 22401000168105 Paracetamol 5 to 12 Years (Priceline) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +60319011000036109 Cetrelief (Generic Health) 10 mg film-coated tablet, 1000, blister pack 138826 56278011000036106 Cetrelief (Generic Health) 10 mg film-coated tablet, 1000 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63284011000036100 cetirizine hydrochloride 10 mg tablet, 1000 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +926731011000036102 Ibuprofen Blue Capseal (Herron) 200 mg gelatin coated tablet, 24, blister pack 117873 926105011000036104 Ibuprofen Blue Capseal (Herron) 200 mg gelatin coated tablet, 24 925591011000036108 Ibuprofen Blue Capseal (Herron) 200 mg gelatin coated tablet 43861000168102 Ibuprofen Blue Capseal (Herron) 43861000168102 Ibuprofen Blue Capseal (Herron) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +918731000168105 Furosemide (AN) 40 mg tablet, 100, bottle 283338 918721000168107 Furosemide (AN) 40 mg tablet, 100 918711000168100 Furosemide (AN) 40 mg tablet 918701000168103 Furosemide (AN) 918701000168103 Furosemide (AN) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +700026981000036106 Copegus 200 mg film-coated tablet, 84 tablets, bottle 151000168103 Copegus 200 mg film-coated tablet, 84 tablets 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 3042011000036103 Copegus 3042011000036103 Copegus 700031691000036109 ribavirin 200 mg tablet, 84 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +69265011000036102 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) irrigation solution, 100 mL bottle 19476 67065011000036100 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) irrigation solution, 100 mL bottle 65378011000036103 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) irrigation solution, 100 mL bottle 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71635011000036104 sodium chloride 0.9% (900 mg/100 mL) solution, 100 mL bottle 70103011000036104 sodium chloride 0.9% (900 mg/100 mL) solution, bottle 21308011000036103 sodium chloride +60289011000036103 Panadol 500 mg film-coated tablet, 50, blister pack 13591 56248011000036107 Panadol 500 mg film-coated tablet, 50 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1060421000168106 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 15, blister pack 234477 1060411000168104 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 15 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911831000168108 rosuvastatin 40 mg tablet, 15 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1049801000168103 Bupannus 5 microgram/hour patch, 2, sachet 234729 1049791000168104 Bupannus 5 microgram/hour patch, 2 1049761000168106 Bupannus 5 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 26680011000036107 buprenorphine 5 microgram/hour patch, 2 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +69582011000036103 Dermadrate Dry Skin Treatment 10% cream, 100 g, jar 64166 67382011000036106 Dermadrate Dry Skin Treatment 10% cream, 100 g 65638011000036105 Dermadrate Dry Skin Treatment 10% cream 65152011000036107 Dermadrate Dry Skin Treatment 65152011000036107 Dermadrate Dry Skin Treatment 27005011000036108 urea 10% cream, 100 g 22378011000036108 urea 10% cream 21561011000036106 urea +34830011000036100 Actiq 1600 microgram lozenge on handle, 3, blister pack 91604 34405011000036107 Actiq 1600 microgram lozenge on handle, 3 34080011000036109 Actiq 1600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 35244011000036109 fentanyl 1600 microgram lozenge on handle, 3 34915011000036107 fentanyl 1600 microgram lozenge on handle 21258011000036102 fentanyl +916561000168105 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 170265 916551000168108 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 916521000168100 Aleviate 500 IU FVIII/1200 IU VWF (factor VIII 500 units + von Willebrand factor 1200 units) powder for injection, 1 vial 916501000168109 Aleviate 500 IU FVIII/1200 IU VWF 916501000168109 Aleviate 500 IU FVIII/1200 IU VWF 916541000168106 factor VIII 500 units + von Willebrand factor 1200 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 916511000168107 factor VIII 500 units + von Willebrand factor 1200 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +916561000168105 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 170265 916551000168108 Aleviate 500 IU FVIII/1200 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 916531000168102 Aleviate (inert substance) diluent, 5 mL vial 916501000168109 Aleviate 500 IU FVIII/1200 IU VWF 916281000168104 Aleviate 916541000168106 factor VIII 500 units + von Willebrand factor 1200 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +996351000168100 Cinacalcet (Apo) 30 mg film-coated tablet, 28, blister pack 240299 996341000168102 Cinacalcet (Apo) 30 mg film-coated tablet, 28 996331000168106 Cinacalcet (Apo) 30 mg film-coated tablet 991661000168100 Cinacalcet (Apo) 991661000168100 Cinacalcet (Apo) 38843011000036105 cinacalcet 30 mg tablet, 28 38043011000036106 cinacalcet 30 mg tablet 37755011000036100 cinacalcet +997961000168102 Imatinib (Apo) 400 mg film-coated tablet, 100, bottle 196035 997951000168104 Imatinib (Apo) 400 mg film-coated tablet, 100 997921000168107 Imatinib (Apo) 400 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 829211000168103 imatinib 400 mg tablet, 100 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +50345011000036102 XLYS, Low Try Maxamaid powder for oral liquid, 500 g, can 49482011000036101 XLYS, Low Try Maxamaid powder for oral liquid, 500 g 48477011000036109 XLYS, Low Try Maxamaid powder for oral liquid 52961000168101 XLYS, Low Try Maxamaid 52961000168101 XLYS, Low Try Maxamaid 51439011000036103 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 500 g 50955011000036109 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +674441000168105 Telmisartan (Apo) 40 mg uncoated tablet, 28, blister pack 209336 662601000168108 Telmisartan (Apo) 40 mg uncoated tablet, 28 662591000168101 Telmisartan (Apo) 40 mg uncoated tablet 662541000168109 Telmisartan (Apo) 662541000168109 Telmisartan (Apo) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +730071000168109 Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial 176337 730061000168103 Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial 730051000168100 Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial 87741000036100 Paclitaxel (GN) 87741000036100 Paclitaxel (GN) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +929678011000036108 Vexazone 45 mg uncoated tablet, 98, blister pack 164343 929514011000036100 Vexazone 45 mg uncoated tablet, 98 929404011000036109 Vexazone 45 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929262011000036100 pioglitazone 45 mg tablet, 98 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +931400011000036106 Soov IT ointment, 30 g, tube 116840 930563011000036101 Soov IT ointment, 30 g 929938011000036106 Soov IT ointment 35581000168108 Soov IT 35581000168108 Soov IT 932346011000036105 lidocaine (lignocaine) 5% + hydrocortisone 0.5% ointment, 30 g 931822011000036105 lidocaine (lignocaine) 5% + hydrocortisone 0.5% ointment 61836011000036102 lidocaine (lignocaine) + hydrocortisone +18825011000036105 Pramin 10 mg uncoated tablet, 25, bottle 17661 12141011000036108 Pramin 10 mg uncoated tablet, 25 5876011000036106 Pramin 10 mg uncoated tablet 3330011000036102 Pramin 3330011000036102 Pramin 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +1060581000168109 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 90, blister pack 234477 1058661000168108 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 90 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910581000168103 rosuvastatin 40 mg tablet, 90 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +106111000036106 Senna-Col (Guardian) film-coated tablet, 90, bottle 139220 106001000036108 Senna-Col (Guardian) film-coated tablet, 90 105921000036106 Senna-Col (Guardian) film-coated tablet 53137011000036103 Senna-Col (Guardian) 53137011000036103 Senna-Col (Guardian) 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +987131000168106 Act-3 200 mg soft capsule, 40, blister pack 77290 987121000168108 Act-3 200 mg soft capsule, 40 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63932011000036104 ibuprofen 200 mg capsule, 40 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +923850011000036103 Helicap 37 kBq hard capsule, 10, bottle 159320 923396011000036108 Helicap 37 kBq hard capsule, 10 923060011000036106 Helicap 37 kBq hard capsule 58031000168108 Helicap 58031000168108 Helicap 924181011000036107 urea (14C) 37 kBq capsule, 10 923984011000036109 urea (14C) 37 kBq capsule 923935011000036103 urea (14C) +891511000168105 Bicor 3.75 mg film-coated tablet, 7, blister pack 81605 891501000168107 Bicor 3.75 mg film-coated tablet, 7 891491000168100 Bicor 3.75 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 875771000168102 bisoprolol fumarate 3.75 mg tablet, 7 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +1099191000168105 Sunsense Ultra SPF 50+ lotion, 125 mL, bottle 279170 1099181000168107 Sunsense Ultra SPF 50+ lotion, 125 mL 1099131000168106 Sunsense Ultra SPF 50+ lotion 683971000168104 Sunsense Ultra SPF 50+ 683971000168104 Sunsense Ultra SPF 50+ 1099171000168109 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion, 125 mL 1099121000168108 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion 1099111000168101 bemotrizinol + octocrylene + diethylamino hydroxybenzoyl hexyl benzoate + titanium dioxide +966411000168107 Gamunex 10% 5 g/50 mL injection solution, 50 mL vial 117238 966401000168109 Gamunex 10% 5 g/50 mL injection solution, 50 mL vial 966391000168107 Gamunex 10% 5 g/50 mL injection solution, 50 mL vial 966321000168105 Gamunex 10% 966321000168105 Gamunex 10% 108891000036105 normal immunoglobulin 5 g/50 mL injection, 50 mL vial 107151000036108 normal immunoglobulin 5 g/50 mL injection, vial 74965011000036103 normal immunoglobulin +60996011000036109 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) oral liquid solution, 50 mL, bottle 63546 56939011000036104 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) oral liquid solution, 50 mL 54130011000036101 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) oral liquid solution, 5 mL 40091000168108 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) 40091000168108 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) 63710011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 50 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +727651000168109 Vytorin 10/40 uncoated tablet, 5, blister pack 98115 727641000168107 Vytorin 10/40 uncoated tablet, 5 7544011000036104 Vytorin 10/40 uncoated tablet 44141000168106 Vytorin 10/40 44141000168106 Vytorin 10/40 727631000168103 ezetimibe 10 mg + simvastatin 40 mg tablet, 5 23567011000036109 ezetimibe 10 mg + simvastatin 40 mg tablet 21565011000036108 ezetimibe + simvastatin +934611000168105 Foxine 20 mg hard capsule, 28, blister pack 54289 934601000168107 Foxine 20 mg hard capsule, 28 934591000168100 Foxine 20 mg hard capsule 934581000168103 Foxine 934581000168103 Foxine 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +874571000168106 Beezole 40 mg enteric tablet, 7, blister pack 205829 874561000168100 Beezole 40 mg enteric tablet, 7 874551000168102 Beezole 40 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +33523011000036107 Citalobell 20 mg film-coated tablet, 7, blister pack 124714 33266011000036102 Citalobell 20 mg film-coated tablet, 7 33031011000036105 Citalobell 20 mg film-coated tablet 32991011000036103 Citalobell 32991011000036103 Citalobell 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +20818011000036106 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 91563 13981011000036106 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack 7326011000036107 Gonal-F (follitropin alfa 75 units (5.46 microgram)) powder for injection, 75 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 28047011000036103 follitropin alfa 75 units (5.46 microgram) injection [75 units vial] (&) inert substance diluent [1 mL vial], 1 pack 23416011000036100 follitropin alfa 75 units (5.46 microgram) injection, 75 units vial 21352011000036107 follitropin alfa +20818011000036106 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 91563 13981011000036106 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent vial), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 28047011000036103 follitropin alfa 75 units (5.46 microgram) injection [75 units vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +666811000168106 Doxycycline (AN) 100 mg film-coated tablet, 7, bottle 148813 666701000168101 Doxycycline (AN) 100 mg film-coated tablet, 7 666691000168101 Doxycycline (AN) 100 mg film-coated tablet 666651000168106 Doxycycline (AN) 666651000168106 Doxycycline (AN) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +675451000168106 Celecoxib (Blooms The Chemist) 100 mg hard capsule, 60, blister pack 226149 675441000168109 Celecoxib (Blooms The Chemist) 100 mg hard capsule, 60 675431000168100 Celecoxib (Blooms The Chemist) 100 mg hard capsule 675421000168103 Celecoxib (Blooms The Chemist) 675421000168103 Celecoxib (Blooms The Chemist) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +888541000168101 Calcitriol (CW) 0.25 microgram soft capsule, 100, blister pack 232768 888531000168105 Calcitriol (CW) 0.25 microgram soft capsule, 100 888521000168107 Calcitriol (CW) 0.25 microgram soft capsule 888511000168100 Calcitriol (CW) 888511000168100 Calcitriol (CW) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +1012491000168105 Metformin (Apo) 850 mg film-coated tablet, 60, bottle 157215 929530011000036100 Metformin (Apo) 850 mg film-coated tablet, 60 929414011000036106 Metformin (Apo) 850 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +999881000168109 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 195217 999871000168106 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 999701000168108 Drospirenone/EE 3/30 (Apo) (inert substance) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999881000168109 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 195217 999871000168106 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 999691000168108 Drospirenone/EE 3/30 (Apo) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +55541000036106 Anastrozole (AU) 1 mg film-coated tablet, 84, blister pack 155174 52211000036104 Anastrozole (AU) 1 mg film-coated tablet, 84 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52221000036106 anastrozole 1 mg tablet, 84 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +799591000168102 Abyraz 15 mg uncoated tablet, 30, blister pack 159506 799581000168100 Abyraz 15 mg uncoated tablet, 30 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +17802011000036102 Eutroxsig 100 microgram uncoated tablet, 200, blister pack 125502 13932011000036106 Eutroxsig 100 microgram uncoated tablet, 200 7220011000036103 Eutroxsig 100 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 28022011000036102 levothyroxine sodium 100 microgram tablet, 200 23345011000036105 levothyroxine sodium 100 microgram tablet 21577011000036109 levothyroxine +68938011000036102 De-Gas 100 mg soft capsule, 30, blister pack 10395 66501011000036102 De-Gas 100 mg soft capsule, 30 65256011000036109 De-Gas 100 mg soft capsule 65132011000036106 De-Gas 65132011000036106 De-Gas 71233011000036102 simethicone 100 mg capsule, 30 69912011000036105 simethicone 100 mg capsule 69826011000036109 simethicone +811111000168102 Prodeine uncoated tablet, 36, blister pack 200605 811101000168100 Prodeine uncoated tablet, 36 811031000168106 Prodeine uncoated tablet 811021000168108 Prodeine 811021000168108 Prodeine 764201000168108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 36 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +933143011000036100 Elmendos 100 mg tablet, 56, bottle 98079 932941011000036105 Elmendos 100 mg tablet, 56 932774011000036100 Elmendos 100 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +1042721000168105 Aspecillin V 250 mg/5 mL oral liquid suspension, 100 mL, bottle 40109 1042711000168103 Aspecillin V 250 mg/5 mL oral liquid suspension, 100 mL 1042701000168101 Aspecillin V 250 mg/5 mL oral liquid suspension, 5 mL 1042661000168108 Aspecillin V 1042661000168108 Aspecillin V 27116011000036109 phenoxymethylpenicillin 250 mg/5 mL oral liquid, 100 mL 22482011000036107 phenoxymethylpenicillin 250 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +1062821000168109 Atorvator 40 mg film-coated tablet, 30, blister pack 179830 1061481000168100 Atorvator 40 mg film-coated tablet, 30 1061451000168107 Atorvator 40 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +60260011000036107 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 7 sachets 134660 56219011000036107 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 7 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63360011000036103 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 7 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +933230861000036101 Famciclovir (Apo) 500 mg film-coated tablet, 16, blister pack 172443 933224991000036105 Famciclovir (Apo) 500 mg film-coated tablet, 16 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933225001000036102 famciclovir 500 mg tablet, 16 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +670061000168106 Amlodipine/Atorvastatin 5/20 (Apo) film-coated tablet, 30, blister pack 214385 670051000168109 Amlodipine/Atorvastatin 5/20 (Apo) film-coated tablet, 30 670041000168107 Amlodipine/Atorvastatin 5/20 (Apo) film-coated tablet 670031000168103 Amlodipine/Atorvastatin 5/20 (Apo) 670031000168103 Amlodipine/Atorvastatin 5/20 (Apo) 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +18839011000036109 Amizide uncoated tablet, 50, bottle 17702 12151011000036106 Amizide uncoated tablet, 50 5122011000036103 Amizide uncoated tablet 3025011000036108 Amizide 3025011000036108 Amizide 26950011000036102 amiloride hydrochloride dihydrate 5 mg + hydrochlorothiazide 50 mg tablet, 50 22325011000036101 amiloride hydrochloride dihydrate 5 mg + hydrochlorothiazide 50 mg tablet 21870011000036107 amiloride + hydrochlorothiazide +18581011000036103 Doxycycline (DBL) 100 mg modified release capsule, 7, bottle 107248 12652011000036104 Doxycycline (DBL) 100 mg modified release capsule, 7 4656011000036109 Doxycycline (DBL) 100 mg modified release capsule 3565011000036101 Doxycycline (DBL) 3565011000036101 Doxycycline (DBL) 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +50280011000036108 Aquacel (177902) 10 cm x 10 cm dressing, 10, carton 49364011000036101 Aquacel (177902) 10 cm x 10 cm dressing, 10 48531011000036106 Aquacel (177902) 10 cm x 10 cm dressing 55701000168106 Aquacel (177902) 55701000168106 Aquacel (177902) 51338011000036104 dressing hydrofibre alternate to alginates 10 cm x 10 cm dressing, 10 50863011000036106 dressing hydrofibre alternate to alginates 10 cm x 10 cm dressing 50717011000036100 dressing hydrofibre alternate to alginates +937511000168101 Epirube 200 mg/100 mL concentrated injection, 100 mL vial 152611 937501000168104 Epirube 200 mg/100 mL concentrated injection, 100 mL vial 937491000168106 Epirube 200 mg/100 mL concentrated injection, 100 mL vial 937481000168108 Epirube 937481000168108 Epirube 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +81103011000036109 Paedamin Children's Decongestant and Antihistamine oral liquid solution, 200 mL, bottle 160400 80608011000036109 Paedamin Children's Decongestant and Antihistamine oral liquid solution, 200 mL 80207011000036106 Paedamin Children's Decongestant and Antihistamine oral liquid solution, 5 mL 22311000168104 Paedamin Children's Decongestant and Antihistamine 22311000168104 Paedamin Children's Decongestant and Antihistamine 63440011000036102 diphenhydramine hydrochloride 12.5 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 61965011000036106 diphenhydramine hydrochloride 12.5 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61812011000036109 diphenhydramine + phenylephrine +18617011000036104 Morphine Sulfate (DBL) 10 mg/mL injection solution, 5 x 1 mL ampoules 101240 11182011000036106 Morphine Sulfate (DBL) 10 mg/mL injection solution, 5 x 1 mL ampoules 4559011000036107 Morphine Sulfate (DBL) 10 mg/mL injection solution, ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 26554011000036103 morphine sulfate pentahydrate 10 mg/mL injection, 5 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +77145011000036104 Povidone-Iodine (Pfizer (Perth)) 10% application, 500 mL, bottle 10796 76578011000036103 Povidone-Iodine (Pfizer (Perth)) 10% application, 500 mL 76046011000036103 Povidone-Iodine (Pfizer (Perth)) 10% application 75968011000036102 Povidone-Iodine (Pfizer (Perth)) 75968011000036102 Povidone-Iodine (Pfizer (Perth)) 78133011000036105 povidone-iodine 10% application, 500 mL 77504011000036104 povidone-iodine 10% application 21660011000036108 povidone-iodine +130461000036109 Oripro 200 mg moulded pessary, 15, strip pack 165112 127651000036106 Oripro 200 mg moulded pessary, 15 124411000036101 Oripro 200 mg moulded pessary 124041000036109 Oripro 124041000036109 Oripro 26989011000036100 progesterone 200 mg pessary, 15 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +929692011000036100 Rebif Rebidose 12 million units (44 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 174479 929528011000036101 Rebif Rebidose 12 million units (44 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 929412011000036102 Rebif Rebidose 12 million units (44 microgram)/0.5 mL injection solution, 0.5 mL syringe 11751000168103 Rebif Rebidose 11751000168103 Rebif Rebidose 27700011000036102 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, 12 x 0.5 mL syringes 23035011000036108 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +770491000168102 PKU Easy Microtabs modified release tablet, 4 x 110 g, bottles 770481000168100 PKU Easy Microtabs modified release tablet, 4 x 110 g 770431000168101 PKU Easy Microtabs modified release tablet 770211000168105 PKU Easy Microtabs 770211000168105 PKU Easy Microtabs 770471000168103 amino acid formula without phenylalanine modified release tablet, 4 x 110 g 770421000168104 amino acid formula without phenylalanine modified release tablet 50722011000036107 amino acid formula without phenylalanine +74712011000036102 Decongestant (Chemists' Own) Refill 0.05% nasal spray, 18 mL, bottle 117459 74219011000036104 Decongestant (Chemists' Own) Refill 0.05% nasal spray, 18 mL 73783011000036109 Decongestant (Chemists' Own) Refill 0.05% nasal spray 73767011000036102 Decongestant (Chemists' Own) 73767011000036102 Decongestant (Chemists' Own) 75486011000036101 oxymetazoline hydrochloride 0.05% nasal spray, 18 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +176471000036100 Sildenafil (Apo) 25 mg film-coated tablet, 4, blister pack 164811 174681000036105 Sildenafil (Apo) 25 mg film-coated tablet, 4 173391000036103 Sildenafil (Apo) 25 mg film-coated tablet 172761000036104 Sildenafil (Apo) 172761000036104 Sildenafil (Apo) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +43941011000036101 Ramipril (Pharmacor) 2.5 mg hard capsule, 30, blister pack 146720 41433011000036105 Ramipril (Pharmacor) 2.5 mg hard capsule, 30 39853011000036106 Ramipril (Pharmacor) 2.5 mg hard capsule 39763011000036100 Ramipril (Pharmacor) 39763011000036100 Ramipril (Pharmacor) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +37618011000036106 Pilopt 3% eye drops solution, 15 mL, bottle 19763 36885011000036106 Pilopt 3% eye drops solution, 15 mL 36219011000036100 Pilopt 3% eye drops solution 3693011000036106 Pilopt 3693011000036106 Pilopt 38770011000036101 pilocarpine hydrochloride 3% eye drops, 15 mL 37988011000036108 pilocarpine hydrochloride 3% eye drops 21254011000036109 pilocarpine +871281000168109 Taltz 80 mg/mL injection solution, 3 x 1 mL injection devices 253893 871271000168106 Taltz 80 mg/mL injection solution, 3 x 1 mL injection devices 871191000168104 Taltz 80 mg/mL injection solution, injection device 871151000168109 Taltz 871151000168109 Taltz 871261000168100 ixekizumab 80 mg/mL injection, 3 x 1 mL injection devices 871181000168102 ixekizumab 80 mg/mL injection, injection device 871171000168100 ixekizumab +85061011000036103 Pantoloc 40 mg enteric tablet, 90, bottle 69793 84925011000036109 Pantoloc 40 mg enteric tablet, 90 83705011000036107 Pantoloc 40 mg enteric tablet 83566011000036100 Pantoloc 83566011000036100 Pantoloc 85192011000036101 pantoprazole 40 mg enteric tablet, 90 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +896121000168103 Imatinib (GH) 400 mg hard capsule, 48, blister pack 281536 896111000168105 Imatinib (GH) 400 mg hard capsule, 48 896061000168109 Imatinib (GH) 400 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 893921000168109 imatinib 400 mg capsule, 48 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +1000931000168101 Pregabalin (Apo) 100 mg hard capsule, 500, bottle 193248 1000921000168104 Pregabalin (Apo) 100 mg hard capsule, 500 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1000911000168106 pregabalin 100 mg capsule, 500 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +18316011000036108 Fluconazole (DBL) 100 mg hard capsule, 28, blister pack 119544 11620011000036101 Fluconazole (DBL) 100 mg hard capsule, 28 4753011000036108 Fluconazole (DBL) 100 mg hard capsule 4135011000036100 Fluconazole (DBL) 4135011000036100 Fluconazole (DBL) 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +43905011000036106 Ramipril (DP) 5 mg hard capsule, 30, blister pack 134798 41397011000036100 Ramipril (DP) 5 mg hard capsule, 30 39814011000036104 Ramipril (DP) 5 mg hard capsule 39698011000036100 Ramipril (DP) 39698011000036100 Ramipril (DP) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +931720011000036108 Synthamin 13 Amino Acid 8% without Electrolytes intravenous infusion injection, 500 mL bottle 19448 930880011000036107 Synthamin 13 Amino Acid 8% without Electrolytes intravenous infusion injection, 500 mL bottle 930087011000036109 Synthamin 13 Amino Acid 8% without Electrolytes intravenous infusion injection, 500 mL bottle 929883011000036101 Synthamin 13 Amino Acid 8% without Electrolytes 929883011000036101 Synthamin 13 Amino Acid 8% without Electrolytes 932463011000036103 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle 931865011000036107 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle 77452011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +1003811000168109 Levitaccord-1000 1 g film-coated tablet, 60, blister pack 168791 1003801000168106 Levitaccord-1000 1 g film-coated tablet, 60 1003791000168105 Levitaccord-1000 1 g film-coated tablet 1003781000168107 Levitaccord-1000 1003781000168107 Levitaccord-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +750301000168103 Magnesium Forte 400 (Wagner) hard capsule, 50, bottle 123796 750291000168104 Magnesium Forte 400 (Wagner) hard capsule, 50 750211000168108 Magnesium Forte 400 (Wagner) hard capsule 23081000168102 Magnesium Forte 400 (Wagner) 23081000168102 Magnesium Forte 400 (Wagner) 750281000168102 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 50 750201000168105 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule 750191000168107 magnesium + zinc +750301000168103 Magnesium Forte 400 (Wagner) hard capsule, 50, bottle 220522 750291000168104 Magnesium Forte 400 (Wagner) hard capsule, 50 750211000168108 Magnesium Forte 400 (Wagner) hard capsule 23081000168102 Magnesium Forte 400 (Wagner) 23081000168102 Magnesium Forte 400 (Wagner) 750281000168102 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 50 750201000168105 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule 750191000168107 magnesium + zinc +865891000168103 Amitriptyline (PN) 50 mg tablet, 250, bottle 232151 865881000168101 Amitriptyline (PN) 50 mg tablet, 250 865851000168108 Amitriptyline (PN) 50 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 862961000168107 amitriptyline hydrochloride 50 mg tablet, 250 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +60525011000036104 Demazin PE Cold and Flu Relief uncoated tablet, 48, blister pack 152024 56483011000036107 Demazin PE Cold and Flu Relief uncoated tablet, 48 53937011000036101 Demazin PE Cold and Flu Relief uncoated tablet 37041000168102 Demazin PE Cold and Flu Relief 37041000168102 Demazin PE Cold and Flu Relief 63381011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 48 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +69350011000036108 Betadine Antiseptic First Aid 5% cream, 20 g, tube 29559 67150011000036109 Betadine Antiseptic First Aid 5% cream, 20 g 65250011000036106 Betadine Antiseptic First Aid 5% cream 62341000168105 Betadine Antiseptic First Aid 62341000168105 Betadine Antiseptic First Aid 71715011000036100 povidone-iodine 5% cream, 20 g 70145011000036105 povidone-iodine 5% cream 21660011000036108 povidone-iodine +960951000168100 Valproate IV (Winthrop) (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack, composite pack 125624 960941000168102 Valproate IV (Winthrop) (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack 960921000168108 Valproate IV (Winthrop) (valproate sodium 400 mg) powder for injection, 400 mg vial 960911000168101 Valproate IV (Winthrop) 960911000168101 Valproate IV (Winthrop) 78120011000036100 valproate sodium 400 mg injection [1 vial] (&) inert substance diluent [4 mL ampoule], 1 pack 77497011000036103 valproate sodium 400 mg injection, vial 21225011000036107 valproate +960951000168100 Valproate IV (Winthrop) (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack, composite pack 125624 960941000168102 Valproate IV (Winthrop) (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack 960931000168106 Valproate IV (Winthrop) (inert substance) diluent, 4 mL ampoule 960911000168101 Valproate IV (Winthrop) 960911000168101 Valproate IV (Winthrop) 78120011000036100 valproate sodium 400 mg injection [1 vial] (&) inert substance diluent [4 mL ampoule], 1 pack 641951000168103 inert substance diluent, 4 mL ampoule 21220011000036103 inert substance +928943011000036102 Topira-Lax 200 mg film-coated tablet, 60, bottle 155194 928304011000036102 Topira-Lax 200 mg film-coated tablet, 60 927933011000036108 Topira-Lax 200 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +929041011000036105 Sertraline (DRLA) 100 mg film-coated tablet, 28, blister pack 160777 928402011000036102 Sertraline (DRLA) 100 mg film-coated tablet, 28 927967011000036107 Sertraline (DRLA) 100 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 46996011000036108 sertraline 100 mg tablet, 28 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +55631000036100 Synastrozole 1 mg film-coated tablet, 300, blister pack 155175 52381000036102 Synastrozole 1 mg film-coated tablet, 300 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52091000036102 anastrozole 1 mg tablet, 300 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +69504011000036108 Konakion 10 mg chewable tablet, 100, bottle 52120 67304011000036101 Konakion 10 mg chewable tablet, 100 65599011000036103 Konakion 10 mg chewable tablet 8581000168107 Konakion 8581000168107 Konakion 71850011000036100 phytomenadione 10 mg chewable tablet, 100 70213011000036104 phytomenadione 10 mg chewable tablet 69775011000036100 phytomenadione +1012811000168103 Valganciclovir (Apo) 450 mg film-coated tablet, 120, bottle 184311 1012801000168101 Valganciclovir (Apo) 450 mg film-coated tablet, 120 1012771000168103 Valganciclovir (Apo) 450 mg film-coated tablet 1012761000168109 Valganciclovir (Apo) 1012761000168109 Valganciclovir (Apo) 1012701000168108 valganciclovir 450 mg tablet, 120 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +170671000036101 Hydralyte Ice Block Apple/Blackcurrant oral liquid for freezing, 16 x 62.5 mL sachets 117765 169721000036105 Hydralyte Ice Block Apple/Blackcurrant oral liquid for freezing, 16 x 62.5 mL sachets 168921000036100 Hydralyte Ice Block Apple/Blackcurrant oral liquid for freezing, 62.5 mL sachet 21131000168103 Hydralyte Ice Block 21131000168103 Hydralyte Ice Block 81583011000036101 sodium chloride 156.2 mg/62.5 mL + potassium citrate monohydrate 137.5 mg (potassium 3.4 mmol)/62.5 mL + glucose monohydrate 1 g/62.5 mL + citrate monohydrate 300 mg/62.5 mL oral liquid for freezing, 16 x 62.5 mL sachets 81259011000036101 sodium chloride 156.2 mg/62.5 mL + potassium citrate monohydrate 137.5 mg (potassium 3.4 mmol)/62.5 mL + glucose monohydrate 1 g/62.5 mL + citrate monohydrate 300 mg/62.5 mL oral liquid for freezing, sachet 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +933239601000036109 Amisulpride (Apo) 100 mg tablet, 100, blister pack 178904 933236921000036102 Amisulpride (Apo) 100 mg tablet, 100 933234771000036106 Amisulpride (Apo) 100 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 84637011000036102 amisulpride 100 mg tablet, 100 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +848571000168100 Entecavir (RBX) 1 mg film-coated tablet, 30, blister pack 256652 848561000168106 Entecavir (RBX) 1 mg film-coated tablet, 30 848551000168109 Entecavir (RBX) 1 mg film-coated tablet 848511000168108 Entecavir (RBX) 848511000168108 Entecavir (RBX) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +20416011000036101 Baclofen (Terry White Chemists) 25 mg tablet, 100, bottle 77570 13623011000036100 Baclofen (Terry White Chemists) 25 mg tablet, 100 6906011000036105 Baclofen (Terry White Chemists) 25 mg tablet 3186011000036100 Baclofen (Terry White Chemists) 3186011000036100 Baclofen (Terry White Chemists) 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +1067161000168107 Rafen Plus film-coated tablet, 20, blister pack 178744 1067151000168105 Rafen Plus film-coated tablet, 20 27111000036106 Rafen Plus film-coated tablet 26031000036103 Rafen Plus 26031000036103 Rafen Plus 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +18001000036102 Altven 37.5 mg modified release capsule, 28, blister pack 171535 17021000036108 Altven 37.5 mg modified release capsule, 28 15501000036102 Altven 37.5 mg modified release capsule 15101000036105 Altven 15101000036105 Altven 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +82389011000036100 Duocover 75 mg/100 mg film-coated tablet, 56, blister pack 151075 82178011000036107 Duocover 75 mg/100 mg film-coated tablet, 56 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82552011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 56 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +652741000168108 Esomeprazole (RBX) 20 mg enteric tablet, 30, blister pack 184759 652731000168104 Esomeprazole (RBX) 20 mg enteric tablet, 30 652721000168102 Esomeprazole (RBX) 20 mg enteric tablet 652681000168108 Esomeprazole (RBX) 652681000168108 Esomeprazole (RBX) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +1075841000168102 Quetiapine (Auro) 100 mg film-coated tablet, 90, blister pack 172846 1075831000168106 Quetiapine (Auro) 100 mg film-coated tablet, 90 1075471000168107 Quetiapine (Auro) 100 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +19284011000036107 Reopro 10 mg/5 mL injection solution, 5 mL vial 48864 12574011000036100 Reopro 10 mg/5 mL injection solution, 5 mL vial 5062011000036104 Reopro 10 mg/5 mL injection solution, 5 mL vial 4155011000036101 Reopro 4155011000036101 Reopro 27210011000036108 abciximab 10 mg/5 mL injection, 5 mL vial 22570011000036109 abciximab 10 mg/5 mL injection, vial 21887011000036100 abciximab +933229441000036106 Nucosef Syrup oral liquid solution, 100 mL, bottle 11155 933223331000036107 Nucosef Syrup oral liquid solution, 100 mL 933219391000036101 Nucosef Syrup oral liquid solution, 10 mL 17951000168105 Nucosef Syrup 17951000168105 Nucosef Syrup 63123011000036106 codeine phosphate hemihydrate 14.9 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 61864011000036101 codeine phosphate hemihydrate 14.9 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61752011000036103 codeine + pseudoephedrine +796371000168102 Quetiapine (Accord) 25 mg film-coated tablet, 60, blister pack 204152 796361000168108 Quetiapine (Accord) 25 mg film-coated tablet, 60 796331000168100 Quetiapine (Accord) 25 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +708561000168100 Aciclovir (Sandoz) 800 mg uncoated tablet, 35, blister pack 99421 708551000168102 Aciclovir (Sandoz) 800 mg uncoated tablet, 35 708541000168104 Aciclovir (Sandoz) 800 mg uncoated tablet 708531000168108 Aciclovir (Sandoz) 708531000168108 Aciclovir (Sandoz) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +937671000168108 Paclitaxin 30 mg/5 mL concentrated injection, 5 mL vial 153505 937661000168102 Paclitaxin 30 mg/5 mL concentrated injection, 5 mL vial 937651000168104 Paclitaxin 30 mg/5 mL concentrated injection, 5 mL vial 937581000168107 Paclitaxin 937581000168107 Paclitaxin 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +50434011000036109 Systane 0.4% / 0.3% eye drops solution, 28 x 0.8 mL unit doses, ampoule 49537011000036101 Systane 0.4% / 0.3% eye drops solution, 28 x 0.8 mL unit doses 48553011000036106 Systane 0.4% / 0.3% eye drops solution, 0.8 mL unit dose 41741000168108 Systane 0.4% / 0.3% 41741000168108 Systane 0.4% / 0.3% 51478011000036109 polyethylene glycol-400 0.4% + propylene glycol 0.3% eye drops, 28 x 0.8 mL unit doses 50981011000036102 polyethylene glycol-400 0.4% + propylene glycol 0.3% eye drops, unit dose 35694011000036104 polyethylene glycol-400 + propylene glycol +930201000168102 Sporanox 100 mg hard capsule, 6, blister pack 47012 41528011000036107 Sporanox 100 mg hard capsule, 6 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 46363011000036109 itraconazole 100 mg capsule, 6 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +804891000168103 Actonel 75 mg film-coated tablet, 6, blister pack 141530 804881000168101 Actonel 75 mg film-coated tablet, 6 804831000168102 Actonel 75 mg film-coated tablet 13171000168107 Actonel 13171000168107 Actonel 801031000168109 risedronate sodium 75 mg tablet, 6 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +73350011000036106 Tramal 50 mg/mL injection solution, 5 x 1 mL ampoules 64009 73144011000036107 Tramal 50 mg/mL injection solution, 5 x 1 mL ampoules 72974011000036101 Tramal 50 mg/mL injection solution, ampoule 24551000168102 Tramal 24551000168102 Tramal 73524011000036100 tramadol hydrochloride 50 mg/mL injection, 5 x 1 mL ampoules 73384011000036107 tramadol hydrochloride 50 mg/mL injection, ampoule 21486011000036105 tramadol +121801000036103 Dynastat 40 mg powder for injection, 10 vials 82525 120841000036108 Dynastat 40 mg powder for injection, 10 vials 119631000036100 Dynastat (parecoxib 40 mg) powder for injection, 40 mg vial 119161000036101 Dynastat 119161000036101 Dynastat 120851000036106 parecoxib 40 mg injection, 10 vials 119641000036105 parecoxib 40 mg injection, vial 121821000036108 parecoxib +44729011000036106 Emend 125 mg hard capsule, 1, blister pack 95774 42174011000036109 Emend 125 mg hard capsule, 1 7405011000036102 Emend 125 mg hard capsule 3261011000036105 Emend 3261011000036105 Emend 46935011000036105 aprepitant 125 mg capsule, 1 23473011000036103 aprepitant 125 mg capsule 21632011000036103 aprepitant +121761000036109 Coperin 60 mg enteric capsule, 28, blister pack 197157 120661000036105 Coperin 60 mg enteric capsule, 28 119351000036102 Coperin 60 mg enteric capsule 119131000036107 Coperin 119131000036107 Coperin 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +926938011000036102 Multihance 10.58 g/20 mL injection solution, 10 x 20 mL vials 94310 926332011000036109 Multihance 10.58 g/20 mL injection solution, 10 x 20 mL vials 925768011000036103 Multihance 10.58 g/20 mL injection solution, 20 mL vial 19451000168109 Multihance 19451000168109 Multihance 927408011000036107 gadobenate dimeglumine 10.58 g/20 mL injection, 10 x 20 mL vials 927047011000036107 gadobenate dimeglumine 10.58 g/20 mL injection, vial 926973011000036109 gadobenic acid +20406011000036104 Lipitor 80 mg film-coated tablet, 30, bottle 77328 13613011000036109 Lipitor 80 mg film-coated tablet, 30 6896011000036101 Lipitor 80 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +69419011000036103 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 315 g, jar 47538 67219011000036107 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 315 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71770011000036101 psyllium husk powder 578 mg/g powder for oral liquid, 315 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +38271000036107 Escitalup 5 mg film-coated tablet, 28, blister pack 165840 34601000036105 Escitalup 5 mg film-coated tablet, 28 32881000036105 Escitalup 5 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +86843011000036109 Sinus Rinse (NeilMed) powder for nasal drops, 60 x 2.16 g sachets 86740011000036104 Sinus Rinse (NeilMed) powder for nasal drops, 60 x 2.16 g sachets 86621011000036102 Sinus Rinse (NeilMed) powder for nasal drops, 2.16 g sachet 86602011000036101 Sinus Rinse (NeilMed) 86602011000036101 Sinus Rinse (NeilMed) 87010011000036105 sodium chloride + bicarbonate nasal drops, 60 x 2.16 g sachets 86923011000036102 sodium chloride + bicarbonate nasal drops, 2.16 g sachet 86904011000036106 sodium chloride + bicarbonate +787711000168109 Arizole 20 mg uncoated tablet, 30, blister pack 198193 787571000168106 Arizole 20 mg uncoated tablet, 30 787561000168100 Arizole 20 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +926696011000036107 Lisoril 2.5 mg uncoated tablet, 28, blister pack 106491 926066011000036102 Lisoril 2.5 mg uncoated tablet, 28 925631011000036109 Lisoril 2.5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 927300011000036104 lisinopril 2.5 mg tablet, 28 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +682781000168107 Xeomin 100 units powder for injection, 1 vial 205508 682771000168109 Xeomin 100 units powder for injection, 1 vial 682751000168100 Xeomin 100 units powder for injection, 100 units vial 172671000036102 Xeomin 172671000036102 Xeomin 682761000168103 incobotulinumtoxinA 100 units injection, 1 vial 682741000168102 incobotulinumtoxinA 100 units injection, vial 177251000036108 incobotulinumtoxinA +61228011000036108 Nicotine (Amcal) Mint 2 mg chewing gum, 12, blister pack 76844 57164011000036106 Nicotine (Amcal) Mint 2 mg chewing gum, 12 54222011000036102 Nicotine (Amcal) Mint 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +50630011000036102 Kaletra 100/25 film-coated tablet, 60, bottle 140509 49656011000036109 Kaletra 100/25 film-coated tablet, 60 48804011000036102 Kaletra 100/25 film-coated tablet 62121000168101 Kaletra 100/25 62121000168101 Kaletra 100/25 51542011000036100 lopinavir 100 mg + ritonavir 25 mg tablet, 60 50996011000036108 lopinavir 100 mg + ritonavir 25 mg tablet 21345011000036102 lopinavir + ritonavir +20707011000036105 Alprax 2 mg uncoated tablet, 50, bottle 82644 13878011000036104 Alprax 2 mg uncoated tablet, 50 7165011000036100 Alprax 2 mg uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +80966011000036108 Resdone 1 mg film-coated tablet, 20, blister pack 147672 80536011000036106 Resdone 1 mg film-coated tablet, 20 80183011000036101 Resdone 1 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81620011000036106 risperidone 1 mg tablet, 20 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +44095011000036100 Cefoxitin (DBL) 1 g powder for injection, 5 vials 50310 41581011000036107 Cefoxitin (DBL) 1 g powder for injection, 5 vials 40084011000036101 Cefoxitin (DBL) 1 g powder for injection, vial 39633011000036103 Cefoxitin (DBL) 39633011000036103 Cefoxitin (DBL) 46409011000036100 cefoxitin 1 g injection, 5 vials 45139011000036106 cefoxitin 1 g injection, vial 44864011000036100 cefoxitin +669941000168106 Amlodipine/Atorvastatin 10/80 (Chemmart) film-coated tablet, 30, blister pack 214401 669931000168102 Amlodipine/Atorvastatin 10/80 (Chemmart) film-coated tablet, 30 669921000168100 Amlodipine/Atorvastatin 10/80 (Chemmart) film-coated tablet 669911000168107 Amlodipine/Atorvastatin 10/80 (Chemmart) 669911000168107 Amlodipine/Atorvastatin 10/80 (Chemmart) 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +678491000168108 Ramipril (RBX) 5 mg tablet, 30, blister pack 213086 678481000168105 Ramipril (RBX) 5 mg tablet, 30 678471000168107 Ramipril (RBX) 5 mg tablet 678431000168109 Ramipril (RBX) 678431000168109 Ramipril (RBX) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +727731000168106 Nexium 40 mg enteric tablet, 7, blister pack 74134 727721000168108 Nexium 40 mg enteric tablet, 7 6712011000036101 Nexium 40 mg enteric tablet 2929011000036108 Nexium 2929011000036108 Nexium 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1029751000168107 Aten 25 mg film-coated tablet, 60, blister pack 197714 1029741000168105 Aten 25 mg film-coated tablet, 60 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029731000168101 atenolol 25 mg tablet, 60 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +931645011000036107 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 30, bottle 166257 930805011000036102 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 30 930055011000036108 Pravastatin Sodium (Apo) 40 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +811271000168104 Afinitor 2 mg dispersible tablet, 100, blister pack 200203 811261000168105 Afinitor 2 mg dispersible tablet, 100 811151000168101 Afinitor 2 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811251000168108 everolimus 2 mg dispersible tablet, 100 811141000168103 everolimus 2 mg dispersible tablet 21615011000036103 everolimus +19114011000036107 Adalat 10 mg film-coated tablet, 60, blister pack 43103 12419011000036100 Adalat 10 mg film-coated tablet, 60 4584011000036100 Adalat 10 mg film-coated tablet 22891000168102 Adalat 22891000168102 Adalat 28104011000036106 nifedipine 10 mg tablet, 60 23414011000036108 nifedipine 10 mg tablet 21241011000036108 nifedipine +665761000168109 Sudafed Sinus plus Allergy and Pain Relief uncoated tablet, 20, blister pack 40335 665751000168107 Sudafed Sinus plus Allergy and Pain Relief uncoated tablet, 20 665731000168101 Sudafed Sinus plus Allergy and Pain Relief uncoated tablet 665721000168104 Sudafed Sinus plus Allergy and Pain Relief 665721000168104 Sudafed Sinus plus Allergy and Pain Relief 665741000168105 pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet, 20 664691000168107 pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet 664681000168109 pseudoephedrine + paracetamol + triprolidine +44471011000036100 Cetrotide (1 x 250 microgram vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 74888 41927011000036101 Cetrotide (1 x 250 microgram vial, 1 x 1 mL inert diluent syringe), 1 pack 40268011000036103 Cetrotide (cetrorelix 250 microgram) powder for injection, 250 microgram vial 39577011000036104 Cetrotide 39577011000036104 Cetrotide 46714011000036106 cetrorelix 250 microgram injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 45279011000036105 cetrorelix 250 microgram injection, vial 44872011000036102 cetrorelix +44471011000036100 Cetrotide (1 x 250 microgram vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 74888 41927011000036101 Cetrotide (1 x 250 microgram vial, 1 x 1 mL inert diluent syringe), 1 pack 640971000168100 Cetrotide (inert substance) diluent, 1 mL syringe 39577011000036104 Cetrotide 39577011000036104 Cetrotide 46714011000036106 cetrorelix 250 microgram injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +1078971000168105 Atomoxetine (GPPL) 10 mg hard capsule, 28, blister pack 234847 1078961000168104 Atomoxetine (GPPL) 10 mg hard capsule, 28 1078811000168108 Atomoxetine (GPPL) 10 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +669901000168109 Amlodipine/Atorvastatin 10/20 (Apo) film-coated tablet, 30, blister pack 214360 669891000168105 Amlodipine/Atorvastatin 10/20 (Apo) film-coated tablet, 30 669881000168107 Amlodipine/Atorvastatin 10/20 (Apo) film-coated tablet 669871000168109 Amlodipine/Atorvastatin 10/20 (Apo) 669871000168109 Amlodipine/Atorvastatin 10/20 (Apo) 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +931547011000036105 Ostran 8 mg film-coated tablet, 6, blister pack 163433 930708011000036106 Ostran 8 mg film-coated tablet, 6 930023011000036106 Ostran 8 mg film-coated tablet 29491000168107 Ostran 29491000168107 Ostran 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +61313011000036104 Diovan 80 mg film-coated tablet, 14, blister pack 80868 57249011000036103 Diovan 80 mg film-coated tablet, 14 54254011000036107 Diovan 80 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63783011000036108 valsartan 80 mg tablet, 14 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +44222011000036109 Esmeron 100 mg/10 mL injection solution, 10 x 10 mL vials 57064 41698011000036106 Esmeron 100 mg/10 mL injection solution, 10 x 10 mL vials 40147011000036108 Esmeron 100 mg/10 mL injection solution, 10 mL vial 39588011000036108 Esmeron 39588011000036108 Esmeron 46515011000036109 rocuronium bromide 100 mg/10 mL injection, 10 x 10 mL vials 45194011000036104 rocuronium bromide 100 mg/10 mL injection, vial 44919011000036108 rocuronium +674241000168109 Molaxole powder for oral liquid, 8 sachets 213018 674231000168100 Molaxole powder for oral liquid, 8 sachets 674201000168107 Molaxole powder for oral liquid, sachet 172721000036108 Molaxole 172721000036108 Molaxole 669051000168107 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +865981000168107 Amitriptyline (PN) 25 mg tablet, 50, bottle 232149 865671000168103 Amitriptyline (PN) 25 mg tablet, 50 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1075911000168107 Aripiprazole (Auro) 5 mg uncoated tablet, 30, blister pack 198185 1075901000168109 Aripiprazole (Auro) 5 mg uncoated tablet, 30 1075851000168100 Aripiprazole (Auro) 5 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +60731011000036100 Panadol Sinus film-coated tablet, 24, blister pack 49563 56689011000036107 Panadol Sinus film-coated tablet, 24 54035011000036102 Panadol Sinus film-coated tablet 13691000168103 Panadol Sinus 13691000168103 Panadol Sinus 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +763181000168105 Tobramycin (Agila) 80 mg/2 mL injection solution, 5 x 2 mL vials 234430 763171000168107 Tobramycin (Agila) 80 mg/2 mL injection solution, 5 x 2 mL vials 763121000168106 Tobramycin (Agila) 80 mg/2 mL injection solution, 2 mL vial 763111000168104 Tobramycin (Agila) 763111000168104 Tobramycin (Agila) 27780011000036101 tobramycin 80 mg/2 mL injection, 5 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +903431000168107 Brillior 150 mg hard capsule, 20, blister pack 224342 903421000168109 Brillior 150 mg hard capsule, 20 903381000168100 Brillior 150 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +18091000036105 Vascalace 1.25 mg uncoated tablet, 30, blister pack 175217 16731000036106 Vascalace 1.25 mg uncoated tablet, 30 15331000036100 Vascalace 1.25 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +32597011000036100 Intron A (HSA-free) 10 million units/mL injection solution, 5 x 1 mL vials 63274 32392011000036104 Intron A (HSA-free) 10 million units/mL injection solution, 5 x 1 mL vials 6343011000036102 Intron A (HSA-free) 10 million units/mL injection solution, vial 27831000168103 Intron A 27831000168103 Intron A 32791011000036109 interferon alfa-2b 10 million units/mL injection, 5 x 1 mL vials 22866011000036101 interferon alfa-2b 10 million units/mL injection, vial 21525011000036103 interferon alfa-2b +811241000168106 Afinitor 2 mg dispersible tablet, 60, blister pack 200203 811231000168102 Afinitor 2 mg dispersible tablet, 60 811151000168101 Afinitor 2 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811221000168100 everolimus 2 mg dispersible tablet, 60 811141000168103 everolimus 2 mg dispersible tablet 21615011000036103 everolimus +1049981000168100 Tramal 50 mg hard capsule, 30, blister pack 64011 1049971000168103 Tramal 50 mg hard capsule, 30 6366011000036102 Tramal 50 mg hard capsule 24551000168102 Tramal 24551000168102 Tramal 1049961000168109 tramadol hydrochloride 50 mg capsule, 30 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +891551000168106 Bicor 3.75 mg film-coated tablet, 28, blister pack 81605 891541000168109 Bicor 3.75 mg film-coated tablet, 28 891491000168100 Bicor 3.75 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 874831000168106 bisoprolol fumarate 3.75 mg tablet, 28 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +38231000036105 Escitalupin 5 mg film-coated tablet, 28, blister pack 165838 34561000036105 Escitalupin 5 mg film-coated tablet, 28 33101000036100 Escitalupin 5 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +18427011000036106 Rythmodan 150 mg hard capsule, 100, blister pack 13538 11996011000036109 Rythmodan 150 mg hard capsule, 100 5002011000036103 Rythmodan 150 mg hard capsule 4034011000036109 Rythmodan 4034011000036109 Rythmodan 26836011000036109 disopyramide 150 mg capsule, 100 22217011000036107 disopyramide 150 mg capsule 21436011000036101 disopyramide +37687011000036108 Propofol (Abbott) 500 mg/50 mL injection emulsion, 50 mL vial 77731 36953011000036109 Propofol (Abbott) 500 mg/50 mL injection emulsion, 50 mL vial 36279011000036109 Propofol (Abbott) 500 mg/50 mL injection emulsion, 50 mL vial 35974011000036106 Propofol (Abbott) 35974011000036106 Propofol (Abbott) 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +18081000036108 Shilova 500 mg film-coated tablet, 30, bottle 173290 16721000036109 Shilova 500 mg film-coated tablet, 30 15391000036104 Shilova 500 mg film-coated tablet 15231000036107 Shilova 15231000036107 Shilova 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +35672011000036103 Lacri-Lube 1 g/g eye ointment, 2 x 3.5 g tubes 35554011000036104 Lacri-Lube 1 g/g eye ointment, 2 x 3.5 g 35474011000036109 Lacri-Lube 1 g/g eye ointment 35449011000036109 Lacri-Lube 35449011000036109 Lacri-Lube 35761011000036105 paraffin 1 g/g eye ointment, 2 x 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +86166011000036102 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet, 24, blister pack 169108 85774011000036108 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet, 24 85386011000036106 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet 85277011000036106 Ibuprofen plus Codeine (Pharmacy Health) 85277011000036106 Ibuprofen plus Codeine (Pharmacy Health) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +50349011000036100 Nexcare Tegaderm Transparent (H1626) 10 cm x 12 cm dressing, 4, carton 49378011000036100 Nexcare Tegaderm Transparent (H1626) 10 cm x 12 cm dressing, 4 48575011000036105 Nexcare Tegaderm Transparent (H1626) 10 cm x 12 cm dressing 41221000168107 Nexcare Tegaderm Transparent (H1626) 41221000168107 Nexcare Tegaderm Transparent (H1626) 51351011000036107 dressing film 10 cm x 12 cm dressing, 4 50874011000036102 dressing film 10 cm x 12 cm dressing 50711011000036108 dressing film +865971000168109 Amitriptyline (PN) 50 mg tablet, 1000, blister pack 232150 865901000168104 Amitriptyline (PN) 50 mg tablet, 1000 865851000168108 Amitriptyline (PN) 50 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1008241000168103 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, 60 actuations, dry powder inhaler 73726 1008231000168107 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, 60 actuations 1008151000168108 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, actuation 1007991000168101 Asmanex Twisthaler 1007991000168101 Asmanex Twisthaler 1008221000168109 mometasone furoate 400 microgram/actuation powder for inhalation, 60 actuations 1008141000168106 mometasone furoate 400 microgram/actuation powder for inhalation, actuation 21409011000036100 mometasone +933051011000036105 Motrig 100 mg tablet, 56, blister pack 106987 932847011000036105 Motrig 100 mg tablet, 56 932718011000036100 Motrig 100 mg tablet 925505011000036107 Motrig 925505011000036107 Motrig 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +1075751000168105 Quetiapine (Auro) 150 mg film-coated tablet, 100, bottle 172852 1075741000168108 Quetiapine (Auro) 150 mg film-coated tablet, 100 1075721000168102 Quetiapine (Auro) 150 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 1075731000168104 quetiapine 150 mg tablet, 100 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +925951000168101 Zorac 0.1% gel, 15 g, tube 59520 925941000168103 Zorac 0.1% gel, 15 g 925891000168104 Zorac 0.1% gel 39675011000036100 Zorac 39675011000036100 Zorac 925931000168107 tazarotene 0.1% gel, 15 g 925881000168102 tazarotene 0.1% gel 44886011000036105 tazarotene +176511000036105 Sildenafil (Terry White Chemists) 25 mg film-coated tablet, 4, blister pack 164815 174721000036102 Sildenafil (Terry White Chemists) 25 mg film-coated tablet, 4 173541000036103 Sildenafil (Terry White Chemists) 25 mg film-coated tablet 172591000036104 Sildenafil (Terry White Chemists) 172591000036104 Sildenafil (Terry White Chemists) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +170751000036101 Lutein-Vision soft capsule, 60, bottle 152759 169801000036107 Lutein-Vision soft capsule, 60 168901000036105 Lutein-Vision soft capsule 168811000036104 Lutein-Vision 168811000036104 Lutein-Vision 169811000036109 marigold Aztec 600 mg (lutein 6 mg) + selenomethionine 64.5 microgram (selenium 26 microgram) capsule, 60 168911000036107 marigold Aztec 600 mg (lutein 6 mg) + selenomethionine 64.5 microgram (selenium 26 microgram) capsule 171091000036104 marigold Aztec + selenium +1033041000168108 Ramipril (Apotex) 10 mg capsule, 10, blister pack 179036 1033031000168104 Ramipril (Apotex) 10 mg capsule, 10 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46762011000036101 ramipril 10 mg capsule, 10 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +116301000036109 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL ampoule 147006 114551000036105 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL ampoule 113371000036105 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL ampoule 112571000036109 Lovenox 112571000036109 Lovenox 79809011000036109 enoxaparin sodium 40 mg/0.4 mL injection, 0.4 mL ampoule 79742011000036105 enoxaparin sodium 40 mg/0.4 mL injection, ampoule 21553011000036103 enoxaparin sodium +19422011000036107 Clamoxyl 125/31.25 powder for oral liquid, 75 mL, bottle 146789 12706011000036103 Clamoxyl 125/31.25 powder for oral liquid, 75 mL 5493011000036101 Clamoxyl 125/31.25 powder for oral liquid, 5 mL 58961000168104 Clamoxyl 125/31.25 58961000168104 Clamoxyl 125/31.25 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +19422011000036107 Clamoxyl 125/31.25 powder for oral liquid, 75 mL, bottle 53501 12706011000036103 Clamoxyl 125/31.25 powder for oral liquid, 75 mL 5493011000036101 Clamoxyl 125/31.25 powder for oral liquid, 5 mL 58961000168104 Clamoxyl 125/31.25 58961000168104 Clamoxyl 125/31.25 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +1035731000168101 Aranesp 200 microgram/0.4 mL injection solution, 0.4 mL injection device 122857 1035721000168104 Aranesp 200 microgram/0.4 mL injection solution, 0.4 mL injection device 1035701000168108 Aranesp 200 microgram/0.4 mL injection solution, 0.4 mL injection device 6471000168109 Aranesp 6471000168109 Aranesp 1035711000168106 darbepoetin alfa 200 microgram/0.4 mL injection, 0.4 mL injection device 1035691000168108 darbepoetin alfa 200 microgram/0.4 mL injection device 21234011000036105 darbepoetin alfa +17771000036105 Simvastatin (Synthon) 80 mg film-coated tablet, 30, blister pack 100868 16471000036100 Simvastatin (Synthon) 80 mg film-coated tablet, 30 15601000036103 Simvastatin (Synthon) 80 mg film-coated tablet 15151000036106 Simvastatin (Synthon) 15151000036106 Simvastatin (Synthon) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +32538011000036107 Fluvax 2007 injection suspension, 1 x 0.5 mL syringe 117397 32332011000036106 Fluvax 2007 injection suspension, 1 x 0.5 mL syringe 5139011000036105 Fluvax 2007 injection suspension, 0.5 mL syringe 36871000168100 Fluvax 2007 36871000168100 Fluvax 2007 27994011000036103 influenza trivalent vaccine 2007 injection, 1 x 0.5 mL syringe 23317011000036106 influenza trivalent vaccine 2007 injection, 0.5 mL syringe 32638011000036100 influenza trivalent vaccine 2007 +810921000168102 Finasteride (AS) 1 mg film-coated tablet, 28, blister pack 189270 810911000168109 Finasteride (AS) 1 mg film-coated tablet, 28 810901000168106 Finasteride (AS) 1 mg film-coated tablet 810891000168107 Finasteride (AS) 810891000168107 Finasteride (AS) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +60783011000036107 Telfast 60 mg hard capsule, 2, blister pack 55127 56741011000036108 Telfast 60 mg hard capsule, 2 54060011000036100 Telfast 60 mg hard capsule 1461000168109 Telfast 1461000168109 Telfast 63544011000036101 fexofenadine hydrochloride 60 mg capsule, 2 62010011000036105 fexofenadine hydrochloride 60 mg capsule 21394011000036108 fexofenadine +995311000168107 Cepacol Mint 0.05% mouthwash, 150 mL, bottle 10104 995301000168109 Cepacol Mint 0.05% mouthwash, 150 mL 995291000168108 Cepacol Mint 0.05% mouthwash 32331000168107 Cepacol 32331000168107 Cepacol 994971000168102 cetylpyridinium chloride 0.05% mouthwash, 150 mL 994951000168106 cetylpyridinium chloride 0.05% mouthwash 69862011000036104 cetylpyridinium +656921000168101 Pravastatin Sodium (AN) 10 mg uncoated tablet, 30, blister pack 191713 656671000168106 Pravastatin Sodium (AN) 10 mg uncoated tablet, 30 656661000168100 Pravastatin Sodium (AN) 10 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +865741000168100 Amitriptyline (PN) 25 mg tablet, 1000, blister pack 232148 865731000168109 Amitriptyline (PN) 25 mg tablet, 1000 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +83177011000036103 Citalopram (Apo) 40 mg film-coated tablet, 28, blister pack 150626 83123011000036108 Citalopram (Apo) 40 mg film-coated tablet, 28 83069011000036107 Citalopram (Apo) 40 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +83177011000036103 Citalopram (Apo) 40 mg film-coated tablet, 28, blister pack 226579 83123011000036108 Citalopram (Apo) 40 mg film-coated tablet, 28 83069011000036107 Citalopram (Apo) 40 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +672751000168108 Ultibro Breezhaler 110/50 powder for inhalation, 30 capsules, blister pack 206449 672741000168106 Ultibro Breezhaler 110/50 powder for inhalation, 30 capsules 672701000168109 Ultibro Breezhaler 110/50 powder for inhalation, capsule 672621000168107 Ultibro Breezhaler 110/50 672621000168107 Ultibro Breezhaler 110/50 672721000168100 indacaterol 110 microgram + glycopyrronium 50 microgram powder for inhalation, 30 capsules 672681000168106 indacaterol 110 microgram + glycopyrronium 50 microgram powder for inhalation, capsule 672661000168102 indacaterol + glycopyrronium +19061011000036101 Veracaps SR 240 mg modified release capsule, 30, blister pack 41035 12369011000036109 Veracaps SR 240 mg modified release capsule, 30 4868011000036106 Veracaps SR 240 mg modified release capsule 25621000168105 Veracaps SR 25621000168105 Veracaps SR 27081011000036105 verapamil hydrochloride 240 mg modified release capsule, 30 22450011000036104 verapamil hydrochloride 240 mg modified release capsule 21287011000036109 verapamil +741801000168100 Jakavi 10 mg tablet, 60, bottle 232703 741791000168101 Jakavi 10 mg tablet, 60 741771000168102 Jakavi 10 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741781000168104 ruxolitinib 10 mg tablet, 60 741761000168108 ruxolitinib 10 mg tablet 146491000036100 ruxolitinib +753311000168105 Oxycodone (ZP) 20 mg hard capsule, 20, blister pack 227858 753271000168105 Oxycodone (ZP) 20 mg hard capsule, 20 753261000168104 Oxycodone (ZP) 20 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +965041000168106 Fosinopril (DP) 20 mg uncoated tablet, 30, blister pack 119889 965031000168102 Fosinopril (DP) 20 mg uncoated tablet, 30 965021000168100 Fosinopril (DP) 20 mg uncoated tablet 964981000168101 Fosinopril (DP) 964981000168101 Fosinopril (DP) 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +44428011000036108 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 71931 41884011000036109 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 40241011000036103 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 46687011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, 0.5 mL syringe 45266011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +44428011000036108 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 133809 41884011000036109 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 40241011000036103 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 46687011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, 0.5 mL syringe 45266011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +715861000168108 Clozole (Meditab) 2% vaginal cream, 20 g, tube 77595 715851000168106 Clozole (Meditab) 2% vaginal cream, 20 g 715841000168109 Clozole (Meditab) 2% vaginal cream 715831000168100 Clozole (Meditab) 715831000168100 Clozole (Meditab) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +12461000036107 Quetiapine (Sandoz) 100 mg film-coated tablet, 90, blister pack 158109 6791000036109 Quetiapine (Sandoz) 100 mg film-coated tablet, 90 3161000036105 Quetiapine (Sandoz) 100 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +69573011000036100 Konakion MM Adult 10 mg/mL injection solution, 5 x 1 mL ampoules 61654 67373011000036109 Konakion MM Adult 10 mg/mL injection solution, 5 x 1 mL ampoules 65633011000036100 Konakion MM Adult 10 mg/mL injection solution, ampoule 31291000168105 Konakion MM Adult 31291000168105 Konakion MM Adult 71913011000036107 phytomenadione 10 mg/mL injection, 5 x 1 mL ampoules 70244011000036108 phytomenadione 10 mg/mL injection, ampoule 69775011000036100 phytomenadione +658291000168106 Cephalexin (AN) 250 mg capsule, 20, blister pack 148200 658281000168108 Cephalexin (AN) 250 mg capsule, 20 658271000168105 Cephalexin (AN) 250 mg capsule 658231000168107 Cephalexin (AN) 658231000168107 Cephalexin (AN) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +787871000168109 Arizole 30 mg uncoated tablet, 60, blister pack 198196 787861000168103 Arizole 30 mg uncoated tablet, 60 787621000168109 Arizole 30 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787851000168100 aripiprazole 30 mg tablet, 60 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +35681011000036101 Gabapentin (Pharmacor) 800 mg film-coated tablet, 100, bottle 131519 35585011000036109 Gabapentin (Pharmacor) 800 mg film-coated tablet, 100 35489011000036104 Gabapentin (Pharmacor) 800 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +55221000036100 Teething (Pharmacy Choice) 8.7% oral gel, 20 g, tube 134652 51021000036108 Teething (Pharmacy Choice) 8.7% oral gel, 20 g 49411000036107 Teething (Pharmacy Choice) 8.7% oral gel 48561000036100 Teething (Pharmacy Choice) 48561000036100 Teething (Pharmacy Choice) 927403011000036102 choline salicylate 8.7% oral gel, 20 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +69075011000036102 Lisinopril (Apotex) 10 mg uncoated tablet, 30, bottle 143990 66876011000036102 Lisinopril (Apotex) 10 mg uncoated tablet, 30 65275011000036104 Lisinopril (Apotex) 10 mg uncoated tablet 52382011000036107 Lisinopril (Apotex) 52382011000036107 Lisinopril (Apotex) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +998281000168102 Desloratadine (Apo) 5 mg film-coated tablet, 30, blister pack 202823 998271000168100 Desloratadine (Apo) 5 mg film-coated tablet, 30 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72026011000036101 desloratadine 5 mg tablet, 30 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1003901000168101 Rivastigmine (Apo) 6 mg hard capsule, 56, blister pack 160571 1002991000168103 Rivastigmine (Apo) 6 mg hard capsule, 56 1002981000168101 Rivastigmine (Apo) 6 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27694011000036104 rivastigmine 6 mg capsule, 56 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +61366011000036106 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 96, blister pack 81524 57291011000036108 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 96 54294011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet 53164011000036100 Paracetamol (Pharmacy Health) 53164011000036100 Paracetamol (Pharmacy Health) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +81198011000036102 Sennesoft (Herron) film-coated tablet, 4, blister pack 82877 80700011000036102 Sennesoft (Herron) film-coated tablet, 4 80243011000036107 Sennesoft (Herron) film-coated tablet 18961000168106 Sennesoft (Herron) 18961000168106 Sennesoft (Herron) 81752011000036100 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 4 81306011000036109 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet 81227011000036109 sennoside B + senna leaf powder + docusate +931891000168104 Centevo 100/25/200 mg film-coated tablet, 200, bottle 238855 931881000168102 Centevo 100/25/200 mg film-coated tablet, 200 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931871000168100 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 200 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +121641000036104 Levetiracetam (Sandoz) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 193204 120601000036106 Levetiracetam (Sandoz) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 119661000036106 Levetiracetam (Sandoz) 500 mg/5 mL concentrated injection, 5 mL vial 87284011000036105 Levetiracetam (Sandoz) 87284011000036105 Levetiracetam (Sandoz) 120611000036108 levetiracetam 500 mg/5 mL injection, 10 x 5 mL vials 45019011000036106 levetiracetam 500 mg/5 mL injection, vial 21766011000036102 levetiracetam +1051581000168109 Palexia SR 50 mg modified release tablet, 30, blister pack 165332 1051571000168106 Palexia SR 50 mg modified release tablet, 30 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051561000168100 tapentadol 50 mg modified release tablet, 30 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +20210011000036103 Neurontin 100 mg hard capsule, 100, bottle 74068 13428011000036108 Neurontin 100 mg hard capsule, 100 6710011000036100 Neurontin 100 mg hard capsule 4344011000036106 Neurontin 4344011000036106 Neurontin 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +17761000036102 Simvastatin (Synthon) 10 mg film-coated tablet, 30, blister pack 100863 16441000036107 Simvastatin (Synthon) 10 mg film-coated tablet, 30 15621000036108 Simvastatin (Synthon) 10 mg film-coated tablet 15151000036106 Simvastatin (Synthon) 15151000036106 Simvastatin (Synthon) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +59737011000036106 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 24, blister pack 100402 55635011000036103 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 24 53721011000036102 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet 10731000168102 Paracetamol Minitab (Pharmacy Health) 10731000168102 Paracetamol Minitab (Pharmacy Health) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +934861000168109 Movicol powder for oral liquid, 8 sachets 60786 934851000168107 Movicol powder for oral liquid, 8 sachets 673961000168103 Movicol powder for oral liquid, sachet 22351000168103 Movicol 22351000168103 Movicol 669051000168107 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +960791000168108 Ciram 40 mg film-coated tablet, 250, bottle 158861 960781000168105 Ciram 40 mg film-coated tablet, 250 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202861000036107 citalopram 40 mg tablet, 250 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +50503011000036106 Co-Plus (3629) 7.5 cm x 3 m bandage, 1, carton 49509011000036103 Co-Plus (3629) 7.5 cm x 3 m bandage, 1 48657011000036109 Co-Plus (3629) 7.5 cm x 3 m bandage 50461000168106 Co-Plus (3629) 50461000168106 Co-Plus (3629) 51459011000036104 bandage retention cohesive heavy 7.5 cm x 3 m bandage, 1 50966011000036105 bandage retention cohesive heavy 7.5 cm x 3 m bandage 50704011000036109 bandage retention cohesive heavy +104441000036105 Irbesartan (DRLA) 150 mg film-coated tablet, 30, blister pack 190520 101621000036103 Irbesartan (DRLA) 150 mg film-coated tablet, 30 99131000036101 Irbesartan (DRLA) 150 mg film-coated tablet 97871000036100 Irbesartan (DRLA) 97871000036100 Irbesartan (DRLA) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +908911000168104 Celecoxib (GPPL) 100 mg hard capsule, 60, blister pack 206829 908901000168102 Celecoxib (GPPL) 100 mg hard capsule, 60 908891000168101 Celecoxib (GPPL) 100 mg hard capsule 908681000168103 Celecoxib (GPPL) 908681000168103 Celecoxib (GPPL) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +19952011000036109 Dilaudid 8 mg uncoated tablet, 20, bottle 67355 13195011000036105 Dilaudid 8 mg uncoated tablet, 20 6478011000036103 Dilaudid 8 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 27607011000036108 hydromorphone hydrochloride 8 mg tablet, 20 22946011000036100 hydromorphone hydrochloride 8 mg tablet 21480011000036107 hydromorphone +86039011000036107 Daily Dose Aspirin 100 mg enteric tablet, 90, blister pack 136679 85628011000036109 Daily Dose Aspirin 100 mg enteric tablet, 90 85303011000036104 Daily Dose Aspirin 100 mg enteric tablet 85252011000036107 Daily Dose Aspirin 85252011000036107 Daily Dose Aspirin 75601000036109 aspirin 100 mg enteric tablet, 90 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +744731000168102 Abstral 300 microgram sublingual tablet, 10, blister pack 228199 744721000168100 Abstral 300 microgram sublingual tablet, 10 744701000168109 Abstral 300 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744711000168107 fentanyl 300 microgram sublingual tablet, 10 744691000168109 fentanyl 300 microgram sublingual tablet 21258011000036102 fentanyl +1104811000168104 Quetiapine (Mylan) 200 mg film-coated tablet, 60, blister pack 162404 1104801000168102 Quetiapine (Mylan) 200 mg film-coated tablet, 60 1104791000168103 Quetiapine (Mylan) 200 mg film-coated tablet 1104591000168105 Quetiapine (Mylan) 1104591000168105 Quetiapine (Mylan) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +707271000168109 Cyklokapron 2 g/20 mL injection solution, 5 x 20 mL vials 212283 707261000168103 Cyklokapron 2 g/20 mL injection solution, 5 x 20 mL vials 707241000168102 Cyklokapron 2 g/20 mL injection solution, 20 mL vial 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 707251000168100 tranexamic acid 2 g/20 mL injection, 5 x 20 mL vials 707231000168106 tranexamic acid 2 g/20 mL injection, vial 21746011000036108 tranexamic acid +12381000036108 Olanzapine (RBX) 10 mg uncoated tablet, 28, blister pack 157859 6751000036100 Olanzapine (RBX) 10 mg uncoated tablet, 28 2841000036105 Olanzapine (RBX) 10 mg uncoated tablet 1591000168103 Olanzapine (RBX) 1591000168103 Olanzapine (RBX) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +920681011000036106 Epirubicin Hydrochloride (DBL) 100 mg/50 mL injection solution, 50 mL vial 101582 920347011000036102 Epirubicin Hydrochloride (DBL) 100 mg/50 mL injection solution, 50 mL vial 920118011000036104 Epirubicin Hydrochloride (DBL) 100 mg/50 mL injection solution, 50 mL vial 4322011000036104 Epirubicin Hydrochloride (DBL) 4322011000036104 Epirubicin Hydrochloride (DBL) 26804011000036109 epirubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22188011000036109 epirubicin hydrochloride 100 mg/50 mL injection, vial 21230011000036100 epirubicin +104601000036105 Irbesatzide 300/12.5 film-coated tablet, 30, blister pack 192842 101841000036105 Irbesatzide 300/12.5 film-coated tablet, 30 99031000036100 Irbesatzide 300/12.5 film-coated tablet 45261000168100 Irbesatzide 300/12.5 45261000168100 Irbesatzide 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +776401000168106 Early Bird 100 mg/square block, 18 squares, sachet 12815 776391000168109 Early Bird 100 mg/square block, 18 squares 776371000168108 Early Bird 100 mg/square block 776361000168102 Early Bird 776361000168102 Early Bird 776381000168106 pyrantel 100 mg/square block, 18 squares 61998011000036102 pyrantel 100 mg/square block 21475011000036105 pyrantel +82362011000036108 Simvastatin (GA) 40 mg film-coated tablet, 30, blister pack 131653 82126011000036107 Simvastatin (GA) 40 mg film-coated tablet, 30 81999011000036107 Simvastatin (GA) 40 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +82362011000036108 Simvastatin (GA) 40 mg film-coated tablet, 30, blister pack 199745 82126011000036107 Simvastatin (GA) 40 mg film-coated tablet, 30 81999011000036107 Simvastatin (GA) 40 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +170991000036108 Panadol Extra Optizorb film-coated tablet, 40, blister pack 203990 170071000036108 Panadol Extra Optizorb film-coated tablet, 40 168931000036103 Panadol Extra Optizorb film-coated tablet 7671000168109 Panadol Extra Optizorb 7671000168109 Panadol Extra Optizorb 170081000036105 paracetamol 500 mg + caffeine 65 mg tablet, 40 168941000036108 paracetamol 500 mg + caffeine 65 mg tablet 171051000036108 paracetamol + caffeine +805211000168107 Aczicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 147845 805201000168109 Aczicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 805191000168106 Aczicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924125011000036101 epoetin lambda 5000 units/0.5 mL injection, 0.5 mL syringe 923956011000036106 epoetin lambda 5000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +1076001000168102 Aripiprazole (Auro) 5 mg uncoated tablet, 100, bottle 198182 1075991000168103 Aripiprazole (Auro) 5 mg uncoated tablet, 100 1075851000168100 Aripiprazole (Auro) 5 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +18804011000036100 Minipress 5 mg uncoated tablet, 100, blister pack 10758 11380011000036100 Minipress 5 mg uncoated tablet, 100 5983011000036102 Minipress 5 mg uncoated tablet 4420011000036105 Minipress 4420011000036105 Minipress 27729011000036100 prazosin 5 mg tablet, 100 23064011000036100 prazosin 5 mg tablet 21544011000036104 prazosin +1068761000168105 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 24, blister pack 193078 1068751000168108 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 24 1068701000168109 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +1021251000168100 Sprycel 100 mg film-coated tablet, 30, blister pack 157356 84903011000036101 Sprycel 100 mg film-coated tablet, 30 84790011000036103 Sprycel 100 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 85183011000036109 dasatinib 100 mg tablet, 30 85087011000036108 dasatinib 100 mg tablet 21627011000036104 dasatinib +146371000036106 Vyvanse 70 mg hard capsule, 30, bottle 199228 145131000036102 Vyvanse 70 mg hard capsule, 30 143991000036103 Vyvanse 70 mg hard capsule 143261000036104 Vyvanse 143261000036104 Vyvanse 145141000036107 lisdexamfetamine dimesilate 70 mg capsule, 30 144001000036109 lisdexamfetamine dimesilate 70 mg capsule 146451000036109 lisdexamfetamine +933239361000036101 Prozine (Pharmacor) 5 mg uncoated tablet, 84, blister pack 172127 933236621000036107 Prozine (Pharmacor) 5 mg uncoated tablet, 84 933234621000036100 Prozine (Pharmacor) 5 mg uncoated tablet 933234271000036104 Prozine (Pharmacor) 933234271000036104 Prozine (Pharmacor) 924175011000036102 prochlorperazine maleate 5 mg tablet, 84 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +933229691000036103 Morphine Sulfate MR (Apotex) 100 mg modified release tablet, 60, blister pack 132258 933223651000036105 Morphine Sulfate MR (Apotex) 100 mg modified release tablet, 60 933219691000036108 Morphine Sulfate MR (Apotex) 100 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 35168011000036109 morphine sulfate pentahydrate 100 mg modified release tablet, 60 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +68836011000036105 Junior Cold and Flu Medicine (Nyal) 5 mg/5 mL oral liquid solution, 100 mL, bottle 122784 66667011000036103 Junior Cold and Flu Medicine (Nyal) 5 mg/5 mL oral liquid solution, 100 mL 65311011000036101 Junior Cold and Flu Medicine (Nyal) 5 mg/5 mL oral liquid solution, 5 mL 65119011000036108 Junior Cold and Flu Medicine (Nyal) 65119011000036108 Junior Cold and Flu Medicine (Nyal) 72000011000036108 phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 70274011000036109 phenylephrine hydrochloride 5 mg/5 mL oral liquid 37732011000036107 phenylephrine +661171000168101 Risperidone (AN) 2 mg film-coated tablet, 60, blister pack 166680 661161000168107 Risperidone (AN) 2 mg film-coated tablet, 60 661151000168105 Risperidone (AN) 2 mg film-coated tablet 661081000168104 Risperidone (AN) 661081000168104 Risperidone (AN) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +69572011000036107 Dettol Antiseptic Liquid 4.8% solution, 750 mL, bottle 61404 67372011000036102 Dettol Antiseptic Liquid 4.8% solution, 750 mL 65632011000036107 Dettol Antiseptic Liquid 4.8% solution 65186011000036101 Dettol Antiseptic Liquid 65186011000036101 Dettol Antiseptic Liquid 71912011000036100 chloroxylenol 4.8% solution, 750 mL 70243011000036106 chloroxylenol 4.8% solution 69808011000036100 chloroxylenol +854181000168102 Aliquen 300 mg film-coated tablet, 100, blister pack 204842 854171000168100 Aliquen 300 mg film-coated tablet, 100 854121000168101 Aliquen 300 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +925244011000036106 Rispericor-0.5 500 microgram film-coated tablet, 60, blister pack 159979 924781011000036101 Rispericor-0.5 500 microgram film-coated tablet, 60 924478011000036107 Rispericor-0.5 500 microgram film-coated tablet 25101000168108 Rispericor-0.5 25101000168108 Rispericor-0.5 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +810951000168105 Finasteride (GH) 1 mg film-coated tablet, 28, blister pack 189651 810941000168108 Finasteride (GH) 1 mg film-coated tablet, 28 810931000168104 Finasteride (GH) 1 mg film-coated tablet 678371000168100 Finasteride (GH) 678371000168100 Finasteride (GH) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +82912011000036100 Primacin 7.5 mg uncoated tablet, 28, tube 63856 82804011000036103 Primacin 7.5 mg uncoated tablet, 28 40185011000036109 Primacin 7.5 mg uncoated tablet 39775011000036108 Primacin 39775011000036108 Primacin 83016011000036104 primaquine 7.5 mg tablet, 28 45221011000036107 primaquine 7.5 mg tablet 44963011000036109 primaquine +933230781000036101 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 25, blister pack 172126 933224901000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 25 933220411000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet 933219291000036105 Prochlorperazine Maleate (GH) 933219291000036105 Prochlorperazine Maleate (GH) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +649631000168103 Rosuvastatin (DRLA) 40 mg film-coated tablet, 30, blister pack 210829 649621000168101 Rosuvastatin (DRLA) 40 mg film-coated tablet, 30 649611000168108 Rosuvastatin (DRLA) 40 mg film-coated tablet 649571000168104 Rosuvastatin (DRLA) 649571000168104 Rosuvastatin (DRLA) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +61160011000036100 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL, bottle 74631 57103011000036108 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL 54198011000036107 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +69546011000036107 Brevoxyl 4% cream, 5 g, tube 58220 67346011000036102 Brevoxyl 4% cream, 5 g 65621011000036103 Brevoxyl 4% cream 65066011000036106 Brevoxyl 65066011000036106 Brevoxyl 71891011000036103 benzoyl peroxide 4% cream, 5 g 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +721701000168105 Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24, blister pack 159902 721691000168105 Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24 721681000168107 Panadol Children's 3+ Years Cherry 120 mg chewable tablet 52981000168105 Panadol Children's 3+ Years 52981000168105 Panadol Children's 3+ Years 63398011000036103 paracetamol 120 mg chewable tablet, 24 61940011000036107 paracetamol 120 mg chewable tablet 21433011000036107 paracetamol +655391000168107 Ondansetron (AN) 8 mg film-coated tablet, 4, blister pack 173187 655381000168109 Ondansetron (AN) 8 mg film-coated tablet, 4 655371000168106 Ondansetron (AN) 8 mg film-coated tablet 655311000168103 Ondansetron (AN) 655311000168103 Ondansetron (AN) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +799431000168100 Abyraz 15 mg uncoated tablet, 5, blister pack 159506 799421000168103 Abyraz 15 mg uncoated tablet, 5 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799411000168105 aripiprazole 15 mg tablet, 5 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +61519011000036103 Pepzan Relief 20 mg film-coated tablet, 14, blister pack 93495 57444011000036100 Pepzan Relief 20 mg film-coated tablet, 14 54305011000036107 Pepzan Relief 20 mg film-coated tablet 6341000168109 Pepzan Relief 6341000168109 Pepzan Relief 63861011000036107 famotidine 20 mg tablet, 14 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +727411000168106 Caduet 10/40 film-coated tablet, 10, blister pack 100702 727401000168108 Caduet 10/40 film-coated tablet, 10 4766011000036105 Caduet 10/40 film-coated tablet 14261000168109 Caduet 10/40 14261000168109 Caduet 10/40 727391000168106 amlodipine 10 mg + atorvastatin 40 mg tablet, 10 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +82398011000036109 Diclofenac Sodium (Apo) 25 mg enteric tablet, 50, blister pack 160729 82187011000036103 Diclofenac Sodium (Apo) 25 mg enteric tablet, 50 82029011000036106 Diclofenac Sodium (Apo) 25 mg enteric tablet 54531000168107 Diclofenac Sodium (Apo) 54531000168107 Diclofenac Sodium (Apo) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +914711000168108 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet, 30, blister pack 198390 914701000168105 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet, 30 914651000168100 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet 914641000168102 Candesartan HCTZ 16/12.5 (DRLA) 914641000168102 Candesartan HCTZ 16/12.5 (DRLA) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +721621000168108 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24, strip pack 49816 721611000168101 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24 721541000168103 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet 30461000168105 Panadol Children's 7+ Years 30461000168105 Panadol Children's 7+ Years 71824011000036109 paracetamol 250 mg soluble tablet, 24 70204011000036104 paracetamol 250 mg soluble tablet 21433011000036107 paracetamol +940571000168106 Escitalopram (Chemmart) 5 mg film-coated tablet, 28, blister pack 146021 940561000168100 Escitalopram (Chemmart) 5 mg film-coated tablet, 28 940551000168102 Escitalopram (Chemmart) 5 mg film-coated tablet 75923011000036104 Escitalopram (Chemmart) 75923011000036104 Escitalopram (Chemmart) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +33506011000036106 Alzene 10 mg film-coated tablet, 30, bottle 116610 33249011000036104 Alzene 10 mg film-coated tablet, 30 33003011000036102 Alzene 10 mg film-coated tablet 32964011000036102 Alzene 32964011000036102 Alzene 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +796531000168105 Quetiapine (Accord) 300 mg film-coated tablet, 100, blister pack 203594 796521000168107 Quetiapine (Accord) 300 mg film-coated tablet, 100 796441000168102 Quetiapine (Accord) 300 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +933229531000036100 PKU Anamix Infant powder for oral liquid, 400 g, can 933223231000036100 PKU Anamix Infant powder for oral liquid, 400 g 933219421000036108 PKU Anamix Infant powder for oral liquid 37851000168107 PKU Anamix Infant 37851000168107 PKU Anamix Infant 51438011000036106 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine powder for oral liquid, 400 g 50954011000036105 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine powder for oral liquid 50736011000036109 amino acid formula with vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine +865661000168109 Amitriptyline (PN) 25 mg tablet, 10, blister pack 232148 865651000168107 Amitriptyline (PN) 25 mg tablet, 10 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +939041000168103 Ondansetron (Sandoz) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 132576 939031000168107 Ondansetron (Sandoz) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 939001000168100 Ondansetron (Sandoz) 8 mg/4 mL injection solution, 4 mL ampoule 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +652581000168109 Sildenafil PHT (Sandoz) 20 mg film-coated tablet, 90, blister pack 188702 652571000168106 Sildenafil PHT (Sandoz) 20 mg film-coated tablet, 90 652561000168100 Sildenafil PHT (Sandoz) 20 mg film-coated tablet 652551000168102 Sildenafil PHT (Sandoz) 652551000168102 Sildenafil PHT (Sandoz) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +909051000168107 Celecoxib (Bellwether) 200 mg hard capsule, 60, blister pack 196186 909041000168105 Celecoxib (Bellwether) 200 mg hard capsule, 60 908951000168103 Celecoxib (Bellwether) 200 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +60371011000036104 Otrivin Adult 0.1% nasal drops solution, 10 mL, bottle 142193 56330011000036104 Otrivin Adult 0.1% nasal drops solution, 10 mL 53876011000036106 Otrivin Adult 0.1% nasal drops solution 41971000168104 Otrivin Adult 41971000168104 Otrivin Adult 63312011000036100 xylometazoline hydrochloride 0.1% nasal drops, 10 mL 61915011000036107 xylometazoline hydrochloride 0.1% nasal drops 61748011000036102 xylometazoline +1104971000168102 Quetiapine (Mylan) 300 mg film-coated tablet, 60, blister pack 162405 1104961000168108 Quetiapine (Mylan) 300 mg film-coated tablet, 60 1104951000168106 Quetiapine (Mylan) 300 mg film-coated tablet 1104591000168105 Quetiapine (Mylan) 1104591000168105 Quetiapine (Mylan) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +19242011000036108 Ocuflox 0.3% eye drops solution, 5 mL, bottle 47485 12533011000036104 Ocuflox 0.3% eye drops solution, 5 mL 5670011000036100 Ocuflox 0.3% eye drops solution 3783011000036103 Ocuflox 3783011000036103 Ocuflox 27179011000036109 ofloxacin 0.3% eye drops, 5 mL 22541011000036103 ofloxacin 0.3% eye drops 21748011000036107 ofloxacin +60629011000036107 Osteoapatite with Boron (Nutrition Care) tablet, 75, bottle 22681 56587011000036105 Osteoapatite with Boron (Nutrition Care) tablet, 75 53990011000036106 Osteoapatite with Boron (Nutrition Care) tablet 53312011000036104 Osteoapatite with Boron (Nutrition Care) 53312011000036104 Osteoapatite with Boron (Nutrition Care) 63441011000036109 borax 8.8 mg (boron 1 mg) + colecalciferol 50 units (1.25 microgram) + copper amino acid chelate 5 mg (copper 300 microgram) + hydroxyapatite 460 mg (calcium 115 mg) + manganese amino acid chelate 50 mg (manganese 5 mg) + zinc amino acid chelate 15 mg (zinc 3 mg) tablet, 75 61966011000036104 borax 8.8 mg (boron 1 mg) + colecalciferol 50 units (1.25 microgram) + copper amino acid chelate 5 mg (copper 300 microgram) + hydroxyapatite 460 mg (calcium 115 mg) + manganese amino acid chelate 50 mg (manganese 5 mg) + zinc amino acid chelate 15 mg (zinc 3 mg) tablet 61717011000036109 borax + colecalciferol + copper amino acid chelate + hydroxyapatite + manganese amino acid chelate + zinc amino acid chelate +116141000036105 Lipodox 20 mg/10 mL concentrated injection, 10 mL vial 114361000036100 Lipodox 20 mg/10 mL concentrated injection, 10 mL vial 113151000036102 Lipodox 20 mg/10 mL concentrated injection, 10 mL vial 112731000036102 Lipodox 112731000036102 Lipodox 114371000036108 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, 10 mL vial 113031000036106 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +933239281000036101 Tecan 500 mg/25 mL concentrated injection, 25 mL vial 227304 933236411000036103 Tecan 500 mg/25 mL concentrated injection, 25 mL vial 933234601000036105 Tecan 500 mg/25 mL concentrated injection, 25 mL vial 84764011000036106 Tecan 84764011000036106 Tecan 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +933239281000036101 Tecan 500 mg/25 mL concentrated injection, 25 mL vial 169332 933236411000036103 Tecan 500 mg/25 mL concentrated injection, 25 mL vial 933234601000036105 Tecan 500 mg/25 mL concentrated injection, 25 mL vial 84764011000036106 Tecan 84764011000036106 Tecan 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +17793011000036109 Trandate 200 mg film-coated tablet, 100, bottle 12522 11796011000036100 Trandate 200 mg film-coated tablet, 100 5609011000036104 Trandate 200 mg film-coated tablet 4428011000036107 Trandate 4428011000036107 Trandate 27361011000036106 labetalol hydrochloride 200 mg tablet, 100 22713011000036105 labetalol hydrochloride 200 mg tablet 21315011000036106 labetalol +1076071000168107 Aripiprazole (Auro) 15 mg uncoated tablet, 56, blister pack 198187 1076061000168101 Aripiprazole (Auro) 15 mg uncoated tablet, 56 1076011000168104 Aripiprazole (Auro) 15 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 788101000168106 aripiprazole 15 mg tablet, 56 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +965201000168104 Clarithromycin (GenRx) 500 mg film-coated tablet, 3, blister pack 134857 965191000168102 Clarithromycin (GenRx) 500 mg film-coated tablet, 3 965181000168100 Clarithromycin (GenRx) 500 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 51515011000036104 clarithromycin 500 mg tablet, 3 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +146131000036106 Candesartan Cilexetil (Pharmacor) 16 mg uncoated tablet, 30, blister pack 195496 145211000036102 Candesartan Cilexetil (Pharmacor) 16 mg uncoated tablet, 30 143921000036101 Candesartan Cilexetil (Pharmacor) 16 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +17851000036109 Olanzapine (Synthon) 5 mg tablet, 28, blister pack 152179 16611000036109 Olanzapine (Synthon) 5 mg tablet, 28 15461000036102 Olanzapine (Synthon) 5 mg tablet 15191000036102 Olanzapine (Synthon) 15191000036102 Olanzapine (Synthon) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1032721000168106 Anti Diarrhoea (Amcal) 2 mg hard capsule, 20, blister pack 205128 1032711000168104 Anti Diarrhoea (Amcal) 2 mg hard capsule, 20 1032581000168104 Anti Diarrhoea (Amcal) 2 mg hard capsule 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 87019011000036104 loperamide hydrochloride 2 mg capsule, 20 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +19722011000036103 Zomig 2.5 mg film-coated tablet, 2, blister pack 61325 12976011000036102 Zomig 2.5 mg film-coated tablet, 2 6265011000036101 Zomig 2.5 mg film-coated tablet 3430011000036105 Zomig 3430011000036105 Zomig 27480011000036105 zolmitriptan 2.5 mg tablet, 2 22826011000036105 zolmitriptan 2.5 mg tablet 21516011000036102 zolmitriptan +37601011000036104 Amikin 500 mg/2 mL injection solution, 2 mL vial 19238 36868011000036102 Amikin 500 mg/2 mL injection solution, 2 mL vial 36203011000036100 Amikin 500 mg/2 mL injection solution, 2 mL vial 35883011000036107 Amikin 35883011000036107 Amikin 38755011000036107 amikacin 500 mg/2 mL injection, 2 mL vial 37975011000036109 amikacin 500 mg/2 mL injection, vial 37805011000036108 amikacin +20920011000036109 Ausfam 40 mg film-coated tablet, 30, blister pack 93789 14074011000036105 Ausfam 40 mg film-coated tablet, 30 7352011000036107 Ausfam 40 mg film-coated tablet 3986011000036102 Ausfam 3986011000036102 Ausfam 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +19713011000036101 Holoxan 1 g powder for injection, 1 vial 61045 12969011000036103 Holoxan 1 g powder for injection, 1 vial 6258011000036101 Holoxan 1 g powder for injection, vial 3908011000036104 Holoxan 3908011000036104 Holoxan 27478011000036102 ifosfamide 1 g injection, 1 vial 22824011000036102 ifosfamide 1 g injection, vial 21291011000036102 ifosfamide +19713011000036101 Holoxan 1 g powder for injection, 1 vial 43608 12969011000036103 Holoxan 1 g powder for injection, 1 vial 6258011000036101 Holoxan 1 g powder for injection, vial 3908011000036104 Holoxan 3908011000036104 Holoxan 27478011000036102 ifosfamide 1 g injection, 1 vial 22824011000036102 ifosfamide 1 g injection, vial 21291011000036102 ifosfamide +20193011000036109 Valtrex 500 mg film-coated tablet, 42, bottle 73918 13412011000036100 Valtrex 500 mg film-coated tablet, 42 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +55311000036101 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 10, blister pack 147409 51121000036107 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 10 48901000036105 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet 48431000036105 Metformin Hydrochloride 1000 (Meditab) 48431000036105 Metformin Hydrochloride 1000 (Meditab) 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1006961000168106 Maxatan 10 mg orally disintegrating tablet, 3, blister pack 222209 1006951000168109 Maxatan 10 mg orally disintegrating tablet, 3 1006901000168105 Maxatan 10 mg orally disintegrating tablet 1006861000168104 Maxatan 1006861000168104 Maxatan 742321000168109 rizatriptan 10 mg orally disintegrating tablet, 3 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +1097501000168102 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 1 L, pump pack 281338 1097491000168109 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 1 L 1094111000168100 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1097481000168106 ethanol 70% solution, 1 L 1094101000168103 ethanol 70% solution 69846011000036106 ethanol +1070131000168107 Rapideine Caplets film-coated tablet, 48, blister pack 83328 1070121000168109 Rapideine Caplets film-coated tablet, 48 1070031000168106 Rapideine Caplets film-coated tablet 1070021000168108 Rapideine Caplets 1070021000168108 Rapideine Caplets 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +18273011000036102 Nilstat 500 000 units film-coated tablet, 50, blister pack 15175 12079011000036102 Nilstat 500 000 units film-coated tablet, 50 5729011000036103 Nilstat 500 000 units film-coated tablet 32391000168106 Nilstat 32391000168106 Nilstat 26901011000036103 nystatin 500 000 units tablet, 50 22279011000036109 nystatin 500 000 units tablet 21669011000036102 nystatin +925273011000036105 Elonva 150 microgram/0.5 mL injection solution, 0.5 mL syringe 160645 924810011000036107 Elonva 150 microgram/0.5 mL injection solution, 0.5 mL syringe 924504011000036103 Elonva 150 microgram/0.5 mL injection solution, 0.5 mL syringe 924354011000036108 Elonva 924354011000036108 Elonva 925416011000036107 corifollitropin alfa 150 microgram/0.5 mL injection, 0.5 mL syringe 925374011000036100 corifollitropin alfa 150 microgram/0.5 mL injection, syringe 925370011000036105 corifollitropin alfa +18771011000036105 Kaletra 200/50 film-coated tablet, 120, bottle 121055 11661011000036102 Kaletra 200/50 film-coated tablet, 120 4832011000036104 Kaletra 200/50 film-coated tablet 40271000168102 Kaletra 200/50 40271000168102 Kaletra 200/50 26729011000036104 lopinavir 200 mg + ritonavir 50 mg tablet, 120 22124011000036107 lopinavir 200 mg + ritonavir 50 mg tablet 21345011000036102 lopinavir + ritonavir +52772011000036104 Fluarix 2009 injection suspension, 1 x 0.5 mL syringe 154660 52582011000036109 Fluarix 2009 injection suspension, 1 x 0.5 mL syringe 52430011000036108 Fluarix 2009 injection suspension, 0.5 mL syringe 6981000168103 Fluarix 2009 6981000168103 Fluarix 2009 52901011000036106 influenza trivalent adult vaccine 2009 injection, 1 x 0.5 mL syringe 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +926111000168109 Amorol 5% application, 5 mL, bottle 207880 926101000168106 Amorol 5% application, 5 mL 926071000168102 Amorol 5% application 926061000168108 Amorol 926061000168108 Amorol 27384011000036107 amorolfine 5% application, 5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +862921000168102 Amitriptyline (AC) 10 mg tablet, 1000, bottle 232106 862911000168109 Amitriptyline (AC) 10 mg tablet, 1000 862831000168108 Amitriptyline (AC) 10 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1001011000168103 Pregabalin (Apo) 50 mg hard capsule, 20, bottle 193246 1001001000168101 Pregabalin (Apo) 50 mg hard capsule, 20 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 902701000168102 pregabalin 50 mg capsule, 20 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1003891000168100 Rivastigmine (Apo) 6 mg hard capsule, 28, blister pack 160571 1003881000168103 Rivastigmine (Apo) 6 mg hard capsule, 28 1002981000168101 Rivastigmine (Apo) 6 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1003871000168101 rivastigmine 6 mg capsule, 28 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +59651000036106 Prioten 15 mg uncoated tablet, 28, blister pack 176384 59131000036105 Prioten 15 mg uncoated tablet, 28 58431000036107 Prioten 15 mg uncoated tablet 58101000036109 Prioten 58101000036109 Prioten 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +656761000168108 Telmisartan HCTZ 80/12.5mg (Apo) multilayer tablet, 28, blister pack 198229 656751000168106 Telmisartan HCTZ 80/12.5mg (Apo) multilayer tablet, 28 656741000168109 Telmisartan HCTZ 80/12.5mg (Apo) multilayer tablet 656731000168100 Telmisartan HCTZ 80/12.5mg (Apo) 656731000168100 Telmisartan HCTZ 80/12.5mg (Apo) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +656761000168108 Telmisartan HCTZ 80/12.5mg (Apo) multilayer tablet, 28, blister pack 208069 656751000168106 Telmisartan HCTZ 80/12.5mg (Apo) multilayer tablet, 28 656741000168109 Telmisartan HCTZ 80/12.5mg (Apo) multilayer tablet 656731000168100 Telmisartan HCTZ 80/12.5mg (Apo) 656731000168100 Telmisartan HCTZ 80/12.5mg (Apo) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +933229601000036106 Trueresult diagnostic strip, 50, bottle 933223261000036106 Trueresult diagnostic strip, 50 933219481000036109 Trueresult diagnostic strip 933219221000036107 Trueresult 933219221000036107 Trueresult 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1064351000168104 Strong Pain Relief (Trust) uncoated tablet, 36, blister pack 201679 1064341000168101 Strong Pain Relief (Trust) uncoated tablet, 36 1064231000168103 Strong Pain Relief (Trust) uncoated tablet 1064221000168101 Strong Pain Relief (Trust) 1064221000168101 Strong Pain Relief (Trust) 86453011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 36 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +896081000168100 Imatinib (GH) 400 mg hard capsule, 24, blister pack 281536 896071000168103 Imatinib (GH) 400 mg hard capsule, 24 896061000168109 Imatinib (GH) 400 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 893871000168100 imatinib 400 mg capsule, 24 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +18685011000036106 Dilantin 100 mg hard capsule, 200, bottle 14305 12019011000036106 Dilantin 100 mg hard capsule, 200 5360011000036102 Dilantin 100 mg hard capsule 2331000168104 Dilantin 2331000168104 Dilantin 26853011000036104 phenytoin sodium 100 mg capsule, 200 22234011000036106 phenytoin sodium 100 mg capsule 21672011000036100 phenytoin +779371000168101 Inlyta 3 mg film-coated tablet, 56, blister pack 213873 779361000168107 Inlyta 3 mg film-coated tablet, 56 779311000168109 Inlyta 3 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 779351000168105 axitinib 3 mg tablet, 56 779301000168106 axitinib 3 mg tablet 157041000036102 axitinib +900371000168109 Amlodipine (RBX) 5 mg tablet, 30, blister pack 195701 900361000168103 Amlodipine (RBX) 5 mg tablet, 30 900351000168100 Amlodipine (RBX) 5 mg tablet 900311000168101 Amlodipine (RBX) 900311000168101 Amlodipine (RBX) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +926921011000036109 Anti-Inflammatory (Guardian) 1% gel, 100 g, tube 90461 926315011000036109 Anti-Inflammatory (Guardian) 1% gel, 100 g 925757011000036108 Anti-Inflammatory (Guardian) 1% gel 925541011000036102 Anti-Inflammatory (Guardian) 925541011000036102 Anti-Inflammatory (Guardian) 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +121601000036102 Zinforo 600 mg powder for injection, 10 vials 192260 120531000036100 Zinforo 600 mg powder for injection, 10 vials 119601000036107 Zinforo 600 mg powder for injection, 600 mg vial 119141000036102 Zinforo 119141000036102 Zinforo 120541000036105 ceftaroline fosamil 600 mg injection, 10 vials 119611000036109 ceftaroline fosamil 600 mg injection, vial 121831000036105 ceftaroline +79065011000036107 Bio C-1000 film-coated tablet, 62, bottle 158507 78874011000036101 Bio C-1000 film-coated tablet, 62 78677011000036102 Bio C-1000 film-coated tablet 32191000168109 Bio C-1000 32191000168109 Bio C-1000 79244011000036107 ascorbic acid 400 mg + calcium ascorbate dihydrate 400 mg + sodium ascorbate 350 mg + citrus bioflavonoids extract 25 mg + rutoside 50 mg + hesperidin 50 mg + dog rose 250 mg + acerola 50 mg tablet, 62 79117011000036105 ascorbic acid 400 mg + calcium ascorbate dihydrate 400 mg + sodium ascorbate 350 mg + citrus bioflavonoids extract 25 mg + rutoside 50 mg + hesperidin 50 mg + dog rose 250 mg + acerola 50 mg tablet 79096011000036102 ascorbic acid + citrus bioflavonoids extract + rutoside + hesperidin + dog rose + acerola +880041000168109 Brinzolamide (Sandoz) 1% eye drops, 10 mL, bottle 218986 880031000168100 Brinzolamide (Sandoz) 1% eye drops, 10 mL 879991000168102 Brinzolamide (Sandoz) 1% eye drops 879881000168106 Brinzolamide (Sandoz) 879881000168106 Brinzolamide (Sandoz) 880021000168103 brinzolamide 1% eye drops, 10 mL 23623011000036104 brinzolamide 1% eye drops 21710011000036101 brinzolamide +61657011000036109 Ibuprofen (Amcal) 200 mg film-coated tablet, 48, blister pack 224608 57579011000036108 Ibuprofen (Amcal) 200 mg film-coated tablet, 48 54354011000036101 Ibuprofen (Amcal) 200 mg film-coated tablet 53505011000036108 Ibuprofen (Amcal) 53505011000036108 Ibuprofen (Amcal) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61657011000036109 Ibuprofen (Amcal) 200 mg film-coated tablet, 48, blister pack 97233 57579011000036108 Ibuprofen (Amcal) 200 mg film-coated tablet, 48 54354011000036101 Ibuprofen (Amcal) 200 mg film-coated tablet 53505011000036108 Ibuprofen (Amcal) 53505011000036108 Ibuprofen (Amcal) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +69272011000036103 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 19477 67072011000036101 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 65544011000036106 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71642011000036106 sodium chloride 0.9% (450 mg/50 mL) injection, 50 mL bag 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +79630011000036103 Roxithromycin (GA) 300 mg film-coated tablet, 5, blister pack 154657 79502011000036100 Roxithromycin (GA) 300 mg film-coated tablet, 5 79386011000036102 Roxithromycin (GA) 300 mg film-coated tablet 79350011000036109 Roxithromycin (GA) 79350011000036109 Roxithromycin (GA) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +12701000036103 Olanzapine (Terry White Chemists) 2.5 mg film-coated tablet, 28, blister pack 158974 6901000036104 Olanzapine (Terry White Chemists) 2.5 mg film-coated tablet, 28 1751000036107 Olanzapine (Terry White Chemists) 2.5 mg film-coated tablet 15211000168105 Olanzapine (Terry White Chemists) 15211000168105 Olanzapine (Terry White Chemists) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +929127011000036105 Zyprexa Zydis 15 mg wafer, 28, blister pack 73390 928484011000036105 Zyprexa Zydis 15 mg wafer, 28 927994011000036104 Zyprexa Zydis 15 mg wafer 15881000168103 Zyprexa Zydis 15881000168103 Zyprexa Zydis 929276011000036106 olanzapine 15 mg wafer, 28 929157011000036109 olanzapine 15 mg wafer 21485011000036103 olanzapine +933230541000036100 Levitaccord 500 mg film-coated tablet, 60, blister pack 168793 933224581000036102 Levitaccord 500 mg film-coated tablet, 60 933220301000036105 Levitaccord 500 mg film-coated tablet 42001000168101 Levitaccord 42001000168101 Levitaccord 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +709931000168109 Fluquadri Junior 2015 injection suspension, 10 x 0.25 mL syringes 213964 709921000168106 Fluquadri Junior 2015 injection suspension, 10 x 0.25 mL syringes 709901000168102 Fluquadri Junior 2015 injection suspension, 0.25 mL syringe 709861000168108 Fluquadri Junior 2015 709861000168108 Fluquadri Junior 2015 709911000168104 influenza quadrivalent child vaccine 2015 injection, 10 x 0.25 mL syringes 709891000168101 influenza quadrivalent child vaccine 2015 injection, 0.25 mL syringe 703011000168102 influenza quadrivalent vaccine 2015 +750621000168104 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 133649 750611000168106 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 750591000168101 Yaz (inert substance) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +750621000168104 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 133649 750611000168106 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 750581000168104 Yaz (drospirenone 3 mg + ethinylestradiol 20 microgram) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +1063621000168102 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 24, blister pack 155753 1063611000168109 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 24 1063471000168104 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +37686011000036105 Propofol (Abbott) 1 g/100 mL injection emulsion, 100 mL vial 77730 36952011000036102 Propofol (Abbott) 1 g/100 mL injection emulsion, 100 mL vial 36278011000036101 Propofol (Abbott) 1 g/100 mL injection emulsion, 100 mL vial 35974011000036106 Propofol (Abbott) 35974011000036106 Propofol (Abbott) 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +19584011000036103 Genoral 1.25 mg uncoated tablet, 56, blister pack 57855 12855011000036103 Genoral 1.25 mg uncoated tablet, 56 6146011000036100 Genoral 1.25 mg uncoated tablet 2959011000036109 Genoral 2959011000036109 Genoral 27396011000036103 oestrone sulfate sodium 1.25 mg tablet, 56 22745011000036102 oestrone sulfate sodium 1.25 mg tablet 21299011000036103 oestrone sulfate sodium +34636011000036105 Adronat Once Weekly 70 mg uncoated tablet, 2, blister pack 119100 34226011000036109 Adronat Once Weekly 70 mg uncoated tablet, 2 33972011000036107 Adronat Once Weekly 70 mg uncoated tablet 31881000168108 Adronat Once Weekly 31881000168108 Adronat Once Weekly 35106011000036106 alendronate 70 mg tablet, 2 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +69333011000036104 Camphor Linctus Compound (Gold Cross) 3 mg/5 mL oral liquid solution, 100 mL, bottle 27216 67133011000036100 Camphor Linctus Compound (Gold Cross) 3 mg/5 mL oral liquid solution, 100 mL 65503011000036104 Camphor Linctus Compound (Gold Cross) 3 mg/5 mL oral liquid solution, 5 mL 65011011000036100 Camphor Linctus Compound (Gold Cross) 65011011000036100 Camphor Linctus Compound (Gold Cross) 71698011000036102 camphor 3 mg/5 mL oral liquid, 100 mL 70134011000036105 camphor 3 mg/5 mL oral liquid 69833011000036101 camphor +931420011000036102 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet, 96, blister pack 119293 930572011000036101 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet, 96 929944011000036103 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet 929904011000036107 Ibuprofen Pain Relief (Chemmart) 929904011000036107 Ibuprofen Pain Relief (Chemmart) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +921885011000036106 Sevikar 20/5 film-coated tablet, 30, blister pack 157565 921444011000036106 Sevikar 20/5 film-coated tablet, 30 921013011000036107 Sevikar 20/5 film-coated tablet 3061000168102 Sevikar 20/5 3061000168102 Sevikar 20/5 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +181861000036107 Duoderm Gel (H7990) gel, 15 g, tube 158690 181871000036104 Duoderm Gel (H7990) gel, 15 g 171091000168106 Duoderm Gel (H7990) gel 52221000168104 Duoderm Gel (H7990) 52221000168104 Duoderm Gel (H7990) 181881000036102 dressing hydrogel amorphous gel, 15 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +667131000168105 Telmisartan (RBX) 80 mg uncoated tablet, 28, blister pack 199454 667121000168107 Telmisartan (RBX) 80 mg uncoated tablet, 28 667111000168100 Telmisartan (RBX) 80 mg uncoated tablet 667061000168101 Telmisartan (RBX) 667061000168101 Telmisartan (RBX) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +146051000036104 T Lukast 4 mg chewable tablet, 28, blister pack 189232 144861000036100 T Lukast 4 mg chewable tablet, 28 143861000036103 T Lukast 4 mg chewable tablet 143371000036101 T Lukast 143371000036101 T Lukast 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +926713011000036107 Perindopril Erbumine (Generic Health) 4 mg uncoated tablet, 30, blister pack 125455 926134011000036106 Perindopril Erbumine (Generic Health) 4 mg uncoated tablet, 30 925610011000036107 Perindopril Erbumine (Generic Health) 4 mg uncoated tablet 925543011000036101 Perindopril Erbumine (Generic Health) 925543011000036101 Perindopril Erbumine (Generic Health) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +60251011000036107 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 134660 56210011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63351011000036103 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +742081000168105 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 50, blister pack 232797 742071000168107 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 50 742031000168109 Amitriptyline (Alphapharm) 25 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +44326011000036101 Dalacin T 1% lotion, 7 mL, bottle 67060 41793011000036108 Dalacin T 1% lotion, 7 mL 40201011000036106 Dalacin T 1% lotion 9401000168107 Dalacin T 9401000168107 Dalacin T 46599011000036107 clindamycin 1% lotion, 7 mL 45233011000036105 clindamycin 1% lotion 21255011000036108 clindamycin +20809011000036100 Lisinopril (Hexal) 20 mg uncoated tablet, 30, bottle 91389 13972011000036109 Lisinopril (Hexal) 20 mg uncoated tablet, 30 7258011000036102 Lisinopril (Hexal) 20 mg uncoated tablet 3611011000036109 Lisinopril (Hexal) 3611011000036109 Lisinopril (Hexal) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +810881000168109 Ibuprofen (Blooms The Chemist) 200 mg film-coated tablet, 96, blister pack 253052 810871000168106 Ibuprofen (Blooms The Chemist) 200 mg film-coated tablet, 96 810841000168104 Ibuprofen (Blooms The Chemist) 200 mg film-coated tablet 810831000168108 Ibuprofen (Blooms The Chemist) 810831000168108 Ibuprofen (Blooms The Chemist) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1102161000168102 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet, 10, blister pack 286104 1102151000168104 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet, 10 1102141000168101 Olmesartan HCTZ 20/12.5 (Pharmacor) film-coated tablet 1102101000168103 Olmesartan HCTZ 20/12.5 (Pharmacor) 1102101000168103 Olmesartan HCTZ 20/12.5 (Pharmacor) 851991000168104 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 10 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +931662011000036107 Twynsta 40/5 mg multilayer tablet, 30, blister pack 166265 930822011000036103 Twynsta 40/5 mg multilayer tablet, 30 930059011000036105 Twynsta 40/5 mg multilayer tablet 33031000168101 Twynsta 40/5 mg 33031000168101 Twynsta 40/5 mg 932435011000036109 telmisartan 40 mg + amlodipine 5 mg tablet, 30 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +952251000168103 Stocrin 50 mg film-coated tablet, 30, bottle 125198 952241000168100 Stocrin 50 mg film-coated tablet, 30 952221000168106 Stocrin 50 mg film-coated tablet 4246011000036109 Stocrin 4246011000036109 Stocrin 952231000168109 efavirenz 50 mg tablet, 30 952211000168104 efavirenz 50 mg tablet 21616011000036105 efavirenz +986491000168100 Advil Double Strength Liquid Capsules 400 mg soft capsule, 48, blister pack 207293 986481000168103 Advil Double Strength Liquid Capsules 400 mg soft capsule, 48 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986471000168101 ibuprofen 400 mg capsule, 48 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +951971000168109 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 2, blister pack 273229 951961000168103 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 2 951951000168100 Cefuroxime (Pharmacor) 250 mg film-coated tablet 951941000168102 Cefuroxime (Pharmacor) 951941000168102 Cefuroxime (Pharmacor) 763521000168104 cefuroxime 250 mg tablet, 2 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +19216011000036102 Fluanxol Depot 20 mg/mL injection solution, 5 x 1 mL ampoules 47109 12506011000036102 Fluanxol Depot 20 mg/mL injection solution, 5 x 1 mL ampoules 5538011000036108 Fluanxol Depot 20 mg/mL injection solution, ampoule 38591000168101 Fluanxol Depot 38591000168101 Fluanxol Depot 27160011000036107 flupentixol decanoate 20 mg/mL injection, 5 x 1 mL ampoules 22522011000036107 flupentixol decanoate 20 mg/mL injection, ampoule 21335011000036103 flupentixol decanoate +770171000168108 Oralair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack, composite pack 167565 770161000168102 Oralair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack 770071000168107 Oralair 300 IR sublingual tablet 770141000168101 Oralair Initiation Treatment 770051000168103 Oralair 300 IR 770151000168104 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet [3] (&) Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet [7], 1 pack 770061000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +770171000168108 Oralair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack, composite pack 167565 770161000168102 Oralair Initiation Treatment (3 x 100 IR tablets, 7 x 300 IR tablets), 1 pack 770011000168104 Oralair 100 IR sublingual tablet 770141000168101 Oralair Initiation Treatment 769981000168106 Oralair 100 IR 770151000168104 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet [3] (&) Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet [7], 1 pack 770001000168102 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +50639011000036108 Teveten Plus film-coated tablet, 7, blister pack 143172 49665011000036108 Teveten Plus film-coated tablet, 7 7151011000036109 Teveten Plus film-coated tablet 29551000168101 Teveten Plus 29551000168101 Teveten Plus 51548011000036102 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet, 7 23305011000036103 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet 21527011000036108 eprosartan + hydrochlorothiazide +660711000168100 Amoxycillin (AN) 250 mg hard capsule, 20, blister pack 185793 660701000168103 Amoxycillin (AN) 250 mg hard capsule, 20 660691000168103 Amoxycillin (AN) 250 mg hard capsule 660631000168102 Amoxycillin (AN) 660631000168102 Amoxycillin (AN) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +862271000168105 Ostelin Vitamin D and Calcium film-coated tablet, 130, bottle 200088 862261000168104 Ostelin Vitamin D and Calcium film-coated tablet, 130 862241000168103 Ostelin Vitamin D and Calcium film-coated tablet 920102011000036100 Ostelin Vitamin D and Calcium 920102011000036100 Ostelin Vitamin D and Calcium 862251000168101 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 130 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +862271000168105 Ostelin Vitamin D and Calcium film-coated tablet, 130, bottle 114144 862261000168104 Ostelin Vitamin D and Calcium film-coated tablet, 130 862241000168103 Ostelin Vitamin D and Calcium film-coated tablet 920102011000036100 Ostelin Vitamin D and Calcium 920102011000036100 Ostelin Vitamin D and Calcium 862251000168101 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 130 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +810791000168102 Quetiapine XR (Apo) 50 mg modified release tablet, 60, blister pack 241755 810781000168100 Quetiapine XR (Apo) 50 mg modified release tablet, 60 810731000168101 Quetiapine XR (Apo) 50 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +1076551000168108 Aripiprazole (Auro) 20 mg uncoated tablet, 60, blister pack 198218 1076541000168106 Aripiprazole (Auro) 20 mg uncoated tablet, 60 1076471000168103 Aripiprazole (Auro) 20 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787751000168105 aripiprazole 20 mg tablet, 60 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +61005011000036104 Paracetamol Infant Drops (Terry White Chemists) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 63926 56948011000036106 Paracetamol Infant Drops (Terry White Chemists) Colour Free 100 mg/mL oral liquid solution, 20 mL 54134011000036106 Paracetamol Infant Drops (Terry White Chemists) Colour Free 100 mg/mL oral liquid solution 6611000168104 Paracetamol Infant Drops (Terry White Chemists) 6611000168104 Paracetamol Infant Drops (Terry White Chemists) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +819421000168100 Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe 95262 819411000168107 Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe 819391000168107 Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe 34301000168108 Somatuline Autogel 34301000168108 Somatuline Autogel 819401000168109 lanreotide 120 mg/0.5 mL injection, 0.5 mL syringe 819381000168109 lanreotide 120 mg/0.5 mL injection, syringe 21278011000036100 lanreotide +939361000168102 Celecoxib (Pfizer) 200 mg hard capsule, 120, blister pack 211501 939351000168104 Celecoxib (Pfizer) 200 mg hard capsule, 120 939241000168107 Celecoxib (Pfizer) 200 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +60166011000036108 Exforge 5/80 film-coated tablet, 56, blister pack 130787 56125011000036101 Exforge 5/80 film-coated tablet, 56 53801011000036105 Exforge 5/80 film-coated tablet 29171000168101 Exforge 5/80 29171000168101 Exforge 5/80 63229011000036106 amlodipine 5 mg + valsartan 80 mg tablet, 56 61897011000036105 amlodipine 5 mg + valsartan 80 mg tablet 61712011000036107 amlodipine + valsartan +785221000168101 Memantine (Generic Health) 20 mg film-coated tablet, 14, blister pack 168427 785211000168108 Memantine (Generic Health) 20 mg film-coated tablet, 14 667621000168101 Memantine (Generic Health) 20 mg film-coated tablet 667581000168101 Memantine (Generic Health) 667581000168101 Memantine (Generic Health) 785201000168105 memantine hydrochloride 20 mg tablet, 14 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +69709011000036105 Claramax 5 mg film-coated tablet, 28, blister pack 91115 67508011000036105 Claramax 5 mg film-coated tablet, 28 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72024011000036109 desloratadine 5 mg tablet, 28 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +69727011000036109 Aerius 5 mg film-coated tablet, 50, blister pack 91116 67526011000036101 Aerius 5 mg film-coated tablet, 50 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72028011000036102 desloratadine 5 mg tablet, 50 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +19404011000036109 Kripton 10 mg hard capsule, 100, bottle 53171 12688011000036109 Kripton 10 mg hard capsule, 100 4646011000036107 Kripton 10 mg hard capsule 3715011000036104 Kripton 3715011000036104 Kripton 27289011000036100 bromocriptine 10 mg capsule, 100 22643011000036107 bromocriptine 10 mg capsule 21300011000036100 bromocriptine +81155011000036100 Hemocane ointment, 50 g, tube 41514 80658011000036102 Hemocane ointment, 50 g 80228011000036104 Hemocane ointment 80099011000036108 Hemocane 80099011000036108 Hemocane 81716011000036108 zinc oxide 7.5% + lidocaine (lignocaine) 1.5% ointment, 50 g 81298011000036100 zinc oxide 7.5% + lidocaine (lignocaine) 1.5% ointment 81229011000036102 zinc oxide + lidocaine (lignocaine) +937191000168104 Xelocitabine 500 mg film-coated tablet, 120, blister pack 282531 937181000168102 Xelocitabine 500 mg film-coated tablet, 120 937171000168100 Xelocitabine 500 mg film-coated tablet 937161000168106 Xelocitabine 937161000168106 Xelocitabine 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +156641000036107 Allevyn Life (66801069) 15.4 cm x 15.4 cm dressing, 10, carton 92774 155641000036102 Allevyn Life (66801069) 15.4 cm x 15.4 cm dressing, 10 155041000036109 Allevyn Life (66801069) 15.4 cm x 15.4 cm dressing 37521000168102 Allevyn Life (66801069) 37521000168102 Allevyn Life (66801069) 155651000036104 dressing foam with silicone 15.4 cm x 15.4 cm dressing, 10 155051000036107 dressing foam with silicone 15.4 cm x 15.4 cm dressing 157031000036107 dressing foam with silicone +787391000168104 Arizole 10 mg uncoated tablet, 30, blister pack 198179 787381000168102 Arizole 10 mg uncoated tablet, 30 787341000168107 Arizole 10 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +866621000168107 Amitriptyline (RS) 25 mg tablet, 100, blister pack 232142 866611000168100 Amitriptyline (RS) 25 mg tablet, 100 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1033681000168106 Atomoxetine (GXP) 18 mg hard capsule, 7, blister pack 234838 1033671000168108 Atomoxetine (GXP) 18 mg hard capsule, 7 1033661000168102 Atomoxetine (GXP) 18 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +664961000168106 Remifentanil (Alphapharm) 1 mg powder for injection, 1 vial 163901 664951000168109 Remifentanil (Alphapharm) 1 mg powder for injection, 1 vial 664931000168103 Remifentanil (Alphapharm) 1 mg powder for injection, vial 664921000168101 Remifentanil (Alphapharm) 664921000168101 Remifentanil (Alphapharm) 664941000168107 remifentanil 1 mg injection, 1 vial 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +69127011000036100 Difflam Sore Throat Gargle with Iodine Concentrate 7.5% mouthwash, 15 mL, bottle 152417 66927011000036109 Difflam Sore Throat Gargle with Iodine Concentrate 7.5% mouthwash, 15 mL 65381011000036104 Difflam Sore Throat Gargle with Iodine Concentrate 7.5% mouthwash 62671000168108 Difflam Sore Throat Gargle with Iodine Concentrate 62671000168108 Difflam Sore Throat Gargle with Iodine Concentrate 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +1097821000168109 Fleet Phospho-Soda oral liquid solution, 45 mL, bottle 43656 1097811000168102 Fleet Phospho-Soda oral liquid solution, 45 mL 1097791000168101 Fleet Phospho-Soda oral liquid solution, bottle 61511000168109 Fleet Phospho-Soda 61511000168109 Fleet Phospho-Soda 1097801000168100 monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, 45 mL 1097781000168104 monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, bottle 1097771000168102 monobasic sodium phosphate + dibasic sodium phosphate +12781000036109 Olanzapine ODT (Apo) 15 mg orally disintegrating tablet, 28, bottle 158985 6991000036107 Olanzapine ODT (Apo) 15 mg orally disintegrating tablet, 28 1371000036103 Olanzapine ODT (Apo) 15 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +18770011000036103 Coversyl Plus 5/1.25 film-coated tablet, 30, tube 124553 11767011000036100 Coversyl Plus 5/1.25 film-coated tablet, 30 5861011000036106 Coversyl Plus 5/1.25 film-coated tablet 48401000168105 Coversyl Plus 5/1.25 48401000168105 Coversyl Plus 5/1.25 26767011000036101 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 30 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +718591000168109 Xeljanz 5 mg film-coated tablet, 56, blister pack 196987 718581000168106 Xeljanz 5 mg film-coated tablet, 56 718561000168102 Xeljanz 5 mg film-coated tablet 718521000168107 Xeljanz 718521000168107 Xeljanz 718571000168108 tofacitinib 5 mg tablet, 56 718551000168104 tofacitinib 5 mg tablet 718541000168101 tofacitinib +69410011000036109 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 1 L bag 47410 67210011000036101 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 1 L bag 65557011000036103 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 1 L bag 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 71783011000036104 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) injection, 1 L bag 70184011000036103 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +104761000036103 Lercanidipine Hydrochloride (GH) 20 mg film-coated tablet, 28, blister pack 194781 102081000036103 Lercanidipine Hydrochloride (GH) 20 mg film-coated tablet, 28 98951000036103 Lercanidipine Hydrochloride (GH) 20 mg film-coated tablet 97611000036107 Lercanidipine Hydrochloride (GH) 97611000036107 Lercanidipine Hydrochloride (GH) 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +951931000168106 Ziagel 5% oral gel, 50 g, pump pack 128897 951921000168108 Ziagel 5% oral gel, 50 g 951901000168104 Ziagel 5% oral gel 951881000168101 Ziagel 951881000168101 Ziagel 951911000168101 lidocaine (lignocaine) 5% oral gel, 50 g 951891000168103 lidocaine (lignocaine) 5% oral gel 21572011000036107 lidocaine (lignocaine) +44385011000036100 Arava 100 mg film-coated tablet, 3 tablets, blister pack 69695 41846011000036109 Arava 100 mg film-coated tablet, 3 tablets 40227011000036109 Arava 100 mg film-coated tablet, 1 tablet 3730011000036103 Arava 3730011000036103 Arava 46652011000036102 leflunomide 100 mg tablet, 3 33651011000036103 leflunomide 100 mg tablet 21504011000036108 leflunomide +892191000168100 Betahist 16 mg uncoated tablet, 10, blister pack 212079 892181000168103 Betahist 16 mg uncoated tablet, 10 892171000168101 Betahist 16 mg uncoated tablet 892161000168107 Betahist 892161000168107 Betahist 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +60192011000036107 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet, 20, blister pack 132577 56151011000036102 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet, 20 53809011000036109 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet 53526011000036106 Diarrhoea Relief (Priceline) 53526011000036106 Diarrhoea Relief (Priceline) 63806011000036101 loperamide hydrochloride 2.15 mg tablet, 20 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +79690011000036107 Androcur 50 mg uncoated tablet, 20, blister pack 156920 11341011000036100 Androcur 50 mg uncoated tablet, 20 5484011000036103 Androcur 50 mg uncoated tablet 3109011000036105 Androcur 3109011000036105 Androcur 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +923787011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 150 mg/7.5 mL concentrated injection, 5 x 7.5 mL vials 154239 923347011000036101 Irinotecan Hydrochloride Trihydrate (Ebewe) 150 mg/7.5 mL concentrated injection, 5 x 7.5 mL vials 923022011000036104 Irinotecan Hydrochloride Trihydrate (Ebewe) 150 mg/7.5 mL concentrated injection, 7.5 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 924148011000036109 irinotecan hydrochloride trihydrate 150 mg/7.5 mL injection, 5 x 7.5 mL vials 923965011000036105 irinotecan hydrochloride trihydrate 150 mg/7.5 mL injection, vial 21503011000036106 irinotecan +86021011000036106 Lisinopril (DRLA) 5 mg uncoated tablet, 100, blister pack 152720 85647011000036105 Lisinopril (DRLA) 5 mg uncoated tablet, 100 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 83478011000036103 lisinopril 5 mg tablet, 100 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +952291000168108 Anastrozole (Intas) 1 mg film-coated tablet, 30, blister pack 259989 952281000168105 Anastrozole (Intas) 1 mg film-coated tablet, 30 952271000168107 Anastrozole (Intas) 1 mg film-coated tablet 952261000168101 Anastrozole (Intas) 952261000168101 Anastrozole (Intas) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +81189011000036106 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 100 mL, bottle 81747 80691011000036102 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 100 mL 80239011000036109 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 5 mL 25021000168100 Actifed CC Chesty Cough 25021000168100 Actifed CC Chesty Cough 63613011000036101 guaifenesin 100 mg/5 mL oral liquid, 100 mL 62028011000036101 guaifenesin 100 mg/5 mL oral liquid 61763011000036101 guaifenesin +752951000168104 Olmesartan/Amlodipine 20/5 (Terry White Chemists) film-coated tablet, 30, blister pack 218255 752941000168101 Olmesartan/Amlodipine 20/5 (Terry White Chemists) film-coated tablet, 30 752931000168105 Olmesartan/Amlodipine 20/5 (Terry White Chemists) film-coated tablet 752921000168107 Olmesartan/Amlodipine 20/5 (Terry White Chemists) 752921000168107 Olmesartan/Amlodipine 20/5 (Terry White Chemists) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +18436011000036106 Paroxetine (Pharmacor) 20 mg film-coated tablet, 30, blister pack 130628 11906011000036107 Paroxetine (Pharmacor) 20 mg film-coated tablet, 30 5973011000036107 Paroxetine (Pharmacor) 20 mg film-coated tablet 3188011000036101 Paroxetine (Pharmacor) 3188011000036101 Paroxetine (Pharmacor) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +68921011000036109 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 1 L bottle 118482 66634011000036100 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 1 L bottle 65218011000036103 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 1 L bottle 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 71345011000036108 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) injection, 1 L bottle 69964011000036102 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) injection, bottle 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +896441000168100 Imatinib (AN) 400 mg hard capsule, 120, blister pack 281366 896431000168109 Imatinib (AN) 400 mg hard capsule, 120 896341000168107 Imatinib (AN) 400 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 893981000168108 imatinib 400 mg capsule, 120 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +104921000036105 Duloxetine (Terry White Chemists) 60 mg enteric capsule, 28, blister pack 217990 102111000036107 Duloxetine (Terry White Chemists) 60 mg enteric capsule, 28 98491000036103 Duloxetine (Terry White Chemists) 60 mg enteric capsule 97741000036104 Duloxetine (Terry White Chemists) 97741000036104 Duloxetine (Terry White Chemists) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +104921000036105 Duloxetine (Terry White Chemists) 60 mg enteric capsule, 28, blister pack 195354 102111000036107 Duloxetine (Terry White Chemists) 60 mg enteric capsule, 28 98491000036103 Duloxetine (Terry White Chemists) 60 mg enteric capsule 97741000036104 Duloxetine (Terry White Chemists) 97741000036104 Duloxetine (Terry White Chemists) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +733681000168109 Ribavirin (Abbvie) 200 mg film-coated tablet, 168, bottle 733671000168106 Ribavirin (Abbvie) 200 mg film-coated tablet, 168 733661000168100 Ribavirin (Abbvie) 200 mg film-coated tablet 733611000168103 Ribavirin (Abbvie) 733611000168103 Ribavirin (Abbvie) 46890011000036100 ribavirin 200 mg tablet, 168 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +1001331000168106 Valaciclovir (Apo) 500 mg film-coated tablet, 500, bottle 158910 1001321000168108 Valaciclovir (Apo) 500 mg film-coated tablet, 500 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 1001311000168101 valaciclovir 500 mg tablet, 500 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1020611000168109 Asacol 400 mg enteric tablet, 30, blister pack 261419 1020601000168106 Asacol 400 mg enteric tablet, 30 1020581000168102 Asacol 400 mg enteric tablet 844981000168102 Asacol 844981000168102 Asacol 1020591000168104 mesalazine 400 mg enteric tablet, 30 1020571000168100 mesalazine 400 mg enteric tablet 21351011000036101 mesalazine +20227011000036106 MS Mono 90 mg modified release capsule, 10, blister pack 74152 13441011000036101 MS Mono 90 mg modified release capsule, 10 6723011000036104 MS Mono 90 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27748011000036105 morphine sulfate pentahydrate 90 mg modified release capsule, 10 23079011000036107 morphine sulfate pentahydrate 90 mg modified release capsule 21252011000036100 morphine +744411000168102 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 33647 744401000168100 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 744381000168100 Diane-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 744371000168103 Diane-35 ED 744371000168103 Diane-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +744411000168102 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 33647 744401000168100 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 744391000168102 Diane-35 ED (inert substance) sugar coated tablet 744371000168103 Diane-35 ED 744371000168103 Diane-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +926431000168108 Zithromax 250 mg film-coated tablet, 4, blister pack 58795 926421000168105 Zithromax 250 mg film-coated tablet, 4 926371000168104 Zithromax 250 mg film-coated tablet 3528011000036100 Zithromax 3528011000036100 Zithromax 926411000168103 azithromycin 250 mg tablet, 4 926361000168105 azithromycin 250 mg tablet 21518011000036103 azithromycin +60851011000036104 Avil 45.3 mg uncoated tablet, 50, strip pack 191053 56805011000036100 Avil 45.3 mg uncoated tablet, 50 54085011000036107 Avil 45.3 mg uncoated tablet 4941000168102 Avil 4941000168102 Avil 63581011000036106 pheniramine maleate 45.3 mg tablet, 50 62020011000036103 pheniramine maleate 45.3 mg tablet 61798011000036109 pheniramine +60851011000036104 Avil 45.3 mg uncoated tablet, 50, strip pack 58691 56805011000036100 Avil 45.3 mg uncoated tablet, 50 54085011000036107 Avil 45.3 mg uncoated tablet 4941000168102 Avil 4941000168102 Avil 63581011000036106 pheniramine maleate 45.3 mg tablet, 50 62020011000036103 pheniramine maleate 45.3 mg tablet 61798011000036109 pheniramine +55951000036101 Multaq 400 mg film-coated tablet, 60, bottle 156356 52821000036105 Multaq 400 mg film-coated tablet, 60 48961000036109 Multaq 400 mg film-coated tablet 48081000036100 Multaq 48081000036100 Multaq 52831000036107 dronedarone 400 mg tablet, 60 48971000036101 dronedarone 400 mg tablet 56861000036100 dronedarone +52216011000036104 Ipratropium Bromide (Apo) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 151089 52101011000036109 Ipratropium Bromide (Apo) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 51994011000036108 Ipratropium Bromide (Apo) 250 microgram/mL inhalation solution, ampoule 14291000168102 Ipratropium Bromide (Apo) 14291000168102 Ipratropium Bromide (Apo) 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +920699011000036109 Atenolol (Sandoz) 50 mg film-coated tablet, 30, blister pack 101462 920346011000036100 Atenolol (Sandoz) 50 mg film-coated tablet, 30 920117011000036100 Atenolol (Sandoz) 50 mg film-coated tablet 920085011000036100 Atenolol (Sandoz) 920085011000036100 Atenolol (Sandoz) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +785061000168104 Ondansetron (GH) 8 mg film-coated tablet, 10, blister pack 231646 785051000168101 Ondansetron (GH) 8 mg film-coated tablet, 10 784951000168101 Ondansetron (GH) 8 mg film-coated tablet 784771000168108 Ondansetron (GH) 784771000168108 Ondansetron (GH) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +1104171000168100 Alepam 30 mg uncoated tablet, 90, bottle 17573 32372011000036109 Alepam 30 mg uncoated tablet, 90 32246011000036103 Alepam 30 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 32772011000036108 oxazepam 30 mg tablet, 90 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +18616011000036102 Prexige 200 mg film-coated tablet, 30, blister pack 104279 11282011000036108 Prexige 200 mg film-coated tablet, 30 5942011000036104 Prexige 200 mg film-coated tablet 3190011000036102 Prexige 3190011000036102 Prexige 26593011000036106 lumiracoxib 200 mg tablet, 30 22001011000036109 lumiracoxib 200 mg tablet 21905011000036104 lumiracoxib +933230461000036103 Saphris 5 mg sublingual wafer, 100, blister pack 166562 933224451000036105 Saphris 5 mg sublingual wafer, 100 933220181000036102 Saphris 5 mg sublingual wafer 933218931000036105 Saphris 933218931000036105 Saphris 933224461000036108 asenapine 5 mg sublingual wafer, 100 933220191000036100 asenapine 5 mg sublingual wafer 933232091000036101 asenapine +933229921000036106 Fenpatch 12 microgram/hour patch, 5, sachet 143880 933223721000036106 Fenpatch 12 microgram/hour patch, 5 933219811000036104 Fenpatch 12 microgram/hour patch 933218861000036106 Fenpatch 933218861000036106 Fenpatch 26685011000036103 fentanyl 12 microgram/hour patch, 5 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +38551000036104 Escitalup 10 mg film-coated tablet, 28, blister pack 165856 34881000036103 Escitalup 10 mg film-coated tablet, 28 33111000036103 Escitalup 10 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +797901000168108 Aciclovir (Watson) 200 mg uncoated tablet, 90, blister pack 202881 797891000168109 Aciclovir (Watson) 200 mg uncoated tablet, 90 797861000168102 Aciclovir (Watson) 200 mg uncoated tablet 795831000168101 Aciclovir (Watson) 795831000168101 Aciclovir (Watson) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +926880011000036104 Ralozam 1 mg uncoated tablet, 50, blister pack 63299 926276011000036102 Ralozam 1 mg uncoated tablet, 50 925721011000036101 Ralozam 1 mg uncoated tablet 925521011000036100 Ralozam 925521011000036100 Ralozam 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +77317011000036106 Imigran Mk II with Autoinjector 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 44466 76733011000036105 Imigran Mk II with Autoinjector 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 76149011000036103 Imigran Mk II with Autoinjector 6 mg/0.5 mL injection solution, 0.5 mL syringe 41151000168106 Imigran Mk II with Autoinjector 41151000168106 Imigran Mk II with Autoinjector 78246011000036102 sumatriptan 6 mg/0.5 mL injection, 2 x 0.5 mL syringes 77570011000036104 sumatriptan 6 mg/0.5 mL injection, syringe 21708011000036102 sumatriptan +44094011000036104 Amikacin (DBL) 500 mg/2 mL injection solution, 5 x 2 mL vials 49945 41580011000036100 Amikacin (DBL) 500 mg/2 mL injection solution, 5 x 2 mL vials 40083011000036103 Amikacin (DBL) 500 mg/2 mL injection solution, 2 mL vial 39646011000036108 Amikacin (DBL) 39646011000036108 Amikacin (DBL) 46408011000036108 amikacin 500 mg/2 mL injection, 5 x 2 mL vials 37975011000036109 amikacin 500 mg/2 mL injection, vial 37805011000036108 amikacin +892151000168105 Amlodipine (Unichem) 10 mg tablet, 30, blister pack 212151 892141000168108 Amlodipine (Unichem) 10 mg tablet, 30 892131000168104 Amlodipine (Unichem) 10 mg tablet 892071000168102 Amlodipine (Unichem) 892071000168102 Amlodipine (Unichem) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +32606011000036107 Thyrogen 900 microgram powder for injection, 2 vials 79777 32401011000036104 Thyrogen 900 microgram powder for injection, 2 vials 32252011000036100 Thyrogen 900 microgram powder for injection, 900 microgram vial 4124011000036101 Thyrogen 4124011000036101 Thyrogen 32799011000036108 thyrotropin alfa 900 microgram injection, 2 vials 32704011000036109 thyrotropin alfa 900 microgram injection, vial 21596011000036103 thyrotropin alfa +18248011000036108 Septrin Forte uncoated tablet, 10, blister pack 10998 12081011000036109 Septrin Forte uncoated tablet, 10 4765011000036103 Septrin Forte uncoated tablet 40141000168101 Septrin Forte 40141000168101 Septrin Forte 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +660851000168109 Gabapentin (AN) 600 mg film-coated tablet, 100, blister pack 156105 660841000168107 Gabapentin (AN) 600 mg film-coated tablet, 100 660831000168103 Gabapentin (AN) 600 mg film-coated tablet 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +1063461000168105 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 30, blister pack 144070 1063451000168108 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 30 1063281000168100 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 967201000168106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 30 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +1042081000168107 Atorvastatin (AS) 40 mg film-coated tablet, 50, blister pack 178541 1042071000168109 Atorvastatin (AS) 40 mg film-coated tablet, 50 1041981000168104 Atorvastatin (AS) 40 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841751000168109 atorvastatin 40 mg tablet, 50 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1067801000168103 Ibuprofen plus Codeine (Trust) film-coated tablet, 15, blister pack 175264 1067791000168104 Ibuprofen plus Codeine (Trust) film-coated tablet, 15 1067741000168107 Ibuprofen plus Codeine (Trust) film-coated tablet 1067731000168103 Ibuprofen plus Codeine (Trust) 1067731000168103 Ibuprofen plus Codeine (Trust) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +81821000036109 Rabeprazole Sodium (Sandoz) 10 mg enteric tablet, 28, blister pack 173081 80091000036109 Rabeprazole Sodium (Sandoz) 10 mg enteric tablet, 28 78771000036103 Rabeprazole Sodium (Sandoz) 10 mg enteric tablet 77811000036102 Rabeprazole Sodium (Sandoz) 77811000036102 Rabeprazole Sodium (Sandoz) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +60217011000036107 Sinus with Antihistamine (Chemmart) uncoated tablet, 24, blister pack 133207 56176011000036109 Sinus with Antihistamine (Chemmart) uncoated tablet, 24 53824011000036102 Sinus with Antihistamine (Chemmart) uncoated tablet 53365011000036106 Sinus with Antihistamine (Chemmart) 53365011000036106 Sinus with Antihistamine (Chemmart) 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +933229851000036106 Ramipril (Winthrop) 10 mg hard capsule, 30, blister pack 128853 933223521000036100 Ramipril (Winthrop) 10 mg hard capsule, 30 933219401000036103 Ramipril (Winthrop) 10 mg hard capsule 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +933229851000036106 Ramipril (Winthrop) 10 mg hard capsule, 30, blister pack 128854 933223521000036100 Ramipril (Winthrop) 10 mg hard capsule, 30 933219401000036103 Ramipril (Winthrop) 10 mg hard capsule 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +862191000168103 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100, bottle 196978 862181000168101 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100 862171000168104 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet 14051000168104 Caltrate 600 mg with Vitamin D 500 IU 14051000168104 Caltrate 600 mg with Vitamin D 500 IU 734011000168105 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +38591000036108 Escitalopram (LAPL) 15 mg film-coated tablet, 100, bottle 165859 34951000036104 Escitalopram (LAPL) 15 mg film-coated tablet, 100 33091000036109 Escitalopram (LAPL) 15 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +1102001000168102 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet, 30, bottle 286102 1101991000168104 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet, 30 1101981000168102 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet 1101971000168100 Olmesartan HCTZ 40/12.5 (Pharmacor) 1101971000168100 Olmesartan HCTZ 40/12.5 (Pharmacor) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +896401000168102 Imatinib (AN) 400 mg hard capsule, 48, blister pack 281366 896391000168104 Imatinib (AN) 400 mg hard capsule, 48 896341000168107 Imatinib (AN) 400 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 893921000168109 imatinib 400 mg capsule, 48 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +1012171000168104 Irbesartan (Apotex) 300 mg film-coated tablet, 98, blister pack 169795 1012161000168105 Irbesartan (Apotex) 300 mg film-coated tablet, 98 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777501000168105 irbesartan 300 mg tablet, 98 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +85431000036105 Fendex ER 2.5 mg modified release tablet, 100, bottle 184620 84881000036108 Fendex ER 2.5 mg modified release tablet, 100 84071000036103 Fendex ER 2.5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84891000036105 felodipine 2.5 mg modified release tablet, 100 22820011000036107 felodipine 2.5 mg modified release tablet 21440011000036100 felodipine +1010011000168107 Sildenafil (Apotex) 25 mg film-coated tablet, 1, blister pack 164804 1010001000168109 Sildenafil (Apotex) 25 mg film-coated tablet, 1 1009991000168105 Sildenafil (Apotex) 25 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 760251000168102 sildenafil 25 mg tablet, 1 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +656601000168101 Candesartan Cilexetil (AN) 32 mg uncoated tablet, 30, blister pack 195466 656351000168105 Candesartan Cilexetil (AN) 32 mg uncoated tablet, 30 656341000168108 Candesartan Cilexetil (AN) 32 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +55861000036105 Tortrigine DT 50 mg tablet, 56, blister pack 150768 51321000036105 Tortrigine DT 50 mg tablet, 56 49341000036101 Tortrigine DT 50 mg tablet 36451000168106 Tortrigine DT 36451000168106 Tortrigine DT 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +995071000168102 Cepacol Antibacterial Honey and Lemon lozenge, 16, blister pack 52421 995061000168108 Cepacol Antibacterial Honey and Lemon lozenge, 16 995041000168109 Cepacol Antibacterial Honey and Lemon lozenge 37601000168107 Cepacol Antibacterial 37601000168107 Cepacol Antibacterial 995051000168106 benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 16 995031000168100 benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge 69797011000036101 benzyl alcohol + cetylpyridinium +1007681000168106 Novacodone 40 mg modified release tablet, 20, blister pack 227944 1007671000168108 Novacodone 40 mg modified release tablet, 20 1007661000168102 Novacodone 40 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +700029881000036105 Brevinor 21 Day uncoated tablet, 21, blister pack 12998011000036109 Brevinor 21 Day uncoated tablet, 21 6285011000036103 Brevinor 21 Day uncoated tablet 700011831000036100 Brevinor 21 Day 700011831000036100 Brevinor 21 Day 28352011000036104 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet, 21 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +943611000168109 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 25 x 20 mL vials 48217 943601000168106 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 25 x 20 mL vials 943481000168101 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 20 mL vial 33651000168101 Omnipaque-240 33651000168101 Omnipaque-240 943591000168104 iohexol 518 mg (iodine 240 mg)/mL injection, 25 x 20 mL vials 943471000168104 iohexol 518 mg (iodine 240 mg)/mL injection, 20 mL vial 77459011000036103 iohexol +18171011000036100 Roxar 300 mg film-coated tablet, 5, blister pack 114041 11454011000036109 Roxar 300 mg film-coated tablet, 5 5629011000036107 Roxar 300 mg film-coated tablet 3911011000036105 Roxar 3911011000036105 Roxar 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +61177011000036105 Panadeine Caplet film-coated tablet, 16, blister pack 75184 57120011000036109 Panadeine Caplet film-coated tablet, 16 54205011000036101 Panadeine Caplet film-coated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63737011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 16 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +20963011000036109 Clopine 50 mg tablet, 100, bottle 95559 14117011000036102 Clopine 50 mg tablet, 100 7394011000036108 Clopine 50 mg tablet 3146011000036108 Clopine 3146011000036108 Clopine 28161011000036109 clozapine 50 mg tablet, 100 23470011000036106 clozapine 50 mg tablet 21222011000036104 clozapine +60928011000036103 Nurofen 200 mg sugar coated tablet, 6, blister pack 61869 56882011000036109 Nurofen 200 mg sugar coated tablet, 6 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60928011000036103 Nurofen 200 mg sugar coated tablet, 6, blister pack 127272 56882011000036109 Nurofen 200 mg sugar coated tablet, 6 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44231011000036101 Vancomycin (Abbott) 500 mg powder for injection, 1 vial 58031 41703011000036105 Vancomycin (Abbott) 500 mg powder for injection, 1 vial 40151011000036102 Vancomycin (Abbott) 500 mg powder for injection, 500 mg vial 39585011000036102 Vancomycin (Abbott) 39585011000036102 Vancomycin (Abbott) 27499011000036100 vancomycin 500 mg injection, 1 vial 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +50417011000036105 Calcium Resonium 999.3 mg/g powder, 300 g, can 12567 49544011000036108 Calcium Resonium 999.3 mg/g powder, 300 g 48642011000036105 Calcium Resonium 999.3 mg/g powder 48339011000036108 Calcium Resonium 48339011000036108 Calcium Resonium 51481011000036108 calcium polystyrene sulfonate 999.3 mg/g powder, 300 g 50982011000036108 calcium polystyrene sulfonate 999.3 mg/g powder 50702011000036100 calcium polystyrene sulfonate +20981011000036106 Emend (1 x 125 mg capsule, 2 x 80 mg capsules), 3, blister pack 95775 14127011000036106 Emend (1 x 125 mg capsule, 2 x 80 mg capsules), 3 7404011000036101 Emend 80 mg hard capsule 3261011000036105 Emend 3261011000036105 Emend 28163011000036105 aprepitant 125 mg capsule [1] (&) aprepitant 80 mg capsule [2], 3 23472011000036105 aprepitant 80 mg capsule 21632011000036103 aprepitant +20981011000036106 Emend (1 x 125 mg capsule, 2 x 80 mg capsules), 3, blister pack 95775 14127011000036106 Emend (1 x 125 mg capsule, 2 x 80 mg capsules), 3 7405011000036102 Emend 125 mg hard capsule 3261011000036105 Emend 3261011000036105 Emend 28163011000036105 aprepitant 125 mg capsule [1] (&) aprepitant 80 mg capsule [2], 3 23473011000036103 aprepitant 125 mg capsule 21632011000036103 aprepitant +59960011000036106 Nurofen Tension Headache 200 mg tablet, 4, blister pack 120354 55922011000036109 Nurofen Tension Headache 200 mg tablet, 4 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +130781000036106 Candesartan Cilexetil (Apo) 16 mg uncoated tablet, 30, blister pack 210531 128041000036100 Candesartan Cilexetil (Apo) 16 mg uncoated tablet, 30 124511000036102 Candesartan Cilexetil (Apo) 16 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +130781000036106 Candesartan Cilexetil (Apo) 16 mg uncoated tablet, 30, blister pack 191766 128041000036100 Candesartan Cilexetil (Apo) 16 mg uncoated tablet, 30 124511000036102 Candesartan Cilexetil (Apo) 16 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +870641000168105 Atomerra 80 mg hard capsule, 28, blister pack 234815 870631000168101 Atomerra 80 mg hard capsule, 28 870571000168102 Atomerra 80 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +18907011000036103 Z.S.C. (Sigma) dusting powder, 100 g, bottle 20355 12215011000036103 Z.S.C. (Sigma) dusting powder, 100 g 5293011000036102 Z.S.C. (Sigma) dusting powder 30566011000036106 Z.S.C. (Sigma) 30566011000036106 Z.S.C. (Sigma) 26986011000036109 zinc oxide 25% + maize starch 55.85% + purified talc 18.07% + chlorphenesin 1% dusting powder, 100 g 22359011000036103 zinc oxide 25% + maize starch 55.85% + purified talc 18.07% + chlorphenesin 1% dusting powder 32624011000036105 zinc oxide + maize starch + purified talc + chlorphenesin +853541000168104 Alphastat 10 mg film-coated tablet, 7, blister pack 187390 853531000168108 Alphastat 10 mg film-coated tablet, 7 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +853541000168104 Alphastat 10 mg film-coated tablet, 7, blister pack 212159 853531000168108 Alphastat 10 mg film-coated tablet, 7 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +20021011000036105 Indahexal 2.5 mg film-coated tablet, 90, blister pack 68960 13257011000036105 Indahexal 2.5 mg film-coated tablet, 90 6539011000036103 Indahexal 2.5 mg film-coated tablet 3916011000036100 Indahexal 3916011000036100 Indahexal 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +742311000168102 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet, 2, blister pack 220027 742301000168100 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet, 2 742291000168101 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet 742251000168106 Rizatriptan ODT (GH) 742251000168106 Rizatriptan ODT (GH) 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +1033401000168100 Aten 100 mg film-coated tablet, 500, bottle 197719 1033391000168102 Aten 100 mg film-coated tablet, 500 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1033381000168100 atenolol 100 mg tablet, 500 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +656441000168101 Terbinafine (Actavis) 250 mg uncoated tablet, 42, blister pack 207959 656431000168105 Terbinafine (Actavis) 250 mg uncoated tablet, 42 656421000168107 Terbinafine (Actavis) 250 mg uncoated tablet 656381000168103 Terbinafine (Actavis) 656381000168103 Terbinafine (Actavis) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +34739011000036109 Morphine Sulfate (DBL) 50 mg/5 mL injection solution, 50 x 5 mL ampoules 47256 34323011000036108 Morphine Sulfate (DBL) 50 mg/5 mL injection solution, 50 x 5 mL ampoules 34040011000036102 Morphine Sulfate (DBL) 50 mg/5 mL injection solution, 5 mL ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 35171011000036105 morphine sulfate pentahydrate 50 mg/5 mL injection, 50 x 5 mL ampoules 34887011000036109 morphine sulfate pentahydrate 50 mg/5 mL injection, ampoule 21252011000036100 morphine +60226011000036101 Strepfen Intensive honey and lemon 8.75 mg lozenge, 6, blister pack 133376 56185011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge, 6 53828011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63911011000036101 flurbiprofen 8.75 mg lozenge, 6 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +861721000168109 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses, tube 32272 861711000168102 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses 861691000168100 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 0.5 mL unit dose 62981000168104 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) 62981000168104 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) 861701000168100 lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose, 20 x 0.5 mL unit doses 861681000168103 lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose 37808011000036102 lidocaine (lignocaine) + fluorescein +20852011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92117 14015011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28078011000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [84 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20852011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92117 14015011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack 7294011000036104 Peg-Intron Redipen Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28078011000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [84 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20852011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92117 14015011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28078011000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [84 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +934541000168108 Obizur (5 x 500 units vials, 5 x 1 mL inert diluent syringes), 1 pack, composite pack 236475 934531000168104 Obizur (5 x 500 units vials, 5 x 1 mL inert diluent syringes), 1 pack 932441000168100 Obizur (inert substance) diluent, 1 mL syringe 932401000168102 Obizur 932401000168102 Obizur 934521000168102 susoctocog alfa 500 units injection [5 vials] (&) inert substance diluent [5 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +934541000168108 Obizur (5 x 500 units vials, 5 x 1 mL inert diluent syringes), 1 pack, composite pack 236475 934531000168104 Obizur (5 x 500 units vials, 5 x 1 mL inert diluent syringes), 1 pack 932431000168109 Obizur (susoctocog alfa 500 units) powder for injection, 500 units vial 932401000168102 Obizur 932401000168102 Obizur 934521000168102 susoctocog alfa 500 units injection [5 vials] (&) inert substance diluent [5 x 1 mL syringes], 1 pack 932421000168106 susoctocog alfa 500 units injection, vial 932411000168104 susoctocog alfa +700029801000036104 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 87132011000036109 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 87077011000036101 Juliet-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 700010021000036100 Juliet-35 ED 700010021000036100 Juliet-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +700029801000036104 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 87132011000036109 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 87078011000036100 Juliet-35 ED (inert substance) sugar coated tablet 700010021000036100 Juliet-35 ED 700010021000036100 Juliet-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19250011000036106 Zinnat 250 mg film-coated tablet, 14, blister pack 47621 12541011000036104 Zinnat 250 mg film-coated tablet, 14 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 27187011000036105 cefuroxime 250 mg tablet, 14 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +862511000168100 Cimzia 200 mg/mL injection solution, 2 x 1 mL injection devices 281317 862501000168103 Cimzia 200 mg/mL injection solution, 2 x 1 mL injection devices 862481000168107 Cimzia 200 mg/mL injection solution, injection device 87279011000036100 Cimzia 87279011000036100 Cimzia 862491000168105 certolizumab pegol 200 mg/mL injection, 2 x 1 mL injection devices 862471000168109 certolizumab pegol 200 mg/mL injection, injection device 87751011000036108 certolizumab pegol +923695011000036106 Grandicrit 7000 units/0.7 mL injection solution, 6 x 0.7 mL syringes 147832 923293011000036107 Grandicrit 7000 units/0.7 mL injection solution, 6 x 0.7 mL syringes 922981011000036104 Grandicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924117011000036102 epoetin lambda 7000 units/0.7 mL injection, 6 x 0.7 mL syringes 923948011000036108 epoetin lambda 7000 units/0.7 mL injection, syringe 923930011000036107 epoetin lambda +21152011000036103 Concorz 50 mg film-coated tablet, 30, blister pack 98697 14294011000036107 Concorz 50 mg film-coated tablet, 30 7580011000036102 Concorz 50 mg film-coated tablet 3452011000036105 Concorz 3452011000036105 Concorz 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +853781000168103 Alphastat 20 mg film-coated tablet, 30, blister pack 212161 853771000168101 Alphastat 20 mg film-coated tablet, 30 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +853781000168103 Alphastat 20 mg film-coated tablet, 30, blister pack 187388 853771000168101 Alphastat 20 mg film-coated tablet, 30 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +952451000168102 Minirin Melt 60 microgram sublingual wafer, 100, blister pack 121720 952441000168104 Minirin Melt 60 microgram sublingual wafer, 100 952391000168103 Minirin Melt 60 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 813471000168101 desmopressin 60 microgram sublingual wafer, 100 813391000168109 desmopressin 60 microgram sublingual wafer 21750011000036107 desmopressin +77251000036104 Zatamil 0.1% ointment, 15 g, tube 195416 76941000036108 Zatamil 0.1% ointment, 15 g 76751000036109 Zatamil 0.1% ointment 16071000168103 Zatamil 16071000168103 Zatamil 27413011000036104 mometasone furoate 0.1% ointment, 15 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +931386011000036101 Ferro-f film-coated tablet, 60, blister pack 128099 930586011000036109 Ferro-f film-coated tablet, 60 929954011000036100 Ferro-f film-coated tablet 30567011000036109 Ferro-f 30567011000036109 Ferro-f 26795011000036108 ferrous fumarate 310 mg (iron 100 mg) + folic acid 350 microgram tablet, 60 22181011000036100 ferrous fumarate 310 mg (iron 100 mg) + folic acid 350 microgram tablet 21667011000036109 ferrous fumarate + folic acid +1052631000168102 Palexia SR 150 mg modified release tablet, 7, blister pack 165347 1052621000168100 Palexia SR 150 mg modified release tablet, 7 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052611000168107 tapentadol 150 mg modified release tablet, 7 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +931628011000036103 Fenac 25 mg enteric tablet, 50, blister pack 165707 930788011000036107 Fenac 25 mg enteric tablet, 50 7112011000036107 Fenac 25 mg enteric tablet 4003011000036103 Fenac 4003011000036103 Fenac 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +857471000168100 Invega Trinza 350 mg/1.75 mL modified release injection, 1.75 mL syringe 261407 857461000168106 Invega Trinza 350 mg/1.75 mL modified release injection, 1.75 mL syringe 857451000168109 Invega Trinza 350 mg/1.75 mL modified release injection, 1.75 mL syringe 857421000168101 Invega Trinza 857421000168101 Invega Trinza 857351000168103 paliperidone 350 mg/1.75 mL modified release injection, 1.75 mL syringe 857331000168109 paliperidone 350 mg/1.75 mL modified release injection, syringe 34837011000036104 paliperidone +776081000168108 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 179184 776071000168105 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28 775971000168102 Leah (drospirenone 3 mg + ethinylestradiol 20 microgram) uncoated tablet 775961000168108 Leah 775961000168108 Leah 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +776081000168108 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 179184 776071000168105 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28 775981000168104 Leah (inert substance) uncoated tablet 775961000168108 Leah 775961000168108 Leah 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +727091000168108 Ofev 150 mg soft capsule, 60, blister pack 226068 727081000168105 Ofev 150 mg soft capsule, 60 727061000168101 Ofev 150 mg soft capsule 726971000168108 Ofev 726971000168108 Ofev 727071000168107 nintedanib 150 mg capsule, 60 727051000168103 nintedanib 150 mg capsule 726991000168109 nintedanib +50571011000036101 Durotram XR (once a day) 300 mg modified release tablet, 2, blister pack 134823 49605011000036107 Durotram XR (once a day) 300 mg modified release tablet, 2 48788011000036108 Durotram XR (once a day) 300 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51508011000036107 tramadol hydrochloride 300 mg modified release tablet, 2 50988011000036106 tramadol hydrochloride 300 mg modified release tablet 21486011000036105 tramadol +84273011000036106 Dicarz 12.5 mg film-coated tablet, 60, blister pack 124081 83966011000036109 Dicarz 12.5 mg film-coated tablet, 60 83602011000036107 Dicarz 12.5 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +105081000036106 Amlo 5 mg uncoated tablet, 30, blister pack 201371 102251000036104 Amlo 5 mg uncoated tablet, 30 98781000036107 Amlo 5 mg uncoated tablet 3312011000036106 Amlo 3312011000036106 Amlo 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +1067641000168102 Cold and Flu Day/Night (Cipla) (16 x Day tablets, 8 x Night tablets), 24, blister pack 223596 1067631000168106 Cold and Flu Day/Night (Cipla) (16 x Day tablets, 8 x Night tablets), 24 1067611000168101 Cold and Flu Day/Night (Day) (Cipla) uncoated tablet 1067421000168105 Cold and Flu Day/Night (Cipla) 1067441000168104 Cold and Flu Day/Night (Day) (Cipla) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +1067641000168102 Cold and Flu Day/Night (Cipla) (16 x Day tablets, 8 x Night tablets), 24, blister pack 223596 1067631000168106 Cold and Flu Day/Night (Cipla) (16 x Day tablets, 8 x Night tablets), 24 1067621000168108 Cold and Flu Day/Night (Night) (Cipla) uncoated tablet 1067421000168105 Cold and Flu Day/Night (Cipla) 1067451000168102 Cold and Flu Day/Night (Night) (Cipla) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +1033081000168103 Ramipril (Apotex) 10 mg capsule, 28, blister pack 179036 1033071000168101 Ramipril (Apotex) 10 mg capsule, 28 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46764011000036105 ramipril 10 mg capsule, 28 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +1036051000168100 Atorvastatin (RBX) 40 mg film-coated tablet, 30, blister pack 173486 1036041000168102 Atorvastatin (RBX) 40 mg film-coated tablet, 30 1036011000168101 Atorvastatin (RBX) 40 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1097981000168102 Aurozapine 15 mg film-coated tablet, 60, blister pack 183395 1097971000168100 Aurozapine 15 mg film-coated tablet, 60 1097941000168107 Aurozapine 15 mg film-coated tablet 15271000036109 Aurozapine 15271000036109 Aurozapine 46481011000036100 mirtazapine 15 mg tablet, 60 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +917931000168106 Zinnat 125 mg film-coated tablet, 50, blister pack 47620 917921000168108 Zinnat 125 mg film-coated tablet, 50 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917911000168101 cefuroxime 125 mg tablet, 50 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +69478011000036104 Ice 2% gel, 100 g, tube 49827 67278011000036106 Ice 2% gel, 100 g 65591011000036102 Ice 2% gel 65034011000036107 Ice 65034011000036107 Ice 71826011000036101 menthol 2% gel, 100 g 70206011000036107 menthol 2% gel 52233011000036104 menthol +794041000168103 Tacrolimus (Sandoz) 750 microgram hard capsule, 7, blister pack 229738 794031000168107 Tacrolimus (Sandoz) 750 microgram hard capsule, 7 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794021000168109 tacrolimus 750 microgram capsule, 7 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +964721000168102 Physiotens 300 microgram film-coated tablet, 7, blister pack 114120 964711000168109 Physiotens 300 microgram film-coated tablet, 7 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964221000168107 moxonidine 300 microgram tablet, 7 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +994991000168101 Cepacol 0.05% mouthwash, 150 mL, bottle 10098 994981000168104 Cepacol 0.05% mouthwash, 150 mL 994961000168108 Cepacol 0.05% mouthwash 32331000168107 Cepacol 32331000168107 Cepacol 994971000168102 cetylpyridinium chloride 0.05% mouthwash, 150 mL 994951000168106 cetylpyridinium chloride 0.05% mouthwash 69862011000036104 cetylpyridinium +937351000168107 Parpromine 10 mg film-coated tablet, 50, blister pack 224229 937341000168105 Parpromine 10 mg film-coated tablet, 50 937331000168101 Parpromine 10 mg film-coated tablet 937321000168104 Parpromine 937321000168104 Parpromine 27469011000036102 tranylcypromine 10 mg tablet, 50 22816011000036102 tranylcypromine 10 mg tablet 21845011000036104 tranylcypromine +724911000168108 TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 724901000168105 TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 724881000168108 TYR Anamix Junior LQ oral liquid solution, 125 mL bottle 83577011000036108 TYR Anamix Junior LQ 83577011000036108 TYR Anamix Junior LQ 724891000168106 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles 724871000168105 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle 84410011000036105 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid +33574011000036108 Fragmin 2500 anti-Xa units/0.2 mL injection solution, 10 x 0.2 mL syringes 25347 33312011000036108 Fragmin 2500 anti-Xa units/0.2 mL injection solution, 10 x 0.2 mL syringes 33076011000036102 Fragmin 2500 anti-Xa units/0.2 mL injection solution, 0.2 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 33796011000036107 dalteparin sodium 2500 anti-Xa units/0.2 mL injection, 10 x 0.2 mL syringes 33668011000036101 dalteparin sodium 2500 anti-Xa units/0.2 mL injection, syringe 21450011000036103 dalteparin sodium +18282011000036100 Epirubicin Hydrochloride (Ebewe) 200 mg/100 mL injection solution, 100 mL vial 131952 11927011000036104 Epirubicin Hydrochloride (Ebewe) 200 mg/100 mL injection solution, 100 mL vial 5164011000036100 Epirubicin Hydrochloride (Ebewe) 200 mg/100 mL injection solution, 100 mL vial 3912011000036104 Epirubicin Hydrochloride (Ebewe) 3912011000036104 Epirubicin Hydrochloride (Ebewe) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +798381000168100 Acimax 10 mg enteric tablet, 30, blister pack 67304 798371000168103 Acimax 10 mg enteric tablet, 30 798331000168101 Acimax 10 mg enteric tablet 3241011000036101 Acimax 3241011000036101 Acimax 27528011000036107 omeprazole 10 mg enteric tablet, 30 22868011000036102 omeprazole 10 mg enteric tablet 21676011000036101 omeprazole +931731011000036104 Potassium Permanganate (Gold Cross) 1 g/g powder, 50 g, jar 27378 930891011000036101 Potassium Permanganate (Gold Cross) 1 g/g powder, 50 g 930095011000036100 Potassium Permanganate (Gold Cross) 1 g/g powder 929903011000036105 Potassium Permanganate (Gold Cross) 929903011000036105 Potassium Permanganate (Gold Cross) 932472011000036103 potassium permanganate 1 g/g powder, 50 g 931871011000036100 potassium permanganate 1 g/g powder 931799011000036108 potassium permanganate +47181000036100 Mestinon 10 mg uncoated tablet, 50, bottle 13747 46651000036100 Mestinon 10 mg uncoated tablet, 50 5268011000036109 Mestinon 10 mg uncoated tablet 47101000168104 Mestinon 47101000168104 Mestinon 46661000036102 pyridostigmine bromide 10 mg tablet, 50 22224011000036109 pyridostigmine bromide 10 mg tablet 21240011000036101 pyridostigmine +951771000168107 Finasteride (APL) 5 mg film-coated tablet, 28, blister pack 210618 951761000168101 Finasteride (APL) 5 mg film-coated tablet, 28 951751000168103 Finasteride (APL) 5 mg film-coated tablet 951741000168100 Finasteride (APL) 951741000168100 Finasteride (APL) 933243481000036102 finasteride 5 mg tablet, 28 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +20775011000036108 Abilify 10 mg uncoated tablet, 30, blister pack 90997 13944011000036101 Abilify 10 mg uncoated tablet, 30 7232011000036101 Abilify 10 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +933230011000036107 Bisoprolol Fumarate (GH) 2.5 mg film-coated tablet, 28, blister pack 144894 933223811000036105 Bisoprolol Fumarate (GH) 2.5 mg film-coated tablet, 28 933219931000036103 Bisoprolol Fumarate (GH) 2.5 mg film-coated tablet 933219251000036101 Bisoprolol Fumarate (GH) 933219251000036101 Bisoprolol Fumarate (GH) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +1076391000168106 Aripiprazole (Auro) 10 mg uncoated tablet, 30, blister pack 198205 1076381000168108 Aripiprazole (Auro) 10 mg uncoated tablet, 30 1076351000168101 Aripiprazole (Auro) 10 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +68904011000036101 Laxettes 12 mg film-coated tablet, 3, blister pack 12817 66709011000036102 Laxettes 12 mg film-coated tablet, 3 65217011000036104 Laxettes 12 mg film-coated tablet 64991011000036102 Laxettes 64991011000036102 Laxettes 71392011000036106 sennosides A and B 12 mg tablet, 3 69992011000036109 sennosides A and B 12 mg tablet 69834011000036104 sennosides A and B +79681011000036104 Norfloxacin (Chemmart) 400 mg film-coated tablet, 14, bottle 155547 13785011000036101 Norfloxacin (Chemmart) 400 mg film-coated tablet, 14 7071011000036104 Norfloxacin (Chemmart) 400 mg film-coated tablet 2937011000036103 Norfloxacin (Chemmart) 2937011000036103 Norfloxacin (Chemmart) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +77231011000036100 Escitalopram (Apo) 20 mg film-coated tablet, 30, bottle 146016 76647011000036106 Escitalopram (Apo) 20 mg film-coated tablet, 30 76085011000036104 Escitalopram (Apo) 20 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +707601000168101 Hydroxychloroquine (GH) 200 mg film-coated tablet, 100, bottle 223695 707591000168108 Hydroxychloroquine (GH) 200 mg film-coated tablet, 100 707581000168105 Hydroxychloroquine (GH) 200 mg film-coated tablet 707571000168107 Hydroxychloroquine (GH) 707571000168107 Hydroxychloroquine (GH) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +752991000168109 Olmesartan/Amlodipine 20/5 (Blooms The Chemist) film-coated tablet, 30, blister pack 218258 752981000168106 Olmesartan/Amlodipine 20/5 (Blooms The Chemist) film-coated tablet, 30 752971000168108 Olmesartan/Amlodipine 20/5 (Blooms The Chemist) film-coated tablet 752961000168102 Olmesartan/Amlodipine 20/5 (Blooms The Chemist) 752961000168102 Olmesartan/Amlodipine 20/5 (Blooms The Chemist) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +20261011000036109 Piroxicam (GenRx) 10 mg capsule, 50, blister pack 75039 13471011000036100 Piroxicam (GenRx) 10 mg capsule, 50 6754011000036101 Piroxicam (GenRx) 10 mg capsule 3472011000036107 Piroxicam (GenRx) 3472011000036107 Piroxicam (GenRx) 27762011000036104 piroxicam 10 mg capsule, 50 23093011000036100 piroxicam 10 mg capsule 21531011000036103 piroxicam +776791000168108 Iopidine 0.5% eye drops solution, 2.5 mL, bottle 51190 776781000168105 Iopidine 0.5% eye drops solution, 2.5 mL 5464011000036101 Iopidine 0.5% eye drops solution 3165011000036109 Iopidine 3165011000036109 Iopidine 776771000168107 apraclonidine 0.5% eye drops, 2.5 mL 22604011000036100 apraclonidine 0.5% eye drops 21648011000036101 apraclonidine +19884011000036104 Zeldox 20 mg hard capsule, 60, blister pack 65526 13131011000036103 Zeldox 20 mg hard capsule, 60 6414011000036103 Zeldox 20 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27569011000036108 ziprasidone 20 mg capsule, 60 22908011000036106 ziprasidone 20 mg capsule 21267011000036107 ziprasidone +787551000168102 Arizole 15 mg uncoated tablet, 100, bottle 198189 787541000168104 Arizole 15 mg uncoated tablet, 100 787501000168101 Arizole 15 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +37652011000036104 Fibro-Vein 3% (60 mg/2 mL) injection solution, 5 x 2 mL ampoules 29638 36918011000036109 Fibro-Vein 3% (60 mg/2 mL) injection solution, 5 x 2 mL ampoules 36249011000036108 Fibro-Vein 3% (60 mg/2 mL) injection solution, 2 mL ampoule 35954011000036108 Fibro-Vein 35954011000036108 Fibro-Vein 38802011000036107 sodium tetradecyl sulfate 3% (60 mg/2 mL) injection, 5 x 2 mL ampoules 38013011000036104 sodium tetradecyl sulfate 3% (60 mg/2 mL) injection, ampoule 37728011000036107 sodium tetradecyl sulfate +18916011000036103 FML 0.1% eye drops suspension, 5 mL, bottle 23212 12224011000036105 FML 0.1% eye drops suspension, 5 mL 5840011000036109 FML 0.1% eye drops suspension 3805011000036103 FML 3805011000036103 FML 26999011000036101 fluorometholone 0.1% eye drops, 5 mL 22372011000036105 fluorometholone 0.1% eye drops 21597011000036100 fluorometholone +43786011000036105 Kytril 1 mg/mL injection solution, 5 x 1 mL ampoules 115317 41167011000036108 Kytril 1 mg/mL injection solution, 5 x 1 mL ampoules 39899011000036102 Kytril 1 mg/mL injection solution, ampoule 3372011000036100 Kytril 3372011000036100 Kytril 46134011000036108 granisetron 1 mg/mL injection, 5 x 1 mL ampoules 45003011000036106 granisetron 1 mg/mL injection, ampoule 21431011000036106 granisetron +999321000168103 Metvix 160 mg/g cream, 2 g, tube 93838 999311000168105 Metvix 160 mg/g cream, 2 g 999291000168106 Metvix 160 mg/g cream 39618011000036104 Metvix 39618011000036104 Metvix 999301000168107 methyl aminolevulinate 160 mg/g cream, 2 g 999281000168108 methyl aminolevulinate 160 mg/g cream 44958011000036105 aminolevulinic acid +926730011000036109 Provive 1% 500 mg/50 mL injection emulsion, 50 mL vial 118939 926113011000036103 Provive 1% 500 mg/50 mL injection emulsion, 50 mL vial 925632011000036103 Provive 1% 500 mg/50 mL injection emulsion, 50 mL vial 7831000168105 Provive 1% 7831000168105 Provive 1% 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +1041761000168105 Atorvastatin (AS) 10 mg film-coated tablet, 40, blister pack 178545 1041751000168108 Atorvastatin (AS) 10 mg film-coated tablet, 40 1041631000168105 Atorvastatin (AS) 10 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841561000168104 atorvastatin 10 mg tablet, 40 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1033721000168100 Atomoxetine (GXP) 18 mg hard capsule, 28, blister pack 234838 1033711000168107 Atomoxetine (GXP) 18 mg hard capsule, 28 1033661000168102 Atomoxetine (GXP) 18 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +928816011000036106 Mylanta 2go Original chewable tablet, 24, blister pack 118511 928185011000036105 Mylanta 2go Original chewable tablet, 24 927840011000036107 Mylanta 2go Original chewable tablet 927794011000036106 Mylanta 2go Original 927794011000036106 Mylanta 2go Original 929201011000036105 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet, 24 22091011000036107 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +19233011000036102 Locilan 28 Day 350 microgram uncoated tablet, 4 x 28, blister packs 47371 12523011000036101 Locilan 28 Day 350 microgram uncoated tablet, 4 x 28 5035011000036100 Locilan 28 Day 350 microgram uncoated tablet 700024631000036109 Locilan 28 Day 700024631000036109 Locilan 28 Day 27171011000036105 norethisterone 350 microgram tablet, 4 x 28 22533011000036103 norethisterone 350 microgram tablet 21579011000036102 norethisterone +933238721000036104 Hydrocoll (900936) 15 cm x 15 cm dressing, 10, carton 933235501000036107 Hydrocoll (900936) 15 cm x 15 cm dressing, 10 933234421000036102 Hydrocoll (900936) 15 cm x 15 cm dressing 47511000168108 Hydrocoll (900936) 47511000168108 Hydrocoll (900936) 51353011000036108 dressing hydrocolloid superficial wound moderate exudate 15 cm x 15 cm dressing, 10 50876011000036105 dressing hydrocolloid superficial wound moderate exudate 15 cm x 15 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +44831011000036106 Enablex 7.5 mg modified release tablet, 14, blister pack 99418 42263011000036102 Enablex 7.5 mg modified release tablet, 14 40410011000036102 Enablex 7.5 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47016011000036101 darifenacin 7.5 mg modified release tablet, 14 45376011000036105 darifenacin 7.5 mg modified release tablet 44860011000036105 darifenacin +69401011000036104 Decongestant Medicine (Nyal) 5 mg/5 mL oral liquid solution, 200 mL, bottle 44149 67201011000036106 Decongestant Medicine (Nyal) 5 mg/5 mL oral liquid solution, 200 mL 65549011000036107 Decongestant Medicine (Nyal) 5 mg/5 mL oral liquid solution, 5 mL 64964011000036101 Decongestant Medicine (Nyal) 64964011000036101 Decongestant Medicine (Nyal) 72001011000036101 phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 70274011000036109 phenylephrine hydrochloride 5 mg/5 mL oral liquid 37732011000036107 phenylephrine +60560011000036100 Polaramine Repetab Colour Free 6 mg modified release tablet, 40, blister pack 154654 56518011000036108 Polaramine Repetab Colour Free 6 mg modified release tablet, 40 53949011000036109 Polaramine Repetab Colour Free 6 mg modified release tablet 34221000168105 Polaramine Repetab 34221000168105 Polaramine Repetab 63409011000036102 dexchlorpheniramine maleate 6 mg modified release tablet, 40 61947011000036108 dexchlorpheniramine maleate 6 mg modified release tablet 61749011000036105 dexchlorpheniramine +50648011000036101 Oroxine 75 microgram uncoated tablet, 200, blister pack 144108 49673011000036100 Oroxine 75 microgram uncoated tablet, 200 48812011000036109 Oroxine 75 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 51552011000036103 levothyroxine sodium 75 microgram tablet, 200 50999011000036104 levothyroxine sodium 75 microgram tablet 21577011000036109 levothyroxine +32546011000036107 Fluconazole (Baxter) 200 mg/100 mL injection solution, 100 mL bag 126431 32338011000036109 Fluconazole (Baxter) 200 mg/100 mL injection solution, 100 mL bag 32215011000036101 Fluconazole (Baxter) 200 mg/100 mL injection solution, 100 mL bag 3609011000036106 Fluconazole (Baxter) 3609011000036106 Fluconazole (Baxter) 32760011000036100 fluconazole 200 mg/100 mL injection, 100 mL bag 32691011000036104 fluconazole 200 mg/100 mL injection, bag 21365011000036105 fluconazole +935251000168107 Centevo 125/31.25/200 mg film-coated tablet, 150, bottle 238856 935241000168105 Centevo 125/31.25/200 mg film-coated tablet, 150 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935231000168101 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 150 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1052451000168106 Palexia SR 150 mg modified release tablet, 50, blister pack 165347 1052441000168109 Palexia SR 150 mg modified release tablet, 50 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052431000168100 tapentadol 150 mg modified release tablet, 50 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +77154011000036100 Gastrografin solution, 100 mL, bottle 10684 76575011000036109 Gastrografin solution, 100 mL 76048011000036104 Gastrografin solution, 100 mL 75940011000036109 Gastrografin 75940011000036109 Gastrografin 78130011000036102 amidotrizoate meglumine 66 g/100 mL + sodium amidotrizoate 10 g/100 mL solution, 100 mL 77502011000036108 amidotrizoate meglumine 66 g/100 mL + sodium amidotrizoate 10 g/100 mL solution 77441011000036100 amidotrizoic acid +933230081000036104 Bicillin L-A 1.2 million units (900 mg)/2.3 mL injection suspension, 5 x 2.3 mL syringes 147169 933223931000036106 Bicillin L-A 1.2 million units (900 mg)/2.3 mL injection suspension, 5 x 2.3 mL syringes 933219991000036102 Bicillin L-A 1.2 million units (900 mg)/2.3 mL injection suspension, 2.3 mL syringe 4089011000036101 Bicillin L-A 4089011000036101 Bicillin L-A 933223941000036101 benzathine benzylpenicillin 1.2 million units (900 mg)/2.3 mL injection, 5 x 2.3 mL syringes 933220001000036107 benzathine benzylpenicillin 1.2 million units (900 mg)/2.3 mL injection, syringe 39429011000036100 benzathine benzylpenicillin +703981000168107 Parbezol 20 mg enteric tablet, 30, blister pack 216109 703971000168109 Parbezol 20 mg enteric tablet, 30 703941000168102 Parbezol 20 mg enteric tablet 703931000168106 Parbezol 703931000168106 Parbezol 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +82371011000036107 Coplavix 75 mg/100 mg film-coated tablet, 280, blister pack 150443 82160011000036101 Coplavix 75 mg/100 mg film-coated tablet, 280 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82548011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 280 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +44317011000036107 Voltaren 50 mg enteric tablet, 10, blister pack 66880 41784011000036106 Voltaren 50 mg enteric tablet, 10 5542011000036109 Voltaren 50 mg enteric tablet 28551000168108 Voltaren 28551000168108 Voltaren 46590011000036101 diclofenac sodium 50 mg enteric tablet, 10 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +81661000036104 Maxor 20 mg enteric capsule, 30, blister pack 173994 80101000036100 Maxor 20 mg enteric capsule, 30 78181000036100 Maxor 20 mg enteric capsule 55631000168107 Maxor 55631000168107 Maxor 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +20552011000036103 Alprazolam (Chemmart) 1 mg tablet, 50, blister pack 79801 13800011000036106 Alprazolam (Chemmart) 1 mg tablet, 50 7086011000036102 Alprazolam (Chemmart) 1 mg tablet 3440011000036109 Alprazolam (Chemmart) 3440011000036109 Alprazolam (Chemmart) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +18753011000036108 Pravastatin Sodium (Terry White Chemists) 40 mg uncoated tablet, 30, blister pack 118729 11594011000036107 Pravastatin Sodium (Terry White Chemists) 40 mg uncoated tablet, 30 5782011000036100 Pravastatin Sodium (Terry White Chemists) 40 mg uncoated tablet 3101011000036106 Pravastatin Sodium (Terry White Chemists) 3101011000036106 Pravastatin Sodium (Terry White Chemists) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +707681000168109 Betachek C50 diagnostic strip, 100, cartridge 231574 707671000168106 Betachek C50 diagnostic strip, 100 707661000168100 Betachek C50 diagnostic strip 707651000168102 Betachek C50 707651000168102 Betachek C50 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +61331011000036109 Paracetamol (Herron) 500 mg uncoated tablet, 36, blister pack 80924 57351011000036109 Paracetamol (Herron) 500 mg uncoated tablet, 36 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63944011000036109 paracetamol 500 mg tablet, 36 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +59669011000036101 Renastart powder for oral liquid, 10 x 100 g sachets 55630011000036107 Renastart powder for oral liquid, 10 x 100 g sachets 145591000168102 Renastart powder for oral liquid, 100 g sachet 53154011000036108 Renastart 53154011000036108 Renastart 63082011000036103 whey protein formula supplemented with amino acids, long chain polyunsaturated fatty acids, vitamins and minerals, low in protein, phosphate, potassium and lactose powder for oral liquid, 10 x 100 g sachets 145451000168106 whey protein formula supplemented with amino acids, long chain polyunsaturated fatty acids, vitamins and minerals, low in protein, phosphate, potassium and lactose powder for oral liquid, 100 g sachet 61806011000036105 whey protein formula supplemented with amino acids, long chain polyunsaturated fatty acids, vitamins and minerals, low in protein, phosphate, potassium and lactose +799751000168104 Abyraz 20 mg uncoated tablet, 5, blister pack 159505 799741000168101 Abyraz 20 mg uncoated tablet, 5 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799731000168105 aripiprazole 20 mg tablet, 5 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +943291000168102 Medformin 250 mg film-coated tablet, 10, blister pack 100286 943241000168105 Medformin 250 mg film-coated tablet, 10 943221000168104 Medformin 250 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943231000168101 metformin hydrochloride 250 mg tablet, 10 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +1020891000168101 Leflunomide (Apo) 20 mg uncoated tablet, 30, bottle 185717 1020881000168104 Leflunomide (Apo) 20 mg uncoated tablet, 30 1020871000168102 Leflunomide (Apo) 20 mg uncoated tablet 32491000168102 Leflunomide (Apo) 32491000168102 Leflunomide (Apo) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +43803011000036100 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 5 x 100 mL vials 116882 41182011000036108 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 5 x 100 mL vials 39918011000036100 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 100 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46146011000036101 ciprofloxacin 200 mg/100 mL injection, 5 x 100 mL vials 45081011000036109 ciprofloxacin 200 mg/100 mL injection, vial 21245011000036105 ciprofloxacin +20184011000036107 Fluoxetine (Chemmart) 20 mg hard capsule, 28, blister pack 73880 13407011000036101 Fluoxetine (Chemmart) 20 mg hard capsule, 28 6692011000036109 Fluoxetine (Chemmart) 20 mg hard capsule 3686011000036101 Fluoxetine (Chemmart) 3686011000036101 Fluoxetine (Chemmart) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +921926011000036102 Prantal 2% dusting powder, 120 g, bottle 18199 921485011000036104 Prantal 2% dusting powder, 120 g 5584011000036108 Prantal 2% dusting powder 4203011000036108 Prantal 4203011000036108 Prantal 922609011000036100 diphemanil metilsulfate 2% dusting powder, 120 g 22333011000036100 diphemanil metilsulfate 2% dusting powder 21757011000036108 diphemanil +943771000168105 Medformin 500 mg film-coated tablet, 100, blister pack 100288 943741000168103 Medformin 500 mg film-coated tablet, 100 943701000168100 Medformin 500 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +952411000168103 Minirin Melt 60 microgram sublingual wafer, 10, blister pack 121720 952401000168101 Minirin Melt 60 microgram sublingual wafer, 10 952391000168103 Minirin Melt 60 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 813411000168109 desmopressin 60 microgram sublingual wafer, 10 813391000168109 desmopressin 60 microgram sublingual wafer 21750011000036107 desmopressin +960311000168100 Ciram 20 mg film-coated tablet, 56, bottle 158859 959251000168108 Ciram 20 mg film-coated tablet, 56 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +69718011000036104 Aerius 5 mg film-coated tablet, 14, blister pack 91116 67517011000036107 Aerius 5 mg film-coated tablet, 14 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72019011000036100 desloratadine 5 mg tablet, 14 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1063301000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 10, blister pack 144070 1063291000168102 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 10 1063281000168100 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 63319011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 10 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +750941000168102 Nicotinell Step-2 14 mg/24 hours patch, 28, sachet 42625 750931000168106 Nicotinell Step-2 14 mg/24 hours patch, 28 925703011000036107 Nicotinell Step-2 14 mg/24 hours patch 46531000168100 Nicotinell Step-2 46531000168100 Nicotinell Step-2 63760011000036102 nicotine 14 mg/24 hours patch, 28 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +60697011000036108 Dimetapp DM Elixir oral liquid solution, 100 mL, bottle 43315 56655011000036101 Dimetapp DM Elixir oral liquid solution, 100 mL 54023011000036100 Dimetapp DM Elixir oral liquid solution, 5 mL 11581000168104 Dimetapp DM Elixir 11581000168104 Dimetapp DM Elixir 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +931536011000036108 Reditron 4 mg film-coated tablet, 10, blister pack 163430 930697011000036101 Reditron 4 mg film-coated tablet, 10 930020011000036103 Reditron 4 mg film-coated tablet 28261000168108 Reditron 28261000168108 Reditron 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +60183011000036104 Pain Plus Relief (Your Pharmacy) uncoated tablet, 12, blister pack 131896 56142011000036106 Pain Plus Relief (Your Pharmacy) uncoated tablet, 12 53806011000036100 Pain Plus Relief (Your Pharmacy) uncoated tablet 53337011000036109 Pain Plus Relief (Your Pharmacy) 53337011000036109 Pain Plus Relief (Your Pharmacy) 63244011000036108 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 12 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +130941000036100 Montelukast (Apo) 4 mg chewable tablet, 28, bottle 179111 127901000036100 Montelukast (Apo) 4 mg chewable tablet, 28 124271000036106 Montelukast (Apo) 4 mg chewable tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +929058011000036104 Galvumet 50/1000 film-coated tablet, 360, blister pack 161218 928419011000036109 Galvumet 50/1000 film-coated tablet, 360 927970011000036102 Galvumet 50/1000 film-coated tablet 14481000168101 Galvumet 50/1000 14481000168101 Galvumet 50/1000 929256011000036109 vildagliptin 50 mg + metformin hydrochloride 1 g tablet, 360 929156011000036106 vildagliptin 50 mg + metformin hydrochloride 1 g tablet 929132011000036106 vildagliptin + metformin +716901000168105 Omepro 20 mg enteric capsule, 7, blister pack 149516 716881000168108 Omepro 20 mg enteric capsule, 7 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716871000168105 omeprazole 20 mg enteric capsule, 7 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +61528011000036100 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 93610 57453011000036104 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 100 mL 54307011000036102 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 5 mL 45481000168108 Ibuprofen (Pharmacy Health) 45481000168108 Ibuprofen (Pharmacy Health) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +33591011000036103 Zavedos 10 mg/10 mL injection solution, 10 mL vial 67398 33329011000036108 Zavedos 10 mg/10 mL injection solution, 10 mL vial 33090011000036107 Zavedos 10 mg/10 mL injection solution, 10 mL vial 4217011000036101 Zavedos 4217011000036101 Zavedos 33810011000036107 idarubicin hydrochloride 10 mg/10 mL injection, 10 mL vial 33681011000036108 idarubicin hydrochloride 10 mg/10 mL injection, vial 21720011000036108 idarubicin +862361000168108 Ibuprofen Double Strength (Trust) 400 mg film-coated tablet, 12, blister pack 205746 862351000168106 Ibuprofen Double Strength (Trust) 400 mg film-coated tablet, 12 862341000168109 Ibuprofen Double Strength (Trust) 400 mg film-coated tablet 862331000168100 Ibuprofen Double Strength (Trust) 862331000168100 Ibuprofen Double Strength (Trust) 932368011000036100 ibuprofen 400 mg tablet, 12 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +874651000168101 Beezole 40 mg enteric tablet, 100, blister pack 205829 874641000168103 Beezole 40 mg enteric tablet, 100 874551000168102 Beezole 40 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +86038011000036104 Daily Dose Aspirin 100 mg enteric tablet, 30, blister pack 136679 85627011000036108 Daily Dose Aspirin 100 mg enteric tablet, 30 85303011000036104 Daily Dose Aspirin 100 mg enteric tablet 85252011000036107 Daily Dose Aspirin 85252011000036107 Daily Dose Aspirin 75591000036102 aspirin 100 mg enteric tablet, 30 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +85591000036107 Razit 20 mg enteric tablet, 30, blister pack 189239 84721000036104 Razit 20 mg enteric tablet, 30 84221000036108 Razit 20 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +50468011000036107 Risperidone (GA) 2 mg film-coated tablet, 60, bottle 127786 49554011000036106 Risperidone (GA) 2 mg film-coated tablet, 60 48704011000036100 Risperidone (GA) 2 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +37669011000036104 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 10% eye drops solution, 20 x 0.5 mL unit doses, tube 32276 36935011000036106 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 10% eye drops solution, 20 x 0.5 mL unit doses 36266011000036105 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 10% eye drops solution, 0.5 mL unit dose 25451000168104 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 25451000168104 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 38816011000036109 phenylephrine hydrochloride 10% eye drops, 20 x 0.5 mL unit doses 38026011000036102 phenylephrine hydrochloride 10% eye drops, unit dose 37732011000036107 phenylephrine +933125011000036102 Amiodarone Hydrochloride (Sandoz) 200 mg uncoated tablet, 30, blister pack 77739 932921011000036107 Amiodarone Hydrochloride (Sandoz) 200 mg uncoated tablet, 30 932773011000036102 Amiodarone Hydrochloride (Sandoz) 200 mg uncoated tablet 932705011000036109 Amiodarone Hydrochloride (Sandoz) 932705011000036109 Amiodarone Hydrochloride (Sandoz) 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +79698011000036109 Dolased Analgesic and Calmative uncoated tablet, 40, blister pack 157880 79514011000036106 Dolased Analgesic and Calmative uncoated tablet, 40 54306011000036100 Dolased Analgesic and Calmative uncoated tablet 53285011000036100 Dolased Analgesic and Calmative 53285011000036100 Dolased Analgesic and Calmative 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60507011000036103 Cold and Flu Relief PE (Chemists' Own) uncoated tablet, 48, blister pack 150873 56465011000036105 Cold and Flu Relief PE (Chemists' Own) uncoated tablet, 48 53930011000036102 Cold and Flu Relief PE (Chemists' Own) uncoated tablet 53188011000036109 Cold and Flu Relief PE (Chemists' Own) 53188011000036109 Cold and Flu Relief PE (Chemists' Own) 63381011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 48 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1007361000168109 Modafinil (Mylan) 100 mg uncoated tablet, 30, blister pack 269913 1007351000168107 Modafinil (Mylan) 100 mg uncoated tablet, 30 1007301000168108 Modafinil (Mylan) 100 mg uncoated tablet 1007271000168106 Modafinil (Mylan) 1007271000168106 Modafinil (Mylan) 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +34748011000036102 Dicodin 120 mg modified release tablet, 56, blister pack 47721 34329011000036106 Dicodin 120 mg modified release tablet, 56 34046011000036104 Dicodin 120 mg modified release tablet 33938011000036107 Dicodin 33938011000036107 Dicodin 35177011000036102 dihydrocodeine tartrate 120 mg modified release tablet, 56 34891011000036102 dihydrocodeine tartrate 120 mg modified release tablet 34841011000036108 dihydrocodeine +925255011000036108 Sumatriptan (Lupin) 100 mg film-coated tablet, 2, blister pack 160191 924792011000036108 Sumatriptan (Lupin) 100 mg film-coated tablet, 2 924487011000036103 Sumatriptan (Lupin) 100 mg film-coated tablet 924379011000036107 Sumatriptan (Lupin) 924379011000036107 Sumatriptan (Lupin) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +935341000168104 Centevo 125/31.25/200 mg film-coated tablet, 250, bottle 238856 935331000168108 Centevo 125/31.25/200 mg film-coated tablet, 250 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935321000168105 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 250 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +964241000168101 Normatens 300 microgram film-coated tablet, 7, blister pack 114123 964231000168105 Normatens 300 microgram film-coated tablet, 7 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964221000168107 moxonidine 300 microgram tablet, 7 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +882051000168107 Bosentan (RBX) 125 mg film-coated tablet, 60, blister pack 257753 882041000168105 Bosentan (RBX) 125 mg film-coated tablet, 60 882011000168106 Bosentan (RBX) 125 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +60579011000036103 Dithrasal 1% ointment, 100 g, tube 15561 56537011000036100 Dithrasal 1% ointment, 100 g 53960011000036108 Dithrasal 1% ointment 53372011000036105 Dithrasal 53372011000036105 Dithrasal 63403011000036100 dithranol 1% ointment, 100 g 61943011000036104 dithranol 1% ointment 61732011000036104 dithranol +1097021000168100 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 10, blister pack 286508 1097011000168107 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 10 1097001000168109 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet 1096981000168100 Ibuprofen Double Strength (Medreich) 1096981000168100 Ibuprofen Double Strength (Medreich) 985891000168108 ibuprofen 400 mg tablet, 10 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +131031000036103 Atorvastatin (SZ) 20 mg film-coated tablet, 30, blister pack 179842 127931000036107 Atorvastatin (SZ) 20 mg film-coated tablet, 30 125451000036101 Atorvastatin (SZ) 20 mg film-coated tablet 124141000036105 Atorvastatin (SZ) 124141000036105 Atorvastatin (SZ) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +61449011000036103 Imflac 25 mg enteric tablet, 30, blister pack 90103 57374011000036105 Imflac 25 mg enteric tablet, 30 54287011000036107 Imflac 25 mg enteric tablet 14421000168100 Imflac 14421000168100 Imflac 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +901101000168106 Glycoprep-C powder for oral liquid, 70 g sachet 20502 901091000168101 Glycoprep-C powder for oral liquid, 70 g sachet 901071000168102 Glycoprep-C powder for oral liquid, 70 g sachet 64996011000036107 Glycoprep-C 64996011000036107 Glycoprep-C 901081000168104 macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet 901061000168108 macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet 69825011000036102 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate +810351000168106 Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack, composite pack 166942 810341000168109 Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack 930063011000036103 Actonel EC Once-a-Week 35 mg enteric tablet 929810011000036106 Actonel EC Combi D 700017651000036104 Actonel EC Once-a-Week 810331000168100 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +810351000168106 Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack, composite pack 166942 810341000168109 Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack 810211000168102 Actonel EC Combi D effervescent granules, 1 sachet 929810011000036106 Actonel EC Combi D 929810011000036106 Actonel EC Combi D 810331000168100 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +18821011000036108 Metrogyl 400 mg uncoated tablet, 21, bottle 17655 12139011000036106 Metrogyl 400 mg uncoated tablet, 21 5445011000036105 Metrogyl 400 mg uncoated tablet 4091011000036101 Metrogyl 4091011000036101 Metrogyl 27573011000036103 metronidazole 400 mg tablet, 21 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +177111000036100 Perindopril Erbumine (Actavis) 2 mg uncoated tablet, 30, blister pack 212715 175381000036101 Perindopril Erbumine (Actavis) 2 mg uncoated tablet, 30 173431000036107 Perindopril Erbumine (Actavis) 2 mg uncoated tablet 172801000036105 Perindopril Erbumine (Actavis) 172801000036105 Perindopril Erbumine (Actavis) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +855061000168108 Algerika 100 mg hard capsule, 60, blister pack 229592 855051000168106 Algerika 100 mg hard capsule, 60 854941000168109 Algerika 100 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +814371000168105 Zykadia 150 mg hard capsule, 3 x 50, blister packs 235737 814361000168104 Zykadia 150 mg hard capsule, 3 x 50 814301000168100 Zykadia 150 mg hard capsule 814261000168108 Zykadia 814261000168108 Zykadia 814351000168101 ceritinib 150 mg capsule, 3 x 50 814291000168101 ceritinib 150 mg capsule 814281000168104 ceritinib +933230171000036102 Targin 10/5 mg modified release tablet, 28, blister pack 156145 933224011000036104 Targin 10/5 mg modified release tablet, 28 923036011000036102 Targin 10/5 mg modified release tablet 49001000168109 Targin 10/5 mg 49001000168109 Targin 10/5 mg 933224021000036106 oxycodone hydrochloride 10 mg + naloxone hydrochloride 5 mg modified release tablet, 28 923974011000036100 oxycodone hydrochloride 10 mg + naloxone hydrochloride 5 mg modified release tablet 923931011000036100 oxycodone + naloxone +68812011000036103 Deep Heat Sport Pain Relief Foam foam, 50 g, aerosol can 12814 66708011000036105 Deep Heat Sport Pain Relief Foam foam, 50 g 65388011000036108 Deep Heat Sport Pain Relief Foam foam 53201000168104 Deep Heat Sport Pain Relief Foam 53201000168104 Deep Heat Sport Pain Relief Foam 71391011000036100 methyl salicylate 15.8% + menthol 4.74% foam, 50 g 69991011000036103 methyl salicylate 15.8% + menthol 4.74% foam 69751011000036100 methyl salicylate + menthol +38911000036108 Escital 20 mg film-coated tablet, 28, blister pack 165882 35281000036103 Escital 20 mg film-coated tablet, 28 32401000036101 Escital 20 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +52781011000036102 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet, 24, blister pack 80163 52591011000036104 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet, 24 52434011000036103 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet 52389011000036102 Sudafed Sinus plus Anti-Inflammatory Pain Relief 52389011000036102 Sudafed Sinus plus Anti-Inflammatory Pain Relief 52899011000036101 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +61521011000036109 Pepzan Relief 20 mg film-coated tablet, 28, blister pack 93495 57446011000036108 Pepzan Relief 20 mg film-coated tablet, 28 54305011000036107 Pepzan Relief 20 mg film-coated tablet 6341000168109 Pepzan Relief 6341000168109 Pepzan Relief 63863011000036108 famotidine 20 mg tablet, 28 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +723631000168105 Ozin ODT 10 mg orally disintegrating tablet, 28, blister pack 212899 723621000168107 Ozin ODT 10 mg orally disintegrating tablet, 28 723611000168100 Ozin ODT 10 mg orally disintegrating tablet 723501000168104 Ozin ODT 723501000168104 Ozin ODT 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +50367011000036100 Comfeel Plus Pressure Relieving (3353) 10cm (round) dressing, 1, carton 49451011000036102 Comfeel Plus Pressure Relieving (3353) 10cm (round) dressing, 1 48466011000036101 Comfeel Plus Pressure Relieving (3353) 10cm (round) dressing 20151000168102 Comfeel Plus Pressure Relieving (3353) 20151000168102 Comfeel Plus Pressure Relieving (3353) 51414011000036109 dressing hydrocolloid superficial wound moderate exudate 10cm (round) dressing, 1 50934011000036106 dressing hydrocolloid superficial wound moderate exudate 10cm (round) dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +811521000168102 Afinitor 3 mg dispersible tablet, 60, blister pack 200204 811511000168109 Afinitor 3 mg dispersible tablet, 60 811431000168103 Afinitor 3 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811501000168106 everolimus 3 mg dispersible tablet, 60 811421000168101 everolimus 3 mg dispersible tablet 21615011000036103 everolimus +716821000168109 Pemzo 20 mg enteric capsule, 50, blister pack 149517 716811000168102 Pemzo 20 mg enteric capsule, 50 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716641000168104 omeprazole 20 mg enteric capsule, 50 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +84307011000036100 Cold and Flu Day and Night Relief PE (Amcal) (18 x Day tablets, 6 x Night tablets), 24, blister pack 152064 84000011000036102 Cold and Flu Day and Night Relief PE (Amcal) (18 x Day tablets, 6 x Night tablets), 24 83635011000036105 Cold and Flu Day and Night Relief PE (Night) (Amcal) uncoated tablet 25171000168103 Cold and Flu Day and Night Relief PE (Amcal) 25411000168100 Cold and Flu Day and Night Relief PE (Night) (Amcal) 84635011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +84307011000036100 Cold and Flu Day and Night Relief PE (Amcal) (18 x Day tablets, 6 x Night tablets), 24, blister pack 152064 84000011000036102 Cold and Flu Day and Night Relief PE (Amcal) (18 x Day tablets, 6 x Night tablets), 24 83634011000036106 Cold and Flu Day and Night Relief PE (Day) (Amcal) uncoated tablet 25171000168103 Cold and Flu Day and Night Relief PE (Amcal) 25291000168105 Cold and Flu Day and Night Relief PE (Day) (Amcal) 84635011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +788831000168105 Oxycodone MR (Terry White Chemists) 40 mg modified release tablet, 60, blister pack 160096 788821000168107 Oxycodone MR (Terry White Chemists) 40 mg modified release tablet, 60 788791000168104 Oxycodone MR (Terry White Chemists) 40 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +60098011000036103 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 50 mL, bottle 126542 56059011000036108 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 50 mL 53774011000036100 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 5 mL 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 63817011000036100 paracetamol 120 mg/5 mL oral liquid, 50 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +60389011000036106 Dozile 25 mg tablet, 10, blister pack 143861 56348011000036103 Dozile 25 mg tablet, 10 53886011000036104 Dozile 25 mg tablet 53226011000036101 Dozile 53226011000036101 Dozile 63825011000036104 doxylamine succinate 25 mg tablet, 10 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +44358011000036103 Reductil 15 mg hard capsule, 30, blister pack 68116 41825011000036100 Reductil 15 mg hard capsule, 30 40215011000036105 Reductil 15 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46631011000036109 sibutramine hydrochloride 15 mg capsule, 30 45246011000036100 sibutramine hydrochloride 15 mg capsule 44877011000036100 sibutramine +69342011000036105 Hyalase 1500 units powder for injection, 1 ampoule 27749 67142011000036106 Hyalase 1500 units powder for injection, 1 ampoule 65260011000036104 Hyalase 1500 units powder for injection, 1500 units ampoule 65023011000036108 Hyalase 65023011000036108 Hyalase 71707011000036107 hyaluronidase 1500 units injection, 1 ampoule 70141011000036108 hyaluronidase 1500 units injection, ampoule 69795011000036106 hyaluronidase +793151000168100 Prodeinextra film-coated tablet, 40, blister pack 205550 793141000168102 Prodeinextra film-coated tablet, 40 793051000168104 Prodeinextra film-coated tablet 793041000168101 Prodeinextra 793041000168101 Prodeinextra 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +650591000168106 Anzemet 12.5 mg/0.625 mL injection solution, 6 x 0.625 mL vials 161493 650581000168108 Anzemet 12.5 mg/0.625 mL injection solution, 6 x 0.625 mL vials 650561000168104 Anzemet 12.5 mg/0.625 mL injection solution, 0.625 mL vial 4210011000036102 Anzemet 4210011000036102 Anzemet 650571000168105 dolasetron mesilate monohydrate 12.5 mg/0.625 mL injection, 6 x 0.625 mL vials 650551000168101 dolasetron mesilate monohydrate 12.5 mg/0.625 mL injection, vial 21471011000036108 dolasetron +136811000036106 Flebogamma 5% DIF 10 g/200 mL injection solution, 200 mL vial 143802 136571000036102 Flebogamma 5% DIF 10 g/200 mL injection solution, 200 mL vial 136301000036101 Flebogamma 5% DIF 10 g/200 mL injection solution, 200 mL vial 11731000168109 Flebogamma 5% DIF 11731000168109 Flebogamma 5% DIF 933201391000036100 normal immunoglobulin 10 g/200 mL injection, 200 mL vial 933195011000036109 normal immunoglobulin 10 g/200 mL injection, vial 74965011000036103 normal immunoglobulin +73323011000036104 Sutent 25 mg capsule, 28, blister pack 149115 41286011000036109 Sutent 25 mg capsule, 28 39938011000036109 Sutent 25 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46221011000036105 sunitinib 25 mg capsule, 28 45035011000036101 sunitinib 25 mg capsule 44859011000036109 sunitinib +673231000168103 Mirvaso 0.33% gel, 10 g, tube 212325 673221000168101 Mirvaso 0.33% gel, 10 g 673201000168105 Mirvaso 0.33% gel 673181000168109 Mirvaso 673181000168109 Mirvaso 673211000168108 brimonidine 0.33% gel, 10 g 673191000168107 brimonidine 0.33% gel 21861011000036105 brimonidine +951611000168106 Trandolapril (Chemmart) 4 mg capsule, 28, blister pack 135986 951601000168108 Trandolapril (Chemmart) 4 mg capsule, 28 951591000168101 Trandolapril (Chemmart) 4 mg capsule 951451000168105 Trandolapril (Chemmart) 951451000168105 Trandolapril (Chemmart) 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +177151000036101 Tramadol Hydrochloride (Actavis) 50 mg hard capsule, 20, blister pack 218122 175421000036106 Tramadol Hydrochloride (Actavis) 50 mg hard capsule, 20 173661000036103 Tramadol Hydrochloride (Actavis) 50 mg hard capsule 172781000036109 Tramadol Hydrochloride (Actavis) 172781000036109 Tramadol Hydrochloride (Actavis) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +38871000036106 Escitalopram (MPPL) 20 mg film-coated tablet, 30, bottle 165877 35241000036107 Escitalopram (MPPL) 20 mg film-coated tablet, 30 32991000036100 Escitalopram (MPPL) 20 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +142751000036101 Zyrtec 5 mg/5 mL oral liquid solution, 200 mL, bottle 60948 142561000036105 Zyrtec 5 mg/5 mL oral liquid solution, 200 mL 142421000036102 Zyrtec 5 mg/5 mL oral liquid solution, 5 mL 3383011000036102 Zyrtec 3383011000036102 Zyrtec 142571000036102 cetirizine hydrochloride 5 mg/5 mL oral liquid, 200 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +942971000168100 Fonat 70 mg tablet, 4, bottle 147753 89491000036108 Fonat 70 mg tablet, 4 88571000036102 Fonat 70 mg tablet 87541000036105 Fonat 87541000036105 Fonat 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +931663011000036100 Twynsta 40/5 mg multilayer tablet, 56, blister pack 166265 930823011000036105 Twynsta 40/5 mg multilayer tablet, 56 930059011000036105 Twynsta 40/5 mg multilayer tablet 33031000168101 Twynsta 40/5 mg 33031000168101 Twynsta 40/5 mg 932436011000036102 telmisartan 40 mg + amlodipine 5 mg tablet, 56 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +929000011000036109 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 2, blister pack 158915 928361011000036104 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 2 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 927316011000036103 valaciclovir 500 mg tablet, 2 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +44283011000036108 Acular 0.5% eye drops solution, 3 mL, bottle 63539 41754011000036100 Acular 0.5% eye drops solution, 3 mL 40182011000036101 Acular 0.5% eye drops solution 39700011000036109 Acular 39700011000036109 Acular 46561011000036106 ketorolac trometamol 0.5% eye drops, 3 mL 45218011000036109 ketorolac trometamol 0.5% eye drops 44879011000036107 ketorolac +20002011000036106 Ciproxin HC ear drops suspension, 10 mL, bottle 68537 13239011000036102 Ciproxin HC ear drops suspension, 10 mL 6521011000036104 Ciproxin HC ear drops suspension 3780011000036106 Ciproxin HC 3780011000036106 Ciproxin HC 27641011000036108 ciprofloxacin 0.2% + hydrocortisone 1% ear drops, 10 mL 22978011000036102 ciprofloxacin 0.2% + hydrocortisone 1% ear drops 21915011000036102 ciprofloxacin + hydrocortisone +20002011000036106 Ciproxin HC ear drops suspension, 10 mL, bottle 136662 13239011000036102 Ciproxin HC ear drops suspension, 10 mL 6521011000036104 Ciproxin HC ear drops suspension 3780011000036106 Ciproxin HC 3780011000036106 Ciproxin HC 27641011000036108 ciprofloxacin 0.2% + hydrocortisone 1% ear drops, 10 mL 22978011000036102 ciprofloxacin 0.2% + hydrocortisone 1% ear drops 21915011000036102 ciprofloxacin + hydrocortisone +928850011000036102 Ramibell 1.25 mg hard capsule, 30, blister pack 134790 928212011000036103 Ramibell 1.25 mg hard capsule, 30 927871011000036104 Ramibell 1.25 mg hard capsule 927827011000036106 Ramibell 927827011000036106 Ramibell 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +18481011000036107 Keflin Neutral 1 g powder for injection, 10 vials 14646 12050011000036106 Keflin Neutral 1 g powder for injection, 10 vials 4632011000036109 Keflin Neutral 1 g powder for injection, vial 51901000168106 Keflin Neutral 51901000168106 Keflin Neutral 27524011000036100 cefalotin 1 g injection, 10 vials 22864011000036109 cefalotin 1 g injection, vial 21844011000036103 cefalotin +659251000168109 Olanzapine (AN) 5 mg film-coated tablet, 28, blister pack 178993 659241000168107 Olanzapine (AN) 5 mg film-coated tablet, 28 659231000168103 Olanzapine (AN) 5 mg film-coated tablet 659161000168100 Olanzapine (AN) 659161000168100 Olanzapine (AN) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +797421000168105 Citalopram (A) 20 mg film-coated tablet, 14, bottle 158882 797411000168103 Citalopram (A) 20 mg film-coated tablet, 14 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +855141000168108 Algerika 150 mg hard capsule, 21, blister pack 229595 855131000168104 Algerika 150 mg hard capsule, 21 855081000168104 Algerika 150 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855121000168102 pregabalin 150 mg capsule, 21 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +19711011000036102 Felodur ER 10 mg modified release tablet, 30, blister pack 60982 12967011000036105 Felodur ER 10 mg modified release tablet, 30 6256011000036100 Felodur ER 10 mg modified release tablet 12641000168102 Felodur ER 12641000168102 Felodur ER 27476011000036101 felodipine 10 mg modified release tablet, 30 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +710651000168100 Strepsils Soothing lozenge, 36, blister pack 14975 710641000168102 Strepsils Soothing lozenge, 36 710491000168107 Strepsils Soothing lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +131191000036103 Candesartan Cilexetil (Aspen) 4 mg uncoated tablet, 30, blister pack 195483 128281000036101 Candesartan Cilexetil (Aspen) 4 mg uncoated tablet, 30 125041000036108 Candesartan Cilexetil (Aspen) 4 mg uncoated tablet 124121000036102 Candesartan Cilexetil (Aspen) 124121000036102 Candesartan Cilexetil (Aspen) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +122561000036107 Dynastat (5 x 40 mg vials, 5 x inert diluent ampoules), 1 pack, composite pack 82509 122401000036109 Dynastat (5 x 40 mg vials, 5 x inert diluent ampoules), 1 pack 119651000036108 Dynastat (inert substance) diluent, ampoule 119161000036101 Dynastat 119161000036101 Dynastat 122411000036106 parecoxib 40 mg injection [5 vials] (&) inert substance diluent [5 ampoules], 1 pack 23368011000036108 inert substance diluent, ampoule 21220011000036103 inert substance +122561000036107 Dynastat (5 x 40 mg vials, 5 x inert diluent ampoules), 1 pack, composite pack 82509 122401000036109 Dynastat (5 x 40 mg vials, 5 x inert diluent ampoules), 1 pack 119631000036100 Dynastat (parecoxib 40 mg) powder for injection, 40 mg vial 119161000036101 Dynastat 119161000036101 Dynastat 122411000036106 parecoxib 40 mg injection [5 vials] (&) inert substance diluent [5 ampoules], 1 pack 119641000036105 parecoxib 40 mg injection, vial 121821000036108 parecoxib +934451000168109 Centevo 175/43.75/200 mg film-coated tablet, 175, bottle 238858 934441000168107 Centevo 175/43.75/200 mg film-coated tablet, 175 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934431000168103 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 175 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +920715011000036104 Metformin Hydrochloride (Sandoz) 850 mg film-coated tablet, 60, blister pack 125662 920401011000036105 Metformin Hydrochloride (Sandoz) 850 mg film-coated tablet, 60 920163011000036108 Metformin Hydrochloride (Sandoz) 850 mg film-coated tablet 920094011000036100 Metformin Hydrochloride (Sandoz) 920094011000036100 Metformin Hydrochloride (Sandoz) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +869121000168107 Pacrolim 1 mg hard capsule, 100, blister pack 224268 869111000168100 Pacrolim 1 mg hard capsule, 100 869061000168101 Pacrolim 1 mg hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +34774011000036105 Oxycontin 10 mg modified release tablet, 60, blister pack 68187 34355011000036105 Oxycontin 10 mg modified release tablet, 60 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +933231501000036109 Famvir 250 mg film-coated tablet, 20, blister pack 51389 933225681000036102 Famvir 250 mg film-coated tablet, 20 5598011000036100 Famvir 250 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +960151000168102 Dormizol CR 6.25 mg modified release tablet, 7, blister pack 120712 960141000168104 Dormizol CR 6.25 mg modified release tablet, 7 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46182011000036105 zolpidem tartrate 6.25 mg modified release tablet, 7 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +935501000168105 Colazide 750 mg hard capsule, 130, bottle 77358 935491000168103 Colazide 750 mg hard capsule, 130 932481000168105 Colazide 750 mg hard capsule 3072011000036104 Colazide 3072011000036104 Colazide 935481000168101 balsalazide sodium 750 mg capsule, 130 23166011000036100 balsalazide sodium 750 mg capsule 21908011000036105 balsalazide +154231000036105 Atozet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack, blister pack 196150 150411000036106 Atozet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack 148341000036100 Atorvastatin (MSD) 10 mg film-coated tablet 153961000036108 Atozet Composite Pack 147851000036108 Atorvastatin (MSD) 150441000036107 ezetimibe 10 mg tablet [30] (&) atorvastatin 10 mg tablet [30], 1 pack 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +154231000036105 Atozet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack, blister pack 196150 150411000036106 Atozet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 153961000036108 Atozet Composite Pack 3589011000036101 Ezetrol 150441000036107 ezetimibe 10 mg tablet [30] (&) atorvastatin 10 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +44041011000036108 Myambutol 100 mg film-coated tablet, 100, bottle 47887 41530011000036108 Myambutol 100 mg film-coated tablet, 100 40042011000036100 Myambutol 100 mg film-coated tablet 39578011000036103 Myambutol 39578011000036103 Myambutol 46365011000036105 ethambutol hydrochloride 100 mg tablet, 100 45108011000036109 ethambutol hydrochloride 100 mg tablet 44949011000036100 ethambutol +677411000168100 Valsartan HCTZ 160/12.5 (Apo) film-coated tablet, 28, blister pack 202354 677401000168103 Valsartan HCTZ 160/12.5 (Apo) film-coated tablet, 28 677391000168100 Valsartan HCTZ 160/12.5 (Apo) film-coated tablet 677381000168103 Valsartan HCTZ 160/12.5 (Apo) 677381000168103 Valsartan HCTZ 160/12.5 (Apo) 46960011000036107 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 28 45359011000036104 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +1001891000168104 Amlodipine/Atorvastatin 10/20 (Apotex) film-coated tablet, 30, blister pack 214349 1001881000168102 Amlodipine/Atorvastatin 10/20 (Apotex) film-coated tablet, 30 1001871000168100 Amlodipine/Atorvastatin 10/20 (Apotex) film-coated tablet 1001861000168106 Amlodipine/Atorvastatin 10/20 (Apotex) 1001861000168106 Amlodipine/Atorvastatin 10/20 (Apotex) 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +17827011000036106 Androcur 50 mg uncoated tablet, 50, bottle 10671 11342011000036106 Androcur 50 mg uncoated tablet, 50 5484011000036103 Androcur 50 mg uncoated tablet 3109011000036105 Androcur 3109011000036105 Androcur 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +18239011000036101 Floxapen 125 mg/5 mL powder for oral liquid, 100 mL, bottle 11148 11427011000036102 Floxapen 125 mg/5 mL powder for oral liquid, 100 mL 5030011000036109 Floxapen 125 mg/5 mL powder for oral liquid, 5 mL 28271000168102 Floxapen 28271000168102 Floxapen 26644011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid, 100 mL 22050011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +667771000168109 Sozol 20 mg enteric tablet, 30, blister pack 191034 667761000168103 Sozol 20 mg enteric tablet, 30 667751000168100 Sozol 20 mg enteric tablet 83544011000036103 Sozol 83544011000036103 Sozol 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +810191000168103 Entresto 24/26 film-coated tablet, 60, blister pack 234219 810181000168101 Entresto 24/26 film-coated tablet, 60 810041000168107 Entresto 24/26 film-coated tablet 810021000168101 Entresto 24/26 810021000168101 Entresto 24/26 810171000168104 sacubitril 24.3 mg + valsartan 25.7 mg tablet, 60 810031000168103 sacubitril 24.3 mg + valsartan 25.7 mg tablet 809631000168102 sacubitril + valsartan +1105771000168100 Valpam 5 mg uncoated tablet, 100, bottle 80812 1105761000168106 Valpam 5 mg uncoated tablet, 100 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105751000168109 diazepam 5 mg tablet, 100 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +742761000168103 Actaze 45 mg uncoated tablet, 7, blister pack 254312 742751000168100 Actaze 45 mg uncoated tablet, 7 742741000168102 Actaze 45 mg uncoated tablet 742601000168105 Actaze 742601000168105 Actaze 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +931594011000036106 Pratin 10 mg film-coated tablet, 500, bottle 163556 930755011000036105 Pratin 10 mg film-coated tablet, 500 930036011000036102 Pratin 10 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932415011000036101 pravastatin sodium 10 mg tablet, 500 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +131101000036106 Candesartan Cilexetil (Stada) 4 mg uncoated tablet, 30, bottle 195464 128271000036103 Candesartan Cilexetil (Stada) 4 mg uncoated tablet, 30 125021000036100 Candesartan Cilexetil (Stada) 4 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +1068281000168109 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 12, blister pack 188379 1068271000168106 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 12 1068241000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1053411000168103 Actiq 1200 microgram lozenge on handle, 15, blister pack 91603 1053401000168101 Actiq 1200 microgram lozenge on handle, 15 34079011000036109 Actiq 1200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053391000168103 fentanyl 1200 microgram lozenge on handle, 15 34914011000036108 fentanyl 1200 microgram lozenge on handle 21258011000036102 fentanyl +925209011000036101 Glimaccord 1 mg uncoated tablet, 30, blister pack 156398 924746011000036103 Glimaccord 1 mg uncoated tablet, 30 924452011000036107 Glimaccord 1 mg uncoated tablet 924395011000036104 Glimaccord 924395011000036104 Glimaccord 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +77353011000036107 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 10, blister pack 58928 76769011000036102 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 10 76173011000036100 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78276011000036103 calcium carbonate 500 mg chewable tablet, 10 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +61230011000036109 Nicotine (Amcal) Mint 2 mg chewing gum, 96, blister pack 152933 57166011000036103 Nicotine (Amcal) Mint 2 mg chewing gum, 96 54222011000036102 Nicotine (Amcal) Mint 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +61230011000036109 Nicotine (Amcal) Mint 2 mg chewing gum, 96, blister pack 76844 57166011000036103 Nicotine (Amcal) Mint 2 mg chewing gum, 96 54222011000036102 Nicotine (Amcal) Mint 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +44675011000036100 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert inert diluent vials), 1 pack, composite pack 91564 42124011000036105 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert diluent vials), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46886011000036103 follitropin alfa 150 units (10.92 microgram) injection [5 x 150 units vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44675011000036100 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert inert diluent vials), 1 pack, composite pack 91564 42124011000036105 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert diluent vials), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46886011000036103 follitropin alfa 150 units (10.92 microgram) injection [5 x 150 units vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +771631000168107 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 179143 771621000168109 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 771521000168105 Drospirenone/Ethinyloestradiol (Lupin) (inert substance) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771631000168107 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 179143 771621000168109 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 771511000168103 Drospirenone/Ethinyloestradiol (Lupin) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +915121000168103 Certican 100 microgram dispersible tablet, 50, blister pack 97520 915111000168105 Certican 100 microgram dispersible tablet, 50 915091000168102 Certican 100 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915101000168107 everolimus 100 microgram dispersible tablet, 50 915081000168100 everolimus 100 microgram dispersible tablet 21615011000036103 everolimus +43854011000036105 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 14, blister pack 128095 41350011000036106 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 14 39907011000036104 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet 39781011000036103 Zolpidem Tartrate (Sandoz) 39781011000036103 Zolpidem Tartrate (Sandoz) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +660391000168105 Clopidogrel (AN) 75 mg film-coated tablet, 28, blister pack 187044 660381000168107 Clopidogrel (AN) 75 mg film-coated tablet, 28 660371000168109 Clopidogrel (AN) 75 mg film-coated tablet 660361000168103 Clopidogrel (AN) 660361000168103 Clopidogrel (AN) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +105241000036107 Ksart HCT 150/12.5 tablet, 30, blister pack 186257 102351000036108 Ksart HCT 150/12.5 tablet, 30 98591000036102 Ksart HCT 150/12.5 tablet 46981000168107 Ksart HCT 150/12.5 46981000168107 Ksart HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +673161000168100 Pomalyst 1 mg capsule, 21, blister pack 212657 673151000168102 Pomalyst 1 mg capsule, 21 673131000168108 Pomalyst 1 mg capsule 672631000168105 Pomalyst 672631000168105 Pomalyst 673141000168104 pomalidomide 1 mg capsule, 21 673121000168105 pomalidomide 1 mg capsule 672761000168105 pomalidomide +68740011000036108 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 12, blister pack 129747 66723011000036107 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 12 65236011000036108 Nicotine (Chemists' Own) Fruit 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +56271000036109 Carbaccord 150 mg/15 mL injection solution, 15 mL vial 159106 51671000036100 Carbaccord 150 mg/15 mL injection solution, 15 mL vial 49271000036102 Carbaccord 150 mg/15 mL injection solution, 15 mL vial 48411000036101 Carbaccord 48411000036101 Carbaccord 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +925307011000036104 Gemcitabine (Kabi) 2 g powder for injection, 1 vial 162338 924844011000036108 Gemcitabine (Kabi) 2 g powder for injection, 1 vial 924527011000036103 Gemcitabine (Kabi) 2 g powder for injection, 2 g vial 924404011000036105 Gemcitabine (Kabi) 924404011000036105 Gemcitabine (Kabi) 73514011000036108 gemcitabine 2 g injection, 1 vial 73378011000036105 gemcitabine 2 g injection, vial 21644011000036108 gemcitabine +869041000168100 Simipex XR 4.5 mg modified release tablet, 30, blister pack 225628 869031000168109 Simipex XR 4.5 mg modified release tablet, 30 869001000168102 Simipex XR 4.5 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 87818011000036106 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet, 30 87762011000036107 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet 37716011000036100 pramipexole +20048011000036104 Hydopa 250 mg film-coated tablet, 100, bottle 69482 13280011000036100 Hydopa 250 mg film-coated tablet, 100 6563011000036106 Hydopa 250 mg film-coated tablet 3674011000036100 Hydopa 3674011000036100 Hydopa 27664011000036101 methyldopa 250 mg tablet, 100 23001011000036104 methyldopa 250 mg tablet 21515011000036109 methyldopa +111001000036100 Irbesartan (Stada) 75 mg film-coated tablet, 30, blister pack 192799 109291000036104 Irbesartan (Stada) 75 mg film-coated tablet, 30 107071000036102 Irbesartan (Stada) 75 mg film-coated tablet 106681000036108 Irbesartan (Stada) 106681000036108 Irbesartan (Stada) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +60919011000036101 Bisolvon Sinus oral liquid solution, 100 mL, bottle 61148 56873011000036107 Bisolvon Sinus oral liquid solution, 100 mL 54109011000036102 Bisolvon Sinus oral liquid solution, 15 mL 53573011000036101 Bisolvon Sinus 53573011000036101 Bisolvon Sinus 63625011000036106 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 100 mL 62032011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61715011000036104 bromhexine + pseudoephedrine +813371000168108 Saxenda 6 mg/mL injection solution, 5 x 3 mL injection devices 225804 813361000168102 Saxenda 6 mg/mL injection solution, 5 x 3 mL injection devices 813301000168103 Saxenda 6 mg/mL injection solution, 3 mL injection device 813291000168104 Saxenda 813291000168104 Saxenda 813351000168104 liraglutide 6 mg/mL injection, 5 x 3 mL injection devices 748021000168109 liraglutide 6 mg/mL injection, 3 mL injection device 105271000036100 liraglutide +1073581000168105 Finasteride (Aurobindo) 1 mg film-coated tablet, 30, blister pack 210617 1073571000168107 Finasteride (Aurobindo) 1 mg film-coated tablet, 30 1073541000168100 Finasteride (Aurobindo) 1 mg film-coated tablet 1073461000168102 Finasteride (Aurobindo) 1073461000168102 Finasteride (Aurobindo) 46555011000036102 finasteride 1 mg tablet, 30 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +806011000168108 Repatha 140 mg/mL injection solution, 1 mL syringe 231151 806001000168105 Repatha 140 mg/mL injection solution, 1 mL syringe 805981000168106 Repatha 140 mg/mL injection solution, syringe 805951000168104 Repatha 805951000168104 Repatha 805991000168109 evolocumab 140 mg/mL injection, 1 mL syringe 805971000168108 evolocumab 140 mg/mL injection, syringe 805961000168102 evolocumab +69057011000036105 Calamine Oily (David Craig) 50 mg/mL lotion, 200 mL, bottle 14288 66859011000036108 Calamine Oily (David Craig) 50 mg/mL lotion, 200 mL 65252011000036105 Calamine Oily (David Craig) 50 mg/mL lotion 65015011000036103 Calamine Oily (David Craig) 65015011000036103 Calamine Oily (David Craig) 71468011000036103 calamine 50 mg/mL lotion, 200 mL 70022011000036106 calamine 50 mg/mL lotion 69791011000036109 calamine +1076801000168106 Heartburn Relief (Amcal) 150 mg film-coated tablet, 28, strip pack 219875 55993011000036107 Heartburn Relief (Amcal) 150 mg film-coated tablet, 28 53750011000036108 Heartburn Relief (Amcal) 150 mg film-coated tablet 53448011000036104 Heartburn Relief (Amcal) 53448011000036104 Heartburn Relief (Amcal) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +846561000168107 Olmesartan HCT 20/12.5 (Alembic) film-coated tablet, 30, blister pack 221125 846551000168105 Olmesartan HCT 20/12.5 (Alembic) film-coated tablet, 30 846541000168108 Olmesartan HCT 20/12.5 (Alembic) film-coated tablet 846531000168104 Olmesartan HCT 20/12.5 (Alembic) 846531000168104 Olmesartan HCT 20/12.5 (Alembic) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +660231000168104 Famotidine (AN) 40 mg film-coated tablet, 30, blister pack 186281 660221000168102 Famotidine (AN) 40 mg film-coated tablet, 30 660211000168109 Famotidine (AN) 40 mg film-coated tablet 660111000168104 Famotidine (AN) 660111000168104 Famotidine (AN) 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +751261000168100 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL, bottle 160736 751251000168102 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL 933196661000036109 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 751241000168104 chlorhexidine gluconate 0.12% mouthwash, 300 mL 933196671000036101 chlorhexidine gluconate 0.12% mouthwash 21404011000036101 chlorhexidine +18651011000036104 Exjade 125 mg dispersible tablet, 28, blister pack 119230 11612011000036107 Exjade 125 mg dispersible tablet, 28 5314011000036108 Exjade 125 mg dispersible tablet 3267011000036102 Exjade 3267011000036102 Exjade 26707011000036100 deferasirox 125 mg dispersible tablet, 28 22102011000036105 deferasirox 125 mg dispersible tablet 21549011000036103 deferasirox +1011611000168109 Donepezil (Apotex) 10 mg film-coated tablet, 14, blister pack 168334 1011601000168106 Donepezil (Apotex) 10 mg film-coated tablet, 14 1011581000168102 Donepezil (Apotex) 10 mg film-coated tablet 1011531000168103 Donepezil (Apotex) 1011531000168103 Donepezil (Apotex) 1011591000168104 donepezil hydrochloride 10 mg tablet, 14 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1051081000168100 Morphine Sulfate (Pharmalab) 10 mg/mL injection solution, 5 x 1 mL ampoules 12431 1051071000168103 Morphine Sulfate (Pharmalab) 10 mg/mL injection solution, 5 x 1 mL ampoules 1051061000168109 Morphine Sulfate (Pharmalab) 10 mg/mL injection solution, ampoule 1051051000168107 Morphine Sulfate (Pharmalab) 1051051000168107 Morphine Sulfate (Pharmalab) 26554011000036103 morphine sulfate pentahydrate 10 mg/mL injection, 5 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +889541000168109 Amisulpride (CH) 50 mg uncoated tablet, 30, blister pack 234692 889531000168100 Amisulpride (CH) 50 mg uncoated tablet, 30 889521000168103 Amisulpride (CH) 50 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1039341000168107 Atorvastatin (GA) 10 mg film-coated tablet, 20, blister pack 178539 1039331000168103 Atorvastatin (GA) 10 mg film-coated tablet, 20 1039301000168105 Atorvastatin (GA) 10 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841511000168102 atorvastatin 10 mg tablet, 20 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +822071000168108 Famvir Once 500 mg film-coated tablet, 3, blister pack 205475 822061000168102 Famvir Once 500 mg film-coated tablet, 3 822051000168104 Famvir Once 500 mg film-coated tablet 821951000168105 Famvir Once 821951000168105 Famvir Once 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +21016011000036100 Enalapril Maleate (Chemmart) 10 mg uncoated tablet, 30, blister pack 96334 14162011000036103 Enalapril Maleate (Chemmart) 10 mg uncoated tablet, 30 7441011000036107 Enalapril Maleate (Chemmart) 10 mg uncoated tablet 3719011000036102 Enalapril Maleate (Chemmart) 3719011000036102 Enalapril Maleate (Chemmart) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +18409011000036107 Karvezide 150/12.5 film-coated tablet, 30, blister pack 101831 11239011000036107 Karvezide 150/12.5 film-coated tablet, 30 4556011000036103 Karvezide 150/12.5 film-coated tablet 20981000168107 Karvezide 150/12.5 20981000168107 Karvezide 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +60792011000036104 Unisom Sleepgel 50 mg soft capsule, 2, bottle 55324 56748011000036104 Unisom Sleepgel 50 mg soft capsule, 2 54063011000036108 Unisom Sleepgel 50 mg soft capsule 14531000168103 Unisom Sleepgel 14531000168103 Unisom Sleepgel 63550011000036108 diphenhydramine hydrochloride 50 mg capsule, 2 62012011000036109 diphenhydramine hydrochloride 50 mg capsule 61716011000036106 diphenhydramine +864931000168107 Amitriptyline (GXP) 25 mg tablet, 50, bottle 232131 864851000168109 Amitriptyline (GXP) 25 mg tablet, 50 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +73280011000036106 Jurnista 8 mg modified release tablet, 7, blister pack 141508 73078011000036106 Jurnista 8 mg modified release tablet, 7 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73476011000036101 hydromorphone hydrochloride 8 mg modified release tablet, 7 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +39191000036105 Exemestane (Pharmacor) 25 mg film-coated tablet, 90, blister pack 167858 35591000036104 Exemestane (Pharmacor) 25 mg film-coated tablet, 90 32451000036100 Exemestane (Pharmacor) 25 mg film-coated tablet 32281000036106 Exemestane (Pharmacor) 32281000036106 Exemestane (Pharmacor) 933205301000036105 exemestane 25 mg tablet, 90 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +869271000168102 Atomerra 60 mg hard capsule, 7, blister pack 234808 869261000168108 Atomerra 60 mg hard capsule, 7 869251000168106 Atomerra 60 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +654751000168102 Valsartan (Apo) 40 mg film-coated tablet, 28, blister pack 185806 654741000168104 Valsartan (Apo) 40 mg film-coated tablet, 28 654731000168108 Valsartan (Apo) 40 mg film-coated tablet 654721000168105 Valsartan (Apo) 654721000168105 Valsartan (Apo) 63855011000036103 valsartan 40 mg tablet, 28 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +20057011000036103 Bleph-10 10% eye drops solution, 15 mL, bottle 69835 13287011000036104 Bleph-10 10% eye drops solution, 15 mL 6570011000036107 Bleph-10 10% eye drops solution 3456011000036109 Bleph-10 3456011000036109 Bleph-10 27667011000036107 sulfacetamide sodium 10% eye drops, 15 mL 23004011000036101 sulfacetamide sodium 10% eye drops 21489011000036101 sulfacetamide +61204011000036107 Resolve Plus 1% / 2% cream, 30 g, tube 75601 57140011000036106 Resolve Plus 1% / 2% cream, 30 g 54215011000036104 Resolve Plus 1% / 2% cream 48731000168108 Resolve Plus 1% / 2% 48731000168108 Resolve Plus 1% / 2% 63743011000036104 hydrocortisone 1% + miconazole nitrate 2% cream, 30 g 62069011000036100 hydrocortisone 1% + miconazole nitrate 2% cream 61804011000036102 hydrocortisone + miconazole +928990011000036102 Valaciclovir (Chemmart) 500 mg film-coated tablet, 4, blister pack 158913 928351011000036106 Valaciclovir (Chemmart) 500 mg film-coated tablet, 4 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929219011000036106 valaciclovir 500 mg tablet, 4 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +890871000168107 Canpek 16/12.5 uncoated tablet, 30, blister pack 198392 890861000168101 Canpek 16/12.5 uncoated tablet, 30 890791000168103 Canpek 16/12.5 uncoated tablet 890781000168101 Canpek 16/12.5 890781000168101 Canpek 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +923884011000036102 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 14, blister pack 163770 923428011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 14 923079011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 924196011000036101 lercanidipine hydrochloride 10 mg tablet, 14 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +667611000168108 Memantine (Generic Health) 10 mg film-coated tablet, 56, blister pack 168425 667601000168105 Memantine (Generic Health) 10 mg film-coated tablet, 56 667591000168103 Memantine (Generic Health) 10 mg film-coated tablet 667581000168101 Memantine (Generic Health) 667581000168101 Memantine (Generic Health) 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +942811000168102 Perindopril and Indapamide 4/1.25 mg (Generic Health) uncoated tablet, 30, blister pack 147148 942801000168100 Perindopril and Indapamide 4/1.25 mg (Generic Health) uncoated tablet, 30 942791000168101 Perindopril and Indapamide 4/1.25 mg (Generic Health) uncoated tablet 942781000168104 Perindopril and Indapamide 4/1.25 mg (Generic Health) 942781000168104 Perindopril and Indapamide 4/1.25 mg (Generic Health) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +131261000036102 Candesartan Cilexetil (GH) 8 mg uncoated tablet, 30, blister pack 195503 128331000036107 Candesartan Cilexetil (GH) 8 mg uncoated tablet, 30 125121000036101 Candesartan Cilexetil (GH) 8 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +906721000168105 Celecoxib (Lupin) 200 mg hard capsule, 60, blister pack 196176 906711000168103 Celecoxib (Lupin) 200 mg hard capsule, 60 906381000168105 Celecoxib (Lupin) 200 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +925471000168102 Androgel 1% (25 mg/2.5 g) gel, 28 x 2.5 g sachets 96122 925461000168108 Androgel 1% (25 mg/2.5 g) gel, 28 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46944011000036107 testosterone 1% (25 mg/2.5 g) gel, 28 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +1050761000168103 Bupredermal 15 microgram/hour patch, 4, sachet 234743 1050751000168100 Bupredermal 15 microgram/hour patch, 4 1050721000168108 Bupredermal 15 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1046411000168107 buprenorphine 15 microgram/hour patch, 4 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +37482011000036108 Levophed 1 in 1000 (2 mg/2 mL) concentrated injection, 5 x 2 mL ampoules 12584 36750011000036108 Levophed 1 in 1000 (2 mg/2 mL) concentrated injection, 5 x 2 mL ampoules 36152011000036104 Levophed 1 in 1000 (2 mg/2 mL) concentrated injection, 2 mL ampoule 35950011000036103 Levophed 35950011000036103 Levophed 38658011000036106 noradrenaline (norepinephrine) 1 in 1000 (2 mg/2 mL) injection, 5 x 2 mL ampoules 37909011000036104 noradrenaline (norepinephrine) 1 in 1000 (2 mg/2 mL) injection, ampoule 37760011000036102 noradrenaline (norepinephrine) +933240091000036101 Elocon 0.1% ointment, 50 g, tube 43344 933237251000036101 Elocon 0.1% ointment, 50 g 5017011000036103 Elocon 0.1% ointment 4301011000036100 Elocon 4301011000036100 Elocon 933237261000036103 mometasone furoate 0.1% ointment, 50 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +17836011000036106 Methyl Salicylate (Gold Cross) 50% ointment, 100 g, jar 14287 12018011000036103 Methyl Salicylate (Gold Cross) 50% ointment, 100 g 4824011000036106 Methyl Salicylate (Gold Cross) 50% ointment 4351011000036106 Methyl Salicylate (Gold Cross) 4351011000036106 Methyl Salicylate (Gold Cross) 26852011000036106 methyl salicylate 50% ointment, 100 g 22233011000036109 methyl salicylate 50% ointment 21251011000036106 methyl salicylate +785701000168102 Oxycodone (Sandoz) 40 mg modified release tablet, 28, bottle 153607 676351000168108 Oxycodone (Sandoz) 40 mg modified release tablet, 28 676341000168106 Oxycodone (Sandoz) 40 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +77163011000036106 Hydrogen Peroxide (Orion) 6% solution, 2 L, bottle 11384 76587011000036107 Hydrogen Peroxide (Orion) 6% solution, 2 L 76043011000036109 Hydrogen Peroxide (Orion) 6% solution 65016011000036105 Hydrogen Peroxide (Orion) 65016011000036105 Hydrogen Peroxide (Orion) 78141011000036105 hydrogen peroxide 6% solution, 2 L 77534011000036107 hydrogen peroxide 6% solution 69793011000036105 hydrogen peroxide +811721000168105 Afinitor 5 mg dispersible tablet, 100, blister pack 200205 811711000168103 Afinitor 5 mg dispersible tablet, 100 811601000168107 Afinitor 5 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811701000168101 everolimus 5 mg dispersible tablet, 100 811591000168100 everolimus 5 mg dispersible tablet 21615011000036103 everolimus +959991000168109 Stilnoxium CR 6.25 mg modified release tablet, 10, blister pack 120711 959981000168106 Stilnoxium CR 6.25 mg modified release tablet, 10 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46175011000036109 zolpidem tartrate 6.25 mg modified release tablet, 10 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +110931000036100 Finasteride (Alphapharm) 5 mg film-coated tablet, 30, bottle 186304 109211000036109 Finasteride (Alphapharm) 5 mg film-coated tablet, 30 106991000036104 Finasteride (Alphapharm) 5 mg film-coated tablet 106421000036105 Finasteride (Alphapharm) 106421000036105 Finasteride (Alphapharm) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +673441000168108 Olysio 150 mg hard capsule, 28, blister pack 211697 673431000168104 Olysio 150 mg hard capsule, 28 673381000168106 Olysio 150 mg hard capsule 673341000168101 Olysio 673341000168101 Olysio 673421000168102 simeprevir 150 mg capsule, 28 673371000168108 simeprevir 150 mg capsule 673361000168102 simeprevir +61322011000036101 Diovan 160 mg film-coated tablet, 7, blister pack 80871 57258011000036108 Diovan 160 mg film-coated tablet, 7 54255011000036106 Diovan 160 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63792011000036100 valsartan 160 mg tablet, 7 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +69708011000036102 Claramax 5 mg film-coated tablet, 25, blister pack 91115 67507011000036109 Claramax 5 mg film-coated tablet, 25 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72023011000036107 desloratadine 5 mg tablet, 25 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +926858011000036105 Eucerin 6% ointment, 450 g, jar 34155 926254011000036107 Eucerin 6% ointment, 450 g 5395011000036108 Eucerin 6% ointment 3622011000036108 Eucerin 3622011000036108 Eucerin 927361011000036107 wool alcohols 6% ointment, 450 g 22424011000036108 wool alcohols 6% ointment 21752011000036106 wool alcohols +34791011000036100 Oxynorm 10 mg hard capsule, 60, bottle 74144 34367011000036109 Oxynorm 10 mg hard capsule, 60 6720011000036107 Oxynorm 10 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +21085011000036109 Estradot 25 microgram/24 hours patch, 8, sachet 97562 14228011000036105 Estradot 25 microgram/24 hours patch, 8 7514011000036105 Estradot 25 microgram/24 hours patch 4248011000036108 Estradot 4248011000036108 Estradot 28328011000036100 estradiol 25 microgram/24 hours patch, 8 23640011000036109 estradiol 25 microgram/24 hours patch 21238011000036103 estradiol +659021000168109 Mizart HCT 80/12.5 mg multilayer tablet, 28, bottle 171091 659011000168102 Mizart HCT 80/12.5 mg multilayer tablet, 28 659001000168100 Mizart HCT 80/12.5 mg multilayer tablet 658991000168100 Mizart HCT 80/12.5 mg 658991000168100 Mizart HCT 80/12.5 mg 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +780011000168107 Fentanyl (Apo) 25 microgram/hour patch, 2, sachet 152574 780001000168109 Fentanyl (Apo) 25 microgram/hour patch, 2 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235761000036104 fentanyl 25 microgram/hour patch, 2 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +912521000168101 Cisero 5 mg film-coated tablet, 30, blister pack 183635 912511000168108 Cisero 5 mg film-coated tablet, 30 912501000168105 Cisero 5 mg film-coated tablet 912361000168100 Cisero 912361000168100 Cisero 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +69074011000036101 Lisinopril (Apotex) 10 mg uncoated tablet, 30, blister pack 143974 66876011000036102 Lisinopril (Apotex) 10 mg uncoated tablet, 30 65275011000036104 Lisinopril (Apotex) 10 mg uncoated tablet 52382011000036107 Lisinopril (Apotex) 52382011000036107 Lisinopril (Apotex) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +890911000168105 Candesartan HCTZ 32/25 (Genpar) uncoated tablet, 30, bottle 253632 890901000168107 Candesartan HCTZ 32/25 (Genpar) uncoated tablet, 30 890891000168108 Candesartan HCTZ 32/25 (Genpar) uncoated tablet 890881000168105 Candesartan HCTZ 32/25 (Genpar) 890881000168105 Candesartan HCTZ 32/25 (Genpar) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +44266011000036104 Estrofem 1 mg film-coated tablet, 28, dial dispenser pack 61908 41737011000036105 Estrofem 1 mg film-coated tablet, 28 40174011000036101 Estrofem 1 mg film-coated tablet 39584011000036101 Estrofem 39584011000036101 Estrofem 46544011000036104 estradiol 1 mg tablet, 28 22491011000036102 estradiol 1 mg tablet 21238011000036103 estradiol +44266011000036104 Estrofem 1 mg film-coated tablet, 28, dial dispenser pack 188520 41737011000036105 Estrofem 1 mg film-coated tablet, 28 40174011000036101 Estrofem 1 mg film-coated tablet 39584011000036101 Estrofem 39584011000036101 Estrofem 46544011000036104 estradiol 1 mg tablet, 28 22491011000036102 estradiol 1 mg tablet 21238011000036103 estradiol +20843011000036108 Peg-Intron Redipen Injector (1 x 120 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92008 14006011000036108 Peg-Intron Redipen Injector (1 x 120 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 7296011000036107 Peg-Intron Redipen Injector (peginterferon alfa-2b 120 microgram) powder for injection, 120 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28069011000036103 peginterferon alfa-2b 120 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 23391011000036102 peginterferon alfa-2b 120 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20843011000036108 Peg-Intron Redipen Injector (1 x 120 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92008 14006011000036108 Peg-Intron Redipen Injector (1 x 120 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28069011000036103 peginterferon alfa-2b 120 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +61141011000036103 Benadryl for the Family Chesty Forte oral liquid solution, 30 mL, bottle 73178 57084011000036100 Benadryl for the Family Chesty Forte oral liquid solution, 30 mL 54189011000036103 Benadryl for the Family Chesty Forte oral liquid solution, 5 mL 8221000168105 Benadryl for the Family Chesty Forte 8221000168105 Benadryl for the Family Chesty Forte 63968011000036106 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 30 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +928977011000036105 Valaciclovir (Apo) 500 mg film-coated tablet, 42, blister pack 158911 928338011000036103 Valaciclovir (Apo) 500 mg film-coated tablet, 42 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +889501000168107 Xolair (1 x 75 mg vial, 1 x 0.6 mL inert diluent ampoule), 1 pack, composite pack 115399 889491000168100 Xolair (1 x 75 mg vial, 1 x 0.6 mL inert diluent ampoule), 1 pack 889451000168105 Xolair (omalizumab 75 mg) powder for injection, 75 mg vial 39611011000036108 Xolair 39611011000036108 Xolair 889481000168103 omalizumab 75 mg injection [1 vial] (&) inert substance diluent [0.6 mL ampoule], 1 pack 889441000168108 omalizumab 75 mg injection, vial 44858011000036101 omalizumab +889501000168107 Xolair (1 x 75 mg vial, 1 x 0.6 mL inert diluent ampoule), 1 pack, composite pack 115399 889491000168100 Xolair (1 x 75 mg vial, 1 x 0.6 mL inert diluent ampoule), 1 pack 889471000168101 Xolair (inert substance) diluent, 0.6 mL ampoule 39611011000036108 Xolair 39611011000036108 Xolair 889481000168103 omalizumab 75 mg injection [1 vial] (&) inert substance diluent [0.6 mL ampoule], 1 pack 889461000168107 inert substance diluent, 0.6 mL ampoule 21220011000036103 inert substance +803041000168101 Abilify ODT 30 mg orally disintegrating tablet, 90, blister pack 128904 803031000168105 Abilify ODT 30 mg orally disintegrating tablet, 90 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803021000168107 aripiprazole 30 mg orally disintegrating tablet, 90 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +39231000036100 Pradaxa 150 mg hard capsule, 60, bottle 168215 35661000036105 Pradaxa 150 mg hard capsule, 60 32431000036108 Pradaxa 150 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 35671000036102 dabigatran etexilate 150 mg capsule, 60 32441000036103 dabigatran etexilate 150 mg capsule 79729011000036103 dabigatran +865011000168102 Amitriptyline (GXP) 10 mg tablet, 1000, bottle 232129 865001000168100 Amitriptyline (GXP) 10 mg tablet, 1000 864681000168101 Amitriptyline (GXP) 10 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +43871011000036105 Fluconazole (Aspen) 400 mg/200 mL injection solution, 10 x 200 mL bags 128729 41367011000036103 Fluconazole (Aspen) 400 mg/200 mL injection solution, 10 x 200 mL bags 39802011000036105 Fluconazole (Aspen) 400 mg/200 mL injection solution, 200 mL bag 39689011000036109 Fluconazole (Aspen) 39689011000036109 Fluconazole (Aspen) 46271011000036109 fluconazole 400 mg/200 mL injection, 10 x 200 mL bags 22174011000036106 fluconazole 400 mg/200 mL injection, bag 21365011000036105 fluconazole +81121011000036103 Panvax H1N1 Vaccine 2009 300 microgram/10 mL injection suspension, 10 x 10 mL vials 163897 80626011000036100 Panvax H1N1 Vaccine 2009 300 microgram/10 mL injection suspension, 10 x 10 mL vials 363941000168104 Panvax H1N1 Vaccine 2009 300 microgram/10 mL injection suspension, 10 mL vial 24411000168104 Panvax H1N1 Vaccine 2009 24411000168104 Panvax H1N1 Vaccine 2009 81685011000036105 influenza multi-dose vaccine pandemic 2009 injection, 10 x 10 mL vials 363681000168102 influenza multi-dose vaccine pandemic 2009 injection, 10 mL vial 81214011000036106 influenza vaccine pandemic 2009 +50638011000036100 Teveten Plus film-coated tablet, 56, blister pack 143172 49664011000036109 Teveten Plus film-coated tablet, 56 7151011000036109 Teveten Plus film-coated tablet 29551000168101 Teveten Plus 29551000168101 Teveten Plus 51547011000036103 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet, 56 23305011000036103 eprosartan 600 mg + hydrochlorothiazide 12.5 mg tablet 21527011000036108 eprosartan + hydrochlorothiazide +742441000168105 Voriconazole (Sandoz) 50 mg film-coated tablet, 56, blister pack 207786 742431000168101 Voriconazole (Sandoz) 50 mg film-coated tablet, 56 742421000168104 Voriconazole (Sandoz) 50 mg film-coated tablet 742381000168108 Voriconazole (Sandoz) 742381000168108 Voriconazole (Sandoz) 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +869351000168101 Eplerenone (AN) 50 mg film-coated tablet, 20, blister pack 231455 869341000168103 Eplerenone (AN) 50 mg film-coated tablet, 20 869331000168107 Eplerenone (AN) 50 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 790561000168100 eplerenone 50 mg tablet, 20 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +754231000168105 Oxycodone (Medis) 20 mg hard capsule, 20, bottle 227832 754191000168101 Oxycodone (Medis) 20 mg hard capsule, 20 754181000168104 Oxycodone (Medis) 20 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +873691000168108 Midazolam (B Braun) 50 mg/10 mL injection solution, 20 x 10 mL ampoules 225701 873681000168105 Midazolam (B Braun) 50 mg/10 mL injection solution, 20 x 10 mL ampoules 873661000168101 Midazolam (B Braun) 50 mg/10 mL injection solution, 10 mL ampoule 873561000168102 Midazolam (B Braun) 873561000168102 Midazolam (B Braun) 873671000168107 midazolam 50 mg/10 mL injection, 20 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +68939011000036105 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 550 g, jar 10184 66486011000036102 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 550 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71219011000036106 psyllium husk powder 312.8 mg/g powder for oral liquid, 550 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +1050941000168104 Tramadol (Amneal) 50 mg hard capsule, 20, blister pack 218122 1050931000168108 Tramadol (Amneal) 50 mg hard capsule, 20 1050921000168105 Tramadol (Amneal) 50 mg hard capsule 1050911000168103 Tramadol (Amneal) 1050911000168103 Tramadol (Amneal) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +69437011000036103 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 24 x 100 mL packs, bag 48515 67237011000036107 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 24 x 100 mL packs 65570011000036102 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71787011000036108 sodium chloride 0.9% (900 mg/100 mL) injection, 24 x 100 mL packs 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +931513011000036108 Citalo 20 mg film-coated tablet, 14, blister pack 158873 930674011000036104 Citalo 20 mg film-coated tablet, 14 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +50580011000036102 Clarithromycin (Chemmart) 250 mg film-coated tablet, 100, blister pack 134854 49612011000036101 Clarithromycin (Chemmart) 250 mg film-coated tablet, 100 5470011000036102 Clarithromycin (Chemmart) 250 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +69316011000036104 Calamine (Orion) 15% lotion, 100 mL, bottle 21235 67116011000036100 Calamine (Orion) 15% lotion, 100 mL 65207011000036102 Calamine (Orion) 15% lotion 65020011000036100 Calamine (Orion) 65020011000036100 Calamine (Orion) 71700011000036106 calamine 15% lotion, 100 mL 70135011000036109 calamine 15% lotion 69791011000036109 calamine +762771000168100 Actemra 162 mg/0.9 mL injection solution, 0.9 mL syringe 234034 762761000168106 Actemra 162 mg/0.9 mL injection solution, 0.9 mL syringe 762741000168107 Actemra 162 mg/0.9 mL injection solution, 0.9 mL syringe 82659011000036103 Actemra 82659011000036103 Actemra 762751000168109 tocilizumab 162 mg/0.9 mL injection, 0.9 mL syringe 762731000168103 tocilizumab 162 mg/0.9 mL injection, syringe 82914011000036109 tocilizumab +725321000168103 MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches 725311000168105 MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches 725291000168106 MSUD Cooler 10 oral liquid solution, 87 mL pouch 11741000168100 MSUD Cooler 10 11741000168100 MSUD Cooler 10 725301000168107 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 87 mL pouches 725281000168108 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 87 mL pouch 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +792831000168107 Abisart HCT 300/12.5 film-coated tablet, 90, bottle 215945 792821000168109 Abisart HCT 300/12.5 film-coated tablet, 90 98801000036108 Abisart HCT 300/12.5 film-coated tablet 24981000168101 Abisart HCT 300/12.5 24981000168101 Abisart HCT 300/12.5 792811000168102 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 90 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +111091000036108 Duloxetine (DRLA) 30 mg enteric capsule, 28, blister pack 195618 109371000036109 Duloxetine (DRLA) 30 mg enteric capsule, 28 106781000036104 Duloxetine (DRLA) 30 mg enteric capsule 106451000036104 Duloxetine (DRLA) 106451000036104 Duloxetine (DRLA) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +823351000168105 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 10 x 0.4 mL syringes 221718 823341000168108 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 10 x 0.4 mL syringes 823301000168106 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 0.4 mL syringe 2391000168100 Clexane 2391000168100 Clexane 33799011000036103 enoxaparin sodium 40 mg/0.4 mL injection, 10 x 0.4 mL syringes 33671011000036100 enoxaparin sodium 40 mg/0.4 mL injection, syringe 21553011000036103 enoxaparin sodium +20175011000036104 Prazosin (Chemmart) 5 mg uncoated tablet, 100, blister pack 73864 13398011000036107 Prazosin (Chemmart) 5 mg uncoated tablet, 100 6683011000036101 Prazosin (Chemmart) 5 mg uncoated tablet 4317011000036106 Prazosin (Chemmart) 4317011000036106 Prazosin (Chemmart) 27729011000036100 prazosin 5 mg tablet, 100 23064011000036100 prazosin 5 mg tablet 21544011000036104 prazosin +110771000036101 Provive MCT-LCT 1% 1 g/100 mL injection emulsion, 100 mL vial 162320 108991000036103 Provive MCT-LCT 1% 1 g/100 mL injection emulsion, 100 mL vial 106941000036105 Provive MCT-LCT 1% 1 g/100 mL injection emulsion, 100 mL vial 35451000168102 Provive MCT-LCT 1% 35451000168102 Provive MCT-LCT 1% 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +110841000036100 Citalo 20 mg film-coated tablet, 14, bottle 158874 930674011000036104 Citalo 20 mg film-coated tablet, 14 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1003251000168106 Levetiracetam 1000 (Apo) 1 g tablet, 60, bottle 156320 1003231000168100 Levetiracetam 1000 (Apo) 1 g tablet, 60 1003181000168106 Levetiracetam 1000 (Apo) 1 g tablet 1003171000168108 Levetiracetam 1000 (Apo) 1003171000168108 Levetiracetam 1000 (Apo) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +677691000168107 Simpral 125 microgram tablet, 30, blister pack 173139 677681000168109 Simpral 125 microgram tablet, 30 677671000168106 Simpral 125 microgram tablet 677661000168100 Simpral 677661000168100 Simpral 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +994671000168108 Betaquik oral liquid emulsion, 15 x 225 mL bottles 994661000168102 Betaquik oral liquid emulsion, 15 x 225 mL bottles 994641000168101 Betaquik oral liquid emulsion, 225 mL bottle 161921000036107 Betaquik 161921000036107 Betaquik 994651000168104 medium chain triglycerides oral liquid, 15 x 225 mL bottles 994631000168105 medium chain triglycerides oral liquid, 225 mL bottle 50747011000036106 medium chain triglycerides +710891000168109 Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 65814 710881000168106 Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack 710871000168108 Recombinate (inert substance) diluent, 10 mL vial 710851000168104 Recombinate 710851000168104 Recombinate 922677011000036100 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +710891000168109 Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 65814 710881000168106 Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack 710861000168102 Recombinate (octocog alfa 250 units) powder for injection, 250 units vial 710851000168104 Recombinate 710851000168104 Recombinate 922677011000036100 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 922151011000036106 octocog alfa 250 units injection, vial 69843011000036100 octocog alfa +1007511000168101 Novacodone 10 mg modified release tablet, 28, blister pack 227941 1007501000168104 Novacodone 10 mg modified release tablet, 28 1007451000168101 Novacodone 10 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +59873011000036103 Sudafed PE Nasal Decongestant 10 mg film-coated tablet, 4, blister pack 115775 55835011000036109 Sudafed PE Nasal Decongestant 10 mg film-coated tablet, 4 53661011000036102 Sudafed PE Nasal Decongestant 10 mg film-coated tablet 53133011000036107 Sudafed PE Nasal Decongestant 53133011000036107 Sudafed PE Nasal Decongestant 63141011000036108 phenylephrine hydrochloride 10 mg tablet, 4 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +43736011000036101 Simvastatin (DP) 20 mg film-coated tablet, 180, bottle 125781 41325011000036103 Simvastatin (DP) 20 mg film-coated tablet, 180 4533011000036105 Simvastatin (DP) 20 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46247011000036100 simvastatin 20 mg tablet, 180 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1073901000168105 Cefepime (Auro) 1 g powder for injection, 5 vials 156640 1073891000168106 Cefepime (Auro) 1 g powder for injection, 5 vials 1073851000168101 Cefepime (Auro) 1 g powder for injection, vial 1073611000168103 Cefepime (Auro) 1073611000168103 Cefepime (Auro) 1073881000168108 cefepime 1 g injection, 5 vials 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +821751000168107 Valsartan HCTZ 80/12.5 (Apo) film-coated tablet, 28, blister pack 222296 821741000168105 Valsartan HCTZ 80/12.5 (Apo) film-coated tablet, 28 821731000168101 Valsartan HCTZ 80/12.5 (Apo) film-coated tablet 821721000168104 Valsartan HCTZ 80/12.5 (Apo) 821721000168104 Valsartan HCTZ 80/12.5 (Apo) 46957011000036104 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 45358011000036107 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +61383011000036102 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 100 mL, bottle 81838 57308011000036107 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 100 mL 54268011000036106 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 5 mL 26101000168104 Congested Cold and Cough Elixir (Soul Pattinson) 26101000168104 Congested Cold and Cough Elixir (Soul Pattinson) 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +69469011000036104 Sodium Chloride (Pfizer (Perth)) 0.9% (45 mg/5 mL) injection solution, 50 x 5 mL ampoules 49272 67269011000036106 Sodium Chloride (Pfizer (Perth)) 0.9% (45 mg/5 mL) injection solution, 50 x 5 mL ampoules 65584011000036103 Sodium Chloride (Pfizer (Perth)) 0.9% (45 mg/5 mL) injection solution, 5 mL ampoule 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 71817011000036107 sodium chloride 0.9% (45 mg/5 mL) injection, 50 x 5 mL ampoules 70199011000036103 sodium chloride 0.9% (45 mg/5 mL) injection, ampoule 21308011000036103 sodium chloride +794521000168103 Tacrolimus (Sandoz) 2 mg hard capsule, 30, blister pack 229757 794511000168105 Tacrolimus (Sandoz) 2 mg hard capsule, 30 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794501000168107 tacrolimus 2 mg capsule, 30 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +1105611000168101 Valpam 2 mg uncoated tablet, 200, bottle 80810 1105601000168104 Valpam 2 mg uncoated tablet, 200 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105591000168106 diazepam 2 mg tablet, 200 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +856431000168100 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 856421000168103 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet, 48 856391000168105 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet 856381000168107 Calcium (GH) 856381000168107 Calcium (GH) 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +131351000036109 Remifentanil (DBL) 5 mg powder for injection, 5 vials 195555 128411000036108 Remifentanil (DBL) 5 mg powder for injection, 5 vials 124891000036109 Remifentanil (DBL) 5 mg powder for injection, 5 mg vial 123771000036102 Remifentanil (DBL) 123771000036102 Remifentanil (DBL) 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +933231741000036102 Periactin 4 mg uncoated tablet, 100, blister pack 62384 933226131000036104 Periactin 4 mg uncoated tablet, 100 6308011000036102 Periactin 4 mg uncoated tablet 3061011000036100 Periactin 3061011000036100 Periactin 933226141000036109 cyproheptadine hydrochloride sesquihydrate 4 mg tablet, 100 22840011000036109 cyproheptadine hydrochloride sesquihydrate 4 mg tablet 21554011000036101 cyproheptadine +60115011000036100 Lignocaine Hydrochloride (Orion) 2% gel, 10 g, tube 12732 56074011000036105 Lignocaine Hydrochloride (Orion) 2% gel, 10 g 53778011000036107 Lignocaine Hydrochloride (Orion) 2% gel 53090011000036100 Lignocaine Hydrochloride (Orion) 53090011000036100 Lignocaine Hydrochloride (Orion) 63211011000036100 lidocaine (lignocaine) hydrochloride 2% gel, 10 g 61889011000036102 lidocaine (lignocaine) hydrochloride 2% gel 21572011000036107 lidocaine (lignocaine) +44462011000036104 Clexane Forte 150 mg/mL injection solution, 8 x 1 mL syringes 74175 41918011000036106 Clexane Forte 150 mg/mL injection solution, 8 x 1 mL syringes 40263011000036108 Clexane Forte 150 mg/mL injection solution, syringe 8871000168107 Clexane Forte 8871000168107 Clexane Forte 46707011000036103 enoxaparin sodium 150 mg/mL injection, 8 x 1 mL syringes 45276011000036101 enoxaparin sodium 150 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +933085011000036103 Escitalopram (Generic Health) 10 mg film-coated tablet, 100, bottle 165847 932887011000036101 Escitalopram (Generic Health) 10 mg film-coated tablet, 100 932749011000036100 Escitalopram (Generic Health) 10 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +44384011000036104 Arava 20 mg film-coated tablet, 30, bottle 69694 13284011000036105 Arava 20 mg film-coated tablet, 30 tablets 6567011000036102 Arava 20 mg film-coated tablet, 1 tablet 3730011000036103 Arava 3730011000036103 Arava 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +658931000168104 Mizart 40 mg uncoated tablet, 28, bottle 180994 658921000168102 Mizart 40 mg uncoated tablet, 28 658911000168109 Mizart 40 mg uncoated tablet 658861000168100 Mizart 658861000168100 Mizart 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +710971000168103 Strepsils strawberry sugar free lozenge, 36, blister pack 101403 710961000168109 Strepsils strawberry sugar free lozenge, 36 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +660551000168107 Telmisartan HCTZ 40/12.5mg (Apo) multilayer tablet, 28, blister pack 208064 660541000168105 Telmisartan HCTZ 40/12.5mg (Apo) multilayer tablet, 28 660531000168101 Telmisartan HCTZ 40/12.5mg (Apo) multilayer tablet 660521000168104 Telmisartan HCTZ 40/12.5mg (Apo) 660521000168104 Telmisartan HCTZ 40/12.5mg (Apo) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +660551000168107 Telmisartan HCTZ 40/12.5mg (Apo) multilayer tablet, 28, blister pack 198243 660541000168105 Telmisartan HCTZ 40/12.5mg (Apo) multilayer tablet, 28 660531000168101 Telmisartan HCTZ 40/12.5mg (Apo) multilayer tablet 660521000168104 Telmisartan HCTZ 40/12.5mg (Apo) 660521000168104 Telmisartan HCTZ 40/12.5mg (Apo) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +785861000168105 Oxycodone (Sandoz) 20 mg modified release tablet, 20, bottle 153618 785851000168108 Oxycodone (Sandoz) 20 mg modified release tablet, 20 676371000168104 Oxycodone (Sandoz) 20 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +1053591000168106 Esbriet 267 mg film-coated tablet, 90, bottle 282525 1053581000168108 Esbriet 267 mg film-coated tablet, 90 1053561000168104 Esbriet 267 mg film-coated tablet 763841000168107 Esbriet 763841000168107 Esbriet 1053571000168105 pirfenidone 267 mg tablet, 90 1053551000168101 pirfenidone 267 mg tablet 763861000168106 pirfenidone +44747011000036102 Etoposide (Ebewe) 200 mg/10 mL concentrated injection, 10 mL vial 96642 42192011000036105 Etoposide (Ebewe) 200 mg/10 mL concentrated injection, 10 mL vial 40381011000036100 Etoposide (Ebewe) 200 mg/10 mL concentrated injection, 10 mL vial 3594011000036103 Etoposide (Ebewe) 3594011000036103 Etoposide (Ebewe) 46952011000036101 etoposide 200 mg/10 mL injection, 10 mL vial 45354011000036100 etoposide 200 mg/10 mL injection, vial 21469011000036104 etoposide +734001000168107 Caltrate Bone Health film-coated tablet, 60, bottle 214784 733991000168104 Caltrate Bone Health film-coated tablet, 60 733971000168100 Caltrate Bone Health film-coated tablet 730111000168102 Caltrate Bone Health 730111000168102 Caltrate Bone Health 733981000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +935661000168107 Ventolin 4 mg uncoated tablet, 100, strip pack 12532 935651000168105 Ventolin 4 mg uncoated tablet, 100 935631000168104 Ventolin 4 mg uncoated tablet 34481000168108 Ventolin 34481000168108 Ventolin 935641000168108 salbutamol 4 mg tablet, 100 935621000168102 salbutamol 4 mg tablet 21493011000036100 salbutamol +86096011000036108 Levitam-1000 1 g film-coated tablet, 60, blister pack 143700 85635011000036101 Levitam-1000 1 g film-coated tablet, 60 85309011000036101 Levitam-1000 1 g film-coated tablet 43011000168105 Levitam-1000 43011000168105 Levitam-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +18291011000036105 Provera 500 mg uncoated tablet, 30, blister pack 12336 11738011000036109 Provera 500 mg uncoated tablet, 30 4609011000036109 Provera 500 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 26757011000036105 medroxyprogesterone acetate 500 mg tablet, 30 22144011000036105 medroxyprogesterone acetate 500 mg tablet 21378011000036107 medroxyprogesterone +916971000168106 Carvedilol (SCP) 3.125 mg uncoated tablet, 30, blister pack 194261 916961000168100 Carvedilol (SCP) 3.125 mg uncoated tablet, 30 916951000168102 Carvedilol (SCP) 3.125 mg uncoated tablet 916891000168100 Carvedilol (SCP) 916891000168100 Carvedilol (SCP) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +21117011000036109 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 100 mg/5 mL concentrated injection, 5 mL vial 98118 14260011000036100 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 100 mg/5 mL concentrated injection, 5 mL vial 7546011000036107 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 100 mg/5 mL concentrated injection, 5 mL vial 3464011000036109 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 3464011000036109 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +774141000168106 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 24, blister pack 210274 774131000168102 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 24 774051000168109 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 774121000168100 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet, 24 774041000168107 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet 61758011000036100 bromhexine + guaifenesin +1067961000168109 Codral Multi Action uncoated tablet, 6, blister pack 170441 1067951000168107 Codral Multi Action uncoated tablet, 6 1067931000168101 Codral Multi Action uncoated tablet 1067901000168108 Codral Multi Action 1067901000168108 Codral Multi Action 1067941000168105 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet, 6 1067921000168104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet 1067911000168106 paracetamol + codeine + phenylephrine + chlorphenamine +156881000036102 Sertraline (Apo) 100 mg film-coated tablet, 30, blister pack 213180 156181000036108 Sertraline (Apo) 100 mg film-coated tablet, 30 155091000036103 Sertraline (Apo) 100 mg film-coated tablet 154611000036104 Sertraline (Apo) 154611000036104 Sertraline (Apo) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +931604011000036104 Pratin 80 mg film-coated tablet, 100, bottle 163559 930765011000036104 Pratin 80 mg film-coated tablet, 100 930039011000036106 Pratin 80 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 52329011000036109 pravastatin sodium 80 mg tablet, 100 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +813251000168109 Nuromol film-coated tablet, 24, blister pack 225322 813241000168107 Nuromol film-coated tablet, 24 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +942651000168102 Kefzol 500 mg powder for injection, 10 vials 14648 942641000168104 Kefzol 500 mg powder for injection, 10 vials 942481000168106 Kefzol 500 mg powder for injection, 500 mg vial 4076011000036103 Kefzol 4076011000036103 Kefzol 942631000168108 cefazolin 500 mg injection, 10 vials 32930011000036101 cefazolin 500 mg injection, vial 21621011000036107 cefazolin +69408011000036108 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) intravenous infusion injection, 1 L bag 47396 67208011000036102 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) intravenous infusion injection, 1 L bag 65555011000036108 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) intravenous infusion injection, 1 L bag 14541000168107 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) 14541000168107 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) 32783011000036106 sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, 1 L bag 22567011000036104 sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, bag 21257011000036103 sodium chloride + glucose +111161000036100 Metformin XR (Apo) 500 mg modified release tablet, 120, bottle 197407 109431000036104 Metformin XR (Apo) 500 mg modified release tablet, 120 106901000036107 Metformin XR (Apo) 500 mg modified release tablet 50561000168107 Metformin XR (Apo) 50561000168107 Metformin XR (Apo) 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +17775011000036104 Caduet 5/40 film-coated tablet, 30, blister pack 100697 11158011000036101 Caduet 5/40 film-coated tablet, 30 5895011000036105 Caduet 5/40 film-coated tablet 64171000168108 Caduet 5/40 64171000168108 Caduet 5/40 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +725401000168104 MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches 725391000168101 MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches 725381000168104 MSUD Express Cooler oral liquid solution, 130 mL pouch 26401000168109 MSUD Express Cooler 26401000168109 MSUD Express Cooler 724021000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL pouches 724001000168109 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL pouch 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +37678011000036104 Sifrol 250 microgram uncoated tablet, 100, blister pack 66484 36944011000036108 Sifrol 250 microgram uncoated tablet, 100 36273011000036106 Sifrol 250 microgram uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +914801000168103 Carvedilol (AS) 6.25 mg uncoated tablet, 60, blister pack 194253 914791000168104 Carvedilol (AS) 6.25 mg uncoated tablet, 60 914761000168106 Carvedilol (AS) 6.25 mg uncoated tablet 914721000168101 Carvedilol (AS) 914721000168101 Carvedilol (AS) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +56591000036105 Sinus with Antihistamine (Pharmacy Health) uncoated tablet, 24, blister pack 163179 52981000036103 Sinus with Antihistamine (Pharmacy Health) uncoated tablet, 24 48871000036105 Sinus with Antihistamine (Pharmacy Health) uncoated tablet 48381000036103 Sinus with Antihistamine (Pharmacy Health) 48381000036103 Sinus with Antihistamine (Pharmacy Health) 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +1006631000168108 Raloxifene (Amneal) 60 mg film-coated tablet, 7, blister pack 233380 1006621000168105 Raloxifene (Amneal) 60 mg film-coated tablet, 7 1006611000168103 Raloxifene (Amneal) 60 mg film-coated tablet 1006601000168101 Raloxifene (Amneal) 1006601000168101 Raloxifene (Amneal) 933203811000036104 raloxifene hydrochloride 60 mg tablet, 7 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +19645011000036103 Lipitor 10 mg film-coated tablet, 30, blister pack 59603 12914011000036103 Lipitor 10 mg film-coated tablet, 30 6204011000036101 Lipitor 10 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +19645011000036103 Lipitor 10 mg film-coated tablet, 30, blister pack 168338 12914011000036103 Lipitor 10 mg film-coated tablet, 30 6204011000036101 Lipitor 10 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +19645011000036103 Lipitor 10 mg film-coated tablet, 30, blister pack 166885 12914011000036103 Lipitor 10 mg film-coated tablet, 30 6204011000036101 Lipitor 10 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +822711000168102 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 49681 822701000168100 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack 645151000168102 Je-Vax (inert substance) diluent, 1 mL vial 73730011000036109 Je-Vax 73730011000036109 Je-Vax 822691000168100 Japanese encephalitis (mouse brain-derived) inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +822711000168102 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 49681 822701000168100 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack 822681000168103 Je-Vax (Japanese encephalitis (mouse brain-derived) inactivated vaccine) powder for injection, vial 73730011000036109 Je-Vax 73730011000036109 Je-Vax 822691000168100 Japanese encephalitis (mouse brain-derived) inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 822671000168101 Japanese encephalitis (mouse brain-derived) inactivated vaccine injection, vial 822661000168107 Japanese encephalitis (mouse brain-derived) inactivated vaccine +903751000168108 Brillior 300 mg hard capsule, 56, blister pack 224345 903741000168106 Brillior 300 mg hard capsule, 56 903681000168106 Brillior 300 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +994031000168104 Candesartan (Apotex) 16 mg tablet, 28, blister pack 191763 994021000168102 Candesartan (Apotex) 16 mg tablet, 28 993981000168101 Candesartan (Apotex) 16 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 904891000168106 candesartan cilexetil 16 mg tablet, 28 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +938311000168105 Kevtam-1000 1 g film-coated tablet, 60, blister pack 278841 938301000168107 Kevtam-1000 1 g film-coated tablet, 60 938271000168105 Kevtam-1000 1 g film-coated tablet 938261000168104 Kevtam-1000 938261000168104 Kevtam-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +938311000168105 Kevtam-1000 1 g film-coated tablet, 60, blister pack 152770 938301000168107 Kevtam-1000 1 g film-coated tablet, 60 938271000168105 Kevtam-1000 1 g film-coated tablet 938261000168104 Kevtam-1000 938261000168104 Kevtam-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +19849011000036108 Viagra 50 mg film-coated tablet, 4, bottle 64438 13096011000036107 Viagra 50 mg film-coated tablet, 4 6380011000036103 Viagra 50 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +926870011000036105 Water for Injections (Phebra) injection solution, 5 x 100 mL vials 48354 926266011000036107 Water for Injections (Phebra) injection solution, 5 x 100 mL vials 925712011000036102 Water for Injections (Phebra) injection solution, 100 mL vial 75970011000036108 Water for Injections (Phebra) 75970011000036108 Water for Injections (Phebra) 927370011000036109 water for injections injection, 5 x 100 mL vials 77586011000036108 water for injections injection, 100 mL vial 77431011000036101 water for injections +37516011000036104 Sandimmun 100 mg soft capsule, 50, blister pack 13341 36784011000036109 Sandimmun 100 mg soft capsule, 50 36148011000036103 Sandimmun 100 mg soft capsule 3779011000036106 Sandimmun 3779011000036106 Sandimmun 38681011000036107 ciclosporin 100 mg capsule, 50 23298011000036101 ciclosporin 100 mg capsule 21379011000036104 ciclosporin +916651000168109 Aleviate 250 IU FVIII/600 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 170263 916641000168107 Aleviate 250 IU FVIII/600 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 916531000168102 Aleviate (inert substance) diluent, 5 mL vial 916601000168105 Aleviate 250 IU FVIII/600 IU VWF 916281000168104 Aleviate 916631000168103 factor VIII 250 units + von Willebrand factor 600 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +916651000168109 Aleviate 250 IU FVIII/600 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 170263 916641000168107 Aleviate 250 IU FVIII/600 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 916621000168101 Aleviate 250 IU FVIII/600 IU VWF (factor VIII 250 units + von Willebrand factor 600 units) powder for injection, 1 vial 916601000168105 Aleviate 250 IU FVIII/600 IU VWF 916601000168105 Aleviate 250 IU FVIII/600 IU VWF 916631000168103 factor VIII 250 units + von Willebrand factor 600 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 916611000168108 factor VIII 250 units + von Willebrand factor 600 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +895481000168100 Apomine 100 mg/20 mL injection solution, 20 mL vial 260149 895471000168103 Apomine 100 mg/20 mL injection solution, 20 mL vial 895451000168107 Apomine 100 mg/20 mL injection solution, 20 mL vial 30841000168109 Apomine 30841000168109 Apomine 895461000168109 apomorphine hydrochloride hemihydrate 100 mg/20 mL injection, 20 mL vial 895441000168105 apomorphine hydrochloride hemihydrate 100 mg/20 mL injection, vial 21732011000036105 apomorphine +45861000036108 Quetiapine (Synthon) 100 mg film-coated tablet, 90, blister pack 176715 43161000036100 Quetiapine (Synthon) 100 mg film-coated tablet, 90 40961000036107 Quetiapine (Synthon) 100 mg film-coated tablet 40241000036102 Quetiapine (Synthon) 40241000036102 Quetiapine (Synthon) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +44704011000036104 Tacidine 300 mg capsule, 30, bottle 94207 14090011000036107 Tacidine 300 mg capsule, 30 7368011000036104 Tacidine 300 mg capsule 4018011000036106 Tacidine 4018011000036106 Tacidine 28208011000036102 nizatidine 300 mg capsule, 30 23520011000036100 nizatidine 300 mg capsule 21421011000036109 nizatidine +61458011000036108 Paracetamol Children's Drops (Guardian) 100 mg/mL oral liquid solution, 20 mL, bottle 90629 57383011000036103 Paracetamol Children's Drops (Guardian) 100 mg/mL oral liquid solution, 20 mL 54290011000036107 Paracetamol Children's Drops (Guardian) 100 mg/mL oral liquid solution 52051000168104 Paracetamol Children's Drops (Guardian) 52051000168104 Paracetamol Children's Drops (Guardian) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +659891000168103 Pantoprazole (AN) 40 mg enteric tablet, 30, blister pack 158197 659881000168101 Pantoprazole (AN) 40 mg enteric tablet, 30 659871000168104 Pantoprazole (AN) 40 mg enteric tablet 659831000168102 Pantoprazole (AN) 659831000168102 Pantoprazole (AN) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +985451000168101 Advil Mini Caps 200 mg sugar coated tablet, 40, blister pack 104222 985441000168103 Advil Mini Caps 200 mg sugar coated tablet, 40 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1038701000168100 Atorvastatin (GA) 80 mg film-coated tablet, 50, blister pack 178523 1038691000168100 Atorvastatin (GA) 80 mg film-coated tablet, 50 1038601000168106 Atorvastatin (GA) 80 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841901000168108 atorvastatin 80 mg tablet, 50 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +908091000168109 Celecoxib (Ascent) 200 mg capsule, 50, blister pack 204617 908081000168106 Celecoxib (Ascent) 200 mg capsule, 50 907951000168102 Celecoxib (Ascent) 200 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +20690011000036102 Pamacid 40 mg film-coated tablet, 30, blister pack 82470 13870011000036101 Pamacid 40 mg film-coated tablet, 30 7157011000036101 Pamacid 40 mg film-coated tablet 3448011000036106 Pamacid 3448011000036106 Pamacid 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +659911000168101 Fluoxetine (AN) 20 mg capsule, 28, blister pack 148137 659901000168104 Fluoxetine (AN) 20 mg capsule, 28 658131000168102 Fluoxetine (AN) 20 mg capsule 658121000168100 Fluoxetine (AN) 658121000168100 Fluoxetine (AN) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +796691000168108 Aciclovir (Ascent) 400 mg uncoated tablet, 56, blister pack 202879 796681000168105 Aciclovir (Ascent) 400 mg uncoated tablet, 56 796671000168107 Aciclovir (Ascent) 400 mg uncoated tablet 796651000168103 Aciclovir (Ascent) 796651000168103 Aciclovir (Ascent) 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +32536011000036108 Benpen 3 g powder for injection, 1 vial 10327 32328011000036106 Benpen 3 g powder for injection, 1 vial 32205011000036103 Benpen 3 g powder for injection, 3 g vial 3539011000036105 Benpen 3539011000036105 Benpen 32753011000036104 benzylpenicillin 3 g injection, 1 vial 32686011000036108 benzylpenicillin 3 g injection, vial 21332011000036106 benzylpenicillin +17810011000036103 Amlodipine (Sandoz) 10 mg uncoated tablet, 30, blister pack 124582 11769011000036107 Amlodipine (Sandoz) 10 mg uncoated tablet, 30 4817011000036109 Amlodipine (Sandoz) 10 mg uncoated tablet 3220011000036106 Amlodipine (Sandoz) 3220011000036106 Amlodipine (Sandoz) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +704861000168107 Noxicid 20 mg enteric capsule, 30, bottle 161345 704271000168102 Noxicid 20 mg enteric capsule, 30 704261000168108 Noxicid 20 mg enteric capsule 704221000168103 Noxicid 704221000168103 Noxicid 682661000168106 esomeprazole 20 mg enteric capsule, 30 682641000168107 esomeprazole 20 mg enteric capsule 21697011000036107 esomeprazole +863001000168104 Amitriptyline (AC) 50 mg tablet, 1000, bottle 232111 862991000168100 Amitriptyline (AC) 50 mg tablet, 1000 862931000168104 Amitriptyline (AC) 50 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +809711000168100 Entresto 97/103 film-coated tablet, 56, blister pack 234218 809701000168103 Entresto 97/103 film-coated tablet, 56 809651000168108 Entresto 97/103 film-coated tablet 805781000168109 Entresto 97/103 805781000168109 Entresto 97/103 809691000168103 sacubitril 97.2 mg + valsartan 102.8 mg tablet, 56 809641000168106 sacubitril 97.2 mg + valsartan 102.8 mg tablet 809631000168102 sacubitril + valsartan +1068601000168103 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 10, blister pack 194227 1068591000168105 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 10 88451000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1062501000168102 Codalgin Forte uncoated tablet, 4, blister pack 47807 1062491000168109 Codalgin Forte uncoated tablet, 4 835871000168107 Codalgin Forte uncoated tablet 60751000168107 Codalgin Forte 60751000168107 Codalgin Forte 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +1062501000168102 Codalgin Forte uncoated tablet, 4, blister pack 226337 1062491000168109 Codalgin Forte uncoated tablet, 4 835871000168107 Codalgin Forte uncoated tablet 60751000168107 Codalgin Forte 60751000168107 Codalgin Forte 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +904071000168104 Celocox 100 mg hard capsule, 60, blister pack 212790 904061000168105 Celocox 100 mg hard capsule, 60 903931000168100 Celocox 100 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1079771000168104 Stomach Ache and Pain Relief Double Strength (Amcal) 20 mg film-coated tablet, 10, blister pack 223598 1079761000168105 Stomach Ache and Pain Relief Double Strength (Amcal) 20 mg film-coated tablet, 10 1079751000168108 Stomach Ache and Pain Relief Double Strength (Amcal) 20 mg film-coated tablet 1079741000168106 Stomach Ache and Pain Relief Double Strength (Amcal) 1079741000168106 Stomach Ache and Pain Relief Double Strength (Amcal) 924213011000036109 hyoscine butylbromide 20 mg tablet, 10 923994011000036108 hyoscine butylbromide 20 mg tablet 21580011000036102 hyoscine butylbromide +931685011000036101 Maxiclear Sinus Relief 10 mg uncoated tablet, 30, blister pack 168877 930845011000036109 Maxiclear Sinus Relief 10 mg uncoated tablet, 30 930067011000036107 Maxiclear Sinus Relief 10 mg uncoated tablet 929825011000036108 Maxiclear Sinus Relief 929825011000036108 Maxiclear Sinus Relief 932450011000036104 phenylephrine hydrochloride 10 mg tablet, 30 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +993701000168106 Atenolol (Apo) 50 mg film-coated tablet, 100, bottle 214940 993691000168106 Atenolol (Apo) 50 mg film-coated tablet, 100 993641000168103 Atenolol (Apo) 50 mg film-coated tablet 9511000168106 Atenolol (Apo) 9511000168106 Atenolol (Apo) 993681000168108 atenolol 50 mg tablet, 100 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +925311000168101 Topiramate (Terry White Chemists) 25 mg film-coated tablet, 60, blister pack 124745 925301000168104 Topiramate (Terry White Chemists) 25 mg film-coated tablet, 60 925291000168100 Topiramate (Terry White Chemists) 25 mg film-coated tablet 925251000168105 Topiramate (Terry White Chemists) 925251000168105 Topiramate (Terry White Chemists) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +30609011000036109 Bgramin Sugar Free 250 mg/5 mL powder for oral liquid, 100 mL, bottle 59875 30587011000036106 Bgramin Sugar Free 250 mg/5 mL powder for oral liquid, 100 mL 6215011000036100 Bgramin Sugar Free 250 mg/5 mL powder for oral liquid, 5 mL 2974011000036106 Bgramin 2974011000036106 Bgramin 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +18112011000036100 Carvedilol (Terry White Chemists) 25 mg film-coated tablet, 60, blister pack 133044 11961011000036101 Carvedilol (Terry White Chemists) 25 mg film-coated tablet, 60 4535011000036106 Carvedilol (Terry White Chemists) 25 mg film-coated tablet 3269011000036109 Carvedilol (Terry White Chemists) 3269011000036109 Carvedilol (Terry White Chemists) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +1096701000168105 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 80, blister pack 287308 1096691000168105 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 80 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1077371000168108 fexofenadine hydrochloride 180 mg tablet, 80 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +17870011000036106 Metformin Hydrochloride (Genepharm) 500 mg film-coated tablet, 100, blister pack 108666 11391011000036106 Metformin Hydrochloride (Genepharm) 500 mg film-coated tablet, 100 4467011000036101 Metformin Hydrochloride (Genepharm) 500 mg film-coated tablet 3243011000036100 Metformin Hydrochloride (Genepharm) 3243011000036100 Metformin Hydrochloride (Genepharm) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +60884011000036107 Dimetapp Cold and Allergy Elixir oral liquid solution, 100 mL, bottle 59767 56838011000036100 Dimetapp Cold and Allergy Elixir oral liquid solution, 100 mL 54095011000036106 Dimetapp Cold and Allergy Elixir oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63601011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +933239921000036109 Simvacor 40 mg film-coated tablet, 30, blister pack 182908 933236511000036104 Simvacor 40 mg film-coated tablet, 30 933234871000036100 Simvacor 40 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +753911000168109 Xedone 5 mg hard capsule, 20, blister pack 227836 753901000168106 Xedone 5 mg hard capsule, 20 753891000168107 Xedone 5 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +20039011000036106 Karvezide 150/12.5 uncoated tablet, 30, blister pack 69220 13271011000036104 Karvezide 150/12.5 uncoated tablet, 30 6553011000036102 Karvezide 150/12.5 uncoated tablet 20981000168107 Karvezide 150/12.5 20981000168107 Karvezide 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +68991011000036101 Nicotinell Liquorice 4 mg chewing gum, 144, blister pack 136135 66793011000036102 Nicotinell Liquorice 4 mg chewing gum, 144 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71515011000036101 nicotine 4 mg gum, 144 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +908411000168107 Celecoxib (Bellwether) 100 mg hard capsule, 120, blister pack 196185 908401000168109 Celecoxib (Bellwether) 100 mg hard capsule, 120 908241000168105 Celecoxib (Bellwether) 100 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 907561000168105 celecoxib 100 mg capsule, 120 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +12061000036101 Zypine 2.5 mg film-coated tablet, 28, blister pack 154620 7131000036106 Zypine 2.5 mg film-coated tablet, 28 3201000036101 Zypine 2.5 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +131581000036109 Rostor 10 mg film-coated tablet, 30, blister pack 197007 128561000036109 Rostor 10 mg film-coated tablet, 30 124441000036100 Rostor 10 mg film-coated tablet 123991000036100 Rostor 123991000036100 Rostor 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +928875011000036109 Appese 2 mg film-coated tablet, 28, blister pack 140835 928237011000036108 Appese 2 mg film-coated tablet, 28 927895011000036108 Appese 2 mg film-coated tablet 4841000168106 Appese 4841000168106 Appese 46972011000036104 ropinirole 2 mg tablet, 28 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +61296011000036102 Ibuprofen (Chemists' Own) 200 mg film-coated tablet, 96, blister pack 79117 57232011000036109 Ibuprofen (Chemists' Own) 200 mg film-coated tablet, 96 54248011000036102 Ibuprofen (Chemists' Own) 200 mg film-coated tablet 53581011000036105 Ibuprofen (Chemists' Own) 53581011000036105 Ibuprofen (Chemists' Own) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61538011000036102 Dolased Pain Relief Day and Night (40 x Day tablets, 20 x Night tablets), 60, blister pack 93793 57463011000036108 Dolased Pain Relief Day and Night (40 x Day tablets, 20 x Night tablets), 60 54310011000036100 Dolased Pain Relief (Day) uncoated tablet 10011000168109 Dolased Pain Relief Day and Night 10131000168103 Dolased Pain Relief (Day) 63874011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet [40] (&) paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet [20], 60 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +61538011000036102 Dolased Pain Relief Day and Night (40 x Day tablets, 20 x Night tablets), 60, blister pack 93793 57463011000036108 Dolased Pain Relief Day and Night (40 x Day tablets, 20 x Night tablets), 60 54311011000036107 Dolased Pain Relief (Night) uncoated tablet 10011000168109 Dolased Pain Relief Day and Night 10251000168102 Dolased Pain Relief (Night) 63874011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet [40] (&) paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet [20], 60 62092011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60328011000036107 Robitussin Cough and Chest Congestion oral liquid solution, 200 mL, bottle 13884 56287011000036102 Robitussin Cough and Chest Congestion oral liquid solution, 200 mL 53861011000036106 Robitussin Cough and Chest Congestion oral liquid solution, 5 mL 53223011000036107 Robitussin Cough and Chest Congestion 53223011000036107 Robitussin Cough and Chest Congestion 63292011000036105 guaifenesin 100 mg/5 mL + dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 200 mL 61911011000036105 guaifenesin 100 mg/5 mL + dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61793011000036104 guaifenesin + dextromethorphan +45901000036100 Ramipril (Apo) 1.25 mg capsule, 30, bottle 179010 43271000036100 Ramipril (Apo) 1.25 mg capsule, 30 41401000036109 Ramipril (Apo) 1.25 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +50281011000036101 Mepilex Border (295200) 7.5 cm x 7.5 cm dressing, 5, carton 49408011000036104 Mepilex Border (295200) 7.5 cm x 7.5 cm dressing, 5 48640011000036106 Mepilex Border (295200) 7.5 cm x 7.5 cm dressing 38751000168103 Mepilex Border (295200) 38751000168103 Mepilex Border (295200) 51376011000036100 dressing foam with silicone heavy exudate 7.5 cm x 7.5 cm dressing, 5 50897011000036104 dressing foam with silicone heavy exudate 7.5 cm x 7.5 cm dressing 50761011000036107 dressing foam with silicone heavy exudate +68749011000036102 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch, 28, sachet 129750 66734011000036106 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch, 28 65482011000036104 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch 22501000168106 Nicotine Phase-3 (Chemists' Own) 22501000168106 Nicotine Phase-3 (Chemists' Own) 63758011000036106 nicotine 7 mg/24 hours patch, 28 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +931531011000036103 Pioglitazone (Sandoz) 30 mg uncoated tablet, 28, blister pack 162222 930692011000036103 Pioglitazone (Sandoz) 30 mg uncoated tablet, 28 930015011000036101 Pioglitazone (Sandoz) 30 mg uncoated tablet 929842011000036103 Pioglitazone (Sandoz) 929842011000036103 Pioglitazone (Sandoz) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +777521000168101 Karvea 300 mg film-coated tablet, 98, blister pack 101708 777511000168108 Karvea 300 mg film-coated tablet, 98 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777501000168105 irbesartan 300 mg tablet, 98 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +44684011000036108 Cernevit powder for injection, 20 vials 92418 42133011000036105 Cernevit powder for injection, 20 vials 40358011000036101 Cernevit powder for injection, vial 39604011000036109 Cernevit 39604011000036109 Cernevit 46895011000036109 retinol palmitate 3500 units + colecalciferol 5.5 microgram + dl-alpha-tocopherol 10.2 mg + ascorbic acid 125 mg + cocarboxylase tetrahydrate 5.8 mg + riboflavin sodium phosphate 5.67 mg + pyridoxine hydrochloride 5.5 mg + cyanocobalamin 6 microgram + folic acid 414 microgram + dexpanthenol 16.15 mg + biotin 69 microgram + nicotinamide 46 mg injection, 20 vials 45337011000036105 retinol palmitate 3500 units + colecalciferol 5.5 microgram + dl-alpha-tocopherol 10.2 mg + ascorbic acid 125 mg + cocarboxylase tetrahydrate 5.8 mg + riboflavin sodium phosphate 5.67 mg + pyridoxine hydrochloride 5.5 mg + cyanocobalamin 6 microgram + folic acid 414 microgram + dexpanthenol 16.15 mg + biotin 69 microgram + nicotinamide 46 mg injection, vial 44933011000036104 retinol palmitate + colecalciferol + dl-alpha-tocopherol + ascorbic acid + cocarboxylase + riboflavin + pyridoxine + cyanocobalamin + folic acid + dexpanthenol + biotin + nicotinamide +20474011000036102 Videx EC 200 mg enteric capsule, 30, bottle 78353 13674011000036104 Videx EC 200 mg enteric capsule, 30 6957011000036103 Videx EC 200 mg enteric capsule 30871000168102 Videx EC 30871000168102 Videx EC 27877011000036106 didanosine 200 mg enteric capsule, 30 23205011000036109 didanosine 200 mg enteric capsule 21467011000036106 didanosine +131421000036107 Candesartan Cilexetil HCTZ 32/25 (GA) uncoated tablet, 30, bottle 196393 128801000036108 Candesartan Cilexetil HCTZ 32/25 (GA) uncoated tablet, 30 125151000036107 Candesartan Cilexetil HCTZ 32/25 (GA) uncoated tablet 29231000168109 Candesartan Cilexetil HCTZ 32/25 (GA) 29231000168109 Candesartan Cilexetil HCTZ 32/25 (GA) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +760441000168103 Sildenafil (DRLA) 100 mg film-coated tablet, 8, blister pack 186287 760431000168107 Sildenafil (DRLA) 100 mg film-coated tablet, 8 760361000168109 Sildenafil (DRLA) 100 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760421000168109 sildenafil 100 mg tablet, 8 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +923782011000036109 Cafnea 40 mg/2 mL intravenous infusion injection, 10 x 2 mL vials 153873 923342011000036103 Cafnea 40 mg/2 mL intravenous infusion injection, 10 x 2 mL vials 923019011000036104 Cafnea 40 mg/2 mL intravenous infusion injection, 2 mL vial 922910011000036108 Cafnea 922910011000036108 Cafnea 924143011000036104 caffeine citrate 40 mg/2 mL injection, 10 x 2 mL vials 923962011000036102 caffeine citrate 40 mg/2 mL injection, vial 69867011000036102 caffeine +856831000168103 Entrip 50 mg film-coated tablet, 100, blister pack 232156 856821000168101 Entrip 50 mg film-coated tablet, 100 856771000168108 Entrip 50 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +20716011000036105 Alprazolam (DP) 2 mg tablet, 50, bottle 82799 13886011000036105 Alprazolam (DP) 2 mg tablet, 50 7172011000036101 Alprazolam (DP) 2 mg tablet 3097011000036106 Alprazolam (DP) 3097011000036106 Alprazolam (DP) 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +923833011000036107 Prochlorperazine Maleate (Apo) 5 mg tablet, 100, blister pack 158416 923379011000036109 Prochlorperazine Maleate (Apo) 5 mg tablet, 100 923050011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet 4811000168107 Prochlorperazine Maleate (Apo) 4811000168107 Prochlorperazine Maleate (Apo) 924170011000036106 prochlorperazine maleate 5 mg tablet, 100 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +59916011000036108 Ibuprofen Children's (Amcal) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 117617 55878011000036100 Ibuprofen Children's (Amcal) 100 mg/5 mL oral liquid suspension, 200 mL 53650011000036102 Ibuprofen Children's (Amcal) 100 mg/5 mL oral liquid suspension, 5 mL 22291000168103 Ibuprofen Children's (Amcal) 22291000168103 Ibuprofen Children's (Amcal) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +706871000168108 Morphine (Juno) 20 mg/mL injection solution, 5 x 1 mL ampoules 224242 706861000168102 Morphine (Juno) 20 mg/mL injection solution, 5 x 1 mL ampoules 706841000168101 Morphine (Juno) 20 mg/mL injection solution, ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 706851000168104 morphine hydrochloride trihydrate 20 mg/mL injection, 5 x 1 mL ampoules 706831000168105 morphine hydrochloride trihydrate 20 mg/mL injection, ampoule 21252011000036100 morphine +77290011000036103 Water for Irrigation (Baxter) irrigation solution, 2 L bag 19457 76706011000036107 Water for Irrigation (Baxter) irrigation solution, 2 L bag 76128011000036109 Water for Irrigation (Baxter) irrigation solution, 2 L bag 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78220011000036102 water for irrigation solution, 2 L bag 77550011000036101 water for irrigation solution, 2 L bag 77440011000036107 water for irrigation +920796011000036105 Alprazolam (GA) 1 mg tablet, 50, blister pack 82798 920475011000036104 Alprazolam (GA) 1 mg tablet, 50 920207011000036101 Alprazolam (GA) 1 mg tablet 920075011000036107 Alprazolam (GA) 920075011000036107 Alprazolam (GA) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +69282011000036107 Osmitrol 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 19496 67082011000036105 Osmitrol 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 65395011000036103 Osmitrol 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 65181011000036106 Osmitrol 65181011000036106 Osmitrol 71651011000036102 mannitol 20% (100 g/500 mL) injection, 500 mL bag 70109011000036101 mannitol 20% (100 g/500 mL) injection, bag 69778011000036106 mannitol +811841000168105 Aflitiv 200 mg/8 mL concentrated injection, 8 mL vial 195975 811831000168101 Aflitiv 200 mg/8 mL concentrated injection, 8 mL vial 811821000168104 Aflitiv 200 mg/8 mL concentrated injection, 8 mL vial 811811000168106 Aflitiv 811811000168106 Aflitiv 120801000036105 aflibercept 200 mg/8 mL injection, 8 mL vial 119291000036102 aflibercept 200 mg/8 mL injection, vial 82551000036105 aflibercept +1105291000168108 Quetiapine (CH) 100 mg film-coated tablet, 90, blister pack 172838 1105281000168105 Quetiapine (CH) 100 mg film-coated tablet, 90 1105271000168107 Quetiapine (CH) 100 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +863241000168106 Amitriptyline (AN) 25 mg tablet, 90, blister pack 232118 863231000168102 Amitriptyline (AN) 25 mg tablet, 90 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +728291000168102 Brimica Genuair 340/12 powder for inhalation, 60 actuations, dry powder inhaler 224899 728281000168100 Brimica Genuair 340/12 powder for inhalation, 60 actuations 728261000168109 Brimica Genuair 340/12 powder for inhalation, actuation 728201000168108 Brimica Genuair 340/12 728201000168108 Brimica Genuair 340/12 728271000168103 aclidinium 340 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 60 actuations 728251000168107 aclidinium 340 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 856861000168106 aclidinium + formoterol (eformoterol) +44419011000036105 Paradex uncoated tablet, 20, blister pack 71169 41878011000036107 Paradex uncoated tablet, 20 40235011000036102 Paradex uncoated tablet 39755011000036105 Paradex 39755011000036105 Paradex 46681011000036103 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet, 20 45260011000036108 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet 37703011000036109 dextropropoxyphene + paracetamol +18411000036107 Milivin OD 30 mg orally disintegrating tablet, 30, blister pack 183405 16991000036105 Milivin OD 30 mg orally disintegrating tablet, 30 15821000036109 Milivin OD 30 mg orally disintegrating tablet 19001000168104 Milivin OD 19001000168104 Milivin OD 47691000036107 mirtazapine 30 mg orally disintegrating tablet, 30 47561000036104 mirtazapine 30 mg orally disintegrating tablet 21463011000036102 mirtazapine +805371000168107 Caelyx 20 mg/10 mL concentrated injection, 10 x 10 mL vials 60384 805361000168101 Caelyx 20 mg/10 mL concentrated injection, 10 x 10 mL vials 113021000036109 Caelyx 20 mg/10 mL concentrated injection, 10 mL vial 3909011000036107 Caelyx 3909011000036107 Caelyx 805351000168103 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, 10 x 10 mL vials 113031000036106 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +43958011000036107 Stieva-A 0.025% cream, 6 g, tube 39837 41450011000036101 Stieva-A 0.025% cream, 6 g 39980011000036104 Stieva-A 0.025% cream 39639011000036100 Stieva-A 39639011000036100 Stieva-A 46299011000036103 tretinoin 0.025% cream, 6 g 45062011000036100 tretinoin 0.025% cream 37794011000036109 tretinoin +880361000168105 Neocate Junior Vanilla powder for oral liquid, 400 g, can 880351000168108 Neocate Junior Vanilla powder for oral liquid, 400 g 880331000168102 Neocate Junior Vanilla powder for oral liquid 879711000168108 Neocate Junior 879711000168108 Neocate Junior 880341000168106 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides supplemented with prebiotics powder for oral liquid, 400 g 880321000168100 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides supplemented with prebiotics powder for oral liquid 880311000168107 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides supplemented with prebiotics +1103121000168103 Nicotine (NCHA) Classic 2 mg chewing gum, 24, blister pack 143429 1103111000168105 Nicotine (NCHA) Classic 2 mg chewing gum, 24 1103101000168107 Nicotine (NCHA) Classic 2 mg chewing gum 1103091000168102 Nicotine (NCHA) 1103091000168102 Nicotine (NCHA) 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60398011000036102 Febridol Co uncoated tablet, 20, blister pack 144070 56357011000036102 Febridol Co uncoated tablet, 20 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +745411000168103 Prozero oral liquid solution, 6 x 1 L cartons 745401000168101 Prozero oral liquid solution, 6 x 1 L cartons 745381000168101 Prozero oral liquid solution, 1 L carton 39371000168102 Prozero 39371000168102 Prozero 745391000168103 triglycerides long chain with glucose polymer oral liquid, 6 x 1 L cartons 745371000168104 triglycerides long chain with glucose polymer oral liquid, 1 L carton 83419011000036102 triglycerides long chain with glucose polymer +826801000168106 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack 192696 826791000168105 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack 826671000168100 MenA 10 microgram powder for injection, 10 microgram vial 929915011000036108 Menveo 715961000168101 MenA 826781000168107 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack 826661000168106 meningococcal A conjugate vaccine injection, vial 826651000168109 meningococcal A conjugate vaccine +826801000168106 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack 192696 826791000168105 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack 826771000168109 MenCWY injection solution, vial 929915011000036108 Menveo 715971000168107 MenCWY 826781000168107 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack 826761000168103 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, vial 826681000168102 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine +931479011000036107 Paroxetine (Synthon) 20 mg film-coated tablet, 60, blister pack 152491 930658011000036109 Paroxetine (Synthon) 20 mg film-coated tablet, 60 929991011000036107 Paroxetine (Synthon) 20 mg film-coated tablet 929845011000036106 Paroxetine (Synthon) 929845011000036106 Paroxetine (Synthon) 51566011000036107 paroxetine 20 mg tablet, 60 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +43701011000036104 Mirtazapine (Sandoz) 30 mg film-coated tablet, 30, bottle 117182 11561011000036107 Mirtazapine (Sandoz) 30 mg film-coated tablet, 30 5576011000036107 Mirtazapine (Sandoz) 30 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +110611000036100 Risedronate (Apo) 35 mg film-coated tablet, 30, bottle 160644 108781000036103 Risedronate (Apo) 35 mg film-coated tablet, 30 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 108791000036101 risedronate sodium 35 mg tablet, 30 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +786021000168102 Fentanyl (Watson) 50 microgram/hour patch, 5, sachet 190796 786011000168109 Fentanyl (Watson) 50 microgram/hour patch, 5 786001000168106 Fentanyl (Watson) 50 microgram/hour patch 785901000168104 Fentanyl (Watson) 785901000168104 Fentanyl (Watson) 26650011000036103 fentanyl 50 microgram/hour patch, 5 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +951131000168108 Modafinil (Apo) 100 mg tablet, 30, blister pack 276420 951121000168105 Modafinil (Apo) 100 mg tablet, 30 951111000168103 Modafinil (Apo) 100 mg tablet 951101000168101 Modafinil (Apo) 951101000168101 Modafinil (Apo) 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +69745011000036101 Acivir 5% cream, 5 g, bottle 96190 67544011000036107 Acivir 5% cream, 5 g 65695011000036108 Acivir 5% cream 65185011000036108 Acivir 65185011000036108 Acivir 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +44292011000036100 Primacin 7.5 mg uncoated tablet, 60, tube 63856 41763011000036106 Primacin 7.5 mg uncoated tablet, 60 40185011000036109 Primacin 7.5 mg uncoated tablet 39775011000036108 Primacin 39775011000036108 Primacin 46570011000036108 primaquine 7.5 mg tablet, 60 45221011000036107 primaquine 7.5 mg tablet 44963011000036109 primaquine +1004621000168103 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 52405 1004611000168105 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 1004591000168100 Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule 711291000168100 Naropin 0.2% 711291000168100 Naropin 0.2% 1004601000168107 ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules 1004581000168103 ropivacaine hydrochloride 40 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +19043011000036106 Maxolon 10 mg/2 mL injection solution, 10 x 2 mL ampoules 40204 12352011000036109 Maxolon 10 mg/2 mL injection solution, 10 x 2 mL ampoules 5554011000036102 Maxolon 10 mg/2 mL injection solution, 2 mL ampoule 3971011000036104 Maxolon 3971011000036104 Maxolon 27072011000036108 metoclopramide hydrochloride 10 mg/2 mL injection, 10 x 2 mL ampoules 22442011000036102 metoclopramide hydrochloride 10 mg/2 mL injection, ampoule 21569011000036105 metoclopramide +926939011000036105 Eyezep 0.05% eye drops solution, 6 mL, bottle 97489 926333011000036102 Eyezep 0.05% eye drops solution, 6 mL 925769011000036106 Eyezep 0.05% eye drops solution 925513011000036108 Eyezep 925513011000036108 Eyezep 927409011000036104 azelastine hydrochloride 0.05% eye drops, 6 mL 927048011000036108 azelastine hydrochloride 0.05% eye drops 75004011000036100 azelastine +44050011000036104 Buscopan 10 mg sugar coated tablet, 100, blister pack 48256 41537011000036109 Buscopan 10 mg sugar coated tablet, 100 40047011000036103 Buscopan 10 mg sugar coated tablet 2401000168103 Buscopan 2401000168103 Buscopan 46372011000036109 hyoscine butylbromide 10 mg tablet, 100 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +741031000168102 Fentora 200 microgram orally disintegrating tablet, 28, blister pack 218437 741021000168100 Fentora 200 microgram orally disintegrating tablet, 28 740971000168107 Fentora 200 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 741011000168107 fentanyl 200 microgram orally disintegrating tablet, 28 740961000168101 fentanyl 200 microgram orally disintegrating tablet 21258011000036102 fentanyl +933240001000036109 Simvacor 40 mg film-coated tablet, 100, bottle 182912 933236491000036108 Simvacor 40 mg film-coated tablet, 100 933234871000036100 Simvacor 40 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46248011000036104 simvastatin 40 mg tablet, 100 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +60081011000036108 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 6, blister pack 184469 56042011000036100 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 6 53767011000036100 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet 53168011000036107 Worming Tablet (Pharmacy Choice) 53168011000036107 Worming Tablet (Pharmacy Choice) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +60081011000036108 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 6, blister pack 126488 56042011000036100 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 6 53767011000036100 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet 53168011000036107 Worming Tablet (Pharmacy Choice) 53168011000036107 Worming Tablet (Pharmacy Choice) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +50621011000036107 Seroquel XR 400 mg modified release tablet, 10, blister pack 138922 49647011000036105 Seroquel XR 400 mg modified release tablet, 10 48798011000036109 Seroquel XR 400 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51538011000036101 quetiapine 400 mg modified release tablet, 10 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +69351011000036101 Betadine Antiseptic 10% ointment, 25 g, tube 29561 67151011000036102 Betadine Antiseptic 10% ointment, 25 g 65472011000036108 Betadine Antiseptic 10% ointment 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71716011000036107 povidone-iodine 10% ointment, 25 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +131511000036101 Candesartan Cilexetil HCTZ 16/12.5 (GA) uncoated tablet, 30, bottle 196438 128781000036107 Candesartan Cilexetil HCTZ 16/12.5 (GA) uncoated tablet, 30 125561000036104 Candesartan Cilexetil HCTZ 16/12.5 (GA) uncoated tablet 47001000168103 Candesartan Cilexetil HCTZ 16/12.5 (GA) 47001000168103 Candesartan Cilexetil HCTZ 16/12.5 (GA) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +933240011000036106 Simvacor 40 mg film-coated tablet, 180, bottle 182912 933236501000036101 Simvacor 40 mg film-coated tablet, 180 933234871000036100 Simvacor 40 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46249011000036107 simvastatin 40 mg tablet, 180 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +86157011000036108 Tamsil 1% cream, 15 g, tube 164398 85765011000036103 Tamsil 1% cream, 15 g 85380011000036108 Tamsil 1% cream 3839011000036106 Tamsil 3839011000036106 Tamsil 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +653381000168108 Ferinject 100 mg/2 mL injection solution, 2 mL vial 162636 653371000168105 Ferinject 100 mg/2 mL injection solution, 2 mL vial 653351000168101 Ferinject 100 mg/2 mL injection solution, 2 mL vial 48071000036102 Ferinject 48071000036102 Ferinject 653361000168104 iron (as ferric carboxymaltose) 100 mg/2 mL injection, 2 mL vial 653341000168103 iron (as ferric carboxymaltose) 100 mg/2 mL injection, vial 56811000036102 ferric carboxymaltose +59824011000036100 Naproxen Sodium (Your Pharmacy) 275 mg film-coated tablet, 24, blister pack 114893 55786011000036109 Naproxen Sodium (Your Pharmacy) 275 mg film-coated tablet, 24 53689011000036100 Naproxen Sodium (Your Pharmacy) 275 mg film-coated tablet 53345011000036103 Naproxen Sodium (Your Pharmacy) 53345011000036103 Naproxen Sodium (Your Pharmacy) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +44738011000036100 Testogel 1% (25 mg/2.5 g) gel, 28 x 2.5 g sachets 96129 42183011000036102 Testogel 1% (25 mg/2.5 g) gel, 28 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46944011000036107 testosterone 1% (25 mg/2.5 g) gel, 28 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +33504011000036103 Alzene 10 mg film-coated tablet, 30, blister pack 116582 33249011000036104 Alzene 10 mg film-coated tablet, 30 33003011000036102 Alzene 10 mg film-coated tablet 32964011000036102 Alzene 32964011000036102 Alzene 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +921983011000036102 Pyrifoam Lice Breaker 1% lotion, 150 mL, bottle 51722 921541011000036103 Pyrifoam Lice Breaker 1% lotion, 150 mL 921073011000036104 Pyrifoam Lice Breaker 1% lotion 920969011000036108 Pyrifoam Lice Breaker 920969011000036108 Pyrifoam Lice Breaker 922659011000036109 permethrin 1% lotion, 150 mL 69996011000036108 permethrin 1% lotion 21537011000036106 permethrin +131831000036107 Candesartan Cilexetil HCTZ 32/25 (GA) uncoated tablet, 30, blister pack 204585 128801000036108 Candesartan Cilexetil HCTZ 32/25 (GA) uncoated tablet, 30 125151000036107 Candesartan Cilexetil HCTZ 32/25 (GA) uncoated tablet 29231000168109 Candesartan Cilexetil HCTZ 32/25 (GA) 29231000168109 Candesartan Cilexetil HCTZ 32/25 (GA) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +176791000036107 Cadivast 5/20 film-coated tablet, 30, bottle 199222 174941000036107 Cadivast 5/20 film-coated tablet, 30 172901000036101 Cadivast 5/20 film-coated tablet 17881000168109 Cadivast 5/20 17881000168109 Cadivast 5/20 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +50315011000036106 HCU Gel powder for oral liquid, 30 x 20 g sachets 49484011000036105 HCU Gel powder for oral liquid, 30 x 20 g sachets 475361000168100 HCU Gel powder for oral liquid, 20 g sachet 33691000168106 HCU Gel 33691000168106 HCU Gel 51441011000036101 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 30 x 20 g sachets 475121000168108 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 20 g sachet 50753011000036104 amino acid formula with vitamins and minerals without methionine +745051000168106 Aquacel (403770) 2 cm x 45 cm ribbon, 5, carton 158691 745041000168109 Aquacel (403770) 2 cm x 45 cm ribbon, 5 745021000168103 Aquacel (403770) 2 cm x 45 cm ribbon 650781000168102 Aquacel (403770) 650781000168102 Aquacel (403770) 745031000168100 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5 745011000168105 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon 50717011000036100 dressing hydrofibre alternate to alginates +740711000168102 Fentora 400 microgram orally disintegrating tablet, 28, blister pack 218433 740701000168100 Fentora 400 microgram orally disintegrating tablet, 28 740651000168105 Fentora 400 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740691000168100 fentanyl 400 microgram orally disintegrating tablet, 28 740641000168108 fentanyl 400 microgram orally disintegrating tablet 21258011000036102 fentanyl +60424011000036108 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 10 sachets 146071 56383011000036104 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 10 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63718011000036101 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 10 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +19097011000036107 Provera 5 mg uncoated tablet, 56, blister pack 42933 12403011000036100 Provera 5 mg uncoated tablet, 56 4802011000036109 Provera 5 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 27143011000036105 medroxyprogesterone acetate 5 mg tablet, 56 22507011000036103 medroxyprogesterone acetate 5 mg tablet 21378011000036107 medroxyprogesterone +758111000168100 Solifenacin (Apo) 10 mg film-coated tablet, 30, bottle 218391 758101000168103 Solifenacin (Apo) 10 mg film-coated tablet, 30 758091000168108 Solifenacin (Apo) 10 mg film-coated tablet 757981000168108 Solifenacin (Apo) 757981000168108 Solifenacin (Apo) 46155011000036106 solifenacin succinate 10 mg tablet, 30 45011011000036107 solifenacin succinate 10 mg tablet 44891011000036101 solifenacin +812001000168106 Affora 10 mg film-coated tablet, 7, blister pack 198056 811991000168109 Affora 10 mg film-coated tablet, 7 811971000168108 Affora 10 mg film-coated tablet 811911000168100 Affora 811911000168100 Affora 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +32547011000036105 Meloxicam (Sandoz) 7.5 mg uncoated tablet, 30, blister pack 127084 32339011000036101 Meloxicam (Sandoz) 7.5 mg uncoated tablet, 30 32216011000036108 Meloxicam (Sandoz) 7.5 mg uncoated tablet 32204011000036102 Meloxicam (Sandoz) 32204011000036102 Meloxicam (Sandoz) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +813531000168100 Adin Melt 240 microgram sublingual wafer, 10, blister pack 121725 813521000168103 Adin Melt 240 microgram sublingual wafer, 10 813511000168105 Adin Melt 240 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 933200291000036103 desmopressin 240 microgram sublingual wafer, 10 933194041000036106 desmopressin 240 microgram sublingual wafer 21750011000036107 desmopressin +803361000168100 Abilify ODT 20 mg orally disintegrating tablet, 60, blister pack 128903 803351000168102 Abilify ODT 20 mg orally disintegrating tablet, 60 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803341000168104 aripiprazole 20 mg orally disintegrating tablet, 60 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +933231421000036100 Iodine Alcoholic (Orion) solution, 50 mL, bottle 21207 933225591000036101 Iodine Alcoholic (Orion) solution, 50 mL 933220701000036109 Iodine Alcoholic (Orion) solution 36721000168107 Iodine Alcoholic (Orion) 36721000168107 Iodine Alcoholic (Orion) 933225601000036108 potassium iodide 2.5% + iodine 2.5% + ethanol 90% solution, 50 mL 933220711000036106 potassium iodide 2.5% + iodine 2.5% + ethanol 90% solution 86197011000036101 iodine + ethanol +854501000168104 Quetiapine (Alkem) 150 mg film-coated tablet, 20, blister pack 204857 854491000168106 Quetiapine (Alkem) 150 mg film-coated tablet, 20 854481000168108 Quetiapine (Alkem) 150 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 853211000168100 quetiapine 150 mg tablet, 20 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +60715011000036106 Claratyne Children's Peach 1 mg/mL oral liquid solution, 150 mL, bottle 44453 56673011000036104 Claratyne Children's Peach 1 mg/mL oral liquid solution, 150 mL 54028011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63589011000036105 loratadine 1 mg/mL oral liquid, 150 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +933811000168109 Centevo 200/50/200 mg film-coated tablet, 130, bottle 238859 933801000168106 Centevo 200/50/200 mg film-coated tablet, 130 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933791000168105 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 130 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1102961000168100 Duoresp Spiromax 200/6 powder for inhalation, 2 x 120 actuations, dry powder inhalers 267385 1102951000168102 Duoresp Spiromax 200/6 powder for inhalation, 2 x 120 actuations 1102791000168105 Duoresp Spiromax 200/6 powder for inhalation, actuation 1102751000168100 Duoresp Spiromax 200/6 1102751000168100 Duoresp Spiromax 200/6 1102941000168104 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, 2 x 120 actuations 23266011000036103 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +912841000168109 Candesartan HCTZ 32/25 (DRLA) uncoated tablet, 10, blister pack 198389 912831000168100 Candesartan HCTZ 32/25 (DRLA) uncoated tablet, 10 912801000168107 Candesartan HCTZ 32/25 (DRLA) uncoated tablet 912791000168106 Candesartan HCTZ 32/25 (DRLA) 912791000168106 Candesartan HCTZ 32/25 (DRLA) 890731000168102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 10 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +46181000036102 Kapanol 50 mg modified release capsule, 28, blister pack 48135 43831000036103 Kapanol 50 mg modified release capsule, 28 5859011000036100 Kapanol 50 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 43841000036108 morphine sulfate pentahydrate 50 mg modified release capsule, 28 22554011000036102 morphine sulfate pentahydrate 50 mg modified release capsule 21252011000036100 morphine +928995011000036106 Valaciclovir (Chemmart) 500 mg film-coated tablet, 8, blister pack 158913 928356011000036101 Valaciclovir (Chemmart) 500 mg film-coated tablet, 8 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 927317011000036100 valaciclovir 500 mg tablet, 8 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +933239691000036101 Meloxicam (Apo) 15 mg hard capsule, 10, blister pack 181194 933237011000036108 Meloxicam (Apo) 15 mg hard capsule, 10 933234791000036105 Meloxicam (Apo) 15 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 52889011000036100 meloxicam 15 mg capsule, 10 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +655071000168108 Rosuvastatin (AN) 40 mg film-coated tablet, 30, blister pack 197005 655061000168102 Rosuvastatin (AN) 40 mg film-coated tablet, 30 655051000168104 Rosuvastatin (AN) 40 mg film-coated tablet 654901000168103 Rosuvastatin (AN) 654901000168103 Rosuvastatin (AN) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +813571000168102 Adin Melt 240 microgram sublingual wafer, 100, blister pack 121725 813561000168108 Adin Melt 240 microgram sublingual wafer, 100 813511000168105 Adin Melt 240 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 933200311000036102 desmopressin 240 microgram sublingual wafer, 100 933194041000036106 desmopressin 240 microgram sublingual wafer 21750011000036107 desmopressin +942331000168104 Olanzapine (Sandoz) 20 mg film-coated tablet, 28, blister pack 148479 942321000168102 Olanzapine (Sandoz) 20 mg film-coated tablet, 28 942311000168109 Olanzapine (Sandoz) 20 mg film-coated tablet 1151000036106 Olanzapine (Sandoz) 1151000036106 Olanzapine (Sandoz) 6841000036106 olanzapine 20 mg tablet, 28 1361000036106 olanzapine 20 mg tablet 21485011000036103 olanzapine +176831000036104 Venlafaxine XR (Actavis) 37.5 mg modified release capsule, 28, blister pack 200745 174991000036101 Venlafaxine XR (Actavis) 37.5 mg modified release capsule, 28 173411000036103 Venlafaxine XR (Actavis) 37.5 mg modified release capsule 32251000168106 Venlafaxine XR (Actavis) 32251000168106 Venlafaxine XR (Actavis) 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +74031000036109 Olanzapine ODT (Stada) 10 mg orally disintegrating tablet, 28, blister pack 177795 71681000036100 Olanzapine ODT (Stada) 10 mg orally disintegrating tablet, 28 69581000036109 Olanzapine ODT (Stada) 10 mg orally disintegrating tablet 47481000168101 Olanzapine ODT (Stada) 47481000168101 Olanzapine ODT (Stada) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +60850011000036106 Avil 45.3 mg uncoated tablet, 10, strip pack 191053 56804011000036104 Avil 45.3 mg uncoated tablet, 10 54085011000036107 Avil 45.3 mg uncoated tablet 4941000168102 Avil 4941000168102 Avil 63580011000036104 pheniramine maleate 45.3 mg tablet, 10 62020011000036103 pheniramine maleate 45.3 mg tablet 61798011000036109 pheniramine +60850011000036106 Avil 45.3 mg uncoated tablet, 10, strip pack 58691 56804011000036104 Avil 45.3 mg uncoated tablet, 10 54085011000036107 Avil 45.3 mg uncoated tablet 4941000168102 Avil 4941000168102 Avil 63580011000036104 pheniramine maleate 45.3 mg tablet, 10 62020011000036103 pheniramine maleate 45.3 mg tablet 61798011000036109 pheniramine +719871000168104 Simbrinza 1% / 0.2% eye drops suspension, 5 mL, bottle 219839 719861000168105 Simbrinza 1% / 0.2% eye drops suspension, 5 mL 719841000168106 Simbrinza 1% / 0.2% eye drops suspension 719801000168109 Simbrinza 1% / 0.2% 719801000168109 Simbrinza 1% / 0.2% 719851000168108 brinzolamide 1% + brimonidine tartrate 0.2% eye drops, 5 mL 719831000168102 brinzolamide 1% + brimonidine tartrate 0.2% eye drops 719821000168100 brinzolamide + brimonidine +770991000168107 Flixotide CFC-Free 250 microgram/actuation pressurised inhalation, 60 actuations, metered dose aerosol can 63448 770981000168109 Flixotide CFC-Free 250 microgram/actuation pressurised inhalation, 60 actuations 6352011000036106 Flixotide CFC-Free 250 microgram/actuation pressurised inhalation, actuation 29811000168100 Flixotide 29811000168100 Flixotide 770971000168106 fluticasone propionate 250 microgram/actuation pressurised inhalation, 60 actuations 22871011000036101 fluticasone propionate 250 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +933239681000036103 Meloxicam (Apo) 7.5 mg hard capsule, 30, blister pack 181191 933237001000036106 Meloxicam (Apo) 7.5 mg hard capsule, 30 933234781000036108 Meloxicam (Apo) 7.5 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +882651000168101 Spedra 200 mg uncoated tablet, 8, blister pack 228476 882641000168103 Spedra 200 mg uncoated tablet, 8 882501000168101 Spedra 200 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882631000168107 avanafil 200 mg tablet, 8 882491000168108 avanafil 200 mg tablet 882091000168102 avanafil +907771000168109 Celecoxib (Ascent) 100 mg capsule, 60, blister pack 204616 907761000168103 Celecoxib (Ascent) 100 mg capsule, 60 907651000168109 Celecoxib (Ascent) 100 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +923803011000036103 Sulprix 50 mg tablet, 100, bottle 156045 923359011000036106 Sulprix 50 mg tablet, 100 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924157011000036105 amisulpride 50 mg tablet, 100 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +809831000168103 Entresto 49/51 film-coated tablet, 56, blister pack 234222 809821000168101 Entresto 49/51 film-coated tablet, 56 809771000168108 Entresto 49/51 film-coated tablet 809751000168104 Entresto 49/51 809751000168104 Entresto 49/51 809811000168108 sacubitril 48.6 mg + valsartan 51.4 mg tablet, 56 809761000168102 sacubitril 48.6 mg + valsartan 51.4 mg tablet 809631000168102 sacubitril + valsartan +933231101000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 16, blister pack 172447 933225171000036105 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 16 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 933225001000036102 famciclovir 500 mg tablet, 16 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +908591000168104 Celecoxib (Lup) 100 mg hard capsule, 20, blister pack 196184 908581000168102 Celecoxib (Lup) 100 mg hard capsule, 20 908551000168109 Celecoxib (Lup) 100 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +845921000168102 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 134363 845911000168109 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 845891000168107 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 73695011000036100 Meningitec 73695011000036100 Meningitec 845901000168106 meningococcal C conjugate vaccine injection, 0.5 mL syringe 845881000168109 meningococcal C conjugate vaccine injection, 0.5 mL syringe 826391000168106 meningococcal C conjugate vaccine +814211000168105 Famciclovir (GA) 500 mg film-coated tablet, 3, blister pack 177020 814201000168107 Famciclovir (GA) 500 mg film-coated tablet, 3 78301000036108 Famciclovir (GA) 500 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +11821000036107 Olanzapine (Sandoz) 5 mg film-coated tablet, 28, blister pack 148469 6561000036109 Olanzapine (Sandoz) 5 mg film-coated tablet, 28 3651000036103 Olanzapine (Sandoz) 5 mg film-coated tablet 1151000036106 Olanzapine (Sandoz) 1151000036106 Olanzapine (Sandoz) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +21108011000036107 Reminyl 24 mg modified release capsule, 28, blister pack 97887 14251011000036100 Reminyl 24 mg modified release capsule, 28 7537011000036106 Reminyl 24 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 28250011000036107 galantamine 24 mg modified release capsule, 28 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +61092011000036109 Codalgin Plus uncoated tablet, 20, blister pack (Old Formulation 2015) 71022 57035011000036106 Codalgin Plus uncoated tablet, 20 (Old Formulation 2015) 54167011000036108 Codalgin Plus uncoated tablet (Old Formulation 2015) 53232011000036102 Codalgin Plus 53232011000036102 Codalgin Plus 63709011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet, 20 62092011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +923919011000036108 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 30, blister pack 170439 923463011000036106 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 30 923095011000036100 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +890551000168100 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet, 7, blister pack 198393 890541000168102 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet, 7 890531000168106 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet 890521000168108 Candesartan HCTZ 32/12.5 (DRLA) 890521000168108 Candesartan HCTZ 32/12.5 (DRLA) 83493011000036104 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 7 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +906401000168105 Celecoxib (Lupin) 200 mg hard capsule, 10, blister pack 196176 906391000168108 Celecoxib (Lupin) 200 mg hard capsule, 10 906381000168105 Celecoxib (Lupin) 200 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +931749011000036104 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 150 mL vials 63958 930909011000036106 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 150 mL vials 930111011000036107 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 150 mL vial 5101000168100 Iomeron-300 5101000168100 Iomeron-300 932488011000036105 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 10 x 150 mL vials 931884011000036106 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 150 mL vial 931793011000036105 iomeprol +869671000168100 Tevaripiprazole 20 mg uncoated tablet, 30, blister pack 238033 869661000168106 Tevaripiprazole 20 mg uncoated tablet, 30 869651000168109 Tevaripiprazole 20 mg uncoated tablet 869611000168108 Tevaripiprazole 869611000168108 Tevaripiprazole 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +131741000036105 Candesartan Cilexetil HCT 32/25 (Stada) uncoated tablet, 30, blister pack 204573 128711000036104 Candesartan Cilexetil HCT 32/25 (Stada) uncoated tablet, 30 125051000036106 Candesartan Cilexetil HCT 32/25 (Stada) uncoated tablet 32931000168108 Candesartan Cilexetil HCT 32/25 (Stada) 32931000168108 Candesartan Cilexetil HCT 32/25 (Stada) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19748011000036103 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62138 13007011000036108 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6294011000036103 Synphasic (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 4354011000036109 Synphasic 4354011000036109 Synphasic 27494011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 4 x 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +19748011000036103 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62138 13007011000036108 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6296011000036106 Synphasic (inert substance) uncoated tablet 4354011000036109 Synphasic 4354011000036109 Synphasic 27494011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19748011000036103 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62138 13007011000036108 Synphasic (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6295011000036104 Synphasic (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 4354011000036109 Synphasic 4354011000036109 Synphasic 27494011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 4 x 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +1068441000168103 Paracetamol plus Codeine (Terry White Chemists) uncoated tablet, 40, blister pack 236818 1068431000168107 Paracetamol plus Codeine (Terry White Chemists) uncoated tablet, 40 1068401000168100 Paracetamol plus Codeine (Terry White Chemists) uncoated tablet 1068391000168102 Paracetamol plus Codeine (Terry White Chemists) 1068391000168102 Paracetamol plus Codeine (Terry White Chemists) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +73309011000036109 Jurnista 64 mg modified release tablet, 35, blister pack 141535 73107011000036109 Jurnista 64 mg modified release tablet, 35 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73505011000036105 hydromorphone hydrochloride 64 mg modified release tablet, 35 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +69066011000036104 Oxycontin 30 mg modified release tablet, 20, blister pack 200025 66868011000036106 Oxycontin 30 mg modified release tablet, 20 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +69066011000036104 Oxycontin 30 mg modified release tablet, 20, blister pack 143173 66868011000036106 Oxycontin 30 mg modified release tablet, 20 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +706951000168107 Morphine (Juno) 100 mg/5 mL injection solution, 5 x 5 mL ampoules 224245 706941000168105 Morphine (Juno) 100 mg/5 mL injection solution, 5 x 5 mL ampoules 706921000168104 Morphine (Juno) 100 mg/5 mL injection solution, 5 mL ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 706931000168101 morphine hydrochloride trihydrate 100 mg/5 mL injection, 5 x 5 mL ampoules 706911000168106 morphine hydrochloride trihydrate 100 mg/5 mL injection, ampoule 21252011000036100 morphine +959671000168102 Lacosamide (Apo) 100 mg film-coated tablet, 14, blister pack 230189 959661000168108 Lacosamide (Apo) 100 mg film-coated tablet, 14 959651000168106 Lacosamide (Apo) 100 mg film-coated tablet 959641000168109 Lacosamide (Apo) 959641000168109 Lacosamide (Apo) 84627011000036100 lacosamide 100 mg tablet, 14 84428011000036101 lacosamide 100 mg tablet 84408011000036109 lacosamide +18086011000036105 Cyproterone Acetate (GenRx) 50 mg uncoated tablet, 50, bottle 101534 11215011000036102 Cyproterone Acetate (GenRx) 50 mg uncoated tablet, 50 5458011000036102 Cyproterone Acetate (GenRx) 50 mg uncoated tablet 3476011000036106 Cyproterone Acetate (GenRx) 3476011000036106 Cyproterone Acetate (GenRx) 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +677371000168101 Galantamine SR (AN) 16 mg modified release capsule, 28, blister pack 182032 677351000168105 Galantamine SR (AN) 16 mg modified release capsule, 28 677331000168104 Galantamine SR (AN) 16 mg modified release capsule 675861000168106 Galantamine SR (AN) 675861000168106 Galantamine SR (AN) 28249011000036104 galantamine 16 mg modified release capsule, 28 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +20639011000036100 Profloxin 500 mg film-coated tablet, 14, blister pack 81461 13819011000036103 Profloxin 500 mg film-coated tablet, 14 7105011000036101 Profloxin 500 mg film-coated tablet 3630011000036107 Profloxin 3630011000036107 Profloxin 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1002931000168102 Rivastigmine (Apo) 3 mg hard capsule, 112, blister pack 160578 1002921000168100 Rivastigmine (Apo) 3 mg hard capsule, 112 1002721000168102 Rivastigmine (Apo) 3 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002911000168107 rivastigmine 3 mg capsule, 112 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +998601000168108 Esomeprazole (Apo) 40 mg enteric tablet, 15, blister pack 205823 998591000168101 Esomeprazole (Apo) 40 mg enteric tablet, 15 998561000168108 Esomeprazole (Apo) 40 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 681491000168109 esomeprazole 40 mg enteric tablet, 15 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +925151000168103 Androgel 1% (50 mg/5 g) gel, 50 x 5 g sachets 96130 925141000168100 Androgel 1% (50 mg/5 g) gel, 50 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925131000168109 testosterone 1% (50 mg/5 g) gel, 50 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +110521000036106 Temodal 180 mg hard capsule, 5, bottle 142241 109081000036109 Temodal 180 mg hard capsule, 5 106801000036103 Temodal 180 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +670221000168109 Amlodipine/Atorvastatin 5/10 (Apo) film-coated tablet, 30, blister pack 214378 670211000168102 Amlodipine/Atorvastatin 5/10 (Apo) film-coated tablet, 30 670201000168100 Amlodipine/Atorvastatin 5/10 (Apo) film-coated tablet 670191000168103 Amlodipine/Atorvastatin 5/10 (Apo) 670191000168103 Amlodipine/Atorvastatin 5/10 (Apo) 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +11741000036107 Heparinised Saline (AstraZeneca) 50 units/5 mL injection solution, 50 x 5 mL ampoules 12107 6431000036104 Heparinised Saline (AstraZeneca) 50 units/5 mL injection solution, 50 x 5 mL ampoules 1511000036100 Heparinised Saline (AstraZeneca) 50 units/5 mL injection solution, 5 mL ampoule 35907011000036107 Heparinised Saline (AstraZeneca) 35907011000036107 Heparinised Saline (AstraZeneca) 46583011000036105 heparin sodium 50 units/5 mL injection, 50 x 5 mL ampoules 45229011000036106 heparin sodium 50 units/5 mL injection, ampoule 858661000168109 heparin +994111000168108 Candesartan (Apotex) 32 mg tablet, 28, blister pack 191758 994101000168105 Candesartan (Apotex) 32 mg tablet, 28 994061000168107 Candesartan (Apotex) 32 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 904831000168107 candesartan cilexetil 32 mg tablet, 28 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +77316011000036108 Imigran Mk II refill 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 44465 76732011000036103 Imigran Mk II refill 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 76148011000036106 Imigran Mk II refill 6 mg/0.5 mL injection solution, 0.5 mL syringe 57551000168106 Imigran Mk II 57551000168106 Imigran Mk II 78246011000036102 sumatriptan 6 mg/0.5 mL injection, 2 x 0.5 mL syringes 77570011000036104 sumatriptan 6 mg/0.5 mL injection, syringe 21708011000036102 sumatriptan +44453011000036102 Doxycycline (Chemmart) 100 mg modified release capsule, 21, blister pack 74016 41909011000036100 Doxycycline (Chemmart) 100 mg modified release capsule, 21 40260011000036100 Doxycycline (Chemmart) 100 mg modified release capsule 3187011000036102 Doxycycline (Chemmart) 3187011000036102 Doxycycline (Chemmart) 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +60124011000036107 Loratadine (Amcal) 10 mg tablet, 50, blister pack 127576 56083011000036103 Loratadine (Amcal) 10 mg tablet, 50 53782011000036100 Loratadine (Amcal) 10 mg tablet 53343011000036104 Loratadine (Amcal) 53343011000036104 Loratadine (Amcal) 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +672911000168105 Fycompa 8 mg film-coated tablet, 28, blister pack 207687 672901000168107 Fycompa 8 mg film-coated tablet, 28 672881000168105 Fycompa 8 mg film-coated tablet 672551000168100 Fycompa 672551000168100 Fycompa 672891000168108 perampanel 8 mg tablet, 28 672871000168107 perampanel 8 mg tablet 672561000168103 perampanel +20682011000036104 Ipratropium Bromide (Terry White Chemists) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 82357 13861011000036103 Ipratropium Bromide (Terry White Chemists) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 7148011000036102 Ipratropium Bromide (Terry White Chemists) 500 microgram/mL inhalation solution, ampoule 2962011000036109 Ipratropium Bromide (Terry White Chemists) 2962011000036109 Ipratropium Bromide (Terry White Chemists) 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +68948011000036103 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 10 sachets 133242 66750011000036100 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 10 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71418011000036104 paracetamol 500 mg powder for oral liquid, 10 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +854421000168109 Agtolac 5 mg/5 mL injection solution, 5 x 5 mL vials 204664 854411000168102 Agtolac 5 mg/5 mL injection solution, 5 x 5 mL vials 854401000168100 Agtolac 5 mg/5 mL injection solution, 5 mL vial 854391000168102 Agtolac 854391000168102 Agtolac 724161000168109 metoprolol tartrate 5 mg/5 mL injection, 5 x 5 mL vials 724141000168105 metoprolol tartrate 5 mg/5 mL injection, vial 21662011000036107 metoprolol +140261000036106 Refresh Night Time 1 g/g eye ointment, 3.5 g, tube 138701000036103 Refresh Night Time 1 g/g eye ointment, 3.5 g 137671000036103 Refresh Night Time 1 g/g eye ointment 137261000036109 Refresh Night Time 137261000036109 Refresh Night Time 35762011000036104 paraffin 1 g/g eye ointment, 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +18171000036105 Ramipril (Pfizer) 5 mg uncoated tablet, 30, blister pack 175231 19181000036101 Ramipril (Pfizer) 5 mg uncoated tablet, 30 18621000036103 Ramipril (Pfizer) 5 mg uncoated tablet 15091000036101 Ramipril (Pfizer) 15091000036101 Ramipril (Pfizer) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1077121000168105 Atomoxetine (AS) 40 mg hard capsule, 7, blister pack 238362 1077111000168103 Atomoxetine (AS) 40 mg hard capsule, 7 1077101000168101 Atomoxetine (AS) 40 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1004301000168102 Olmesartan (Apo) 40 mg film-coated tablet, 30, blister pack 221063 1004291000168103 Olmesartan (Apo) 40 mg film-coated tablet, 30 1004281000168101 Olmesartan (Apo) 40 mg film-coated tablet 1004241000168106 Olmesartan (Apo) 1004241000168106 Olmesartan (Apo) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +660051000168102 Clarithromycin (AN) 250 mg film-coated tablet, 14, blister pack 184263 660041000168104 Clarithromycin (AN) 250 mg film-coated tablet, 14 660031000168108 Clarithromycin (AN) 250 mg film-coated tablet 660021000168105 Clarithromycin (AN) 660021000168105 Clarithromycin (AN) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +18780011000036109 Cyproterone Acetate (GenRx) 50 mg uncoated tablet, 20, bottle 101534 11214011000036101 Cyproterone Acetate (GenRx) 50 mg uncoated tablet, 20 5458011000036102 Cyproterone Acetate (GenRx) 50 mg uncoated tablet 3476011000036106 Cyproterone Acetate (GenRx) 3476011000036106 Cyproterone Acetate (GenRx) 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +19080011000036105 Coumadin 1 mg uncoated tablet, 50, blister pack 42270 12387011000036100 Coumadin 1 mg uncoated tablet, 50 4739011000036107 Coumadin 1 mg uncoated tablet 3322011000036101 Coumadin 3322011000036101 Coumadin 27094011000036107 warfarin sodium 1 mg tablet, 50 22463011000036103 warfarin sodium 1 mg tablet 21248011000036104 warfarin +926853011000036100 Closina 250 mg hard capsule, 100, bottle 28637 926249011000036105 Closina 250 mg hard capsule, 100 925699011000036100 Closina 250 mg hard capsule 925535011000036101 Closina 925535011000036101 Closina 927358011000036109 cycloserine 250 mg capsule, 100 927006011000036102 cycloserine 250 mg capsule 926974011000036106 cycloserine +44695011000036106 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 93506 42144011000036108 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46905011000036104 follitropin alfa 37.5 units (2.73 microgram) injection [37.5 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44695011000036106 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 93506 42144011000036108 Gonal-F (1 x 37.5 units (2.73 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46905011000036104 follitropin alfa 37.5 units (2.73 microgram) injection [37.5 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +1079291000168107 Carvedilol (Auro) 25 mg film-coated tablet, 1000, bottle 174799 1079281000168109 Carvedilol (Auro) 25 mg film-coated tablet, 1000 737701000168102 Carvedilol (Auro) 25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 1079271000168106 carvedilol 25 mg tablet, 1000 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +20157011000036107 Moclobemide (Chemmart) 300 mg film-coated tablet, 60, blister pack 73833 13380011000036109 Moclobemide (Chemmart) 300 mg film-coated tablet, 60 6665011000036103 Moclobemide (Chemmart) 300 mg film-coated tablet 3153011000036104 Moclobemide (Chemmart) 3153011000036104 Moclobemide (Chemmart) 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +59882011000036101 Clotrimazole Anti-Fungal (Terry White Chemists) 1% cream, 50 g, tube 116343 55844011000036106 Clotrimazole Anti-Fungal (Terry White Chemists) 1% cream, 50 g 53644011000036109 Clotrimazole Anti-Fungal (Terry White Chemists) 1% cream 14061000168102 Clotrimazole Anti-Fungal (Terry White Chemists) 14061000168102 Clotrimazole Anti-Fungal (Terry White Chemists) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +37533011000036104 Hypnovel 5 mg/mL injection solution, 10 x 1 mL ampoules 13726 36801011000036105 Hypnovel 5 mg/mL injection solution, 10 x 1 mL ampoules 36114011000036104 Hypnovel 5 mg/mL injection solution, ampoule 35964011000036100 Hypnovel 35964011000036100 Hypnovel 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +37608011000036108 Vepesid 100 mg/5 mL concentrated injection, 5 mL vial 19284 36875011000036104 Vepesid 100 mg/5 mL concentrated injection, 5 mL vial 36210011000036106 Vepesid 100 mg/5 mL concentrated injection, 5 mL vial 3683011000036107 Vepesid 3683011000036107 Vepesid 28192011000036100 etoposide 100 mg/5 mL injection, 5 mL vial 23503011000036101 etoposide 100 mg/5 mL injection, vial 21469011000036104 etoposide +123381000036101 Olanzapine ODT (Pharmacy Choice) 5 mg orally disintegrating tablet, 28, blister pack 163426 123121000036100 Olanzapine ODT (Pharmacy Choice) 5 mg orally disintegrating tablet, 28 122711000036102 Olanzapine ODT (Pharmacy Choice) 5 mg orally disintegrating tablet 15181000168106 Olanzapine ODT (Pharmacy Choice) 15181000168106 Olanzapine ODT (Pharmacy Choice) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +754271000168108 Oxycodone (Medis) 5 mg hard capsule, 20, blister pack 227840 754261000168102 Oxycodone (Medis) 5 mg hard capsule, 20 754251000168104 Oxycodone (Medis) 5 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +79640011000036104 Metex XR 500 mg modified release tablet, 120, blister pack 143464 79470011000036102 Metex XR 500 mg modified release tablet, 120 51989011000036105 Metex XR 500 mg modified release tablet 10431000168107 Metex XR 10431000168107 Metex XR 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +20673011000036101 Endoxan 1 g powder for injection, 1 vial 82129 13853011000036106 Endoxan 1 g powder for injection, 1 vial 7140011000036104 Endoxan 1 g powder for injection, vial 3255011000036101 Endoxan 3255011000036101 Endoxan 27977011000036100 cyclophosphamide 1 g injection, 1 vial 23301011000036100 cyclophosphamide 1 g injection, vial 21733011000036103 cyclophosphamide +751581000168107 Cartia 100 mg enteric tablet, 7, blister pack 192506 751571000168109 Cartia 100 mg enteric tablet, 7 4900011000036104 Cartia 100 mg enteric tablet 3338011000036100 Cartia 3338011000036100 Cartia 751561000168103 aspirin 100 mg enteric tablet, 7 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +670741000168105 Metoprolol Tartrate (AN) 100 mg film-coated tablet, 60, blister pack 192765 670731000168101 Metoprolol Tartrate (AN) 100 mg film-coated tablet, 60 670691000168108 Metoprolol Tartrate (AN) 100 mg film-coated tablet 670681000168105 Metoprolol Tartrate (AN) 670681000168105 Metoprolol Tartrate (AN) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +916491000168102 Aleviate 1000 IU FVIII/2400 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 170266 916481000168100 Aleviate 1000 IU FVIII/2400 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 916461000168109 Aleviate (inert substance) diluent, 10 mL vial 916211000168105 Aleviate 1000 IU FVIII/2400 IU VWF 916281000168104 Aleviate 916471000168103 factor VIII 1000 units + von Willebrand factor 2400 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +916491000168102 Aleviate 1000 IU FVIII/2400 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 170266 916481000168100 Aleviate 1000 IU FVIII/2400 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 916451000168107 Aleviate 1000 IU FVIII/2400 IU VWF (factor VIII 1000 units + von Willebrand factor 2400 units) powder for injection, 1 vial 916211000168105 Aleviate 1000 IU FVIII/2400 IU VWF 916211000168105 Aleviate 1000 IU FVIII/2400 IU VWF 916471000168103 factor VIII 1000 units + von Willebrand factor 2400 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 916441000168105 factor VIII 1000 units + von Willebrand factor 2400 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +920762011000036108 Sotalol Hydrochloride (Sandoz) 160 mg uncoated tablet, 60, blister pack 63724 920441011000036102 Sotalol Hydrochloride (Sandoz) 160 mg uncoated tablet, 60 920182011000036104 Sotalol Hydrochloride (Sandoz) 160 mg uncoated tablet 920110011000036101 Sotalol Hydrochloride (Sandoz) 920110011000036101 Sotalol Hydrochloride (Sandoz) 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +61484011000036107 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 250, blister pack 91993 57409011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 250 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63848011000036107 paracetamol 500 mg tablet, 250 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18838011000036101 Resprim oral liquid suspension, 100 mL, bottle 17699 12150011000036104 Resprim oral liquid suspension, 100 mL 5997011000036107 Resprim oral liquid suspension, 5 mL 2681000168109 Resprim 2681000168109 Resprim 26949011000036105 trimethoprim 40 mg/5 mL + sulfamethoxazole 200 mg/5 mL oral liquid, 100 mL 22324011000036100 trimethoprim 40 mg/5 mL + sulfamethoxazole 200 mg/5 mL oral liquid 21461011000036103 trimethoprim + sulfamethoxazole +845841000168104 Simponi Smartject 100 mg/mL injection solution, 1 mL injection device 208279 845831000168108 Simponi Smartject 100 mg/mL injection solution, 1 mL injection device 845811000168103 Simponi Smartject 100 mg/mL injection solution, injection device 845551000168104 Simponi Smartject 845551000168104 Simponi Smartject 845821000168105 golimumab 100 mg/mL injection, 1 mL injection device 845801000168101 golimumab 100 mg/mL injection, injection device 84416011000036108 golimumab +743041000168105 Morphine MR (AN) 10 mg modified release tablet, 28, blister pack 225425 743031000168101 Morphine MR (AN) 10 mg modified release tablet, 28 743001000168108 Morphine MR (AN) 10 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +745731000168103 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 55128 745721000168101 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 745711000168108 Brenda-35 ED (inert substance) sugar coated tablet 745691000168105 Brenda-35 ED 745691000168105 Brenda-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +745731000168103 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 55128 745721000168101 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 745701000168105 Brenda-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 745691000168105 Brenda-35 ED 745691000168105 Brenda-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +68751011000036103 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 12, blister pack 129740 66720011000036104 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 12 65506011000036105 Nicotine (Chemists' Own) Mint 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +904161000168109 Amoxapin 500 mg hard capsule, 20, blister pack 198129 904151000168107 Amoxapin 500 mg hard capsule, 20 904141000168105 Amoxapin 500 mg hard capsule 904081000168101 Amoxapin 904081000168101 Amoxapin 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +822231000168101 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 58571 822221000168104 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 630841000168102 Stamaril (inert substance) diluent, 0.5 mL syringe 73768011000036101 Stamaril 73768011000036101 Stamaril 822211000168106 yellow fever live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +822231000168101 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 58571 822221000168104 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 822201000168108 Stamaril (yellow fever live vaccine) powder for injection, vial 73768011000036101 Stamaril 73768011000036101 Stamaril 822211000168106 yellow fever live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 822191000168105 yellow fever live vaccine injection, vial 822181000168107 yellow fever live vaccine +889221000168101 Bosleer 62.5 mg film-coated tablet, 100, bottle 235885 889211000168108 Bosleer 62.5 mg film-coated tablet, 100 889181000168109 Bosleer 62.5 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884251000168108 bosentan 62.5 mg tablet, 100 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +60516011000036103 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 200 mL, bottle 151334 56474011000036100 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 200 mL 53933011000036105 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 5 mL 34281000168109 Nurofen for Children 1 to 5 Years 34281000168109 Nurofen for Children 1 to 5 Years 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +61392011000036105 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet, 16, blister pack 81958 57317011000036109 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet, 16 54271011000036107 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet 53563011000036108 Diarrhoea Relief (Pharmacy Health) 53563011000036108 Diarrhoea Relief (Pharmacy Health) 63805011000036108 loperamide hydrochloride 2.15 mg tablet, 16 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +985531000168106 Advil Mini Caps 200 mg sugar coated tablet, 96, blister pack 104222 985521000168108 Advil Mini Caps 200 mg sugar coated tablet, 96 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +18375011000036106 Motilium 10 mg film-coated tablet, 25, bottle 13309 12330011000036109 Motilium 10 mg film-coated tablet, 25 5312011000036104 Motilium 10 mg film-coated tablet 4365011000036102 Motilium 4365011000036102 Motilium 27065011000036109 domperidone 10 mg tablet, 25 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +60833011000036102 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 60 mg uncoated tablet, 10, blister pack 58497 56789011000036102 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 60 mg uncoated tablet, 10 54081011000036105 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 60 mg uncoated tablet 52181000168107 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 52181000168107 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 63572011000036109 pseudoephedrine hydrochloride 60 mg tablet, 10 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +929059011000036107 Galvumet 50/1000 film-coated tablet, 60, blister pack 161218 928420011000036105 Galvumet 50/1000 film-coated tablet, 60 927970011000036102 Galvumet 50/1000 film-coated tablet 14481000168101 Galvumet 50/1000 14481000168101 Galvumet 50/1000 929257011000036107 vildagliptin 50 mg + metformin hydrochloride 1 g tablet, 60 929156011000036106 vildagliptin 50 mg + metformin hydrochloride 1 g tablet 929132011000036106 vildagliptin + metformin +18103011000036105 Skin Therapy Oil (Hamilton) 95% application, 500 mL, bottle 14858 12061011000036106 Skin Therapy Oil (Hamilton) 95% application, 500 mL 5393011000036107 Skin Therapy Oil (Hamilton) 95% application 32187011000036107 Skin Therapy Oil (Hamilton) 32187011000036107 Skin Therapy Oil (Hamilton) 26888011000036101 light liquid paraffin 95% application, 500 mL 22266011000036105 light liquid paraffin 95% application 33638011000036106 light liquid paraffin +993621000168109 Lyrica 225 mg hard capsule, 56, blister pack 99535 993561000168100 Lyrica 225 mg hard capsule, 56 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +670261000168104 Amlodipine/Atorvastatin 5/20 (Terry White Chemists) film-coated tablet, 30, blister pack 214387 670251000168101 Amlodipine/Atorvastatin 5/20 (Terry White Chemists) film-coated tablet, 30 670241000168103 Amlodipine/Atorvastatin 5/20 (Terry White Chemists) film-coated tablet 670231000168107 Amlodipine/Atorvastatin 5/20 (Terry White Chemists) 670231000168107 Amlodipine/Atorvastatin 5/20 (Terry White Chemists) 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +937991000168101 Temozolomide (Amneal) 180 mg hard capsule, 20, sachet 206045 937981000168104 Temozolomide (Amneal) 180 mg hard capsule, 20 937951000168106 Temozolomide (Amneal) 180 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 164381000036106 temozolomide 180 mg capsule, 20 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +50589011000036108 Clarithromycin (Chemmart) 500 mg film-coated tablet, 28, blister pack 134860 49621011000036100 Clarithromycin (Chemmart) 500 mg film-coated tablet, 28 48790011000036107 Clarithromycin (Chemmart) 500 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 46432011000036100 clarithromycin 500 mg tablet, 28 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +933239771000036105 Meloxicam (Chemmart) 15 mg hard capsule, 10, blister pack 181201 933237091000036103 Meloxicam (Chemmart) 15 mg hard capsule, 10 933234811000036106 Meloxicam (Chemmart) 15 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 52889011000036100 meloxicam 15 mg capsule, 10 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +61150011000036107 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 100 mL, bottle 74522 57093011000036103 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 100 mL 54195011000036101 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +882691000168106 Tenofovir (Blooms The Chemist) 300 mg coated tablet, 30, blister pack 247317 879971000168103 Tenofovir (Blooms The Chemist) 300 mg coated tablet, 30 879961000168109 Tenofovir (Blooms The Chemist) 300 mg coated tablet 879951000168107 Tenofovir (Blooms The Chemist) 879951000168107 Tenofovir (Blooms The Chemist) 28009011000036104 tenofovir disoproxil fumarate 300 mg tablet, 30 23332011000036101 tenofovir disoproxil fumarate 300 mg tablet 851521000168106 tenofovir disoproxil +820061000168103 Daktarin 2% oral gel, 30 g, tube 13287 820051000168100 Daktarin 2% oral gel, 30 g 819981000168105 Daktarin 2% oral gel 431000168100 Daktarin 431000168100 Daktarin 820041000168102 miconazole 2% oral gel, 30 g 817971000168100 miconazole 2% oral gel 21454011000036108 miconazole +1075591000168107 Quetiapine (Auro) 300 mg film-coated tablet, 60, bottle 172842 1075581000168109 Quetiapine (Auro) 300 mg film-coated tablet, 60 1075571000168106 Quetiapine (Auro) 300 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +914961000168109 Movantik 25 mg film-coated tablet, 30, blister pack 232029 914951000168107 Movantik 25 mg film-coated tablet, 30 914901000168108 Movantik 25 mg film-coated tablet 914871000168108 Movantik 914871000168108 Movantik 914941000168105 naloxegol 25 mg tablet, 30 914891000168109 naloxegol 25 mg tablet 914881000168106 naloxegol +18703011000036100 Perindopril Erbumine (Chemmart) 2 mg uncoated tablet, 30, blister pack 121628 11675011000036109 Perindopril Erbumine (Chemmart) 2 mg uncoated tablet, 30 4768011000036109 Perindopril Erbumine (Chemmart) 2 mg uncoated tablet 3709011000036104 Perindopril Erbumine (Chemmart) 3709011000036104 Perindopril Erbumine (Chemmart) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +12141000036101 Quetiapine (DRLA) 25 mg film-coated tablet, 60, blister pack 162375 7281000036103 Quetiapine (DRLA) 25 mg film-coated tablet, 60 3791000036104 Quetiapine (DRLA) 25 mg film-coated tablet 691000036105 Quetiapine (DRLA) 691000036105 Quetiapine (DRLA) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1039021000168104 Atomoxetine (Actavis) 25 mg hard capsule, 7, blister pack 237254 1039011000168106 Atomoxetine (Actavis) 25 mg hard capsule, 7 1039001000168108 Atomoxetine (Actavis) 25 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +61195011000036106 Bugesic 200 mg film-coated tablet, 30, blister pack 75376 57131011000036100 Bugesic 200 mg film-coated tablet, 30 54211011000036101 Bugesic 200 mg film-coated tablet 53403011000036104 Bugesic 53403011000036104 Bugesic 63849011000036104 ibuprofen 200 mg tablet, 30 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +814331000168107 Zykadia 150 mg hard capsule, 50, blister pack 235737 814321000168109 Zykadia 150 mg hard capsule, 50 814301000168100 Zykadia 150 mg hard capsule 814261000168108 Zykadia 814261000168108 Zykadia 814311000168102 ceritinib 150 mg capsule, 50 814291000168101 ceritinib 150 mg capsule 814281000168104 ceritinib +964081000168100 Normatens 200 microgram film-coated tablet, 28, blister pack 114122 964071000168103 Normatens 200 microgram film-coated tablet, 28 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964061000168109 moxonidine 200 microgram tablet, 28 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +1045461000168102 Amisulpride (Pharmacor) 400 mg uncoated tablet, 60, blister pack 234694 1045451000168104 Amisulpride (Pharmacor) 400 mg uncoated tablet, 60 1045361000168107 Amisulpride (Pharmacor) 400 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +923769011000036102 Propofol 1% (Lipuro) 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 142906 923278011000036108 Propofol 1% (Lipuro) 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 922969011000036103 Propofol 1% (Lipuro) 200 mg/20 mL injection emulsion, 20 mL ampoule 23311000168105 Propofol 1% (Lipuro) 23311000168105 Propofol 1% (Lipuro) 38832011000036102 propofol 200 mg/20 mL injection, 5 x 20 mL ampoules 38037011000036101 propofol 200 mg/20 mL injection, ampoule 37750011000036109 propofol +933231181000036107 Temizole 140 mg hard capsule, 5, bottle 172972 933225251000036107 Temizole 140 mg hard capsule, 5 933220471000036108 Temizole 140 mg hard capsule 933219021000036101 Temizole 933219021000036101 Temizole 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +17976011000036104 Pinetarsol solution, 500 mL, bottle 10624 11329011000036104 Pinetarsol solution, 500 mL 5600011000036105 Pinetarsol solution 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 26608011000036108 tar 2.3% + trolamine lauril sulfate 6% solution, 500 mL 22016011000036101 tar 2.3% + trolamine lauril sulfate 6% solution 21598011000036104 tar + trolamine lauril sulfate +32574011000036103 Vastoran 20 mg uncoated tablet, 30, blister pack 140038 32365011000036105 Vastoran 20 mg uncoated tablet, 30 32243011000036109 Vastoran 20 mg uncoated tablet 32191011000036100 Vastoran 32191011000036100 Vastoran 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +923814011000036104 Sulprix 50 mg tablet, 30, blister pack 156047 923360011000036107 Sulprix 50 mg tablet, 30 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +151901000036108 Roxithromycin (GH) 300 mg film-coated tablet, 5, blister pack 137903 149941000036107 Roxithromycin (GH) 300 mg film-coated tablet, 5 148521000036103 Roxithromycin (GH) 300 mg film-coated tablet 147781000036106 Roxithromycin (GH) 147781000036106 Roxithromycin (GH) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +37546011000036109 Apomine 20 mg/2 mL injection solution, 5 x 2 mL ampoules 142086 36814011000036105 Apomine 20 mg/2 mL injection solution, 5 x 2 mL ampoules 36014011000036109 Apomine 20 mg/2 mL injection solution, 2 mL ampoule 30841000168109 Apomine 30841000168109 Apomine 38707011000036107 apomorphine hydrochloride hemihydrate 20 mg/2 mL injection, 5 x 2 mL ampoules 37941011000036106 apomorphine hydrochloride hemihydrate 20 mg/2 mL injection, ampoule 21732011000036105 apomorphine +18725011000036108 Citalopram (Terry White Chemists) 20 mg film-coated tablet, 28, blister pack 101222 11180011000036107 Citalopram (Terry White Chemists) 20 mg film-coated tablet, 28 4585011000036101 Citalopram (Terry White Chemists) 20 mg film-coated tablet 3902011000036102 Citalopram (Terry White Chemists) 3902011000036102 Citalopram (Terry White Chemists) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +803911000168104 Macrozide 500 mg uncoated tablet, 100, blister pack 803901000168102 Macrozide 500 mg uncoated tablet, 100 803881000168104 Macrozide 500 mg uncoated tablet 803841000168109 Macrozide 803841000168109 Macrozide 803891000168101 pyrazinamide 500 mg tablet, 100 803871000168102 pyrazinamide 500 mg tablet 803861000168108 pyrazinamide +769441000168107 Vinblastine (DBL) 10 mg/10 mL injection solution, 10 mL vial 16309 769431000168103 Vinblastine (DBL) 10 mg/10 mL injection solution, 10 mL vial 5150011000036103 Vinblastine (DBL) 10 mg/10 mL injection solution, 10 mL vial 4194011000036105 Vinblastine (DBL) 4194011000036105 Vinblastine (DBL) 769421000168101 vinblastine sulfate 10 mg/10 mL injection, 10 mL vial 22289011000036103 vinblastine sulfate 10 mg/10 mL injection, vial 21466011000036108 vinblastine +816521000168109 Atomoxetine (Amneal) 25 mg hard capsule, 7, blister pack 238337 816511000168102 Atomoxetine (Amneal) 25 mg hard capsule, 7 816491000168107 Atomoxetine (Amneal) 25 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +953801000168105 Prozac 20 mg/5 mL oral liquid solution, 70 mL, bottle 43298 953791000168109 Prozac 20 mg/5 mL oral liquid solution, 70 mL 953721000168107 Prozac 20 mg/5 mL oral liquid solution, 5 mL 2954011000036108 Prozac 2954011000036108 Prozac 776801000168109 fluoxetine 20 mg/5 mL oral liquid, 70 mL 776721000168106 fluoxetine 20 mg/5 mL oral liquid 21411011000036102 fluoxetine +13741000036108 Frusax 40 mg uncoated tablet, 100, bottle 176034 8851000036105 Frusax 40 mg uncoated tablet, 100 1951000036109 Frusax 40 mg uncoated tablet 1201000036100 Frusax 1201000036100 Frusax 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +50205011000036103 Enalapril/HCT 20mg/6mg (Sandoz) uncoated tablet, 30, blister pack 126490 49545011000036107 Enalapril/HCT 20mg/6mg (Sandoz) uncoated tablet, 30 48665011000036105 Enalapril/HCT 20mg/6mg (Sandoz) uncoated tablet 27071000168106 Enalapril/HCT 20mg/6mg (Sandoz) 27071000168106 Enalapril/HCT 20mg/6mg (Sandoz) 27712011000036100 enalapril maleate 20 mg + hydrochlorothiazide 6 mg tablet, 30 23047011000036104 enalapril maleate 20 mg + hydrochlorothiazide 6 mg tablet 21508011000036101 enalapril + hydrochlorothiazide +81028011000036104 Carvedilol (Sandoz) 25 mg uncoated tablet, 60, bottle 104400 80478011000036102 Carvedilol (Sandoz) 25 mg uncoated tablet, 60 80159011000036106 Carvedilol (Sandoz) 25 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +809281000168103 Perindopril Arginine/Amlodipine 10/5 (Apo) uncoated tablet, 30, blister pack 224309 809271000168101 Perindopril Arginine/Amlodipine 10/5 (Apo) uncoated tablet, 30 809261000168107 Perindopril Arginine/Amlodipine 10/5 (Apo) uncoated tablet 809251000168105 Perindopril Arginine/Amlodipine 10/5 (Apo) 809251000168105 Perindopril Arginine/Amlodipine 10/5 (Apo) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +1066021000168101 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 40, blister pack 220730 1066011000168108 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 40 1065871000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +44327011000036103 Novoseven 1.2 mg powder for injection, 1 vial 67085 41794011000036105 Novoseven 1.2 mg powder for injection, 1 vial 40202011000036100 Novoseven 1.2 mg powder for injection, 1.2 mg vial 55601000168100 Novoseven 55601000168100 Novoseven 46600011000036109 eptacog alfa (activated) 1.2 mg injection, 1 vial 45234011000036107 eptacog alfa (activated) 1.2 mg injection, vial 44889011000036101 eptacog alfa (activated) +77190011000036100 Valerian Forte (Blackmores) 2 g film-coated tablet, 60, bottle 127533 76606011000036101 Valerian Forte (Blackmores) 2 g film-coated tablet, 60 76059011000036105 Valerian Forte (Blackmores) 2 g film-coated tablet 75989011000036108 Valerian Forte (Blackmores) 75989011000036108 Valerian Forte (Blackmores) 78160011000036108 valerian 2 g tablet, 60 77519011000036101 valerian 2 g tablet 77480011000036100 valerian +925286011000036106 Taxotere 80 mg/4 mL concentrated injection, 4 mL vial 161370 924823011000036108 Taxotere 80 mg/4 mL concentrated injection, 4 mL vial 924515011000036102 Taxotere 80 mg/4 mL concentrated injection, 4 mL vial 4063011000036102 Taxotere 4063011000036102 Taxotere 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +920651011000036101 Ramipril (GA) 1.25 mg hard capsule, 30, blister pack 134788 920390011000036106 Ramipril (GA) 1.25 mg hard capsule, 30 920153011000036104 Ramipril (GA) 1.25 mg hard capsule 920107011000036103 Ramipril (GA) 920107011000036103 Ramipril (GA) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +18460011000036102 Moxiclav Duo Forte 875/125 film-coated tablet, 10, blister pack 123969 11753011000036100 Moxiclav Duo Forte 875/125 film-coated tablet, 10 5684011000036101 Moxiclav Duo Forte 875/125 film-coated tablet 52841000168109 Moxiclav Duo Forte 875/125 52841000168109 Moxiclav Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +45401000036107 Zelboraf 240 mg film-coated tablet, 56, blister pack 183674 43551000036108 Zelboraf 240 mg film-coated tablet, 56 40651000036102 Zelboraf 240 mg film-coated tablet 40071000036100 Zelboraf 40071000036100 Zelboraf 43561000036106 vemurafenib 240 mg tablet, 56 40661000036104 vemurafenib 240 mg tablet 46241000036100 vemurafenib +953821000168101 Prozac 20 mg/5 mL oral liquid solution, 140 mL, bottle 43298 953811000168108 Prozac 20 mg/5 mL oral liquid solution, 140 mL 953721000168107 Prozac 20 mg/5 mL oral liquid solution, 5 mL 2954011000036108 Prozac 2954011000036108 Prozac 776911000168101 fluoxetine 20 mg/5 mL oral liquid, 140 mL 776721000168106 fluoxetine 20 mg/5 mL oral liquid 21411011000036102 fluoxetine +17946011000036103 Renitec 20 mg uncoated tablet, 30, blister pack 10515 11318011000036101 Renitec 20 mg uncoated tablet, 30 4671011000036101 Renitec 20 mg uncoated tablet 41651000168101 Renitec 41651000168101 Renitec 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +1100651000168105 Azamyelidine 100 mg powder for injection, 1 vial 227800 1100641000168108 Azamyelidine 100 mg powder for injection, 1 vial 1100631000168104 Azamyelidine 100 mg powder for injection, 100 mg vial 1100621000168102 Azamyelidine 1100621000168102 Azamyelidine 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +140581000036104 Montelukast (Auro) 5 mg chewable tablet, 28, blister pack 193226 139171000036101 Montelukast (Auro) 5 mg chewable tablet, 28 137791000036107 Montelukast (Auro) 5 mg chewable tablet 137341000036100 Montelukast (Auro) 137341000036100 Montelukast (Auro) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +925237011000036104 Rispaccord 1 mg film-coated tablet, 60, blister pack 159973 924774011000036107 Rispaccord 1 mg film-coated tablet, 60 924473011000036102 Rispaccord 1 mg film-coated tablet 37391000168108 Rispaccord 37391000168108 Rispaccord 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +996581000168100 Calmoseptine 20.6% ointment, 3.5 g, sachet 78757 996571000168103 Calmoseptine 20.6% ointment, 3.5 g 76190011000036101 Calmoseptine 20.6% ointment 75973011000036100 Calmoseptine 75973011000036100 Calmoseptine 996561000168109 zinc oxide 20.6% ointment, 3.5 g 77605011000036107 zinc oxide 20.6% ointment 77446011000036105 zinc oxide +18558011000036104 Glimepiride (Sandoz) 2 mg uncoated tablet, 30, blister pack 121786 11691011000036100 Glimepiride (Sandoz) 2 mg uncoated tablet, 30 5900011000036109 Glimepiride (Sandoz) 2 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +74191000036109 Selsun Gold 2.5% shampoo, 375 mL, bottle 29682 72241000036100 Selsun Gold 2.5% shampoo, 375 mL 69931000036102 Selsun Gold 2.5% shampoo 17291000168106 Selsun Gold 17291000168106 Selsun Gold 72251000036102 selenium sulfide 2.5% shampoo, 375 mL 69901000036109 selenium sulfide 2.5% shampoo 21422011000036103 selenium sulfide +59741000036104 Isosorbide Mononitrate (PS) 60 mg modified release tablet, 30, bottle 184067 58821000036108 Isosorbide Mononitrate (PS) 60 mg modified release tablet, 30 58181000036103 Isosorbide Mononitrate (PS) 60 mg modified release tablet 58161000036108 Isosorbide Mononitrate (PS) 58161000036108 Isosorbide Mononitrate (PS) 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +790981000168101 Quetiapine XR (AS) 200 mg modified release tablet, 60, blister pack 226820 790971000168104 Quetiapine XR (AS) 200 mg modified release tablet, 60 790911000168107 Quetiapine XR (AS) 200 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +77191011000036107 Inomax 800 ppm medicinal gas, 1963 L, gas cylinder 128136 76607011000036103 Inomax 800 ppm medicinal gas, 1963 L 76060011000036106 Inomax 800 ppm medicinal gas 21991000168101 Inomax 21991000168101 Inomax 78161011000036101 nitric oxide 800 ppm gas, 1963 L 77520011000036100 nitric oxide 800 ppm gas 77477011000036107 nitric oxide +812251000168102 Iptam 100 mg film-coated tablet, 6, blister pack 124087 812241000168104 Iptam 100 mg film-coated tablet, 6 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 46297011000036105 sumatriptan 100 mg tablet, 6 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +43797011000036109 Stilnox CR 6.25 mg modified release tablet, 100, blister pack 120707 41234011000036108 Stilnox CR 6.25 mg modified release tablet, 100 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46176011000036102 zolpidem tartrate 6.25 mg modified release tablet, 100 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +700027051000036100 Femazole Duo 1% cream, 10 g, tube 161000168101 Femazole Duo 1% cream, 10 g 26861000036101 Femazole Duo 1% cream 26061000036109 Femazole Duo 26061000036109 Femazole Duo 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1090581000168106 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 x 2 mL syringes 283127 1090571000168108 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 x 2 mL syringes 1090521000168107 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090561000168102 dupilumab 300 mg/2 mL injection, 2 x 2 mL syringes 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +44811011000036102 Concorz 100 mg film-coated tablet, 30, bottle 98696 14295011000036106 Concorz 100 mg film-coated tablet, 30 7581011000036109 Concorz 100 mg film-coated tablet 3452011000036105 Concorz 3452011000036105 Concorz 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +931730011000036106 Psor-Asist Scalp (John Plunkett) lotion, 200 mL, bottle 22527 930890011000036108 Psor-Asist Scalp (John Plunkett) lotion, 200 mL 930094011000036104 Psor-Asist Scalp (John Plunkett) lotion 929869011000036101 Psor-Asist Scalp (John Plunkett) 929869011000036101 Psor-Asist Scalp (John Plunkett) 932471011000036109 aloe barbadensis 20% + dexpanthenol 0.5% + retinol palmitate 0.0222% + salicylic acid 3% + precipitated sulfur 0.016% + urea 5% lotion, 200 mL 931870011000036107 aloe barbadensis 20% + dexpanthenol 0.5% + retinol palmitate 0.0222% + salicylic acid 3% + precipitated sulfur 0.016% + urea 5% lotion 931809011000036108 aloe barbadensis + dexpanthenol + retinol palmitate + salicylic acid + precipitated sulfur + urea +928901000168109 Zovirax 200 mg uncoated tablet, 90, bottle 10972 928831000168106 Zovirax 200 mg uncoated tablet, 90 928781000168103 Zovirax 200 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +731981000168103 Cranberry 10 000+ (Bio-Organics) hard capsule, 60, bottle 91302 731971000168101 Cranberry 10 000+ (Bio-Organics) hard capsule, 60 731891000168107 Cranberry 10 000+ (Bio-Organics) hard capsule 731861000168100 Cranberry 10 000+ (Bio-Organics) 731861000168100 Cranberry 10 000+ (Bio-Organics) 731961000168107 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule, 60 731881000168109 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule 77453011000036101 cranberry + ascorbic acid +52210011000036102 Pravastatin Sodium (Terry White Chemists) 80 mg uncoated tablet, 30, blister pack 145163 52096011000036106 Pravastatin Sodium (Terry White Chemists) 80 mg uncoated tablet, 30 51991011000036105 Pravastatin Sodium (Terry White Chemists) 80 mg uncoated tablet 3101011000036106 Pravastatin Sodium (Terry White Chemists) 3101011000036106 Pravastatin Sodium (Terry White Chemists) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +13661000036103 Anastrozole (Apo) 1 mg film-coated tablet, 30, blister pack 173897 8771000036106 Anastrozole (Apo) 1 mg film-coated tablet, 30 2851000036108 Anastrozole (Apo) 1 mg film-coated tablet 24051000168107 Anastrozole (Apo) 24051000168107 Anastrozole (Apo) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +13661000036103 Anastrozole (Apo) 1 mg film-coated tablet, 30, blister pack 266676 8771000036106 Anastrozole (Apo) 1 mg film-coated tablet, 30 2851000036108 Anastrozole (Apo) 1 mg film-coated tablet 24051000168107 Anastrozole (Apo) 24051000168107 Anastrozole (Apo) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +160571000036106 Kombiglyze XR 2.5/1000 modified release tablet, 56, blister pack 202207 159411000036103 Kombiglyze XR 2.5/1000 modified release tablet, 56 157851000036106 Kombiglyze XR 2.5/1000 modified release tablet 43031000168100 Kombiglyze XR 2.5/1000 43031000168100 Kombiglyze XR 2.5/1000 159421000036105 saxagliptin 2.5 mg + metformin hydrochloride 1 g modified release tablet, 56 157861000036109 saxagliptin 2.5 mg + metformin hydrochloride 1 g modified release tablet 160681000036109 saxagliptin + metformin +774801000168101 Nexazole 20 mg enteric tablet, 100, blister pack 205846 774791000168102 Nexazole 20 mg enteric tablet, 100 774571000168108 Nexazole 20 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +74351000036103 Yomax 250 mg hard capsule, 20, blister pack 185794 71921000036106 Yomax 250 mg hard capsule, 20 70041000036106 Yomax 250 mg hard capsule 69391000036100 Yomax 69391000036100 Yomax 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +69108011000036107 Strepsils eucalyptus and menthol lozenge, 24, blister pack 14973 66909011000036105 Strepsils eucalyptus and menthol lozenge, 24 65345011000036108 Strepsils eucalyptus and menthol lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71503011000036104 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge, 24 70040011000036109 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge 69851011000036103 amylmetacresol + dichlorobenzyl alcohol + menthol +803591000168104 Abilify ODT 15 mg orally disintegrating tablet, 14, blister pack 128898 803581000168102 Abilify ODT 15 mg orally disintegrating tablet, 14 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803571000168100 aripiprazole 15 mg orally disintegrating tablet, 14 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +61140011000036105 Benadryl for the Family Chesty Forte oral liquid solution, 200 mL, bottle 73178 57083011000036102 Benadryl for the Family Chesty Forte oral liquid solution, 200 mL 54189011000036103 Benadryl for the Family Chesty Forte oral liquid solution, 5 mL 8221000168105 Benadryl for the Family Chesty Forte 8221000168105 Benadryl for the Family Chesty Forte 63967011000036105 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +60090011000036100 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 30, blister pack 126538 56051011000036109 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 30 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63849011000036104 ibuprofen 200 mg tablet, 30 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +18309011000036101 Sertraline (DP) 100 mg film-coated tablet, 30, blister pack 101489 11209011000036102 Sertraline (DP) 100 mg film-coated tablet, 30 5719011000036108 Sertraline (DP) 100 mg film-coated tablet 3496011000036103 Sertraline (DP) 3496011000036103 Sertraline (DP) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +19601000036100 Fluarix 2012 injection suspension, 10 x 0.5 mL syringes 154660 19081000036100 Fluarix 2012 injection suspension, 10 x 0.5 mL syringes 18611000036105 Fluarix 2012 injection suspension, 0.5 mL syringe 50551000168105 Fluarix 2012 50551000168105 Fluarix 2012 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +932121000168103 Centevo 50/12.5/200 mg film-coated tablet, 90, bottle 238152 932111000168105 Centevo 50/12.5/200 mg film-coated tablet, 90 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932101000168107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 90 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +80998011000036105 Advate (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 150366 80560011000036102 Advate (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack 80191011000036103 Advate (octocog alfa 3000 units) powder for injection, 3000 units vial 65054011000036106 Advate 65054011000036106 Advate 81639011000036103 octocog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 81274011000036104 octocog alfa 3000 units injection, vial 69843011000036100 octocog alfa +80998011000036105 Advate (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 150366 80560011000036102 Advate (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack 633331000168108 Advate (inert substance) diluent, 5 mL vial 65054011000036106 Advate 65054011000036106 Advate 81639011000036103 octocog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +927677011000036102 MSUD Gel powder for oral liquid, 30 x 24 g sachets 927615011000036102 MSUD Gel powder for oral liquid, 30 x 24 g sachets 173431000168100 MSUD Gel powder for oral liquid, 24 g sachet 36231000168104 MSUD Gel 36231000168104 MSUD Gel 927727011000036108 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 30 x 24 g sachets 173241000168108 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 24 g sachet 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +870231000168103 Dorzolamide/Timolol 20/5 (AN) eye drops solution, 5 mL, bottle 253993 870221000168101 Dorzolamide/Timolol 20/5 (AN) eye drops solution, 5 mL 870211000168108 Dorzolamide/Timolol 20/5 (AN) eye drops solution 870201000168105 Dorzolamide/Timolol 20/5 (AN) 870201000168105 Dorzolamide/Timolol 20/5 (AN) 27578011000036108 dorzolamide 2% + timolol 0.5% eye drops, 5 mL 22917011000036108 dorzolamide 2% + timolol 0.5% eye drops 21483011000036104 dorzolamide + timolol +87629011000036102 Levetiracetam (Sandoz) 250 mg film-coated tablet, 60, blister pack 159050 87472011000036106 Levetiracetam (Sandoz) 250 mg film-coated tablet, 60 87332011000036102 Levetiracetam (Sandoz) 250 mg film-coated tablet 87284011000036105 Levetiracetam (Sandoz) 87284011000036105 Levetiracetam (Sandoz) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +69206011000036105 Sodium Bicarbonate (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 12 x 500 mL bottles 19445 67006011000036108 Sodium Bicarbonate (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 12 x 500 mL bottles 65403011000036107 Sodium Bicarbonate (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 65044011000036108 Sodium Bicarbonate (Baxter) 65044011000036108 Sodium Bicarbonate (Baxter) 71576011000036104 sodium bicarbonate 5% (25 g/500 mL) injection, 12 x 500 mL bottles 70073011000036100 sodium bicarbonate 5% (25 g/500 mL) injection, bottle 21761011000036107 bicarbonate +806971000168101 Perindopril Arginine/Amlodipine 5/5 (Chemmart) uncoated tablet, 30, bottle 224304 806891000168107 Perindopril Arginine/Amlodipine 5/5 (Chemmart) uncoated tablet, 30 806881000168109 Perindopril Arginine/Amlodipine 5/5 (Chemmart) uncoated tablet 806811000168103 Perindopril Arginine/Amlodipine 5/5 (Chemmart) 806811000168103 Perindopril Arginine/Amlodipine 5/5 (Chemmart) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +1095031000168108 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 60, blister pack 287306 1095021000168105 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 60 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 1077321000168107 fexofenadine hydrochloride 180 mg tablet, 60 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1091881000168100 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray, 150 actuations, aerosol can 284867 1091871000168103 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray, 150 actuations 1091861000168109 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray 39021000168101 Nicorette Quickmist 39021000168101 Nicorette Quickmist 150521000036103 nicotine 1 mg/actuation oral spray, 150 actuations 148801000036106 nicotine 1 mg/actuation oral spray, 1 actuation 21432011000036100 nicotine +81015011000036104 Co-Diovan 320/12.5 film-coated tablet, 14, blister pack 135782 80491011000036104 Co-Diovan 320/12.5 film-coated tablet, 14 80163011000036104 Co-Diovan 320/12.5 film-coated tablet 19511000168109 Co-Diovan 320/12.5 19511000168109 Co-Diovan 320/12.5 81587011000036105 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet, 14 81263011000036108 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +674191000168109 Movicol Junior powder for oral liquid, 30 sachets 160225 674181000168106 Movicol Junior powder for oral liquid, 30 sachets 674161000168102 Movicol Junior powder for oral liquid, 1 sachet 54591000168106 Movicol Junior 54591000168106 Movicol Junior 674171000168108 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 30 sachets 674151000168104 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 1 sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +927703011000036106 Axit 45 mg film-coated tablet, 5, blister pack 164493 927639011000036107 Axit 45 mg film-coated tablet, 5 927591011000036107 Axit 45 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 927739011000036104 mirtazapine 45 mg tablet, 5 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +671041000168102 Aridon APN 10 mg film-coated tablet, 28, blister pack 167190 671031000168106 Aridon APN 10 mg film-coated tablet, 28 671021000168108 Aridon APN 10 mg film-coated tablet 671011000168101 Aridon APN 671011000168101 Aridon APN 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +60914011000036102 Zyrtec 10 mg/mL oral liquid solution, 50 mL, bottle 60947 56868011000036105 Zyrtec 10 mg/mL oral liquid solution, 50 mL 54107011000036109 Zyrtec 10 mg/mL oral liquid solution 3383011000036102 Zyrtec 3383011000036102 Zyrtec 63620011000036102 cetirizine hydrochloride 10 mg/mL oral liquid, 50 mL 62030011000036100 cetirizine hydrochloride 10 mg/mL oral liquid 21373011000036102 cetirizine +19042011000036104 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40193 12350011000036105 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5015011000036108 Levlen ED (inert substance) sugar coated tablet 700023311000036106 Levlen ED 700023311000036106 Levlen ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19042011000036104 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40193 12350011000036105 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5191011000036101 Levlen ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700023311000036106 Levlen ED 700023311000036106 Levlen ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +50290011000036109 Carboflex (403204) 15 cm x 20 cm dressing, 5, carton 49384011000036103 Carboflex (403204) 15 cm x 20 cm dressing, 5 48523011000036105 Carboflex (403204) 15 cm x 20 cm dressing 53581000168105 Carboflex (403204) 53581000168105 Carboflex (403204) 51357011000036104 dressing activated charcoal malodorous wound 15 cm x 20 cm dressing, 5 50880011000036101 dressing activated charcoal malodorous wound 15 cm x 20 cm dressing 50710011000036101 dressing activated charcoal malodorous wound +151991000036100 Nicorette Invisipatch 10 mg/16 hours patch, 7, sachet 162577 150101000036100 Nicorette Invisipatch 10 mg/16 hours patch, 7 148611000036109 Nicorette Invisipatch 10 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 27135011000036105 nicotine 10 mg/16 hours patch, 7 22500011000036104 nicotine 10 mg/16 hours patch 21432011000036100 nicotine +778091000168105 Oxycodone MR (Apo) 40 mg modified release tablet, 60, bottle 160097 778011000168101 Oxycodone MR (Apo) 40 mg modified release tablet, 60 777931000168109 Oxycodone MR (Apo) 40 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +60656011000036104 Astrix 100 mg enteric capsule, 500, bottle 30264 56614011000036109 Astrix 100 mg enteric capsule, 500 54009011000036105 Astrix 100 mg enteric capsule 3721011000036108 Astrix 3721011000036108 Astrix 63466011000036105 aspirin 100 mg enteric capsule, 500 61985011000036109 aspirin 100 mg enteric capsule 21719011000036107 aspirin +954781000168108 M-Cite 200 mg powder for injection, 1 vial 147685 954771000168105 M-Cite 200 mg powder for injection, 1 vial 954761000168104 M-Cite 200 mg powder for injection, 200 mg vial 941731000168106 M-Cite 941731000168106 M-Cite 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +37415011000036102 Pancuronium Bromide (AstraZeneca) 4 mg/2 mL injection solution, 50 x 2 mL ampoules 11964 36679011000036106 Pancuronium Bromide (AstraZeneca) 4 mg/2 mL injection solution, 50 x 2 mL ampoules 36122011000036103 Pancuronium Bromide (AstraZeneca) 4 mg/2 mL injection solution, 2 mL ampoule 35940011000036100 Pancuronium Bromide (AstraZeneca) 35940011000036100 Pancuronium Bromide (AstraZeneca) 38592011000036108 pancuronium bromide 4 mg/2 mL injection, 50 x 2 mL ampoules 37863011000036108 pancuronium bromide 4 mg/2 mL injection, ampoule 37758011000036106 pancuronium +17861011000036109 Tranalpha 1 mg hard capsule, 28, blister pack 198993 11911011000036100 Tranalpha 1 mg hard capsule, 28 4692011000036102 Tranalpha 1 mg hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +17861011000036109 Tranalpha 1 mg hard capsule, 28, blister pack 130875 11911011000036100 Tranalpha 1 mg hard capsule, 28 4692011000036102 Tranalpha 1 mg hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +45491000036104 Pradaxa 150 mg hard capsule, 10, blister pack 168211 42941000036105 Pradaxa 150 mg hard capsule, 10 32431000036108 Pradaxa 150 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 42951000036108 dabigatran etexilate 150 mg capsule, 10 32441000036103 dabigatran etexilate 150 mg capsule 79729011000036103 dabigatran +899091000168105 Strensiq 18 mg/0.45 mL injection solution, 12 x 0.45 mL vials 266985 899081000168107 Strensiq 18 mg/0.45 mL injection solution, 12 x 0.45 mL vials 899031000168106 Strensiq 18 mg/0.45 mL injection solution, 0.45 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 899071000168109 asfotase alfa 18 mg/0.45 mL injection, 12 x 0.45 mL vials 899021000168108 asfotase alfa 18 mg/0.45 mL injection, vial 898041000168106 asfotase alfa +152071000036106 Nicorette Freshdrops 2 mg lozenge, 24, blister pack 188136 150401000036109 Nicorette Freshdrops 2 mg lozenge, 24 148571000036104 Nicorette Freshdrops 2 mg lozenge 15261000168108 Nicorette 15261000168108 Nicorette 927318011000036104 nicotine 2 mg lozenge, 24 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +691371000168102 Triumeq film-coated tablet, 30, bottle 218644 691361000168108 Triumeq film-coated tablet, 30 691341000168109 Triumeq film-coated tablet 691311000168105 Triumeq 691311000168105 Triumeq 691351000168106 dolutegravir 50 mg + abacavir 600 mg + lamivudine 300 mg tablet, 30 691331000168100 dolutegravir 50 mg + abacavir 600 mg + lamivudine 300 mg tablet 691321000168103 dolutegravir + abacavir + lamivudine +931488011000036109 Topiramate (Generic Health) 200 mg film-coated tablet, 60, blister pack 155190 928300011000036107 Topiramate (Generic Health) 200 mg film-coated tablet, 60 927929011000036109 Topiramate (Generic Health) 200 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +37582011000036100 Oxsoralen 1% lotion, 30 mL, bottle 16851 36849011000036103 Oxsoralen 1% lotion, 30 mL 36023011000036103 Oxsoralen 1% lotion 35934011000036109 Oxsoralen 35934011000036109 Oxsoralen 38737011000036103 methoxsalen 1% lotion, 30 mL 37965011000036100 methoxsalen 1% lotion 37735011000036104 methoxsalen +151981000036102 Nicorette Invisipatch 10 mg/16 hours patch, 28, sachet 162577 150081000036107 Nicorette Invisipatch 10 mg/16 hours patch, 28 148611000036109 Nicorette Invisipatch 10 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 150091000036109 nicotine 10 mg/16 hours patch, 28 22500011000036104 nicotine 10 mg/16 hours patch 21432011000036100 nicotine +35662011000036105 Duratears 1 g/g eye ointment, 3.5 g, tube 35546011000036105 Duratears 1 g/g eye ointment, 3.5 g 35453011000036109 Duratears 1 g/g eye ointment 35446011000036100 Duratears 35446011000036100 Duratears 35762011000036104 paraffin 1 g/g eye ointment, 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +929061000168102 Isordil 40 mg uncoated tablet, 20, blister pack 40251 929051000168104 Isordil 40 mg uncoated tablet, 20 929031000168105 Isordil 40 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 929041000168101 isosorbide dinitrate 40 mg tablet, 20 929021000168107 isosorbide dinitrate 40 mg tablet 21865011000036107 isosorbide dinitrate +1066181000168101 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 30, blister pack 210587 1066171000168104 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 30 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 1064551000168106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 30 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +996501000168108 Prexum Combi LD 2.5/0.625 film-coated tablet, 10, bottle 279405 996491000168101 Prexum Combi LD 2.5/0.625 film-coated tablet, 10 996481000168104 Prexum Combi LD 2.5/0.625 film-coated tablet 996471000168102 Prexum Combi LD 2.5/0.625 996471000168102 Prexum Combi LD 2.5/0.625 727571000168104 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet, 10 22153011000036106 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +1091741000168104 Antiseptic Ointment (Chemists' Own) 10% ointment, 25 g, tube 281503 1091731000168108 Antiseptic Ointment (Chemists' Own) 10% ointment, 25 g 1091721000168105 Antiseptic Ointment (Chemists' Own) 10% ointment 1091711000168103 Antiseptic Ointment (Chemists' Own) 1091711000168103 Antiseptic Ointment (Chemists' Own) 71716011000036107 povidone-iodine 10% ointment, 25 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +931517011000036104 Citalo 20 mg film-coated tablet, 84, blister pack 158873 930678011000036106 Citalo 20 mg film-coated tablet, 84 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +69193011000036104 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 18 x 500 mL bags 19425 66993011000036105 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 18 x 500 mL bags 65542011000036102 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 500 mL bag 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 71563011000036103 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, 18 x 500 mL bags 70153011000036107 sodium lactate 0.322% (1.61 g/500 mL) + sodium chloride 0.6% (3 g/500 mL) + potassium chloride 0.04% (200 mg/500 mL) + calcium chloride dihydrate 0.027% (135 mg/500 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +69147011000036103 Strepsils lemon sugar free lozenge, 24, blister pack 153118 66947011000036106 Strepsils lemon sugar free lozenge, 24 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +760851000168103 Cabergoline (GenRx) 500 microgram tablet, 2, bottle 218128 760841000168100 Cabergoline (GenRx) 500 microgram tablet, 2 760811000168104 Cabergoline (GenRx) 500 microgram tablet 760801000168102 Cabergoline (GenRx) 760801000168102 Cabergoline (GenRx) 27271011000036107 cabergoline 500 microgram tablet, 2 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +803681000168103 Abilify ODT 15 mg orally disintegrating tablet, 30, blister pack 128898 803671000168101 Abilify ODT 15 mg orally disintegrating tablet, 30 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803661000168107 aripiprazole 15 mg orally disintegrating tablet, 30 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +84335011000036104 Sinus Relief Day and Night PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24, blister pack 158532 84028011000036108 Sinus Relief Day and Night PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24 83656011000036102 Sinus Relief Day and Night PE (Day) (Pharmacy Health) uncoated tablet 32641000168107 Sinus Relief Day and Night PE (Pharmacy Health) 32761000168103 Sinus Relief Day and Night PE (Day) (Pharmacy Health) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +84335011000036104 Sinus Relief Day and Night PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24, blister pack 158532 84028011000036108 Sinus Relief Day and Night PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24 83657011000036104 Sinus Relief Day and Night PE (Night) (Pharmacy Health) uncoated tablet 32641000168107 Sinus Relief Day and Night PE (Pharmacy Health) 32881000168103 Sinus Relief Day and Night PE (Night) (Pharmacy Health) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +921930011000036102 Sodium Chloride (Briemar) 0.9% (270 mg/30 mL) irrigation solution, 50 x 30 mL sachets 22163 921489011000036102 Sodium Chloride (Briemar) 0.9% (270 mg/30 mL) irrigation solution, 50 x 30 mL sachets 921033011000036101 Sodium Chloride (Briemar) 0.9% (270 mg/30 mL) irrigation solution, 30 mL sachet 920944011000036102 Sodium Chloride (Briemar) 920944011000036102 Sodium Chloride (Briemar) 922613011000036101 sodium chloride 0.9% (270 mg/30 mL) solution, 50 x 30 mL sachets 922107011000036108 sodium chloride 0.9% (270 mg/30 mL) solution, sachet 21308011000036103 sodium chloride +800621000168109 Actonate 35 mg film-coated tablet, 1, blister pack 163748 800611000168102 Actonate 35 mg film-coated tablet, 1 800601000168100 Actonate 35 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +87180011000036102 Peppermint Water (Orion) oral liquid solution, 100 mL, bottle 87113011000036108 Peppermint Water (Orion) oral liquid solution, 100 mL 87065011000036102 Peppermint Water (Orion) oral liquid solution 87059011000036105 Peppermint Water (Orion) 87059011000036105 Peppermint Water (Orion) 87229011000036104 peppermint water oral liquid, 100 mL 87202011000036102 peppermint water oral liquid 87200011000036101 peppermint water +926735011000036100 Lisinopril (GA) 2.5 mg uncoated tablet, 30, blister pack 106498 926086011000036100 Lisinopril (GA) 2.5 mg uncoated tablet, 30 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927301011000036106 lisinopril 2.5 mg tablet, 30 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +769481000168102 Dexamethasone (Mylan) 8 mg/2 mL injection solution, 5 x 2 mL vials 163199 769471000168100 Dexamethasone (Mylan) 8 mg/2 mL injection solution, 5 x 2 mL vials 769461000168106 Dexamethasone (Mylan) 8 mg/2 mL injection solution, 2 mL vial 769451000168109 Dexamethasone (Mylan) 769451000168109 Dexamethasone (Mylan) 26923011000036109 dexamethasone phosphate 8 mg/2 mL injection, 5 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +928956011000036105 Cleviprex 50 mg/100 mL injection emulsion, 10 x 100 mL vials 156138 928317011000036106 Cleviprex 50 mg/100 mL injection emulsion, 10 x 100 mL vials 927946011000036103 Cleviprex 50 mg/100 mL injection emulsion, 100 mL vial 927813011000036106 Cleviprex 927813011000036106 Cleviprex 929216011000036102 clevidipine 50 mg/100 mL injection, 10 x 100 mL vials 929152011000036107 clevidipine 50 mg/100 mL injection, vial 929134011000036102 clevidipine +928956011000036105 Cleviprex 50 mg/100 mL injection emulsion, 10 x 100 mL vials 203314 928317011000036106 Cleviprex 50 mg/100 mL injection emulsion, 10 x 100 mL vials 927946011000036103 Cleviprex 50 mg/100 mL injection emulsion, 100 mL vial 927813011000036106 Cleviprex 927813011000036106 Cleviprex 929216011000036102 clevidipine 50 mg/100 mL injection, 10 x 100 mL vials 929152011000036107 clevidipine 50 mg/100 mL injection, vial 929134011000036102 clevidipine +685931000168101 Meropenem (DBL) 500 mg powder for injection, 10 vials 161446 685921000168104 Meropenem (DBL) 500 mg powder for injection, 10 vials 685911000168106 Meropenem (DBL) 500 mg powder for injection, 500 mg vial 685901000168108 Meropenem (DBL) 685901000168108 Meropenem (DBL) 46463011000036102 meropenem 500 mg injection, 10 vials 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +945211000168107 Cilopam-S 5 mg film-coated tablet, 98, blister pack 191871 945201000168109 Cilopam-S 5 mg film-coated tablet, 98 944981000168107 Cilopam-S 5 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 945191000168106 escitalopram 5 mg tablet, 98 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +941991000168107 Bicalutamide (Terry White Chemists) 50 mg film-coated tablet, 28, blister pack 139577 941981000168109 Bicalutamide (Terry White Chemists) 50 mg film-coated tablet, 28 941971000168106 Bicalutamide (Terry White Chemists) 50 mg film-coated tablet 941961000168100 Bicalutamide (Terry White Chemists) 941961000168100 Bicalutamide (Terry White Chemists) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +683921000168100 Lansoprazole ODT (GH) 15 mg orally disintegrating tablet, 28, blister pack 216793 683911000168107 Lansoprazole ODT (GH) 15 mg orally disintegrating tablet, 28 683871000168109 Lansoprazole ODT (GH) 15 mg orally disintegrating tablet 683811000168101 Lansoprazole ODT (GH) 683811000168101 Lansoprazole ODT (GH) 79818011000036103 lansoprazole 15 mg orally disintegrating tablet, 28 79747011000036107 lansoprazole 15 mg orally disintegrating tablet 21491011000036101 lansoprazole +1099281000168100 Lamotrigine (Chemmart) 25 mg uncoated tablet, 56, blister pack 167525 1099271000168103 Lamotrigine (Chemmart) 25 mg uncoated tablet, 56 1099261000168109 Lamotrigine (Chemmart) 25 mg uncoated tablet 1097871000168105 Lamotrigine (Chemmart) 1097871000168105 Lamotrigine (Chemmart) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +1070361000168101 Analgesic Calmative (Trust) uncoated tablet, 10, blister pack 217762 1070351000168103 Analgesic Calmative (Trust) uncoated tablet, 10 1070341000168100 Analgesic Calmative (Trust) uncoated tablet 1070331000168109 Analgesic Calmative (Trust) 1070331000168109 Analgesic Calmative (Trust) 63865011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 10 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1071571000168108 Ocrevus 300 mg/10 mL concentrated injection, 10 mL vial 275778 1071561000168102 Ocrevus 300 mg/10 mL concentrated injection, 10 mL vial 1071541000168101 Ocrevus 300 mg/10 mL concentrated injection, 10 mL vial 1071511000168100 Ocrevus 1071511000168100 Ocrevus 1071551000168104 ocrelizumab 300 mg/10 mL injection, 10 mL vial 1071531000168105 ocrelizumab 300 mg/10 mL injection, vial 1071521000168107 ocrelizumab +931540011000036109 Reditron 8 mg film-coated tablet, 4, blister pack 163431 930701011000036102 Reditron 8 mg film-coated tablet, 4 930021011000036105 Reditron 8 mg film-coated tablet 28261000168108 Reditron 28261000168108 Reditron 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +682711000168101 Esomeprazole (Actavis) 20 mg enteric capsule, 98, bottle 206006 682701000168104 Esomeprazole (Actavis) 20 mg enteric capsule, 98 682651000168109 Esomeprazole (Actavis) 20 mg enteric capsule 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 682691000168104 esomeprazole 20 mg enteric capsule, 98 682641000168107 esomeprazole 20 mg enteric capsule 21697011000036107 esomeprazole +87723011000036108 Pentasa 1 g modified release tablet, 60, blister pack 164142 87489011000036107 Pentasa 1 g modified release tablet, 60 87338011000036104 Pentasa 1 g modified release tablet 3593011000036100 Pentasa 3593011000036100 Pentasa 87827011000036101 mesalazine 1 g modified release tablet, 60 87763011000036100 mesalazine 1 g modified release tablet 21351011000036101 mesalazine +68830011000036107 Nicotinell Fruit 4 mg chewing gum, 180, blister pack 126017 66691011000036108 Nicotinell Fruit 4 mg chewing gum, 180 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71517011000036106 nicotine 4 mg gum, 180 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +86121011000036101 Nurofen Zavance 200 mg sugar coated tablet, 96, blister pack 156293 85715011000036102 Nurofen Zavance 200 mg sugar coated tablet, 96 85350011000036104 Nurofen Zavance 200 mg sugar coated tablet 5481000168102 Nurofen Zavance 5481000168102 Nurofen Zavance 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +87664011000036105 Ciprofloxacin (GA) 750 mg film-coated tablet, 14, blister pack 148856 87426011000036109 Ciprofloxacin (GA) 750 mg film-coated tablet, 14 87303011000036100 Ciprofloxacin (GA) 750 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +59907011000036108 Period Pain Relief (Terry White Chemists) 275 mg film-coated tablet, 12, blister pack 117605 55869011000036100 Period Pain Relief (Terry White Chemists) 275 mg film-coated tablet, 12 53698011000036109 Period Pain Relief (Terry White Chemists) 275 mg film-coated tablet 53156011000036100 Period Pain Relief (Terry White Chemists) 53156011000036100 Period Pain Relief (Terry White Chemists) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +1070521000168102 Strong Pain Plus (Chemmart Pharmacy) uncoated tablet, 24, blister pack 197365 1070511000168109 Strong Pain Plus (Chemmart Pharmacy) uncoated tablet, 24 1070501000168106 Strong Pain Plus (Chemmart Pharmacy) uncoated tablet 1069951000168101 Strong Pain Plus (Chemmart Pharmacy) 1069951000168101 Strong Pain Plus (Chemmart Pharmacy) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +20648011000036107 Alkeran 2 mg film-coated tablet, 25, bottle 81543 13828011000036100 Alkeran 2 mg film-coated tablet, 25 7115011000036104 Alkeran 2 mg film-coated tablet 35281000168105 Alkeran 35281000168105 Alkeran 27955011000036107 melphalan 2 mg tablet, 25 23279011000036104 melphalan 2 mg tablet 21679011000036105 melphalan +1095011000168103 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 20, blister pack 287306 1095001000168101 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 20 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +50251011000036106 Alfare powder for oral liquid, 400 g, can 49470011000036106 Alfare powder for oral liquid, 400 g 48482011000036103 Alfare powder for oral liquid 48289011000036107 Alfare 48289011000036107 Alfare 51428011000036108 protein hydrolysate formula with medium chain triglycerides powder for oral liquid, 400 g 50945011000036106 protein hydrolysate formula with medium chain triglycerides powder for oral liquid 50746011000036108 protein hydrolysate formula with medium chain triglycerides +60126011000036104 Loratadine (Guardian) 10 mg tablet, 30, blister pack 127577 56085011000036102 Loratadine (Guardian) 10 mg tablet, 30 53783011000036107 Loratadine (Guardian) 10 mg tablet 53375011000036102 Loratadine (Guardian) 53375011000036102 Loratadine (Guardian) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +872961000168102 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 19449 872951000168104 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 872931000168105 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 3471000168104 Synthamin 17 Amino Acid 10% with Electrolytes 3471000168104 Synthamin 17 Amino Acid 10% with Electrolytes 872941000168101 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles 872921000168107 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle 77430011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +968011000168104 Nortriptyline (Apo) 10 mg uncoated tablet, 100, bottle 221004 968001000168102 Nortriptyline (Apo) 10 mg uncoated tablet, 100 967901000168100 Nortriptyline (Apo) 10 mg uncoated tablet 967891000168104 Nortriptyline (Apo) 967891000168104 Nortriptyline (Apo) 967991000168106 nortriptyline 10 mg tablet, 100 22255011000036109 nortriptyline 10 mg tablet 21689011000036104 nortriptyline +146281000036103 Sevikar HCT 40/10/25 film-coated tablet, 30, blister pack 199000 144931000036101 Sevikar HCT 40/10/25 film-coated tablet, 30 143691000036109 Sevikar HCT 40/10/25 film-coated tablet 18531000168109 Sevikar HCT 40/10/25 18531000168109 Sevikar HCT 40/10/25 144941000036106 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 25 mg tablet, 30 143701000036109 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 25 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +708651000168101 Atozet 10 mg/80 mg tablet, 30, blister pack 216962 708641000168103 Atozet 10 mg/80 mg tablet, 30 708621000168109 Atozet 10 mg/80 mg tablet 708591000168107 Atozet 10 mg/80 mg 708591000168107 Atozet 10 mg/80 mg 708631000168107 ezetimibe 10 mg + atorvastatin 80 mg tablet, 30 708611000168102 ezetimibe 10 mg + atorvastatin 80 mg tablet 708601000168100 ezetimibe + atorvastatin +654041000168102 Methylpred 125 mg powder for injection, 1 vial 145102 654031000168106 Methylpred 125 mg powder for injection, 1 vial 654011000168101 Methylpred 125 mg powder for injection, 125 mg vial 653921000168105 Methylpred 653921000168105 Methylpred 654021000168108 methylprednisolone 125 mg injection, 1 vial 37892011000036103 methylprednisolone 125 mg injection, vial 21605011000036100 methylprednisolone +930591000168106 Cavstat 5 mg film-coated tablet, 56, blister pack 234543 930581000168108 Cavstat 5 mg film-coated tablet, 56 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930571000168105 rosuvastatin 5 mg tablet, 56 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +44674011000036104 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack, composite pack 91564 42123011000036108 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46885011000036105 follitropin alfa 150 units (10.92 microgram) injection [10 x 150 units vials] (&) inert substance diluent [10 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44674011000036104 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack, composite pack 91564 42123011000036108 Gonal-F (10 x 150 units (10.92 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46885011000036105 follitropin alfa 150 units (10.92 microgram) injection [10 x 150 units vials] (&) inert substance diluent [10 x 1 mL vials], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +91691000036105 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 40, blister pack 194227 90191000036107 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 40 88451000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +25301000036104 Cephalexin (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 98408 23081000036109 Cephalexin (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL 20521000036105 Cephalexin (GenRx) 125 mg/5 mL powder for oral liquid, 5 mL 3342011000036104 Cephalexin (GenRx) 3342011000036104 Cephalexin (GenRx) 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +65951000036108 Essential Enzymes (Bio-Organics) hard capsule, 60, bottle 17307 63701000036109 Essential Enzymes (Bio-Organics) hard capsule, 60 61281000036108 Essential Enzymes (Bio-Organics) hard capsule 60341000036102 Essential Enzymes (Bio-Organics) 60341000036102 Essential Enzymes (Bio-Organics) 63711000036106 betaine hydrochloride 50 mg + cellulase 5 mg + pancreatin 100 mg + papain 50 mg + tilactase 5 mg capsule, 60 61291000036105 betaine hydrochloride 50 mg + cellulase 5 mg + pancreatin 100 mg + papain 50 mg + tilactase 5 mg capsule 66781000036109 betaine + cellulase + pancreatin + papain + tilactase +44765011000036104 Repreve 500 microgram film-coated tablet, 28, blister pack 96868 42210011000036109 Repreve 500 microgram film-coated tablet, 28 40392011000036107 Repreve 500 microgram film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 46970011000036103 ropinirole 500 microgram tablet, 28 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +68653011000036107 Pinetarsol 2.3% bath oil, 30 mL, bottle 10632 66538011000036100 Pinetarsol 2.3% bath oil, 30 mL 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71270011000036108 tar 2.3% bath oil, 30 mL 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +73318011000036103 Nplate 500 microgram powder for injection, 1 vial 147188 73116011000036109 Nplate 500 microgram powder for injection, 1 vial 72955011000036100 Nplate 500 microgram powder for injection, 500 microgram vial 72909011000036107 Nplate 72909011000036107 Nplate 73513011000036106 romiplostim 500 microgram injection, 1 vial 73377011000036109 romiplostim 500 microgram injection, vial 73352011000036105 romiplostim +24171000036109 Eviplera film-coated tablet, 30, bottle 176537 22611000036103 Eviplera film-coated tablet, 30 20911000036108 Eviplera film-coated tablet 19721000036103 Eviplera 19721000036103 Eviplera 22621000036105 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg + rilpivirine 25 mg tablet, 30 20921000036101 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg + rilpivirine 25 mg tablet 851441000168101 tenofovir disoproxil + emtricitabine + rilpivirine +939111000168103 Ondansetron (Sandoz) 4 mg/2 mL injection solution, 2 mL ampoule 132575 939101000168101 Ondansetron (Sandoz) 4 mg/2 mL injection solution, 2 mL ampoule 939091000168106 Ondansetron (Sandoz) 4 mg/2 mL injection solution, 2 mL ampoule 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +19196011000036100 Kalma 250 microgram uncoated tablet, 50, blister pack 46836 12488011000036106 Kalma 250 microgram uncoated tablet, 50 5703011000036108 Kalma 250 microgram uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 28280011000036103 alprazolam 250 microgram tablet, 50 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +933230691000036107 Valaciclovir (Generic Health) 500 mg film-coated tablet, 50, blister pack 170178 933224791000036107 Valaciclovir (Generic Health) 500 mg film-coated tablet, 50 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 933224801000036106 valaciclovir 500 mg tablet, 50 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +931422011000036103 Optimal Sunscreen (Hamilton) lotion, 250 mL, bottle 121360 930576011000036102 Optimal Sunscreen (Hamilton) lotion, 250 mL 929945011000036104 Optimal Sunscreen (Hamilton) lotion 929831011000036108 Optimal Sunscreen (Hamilton) 929831011000036108 Optimal Sunscreen (Hamilton) 932350011000036109 butyl methoxydibenzoylmethane 2% + 4-methylbenzylidene camphor 5% + octyl methoxycinnamate 7.5% + titanium dioxide 1.9% lotion, 250 mL 931823011000036103 butyl methoxydibenzoylmethane 2% + 4-methylbenzylidene camphor 5% + octyl methoxycinnamate 7.5% + titanium dioxide 1.9% lotion 82430011000036106 butyl methoxydibenzoylmethane + 4-methylbenzylidene camphor + octyl methoxycinnamate + titanium +83389011000036109 Alustal House Dust Mites Extract Initial Treatment Set (1 x 0.1 IR/mL vial, 1 x 1 IR/mL vial, 1 x 10 IR/mL vial), 1 pack, composite pack 132725 83307011000036103 Alustal House Dust Mites Extract Initial Treatment Set (1 x 0.1 IR/mL vial, 1 x 1 IR/mL vial, 1 x 10 IR/mL vial), 1 pack 83239011000036105 Alustal House Dust Mites Extract 0.1 IR/mL injection suspension, 5 mL vial 63041000168103 Alustal House Dust Mites Extract Initial Treatment Set 63161000168100 Alustal House Dust Mites Extract 0.1 IR/mL 83483011000036103 American house dust mite extract 0.25 IR/5 mL + European house dust mite extract 0.25 IR/5 mL injection [5 mL vial] (&) American house dust mite extract 2.5 IR/5 mL + European house dust mite extract 2.5 IR/5 mL injection [5 mL vial] (&) American house dust mite extract 25 IR/5 mL + European house dust mite extract 25 IR/5 mL injection [5 mL vial], 1 pack 83426011000036103 American house dust mite extract 0.25 IR/5 mL + European house dust mite extract 0.25 IR/5 mL injection, vial 83421011000036108 American house dust mite extract + European house dust mite extract +83389011000036109 Alustal House Dust Mites Extract Initial Treatment Set (1 x 0.1 IR/mL vial, 1 x 1 IR/mL vial, 1 x 10 IR/mL vial), 1 pack, composite pack 132725 83307011000036103 Alustal House Dust Mites Extract Initial Treatment Set (1 x 0.1 IR/mL vial, 1 x 1 IR/mL vial, 1 x 10 IR/mL vial), 1 pack 83241011000036107 Alustal House Dust Mites Extract 10 IR/mL injection suspension, 5 mL vial 63041000168103 Alustal House Dust Mites Extract Initial Treatment Set 63401000168106 Alustal House Dust Mites Extract 10 IR/mL 83483011000036103 American house dust mite extract 0.25 IR/5 mL + European house dust mite extract 0.25 IR/5 mL injection [5 mL vial] (&) American house dust mite extract 2.5 IR/5 mL + European house dust mite extract 2.5 IR/5 mL injection [5 mL vial] (&) American house dust mite extract 25 IR/5 mL + European house dust mite extract 25 IR/5 mL injection [5 mL vial], 1 pack 83428011000036104 American house dust mite extract 25 IR/5 mL + European house dust mite extract 25 IR/5 mL injection, vial 83421011000036108 American house dust mite extract + European house dust mite extract +83389011000036109 Alustal House Dust Mites Extract Initial Treatment Set (1 x 0.1 IR/mL vial, 1 x 1 IR/mL vial, 1 x 10 IR/mL vial), 1 pack, composite pack 132725 83307011000036103 Alustal House Dust Mites Extract Initial Treatment Set (1 x 0.1 IR/mL vial, 1 x 1 IR/mL vial, 1 x 10 IR/mL vial), 1 pack 83240011000036100 Alustal House Dust Mites Extract 1 IR/mL injection suspension, 5 mL vial 63041000168103 Alustal House Dust Mites Extract Initial Treatment Set 63281000168102 Alustal House Dust Mites Extract 1 IR/mL 83483011000036103 American house dust mite extract 0.25 IR/5 mL + European house dust mite extract 0.25 IR/5 mL injection [5 mL vial] (&) American house dust mite extract 2.5 IR/5 mL + European house dust mite extract 2.5 IR/5 mL injection [5 mL vial] (&) American house dust mite extract 25 IR/5 mL + European house dust mite extract 25 IR/5 mL injection [5 mL vial], 1 pack 83427011000036100 American house dust mite extract 2.5 IR/5 mL + European house dust mite extract 2.5 IR/5 mL injection, vial 83421011000036108 American house dust mite extract + European house dust mite extract +87733011000036105 Risperidone (DRLA) 2 mg film-coated tablet, 60, blister pack 165516 87499011000036106 Risperidone (DRLA) 2 mg film-coated tablet, 60 87342011000036103 Risperidone (DRLA) 2 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +60280011000036109 Panadol Caplet 500 mg film-coated tablet, 4, blister pack 13590 56239011000036100 Panadol Caplet 500 mg film-coated tablet, 4 53849011000036103 Panadol Caplet 500 mg film-coated tablet 29141000168108 Panadol Caplet 29141000168108 Panadol Caplet 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +764821000168103 S-26 Original LI powder for oral liquid, 900 g, can 764811000168105 S-26 Original LI powder for oral liquid, 900 g 764791000168106 S-26 Original LI powder for oral liquid 764751000168101 S-26 Original LI 764751000168101 S-26 Original LI 764801000168107 milk powder lactose intolerance formula powder for oral liquid, 900 g 764781000168108 milk powder lactose intolerance formula powder for oral liquid 764771000168105 milk powder lactose intolerance formula +805281000168101 Folotyn 20 mg/mL injection solution, 1 mL vial 192493 805271000168104 Folotyn 20 mg/mL injection solution, 1 mL vial 805251000168108 Folotyn 20 mg/mL injection solution, vial 805071000168109 Folotyn 805071000168109 Folotyn 805261000168105 pralatrexate 20 mg/mL injection, 1 mL vial 805241000168106 pralatrexate 20 mg/mL injection, vial 805081000168107 pralatrexate +84318011000036101 Sulprix 100 mg tablet, 90, blister pack 156044 84011011000036106 Sulprix 100 mg tablet, 90 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +685611000168101 Subutex 2 mg sublingual tablet, 7, blister pack 76662 685601000168104 Subutex 2 mg sublingual tablet, 7 685581000168108 Subutex 2 mg sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685591000168106 buprenorphine 2 mg sublingual tablet, 7 685571000168105 buprenorphine 2 mg sublingual tablet 21232011000036101 buprenorphine +770721000168108 Actair Continuation Treatment 300 IR sublingual tablet, 90, blister pack 233471 770711000168101 Actair Continuation Treatment 300 IR sublingual tablet, 90 770651000168109 Actair Continuation Treatment 300 IR sublingual tablet 769331000168109 Actair Continuation Treatment 300 IR 769331000168109 Actair Continuation Treatment 300 IR 770701000168104 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet, 90 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +1048611000168108 Paracetamol Codeine 500/30 (GPPL) tablet, 10, blister pack 220977 1048601000168105 Paracetamol Codeine 500/30 (GPPL) tablet, 10 1048431000168101 Paracetamol Codeine 500/30 (GPPL) tablet 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1047321000168108 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 10 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +59890011000036104 Demazin Cold Relief Paediatric Oral Drops Blue oral liquid solution, 50 mL, bottle 116393 55852011000036100 Demazin Cold Relief Paediatric Oral Drops Blue oral liquid solution, 50 mL 53653011000036105 Demazin Cold Relief Paediatric Oral Drops Blue oral liquid solution, 5 mL 18051000168108 Demazin Cold Relief Paediatric Oral Drops 18051000168108 Demazin Cold Relief Paediatric Oral Drops 63710011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 50 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +104531000036104 Irbesat 75 mg film-coated tablet, 30, blister pack 192808 101741000036102 Irbesat 75 mg film-coated tablet, 30 98901000036104 Irbesat 75 mg film-coated tablet 98041000036100 Irbesat 98041000036100 Irbesat 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1005501000168105 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 162856 1005491000168103 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 1005481000168101 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 10 mL ampoule 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1005001000168103 ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules 1004981000168106 ropivacaine hydrochloride 100 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +21132011000036104 Paclitaxel (Ebewe) 150 mg/25 mL concentrated injection, 25 mL vial 98550 14275011000036100 Paclitaxel (Ebewe) 150 mg/25 mL concentrated injection, 25 mL vial 7561011000036106 Paclitaxel (Ebewe) 150 mg/25 mL concentrated injection, 25 mL vial 3092011000036109 Paclitaxel (Ebewe) 3092011000036109 Paclitaxel (Ebewe) 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +19981011000036108 Myleran 2 mg film-coated tablet, 100, bottle 68028 13222011000036109 Myleran 2 mg film-coated tablet, 100 6504011000036107 Myleran 2 mg film-coated tablet 3345011000036107 Myleran 3345011000036107 Myleran 27628011000036101 busulfan 2 mg tablet, 100 22966011000036106 busulfan 2 mg tablet 21405011000036102 busulfan +954941000168100 Topiramate (Sandoz) 100 mg film-coated tablet, 60, blister pack 135791 79950011000036101 Topiramate (Sandoz) 100 mg film-coated tablet, 60 79911011000036100 Topiramate (Sandoz) 100 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +651071000168106 Vectibix 400 mg/20 mL concentrated injection, 20 mL vial 128332 651061000168100 Vectibix 400 mg/20 mL concentrated injection, 20 mL vial 651041000168104 Vectibix 400 mg/20 mL concentrated injection, 20 mL vial 72907011000036100 Vectibix 72907011000036100 Vectibix 651051000168102 panitumumab 400 mg/20 mL injection, 20 mL vial 651031000168108 panitumumab 400 mg/20 mL injection, vial 73357011000036107 panitumumab +1077511000168105 Atomoxetine (AN) 18 mg hard capsule, 14, blister pack 234790 1077501000168107 Atomoxetine (AN) 18 mg hard capsule, 14 1077471000168101 Atomoxetine (AN) 18 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830341000168103 atomoxetine 18 mg capsule, 14 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +666881000168100 Tramadol Hydrochloride SR (AN) 100 mg modified release tablet, 20, blister pack 190051 666871000168103 Tramadol Hydrochloride SR (AN) 100 mg modified release tablet, 20 666861000168109 Tramadol Hydrochloride SR (AN) 100 mg modified release tablet 666851000168107 Tramadol Hydrochloride SR (AN) 666851000168107 Tramadol Hydrochloride SR (AN) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +20949011000036100 Clamohexal Duo Forte 875/125 film-coated tablet, 10, blister pack 94697 14104011000036106 Clamohexal Duo Forte 875/125 film-coated tablet, 10 7381011000036106 Clamohexal Duo Forte 875/125 film-coated tablet 61991000168109 Clamohexal Duo Forte 875/125 61991000168109 Clamohexal Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +82905011000036106 Ringer's (Baxter) intravenous infusion injection, 12 x 1 L bags 19443 82797011000036109 Ringer's (Baxter) intravenous infusion injection, 12 x 1 L bags 65242011000036108 Ringer's (Baxter) intravenous infusion injection, 1 L bag 65107011000036104 Ringer's (Baxter) 65107011000036104 Ringer's (Baxter) 83013011000036105 sodium chloride 8.6 g/L + potassium chloride 300 mg (potassium 4 mmol)/L + calcium chloride dihydrate 330 mg/L injection, 12 x 1 L bags 70070011000036108 sodium chloride 8.6 g/L + potassium chloride 300 mg (potassium 4 mmol)/L + calcium chloride dihydrate 330 mg/L injection, bag 69841011000036101 sodium chloride + potassium chloride + calcium chloride dihydrate +61277011000036108 Dimetapp Headcold and Flu sugar coated tablet, 24, blister pack 77894 57213011000036108 Dimetapp Headcold and Flu sugar coated tablet, 24 54239011000036109 Dimetapp Headcold and Flu sugar coated tablet 53561011000036107 Dimetapp Headcold and Flu 53561011000036107 Dimetapp Headcold and Flu 52899011000036101 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +656851000168101 Famciclovir (AN) 250 mg film-coated tablet, 56, blister pack 195181 656841000168103 Famciclovir (AN) 250 mg film-coated tablet, 56 656771000168102 Famciclovir (AN) 250 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1090421000168108 Heartburn Relief (Trust) 150 mg film-coated tablet, 28, strip pack 280579 1090411000168101 Heartburn Relief (Trust) 150 mg film-coated tablet, 28 1090381000168104 Heartburn Relief (Trust) 150 mg film-coated tablet 1090371000168102 Heartburn Relief (Trust) 1090371000168102 Heartburn Relief (Trust) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +44190011000036101 Livial 2.5 mg uncoated tablet, 28, blister pack 55088 41666011000036109 Livial 2.5 mg uncoated tablet, 28 40133011000036100 Livial 2.5 mg uncoated tablet 39758011000036104 Livial 39758011000036104 Livial 46483011000036104 tibolone 2.5 mg tablet, 28 45180011000036108 tibolone 2.5 mg tablet 44915011000036106 tibolone +25221000036101 Simvastatin (Sandoz) 20 mg film-coated tablet, 30, blister pack 114798 22131000036100 Simvastatin (Sandoz) 20 mg film-coated tablet, 30 20531000036107 Simvastatin (Sandoz) 20 mg film-coated tablet 933234211000036105 Simvastatin (Sandoz) 933234211000036105 Simvastatin (Sandoz) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1094711000168101 Paracetamol XR (AH) 665 mg modified release tablet, 1000, bottle 227110 1094701000168104 Paracetamol XR (AH) 665 mg modified release tablet, 1000 1094661000168106 Paracetamol XR (AH) 665 mg modified release tablet 1094641000168107 Paracetamol XR (AH) 1094641000168107 Paracetamol XR (AH) 677961000168106 paracetamol 665 mg modified release tablet, 1000 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +69210011000036105 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 15 x 500 mL bottles 19458 67010011000036108 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 15 x 500 mL bottles 65366011000036107 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 500 mL bottle 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 71580011000036108 chlorhexidine acetate 0.015% (75 mg/500 mL) + cetrimide 0.15% (750 mg/500 mL) solution, 15 x 500 mL bottles 70075011000036104 chlorhexidine acetate 0.015% (75 mg/500 mL) + cetrimide 0.15% (750 mg/500 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +1025591000168106 Bisolvon Dry Kids 10 mg/5 mL oral liquid, 200 mL, bottle 176543 1025581000168108 Bisolvon Dry Kids 10 mg/5 mL oral liquid, 200 mL 1025551000168101 Bisolvon Dry Kids 10 mg/5 mL oral liquid, 5 mL 1025541000168103 Bisolvon Dry Kids 1025541000168103 Bisolvon Dry Kids 63684011000036102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62045011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61744011000036109 dextromethorphan +929022011000036101 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 16, blister pack 160640 928383011000036100 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 16 927963011000036103 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet 927817011000036102 Risedronate Sodium (Terry White Chemists) 927817011000036102 Risedronate Sodium (Terry White Chemists) 929234011000036100 risedronate sodium 35 mg tablet, 16 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1081761000168101 Sonata 10 mg hard capsule, 7, blister pack 70004 1081751000168103 Sonata 10 mg hard capsule, 7 1081731000168109 Sonata 10 mg hard capsule 1081561000168108 Sonata 1081561000168108 Sonata 1081741000168100 zaleplon 10 mg capsule, 7 1081721000168106 zaleplon 10 mg capsule 1081631000168101 zaleplon +774961000168107 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 25 mL, bottle 90104 774951000168105 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 25 mL 930128011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 5 mL 929892011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 929892011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 774941000168108 ibuprofen 100 mg/5 mL oral liquid, 25 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +60253011000036108 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 11 sachets 134660 56212011000036102 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 11 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63353011000036102 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 11 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +933239371000036109 Eliquis 2.5 mg film-coated tablet, 10, blister pack 172244 933236631000036109 Eliquis 2.5 mg film-coated tablet, 10 933234631000036103 Eliquis 2.5 mg film-coated tablet 933234191000036106 Eliquis 933234191000036106 Eliquis 933236641000036104 apixaban 2.5 mg tablet, 10 933234641000036108 apixaban 2.5 mg tablet 933240151000036106 apixaban +679901000168102 Movectro 10 mg uncoated tablet, 10, blister pack 166483 679891000168101 Movectro 10 mg uncoated tablet, 10 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679881000168104 cladribine 10 mg tablet, 10 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +1100491000168103 Flucloxacillin (Chemmart) 500 mg capsule, 48, blister pack 226372 1100481000168101 Flucloxacillin (Chemmart) 500 mg capsule, 48 1100431000168102 Flucloxacillin (Chemmart) 500 mg capsule 1100401000168109 Flucloxacillin (Chemmart) 1100401000168109 Flucloxacillin (Chemmart) 889141000168104 flucloxacillin 500 mg capsule, 48 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +812431000168107 Afonaise 50 microgram/actuation nasal spray, 65 actuations, pump pack 201568 812421000168109 Afonaise 50 microgram/actuation nasal spray, 65 actuations 812411000168102 Afonaise 50 microgram/actuation nasal spray, actuation 812401000168100 Afonaise 812401000168100 Afonaise 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +846971000168108 Olmesartan HCT 40/12.5 (Alembic) film-coated tablet, 30, blister pack 221114 846961000168102 Olmesartan HCT 40/12.5 (Alembic) film-coated tablet, 30 846951000168104 Olmesartan HCT 40/12.5 (Alembic) film-coated tablet 846941000168101 Olmesartan HCT 40/12.5 (Alembic) 846941000168101 Olmesartan HCT 40/12.5 (Alembic) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +20465011000036107 Clobemix 150 mg film-coated tablet, 60, blister pack 78256 13667011000036104 Clobemix 150 mg film-coated tablet, 60 6950011000036104 Clobemix 150 mg film-coated tablet 3063011000036104 Clobemix 3063011000036104 Clobemix 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +45721000036107 Cefepime (Sandoz) 1 g powder for injection, 1 vial 171736 43041000036102 Cefepime (Sandoz) 1 g powder for injection, 1 vial 40581000036108 Cefepime (Sandoz) 1 g powder for injection, vial 40391000036104 Cefepime (Sandoz) 40391000036104 Cefepime (Sandoz) 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +928841011000036106 Paclitaxel (GA) 30 mg/5 mL concentrated injection, 5 mL vial 129573 928203011000036108 Paclitaxel (GA) 30 mg/5 mL concentrated injection, 5 mL vial 927862011000036103 Paclitaxel (GA) 30 mg/5 mL concentrated injection, 5 mL vial 927810011000036103 Paclitaxel (GA) 927810011000036103 Paclitaxel (GA) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +1039981000168101 Oxaliplatin (AS) 50 mg powder for injection, 1 vial 178094 1039971000168104 Oxaliplatin (AS) 50 mg powder for injection, 1 vial 1039961000168105 Oxaliplatin (AS) 50 mg powder for injection, 50 mg vial 87701000036103 Oxaliplatin (AS) 87701000036103 Oxaliplatin (AS) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +21145011000036108 Rithmik 100 mg uncoated tablet, 30, blister pack 98654 14287011000036102 Rithmik 100 mg uncoated tablet, 30 7573011000036100 Rithmik 100 mg uncoated tablet 3881011000036101 Rithmik 3881011000036101 Rithmik 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +772131000168109 Claratyne 10 mg uncoated tablet, 60, blister pack 34698 772121000168106 Claratyne 10 mg uncoated tablet, 60 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 772111000168104 loratadine 10 mg tablet, 60 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +869991000168107 Atomerra 100 mg hard capsule, 14, blister pack 234811 869981000168109 Atomerra 100 mg hard capsule, 14 869951000168102 Atomerra 100 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830121000168107 atomoxetine 100 mg capsule, 14 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +933230771000036103 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 14, blister pack 172126 933224891000036103 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 14 933220411000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet 933219291000036105 Prochlorperazine Maleate (GH) 933219291000036105 Prochlorperazine Maleate (GH) 924171011000036104 prochlorperazine maleate 5 mg tablet, 14 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +146361000036103 Vyvanse 30 mg hard capsule, 30, bottle 199227 145111000036106 Vyvanse 30 mg hard capsule, 30 143971000036102 Vyvanse 30 mg hard capsule 143261000036104 Vyvanse 143261000036104 Vyvanse 145121000036104 lisdexamfetamine dimesilate 30 mg capsule, 30 143981000036100 lisdexamfetamine dimesilate 30 mg capsule 146451000036109 lisdexamfetamine +926692011000036108 Metermine 30 mg modified release capsule, 30, blister pack 101829 926057011000036108 Metermine 30 mg modified release capsule, 30 925616011000036105 Metermine 30 mg modified release capsule 925524011000036102 Metermine 925524011000036102 Metermine 82518011000036107 phentermine 30 mg modified release capsule, 30 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +121691000036105 Fresofol 1% MCT/LCT 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 193608 120701000036103 Fresofol 1% MCT/LCT 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 119441000036107 Fresofol 1% MCT/LCT 200 mg/20 mL injection emulsion, 20 mL ampoule 16441000168100 Fresofol 1% MCT/LCT 16441000168100 Fresofol 1% MCT/LCT 38832011000036102 propofol 200 mg/20 mL injection, 5 x 20 mL ampoules 38037011000036101 propofol 200 mg/20 mL injection, ampoule 37750011000036109 propofol +700027211000036107 Amoxil 500 mg hard capsule, 28, blister pack 273936 191000168108 Amoxil 500 mg hard capsule, 28 6140011000036103 Amoxil 500 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 700031841000036104 amoxicillin 500 mg capsule, 28 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +79726011000036107 Lisinopril (Sandoz) 20 mg uncoated tablet, 30, blister pack 76047 79537011000036107 Lisinopril (Sandoz) 20 mg uncoated tablet, 30 79402011000036106 Lisinopril (Sandoz) 20 mg uncoated tablet 79351011000036102 Lisinopril (Sandoz) 79351011000036102 Lisinopril (Sandoz) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +928913011000036109 Vaclovir 500 mg film-coated tablet, 30, blister pack 153822 928275011000036101 Vaclovir 500 mg film-coated tablet, 30 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +956471000168107 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 200 mL bottles 49606 956461000168101 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 200 mL bottles 956411000168104 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 200 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 956451000168103 iodixanol 550 mg (iodine 270 mg)/mL injection, 10 x 200 mL bottles 956401000168102 iodixanol 550 mg (iodine 270 mg)/mL injection, 200 mL bottle 922032011000036109 iodixanol +74511000036106 Sebizole 2% shampoo, 100 mL, bottle 66821 72521000036105 Sebizole 2% shampoo, 100 mL 69961000036108 Sebizole 2% shampoo 3607011000036104 Sebizole 3607011000036104 Sebizole 72531000036107 ketoconazole 2% shampoo, 100 mL 69971000036100 ketoconazole 2% shampoo 21500011000036103 ketoconazole +18712011000036105 Karvezide 150/12.5 film-coated tablet, 30, bottle 101832 11239011000036107 Karvezide 150/12.5 film-coated tablet, 30 4556011000036103 Karvezide 150/12.5 film-coated tablet 20981000168107 Karvezide 150/12.5 20981000168107 Karvezide 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +60977011000036103 Nurofen for Children 100 mg/5 mL oral liquid suspension, 30 mL, bottle 62912 56920011000036107 Nurofen for Children 100 mg/5 mL oral liquid suspension, 30 mL 54120011000036104 Nurofen for Children 100 mg/5 mL oral liquid suspension, 5 mL 471000168102 Nurofen for Children 471000168102 Nurofen for Children 63641011000036107 ibuprofen 100 mg/5 mL oral liquid, 30 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +104371000036105 Irbesartan (RBX) 150 mg film-coated tablet, 30, blister pack 190478 101581000036103 Irbesartan (RBX) 150 mg film-coated tablet, 30 98331000036107 Irbesartan (RBX) 150 mg film-coated tablet 98101000036102 Irbesartan (RBX) 98101000036102 Irbesartan (RBX) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +926813011000036105 Reaptan 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 170797 926209011000036104 Reaptan 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10 925677011000036103 Reaptan 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet 30061000168102 Reaptan 5mg/10mg (perindopril arginine/amlodipine) 30061000168102 Reaptan 5mg/10mg (perindopril arginine/amlodipine) 86425011000036103 perindopril arginine 5 mg + amlodipine 10 mg tablet, 10 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +944891000168103 Risperidone (Terry White Chemists) 3 mg film-coated tablet, 60, blister pack 127599 944881000168101 Risperidone (Terry White Chemists) 3 mg film-coated tablet, 60 944871000168104 Risperidone (Terry White Chemists) 3 mg film-coated tablet 944371000168108 Risperidone (Terry White Chemists) 944371000168108 Risperidone (Terry White Chemists) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +959281000168101 Ciram 20 mg film-coated tablet, 84, blister pack 158858 959271000168104 Ciram 20 mg film-coated tablet, 84 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +121531000036108 Hayfever and Sinus Pain Relief PE (Pharmacy Action) film-coated tablet, 24, blister pack 191939 120451000036109 Hayfever and Sinus Pain Relief PE (Pharmacy Action) film-coated tablet, 24 119771000036108 Hayfever and Sinus Pain Relief PE (Pharmacy Action) film-coated tablet 119271000036101 Hayfever and Sinus Pain Relief PE (Pharmacy Action) 119271000036101 Hayfever and Sinus Pain Relief PE (Pharmacy Action) 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +21162011000036108 Seaze 50 mg tablet, 56, blister pack 99037 14304011000036101 Seaze 50 mg tablet, 56 7590011000036101 Seaze 50 mg tablet 3240011000036108 Seaze 3240011000036108 Seaze 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +671221000168100 Amlodipine/Atorvastatin 5/10 (Terry White Chemists) film-coated tablet, 30, blister pack 214374 671211000168107 Amlodipine/Atorvastatin 5/10 (Terry White Chemists) film-coated tablet, 30 671201000168109 Amlodipine/Atorvastatin 5/10 (Terry White Chemists) film-coated tablet 671191000168106 Amlodipine/Atorvastatin 5/10 (Terry White Chemists) 671191000168106 Amlodipine/Atorvastatin 5/10 (Terry White Chemists) 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +1094851000168105 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 6, blister pack 287918 1094841000168108 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 6 1094831000168104 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule 53104011000036101 Diarrhoea Relief (Chemists' Own) 53104011000036101 Diarrhoea Relief (Chemists' Own) 823651000168102 loperamide hydrochloride 2 mg capsule, 6 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +907401000168108 Celecoxib (Lupin) 100 mg hard capsule, 20, blister pack 196181 907391000168106 Celecoxib (Lupin) 100 mg hard capsule, 20 907321000168109 Celecoxib (Lupin) 100 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +52197011000036104 Clarithromycin (Apo) 250 mg film-coated tablet, 100, bottle 134865 52085011000036103 Clarithromycin (Apo) 250 mg film-coated tablet, 100 51983011000036107 Clarithromycin (Apo) 250 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +59701000036102 Zetlam 100 mg film-coated tablet, 84, blister pack 180503 58771000036101 Zetlam 100 mg film-coated tablet, 84 58361000036105 Zetlam 100 mg film-coated tablet 58041000036106 Zetlam 58041000036106 Zetlam 58781000036104 lamivudine 100 mg tablet, 84 22927011000036104 lamivudine 100 mg tablet 21665011000036104 lamivudine +740341000168104 Ondansetron (SZ) 8 mg film-coated tablet, 6, blister pack 163439 740331000168108 Ondansetron (SZ) 8 mg film-coated tablet, 6 740301000168101 Ondansetron (SZ) 8 mg film-coated tablet 740221000168104 Ondansetron (SZ) 740221000168104 Ondansetron (SZ) 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +869911000168103 Eplerenone (AN) 25 mg film-coated tablet, 120, blister pack 231448 869901000168101 Eplerenone (AN) 25 mg film-coated tablet, 120 869811000168109 Eplerenone (AN) 25 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 790521000168105 eplerenone 25 mg tablet, 120 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +44143011000036101 Adenoscan 30 mg/10 mL injection solution, 6 x 10 mL vials 53226 41619011000036104 Adenoscan 30 mg/10 mL injection solution, 6 x 10 mL vials 40107011000036100 Adenoscan 30 mg/10 mL injection solution, 10 mL vial 39765011000036104 Adenoscan 39765011000036104 Adenoscan 46438011000036102 adenosine 30 mg/10 mL injection, 6 x 10 mL vials 45156011000036101 adenosine 30 mg/10 mL injection, vial 44942011000036105 adenosine +925303011000036108 Exforge 10/320 film-coated tablet, 56, blister pack 161824 924840011000036103 Exforge 10/320 film-coated tablet, 56 924524011000036109 Exforge 10/320 film-coated tablet 20141000168104 Exforge 10/320 20141000168104 Exforge 10/320 925438011000036102 amlodipine 10 mg + valsartan 320 mg tablet, 56 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +959351000168103 Ciram 10 mg film-coated tablet, 28, blister pack 158856 959341000168100 Ciram 10 mg film-coated tablet, 28 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +790661000168104 Inpler 50 mg film-coated tablet, 90, blister pack 231453 790651000168101 Inpler 50 mg film-coated tablet, 90 790551000168102 Inpler 50 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 790641000168103 eplerenone 50 mg tablet, 90 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +83031000036103 Meloxicam (Apo) 15 mg uncoated tablet, 30, blister pack 127510 82941000036100 Meloxicam (Apo) 15 mg uncoated tablet, 30 82841000036105 Meloxicam (Apo) 15 mg uncoated tablet 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +898731000168100 Nicotinell Peppermint 2 mg lozenge, 132, blister pack 276925 898721000168103 Nicotinell Peppermint 2 mg lozenge, 132 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 898711000168105 nicotine 2 mg lozenge, 132 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +892971000168103 Behistatine 16 mg uncoated tablet, 100, blister pack 212084 892961000168109 Behistatine 16 mg uncoated tablet, 100 892871000168108 Behistatine 16 mg uncoated tablet 892861000168102 Behistatine 892861000168102 Behistatine 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +18182011000036102 Imigran FDT 50 mg film-coated tablet, 2, blister pack 106714 11340011000036107 Imigran FDT 50 mg film-coated tablet, 2 5890011000036101 Imigran FDT 50 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +1022621000168101 Betadine Antiseptic 10% solution, 250 mL, bottle 29562 1022611000168108 Betadine Antiseptic 10% solution, 250 mL 1022551000168108 Betadine Antiseptic 10% solution 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 1022601000168105 povidone-iodine 10% solution, 250 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +928884011000036101 Oxycontin 15 mg modified release tablet, 28, blister pack 143102 928246011000036109 Oxycontin 15 mg modified release tablet, 28 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +928884011000036101 Oxycontin 15 mg modified release tablet, 28, blister pack 200026 928246011000036109 Oxycontin 15 mg modified release tablet, 28 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +1042951000168104 Pryzex ODT 10 mg orally disintegrating tablet, 14, blister pack 179076 1042941000168101 Pryzex ODT 10 mg orally disintegrating tablet, 14 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1042931000168105 olanzapine 10 mg orally disintegrating tablet, 14 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +809441000168109 Docetaxel (Accord) (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 177132 809431000168100 Docetaxel (Accord) (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack 809411000168105 Docetaxel (Accord) (docetaxel 20 mg/0.5 mL) concentrated injection, 0.5 mL vial 797961000168109 Docetaxel (Accord) 797961000168109 Docetaxel (Accord) 933225891000036104 docetaxel 20 mg/0.5 mL injection [0.5 mL vial] (&) inert substance diluent [1.5 mL vial], 1 pack 33679011000036101 docetaxel 20 mg/0.5 mL injection, vial 21721011000036101 docetaxel +809441000168109 Docetaxel (Accord) (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 177132 809431000168100 Docetaxel (Accord) (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack 809421000168103 Docetaxel (Accord) (inert substance) diluent, 1.5 mL vial 797961000168109 Docetaxel (Accord) 797961000168109 Docetaxel (Accord) 933225891000036104 docetaxel 20 mg/0.5 mL injection [0.5 mL vial] (&) inert substance diluent [1.5 mL vial], 1 pack 646331000168101 inert substance diluent, 1.5 mL vial 21220011000036103 inert substance +60493011000036101 Cold Sore (Your Pharmacy) 5% cream, 5 g, tube 150377 56451011000036101 Cold Sore (Your Pharmacy) 5% cream, 5 g 53924011000036105 Cold Sore (Your Pharmacy) 5% cream 53107011000036107 Cold Sore (Your Pharmacy) 53107011000036107 Cold Sore (Your Pharmacy) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +959441000168107 Ciram 10 mg film-coated tablet, 14, bottle 158857 959321000168106 Ciram 10 mg film-coated tablet, 14 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +679811000168105 Movectro 10 mg uncoated tablet, 7, blister pack 166483 679801000168107 Movectro 10 mg uncoated tablet, 7 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679791000168106 cladribine 10 mg tablet, 7 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +954921000168106 Topiramate (Sandoz) 25 mg film-coated tablet, 60, blister pack 135754 79948011000036101 Topiramate (Sandoz) 25 mg film-coated tablet, 60 79910011000036107 Topiramate (Sandoz) 25 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +43659011000036103 Simvabell 40 mg film-coated tablet, 250, bottle 100888 41109011000036102 Simvabell 40 mg film-coated tablet, 250 5411011000036103 Simvabell 40 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46092011000036100 simvastatin 40 mg tablet, 250 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +39385011000036100 Tryzan 1.25 mg uncoated tablet, 7, blister pack 129873 39269011000036108 Tryzan 1.25 mg uncoated tablet, 7 39208011000036104 Tryzan 1.25 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39469011000036109 ramipril 1.25 mg tablet, 7 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +61611011000036109 Nurofen Liquid Capsule 200 mg soft capsule, 20, blister pack 96115 57533011000036108 Nurofen Liquid Capsule 200 mg soft capsule, 20 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +920694011000036108 Enalapril Maleate (GA) 5 mg uncoated tablet, 30, blister pack 121953 920375011000036108 Enalapril Maleate (GA) 5 mg uncoated tablet, 30 920141011000036103 Enalapril Maleate (GA) 5 mg uncoated tablet 920068011000036109 Enalapril Maleate (GA) 920068011000036109 Enalapril Maleate (GA) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +777771000168105 Ephedrine Instillation APF (extemporaneous) 1% nasal drops solution, 15 mL, bottle 777761000168104 Ephedrine Instillation APF (extemporaneous) 1% nasal drops solution, 15 mL 777741000168103 Ephedrine Instillation APF (extemporaneous) 1% nasal drops solution 777131000168106 Ephedrine Instillation APF (extemporaneous) 777131000168106 Ephedrine Instillation APF (extemporaneous) 777751000168101 ephedrine hydrochloride 1% nasal drops, 15 mL 777731000168107 ephedrine hydrochloride 1% nasal drops 37740011000036107 ephedrine +800781000168103 Actonate 5 mg film-coated tablet, 7, blister pack 163746 800771000168101 Actonate 5 mg film-coated tablet, 7 800751000168105 Actonate 5 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 800761000168107 risedronate sodium 5 mg tablet, 7 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +19681000036106 Vaxigrip Junior 2012 injection suspension, 1 x 0.25 mL syringe 97971 19241000036104 Vaxigrip Junior 2012 injection suspension, 1 x 0.25 mL syringe 18681000036102 Vaxigrip Junior 2012 injection suspension, 0.25 mL syringe 41301000168105 Vaxigrip Junior 2012 41301000168105 Vaxigrip Junior 2012 929773011000036109 influenza trivalent child vaccine 2011-2012 injection, 1 x 0.25 mL syringe 929728011000036100 influenza trivalent child vaccine 2011-2012 injection, 0.25 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +50551011000036104 Salofalk 500 mg enteric tablet, 10, blister pack 133472 49587011000036106 Salofalk 500 mg enteric tablet, 10 7583011000036105 Salofalk 500 mg enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 51492011000036101 mesalazine 500 mg enteric tablet, 10 23602011000036104 mesalazine 500 mg enteric tablet 21351011000036101 mesalazine +1001161000168101 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4, bottle 158907 1001151000168103 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4 1001141000168100 Valaciclovir 1000 (Apo) 1 g film-coated tablet 1001131000168109 Valaciclovir 1000 (Apo) 1001131000168109 Valaciclovir 1000 (Apo) 927387011000036102 valaciclovir 1 g tablet, 4 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +104691000036102 Irbesartan/HCT 300/12.5 (Sandoz) film-coated tablet, 30, blister pack 174724 101901000036103 Irbesartan/HCT 300/12.5 (Sandoz) film-coated tablet, 30 99291000036106 Irbesartan/HCT 300/12.5 (Sandoz) film-coated tablet 52801000168107 Irbesartan/HCT 300/12.5 (Sandoz) 52801000168107 Irbesartan/HCT 300/12.5 (Sandoz) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +926709011000036108 Aminoven 10% intravenous infusion injection, 1 L bottle 117661 926104011000036103 Aminoven 10% intravenous infusion injection, 1 L bottle 925612011000036106 Aminoven 10% intravenous infusion injection, 1 L bottle 22021000168108 Aminoven 10% 22021000168108 Aminoven 10% 927306011000036101 alanine 14 g/L + arginine 12 g/L + glycine 11 g/L + histidine 3 g/L + isoleucine 5 g/L + leucine 7.4 g/L + lysine acetate 9.31 g/L + methionine 4.3 g/L + phenylalanine 5.1 g/L + proline 11.2 g/L + serine 6.5 g/L + taurine 1 g/L + threonine 4.4 g/L + tryptophan 2 g/L + tyrosine 400 mg/L + valine 6.2 g/L injection, 1 L bottle 926984011000036102 alanine 14 g/L + arginine 12 g/L + glycine 11 g/L + histidine 3 g/L + isoleucine 5 g/L + leucine 7.4 g/L + lysine acetate 9.31 g/L + methionine 4.3 g/L + phenylalanine 5.1 g/L + proline 11.2 g/L + serine 6.5 g/L + taurine 1 g/L + threonine 4.4 g/L + tryptophan 2 g/L + tyrosine 400 mg/L + valine 6.2 g/L injection, bottle 926970011000036101 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + taurine + threonine + tryptophan + tyrosine + valine +21099011000036105 Combigan 0.2% / 0.5% eye drops solution, 5 mL, bottle 97690 14242011000036109 Combigan 0.2% / 0.5% eye drops solution, 5 mL 7528011000036109 Combigan 0.2% / 0.5% eye drops solution 60931000168104 Combigan 0.2% / 0.5% 60931000168104 Combigan 0.2% / 0.5% 28241011000036103 brimonidine tartrate 0.2% + timolol 0.5% eye drops, 5 mL 23555011000036105 brimonidine tartrate 0.2% + timolol 0.5% eye drops 21506011000036100 brimonidine + timolol +82421011000036101 Pariet 20 mg enteric tablet, 7, blister pack 76186 82210011000036100 Pariet 20 mg enteric tablet, 7 6828011000036107 Pariet 20 mg enteric tablet 3351011000036108 Pariet 3351011000036108 Pariet 82574011000036107 rabeprazole sodium 20 mg enteric tablet, 7 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +77230011000036107 Escitalopram (Apo) 20 mg film-coated tablet, 100, bottle 146016 76646011000036108 Escitalopram (Apo) 20 mg film-coated tablet, 100 76085011000036104 Escitalopram (Apo) 20 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1002611000168102 Rivastigmine (Apo) 1.5 mg hard capsule, 500, bottle 160570 1002601000168100 Rivastigmine (Apo) 1.5 mg hard capsule, 500 1002531000168108 Rivastigmine (Apo) 1.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002591000168107 rivastigmine 1.5 mg capsule, 500 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +929126011000036107 Oxycontin 80 mg modified release tablet, 28, bottle 200034 928483011000036108 Oxycontin 80 mg modified release tablet, 28 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +929126011000036107 Oxycontin 80 mg modified release tablet, 28, bottle 68194 928483011000036108 Oxycontin 80 mg modified release tablet, 28 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +17792011000036102 Ciprofloxacin (BW) 500 mg film-coated tablet, 14, blister pack 127781 11847011000036105 Ciprofloxacin (BW) 500 mg film-coated tablet, 14 5369011000036108 Ciprofloxacin (BW) 500 mg film-coated tablet 4377011000036101 Ciprofloxacin (BW) 4377011000036101 Ciprofloxacin (BW) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +79644011000036109 Glimepiride (Apo) 4 mg uncoated tablet, 30, blister pack 151573 79492011000036108 Glimepiride (Apo) 4 mg uncoated tablet, 30 79377011000036107 Glimepiride (Apo) 4 mg uncoated tablet 36961000168104 Glimepiride (Apo) 36961000168104 Glimepiride (Apo) 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +674031000168109 Movicol Chocolate powder for oral liquid, 30 sachets 181835 674021000168106 Movicol Chocolate powder for oral liquid, 30 sachets 674001000168102 Movicol Chocolate powder for oral liquid, 1 sachet 22351000168103 Movicol 22351000168103 Movicol 674011000168104 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 30 sachets 673991000168105 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 1 sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +43775011000036105 Fluconazole (Hexal) 100 mg hard capsule, 28, bottle 104289 11285011000036100 Fluconazole (Hexal) 100 mg hard capsule, 28 5128011000036100 Fluconazole (Hexal) 100 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +1071891000168107 Day plus Night Cold and Flu Relief PE (Priceline) (8 x Day tablets, 4 x Night tablets), 12, blister pack 162417 1071881000168109 Day plus Night Cold and Flu Relief PE (Priceline) (8 x Day tablets, 4 x Night tablets), 12 1071861000168100 Day plus Night Cold and Flu Relief PE (Night) (Priceline) uncoated tablet 1071821000168105 Day plus Night Cold and Flu Relief PE (Priceline) 1071841000168104 Day plus Night Cold and Flu Relief PE (Night) (Priceline) 1071871000168106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [8] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [4], 12 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1071891000168107 Day plus Night Cold and Flu Relief PE (Priceline) (8 x Day tablets, 4 x Night tablets), 12, blister pack 162417 1071881000168109 Day plus Night Cold and Flu Relief PE (Priceline) (8 x Day tablets, 4 x Night tablets), 12 1071851000168102 Day plus Night Cold and Flu Relief PE (Day) (Priceline) uncoated tablet 1071821000168105 Day plus Night Cold and Flu Relief PE (Priceline) 1071831000168108 Day plus Night Cold and Flu Relief PE (Day) (Priceline) 1071871000168106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [8] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [4], 12 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +20546011000036101 Rilutek 50 mg film-coated tablet, 56, blister pack 79744 13743011000036106 Rilutek 50 mg film-coated tablet, 56 7027011000036106 Rilutek 50 mg film-coated tablet 3847011000036100 Rilutek 3847011000036100 Rilutek 27912011000036108 riluzole 50 mg tablet, 56 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +1022941000168104 Bugesic Sugar Free 100 mg/5 mL oral liquid suspension, 100 mL, bottle 95346 1022931000168108 Bugesic Sugar Free 100 mg/5 mL oral liquid suspension, 100 mL 1022921000168105 Bugesic Sugar Free 100 mg/5 mL oral liquid suspension, 5 mL 53403011000036104 Bugesic 53403011000036104 Bugesic 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +817341000168108 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 20, blister pack 273819 817331000168104 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 20 817321000168102 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +817341000168108 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 20, blister pack 193082 817331000168104 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet, 20 817321000168102 Paracetamol plus Codeine (Blooms The Chemist) uncoated tablet 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 817311000168109 Paracetamol plus Codeine (Blooms The Chemist) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +79011011000036106 Azithromycin (Sandoz) 500 mg film-coated tablet, 2, blister pack 158292 78870011000036106 Azithromycin (Sandoz) 500 mg film-coated tablet, 2 78676011000036100 Azithromycin (Sandoz) 500 mg film-coated tablet 78603011000036100 Azithromycin (Sandoz) 78603011000036100 Azithromycin (Sandoz) 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +18897011000036108 Pilopt 6% eye drops solution, 15 mL, bottle 19766 12205011000036100 Pilopt 6% eye drops solution, 15 mL 5491011000036102 Pilopt 6% eye drops solution 3693011000036106 Pilopt 3693011000036106 Pilopt 27791011000036107 pilocarpine hydrochloride 6% eye drops, 15 mL 23121011000036104 pilocarpine hydrochloride 6% eye drops 21254011000036109 pilocarpine +50389011000036105 PKU Gel powder for oral liquid, 30 x 20 g sachets 49283011000036107 PKU Gel powder for oral liquid, 30 x 20 g sachets 265641000168103 PKU Gel powder for oral liquid, 20 g sachet 1281000168104 PKU Gel 1281000168104 PKU Gel 51470011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 20 g sachets 242351000168109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 20 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +19728011000036100 Combivir film-coated tablet, 60, blister pack 61489 12981011000036104 Combivir film-coated tablet, 60 6270011000036101 Combivir film-coated tablet 3520011000036102 Combivir 3520011000036102 Combivir 27482011000036109 lamivudine 150 mg + zidovudine 300 mg tablet, 60 22828011000036109 lamivudine 150 mg + zidovudine 300 mg tablet 21904011000036103 lamivudine + zidovudine +915531000168108 Ampicillin (CH) 500 mg powder for injection, 5 vials 203944 915521000168105 Ampicillin (CH) 500 mg powder for injection, 5 vials 915511000168103 Ampicillin (CH) 500 mg powder for injection, 500 mg vial 915501000168101 Ampicillin (CH) 915501000168101 Ampicillin (CH) 28098011000036109 ampicillin 500 mg injection, 5 vials 23406011000036103 ampicillin 500 mg injection, vial 21671011000036106 ampicillin +929109011000036106 Pioglitazone (Chemmart) 15 mg uncoated tablet, 7, blister pack 166918 928470011000036106 Pioglitazone (Chemmart) 15 mg uncoated tablet, 7 927991011000036102 Pioglitazone (Chemmart) 15 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929267011000036103 pioglitazone 15 mg tablet, 7 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +156731000036108 Olanzapine (GH) 5 mg uncoated tablet, 28, blister pack 157858 155771000036104 Olanzapine (GH) 5 mg uncoated tablet, 28 154681000036107 Olanzapine (GH) 5 mg uncoated tablet 154641000036103 Olanzapine (GH) 154641000036103 Olanzapine (GH) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +74916011000036109 Taipan Antivenom (CSL) 12 000 units injection solution, 1 vial 74898 74403011000036103 Taipan Antivenom (CSL) 12 000 units injection solution, 1 vial 73926011000036104 Taipan Antivenom (CSL) 12 000 units injection solution, vial 73773011000036104 Taipan Antivenom (CSL) 73773011000036104 Taipan Antivenom (CSL) 75500011000036108 taipan snake antivenom 12 000 units injection, 1 vial 75100011000036101 taipan snake antivenom 12 000 units injection, vial 74983011000036101 taipan snake antivenom +85521000036109 Razit 10 mg enteric tablet, 28, blister pack 189215 84631000036108 Razit 10 mg enteric tablet, 28 84211000036101 Razit 10 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1025091000168101 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 56, blister pack 193305 1025081000168104 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 56 1025031000168100 Pregabalin (Blooms The Chemist) 300 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +903021000168102 Amlodipine (Blooms The Chemist) 2.5 mg uncoated tablet, 30, blister pack 135126 903011000168109 Amlodipine (Blooms The Chemist) 2.5 mg uncoated tablet, 30 902991000168105 Amlodipine (Blooms The Chemist) 2.5 mg uncoated tablet 723011000168109 Amlodipine (Blooms The Chemist) 723011000168109 Amlodipine (Blooms The Chemist) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +69292011000036108 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 19503 67092011000036106 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 65521011000036105 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71660011000036102 glucose 5% (2.5 g/50 mL) injection, 50 mL bag 70112011000036109 glucose 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +68803011000036108 Silic 15 cream, 7 g sachet 10665 66547011000036102 Silic 15 cream, 7 g sachet 65399011000036101 Silic 15 cream, 7 g sachet 21301000168108 Silic 15 21301000168108 Silic 15 71277011000036109 dimeticone-350 15% + glycerol 2% cream, 7 g sachet 69926011000036101 dimeticone-350 15% + glycerol 2% cream, sachet 32614011000036102 dimeticone-350 + glycerol +907271000168102 Celecoxib (Medis) 100 mg capsule, 20, blister pack 204621 907261000168108 Celecoxib (Medis) 100 mg capsule, 20 907231000168100 Celecoxib (Medis) 100 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +18413011000036106 Microgynon 30 sugar coated tablet, 4 x 21, blister packs 10692 11345011000036103 Microgynon 30 sugar coated tablet, 4 x 21 4847011000036103 Microgynon 30 sugar coated tablet 700016061000036107 Microgynon 30 700016061000036107 Microgynon 30 26616011000036107 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet, 4 x 21 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +1033631000168105 Atomoxetine (CH) 25 mg hard capsule, 56, blister pack 234819 1033621000168107 Atomoxetine (CH) 25 mg hard capsule, 56 1033511000168101 Atomoxetine (CH) 25 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830501000168109 atomoxetine 25 mg capsule, 56 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +906991000168109 Celecoxib (GA) 200 mg capsule, 30, blister pack 204619 906981000168106 Celecoxib (GA) 200 mg capsule, 30 906871000168103 Celecoxib (GA) 200 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +73254011000036107 Vectibix 100 mg/5 mL concentrated injection, 5 mL vial 128270 73051011000036100 Vectibix 100 mg/5 mL concentrated injection, 5 mL vial 72962011000036103 Vectibix 100 mg/5 mL concentrated injection, 5 mL vial 72907011000036100 Vectibix 72907011000036100 Vectibix 73456011000036103 panitumumab 100 mg/5 mL injection, 5 mL vial 73364011000036109 panitumumab 100 mg/5 mL injection, vial 73357011000036107 panitumumab +774481000168107 Rizatriptan (Apo) 10 mg orally disintegrating tablet, 2, blister pack 222334 774471000168109 Rizatriptan (Apo) 10 mg orally disintegrating tablet, 2 774461000168103 Rizatriptan (Apo) 10 mg orally disintegrating tablet 774451000168100 Rizatriptan (Apo) 774451000168100 Rizatriptan (Apo) 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +920763011000036101 Frusemide (Sandoz) 40 mg uncoated tablet, 100, bottle 64718 920442011000036108 Frusemide (Sandoz) 40 mg uncoated tablet, 100 920183011000036106 Frusemide (Sandoz) 40 mg uncoated tablet 920076011000036100 Frusemide (Sandoz) 920076011000036100 Frusemide (Sandoz) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +19676011000036109 Captohexal 25 mg film-coated tablet, 90, bottle 60108 12977011000036104 Captohexal 25 mg film-coated tablet, 90 6266011000036108 Captohexal 25 mg film-coated tablet 4103011000036105 Captohexal 4103011000036105 Captohexal 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +17757011000036107 Mestinon 10 mg uncoated tablet, 100, bottle 13747 12005011000036107 Mestinon 10 mg uncoated tablet, 100 5268011000036109 Mestinon 10 mg uncoated tablet 47101000168104 Mestinon 47101000168104 Mestinon 26843011000036102 pyridostigmine bromide 10 mg tablet, 100 22224011000036109 pyridostigmine bromide 10 mg tablet 21240011000036101 pyridostigmine +671381000168105 Amlodipine/Atorvastatin 5/20 (Chemmart) film-coated tablet, 30, blister pack 214368 671371000168107 Amlodipine/Atorvastatin 5/20 (Chemmart) film-coated tablet, 30 671361000168101 Amlodipine/Atorvastatin 5/20 (Chemmart) film-coated tablet 671351000168103 Amlodipine/Atorvastatin 5/20 (Chemmart) 671351000168103 Amlodipine/Atorvastatin 5/20 (Chemmart) 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +73284011000036101 Jurnista 16 mg modified release tablet, 20, blister pack 141533 73082011000036104 Jurnista 16 mg modified release tablet, 20 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73480011000036105 hydromorphone hydrochloride 16 mg modified release tablet, 20 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +920660011000036101 Leucovorin Calcium (DBL) 300 mg/30 mL injection, 30 mL vial 116688 920361011000036101 Leucovorin Calcium (DBL) 300 mg/30 mL injection, 30 mL vial 920130011000036106 Leucovorin Calcium (DBL) 300 mg/30 mL injection, 30 mL vial 920091011000036103 Leucovorin Calcium (DBL) 920091011000036103 Leucovorin Calcium (DBL) 26684011000036102 folinic acid 300 mg/30 mL injection, 30 mL vial 22080011000036101 folinic acid 300 mg/30 mL injection, vial 21617011000036108 folinic acid +933239131000036109 Fentanyl (Sandoz) 25 microgram/hour patch, 4, sachet 152569 933235791000036106 Fentanyl (Sandoz) 25 microgram/hour patch, 4 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235801000036105 fentanyl 25 microgram/hour patch, 4 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +44058011000036102 Xylocaine 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules 48362 41545011000036103 Xylocaine 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules 40052011000036103 Xylocaine 2% (100 mg/5 mL) injection solution, 5 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 46392011000036104 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, 50 x 5 mL ampoules 45126011000036100 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +146041000036102 Budenofalk 3 mg enteric capsule, 90, blister pack 179566 144761000036105 Budenofalk 3 mg enteric capsule, 90 143411000036102 Budenofalk 3 mg enteric capsule 143301000036105 Budenofalk 143301000036105 Budenofalk 144771000036102 budesonide 3 mg enteric capsule, 90 147291000036103 budesonide 3 mg enteric capsule 21307011000036104 budesonide +52762011000036106 Lisinopril (Apo) 20 mg tablet, 30, blister pack 143982 52576011000036101 Lisinopril (Apo) 20 mg tablet, 30 52425011000036101 Lisinopril (Apo) 20 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +52762011000036106 Lisinopril (Apo) 20 mg tablet, 30, blister pack 213395 52576011000036101 Lisinopril (Apo) 20 mg tablet, 30 52425011000036101 Lisinopril (Apo) 20 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +806491000168105 Irbesartan HCTZ 150/12.5 (Blooms The Chemist) film-coated tablet, 30, blister pack 259572 806481000168107 Irbesartan HCTZ 150/12.5 (Blooms The Chemist) film-coated tablet, 30 806471000168109 Irbesartan HCTZ 150/12.5 (Blooms The Chemist) film-coated tablet 806461000168103 Irbesartan HCTZ 150/12.5 (Blooms The Chemist) 806461000168103 Irbesartan HCTZ 150/12.5 (Blooms The Chemist) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +34763011000036101 Dilaudid 2 mg uncoated tablet, 100, bottle 67353 34344011000036108 Dilaudid 2 mg uncoated tablet, 100 6476011000036102 Dilaudid 2 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35192011000036109 hydromorphone hydrochloride 2 mg tablet, 100 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +830251000168106 Atomoxetine (Apo) 60 mg hard capsule, 14, blister pack 234788 830241000168109 Atomoxetine (Apo) 60 mg hard capsule, 14 830201000168107 Atomoxetine (Apo) 60 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830231000168100 atomoxetine 60 mg capsule, 14 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +145961000036106 Octagam 5% 2.5 g/50 mL injection solution, 50 mL bottle 113926 144691000036106 Octagam 5% 2.5 g/50 mL injection solution, 50 mL bottle 143961000036105 Octagam 5% 2.5 g/50 mL injection solution, 50 mL bottle 14211000168106 Octagam 5% 14211000168106 Octagam 5% 75356011000036100 normal immunoglobulin 2.5 g/50 mL injection, 50 mL bottle 75015011000036104 normal immunoglobulin 2.5 g/50 mL injection, bottle 74965011000036103 normal immunoglobulin +61530011000036104 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 50 mL, bottle 93610 57455011000036103 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 50 mL 54307011000036102 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 5 mL 45481000168108 Ibuprofen (Pharmacy Health) 45481000168108 Ibuprofen (Pharmacy Health) 63869011000036106 ibuprofen 100 mg/5 mL oral liquid, 50 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +156651000036105 Allevyn Life (66801070) 21 cm x 21 cm dressing, 10, carton 92774 155661000036101 Allevyn Life (66801070) 21 cm x 21 cm dressing, 10 155061000036105 Allevyn Life (66801070) 21 cm x 21 cm dressing 60791000168102 Allevyn Life (66801070) 60791000168102 Allevyn Life (66801070) 155671000036109 dressing foam with silicone 21 cm x 21 cm dressing, 10 155071000036102 dressing foam with silicone 21 cm x 21 cm dressing 157031000036107 dressing foam with silicone +85025011000036106 Easiphen oral liquid solution, 18 x 250 mL cans 84867011000036103 Easiphen oral liquid solution, 18 x 250 mL 263531000168109 Easiphen oral liquid solution 48413011000036108 Easiphen 48413011000036108 Easiphen 85166011000036100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 18 x 250 mL 263381000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +739841000168100 Flubiclox 500 mg powder for injection, 10 vials 92841 739831000168109 Flubiclox 500 mg powder for injection, 10 vials 7313011000036105 Flubiclox 500 mg powder for injection, 500 mg vial 3773011000036108 Flubiclox 3773011000036108 Flubiclox 739821000168106 flucloxacillin 500 mg injection, 10 vials 23408011000036104 flucloxacillin 500 mg injection, vial 21623011000036108 flucloxacillin +907311000168102 Celecoxib (Medis) 100 mg capsule, 60, blister pack 204621 907301000168100 Celecoxib (Medis) 100 mg capsule, 60 907231000168100 Celecoxib (Medis) 100 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1082651000168100 Benzatropine (Phebra) 2 mg/2 mL injection solution, 10 x 2 mL vials 276242 1082641000168102 Benzatropine (Phebra) 2 mg/2 mL injection solution, 10 x 2 mL vials 1082601000168104 Benzatropine (Phebra) 2 mg/2 mL injection solution, 2 mL vial 1082591000168106 Benzatropine (Phebra) 1082591000168106 Benzatropine (Phebra) 155691000036108 benzatropine mesilate 2 mg/2 mL injection, 10 x 2 mL vials 154851000036101 benzatropine mesilate 2 mg/2 mL injection, vial 21334011000036102 benzatropine +956291000168109 Duavive 0.45/20 modified release tablet, 28, blister pack 262525 956281000168106 Duavive 0.45/20 modified release tablet, 28 956231000168105 Duavive 0.45/20 modified release tablet 956201000168103 Duavive 0.45/20 956201000168103 Duavive 0.45/20 956271000168108 conjugated estrogens 450 microgram + bazedoxifene 20 mg modified release tablet, 28 956221000168107 conjugated estrogens 450 microgram + bazedoxifene 20 mg modified release tablet 956211000168100 conjugated estrogens + bazedoxifene +1065381000168105 Codoxamol uncoated tablet, 40, bottle 161869 1065371000168107 Codoxamol uncoated tablet, 40 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +894341000168104 Entac 500 microgram film-coated tablet, 30, blister pack 267116 894331000168108 Entac 500 microgram film-coated tablet, 30 894291000168102 Entac 500 microgram film-coated tablet 894271000168103 Entac 894271000168103 Entac 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +1031531000168107 Aten 50 mg film-coated tablet, 250, bottle 197717 1031521000168109 Aten 50 mg film-coated tablet, 250 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 993711000168109 atenolol 50 mg tablet, 250 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +21051011000036102 Tamsil 250 mg uncoated tablet, 42, blister pack 167577 14196011000036101 Tamsil 250 mg uncoated tablet, 42 7477011000036100 Tamsil 250 mg uncoated tablet 3839011000036106 Tamsil 3839011000036106 Tamsil 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +21051011000036102 Tamsil 250 mg uncoated tablet, 42, blister pack 96884 14196011000036101 Tamsil 250 mg uncoated tablet, 42 7477011000036100 Tamsil 250 mg uncoated tablet 3839011000036106 Tamsil 3839011000036106 Tamsil 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +956631000168107 Paclitaxel (Genepharm) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 107353 956611000168102 Paclitaxel (Genepharm) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 956581000168109 Paclitaxel (Genepharm) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 956571000168106 Paclitaxel (Genepharm) 956571000168106 Paclitaxel (Genepharm) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +60506011000036101 Cold and Flu Relief PE (Chemists' Own) uncoated tablet, 24, blister pack 150873 56464011000036106 Cold and Flu Relief PE (Chemists' Own) uncoated tablet, 24 53930011000036102 Cold and Flu Relief PE (Chemists' Own) uncoated tablet 53188011000036109 Cold and Flu Relief PE (Chemists' Own) 53188011000036109 Cold and Flu Relief PE (Chemists' Own) 63380011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +921939011000036108 Hydrogen Peroxide (Gold Cross) 6% solution, 400 mL, bottle 27241 921498011000036106 Hydrogen Peroxide (Gold Cross) 6% solution, 400 mL 921039011000036103 Hydrogen Peroxide (Gold Cross) 6% solution 920953011000036101 Hydrogen Peroxide (Gold Cross) 920953011000036101 Hydrogen Peroxide (Gold Cross) 78186011000036108 hydrogen peroxide 6% solution, 400 mL 77534011000036107 hydrogen peroxide 6% solution 69793011000036105 hydrogen peroxide +928947011000036106 Topira-Lax 25 mg film-coated tablet, 60, bottle 155204 928308011000036109 Topira-Lax 25 mg film-coated tablet, 60 927937011000036104 Topira-Lax 25 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +706001000168107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L, pump pack 705991000168106 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 705981000168108 glycerol 10% + cetomacrogol aqueous cream, 1 L 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +954441000168106 Col 500 mg soft capsule, 100, bottle 27891 954431000168102 Col 500 mg soft capsule, 100 954411000168107 Col 500 mg soft capsule 954341000168104 Col 954341000168104 Col 954421000168100 clofibrate 500 mg capsule, 100 954401000168109 clofibrate 500 mg capsule 954391000168107 clofibrate +923918011000036100 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 10, blister pack 170439 923462011000036104 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 10 923095011000036100 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +37367011000036102 Tobramycin PF (Pfizer (Perth)) 80 mg/2 mL injection solution, 5 x 2 mL ampoules 10776 36636011000036100 Tobramycin PF (Pfizer (Perth)) 80 mg/2 mL injection solution, 5 x 2 mL ampoules 36028011000036108 Tobramycin PF (Pfizer (Perth)) 80 mg/2 mL injection solution, 2 mL ampoule 47241000168105 Tobramycin PF (Pfizer (Perth)) 47241000168105 Tobramycin PF (Pfizer (Perth)) 26553011000036100 tobramycin 80 mg/2 mL injection, 5 x 2 mL ampoules 21962011000036106 tobramycin 80 mg/2 mL injection, ampoule 21646011000036100 tobramycin +44156011000036109 Lioresal 50 microgram/mL intrathecal injection, 5 x 1 mL ampoules 53837 41632011000036101 Lioresal 50 microgram/mL intrathecal injection, 5 x 1 mL ampoules 40112011000036104 Lioresal 50 microgram/mL intrathecal injection, ampoule 3860011000036106 Lioresal 3860011000036106 Lioresal 46451011000036105 baclofen 50 microgram/mL intrathecal injection, 5 x 1 mL ampoules 45161011000036104 baclofen 50 microgram/mL intrathecal injection, ampoule 21227011000036102 baclofen +69176011000036102 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 50 x 10 mL ampoules 16362 66976011000036107 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 50 x 10 mL ampoules 65233011000036102 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 10 mL ampoule 65081011000036103 Calcium Chloride (Phebra) 65081011000036103 Calcium Chloride (Phebra) 71549011000036107 calcium chloride dihydrate 1 g/10 mL injection, 50 x 10 mL ampoules 70056011000036109 calcium chloride dihydrate 1 g/10 mL injection, ampoule 69845011000036104 calcium chloride dihydrate +999151000168108 Sativex 80 mg/mL oral spray, 10 mL, pump pack 181978 999141000168106 Sativex 80 mg/mL oral spray, 10 mL 999121000168100 Sativex 80 mg/mL oral spray, actuation 999091000168104 Sativex 999091000168104 Sativex 999131000168102 nabiximols 80 mg/mL oral spray, 10 mL 999111000168107 nabiximols 80 mg/mL oral spray, actuation 999101000168109 nabiximols +19993011000036108 Oxycontin 40 mg modified release tablet, 20, bottle 68192 13231011000036101 Oxycontin 40 mg modified release tablet, 20 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +885661000168107 Warfarin (Blooms The Chemist) 1 mg tablet, 50, bottle 225728 885651000168105 Warfarin (Blooms The Chemist) 1 mg tablet, 50 885641000168108 Warfarin (Blooms The Chemist) 1 mg tablet 885631000168104 Warfarin (Blooms The Chemist) 885631000168104 Warfarin (Blooms The Chemist) 27094011000036107 warfarin sodium 1 mg tablet, 50 22463011000036103 warfarin sodium 1 mg tablet 21248011000036104 warfarin +43981011000036108 Provera 2.5 mg uncoated tablet, 28, blister pack 42932 41473011000036107 Provera 2.5 mg uncoated tablet, 28 39999011000036109 Provera 2.5 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 46319011000036108 medroxyprogesterone acetate 2.5 mg tablet, 28 45075011000036104 medroxyprogesterone acetate 2.5 mg tablet 21378011000036107 medroxyprogesterone +18528011000036103 Risperdal Quicklet 4 mg orally disintegrating tablet, 28, blister pack 115469 11495011000036100 Risperdal Quicklet 4 mg orally disintegrating tablet, 28 4637011000036106 Risperdal Quicklet 4 mg orally disintegrating tablet 10371000168103 Risperdal Quicklet 10371000168103 Risperdal Quicklet 47671000036108 risperidone 4 mg orally disintegrating tablet, 28 47591000036106 risperidone 4 mg orally disintegrating tablet 21338011000036109 risperidone +68692011000036108 Savlon cream, 50 g, tube 11247 66595011000036102 Savlon cream, 50 g 65221011000036100 Savlon cream 64957011000036103 Savlon 64957011000036103 Savlon 71318011000036105 chlorhexidine hydrochloride 0.1% + cetrimide 0.5% cream, 50 g 69947011000036101 chlorhexidine hydrochloride 0.1% + cetrimide 0.5% cream 69756011000036105 chlorhexidine + cetrimide +926726011000036109 Vancomycin (ICP) 500 mg powder for injection, 1 vial 118999 926115011000036102 Vancomycin (ICP) 500 mg powder for injection, 1 vial 925634011000036107 Vancomycin (ICP) 500 mg powder for injection, 500 mg vial 925584011000036107 Vancomycin (ICP) 925584011000036107 Vancomycin (ICP) 27499011000036100 vancomycin 500 mg injection, 1 vial 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +870551000168106 Desven 50 mg modified release tablet, 14, blister pack 218074 870381000168106 Desven 50 mg modified release tablet, 14 870351000168104 Desven 50 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1069721000168107 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 12, blister pack 211368 1069711000168100 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 12 1069671000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +83351000036109 Reyataz 300 mg hard capsule, 30, bottle 134967 83191000036103 Reyataz 300 mg hard capsule, 30 32235011000036109 Reyataz 300 mg hard capsule 3083011000036101 Reyataz 3083011000036101 Reyataz 83201000036101 atazanavir 300 mg capsule, 30 32697011000036107 atazanavir 300 mg capsule 21324011000036104 atazanavir +765741000168102 Azacitidine (RZ) 100 mg powder for injection, 1 vial 231949 765731000168106 Azacitidine (RZ) 100 mg powder for injection, 1 vial 765721000168108 Azacitidine (RZ) 100 mg powder for injection, 100 mg vial 765711000168101 Azacitidine (RZ) 765711000168101 Azacitidine (RZ) 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +868621000168108 Atomerra 10 mg hard capsule, 7, blister pack 234799 868611000168101 Atomerra 10 mg hard capsule, 7 868601000168104 Atomerra 10 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +77362011000036105 Zolaten 5% cream, 5 g, tube 64689 76778011000036102 Zolaten 5% cream, 5 g 76177011000036109 Zolaten 5% cream 75937011000036106 Zolaten 75937011000036106 Zolaten 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +20083011000036100 Zestril 5 mg uncoated tablet, 30, blister pack 70837 13311011000036104 Zestril 5 mg uncoated tablet, 30 6597011000036104 Zestril 5 mg uncoated tablet 4230011000036107 Zestril 4230011000036107 Zestril 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +933232061000036108 Sertraline (Sandoz) 50 mg film-coated tablet, 30, blister pack 98697 933226561000036104 Sertraline (Sandoz) 50 mg film-coated tablet, 30 933221491000036104 Sertraline (Sandoz) 50 mg film-coated tablet 933219201000036102 Sertraline (Sandoz) 933219201000036102 Sertraline (Sandoz) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1022761000168103 Epiduo Forte gel, 30 g, pump pack 273168 1022751000168100 Epiduo Forte gel, 30 g 1022701000168104 Epiduo Forte gel 1022681000168102 Epiduo Forte 1022681000168102 Epiduo Forte 1022741000168102 adapalene 0.3% + benzoyl peroxide 2.5% gel, 30 g 1022691000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +50222011000036104 MSUD Express 15 powder for oral liquid, 30 x 25 g sachets 49287011000036103 MSUD Express 15 powder for oral liquid, 30 x 25 g sachets 169201000168104 MSUD Express 15 powder for oral liquid, 25 g sachet 35901000168108 MSUD Express 15 35901000168108 MSUD Express 15 51274011000036101 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 30 x 25 g sachets 169081000168101 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 25 g sachet 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +928581000168109 Cavstat 5 mg film-coated tablet, 100, bottle 235277 928571000168106 Cavstat 5 mg film-coated tablet, 100 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 928561000168100 rosuvastatin 5 mg tablet, 100 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +931549011000036103 Danset 4 mg film-coated tablet, 4, blister pack 163434 930710011000036107 Danset 4 mg film-coated tablet, 4 930024011000036108 Danset 4 mg film-coated tablet 12931000168101 Danset 12931000168101 Danset 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +680131000168106 Irinotecan Hydrochloride Trihydrate (Kabi) 300 mg/15 mL concentrated injection, 15 mL vial 206415 680121000168108 Irinotecan Hydrochloride Trihydrate (Kabi) 300 mg/15 mL concentrated injection, 15 mL vial 680111000168101 Irinotecan Hydrochloride Trihydrate (Kabi) 300 mg/15 mL concentrated injection, 15 mL vial 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 51560011000036109 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, 15 mL vial 51003011000036104 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, vial 21503011000036106 irinotecan +44593011000036104 Vfend 50 mg film-coated tablet, 2, blister pack 82507 42046011000036109 Vfend 50 mg film-coated tablet, 2 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46814011000036109 voriconazole 50 mg tablet, 2 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +663021000168102 Citalopram (AN) 20 mg film-coated tablet, 30, bottle 171337 663011000168109 Citalopram (AN) 20 mg film-coated tablet, 30 662301000168103 Citalopram (AN) 20 mg film-coated tablet 662261000168106 Citalopram (AN) 662261000168106 Citalopram (AN) 933202011000036101 citalopram 20 mg tablet, 30 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +907081000168105 Amisulpride (AN) 50 mg uncoated tablet, 60, blister pack 234697 907071000168107 Amisulpride (AN) 50 mg uncoated tablet, 60 907001000168102 Amisulpride (AN) 50 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +83183011000036102 Carvedilol (Generic Health) 12.5 mg uncoated tablet, 60, blister pack 152420 83129011000036106 Carvedilol (Generic Health) 12.5 mg uncoated tablet, 60 83073011000036102 Carvedilol (Generic Health) 12.5 mg uncoated tablet 83061011000036108 Carvedilol (Generic Health) 83061011000036108 Carvedilol (Generic Health) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +890001000168106 Gastrolyte Ready to Drink Strawberry oral liquid solution, 4 x 250 mL, bottles 198537 889991000168105 Gastrolyte Ready to Drink Strawberry oral liquid solution, 4 x 250 mL 889941000168102 Gastrolyte Ready to Drink Strawberry oral liquid solution 889821000168100 Gastrolyte Ready to Drink 889821000168100 Gastrolyte Ready to Drink 889911000168101 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid, 4 x 250 mL 889831000168102 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +765781000168107 Azacitidine (DRLA) 100 mg powder for injection, 1 vial 231950 765771000168109 Azacitidine (DRLA) 100 mg powder for injection, 1 vial 765761000168103 Azacitidine (DRLA) 100 mg powder for injection, 100 mg vial 765751000168100 Azacitidine (DRLA) 765751000168100 Azacitidine (DRLA) 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +915691000168106 Xylocard 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 12032 915681000168108 Xylocard 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 915611000168102 Xylocard 2% (100 mg/5 mL) injection solution, 5 mL ampoule 4153011000036102 Xylocard 4153011000036102 Xylocard 46391011000036105 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, 5 x 5 mL ampoules 45126011000036100 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +872881000168100 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 19447 872871000168103 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 872851000168107 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 929875011000036107 Synthamin 13 Amino Acid 8% with Electrolytes 929875011000036107 Synthamin 13 Amino Acid 8% with Electrolytes 872861000168109 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles 872841000168105 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle 77430011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +85361000036108 Glypressin 850 microgram/8.5 mL injection solution, 5 x 8.5 mL ampoules 177708 84611000036104 Glypressin 850 microgram/8.5 mL injection solution, 5 x 8.5 mL ampoules 84121000036103 Glypressin 850 microgram/8.5 mL injection solution, 8.5 mL ampoule 83971000036100 Glypressin 83971000036100 Glypressin 84621000036106 terlipressin 850 microgram/8.5 mL injection, 5 x 8.5 mL ampoules 84131000036101 terlipressin 850 microgram/8.5 mL injection, ampoule 85671000036109 terlipressin +13341000036109 Quetiaccord 25 mg film-coated tablet, 60, blister pack 170852 8561000036105 Quetiaccord 25 mg film-coated tablet, 60 3741000036105 Quetiaccord 25 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +61432011000036109 Imodium Melt 2 mg orally disintegrating tablet, 20, blister pack 83176 57357011000036101 Imodium Melt 2 mg orally disintegrating tablet, 20 54283011000036103 Imodium Melt 2 mg orally disintegrating tablet 7341000168106 Imodium Melt 7341000168106 Imodium Melt 47731000036100 loperamide hydrochloride 2 mg orally disintegrating tablet, 20 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +933230451000036101 Saphris 10 mg sublingual wafer, 60, blister pack 166561 933224431000036102 Saphris 10 mg sublingual wafer, 60 933220161000036107 Saphris 10 mg sublingual wafer 933218931000036105 Saphris 933218931000036105 Saphris 933224441000036107 asenapine 10 mg sublingual wafer, 60 933220171000036104 asenapine 10 mg sublingual wafer 933232091000036101 asenapine +50273011000036105 Tubigrip D (1546) 7.5 cm x 1 m bandage, 1, carton 49303011000036104 Tubigrip D (1546) 7.5 cm x 1 m bandage, 1 48724011000036106 Tubigrip D (1546) 7.5 cm x 1 m bandage 18281000168107 Tubigrip D (1546) 18281000168107 Tubigrip D (1546) 51289011000036106 bandage tubular 7.5 cm x 1 m bandage, 1 50818011000036102 bandage tubular 7.5 cm x 1 m bandage 50697011000036107 bandage tubular +19115011000036106 Alprim 300 mg uncoated tablet, 7, bottle 43120 13071011000036109 Alprim 300 mg uncoated tablet, 7 6355011000036103 Alprim 300 mg uncoated tablet 3675011000036101 Alprim 3675011000036101 Alprim 27532011000036107 trimethoprim 300 mg tablet, 7 22872011000036107 trimethoprim 300 mg tablet 21246011000036103 trimethoprim +929039011000036108 Sertraline (DRLA) 100 mg film-coated tablet, 10, blister pack 160777 928400011000036101 Sertraline (DRLA) 100 mg film-coated tablet, 10 927967011000036107 Sertraline (DRLA) 100 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 929238011000036107 sertraline 100 mg tablet, 10 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +87642011000036109 Tramadol (Sandoz) 50 mg hard capsule, 20, blister pack 141240 87423011000036103 Tramadol (Sandoz) 50 mg hard capsule, 20 87302011000036107 Tramadol (Sandoz) 50 mg hard capsule 87293011000036107 Tramadol (Sandoz) 87293011000036107 Tramadol (Sandoz) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +104851000036105 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet, 30, blister pack 213302 101981000036109 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet, 30 99081000036101 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet 33111000168105 Irbesartan HCTZ 150/12.5 (Apo) 33111000168105 Irbesartan HCTZ 150/12.5 (Apo) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104851000036105 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet, 30, blister pack 175211 101981000036109 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet, 30 99081000036101 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet 33111000168105 Irbesartan HCTZ 150/12.5 (Apo) 33111000168105 Irbesartan HCTZ 150/12.5 (Apo) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +757241000168108 Palexia SR 25 mg modified release tablet, 28, blister pack 229737 757231000168104 Palexia SR 25 mg modified release tablet, 28 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757221000168102 tapentadol 25 mg modified release tablet, 28 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +907041000168100 Celecoxib (GA) 200 mg capsule, 50, blister pack 204619 907031000168109 Celecoxib (GA) 200 mg capsule, 50 906871000168103 Celecoxib (GA) 200 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +44743011000036106 Nuvaring vaginal drug delivery system, 1 ring, sachet 96229 42188011000036107 Nuvaring vaginal drug delivery system, 1 ring 40378011000036104 Nuvaring vaginal drug delivery system, 1 ring 39600011000036104 Nuvaring 39600011000036104 Nuvaring 46949011000036108 etonogestrel 120 microgram/24 hours + ethinylestradiol 15 microgram/24 hours vaginal drug delivery system, 1 ring 45352011000036109 etonogestrel 120 microgram/24 hours + ethinylestradiol 15 microgram/24 hours vaginal drug delivery system, 1 ring 44876011000036103 etonogestrel + ethinylestradiol +13421000036105 Valaciclovir (Actavis) 500 mg film-coated tablet, 30, blister pack 170177 8481000036101 Valaciclovir (Actavis) 500 mg film-coated tablet, 30 2681000036102 Valaciclovir (Actavis) 500 mg film-coated tablet 761000036109 Valaciclovir (Actavis) 761000036109 Valaciclovir (Actavis) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +13421000036105 Valaciclovir (Actavis) 500 mg film-coated tablet, 30, blister pack 170176 8481000036101 Valaciclovir (Actavis) 500 mg film-coated tablet, 30 2681000036102 Valaciclovir (Actavis) 500 mg film-coated tablet 761000036109 Valaciclovir (Actavis) 761000036109 Valaciclovir (Actavis) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +748611000168106 Ketamine (Claris) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 219960 748601000168108 Ketamine (Claris) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 748591000168101 Ketamine (Claris) 200 mg/2 mL injection solution, 2 mL ampoule 748581000168104 Ketamine (Claris) 748581000168104 Ketamine (Claris) 720621000168100 ketamine 200 mg/2 mL injection, 5 x 2 mL ampoules 720601000168109 ketamine 200 mg/2 mL injection, ampoule 34843011000036109 ketamine +44375011000036107 Copaxone (4 x 20 mg vials, 4 x 1.1 mL inert diluent ampoules), 1 pack, composite pack 69547 41838011000036109 Copaxone (4 x 20 mg vials, 4 x 1.1 mL inert diluent ampoules), 1 pack 641691000168100 Copaxone (inert substance) diluent, 1.1 mL ampoule 2936011000036101 Copaxone 2936011000036101 Copaxone 46644011000036108 glatiramer acetate 20 mg injection [4 vials] (&) inert substance diluent [4 x 1.1 mL ampoules], 1 pack 641681000168103 inert substance diluent, 1.1 mL ampoule 21220011000036103 inert substance +44375011000036107 Copaxone (4 x 20 mg vials, 4 x 1.1 mL inert diluent ampoules), 1 pack, composite pack 69547 41838011000036109 Copaxone (4 x 20 mg vials, 4 x 1.1 mL inert diluent ampoules), 1 pack 40224011000036103 Copaxone (glatiramer acetate 20 mg) powder for injection, 20 mg vial 2936011000036101 Copaxone 2936011000036101 Copaxone 46644011000036108 glatiramer acetate 20 mg injection [4 vials] (&) inert substance diluent [4 x 1.1 mL ampoules], 1 pack 45254011000036106 glatiramer acetate 20 mg injection, vial 21783011000036106 glatiramer acetate +60678011000036103 Rapideine Plus uncoated tablet, 24, blister pack 42509 56636011000036107 Rapideine Plus uncoated tablet, 24 54017011000036100 Rapideine Plus uncoated tablet 53460011000036106 Rapideine Plus 53460011000036106 Rapideine Plus 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +43814011000036101 Duac Once Daily gel, 6 g, tube 100707 41095011000036106 Duac Once Daily gel, 6 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46081011000036107 clindamycin 1% + benzoyl peroxide 5% gel, 6 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +60459011000036105 Sleep Aid (Pharmacist Formula) 25 mg tablet, 12, blister pack 149475 56417011000036101 Sleep Aid (Pharmacist Formula) 25 mg tablet, 12 53917011000036108 Sleep Aid (Pharmacist Formula) 25 mg tablet 53529011000036102 Sleep Aid (Pharmacist Formula) 53529011000036102 Sleep Aid (Pharmacist Formula) 63826011000036106 doxylamine succinate 25 mg tablet, 12 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +43574011000036107 Simvabell 5 mg film-coated tablet, 300, bottle 100884 41101011000036101 Simvabell 5 mg film-coated tablet, 300 5425011000036107 Simvabell 5 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46087011000036104 simvastatin 5 mg tablet, 300 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +37483011000036101 Daunorubicin (Pfizer (Perth)) 20 mg/10 mL injection solution, 10 mL vial 12723 36751011000036101 Daunorubicin (Pfizer (Perth)) 20 mg/10 mL injection solution, 10 mL vial 36031011000036102 Daunorubicin (Pfizer (Perth)) 20 mg/10 mL injection solution, 10 mL vial 35960011000036105 Daunorubicin (Pfizer (Perth)) 35960011000036105 Daunorubicin (Pfizer (Perth)) 38659011000036103 daunorubicin 20 mg/10 mL injection, 10 mL vial 37910011000036108 daunorubicin 20 mg/10 mL injection, vial 37804011000036109 daunorubicin +864371000168109 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags 144669 864361000168103 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags 864231000168104 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 864351000168100 glucose monohydrate 5% (2.5 g/50 mL) injection, 60 x 50 mL bags 864221000168102 glucose monohydrate 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +19025011000036109 Motilium 10 mg film-coated tablet, 25, blister pack 39510 12330011000036109 Motilium 10 mg film-coated tablet, 25 5312011000036104 Motilium 10 mg film-coated tablet 4365011000036102 Motilium 4365011000036102 Motilium 27065011000036109 domperidone 10 mg tablet, 25 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +925254011000036109 Sumatriptan (Chemmart) 50 mg film-coated tablet, 4, blister pack 160190 924791011000036102 Sumatriptan (Chemmart) 50 mg film-coated tablet, 4 924486011000036101 Sumatriptan (Chemmart) 50 mg film-coated tablet 924383011000036104 Sumatriptan (Chemmart) 924383011000036104 Sumatriptan (Chemmart) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +45081000036105 Olanzapine (Stada) 10 mg tablet, 28, blister pack 152173 42861000036104 Olanzapine (Stada) 10 mg tablet, 28 40621000036108 Olanzapine (Stada) 10 mg tablet 20741000168100 Olanzapine (Stada) 20741000168100 Olanzapine (Stada) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +20482011000036102 Catapres 150 microgram uncoated tablet, 100, blister pack 78376 13682011000036104 Catapres 150 microgram uncoated tablet, 100 6965011000036102 Catapres 150 microgram uncoated tablet 3655011000036104 Catapres 3655011000036104 Catapres 27883011000036107 clonidine hydrochloride 150 microgram tablet, 100 23211011000036109 clonidine hydrochloride 150 microgram tablet 21589011000036108 clonidine +933230371000036104 Escitalopram (DRLA) 10 mg film-coated tablet, 7, blister pack 165129 933224251000036106 Escitalopram (DRLA) 10 mg film-coated tablet, 7 933220141000036106 Escitalopram (DRLA) 10 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 933224261000036109 escitalopram 10 mg tablet, 7 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +20464011000036108 Maosig 300 mg film-coated tablet, 60, blister pack 78245 13666011000036102 Maosig 300 mg film-coated tablet, 60 6949011000036107 Maosig 300 mg film-coated tablet 3287011000036100 Maosig 3287011000036100 Maosig 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +1048571000168104 Coparadeine Forte 500/30 tablet, 50, blister pack 220978 1048561000168105 Coparadeine Forte 500/30 tablet, 50 1048381000168108 Coparadeine Forte 500/30 tablet 1048371000168105 Coparadeine Forte 500/30 1048371000168105 Coparadeine Forte 500/30 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +152391000036107 Nesina 12.5 mg film-coated tablet, 28, blister pack 199543 150641000036105 Nesina 12.5 mg film-coated tablet, 28 148771000036108 Nesina 12.5 mg film-coated tablet 147871000036103 Nesina 147871000036103 Nesina 150651000036108 alogliptin 12.5 mg tablet, 28 148781000036105 alogliptin 12.5 mg tablet 152591000036101 alogliptin +79679011000036106 Loxalate 10 mg film-coated tablet, 28, bottle 119965 79458011000036102 Loxalate 10 mg film-coated tablet, 28 79364011000036107 Loxalate 10 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +18931011000036104 Maxidex 0.1% eye drops suspension, 5 mL, bottle 25354 12239011000036108 Maxidex 0.1% eye drops suspension, 5 mL 5222011000036100 Maxidex 0.1% eye drops suspension 4121011000036104 Maxidex 4121011000036104 Maxidex 27004011000036109 dexamethasone 0.1% eye drops, 5 mL 22377011000036107 dexamethasone 0.1% eye drops 21631011000036109 dexamethasone +20580011000036106 Flolan (1 x 500 microgram vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 80342 13769011000036102 Flolan (1 x 500 microgram vial, 1 x 50 mL inert diluent vial), 1 pack 7054011000036104 Flolan (epoprostenol 500 microgram) powder for injection, 500 microgram vial 2928011000036100 Flolan 2928011000036100 Flolan 27930011000036104 epoprostenol 500 microgram injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 23254011000036103 epoprostenol 500 microgram injection, vial 21703011000036107 epoprostenol +20580011000036106 Flolan (1 x 500 microgram vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 80342 13769011000036102 Flolan (1 x 500 microgram vial, 1 x 50 mL inert diluent vial), 1 pack 638621000168107 Flolan (inert substance) diluent, 50 mL vial 2928011000036100 Flolan 2928011000036100 Flolan 27930011000036104 epoprostenol 500 microgram injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +731341000168109 Clindamyk 150 mg hard capsule, 100, blister pack 214371 731331000168100 Clindamyk 150 mg hard capsule, 100 731301000168107 Clindamyk 150 mg hard capsule 731291000168106 Clindamyk 731291000168106 Clindamyk 922536011000036105 clindamycin 150 mg capsule, 100 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +80994011000036103 Epirubicin Hydrochloride (Actavis) 20 mg/10 mL injection solution, 10 mL vial 146596 80530011000036108 Epirubicin Hydrochloride (Actavis) 20 mg/10 mL injection solution, 10 mL vial 80178011000036101 Epirubicin Hydrochloride (Actavis) 20 mg/10 mL injection solution, 10 mL vial 933193151000036108 Epirubicin Hydrochloride (Actavis) 933193151000036108 Epirubicin Hydrochloride (Actavis) 27170011000036103 epirubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22532011000036105 epirubicin hydrochloride 20 mg/10 mL injection, vial 21230011000036100 epirubicin +1025271000168107 Perindopril Combi 5/1.25 (Ardix) film-coated tablet, 30, bottle 269533 1025261000168101 Perindopril Combi 5/1.25 (Ardix) film-coated tablet, 30 1025231000168109 Perindopril Combi 5/1.25 (Ardix) film-coated tablet 1025221000168106 Perindopril Combi 5/1.25 (Ardix) 1025221000168106 Perindopril Combi 5/1.25 (Ardix) 26767011000036101 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 30 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +20066011000036109 Ranihexal 150 mg film-coated tablet, 60, blister pack 70325 13296011000036101 Ranihexal 150 mg film-coated tablet, 60 6580011000036101 Ranihexal 150 mg film-coated tablet 2927011000036101 Ranihexal 2927011000036101 Ranihexal 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +77375011000036106 Humalog Mix25 Kwikpen injection suspension, 5 x 3 mL syringes 69164 76791011000036104 Humalog Mix25 Kwikpen injection suspension, 5 x 3 mL syringes 76180011000036102 Humalog Mix25 Kwikpen injection suspension, 3 mL syringe 62001000168106 Humalog Mix25 Kwikpen 62001000168106 Humalog Mix25 Kwikpen 78295011000036104 insulin lispro 25 units/mL + insulin lispro protamine 75 units/mL injection, 5 x 3 mL syringes 77595011000036102 insulin lispro 25 units/mL + insulin lispro protamine 75 units/mL injection, syringe 21622011000036101 insulin lispro + insulin lispro protamine +680221000168104 Clindamycin (Terry White Chemists) 150 mg hard capsule, 100, blister pack 214411 680211000168106 Clindamycin (Terry White Chemists) 150 mg hard capsule, 100 678991000168103 Clindamycin (Terry White Chemists) 150 mg hard capsule 678981000168101 Clindamycin (Terry White Chemists) 678981000168101 Clindamycin (Terry White Chemists) 922536011000036105 clindamycin 150 mg capsule, 100 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +812731000168102 Citalopram (Amneal) 40 mg film-coated tablet, 28, blister pack 158883 812721000168100 Citalopram (Amneal) 40 mg film-coated tablet, 28 812671000168108 Citalopram (Amneal) 40 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +735681000168108 Flucloxacillin (DBL) 1 g powder for injection, 10 vials 50579 735671000168105 Flucloxacillin (DBL) 1 g powder for injection, 10 vials 921072011000036106 Flucloxacillin (DBL) 1 g powder for injection, vial 920930011000036108 Flucloxacillin (DBL) 920930011000036108 Flucloxacillin (DBL) 735661000168104 flucloxacillin 1 g injection, 10 vials 23409011000036107 flucloxacillin 1 g injection, vial 21623011000036108 flucloxacillin +881871000168100 Bicalutamide (Intas) 50 mg film-coated tablet, 28, blister pack 273902 881861000168106 Bicalutamide (Intas) 50 mg film-coated tablet, 28 881851000168109 Bicalutamide (Intas) 50 mg film-coated tablet 881841000168107 Bicalutamide (Intas) 881841000168107 Bicalutamide (Intas) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +665191000168103 Remifentanil (Alphapharm) 5 mg powder for injection, 5 vials 163903 665181000168101 Remifentanil (Alphapharm) 5 mg powder for injection, 5 vials 665141000168106 Remifentanil (Alphapharm) 5 mg powder for injection, 5 mg vial 664921000168101 Remifentanil (Alphapharm) 664921000168101 Remifentanil (Alphapharm) 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +671681000168104 Ranitidine (Apo) 300 mg film-coated tablet, 30, blister pack 122014 671671000168102 Ranitidine (Apo) 300 mg film-coated tablet, 30 671661000168108 Ranitidine (Apo) 300 mg film-coated tablet 671651000168106 Ranitidine (Apo) 671651000168106 Ranitidine (Apo) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +69609011000036103 Microshield T 1% solution, 1.5 L, bag 71213 67408011000036103 Microshield T 1% solution, 1.5 L 65648011000036109 Microshield T 1% solution 65053011000036109 Microshield T 65053011000036109 Microshield T 71943011000036100 triclosan 1% solution, 1.5 L 70255011000036105 triclosan 1% solution 69817011000036103 triclosan +956791000168100 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 150 mL bags 49601 956781000168103 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 150 mL bags 956761000168107 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 150 mL bag 920924011000036100 Visipaque 920924011000036100 Visipaque 956771000168101 iodixanol 652 mg (iodine 320 mg)/mL injection, 10 x 150 mL bags 956751000168105 iodixanol 652 mg (iodine 320 mg)/mL injection, 150 mL bag 922032011000036109 iodixanol +52796011000036108 Vaxigrip Junior 2009 injection solution, 1 x 0.25 mL syringe 97971 52604011000036108 Vaxigrip Junior 2009 injection solution, 1 x 0.25 mL syringe 52440011000036107 Vaxigrip Junior 2009 injection solution, 0.25 mL syringe 24841000168102 Vaxigrip Junior 2009 24841000168102 Vaxigrip Junior 2009 52906011000036101 influenza trivalent child vaccine 2009 injection, 1 x 0.25 mL syringe 52814011000036103 influenza trivalent child vaccine 2009 injection, 0.25 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +923875011000036105 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 100, bottle 163765 923420011000036106 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 100 923077011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 924194011000036109 lercanidipine hydrochloride 10 mg tablet, 100 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +18644011000036104 Pregnyl (3 x 1500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 14518 12038011000036107 Pregnyl (3 x 1500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack 5200011000036108 Pregnyl (human chorionic gonadotrophin 1500 units) powder for injection, 1500 units ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 26870011000036109 human chorionic gonadotrophin 1500 units injection [3 ampoules] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 22249011000036108 human chorionic gonadotrophin 1500 units injection, ampoule 33633011000036101 human chorionic gonadotrophin +18644011000036104 Pregnyl (3 x 1500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 14518 12038011000036107 Pregnyl (3 x 1500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack 632891000168106 Pregnyl (inert substance) diluent, 1 mL ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 26870011000036109 human chorionic gonadotrophin 1500 units injection [3 ampoules] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +25861000036106 Cefazolin (AFT) 1 g powder for injection, 5 vials 171582 25821000036102 Cefazolin (AFT) 1 g powder for injection, 5 vials 19971000036101 Cefazolin (AFT) 1 g powder for injection, vial 19811000036104 Cefazolin (AFT) 19811000036104 Cefazolin (AFT) 32938011000036104 cefazolin 1 g injection, 5 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +812751000168108 Citalopram (Amneal) 40 mg film-coated tablet, 56, blister pack 158883 812741000168106 Citalopram (Amneal) 40 mg film-coated tablet, 56 812671000168108 Citalopram (Amneal) 40 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933202911000036102 citalopram 40 mg tablet, 56 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +950351000168107 Xalkori 250 mg hard capsule, 60, bottle 190963 688351000168104 Xalkori 250 mg hard capsule, 60 688331000168105 Xalkori 250 mg hard capsule 688241000168107 Xalkori 688241000168107 Xalkori 688341000168101 crizotinib 250 mg capsule, 60 688321000168107 crizotinib 250 mg capsule 688261000168106 crizotinib +20533011000036106 Enahexal 10 mg uncoated tablet, 30, bottle 79273 13731011000036109 Enahexal 10 mg uncoated tablet, 30 7014011000036108 Enahexal 10 mg uncoated tablet 4073011000036109 Enahexal 4073011000036109 Enahexal 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +1007911000168105 Zetin 25 mg hard capsule, 60, blister pack 196004 1007901000168107 Zetin 25 mg hard capsule, 60 1007891000168108 Zetin 25 mg hard capsule 1007831000168109 Zetin 1007831000168109 Zetin 150361000036104 acitretin 25 mg capsule, 60 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +66551000036108 Dermo Relief (Michael's) ointment, 50 g, jar 72867 64471000036105 Dermo Relief (Michael's) ointment, 50 g 61401000036103 Dermo Relief (Michael's) ointment 60541000036108 Dermo Relief (Michael's) 60541000036108 Dermo Relief (Michael's) 64481000036107 salicylic acid 2% + menthol 0.5% + coal tar 0.4% ointment, 50 g 926985011000036103 salicylic acid 2% + menthol 0.5% + coal tar 0.4% ointment 926967011000036106 salicylic acid + menthol + coal tar +18010011000036109 Glimepiride (Sandoz) 1 mg uncoated tablet, 30, blister pack 121781 11690011000036107 Glimepiride (Sandoz) 1 mg uncoated tablet, 30 5878011000036105 Glimepiride (Sandoz) 1 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +69690011000036106 Paracetamol (Herron) vanilla 500 mg film-coated tablet, 12, blister pack 90127 67489011000036105 Paracetamol (Herron) vanilla 500 mg film-coated tablet, 12 65681011000036107 Paracetamol (Herron) vanilla 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +868941000168105 Simipex XR 2.25 mg modified release tablet, 30, blister pack 225626 868931000168101 Simipex XR 2.25 mg modified release tablet, 30 868901000168108 Simipex XR 2.25 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 933225441000036108 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet, 30 933220621000036106 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet 37716011000036100 pramipexole +52715011000036102 Simvastatin (Spirit) 40 mg film-coated tablet, 300, bottle 116713 52532011000036103 Simvastatin (Spirit) 40 mg film-coated tablet, 300 52406011000036103 Simvastatin (Spirit) 40 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 46093011000036107 simvastatin 40 mg tablet, 300 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +68658011000036102 Mylanta 2go Double Strength chewable tablet, 100, blister pack 118508 66638011000036107 Mylanta 2go Double Strength chewable tablet, 100 65303011000036102 Mylanta 2go Double Strength chewable tablet 4781000168105 Mylanta 2go Double Strength 4781000168105 Mylanta 2go Double Strength 71348011000036102 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet, 100 69967011000036108 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +1048251000168106 Iptramol 50 mg hard capsule, 20, blister pack 188378 1048241000168109 Iptramol 50 mg hard capsule, 20 1048231000168100 Iptramol 50 mg hard capsule 1048221000168103 Iptramol 1048221000168103 Iptramol 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +18524011000036105 Tertroxin 20 microgram uncoated tablet, 100, bottle 12520 11794011000036108 Tertroxin 20 microgram uncoated tablet, 100 4854011000036107 Tertroxin 20 microgram uncoated tablet 4259011000036102 Tertroxin 4259011000036102 Tertroxin 26773011000036103 liothyronine sodium 20 microgram tablet, 100 22160011000036105 liothyronine sodium 20 microgram tablet 21758011000036109 liothyronine +1030981000168108 Atomoxetine (Genpar) 25 mg hard capsule, 28, blister pack 234858 1030971000168105 Atomoxetine (Genpar) 25 mg hard capsule, 28 1030891000168104 Atomoxetine (Genpar) 25 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +18781011000036102 Brevinor-1 21 Day uncoated tablet, 4 x 21, blister packs 10045 11144011000036105 Brevinor-1 21 Day uncoated tablet, 4 x 21 4511011000036100 Brevinor-1 21 Day uncoated tablet 700011821000036102 Brevinor-1 21 Day 700011821000036102 Brevinor-1 21 Day 26535011000036103 norethisterone 1 mg + ethinylestradiol 35 microgram tablet, 4 x 21 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +722761000168101 Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL, injection device 66126 722751000168103 Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL 722731000168109 Intron A Redipen 18 million units/1.2 mL injection solution 30001000168103 Intron A Redipen 30001000168103 Intron A Redipen 722741000168100 interferon alfa-2b 18 million units/1.2 mL injection, 1.2 mL 722721000168106 interferon alfa-2b 18 million units/1.2 mL injection 21525011000036103 interferon alfa-2b +872551000168105 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 19439 872541000168108 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 872521000168102 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 17161000168105 Plasma-Lyte 148 Replacement 17161000168105 Plasma-Lyte 148 Replacement 872531000168104 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 500 mL bag 872511000168109 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, bag 81233011000036103 sodium chloride + sodium gluconate + sodium acetate trihydrate + potassium chloride + magnesium chloride +1014411000168105 Temozolomide (Apotex) 250 mg hard capsule, 5, bottle 206881 1014401000168107 Temozolomide (Apotex) 250 mg hard capsule, 5 1014391000168105 Temozolomide (Apotex) 250 mg hard capsule 1014191000168108 Temozolomide (Apotex) 1014191000168108 Temozolomide (Apotex) 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +938791000168102 Celecoxib (Ran) 200 mg hard capsule, 50, blister pack 212787 938781000168100 Celecoxib (Ran) 200 mg hard capsule, 50 938691000168108 Celecoxib (Ran) 200 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1048291000168101 Tramadol SR (AS) 100 mg modified release tablet, 20, blister pack 190047 1048281000168104 Tramadol SR (AS) 100 mg modified release tablet, 20 1048271000168102 Tramadol SR (AS) 100 mg modified release tablet 1048261000168108 Tramadol SR (AS) 1048261000168108 Tramadol SR (AS) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +928741000168108 Uremide 40 mg uncoated tablet, 90, bottle 17704 928731000168104 Uremide 40 mg uncoated tablet, 90 5862011000036100 Uremide 40 mg uncoated tablet 3144011000036100 Uremide 3144011000036100 Uremide 928721000168102 furosemide (frusemide) 40 mg tablet, 90 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +59988011000036105 SM-33 Adult Formula Liquid paint, 10 mL, bottle 12181 55950011000036109 SM-33 Adult Formula Liquid paint, 10 mL 53734011000036102 SM-33 Adult Formula Liquid paint 53161011000036103 SM-33 Adult Formula Liquid 53161011000036103 SM-33 Adult Formula Liquid 63175011000036106 ethanol 45% + lidocaine (lignocaine) 2.5% + salicylic acid 1.5% + tannic acid 2% + rheum palmatum 15% paint, 10 mL 61877011000036101 ethanol 45% + lidocaine (lignocaine) 2.5% + salicylic acid 1.5% + tannic acid 2% + rheum palmatum 15% paint 61779011000036106 ethanol + lidocaine (lignocaine) + salicylic acid + tannic acid + rheum palmatum +1082811000168100 Solian 50 mg uncoated tablet, 15, blister pack 96421 1082801000168103 Solian 50 mg uncoated tablet, 15 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 860511000168104 amisulpride 50 mg tablet, 15 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +61693011000036106 Cold and Flu Relief (Guardian) film-coated tablet, 24, blister pack 98592 57614011000036108 Cold and Flu Relief (Guardian) film-coated tablet, 24 54365011000036108 Cold and Flu Relief (Guardian) film-coated tablet 53219011000036100 Cold and Flu Relief (Guardian) 53219011000036100 Cold and Flu Relief (Guardian) 63960011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62109011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +81063011000036101 Iscover 300 mg film-coated tablet, 30, blister pack 151280 80572011000036105 Iscover 300 mg film-coated tablet, 30 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81651011000036103 clopidogrel 300 mg tablet, 30 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +19128011000036106 Lamisil 250 mg uncoated tablet, 42, blister pack 43523 12431011000036108 Lamisil 250 mg uncoated tablet, 42 6018011000036100 Lamisil 250 mg uncoated tablet 34081000168103 Lamisil 34081000168103 Lamisil 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +60091011000036107 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 40, blister pack 126538 56052011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 40 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +21017011000036102 Enalapril Maleate (Chemmart) 20 mg uncoated tablet, 30, blister pack 96335 14163011000036105 Enalapril Maleate (Chemmart) 20 mg uncoated tablet, 30 7442011000036101 Enalapril Maleate (Chemmart) 20 mg uncoated tablet 3719011000036102 Enalapril Maleate (Chemmart) 3719011000036102 Enalapril Maleate (Chemmart) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +1074221000168106 Ciprofloxacin (Auro) 750 mg film-coated tablet, 60, blister pack 175439 1074211000168104 Ciprofloxacin (Auro) 750 mg film-coated tablet, 60 1074141000168108 Ciprofloxacin (Auro) 750 mg film-coated tablet 717841000168100 Ciprofloxacin (Auro) 717841000168100 Ciprofloxacin (Auro) 1074201000168102 ciprofloxacin 750 mg tablet, 60 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +45171000036107 Diltiazem Hydrochloride CD (Sandoz) 240 mg modified release capsule, 30, bottle 131300 42811000036101 Diltiazem Hydrochloride CD (Sandoz) 240 mg modified release capsule, 30 41091000036109 Diltiazem Hydrochloride CD (Sandoz) 240 mg modified release capsule 14301000168101 Diltiazem Hydrochloride CD (Sandoz) 14301000168101 Diltiazem Hydrochloride CD (Sandoz) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +748701000168102 Ketamine (Claris) 200 mg/2 mL injection solution, 10 x 2 mL ampoules 219960 748691000168102 Ketamine (Claris) 200 mg/2 mL injection solution, 10 x 2 mL ampoules 748591000168101 Ketamine (Claris) 200 mg/2 mL injection solution, 2 mL ampoule 748581000168104 Ketamine (Claris) 748581000168104 Ketamine (Claris) 748681000168100 ketamine 200 mg/2 mL injection, 10 x 2 mL ampoules 720601000168109 ketamine 200 mg/2 mL injection, ampoule 34843011000036109 ketamine +66591000036104 Dettol Wound Wash 0.198% spray solution, 100 mL, bottle 73357 64531000036109 Dettol Wound Wash 0.198% spray solution, 100 mL 60821000036103 Dettol Wound Wash 0.198% spray solution 60351000036104 Dettol Wound Wash 60351000036104 Dettol Wound Wash 64541000036104 benzalkonium chloride 0.198% spray, 100 mL 60831000036101 benzalkonium chloride 0.198% spray 50773011000036101 benzalkonium chloride +19749011000036106 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62139 13009011000036101 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6298011000036105 Improvil 28 Day (inert substance) uncoated tablet 700012761000036105 Improvil 28 Day 700012761000036105 Improvil 28 Day 27494011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19749011000036106 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62139 13009011000036101 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6297011000036109 Improvil 28 Day (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 700012761000036105 Improvil 28 Day 700012761000036105 Improvil 28 Day 27494011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 4 x 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +19749011000036106 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62139 13009011000036101 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 4 x 28 6299011000036102 Improvil 28 Day (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 700012761000036105 Improvil 28 Day 700012761000036105 Improvil 28 Day 27494011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 4 x 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +937421000168109 Paclitaxel (Accord) 300 mg/50 mL concentrated injection, 50 mL vial 219556 937411000168102 Paclitaxel (Accord) 300 mg/50 mL concentrated injection, 50 mL vial 937401000168100 Paclitaxel (Accord) 300 mg/50 mL concentrated injection, 50 mL vial 937391000168102 Paclitaxel (Accord) 937391000168102 Paclitaxel (Accord) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +774641000168100 Nexazole 20 mg enteric tablet, 15, blister pack 205846 774631000168109 Nexazole 20 mg enteric tablet, 15 774571000168108 Nexazole 20 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 681261000168103 esomeprazole 20 mg enteric tablet, 15 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +69446011000036102 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 1 L bag 48522 67246011000036108 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 1 L bag 65574011000036107 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 1 L bag 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 71796011000036106 sodium chloride 0.3% (3 g/L) + glucose 3.3% (33 g/L) injection, 1 L bag 70190011000036109 sodium chloride 0.3% (3 g/L) + glucose 3.3% (33 g/L) injection, bag 21257011000036103 sodium chloride + glucose +44559011000036108 Cervidil 10 mg pessary, 1, sachet 81391 42012011000036103 Cervidil 10 mg pessary, 1 40321011000036109 Cervidil 10 mg pessary 39742011000036104 Cervidil 39742011000036104 Cervidil 46785011000036107 dinoprostone 10 mg pessary, 1 45316011000036101 dinoprostone 10 mg pessary 37724011000036100 dinoprostone +682551000168108 Esomeprazole (Actavis) 40 mg enteric capsule, 30, bottle 206002 682541000168106 Esomeprazole (Actavis) 40 mg enteric capsule, 30 682521000168100 Esomeprazole (Actavis) 40 mg enteric capsule 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 682531000168102 esomeprazole 40 mg enteric capsule, 30 682511000168107 esomeprazole 40 mg enteric capsule 21697011000036107 esomeprazole +20310011000036106 Lisodur 5 mg uncoated tablet, 30, blister pack 75845 13519011000036102 Lisodur 5 mg uncoated tablet, 30 6801011000036108 Lisodur 5 mg uncoated tablet 3180011000036103 Lisodur 3180011000036103 Lisodur 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +82404011000036109 Pramin 10 mg uncoated tablet, 100, bottle 17661 82193011000036106 Pramin 10 mg uncoated tablet, 100 5876011000036106 Pramin 10 mg uncoated tablet 3330011000036102 Pramin 3330011000036102 Pramin 82561011000036104 metoclopramide hydrochloride 10 mg tablet, 100 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +1082971000168103 Rynacrom 4% nasal spray, 15 mL, pump pack 44762 74338011000036109 Rynacrom 4% nasal spray, 15 mL 73872011000036109 Rynacrom 4% nasal spray 3403011000036106 Rynacrom 3403011000036106 Rynacrom 75443011000036103 sodium cromoglycate 4% nasal spray, 15 mL 75060011000036109 sodium cromoglycate 4% nasal spray 21253011000036107 cromoglycate +956131000168100 Aricept-D 5 mg orally disintegrating tablet, 28, blister pack 116850 956121000168103 Aricept-D 5 mg orally disintegrating tablet, 28 956061000168109 Aricept-D 5 mg orally disintegrating tablet 956041000168105 Aricept-D 956041000168105 Aricept-D 956111000168105 donepezil hydrochloride 5 mg orally disintegrating tablet, 28 956051000168107 donepezil hydrochloride 5 mg orally disintegrating tablet 21256011000036101 donepezil +21180011000036106 Tramahexal SR 100 mg modified release tablet, 20, bottle 99248 14320011000036102 Tramahexal SR 100 mg modified release tablet, 20 7606011000036107 Tramahexal SR 100 mg modified release tablet 10981000168104 Tramahexal SR 10981000168104 Tramahexal SR 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +953981000168108 Zolpidem (Chemmart) 5 mg film-coated tablet, 7, blister pack 127149 953971000168105 Zolpidem (Chemmart) 5 mg film-coated tablet, 7 953961000168104 Zolpidem (Chemmart) 5 mg film-coated tablet 923301000168103 Zolpidem (Chemmart) 923301000168103 Zolpidem (Chemmart) 926171000168101 zolpidem tartrate 5 mg tablet, 7 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +60472011000036103 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 9 sachets 150167 56430011000036107 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 9 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63362011000036104 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 9 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +1091581000168103 Antiseptic Ointment (Apohealth) 10% ointment, 25 g, tube 281466 1091571000168101 Antiseptic Ointment (Apohealth) 10% ointment, 25 g 1091561000168107 Antiseptic Ointment (Apohealth) 10% ointment 1091551000168105 Antiseptic Ointment (Apohealth) 1091551000168105 Antiseptic Ointment (Apohealth) 71716011000036107 povidone-iodine 10% ointment, 25 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +18147011000036109 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 131631 11301011000036108 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30 4547011000036102 Simvastatin (Terry White Chemists) 20 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18147011000036109 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 149801 11301011000036108 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30 4547011000036102 Simvastatin (Terry White Chemists) 20 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18147011000036109 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 211953 11301011000036108 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30 4547011000036102 Simvastatin (Terry White Chemists) 20 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18147011000036109 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 104526 11301011000036108 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30 4547011000036102 Simvastatin (Terry White Chemists) 20 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +706081000168104 Keytruda 50 mg powder for injection, 1 vial 226597 706071000168102 Keytruda 50 mg powder for injection, 1 vial 706051000168106 Keytruda 50 mg powder for injection, 50 mg vial 706011000168105 Keytruda 706011000168105 Keytruda 706061000168108 pembrolizumab 50 mg injection, 1 vial 706041000168109 pembrolizumab 50 mg injection, vial 706031000168100 pembrolizumab +861871000168102 Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60, bottle 167283 861861000168108 Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60 861841000168109 Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet 24301000168105 Caltrate Plus with Vitamin D 400 IU and Minerals 24301000168105 Caltrate Plus with Vitamin D 400 IU and Minerals 861851000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet, 60 861831000168100 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet 861821000168103 calcium + colecalciferol + cupric sulfate + magnesium oxide + manganese sulfate monohydrate + zinc +17963011000036103 Methotrexate (Ebewe) 5 g/50 mL concentrated injection, 50 mL vial 120618 11647011000036103 Methotrexate (Ebewe) 5 g/50 mL concentrated injection, 50 mL vial 5283011000036101 Methotrexate (Ebewe) 5 g/50 mL concentrated injection, 50 mL vial 3132011000036105 Methotrexate (Ebewe) 3132011000036105 Methotrexate (Ebewe) 26722011000036109 methotrexate 5 g/50 mL injection, 50 mL vial 22117011000036105 methotrexate 5 g/50 mL injection, vial 21342011000036105 methotrexate +941761000168103 M-Cite 1 g powder for injection, 1 vial 147684 941751000168100 M-Cite 1 g powder for injection, 1 vial 941741000168102 M-Cite 1 g powder for injection, vial 941731000168106 M-Cite 941731000168106 M-Cite 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +43578011000036100 Zorac 0.1% cream, 30 g, tube 101327 41117011000036107 Zorac 0.1% cream, 30 g 39887011000036108 Zorac 0.1% cream 39675011000036100 Zorac 39675011000036100 Zorac 46099011000036105 tazarotene 0.1% cream, 30 g 44985011000036108 tazarotene 0.1% cream 44886011000036105 tazarotene +85042011000036101 Panto 20 mg enteric tablet, 90, bottle 158557 84907011000036105 Panto 20 mg enteric tablet, 90 83659011000036106 Panto 20 mg enteric tablet 83563011000036106 Panto 83563011000036106 Panto 85193011000036108 pantoprazole 20 mg enteric tablet, 90 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +931748011000036107 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL vials 63957 930908011000036103 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL vials 930110011000036100 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 100 mL vial 5101000168100 Iomeron-300 5101000168100 Iomeron-300 932487011000036109 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 10 x 100 mL vials 931883011000036109 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 100 mL vial 931793011000036105 iomeprol +50376011000036108 Melolin (36361357) 5 cm x 5 cm dressing, 5, carton 49394011000036104 Melolin (36361357) 5 cm x 5 cm dressing, 5 48698011000036101 Melolin (36361357) 5 cm x 5 cm dressing 38791000168108 Melolin (36361357) 38791000168108 Melolin (36361357) 51364011000036102 dressing non adherent 5 cm x 5 cm dressing, 5 50886011000036103 dressing non adherent 5 cm x 5 cm dressing 50699011000036100 dressing non adherent +60425011000036107 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 11 sachets 146071 56384011000036102 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 11 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63330011000036109 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 11 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +1022441000168105 Allermax 50 microgram/actuation nasal spray, 40 actuations, pump pack 77401 1022431000168101 Allermax 50 microgram/actuation nasal spray, 40 actuations 1022421000168104 Allermax 50 microgram/actuation nasal spray, actuation 1022411000168106 Allermax 1022411000168106 Allermax 46749011000036104 mometasone furoate 50 microgram/actuation nasal spray, 40 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +18541011000036105 Amoxil Paediatric Drops 100 mg/mL powder for oral liquid, 20 mL, bottle 107408 11376011000036109 Amoxil Paediatric Drops 100 mg/mL powder for oral liquid, 20 mL 5676011000036102 Amoxil Paediatric Drops 100 mg/mL powder for oral liquid 49321000168102 Amoxil Paediatric Drops 49321000168102 Amoxil Paediatric Drops 26624011000036107 amoxicillin 100 mg/mL powder for oral liquid, 20 mL 22030011000036109 amoxicillin 100 mg/mL powder for oral liquid 21415011000036100 amoxicillin +18541011000036105 Amoxil Paediatric Drops 100 mg/mL powder for oral liquid, 20 mL, bottle 201566 11376011000036109 Amoxil Paediatric Drops 100 mg/mL powder for oral liquid, 20 mL 5676011000036102 Amoxil Paediatric Drops 100 mg/mL powder for oral liquid 49321000168102 Amoxil Paediatric Drops 49321000168102 Amoxil Paediatric Drops 26624011000036107 amoxicillin 100 mg/mL powder for oral liquid, 20 mL 22030011000036109 amoxicillin 100 mg/mL powder for oral liquid 21415011000036100 amoxicillin +152221000036101 Novatin 25 mg hard capsule, 100, blister pack 196003 150341000036100 Novatin 25 mg hard capsule, 100 148511000036105 Novatin 25 mg hard capsule 147841000036105 Novatin 147841000036105 Novatin 27278011000036103 acitretin 25 mg capsule, 100 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +82399011000036101 Lifeline Attest diagnostic strip, 50, bottle 162309 82188011000036102 Lifeline Attest diagnostic strip, 50 82030011000036102 Lifeline Attest diagnostic strip 81991011000036108 Lifeline Attest 81991011000036108 Lifeline Attest 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +50226011000036100 XMTVI Asadon powder for oral liquid, 200 g, can 49475011000036102 XMTVI Asadon powder for oral liquid, 200 g 48525011000036106 XMTVI Asadon powder for oral liquid 37501000168106 XMTVI Asadon 37501000168106 XMTVI Asadon 51433011000036101 amino acid formula without methionine, threonine and valine and low in isoleucine powder for oral liquid, 200 g 50949011000036108 amino acid formula without methionine, threonine and valine and low in isoleucine powder for oral liquid 50739011000036100 amino acid formula without methionine, threonine and valine and low in isoleucine +915851000168100 Anacoxib 200 mg hard capsule, 30, blister pack 206835 915841000168102 Anacoxib 200 mg hard capsule, 30 915831000168106 Anacoxib 200 mg hard capsule 915821000168108 Anacoxib 915821000168108 Anacoxib 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +929013011000036104 Nivestim 480 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 160107 928374011000036107 Nivestim 480 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 927959011000036105 Nivestim 480 microgram/0.5 mL injection solution, 0.5 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 929226011000036105 filgrastim 480 microgram/0.5 mL injection, 10 x 0.5 mL syringes 22655011000036106 filgrastim 480 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +795411000168108 Instanyl 200 microgram/actuation nasal spray, 10 x 1 actuation, pump packs 197689 795401000168105 Instanyl 200 microgram/actuation nasal spray, 10 x 1 actuation 795261000168105 Instanyl 200 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795391000168108 fentanyl 200 microgram/actuation nasal spray, 10 x 1 actuation 795251000168108 fentanyl 200 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +20683011000036106 Cellcept 500 mg film-coated tablet, 150, blister pack 82372 13862011000036109 Cellcept 500 mg film-coated tablet, 150 7149011000036105 Cellcept 500 mg film-coated tablet 4308011000036109 Cellcept 4308011000036109 Cellcept 27979011000036107 mycophenolate mofetil 500 mg tablet, 150 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +1001561000168109 Pregabalin (Apo) 100 mg hard capsule, 20, blister pack 193275 1000821000168107 Pregabalin (Apo) 100 mg hard capsule, 20 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903511000168101 pregabalin 100 mg capsule, 20 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +21064011000036107 Axit 30 mg film-coated tablet, 30, bottle 97197 14208011000036102 Axit 30 mg film-coated tablet, 30 7491011000036101 Axit 30 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +77321000036102 Astromide 100 mg hard capsule, 5, sachet 197465 933223791000036109 Astromide 100 mg hard capsule, 5 933219911000036107 Astromide 100 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +59941011000036108 Norlevo 750 microgram uncoated tablet, 2, blister pack 119794 55903011000036109 Norlevo 750 microgram uncoated tablet, 2 53664011000036104 Norlevo 750 microgram uncoated tablet 53473011000036105 Norlevo 53473011000036105 Norlevo 63842011000036109 levonorgestrel 750 microgram tablet, 2 62089011000036102 levonorgestrel 750 microgram tablet 21391011000036105 levonorgestrel +60909011000036103 Dimetapp DM Cough and Cold Drops colour free oral liquid solution, 25 mL, bottle 60799 56863011000036100 Dimetapp DM Cough and Cold Drops colour free oral liquid solution, 25 mL 54105011000036104 Dimetapp DM Cough and Cold Drops colour free oral liquid solution 21281000168109 Dimetapp DM Cough and Cold Drops 21281000168109 Dimetapp DM Cough and Cold Drops 63616011000036107 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 25 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +61059011000036106 Dry Tickly Cough (Chemists' Own) 1 mg/mL oral liquid solution, 100 mL, bottle 68111 57002011000036108 Dry Tickly Cough (Chemists' Own) 1 mg/mL oral liquid solution, 100 mL 54154011000036105 Dry Tickly Cough (Chemists' Own) 1 mg/mL oral liquid solution 53393011000036107 Dry Tickly Cough (Chemists' Own) 53393011000036107 Dry Tickly Cough (Chemists' Own) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +20049011000036107 Hydopa 250 mg film-coated tablet, 100, blister pack 69483 13280011000036100 Hydopa 250 mg film-coated tablet, 100 6563011000036106 Hydopa 250 mg film-coated tablet 3674011000036100 Hydopa 3674011000036100 Hydopa 27664011000036101 methyldopa 250 mg tablet, 100 23001011000036104 methyldopa 250 mg tablet 21515011000036109 methyldopa +86087011000036105 Intanza 2010 injection suspension, 1 x 0.1 mL syringe 150130 85645011000036100 Intanza 2010 injection suspension, 1 x 0.1 mL syringe 85318011000036107 Intanza 2010 injection suspension, 0.1 mL syringe 43411000168103 Intanza 2010 43411000168103 Intanza 2010 86416011000036102 influenza trivalent adult vaccine 2010 injection, 1 x 0.1 mL syringe 86216011000036101 influenza trivalent adult vaccine 2010 injection, 0.1 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +1039701000168106 Atomoxetine (Actavis) 100 mg hard capsule, 28, blister pack 237260 1039691000168106 Atomoxetine (Actavis) 100 mg hard capsule, 28 1039681000168108 Atomoxetine (Actavis) 100 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +66231000036102 Linotar Eczema Relief 1% w/v lotion, 100 mL, bottle 46736 63971000036102 Linotar Eczema Relief 1% w/v lotion, 100 mL 61221000036107 Linotar Eczema Relief 1% w/v lotion 60481000036100 Linotar Eczema Relief 60481000036100 Linotar Eczema Relief 63981000036100 prepared coal tar 1% w/v lotion, 100 mL 61231000036109 prepared coal tar 1% w/v lotion 33626011000036109 prepared coal tar +20136011000036108 Eprex 20 000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 73486 13360011000036107 Eprex 20 000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 6645011000036106 Eprex 20 000 units/0.5 mL injection solution, 0.5 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27716011000036101 epoetin alfa 20 000 units/0.5 mL injection, 6 x 0.5 mL syringes 23051011000036105 epoetin alfa 20 000 units/0.5 mL injection, syringe 21294011000036104 epoetin alfa +14301000036108 Ozin 2.5 mg uncoated tablet, 28, blister pack 179928 7911000036104 Ozin 2.5 mg uncoated tablet, 28 1471000036105 Ozin 2.5 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +654841000168105 Valsartan (Apo) 320 mg film-coated tablet, 28, blister pack 185826 654831000168101 Valsartan (Apo) 320 mg film-coated tablet, 28 654821000168104 Valsartan (Apo) 320 mg film-coated tablet 654721000168105 Valsartan (Apo) 654721000168105 Valsartan (Apo) 63184011000036103 valsartan 320 mg tablet, 28 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +82301000036104 Rabeprazole (Apo) 10 mg enteric tablet, 28, blister pack 189726 80271000036101 Rabeprazole (Apo) 10 mg enteric tablet, 28 78261000036102 Rabeprazole (Apo) 10 mg enteric tablet 77941000036106 Rabeprazole (Apo) 77941000036106 Rabeprazole (Apo) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +82301000036104 Rabeprazole (Apo) 10 mg enteric tablet, 28, blister pack 245232 80271000036101 Rabeprazole (Apo) 10 mg enteric tablet, 28 78261000036102 Rabeprazole (Apo) 10 mg enteric tablet 77941000036106 Rabeprazole (Apo) 77941000036106 Rabeprazole (Apo) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +82301000036104 Rabeprazole (Apo) 10 mg enteric tablet, 28, blister pack 211960 80271000036101 Rabeprazole (Apo) 10 mg enteric tablet, 28 78261000036102 Rabeprazole (Apo) 10 mg enteric tablet 77941000036106 Rabeprazole (Apo) 77941000036106 Rabeprazole (Apo) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +931653011000036109 Twynsta 80/5 mg multilayer tablet, 98, blister pack 166263 930813011000036101 Twynsta 80/5 mg multilayer tablet, 98 930057011000036103 Twynsta 80/5 mg multilayer tablet 12411000168103 Twynsta 80/5 mg 12411000168103 Twynsta 80/5 mg 932426011000036100 telmisartan 80 mg + amlodipine 5 mg tablet, 98 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +1099531000168103 Crestat 10 mg film-coated tablet, 30, blister pack 183265 1099521000168101 Crestat 10 mg film-coated tablet, 30 1099511000168108 Crestat 10 mg film-coated tablet 1099501000168105 Crestat 1099501000168105 Crestat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +20499011000036106 Metformin Hydrochloride (GenRx) 500 mg tablet, 100, blister pack 78617 13699011000036108 Metformin Hydrochloride (GenRx) 500 mg tablet, 100 6981011000036101 Metformin Hydrochloride (GenRx) 500 mg tablet 4170011000036107 Metformin Hydrochloride (GenRx) 4170011000036107 Metformin Hydrochloride (GenRx) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20591011000036100 Diltiazem Hydrochloride CD (Terry White Chemists) 240 mg modified release capsule, 30, blister pack 80552 13941011000036104 Diltiazem Hydrochloride CD (Terry White Chemists) 240 mg modified release capsule, 30 7229011000036109 Diltiazem Hydrochloride CD (Terry White Chemists) 240 mg modified release capsule 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +59699011000036104 Paracetamol (Guardian) 500 mg uncoated tablet, 12, blister pack 100679 55648011000036108 Paracetamol (Guardian) 500 mg uncoated tablet, 12 53656011000036104 Paracetamol (Guardian) 500 mg uncoated tablet 53128011000036100 Paracetamol (Guardian) 53128011000036100 Paracetamol (Guardian) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +66271000036100 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 10 x 30 mL vials 49421 64141000036108 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 10 x 30 mL vials 61171000036103 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 30 mL vial 28191000168109 Optiray-320 28191000168109 Optiray-320 64151000036106 ioversol 678 mg (iodine 320 mg)/mL injection, 10 x 30 mL vials 61181000036101 ioversol 678 mg (iodine 320 mg)/mL injection, 30 mL vial 77421011000036103 ioversol +893611000168107 Dorzolamide/Timolol 20/5 (Apo) eye drops solution, 5 mL, bottle 267121 893601000168109 Dorzolamide/Timolol 20/5 (Apo) eye drops solution, 5 mL 893591000168102 Dorzolamide/Timolol 20/5 (Apo) eye drops solution 893581000168100 Dorzolamide/Timolol 20/5 (Apo) 893581000168100 Dorzolamide/Timolol 20/5 (Apo) 27578011000036108 dorzolamide 2% + timolol 0.5% eye drops, 5 mL 22917011000036108 dorzolamide 2% + timolol 0.5% eye drops 21483011000036104 dorzolamide + timolol +84277011000036102 Atenolol (Apo) 50 mg uncoated tablet, 30, blister pack 129861 933200641000036106 Atenolol (Apo) 50 mg uncoated tablet, 30 933194261000036100 Atenolol (Apo) 50 mg uncoated tablet 9511000168106 Atenolol (Apo) 9511000168106 Atenolol (Apo) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +84277011000036102 Atenolol (Apo) 50 mg uncoated tablet, 30, blister pack 214939 933200641000036106 Atenolol (Apo) 50 mg uncoated tablet, 30 933194261000036100 Atenolol (Apo) 50 mg uncoated tablet 9511000168106 Atenolol (Apo) 9511000168106 Atenolol (Apo) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +37610011000036109 Vumon 50 mg/5 mL concentrated injection, 10 x 5 mL ampoules 19286 36877011000036109 Vumon 50 mg/5 mL concentrated injection, 10 x 5 mL ampoules 36211011000036104 Vumon 50 mg/5 mL concentrated injection, 5 mL ampoule 35952011000036104 Vumon 35952011000036104 Vumon 38763011000036102 teniposide 50 mg/5 mL injection, 10 x 5 mL ampoules 37981011000036104 teniposide 50 mg/5 mL injection, ampoule 37770011000036106 teniposide +103731000036106 Pamidronate Disodium (Strides) 30 mg/10 mL concentrated injection, 10 mL vial 145152 101061000036103 Pamidronate Disodium (Strides) 30 mg/10 mL concentrated injection, 10 mL vial 98711000036104 Pamidronate Disodium (Strides) 30 mg/10 mL concentrated injection, 10 mL vial 97771000036106 Pamidronate Disodium (Strides) 97771000036106 Pamidronate Disodium (Strides) 27766011000036100 pamidronate disodium 30 mg/10 mL injection, 10 mL vial 23097011000036109 pamidronate disodium 30 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +37564011000036106 Procaine Hydrochloride (DBL) 40 mg/2 mL injection solution, 5 x 2 mL ampoules 16264 36831011000036103 Procaine Hydrochloride (DBL) 40 mg/2 mL injection solution, 5 x 2 mL ampoules 36130011000036104 Procaine Hydrochloride (DBL) 40 mg/2 mL injection solution, 2 mL ampoule 35893011000036106 Procaine Hydrochloride (DBL) 35893011000036106 Procaine Hydrochloride (DBL) 38720011000036102 procaine hydrochloride 40 mg/2 mL injection, 5 x 2 mL ampoules 37951011000036109 procaine hydrochloride 40 mg/2 mL injection, ampoule 37792011000036100 procaine +873521000168107 Airzate MDI 250/25 pressurised inhalation, 120 actuations, metered dose aerosol can 208193 873511000168100 Airzate MDI 250/25 pressurised inhalation, 120 actuations 873501000168103 Airzate MDI 250/25 pressurised inhalation, actuation 873491000168105 Airzate MDI 250/25 873491000168105 Airzate MDI 250/25 26725011000036101 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22120011000036102 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +873521000168107 Airzate MDI 250/25 pressurised inhalation, 120 actuations, metered dose aerosol can 208665 873511000168100 Airzate MDI 250/25 pressurised inhalation, 120 actuations 873501000168103 Airzate MDI 250/25 pressurised inhalation, actuation 873491000168105 Airzate MDI 250/25 873491000168105 Airzate MDI 250/25 26725011000036101 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22120011000036102 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +1098161000168108 Antiseptic (Amcal) 10% solution, 100 mL, bottle 269423 1098151000168106 Antiseptic (Amcal) 10% solution, 100 mL 1098111000168105 Antiseptic (Amcal) 10% solution 1098101000168107 Antiseptic (Amcal) 1098101000168107 Antiseptic (Amcal) 71675011000036102 povidone-iodine 10% solution, 100 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +44466011000036100 Mitozantrone (Pfizer (Perth)) 30 mg/15 mL concentrated injection, 15 mL vial 74512 41922011000036103 Mitozantrone (Pfizer (Perth)) 30 mg/15 mL concentrated injection, 15 mL vial 40265011000036109 Mitozantrone (Pfizer (Perth)) 30 mg/15 mL concentrated injection, 15 mL vial 4370011000036102 Mitozantrone (Pfizer (Perth)) 4370011000036102 Mitozantrone (Pfizer (Perth)) 46711011000036108 mitozantrone 30 mg/15 mL injection, 15 mL vial 45278011000036102 mitozantrone 30 mg/15 mL injection, vial 21652011000036102 mitozantrone +810101000168109 Centrum Advance 50 Plus film-coated tablet, 200, bottle 193642 810091000168104 Centrum Advance 50 Plus film-coated tablet, 200 809891000168104 Centrum Advance 50 Plus film-coated tablet 809511000168106 Centrum Advance 50 Plus 809511000168106 Centrum Advance 50 Plus 810081000168102 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet, 200 809881000168102 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet 809871000168100 vitamin A + betacarotene + colecalciferol + lutein + lycopene + phytomenadione + pantothenic acid + thiamine + nicotinamide + riboflavin + pyridoxine + cyanocobalamin + biotin + folic acid + dl-alpha-tocopheryl + ascorbic acid + calcium + magnesium + iron + zinc + manganese + chromium + selenium + copper + iodine + phosphorus + potassium +61364011000036103 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 24, blister pack 81524 57289011000036108 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 24 54294011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet 53164011000036100 Paracetamol (Pharmacy Health) 53164011000036100 Paracetamol (Pharmacy Health) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +60880011000036102 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 100 mL, bottle 59765 56834011000036107 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 100 mL 54094011000036107 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63601011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +798541000168102 Abyraz 10 mg uncoated tablet, 14, blister pack 159503 798531000168106 Abyraz 10 mg uncoated tablet, 14 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 798521000168108 aripiprazole 10 mg tablet, 14 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +915211000168100 Certican 100 microgram dispersible tablet, 120, blister pack 97520 915201000168103 Certican 100 microgram dispersible tablet, 120 915091000168102 Certican 100 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915191000168101 everolimus 100 microgram dispersible tablet, 120 915081000168100 everolimus 100 microgram dispersible tablet 21615011000036103 everolimus +801421000168104 Actonate Once-a-Month 150 mg film-coated tablet, 4, blister pack 163750 801411000168106 Actonate Once-a-Month 150 mg film-coated tablet, 4 801341000168103 Actonate Once-a-Month 150 mg film-coated tablet 801331000168107 Actonate Once-a-Month 801331000168107 Actonate Once-a-Month 78197011000036107 risedronate sodium 150 mg tablet, 4 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +19623011000036102 Camptosar 40 mg/2 mL concentrated injection, 2 mL vial 58807 12892011000036103 Camptosar 40 mg/2 mL concentrated injection, 2 mL vial 6182011000036109 Camptosar 40 mg/2 mL concentrated injection, 2 mL vial 2965011000036101 Camptosar 2965011000036101 Camptosar 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +863731000168108 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 144672 863721000168105 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 863671000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863711000168103 glucose monohydrate 5% (12.5 g/250 mL) injection, 250 mL bag 863661000168108 glucose monohydrate 5% (12.5 g/250 mL) injection, bag 21354011000036103 glucose +20061011000036104 Norvir 100 mg soft capsule, 84, bottle 70048 13291011000036106 Norvir 100 mg soft capsule, 84 6575011000036103 Norvir 100 mg soft capsule 4168011000036101 Norvir 4168011000036101 Norvir 27670011000036102 ritonavir 100 mg capsule, 84 23007011000036107 ritonavir 100 mg capsule 21438011000036102 ritonavir +61462011000036100 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 48, blister pack 90630 57387011000036107 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 48 54291011000036100 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet 53173011000036109 Paracetamol (Nyal) 53173011000036109 Paracetamol (Nyal) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +116621000036105 Rosuvastatin (Actavis) 20 mg film-coated tablet, 30, blister pack 183643 114911000036101 Rosuvastatin (Actavis) 20 mg film-coated tablet, 30 113411000036109 Rosuvastatin (Actavis) 20 mg film-coated tablet 112551000036104 Rosuvastatin (Actavis) 112551000036104 Rosuvastatin (Actavis) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +672161000168106 Amlodipine/Atorvastatin 10/40 (Apo) film-coated tablet, 30, blister pack 214345 672151000168109 Amlodipine/Atorvastatin 10/40 (Apo) film-coated tablet, 30 672141000168107 Amlodipine/Atorvastatin 10/40 (Apo) film-coated tablet 672131000168103 Amlodipine/Atorvastatin 10/40 (Apo) 672131000168103 Amlodipine/Atorvastatin 10/40 (Apo) 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +844641000168104 Kalydeco 50 mg granules, 14 sachets 267390 844631000168108 Kalydeco 50 mg granules, 14 sachets 844611000168103 Kalydeco 50 mg granules, 50 mg sachet 154531000036107 Kalydeco 154531000036107 Kalydeco 844621000168105 ivacaftor 50 mg granules, 14 sachets 844601000168101 ivacaftor 50 mg granules, sachet 157061000036101 ivacaftor +1009191000168107 Rivastigmine (Apotex) 6 mg hard capsule, 112, blister pack 160574 1009181000168109 Rivastigmine (Apotex) 6 mg hard capsule, 112 1009111000168103 Rivastigmine (Apotex) 6 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1003911000168103 rivastigmine 6 mg capsule, 112 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +33600011000036102 Paroxetine (Winthrop) 20 mg film-coated tablet, 30, blister pack 80984 33338011000036102 Paroxetine (Winthrop) 20 mg film-coated tablet, 30 33098011000036109 Paroxetine (Winthrop) 20 mg film-coated tablet 32989011000036103 Paroxetine (Winthrop) 32989011000036103 Paroxetine (Winthrop) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +14391000036100 Bisoprolol Fumarate (Chemmart) 5 mg tablet, 28, blister pack 182125 8021000036109 Bisoprolol Fumarate (Chemmart) 5 mg tablet, 28 2121000036106 Bisoprolol Fumarate (Chemmart) 5 mg tablet 671000036106 Bisoprolol Fumarate (Chemmart) 671000036106 Bisoprolol Fumarate (Chemmart) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +44708011000036106 Chirocaine 62.5 mg/100 mL injection solution, 100 mL bag 94479 42153011000036109 Chirocaine 62.5 mg/100 mL injection solution, 100 mL bag 40370011000036101 Chirocaine 62.5 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46914011000036101 levobupivacaine 62.5 mg/100 mL injection, 100 mL bag 45345011000036104 levobupivacaine 62.5 mg/100 mL injection, bag 44881011000036100 levobupivacaine +50308011000036103 Tegaderm Transparent (1628) 15 cm x 20 cm dressing, 1, carton 49342011000036102 Tegaderm Transparent (1628) 15 cm x 20 cm dressing, 1 48633011000036104 Tegaderm Transparent (1628) 15 cm x 20 cm dressing 56371000168105 Tegaderm Transparent (1628) 56371000168105 Tegaderm Transparent (1628) 51321011000036106 dressing film 15 cm x 20 cm dressing, 1 50849011000036102 dressing film 15 cm x 20 cm dressing 50711011000036108 dressing film +925245011000036105 Sumatriptan (Lupin) 50 mg film-coated tablet, 4, blister pack 160180 924782011000036107 Sumatriptan (Lupin) 50 mg film-coated tablet, 4 924479011000036104 Sumatriptan (Lupin) 50 mg film-coated tablet 924379011000036107 Sumatriptan (Lupin) 924379011000036107 Sumatriptan (Lupin) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +1098481000168105 Risedronate (Auro) 30 mg film-coated tablet, 28, blister pack 190156 1098471000168107 Risedronate (Auro) 30 mg film-coated tablet, 28 1098441000168100 Risedronate (Auro) 30 mg film-coated tablet 1098381000168102 Risedronate (Auro) 1098381000168102 Risedronate (Auro) 27741011000036101 risedronate sodium 30 mg tablet, 28 23072011000036102 risedronate sodium 30 mg tablet 21476011000036103 risedronate +933238821000036107 Fentanyl (Sandoz) 50 microgram/hour patch, 5, sachet 152571 933235961000036102 Fentanyl (Sandoz) 50 microgram/hour patch, 5 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 26650011000036103 fentanyl 50 microgram/hour patch, 5 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +933230241000036103 Suboxone 8/2 sublingual film, 28, sachet 163444 933225571000036100 Suboxone 8/2 sublingual film, 28 933220111000036105 Suboxone 8/2 sublingual film 7031000168100 Suboxone 8/2 7031000168100 Suboxone 8/2 933225581000036103 buprenorphine 8 mg + naloxone 2 mg sublingual film, 28 933220121000036103 buprenorphine 8 mg + naloxone 2 mg sublingual film 21739011000036100 buprenorphine + naloxone +14381000036102 Bisoprolol Fumarate (Apo) 10 mg tablet, 28, blister pack 182123 8001000036104 Bisoprolol Fumarate (Apo) 10 mg tablet, 28 1521000036107 Bisoprolol Fumarate (Apo) 10 mg tablet 33791000168100 Bisoprolol Fumarate (Apo) 33791000168100 Bisoprolol Fumarate (Apo) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +926812011000036103 Reaptan 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 170796 926208011000036107 Reaptan 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30 925676011000036101 Reaptan 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet 4401000168106 Reaptan 5mg/5mg (perindopril arginine/amlodipine) 4401000168106 Reaptan 5mg/5mg (perindopril arginine/amlodipine) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +933238901000036106 Fentanyl (Sandoz) 12 microgram/hour patch, 5, sachet 152572 933236111000036106 Fentanyl (Sandoz) 12 microgram/hour patch, 5 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 26685011000036103 fentanyl 12 microgram/hour patch, 5 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +43596011000036107 Fosinopril Sodium (GenRx) 20 mg uncoated tablet, 30, bottle 119862 11631011000036105 Fosinopril Sodium (GenRx) 20 mg uncoated tablet, 30 5844011000036104 Fosinopril Sodium (GenRx) 20 mg uncoated tablet 2930011000036104 Fosinopril Sodium (GenRx) 2930011000036104 Fosinopril Sodium (GenRx) 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +906631000168100 Celecoxib (Medis) 200 mg capsule, 50, blister pack 204618 906621000168103 Celecoxib (Medis) 200 mg capsule, 50 906471000168100 Celecoxib (Medis) 200 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +82141000036103 Reedos 200 mg tablet, 56, bottle 187259 80681000036101 Reedos 200 mg tablet, 56 78831000036107 Reedos 200 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +13101000036109 Methaccord 50 mg/2 mL injection solution, 5 x 2 mL vials 159101 7111000036102 Methaccord 50 mg/2 mL injection solution, 5 x 2 mL vials 2611000036105 Methaccord 50 mg/2 mL injection solution, 2 mL vial 1131000036103 Methaccord 1131000036103 Methaccord 26914011000036103 methotrexate 50 mg/2 mL injection, 5 x 2 mL vials 22291011000036103 methotrexate 50 mg/2 mL injection, vial 21342011000036105 methotrexate +956951000168108 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 100 mL bags 49607 956941000168106 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 100 mL bags 956921000168100 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 100 mL bag 920924011000036100 Visipaque 920924011000036100 Visipaque 956931000168102 iodixanol 550 mg (iodine 270 mg)/mL injection, 10 x 100 mL bags 956911000168107 iodixanol 550 mg (iodine 270 mg)/mL injection, 100 mL bag 922032011000036109 iodixanol +43913011000036107 Trandolapril (Apo) 1 mg hard capsule, 28, blister pack 135968 41405011000036100 Trandolapril (Apo) 1 mg hard capsule, 28 39958011000036105 Trandolapril (Apo) 1 mg hard capsule 11371000168108 Trandolapril (Apo) 11371000168108 Trandolapril (Apo) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +34666011000036103 Invega 3 mg modified release tablet, 7, blister pack 130502 34252011000036109 Invega 3 mg modified release tablet, 7 33986011000036104 Invega 3 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35121011000036106 paliperidone 3 mg modified release tablet, 7 34855011000036108 paliperidone 3 mg modified release tablet 34837011000036104 paliperidone +1072621000168102 Pantoprazole (Generic Health) 40 mg enteric tablet, 14, blister pack 191033 1072611000168109 Pantoprazole (Generic Health) 40 mg enteric tablet, 14 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46654011000036106 pantoprazole 40 mg enteric tablet, 14 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +20038011000036103 Sandostatin LAR (1 x 10 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 69210 13270011000036106 Sandostatin LAR (1 x 10 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 6552011000036109 Sandostatin LAR (octreotide 10 mg) modified release injection, 10 mg vial 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27658011000036102 octreotide 10 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 22995011000036102 octreotide 10 mg modified release injection, vial 21316011000036104 octreotide +20038011000036103 Sandostatin LAR (1 x 10 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 69210 13270011000036106 Sandostatin LAR (1 x 10 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 636221000168109 Sandostatin LAR (inert substance) diluent, 2.5 mL syringe 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27658011000036102 octreotide 10 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 636211000168102 inert substance diluent, 2.5 mL syringe 21220011000036103 inert substance +1031941000168105 Aten 100 mg film-coated tablet, 56, blister pack 197718 1031931000168101 Aten 100 mg film-coated tablet, 56 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031921000168104 atenolol 100 mg tablet, 56 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +789861000168107 Oxycontin 15 mg modified release tablet, 10, bottle 200027 789851000168105 Oxycontin 15 mg modified release tablet, 10 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789841000168108 oxycodone hydrochloride 15 mg modified release tablet, 10 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +931231000168104 Centevo 75/18.75/200 mg film-coated tablet, 30, bottle 238853 931221000168102 Centevo 75/18.75/200 mg film-coated tablet, 30 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 84650011000036102 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 30 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +726691000168101 Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device 135008 726681000168104 Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose 726661000168108 Anapen Auto-Injector 150 microgram/0.3 mL injection solution, dose 21251000168102 Anapen Auto-Injector 21251000168102 Anapen Auto-Injector 726671000168102 adrenaline (epinephrine) 150 microgram/0.3 mL injection, 1 dose 726651000168106 adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +933230281000036107 Dexamethasone Phosphate (DBL) 4 mg/mL injection solution, 50 x 1 mL ampoules 16374 933224161000036101 Dexamethasone Phosphate (DBL) 4 mg/mL injection solution, 50 x 1 mL ampoules 4595011000036102 Dexamethasone Phosphate (DBL) 4 mg/mL injection solution, ampoule 3506011000036109 Dexamethasone Phosphate (DBL) 3506011000036109 Dexamethasone Phosphate (DBL) 933224171000036109 dexamethasone phosphate 4 mg/mL injection, 50 x 1 mL ampoules 22299011000036104 dexamethasone phosphate 4 mg/mL injection, ampoule 21511011000036107 dexamethasone phosphate +21196011000036105 Calcitriol (DP) 0.25 microgram soft capsule, 100, bottle 99717 14334011000036109 Calcitriol (DP) 0.25 microgram soft capsule, 100 7618011000036109 Calcitriol (DP) 0.25 microgram soft capsule 3813011000036102 Calcitriol (DP) 3813011000036102 Calcitriol (DP) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +933215871000036108 Skin Active Pine Tar with Menthol (Hamilton) lotion, 250 mL, bottle 42014 933205321000036100 Skin Active Pine Tar with Menthol (Hamilton) lotion, 250 mL 933196361000036102 Skin Active Pine Tar with Menthol (Hamilton) lotion 933193201000036102 Skin Active Pine Tar with Menthol (Hamilton) 933193201000036102 Skin Active Pine Tar with Menthol (Hamilton) 933205331000036103 cetrimide 0.5% + dimeticone-350 10% + menthol 0.5% + tar 0.1% lotion, 250 mL 933196371000036105 cetrimide 0.5% + dimeticone-350 10% + menthol 0.5% + tar 0.1% lotion 933216251000036106 cetrimide + dimeticone-350 + menthol + tar +810241000168103 Actonel EC Combi D effervescent granules, 6 sachets 810231000168107 Actonel EC Combi D effervescent granules, 6 sachets 810211000168102 Actonel EC Combi D effervescent granules, 1 sachet 929810011000036106 Actonel EC Combi D 929810011000036106 Actonel EC Combi D 810221000168109 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 6 sachets 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +1026551000168107 Pregabalin (Amneal) 75 mg hard capsule, 500, bottle 235842 1026541000168105 Pregabalin (Amneal) 75 mg hard capsule, 500 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 971511000168108 pregabalin 75 mg capsule, 500 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +926658011000036102 Risperidone (Sandoz) 2 mg film-coated tablet, 60, blister pack 126158 926137011000036100 Risperidone (Sandoz) 2 mg film-coated tablet, 60 925595011000036105 Risperidone (Sandoz) 2 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +43959011000036104 Stieva-A 0.1% cream, 25 g, tube 39838 41451011000036108 Stieva-A 0.1% cream, 25 g 39981011000036106 Stieva-A 0.1% cream 39639011000036100 Stieva-A 39639011000036100 Stieva-A 46300011000036100 tretinoin 0.1% cream, 25 g 45063011000036107 tretinoin 0.1% cream 37794011000036109 tretinoin +73319011000036106 Gemcitabine (DBL) 200 mg powder for injection, 1 vial 147440 73117011000036107 Gemcitabine (DBL) 200 mg powder for injection, 1 vial 72936011000036106 Gemcitabine (DBL) 200 mg powder for injection, 200 mg vial 72908011000036104 Gemcitabine (DBL) 72908011000036104 Gemcitabine (DBL) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +944091000168106 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 20 x 20 mL vials 48216 944081000168108 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 20 x 20 mL vials 944061000168104 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 20 mL vial 35991000168102 Omnipaque-180 35991000168102 Omnipaque-180 944071000168105 iohexol 388 mg (iodine 180 mg)/mL injection, 20 x 20 mL vials 944051000168101 iohexol 388 mg (iodine 180 mg)/mL injection, 20 mL vial 77459011000036103 iohexol +735281000168106 Aciclovir (Sandoz) 200 mg uncoated tablet, 90, blister pack 99420 735271000168108 Aciclovir (Sandoz) 200 mg uncoated tablet, 90 735241000168101 Aciclovir (Sandoz) 200 mg uncoated tablet 708531000168108 Aciclovir (Sandoz) 708531000168108 Aciclovir (Sandoz) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +181541000036108 Candesartan Cilexetil (Terry White Chemists) 32 mg uncoated tablet, 30, blister pack 210536 181081000036109 Candesartan Cilexetil (Terry White Chemists) 32 mg uncoated tablet, 30 180431000036105 Candesartan Cilexetil (Terry White Chemists) 32 mg uncoated tablet 180361000036108 Candesartan Cilexetil (Terry White Chemists) 180361000036108 Candesartan Cilexetil (Terry White Chemists) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +890641000168101 Canpek 32/12.5 uncoated tablet, 7, blister pack 198394 890631000168105 Canpek 32/12.5 uncoated tablet, 7 890621000168107 Canpek 32/12.5 uncoated tablet 890611000168100 Canpek 32/12.5 890611000168100 Canpek 32/12.5 83493011000036104 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 7 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +13021000036103 Quetiapine (Chemmart) 200 mg film-coated tablet, 60, blister pack 166067 8101000036103 Quetiapine (Chemmart) 200 mg film-coated tablet, 60 2001000036102 Quetiapine (Chemmart) 200 mg film-coated tablet 421000036105 Quetiapine (Chemmart) 421000036105 Quetiapine (Chemmart) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +931321000168108 Centevo 75/18.75/200 mg film-coated tablet, 90, bottle 238853 931311000168101 Centevo 75/18.75/200 mg film-coated tablet, 90 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931301000168104 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 90 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +863651000168106 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 29790 863641000168109 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 863621000168103 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863631000168100 glucose monohydrate 10% (50 g/500 mL) injection, 500 mL bag 863611000168105 glucose monohydrate 10% (50 g/500 mL) injection, bag 21354011000036103 glucose +794131000168108 Tacrolimus (Sandoz) 750 microgram hard capsule, 20, blister pack 229738 794121000168105 Tacrolimus (Sandoz) 750 microgram hard capsule, 20 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794111000168103 tacrolimus 750 microgram capsule, 20 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +680541000168107 Temodal 100 mg hard capsule, 5, sachet 164212 13244011000036102 Temodal 100 mg hard capsule, 5 6526011000036109 Temodal 100 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +1095171000168107 Ibuprofen (Genpar) 200 mg film-coated tablet, 12, blister pack 285310 1095161000168101 Ibuprofen (Genpar) 200 mg film-coated tablet, 12 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +683761000168107 Methotrexate (MYX) 1 g/10 mL injection solution, 10 mL vial 213737 683751000168105 Methotrexate (MYX) 1 g/10 mL injection solution, 10 mL vial 683741000168108 Methotrexate (MYX) 1 g/10 mL injection solution, 10 mL vial 683701000168106 Methotrexate (MYX) 683701000168106 Methotrexate (MYX) 28266011000036102 methotrexate 1 g/10 mL injection, 10 mL vial 23580011000036105 methotrexate 1 g/10 mL injection, vial 21342011000036105 methotrexate +43625011000036101 Dormizol 10 mg film-coated tablet, 2, blister pack 117953 41202011000036109 Dormizol 10 mg film-coated tablet, 2 39940011000036106 Dormizol 10 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 46646011000036100 zolpidem tartrate 10 mg tablet, 2 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +21098011000036102 Vinorelbine (Mayne Pharma) 50 mg/5 mL concentrated injection, 5 mL vial 97648 14241011000036103 Vinorelbine (Mayne Pharma) 50 mg/5 mL concentrated injection, 5 mL vial 7527011000036108 Vinorelbine (Mayne Pharma) 50 mg/5 mL concentrated injection, 5 mL vial 3889011000036102 Vinorelbine (Mayne Pharma) 3889011000036102 Vinorelbine (Mayne Pharma) 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +19531011000036107 Presolol 200 mg film-coated tablet, 100, bottle 56476 12803011000036107 Presolol 200 mg film-coated tablet, 100 6094011000036108 Presolol 200 mg film-coated tablet 3107011000036103 Presolol 3107011000036103 Presolol 27361011000036106 labetalol hydrochloride 200 mg tablet, 100 22713011000036105 labetalol hydrochloride 200 mg tablet 21315011000036106 labetalol +923796011000036109 Anastrozole (GA) 1 mg film-coated tablet, 30, blister pack 155680 923356011000036102 Anastrozole (GA) 1 mg film-coated tablet, 30 923032011000036101 Anastrozole (GA) 1 mg film-coated tablet 922944011000036109 Anastrozole (GA) 922944011000036109 Anastrozole (GA) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +103801000036106 Donepezil Hydrochloride (DRLA) 5 mg film-coated tablet, 28, blister pack 157106 101181000036107 Donepezil Hydrochloride (DRLA) 5 mg film-coated tablet, 28 98121000036107 Donepezil Hydrochloride (DRLA) 5 mg film-coated tablet 97841000036107 Donepezil Hydrochloride (DRLA) 97841000036107 Donepezil Hydrochloride (DRLA) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +929092011000036105 Pioglitazone (Apotex) 30 mg uncoated tablet, 50, blister pack 166914 928453011000036101 Pioglitazone (Apotex) 30 mg uncoated tablet, 50 927987011000036109 Pioglitazone (Apotex) 30 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929263011000036107 pioglitazone 30 mg tablet, 50 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +929674011000036101 Docetaxel (DBL) 160 mg/16 mL concentrated injection, 16 mL vial 163803 929510011000036105 Docetaxel (DBL) 160 mg/16 mL concentrated injection, 16 mL vial 929403011000036107 Docetaxel (DBL) 160 mg/16 mL concentrated injection, 16 mL vial 927570011000036107 Docetaxel (DBL) 927570011000036107 Docetaxel (DBL) 929755011000036107 docetaxel 160 mg/16 mL injection, 16 mL vial 929726011000036104 docetaxel 160 mg/16 mL injection, vial 21721011000036101 docetaxel +827281000168102 Vivotif Oral enteric capsule, 3, blister pack 158130 827271000168100 Vivotif Oral enteric capsule, 3 827251000168109 Vivotif Oral enteric capsule 61431000168103 Vivotif Oral 61431000168103 Vivotif Oral 827261000168106 typhoid live vaccine enteric capsule, 3 827241000168107 typhoid live vaccine enteric capsule 827231000168103 typhoid live vaccine +827281000168102 Vivotif Oral enteric capsule, 3, blister pack 118758 827271000168100 Vivotif Oral enteric capsule, 3 827251000168109 Vivotif Oral enteric capsule 61431000168103 Vivotif Oral 61431000168103 Vivotif Oral 827261000168106 typhoid live vaccine enteric capsule, 3 827241000168107 typhoid live vaccine enteric capsule 827231000168103 typhoid live vaccine +39419011000036105 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 10 x 2 mL syringes 147169 39302011000036107 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 10 x 2 mL syringes 39212011000036104 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 2 mL syringe 4089011000036101 Bicillin L-A 4089011000036101 Bicillin L-A 39491011000036107 benzathine benzylpenicillin 1.2 million units (900 mg)/2 mL injection, 10 x 2 mL syringes 39440011000036108 benzathine benzylpenicillin 1.2 million units (900 mg)/2 mL injection, syringe 39429011000036100 benzathine benzylpenicillin +19312011000036107 Neoral 25 mg soft capsule, 30, blister pack 49722 12602011000036105 Neoral 25 mg soft capsule, 30 4807011000036106 Neoral 25 mg soft capsule 4180011000036101 Neoral 4180011000036101 Neoral 27972011000036102 ciclosporin 25 mg capsule, 30 23296011000036100 ciclosporin 25 mg capsule 21379011000036104 ciclosporin +679491000168103 Cisatracurium Concentrate (DBL) 10 mg/5 mL injection solution, 5 x 5 mL vials 170580 679481000168101 Cisatracurium Concentrate (DBL) 10 mg/5 mL injection solution, 5 x 5 mL vials 679461000168105 Cisatracurium Concentrate (DBL) 10 mg/5 mL injection solution, 5 mL vial 679381000168109 Cisatracurium Concentrate (DBL) 679381000168109 Cisatracurium Concentrate (DBL) 679471000168104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL vials 679451000168108 cisatracurium 10 mg/5 mL injection, vial 44902011000036101 cisatracurium +1089781000168109 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 12, blister pack 281501 1089771000168106 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 12 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +19894011000036100 Doxy 50 mg film-coated tablet, 25, blister pack 65687 13141011000036102 Doxy 50 mg film-coated tablet, 25 6424011000036106 Doxy 50 mg film-coated tablet 3392011000036105 Doxy 3392011000036105 Doxy 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +680701000168100 Vedafil 50 mg film-coated tablet, 4, blister pack 162805 680691000168100 Vedafil 50 mg film-coated tablet, 4 680681000168103 Vedafil 50 mg film-coated tablet 680671000168101 Vedafil 680671000168101 Vedafil 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +14471000036106 Isotretinoin (Apo) 20 mg soft capsule, 60, blister pack 190941 8281000036102 Isotretinoin (Apo) 20 mg soft capsule, 60 3171000036102 Isotretinoin (Apo) 20 mg soft capsule 32171000168108 Isotretinoin (Apo) 32171000168108 Isotretinoin (Apo) 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +82370011000036100 Coplavix 75 mg/100 mg film-coated tablet, 28, blister pack 150443 82159011000036102 Coplavix 75 mg/100 mg film-coated tablet, 28 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82547011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 28 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +43648011000036109 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 5 x 200 mL bags 123042 41280011000036106 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 5 x 200 mL bags 39898011000036105 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 200 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46215011000036101 ciprofloxacin 400 mg/200 mL injection, 5 x 200 mL bags 45033011000036102 ciprofloxacin 400 mg/200 mL injection, bag 21245011000036105 ciprofloxacin +81085011000036102 Ibuprofen plus Codeine (Amcal) film-coated tablet, 24, blister pack 158232 80593011000036107 Ibuprofen plus Codeine (Amcal) film-coated tablet, 24 80205011000036101 Ibuprofen plus Codeine (Amcal) film-coated tablet 80134011000036106 Ibuprofen plus Codeine (Amcal) 80134011000036106 Ibuprofen plus Codeine (Amcal) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +792921000168101 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40133 792911000168108 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5513011000036109 Trifeme (inert substance) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +792921000168101 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40133 792911000168108 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5327011000036106 Trifeme (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +792921000168101 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40133 792911000168108 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5543011000036102 Trifeme (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +792921000168101 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40133 792911000168108 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 792841000168103 Trifeme (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +905351000168106 Ceftriaxone (Kabi) 1 g powder for injection, 10 vials 223322 905341000168109 Ceftriaxone (Kabi) 1 g powder for injection, 10 vials 905291000168106 Ceftriaxone (Kabi) 1 g powder for injection, vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 922546011000036109 ceftriaxone 1 g injection, 10 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +18200011000036100 Sone 25 mg uncoated tablet, 30, bottle 13470 11993011000036103 Sone 25 mg uncoated tablet, 30 5886011000036104 Sone 25 mg uncoated tablet 3111011000036108 Sone 3111011000036108 Sone 27038011000036108 prednisone 25 mg tablet, 30 22411011000036103 prednisone 25 mg tablet 21496011000036106 prednisone +81062011000036108 Iscover 300 mg film-coated tablet, 280, blister pack 151280 80571011000036104 Iscover 300 mg film-coated tablet, 280 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81650011000036105 clopidogrel 300 mg tablet, 280 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +677801000168100 Osteomol 665 mg modified release tablet, 96, blister pack 227076 677781000168104 Osteomol 665 mg modified release tablet, 96 677771000168102 Osteomol 665 mg modified release tablet 677761000168108 Osteomol 677761000168108 Osteomol 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +1026371000168109 Neuroccord 150 mg hard capsule, 60, blister pack 235837 1026201000168106 Neuroccord 150 mg hard capsule, 60 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +37512011000036103 Retin-A 0.01% gel, 30 g, tube 13324 36780011000036104 Retin-A 0.01% gel, 30 g 36129011000036108 Retin-A 0.01% gel 35932011000036100 Retin-A 35932011000036100 Retin-A 38677011000036107 tretinoin 0.01% gel, 30 g 37919011000036102 tretinoin 0.01% gel 37794011000036109 tretinoin +1035001000168105 Latanoprost/Timolol 0.05/5 (Apotex) eye drops solution, 2.5 mL, bottle 210789 1034991000168104 Latanoprost/Timolol 0.05/5 (Apotex) eye drops solution, 2.5 mL 1034981000168102 Latanoprost/Timolol 0.05/5 (Apotex) eye drops solution 1034941000168107 Latanoprost/Timolol 0.05/5 (Apotex) 1034941000168107 Latanoprost/Timolol 0.05/5 (Apotex) 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +60056011000036108 Ibuprofen (Priceline) 200 mg film-coated tablet, 48, blister pack 124621 56018011000036105 Ibuprofen (Priceline) 200 mg film-coated tablet, 48 53759011000036102 Ibuprofen (Priceline) 200 mg film-coated tablet 53413011000036102 Ibuprofen (Priceline) 53413011000036102 Ibuprofen (Priceline) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +997461000168106 Meloxicam (Apotex) 7.5 mg hard capsule, 30, blister pack 181196 997451000168109 Meloxicam (Apotex) 7.5 mg hard capsule, 30 997401000168105 Meloxicam (Apotex) 7.5 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +931575011000036104 Cholpra 80 mg film-coated tablet, 90, bottle 163546 930736011000036104 Cholpra 80 mg film-coated tablet, 90 930031011000036107 Cholpra 80 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932409011000036101 pravastatin sodium 80 mg tablet, 90 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +18379011000036108 Caduet 10/10 film-coated tablet, 30, blister pack 100700 11160011000036105 Caduet 10/10 film-coated tablet, 30 5709011000036106 Caduet 10/10 film-coated tablet 55081000168100 Caduet 10/10 55081000168100 Caduet 10/10 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +18563011000036100 Leucovorin Calcium (Mayne Pharma) 300 mg/30 mL injection, 30 mL vial 116688 11537011000036107 Leucovorin Calcium (Mayne Pharma) 300 mg/30 mL injection, 30 mL vial 5353011000036101 Leucovorin Calcium (Mayne Pharma) 300 mg/30 mL injection, 30 mL vial 3461011000036106 Leucovorin Calcium (Mayne Pharma) 3461011000036106 Leucovorin Calcium (Mayne Pharma) 26684011000036102 folinic acid 300 mg/30 mL injection, 30 mL vial 22080011000036101 folinic acid 300 mg/30 mL injection, vial 21617011000036108 folinic acid +60298011000036107 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 14, blister pack 137681 56257011000036108 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 14 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63269011000036102 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 14 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +939911000168101 Celebrex 400 mg hard capsule, 120, blister pack 101341 939901000168104 Celebrex 400 mg hard capsule, 120 939701000168102 Celebrex 400 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 939891000168103 celecoxib 400 mg capsule, 120 939691000168102 celecoxib 400 mg capsule 21566011000036101 celecoxib +52728011000036102 Vaxigrip 2009 needle free injection solution, 1 x 0.5 mL syringe 129874 52540011000036103 Vaxigrip 2009 needle free injection solution, 1 x 0.5 mL syringe 52408011000036104 Vaxigrip 2009 needle free injection solution, 0.5 mL syringe 6241000168103 Vaxigrip 2009 6241000168103 Vaxigrip 2009 52901011000036106 influenza trivalent adult vaccine 2009 injection, 1 x 0.5 mL syringe 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +18137011000036105 Mitozantrone (Ebewe) 10 mg/5 mL injection solution, 5 mL vial 132319 11928011000036103 Mitozantrone (Ebewe) 10 mg/5 mL injection solution, 5 mL vial 5377011000036107 Mitozantrone (Ebewe) 10 mg/5 mL injection solution, 5 mL vial 4129011000036100 Mitozantrone (Ebewe) 4129011000036100 Mitozantrone (Ebewe) 27755011000036101 mitozantrone 10 mg/5 mL injection, 5 mL vial 23086011000036105 mitozantrone 10 mg/5 mL injection, vial 21652011000036102 mitozantrone +790021000168104 Oxycontin 20 mg modified release tablet, 120, bottle 200035 790011000168106 Oxycontin 20 mg modified release tablet, 120 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790001000168108 oxycodone hydrochloride 20 mg modified release tablet, 120 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +59872011000036105 Sudafed PE Nasal Decongestant 10 mg film-coated tablet, 24, blister pack 115775 55834011000036105 Sudafed PE Nasal Decongestant 10 mg film-coated tablet, 24 53661011000036102 Sudafed PE Nasal Decongestant 10 mg film-coated tablet 53133011000036107 Sudafed PE Nasal Decongestant 53133011000036107 Sudafed PE Nasal Decongestant 63400011000036108 phenylephrine hydrochloride 10 mg tablet, 24 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +20165011000036108 Diltiazem Hydrochloride (Terry White Chemists) 60 mg film-coated tablet, 90, bottle 73851 13388011000036106 Diltiazem Hydrochloride (Terry White Chemists) 60 mg film-coated tablet, 90 6673011000036106 Diltiazem Hydrochloride (Terry White Chemists) 60 mg film-coated tablet 39171000168104 Diltiazem Hydrochloride (Terry White Chemists) 39171000168104 Diltiazem Hydrochloride (Terry White Chemists) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +925150011000036102 Simvastatin (Pharmacor) 20 mg film-coated tablet, 30, blister pack 123814 924692011000036101 Simvastatin (Pharmacor) 20 mg film-coated tablet, 30 924417011000036101 Simvastatin (Pharmacor) 20 mg film-coated tablet 924384011000036102 Simvastatin (Pharmacor) 924384011000036102 Simvastatin (Pharmacor) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +954281000168100 Trandolapril (Terry White Chemists) 4 mg capsule, 28, blister pack 135988 954271000168103 Trandolapril (Terry White Chemists) 4 mg capsule, 28 954261000168109 Trandolapril (Terry White Chemists) 4 mg capsule 954161000168103 Trandolapril (Terry White Chemists) 954161000168103 Trandolapril (Terry White Chemists) 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +18471011000036104 Proladone 30 mg compressed suppository, 12, strip pack 14965 12067011000036103 Proladone 30 mg compressed suppository, 12 4591011000036104 Proladone 30 mg compressed suppository 3300011000036109 Proladone 3300011000036109 Proladone 26892011000036103 oxycodone 30 mg suppository, 12 22270011000036103 oxycodone 30 mg suppository 21259011000036105 oxycodone +43642011000036106 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 10 x 100 mL vials 116882 41181011000036102 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 10 x 100 mL vials 39918011000036100 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 100 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46145011000036108 ciprofloxacin 200 mg/100 mL injection, 10 x 100 mL vials 45081011000036109 ciprofloxacin 200 mg/100 mL injection, vial 21245011000036105 ciprofloxacin +752631000168100 Oxycodone (WT) 20 mg hard capsule, 20, blister pack 227826 752571000168101 Oxycodone (WT) 20 mg hard capsule, 20 752561000168107 Oxycodone (WT) 20 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +44656011000036105 Abilify 5 mg uncoated tablet, 14, blister pack 90925 42108011000036106 Abilify 5 mg uncoated tablet, 14 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46870011000036107 aripiprazole 5 mg tablet, 14 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +44086011000036106 Lignospan Special 2% / 1 in 80 000 injection solution, 50 x 1.8 mL cartridges 49327 41573011000036103 Lignospan Special 2% / 1 in 80 000 injection solution, 50 x 1.8 mL cartridges 40076011000036102 Lignospan Special 2% / 1 in 80 000 injection solution, 1.8 mL cartridge 45221000168105 Lignospan Special 2% / 1 in 80 000 45221000168105 Lignospan Special 2% / 1 in 80 000 46402011000036105 lidocaine (lignocaine) hydrochloride 2% (36 mg/1.8 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/1.8 mL) injection, 50 x 1.8 mL cartridges 45136011000036102 lidocaine (lignocaine) hydrochloride 2% (36 mg/1.8 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/1.8 mL) injection, cartridge 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +741121000168104 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 5 x 0.125 mL injection devices 231039 741111000168106 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 5 x 0.125 mL injection devices 741061000168105 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741101000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, 5 x 0.125 mL injection devices 741051000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, injection device 21352011000036107 follitropin alfa +933215551000036101 Olanzapine (LY) 5 mg film-coated tablet, 28, blister pack 167681 933205041000036105 Olanzapine (LY) 5 mg film-coated tablet, 28 933196151000036102 Olanzapine (LY) 5 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +60540011000036105 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet, 48, blister pack 152039 56498011000036101 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet, 48 53942011000036104 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet 53346011000036105 Sinus Allergy and Pain Relief PE (Amcal) 53346011000036105 Sinus Allergy and Pain Relief PE (Amcal) 63383011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +778571000168101 Oxycodone MR (Apotex) 40 mg modified release tablet, 60, blister pack 160094 778561000168107 Oxycodone MR (Apotex) 40 mg modified release tablet, 60 778531000168104 Oxycodone MR (Apotex) 40 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +929049011000036109 Galvumet 50/850 film-coated tablet, 120, blister pack 161217 928410011000036103 Galvumet 50/850 film-coated tablet, 120 927969011000036100 Galvumet 50/850 film-coated tablet 9411000168105 Galvumet 50/850 9411000168105 Galvumet 50/850 929247011000036105 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet, 120 929155011000036104 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet 929132011000036106 vildagliptin + metformin +69228011000036101 Chlorhexidine Acetate (Baxter) 0.05% (500 mg/L) irrigation solution, 10 x 1 L bottles 19461 67028011000036104 Chlorhexidine Acetate (Baxter) 0.05% (500 mg/L) irrigation solution, 10 x 1 L bottles 65494011000036107 Chlorhexidine Acetate (Baxter) 0.05% (500 mg/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71598011000036106 chlorhexidine acetate 0.05% (500 mg/L) solution, 10 x 1 L bottles 70084011000036107 chlorhexidine acetate 0.05% (500 mg/L) solution, bottle 21404011000036101 chlorhexidine +60782011000036100 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years colour free 250 mg/5 mL oral liquid suspension, 200 mL, bottle 55119 56740011000036101 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years colour free 250 mg/5 mL oral liquid suspension, 200 mL 54059011000036101 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years colour free 250 mg/5 mL oral liquid suspension, 5 mL 50521000168102 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years 50521000168102 Dymadon Paracetamol Pain and Fever Relief for Kids 2 Years to 12 Years 63543011000036103 paracetamol 250 mg/5 mL oral liquid, 200 mL 62009011000036101 paracetamol 250 mg/5 mL oral liquid 21433011000036107 paracetamol +37437011000036100 Digibind 38 mg powder for injection, 1 vial 10963 36644011000036109 Digibind 38 mg powder for injection, 1 vial 36038011000036106 Digibind 38 mg powder for injection, 38 mg vial 35987011000036108 Digibind 35987011000036108 Digibind 38562011000036105 digoxin-specific antibody fragment F(Ab) 38 mg injection, 1 vial 37838011000036108 digoxin-specific antibody fragment F(Ab) 38 mg injection, vial 37720011000036105 digoxin-specific antibody fragment F(Ab) +898091000168103 Strensiq 80 mg/0.8 mL injection solution, 0.8 mL vial 232545 898081000168101 Strensiq 80 mg/0.8 mL injection solution, 0.8 mL vial 898061000168105 Strensiq 80 mg/0.8 mL injection solution, 0.8 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 898071000168104 asfotase alfa 80 mg/0.8 mL injection, 0.8 mL vial 898051000168108 asfotase alfa 80 mg/0.8 mL injection, vial 898041000168106 asfotase alfa +1072371000168106 Day/Night Cold and Flu Relief PE (Terry White Chemists) (36 x Day tablets, 12 x Night tablets), 48, blister pack 239592 1072361000168100 Day/Night Cold and Flu Relief PE (Terry White Chemists) (36 x Day tablets, 12 x Night tablets), 48 1072321000168105 Day/Night Cold and Flu Relief PE (Night) (Terry White Chemists) film-coated tablet 1072211000168106 Day/Night Cold and Flu Relief PE (Terry White Chemists) 1072231000168101 Day/Night Cold and Flu Relief PE (Night) (Terry White Chemists) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1072371000168106 Day/Night Cold and Flu Relief PE (Terry White Chemists) (36 x Day tablets, 12 x Night tablets), 48, blister pack 239592 1072361000168100 Day/Night Cold and Flu Relief PE (Terry White Chemists) (36 x Day tablets, 12 x Night tablets), 48 1072311000168103 Day/Night Cold and Flu Relief PE (Day) (Terry White Chemists) film-coated tablet 1072211000168106 Day/Night Cold and Flu Relief PE (Terry White Chemists) 1072221000168104 Day/Night Cold and Flu Relief PE (Day) (Terry White Chemists) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1023401000168102 Aripiprazole (Teva) 15 mg uncoated tablet, 30, blister pack 237972 1023391000168104 Aripiprazole (Teva) 15 mg uncoated tablet, 30 1023381000168102 Aripiprazole (Teva) 15 mg uncoated tablet 1023011000168106 Aripiprazole (Teva) 1023011000168106 Aripiprazole (Teva) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +928886011000036109 Ceftazidime (SXP) 1 g powder for injection, 5 vials 143195 928248011000036108 Ceftazidime (SXP) 1 g powder for injection, 5 vials 927901011000036100 Ceftazidime (SXP) 1 g powder for injection, vial 927789011000036108 Ceftazidime (SXP) 927789011000036108 Ceftazidime (SXP) 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +79708011000036103 Omeprazole (GA) 20 mg enteric tablet, 10, blister pack 159686 79524011000036103 Omeprazole (GA) 20 mg enteric tablet, 10 4956011000036105 Omeprazole (GA) 20 mg enteric tablet 3601011000036107 Omeprazole (GA) 3601011000036107 Omeprazole (GA) 79830011000036105 omeprazole 20 mg enteric tablet, 10 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +941351000168101 Revolade 25 mg powder for oral liquid, 30 sachets 236116 941341000168103 Revolade 25 mg powder for oral liquid, 30 sachets 941321000168109 Revolade 25 mg powder for oral liquid, 25 mg sachet 933219071000036102 Revolade 933219071000036102 Revolade 941331000168107 eltrombopag 25 mg powder for oral liquid, 30 sachets 941311000168102 eltrombopag 25 mg powder for oral liquid, sachet 933232121000036100 eltrombopag +18834011000036108 Staphylex 250 mg hard capsule, 24, blister pack 17683 13100011000036103 Staphylex 250 mg hard capsule, 24 6384011000036108 Staphylex 250 mg hard capsule 4347011000036100 Staphylex 4347011000036100 Staphylex 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +748291000168104 Morphine MR (CH) 100 mg modified release tablet, 60, blister pack 225432 748281000168102 Morphine MR (CH) 100 mg modified release tablet, 60 748171000168106 Morphine MR (CH) 100 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 35168011000036109 morphine sulfate pentahydrate 100 mg modified release tablet, 60 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +17774011000036103 Enahexal 10 mg uncoated tablet, 30, blister pack 121814 13731011000036109 Enahexal 10 mg uncoated tablet, 30 7014011000036108 Enahexal 10 mg uncoated tablet 4073011000036109 Enahexal 4073011000036109 Enahexal 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +86881011000036101 Favic 250 mg film-coated tablet, 20, blister pack 159611 86763011000036101 Favic 250 mg film-coated tablet, 20 86639011000036101 Favic 250 mg film-coated tablet 86581011000036100 Favic 86581011000036100 Favic 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1030571000168103 Atomoxetine (Genpar) 10 mg hard capsule, 56, blister pack 234846 1030561000168109 Atomoxetine (Genpar) 10 mg hard capsule, 56 1030451000168106 Atomoxetine (Genpar) 10 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 829971000168102 atomoxetine 10 mg capsule, 56 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +80025011000036104 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 3 x 0.5 mL syringes 133813 79970011000036104 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 3 x 0.5 mL syringes 6618011000036108 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 80065011000036109 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, 3 x 0.5 mL syringes 23035011000036108 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +1063781000168108 Pain Relief Plus (Chemplus) uncoated tablet, 20, blister pack 188740 1063771000168105 Pain Relief Plus (Chemplus) uncoated tablet, 20 1063721000168109 Pain Relief Plus (Chemplus) uncoated tablet 1063711000168102 Pain Relief Plus (Chemplus) 1063711000168102 Pain Relief Plus (Chemplus) 52897011000036108 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +932531000168108 Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL, aerosol can 73425 932521000168105 Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL 932511000168103 Fluoride (Laclede) Witchy Candy Mint Flavour foam 932331000168103 Fluoride (Laclede) 932331000168103 Fluoride (Laclede) 932361000168106 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL 932341000168107 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam 61768011000036106 fluoride +60932011000036103 Claratyne 10 mg effervescent tablet, 14, blister pack 62125 56886011000036108 Claratyne 10 mg effervescent tablet, 14 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63630011000036104 loratadine 10 mg effervescent tablet, 14 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +69482011000036106 Strepsils Plus lozenge, 16, blister pack 50509 67282011000036104 Strepsils Plus lozenge, 16 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71830011000036101 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +1000521000168109 Tadalafil (Apo) 2.5 mg film-coated tablet, 28, blister pack 205869 1000511000168102 Tadalafil (Apo) 2.5 mg film-coated tablet, 28 1000501000168100 Tadalafil (Apo) 2.5 mg film-coated tablet 1000221000168106 Tadalafil (Apo) 1000221000168106 Tadalafil (Apo) 891251000168109 tadalafil 2.5 mg tablet, 28 891231000168103 tadalafil 2.5 mg tablet 21725011000036104 tadalafil +19439011000036100 Aredia (1 x 90 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 53891 12721011000036103 Aredia (1 x 90 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 5717011000036101 Aredia (pamidronate disodium 90 mg) powder for injection, 90 mg vial 36891000168104 Aredia 36891000168104 Aredia 27312011000036101 pamidronate disodium 90 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 22665011000036100 pamidronate disodium 90 mg injection, vial 21339011000036101 pamidronate disodium +19439011000036100 Aredia (1 x 90 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 53891 12721011000036103 Aredia (1 x 90 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 637261000168101 Aredia (inert substance) diluent, 10 mL ampoule 36891000168104 Aredia 36891000168104 Aredia 27312011000036101 pamidronate disodium 90 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 629701000168101 inert substance diluent, 10 mL ampoule 21220011000036103 inert substance +875211000168101 Bisoprolol (AN) 1.25 mg film-coated tablet, 28, blister pack 175919 875201000168104 Bisoprolol (AN) 1.25 mg film-coated tablet, 28 875191000168102 Bisoprolol (AN) 1.25 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 46790011000036102 bisoprolol fumarate 1.25 mg tablet, 28 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +44627011000036109 Levitra 5 mg film-coated tablet, 2, blister pack 90498 42080011000036104 Levitra 5 mg film-coated tablet, 2 40348011000036103 Levitra 5 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46847011000036109 vardenafil 5 mg tablet, 2 45332011000036108 vardenafil 5 mg tablet 44856011000036100 vardenafil +931558011000036108 Ondron 8 mg film-coated tablet, 4, blister pack 163439 930719011000036101 Ondron 8 mg film-coated tablet, 4 930027011000036102 Ondron 8 mg film-coated tablet 40221000168103 Ondron 40221000168103 Ondron 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +19076011000036101 Sandostatin 100 microgram/mL injection solution, 5 x 1 mL ampoules 42193 12384011000036106 Sandostatin 100 microgram/mL injection solution, 5 x 1 mL ampoules 5183011000036104 Sandostatin 100 microgram/mL injection solution, ampoule 40101000168103 Sandostatin 40101000168103 Sandostatin 27091011000036109 octreotide 100 microgram/mL injection, 5 x 1 mL ampoules 22460011000036106 octreotide 100 microgram/mL injection, ampoule 21316011000036104 octreotide +888131000168102 Bosentan (Intas) 62.5 mg film-coated tablet, 500, bottle 235888 888121000168100 Bosentan (Intas) 62.5 mg film-coated tablet, 500 888071000168100 Bosentan (Intas) 62.5 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884281000168101 bosentan 62.5 mg tablet, 500 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1082491000168107 Atorvastatin (WT) 80 mg film-coated tablet, 100, bottle 217175 1082481000168109 Atorvastatin (WT) 80 mg film-coated tablet, 100 1082411000168103 Atorvastatin (WT) 80 mg film-coated tablet 1082401000168101 Atorvastatin (WT) 1082401000168101 Atorvastatin (WT) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +777291000168102 Karvea 75 mg film-coated tablet, 56, blister pack 101702 777281000168100 Karvea 75 mg film-coated tablet, 56 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777271000168103 irbesartan 75 mg tablet, 56 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +37691011000036101 Ebixa 10 mg film-coated tablet, 100, blister pack 82026 36957011000036100 Ebixa 10 mg film-coated tablet, 100 36282011000036108 Ebixa 10 mg film-coated tablet 19751000168102 Ebixa 19751000168102 Ebixa 38838011000036104 memantine hydrochloride 10 mg tablet, 100 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +19260011000036104 Kapanol 50 mg modified release capsule, 20, blister pack 48135 12550011000036108 Kapanol 50 mg modified release capsule, 20 5859011000036100 Kapanol 50 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 27192011000036109 morphine sulfate pentahydrate 50 mg modified release capsule, 20 22554011000036102 morphine sulfate pentahydrate 50 mg modified release capsule 21252011000036100 morphine +1068031000168104 Ibuprofen plus Codeine (Pharmacy Care) film-coated tablet, 30, blister pack 227476 1068021000168102 Ibuprofen plus Codeine (Pharmacy Care) film-coated tablet, 30 1068011000168109 Ibuprofen plus Codeine (Pharmacy Care) film-coated tablet 1067971000168103 Ibuprofen plus Codeine (Pharmacy Care) 1067971000168103 Ibuprofen plus Codeine (Pharmacy Care) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +135671000036105 Palexia SR 100 mg modified release tablet, 28, blister pack 165346 135031000036100 Palexia SR 100 mg modified release tablet, 28 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 135041000036105 tapentadol 100 mg modified release tablet, 28 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +84392011000036100 PicoPrep powder for oral liquid, 3 x 15.55 g sachets 20508 84084011000036106 PicoPrep powder for oral liquid, 3 x 15.55 g sachets 83702011000036104 PicoPrep powder for oral liquid, 15.55 g sachet 83542011000036107 PicoPrep 83542011000036107 PicoPrep 84667011000036105 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 3 x 15.55 g sachets 84441011000036108 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 15.55 g sachet 84409011000036101 picosulfate + magnesium oxide heavy + citric acid +654681000168104 Glimepiride (AN) 2 mg uncoated tablet, 30, blister pack 156405 654671000168102 Glimepiride (AN) 2 mg uncoated tablet, 30 654661000168108 Glimepiride (AN) 2 mg uncoated tablet 654591000168100 Glimepiride (AN) 654591000168100 Glimepiride (AN) 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +933215711000036108 Olanzapine (LY) 10 mg wafer, 28, blister pack 167689 933205241000036100 Olanzapine (LY) 10 mg wafer, 28 933196231000036101 Olanzapine (LY) 10 mg wafer 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 27714011000036109 olanzapine 10 mg wafer, 28 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +1069631000168102 Analgesic/Calmative (Sandoz) uncoated tablet, 40, blister pack 211514 1069621000168100 Analgesic/Calmative (Sandoz) uncoated tablet, 40 1069611000168107 Analgesic/Calmative (Sandoz) uncoated tablet 1069601000168109 Analgesic/Calmative (Sandoz) 1069601000168109 Analgesic/Calmative (Sandoz) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +19197011000036102 Kalma 500 microgram uncoated tablet, 50, bottle 46837 12489011000036103 Kalma 500 microgram uncoated tablet, 50 4665011000036108 Kalma 500 microgram uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +18609011000036109 Roxide 300 mg film-coated tablet, 5, blister pack 101028 11174011000036106 Roxide 300 mg film-coated tablet, 5 5027011000036107 Roxide 300 mg film-coated tablet 3158011000036109 Roxide 3158011000036109 Roxide 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +61566011000036108 Gavilast 12 Hour Action 150 mg film-coated tablet, 14, blister pack 94252 57488011000036101 Gavilast 12 Hour Action 150 mg film-coated tablet, 14 54322011000036106 Gavilast 12 Hour Action 150 mg film-coated tablet 23451000168100 Gavilast 12 Hour Action 23451000168100 Gavilast 12 Hour Action 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1026231000168104 Neuroccord 150 mg hard capsule, 200, bottle 235841 1026221000168102 Neuroccord 150 mg hard capsule, 200 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 971691000168100 pregabalin 150 mg capsule, 200 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +802951000168109 Abilify ODT 30 mg orally disintegrating tablet, 56, blister pack 128904 802941000168107 Abilify ODT 30 mg orally disintegrating tablet, 56 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802931000168103 aripiprazole 30 mg orally disintegrating tablet, 56 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +920695011000036107 Enalapril Maleate (GA) 10 mg uncoated tablet, 30, blister pack 121954 920376011000036101 Enalapril Maleate (GA) 10 mg uncoated tablet, 30 920142011000036109 Enalapril Maleate (GA) 10 mg uncoated tablet 920068011000036109 Enalapril Maleate (GA) 920068011000036109 Enalapril Maleate (GA) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +18016011000036107 Addos XR 30 mg modified release tablet, 30, blister pack 114825 11480011000036108 Addos XR 30 mg modified release tablet, 30 4497011000036103 Addos XR 30 mg modified release tablet 30671000168101 Addos XR 30671000168101 Addos XR 28048011000036102 nifedipine 30 mg modified release tablet, 30 23369011000036100 nifedipine 30 mg modified release tablet 21241011000036108 nifedipine +1072301000168101 Seasonique (84 x 150 microgram/30 microgram tablets, 7 x 10 microgram tablets), 91, blister pack 238384 1072291000168102 Seasonique (84 x 150 microgram/30 microgram tablets, 7 x 10 microgram tablets), 91 1072241000168105 Seasonique (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 1072201000168108 Seasonique 1072201000168108 Seasonique 1072281000168100 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [84] (&) ethinylestradiol 10 microgram tablet [7], 91 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +1072301000168101 Seasonique (84 x 150 microgram/30 microgram tablets, 7 x 10 microgram tablets), 91, blister pack 238384 1072291000168102 Seasonique (84 x 150 microgram/30 microgram tablets, 7 x 10 microgram tablets), 91 1072271000168103 Seasonique (ethinylestradiol 10 microgram) film-coated tablet 1072201000168108 Seasonique 1072201000168108 Seasonique 1072281000168100 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [84] (&) ethinylestradiol 10 microgram tablet [7], 91 1072261000168109 ethinylestradiol 10 microgram tablet 1072251000168107 ethinylestradiol +1046561000168106 Buprenorphine (SDZ) 20 microgram/hour patch, 1, sachet 269673 1046551000168109 Buprenorphine (SDZ) 20 microgram/hour patch, 1 1046531000168103 Buprenorphine (SDZ) 20 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046541000168107 buprenorphine 20 microgram/hour patch, 1 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +1080961000168108 Alpha Keri lotion, 650 mL, bottle 24617 1080951000168106 Alpha Keri lotion, 650 mL 5061011000036105 Alpha Keri lotion 30572011000036100 Alpha Keri 30572011000036100 Alpha Keri 1080941000168109 liquid paraffin 15.2% + lanolin oil 0.56% lotion, 650 mL 22370011000036106 liquid paraffin 15.2% + lanolin oil 0.56% lotion 33631011000036102 liquid paraffin + lanolin oil +815901000168100 Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets 151042 815891000168104 Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets 815881000168102 Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 1 sachet 929820011000036104 Lemsip Max Cold and Flu Direct with Decongestant 929820011000036104 Lemsip Max Cold and Flu Direct with Decongestant 932365011000036106 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 10 sachets 931833011000036101 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 1 sachet 61800011000036107 phenylephrine + paracetamol +1099691000168100 Prochlorperazine (Pharmacy Choice) 5 mg uncoated tablet, 10, blister pack 276716 1099681000168103 Prochlorperazine (Pharmacy Choice) 5 mg uncoated tablet, 10 1099671000168101 Prochlorperazine (Pharmacy Choice) 5 mg uncoated tablet 1099661000168107 Prochlorperazine (Pharmacy Choice) 1099661000168107 Prochlorperazine (Pharmacy Choice) 924183011000036108 prochlorperazine maleate 5 mg tablet, 10 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +19093011000036103 Betoptic S 0.25% eye drops suspension, 5 mL, bottle 42900 12399011000036106 Betoptic S 0.25% eye drops suspension, 5 mL 5710011000036102 Betoptic S 0.25% eye drops suspension 27701000168103 Betoptic S 27701000168103 Betoptic S 27100011000036108 betaxolol 0.25% eye drops, 5 mL 22468011000036108 betaxolol 0.25% eye drops 21729011000036102 betaxolol +957271000168105 Nimbex 50 mg/25 mL injection solution, 2 x 25 mL ampoules 55933 957261000168104 Nimbex 50 mg/25 mL injection solution, 2 x 25 mL ampoules 957241000168103 Nimbex 50 mg/25 mL injection solution, 25 mL ampoule 39720011000036100 Nimbex 39720011000036100 Nimbex 957251000168101 cisatracurium 50 mg/25 mL injection, 2 x 25 mL ampoules 957231000168107 cisatracurium 50 mg/25 mL injection, ampoule 44902011000036101 cisatracurium +1040661000168109 Antibacterial Lozenges (Amcal) Honey and Lemon lozenge, 16, blister pack 210128 1040651000168107 Antibacterial Lozenges (Amcal) Honey and Lemon lozenge, 16 1040641000168105 Antibacterial Lozenges (Amcal) Honey and Lemon lozenge 1040581000168104 Antibacterial Lozenges (Amcal) 1040581000168104 Antibacterial Lozenges (Amcal) 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +50262011000036105 Tubigrip Long Stocking (1482) small size bandage, 1, carton 49327011000036102 Tubigrip Long Stocking (1482) small size bandage, 1 48753011000036105 Tubigrip Long Stocking (1482) small size bandage 64081000168105 Tubigrip Long Stocking (1482) 64081000168105 Tubigrip Long Stocking (1482) 51308011000036105 bandage tubular long stocking small size bandage, 1 50837011000036105 bandage tubular long stocking small size bandage 50728011000036105 bandage tubular long stocking +81981000036102 Valsartan/Amlodipine 80/5 (Sandoz) film-coated tablet, 28, blister pack 151626 79901000036102 Valsartan/Amlodipine 80/5 (Sandoz) film-coated tablet, 28 78491000036105 Valsartan/Amlodipine 80/5 (Sandoz) film-coated tablet 58761000168102 Valsartan/Amlodipine 80/5 (Sandoz) 58761000168102 Valsartan/Amlodipine 80/5 (Sandoz) 63227011000036104 amlodipine 5 mg + valsartan 80 mg tablet, 28 61897011000036105 amlodipine 5 mg + valsartan 80 mg tablet 61712011000036107 amlodipine + valsartan +181721000036106 Ircal 1 g/g eye ointment, 3.5 g, tube 181731000036108 Ircal 1 g/g eye ointment, 3.5 g 35473011000036107 Ircal 1 g/g eye ointment 35437011000036101 Ircal 35437011000036101 Ircal 35762011000036104 paraffin 1 g/g eye ointment, 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +859301000168107 Allermosone Aqueous 50 microgram/actuation nasal spray, 120 actuations, pump pack 233575 859291000168106 Allermosone Aqueous 50 microgram/actuation nasal spray, 120 actuations 859251000168101 Allermosone Aqueous 50 microgram/actuation nasal spray, actuation 859241000168103 Allermosone Aqueous 859241000168103 Allermosone Aqueous 857711000168103 mometasone furoate 50 microgram/actuation nasal spray, 120 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +77248011000036108 Ozapace 8 mg uncoated tablet, 30, blister pack 149999 76664011000036105 Ozapace 8 mg uncoated tablet, 30 76100011000036103 Ozapace 8 mg uncoated tablet 75927011000036108 Ozapace 75927011000036108 Ozapace 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +86155011000036103 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 36, bottle 163795 85763011000036104 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 36 85379011000036108 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 86453011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 36 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +69136011000036100 Nicotinell Classic 4 mg chewing gum, 12, blister pack 152894 66936011000036109 Nicotinell Classic 4 mg chewing gum, 12 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +811631000168100 Afinitor 5 mg dispersible tablet, 30, blister pack 200205 811621000168103 Afinitor 5 mg dispersible tablet, 30 811601000168107 Afinitor 5 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811611000168105 everolimus 5 mg dispersible tablet, 30 811591000168100 everolimus 5 mg dispersible tablet 21615011000036103 everolimus +775761000168105 Fluarix Tetra 2016 without Needle injection suspension, 1 x 0.5 mL syringe 200674 775751000168108 Fluarix Tetra 2016 without Needle injection suspension, 1 x 0.5 mL syringe 772641000168106 Fluarix Tetra 2016 without Needle injection suspension, 0.5 mL syringe 772631000168102 Fluarix Tetra 2016 772631000168102 Fluarix Tetra 2016 775741000168106 influenza quadrivalent adult vaccine 2016 injection, 1 x 0.5 mL syringe 768461000168102 influenza quadrivalent adult vaccine 2016 injection, 0.5 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +61548011000036103 Pain (Chemists' Own) uncoated tablet, 50, bottle 93828 57476011000036107 Pain (Chemists' Own) uncoated tablet, 50 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 52904011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 50 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +135831000036109 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet, 30, blister pack 195279 135251000036102 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet, 30 134441000036102 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet 58461000168108 Candesartan/HCT 32 mg/12.5 mg (Sandoz) 58461000168108 Candesartan/HCT 32 mg/12.5 mg (Sandoz) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +68929011000036108 Liquid Paraffin (Orion) 1 mL/mL application, 5 g, tube 10850 66567011000036109 Liquid Paraffin (Orion) 1 mL/mL application, 5 g 65510011000036105 Liquid Paraffin (Orion) 1 mL/mL application 65075011000036108 Liquid Paraffin (Orion) 65075011000036108 Liquid Paraffin (Orion) 71290011000036101 liquid paraffin 1 mL/mL application, 5 g 69933011000036109 liquid paraffin 1 mL/mL application 33623011000036103 liquid paraffin +657811000168104 Candesartan Cilexetil (AN) 8 mg uncoated tablet, 30, blister pack 195486 655031000168105 Candesartan Cilexetil (AN) 8 mg uncoated tablet, 30 655021000168107 Candesartan Cilexetil (AN) 8 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +43832011000036102 Oxaliplatin (DBL) 20 mg powder for injection, 1 vial 126110 41333011000036102 Oxaliplatin (DBL) 20 mg powder for injection, 1 vial 39886011000036105 Oxaliplatin (DBL) 20 mg powder for injection, 20 mg vial 3002011000036107 Oxaliplatin (DBL) 3002011000036107 Oxaliplatin (DBL) 46255011000036108 oxaliplatin 20 mg injection, 1 vial 45046011000036107 oxaliplatin 20 mg injection, vial 21543011000036101 oxaliplatin +17803011000036109 Atehexal 50 mg film-coated tablet, 30, blister pack 101462 11199011000036102 Atehexal 50 mg film-coated tablet, 30 5647011000036103 Atehexal 50 mg film-coated tablet 3669011000036107 Atehexal 3669011000036107 Atehexal 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1066501000168103 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 12, blister pack 161545 1066491000168105 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 12 1066481000168107 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +18287011000036103 Ondaz 8 mg film-coated tablet, 10, blister pack 116415 11512011000036102 Ondaz 8 mg film-coated tablet, 10 5174011000036106 Ondaz 8 mg film-coated tablet 3761000168104 Ondaz 3761000168104 Ondaz 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +929639011000036102 Momex SR 100 mg modified release tablet, 28, blister pack 132259 929489011000036109 Momex SR 100 mg modified release tablet, 28 78631011000036108 Momex SR 100 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 929758011000036101 morphine sulfate pentahydrate 100 mg modified release tablet, 28 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +104281000036102 Abisart 300 mg film-coated tablet, 30, bottle 170774 101471000036101 Abisart 300 mg film-coated tablet, 30 98731000036108 Abisart 300 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +104281000036102 Abisart 300 mg film-coated tablet, 30, bottle 214582 101471000036101 Abisart 300 mg film-coated tablet, 30 98731000036108 Abisart 300 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +863091000168105 Amitriptyline (AC) 25 mg tablet, 100, blister pack 232107 863081000168107 Amitriptyline (AC) 25 mg tablet, 100 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +756011000168100 Laxative with Senna (Chemists' Own) film-coated tablet, 500, bottle 218551 756001000168103 Laxative with Senna (Chemists' Own) film-coated tablet, 500 701881000168100 Laxative with Senna (Chemists' Own) film-coated tablet 701871000168103 Laxative with Senna (Chemists' Own) 701871000168103 Laxative with Senna (Chemists' Own) 755991000168104 docusate sodium 50 mg + sennoside B 8 mg tablet, 500 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +1066821000168105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 15, blister pack 197885 1066811000168103 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 15 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +743131000168100 Morphine MR (AN) 100 mg modified release tablet, 60, blister pack 225428 743121000168103 Morphine MR (AN) 100 mg modified release tablet, 60 743071000168103 Morphine MR (AN) 100 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 35168011000036109 morphine sulfate pentahydrate 100 mg modified release tablet, 60 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +672501000168104 Sertraline (AN) 100 mg film-coated tablet, 30, blister pack 195326 672491000168106 Sertraline (AN) 100 mg film-coated tablet, 30 672481000168108 Sertraline (AN) 100 mg film-coated tablet 672471000168105 Sertraline (AN) 672471000168105 Sertraline (AN) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +121371000036102 Quetiapine (Pharmacy Choice) 300 mg film-coated tablet, 60, blister pack 162410 120261000036108 Quetiapine (Pharmacy Choice) 300 mg film-coated tablet, 60 119501000036108 Quetiapine (Pharmacy Choice) 300 mg film-coated tablet 119201000036105 Quetiapine (Pharmacy Choice) 119201000036105 Quetiapine (Pharmacy Choice) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +18626011000036105 Pravastatin Sodium (Chemmart) 20 mg uncoated tablet, 30, blister pack 118725 11590011000036102 Pravastatin Sodium (Chemmart) 20 mg uncoated tablet, 30 5410011000036105 Pravastatin Sodium (Chemmart) 20 mg uncoated tablet 3588011000036109 Pravastatin Sodium (Chemmart) 3588011000036109 Pravastatin Sodium (Chemmart) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +19934011000036104 Epaq Inhaler 100 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 67069 13178011000036105 Epaq Inhaler 100 microgram/actuation pressurised inhalation, 200 actuations 6461011000036102 Epaq Inhaler 100 microgram/actuation pressurised inhalation, actuation 32371000168105 Epaq Inhaler 32371000168105 Epaq Inhaler 27601011000036100 salbutamol 100 microgram/actuation pressurised inhalation, 200 actuations 22940011000036103 salbutamol 100 microgram/actuation pressurised inhalation, actuation 21493011000036100 salbutamol +908321000168105 Celecoxib (Bellwether) 100 mg hard capsule, 20, blister pack 196185 908311000168103 Celecoxib (Bellwether) 100 mg hard capsule, 20 908241000168105 Celecoxib (Bellwether) 100 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +908361000168100 Celecoxib (Bellwether) 100 mg hard capsule, 50, blister pack 196185 908351000168102 Celecoxib (Bellwether) 100 mg hard capsule, 50 908241000168105 Celecoxib (Bellwether) 100 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +931801000168105 Centevo 100/25/200 mg film-coated tablet, 130, bottle 238855 931791000168109 Centevo 100/25/200 mg film-coated tablet, 130 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931781000168106 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 130 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +888951000168105 Bosentan (Astron) 62.5 mg film-coated tablet, 112, blister pack 235895 888941000168108 Bosentan (Astron) 62.5 mg film-coated tablet, 112 888831000168108 Bosentan (Astron) 62.5 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884361000168101 bosentan 62.5 mg tablet, 112 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +95621000036109 Nevirapine (RBX) 200 mg uncoated tablet, 60, bottle 195526 94551000036103 Nevirapine (RBX) 200 mg uncoated tablet, 60 93601000036103 Nevirapine (RBX) 200 mg uncoated tablet 93341000036105 Nevirapine (RBX) 93341000036105 Nevirapine (RBX) 27383011000036105 nevirapine 200 mg tablet, 60 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +1032261000168106 Aripra 15 mg uncoated tablet, 100, bottle 217189 1032251000168109 Aripra 15 mg uncoated tablet, 100 1031861000168102 Aripra 15 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +743451000168103 Jardiamet 5 mg/500 mg film-coated tablet, 14, blister pack 229815 743441000168100 Jardiamet 5 mg/500 mg film-coated tablet, 14 743421000168106 Jardiamet 5 mg/500 mg film-coated tablet 743401000168102 Jardiamet 5 mg/500 mg 743401000168102 Jardiamet 5 mg/500 mg 743431000168109 empagliflozin 5 mg + metformin hydrochloride 500 mg tablet, 14 743411000168104 empagliflozin 5 mg + metformin hydrochloride 500 mg tablet 743221000168107 empagliflozin + metformin +50227011000036102 Risperidone (GA) 1 mg film-coated tablet, 60, bottle 127775 49553011000036109 Risperidone (GA) 1 mg film-coated tablet, 60 48628011000036106 Risperidone (GA) 1 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +18868011000036106 Ospolot 200 mg film-coated tablet, 200, bottle 18848 12179011000036108 Ospolot 200 mg film-coated tablet, 200 4988011000036101 Ospolot 200 mg film-coated tablet 4335011000036109 Ospolot 4335011000036109 Ospolot 26967011000036105 sulthiame 200 mg tablet, 200 22341011000036100 sulthiame 200 mg tablet 21786011000036100 sulthiame +1092381000168100 Antiseptic Solution (Terry White Chemists) 10% solution, 15 mL, bottle 281617 1092371000168103 Antiseptic Solution (Terry White Chemists) 10% solution, 15 mL 1092361000168109 Antiseptic Solution (Terry White Chemists) 10% solution 1092351000168107 Antiseptic Solution (Terry White Chemists) 1092351000168107 Antiseptic Solution (Terry White Chemists) 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +31471000036101 Actiq 400 microgram lozenge on handle, 9, blister pack 91600 29311000036100 Actiq 400 microgram lozenge on handle, 9 34076011000036100 Actiq 400 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 29321000036107 fentanyl 400 microgram lozenge on handle, 9 34911011000036105 fentanyl 400 microgram lozenge on handle 21258011000036102 fentanyl +679011000168100 Clindamycin (Terry White Chemists) 150 mg hard capsule, 24, blister pack 214411 679001000168103 Clindamycin (Terry White Chemists) 150 mg hard capsule, 24 678991000168103 Clindamycin (Terry White Chemists) 150 mg hard capsule 678981000168101 Clindamycin (Terry White Chemists) 678981000168101 Clindamycin (Terry White Chemists) 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +1094551000168108 Bisacodyl Laxative (Amcal) 5 mg enteric tablet, 50, blister pack 282485 1094541000168106 Bisacodyl Laxative (Amcal) 5 mg enteric tablet, 50 1094531000168102 Bisacodyl Laxative (Amcal) 5 mg enteric tablet 1094521000168100 Bisacodyl Laxative (Amcal) 1094521000168100 Bisacodyl Laxative (Amcal) 71939011000036103 bisacodyl 5 mg enteric tablet, 50 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +19450011000036107 Alphamox 125 mg/5 mL powder for oral liquid, 100 mL, bottle 54149 12727011000036106 Alphamox 125 mg/5 mL powder for oral liquid, 100 mL 4499011000036105 Alphamox 125 mg/5 mL powder for oral liquid, 5 mL 4042011000036101 Alphamox 4042011000036101 Alphamox 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +116461000036104 Rosuvastatin (Chemmart) 5 mg film-coated tablet, 30, blister pack 183063 114761000036101 Rosuvastatin (Chemmart) 5 mg film-coated tablet, 30 113231000036101 Rosuvastatin (Chemmart) 5 mg film-coated tablet 112531000036107 Rosuvastatin (Chemmart) 112531000036107 Rosuvastatin (Chemmart) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +12051000036104 Zypine 7.5 mg film-coated tablet, 28, bottle 154619 7121000036109 Zypine 7.5 mg film-coated tablet, 28 3311000036105 Zypine 7.5 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +35663011000036103 Theratears 0.25% eye drops solution, 24 x 0.6 mL unit doses, ampoule 35570011000036106 Theratears 0.25% eye drops solution, 24 x 0.6 mL unit doses 35460011000036108 Theratears 0.25% eye drops solution, 0.6 mL unit dose 42141000168100 Theratears 42141000168100 Theratears 35767011000036102 carmellose sodium 0.25% eye drops, 24 x 0.6 mL unit doses 35708011000036100 carmellose sodium 0.25% eye drops, unit dose 35688011000036105 carmellose sodium +940391000168104 Humira 40 mg/0.8 mL injection solution, 3 x 0.8 mL injection devices 199410 940381000168102 Humira 40 mg/0.8 mL injection solution, 3 x 0.8 mL injection devices 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 940371000168100 adalimumab 40 mg/0.8 mL injection, 3 x 0.8 mL injection devices 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 21584011000036107 adalimumab +929117011000036101 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment, 40 x 10 g, tubes 42840 928478011000036108 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment, 40 x 10 g 65547011000036100 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment 49231000168106 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) 49231000168106 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) 929270011000036108 liquid paraffin 50% + white soft paraffin 50% ointment, 40 x 10 g 70224011000036105 liquid paraffin 50% + white soft paraffin 50% ointment 69750011000036107 liquid paraffin + white soft paraffin +929083011000036102 Pioglitazone (Apotex) 15 mg uncoated tablet, 28, blister pack 166911 928444011000036102 Pioglitazone (Apotex) 15 mg uncoated tablet, 28 927985011000036104 Pioglitazone (Apotex) 15 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +84300011000036101 Vimpat 100 mg film-coated tablet, 56, blister pack 151811 83993011000036101 Vimpat 100 mg film-coated tablet, 56 83628011000036102 Vimpat 100 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84628011000036104 lacosamide 100 mg tablet, 56 84428011000036101 lacosamide 100 mg tablet 84408011000036109 lacosamide +84300011000036101 Vimpat 100 mg film-coated tablet, 56, blister pack 196450 83993011000036101 Vimpat 100 mg film-coated tablet, 56 83628011000036102 Vimpat 100 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84628011000036104 lacosamide 100 mg tablet, 56 84428011000036101 lacosamide 100 mg tablet 84408011000036109 lacosamide +674671000168100 Ondansetron (Medis) 4 mg/2 mL injection solution, 2 mL ampoule 124504 674661000168106 Ondansetron (Medis) 4 mg/2 mL injection solution, 2 mL ampoule 674651000168109 Ondansetron (Medis) 4 mg/2 mL injection solution, 2 mL ampoule 674591000168103 Ondansetron (Medis) 674591000168103 Ondansetron (Medis) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +923805011000036102 Sulprix 50 mg tablet, 50, bottle 156045 923361011000036100 Sulprix 50 mg tablet, 50 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924159011000036103 amisulpride 50 mg tablet, 50 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +69274011000036107 Glycine (Baxter) 1.5% (45 g/3 L) irrigation solution, 3 L bag 19478 67074011000036105 Glycine (Baxter) 1.5% (45 g/3 L) irrigation solution, 3 L bag 65446011000036108 Glycine (Baxter) 1.5% (45 g/3 L) irrigation solution, 3 L bag 65018011000036109 Glycine (Baxter) 65018011000036109 Glycine (Baxter) 71644011000036102 glycine 1.5% (45 g/3 L) solution, 3 L bag 70106011000036105 glycine 1.5% (45 g/3 L) solution, bag 69852011000036109 glycine +77213011000036105 Trandolapril (Generic Health) 2 mg hard capsule, 28, blister pack 135976 76629011000036102 Trandolapril (Generic Health) 2 mg hard capsule, 28 76074011000036107 Trandolapril (Generic Health) 2 mg hard capsule 76010011000036105 Trandolapril (Generic Health) 76010011000036105 Trandolapril (Generic Health) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +19110011000036102 Thiotepa (Sigma) 15 mg powder for injection, 1 vial 43083 12415011000036102 Thiotepa (Sigma) 15 mg powder for injection, 1 vial 5841011000036102 Thiotepa (Sigma) 15 mg powder for injection, 15 mg vial 3100011000036104 Thiotepa (Sigma) 3100011000036104 Thiotepa (Sigma) 27106011000036106 thiotepa 15 mg injection, 1 vial 22474011000036107 thiotepa 15 mg injection, vial 21919011000036100 thiotepa +926744011000036103 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 5 mL ampoule 117967 926106011000036106 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 5 mL ampoule 925585011000036106 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 5 mL ampoule 925569011000036105 Flumazenil (Sandoz) 925569011000036105 Flumazenil (Sandoz) 927307011000036103 flumazenil 500 microgram/5 mL injection, 5 mL ampoule 37931011000036105 flumazenil 500 microgram/5 mL injection, ampoule 37762011000036103 flumazenil +794611000168106 Tacrolimus (Sandoz) 2 mg hard capsule, 90, blister pack 229757 794601000168108 Tacrolimus (Sandoz) 2 mg hard capsule, 90 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794591000168101 tacrolimus 2 mg capsule, 90 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +37529011000036103 Anexate 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 13706 36797011000036102 Anexate 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 36079011000036101 Anexate 500 microgram/5 mL injection solution, 5 mL ampoule 35857011000036109 Anexate 35857011000036109 Anexate 38694011000036109 flumazenil 500 microgram/5 mL injection, 5 x 5 mL ampoules 37931011000036105 flumazenil 500 microgram/5 mL injection, ampoule 37762011000036103 flumazenil +32575011000036104 Vastoran 40 mg uncoated tablet, 30, blister pack 140042 32366011000036103 Vastoran 40 mg uncoated tablet, 30 32244011000036106 Vastoran 40 mg uncoated tablet 32191011000036100 Vastoran 32191011000036100 Vastoran 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +14151000036107 Trovas 10 mg film-coated tablet, 30, bottle 179844 7771000036107 Trovas 10 mg film-coated tablet, 30 2241000036109 Trovas 10 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +933216031000036108 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 250 mL, bottle 160736 933205611000036104 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 250 mL 933196661000036109 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 933205621000036106 chlorhexidine gluconate 0.12% mouthwash, 250 mL 933196671000036101 chlorhexidine gluconate 0.12% mouthwash 21404011000036101 chlorhexidine +933216031000036108 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 250 mL, bottle 66275 933205611000036104 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 250 mL 933196661000036109 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 933205621000036106 chlorhexidine gluconate 0.12% mouthwash, 250 mL 933196671000036101 chlorhexidine gluconate 0.12% mouthwash 21404011000036101 chlorhexidine +756101000168104 Macrogol plus Electrolytes (Apo) powder for oral liquid, 2 sachets 204650 756091000168109 Macrogol plus Electrolytes (Apo) powder for oral liquid, 2 sachets 674071000168107 Macrogol plus Electrolytes (Apo) powder for oral liquid, sachet 154511000036103 Macrogol plus Electrolytes (Apo) 154511000036103 Macrogol plus Electrolytes (Apo) 669021000168104 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 2 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +61208011000036100 Tri-Profen 200 mg film-coated tablet, 100, bottle 75733 57144011000036101 Tri-Profen 200 mg film-coated tablet, 100 54224011000036106 Tri-Profen 200 mg film-coated tablet 53358011000036106 Tri-Profen 53358011000036106 Tri-Profen 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +19877011000036102 Eprex 10 000 units/mL injection solution, 6 x 1 mL syringes 65446 13124011000036102 Eprex 10 000 units/mL injection solution, 6 x 1 mL syringes 6407011000036106 Eprex 10 000 units/mL injection solution, syringe 3309011000036103 Eprex 3309011000036103 Eprex 27565011000036106 epoetin alfa 10 000 units/mL injection, 6 x 1 mL syringes 22904011000036104 epoetin alfa 10 000 units/mL injection, syringe 21294011000036104 epoetin alfa +1040941000168102 Britussol Cough Linctus oral liquid solution, 500 mL, bottle 93440 1040931000168106 Britussol Cough Linctus oral liquid solution, 500 mL 1040831000168102 Britussol Cough Linctus oral liquid solution, 5 mL 1040821000168100 Britussol Cough Linctus 1040821000168100 Britussol Cough Linctus 1040921000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 500 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +1013211000168107 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 20 mL vial 49610 1013201000168109 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 20 mL vial 1013181000168108 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 20 mL vial 14501000168105 Optiray-350 14501000168105 Optiray-350 1013191000168106 ioversol 741 mg (iodine 350 mg)/mL injection, 20 mL vial 1013171000168105 ioversol 741 mg (iodine 350 mg)/mL injection, 20 mL vial 77421011000036103 ioversol +19352011000036103 Androcur 100 mg uncoated tablet, 50, blister pack 51449 12640011000036100 Androcur 100 mg uncoated tablet, 50 4805011000036101 Androcur 100 mg uncoated tablet 3109011000036105 Androcur 3109011000036105 Androcur 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +927686011000036107 Zaditen 0.025% eye drops solution, 20 x 0.4 mL unit doses, ampoule 113770 927624011000036109 Zaditen 0.025% eye drops solution, 20 x 0.4 mL unit doses 927578011000036109 Zaditen 0.025% eye drops solution, 0.4 mL unit dose 53472011000036103 Zaditen 53472011000036103 Zaditen 922528011000036106 ketotifen 0.025% eye drops, 20 x 0.4 mL unit doses 922071011000036101 ketotifen 0.025% eye drops, unit dose 61805011000036103 ketotifen +998181000168109 Desloratadine (Apo) 5 mg film-coated tablet, 14, blister pack 202823 998171000168106 Desloratadine (Apo) 5 mg film-coated tablet, 14 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72019011000036100 desloratadine 5 mg tablet, 14 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +112121000036103 Octagam 10% 10 g/100 mL injection solution, 100 mL bottle 155603 112001000036107 Octagam 10% 10 g/100 mL injection solution, 100 mL bottle 111911000036104 Octagam 10% 10 g/100 mL injection solution, 100 mL bottle 17661000168101 Octagam 10% 17661000168101 Octagam 10% 112021000036102 normal immunoglobulin 10 g/100 mL injection, 100 mL bottle 111921000036106 normal immunoglobulin 10 g/100 mL injection, bottle 74965011000036103 normal immunoglobulin +901781000168102 Belsomra 20 mg film-coated tablet, 10, blister pack 207712 901771000168100 Belsomra 20 mg film-coated tablet, 10 901721000168101 Belsomra 20 mg film-coated tablet 901051000168106 Belsomra 901051000168106 Belsomra 901761000168106 suvorexant 20 mg tablet, 10 901711000168108 suvorexant 20 mg tablet 901171000168101 suvorexant +18401000036105 Milivin OD 15 mg orally disintegrating tablet, 30, blister pack 183404 16981000036108 Milivin OD 15 mg orally disintegrating tablet, 30 15811000036102 Milivin OD 15 mg orally disintegrating tablet 19001000168104 Milivin OD 19001000168104 Milivin OD 47681000036105 mirtazapine 15 mg orally disintegrating tablet, 30 47581000036109 mirtazapine 15 mg orally disintegrating tablet 21463011000036102 mirtazapine +734721000168101 Paracetamol plus Codeine (Apohealth) uncoated tablet, 20, blister pack 229518 734711000168108 Paracetamol plus Codeine (Apohealth) uncoated tablet, 20 734701000168105 Paracetamol plus Codeine (Apohealth) uncoated tablet 734691000168105 Paracetamol plus Codeine (Apohealth) 734691000168105 Paracetamol plus Codeine (Apohealth) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +803271000168103 Abilify ODT 20 mg orally disintegrating tablet, 28, blister pack 128903 803261000168109 Abilify ODT 20 mg orally disintegrating tablet, 28 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803251000168107 aripiprazole 20 mg orally disintegrating tablet, 28 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +18598011000036108 Paralgin 500 mg uncoated tablet, 100, blister pack 100682 11154011000036108 Paralgin 500 mg uncoated tablet, 100 5172011000036102 Paralgin 500 mg uncoated tablet 4130011000036109 Paralgin 4130011000036109 Paralgin 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18598011000036108 Paralgin 500 mg uncoated tablet, 100, blister pack 232067 11154011000036108 Paralgin 500 mg uncoated tablet, 100 5172011000036102 Paralgin 500 mg uncoated tablet 4130011000036109 Paralgin 4130011000036109 Paralgin 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +931713011000036109 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution, 1.5 L, bottle 176112 930873011000036109 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution, 1.5 L 930084011000036103 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution 929919011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 929919011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 71763011000036102 chlorhexidine gluconate 2% solution, 1.5 L 70177011000036101 chlorhexidine gluconate 2% solution 21404011000036101 chlorhexidine +724041000168106 MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 724031000168102 MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 724011000168107 MSUD Cooler 15 Orange oral liquid solution, 130 mL pouch 43651000168100 MSUD Cooler 15 43651000168100 MSUD Cooler 15 724021000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL pouches 724001000168109 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL pouch 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +68952011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 3 sachets 133242 66754011000036105 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 3 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71422011000036107 paracetamol 500 mg powder for oral liquid, 3 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1066661000168101 Cold and Flu PE (Soul Pattinson) uncoated tablet, 24, blister pack 154970 1066651000168103 Cold and Flu PE (Soul Pattinson) uncoated tablet, 24 1066641000168100 Cold and Flu PE (Soul Pattinson) uncoated tablet 1066561000168102 Cold and Flu PE (Soul Pattinson) 1066561000168102 Cold and Flu PE (Soul Pattinson) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +60096011000036102 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 100 mL, bottle 126542 56057011000036101 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 100 mL 53774011000036100 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 5 mL 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +666151000168101 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 7, blister pack 196561 666141000168103 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 7 137741000036101 Rabeprazole Sodium (DRLA) 10 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 127531000036104 rabeprazole sodium 10 mg enteric tablet, 7 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +45811000036106 Lamivudine (RBX) 300 mg film-coated tablet, 30, bottle 172817 43091000036108 Lamivudine (RBX) 300 mg film-coated tablet, 30 41261000036109 Lamivudine (RBX) 300 mg film-coated tablet 40441000036103 Lamivudine (RBX) 40441000036103 Lamivudine (RBX) 27947011000036104 lamivudine 300 mg tablet, 30 23271011000036103 lamivudine 300 mg tablet 21665011000036104 lamivudine +724121000168104 HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 724111000168106 HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 724101000168108 HCU Cooler 15 Red oral liquid solution, 130 mL pouch 21751000168108 HCU Cooler 15 21751000168108 HCU Cooler 15 724071000168104 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL pouches 724051000168108 amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL pouch 50753011000036104 amino acid formula with vitamins and minerals without methionine +37696011000036106 Sensipar 30 mg film-coated tablet, 28, blister pack 98399 36962011000036107 Sensipar 30 mg film-coated tablet, 28 36283011000036101 Sensipar 30 mg film-coated tablet 35979011000036107 Sensipar 35979011000036107 Sensipar 38843011000036105 cinacalcet 30 mg tablet, 28 38043011000036106 cinacalcet 30 mg tablet 37755011000036100 cinacalcet +18454011000036104 Citalopram (Winthrop) 20 mg film-coated tablet, 28, blister pack 100790 11167011000036106 Citalopram (Winthrop) 20 mg film-coated tablet, 28 4710011000036106 Citalopram (Winthrop) 20 mg film-coated tablet 3238011000036106 Citalopram (Winthrop) 3238011000036106 Citalopram (Winthrop) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +884521000168102 Bosentan (Sun) 125 mg film-coated tablet, 60, blister pack 257752 884511000168109 Bosentan (Sun) 125 mg film-coated tablet, 60 884481000168102 Bosentan (Sun) 125 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +11971000036102 Carvedilol (GN) 3.125 mg uncoated tablet, 30, blister pack 152437 6691000036101 Carvedilol (GN) 3.125 mg uncoated tablet, 30 1831000036106 Carvedilol (GN) 3.125 mg uncoated tablet 1091000036101 Carvedilol (GN) 1091000036101 Carvedilol (GN) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +926667011000036107 Nicabate CQ Mint 4 mg lozenge, 24, tube 128780 926148011000036100 Nicabate CQ Mint 4 mg lozenge, 24 925640011000036103 Nicabate CQ Mint 4 mg lozenge 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 927320011000036108 nicotine 4 mg lozenge, 24 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +60897011000036100 Mersyndol Daystrength uncoated tablet, 48, blister pack 59985 56851011000036108 Mersyndol Daystrength uncoated tablet, 48 54099011000036108 Mersyndol Daystrength uncoated tablet 44331000168100 Mersyndol Daystrength 44331000168100 Mersyndol Daystrength 63891011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 48 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +69246011000036103 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 12 x 1 L bags 19466 67046011000036101 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 12 x 1 L bags 65268011000036102 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 16261000168102 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 16261000168102 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 71616011000036100 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.9% (9 g/L) injection, 12 x 1 L bags 70093011000036109 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.9% (9 g/L) injection, bag 69799011000036108 potassium chloride + sodium chloride +931721011000036101 Synthamin 13 Amino Acid 8% without Electrolytes intravenous infusion injection, 12 x 500 mL bottles 19448 930881011000036100 Synthamin 13 Amino Acid 8% without Electrolytes intravenous infusion injection, 12 x 500 mL bottles 930087011000036109 Synthamin 13 Amino Acid 8% without Electrolytes intravenous infusion injection, 500 mL bottle 929883011000036101 Synthamin 13 Amino Acid 8% without Electrolytes 929883011000036101 Synthamin 13 Amino Acid 8% without Electrolytes 932464011000036101 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles 931865011000036107 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle 77452011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +20845011000036109 Lexapro 10 mg film-coated tablet, 28, blister pack 92051 14008011000036107 Lexapro 10 mg film-coated tablet, 28 7290011000036109 Lexapro 10 mg film-coated tablet 3210011000036104 Lexapro 3210011000036104 Lexapro 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1000281000168105 Rivaroxaban (Apo) 15 mg film-coated tablet, 42, blister pack 269604 1000271000168107 Rivaroxaban (Apo) 15 mg film-coated tablet, 42 1000061000168108 Rivaroxaban (Apo) 15 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 80451000036105 rivaroxaban 15 mg tablet, 42 78931000036102 rivaroxaban 15 mg tablet 79098011000036103 rivaroxaban +121441000036102 Aspirin Low Dose (Pharmacy Action) 100 mg enteric tablet, 84, blister pack 190572 120331000036109 Aspirin Low Dose (Pharmacy Action) 100 mg enteric tablet, 84 119401000036109 Aspirin Low Dose (Pharmacy Action) 100 mg enteric tablet 34661000168102 Aspirin Low Dose (Pharmacy Action) 34661000168102 Aspirin Low Dose (Pharmacy Action) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +79040011000036108 Bispro 10 mg film-coated tablet, 56, blister pack 130182 78803011000036109 Bispro 10 mg film-coated tablet, 56 78627011000036103 Bispro 10 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79217011000036107 bisoprolol fumarate 10 mg tablet, 56 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +1034681000168109 Atelvia EC Once-a-Week 35 mg enteric tablet, 1, blister pack 166841 1034671000168106 Atelvia EC Once-a-Week 35 mg enteric tablet, 1 1034661000168100 Atelvia EC Once-a-Week 35 mg enteric tablet 1034651000168102 Atelvia EC Once-a-Week 1034651000168102 Atelvia EC Once-a-Week 700031171000036104 risedronate sodium 35 mg enteric tablet, 1 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +809621000168100 Azep 0.1% nasal spray, 20 mL, pump pack 104853 809611000168107 Azep 0.1% nasal spray, 20 mL 809531000168101 Azep 0.1% nasal spray 73734011000036104 Azep 73734011000036104 Azep 809601000168109 azelastine hydrochloride 0.1% nasal spray, 20 mL 809521000168104 azelastine hydrochloride 0.1% nasal spray 75004011000036100 azelastine +1075181000168104 Atenolol (RBX) 25 mg film-coated tablet, 14, blister pack 197757 1075171000168102 Atenolol (RBX) 25 mg film-coated tablet, 14 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029511000168100 atenolol 25 mg tablet, 14 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +749661000168101 Tacrolimus (Actavis) 5 mg hard capsule, 10, blister pack 224270 749651000168103 Tacrolimus (Actavis) 5 mg hard capsule, 10 749641000168100 Tacrolimus (Actavis) 5 mg hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 749331000168100 tacrolimus 5 mg capsule, 10 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +807451000168102 Perindopril Arginine/Amlodipine 10/10 (Chemmart) uncoated tablet, 30, bottle 224299 807431000168108 Perindopril Arginine/Amlodipine 10/10 (Chemmart) uncoated tablet, 30 807421000168105 Perindopril Arginine/Amlodipine 10/10 (Chemmart) uncoated tablet 807411000168103 Perindopril Arginine/Amlodipine 10/10 (Chemmart) 807411000168103 Perindopril Arginine/Amlodipine 10/10 (Chemmart) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +998101000168101 Desloratadine (Apo) 5 mg film-coated tablet, 3, blister pack 202823 998091000168106 Desloratadine (Apo) 5 mg film-coated tablet, 3 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72025011000036108 desloratadine 5 mg tablet, 3 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +77196011000036102 Readi-Cat-2 21 mg/mL oral liquid suspension, 250 mL, bottle 129553 76612011000036102 Readi-Cat-2 21 mg/mL oral liquid suspension, 250 mL 76063011000036103 Readi-Cat-2 21 mg/mL oral liquid suspension 28311000168102 Readi-Cat-2 28311000168102 Readi-Cat-2 78165011000036104 barium sulfate 21 mg/mL oral liquid, 250 mL 77522011000036101 barium sulfate 21 mg/mL oral liquid 77454011000036104 barium +77380011000036108 Osteoeze Tabsule (Herron) 750 mg film-coated tablet, 200, jar 73800 76796011000036109 Osteoeze Tabsule (Herron) 750 mg film-coated tablet, 200 76184011000036107 Osteoeze Tabsule (Herron) 750 mg film-coated tablet 47551000168109 Osteoeze Tabsule (Herron) 47551000168109 Osteoeze Tabsule (Herron) 78300011000036104 glucosamine hydrochloride 750 mg tablet, 200 77599011000036100 glucosamine hydrochloride 750 mg tablet 69813011000036107 glucosamine +957411000168101 Dicarz 25 mg film-coated tablet, 60, bottle 101743 83959011000036105 Dicarz 25 mg film-coated tablet, 60 83608011000036105 Dicarz 25 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +858981000168107 Amidep 25 mg film-coated tablet, 100, bottle 215388 858821000168100 Amidep 25 mg film-coated tablet, 100 858761000168101 Amidep 25 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1026051000168102 Neuroccord 300 mg hard capsule, 84, blister pack 235864 1026041000168104 Neuroccord 300 mg hard capsule, 84 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970121000168104 pregabalin 300 mg capsule, 84 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +818301000168105 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 5 x 0.125 mL injection devices 262645 818291000168109 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 5 x 0.125 mL injection devices 818231000168105 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741101000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, 5 x 0.125 mL injection devices 741051000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, injection device 21352011000036107 follitropin alfa +1075341000168107 Atenolol (RBX) 25 mg film-coated tablet, 84, blister pack 197757 1075331000168103 Atenolol (RBX) 25 mg film-coated tablet, 84 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029831000168108 atenolol 25 mg tablet, 84 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +60724011000036104 Disprin Extra Strength 500 mg dispersible tablet, 4, strip pack 46374 56682011000036102 Disprin Extra Strength 500 mg dispersible tablet, 4 54031011000036104 Disprin Extra Strength 500 mg dispersible tablet 19401000168105 Disprin Extra Strength 19401000168105 Disprin Extra Strength 63507011000036104 aspirin 500 mg dispersible tablet, 4 83621000036109 aspirin 500 mg dispersible tablet 21719011000036107 aspirin +19369011000036103 Lamictal 5 mg tablet, 56, bottle 51718 12656011000036100 Lamictal 5 mg tablet, 56 5580011000036103 Lamictal 5 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +931413011000036101 Paracetamol (Home Brand) 500 mg uncoated tablet, 12, blister pack 133710 930600011000036104 Paracetamol (Home Brand) 500 mg uncoated tablet, 12 929963011000036106 Paracetamol (Home Brand) 500 mg uncoated tablet 927765011000036108 Paracetamol (Home Brand) 927765011000036108 Paracetamol (Home Brand) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69447011000036104 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 12 x 1 L bags 48522 67247011000036106 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 12 x 1 L bags 65574011000036107 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 1 L bag 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 71797011000036109 sodium chloride 0.3% (3 g/L) + glucose 3.3% (33 g/L) injection, 12 x 1 L bags 70190011000036109 sodium chloride 0.3% (3 g/L) + glucose 3.3% (33 g/L) injection, bag 21257011000036103 sodium chloride + glucose +33543011000036105 Oxybutynin Hydrochloride (Winthrop) 5 mg uncoated tablet, 100, bottle 130903 33283011000036106 Oxybutynin Hydrochloride (Winthrop) 5 mg uncoated tablet, 100 33045011000036108 Oxybutynin Hydrochloride (Winthrop) 5 mg uncoated tablet 32994011000036100 Oxybutynin Hydrochloride (Winthrop) 32994011000036100 Oxybutynin Hydrochloride (Winthrop) 27214011000036103 oxybutynin hydrochloride 5 mg tablet, 100 22574011000036104 oxybutynin hydrochloride 5 mg tablet 21620011000036100 oxybutynin +21213011000036102 Aurorix 150 mg film-coated tablet, 60, blister pack 9987 14348011000036103 Aurorix 150 mg film-coated tablet, 60 7630011000036102 Aurorix 150 mg film-coated tablet 4157011000036106 Aurorix 4157011000036106 Aurorix 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +18321000036109 Glucobete 500 mg film-coated tablet, 100, blister pack 180430 16951000036101 Glucobete 500 mg film-coated tablet, 100 15551000036101 Glucobete 500 mg film-coated tablet 15181000036104 Glucobete 15181000036104 Glucobete 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +884841000168105 Kovaltry (1 x 500 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack, composite pack 246793 884831000168101 Kovaltry (1 x 500 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack 884811000168106 Kovaltry (inert substance) diluent, 2.5 mL syringe 884791000168107 Kovaltry 884791000168107 Kovaltry 884821000168104 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 636211000168102 inert substance diluent, 2.5 mL syringe 21220011000036103 inert substance +884841000168105 Kovaltry (1 x 500 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack, composite pack 246793 884831000168101 Kovaltry (1 x 500 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack 884801000168108 Kovaltry (octocog alfa 500 units) powder for injection, 500 units vial 884791000168107 Kovaltry 884791000168107 Kovaltry 884821000168104 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 931815011000036108 octocog alfa 500 units injection, vial 69843011000036100 octocog alfa +738651000168108 Benefiber On-the-Go 1 g/g powder for oral liquid, 28 x 3.5 g sachets 738641000168106 Benefiber On-the-Go 1 g/g powder for oral liquid, 28 x 3.5 g sachets 738621000168100 Benefiber On-the-Go 1 g/g powder for oral liquid, 3.5 g sachet 738601000168109 Benefiber On-the-Go 738601000168109 Benefiber On-the-Go 738631000168102 wheat dextrin 1 g/g powder for oral liquid, 28 x 3.5 g sachets 738611000168107 wheat dextrin 1 g/g powder for oral liquid, sachet 146531000036100 wheat dextrin +31151000036100 Karbesat HCT 300/25 film-coated tablet, 30, blister pack 171439 28351000036108 Karbesat HCT 300/25 film-coated tablet, 30 26701000036107 Karbesat HCT 300/25 film-coated tablet 49151000168107 Karbesat HCT 300/25 49151000168107 Karbesat HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +69263011000036103 Chlorhexidine Acetate (Baxter) 0.5% (5 g/L) irrigation solution, 1 L bottle 19474 67063011000036101 Chlorhexidine Acetate (Baxter) 0.5% (5 g/L) irrigation solution, 1 L bottle 65412011000036102 Chlorhexidine Acetate (Baxter) 0.5% (5 g/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71633011000036100 chlorhexidine acetate 0.5% (5 g/L) solution, 1 L bottle 70102011000036106 chlorhexidine acetate 0.5% (5 g/L) solution, bottle 21404011000036101 chlorhexidine +931781011000036105 Strepfen Intensive cherry sugar free 8.75 mg lozenge, 16, blister pack 96061 930941011000036104 Strepfen Intensive cherry sugar free 8.75 mg lozenge, 16 930130011000036105 Strepfen Intensive cherry sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63907011000036106 flurbiprofen 8.75 mg lozenge, 16 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +734311000168107 Caltrate Bone and Muscle Health plus Minerals film-coated tablet, 100, bottle 214783 734301000168109 Caltrate Bone and Muscle Health plus Minerals film-coated tablet, 100 734251000168103 Caltrate Bone and Muscle Health plus Minerals film-coated tablet 734071000168102 Caltrate Bone and Muscle Health plus Minerals 734071000168102 Caltrate Bone and Muscle Health plus Minerals 734291000168108 calcium carbonate 1.5 g + colecalciferol 25 microgram (1000 units) + magnesium 50 mg + zinc 7.5 mg + copper 500 microgram + manganese 1.75 mg tablet, 100 734241000168100 calcium carbonate 1.5 g + colecalciferol 25 microgram (1000 units) + magnesium 50 mg + zinc 7.5 mg + copper 500 microgram + manganese 1.75 mg tablet 734231000168109 calcium + colecalciferol + magnesium + zinc + copper + manganese +766701000168106 Lenvima 10 mg hard capsule, 30, blister pack 233426 766691000168106 Lenvima 10 mg hard capsule, 30 766671000168105 Lenvima 10 mg hard capsule 766621000168109 Lenvima 766621000168109 Lenvima 766681000168108 lenvatinib 10 mg capsule, 30 766661000168104 lenvatinib 10 mg capsule 766651000168101 lenvatinib +1074861000168102 Atenolol (RBX) 100 mg film-coated tablet, 10, blister pack 197761 1074851000168104 Atenolol (RBX) 100 mg film-coated tablet, 10 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1031711000168108 atenolol 100 mg tablet, 10 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +95461000036103 Chesty Cough and Cold Relief (Your Pharmacy) powder for oral liquid, 10 sachets 184277 94351000036105 Chesty Cough and Cold Relief (Your Pharmacy) powder for oral liquid, 10 sachets 93701000036106 Chesty Cough and Cold Relief (Your Pharmacy) powder for oral liquid, 1 sachet 93241000036102 Chesty Cough and Cold Relief (Your Pharmacy) 93241000036102 Chesty Cough and Cold Relief (Your Pharmacy) 63352011000036109 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 10 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +14061000036109 Ramipril (Apo) 10 mg capsule, 30, blister pack 179034 7711000036101 Ramipril (Apo) 10 mg capsule, 30 3551000036102 Ramipril (Apo) 10 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +46131000036101 Atorvastatin (SCP) 40 mg film-coated tablet, 30, blister pack 180327 43411000036105 Atorvastatin (SCP) 40 mg film-coated tablet, 30 40801000036104 Atorvastatin (SCP) 40 mg film-coated tablet 40271000036109 Atorvastatin (SCP) 40271000036109 Atorvastatin (SCP) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +775281000168109 Diprosone 0.05% ointment, 5 g, tube 144098 775271000168106 Diprosone 0.05% ointment, 5 g 5175011000036105 Diprosone 0.05% ointment 10951000168106 Diprosone 10951000168106 Diprosone 775261000168100 betamethasone (as dipropionate) 0.05% ointment, 5 g 22452011000036100 betamethasone (as dipropionate) 0.05% ointment 21372011000036109 betamethasone dipropionate +1094391000168106 Prochlorperazine (Amcal) 5 mg uncoated tablet, 10, blister pack 265795 1094381000168108 Prochlorperazine (Amcal) 5 mg uncoated tablet, 10 1094351000168101 Prochlorperazine (Amcal) 5 mg uncoated tablet 1094341000168103 Prochlorperazine (Amcal) 1094341000168103 Prochlorperazine (Amcal) 924183011000036108 prochlorperazine maleate 5 mg tablet, 10 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +59854011000036104 Paracetamol Extra (Guardian) uncoated tablet, 20, blister pack 115172 55816011000036108 Paracetamol Extra (Guardian) uncoated tablet, 20 53633011000036106 Paracetamol Extra (Guardian) uncoated tablet 53508011000036102 Paracetamol Extra (Guardian) 53508011000036102 Paracetamol Extra (Guardian) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +19658011000036106 Colese 135 mg film-coated tablet, 90, bottle 59747 12922011000036102 Colese 135 mg film-coated tablet, 90 6212011000036108 Colese 135 mg film-coated tablet 3274011000036102 Colese 3274011000036102 Colese 27905011000036102 mebeverine hydrochloride 135 mg tablet, 90 23230011000036107 mebeverine hydrochloride 135 mg tablet 21801011000036109 mebeverine +86891000036100 Tisseel Duo 500 solution, 4 mL, dual chamber syringe 81929 86621000036104 Tisseel Duo 500 solution, 4 mL 86021000036108 Tisseel Duo 500 solution 85971000036101 Tisseel Duo 500 85971000036101 Tisseel Duo 500 86631000036102 aprotinin 3000 KI units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL + factor XIII 10 units/mL + fibrinogen 70 mg/mL + fibronectin 2 mg/mL + human thrombin 350 units/mL solution, 4 mL 86031000036105 aprotinin 3000 KI units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL + factor XIII 10 units/mL + fibrinogen 70 mg/mL + fibronectin 2 mg/mL + human thrombin 350 units/mL solution 91921000036102 aprotinin + calcium chloride dihydrate + factor XIII + fibrinogen + fibronectin + human thrombin +60621011000036108 Kenalog in Orabase 0.1% oromucosal paste, 5 g, tube 19205 56579011000036109 Kenalog in Orabase 0.1% oromucosal paste, 5 g 53985011000036101 Kenalog in Orabase 0.1% oromucosal paste 26541000168107 Kenalog in Orabase 26541000168107 Kenalog in Orabase 63437011000036100 triamcinolone acetonide 0.1% oromucosal paste, 5 g 61963011000036105 triamcinolone acetonide 0.1% oromucosal paste 21377011000036106 triamcinolone +61330011000036102 Paracetamol (Herron) 500 mg uncoated tablet, 250, blister pack 80924 57350011000036102 Paracetamol (Herron) 500 mg uncoated tablet, 250 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63848011000036107 paracetamol 500 mg tablet, 250 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1075661000168104 Aripiprazole (Auro) 30 mg uncoated tablet, 100, bottle 198181 1075651000168101 Aripiprazole (Auro) 30 mg uncoated tablet, 100 1075521000168105 Aripiprazole (Auro) 30 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787651000168101 aripiprazole 30 mg tablet, 100 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +116781000036102 Cavstat 5 mg film-coated tablet, 30, bottle 235277 115041000036100 Cavstat 5 mg film-coated tablet, 30 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +116781000036102 Cavstat 5 mg film-coated tablet, 30, bottle 186384 115041000036100 Cavstat 5 mg film-coated tablet, 30 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +44742011000036104 Testogel 1% (25 mg/2.5 g) gel, 90 x 2.5 g sachets 96129 42187011000036106 Testogel 1% (25 mg/2.5 g) gel, 90 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46948011000036100 testosterone 1% (25 mg/2.5 g) gel, 90 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +86801000036108 Daktarin Tincture 2% solution, 30 mL, bottle 13289 86411000036108 Daktarin Tincture 2% solution, 30 mL 86081000036109 Daktarin Tincture 2% solution 1831000168104 Daktarin Tincture 1831000168104 Daktarin Tincture 86421000036101 miconazole 2% solution, 30 mL 927019011000036108 miconazole 2% solution 21454011000036108 miconazole +13981000036101 Olanzapine (PS) 5 mg film-coated tablet, 28, blister pack 178993 7641000036109 Olanzapine (PS) 5 mg film-coated tablet, 28 1911000036105 Olanzapine (PS) 5 mg film-coated tablet 17601000168102 Olanzapine (PS) 17601000168102 Olanzapine (PS) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +44500011000036105 Cefotaxime (Sandoz) 500 mg powder for injection, 1 vial 76431 41955011000036107 Cefotaxime (Sandoz) 500 mg powder for injection, 1 vial 40285011000036107 Cefotaxime (Sandoz) 500 mg powder for injection, 500 mg vial 4148011000036105 Cefotaxime (Sandoz) 4148011000036105 Cefotaxime (Sandoz) 46754011000036102 cefotaxime 500 mg injection, 1 vial 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +50435011000036108 MSUD Analog powder for oral liquid, 400 g, can 49261011000036108 MSUD Analog powder for oral liquid, 400 g 48659011000036102 MSUD Analog powder for oral liquid 60641000168100 MSUD Analog 60641000168100 MSUD Analog 51254011000036104 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 400 g 50802011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +14071000036101 Olanzapine ODT (PS) 10 mg orally disintegrating tablet, 28, blister pack 179081 7721000036108 Olanzapine ODT (PS) 10 mg orally disintegrating tablet, 28 1331000036100 Olanzapine ODT (PS) 10 mg orally disintegrating tablet 30591000168104 Olanzapine ODT (PS) 30591000168104 Olanzapine ODT (PS) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +60805011000036107 Imodium Caplet 2 mg uncoated tablet, 8, blister pack 56001 56761011000036104 Imodium Caplet 2 mg uncoated tablet, 8 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63824011000036103 loperamide hydrochloride 2 mg tablet, 8 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +104051000036103 Donepezil Hydrochloride (Chemmart) 5 mg film-coated tablet, 28, blister pack 213497 101511000036106 Donepezil Hydrochloride (Chemmart) 5 mg film-coated tablet, 28 99321000036100 Donepezil Hydrochloride (Chemmart) 5 mg film-coated tablet 97851000036105 Donepezil Hydrochloride (Chemmart) 97851000036105 Donepezil Hydrochloride (Chemmart) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +104051000036103 Donepezil Hydrochloride (Chemmart) 5 mg film-coated tablet, 28, blister pack 168330 101511000036106 Donepezil Hydrochloride (Chemmart) 5 mg film-coated tablet, 28 99321000036100 Donepezil Hydrochloride (Chemmart) 5 mg film-coated tablet 97851000036105 Donepezil Hydrochloride (Chemmart) 97851000036105 Donepezil Hydrochloride (Chemmart) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +87181011000036109 Povidone-Iodine (Pfizer (Perth)) 10% application, 30 mL tube 12643 87120011000036107 Povidone-Iodine (Pfizer (Perth)) 10% application, 30 mL tube 87068011000036108 Povidone-Iodine (Pfizer (Perth)) 10% application, 30 mL tube 75968011000036102 Povidone-Iodine (Pfizer (Perth)) 75968011000036102 Povidone-Iodine (Pfizer (Perth)) 87232011000036107 povidone-iodine 10% application, 30 mL tube 87205011000036105 povidone-iodine 10% application, tube 21660011000036108 povidone-iodine +60604011000036100 Canesten Clotrimazole 1% cream, 30 g, tube 18697 56562011000036106 Canesten Clotrimazole 1% cream, 30 g 53975011000036108 Canesten Clotrimazole 1% cream 4270011000036105 Canesten Clotrimazole 4270011000036105 Canesten Clotrimazole 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1094371000168105 Prochlorperazine (Amcal) 5 mg uncoated tablet, 5, blister pack 265795 1094361000168104 Prochlorperazine (Amcal) 5 mg uncoated tablet, 5 1094351000168101 Prochlorperazine (Amcal) 5 mg uncoated tablet 1094341000168103 Prochlorperazine (Amcal) 1094341000168103 Prochlorperazine (Amcal) 795441000168107 prochlorperazine maleate 5 mg tablet, 5 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +1069151000168103 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 10, blister pack 197886 1069141000168100 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 10 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +20020011000036103 Aldactone 100 mg film-coated tablet, 100, blister pack 68954 13256011000036107 Aldactone 100 mg film-coated tablet, 100 6538011000036106 Aldactone 100 mg film-coated tablet 3099011000036104 Aldactone 3099011000036104 Aldactone 27648011000036104 spironolactone 100 mg tablet, 100 22985011000036101 spironolactone 100 mg tablet 21403011000036103 spironolactone +20337011000036100 Pariet 20 mg enteric tablet, 30, blister pack 76186 13546011000036101 Pariet 20 mg enteric tablet, 30 6828011000036107 Pariet 20 mg enteric tablet 3351011000036108 Pariet 3351011000036108 Pariet 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +82353011000036105 Anginine 600 microgram sublingual tablet, 30, bottle 227783 82117011000036101 Anginine 600 microgram sublingual tablet, 30 5180011000036107 Anginine 600 microgram sublingual tablet 3935011000036104 Anginine 3935011000036104 Anginine 82521011000036105 glyceryl trinitrate 600 microgram sublingual tablet, 30 23450011000036109 glyceryl trinitrate 600 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +82353011000036105 Anginine 600 microgram sublingual tablet, 30, bottle 11086 82117011000036101 Anginine 600 microgram sublingual tablet, 30 5180011000036107 Anginine 600 microgram sublingual tablet 3935011000036104 Anginine 3935011000036104 Anginine 82521011000036105 glyceryl trinitrate 600 microgram sublingual tablet, 30 23450011000036109 glyceryl trinitrate 600 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +794771000168107 Candesartan (Blooms The Chemist) 8 mg uncoated tablet, 30, blister pack 260095 794761000168101 Candesartan (Blooms The Chemist) 8 mg uncoated tablet, 30 794751000168103 Candesartan (Blooms The Chemist) 8 mg uncoated tablet 794681000168100 Candesartan (Blooms The Chemist) 794681000168100 Candesartan (Blooms The Chemist) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +103891000036103 Donepezil Hydrochloride (Stada) 10 mg film-coated tablet, 28, blister pack 167192 101251000036107 Donepezil Hydrochloride (Stada) 10 mg film-coated tablet, 28 98431000036104 Donepezil Hydrochloride (Stada) 10 mg film-coated tablet 97801000036109 Donepezil Hydrochloride (Stada) 97801000036109 Donepezil Hydrochloride (Stada) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +50561011000036106 Durotram XR (once a day) 100 mg modified release tablet, 20, blister pack 134773 49595011000036102 Durotram XR (once a day) 100 mg modified release tablet, 20 48786011000036109 Durotram XR (once a day) 100 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +743631000168107 Jardiamet 12.5 mg/1000 mg film-coated tablet, 14, blister pack 229820 743621000168109 Jardiamet 12.5 mg/1000 mg film-coated tablet, 14 743601000168100 Jardiamet 12.5 mg/1000 mg film-coated tablet 743581000168109 Jardiamet 12.5 mg/1000 mg 743581000168109 Jardiamet 12.5 mg/1000 mg 743611000168102 empagliflozin 12.5 mg + metformin hydrochloride 1 g tablet, 14 743591000168107 empagliflozin 12.5 mg + metformin hydrochloride 1 g tablet 743221000168107 empagliflozin + metformin +82461000036109 Clopidogrel/Aspirin 75/100 (Chemmart) tablet, 30, blister pack 190330 80511000036105 Clopidogrel/Aspirin 75/100 (Chemmart) tablet, 30 78401000036102 Clopidogrel/Aspirin 75/100 (Chemmart) tablet 63971000168109 Clopidogrel/Aspirin 75/100 (Chemmart) 63971000168109 Clopidogrel/Aspirin 75/100 (Chemmart) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +931387011000036103 KP24 Medicated 0.5% lotion, 100 mL, bottle 116787 930561011000036102 KP24 Medicated 0.5% lotion, 100 mL 929924011000036101 KP24 Medicated 0.5% lotion 39871000168106 KP24 Medicated 39871000168106 KP24 Medicated 932344011000036102 malathion 0.5% lotion, 100 mL 931821011000036104 malathion 0.5% lotion 69786011000036100 malathion +678851000168100 Sifrol 1.5 mg uncoated tablet, 100, blister pack 66487 678841000168102 Sifrol 1.5 mg uncoated tablet, 100 678821000168108 Sifrol 1.5 mg uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 678831000168106 pramipexole dihydrochloride monohydrate 1.5 mg tablet, 100 678811000168101 pramipexole dihydrochloride monohydrate 1.5 mg tablet 37716011000036100 pramipexole +726371000168107 Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL, injection device 99040 726361000168101 Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL 726341000168100 Norditropin Nordiflex 5 mg/1.5 mL injection solution 5421000168101 Norditropin Nordiflex 5421000168101 Norditropin Nordiflex 726351000168103 somatropin 5 mg/1.5 mL injection, 1.5 mL 726331000168109 somatropin 5 mg/1.5 mL injection 21295011000036100 somatropin +50319011000036108 Neocate Advance powder for oral liquid, 400 g, can 49467011000036101 Neocate Advance powder for oral liquid, 400 g 48591011000036101 Neocate Advance powder for oral liquid 26901000168102 Neocate Advance 26901000168102 Neocate Advance 51426011000036109 amino acid synthetic formula powder for oral liquid, 400 g 50943011000036105 amino acid synthetic formula powder for oral liquid 50729011000036102 amino acid synthetic formula +69021011000036103 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 11 sachets 140597 66823011000036109 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 11 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71438011000036108 paracetamol 1 g powder for oral liquid, 11 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +86138011000036108 Panadol Caplet Optizorb 500 mg film-coated tablet, 48, blister pack 160821 85746011000036104 Panadol Caplet Optizorb 500 mg film-coated tablet, 48 85371011000036109 Panadol Caplet Optizorb 500 mg film-coated tablet 55521000168105 Panadol Caplet Optizorb 55521000168105 Panadol Caplet Optizorb 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61589011000036101 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 30, blister pack 95191 57511011000036103 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 30 54331011000036103 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet 6071000168100 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 6071000168100 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +734951000168107 Imodium Zapid 2 mg orally disintegrating tablet, 12, blister pack 83176 734941000168105 Imodium Zapid 2 mg orally disintegrating tablet, 12 734901000168108 Imodium Zapid 2 mg orally disintegrating tablet 734891000168109 Imodium Zapid 734891000168109 Imodium Zapid 734931000168101 loperamide hydrochloride 2 mg orally disintegrating tablet, 12 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +1000601000168104 Tadalafil (Apo) 20 mg film-coated tablet, 8, blister pack 205886 1000591000168106 Tadalafil (Apo) 20 mg film-coated tablet, 8 1000561000168104 Tadalafil (Apo) 20 mg film-coated tablet 1000221000168106 Tadalafil (Apo) 1000221000168106 Tadalafil (Apo) 745821000168107 tadalafil 20 mg tablet, 8 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +116941000036108 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 63486 115261000036106 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 113071000036108 Microlevlen ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) sugar coated tablet 51131000168102 Microlevlen ED 51131000168102 Microlevlen ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +116941000036108 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 63486 115261000036106 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 113101000036103 Microlevlen ED (inert substance) sugar coated tablet 51131000168102 Microlevlen ED 51131000168102 Microlevlen ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +923831011000036106 Proclazine 5 mg uncoated tablet, 25, blister pack 158412 923377011000036102 Proclazine 5 mg uncoated tablet, 25 923048011000036104 Proclazine 5 mg uncoated tablet 922947011000036103 Proclazine 922947011000036103 Proclazine 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +812111000168108 Affora 40 mg film-coated tablet, 30, blister pack 198058 812101000168105 Affora 40 mg film-coated tablet, 30 812091000168100 Affora 40 mg film-coated tablet 811911000168100 Affora 811911000168100 Affora 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1075501000168101 Quetiapine (Auro) 100 mg film-coated tablet, 100, bottle 172855 1075491000168108 Quetiapine (Auro) 100 mg film-coated tablet, 100 1075471000168107 Quetiapine (Auro) 100 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 1075481000168105 quetiapine 100 mg tablet, 100 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +60696011000036105 Cold and Flu (Soul Pattinson) uncoated tablet, 24, blister pack 42985 56654011000036100 Cold and Flu (Soul Pattinson) uncoated tablet, 24 54022011000036107 Cold and Flu (Soul Pattinson) uncoated tablet 53191011000036101 Cold and Flu (Soul Pattinson) 53191011000036101 Cold and Flu (Soul Pattinson) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +1006461000168102 Antimicrobial Hand Gel (Elyptol) 70% gel, 250 mL, pump pack 172237 1006451000168104 Antimicrobial Hand Gel (Elyptol) 70% gel, 250 mL 1006421000168107 Antimicrobial Hand Gel (Elyptol) 70% gel 1006411000168100 Antimicrobial Hand Gel (Elyptol) 1006411000168100 Antimicrobial Hand Gel (Elyptol) 925447011000036104 ethanol 70% gel, 250 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +1077671000168103 Atomoxetine (AN) 25 mg hard capsule, 7, blister pack 234809 1077661000168109 Atomoxetine (AN) 25 mg hard capsule, 7 1077651000168107 Atomoxetine (AN) 25 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +900049011000036105 Indapamide Hemihydrate (Sandoz) 2.5 mg film-coated tablet, 60, blister pack 169291 900027011000036100 Indapamide Hemihydrate (Sandoz) 2.5 mg film-coated tablet, 60 900011011000036101 Indapamide Hemihydrate (Sandoz) 2.5 mg film-coated tablet 900002011000036109 Indapamide Hemihydrate (Sandoz) 900002011000036109 Indapamide Hemihydrate (Sandoz) 46752011000036106 indapamide hemihydrate 2.5 mg tablet, 60 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +80976011000036103 Zinc and Salicylic Acid (David Craig) paste, 600 g, jar 14249 80513011000036106 Zinc and Salicylic Acid (David Craig) paste, 600 g 80173011000036106 Zinc and Salicylic Acid (David Craig) paste 80137011000036100 Zinc and Salicylic Acid (David Craig) 80137011000036100 Zinc and Salicylic Acid (David Craig) 81607011000036101 salicylic acid 2% + zinc oxide 24% paste, 600 g 81271011000036102 salicylic acid 2% + zinc oxide 24% paste 81212011000036102 salicylic acid + zinc oxide +77162011000036104 Carbosorb X 200 mg/mL oral liquid suspension, 250 mL, bottle 106470 76566011000036107 Carbosorb X 200 mg/mL oral liquid suspension, 250 mL 76033011000036108 Carbosorb X 200 mg/mL oral liquid suspension 75959011000036100 Carbosorb X 75959011000036100 Carbosorb X 78123011000036108 activated charcoal 200 mg/mL oral liquid, 250 mL 77501011000036102 activated charcoal 200 mg/mL oral liquid 77437011000036109 activated charcoal +1072851000168106 Pantoprazole (Generic Health) 20 mg enteric tablet, 14, blister pack 191032 1072841000168109 Pantoprazole (Generic Health) 20 mg enteric tablet, 14 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +60638011000036101 Rapideine uncoated tablet, 50, bottle 24144 56596011000036108 Rapideine uncoated tablet, 50 54016011000036103 Rapideine uncoated tablet 53593011000036105 Rapideine 53593011000036105 Rapideine 63448011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +672341000168105 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet, 10, blister pack 208007 672331000168101 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet, 10 672321000168104 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet 672311000168106 Indapamide Hemihydrate SR (Apo) 672311000168106 Indapamide Hemihydrate SR (Apo) 672231000168108 indapamide hemihydrate 1.5 mg modified release tablet, 10 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +674491000168102 Narcan 400 microgram/mL injection solution, 10 x 1 mL ampoules 57306 674481000168100 Narcan 400 microgram/mL injection solution, 10 x 1 mL ampoules 674461000168109 Narcan 400 microgram/mL injection solution, ampoule 674451000168107 Narcan 674451000168107 Narcan 674471000168103 naloxone hydrochloride 400 microgram/mL injection, 10 x 1 mL ampoules 37955011000036106 naloxone hydrochloride 400 microgram/mL injection, ampoule 33627011000036107 naloxone +931764011000036105 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution, 500 mL, bottle 79362 930924011000036104 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution, 500 mL 930122011000036106 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution 929898011000036107 Avagard Antiseptic Hand and Body Wash with Triclosan 929898011000036107 Avagard Antiseptic Hand and Body Wash with Triclosan 71942011000036107 triclosan 1% solution, 500 mL 70255011000036105 triclosan 1% solution 69817011000036103 triclosan +20718011000036109 Curam Duo 500/125 film-coated tablet, 10, strip pack 82830 13888011000036109 Curam Duo 500/125 film-coated tablet, 10 7174011000036105 Curam Duo 500/125 film-coated tablet 3021000168107 Curam Duo 500/125 3021000168107 Curam Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +809921000168109 Centrum Advance 50 Plus film-coated tablet, 30, bottle 193642 809911000168102 Centrum Advance 50 Plus film-coated tablet, 30 809891000168104 Centrum Advance 50 Plus film-coated tablet 809511000168106 Centrum Advance 50 Plus 809511000168106 Centrum Advance 50 Plus 809901000168100 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet, 30 809881000168102 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet 809871000168100 vitamin A + betacarotene + colecalciferol + lutein + lycopene + phytomenadione + pantothenic acid + thiamine + nicotinamide + riboflavin + pyridoxine + cyanocobalamin + biotin + folic acid + dl-alpha-tocopheryl + ascorbic acid + calcium + magnesium + iron + zinc + manganese + chromium + selenium + copper + iodine + phosphorus + potassium +742991000168107 Morphine MR (AN) 30 mg modified release tablet, 28, blister pack 225426 742981000168109 Morphine MR (AN) 30 mg modified release tablet, 28 742931000168108 Morphine MR (AN) 30 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 929756011000036100 morphine sulfate pentahydrate 30 mg modified release tablet, 28 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +85060011000036105 Duofilm Gel 27% gel, 15 g, tube 68367 84924011000036105 Duofilm Gel 27% gel, 15 g 54157011000036104 Duofilm Gel 27% gel 53102011000036105 Duofilm Gel 53102011000036105 Duofilm Gel 85191011000036107 salicylic acid 27% gel, 15 g 62046011000036103 salicylic acid 27% gel 52232011000036106 salicylic acid +11731000036102 Neocate Gold powder for oral liquid, 400 g, can 6321000036105 Neocate Gold powder for oral liquid, 400 g 2981000036109 Neocate Gold powder for oral liquid 1111000036107 Neocate Gold 1111000036107 Neocate Gold 927290011000036108 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides powder for oral liquid, 400 g 926979011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides powder for oral liquid 926972011000036102 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides +59837011000036109 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 50, blister pack 114915 55799011000036101 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 50 53630011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet 29541000168103 Strong Pain Relief Tabsule (Amcal) 29541000168103 Strong Pain Relief Tabsule (Amcal) 63140011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 50 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +921895011000036105 Exforge HCT 5/160/25 film-coated tablet, 56, blister pack 158162 921454011000036109 Exforge HCT 5/160/25 film-coated tablet, 56 921016011000036101 Exforge HCT 5/160/25 film-coated tablet 4531000168100 Exforge HCT 5/160/25 4531000168100 Exforge HCT 5/160/25 922582011000036100 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 56 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +34695011000036107 Dilasig 6.25 mg film-coated tablet, 30, blister pack 141460 34279011000036101 Dilasig 6.25 mg film-coated tablet, 30 34007011000036109 Dilasig 6.25 mg film-coated tablet 33959011000036100 Dilasig 33959011000036100 Dilasig 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +68963011000036102 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 134408 66765011000036103 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71417011000036100 paracetamol 500 mg powder for oral liquid, 1 sachet 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +876251000168107 Brufen Syrup 100 mg/5 mL oral liquid suspension, 200 mL, bottle 43666 876241000168105 Brufen Syrup 100 mg/5 mL oral liquid suspension, 200 mL 876211000168106 Brufen Syrup 100 mg/5 mL oral liquid suspension, 5 mL 876201000168108 Brufen Syrup 876201000168108 Brufen Syrup 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +81120011000036105 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution, 500 mL, bottle 163526 80625011000036107 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution, 500 mL 80211011000036101 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 81684011000036106 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 500 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +1075021000168104 Atenolol (RBX) 100 mg film-coated tablet, 98, blister pack 197761 1075011000168106 Atenolol (RBX) 100 mg film-coated tablet, 98 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1033231000168108 atenolol 100 mg tablet, 98 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +81102011000036102 Metronide 400 mg uncoated tablet, 5, blister pack 160175 80607011000036108 Metronide 400 mg uncoated tablet, 5 6418011000036105 Metronide 400 mg uncoated tablet 3492011000036102 Metronide 3492011000036102 Metronide 26943011000036107 metronidazole 400 mg tablet, 5 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +31231000036104 Omeprazole (Sandoz) 20 mg enteric tablet, 30, blister pack 176179 28691000036106 Omeprazole (Sandoz) 20 mg enteric tablet, 30 27061000036107 Omeprazole (Sandoz) 20 mg enteric tablet 72916011000036100 Omeprazole (Sandoz) 72916011000036100 Omeprazole (Sandoz) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +1043311000168105 Pryzex ODT 5 mg orally disintegrating tablet, 21, blister pack 179079 1043301000168107 Pryzex ODT 5 mg orally disintegrating tablet, 21 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043291000168106 olanzapine 5 mg orally disintegrating tablet, 21 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +1089941000168101 Dymafen film-coated tablet, 12, blister pack 282486 1089931000168105 Dymafen film-coated tablet, 12 1089881000168100 Dymafen film-coated tablet 1089871000168103 Dymafen 1089871000168103 Dymafen 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1047651000168108 Zydol SR 200 mg modified release tablet, 60, blister pack 80725 1047641000168106 Zydol SR 200 mg modified release tablet, 60 7073011000036103 Zydol SR 200 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 38674011000036101 tramadol hydrochloride 200 mg modified release tablet, 60 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +59745011000036100 Panafen IB Mini Cap 200 mg gelatin coated tablet, 24, blister pack 104660 55696011000036100 Panafen IB Mini Cap 200 mg gelatin coated tablet, 24 53654011000036107 Panafen IB Mini Cap 200 mg gelatin coated tablet 41591000168107 Panafen IB Mini Cap 41591000168107 Panafen IB Mini Cap 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +68721011000036104 Deep Heat Regular Rub cream, 50 g, tube 12821 66716011000036109 Deep Heat Regular Rub cream, 50 g 65257011000036107 Deep Heat Regular Rub cream 13681000168101 Deep Heat Regular Rub 13681000168101 Deep Heat Regular Rub 71398011000036109 methyl salicylate 12.74% + menthol 5.88% cream, 50 g 69993011000036102 methyl salicylate 12.74% + menthol 5.88% cream 69751011000036100 methyl salicylate + menthol +61105011000036108 Dermaid Soft 1% modified cream, 15 g, tube 71684 57048011000036101 Dermaid Soft 1% modified cream, 15 g 54174011000036108 Dermaid Soft 1% modified cream 44871000168106 Dermaid Soft 44871000168106 Dermaid Soft 63716011000036100 hydrocortisone 1% modified cream, 15 g 62056011000036101 hydrocortisone 1% modified cream 21681011000036103 hydrocortisone +95301000036108 Oxaliplatin PFI (Kabi) 100 mg powder for injection, 1 vial 148407 94141000036105 Oxaliplatin PFI (Kabi) 100 mg powder for injection, 1 vial 93551000036101 Oxaliplatin PFI (Kabi) 100 mg powder for injection, 100 mg vial 18491000168109 Oxaliplatin PFI (Kabi) 18491000168109 Oxaliplatin PFI (Kabi) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +933216191000036108 Actiq 1600 microgram lozenge on handle, 30, blister pack 91604 933205931000036104 Actiq 1600 microgram lozenge on handle, 30 34080011000036109 Actiq 1600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 933205941000036109 fentanyl 1600 microgram lozenge on handle, 30 34915011000036107 fentanyl 1600 microgram lozenge on handle 21258011000036102 fentanyl +44258011000036106 Imigran S 10 mg/actuation nasal spray, 1 actuation, vial 41729011000036100 Imigran S 10 mg/actuation nasal spray, 1 actuation 40170011000036106 Imigran S 10 mg/actuation nasal spray, 1 actuation 18041000168106 Imigran S 18041000168106 Imigran S 46536011000036108 sumatriptan 10 mg/actuation nasal spray, 1 actuation 45208011000036106 sumatriptan 10 mg/actuation nasal spray, 1 actuation 21708011000036102 sumatriptan +79074011000036102 Ramipril (Apo) 2.5 mg tablet, 30, blister pack 231161 78852011000036108 Ramipril (Apo) 2.5 mg tablet, 30 78658011000036103 Ramipril (Apo) 2.5 mg tablet 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +79074011000036102 Ramipril (Apo) 2.5 mg tablet, 30, blister pack 150892 78852011000036108 Ramipril (Apo) 2.5 mg tablet, 30 78658011000036103 Ramipril (Apo) 2.5 mg tablet 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +999961000168107 Moxifloxacin (Apo) 400 mg film-coated tablet, 5, blister pack 223565 999951000168105 Moxifloxacin (Apo) 400 mg film-coated tablet, 5 999941000168108 Moxifloxacin (Apo) 400 mg film-coated tablet 999901000168106 Moxifloxacin (Apo) 999901000168106 Moxifloxacin (Apo) 27784011000036106 moxifloxacin 400 mg tablet, 5 23114011000036109 moxifloxacin 400 mg tablet 21765011000036109 moxifloxacin +1077191000168107 Atomoxetine (AS) 18 mg hard capsule, 28, blister pack 238359 1077181000168109 Atomoxetine (AS) 18 mg hard capsule, 28 1077151000168102 Atomoxetine (AS) 18 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +103961000036103 Lamivudine and Zidovudine 150/300 (Alphapharm) film-coated tablet, 60, bottle 167477 101291000036103 Lamivudine and Zidovudine 150/300 (Alphapharm) film-coated tablet, 60 98971000036108 Lamivudine and Zidovudine 150/300 (Alphapharm) film-coated tablet 34041000168108 Lamivudine and Zidovudine 150/300 (Alphapharm) 34041000168108 Lamivudine and Zidovudine 150/300 (Alphapharm) 27482011000036109 lamivudine 150 mg + zidovudine 300 mg tablet, 60 22828011000036109 lamivudine 150 mg + zidovudine 300 mg tablet 21904011000036103 lamivudine + zidovudine +52763011000036104 Lisinopril (Apo) 5 mg tablet, 1000, bottle 144027 52573011000036107 Lisinopril (Apo) 5 mg tablet, 1000 52424011000036100 Lisinopril (Apo) 5 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 52892011000036106 lisinopril 5 mg tablet, 1000 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +69355011000036104 Betadine Sore Throat Gargle - Concentrated 7.5% mouthwash, 40 mL, bottle 29566 67155011000036100 Betadine Sore Throat Gargle - Concentrated 7.5% mouthwash, 40 mL 65249011000036103 Betadine Sore Throat Gargle - Concentrated 7.5% mouthwash 6181000168101 Betadine Sore Throat Gargle - Concentrated 6181000168101 Betadine Sore Throat Gargle - Concentrated 71719011000036103 povidone-iodine 7.5% mouthwash, 40 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +44213011000036106 Ogen 625 microgram uncoated tablet, 100, bottle 56965 41689011000036102 Ogen 625 microgram uncoated tablet, 100 6118011000036109 Ogen 625 microgram uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46506011000036100 oestrone sulfate sodium 625 microgram tablet, 100 22744011000036101 oestrone sulfate sodium 625 microgram tablet 21299011000036103 oestrone sulfate sodium +44772011000036100 Cefazolin (Sandoz) 2 g powder for injection, 5 bottles 97685 42217011000036105 Cefazolin (Sandoz) 2 g powder for injection, 5 bottles 40394011000036103 Cefazolin (Sandoz) 2 g powder for injection, 2 g bottle 3337011000036101 Cefazolin (Sandoz) 3337011000036101 Cefazolin (Sandoz) 46977011000036102 cefazolin 2 g injection, 5 bottles 45367011000036102 cefazolin 2 g injection, bottle 21621011000036107 cefazolin +928877011000036104 Valaciclovir (RBX) 500 mg film-coated tablet, 10, blister pack 142803 928239011000036101 Valaciclovir (RBX) 500 mg film-coated tablet, 10 927897011000036103 Valaciclovir (RBX) 500 mg film-coated tablet 927814011000036108 Valaciclovir (RBX) 927814011000036108 Valaciclovir (RBX) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +773051000168106 Holoxan 500 mg powder for injection, 1 vial 43606 773041000168109 Holoxan 500 mg powder for injection, 1 vial 773021000168103 Holoxan 500 mg powder for injection, 500 mg vial 3908011000036104 Holoxan 3908011000036104 Holoxan 773031000168100 ifosfamide 500 mg injection, 1 vial 773011000168105 ifosfamide 500 mg injection, vial 21291011000036102 ifosfamide +12151000036103 Quetiapine (DRLA) 100 mg film-coated tablet, 90, blister pack 162376 7291000036101 Quetiapine (DRLA) 100 mg film-coated tablet, 90 3761000036106 Quetiapine (DRLA) 100 mg film-coated tablet 691000036105 Quetiapine (DRLA) 691000036105 Quetiapine (DRLA) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +891781000168105 Bicor 7.5 mg film-coated tablet, 42, blister pack 81607 891771000168107 Bicor 7.5 mg film-coated tablet, 42 891701000168102 Bicor 7.5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 875531000168109 bisoprolol fumarate 7.5 mg tablet, 42 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +1009511000168105 Rivastigmine 5 (Apo) 4.6 mg/24 hours patch, 30, sachet 233748 1009501000168107 Rivastigmine 5 (Apo) 4.6 mg/24 hours patch, 30 1009471000168101 Rivastigmine 5 (Apo) 4.6 mg/24 hours patch 1009461000168107 Rivastigmine 5 (Apo) 1009461000168107 Rivastigmine 5 (Apo) 38682011000036101 rivastigmine 4.6 mg/24 hours patch, 30 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +140651000036105 Fresofol 1% MCT/LCT 500 mg/50 mL injection emulsion, 50 mL syringe 204474 139451000036100 Fresofol 1% MCT/LCT 500 mg/50 mL injection emulsion, 50 mL syringe 138081000036106 Fresofol 1% MCT/LCT 500 mg/50 mL injection emulsion, 50 mL syringe 16441000168100 Fresofol 1% MCT/LCT 16441000168100 Fresofol 1% MCT/LCT 46723011000036100 propofol 500 mg/50 mL injection, 50 mL syringe 45283011000036102 propofol 500 mg/50 mL injection, syringe 37750011000036109 propofol +963531000168105 Aripiprazole (Apo) 5 mg uncoated tablet, 30, blister pack 152904 963521000168107 Aripiprazole (Apo) 5 mg uncoated tablet, 30 963511000168100 Aripiprazole (Apo) 5 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +61480011000036102 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 1200, blister pack 91993 57405011000036108 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 1200 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63847011000036106 paracetamol 500 mg tablet, 1200 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +86890011000036109 Plaxel 30 mg/5 mL concentrated injection, 5 mL vial 165438 86772011000036101 Plaxel 30 mg/5 mL concentrated injection, 5 mL vial 86644011000036101 Plaxel 30 mg/5 mL concentrated injection, 5 mL vial 86588011000036109 Plaxel 86588011000036109 Plaxel 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +923778011000036102 Tacrolimus (Sandoz) 1 mg hard capsule, 100, blister pack 153745 923338011000036104 Tacrolimus (Sandoz) 1 mg hard capsule, 100 923016011000036108 Tacrolimus (Sandoz) 1 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +32610011000036107 Aldazine 100 mg film-coated tablet, 90, blister pack 93660 32409011000036100 Aldazine 100 mg film-coated tablet, 90 32257011000036103 Aldazine 100 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32807011000036101 thioridazine hydrochloride 100 mg tablet, 90 32708011000036102 thioridazine hydrochloride 100 mg tablet 21637011000036101 thioridazine +933215071000036100 Denpax 12 microgram/hour patch, 5, sachet 163066 933204121000036104 Denpax 12 microgram/hour patch, 5 933196291000036100 Denpax 12 microgram/hour patch 933193221000036107 Denpax 933193221000036107 Denpax 26685011000036103 fentanyl 12 microgram/hour patch, 5 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +55491000036101 Anastrozole (AU) 1 mg film-coated tablet, 300, blister pack 155174 52081000036104 Anastrozole (AU) 1 mg film-coated tablet, 300 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52091000036102 anastrozole 1 mg tablet, 300 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +721471000168106 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL, bottle 20231 721461000168100 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL 721451000168102 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +721471000168106 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL, bottle 178300 721461000168100 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL 721451000168102 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +19382011000036105 Dostinex 500 microgram uncoated tablet, 8, bottle 52158 12669011000036104 Dostinex 500 microgram uncoated tablet, 8 4504011000036104 Dostinex 500 microgram uncoated tablet 3720011000036101 Dostinex 3720011000036101 Dostinex 27272011000036101 cabergoline 500 microgram tablet, 8 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +931694011000036101 Soldara 5% cream, 6 x 250 mg sachets 170201 930854011000036108 Soldara 5% cream, 6 x 250 mg sachets 930072011000036103 Soldara 5% cream, 250 mg sachet 929829011000036105 Soldara 929829011000036105 Soldara 932454011000036109 imiquimod 5% cream, 6 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +1012481000168107 Perindopril (WT) 4 mg uncoated tablet, 30, blister pack 121635 1012471000168109 Perindopril (WT) 4 mg uncoated tablet, 30 1012461000168103 Perindopril (WT) 4 mg uncoated tablet 1012391000168101 Perindopril (WT) 1012391000168101 Perindopril (WT) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +652671000168105 Tacrolimus (Pharmacor) 5 mg hard capsule, 100, bottle 209270 652661000168104 Tacrolimus (Pharmacor) 5 mg hard capsule, 100 652321000168101 Tacrolimus (Pharmacor) 5 mg hard capsule 650951000168107 Tacrolimus (Pharmacor) 650951000168107 Tacrolimus (Pharmacor) 652651000168101 tacrolimus 5 mg capsule, 100 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +79078011000036109 Ramipril (Terry White Chemists) 10 mg tablet, 30, blister pack 150907 78860011000036102 Ramipril (Terry White Chemists) 10 mg tablet, 30 78666011000036105 Ramipril (Terry White Chemists) 10 mg tablet 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +79078011000036109 Ramipril (Terry White Chemists) 10 mg tablet, 30, blister pack 231168 78860011000036102 Ramipril (Terry White Chemists) 10 mg tablet, 30 78666011000036105 Ramipril (Terry White Chemists) 10 mg tablet 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +176561000036107 Acitretin (Actavis) 10 mg hard capsule, 100, blister pack 171571 174771000036103 Acitretin (Actavis) 10 mg hard capsule, 100 173051000036109 Acitretin (Actavis) 10 mg hard capsule 172731000036105 Acitretin (Actavis) 172731000036105 Acitretin (Actavis) 27277011000036104 acitretin 10 mg capsule, 100 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +811131000168107 Prodeine uncoated tablet, 40, blister pack 200605 811121000168109 Prodeine uncoated tablet, 40 811031000168106 Prodeine uncoated tablet 811021000168108 Prodeine 811021000168108 Prodeine 764231000168101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 40 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +933239541000036108 Amisulpride (Apo) 400 mg film-coated tablet, 60, blister pack 178898 933236861000036104 Amisulpride (Apo) 400 mg film-coated tablet, 60 933234751000036101 Amisulpride (Apo) 400 mg film-coated tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +1054501000168103 Oxycodone (Sandoz) 5 mg modified release tablet, 20, blister pack 153605 785741000168100 Oxycodone (Sandoz) 5 mg modified release tablet, 20 679351000168102 Oxycodone (Sandoz) 5 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 28126011000036108 oxycodone hydrochloride 5 mg modified release tablet, 20 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +737281000168102 Cardasa 100 mg enteric tablet, 168, blister pack 201525 737271000168100 Cardasa 100 mg enteric tablet, 168 737221000168101 Cardasa 100 mg enteric tablet 737211000168108 Cardasa 737211000168108 Cardasa 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +858261000168106 Emexlon 10 mg film-coated tablet, 500, bottle 268301 858251000168109 Emexlon 10 mg film-coated tablet, 500 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 858241000168107 metoclopramide hydrochloride 10 mg tablet, 500 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +61045011000036106 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 20, blister pack 67365 56988011000036100 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 20 54148011000036100 Period Pain Relief (Pharmacist) 275 mg film-coated tablet 53313011000036106 Period Pain Relief (Pharmacist) 53313011000036106 Period Pain Relief (Pharmacist) 63677011000036100 naproxen sodium 275 mg tablet, 20 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +1097361000168107 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet, 10, blister pack 287706 1097351000168105 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet, 10 1097341000168108 Anti-Inflammatory Pain Relief (Terry White Chemists) 25 mg enteric tablet 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 63832011000036105 diclofenac sodium 25 mg enteric tablet, 10 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +30911000036106 Aspirin EC (Chemmart) 100 mg enteric tablet, 28, blister pack 172167 28521000036107 Aspirin EC (Chemmart) 100 mg enteric tablet, 28 26781000036101 Aspirin EC (Chemmart) 100 mg enteric tablet 48411000168108 Aspirin EC (Chemmart) 48411000168108 Aspirin EC (Chemmart) 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +681591000168108 Terbinafine (AN) 250 mg uncoated tablet, 14, blister pack 200225 681581000168105 Terbinafine (AN) 250 mg uncoated tablet, 14 681571000168107 Terbinafine (AN) 250 mg uncoated tablet 681561000168101 Terbinafine (AN) 681561000168101 Terbinafine (AN) 75419011000036108 terbinafine 250 mg tablet, 14 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +1008461000168103 Cefuroxime (AL) 500 mg film-coated tablet, 50, blister pack 273226 1008451000168100 Cefuroxime (AL) 500 mg film-coated tablet, 50 1008271000168105 Cefuroxime (AL) 500 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 1008441000168102 cefuroxime 500 mg tablet, 50 1008261000168104 cefuroxime 500 mg tablet 21474011000036106 cefuroxime +940711000168109 Syntocinon 40 units/mL nasal spray, 5 mL, pump pack 13382 940701000168106 Syntocinon 40 units/mL nasal spray, 5 mL 940681000168108 Syntocinon 40 units/mL nasal spray 35899011000036109 Syntocinon 35899011000036109 Syntocinon 940691000168106 oxytocin 40 units/mL nasal spray, 5 mL 940671000168105 oxytocin 40 units/mL nasal spray 37765011000036106 oxytocin +18218011000036100 Karvezide 300/12.5 film-coated tablet, 30, bottle 101834 11240011000036102 Karvezide 300/12.5 film-coated tablet, 30 4627011000036108 Karvezide 300/12.5 film-coated tablet 16991000168103 Karvezide 300/12.5 16991000168103 Karvezide 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +69036011000036106 Chlorhexidine Gluconate (David Craig) 1% cream, 100 g, jar 14088 66838011000036101 Chlorhexidine Gluconate (David Craig) 1% cream, 100 g 65361011000036102 Chlorhexidine Gluconate (David Craig) 1% cream 64995011000036100 Chlorhexidine Gluconate (David Craig) 64995011000036100 Chlorhexidine Gluconate (David Craig) 71452011000036106 chlorhexidine gluconate 1% cream, 100 g 70014011000036105 chlorhexidine gluconate 1% cream 21404011000036101 chlorhexidine +921894011000036106 Exforge HCT 5/160/25 film-coated tablet, 30, blister pack 158162 921453011000036107 Exforge HCT 5/160/25 film-coated tablet, 30 921016011000036101 Exforge HCT 5/160/25 film-coated tablet 4531000168100 Exforge HCT 5/160/25 4531000168100 Exforge HCT 5/160/25 922581011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 30 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +819811000168105 Nausicalm 50 mg uncoated tablet, 6, blister pack 231174 819801000168107 Nausicalm 50 mg uncoated tablet, 6 819781000168108 Nausicalm 50 mg uncoated tablet 819761000168104 Nausicalm 819761000168104 Nausicalm 819791000168106 cyclizine hydrochloride 50 mg tablet, 6 819771000168105 cyclizine hydrochloride 50 mg tablet 675051000168102 cyclizine +13831000036105 Aripiprazole (GH) 30 mg uncoated tablet, 30, blister pack 176815 7471000036104 Aripiprazole (GH) 30 mg uncoated tablet, 30 2801000036107 Aripiprazole (GH) 30 mg uncoated tablet 991000036104 Aripiprazole (GH) 991000036104 Aripiprazole (GH) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +1041621000168107 Atorvastatin (Pfizer) 20 mg film-coated tablet, 90, bottle 182941 1041611000168100 Atorvastatin (Pfizer) 20 mg film-coated tablet, 90 2071000036106 Atorvastatin (Pfizer) 20 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 1041601000168103 atorvastatin 20 mg tablet, 90 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +38321000036100 Escitalopram (LAPL) 10 mg film-coated tablet, 100, bottle 165843 34651000036106 Escitalopram (LAPL) 10 mg film-coated tablet, 100 33061000036102 Escitalopram (LAPL) 10 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1045921000168101 Atorvastatin (Pharmacor) 80 mg film-coated tablet, 30, blister pack 198853 1045911000168108 Atorvastatin (Pharmacor) 80 mg film-coated tablet, 30 1045901000168105 Atorvastatin (Pharmacor) 80 mg film-coated tablet 1045731000168100 Atorvastatin (Pharmacor) 1045731000168100 Atorvastatin (Pharmacor) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +911971000168101 Caspofungin (CH) 70 mg powder for injection, 1 vial 269933 911961000168107 Caspofungin (CH) 70 mg powder for injection, 1 vial 911951000168105 Caspofungin (CH) 70 mg powder for injection, 70 mg vial 911331000168100 Caspofungin (CH) 911331000168100 Caspofungin (CH) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +55451000036105 Anastrozole (AU) 1 mg film-coated tablet, 14, blister pack 155174 52001000036105 Anastrozole (AU) 1 mg film-coated tablet, 14 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52021000036100 anastrozole 1 mg tablet, 14 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +720421000168103 Toujeo Solostar 300 units/mL injection solution, 3 x 1.5 mL injection devices 223457 720411000168105 Toujeo Solostar 300 units/mL injection solution, 3 x 1.5 mL injection devices 720361000168103 Toujeo Solostar 300 units/mL injection solution, 1.5 mL injection device 720341000168102 Toujeo Solostar 720341000168102 Toujeo Solostar 720401000168107 insulin glargine 300 units/mL injection, 3 x 1.5 mL injection devices 720351000168100 insulin glargine 300 units/mL injection, injection device 21815011000036108 insulin glargine +1075821000168108 Aripiprazole (Auro) 2 mg uncoated tablet, 60, blister pack 198190 1075811000168101 Aripiprazole (Auro) 2 mg uncoated tablet, 60 1075671000168105 Aripiprazole (Auro) 2 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 801701000168104 aripiprazole 2 mg tablet, 60 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +931527011000036108 Imiquad 5% cream, 12 x 250 mg sachets 160484 930688011000036101 Imiquad 5% cream, 12 x 250 mg sachets 930013011000036102 Imiquad 5% cream, 250 mg sachet 929828011000036102 Imiquad 929828011000036102 Imiquad 27549011000036101 imiquimod 5% cream, 12 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +926021000168103 Zorac 0.1% gel, 100 g, tube 59520 926011000168105 Zorac 0.1% gel, 100 g 925891000168104 Zorac 0.1% gel 39675011000036100 Zorac 39675011000036100 Zorac 926001000168107 tazarotene 0.1% gel, 100 g 925881000168102 tazarotene 0.1% gel 44886011000036105 tazarotene +1095991000168106 Aspirin EC (Amcal) 100 mg enteric tablet, 84, blister pack 236225 1095981000168108 Aspirin EC (Amcal) 100 mg enteric tablet, 84 1095971000168105 Aspirin EC (Amcal) 100 mg enteric tablet 1095961000168104 Aspirin EC (Amcal) 1095961000168104 Aspirin EC (Amcal) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +678281000168106 Adcetris 50 mg powder for injection, 1 vial 203372 678271000168108 Adcetris 50 mg powder for injection, 1 vial 678251000168104 Adcetris 50 mg powder for injection, 50 mg vial 678221000168107 Adcetris 678221000168107 Adcetris 678261000168102 brentuximab vedotin 50 mg injection, 1 vial 678241000168101 brentuximab vedotin 50 mg injection, vial 678231000168105 brentuximab vedotin +43833011000036109 Tryzan Titration Pack (7 x 2.5 mg capsules, 21 x 5 mg capsules, 10 x 10 mg capsules), 38, blister pack 127166 41334011000036100 Tryzan Titration Pack (7 x 2.5 mg capsules, 21 x 5 mg capsules, 10 x 10 mg capsules), 38 4465011000036106 Tryzan 10 mg hard capsule 11671000168103 Tryzan Titration Pack 3401011000036105 Tryzan 46256011000036101 ramipril 2.5 mg capsule [7] (&) ramipril 5 mg capsule [21] (&) ramipril 10 mg capsule [10], 38 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +43833011000036109 Tryzan Titration Pack (7 x 2.5 mg capsules, 21 x 5 mg capsules, 10 x 10 mg capsules), 38, blister pack 127166 41334011000036100 Tryzan Titration Pack (7 x 2.5 mg capsules, 21 x 5 mg capsules, 10 x 10 mg capsules), 38 32218011000036107 Tryzan 2.5 mg hard capsule 11671000168103 Tryzan Titration Pack 3401011000036105 Tryzan 46256011000036101 ramipril 2.5 mg capsule [7] (&) ramipril 5 mg capsule [21] (&) ramipril 10 mg capsule [10], 38 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +43833011000036109 Tryzan Titration Pack (7 x 2.5 mg capsules, 21 x 5 mg capsules, 10 x 10 mg capsules), 38, blister pack 127166 41334011000036100 Tryzan Titration Pack (7 x 2.5 mg capsules, 21 x 5 mg capsules, 10 x 10 mg capsules), 38 32219011000036104 Tryzan 5 mg hard capsule 11671000168103 Tryzan Titration Pack 3401011000036105 Tryzan 46256011000036101 ramipril 2.5 mg capsule [7] (&) ramipril 5 mg capsule [21] (&) ramipril 10 mg capsule [10], 38 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +50617011000036108 Seroquel XR 200 mg modified release tablet, 60, blister pack 138920 49643011000036101 Seroquel XR 200 mg modified release tablet, 60 48796011000036105 Seroquel XR 200 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +921917011000036108 Flamazine 1% cream, 500 g, jar 159338 921476011000036104 Flamazine 1% cream, 500 g 79361011000036109 Flamazine 1% cream 79341011000036100 Flamazine 79341011000036100 Flamazine 922604011000036101 silver sulfadiazine 1% cream, 500 g 79735011000036103 silver sulfadiazine 1% cream 79732011000036106 silver sulfadiazine +926866011000036103 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 100 mL vial 47998 926262011000036108 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 100 mL vial 925710011000036101 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 100 mL vial 14501000168105 Optiray-350 14501000168105 Optiray-350 927366011000036102 ioversol 741 mg (iodine 350 mg)/mL injection, 100 mL vial 927013011000036105 ioversol 741 mg (iodine 350 mg)/mL injection, 100 mL vial 77421011000036103 ioversol +1054181000168101 Actiq 1600 microgram lozenge on handle, 15, blister pack 91604 1054171000168104 Actiq 1600 microgram lozenge on handle, 15 34080011000036109 Actiq 1600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1054161000168105 fentanyl 1600 microgram lozenge on handle, 15 34915011000036107 fentanyl 1600 microgram lozenge on handle 21258011000036102 fentanyl +60744011000036101 Paraderm Plus cream, 50 g, tube 50451 56702011000036106 Paraderm Plus cream, 50 g 54040011000036105 Paraderm Plus cream 53236011000036103 Paraderm Plus 53236011000036103 Paraderm Plus 63520011000036109 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 50 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +13651000036101 Anastrozole (Terry White Chemists) 1 mg film-coated tablet, 30, blister pack 173896 8221000036103 Anastrozole (Terry White Chemists) 1 mg film-coated tablet, 30 2831000036100 Anastrozole (Terry White Chemists) 1 mg film-coated tablet 631000036109 Anastrozole (Terry White Chemists) 631000036109 Anastrozole (Terry White Chemists) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +52776011000036100 Mersyndol Caplet uncoated tablet, 20, blister pack 56535 52586011000036108 Mersyndol Caplet uncoated tablet, 20 52432011000036107 Mersyndol Caplet uncoated tablet 2221000168108 Mersyndol Caplet 2221000168108 Mersyndol Caplet 52897011000036108 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +882831000168106 Bosentan (RBX) 62.5 mg film-coated tablet, 56, bottle 257758 882791000168100 Bosentan (RBX) 62.5 mg film-coated tablet, 56 882781000168103 Bosentan (RBX) 62.5 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1049891000168109 Bupannus 10 microgram/hour patch, 4, sachet 234723 1049881000168106 Bupannus 10 microgram/hour patch, 4 1049831000168105 Bupannus 10 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1046681000168103 buprenorphine 10 microgram/hour patch, 4 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +77296011000036100 Pyroxin 25 mg uncoated tablet, 100, bottle 27530 76712011000036106 Pyroxin 25 mg uncoated tablet, 100 76132011000036109 Pyroxin 25 mg uncoated tablet 75926011000036105 Pyroxin 75926011000036105 Pyroxin 78226011000036104 pyridoxine hydrochloride 25 mg tablet, 100 77554011000036106 pyridoxine hydrochloride 25 mg tablet 77422011000036109 pyridoxine +12231000036102 Ceptolate 500 mg film-coated tablet, 50, blister pack 163308 7421000036103 Ceptolate 500 mg film-coated tablet, 50 2891000036104 Ceptolate 500 mg film-coated tablet 521000036106 Ceptolate 521000036106 Ceptolate 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +60008011000036100 Lorapaed 1 mg/mL oral liquid solution, 100 mL, bottle 123270 55970011000036106 Lorapaed 1 mg/mL oral liquid solution, 100 mL 53743011000036103 Lorapaed 1 mg/mL oral liquid solution 53259011000036106 Lorapaed 53259011000036106 Lorapaed 63586011000036101 loratadine 1 mg/mL oral liquid, 100 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +68866011000036103 Panadol Cold and Flu Max lemon 1 g powder for oral liquid, 5 sachets 131524 66743011000036105 Panadol Cold and Flu Max lemon 1 g powder for oral liquid, 5 sachets 65220011000036107 Panadol Cold and Flu Max lemon 1 g powder for oral liquid, 1 sachet 3961000168101 Panadol Cold and Flu Max 3961000168101 Panadol Cold and Flu Max 71933011000036101 paracetamol 1 g powder for oral liquid, 5 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1029701000168108 Aten 25 mg film-coated tablet, 56, blister pack 197714 1029691000168108 Aten 25 mg film-coated tablet, 56 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029681000168105 atenolol 25 mg tablet, 56 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +773731000168103 Duro-Tuss Chesty Cough Double Strength 8 mg/5 mL oral liquid solution, 100 mL, bottle 215996 773721000168101 Duro-Tuss Chesty Cough Double Strength 8 mg/5 mL oral liquid solution, 100 mL 773701000168105 Duro-Tuss Chesty Cough Double Strength 8 mg/5 mL oral liquid solution, 5 mL 773681000168107 Duro-Tuss Chesty Cough Double Strength 773681000168107 Duro-Tuss Chesty Cough Double Strength 773711000168108 bromhexine hydrochloride 8 mg/5 mL oral liquid, 100 mL 61902011000036102 bromhexine hydrochloride 8 mg/5 mL oral liquid 61780011000036106 bromhexine +18852011000036103 Prantal 2% dusting powder, 50 g, bottle 18199 12163011000036103 Prantal 2% dusting powder, 50 g 5584011000036108 Prantal 2% dusting powder 4203011000036108 Prantal 4203011000036108 Prantal 26958011000036100 diphemanil metilsulfate 2% dusting powder, 50 g 22333011000036100 diphemanil metilsulfate 2% dusting powder 21757011000036108 diphemanil +69157011000036101 Disprin Direct 300 mg chewable tablet, 3, strip pack 15356 66957011000036108 Disprin Direct 300 mg chewable tablet, 3 65492011000036103 Disprin Direct 300 mg chewable tablet 38641000168105 Disprin Direct 38641000168105 Disprin Direct 71531011000036107 aspirin 300 mg chewable tablet, 3 87371000036106 aspirin 300 mg chewable tablet 21719011000036107 aspirin +17991000036107 Mycophenolate Mofetil (Pharmacor) 500 mg film-coated tablet, 50, blister pack 164418 16881000036100 Mycophenolate Mofetil (Pharmacor) 500 mg film-coated tablet, 50 15711000036108 Mycophenolate Mofetil (Pharmacor) 500 mg film-coated tablet 15141000036108 Mycophenolate Mofetil (Pharmacor) 15141000036108 Mycophenolate Mofetil (Pharmacor) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +20197011000036100 Captopril (Terry White Chemists) 12.5 mg uncoated tablet, 90, blister pack 73998 13416011000036101 Captopril (Terry White Chemists) 12.5 mg uncoated tablet, 90 6698011000036107 Captopril (Terry White Chemists) 12.5 mg uncoated tablet 4036011000036101 Captopril (Terry White Chemists) 4036011000036101 Captopril (Terry White Chemists) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +60162011000036109 Vagisil cream, 25 g, tube 13069 56121011000036103 Vagisil cream, 25 g 53800011000036103 Vagisil cream 53263011000036104 Vagisil 53263011000036104 Vagisil 63225011000036109 benzocaine 5% + resorcinol 2% cream, 25 g 61896011000036107 benzocaine 5% + resorcinol 2% cream 61770011000036100 benzocaine + resorcinol +1099371000168106 Lamotrigine (Chemmart) 100 mg uncoated tablet, 56, blister pack 167527 1099361000168100 Lamotrigine (Chemmart) 100 mg uncoated tablet, 56 1099351000168102 Lamotrigine (Chemmart) 100 mg uncoated tablet 1097871000168105 Lamotrigine (Chemmart) 1097871000168105 Lamotrigine (Chemmart) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +79035011000036100 Bispro 5 mg film-coated tablet, 28, blister pack 130180 78793011000036109 Bispro 5 mg film-coated tablet, 28 78626011000036101 Bispro 5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +60299011000036104 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 16, blister pack 137681 56258011000036109 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 16 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63270011000036104 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 16 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +1009431000168104 Rivastigmine 10 (Apo) 9.5 mg/24 hours patch, 7, sachet 233740 1009421000168102 Rivastigmine 10 (Apo) 9.5 mg/24 hours patch, 7 1009411000168109 Rivastigmine 10 (Apo) 9.5 mg/24 hours patch 1009401000168106 Rivastigmine 10 (Apo) 1009401000168106 Rivastigmine 10 (Apo) 728051000168104 rivastigmine 9.5 mg/24 hours patch, 7 37923011000036109 rivastigmine 9.5 mg/24 hours patch 21413011000036101 rivastigmine +34684011000036109 Amlodipine (Chemmart) 5 mg uncoated tablet, 30, blister pack 135130 34270011000036107 Amlodipine (Chemmart) 5 mg uncoated tablet, 30 33998011000036104 Amlodipine (Chemmart) 5 mg uncoated tablet 33922011000036106 Amlodipine (Chemmart) 33922011000036106 Amlodipine (Chemmart) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +20393011000036102 Cefaclor CD (Chemmart) 375 mg modified release tablet, 10, blister pack 77099 13601011000036106 Cefaclor CD (Chemmart) 375 mg modified release tablet, 10 6884011000036105 Cefaclor CD (Chemmart) 375 mg modified release tablet 59691000168109 Cefaclor CD (Chemmart) 59691000168109 Cefaclor CD (Chemmart) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +12291000036101 Zylap 5 mg film-coated tablet, 28, blister pack 163404 7201000036109 Zylap 5 mg film-coated tablet, 28 1641000036100 Zylap 5 mg film-coated tablet 7481000168109 Zylap 7481000168109 Zylap 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +20429011000036100 Mobic 7.5 mg hard capsule, 30, tube 77700 13632011000036105 Mobic 7.5 mg hard capsule, 30 6915011000036101 Mobic 7.5 mg hard capsule 3572011000036102 Mobic 3572011000036102 Mobic 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +50516011000036102 Mepilex Lite (284000) 6 cm x 8.5 cm dressing, 5, carton 49403011000036109 Mepilex Lite (284000) 6 cm x 8.5 cm dressing, 5 48571011000036108 Mepilex Lite (284000) 6 cm x 8.5 cm dressing 29371000168104 Mepilex Lite (284000) 29371000168104 Mepilex Lite (284000) 51372011000036104 dressing foam with silicone light exudate 6 cm x 8.5 cm dressing, 5 50894011000036105 dressing foam with silicone light exudate 6 cm x 8.5 cm dressing 50744011000036100 dressing foam with silicone light exudate +874481000168105 Beezole 20 mg enteric tablet, 15, blister pack 205832 874471000168107 Beezole 20 mg enteric tablet, 15 874441000168100 Beezole 20 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 681261000168103 esomeprazole 20 mg enteric tablet, 15 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +69020011000036105 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 10 sachets 140597 66822011000036102 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 10 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71932011000036108 paracetamol 1 g powder for oral liquid, 10 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +815561000168109 Deflectum 5/10 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200820 815551000168107 Deflectum 5/10 (perindopril arginine/amlodipine) uncoated tablet, 10 815541000168105 Deflectum 5/10 (perindopril arginine/amlodipine) uncoated tablet 815531000168101 Deflectum 5/10 (perindopril arginine/amlodipine) 815531000168101 Deflectum 5/10 (perindopril arginine/amlodipine) 86425011000036103 perindopril arginine 5 mg + amlodipine 10 mg tablet, 10 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +18800011000036105 Noroxin 400 mg film-coated tablet, 14, blister pack 10503 11313011000036106 Noroxin 400 mg film-coated tablet, 14 4834011000036108 Noroxin 400 mg film-coated tablet 4213011000036105 Noroxin 4213011000036105 Noroxin 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +84354011000036104 Loratadine (Terry White Chemists) 10 mg uncoated tablet, 10, blister pack 160832 84047011000036109 Loratadine (Terry White Chemists) 10 mg uncoated tablet, 10 83669011000036101 Loratadine (Terry White Chemists) 10 mg uncoated tablet 83588011000036104 Loratadine (Terry White Chemists) 83588011000036104 Loratadine (Terry White Chemists) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +862691000168108 Amitriptyline (GPPL) 25 mg tablet, 90, blister pack 232136 862681000168105 Amitriptyline (GPPL) 25 mg tablet, 90 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +926676011000036104 Nicabate CQ Mint 4 mg lozenge, 48, tube 128780 926149011000036108 Nicabate CQ Mint 4 mg lozenge, 48 925640011000036103 Nicabate CQ Mint 4 mg lozenge 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 927321011000036101 nicotine 4 mg lozenge, 48 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +118861000036101 Crinone 8% vaginal gel, 6 applications, applicator 83166 118531000036105 Crinone 8% vaginal gel, 6 applications 118031000036103 Crinone 8% vaginal gel, 1 application 3283011000036109 Crinone 3283011000036109 Crinone 118541000036100 progesterone 8% vaginal gel, 6 applications 118041000036108 progesterone 8% vaginal gel, 1 application 21412011000036108 progesterone +745961000168109 Celebrex 200 mg hard capsule, 60, blister pack 67902 745951000168107 Celebrex 200 mg hard capsule, 60 6496011000036105 Celebrex 200 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +44638011000036108 Levitra 20 mg film-coated tablet, 12, blister pack 90500 42091011000036105 Levitra 20 mg film-coated tablet, 12 40350011000036103 Levitra 20 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46858011000036107 vardenafil 20 mg tablet, 12 45334011000036104 vardenafil 20 mg tablet 44856011000036100 vardenafil +1011521000168101 Montelukast (Apo) 10 mg film-coated tablet, 28, bottle 170246 158921000036105 Montelukast (Apo) 10 mg film-coated tablet, 28 158061000036100 Montelukast (Apo) 10 mg film-coated tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +61199011000036108 Naprogesic 275 mg film-coated tablet, 24, blister pack 75501 57135011000036103 Naprogesic 275 mg film-coated tablet, 24 54213011000036100 Naprogesic 275 mg film-coated tablet 53327011000036106 Naprogesic 53327011000036106 Naprogesic 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +18064011000036100 Anusol suppository, 12, strip pack 14663 12056011000036109 Anusol suppository, 12 5060011000036103 Anusol suppository 3778011000036103 Anusol 3778011000036103 Anusol 26883011000036106 zinc oxide 300 mg + peru balsam 50 mg + benzyl benzoate 33 mg suppository, 12 22261011000036100 zinc oxide 300 mg + peru balsam 50 mg + benzyl benzoate 33 mg suppository 21666011000036106 zinc oxide + peru balsam + benzyl benzoate +933214911000036106 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 90, bottle 163566 933204501000036101 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 90 933195541000036102 Pravastatin Sodium (RZ) 40 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932408011000036109 pravastatin sodium 40 mg tablet, 90 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +904341000168108 Amoxyclav 500/125 (B&B) film-coated tablet, 10, strip pack 236900 904331000168104 Amoxyclav 500/125 (B&B) film-coated tablet, 10 904321000168102 Amoxyclav 500/125 (B&B) film-coated tablet 904311000168109 Amoxyclav 500/125 (B&B) 904311000168109 Amoxyclav 500/125 (B&B) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1012721000168104 Valganciclovir (Apotex) 450 mg film-coated tablet, 120, bottle 184312 1012711000168106 Valganciclovir (Apotex) 450 mg film-coated tablet, 120 999421000168108 Valganciclovir (Apotex) 450 mg film-coated tablet 999411000168101 Valganciclovir (Apotex) 999411000168101 Valganciclovir (Apotex) 1012701000168108 valganciclovir 450 mg tablet, 120 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +1093021000168109 Sleep Aid (Chemists' Own) 25 mg uncoated tablet, 20, blister pack 284793 1093011000168102 Sleep Aid (Chemists' Own) 25 mg uncoated tablet, 20 1093001000168100 Sleep Aid (Chemists' Own) 25 mg uncoated tablet 1092991000168101 Sleep Aid (Chemists' Own) 1092991000168101 Sleep Aid (Chemists' Own) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +925201011000036100 Paclitaxel (Kabi) 300 mg/50 mL concentrated injection, 5 x 50 mL vials 156273 924738011000036103 Paclitaxel (Kabi) 300 mg/50 mL concentrated injection, 5 x 50 mL vials 924445011000036102 Paclitaxel (Kabi) 300 mg/50 mL concentrated injection, 50 mL vial 924407011000036104 Paclitaxel (Kabi) 924407011000036104 Paclitaxel (Kabi) 925412011000036108 paclitaxel 300 mg/50 mL injection, 5 x 50 mL vials 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +687031000168106 Omnaris 50 microgram/actuation nasal spray, 60 actuations, pump pack 167910 687021000168108 Omnaris 50 microgram/actuation nasal spray, 60 actuations 687001000168104 Omnaris 50 microgram/actuation nasal spray, actuation 686981000168108 Omnaris 686981000168108 Omnaris 687011000168101 ciclesonide 50 microgram/actuation nasal spray, 60 actuations 686991000168106 ciclesonide 50 microgram/actuation nasal spray, actuation 21555011000036102 ciclesonide +83173011000036107 Vaxigrip 2010 needle free injection solution, 1 x 0.5 mL syringe 129874 83117011000036108 Vaxigrip 2010 needle free injection solution, 1 x 0.5 mL syringe 83066011000036103 Vaxigrip 2010 needle free injection solution, 0.5 mL syringe 21781000168101 Vaxigrip 2010 21781000168101 Vaxigrip 2010 83211011000036102 influenza trivalent adult vaccine 2010 injection, 1 x 0.5 mL syringe 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +20959011000036102 Avonex 6 million units (30 microgram)/0.5 mL injection solution, 4 x 0.5 mL syringes 95419 14114011000036108 Avonex 6 million units (30 microgram)/0.5 mL injection solution, 4 x 0.5 mL syringes 7391011000036105 Avonex 6 million units (30 microgram)/0.5 mL injection solution, 0.5 mL syringe 20651000168107 Avonex 20651000168107 Avonex 28160011000036102 interferon beta-1a 6 million units (30 microgram)/0.5 mL injection, 4 x 0.5 mL syringes 23469011000036108 interferon beta-1a 6 million units (30 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +1046921000168106 Buprenorphine (SZ) 5 microgram/hour patch, 2, sachet 269670 1046911000168104 Buprenorphine (SZ) 5 microgram/hour patch, 2 1046881000168104 Buprenorphine (SZ) 5 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 26680011000036107 buprenorphine 5 microgram/hour patch, 2 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +675311000168101 Celecoxib (Apo) 100 mg hard capsule, 60, blister pack 226145 675301000168104 Celecoxib (Apo) 100 mg hard capsule, 60 675291000168100 Celecoxib (Apo) 100 mg hard capsule 675281000168103 Celecoxib (Apo) 675281000168103 Celecoxib (Apo) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +19006011000036107 Prinivil 20 mg uncoated tablet, 30, blister pack 34379 12313011000036107 Prinivil 20 mg uncoated tablet, 30 5028011000036108 Prinivil 20 mg uncoated tablet 3191011000036109 Prinivil 3191011000036109 Prinivil 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +875521000168106 Bispro 7.5 mg film-coated tablet, 30, blister pack 130181 875511000168104 Bispro 7.5 mg film-coated tablet, 30 875451000168104 Bispro 7.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 874371000168100 bisoprolol fumarate 7.5 mg tablet, 30 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +1090671000168107 Dupixent 300 mg/2 mL injection solution, 2 mL syringe 282981 1090661000168101 Dupixent 300 mg/2 mL injection solution, 2 mL syringe 1090651000168103 Dupixent 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090531000168105 dupilumab 300 mg/2 mL injection, 2 mL syringe 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +60950011000036101 Claratyne 10 mg effervescent tablet, 5, tube 62135 56893011000036103 Claratyne 10 mg effervescent tablet, 5 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63636011000036101 loratadine 10 mg effervescent tablet, 5 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +928991000168103 Progout 300 mg tablet, 30, bottle 17708 928981000168101 Progout 300 mg tablet, 30 5087011000036100 Progout 300 mg tablet 4173011000036104 Progout 4173011000036104 Progout 928971000168104 allopurinol 300 mg tablet, 30 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +86000011000036108 Hedrin 4% lotion, 150 mL, bottle 155688 85689011000036108 Hedrin 4% lotion, 150 mL 85335011000036109 Hedrin 4% lotion 648271000168107 Hedrin 648271000168107 Hedrin 86433011000036102 dimeticone-100000 4% lotion, 150 mL 86222011000036105 dimeticone-100000 4% lotion 86195011000036106 dimeticone-100000 +140491000036103 Versatis 5% dermal patch, 5, sachet 175178 139051000036105 Versatis 5% dermal patch, 5 137591000036100 Versatis 5% dermal patch 137391000036106 Versatis 137391000036106 Versatis 139061000036108 lidocaine (lignocaine) 5% patch, 5 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +929151000168100 Somac 40 mg enteric tablet, 28, blister pack 69792 41851011000036101 Somac 40 mg enteric tablet, 28 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46657011000036100 pantoprazole 40 mg enteric tablet, 28 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +60633011000036106 Prefrin Liquifilm 0.12% eye drops solution, 15 mL, bottle 70111 56591011000036103 Prefrin Liquifilm 0.12% eye drops solution, 15 mL 53994011000036101 Prefrin Liquifilm 0.12% eye drops solution 55561000168100 Prefrin Liquifilm 55561000168100 Prefrin Liquifilm 63445011000036106 phenylephrine hydrochloride 0.12% eye drops, 15 mL 61970011000036106 phenylephrine hydrochloride 0.12% eye drops 37732011000036107 phenylephrine +60633011000036106 Prefrin Liquifilm 0.12% eye drops solution, 15 mL, bottle 23237 56591011000036103 Prefrin Liquifilm 0.12% eye drops solution, 15 mL 53994011000036101 Prefrin Liquifilm 0.12% eye drops solution 55561000168100 Prefrin Liquifilm 55561000168100 Prefrin Liquifilm 63445011000036106 phenylephrine hydrochloride 0.12% eye drops, 15 mL 61970011000036106 phenylephrine hydrochloride 0.12% eye drops 37732011000036107 phenylephrine +933239461000036105 Paclitaxel (Pfizer) 30 mg/5 mL concentrated injection, 5 mL vial 176332 933236761000036109 Paclitaxel (Pfizer) 30 mg/5 mL concentrated injection, 5 mL vial 933234681000036104 Paclitaxel (Pfizer) 30 mg/5 mL concentrated injection, 5 mL vial 933234201000036108 Paclitaxel (Pfizer) 933234201000036108 Paclitaxel (Pfizer) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +34743011000036107 Dicodin 60 mg modified release tablet, 56, bottle 47716 34327011000036104 Dicodin 60 mg modified release tablet, 56 34044011000036107 Dicodin 60 mg modified release tablet 33938011000036107 Dicodin 33938011000036107 Dicodin 35175011000036107 dihydrocodeine tartrate 60 mg modified release tablet, 56 34889011000036102 dihydrocodeine tartrate 60 mg modified release tablet 34841011000036108 dihydrocodeine +1078951000168101 Atomoxetine (GPPL) 10 mg hard capsule, 14, blister pack 234847 1078941000168103 Atomoxetine (GPPL) 10 mg hard capsule, 14 1078811000168108 Atomoxetine (GPPL) 10 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 829921000168103 atomoxetine 10 mg capsule, 14 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +13751000036106 Frusemide (PS) 20 mg uncoated tablet, 100, bottle 176037 8861000036108 Frusemide (PS) 20 mg uncoated tablet, 100 2091000036105 Frusemide (PS) 20 mg uncoated tablet 841000036100 Frusemide (PS) 841000036100 Frusemide (PS) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +146271000036100 Sevikar HCT 40/10/25 film-coated tablet, 10, blister pack 199000 144911000036105 Sevikar HCT 40/10/25 film-coated tablet, 10 143691000036109 Sevikar HCT 40/10/25 film-coated tablet 18531000168109 Sevikar HCT 40/10/25 18531000168109 Sevikar HCT 40/10/25 144921000036103 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 25 mg tablet, 10 143701000036109 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 25 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +802631000168108 Abilify ODT 10 mg orally disintegrating tablet, 84, blister pack 128893 802621000168105 Abilify ODT 10 mg orally disintegrating tablet, 84 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802611000168103 aripiprazole 10 mg orally disintegrating tablet, 84 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +845611000168104 Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device 153181 845601000168102 Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device 845581000168106 Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device 845551000168104 Simponi Smartject 845551000168104 Simponi Smartject 845591000168109 golimumab 50 mg/0.5 mL injection, 0.5 mL injection device 845571000168108 golimumab 50 mg/0.5 mL injection, injection device 84416011000036108 golimumab +1054461000168103 Jurnista 4 mg modified release tablet, 60, blister pack 155995 1054451000168100 Jurnista 4 mg modified release tablet, 60 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054441000168102 hydromorphone hydrochloride 4 mg modified release tablet, 60 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +44330011000036101 Desowen 0.05% lotion, 10 mL, bottle 67182 41797011000036104 Desowen 0.05% lotion, 10 mL 40205011000036108 Desowen 0.05% lotion 39556011000036104 Desowen 39556011000036104 Desowen 46603011000036101 desonide 0.05% lotion, 10 mL 45237011000036101 desonide 0.05% lotion 44914011000036107 desonide +59665011000036103 Ranoxyl Heartburn Relief 150 mg film-coated tablet, 14, strip pack 100404 55638011000036109 Ranoxyl Heartburn Relief 150 mg film-coated tablet, 14 53657011000036101 Ranoxyl Heartburn Relief 150 mg film-coated tablet 32121000168107 Ranoxyl Heartburn Relief 32121000168107 Ranoxyl Heartburn Relief 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +825131000168100 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 58534 825121000168103 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 825101000168107 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 8441000168103 Vaqta Paediatric and Adolescent 8441000168103 Vaqta Paediatric and Adolescent 825111000168105 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL vial 825091000168102 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, vial 824641000168102 hepatitis A vaccine +37648011000036103 GTN-POHL 50 mg/10 mL concentrated injection, 5 x 10 mL ampoules 27805 36914011000036102 GTN-POHL 50 mg/10 mL concentrated injection, 5 x 10 mL ampoules 36245011000036106 GTN-POHL 50 mg/10 mL concentrated injection, 10 mL ampoule 35866011000036103 GTN-POHL 35866011000036103 GTN-POHL 38799011000036102 glyceryl trinitrate 50 mg/10 mL injection, 5 x 10 mL ampoules 38010011000036107 glyceryl trinitrate 50 mg/10 mL injection, ampoule 21388011000036102 glyceryl trinitrate +1015451000168105 Aripiprazole (Medis) 5 mg uncoated tablet, 30, blister pack 217219 1015441000168108 Aripiprazole (Medis) 5 mg uncoated tablet, 30 1015291000168104 Aripiprazole (Medis) 5 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +37357011000036106 Norflex 100 mg uncoated tablet, 100, jar 10573 36631011000036105 Norflex 100 mg uncoated tablet, 100 36073011000036104 Norflex 100 mg uncoated tablet 35941011000036107 Norflex 35941011000036107 Norflex 38551011000036106 orphenadrine citrate 100 mg tablet, 100 37831011000036104 orphenadrine citrate 100 mg tablet 37811011000036108 orphenadrine +20223011000036102 Oxynorm 5 mg hard capsule, 20, blister pack 74145 13439011000036103 Oxynorm 5 mg hard capsule, 20 6721011000036100 Oxynorm 5 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +931377011000036106 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 200 mL, bottle 10908 930552011000036103 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 200 mL 929926011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid 929899011000036104 Eucalyptus Oil (Bosisto's) 929899011000036104 Eucalyptus Oil (Bosisto's) 927354011000036102 eucalyptus oil 1 mL/mL liquid, 200 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +946331000168100 Frusemide (Winthrop) 40 mg tablet, 60, bottle 144478 946321000168103 Frusemide (Winthrop) 40 mg tablet, 60 946271000168105 Frusemide (Winthrop) 40 mg tablet 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 928691000168106 furosemide (frusemide) 40 mg tablet, 60 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +819671000168101 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 100, blister pack 184820 819661000168107 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 100 819611000168109 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 806601000168102 perindopril arginine 2.5 mg tablet, 100 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +69079011000036100 Canesten Clotrimazole Anti-Fungal 1% cream, 20 g, tube 145387 66880011000036106 Canesten Clotrimazole Anti-Fungal 1% cream, 20 g 65515011000036101 Canesten Clotrimazole Anti-Fungal 1% cream 25741000168109 Canesten Clotrimazole Anti-Fungal 25741000168109 Canesten Clotrimazole Anti-Fungal 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +13511000036104 Quetiapine (Pfizer) 100 mg film-coated tablet, 90, blister pack 172838 8641000036108 Quetiapine (Pfizer) 100 mg film-coated tablet, 90 1251000036104 Quetiapine (Pfizer) 100 mg film-coated tablet 721000036100 Quetiapine (Pfizer) 721000036100 Quetiapine (Pfizer) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +20890011000036108 Ranoxyl 300 mg film-coated tablet, 30, bottle 93164 14052011000036103 Ranoxyl 300 mg film-coated tablet, 30 7330011000036107 Ranoxyl 300 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +60796011000036100 Tinea Cream (Scholl) 2% cream, 30 g, tube 55568 56752011000036100 Tinea Cream (Scholl) 2% cream, 30 g 54067011000036104 Tinea Cream (Scholl) 2% cream 53315011000036107 Tinea Cream (Scholl) 53315011000036107 Tinea Cream (Scholl) 63553011000036100 miconazole 2% cream, 30 g 62015011000036101 miconazole 2% cream 21454011000036108 miconazole +61173011000036101 Day plus Night Cold and Flu Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24, blister pack 74820 57116011000036104 Day plus Night Cold and Flu Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24 54203011000036102 Day plus Night Cold and Flu Relief (Night) (Soul Pattinson) uncoated tablet 53341000168108 Day plus Night Cold and Flu Relief (Soul Pattinson) 53571000168107 Day plus Night Cold and Flu Relief (Night) (Soul Pattinson) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +61173011000036101 Day plus Night Cold and Flu Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24, blister pack 74820 57116011000036104 Day plus Night Cold and Flu Relief (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24 54202011000036109 Day plus Night Cold and Flu Relief (Day) (Soul Pattinson) uncoated tablet 53341000168108 Day plus Night Cold and Flu Relief (Soul Pattinson) 53451000168104 Day plus Night Cold and Flu Relief (Day) (Soul Pattinson) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +38091000036104 Escitalopram (Generic Health) 5 mg film-coated tablet, 250, bottle 165831 34421000036102 Escitalopram (Generic Health) 5 mg film-coated tablet, 250 32791000036103 Escitalopram (Generic Health) 5 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +759211000168104 Levonorgestrel-1 (GH) 1.5 mg uncoated tablet, 1, blister pack 217542 759201000168102 Levonorgestrel-1 (GH) 1.5 mg uncoated tablet, 1 759191000168100 Levonorgestrel-1 (GH) 1.5 mg uncoated tablet 759181000168103 Levonorgestrel-1 (GH) 759181000168103 Levonorgestrel-1 (GH) 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +733271000168109 Arginaid Orange powder for oral liquid, 14 x 9.2 g sachets 733261000168103 Arginaid Orange powder for oral liquid, 14 x 9.2 g sachets 733251000168100 Arginaid Orange powder for oral liquid, 9.2 g sachet 733171000168103 Arginaid 733171000168103 Arginaid 733221000168108 protein formula with arginine, vitamin C and E powder for oral liquid, 14 x 9.2 g sachets 733201000168104 protein formula with arginine, vitamin C and E powder for oral liquid, 9.2 g sachet 733191000168102 protein formula with arginine, vitamin C and E +50643011000036106 Lamotrigine (GA) 200 mg tablet, 56, blister pack 143585 49669011000036105 Lamotrigine (GA) 200 mg tablet, 56 48810011000036105 Lamotrigine (GA) 200 mg tablet 48414011000036105 Lamotrigine (GA) 48414011000036105 Lamotrigine (GA) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +672731000168102 Fycompa 2 mg film-coated tablet, 7, blister pack 207690 672711000168107 Fycompa 2 mg film-coated tablet, 7 672671000168108 Fycompa 2 mg film-coated tablet 672551000168100 Fycompa 672551000168100 Fycompa 672691000168109 perampanel 2 mg tablet, 7 672651000168104 perampanel 2 mg tablet 672561000168103 perampanel +44262011000036103 Serc 16 mg uncoated tablet, 100, blister pack 61687 41733011000036101 Serc 16 mg uncoated tablet, 100 40172011000036105 Serc 16 mg uncoated tablet 39692011000036103 Serc 39692011000036103 Serc 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +69088011000036103 Gemcitabine (Ebewe) 1 g/100 mL concentrated injection, 100 mL vial 146761 66889011000036100 Gemcitabine (Ebewe) 1 g/100 mL concentrated injection, 100 mL vial 65420011000036108 Gemcitabine (Ebewe) 1 g/100 mL concentrated injection, 100 mL vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 71489011000036109 gemcitabine 1 g/100 mL injection, 100 mL vial 70032011000036109 gemcitabine 1 g/100 mL injection, vial 21644011000036108 gemcitabine +33552011000036101 Quinapril (DP) 5 mg film-coated tablet, 30, blister pack 133233 33290011000036102 Quinapril (DP) 5 mg film-coated tablet, 30 33052011000036103 Quinapril (DP) 5 mg film-coated tablet 32962011000036106 Quinapril (DP) 32962011000036106 Quinapril (DP) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +664071000168104 Midazolam (Act) 5 mg/mL injection solution, 10 x 1 mL ampoules 207224 664061000168105 Midazolam (Act) 5 mg/mL injection solution, 10 x 1 mL ampoules 664001000168109 Midazolam (Act) 5 mg/mL injection solution, ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +21191011000036100 Acihexal 800 mg uncoated tablet, 35, blister pack 99421 14329011000036108 Acihexal 800 mg uncoated tablet, 35 7613011000036104 Acihexal 800 mg uncoated tablet 3239011000036103 Acihexal 3239011000036103 Acihexal 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +789381000168108 Abisart 300 mg film-coated tablet, 90, bottle 214582 789371000168105 Abisart 300 mg film-coated tablet, 90 98731000036108 Abisart 300 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 789361000168104 irbesartan 300 mg tablet, 90 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +813871000168104 Adenoview 90 mg/30 mL injection solution, 6 x 30 mL vials 152012 813861000168105 Adenoview 90 mg/30 mL injection solution, 6 x 30 mL vials 813841000168106 Adenoview 90 mg/30 mL injection solution, 30 mL vial 813771000168107 Adenoview 813771000168107 Adenoview 813851000168108 adenosine 90 mg/30 mL injection, 6 x 30 mL vials 813831000168102 adenosine 90 mg/30 mL injection, vial 44942011000036105 adenosine +61156011000036105 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 50 mL, bottle 74523 57099011000036100 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 50 mL 54196011000036108 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 63817011000036100 paracetamol 120 mg/5 mL oral liquid, 50 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +933229671000036102 Morphine Sulfate MR (Apotex) 30 mg modified release tablet, 28, blister pack 132254 933223581000036104 Morphine Sulfate MR (Apotex) 30 mg modified release tablet, 28 933219671000036109 Morphine Sulfate MR (Apotex) 30 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 929756011000036100 morphine sulfate pentahydrate 30 mg modified release tablet, 28 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +767751000168107 Nucala 100 mg powder for injection, 1 vial 232028 767741000168105 Nucala 100 mg powder for injection, 1 vial 767721000168104 Nucala 100 mg powder for injection, 100 mg vial 767581000168106 Nucala 767581000168106 Nucala 767731000168101 mepolizumab 100 mg injection, 1 vial 767711000168106 mepolizumab 100 mg injection, vial 767701000168108 mepolizumab +81083011000036103 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet, 24, blister pack 158210 80591011000036106 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet, 24 80204011000036100 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet 80141011000036109 Ibuprofen plus Codeine (Chemists' Own) 80141011000036109 Ibuprofen plus Codeine (Chemists' Own) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +61326011000036102 Paracetamol (Herron) 500 mg uncoated tablet, 1200, blister pack 80924 57347011000036103 Paracetamol (Herron) 500 mg uncoated tablet, 1200 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63847011000036106 paracetamol 500 mg tablet, 1200 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +859951000168105 Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30, bottle 153234 859941000168108 Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30 859921000168102 Calcia-1000 2.5 g (calcium 1 g) chewable tablet 34951000168106 Calcia-1000 34951000168106 Calcia-1000 859931000168104 calcium carbonate 2.5 g (calcium 1 g) chewable tablet, 30 859911000168109 calcium carbonate 2.5 g (calcium 1 g) chewable tablet 745551000168101 calcium +60676011000036102 Rapideine uncoated tablet, 48, blister pack 42397 56634011000036104 Rapideine uncoated tablet, 48 54016011000036103 Rapideine uncoated tablet 53593011000036105 Rapideine 53593011000036105 Rapideine 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +12371000036106 Olanzapine (RBX) 2.5 mg uncoated tablet, 28, blister pack 157856 6741000036103 Olanzapine (RBX) 2.5 mg uncoated tablet, 28 2281000036100 Olanzapine (RBX) 2.5 mg uncoated tablet 1591000168103 Olanzapine (RBX) 1591000168103 Olanzapine (RBX) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +18698011000036104 Nupentin 300 mg hard capsule, 100, blister pack 101696 11228011000036102 Nupentin 300 mg hard capsule, 100 4944011000036100 Nupentin 300 mg hard capsule 1181000168106 Nupentin 1181000168106 Nupentin 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +939181000168109 Ondansetron (Sandoz) 8 mg film-coated tablet, 10, blister pack 132574 939171000168106 Ondansetron (Sandoz) 8 mg film-coated tablet, 10 939141000168104 Ondansetron (Sandoz) 8 mg film-coated tablet 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +655411000168107 Ondansetron (AN) 8 mg film-coated tablet, 10, blister pack 173187 655401000168109 Ondansetron (AN) 8 mg film-coated tablet, 10 655371000168106 Ondansetron (AN) 8 mg film-coated tablet 655311000168103 Ondansetron (AN) 655311000168103 Ondansetron (AN) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +1088981000168102 Ibupane film-coated tablet, 20, blister pack 267396 1088971000168100 Ibupane film-coated tablet, 20 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813201000168105 paracetamol 500 mg + ibuprofen 200 mg tablet, 20 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +61703011000036102 Codral Chesty Cough oral liquid solution, 100 mL, bottle 99964 57624011000036100 Codral Chesty Cough oral liquid solution, 100 mL 54370011000036108 Codral Chesty Cough oral liquid solution, 5 mL 20161000168100 Codral Chesty Cough 20161000168100 Codral Chesty Cough 63966011000036107 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +819651000168105 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 30, blister pack 184820 819641000168108 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 30 819611000168109 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +19212011000036101 Modecate 50 mg/2 mL injection solution, 5 x 2 mL ampoules 47024 12502011000036101 Modecate 50 mg/2 mL injection solution, 5 x 2 mL ampoules 5563011000036108 Modecate 50 mg/2 mL injection solution, 2 mL ampoule 4410011000036103 Modecate 4410011000036103 Modecate 27158011000036103 fluphenazine decanoate 50 mg/2 mL injection, 5 x 2 mL ampoules 22520011000036108 fluphenazine decanoate 50 mg/2 mL injection, ampoule 21519011000036106 fluphenazine decanoate +43705011000036102 Quinapril (Sandoz) 5 mg film-coated tablet, 30, blister pack 117218 41191011000036103 Quinapril (Sandoz) 5 mg film-coated tablet, 30 39851011000036105 Quinapril (Sandoz) 5 mg film-coated tablet 35972011000036102 Quinapril (Sandoz) 35972011000036102 Quinapril (Sandoz) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +19468011000036103 Famvir 125 mg film-coated tablet, 40, blister pack 54668 12745011000036103 Famvir 125 mg film-coated tablet, 40 6039011000036101 Famvir 125 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +44432011000036108 Gonal-F (5 x 37.5 units (2.73 microgram) ampoules, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 71933 41888011000036102 Gonal-F (5 x 37.5 units (2.73 microgram) ampoules, 5 x 1 mL inert diluent ampoules), 1 pack 634161000168100 Gonal-F (inert substance) diluent, 1 mL ampoule 1371000168105 Gonal-F 1371000168105 Gonal-F 46691011000036104 follitropin alfa 37.5 units (2.73 microgram) injection [5 x 37.5 units ampoules] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +44432011000036108 Gonal-F (5 x 37.5 units (2.73 microgram) ampoules, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 71933 41888011000036102 Gonal-F (5 x 37.5 units (2.73 microgram) ampoules, 5 x 1 mL inert diluent ampoules), 1 pack 40242011000036109 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units ampoule 1371000168105 Gonal-F 1371000168105 Gonal-F 46691011000036104 follitropin alfa 37.5 units (2.73 microgram) injection [5 x 37.5 units ampoules] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 45267011000036109 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units ampoule 21352011000036107 follitropin alfa +704401000168108 Alendronate Plus D3 70 mg/140 microgram (Chemmart) tablet, 4, blister pack 220377 704391000168106 Alendronate Plus D3 70 mg/140 microgram (Chemmart) tablet, 4 704381000168108 Alendronate Plus D3 70 mg/140 microgram (Chemmart) tablet 704371000168105 Alendronate Plus D3 70 mg/140 microgram (Chemmart) 704371000168105 Alendronate Plus D3 70 mg/140 microgram (Chemmart) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +1044271000168108 Ziprox 20 mg hard capsule, 60, blister pack 201081 1044261000168102 Ziprox 20 mg hard capsule, 60 1044251000168104 Ziprox 20 mg hard capsule 1044151000168106 Ziprox 1044151000168106 Ziprox 27569011000036108 ziprasidone 20 mg capsule, 60 22908011000036106 ziprasidone 20 mg capsule 21267011000036107 ziprasidone +37356011000036108 Hydrozole cream, 50 g, tube 10319 36622011000036102 Hydrozole cream, 50 g 36024011000036101 Hydrozole cream 23501000168103 Hydrozole 23501000168103 Hydrozole 38542011000036102 hydrocortisone 1% + clotrimazole 1% cream, 50 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +1075981000168101 Aripiprazole (Auro) 5 mg uncoated tablet, 30, bottle 198182 1075901000168109 Aripiprazole (Auro) 5 mg uncoated tablet, 30 1075851000168100 Aripiprazole (Auro) 5 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +933229711000036101 Morphine Sulfate MR (Apotex) 30 mg modified release tablet, 60, blister pack 132254 933223591000036102 Morphine Sulfate MR (Apotex) 30 mg modified release tablet, 60 933219671000036109 Morphine Sulfate MR (Apotex) 30 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 35166011000036105 morphine sulfate pentahydrate 30 mg modified release tablet, 60 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +170841000036107 Tobi Podhaler 28 mg powder for inhalation, 224 capsules, blister pack 182302 169951000036102 Tobi Podhaler 28 mg powder for inhalation, 224 capsules 169151000036100 Tobi Podhaler 28 mg powder for inhalation, 1 capsule 57641000168105 Tobi Podhaler 57641000168105 Tobi Podhaler 169961000036104 tobramycin 28 mg powder for inhalation, 224 capsules 169161000036102 tobramycin 28 mg powder for inhalation, 1 capsule 21646011000036100 tobramycin +1002521000168105 Amlodipine/Atorvastatin 10/10 (Apotex) film-coated tablet, 30, blister pack 214402 1002511000168103 Amlodipine/Atorvastatin 10/10 (Apotex) film-coated tablet, 30 1002501000168101 Amlodipine/Atorvastatin 10/10 (Apotex) film-coated tablet 1002451000168103 Amlodipine/Atorvastatin 10/10 (Apotex) 1002451000168103 Amlodipine/Atorvastatin 10/10 (Apotex) 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +957911000168109 Danzetron 8 mg film-coated tablet, 4, blister pack 107051 957901000168106 Danzetron 8 mg film-coated tablet, 4 957891000168107 Danzetron 8 mg film-coated tablet 957881000168109 Danzetron 957881000168109 Danzetron 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +12551000036108 Letrozole (Chemmart) 2.5 mg film-coated tablet, 30, blister pack 163828 7431000036101 Letrozole (Chemmart) 2.5 mg film-coated tablet, 30 3381000036102 Letrozole (Chemmart) 2.5 mg film-coated tablet 401000036100 Letrozole (Chemmart) 401000036100 Letrozole (Chemmart) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +939021000168109 Ondansetron (Sandoz) 8 mg/4 mL injection solution, 4 mL ampoule 132576 939011000168102 Ondansetron (Sandoz) 8 mg/4 mL injection solution, 4 mL ampoule 939001000168100 Ondansetron (Sandoz) 8 mg/4 mL injection solution, 4 mL ampoule 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +20000011000036107 Kapanol 10 mg modified release capsule, 20, blister pack 68439 13237011000036109 Kapanol 10 mg modified release capsule, 20 6519011000036105 Kapanol 10 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 27639011000036106 morphine sulfate pentahydrate 10 mg modified release capsule, 20 22976011000036101 morphine sulfate pentahydrate 10 mg modified release capsule 21252011000036100 morphine +55401000036109 Rebetol 200 mg hard capsule, 168, blister pack 155098 51891000036100 Rebetol 200 mg hard capsule, 168 7298011000036106 Rebetol 200 mg hard capsule 3301011000036102 Rebetol 3301011000036102 Rebetol 51911000036102 ribavirin 200 mg capsule, 168 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +933117011000036103 Lamictal 200 mg tablet, 60, bottle 59995 932917011000036108 Lamictal 200 mg tablet, 60 932765011000036105 Lamictal 200 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46991011000036103 lamotrigine 200 mg tablet, 60 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +17911000036102 Anastrozole (Synthon) 1 mg film-coated tablet, 30, blister pack 155176 16581000036102 Anastrozole (Synthon) 1 mg film-coated tablet, 30 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +875841000168103 Bispro 3.75 mg film-coated tablet, 28, blister pack 130179 875831000168107 Bispro 3.75 mg film-coated tablet, 28 875761000168108 Bispro 3.75 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 874831000168106 bisoprolol fumarate 3.75 mg tablet, 28 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +34821011000036105 Methylphenidate (Terry White Chemists) 10 mg tablet, 100, blister pack 82992 34396011000036109 Methylphenidate (Terry White Chemists) 10 mg tablet, 100 34071011000036105 Methylphenidate (Terry White Chemists) 10 mg tablet 33937011000036106 Methylphenidate (Terry White Chemists) 33937011000036106 Methylphenidate (Terry White Chemists) 27703011000036105 methylphenidate hydrochloride 10 mg tablet, 100 23038011000036102 methylphenidate hydrochloride 10 mg tablet 21277011000036101 methylphenidate +750531000168100 Antenex 5 mg uncoated tablet, 90, blister pack 17605 750521000168103 Antenex 5 mg uncoated tablet, 90 32248011000036104 Antenex 5 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 750511000168105 diazepam 5 mg tablet, 90 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +19785011000036103 Crixivan 400 mg hard capsule, 180, bottle 62902 13043011000036109 Crixivan 400 mg hard capsule, 180 6329011000036102 Crixivan 400 mg hard capsule 3537011000036103 Crixivan 3537011000036103 Crixivan 27513011000036106 indinavir 400 mg capsule, 180 22855011000036102 indinavir 400 mg capsule 21424011000036107 indinavir +44733011000036105 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 96129 42178011000036102 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46939011000036107 testosterone 1% (25 mg/2.5 g) gel, 2.5 g sachet 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +69500011000036103 Phisohex Face Wash 1% lotion, 185 mL, bottle 51227 67300011000036106 Phisohex Face Wash 1% lotion, 185 mL 65597011000036105 Phisohex Face Wash 1% lotion 47901000168102 Phisohex Face Wash 47901000168102 Phisohex Face Wash 71846011000036104 triclosan 1% lotion, 185 mL 70211011000036100 triclosan 1% lotion 69817011000036103 triclosan +38001000036107 Escitalopram (LAPL) 5 mg film-coated tablet, 250, bottle 165827 34341000036103 Escitalopram (LAPL) 5 mg film-coated tablet, 250 33021000036106 Escitalopram (LAPL) 5 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +1024131000168103 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 32, blister pack 227167 1024121000168101 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 32 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023781000168103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 32 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +18277011000036106 Mirtazapine (Sandoz) 30 mg film-coated tablet, 30, blister pack 117156 11561011000036107 Mirtazapine (Sandoz) 30 mg film-coated tablet, 30 5576011000036107 Mirtazapine (Sandoz) 30 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +933229511000036109 Atropine Sulfate (Pfizer (Perth)) 1.2 mg/mL injection solution, 50 x 1 mL ampoules 11303 933223351000036104 Atropine Sulfate (Pfizer (Perth)) 1.2 mg/mL injection solution, 50 x 1 mL ampoules 933219571000036108 Atropine Sulfate (Pfizer (Perth)) 1.2 mg/mL injection solution, ampoule 81982011000036103 Atropine Sulfate (Pfizer (Perth)) 81982011000036103 Atropine Sulfate (Pfizer (Perth)) 933223361000036101 atropine sulfate monohydrate 1.2 mg/mL injection, 50 x 1 mL ampoules 933219521000036109 atropine sulfate monohydrate 1.2 mg/mL injection, ampoule 933232141000036108 atropine sulfate monohydrate +927690011000036105 Docetaxel (Ebewe) 20 mg/2 mL concentrated injection, 2 mL vial 153372 927626011000036101 Docetaxel (Ebewe) 20 mg/2 mL concentrated injection, 2 mL vial 927582011000036102 Docetaxel (Ebewe) 20 mg/2 mL concentrated injection, 2 mL vial 927572011000036106 Docetaxel (Ebewe) 927572011000036106 Docetaxel (Ebewe) 927738011000036107 docetaxel 20 mg/2 mL injection, 2 mL vial 927716011000036102 docetaxel 20 mg/2 mL injection, vial 21721011000036101 docetaxel +43765011000036101 Stildem 10 mg film-coated tablet, 7, blister pack 120379 41224011000036106 Stildem 10 mg film-coated tablet, 7 39843011000036108 Stildem 10 mg film-coated tablet 39634011000036101 Stildem 39634011000036101 Stildem 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +17910011000036105 Diazepam (DBL) 10 mg/2 mL injection solution, 5 x 2 mL ampoules 115049 11482011000036107 Diazepam (DBL) 10 mg/2 mL injection solution, 5 x 2 mL ampoules 4992011000036103 Diazepam (DBL) 10 mg/2 mL injection solution, 2 mL ampoule 3252011000036109 Diazepam (DBL) 3252011000036109 Diazepam (DBL) 26666011000036108 diazepam 10 mg/2 mL injection, 5 x 2 mL ampoules 22065011000036107 diazepam 10 mg/2 mL injection, ampoule 21688011000036107 diazepam +179621000036105 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 47377 115221000036102 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115241000036105 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +179621000036105 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 217121 115221000036102 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115241000036105 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +179621000036105 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 47377 115221000036102 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115241000036105 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +179621000036105 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 217121 115221000036102 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 115241000036105 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +806721000168104 Perindopril Arginine (Chemmart) 5 mg film-coated tablet, 10, blister pack 184810 806711000168106 Perindopril Arginine (Chemmart) 5 mg film-coated tablet, 10 806701000168108 Perindopril Arginine (Chemmart) 5 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 727301000168100 perindopril arginine 5 mg tablet, 10 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +20736011000036104 Paroxetine (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 83106 13905011000036109 Paroxetine (Terry White Chemists) 20 mg film-coated tablet, 30 7191011000036100 Paroxetine (Terry White Chemists) 20 mg film-coated tablet 4342011000036102 Paroxetine (Terry White Chemists) 4342011000036102 Paroxetine (Terry White Chemists) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1097521000168106 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 1 L, pump pack 281339 1097511000168104 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 1 L 1093961000168103 Antimicrobial Hand Sanitiser (Elyptol) 70% gel 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 925446011000036102 ethanol 70% gel, 1 L 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +116231000036109 Kiovig 10% 20 g/200 mL injection solution, 200 mL vial 131973 114501000036109 Kiovig 10% 20 g/200 mL injection solution, 200 mL vial 113461000036106 Kiovig 10% 20 g/200 mL injection solution, 200 mL vial 17421000168108 Kiovig 10% 17421000168108 Kiovig 10% 108931000036104 normal immunoglobulin 20 g/200 mL injection, 200 mL vial 107191000036104 normal immunoglobulin 20 g/200 mL injection, vial 74965011000036103 normal immunoglobulin +776331000168105 Diar-Relief 2 mg uncoated tablet, 10, blister pack 98134 776321000168107 Diar-Relief 2 mg uncoated tablet, 10 776311000168100 Diar-Relief 2 mg uncoated tablet 776301000168103 Diar-Relief 776301000168103 Diar-Relief 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +17806011000036103 Akineton 2 mg uncoated tablet, 100, blister pack 12792 11852011000036105 Akineton 2 mg uncoated tablet, 100 5912011000036106 Akineton 2 mg uncoated tablet 4343011000036109 Akineton 4343011000036109 Akineton 26793011000036107 biperiden hydrochloride 2 mg tablet, 100 22179011000036107 biperiden hydrochloride 2 mg tablet 21805011000036106 biperiden +50670011000036104 Paroxetine (Generic Health) 20 mg film-coated tablet, 10, blister pack 153324 49694011000036106 Paroxetine (Generic Health) 20 mg film-coated tablet, 10 48828011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet 48331011000036109 Paroxetine (Generic Health) 48331011000036109 Paroxetine (Generic Health) 51561011000036102 paroxetine 20 mg tablet, 10 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +931619011000036101 Pravista 40 mg film-coated tablet, 90, bottle 163562 930780011000036105 Pravista 40 mg film-coated tablet, 90 930042011000036102 Pravista 40 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932408011000036109 pravastatin sodium 40 mg tablet, 90 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +1024221000168105 Betadine Sore Throat Lozenges Orange lozenge, 2, blister pack 227169 1024211000168103 Betadine Sore Throat Lozenges Orange lozenge, 2 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71521011000036105 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +37647011000036104 Intal Nebuliser Solution 20 mg/2 mL inhalation solution, 60 x 2 mL ampoules 27755 36913011000036104 Intal Nebuliser Solution 20 mg/2 mL inhalation solution, 60 x 2 mL ampoules 36244011000036107 Intal Nebuliser Solution 20 mg/2 mL inhalation solution, 2 mL ampoule 44351000168106 Intal Nebuliser Solution 44351000168106 Intal Nebuliser Solution 38798011000036105 sodium cromoglycate 20 mg/2 mL inhalation solution, 60 x 2 mL ampoules 38009011000036103 sodium cromoglycate 20 mg/2 mL inhalation solution, ampoule 21253011000036107 cromoglycate +30831000036107 Kerron 250 mg film-coated tablet, 60, bottle 182816 29211000036106 Kerron 250 mg film-coated tablet, 60 26551000036102 Kerron 250 mg film-coated tablet 29611000168101 Kerron 29611000168101 Kerron 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +668481000168101 Advate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack 100385 668471000168104 Advate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack 929936011000036107 Advate (octocog alfa 500 units) powder for injection, 500 units vial 65054011000036106 Advate 65054011000036106 Advate 668461000168105 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 931815011000036108 octocog alfa 500 units injection, vial 69843011000036100 octocog alfa +668481000168101 Advate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack 100385 668471000168104 Advate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack 668391000168107 Advate (inert substance) diluent, 2 mL vial 65054011000036106 Advate 65054011000036106 Advate 668461000168105 octocog alfa 500 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +34717011000036109 Methadone Hydrochloride Syrup (Orion) 2 mg/mL oral liquid solution, 20 mL, bottle 21170 34301011000036102 Methadone Hydrochloride Syrup (Orion) 2 mg/mL oral liquid solution, 20 mL 34024011000036109 Methadone Hydrochloride Syrup (Orion) 2 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35150011000036100 methadone hydrochloride 2 mg/mL oral liquid, 20 mL 34872011000036103 methadone hydrochloride 2 mg/mL oral liquid 21357011000036109 methadone +750391000168109 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years oral liquid solution, 100 mL, bottle 175112 750381000168106 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years oral liquid solution, 100 mL 750361000168102 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years oral liquid solution, 5 mL 750311000168100 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years 750311000168100 Penta-vite Multivitamins with Iron for Kids 1 to 12 Years 750371000168108 thiamine hydrochloride 2.5 mg/5 mL + riboflavin sodium phosphate 2.5 mg (riboflavin 1.8 mg)/5 mL + nicotinamide 15 mg/5 mL + pyridoxine hydrochloride 750 microgram/5 mL + ascorbic acid 60 mg/5 mL + colecalciferol 5 microgram (200 units)/5 mL + ferric chloride hexahydrate 17.4 mg (iron 3.6 mg)/5 mL oral liquid, 100 mL 750351000168104 thiamine hydrochloride 2.5 mg/5 mL + riboflavin sodium phosphate 2.5 mg (riboflavin 1.8 mg)/5 mL + nicotinamide 15 mg/5 mL + pyridoxine hydrochloride 750 microgram/5 mL + ascorbic acid 60 mg/5 mL + colecalciferol 5 microgram (200 units)/5 mL + ferric chloride hexahydrate 17.4 mg (iron 3.6 mg)/5 mL oral liquid 750341000168101 thiamine + riboflavin + nicotinamide + pyridoxine + ascorbic acid + colecalciferol + iron +116211000036100 Kiovig 10% 5 g/50 mL injection solution, 50 mL vial 131968 114481000036104 Kiovig 10% 5 g/50 mL injection solution, 50 mL vial 112911000036108 Kiovig 10% 5 g/50 mL injection solution, 50 mL vial 17421000168108 Kiovig 10% 17421000168108 Kiovig 10% 108891000036105 normal immunoglobulin 5 g/50 mL injection, 50 mL vial 107151000036108 normal immunoglobulin 5 g/50 mL injection, vial 74965011000036103 normal immunoglobulin +1084731000168107 Disodium Edetate with Ethanol (Biological Therapies) 3 g powder for injection, 1 vial 22278 1084721000168109 Disodium Edetate with Ethanol (Biological Therapies) 3 g powder for injection, 1 vial 1084711000168102 Disodium Edetate with Ethanol (Biological Therapies) 3 g powder for injection, vial 1084701000168100 Disodium Edetate with Ethanol (Biological Therapies) 1084701000168100 Disodium Edetate with Ethanol (Biological Therapies) 1084641000168108 edetate disodium 3 g injection, 1 vial 1084621000168102 edetate disodium 3 g injection, vial 85074011000036106 edetic acid +50309011000036106 Phlexy-10 bar, 20 x 42 g, sachet 49477011000036107 Phlexy-10 bar, 20 x 42 g 301131000168108 Phlexy-10 bar, 42 g 48301011000036102 Phlexy-10 48301011000036102 Phlexy-10 51435011000036100 amino acid formula without phenylalanine bar, 20 x 42 g 300961000168108 amino acid formula without phenylalanine bar, 42 g 50722011000036107 amino acid formula without phenylalanine +12471000036104 Quetiapine (Sandoz) 25 mg film-coated tablet, 60, bottle 158111 6801000036108 Quetiapine (Sandoz) 25 mg film-coated tablet, 60 2911000036101 Quetiapine (Sandoz) 25 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +43901011000036109 Ramipril (DP) 1.25 mg hard capsule, 30, blister pack 134788 41393011000036109 Ramipril (DP) 1.25 mg hard capsule, 30 39856011000036100 Ramipril (DP) 1.25 mg hard capsule 39698011000036100 Ramipril (DP) 39698011000036100 Ramipril (DP) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +704481000168100 Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 148035 704471000168103 Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 704451000168107 Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 78596011000036102 Paclitaxel (Actavis) 78596011000036102 Paclitaxel (Actavis) 704461000168109 paclitaxel 100 mg/16.67 mL injection, 16.67 mL vial 704441000168105 paclitaxel 100 mg/16.67 mL injection, vial 21604011000036104 paclitaxel +681431000168105 Esomeprazole (Actavis) 40 mg enteric tablet, 7, blister pack 210844 681421000168107 Esomeprazole (Actavis) 40 mg enteric tablet, 7 681401000168103 Esomeprazole (Actavis) 40 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +960881000168101 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet, 10, blister pack 255078 960871000168104 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet, 10 960801000168109 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet 960771000168107 Amoxicillin Clavulanic Acid 500/125 (Mylan) 960771000168107 Amoxicillin Clavulanic Acid 500/125 (Mylan) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +19229011000036101 Adriamycin 20 mg/10 mL injection solution, 10 mL vial 47344 12519011000036108 Adriamycin 20 mg/10 mL injection solution, 10 mL vial 6005011000036109 Adriamycin 20 mg/10 mL injection solution, 10 mL vial 3524011000036107 Adriamycin 3524011000036107 Adriamycin 27168011000036109 doxorubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22530011000036106 doxorubicin hydrochloride 20 mg/10 mL injection, vial 21638011000036100 doxorubicin +772001000168101 Clinoleic 20% injection emulsion, 10 x 500 mL bags 97537 771991000168103 Clinoleic 20% injection emulsion, 10 x 500 mL bags 771811000168101 Clinoleic 20% injection emulsion, 500 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 771981000168101 olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 10 x 500 mL bags 771801000168104 olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, bag 926971011000036108 olive oil + soya oil +1021391000168100 Voriconazole (Apo) 50 mg film-coated tablet, 30, blister pack 238281 1021381000168103 Voriconazole (Apo) 50 mg film-coated tablet, 30 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46817011000036103 voriconazole 50 mg tablet, 30 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +933229551000036108 TYR Anamix Infant powder for oral liquid, 400 g, can 933223151000036101 TYR Anamix Infant powder for oral liquid, 400 g 933219501000036104 TYR Anamix Infant powder for oral liquid 54941000168105 TYR Anamix Infant 54941000168105 TYR Anamix Infant 51253011000036101 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 400 g 50801011000036109 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +871591000168105 Gastrolyte Citrus effervescent tablet, 20, tube 40631 871571000168109 Gastrolyte Citrus effervescent tablet, 20 871551000168100 Gastrolyte Citrus effervescent tablet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +21027011000036106 Emtriva 200 mg hard capsule, 30, bottle 96426 14173011000036103 Emtriva 200 mg hard capsule, 30 7453011000036106 Emtriva 200 mg hard capsule 4191011000036107 Emtriva 4191011000036107 Emtriva 28189011000036106 emtricitabine 200 mg capsule, 30 23500011000036109 emtricitabine 200 mg capsule 21873011000036104 emtricitabine +55361000036104 Mydol uncoated tablet, 20, blister pack 147714 51171000036106 Mydol uncoated tablet, 20 48951000036106 Mydol uncoated tablet 48521000036109 Mydol 48521000036109 Mydol 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60735011000036103 Panadol Allergy Sinus film-coated tablet, 4, blister pack 49564 56693011000036108 Panadol Allergy Sinus film-coated tablet, 4 54036011000036109 Panadol Allergy Sinus film-coated tablet 29451000168102 Panadol Allergy Sinus 29451000168102 Panadol Allergy Sinus 63512011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 4 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +721561000168104 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12, strip pack 49816 721551000168101 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12 721541000168103 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet 30461000168105 Panadol Children's 7+ Years 30461000168105 Panadol Children's 7+ Years 71822011000036100 paracetamol 250 mg soluble tablet, 12 70204011000036104 paracetamol 250 mg soluble tablet 21433011000036107 paracetamol +858581000168104 Amiodarone (Winthrop) 200 mg uncoated tablet, 30, blister pack 125875 858571000168102 Amiodarone (Winthrop) 200 mg uncoated tablet, 30 858561000168108 Amiodarone (Winthrop) 200 mg uncoated tablet 858551000168106 Amiodarone (Winthrop) 858551000168106 Amiodarone (Winthrop) 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +68849011000036100 QV Skin Lotion, 15 g sachet 10664 66546011000036100 QV Skin Lotion, 15 g sachet 65450011000036107 QV Skin Lotion, 15 g sachet 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71276011000036106 glycerol 5% + white soft paraffin 5% lotion, 15 g sachet 69925011000036108 glycerol 5% + white soft paraffin 5% lotion, sachet 69803011000036105 glycerol + white soft paraffin +689931000168104 Tropisetron (AFT) 2 mg/2 mL injection solution, 10 x 2 mL ampoules 189943 689921000168102 Tropisetron (AFT) 2 mg/2 mL injection solution, 10 x 2 mL ampoules 689881000168109 Tropisetron (AFT) 2 mg/2 mL injection solution, 2 mL ampoule 97681000036104 Tropisetron (AFT) 97681000036104 Tropisetron (AFT) 46521011000036100 tropisetron 2 mg/2 mL injection, 10 x 2 mL ampoules 45197011000036105 tropisetron 2 mg/2 mL injection, ampoule 21700011000036104 tropisetron +13571000036105 Quetiapine (Pfizer) 200 mg film-coated tablet, 60, blister pack 172858 8701000036102 Quetiapine (Pfizer) 200 mg film-coated tablet, 60 1291000036108 Quetiapine (Pfizer) 200 mg film-coated tablet 721000036100 Quetiapine (Pfizer) 721000036100 Quetiapine (Pfizer) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +933239221000036102 Glimepiride (Pharmacor) 2 mg uncoated tablet, 30, blister pack 156399 933236341000036109 Glimepiride (Pharmacor) 2 mg uncoated tablet, 30 933234531000036104 Glimepiride (Pharmacor) 2 mg uncoated tablet 933234221000036103 Glimepiride (Pharmacor) 933234221000036103 Glimepiride (Pharmacor) 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +20206011000036103 Ipratropium Bromide (Terry White Chemists) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 74019 13425011000036102 Ipratropium Bromide (Terry White Chemists) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 6707011000036102 Ipratropium Bromide (Terry White Chemists) 250 microgram/mL inhalation solution, ampoule 2962011000036109 Ipratropium Bromide (Terry White Chemists) 2962011000036109 Ipratropium Bromide (Terry White Chemists) 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +928854011000036107 Ramibell 5 mg hard capsule, 30, blister pack 134800 928216011000036104 Ramibell 5 mg hard capsule, 30 927875011000036102 Ramibell 5 mg hard capsule 927827011000036106 Ramibell 927827011000036106 Ramibell 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +81751000036107 Mirtazapine (Apo) 15 mg film-coated tablet, 30, blister pack 127666 79841000036109 Mirtazapine (Apo) 15 mg film-coated tablet, 30 78121000036101 Mirtazapine (Apo) 15 mg film-coated tablet 11681000168100 Mirtazapine (Apo) 11681000168100 Mirtazapine (Apo) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +85040011000036100 Pantoprazole (GA) 40 mg enteric tablet, 30, blister pack 158191 84905011000036100 Pantoprazole (GA) 40 mg enteric tablet, 30 84792011000036104 Pantoprazole (GA) 40 mg enteric tablet 84765011000036105 Pantoprazole (GA) 84765011000036105 Pantoprazole (GA) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +12691000036103 Olanzapine (Chemmart) 10 mg film-coated tablet, 28, blister pack 158972 6891000036100 Olanzapine (Chemmart) 10 mg film-coated tablet, 28 1571000036106 Olanzapine (Chemmart) 10 mg film-coated tablet 23681000168105 Olanzapine (Chemmart) 23681000168105 Olanzapine (Chemmart) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +759251000168103 Postella-1 1.5 mg uncoated tablet, 1, blister pack 238206 759241000168100 Postella-1 1.5 mg uncoated tablet, 1 759231000168109 Postella-1 1.5 mg uncoated tablet 759221000168106 Postella-1 759221000168106 Postella-1 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +37493011000036102 Metronidazole (DBL) 500 mg/100 mL (0.5%) intravenous infusion injection, 20 x 100 mL bags 129476 36761011000036108 Metronidazole (DBL) 500 mg/100 mL (0.5%) intravenous infusion injection, 20 x 100 mL bags 36102011000036105 Metronidazole (DBL) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 35949011000036106 Metronidazole (DBL) 35949011000036106 Metronidazole (DBL) 38665011000036106 metronidazole 500 mg/100 mL (0.5%) injection, 20 x 100 mL bags 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +883471000168103 Betahistine (ZP) 16 mg tablet, 10, blister pack 231721 883461000168109 Betahistine (ZP) 16 mg tablet, 10 883451000168107 Betahistine (ZP) 16 mg tablet 883371000168105 Betahistine (ZP) 883371000168105 Betahistine (ZP) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +933231971000036107 Fluvirin 2011 injection solution, 10 x 0.5 mL syringes 92695 933226681000036105 Fluvirin 2011 injection solution, 10 x 0.5 mL syringes 933221301000036101 Fluvirin 2011 injection solution, 0.5 mL syringe 19111000168102 Fluvirin 2011 19111000168102 Fluvirin 2011 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +776651000168107 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 200 mL, bottle 174347 776641000168105 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 200 mL 776561000168108 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 15 mL 776531000168100 Duro-Tuss PE Chesty Cough plus Nasal Decongestant 776531000168100 Duro-Tuss PE Chesty Cough plus Nasal Decongestant 776631000168101 bromhexine hydrochloride 12 mg/15 mL + phenylephrine hydrochloride 10 mg/15 mL oral liquid, 200 mL 776551000168106 bromhexine hydrochloride 12 mg/15 mL + phenylephrine hydrochloride 10 mg/15 mL oral liquid 776541000168109 bromhexine + phenylephrine +750711000168104 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 4 x 28, blister packs 133649 750701000168102 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 4 x 28 750591000168101 Yaz (inert substance) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750691000168102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +750711000168104 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 4 x 28, blister packs 133649 750701000168102 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 4 x 28 750581000168104 Yaz (drospirenone 3 mg + ethinylestradiol 20 microgram) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750691000168102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 4 x 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +20582011000036105 Anpec 40 mg film-coated tablet, 100, blister pack 80436 13771011000036106 Anpec 40 mg film-coated tablet, 100 7057011000036105 Anpec 40 mg film-coated tablet 3034011000036106 Anpec 3034011000036106 Anpec 27932011000036100 verapamil hydrochloride 40 mg tablet, 100 23256011000036106 verapamil hydrochloride 40 mg tablet 21287011000036109 verapamil +34649011000036100 Alendronate Once Weekly (Chemmart) 70 mg uncoated tablet, 4, blister pack 123865 34238011000036106 Alendronate Once Weekly (Chemmart) 70 mg uncoated tablet, 4 33980011000036102 Alendronate Once Weekly (Chemmart) 70 mg uncoated tablet 53351000168105 Alendronate Once Weekly (Chemmart) 53351000168105 Alendronate Once Weekly (Chemmart) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +52211011000036109 Pravastatin Sodium (Chemmart) 80 mg uncoated tablet, 30, blister pack 145165 52097011000036109 Pravastatin Sodium (Chemmart) 80 mg uncoated tablet, 30 51992011000036104 Pravastatin Sodium (Chemmart) 80 mg uncoated tablet 3588011000036109 Pravastatin Sodium (Chemmart) 3588011000036109 Pravastatin Sodium (Chemmart) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +82864011000036102 Adronat Plus 70 mg/140 microgram uncoated tablet, 4, blister pack 153489 82771011000036108 Adronat Plus 70 mg/140 microgram uncoated tablet, 4 82681011000036107 Adronat Plus 70 mg/140 microgram uncoated tablet 12501000168100 Adronat Plus 70 mg/140 microgram 12501000168100 Adronat Plus 70 mg/140 microgram 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +56041000036107 Rocuronium Bromide (Sandoz) 50 mg/5 mL injection solution, 10 x 5 mL vials 157639 53041000036104 Rocuronium Bromide (Sandoz) 50 mg/5 mL injection solution, 10 x 5 mL vials 48721000036103 Rocuronium Bromide (Sandoz) 50 mg/5 mL injection solution, 5 mL vial 48141000036105 Rocuronium Bromide (Sandoz) 48141000036105 Rocuronium Bromide (Sandoz) 82570011000036102 rocuronium bromide 50 mg/5 mL injection, 10 x 5 mL vials 45193011000036101 rocuronium bromide 50 mg/5 mL injection, vial 44919011000036108 rocuronium +18655011000036102 Eloxatin 100 mg/20 mL concentrated injection, 20 mL vial 101658 11224011000036109 Eloxatin 100 mg/20 mL concentrated injection, 20 mL vial 5514011000036106 Eloxatin 100 mg/20 mL concentrated injection, 20 mL vial 3353011000036109 Eloxatin 3353011000036109 Eloxatin 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +68857011000036109 Strepsils orange lozenge, 24, blister pack 115527 66620011000036107 Strepsils orange lozenge, 24 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +791391000168106 Trexject 10 mg/0.2 mL injection solution, 6 x 0.2 mL syringes 233715 791381000168108 Trexject 10 mg/0.2 mL injection solution, 6 x 0.2 mL syringes 791301000168100 Trexject 10 mg/0.2 mL injection solution, 0.2 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791371000168105 methotrexate 10 mg/0.2 mL injection, 6 x 0.2 mL syringes 791291000168101 methotrexate 10 mg/0.2 mL injection, syringe 21342011000036105 methotrexate +707771000168102 Calindamin 150 mg hard capsule, 24, blister pack 214410 707761000168108 Calindamin 150 mg hard capsule, 24 707751000168106 Calindamin 150 mg hard capsule 707741000168109 Calindamin 707741000168109 Calindamin 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +1076461000168109 Aripiprazole (Auro) 10 mg uncoated tablet, 100, bottle 198210 1076451000168107 Aripiprazole (Auro) 10 mg uncoated tablet, 100 1076351000168101 Aripiprazole (Auro) 10 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +825611000168102 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 123710 825601000168100 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 825521000168105 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 31101000168108 Engerix-B Paediatric 31101000168108 Engerix-B Paediatric 825591000168107 hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL vial 825511000168103 hepatitis B child vaccine 10 microgram/0.5 mL injection, vial 825191000168101 hepatitis B vaccine +874881000168107 Beprol 3.75 mg film-coated tablet, 30, blister pack 175916 874871000168109 Beprol 3.75 mg film-coated tablet, 30 874821000168108 Beprol 3.75 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 874861000168103 bisoprolol fumarate 3.75 mg tablet, 30 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +13251000036103 Lanzek 10 mg film-coated tablet, 28, blister pack 167684 8401000036107 Lanzek 10 mg film-coated tablet, 28 2341000036101 Lanzek 10 mg film-coated tablet 9311000168101 Lanzek 9311000168101 Lanzek 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +1080481000168108 Fem-V Plus 150 mg hard capsule, 1, blister pack 1080471000168105 Fem-V Plus 150 mg hard capsule, 1 1080461000168104 Fem-V Plus 150 mg hard capsule 1080451000168101 Fem-V Plus 1080451000168101 Fem-V Plus 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +145951000036108 Octagam 5% 5 g/100 mL injection solution, 100 mL bottle 113927 144701000036106 Octagam 5% 5 g/100 mL injection solution, 100 mL bottle 143851000036101 Octagam 5% 5 g/100 mL injection solution, 100 mL bottle 14211000168106 Octagam 5% 14211000168106 Octagam 5% 75357011000036102 normal immunoglobulin 5 g/100 mL injection, 100 mL bottle 75016011000036106 normal immunoglobulin 5 g/100 mL injection, bottle 74965011000036103 normal immunoglobulin +1067871000168108 Ibuprofen plus Codeine (Trust) film-coated tablet, 24, blister pack 175264 1067861000168102 Ibuprofen plus Codeine (Trust) film-coated tablet, 24 1067741000168107 Ibuprofen plus Codeine (Trust) film-coated tablet 1067731000168103 Ibuprofen plus Codeine (Trust) 1067731000168103 Ibuprofen plus Codeine (Trust) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +79660011000036109 Pradaxa 75 mg hard capsule, 60, bottle 138415 79466011000036109 Pradaxa 75 mg hard capsule, 60 79353011000036101 Pradaxa 75 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79800011000036103 dabigatran etexilate 75 mg capsule, 60 79736011000036105 dabigatran etexilate 75 mg capsule 79729011000036103 dabigatran +933239141000036104 Fentanyl (Sandoz) 25 microgram/hour patch, 5, sachet 152569 933235811000036107 Fentanyl (Sandoz) 25 microgram/hour patch, 5 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 26649011000036106 fentanyl 25 microgram/hour patch, 5 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +59973011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 30 mL, bottle 120724 55935011000036104 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 30 mL 53666011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63364011000036108 ibuprofen 40 mg/mL oral liquid, 30 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +18286011000036101 Crestor 40 mg film-coated tablet, 30, blister pack 119135 11606011000036108 Crestor 40 mg film-coated tablet, 30 4964011000036105 Crestor 40 mg film-coated tablet 4031011000036106 Crestor 4031011000036106 Crestor 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1029381000168104 Aten 25 mg film-coated tablet, 10, blister pack 197714 1029371000168102 Aten 25 mg film-coated tablet, 10 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029361000168108 atenolol 25 mg tablet, 10 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +925218011000036107 Ropaccord 2 mg film-coated tablet, 28, blister pack 157767 924755011000036108 Ropaccord 2 mg film-coated tablet, 28 924458011000036105 Ropaccord 2 mg film-coated tablet 924403011000036108 Ropaccord 924403011000036108 Ropaccord 46972011000036104 ropinirole 2 mg tablet, 28 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +56001000036109 Pantoprazole (MaxRx) 40 mg powder for injection, 1 vial 156569 52881000036106 Pantoprazole (MaxRx) 40 mg powder for injection, 1 vial 49211000036108 Pantoprazole (MaxRx) 40 mg powder for injection, 40 mg vial 48211000036100 Pantoprazole (MaxRx) 48211000036100 Pantoprazole (MaxRx) 46192011000036106 pantoprazole 40 mg injection, 1 vial 45023011000036104 pantoprazole 40 mg injection, vial 21563011000036107 pantoprazole +939341000168101 Celecoxib (Pfizer) 200 mg hard capsule, 60, blister pack 211501 939331000168105 Celecoxib (Pfizer) 200 mg hard capsule, 60 939241000168107 Celecoxib (Pfizer) 200 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +12611000036108 Olanzapine (Apo) 15 mg film-coated tablet, 28, bottle 158964 6861000036107 Olanzapine (Apo) 15 mg film-coated tablet, 28 2501000036109 Olanzapine (Apo) 15 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 6871000036104 olanzapine 15 mg tablet, 28 1381000036101 olanzapine 15 mg tablet 21485011000036103 olanzapine +81202011000036100 Natural Laxative with Softener (Chemists' Own) film-coated tablet, 60, blister pack 90442 80704011000036107 Natural Laxative with Softener (Chemists' Own) film-coated tablet, 60 80244011000036109 Natural Laxative with Softener (Chemists' Own) film-coated tablet 80142011000036103 Natural Laxative with Softener (Chemists' Own) 80142011000036103 Natural Laxative with Softener (Chemists' Own) 81753011000036107 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 60 81306011000036109 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet 81227011000036109 sennoside B + senna leaf powder + docusate +817251000168100 Advagraf XL 1 mg modified release capsule, 60, blister pack 269214 817241000168102 Advagraf XL 1 mg modified release capsule, 60 817171000168103 Advagraf XL 1 mg modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 922600011000036106 tacrolimus 1 mg modified release capsule, 60 922099011000036107 tacrolimus 1 mg modified release capsule 21380011000036104 tacrolimus +81731000036104 Mirtazapine (Apo) 15 mg film-coated tablet, 30, bottle 127662 79841000036109 Mirtazapine (Apo) 15 mg film-coated tablet, 30 78121000036101 Mirtazapine (Apo) 15 mg film-coated tablet 11681000168100 Mirtazapine (Apo) 11681000168100 Mirtazapine (Apo) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +60367011000036101 Nurofen Back Pain 200 mg film-coated tablet, 8, blister pack 142080 56326011000036104 Nurofen Back Pain 200 mg film-coated tablet, 8 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63308011000036100 ibuprofen 200 mg tablet, 8 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +19314011000036103 Neoral 100 mg soft capsule, 30, blister pack 49724 12604011000036101 Neoral 100 mg soft capsule, 30 5230011000036101 Neoral 100 mg soft capsule 4180011000036101 Neoral 4180011000036101 Neoral 27974011000036106 ciclosporin 100 mg capsule, 30 23298011000036101 ciclosporin 100 mg capsule 21379011000036104 ciclosporin +1046281000168100 Zaldiar effervescent tablet, 20, strip pack 179678 1046271000168103 Zaldiar effervescent tablet, 20 1046221000168104 Zaldiar effervescent tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 1046261000168109 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet, 20 1046211000168106 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet 680581000168102 tramadol + paracetamol +810811000168103 Quetiapine XR (Apo) 50 mg modified release tablet, 100, blister pack 241755 810801000168101 Quetiapine XR (Apo) 50 mg modified release tablet, 100 810731000168101 Quetiapine XR (Apo) 50 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51530011000036103 quetiapine 50 mg modified release tablet, 100 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +1067551000168101 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 10, blister pack 175119 1067541000168103 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 10 1067531000168107 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +720741000168101 Midazolam (Apotex) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 217663 720731000168105 Midazolam (Apotex) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 720721000168107 Midazolam (Apotex) 5 mg/5 mL injection solution, 5 mL ampoule 720651000168108 Midazolam (Apotex) 720651000168108 Midazolam (Apotex) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +929683011000036108 Vexazone 15 mg uncoated tablet, 28, blister pack 164345 929519011000036104 Vexazone 15 mg uncoated tablet, 28 929406011000036101 Vexazone 15 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +1033311000168106 Aten 100 mg film-coated tablet, 120, blister pack 197718 1033301000168108 Aten 100 mg film-coated tablet, 120 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1033291000168107 atenolol 100 mg tablet, 120 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +660621000168100 Diltiazem Hydrochloride (AN) 60 mg film-coated tablet, 90, blister pack 184100 660611000168107 Diltiazem Hydrochloride (AN) 60 mg film-coated tablet, 90 660601000168109 Diltiazem Hydrochloride (AN) 60 mg film-coated tablet 660591000168102 Diltiazem Hydrochloride (AN) 660591000168102 Diltiazem Hydrochloride (AN) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +1026871000168100 Pregabalin (Amneal) 150 mg hard capsule, 500, bottle 235880 1026861000168106 Pregabalin (Amneal) 150 mg hard capsule, 500 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 971721000168109 pregabalin 150 mg capsule, 500 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +18732011000036102 Litak 10 mg/5 mL injection solution, 5 mL vial 104283 11283011000036101 Litak 10 mg/5 mL injection solution, 5 mL vial 5323011000036102 Litak 10 mg/5 mL injection solution, 5 mL vial 4333011000036108 Litak 4333011000036108 Litak 26594011000036108 cladribine 10 mg/5 mL injection, 5 mL vial 22002011000036103 cladribine 10 mg/5 mL injection, vial 21886011000036103 cladribine +870541000168109 Desven 50 mg modified release tablet, 7, blister pack 218074 870361000168102 Desven 50 mg modified release tablet, 7 870351000168104 Desven 50 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +68934011000036109 Potassium Chloride Sterile (Pfizer (Perth)) 1.5 g (potassium 20 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 10810 66559011000036107 Potassium Chloride Sterile (Pfizer (Perth)) 1.5 g (potassium 20 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 65434011000036101 Potassium Chloride Sterile (Pfizer (Perth)) 1.5 g (potassium 20 mmol)/10 mL concentrated injection, 10 mL ampoule 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 71379011000036106 potassium chloride 1.5 g (potassium 20 mmol)/10 mL injection, 50 x 10 mL ampoules 69981011000036102 potassium chloride 1.5 g (potassium 20 mmol)/10 mL injection, ampoule 21274011000036107 potassium chloride +59682011000036108 Tarka 2/180 modified release tablet, 14, blister pack 104663 55698011000036101 Tarka 2/180 modified release tablet, 14 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63094011000036106 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 14 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +1007821000168106 Morphine MR (Mylan) 60 mg modified release tablet, 60, blister pack 225423 1007811000168104 Morphine MR (Mylan) 60 mg modified release tablet, 60 1007741000168106 Morphine MR (Mylan) 60 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 35167011000036108 morphine sulfate pentahydrate 60 mg modified release tablet, 60 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +81891000036107 Famciclovir (GA) 250 mg film-coated tablet, 20, blister pack 177018 80191000036108 Famciclovir (GA) 250 mg film-coated tablet, 20 78291000036109 Famciclovir (GA) 250 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +44835011000036108 Enablex 7.5 mg modified release tablet, 98, blister pack 99418 42267011000036106 Enablex 7.5 mg modified release tablet, 98 40410011000036102 Enablex 7.5 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47020011000036106 darifenacin 7.5 mg modified release tablet, 98 45376011000036105 darifenacin 7.5 mg modified release tablet 44860011000036105 darifenacin +909321000168101 Chorit 80 mg film-coated tablet, 28, bottle 179855 909311000168108 Chorit 80 mg film-coated tablet, 28 909231000168105 Chorit 80 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890391000168102 atorvastatin 80 mg tablet, 28 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +13331000036104 Quetiaccord 200 mg film-coated tablet, 60, blister pack 170850 8551000036107 Quetiaccord 200 mg film-coated tablet, 60 3731000036100 Quetiaccord 200 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +19486011000036100 Mycobutin 150 mg hard capsule, 30, bottle 55048 12762011000036103 Mycobutin 150 mg hard capsule, 30 6056011000036106 Mycobutin 150 mg hard capsule 4421011000036103 Mycobutin 4421011000036103 Mycobutin 27339011000036104 rifabutin 150 mg capsule, 30 22692011000036106 rifabutin 150 mg capsule 21892011000036101 rifabutin +59999011000036103 Sinutab PE Sinus and Pain Relief film-coated tablet, 12, blister pack 123040 55961011000036109 Sinutab PE Sinus and Pain Relief film-coated tablet, 12 53740011000036106 Sinutab PE Sinus and Pain Relief film-coated tablet 53275011000036107 Sinutab PE Sinus and Pain Relief 53275011000036107 Sinutab PE Sinus and Pain Relief 63179011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 12 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +39395011000036101 Tryzan 10 mg uncoated tablet, 21, blister pack 129921 39279011000036100 Tryzan 10 mg uncoated tablet, 21 39207011000036100 Tryzan 10 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39477011000036108 ramipril 10 mg tablet, 21 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +677981000168102 Osteo Paracetamol (Apo) 665 mg modified release tablet, 1000, bottle 227117 677971000168100 Osteo Paracetamol (Apo) 665 mg modified release tablet, 1000 677901000168105 Osteo Paracetamol (Apo) 665 mg modified release tablet 677891000168106 Osteo Paracetamol (Apo) 677891000168106 Osteo Paracetamol (Apo) 677961000168106 paracetamol 665 mg modified release tablet, 1000 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +660781000168106 Mirtazapine (AN) 15 mg film-coated tablet, 30, blister pack 183398 660771000168108 Mirtazapine (AN) 15 mg film-coated tablet, 30 660761000168102 Mirtazapine (AN) 15 mg film-coated tablet 656371000168101 Mirtazapine (AN) 656371000168101 Mirtazapine (AN) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +960721000168106 Ciram 40 mg film-coated tablet, 28, bottle 158861 960521000168103 Ciram 40 mg film-coated tablet, 28 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +945691000168101 Invast 40 mg film-coated tablet, 100, bottle 100262 945681000168104 Invast 40 mg film-coated tablet, 100 945651000168106 Invast 40 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 46248011000036104 simvastatin 40 mg tablet, 100 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +61412011000036101 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL, bottle 82401 57337011000036102 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL 54279011000036106 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +933214751000036108 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 100, bottle 163529 933204351000036107 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 100 933195501000036100 Pravastatin Sodium (DRLA) 80 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 52329011000036109 pravastatin sodium 80 mg tablet, 100 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +20891011000036101 Citrihexal 0.25 microgram soft capsule, 100, blister pack 93176 14053011000036105 Citrihexal 0.25 microgram soft capsule, 100 7331011000036100 Citrihexal 0.25 microgram soft capsule 3361011000036101 Citrihexal 3361011000036101 Citrihexal 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +66641000036109 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate application, 500 mL, bottle 77398 64431000036108 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate application, 500 mL 60761000036102 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate application 60501000036105 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate 60501000036105 Avagard Antiseptic Hand Rub with Chlorhexidine Gluconate 78319011000036107 chlorhexidine gluconate 0.5% + ethanol 58.13% application, 500 mL 77604011000036108 chlorhexidine gluconate 0.5% + ethanol 58.13% application 69801011000036109 chlorhexidine + ethanol +18055011000036107 Enalabell 20 mg uncoated tablet, 30, blister pack 107307 11363011000036105 Enalabell 20 mg uncoated tablet, 30 5650011000036102 Enalabell 20 mg uncoated tablet 3129011000036102 Enalabell 3129011000036102 Enalabell 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +933231911000036101 Aethoxysklerol 1% (20 mg/2 mL) injection solution, 5 x 2 mL ampoules 79119 933226451000036101 Aethoxysklerol 1% (20 mg/2 mL) injection solution, 5 x 2 mL ampoules 933221131000036105 Aethoxysklerol 1% (20 mg/2 mL) injection solution, 2 mL ampoule 39757011000036100 Aethoxysklerol 39757011000036100 Aethoxysklerol 933226461000036103 lauromacrogol-400 1% (20 mg/2 mL) injection, 5 x 2 mL ampoules 933221141000036100 lauromacrogol-400 1% (20 mg/2 mL) injection, ampoule 44952011000036107 lauromacrogol-400 +933232051000036105 Paclitaxel (Ebewe) 30 mg/5 mL concentrated injection, 5 x 5 mL vials 98548 933226551000036102 Paclitaxel (Ebewe) 30 mg/5 mL concentrated injection, 5 x 5 mL vials 7559011000036100 Paclitaxel (Ebewe) 30 mg/5 mL concentrated injection, 5 mL vial 3092011000036109 Paclitaxel (Ebewe) 3092011000036109 Paclitaxel (Ebewe) 925410011000036109 paclitaxel 30 mg/5 mL injection, 5 x 5 mL vials 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +37665011000036101 Chloramphenicol Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses, tube 32263 36931011000036109 Chloramphenicol Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses 36262011000036106 Chloramphenicol Minims (Bausch & Lomb) 0.5% eye drops solution, 0.5 mL unit dose 51321000168103 Chloramphenicol Minims (Bausch & Lomb) 51321000168103 Chloramphenicol Minims (Bausch & Lomb) 38812011000036105 chloramphenicol 0.5% eye drops, 20 x 0.5 mL unit doses 38022011000036101 chloramphenicol 0.5% eye drops, unit dose 21330011000036107 chloramphenicol +60941011000036105 Claratyne 10 mg effervescent tablet, 1, tube 62135 56884011000036100 Claratyne 10 mg effervescent tablet, 1 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 86551000036106 loratadine 10 mg effervescent tablet, 1 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +18423011000036102 Tofranil 10 mg sugar coated tablet, 50, blister pack 11064 11415011000036101 Tofranil 10 mg sugar coated tablet, 50 5875011000036104 Tofranil 10 mg sugar coated tablet 3278011000036109 Tofranil 3278011000036109 Tofranil 26693011000036100 imipramine hydrochloride 10 mg tablet, 50 22088011000036104 imipramine hydrochloride 10 mg tablet 21613011000036104 imipramine +84286011000036107 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet, 50, bottle 136315 83979011000036108 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet, 50 52413011000036106 Mag-Sup 500 mg (magnesium 37.4 mg) film-coated tablet 52394011000036104 Mag-Sup 52394011000036104 Mag-Sup 84625011000036105 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet, 50 52809011000036104 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet 52798011000036107 magnesium aspartate dihydrate +877131000168109 Briviact 75 mg film-coated tablet, 14, blister pack 243798 877121000168106 Briviact 75 mg film-coated tablet, 14 877101000168102 Briviact 75 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877111000168104 brivaracetam 75 mg tablet, 14 877091000168107 brivaracetam 75 mg tablet 876401000168109 brivaracetam +13431000036107 Valaciclovir (Actavis) 500 mg film-coated tablet, 42, blister pack 170177 8491000036104 Valaciclovir (Actavis) 500 mg film-coated tablet, 42 2681000036102 Valaciclovir (Actavis) 500 mg film-coated tablet 761000036109 Valaciclovir (Actavis) 761000036109 Valaciclovir (Actavis) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +13431000036107 Valaciclovir (Actavis) 500 mg film-coated tablet, 42, blister pack 170176 8491000036104 Valaciclovir (Actavis) 500 mg film-coated tablet, 42 2681000036102 Valaciclovir (Actavis) 500 mg film-coated tablet 761000036109 Valaciclovir (Actavis) 761000036109 Valaciclovir (Actavis) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +61267011000036102 Clotrimazole Anti-Fungal (Pharmacist) 1% cream, 20 g, tube 77752 57203011000036106 Clotrimazole Anti-Fungal (Pharmacist) 1% cream, 20 g 54235011000036107 Clotrimazole Anti-Fungal (Pharmacist) 1% cream 16041000168105 Clotrimazole Anti-Fungal (Pharmacist) 16041000168105 Clotrimazole Anti-Fungal (Pharmacist) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1050531000168102 Bupannus 20 microgram/hour patch, 2, sachet 234725 1050521000168100 Bupannus 20 microgram/hour patch, 2 1050491000168102 Bupannus 20 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 26682011000036106 buprenorphine 20 microgram/hour patch, 2 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +44056011000036101 Xylocaine 1% (200 mg/20 mL) injection solution, 5 x 20 mL ampoules 48361 41543011000036104 Xylocaine 1% (200 mg/20 mL) injection solution, 5 x 20 mL ampoules 40051011000036109 Xylocaine 1% (200 mg/20 mL) injection solution, 20 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 46377011000036106 lidocaine (lignocaine) hydrochloride 1% (200 mg/20 mL) injection, 5 x 20 mL ampoules 45129011000036109 lidocaine (lignocaine) hydrochloride 1% (200 mg/20 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +18817011000036109 Glyade 80 mg uncoated tablet, 100, bottle 17649 12137011000036104 Glyade 80 mg uncoated tablet, 100 4675011000036104 Glyade 80 mg uncoated tablet 12101000168106 Glyade 12101000168106 Glyade 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +60761011000036108 Difflam Anti-Inflammatory Lozenge Mint Fresh Sugar Free 3 mg lozenge, 16, blister pack 53814 56719011000036104 Difflam Anti-Inflammatory Lozenge Mint Fresh Sugar Free 3 mg lozenge, 16 54048011000036107 Difflam Anti-Inflammatory Lozenge Mint Fresh Sugar Free 3 mg lozenge 38441000168108 Difflam Anti-Inflammatory Lozenge 38441000168108 Difflam Anti-Inflammatory Lozenge 63528011000036106 benzydamine hydrochloride 3 mg lozenge, 16 62003011000036104 benzydamine hydrochloride 3 mg lozenge 21819011000036105 benzydamine +933229871000036101 Nicorette Microtab Lemon 2 mg sublingual tablet, 100, blister pack 135851 933223671000036100 Nicorette Microtab Lemon 2 mg sublingual tablet, 100 933219751000036109 Nicorette Microtab Lemon 2 mg sublingual tablet 13101000168102 Nicorette Microtab 13101000168102 Nicorette Microtab 87241011000036100 nicotine 2 mg sublingual tablet, 100 87210011000036103 nicotine 2 mg sublingual tablet 21432011000036100 nicotine +926803011000036108 Fluvoxamine Maleate (GA) 50 mg film-coated tablet, 30, blister pack 168717 926199011000036104 Fluvoxamine Maleate (GA) 50 mg film-coated tablet, 30 925671011000036106 Fluvoxamine Maleate (GA) 50 mg film-coated tablet 925579011000036102 Fluvoxamine Maleate (GA) 925579011000036102 Fluvoxamine Maleate (GA) 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +808731000168102 Perindopril Arginine/Amlodipine 5/10 (Apo) uncoated tablet, 30, bottle 224292 808721000168100 Perindopril Arginine/Amlodipine 5/10 (Apo) uncoated tablet, 30 808711000168107 Perindopril Arginine/Amlodipine 5/10 (Apo) uncoated tablet 808701000168109 Perindopril Arginine/Amlodipine 5/10 (Apo) 808701000168109 Perindopril Arginine/Amlodipine 5/10 (Apo) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +50652011000036102 Strattera 80 mg hard capsule, 7, blister pack 146333 49676011000036106 Strattera 80 mg hard capsule, 7 48814011000036100 Strattera 80 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +47271000036105 Arixtra 2.5 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 80279 46811000036100 Arixtra 2.5 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 7049011000036101 Arixtra 2.5 mg/0.5 mL injection solution, 0.5 mL syringe 3651011000036101 Arixtra 3651011000036101 Arixtra 46821000036107 fondaparinux sodium 2.5 mg/0.5 mL injection, 2 x 0.5 mL syringes 23251011000036101 fondaparinux sodium 2.5 mg/0.5 mL injection, syringe 21445011000036109 fondaparinux +69011011000036105 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 5 sachets 138697 66813011000036100 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 5 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71933011000036101 paracetamol 1 g powder for oral liquid, 5 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +18243011000036103 Ondansetron (RL) 4 mg film-coated tablet, 10, blister pack 116414 11510011000036101 Ondansetron (RL) 4 mg film-coated tablet, 10 5560011000036100 Ondansetron (RL) 4 mg film-coated tablet 3915011000036107 Ondansetron (RL) 3915011000036107 Ondansetron (RL) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +20788011000036107 Formet 500 mg film-coated tablet, 100, blister pack 193136 13956011000036106 Formet 500 mg film-coated tablet, 100 7242011000036102 Formet 500 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20788011000036107 Formet 500 mg film-coated tablet, 100, blister pack 91108 13956011000036106 Formet 500 mg film-coated tablet, 100 7242011000036102 Formet 500 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +1095671000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 100, blister pack 287305 1095661000168105 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 100 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1077431000168104 fexofenadine hydrochloride 180 mg tablet, 100 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1097681000168109 Inhaler (Coles) inhalation solution, 0.5 mL, tube 281417 1097671000168106 Inhaler (Coles) inhalation solution, 0.5 mL 1097661000168100 Inhaler (Coles) inhalation solution 1097651000168102 Inhaler (Coles) 1097651000168102 Inhaler (Coles) 71225011000036103 menthol 197 mg/0.5 mL + camphor 197 mg/0.5 mL inhalation solution, 0.5 mL 69907011000036109 menthol 197 mg/0.5 mL + camphor 197 mg/0.5 mL inhalation solution 69811011000036106 menthol + camphor +933229831000036103 Enbrel 50 mg/mL injection solution, 4 x 1 mL syringes 124422 933223531000036103 Enbrel 50 mg/mL injection solution, 4 x 1 mL syringes 933219651000036104 Enbrel 50 mg/mL injection solution, syringe 25701000168107 Enbrel 25701000168107 Enbrel 79241011000036109 etanercept 50 mg/mL injection, 4 x 1 mL syringes 79116011000036107 etanercept 50 mg/mL injection, syringe 21347011000036107 etanercept +952041000168109 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 14, blister pack 273229 952031000168100 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 14 951951000168100 Cefuroxime (Pharmacor) 250 mg film-coated tablet 951941000168102 Cefuroxime (Pharmacor) 951941000168102 Cefuroxime (Pharmacor) 27187011000036105 cefuroxime 250 mg tablet, 14 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +933215391000036104 Isotretinoin (SCP) 20 mg soft capsule, 60, blister pack 165123 933204821000036108 Isotretinoin (SCP) 20 mg soft capsule, 60 933195791000036101 Isotretinoin (SCP) 20 mg soft capsule 933193461000036104 Isotretinoin (SCP) 933193461000036104 Isotretinoin (SCP) 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +933134011000036104 Elmendos 100 mg tablet, 60, blister pack 98075 932937011000036101 Elmendos 100 mg tablet, 60 932774011000036100 Elmendos 100 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46990011000036105 lamotrigine 100 mg tablet, 60 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +808571000168109 Pramipexole XR (GP) 3 mg modified release tablet, 10, blister pack 225631 808561000168103 Pramipexole XR (GP) 3 mg modified release tablet, 10 808551000168100 Pramipexole XR (GP) 3 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 756621000168102 pramipexole dihydrochloride monohydrate 3 mg modified release tablet, 10 87761011000036101 pramipexole dihydrochloride monohydrate 3 mg modified release tablet 37716011000036100 pramipexole +931585011000036106 Redichol 40 mg film-coated tablet, 30, bottle 163554 930746011000036100 Redichol 40 mg film-coated tablet, 30 930034011000036105 Redichol 40 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +61335011000036106 Paracetamol (Herron) 500 mg uncoated tablet, 6, blister pack 80924 57261011000036106 Paracetamol (Herron) 500 mg uncoated tablet, 6 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63845011000036101 paracetamol 500 mg tablet, 6 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +952201000168102 Diclofenac (Amneal) 50 mg enteric tablet, 50, blister pack 272874 952191000168100 Diclofenac (Amneal) 50 mg enteric tablet, 50 952131000168104 Diclofenac (Amneal) 50 mg enteric tablet 952071000168102 Diclofenac (Amneal) 952071000168102 Diclofenac (Amneal) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +50387011000036103 Tenderwet 24 Active (609213) 7.5 cm x 7.5 cm dressing, 8, carton 49409011000036107 Tenderwet 24 Active (609213) 7.5 cm x 7.5 cm dressing, 8 48462011000036100 Tenderwet 24 Active (609213) 7.5 cm x 7.5 cm dressing 28371000168105 Tenderwet 24 Active (609213) 28371000168105 Tenderwet 24 Active (609213) 51377011000036102 dressing hydroactive debridement 7.5 cm x 7.5 cm dressing, 8 50898011000036103 dressing hydroactive debridement 7.5 cm x 7.5 cm dressing 50721011000036101 dressing hydroactive debridement +33553011000036108 Quinapril (DP) 10 mg film-coated tablet, 30, blister pack 133234 33291011000036109 Quinapril (DP) 10 mg film-coated tablet, 30 33053011000036105 Quinapril (DP) 10 mg film-coated tablet 32962011000036106 Quinapril (DP) 32962011000036106 Quinapril (DP) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +44844011000036105 Vinorelbine (Pierre Fabre Medicament) 30 mg soft capsule, 1, blister pack 99559 42276011000036103 Vinorelbine (Pierre Fabre Medicament) 30 mg soft capsule, 1 40415011000036106 Vinorelbine (Pierre Fabre Medicament) 30 mg soft capsule 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 28322011000036103 vinorelbine 30 mg capsule, 1 23634011000036100 vinorelbine 30 mg capsule 21269011000036100 vinorelbine +954691000168100 Nitro-Dur 7.5 mg/24 hours patch, 30, sachet 52348 954681000168103 Nitro-Dur 7.5 mg/24 hours patch, 30 954601000168106 Nitro-Dur 7.5 mg/24 hours patch 4271011000036103 Nitro-Dur 4271011000036103 Nitro-Dur 954671000168101 glyceryl trinitrate 7.5 mg/24 hours patch, 30 954591000168104 glyceryl trinitrate 7.5 mg/24 hours patch 21388011000036102 glyceryl trinitrate +78992011000036108 Bisoprolol Fumarate (Sandoz) 2.5 mg film-coated tablet, 28, blister pack 144867 78821011000036103 Bisoprolol Fumarate (Sandoz) 2.5 mg film-coated tablet, 28 78638011000036104 Bisoprolol Fumarate (Sandoz) 2.5 mg film-coated tablet 78616011000036109 Bisoprolol Fumarate (Sandoz) 78616011000036109 Bisoprolol Fumarate (Sandoz) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +933229991000036109 Astromide 100 mg hard capsule, 5, bottle 144781 933223791000036109 Astromide 100 mg hard capsule, 5 933219911000036107 Astromide 100 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +933215231000036107 Tronz 8 mg film-coated tablet, 10, blister pack 163437 933204181000036103 Tronz 8 mg film-coated tablet, 10 933196341000036103 Tronz 8 mg film-coated tablet 933193581000036105 Tronz 933193581000036105 Tronz 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +55771000036108 Anastrozole (Synthon) 1 mg film-coated tablet, 50, blister pack 155176 52561000036104 Anastrozole (Synthon) 1 mg film-coated tablet, 50 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52111000036108 anastrozole 1 mg tablet, 50 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +43696011000036101 Talohexal 40 mg film-coated tablet, 28, bottle 107062 11354011000036104 Talohexal 40 mg film-coated tablet, 28 4649011000036103 Talohexal 40 mg film-coated tablet 3441011000036102 Talohexal 3441011000036102 Talohexal 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +894111000168101 Olmesartan HCT 40/25 (AN) film-coated tablet, 30, blister pack 221122 894101000168104 Olmesartan HCT 40/25 (AN) film-coated tablet, 30 894091000168109 Olmesartan HCT 40/25 (AN) film-coated tablet 894081000168106 Olmesartan HCT 40/25 (AN) 894081000168106 Olmesartan HCT 40/25 (AN) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +20291011000036106 Frusemide (Chemmart) 20 mg uncoated tablet, 100, bottle 186526 13500011000036105 Frusemide (Chemmart) 20 mg uncoated tablet, 100 6782011000036103 Frusemide (Chemmart) 20 mg uncoated tablet 3810011000036105 Frusemide (Chemmart) 3810011000036105 Frusemide (Chemmart) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +20291011000036106 Frusemide (Chemmart) 20 mg uncoated tablet, 100, bottle 75577 13500011000036105 Frusemide (Chemmart) 20 mg uncoated tablet, 100 6782011000036103 Frusemide (Chemmart) 20 mg uncoated tablet 3810011000036105 Frusemide (Chemmart) 3810011000036105 Frusemide (Chemmart) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +61344011000036108 Sinus Pain (Pharmacy Health) uncoated tablet, 24, blister pack 81463 57269011000036105 Sinus Pain (Pharmacy Health) uncoated tablet, 24 54257011000036101 Sinus Pain (Pharmacy Health) uncoated tablet 53474011000036107 Sinus Pain (Pharmacy Health) 53474011000036107 Sinus Pain (Pharmacy Health) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +55811000036108 Anastrozole (Synthon) 1 mg film-coated tablet, 84, blister pack 155176 52601000036104 Anastrozole (Synthon) 1 mg film-coated tablet, 84 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52221000036106 anastrozole 1 mg tablet, 84 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +18689011000036108 Aptivus 250 mg soft capsule, 120, bottle 118104 11572011000036108 Aptivus 250 mg soft capsule, 120 5807011000036102 Aptivus 250 mg soft capsule 2997011000036109 Aptivus 2997011000036109 Aptivus 26694011000036103 tipranavir 250 mg capsule, 120 22089011000036107 tipranavir 250 mg capsule 21820011000036106 tipranavir +928981011000036105 Valaciclovir (Apo) 500 mg film-coated tablet, 8, blister pack 158911 928342011000036102 Valaciclovir (Apo) 500 mg film-coated tablet, 8 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 927317011000036100 valaciclovir 500 mg tablet, 8 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +675951000168101 Vasafil 100 mg film-coated tablet, 4, blister pack 172068 675941000168103 Vasafil 100 mg film-coated tablet, 4 675931000168107 Vasafil 100 mg film-coated tablet 675921000168109 Vasafil 675921000168109 Vasafil 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +1010071000168104 Sildenafil (Apotex) 25 mg film-coated tablet, 12, blister pack 164804 1010061000168105 Sildenafil (Apotex) 25 mg film-coated tablet, 12 1009991000168105 Sildenafil (Apotex) 25 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 760331000168101 sildenafil 25 mg tablet, 12 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +19023011000036108 Voltaren 100 mg moulded suppository, 20, blister pack 37582 12328011000036108 Voltaren 100 mg moulded suppository, 20 5398011000036102 Voltaren 100 mg moulded suppository 28551000168108 Voltaren 28551000168108 Voltaren 27064011000036105 diclofenac sodium 100 mg suppository, 20 22432011000036101 diclofenac sodium 100 mg suppository 21288011000036105 diclofenac +652121000168103 Capecitabine (Alphapharm) 150 mg film-coated tablet, 60, blister pack 200931 652111000168105 Capecitabine (Alphapharm) 150 mg film-coated tablet, 60 652101000168107 Capecitabine (Alphapharm) 150 mg film-coated tablet 652091000168102 Capecitabine (Alphapharm) 652091000168102 Capecitabine (Alphapharm) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +963211000168102 Azamun 25 mg film-coated tablet, 100, blister pack 82680 963201000168100 Azamun 25 mg film-coated tablet, 100 963191000168103 Azamun 25 mg film-coated tablet 3803011000036104 Azamun 3803011000036104 Azamun 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +19400011000036104 Kripton 2.5 mg uncoated tablet, 30, bottle 53168 12686011000036105 Kripton 2.5 mg uncoated tablet, 30 5427011000036102 Kripton 2.5 mg uncoated tablet 3715011000036104 Kripton 3715011000036104 Kripton 27287011000036107 bromocriptine 2.5 mg tablet, 30 22641011000036106 bromocriptine 2.5 mg tablet 21300011000036100 bromocriptine +819191000168105 Atomoxetine (Amneal) 10 mg hard capsule, 28, blister pack 238335 819181000168107 Atomoxetine (Amneal) 10 mg hard capsule, 28 819141000168102 Atomoxetine (Amneal) 10 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +38641000036103 Escitalopram (MPPL) 15 mg film-coated tablet, 28, blister pack 165862 35001000036100 Escitalopram (MPPL) 15 mg film-coated tablet, 28 32971000036104 Escitalopram (MPPL) 15 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +1089301000168102 Ranitidine (Pharmacist Formula) 300 mg film-coated tablet, 14, blister pack 280974 1089291000168103 Ranitidine (Pharmacist Formula) 300 mg film-coated tablet, 14 1089281000168101 Ranitidine (Pharmacist Formula) 300 mg film-coated tablet 1089271000168104 Ranitidine (Pharmacist Formula) 1089271000168104 Ranitidine (Pharmacist Formula) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +17738011000036107 Mestinon Timespan 180 mg modified release tablet, 100, bottle 13749 12007011000036102 Mestinon Timespan 180 mg modified release tablet, 100 4938011000036108 Mestinon Timespan 180 mg modified release tablet 52401000168109 Mestinon Timespan 52401000168109 Mestinon Timespan 26845011000036101 pyridostigmine bromide 180 mg modified release tablet, 100 22226011000036101 pyridostigmine bromide 180 mg modified release tablet 21240011000036101 pyridostigmine +928923011000036100 Tramadol Hydrochloride SR (SCP) 200 mg modified release tablet, 20, blister pack 154389 928285011000036108 Tramadol Hydrochloride SR (SCP) 200 mg modified release tablet, 20 927922011000036104 Tramadol Hydrochloride SR (SCP) 200 mg modified release tablet 27661000168105 Tramadol Hydrochloride SR (SCP) 27661000168105 Tramadol Hydrochloride SR (SCP) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +44364011000036102 Fosamax 5 mg uncoated tablet, 30, blister pack 68428 41831011000036100 Fosamax 5 mg uncoated tablet, 30 40221011000036101 Fosamax 5 mg uncoated tablet 2922011000036103 Fosamax 2922011000036103 Fosamax 46637011000036101 alendronate 5 mg tablet, 30 45251011000036108 alendronate 5 mg tablet 21736011000036109 alendronate +38731000036102 Escilupin 15 mg film-coated tablet, 28, blister pack 165868 35101000036104 Escilupin 15 mg film-coated tablet, 28 33131000036107 Escilupin 15 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +1033131000168103 Ramipril (Apotex) 10 mg capsule, 10, bottle 179023 1033031000168104 Ramipril (Apotex) 10 mg capsule, 10 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46762011000036101 ramipril 10 mg capsule, 10 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +43867011000036108 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128377 41363011000036107 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 40210011000036101 Benefix (nonacog alfa 1000 units) powder for injection, 1000 units vial 2121000168104 Benefix 2121000168104 Benefix 46267011000036107 nonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 45242011000036104 nonacog alfa 1000 units injection, vial 44863011000036102 nonacog alfa +43867011000036108 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128377 41363011000036107 Benefix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 630131000168100 Benefix (inert substance) diluent, 5 mL syringe 2121000168104 Benefix 2121000168104 Benefix 46267011000036107 nonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +18252011000036107 Prothiaden 25 mg hard capsule, 50, blister pack 14967 12068011000036102 Prothiaden 25 mg hard capsule, 50 5582011000036104 Prothiaden 25 mg hard capsule 3346011000036100 Prothiaden 3346011000036100 Prothiaden 27057011000036108 dosulepin (dothiepin) hydrochloride 25 mg capsule, 50 22426011000036100 dosulepin (dothiepin) hydrochloride 25 mg capsule 21722011000036107 dosulepin (dothiepin) +958231000168106 Somavert (30 x 15 mg vials, 30 x inert diluent vials), 1 pack, composite pack 107104 958221000168108 Somavert (30 x 15 mg vials, 30 x inert diluent vials), 1 pack 958151000168107 Somavert (inert substance) diluent, vial 958111000168106 Somavert 958111000168106 Somavert 958211000168101 pegvisomant 15 mg injection [30 vials] (&) inert substance diluent [30 vials], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +958231000168106 Somavert (30 x 15 mg vials, 30 x inert diluent vials), 1 pack, composite pack 107104 958221000168108 Somavert (30 x 15 mg vials, 30 x inert diluent vials), 1 pack 958201000168104 Somavert (pegvisomant 15 mg) powder for injection, 15 mg vial 958111000168106 Somavert 958111000168106 Somavert 958211000168101 pegvisomant 15 mg injection [30 vials] (&) inert substance diluent [30 vials], 1 pack 958191000168102 pegvisomant 15 mg injection, vial 958121000168104 pegvisomant +61258011000036107 Nicotine (Amcal) 21 mg/24 hours patch, 7, sachet 77120 57194011000036108 Nicotine (Amcal) 21 mg/24 hours patch, 7 54231011000036105 Nicotine (Amcal) 21 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 27923011000036105 nicotine 21 mg/24 hours patch, 7 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +60230011000036101 Fiorinal hard capsule, 20, blister pack 13355 56189011000036106 Fiorinal hard capsule, 20 53830011000036105 Fiorinal hard capsule 20121000168105 Fiorinal 20121000168105 Fiorinal 63255011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg capsule, 20 61938011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg capsule 37813011000036109 paracetamol + codeine + doxylamine +933230031000036103 Bisoprolol Fumarate (GH) 10 mg film-coated tablet, 28, blister pack 144912 933223831000036101 Bisoprolol Fumarate (GH) 10 mg film-coated tablet, 28 933219951000036106 Bisoprolol Fumarate (GH) 10 mg film-coated tablet 933219251000036101 Bisoprolol Fumarate (GH) 933219251000036101 Bisoprolol Fumarate (GH) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +771721000168102 Clinoleic 20% injection emulsion, 100 mL bag 97537 771711000168109 Clinoleic 20% injection emulsion, 100 mL bag 771691000168106 Clinoleic 20% injection emulsion, 100 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 771701000168106 olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 100 mL bag 771681000168108 olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, bag 926971011000036108 olive oil + soya oil +909281000168106 Cisatracurium (Juno) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 226854 909271000168108 Cisatracurium (Juno) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 909261000168102 Cisatracurium (Juno) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 909131000168100 Cisatracurium (Juno) 909131000168100 Cisatracurium (Juno) 157601000036106 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL ampoules 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +60967011000036109 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 12, blister pack 62807 56910011000036100 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 12 54118011000036108 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet 53181011000036100 Paracetamol (Pharmacist Formula) 53181011000036100 Paracetamol (Pharmacist Formula) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +34752011000036103 Sublimaze 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 48263 34333011000036105 Sublimaze 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 34047011000036101 Sublimaze 100 microgram/2 mL injection solution, 2 mL ampoule 33934011000036100 Sublimaze 33934011000036100 Sublimaze 35181011000036102 fentanyl 100 microgram/2 mL injection, 10 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +1043951000168105 Pryzex 7.5 mg film-coated tablet, 21, blister pack 178987 1043941000168108 Pryzex 7.5 mg film-coated tablet, 21 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043931000168104 olanzapine 7.5 mg tablet, 21 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +68900011000036106 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 1, sachet 129748 66726011000036101 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 1 65263011000036107 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch 32721000168108 Nicotine Phase-1 (Chemists' Own) 32721000168108 Nicotine Phase-1 (Chemists' Own) 63761011000036109 nicotine 21 mg/24 hours patch, 1 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +77231000036107 Zatamil Hydrogel 0.1% gel, 45 g, tube 195415 76901000036105 Zatamil Hydrogel 0.1% gel, 45 g 76731000036101 Zatamil Hydrogel 0.1% gel 40831000168104 Zatamil Hydrogel 40831000168104 Zatamil Hydrogel 76911000036107 mometasone furoate 0.1% gel, 45 g 76741000036106 mometasone furoate 0.1% gel 21409011000036100 mometasone +12931000036108 Olanzapine (Chemmart) 7.5 mg film-coated tablet, 28, blister pack 159000 7051000036104 Olanzapine (Chemmart) 7.5 mg film-coated tablet, 28 1581000036108 Olanzapine (Chemmart) 7.5 mg film-coated tablet 23681000168105 Olanzapine (Chemmart) 23681000168105 Olanzapine (Chemmart) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +700029791000036103 Microgynon 30 sugar coated tablet, 21, blister pack 11346011000036105 Microgynon 30 sugar coated tablet, 21 4847011000036103 Microgynon 30 sugar coated tablet 700016061000036107 Microgynon 30 700016061000036107 Microgynon 30 28345011000036109 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet, 21 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +886211000168101 Tadalafil (Blooms The Chemist) 20 mg film-coated tablet, 8, blister pack 205877 886201000168104 Tadalafil (Blooms The Chemist) 20 mg film-coated tablet, 8 886171000168103 Tadalafil (Blooms The Chemist) 20 mg film-coated tablet 885831000168100 Tadalafil (Blooms The Chemist) 885831000168100 Tadalafil (Blooms The Chemist) 745821000168107 tadalafil 20 mg tablet, 8 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +20274011000036101 Alphapril 5 mg uncoated tablet, 30, blister pack 75234 13484011000036106 Alphapril 5 mg uncoated tablet, 30 6766011000036101 Alphapril 5 mg uncoated tablet 3378011000036102 Alphapril 3378011000036102 Alphapril 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +1020341000168104 Aripiprazole (WT) 5 mg uncoated tablet, 100, bottle 217206 1020331000168108 Aripiprazole (WT) 5 mg uncoated tablet, 100 1020301000168101 Aripiprazole (WT) 5 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +700029711000036108 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28, blister pack 13002011000036106 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28 6289011000036101 Norimin 28 Day (inert substance) uncoated tablet 700023331000036102 Norimin 28 Day 700023331000036102 Norimin 28 Day 28353011000036106 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029711000036108 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28, blister pack 13002011000036106 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28 6288011000036109 Norimin 28 Day (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 700023331000036102 Norimin 28 Day 700023331000036102 Norimin 28 Day 28353011000036106 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +55681000036101 Synastrozole 1 mg film-coated tablet, 84, blister pack 155175 52431000036109 Synastrozole 1 mg film-coated tablet, 84 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52221000036106 anastrozole 1 mg tablet, 84 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +19794011000036103 Karvea 300 mg uncoated tablet, 30, blister pack 63089 13052011000036100 Karvea 300 mg uncoated tablet, 30 6336011000036109 Karvea 300 mg uncoated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +926687011000036109 Lisoril 10 mg uncoated tablet, 28, blister pack 106496 926074011000036104 Lisoril 10 mg uncoated tablet, 28 925621011000036107 Lisoril 10 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 46263011000036103 lisinopril 10 mg tablet, 28 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +952361000168105 Fluvoxamine (AN) 50 mg film-coated tablet, 30, blister pack 168717 952351000168108 Fluvoxamine (AN) 50 mg film-coated tablet, 30 952321000168100 Fluvoxamine (AN) 50 mg film-coated tablet 952311000168107 Fluvoxamine (AN) 952311000168107 Fluvoxamine (AN) 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +19991011000036107 Oxycontin 20 mg modified release tablet, 20, blister pack 200033 13230011000036108 Oxycontin 20 mg modified release tablet, 20 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +19991011000036107 Oxycontin 20 mg modified release tablet, 20, blister pack 68190 13230011000036108 Oxycontin 20 mg modified release tablet, 20 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +960401000168106 Ciram 20 mg film-coated tablet, 1000, bottle 158859 960391000168109 Ciram 20 mg film-coated tablet, 1000 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203211000036100 citalopram 20 mg tablet, 1000 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +69311011000036109 Riodine 10% solution, 500 mL, bottle 21199 67111011000036105 Riodine 10% solution, 500 mL 65224011000036102 Riodine 10% solution 65019011000036101 Riodine 65019011000036101 Riodine 71679011000036100 povidone-iodine 10% solution, 500 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +12791000036106 Olanzapine ODT (Apo) 20 mg orally disintegrating tablet, 28, blister pack 158986 6951000036103 Olanzapine ODT (Apo) 20 mg orally disintegrating tablet, 28 1341000036105 Olanzapine ODT (Apo) 20 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +79069011000036109 Ramipril (Chemmart) 1.25 mg tablet, 30, blister pack 150889 78850011000036109 Ramipril (Chemmart) 1.25 mg tablet, 30 78656011000036102 Ramipril (Chemmart) 1.25 mg tablet 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +81591000036105 Riluzole (Apo) 50 mg film-coated tablet, 56, blister pack 168091 80001000036101 Riluzole (Apo) 50 mg film-coated tablet, 56 78951000036105 Riluzole (Apo) 50 mg film-coated tablet 78001000036105 Riluzole (Apo) 78001000036105 Riluzole (Apo) 27912011000036108 riluzole 50 mg tablet, 56 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +60667011000036105 Panadol Gel Cap 500 mg gelatin coated tablet, 12, blister pack 40932 56625011000036102 Panadol Gel Cap 500 mg gelatin coated tablet, 12 54014011000036106 Panadol Gel Cap 500 mg gelatin coated tablet 3661000168107 Panadol Gel Cap 3661000168107 Panadol Gel Cap 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +954531000168103 Wellvone 250 mg film-coated tablet, 189, bottle 51673 954321000168105 Wellvone 250 mg film-coated tablet, 189 954301000168101 Wellvone 250 mg film-coated tablet 3057011000036104 Wellvone 3057011000036104 Wellvone 954311000168103 atovaquone 250 mg tablet, 189 954291000168102 atovaquone 250 mg tablet 21877011000036108 atovaquone +876891000168101 Betnovate-1/2 0.05% ointment, 2 g, tube 57336 876881000168104 Betnovate-1/2 0.05% ointment, 2 g 6132011000036103 Betnovate-1/2 0.05% ointment 36901000168100 Betnovate-1/2 36901000168100 Betnovate-1/2 876871000168102 betamethasone (as valerate) 0.05% ointment, 2 g 23356011000036101 betamethasone (as valerate) 0.05% ointment 21366011000036103 betamethasone valerate +676111000168109 Celecoxib (RBX) 100 mg hard capsule, 60, blister pack 212791 676101000168106 Celecoxib (RBX) 100 mg hard capsule, 60 676091000168101 Celecoxib (RBX) 100 mg hard capsule 676051000168106 Celecoxib (RBX) 676051000168106 Celecoxib (RBX) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +77244011000036101 Ozidal 3 mg film-coated tablet, 60, blister pack 148969 76660011000036100 Ozidal 3 mg film-coated tablet, 60 76096011000036107 Ozidal 3 mg film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +933238731000036102 Hydrocoll (900744) 10 cm x 10 cm dressing, 10, carton 933235491000036100 Hydrocoll (900744) 10 cm x 10 cm dressing, 10 933234411000036109 Hydrocoll (900744) 10 cm x 10 cm dressing 60311000168105 Hydrocoll (900744) 60311000168105 Hydrocoll (900744) 51337011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing, 10 50871011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +19323011000036109 Timoptol-XE 0.25% eye drops solution, 2.5 mL, bottle 50304 12613011000036101 Timoptol-XE 0.25% eye drops solution, 2.5 mL 5727011000036105 Timoptol-XE 0.25% eye drops solution 24031000168101 Timoptol-XE 24031000168101 Timoptol-XE 27236011000036100 timolol 0.25% eye drops, 2.5 mL 22596011000036104 timolol 0.25% eye drops 21318011000036100 timolol +43850011000036100 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 12, blister pack 128034 41346011000036107 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 12 39801011000036104 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet 39566011000036107 Paracetamol (Pharmacy Choice) 39566011000036107 Paracetamol (Pharmacy Choice) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +55721000036109 Anastrozole (Synthon) 1 mg film-coated tablet, 100, blister pack 155176 52471000036106 Anastrozole (Synthon) 1 mg film-coated tablet, 100 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 51991000036107 anastrozole 1 mg tablet, 100 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +85006011000036109 Calcium Disodium Versenate (iNova) 1 g/5 mL concentrated injection, 6 x 5 mL ampoules 10543 84874011000036103 Calcium Disodium Versenate (iNova) 1 g/5 mL concentrated injection, 6 x 5 mL ampoules 84771011000036103 Calcium Disodium Versenate (iNova) 1 g/5 mL concentrated injection, 5 mL ampoule 84757011000036109 Calcium Disodium Versenate (iNova) 84757011000036109 Calcium Disodium Versenate (iNova) 85172011000036106 edetate calcium disodium 1 g/5 mL injection, 6 x 5 mL ampoules 85083011000036104 edetate calcium disodium 1 g/5 mL injection, ampoule 85074011000036106 edetic acid +12871000036101 Olanzapine ODT (Apo) 5 mg orally disintegrating tablet, 28, blister pack 158995 7021000036105 Olanzapine ODT (Apo) 5 mg orally disintegrating tablet, 28 1401000036101 Olanzapine ODT (Apo) 5 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +69688011000036107 Sodium Chloride 0.22% and Glucose 10% (Baxter) intravenous infusion injection, 500 mL bag 82805 67487011000036103 Sodium Chloride 0.22% and Glucose 10% (Baxter) intravenous infusion injection, 500 mL bag 65680011000036100 Sodium Chloride 0.22% and Glucose 10% (Baxter) intravenous infusion injection, 500 mL bag 32401000168108 Sodium Chloride 0.22% and Glucose 10% (Baxter) 32401000168108 Sodium Chloride 0.22% and Glucose 10% (Baxter) 72006011000036106 sodium chloride 0.22% (1.1 g/500 mL) + glucose 10% (50 g/500 mL) injection, 500 mL bag 70276011000036101 sodium chloride 0.22% (1.1 g/500 mL) + glucose 10% (50 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +819171000168109 Atomoxetine (Amneal) 10 mg hard capsule, 7, blister pack 238335 819161000168103 Atomoxetine (Amneal) 10 mg hard capsule, 7 819141000168102 Atomoxetine (Amneal) 10 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +925235011000036109 Rispaccord 4 mg film-coated tablet, 60, blister pack 159970 924772011000036103 Rispaccord 4 mg film-coated tablet, 60 924471011000036103 Rispaccord 4 mg film-coated tablet 37391000168108 Rispaccord 37391000168108 Rispaccord 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +952431000168108 Minirin Melt 60 microgram sublingual wafer, 30, blister pack 121720 952421000168105 Minirin Melt 60 microgram sublingual wafer, 30 952391000168103 Minirin Melt 60 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 813441000168108 desmopressin 60 microgram sublingual wafer, 30 813391000168109 desmopressin 60 microgram sublingual wafer 21750011000036107 desmopressin +808411000168102 Perindopril Arginine (Apo) 5 mg film-coated tablet, 100, blister pack 184814 807981000168100 Perindopril Arginine (Apo) 5 mg film-coated tablet, 100 807931000168101 Perindopril Arginine (Apo) 5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 806781000168100 perindopril arginine 5 mg tablet, 100 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +20822011000036103 Pegasys 180 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 91837 13985011000036108 Pegasys 180 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 7272011000036103 Pegasys 180 microgram/0.5 mL injection solution, 0.5 mL syringe 3349011000036109 Pegasys 3349011000036109 Pegasys 28050011000036102 peginterferon alfa-2a 180 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23371011000036109 peginterferon alfa-2a 180 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +38411000036102 Escital 10 mg film-coated tablet, 200, bottle 165849 34741000036104 Escital 10 mg film-coated tablet, 200 32411000036104 Escital 10 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +61241011000036101 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet, 2, blister pack 77011 57177011000036106 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet, 2 54225011000036105 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet 53141011000036107 Sudafed Sinus 12 Hour Relief 53141011000036107 Sudafed Sinus 12 Hour Relief 63749011000036101 pseudoephedrine hydrochloride 120 mg tablet, 2 62071011000036109 pseudoephedrine hydrochloride 120 mg tablet 21540011000036109 pseudoephedrine +84355011000036100 Loratadine (Terry White Chemists) 10 mg uncoated tablet, 30, blister pack 160832 84048011000036105 Loratadine (Terry White Chemists) 10 mg uncoated tablet, 30 83669011000036101 Loratadine (Terry White Chemists) 10 mg uncoated tablet 83588011000036104 Loratadine (Terry White Chemists) 83588011000036104 Loratadine (Terry White Chemists) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +39421011000036104 Cefalexin (Sandoz) 250 mg hard capsule, 20, blister pack 150170 39304011000036103 Cefalexin (Sandoz) 250 mg hard capsule, 20 39215011000036107 Cefalexin (Sandoz) 250 mg hard capsule 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +883241000168109 Betahistine (GX) 16 mg tablet, 100, blister pack 231712 883231000168100 Betahistine (GX) 16 mg tablet, 100 883181000168106 Betahistine (GX) 16 mg tablet 883061000168101 Betahistine (GX) 883061000168101 Betahistine (GX) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1044551000168102 Amoxiclav 500/125 (Amneal) film-coated tablet, 10, blister pack 255079 1044541000168104 Amoxiclav 500/125 (Amneal) film-coated tablet, 10 1044511000168103 Amoxiclav 500/125 (Amneal) film-coated tablet 1044501000168101 Amoxiclav 500/125 (Amneal) 1044501000168101 Amoxiclav 500/125 (Amneal) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +44467011000036102 Vinorelbine (Pierre Fabre Medicament) 10 mg/mL concentrated injection, 1 mL vial 74663 41923011000036105 Vinorelbine (Pierre Fabre Medicament) 10 mg/mL concentrated injection, 1 mL vial 40266011000036102 Vinorelbine (Pierre Fabre Medicament) 10 mg/mL concentrated injection, vial 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +69491011000036101 Ear Clear for Swimmers ear drops solution, 15 mL, bottle 50555 67291011000036109 Ear Clear for Swimmers ear drops solution, 15 mL 65594011000036104 Ear Clear for Swimmers ear drops solution 65173011000036102 Ear Clear for Swimmers 65173011000036102 Ear Clear for Swimmers 71839011000036107 acetic acid 1.65% + isopropyl alcohol 63.3% ear drops, 15 mL 70209011000036103 acetic acid 1.65% + isopropyl alcohol 63.3% ear drops 69771011000036102 acetic acid + isopropyl alcohol +891921000168108 Betastine 16 mg uncoated tablet, 30, blister pack 212078 891911000168101 Betastine 16 mg uncoated tablet, 30 891861000168105 Betastine 16 mg uncoated tablet 891851000168108 Betastine 891851000168108 Betastine 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1027511000168109 Neuroccord 25 mg hard capsule, 60, bottle 235872 1027501000168106 Neuroccord 25 mg hard capsule, 60 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +68884011000036109 Strepsils strawberry sugar free lozenge, 4, blister pack 101403 66467011000036101 Strepsils strawberry sugar free lozenge, 4 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71524011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 4 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +44191011000036108 Livial 2.5 mg uncoated tablet, 84, blister pack 55088 41667011000036107 Livial 2.5 mg uncoated tablet, 84 40133011000036100 Livial 2.5 mg uncoated tablet 39758011000036104 Livial 39758011000036104 Livial 46484011000036102 tibolone 2.5 mg tablet, 84 45180011000036108 tibolone 2.5 mg tablet 44915011000036106 tibolone +931411011000036102 LMX 4 Topical Anaesthetic 4% cream, 30 g, tube 126095 930579011000036106 LMX 4 Topical Anaesthetic 4% cream, 30 g 929948011000036105 LMX 4 Topical Anaesthetic 4% cream 4651000168107 LMX 4 Topical Anaesthetic 4651000168107 LMX 4 Topical Anaesthetic 932353011000036101 lidocaine (lignocaine) 4% cream, 30 g 931826011000036109 lidocaine (lignocaine) 4% cream 21572011000036107 lidocaine (lignocaine) +921876011000036106 Cefepime (Omegapharm) 1 g powder for injection, 1 vial 156642 921435011000036109 Cefepime (Omegapharm) 1 g powder for injection, 1 vial 921007011000036101 Cefepime (Omegapharm) 1 g powder for injection, vial 920965011000036106 Cefepime (Omegapharm) 920965011000036106 Cefepime (Omegapharm) 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +86136011000036109 Panadol Caplet Optizorb 500 mg film-coated tablet, 12, blister pack 160821 85744011000036107 Panadol Caplet Optizorb 500 mg film-coated tablet, 12 85371011000036109 Panadol Caplet Optizorb 500 mg film-coated tablet 55521000168105 Panadol Caplet Optizorb 55521000168105 Panadol Caplet Optizorb 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18965011000036109 Dexmethsone 500 microgram uncoated tablet, 30, bottle 27917 12273011000036107 Dexmethsone 500 microgram uncoated tablet, 30 5257011000036104 Dexmethsone 500 microgram uncoated tablet 2956011000036100 Dexmethsone 2956011000036100 Dexmethsone 27034011000036101 dexamethasone 500 microgram tablet, 30 22407011000036108 dexamethasone 500 microgram tablet 21631011000036109 dexamethasone +87646011000036108 Sifrol ER 375 microgram modified release tablet, 10, blister pack 158754 87462011000036104 Sifrol ER 375 microgram modified release tablet, 10 87324011000036109 Sifrol ER 375 microgram modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 87812011000036108 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 10 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +809051000168102 Myconail Anti-Fungal Nail Laquer Kit 5% application, 5 mL, bottle 237395 809041000168104 Myconail Anti-Fungal Nail Laquer Kit 5% application, 5 mL 809011000168103 Myconail Anti-Fungal Nail Laquer Kit 5% application 809001000168101 Myconail Anti-Fungal Nail Laquer Kit 809001000168101 Myconail Anti-Fungal Nail Laquer Kit 27384011000036107 amorolfine 5% application, 5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +20342011000036103 Salbutamol (GenRx) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 142569 13551011000036109 Salbutamol (GenRx) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6833011000036100 Salbutamol (GenRx) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 4102011000036103 Salbutamol (GenRx) 4102011000036103 Salbutamol (GenRx) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +20342011000036103 Salbutamol (GenRx) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 76219 13551011000036109 Salbutamol (GenRx) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6833011000036100 Salbutamol (GenRx) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 4102011000036103 Salbutamol (GenRx) 4102011000036103 Salbutamol (GenRx) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +933230151000036107 Cephazolin (Alphapharm) 1 g powder for injection, 10 vials 154639 933224001000036101 Cephazolin (Alphapharm) 1 g powder for injection, 10 vials 923025011000036107 Cephazolin (Alphapharm) 1 g powder for injection, vial 922923011000036109 Cephazolin (Alphapharm) 922923011000036109 Cephazolin (Alphapharm) 26880011000036103 cefazolin 1 g injection, 10 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +1022121000168107 Butafen 200 mg film-coated tablet, 12, blister pack 155484 1022111000168100 Butafen 200 mg film-coated tablet, 12 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1094141000168101 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 60 mL, pump pack 281338 1094131000168105 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 60 mL 1094111000168100 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094121000168107 ethanol 70% solution, 60 mL 1094101000168103 ethanol 70% solution 69846011000036106 ethanol +961361000168109 Carduran 4 mg uncoated tablet, 30, blister pack 32638 961351000168107 Carduran 4 mg uncoated tablet, 30 961301000168108 Carduran 4 mg uncoated tablet 960961000168103 Carduran 960961000168103 Carduran 961341000168105 doxazosin 4 mg tablet, 30 961291000168107 doxazosin 4 mg tablet 960971000168109 doxazosin +77235011000036103 Escitalopram (Terry White Chemists) 20 mg film-coated tablet, 28, blister pack 146038 76651011000036100 Escitalopram (Terry White Chemists) 20 mg film-coated tablet, 28 76089011000036102 Escitalopram (Terry White Chemists) 20 mg film-coated tablet 75949011000036103 Escitalopram (Terry White Chemists) 75949011000036103 Escitalopram (Terry White Chemists) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +77235011000036103 Escitalopram (Terry White Chemists) 20 mg film-coated tablet, 28, blister pack 213726 76651011000036100 Escitalopram (Terry White Chemists) 20 mg film-coated tablet, 28 76089011000036102 Escitalopram (Terry White Chemists) 20 mg film-coated tablet 75949011000036103 Escitalopram (Terry White Chemists) 75949011000036103 Escitalopram (Terry White Chemists) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +801511000168107 Abilify 2 mg uncoated tablet, 7, blister pack 91001 801501000168109 Abilify 2 mg uncoated tablet, 7 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801491000168102 aripiprazole 2 mg tablet, 7 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +933230191000036103 Targin 40/20 mg modified release tablet, 28, blister pack 156194 933224051000036100 Targin 40/20 mg modified release tablet, 28 923038011000036103 Targin 40/20 mg modified release tablet 46091000168106 Targin 40/20 mg 46091000168106 Targin 40/20 mg 933224061000036102 oxycodone hydrochloride 40 mg + naloxone hydrochloride 20 mg modified release tablet, 28 923976011000036108 oxycodone hydrochloride 40 mg + naloxone hydrochloride 20 mg modified release tablet 923931011000036100 oxycodone + naloxone +19178011000036107 Monopril 10 mg uncoated tablet, 30, blister pack 46475 12483011000036101 Monopril 10 mg uncoated tablet, 30 5088011000036104 Monopril 10 mg uncoated tablet 3248011000036105 Monopril 3248011000036105 Monopril 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +13191000036101 Imulate 500 mg film-coated tablet, 50, blister pack 167224 8341000036103 Imulate 500 mg film-coated tablet, 50 3631000036106 Imulate 500 mg film-coated tablet 801000036103 Imulate 801000036103 Imulate 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +56091000036101 Lisinopril (DRLA) 2.5 mg uncoated tablet, 14, blister pack 152719 51621000036104 Lisinopril (DRLA) 2.5 mg uncoated tablet, 14 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927299011000036102 lisinopril 2.5 mg tablet, 14 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +1088501000168102 Metrogyl 200 mg uncoated tablet, 250, bottle 17654 1088491000168109 Metrogyl 200 mg uncoated tablet, 250 5446011000036103 Metrogyl 200 mg uncoated tablet 4091011000036101 Metrogyl 4091011000036101 Metrogyl 1088481000168106 metronidazole 200 mg tablet, 250 22913011000036104 metronidazole 200 mg tablet 21482011000036106 metronidazole +52758011000036103 Movalis 15 mg hard capsule, 30, blister pack 142229 52570011000036104 Movalis 15 mg hard capsule, 30 52421011000036103 Movalis 15 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +929131011000036100 Oxycontin 5 mg modified release tablet, 28, blister pack 93732 928488011000036103 Oxycontin 5 mg modified release tablet, 28 7349011000036100 Oxycontin 5 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929278011000036105 oxycodone hydrochloride 5 mg modified release tablet, 28 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +817571000168107 Dynoval 5/5 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200815 817561000168101 Dynoval 5/5 (perindopril arginine/amlodipine) uncoated tablet, 10 817551000168103 Dynoval 5/5 (perindopril arginine/amlodipine) uncoated tablet 817541000168100 Dynoval 5/5 (perindopril arginine/amlodipine) 817541000168100 Dynoval 5/5 (perindopril arginine/amlodipine) 86423011000036104 perindopril arginine 5 mg + amlodipine 5 mg tablet, 10 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +79079011000036101 Ramipril (Terry White Chemists) 5 mg tablet, 30, blister pack 150901 78857011000036105 Ramipril (Terry White Chemists) 5 mg tablet, 30 78663011000036104 Ramipril (Terry White Chemists) 5 mg tablet 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +79079011000036101 Ramipril (Terry White Chemists) 5 mg tablet, 30, blister pack 231169 78857011000036105 Ramipril (Terry White Chemists) 5 mg tablet, 30 78663011000036104 Ramipril (Terry White Chemists) 5 mg tablet 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +758571000168104 Ciloxan 0.3% eye drops solution, 1 mL, bottle 42899 758561000168105 Ciloxan 0.3% eye drops solution, 1 mL 5774011000036100 Ciloxan 0.3% eye drops solution 3615011000036106 Ciloxan 3615011000036106 Ciloxan 758551000168108 ciprofloxacin 0.3% eye drops, 1 mL 22922011000036101 ciprofloxacin 0.3% eye drops 21245011000036105 ciprofloxacin +82231000036104 Prabez 20 mg enteric tablet, 30, bottle 187313 80701000036104 Prabez 20 mg enteric tablet, 30 78131000036104 Prabez 20 mg enteric tablet 77691000036106 Prabez 77691000036106 Prabez 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +883881000168103 Betahistine (Actavis) 16 mg tablet, 100, blister pack 231719 883871000168101 Betahistine (Actavis) 16 mg tablet, 100 883821000168102 Betahistine (Actavis) 16 mg tablet 883671000168100 Betahistine (Actavis) 883671000168100 Betahistine (Actavis) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +59709011000036109 Advil 200 mg sugar coated tablet, 20, blister pack 104221 55685011000036108 Advil 200 mg sugar coated tablet, 20 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +681891000168106 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet, 30, blister pack 214463 681881000168108 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet, 30 681851000168101 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +19812011000036105 Doxylin 100 mg film-coated tablet, 7, blister pack 63509 13069011000036100 Doxylin 100 mg film-coated tablet, 7 6353011000036104 Doxylin 100 mg film-coated tablet 3714011000036103 Doxylin 3714011000036103 Doxylin 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +1030801000168105 Atomoxetine (Genpar) 5 mg hard capsule, 14, blister pack 234851 1030791000168109 Atomoxetine (Genpar) 5 mg hard capsule, 14 1030761000168102 Atomoxetine (Genpar) 5 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 976341000168105 atomoxetine 5 mg capsule, 14 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +56131000036103 Lisinopril (DRLA) 2.5 mg uncoated tablet, 56, blister pack 152719 51451000036107 Lisinopril (DRLA) 2.5 mg uncoated tablet, 56 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927303011000036107 lisinopril 2.5 mg tablet, 56 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +1093821000168100 Demazin PE Multi-Action Cold and Flu Relief Day and Night (32 x Day tablets, 16 x Night tablets), 48, blister pack 286003 1093811000168107 Demazin PE Multi-Action Cold and Flu Relief Day and Night (32 x Day tablets, 16 x Night tablets), 48 1092261000168100 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Night) uncoated tablet 1092221000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night 1092241000168104 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Night) 63167011000036107 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1093821000168100 Demazin PE Multi-Action Cold and Flu Relief Day and Night (32 x Day tablets, 16 x Night tablets), 48, blister pack 286003 1093811000168107 Demazin PE Multi-Action Cold and Flu Relief Day and Night (32 x Day tablets, 16 x Night tablets), 48 1092251000168102 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Day) uncoated tablet 1092221000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night 1092231000168108 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Day) 63167011000036107 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +667841000168108 Xelabine 500 mg film-coated tablet, 60, blister pack 213045 667831000168104 Xelabine 500 mg film-coated tablet, 60 667781000168107 Xelabine 500 mg film-coated tablet 667481000168100 Xelabine 667481000168100 Xelabine 667821000168102 capecitabine 500 mg tablet, 60 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +1053501000168100 Actiq 800 microgram lozenge on handle, 15, blister pack 91602 1053491000168107 Actiq 800 microgram lozenge on handle, 15 34078011000036101 Actiq 800 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053481000168109 fentanyl 800 microgram lozenge on handle, 15 34913011000036106 fentanyl 800 microgram lozenge on handle 21258011000036102 fentanyl +18936011000036109 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution, 100 mL, bottle 27257 12244011000036108 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution, 100 mL 4803011000036102 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution 3692011000036104 Pholcodine Linctus (Gold Cross) 3692011000036104 Pholcodine Linctus (Gold Cross) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +18936011000036109 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution, 100 mL, bottle 133576 12244011000036108 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution, 100 mL 4803011000036102 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution 3692011000036104 Pholcodine Linctus (Gold Cross) 3692011000036104 Pholcodine Linctus (Gold Cross) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +929951000168103 Citalopram (DRLA) 20 mg film-coated tablet, 500, bottle 167017 929941000168100 Citalopram (DRLA) 20 mg film-coated tablet, 500 929871000168102 Citalopram (DRLA) 20 mg film-coated tablet 929861000168108 Citalopram (DRLA) 929861000168108 Citalopram (DRLA) 933203261000036103 citalopram 20 mg tablet, 500 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +929638011000036105 Momex SR 30 mg modified release tablet, 28, blister pack 132255 929487011000036102 Momex SR 30 mg modified release tablet, 28 78629011000036105 Momex SR 30 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 929756011000036100 morphine sulfate pentahydrate 30 mg modified release tablet, 28 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +926884011000036109 Hyzaar DS 100/25 film-coated tablet, 30, blister pack 73219 926280011000036106 Hyzaar DS 100/25 film-coated tablet, 30 925725011000036104 Hyzaar DS 100/25 film-coated tablet 9161000168101 Hyzaar DS 100/25 9161000168101 Hyzaar DS 100/25 927382011000036104 losartan potassium 100 mg + hydrochlorothiazide 25 mg tablet, 30 927025011000036100 losartan potassium 100 mg + hydrochlorothiazide 25 mg tablet 926978011000036104 losartan + hydrochlorothiazide +681911000168108 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet, 100, blister pack 214463 681901000168105 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet, 100 681851000168101 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 38829011000036105 pramipexole dihydrochloride monohydrate 125 microgram tablet, 100 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +60144011000036105 Tefodine 180 mg film-coated tablet, 30, blister pack 129142 56103011000036109 Tefodine 180 mg film-coated tablet, 30 53790011000036103 Tefodine 180 mg film-coated tablet 53099011000036106 Tefodine 53099011000036106 Tefodine 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1001981000168108 Pregabalin (Apo) 200 mg hard capsule, 60, bottle 193252 1001971000168105 Pregabalin (Apo) 200 mg hard capsule, 60 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +933238811000036100 Fentanyl (Sandoz) 50 microgram/hour patch, 4, sachet 152571 933235941000036103 Fentanyl (Sandoz) 50 microgram/hour patch, 4 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235951000036100 fentanyl 50 microgram/hour patch, 4 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +20915011000036106 Alvesco 160 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 93725 14069011000036103 Alvesco 160 microgram/actuation pressurised inhalation, 120 actuations 7347011000036107 Alvesco 160 microgram/actuation pressurised inhalation, actuation 3011011000036104 Alvesco 3011011000036104 Alvesco 28124011000036100 ciclesonide 160 microgram/actuation pressurised inhalation, 120 actuations 23433011000036100 ciclesonide 160 microgram/actuation pressurised inhalation, actuation 21555011000036102 ciclesonide +39051000036102 Donaccord 5 mg film-coated tablet, 28, blister pack 167191 35411000036105 Donaccord 5 mg film-coated tablet, 28 32681000036109 Donaccord 5 mg film-coated tablet 32271000036109 Donaccord 32271000036109 Donaccord 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +60026011000036109 Heartburn Relief Extra Strength (Guardian) 300 mg film-coated tablet, 10, blister pack 123663 55988011000036103 Heartburn Relief Extra Strength (Guardian) 300 mg film-coated tablet, 10 53749011000036100 Heartburn Relief Extra Strength (Guardian) 300 mg film-coated tablet 17781000168100 Heartburn Relief Extra Strength (Guardian) 17781000168100 Heartburn Relief Extra Strength (Guardian) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +944001000168100 Medformin-1000 1 g film-coated tablet, 100, bottle 100291 943991000168108 Medformin-1000 1 g film-coated tablet, 100 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 16921000036107 metformin hydrochloride 1 g tablet, 100 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +34630011000036107 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL bags 118321 34220011000036106 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL bags 33970011000036108 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 33950011000036106 Metronidazole (Sandoz) 33950011000036106 Metronidazole (Sandoz) 35100011000036108 metronidazole 500 mg/100 mL (0.5%) injection, 10 x 100 mL bags 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +59954011000036109 Xyloproct 5% / 0.25% ointment, 35 g, tube 12033 55916011000036100 Xyloproct 5% / 0.25% ointment, 35 g 53623011000036109 Xyloproct 5% / 0.25% ointment 32471000168103 Xyloproct 5% / 0.25% 32471000168103 Xyloproct 5% / 0.25% 63159011000036105 lidocaine (lignocaine) 5% + hydrocortisone acetate 0.25% ointment, 35 g 61875011000036106 lidocaine (lignocaine) 5% + hydrocortisone acetate 0.25% ointment 61836011000036102 lidocaine (lignocaine) + hydrocortisone +926900011000036106 Onkotrone 30 mg/15 mL concentrated injection, 15 mL vial 75725 926296011000036105 Onkotrone 30 mg/15 mL concentrated injection, 15 mL vial 925740011000036105 Onkotrone 30 mg/15 mL concentrated injection, 15 mL vial 3966011000036104 Onkotrone 3966011000036104 Onkotrone 46711011000036108 mitozantrone 30 mg/15 mL injection, 15 mL vial 45278011000036102 mitozantrone 30 mg/15 mL injection, vial 21652011000036102 mitozantrone +69244011000036106 Potassium Chloride 0.15% and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 19465 67044011000036109 Potassium Chloride 0.15% and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 65323011000036109 Potassium Chloride 0.15% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 38351000168104 Potassium Chloride 0.15% and Glucose 5% (Baxter) 38351000168104 Potassium Chloride 0.15% and Glucose 5% (Baxter) 71614011000036108 potassium chloride 1.5 g (potassium 20 mmol)/L + glucose 5% (50 g/L) injection, 12 x 1 L bags 70092011000036102 potassium chloride 1.5 g (potassium 20 mmol)/L + glucose 5% (50 g/L) injection, bag 69832011000036108 potassium chloride + glucose +17755011000036102 Norspan 5 microgram/hour patch, 2, sachet 116647 11533011000036103 Norspan 5 microgram/hour patch, 2 5815011000036109 Norspan 5 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 26680011000036107 buprenorphine 5 microgram/hour patch, 2 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +18576011000036101 Doxorubicin Hydrochloride (Ebewe) 50 mg/25 mL injection, 25 mL vial 118529 11577011000036105 Doxorubicin Hydrochloride (Ebewe) 50 mg/25 mL injection, 25 mL vial 5933011000036105 Doxorubicin Hydrochloride (Ebewe) 50 mg/25 mL injection, 25 mL vial 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 27169011000036101 doxorubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 22531011000036104 doxorubicin hydrochloride 50 mg/25 mL injection, vial 21638011000036100 doxorubicin +1082241000168100 Atorvastatin (RZ) 20 mg film-coated tablet, 30, blister pack 198843 1082231000168109 Atorvastatin (RZ) 20 mg film-coated tablet, 30 1082221000168106 Atorvastatin (RZ) 20 mg film-coated tablet 1082211000168104 Atorvastatin (RZ) 1082211000168104 Atorvastatin (RZ) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +664551000168103 Gaviscon Double Strength oral liquid suspension, 500 mL, bottle 77810 664541000168100 Gaviscon Double Strength oral liquid suspension, 500 mL 664521000168106 Gaviscon Double Strength oral liquid suspension, 10 mL 664481000168106 Gaviscon Double Strength 664481000168106 Gaviscon Double Strength 664531000168109 sodium alginate 1 g/10 mL + potassium bicarbonate 200 mg/10 mL + calcium carbonate 200 mg/10 mL oral liquid, 500 mL 664511000168104 sodium alginate 1 g/10 mL + potassium bicarbonate 200 mg/10 mL + calcium carbonate 200 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +1031851000168104 Aten 100 mg film-coated tablet, 30, blister pack 197718 1031841000168101 Aten 100 mg film-coated tablet, 30 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031831000168105 atenolol 100 mg tablet, 30 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +50396011000036100 Setopress (3504) 7.5 cm x 3.5 m high stretch bandage, 1, carton 49316011000036108 Setopress (3504) 7.5 cm x 3.5 m high stretch bandage, 1 48763011000036101 Setopress (3504) 7.5 cm x 3.5 m high stretch bandage 58781000168106 Setopress (3504) 58781000168106 Setopress (3504) 51297011000036103 bandage compression 7.5 cm x 3.5 m high stretch bandage, 1 50826011000036109 bandage compression 7.5 cm x 3.5 m high stretch bandage 50716011000036103 bandage compression +923744011000036108 Adenosine (Aspen) 6 mg/2 mL injection solution, 6 x 2 mL vials 152014 923335011000036105 Adenosine (Aspen) 6 mg/2 mL injection solution, 6 x 2 mL vials 923012011000036109 Adenosine (Aspen) 6 mg/2 mL injection solution, 2 mL vial 922934011000036108 Adenosine (Aspen) 922934011000036108 Adenosine (Aspen) 46404011000036101 adenosine 6 mg/2 mL injection, 6 x 2 mL vials 45137011000036104 adenosine 6 mg/2 mL injection, vial 44942011000036105 adenosine +79001011000036109 Paracetamol (Apo) 500 mg uncoated tablet, 100, blister pack 156807 78868011000036100 Paracetamol (Apo) 500 mg uncoated tablet, 100 78674011000036108 Paracetamol (Apo) 500 mg uncoated tablet 25791000168101 Paracetamol (Apo) 25791000168101 Paracetamol (Apo) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +13111000036106 Quetiapine (RBX) 300 mg film-coated tablet, 60, blister pack 166420 8231000036101 Quetiapine (RBX) 300 mg film-coated tablet, 60 2711000036103 Quetiapine (RBX) 300 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +24581000036102 Atorvachol 20 mg film-coated tablet, 30, blister pack 178524 22641000036102 Atorvachol 20 mg film-coated tablet, 30 20671000036105 Atorvachol 20 mg film-coated tablet 19871000036105 Atorvachol 19871000036105 Atorvachol 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +923714011000036102 Novicrit 9000 units/0.9 mL injection solution, 6 x 0.9 mL syringes 147838 923301011000036101 Novicrit 9000 units/0.9 mL injection solution, 6 x 0.9 mL syringes 922987011000036107 Novicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924124011000036100 epoetin lambda 9000 units/0.9 mL injection, 6 x 0.9 mL syringes 923952011000036107 epoetin lambda 9000 units/0.9 mL injection, syringe 923930011000036107 epoetin lambda +18988011000036101 Doryx 100 mg modified release capsule, 7, blister pack 29618 12296011000036109 Doryx 100 mg modified release capsule, 7 4456011000036107 Doryx 100 mg modified release capsule 4100011000036102 Doryx 4100011000036102 Doryx 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +654931000168105 Rosuvastatin (AN) 20 mg film-coated tablet, 30, blister pack 197001 654921000168107 Rosuvastatin (AN) 20 mg film-coated tablet, 30 654911000168100 Rosuvastatin (AN) 20 mg film-coated tablet 654901000168103 Rosuvastatin (AN) 654901000168103 Rosuvastatin (AN) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +116711000036105 Rosuvastatin (RBX) 40 mg film-coated tablet, 30, blister pack 184721 115001000036103 Rosuvastatin (RBX) 40 mg film-coated tablet, 30 113301000036101 Rosuvastatin (RBX) 40 mg film-coated tablet 112711000036106 Rosuvastatin (RBX) 112711000036106 Rosuvastatin (RBX) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +61616011000036104 Nurofen Liquid Capsule 200 mg soft capsule, 40, blister pack 96115 57538011000036103 Nurofen Liquid Capsule 200 mg soft capsule, 40 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63932011000036104 ibuprofen 200 mg capsule, 40 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +60196011000036106 Flufeme (Sandoz) 150 mg hard capsule, 1, blister pack 132827 56155011000036100 Flufeme (Sandoz) 150 mg hard capsule, 1 53811011000036107 Flufeme (Sandoz) 150 mg hard capsule 53447011000036100 Flufeme (Sandoz) 53447011000036100 Flufeme (Sandoz) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +43920011000036106 Bicalutamide (Ranbaxy) 50 mg film-coated tablet, 28, blister pack 139574 41412011000036106 Bicalutamide (Ranbaxy) 50 mg film-coated tablet, 28 39827011000036101 Bicalutamide (Ranbaxy) 50 mg film-coated tablet 39684011000036108 Bicalutamide (Ranbaxy) 39684011000036108 Bicalutamide (Ranbaxy) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1027601000168107 Neuroccord 25 mg hard capsule, 60, blister pack 235847 1027501000168106 Neuroccord 25 mg hard capsule, 60 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +19518011000036107 Protaphane Novolet 100 units/mL injection suspension, 5 x 3 mL syringes 56247 12790011000036104 Protaphane Novolet 100 units/mL injection suspension, 5 x 3 mL syringes 6084011000036109 Protaphane Novolet 100 units/mL injection suspension, 3 mL syringe 27231000168104 Protaphane Novolet 27231000168104 Protaphane Novolet 27355011000036102 insulin isophane human 100 units/mL injection, 5 x 3 mL syringes 22708011000036103 insulin isophane human 100 units/mL injection, syringe 33643011000036100 insulin isophane human +676361000168105 Oxycodone (Sandoz) 40 mg modified release tablet, 28, blister pack 153611 676351000168108 Oxycodone (Sandoz) 40 mg modified release tablet, 28 676341000168106 Oxycodone (Sandoz) 40 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +61403011000036106 Cold and Flu (Pharmacy Health) uncoated tablet, 12, blister pack 82143 57328011000036104 Cold and Flu (Pharmacy Health) uncoated tablet, 12 54276011000036102 Cold and Flu (Pharmacy Health) uncoated tablet 53545011000036101 Cold and Flu (Pharmacy Health) 53545011000036101 Cold and Flu (Pharmacy Health) 63809011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 12 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +923773011000036107 Ozvenaf 37.5 mg modified release capsule, 28, blister pack 149432 923327011000036103 Ozvenaf 37.5 mg modified release capsule, 28 923004011000036102 Ozvenaf 37.5 mg modified release capsule 922911011000036101 Ozvenaf 922911011000036101 Ozvenaf 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +105171000036108 Andepra 60 mg enteric capsule, 28, blister pack 179187 102281000036106 Andepra 60 mg enteric capsule, 28 99161000036107 Andepra 60 mg enteric capsule 97861000036108 Andepra 97861000036108 Andepra 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +69224011000036108 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 24 x 100 mL bottles 19460 67024011000036106 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 24 x 100 mL bottles 65543011000036109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 100 mL bottle 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 71594011000036104 chlorhexidine acetate 0.05% (50 mg/100 mL) + cetrimide 0.5% (500 mg/100 mL) solution, 24 x 100 mL bottles 70082011000036103 chlorhexidine acetate 0.05% (50 mg/100 mL) + cetrimide 0.5% (500 mg/100 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +17997011000036105 Fluconazole (Hexal) 50 mg hard capsule, 28, blister pack 104285 11284011000036104 Fluconazole (Hexal) 50 mg hard capsule, 28 4930011000036106 Fluconazole (Hexal) 50 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +984741000168105 Acidsoothe 150 mg/10 mL oral liquid, 150 mL, bottle 163643 984731000168101 Acidsoothe 150 mg/10 mL oral liquid, 150 mL 984681000168105 Acidsoothe 150 mg/10 mL oral liquid, 10 mL 984671000168107 Acidsoothe 984671000168107 Acidsoothe 984721000168104 ranitidine 150 mg/10 mL oral liquid, 150 mL 22429011000036109 ranitidine 150 mg/10 mL oral liquid 21682011000036109 ranitidine +44502011000036109 Cefotaxime (Sandoz) 500 mg powder for injection, 5 vials 76431 41957011000036102 Cefotaxime (Sandoz) 500 mg powder for injection, 5 vials 40285011000036107 Cefotaxime (Sandoz) 500 mg powder for injection, 500 mg vial 4148011000036105 Cefotaxime (Sandoz) 4148011000036105 Cefotaxime (Sandoz) 46738011000036108 cefotaxime 500 mg injection, 5 vials 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +116691000036108 Rosuvastatin (RBX) 5 mg film-coated tablet, 30, blister pack 184709 114981000036109 Rosuvastatin (RBX) 5 mg film-coated tablet, 30 113271000036104 Rosuvastatin (RBX) 5 mg film-coated tablet 112711000036106 Rosuvastatin (RBX) 112711000036106 Rosuvastatin (RBX) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1093981000168107 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 250 mL, pump pack 281339 1093971000168109 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 250 mL 1093961000168103 Antimicrobial Hand Sanitiser (Elyptol) 70% gel 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 925447011000036104 ethanol 70% gel, 250 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +18553011000036109 Gentamicin (DBL) 80 mg/2 mL injection solution, 5 x 2 mL vials 16337 12106011000036105 Gentamicin (DBL) 80 mg/2 mL injection solution, 5 x 2 mL vials 5267011000036108 Gentamicin (DBL) 80 mg/2 mL injection solution, 2 mL vial 4253011000036100 Gentamicin (DBL) 4253011000036100 Gentamicin (DBL) 26916011000036106 gentamicin 80 mg/2 mL injection, 5 x 2 mL vials 22293011000036102 gentamicin 80 mg/2 mL injection, vial 21397011000036102 gentamicin +82211000036108 Prabez 10 mg enteric tablet, 28, bottle 187311 80711000036102 Prabez 10 mg enteric tablet, 28 78161000036105 Prabez 10 mg enteric tablet 77691000036106 Prabez 77691000036106 Prabez 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1010481000168106 Risedronate (Apotex) 150 mg film-coated tablet, 4, blister pack 181972 1010471000168108 Risedronate (Apotex) 150 mg film-coated tablet, 4 1010401000168103 Risedronate (Apotex) 150 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 78197011000036107 risedronate sodium 150 mg tablet, 4 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +933231511000036106 Estracombi (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8, sachet 52027 933225691000036100 Estracombi (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8 933220771000036100 Estragest 250/50 patch 3512011000036108 Estracombi 13821000168101 Estragest 250/50 27682011000036107 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch [4], 8 23019011000036103 estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch 21228011000036101 estradiol + norethisterone acetate +933231511000036106 Estracombi (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8, sachet 52027 933225691000036100 Estracombi (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8 7619011000036101 Estraderm 50 microgram/24 hours patch 3512011000036108 Estracombi 4174011000036102 Estraderm 27682011000036107 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch [4], 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +18046011000036102 Cytadren 250 mg uncoated tablet, 100, bottle 11029 11684011000036101 Cytadren 250 mg uncoated tablet, 100 4742011000036103 Cytadren 250 mg uncoated tablet 3321011000036107 Cytadren 3321011000036107 Cytadren 26735011000036104 aminoglutethimide 250 mg tablet, 100 22130011000036104 aminoglutethimide 250 mg tablet 21641011000036105 aminoglutethimide +122511000036105 Adaptic (2012) 7.6 cm x 7.6 cm dressing, 1, carton 122311000036101 Adaptic (2012) 7.6 cm x 7.6 cm dressing, 1 122231000036103 Adaptic (2012) 7.6 cm x 7.6 cm dressing 42381000168107 Adaptic (2012) 42381000168107 Adaptic (2012) 122321000036108 dressing tulle non-adherent primary wound contact layer paraffin 7.6 cm x 7.6 cm dressing, 1 122241000036108 dressing tulle non-adherent primary wound contact layer paraffin 7.6 cm x 7.6 cm dressing 122581000036102 dressing tulle non-adherent primary wound contact layer paraffin +60769011000036107 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 100 mL, bottle 54133 56727011000036102 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 100 mL 54051011000036100 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 5 mL 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 63531011000036100 bromhexine hydrochloride 4 mg/5 mL oral liquid, 100 mL 62004011000036102 bromhexine hydrochloride 4 mg/5 mL oral liquid 61780011000036106 bromhexine +87660011000036100 Prochlorperazine Maleate (GA) 5 mg uncoated tablet, 25, blister pack 158411 87461011000036105 Prochlorperazine Maleate (GA) 5 mg uncoated tablet, 25 87323011000036107 Prochlorperazine Maleate (GA) 5 mg uncoated tablet 87289011000036106 Prochlorperazine Maleate (GA) 87289011000036106 Prochlorperazine Maleate (GA) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +909921000168100 Dexamfetamine (Genpar) 5 mg uncoated tablet, 100, blister pack 270954 909901000168109 Dexamfetamine (Genpar) 5 mg uncoated tablet, 100 909891000168105 Dexamfetamine (Genpar) 5 mg uncoated tablet 909881000168107 Dexamfetamine (Genpar) 909881000168107 Dexamfetamine (Genpar) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +20872011000036102 Azapin 50 mg film-coated tablet, 100, blister pack 92801 14034011000036108 Azapin 50 mg film-coated tablet, 100 7310011000036102 Azapin 50 mg film-coated tablet 3747011000036103 Azapin 3747011000036103 Azapin 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +61086011000036107 Cyklokapron 500 mg film-coated tablet, 36, blister pack 70405 57029011000036106 Cyklokapron 500 mg film-coated tablet, 36 4970011000036109 Cyklokapron 500 mg film-coated tablet 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 63703011000036109 tranexamic acid 500 mg tablet, 36 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +656051000168108 Meloxicam (AN) 7.5 mg uncoated tablet, 30, blister pack 188880 656041000168106 Meloxicam (AN) 7.5 mg uncoated tablet, 30 656031000168102 Meloxicam (AN) 7.5 mg uncoated tablet 655991000168108 Meloxicam (AN) 655991000168108 Meloxicam (AN) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +723571000168109 Ozin ODT 15 mg orally disintegrating tablet, 28, blister pack 212904 723561000168103 Ozin ODT 15 mg orally disintegrating tablet, 28 723551000168100 Ozin ODT 15 mg orally disintegrating tablet 723501000168104 Ozin ODT 723501000168104 Ozin ODT 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +933214271000036105 Reditra 50 mg film-coated tablet, 28, blister pack 160772 933203491000036106 Reditra 50 mg film-coated tablet, 28 933195831000036109 Reditra 50 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 46995011000036101 sertraline 50 mg tablet, 28 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +926871011000036103 Magnevist 9.38 g/20 mL injection solution, 20 mL vial 48495 926267011000036105 Magnevist 9.38 g/20 mL injection solution, 20 mL vial 925713011000036109 Magnevist 9.38 g/20 mL injection solution, 20 mL vial 920916011000036100 Magnevist 920916011000036100 Magnevist 927371011000036102 gadopentetate dimeglumine 9.38 g/20 mL injection, 20 mL vial 927015011000036106 gadopentetate dimeglumine 9.38 g/20 mL injection, vial 922037011000036106 gadopentetic acid +748061000168104 Victoza 6 mg/mL injection solution, 3 mL injection device 153980 748051000168101 Victoza 6 mg/mL injection solution, 3 mL injection device 748031000168107 Victoza 6 mg/mL injection solution, 3 mL injection device 97761000036103 Victoza 97761000036103 Victoza 748041000168103 liraglutide 6 mg/mL injection, 3 mL injection device 748021000168109 liraglutide 6 mg/mL injection, 3 mL injection device 105271000036100 liraglutide +676431000168108 Celecoxib (GH) 100 mg hard capsule, 60, blister pack 196178 676421000168105 Celecoxib (GH) 100 mg hard capsule, 60 676411000168103 Celecoxib (GH) 100 mg hard capsule 676401000168101 Celecoxib (GH) 676401000168101 Celecoxib (GH) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +20823011000036105 Pegasys-RBV (4 x 135 microgram syringes, 112 x 200 mg tablets), 1 pack, composite pack 91842 13986011000036101 Pegasys-RBV (4 x 135 microgram syringes, 112 x 200 mg tablets), 1 pack 7271011000036109 Pegasys 135 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28051011000036109 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [112], 1 pack 23370011000036102 peginterferon alfa-2a 135 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20823011000036105 Pegasys-RBV (4 x 135 microgram syringes, 112 x 200 mg tablets), 1 pack, composite pack 91842 13986011000036101 Pegasys-RBV (4 x 135 microgram syringes, 112 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28051011000036109 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [112], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +19855011000036109 Fluohexal 20 mg hard capsule, 28, blister pack 64564 13102011000036104 Fluohexal 20 mg hard capsule, 28 6386011000036100 Fluohexal 20 mg hard capsule 3553011000036106 Fluohexal 3553011000036106 Fluohexal 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +964491000168108 Normatens 400 microgram film-coated tablet, 7, blister pack 114124 964481000168105 Normatens 400 microgram film-coated tablet, 7 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964471000168107 moxonidine 400 microgram tablet, 7 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +61011011000036104 Nurofen Cold and Flu with Decongestant film-coated tablet, 36, blister pack 65640 56954011000036101 Nurofen Cold and Flu with Decongestant film-coated tablet, 36 54138011000036104 Nurofen Cold and Flu with Decongestant film-coated tablet 49471000168108 Nurofen Cold and Flu with Decongestant 49471000168108 Nurofen Cold and Flu with Decongestant 63654011000036108 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 36 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +997551000168105 Duloxetine (Apotex) 60 mg enteric capsule, 7, blister pack 195360 997541000168108 Duloxetine (Apotex) 60 mg enteric capsule, 7 997531000168104 Duloxetine (Apotex) 60 mg enteric capsule 997521000168102 Duloxetine (Apotex) 997521000168102 Duloxetine (Apotex) 38613011000036106 duloxetine 60 mg enteric capsule, 7 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +68694011000036104 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 24, blister pack 129740 66721011000036106 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 24 65506011000036105 Nicotine (Chemists' Own) Mint 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1010391000168100 Amoxycillin (GN) 500 mg hard capsule, 20, blister pack 95457 1010381000168103 Amoxycillin (GN) 500 mg hard capsule, 20 1010371000168101 Amoxycillin (GN) 500 mg hard capsule 1010361000168107 Amoxycillin (GN) 1010361000168107 Amoxycillin (GN) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +1101451000168104 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 2, blister pack 286356 1101441000168101 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 2 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 1081951000168100 cetirizine hydrochloride 10 mg tablet, 2 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +688081000168108 Budenofalk 2 mg/application enema, 2 x 14 applications, aerosol cans 179575 688071000168105 Budenofalk 2 mg/application enema, 2 x 14 applications 157961000036102 Budenofalk 2 mg/application enema 143301000036105 Budenofalk 143301000036105 Budenofalk 688061000168104 budesonide 2 mg/application enema, 2 x 14 applications 157971000036105 budesonide 2 mg/application enema 21307011000036104 budesonide +18723011000036107 Perindo 2 mg uncoated tablet, 30, blister pack 121747 11686011000036109 Perindo 2 mg uncoated tablet, 30 4790011000036105 Perindo 2 mg uncoated tablet 3491011000036108 Perindo 3491011000036108 Perindo 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +1076781000168107 Astazol 5 mg/100 mL injection solution, 6 x 100 mL bags 182209 1076771000168109 Astazol 5 mg/100 mL injection solution, 6 x 100 mL bags 1076701000168104 Astazol 5 mg/100 mL injection solution, 100 mL bag 1076691000168104 Astazol 1076691000168104 Astazol 1076761000168103 zoledronic acid 5 mg/100 mL injection, 6 x 100 mL bags 731431000168106 zoledronic acid 5 mg/100 mL injection, bag 21790011000036102 zoledronic acid +926832011000036106 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 60, blister pack 176510 926228011000036104 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 60 925685011000036101 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +68985011000036103 Nicotinell Liquorice 2 mg chewing gum, 180, blister pack 136134 66787011000036105 Nicotinell Liquorice 2 mg chewing gum, 180 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71512011000036109 nicotine 2 mg gum, 180 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +74844011000036103 Funnel Web Spider Antivenom (CSL) 125 units powder for injection, 1 vial 31847 74331011000036100 Funnel Web Spider Antivenom (CSL) 125 units powder for injection, 1 vial 73829011000036103 Funnel Web Spider Antivenom (CSL) 125 units powder for injection, 125 units vial 73771011000036100 Funnel Web Spider Antivenom (CSL) 73771011000036100 Funnel Web Spider Antivenom (CSL) 75437011000036108 funnel web spider antivenom 125 units injection, 1 vial 75057011000036101 funnel web spider antivenom 125 units injection, vial 75003011000036102 funnel web spider antivenom +61276011000036105 Dimetapp Headcold and Flu sugar coated tablet, 20, blister pack 77894 57212011000036101 Dimetapp Headcold and Flu sugar coated tablet, 20 54239011000036109 Dimetapp Headcold and Flu sugar coated tablet 53561011000036107 Dimetapp Headcold and Flu 53561011000036107 Dimetapp Headcold and Flu 63766011000036104 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 20 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +862051000168109 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100, bottle 167282 862041000168107 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100 862021000168101 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet 19091000168105 Caltrate 600 mg with Vitamin D 400 IU 19091000168105 Caltrate 600 mg with Vitamin D 400 IU 862031000168103 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 100 862011000168108 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet 733951000168109 calcium + colecalciferol +110911000036109 Emend 165 mg hard capsule, 1, blister pack 182320 109171000036106 Emend 165 mg hard capsule, 1 106881000036109 Emend 165 mg hard capsule 3261011000036105 Emend 3261011000036105 Emend 109181000036108 aprepitant 165 mg capsule, 1 106891000036106 aprepitant 165 mg capsule 21632011000036103 aprepitant +34685011000036108 Amlodipine (Chemmart) 10 mg uncoated tablet, 30, blister pack 135131 34271011000036100 Amlodipine (Chemmart) 10 mg uncoated tablet, 30 33999011000036107 Amlodipine (Chemmart) 10 mg uncoated tablet 33922011000036106 Amlodipine (Chemmart) 33922011000036106 Amlodipine (Chemmart) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +44629011000036102 Levitra 5 mg film-coated tablet, 6, blister pack 90498 42082011000036100 Levitra 5 mg film-coated tablet, 6 40348011000036103 Levitra 5 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46849011000036102 vardenafil 5 mg tablet, 6 45332011000036108 vardenafil 5 mg tablet 44856011000036100 vardenafil +931440011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 65 x 50 mL bags 144596 930619011000036107 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 65 x 50 mL bags 929976011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932375011000036102 sodium chloride 0.9% (450 mg/50 mL) injection, 65 x 50 mL bags 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +964331000168103 Normatens 300 microgram film-coated tablet, 28, blister pack 114123 964321000168101 Normatens 300 microgram film-coated tablet, 28 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964311000168108 moxonidine 300 microgram tablet, 28 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +651871000168100 Capecitabine (DRLA) 150 mg film-coated tablet, 60, blister pack 200935 651861000168106 Capecitabine (DRLA) 150 mg film-coated tablet, 60 651851000168109 Capecitabine (DRLA) 150 mg film-coated tablet 651841000168107 Capecitabine (DRLA) 651841000168107 Capecitabine (DRLA) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +962891000168102 Arflox 500 mg film-coated tablet, 2, blister pack 92365 962881000168100 Arflox 500 mg film-coated tablet, 2 962861000168109 Arflox 500 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 962871000168103 ciprofloxacin 500 mg tablet, 2 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +671931000168105 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 50, blister pack 196492 671921000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 50 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 671911000168100 metoclopramide hydrochloride 10 mg tablet, 50 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +1032031000168107 Aten 100 mg film-coated tablet, 84, blister pack 197718 1032021000168109 Aten 100 mg film-coated tablet, 84 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1032011000168102 atenolol 100 mg tablet, 84 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +723891000168108 TYR Tylactin RTD containing 15 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 723881000168105 TYR Tylactin RTD containing 15 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 723871000168107 TYR Tylactin RTD containing 15 g of protein equivalent oral liquid solution, 250 mL carton 723861000168101 TYR Tylactin RTD 723861000168101 TYR Tylactin RTD 704961000168100 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent oral liquid, 30 x 250 mL cartons 704941000168104 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent oral liquid, 250 mL carton 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +954371000168106 Wellvone 250 mg film-coated tablet, 200, blister pack 52264 954361000168100 Wellvone 250 mg film-coated tablet, 200 954301000168101 Wellvone 250 mg film-coated tablet 3057011000036104 Wellvone 3057011000036104 Wellvone 954351000168102 atovaquone 250 mg tablet, 200 954291000168102 atovaquone 250 mg tablet 21877011000036108 atovaquone +1065221000168100 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 12, blister pack 294343 1065211000168107 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 12 1065171000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 63609011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 12 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +160171000036101 Montelukast (Chemmart) 10 mg film-coated tablet, 28, blister pack 170247 158911000036103 Montelukast (Chemmart) 10 mg film-coated tablet, 28 158081000036105 Montelukast (Chemmart) 10 mg film-coated tablet 123651000036102 Montelukast (Chemmart) 123651000036102 Montelukast (Chemmart) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +82051000036101 Cyproterone Acetate (PS) 50 mg uncoated tablet, 50, bottle 184227 80581000036102 Cyproterone Acetate (PS) 50 mg uncoated tablet, 50 78481000036108 Cyproterone Acetate (PS) 50 mg uncoated tablet 77781000036100 Cyproterone Acetate (PS) 77781000036100 Cyproterone Acetate (PS) 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +1047841000168107 Buprenorphine (Sandoz) 20 microgram/hour patch, 1, sachet 269678 1047831000168103 Buprenorphine (Sandoz) 20 microgram/hour patch, 1 1047821000168101 Buprenorphine (Sandoz) 20 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046541000168107 buprenorphine 20 microgram/hour patch, 1 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +19391011000036100 Neotigason 25 mg hard capsule, 100, blister pack 52456 12676011000036103 Neotigason 25 mg hard capsule, 100 4603011000036106 Neotigason 25 mg hard capsule 2993011000036100 Neotigason 2993011000036100 Neotigason 27278011000036103 acitretin 25 mg capsule, 100 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +1042221000168100 Atorvastatin (AS) 80 mg film-coated tablet, 10, blister pack 178526 1042211000168107 Atorvastatin (AS) 80 mg film-coated tablet, 10 1042201000168109 Atorvastatin (AS) 80 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +79044011000036103 Bispro 5 mg film-coated tablet, 10, blister pack 130180 78791011000036108 Bispro 5 mg film-coated tablet, 10 78626011000036101 Bispro 5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79207011000036109 bisoprolol fumarate 5 mg tablet, 10 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +929004011000036104 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 4, blister pack 158915 928365011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 4 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929219011000036106 valaciclovir 500 mg tablet, 4 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +749751000168107 Tacrolimus (Actavis) 500 microgram hard capsule, 50, blister pack 224280 749741000168105 Tacrolimus (Actavis) 500 microgram hard capsule, 50 749711000168106 Tacrolimus (Actavis) 500 microgram hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 749271000168105 tacrolimus 500 microgram capsule, 50 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +909641000168103 Cisatracurium (HHH) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 226861 909631000168107 Cisatracurium (HHH) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 909621000168109 Cisatracurium (HHH) 20 mg/10 mL injection solution, 10 mL ampoule 909461000168101 Cisatracurium (HHH) 909461000168101 Cisatracurium (HHH) 909161000168108 cisatracurium 20 mg/10 mL injection, 5 x 10 mL ampoules 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +84379011000036100 Zopral 30 mg enteric capsule, 28, blister pack 166765 84071011000036100 Zopral 30 mg enteric capsule, 28 83694011000036100 Zopral 30 mg enteric capsule 51411000168101 Zopral 51411000168101 Zopral 84657011000036101 lansoprazole 30 mg enteric capsule, 28 22595011000036106 lansoprazole 30 mg enteric capsule 21491011000036101 lansoprazole +670561000168102 Amlodipine/Atorvastatin 10/10 (Blooms The Chemist) film-coated tablet, 30, blister pack 214397 670551000168104 Amlodipine/Atorvastatin 10/10 (Blooms The Chemist) film-coated tablet, 30 670541000168101 Amlodipine/Atorvastatin 10/10 (Blooms The Chemist) film-coated tablet 670531000168105 Amlodipine/Atorvastatin 10/10 (Blooms The Chemist) 670531000168105 Amlodipine/Atorvastatin 10/10 (Blooms The Chemist) 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +50687011000036106 Cefalexin (Sandoz) 500 mg hard capsule, 20, blister pack 78980 49711011000036104 Cefalexin (Sandoz) 500 mg hard capsule, 20 48839011000036106 Cefalexin (Sandoz) 500 mg hard capsule 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +69636011000036104 Intralipid 20% (100 g/500 mL) intravenous infusion injection, 12 x 500 mL bags 77746 67435011000036103 Intralipid 20% (100 g/500 mL) intravenous infusion injection, 12 x 500 mL bags 65663011000036105 Intralipid 20% (100 g/500 mL) intravenous infusion injection, 500 mL bag 65008011000036106 Intralipid 65008011000036106 Intralipid 71965011000036107 soya oil 20% (100 g/500 mL) injection, 12 x 500 mL bags 70266011000036106 soya oil 20% (100 g/500 mL) injection, bag 69767011000036104 soya oil +682071000168107 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet, 100, blister pack 214453 682061000168101 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet, 100 682001000168102 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +60778011000036107 Vectavir 1% cream, 5 g, tube 54742 56736011000036102 Vectavir 1% cream, 5 g 54056011000036105 Vectavir 1% cream 53127011000036101 Vectavir 53127011000036101 Vectavir 63539011000036101 penciclovir 1% cream, 5 g 62007011000036108 penciclovir 1% cream 61783011000036103 penciclovir +60948011000036101 Claratyne 10 mg effervescent tablet, 28, tube 62135 56891011000036104 Claratyne 10 mg effervescent tablet, 28 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63635011000036108 loratadine 10 mg effervescent tablet, 28 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +933240101000036105 Fluoxetine (Sandoz) 20 mg hard capsule, 28, blister pack 64564 933237271000036106 Fluoxetine (Sandoz) 20 mg hard capsule, 28 933234901000036100 Fluoxetine (Sandoz) 20 mg hard capsule 933234311000036104 Fluoxetine (Sandoz) 933234311000036104 Fluoxetine (Sandoz) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +68685011000036104 Obstetric Care (Orion) 1% lotion, 500 g, bottle 12727 66707011000036109 Obstetric Care (Orion) 1% lotion, 500 g 65455011000036103 Obstetric Care (Orion) 1% lotion 65151011000036101 Obstetric Care (Orion) 65151011000036101 Obstetric Care (Orion) 71390011000036107 chlorhexidine gluconate 1% lotion, 500 g 69990011000036105 chlorhexidine gluconate 1% lotion 21404011000036101 chlorhexidine +61190011000036102 Diclac Anti-Inflammatory (Hexal) 25 mg enteric tablet, 30, blister pack 75245 57126011000036107 Diclac Anti-Inflammatory (Hexal) 25 mg enteric tablet, 30 54209011000036104 Diclac Anti-Inflammatory (Hexal) 25 mg enteric tablet 19661000168108 Diclac Anti-Inflammatory (Hexal) 19661000168108 Diclac Anti-Inflammatory (Hexal) 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +920787011000036107 Norfloxacin (Ascent Pharma) 400 mg film-coated tablet, 6, blister pack 79112 920466011000036101 Norfloxacin (Ascent Pharma) 400 mg film-coated tablet, 6 920199011000036108 Norfloxacin (Ascent Pharma) 400 mg film-coated tablet 920099011000036104 Norfloxacin (Ascent Pharma) 920099011000036104 Norfloxacin (Ascent Pharma) 920869011000036100 norfloxacin 400 mg tablet, 6 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +955741000168102 Diltiazem (WL) 60 mg uncoated tablet, 90, blister pack 55262 955731000168106 Diltiazem (WL) 60 mg uncoated tablet, 90 955721000168108 Diltiazem (WL) 60 mg uncoated tablet 955711000168101 Diltiazem (WL) 955711000168101 Diltiazem (WL) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +160251000036104 Crosuva 40 mg film-coated tablet, 30, blister pack 183649 158991000036108 Crosuva 40 mg film-coated tablet, 30 158261000036107 Crosuva 40 mg film-coated tablet 157751000036102 Crosuva 157751000036102 Crosuva 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +52787011000036105 Fluvax 2009 injection suspension, 10 x 0.5 mL syringes 91583 52597011000036107 Fluvax 2009 injection suspension, 10 x 0.5 mL syringes 52437011000036109 Fluvax 2009 injection suspension, 0.5 mL syringe 49931000168103 Fluvax 2009 49931000168103 Fluvax 2009 52902011000036100 influenza trivalent adult vaccine 2009 injection, 10 x 0.5 mL syringes 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +52787011000036105 Fluvax 2009 injection suspension, 10 x 0.5 mL syringes 117397 52597011000036107 Fluvax 2009 injection suspension, 10 x 0.5 mL syringes 52437011000036109 Fluvax 2009 injection suspension, 0.5 mL syringe 49931000168103 Fluvax 2009 49931000168103 Fluvax 2009 52902011000036100 influenza trivalent adult vaccine 2009 injection, 10 x 0.5 mL syringes 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +52787011000036105 Fluvax 2009 injection suspension, 10 x 0.5 mL syringes 145707 52597011000036107 Fluvax 2009 injection suspension, 10 x 0.5 mL syringes 52437011000036109 Fluvax 2009 injection suspension, 0.5 mL syringe 49931000168103 Fluvax 2009 49931000168103 Fluvax 2009 52902011000036100 influenza trivalent adult vaccine 2009 injection, 10 x 0.5 mL syringes 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +34820011000036103 Methylphenidate (GenRx) 10 mg tablet, 100, blister pack 82990 34395011000036102 Methylphenidate (GenRx) 10 mg tablet, 100 34070011000036103 Methylphenidate (GenRx) 10 mg tablet 33927011000036108 Methylphenidate (GenRx) 33927011000036108 Methylphenidate (GenRx) 27703011000036105 methylphenidate hydrochloride 10 mg tablet, 100 23038011000036102 methylphenidate hydrochloride 10 mg tablet 21277011000036101 methylphenidate +43678011000036108 Sutent 25 mg capsule, 7, bottle 123146 41288011000036108 Sutent 25 mg capsule, 7 39938011000036109 Sutent 25 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46223011000036106 sunitinib 25 mg capsule, 7 45035011000036101 sunitinib 25 mg capsule 44859011000036109 sunitinib +37401011000036101 Marcain 0.5% (50 mg/10 mL) injection solution, 50 x 10 mL ampoules 11937 36672011000036101 Marcain 0.5% (50 mg/10 mL) injection solution, 50 x 10 mL ampoules 36036011000036107 Marcain 0.5% (50 mg/10 mL) injection solution, 10 mL ampoule 12651000168100 Marcain 12651000168100 Marcain 38585011000036104 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, 50 x 10 mL ampoules 37857011000036108 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, ampoule 37702011000036102 bupivacaine +68711011000036106 Potassium Chloride Sterile (Pfizer (Perth)) 1 g (potassium 13.4 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 10794 66555011000036105 Potassium Chloride Sterile (Pfizer (Perth)) 1 g (potassium 13.4 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 65413011000036109 Potassium Chloride Sterile (Pfizer (Perth)) 1 g (potassium 13.4 mmol)/10 mL concentrated injection, 10 mL ampoule 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 71282011000036103 potassium chloride 1 g (potassium 13.4 mmol)/10 mL injection, 50 x 10 mL ampoules 69928011000036102 potassium chloride 1 g (potassium 13.4 mmol)/10 mL injection, ampoule 21274011000036107 potassium chloride +682051000168103 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet, 30, blister pack 214453 682041000168100 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet, 30 682001000168102 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 682031000168109 pramipexole dihydrochloride monohydrate 1 mg tablet, 30 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +82071000036106 Cyproterone Acetate (PS) 100 mg uncoated tablet, 50, bottle 184234 80591000036100 Cyproterone Acetate (PS) 100 mg uncoated tablet, 50 78411000036100 Cyproterone Acetate (PS) 100 mg uncoated tablet 77781000036100 Cyproterone Acetate (PS) 77781000036100 Cyproterone Acetate (PS) 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +84287011000036105 Pantoprazole (Sandoz) 20 mg enteric tablet, 30, blister pack 147362 83980011000036108 Pantoprazole (Sandoz) 20 mg enteric tablet, 30 83616011000036109 Pantoprazole (Sandoz) 20 mg enteric tablet 83562011000036104 Pantoprazole (Sandoz) 83562011000036104 Pantoprazole (Sandoz) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +50534011000036100 Peg (7422) 7.5 cm x 1.3 m bandage, 1, carton 49508011000036106 Peg (7422) 7.5 cm x 1.3 m bandage, 1 48500011000036106 Peg (7422) 7.5 cm x 1.3 m bandage 57561000168108 Peg (7422) 57561000168108 Peg (7422) 51458011000036107 bandage retention cohesive heavy 7.5 cm x 1.3 m bandage, 1 50965011000036103 bandage retention cohesive heavy 7.5 cm x 1.3 m bandage 50704011000036109 bandage retention cohesive heavy +1047881000168102 Buprenorphine (Sandoz) 20 microgram/hour patch, 2, sachet 269678 1047871000168100 Buprenorphine (Sandoz) 20 microgram/hour patch, 2 1047821000168101 Buprenorphine (Sandoz) 20 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 26682011000036106 buprenorphine 20 microgram/hour patch, 2 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +30591000036106 Ibuprofen Migraine Pain (Medichoice) 200 mg soft capsule, 24, blister pack 176201 28721000036101 Ibuprofen Migraine Pain (Medichoice) 200 mg soft capsule, 24 26771000036103 Ibuprofen Migraine Pain (Medichoice) 200 mg soft capsule 40411000168106 Ibuprofen Migraine Pain (Medichoice) 40411000168106 Ibuprofen Migraine Pain (Medichoice) 63930011000036103 ibuprofen 200 mg capsule, 24 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +61020011000036104 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 25 mL, bottle 66734 56963011000036107 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 25 mL 54141011000036109 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 10 mL 53246011000036104 Robitussin Dry Cough Forte 53246011000036104 Robitussin Dry Cough Forte 63661011000036103 dextromethorphan hydrobromide monohydrate 30 mg/10 mL oral liquid, 25 mL 62037011000036104 dextromethorphan hydrobromide monohydrate 30 mg/10 mL oral liquid 61744011000036109 dextromethorphan +20601011000036106 Brufen 400 mg film-coated tablet, 30, blister pack 80659 13783011000036102 Brufen 400 mg film-coated tablet, 30 7069011000036108 Brufen 400 mg film-coated tablet 3434011000036100 Brufen 3434011000036100 Brufen 27938011000036102 ibuprofen 400 mg tablet, 30 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +85341000036107 Famciclovir (Generic Health) 500 mg film-coated tablet, 3, blister pack 177014 84511000036103 Famciclovir (Generic Health) 500 mg film-coated tablet, 3 84051000036108 Famciclovir (Generic Health) 500 mg film-coated tablet 77971000036104 Famciclovir (Generic Health) 77971000036104 Famciclovir (Generic Health) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +933239051000036102 Fentanyl (Sandoz) 75 microgram/hour patch, 4, sachet 152568 933235641000036109 Fentanyl (Sandoz) 75 microgram/hour patch, 4 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235651000036107 fentanyl 75 microgram/hour patch, 4 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +933214431000036109 Reditra 100 mg film-coated tablet, 28, blister pack 160780 933203731000036101 Reditra 100 mg film-coated tablet, 28 933195871000036106 Reditra 100 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 46996011000036108 sertraline 100 mg tablet, 28 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +653241000168109 Olanzapine (GH) 2.5 mg uncoated tablet, 28, blister pack 157854 653231000168100 Olanzapine (GH) 2.5 mg uncoated tablet, 28 653221000168103 Olanzapine (GH) 2.5 mg uncoated tablet 154641000036103 Olanzapine (GH) 154641000036103 Olanzapine (GH) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +86070011000036103 Ezovir 250 mg film-coated tablet, 21, blister pack 157788 85730011000036101 Ezovir 250 mg film-coated tablet, 21 85363011000036103 Ezovir 250 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +73251011000036109 Zolpibell 10 mg film-coated tablet, 14, blister pack 119087 73048011000036107 Zolpibell 10 mg film-coated tablet, 14 72953011000036101 Zolpibell 10 mg film-coated tablet 72921011000036103 Zolpibell 72921011000036103 Zolpibell 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +81911000036105 Valsartan/Amlodipine/HCT 160/5/12.5 (Sandoz) film-coated tablet, 28, blister pack 158161 79911000036100 Valsartan/Amlodipine/HCT 160/5/12.5 (Sandoz) film-coated tablet, 28 78171000036102 Valsartan/Amlodipine/HCT 160/5/12.5 (Sandoz) film-coated tablet 56331000168107 Valsartan/Amlodipine/HCT 160/5/12.5 (Sandoz) 56331000168107 Valsartan/Amlodipine/HCT 160/5/12.5 (Sandoz) 922575011000036101 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 28 922093011000036109 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +19921011000036104 Fragmin 10 000 anti-Xa units/mL injection solution, 10 x 1 mL syringes 66626 13166011000036101 Fragmin 10 000 anti-Xa units/mL injection solution, 10 x 1 mL syringes 6449011000036105 Fragmin 10 000 anti-Xa units/mL injection solution, syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 27585011000036109 dalteparin sodium 10 000 anti-Xa units/mL injection, 10 x 1 mL syringes 22924011000036105 dalteparin sodium 10 000 anti-Xa units/mL injection, syringe 21450011000036103 dalteparin sodium +690731000168108 Iptam 50 mg film-coated tablet, 4, blister pack 124086 690721000168105 Iptam 50 mg film-coated tablet, 4 690691000168101 Iptam 50 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +933214591000036106 Levetiracetam (LAPL) 500 mg film-coated tablet, 60, blister pack 161289 933203951000036106 Levetiracetam (LAPL) 500 mg film-coated tablet, 60 933195981000036100 Levetiracetam (LAPL) 500 mg film-coated tablet 933193691000036108 Levetiracetam (LAPL) 933193691000036108 Levetiracetam (LAPL) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +61567011000036106 Gavilast 12 Hour Action 150 mg film-coated tablet, 28, blister pack 94252 57489011000036109 Gavilast 12 Hour Action 150 mg film-coated tablet, 28 54322011000036106 Gavilast 12 Hour Action 150 mg film-coated tablet 23451000168100 Gavilast 12 Hour Action 23451000168100 Gavilast 12 Hour Action 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +817411000168100 Epoprostenol (MYX) (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack, composite pack 211157 817401000168103 Epoprostenol (MYX) (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack 817371000168101 Epoprostenol (MYX) (epoprostenol 500 microgram) powder for injection, 500 microgram vial 817301000168106 Epoprostenol (MYX) 817301000168106 Epoprostenol (MYX) 817391000168100 epoprostenol 500 microgram injection [1 vial] (&) inert substance diluent [2 x 50 mL vials], 1 pack 23254011000036103 epoprostenol 500 microgram injection, vial 21703011000036107 epoprostenol +817411000168100 Epoprostenol (MYX) (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack, composite pack 211157 817401000168103 Epoprostenol (MYX) (1 x 500 microgram vial, 2 x 50 mL inert diluent vials), 1 pack 817381000168103 Epoprostenol (MYX) (inert substance) diluent, 50 mL vial 817301000168106 Epoprostenol (MYX) 817301000168106 Epoprostenol (MYX) 817391000168100 epoprostenol 500 microgram injection [1 vial] (&) inert substance diluent [2 x 50 mL vials], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +37646011000036102 Intal Nebuliser Solution 20 mg/2 mL inhalation solution, 12 x 2 mL ampoules 27755 36912011000036106 Intal Nebuliser Solution 20 mg/2 mL inhalation solution, 12 x 2 mL ampoules 36244011000036107 Intal Nebuliser Solution 20 mg/2 mL inhalation solution, 2 mL ampoule 44351000168106 Intal Nebuliser Solution 44351000168106 Intal Nebuliser Solution 38797011000036109 sodium cromoglycate 20 mg/2 mL inhalation solution, 12 x 2 mL ampoules 38009011000036103 sodium cromoglycate 20 mg/2 mL inhalation solution, ampoule 21253011000036107 cromoglycate +43569011000036100 Stilnox CR 12.5 mg modified release tablet, 14, blister pack 120713 41243011000036107 Stilnox CR 12.5 mg modified release tablet, 14 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46185011000036102 zolpidem tartrate 12.5 mg modified release tablet, 14 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +20359011000036106 Actos 15 mg uncoated tablet, 28, blister pack 76462 13567011000036105 Actos 15 mg uncoated tablet, 28 6849011000036101 Actos 15 mg uncoated tablet 4390011000036109 Actos 4390011000036109 Actos 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +111071000036109 Duloxetine (DRLA) 60 mg enteric capsule, 28, blister pack 195611 109351000036104 Duloxetine (DRLA) 60 mg enteric capsule, 28 106791000036102 Duloxetine (DRLA) 60 mg enteric capsule 106451000036104 Duloxetine (DRLA) 106451000036104 Duloxetine (DRLA) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +24341000036100 Cadatin 5/80 film-coated tablet, 30, blister pack 179139 22741000036106 Cadatin 5/80 film-coated tablet, 30 20111000036105 Cadatin 5/80 film-coated tablet 58021000168105 Cadatin 5/80 58021000168105 Cadatin 5/80 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +817501000168102 Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial 14667 817491000168109 Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial 817471000168108 Colistin (Link) 150 mg (4.5 million units) powder for injection, 150 mg vial 62351000168107 Colistin (Link) 62351000168107 Colistin (Link) 817481000168106 colistin 150 mg (4.5 million units) injection, 1 vial 817461000168102 colistin 150 mg (4.5 million units) injection, vial 817451000168104 colistin +1091081000168107 Concentrated Antiseptic Sore Throat Gargle (Terry White Chemists) 7.5% mouthwash, 15 mL, bottle 280614 1091071000168109 Concentrated Antiseptic Sore Throat Gargle (Terry White Chemists) 7.5% mouthwash, 15 mL 1091061000168103 Concentrated Antiseptic Sore Throat Gargle (Terry White Chemists) 7.5% mouthwash 1091041000168102 Concentrated Antiseptic Sore Throat Gargle (Terry White Chemists) 1091041000168102 Concentrated Antiseptic Sore Throat Gargle (Terry White Chemists) 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +756921000168106 Duloxetine (Sandoz) 30 mg enteric capsule, 28, blister pack 197161 756911000168104 Duloxetine (Sandoz) 30 mg enteric capsule, 28 756851000168106 Duloxetine (Sandoz) 30 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +756921000168106 Duloxetine (Sandoz) 30 mg enteric capsule, 28, blister pack 199266 756911000168104 Duloxetine (Sandoz) 30 mg enteric capsule, 28 756851000168106 Duloxetine (Sandoz) 30 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +87712011000036106 Galantyl 24 mg modified release capsule, 28, blister pack 157933 87455011000036101 Galantyl 24 mg modified release capsule, 28 87318011000036108 Galantyl 24 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 28250011000036107 galantamine 24 mg modified release capsule, 28 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +56451000036100 Spirigel 68% gel, 60 mL, bottle 160935 52521000036108 Spirigel 68% gel, 60 mL 48831000036108 Spirigel 68% gel 48151000036108 Spirigel 48151000036108 Spirigel 52541000036100 ethanol 68% gel, 60 mL 48841000036103 ethanol 68% gel 69846011000036106 ethanol +50445011000036109 Hydrocoll (900938/1) 10 cm x 10 cm dressing, 10, carton 49362011000036105 Hydrocoll (900938/1) 10 cm x 10 cm dressing, 10 48467011000036103 Hydrocoll (900938/1) 10 cm x 10 cm dressing 47621000168102 Hydrocoll (900938/1) 47621000168102 Hydrocoll (900938/1) 51337011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing, 10 50871011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +650341000168106 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 7, blister pack 202108 650331000168102 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 7 650321000168100 Pritor/Amlodipine 80 mg/5 mg multilayer tablet 650241000168100 Pritor/Amlodipine 80 mg/5 mg 650241000168100 Pritor/Amlodipine 80 mg/5 mg 932425011000036107 telmisartan 80 mg + amlodipine 5 mg tablet, 7 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +819031000168105 Combigesic film-coated tablet, 30, blister pack 268812 819021000168107 Combigesic film-coated tablet, 30 818951000168108 Combigesic film-coated tablet 818911000168107 Combigesic 818911000168107 Combigesic 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +800301000168105 Abyraz 30 mg uncoated tablet, 90, blister pack 159504 800291000168109 Abyraz 30 mg uncoated tablet, 90 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800281000168106 aripiprazole 30 mg tablet, 90 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +920800011000036107 Avodart 500 microgram soft capsule, 30, blister pack 90434 920479011000036102 Avodart 500 microgram soft capsule, 30 920211011000036106 Avodart 500 microgram soft capsule 920072011000036104 Avodart 920072011000036104 Avodart 920870011000036102 dutasteride 500 microgram capsule, 30 920831011000036107 dutasteride 500 microgram capsule 920821011000036105 dutasteride +748381000168106 Morphine MR (CH) 30 mg modified release tablet, 28, blister pack 225430 748371000168108 Morphine MR (CH) 30 mg modified release tablet, 28 748301000168103 Morphine MR (CH) 30 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 929756011000036100 morphine sulfate pentahydrate 30 mg modified release tablet, 28 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +1032171000168106 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 30, bottle 173488 1032161000168100 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 30 1032101000168101 Atorvastatin (Ranbaxy) 40 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +152541000036107 Lamisil 1% spray, 15 mL, aerosol can 59716 150901000036102 Lamisil 1% spray, 15 mL 148131000036107 Lamisil 1% spray 34081000168103 Lamisil 34081000168103 Lamisil 63598011000036101 terbinafine hydrochloride 1% spray, 15 mL 62024011000036108 terbinafine hydrochloride 1% spray 21575011000036104 terbinafine +951311000168100 Tenofovir (GH) 291 mg film-coated tablet, 30, bottle 269193 951301000168103 Tenofovir (GH) 291 mg film-coated tablet, 30 951281000168102 Tenofovir (GH) 291 mg film-coated tablet 951261000168106 Tenofovir (GH) 951261000168106 Tenofovir (GH) 951291000168104 tenofovir disoproxil phosphate 291 mg tablet, 30 951271000168100 tenofovir disoproxil phosphate 291 mg tablet 851521000168106 tenofovir disoproxil +1084091000168109 Salofalk 500 mg modified release granules, 100 sachets 80648 1084081000168106 Salofalk 500 mg modified release granules, 100 sachets 1084031000168105 Salofalk 500 mg modified release granules, 500 mg sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084071000168108 mesalazine 500 mg modified release granules, 100 sachets 1084021000168107 mesalazine 500 mg modified release granules, sachet 21351011000036101 mesalazine +1096951000168107 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 32, blister pack 287475 1096941000168105 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 32 1096831000168105 Strepsils Extra Honey and Lemon 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 1096931000168101 hexylresorcinol 2.4 mg lozenge, 32 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +1036461000168106 Aranesp 500 microgram/mL injection solution, 1 mL injection device 122856 1036451000168109 Aranesp 500 microgram/mL injection solution, 1 mL injection device 1036431000168103 Aranesp 500 microgram/mL injection solution, injection device 6471000168109 Aranesp 6471000168109 Aranesp 1036441000168107 darbepoetin alfa 500 microgram/mL injection, 1 mL injection device 1036421000168101 darbepoetin alfa 500 microgram/mL injection, injection device 21234011000036105 darbepoetin alfa +110751000036106 Provive MCT-LCT 1% 200 mg/20 mL injection emulsion, 5 x 20 mL vials 162318 108971000036102 Provive MCT-LCT 1% 200 mg/20 mL injection emulsion, 5 x 20 mL vials 106921000036102 Provive MCT-LCT 1% 200 mg/20 mL injection emulsion, 20 mL vial 35451000168102 Provive MCT-LCT 1% 35451000168102 Provive MCT-LCT 1% 927311011000036108 propofol 200 mg/20 mL injection, 5 x 20 mL vials 38040011000036103 propofol 200 mg/20 mL injection, vial 37750011000036109 propofol +20754011000036106 Strattera 18 mg hard capsule, 28, blister pack 90593 13923011000036101 Strattera 18 mg hard capsule, 28 7211011000036103 Strattera 18 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +808891000168108 Perindopril Arginine/Amlodipine 5/5 (Apo) uncoated tablet, 30, bottle 224306 808881000168105 Perindopril Arginine/Amlodipine 5/5 (Apo) uncoated tablet, 30 808871000168107 Perindopril Arginine/Amlodipine 5/5 (Apo) uncoated tablet 808861000168101 Perindopril Arginine/Amlodipine 5/5 (Apo) 808861000168101 Perindopril Arginine/Amlodipine 5/5 (Apo) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +69679011000036105 Dencorub Anti-Inflammatory 1% gel, 100 g, tube 82606 67478011000036107 Dencorub Anti-Inflammatory 1% gel, 100 g 65678011000036108 Dencorub Anti-Inflammatory 1% gel 64960011000036106 Dencorub Anti-Inflammatory 64960011000036106 Dencorub Anti-Inflammatory 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +886531000168109 Eloctate (1 x 500 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210519 886521000168106 Eloctate (1 x 500 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886451000168104 Eloctate (inert substance) diluent, 3 mL syringe 886371000168101 Eloctate 886371000168101 Eloctate 886511000168104 efmoroctocog alfa 500 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886441000168101 inert substance diluent, 3 mL syringe 21220011000036103 inert substance +886531000168109 Eloctate (1 x 500 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210519 886521000168106 Eloctate (1 x 500 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886501000168102 Eloctate (efmoroctocog alfa 500 units) powder for injection, 500 units vial 886371000168101 Eloctate 886371000168101 Eloctate 886511000168104 efmoroctocog alfa 500 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886491000168109 efmoroctocog alfa 500 units injection, vial 886411000168100 efmoroctocog alfa +928991011000036109 Valaciclovir (Chemmart) 500 mg film-coated tablet, 42, blister pack 158913 928352011000036100 Valaciclovir (Chemmart) 500 mg film-coated tablet, 42 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1099601000168106 Tranexamic Acid (RMB) 500 mg film-coated tablet, 100, bottle 272731 1099581000168102 Tranexamic Acid (RMB) 500 mg film-coated tablet, 100 1099571000168100 Tranexamic Acid (RMB) 500 mg film-coated tablet 1099561000168106 Tranexamic Acid (RMB) 1099561000168106 Tranexamic Acid (RMB) 26862011000036101 tranexamic acid 500 mg tablet, 100 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +933231651000036109 Strepsils Dry Cough 5 mg lozenge, 16, blister pack 69834 933226261000036102 Strepsils Dry Cough 5 mg lozenge, 16 933221091000036107 Strepsils Dry Cough 5 mg lozenge 53599011000036108 Strepsils Dry Cough 53599011000036108 Strepsils Dry Cough 933226271000036105 dextromethorphan hydrobromide monohydrate 5 mg lozenge, 16 933221101000036103 dextromethorphan hydrobromide monohydrate 5 mg lozenge 61744011000036109 dextromethorphan +1101131000168101 Denavil 150 mg film-coated tablet, 60, bottle 172814 1101121000168104 Denavil 150 mg film-coated tablet, 60 1101111000168106 Denavil 150 mg film-coated tablet 1101071000168104 Denavil 1101071000168104 Denavil 27321011000036100 lamivudine 150 mg tablet, 60 22674011000036105 lamivudine 150 mg tablet 21665011000036104 lamivudine +60009011000036108 Lorapaed 1 mg/mL oral liquid solution, 150 mL, bottle 123270 55971011000036104 Lorapaed 1 mg/mL oral liquid solution, 150 mL 53743011000036103 Lorapaed 1 mg/mL oral liquid solution 53259011000036106 Lorapaed 53259011000036106 Lorapaed 63589011000036105 loratadine 1 mg/mL oral liquid, 150 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +60599011000036108 Benzac W 5% gel, 10 g, tube 18558 56557011000036104 Benzac W 5% gel, 10 g 53972011000036100 Benzac W 5% gel 7001000168107 Benzac W 7001000168107 Benzac W 63423011000036107 benzoyl peroxide 5% gel, 10 g 61955011000036100 benzoyl peroxide 5% gel 61709011000036104 benzoyl peroxide +61037011000036100 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution, 200 mL, bottle 67301 56980011000036102 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution, 200 mL 54146011000036104 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution 34191000168104 Dry Tickly Cough Medicine (Pharmacist) 34191000168104 Dry Tickly Cough Medicine (Pharmacist) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +929020011000036100 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 1, blister pack 160640 928381011000036101 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 1 927963011000036103 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet 927817011000036102 Risedronate Sodium (Terry White Chemists) 927817011000036102 Risedronate Sodium (Terry White Chemists) 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +857701000168101 Allermom Aqueous 50 microgram/actuation nasal spray, 60 actuations, pump pack 233572 857691000168101 Allermom Aqueous 50 microgram/actuation nasal spray, 60 actuations 857671000168102 Allermom Aqueous 50 microgram/actuation nasal spray, actuation 857651000168106 Allermom Aqueous 857651000168106 Allermom Aqueous 857681000168104 mometasone furoate 50 microgram/actuation nasal spray, 60 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +933231731000036107 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 10 x 0.5 mL syringes 61939 933226011000036107 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 10 x 0.5 mL syringes 40178011000036108 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 0.5 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 933226021000036100 dalteparin sodium 12 500 anti-Xa units/0.5 mL injection, 10 x 0.5 mL syringes 45214011000036102 dalteparin sodium 12 500 anti-Xa units/0.5 mL injection, syringe 21450011000036103 dalteparin sodium +44568011000036106 Bicor 1.25 mg film-coated tablet, 7, blister pack 81603 42021011000036102 Bicor 1.25 mg film-coated tablet, 7 40323011000036105 Bicor 1.25 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 46794011000036107 bisoprolol fumarate 1.25 mg tablet, 7 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1001741000168101 Pregabalin (Apo) 50 mg hard capsule, 14, blister pack 193256 1000981000168100 Pregabalin (Apo) 50 mg hard capsule, 14 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +767151000168108 Risperidone (Amneal) 4 mg film-coated tablet, 60, blister pack 159970 767141000168106 Risperidone (Amneal) 4 mg film-coated tablet, 60 767131000168102 Risperidone (Amneal) 4 mg film-coated tablet 767061000168106 Risperidone (Amneal) 767061000168106 Risperidone (Amneal) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +1076621000168101 Quetiapine (Auro) 200 mg film-coated tablet, 60, blister pack 172829 1076611000168108 Quetiapine (Auro) 200 mg film-coated tablet, 60 1075241000168101 Quetiapine (Auro) 200 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1088341000168108 Lorstat 20 mg film-coated tablet, 500, bottle 181410 1088331000168104 Lorstat 20 mg film-coated tablet, 500 20791000036101 Lorstat 20 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1088321000168102 atorvastatin 20 mg tablet, 500 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +663271000168106 Onsetron 8 mg/4 mL injection solution, 10 x 4 mL ampoules 205589 663261000168100 Onsetron 8 mg/4 mL injection solution, 10 x 4 mL ampoules 5547011000036106 Onsetron 8 mg/4 mL injection solution, 4 mL ampoule 7751000168109 Onsetron 7751000168109 Onsetron 922639011000036105 ondansetron 8 mg/4 mL injection, 10 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +43661011000036109 Duac Once Daily gel, 45 g, tube 100707 41091011000036109 Duac Once Daily gel, 45 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46077011000036107 clindamycin 1% + benzoyl peroxide 5% gel, 45 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +56411000036104 Amline 10 mg uncoated tablet, 10, blister pack 160812 52301000036108 Amline 10 mg uncoated tablet, 10 48921000036100 Amline 10 mg uncoated tablet 48351000036105 Amline 48351000036105 Amline 86413011000036108 amlodipine 10 mg tablet, 10 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +68789011000036107 Tineafax 1% cream, 30 g, tube 11007 66585011000036101 Tineafax 1% cream, 30 g 65410011000036101 Tineafax 1% cream 65024011000036105 Tineafax 65024011000036105 Tineafax 71308011000036107 tolnaftate 1% cream, 30 g 70063011000036107 tolnaftate 1% cream 21680011000036105 tolnaftate +687921000168107 Paracetamol (AFT) 1 g/100 mL injection solution, 10 x 100 mL vials 191802 687911000168100 Paracetamol (AFT) 1 g/100 mL injection solution, 10 x 100 mL vials 687901000168103 Paracetamol (AFT) 1 g/100 mL injection solution, 100 mL vial 687891000168102 Paracetamol (AFT) 687891000168102 Paracetamol (AFT) 164061000036104 paracetamol 1 g/100 mL injection, 10 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +52741011000036109 Vedilol 6.25 mg uncoated tablet, 60, blister pack 136873 52553011000036109 Vedilol 6.25 mg uncoated tablet, 60 52415011000036107 Vedilol 6.25 mg uncoated tablet 52393011000036101 Vedilol 52393011000036101 Vedilol 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +60357011000036105 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 25 mL, bottle (Old Formulation 2002) 14123 56316011000036107 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 25 mL (Old Formulation 2002) 53873011000036100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 5 mL (Old Formulation 2002) 26351000168102 Benadryl Cough Medicine for Dry Coughs 26351000168102 Benadryl Cough Medicine for Dry Coughs 63305011000036106 dextromethorphan hydrobromide monohydrate 15 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 25 mL 61913011000036106 dextromethorphan hydrobromide monohydrate 15 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61751011000036109 dextromethorphan + pseudoephedrine +59767011000036103 Mersyndol uncoated tablet, 20, blister pack 10110 55657011000036109 Mersyndol uncoated tablet, 20 53685011000036102 Mersyndol uncoated tablet 50611000168105 Mersyndol 50611000168105 Mersyndol 52897011000036108 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1042261000168105 Nicotine (Amcal) 2 mg lozenge, 144, blister pack 213239 1042251000168108 Nicotine (Amcal) 2 mg lozenge, 144 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 898741000168109 nicotine 2 mg lozenge, 144 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +44810011000036109 Concorz 100 mg film-coated tablet, 28, bottle 98696 42243011000036108 Concorz 100 mg film-coated tablet, 28 7581011000036109 Concorz 100 mg film-coated tablet 3452011000036105 Concorz 3452011000036105 Concorz 46996011000036108 sertraline 100 mg tablet, 28 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +116551000036103 Rosuvastatin (Apo) 5 mg film-coated tablet, 30, bottle 183075 114841000036105 Rosuvastatin (Apo) 5 mg film-coated tablet, 30 113361000036102 Rosuvastatin (Apo) 5 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +813071000168105 Nuromol film-coated tablet, 8, blister pack 225322 813061000168104 Nuromol film-coated tablet, 8 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813051000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 8 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +679261000168109 Benadryl Nightime Raspberry oral liquid solution, 100 mL, bottle 81664 679251000168107 Benadryl Nightime Raspberry oral liquid solution, 100 mL 679241000168105 Benadryl Nightime Raspberry oral liquid solution, 5 mL 679121000168108 Benadryl Nightime 679121000168108 Benadryl Nightime 63798011000036102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 100 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +79626011000036103 Lodam 50 mg hard capsule, 20, blister pack 141150 79468011000036108 Lodam 50 mg hard capsule, 20 79358011000036106 Lodam 50 mg hard capsule 54381000168101 Lodam 54381000168101 Lodam 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +819011000168100 Combigesic film-coated tablet, 12, blister pack 268812 818991000168103 Combigesic film-coated tablet, 12 818951000168108 Combigesic film-coated tablet 818911000168107 Combigesic 818911000168107 Combigesic 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +904021000168100 Celocox 100 mg hard capsule, 20, blister pack 212790 904011000168107 Celocox 100 mg hard capsule, 20 903931000168100 Celocox 100 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1036601000168107 Aranesp with Automatic Needle Guard 500 microgram/mL injection solution, 1 mL syringe 166096 1036591000168100 Aranesp with Automatic Needle Guard 500 microgram/mL injection solution, 1 mL syringe 1036581000168103 Aranesp with Automatic Needle Guard 500 microgram/mL injection solution, syringe 6471000168109 Aranesp 6471000168109 Aranesp 968531000168102 darbepoetin alfa 500 microgram/mL injection, 1 mL syringe 968511000168107 darbepoetin alfa 500 microgram/mL injection, syringe 21234011000036105 darbepoetin alfa +928952011000036106 Finaccord 1 mg film-coated tablet, 28, blister pack 155236 928313011000036102 Finaccord 1 mg film-coated tablet, 28 927942011000036102 Finaccord 1 mg film-coated tablet 927824011000036100 Finaccord 927824011000036100 Finaccord 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +953001000168101 Gabapentin (AN) 300 mg hard capsule, 10, blister pack 263841 952991000168102 Gabapentin (AN) 300 mg hard capsule, 10 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 952981000168100 gabapentin 300 mg capsule, 10 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +933213951000036108 Citalopram (Auro) 40 mg film-coated tablet, 28, blister pack 153674 933201951000036105 Citalopram (Auro) 40 mg film-coated tablet, 28 933194901000036107 Citalopram (Auro) 40 mg film-coated tablet 12311000168107 Citalopram (Auro) 12311000168107 Citalopram (Auro) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1015371000168108 Aripiprazole (ZP) 5 mg uncoated tablet, 100, bottle 217197 1015361000168102 Aripiprazole (ZP) 5 mg uncoated tablet, 100 1015351000168104 Aripiprazole (ZP) 5 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +24981000036108 Atorvastatin (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 153733 22221000036107 Atorvastatin (Terry White Chemists) 10 mg film-coated tablet, 30 20871000036106 Atorvastatin (Terry White Chemists) 10 mg film-coated tablet 19761000036107 Atorvastatin (Terry White Chemists) 19761000036107 Atorvastatin (Terry White Chemists) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +37372011000036106 Xylocaine 2% (40 mg/2 mL) injection solution, 50 x 2 mL ampoules 12020 36693011000036104 Xylocaine 2% (40 mg/2 mL) injection solution, 50 x 2 mL ampoules 36080011000036101 Xylocaine 2% (40 mg/2 mL) injection solution, 2 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 38606011000036103 lidocaine (lignocaine) hydrochloride 2% (40 mg/2 mL) injection, 50 x 2 mL ampoules 37873011000036101 lidocaine (lignocaine) hydrochloride 2% (40 mg/2 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +80038011000036108 Oxaliplatin (Alphapharm) 100 mg powder for injection, 2 vials 130854 79964011000036103 Oxaliplatin (Alphapharm) 100 mg powder for injection, 2 vials 79919011000036101 Oxaliplatin (Alphapharm) 100 mg powder for injection, 100 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80060011000036100 oxaliplatin 100 mg injection, 2 vials 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +944801000168109 Risperidone (Terry White Chemists) 2 mg film-coated tablet, 60, blister pack 127598 944791000168108 Risperidone (Terry White Chemists) 2 mg film-coated tablet, 60 944781000168105 Risperidone (Terry White Chemists) 2 mg film-coated tablet 944371000168108 Risperidone (Terry White Chemists) 944371000168108 Risperidone (Terry White Chemists) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +931505011000036107 Onglyza 5 mg film-coated tablet, 28, blister pack 157907 930666011000036102 Onglyza 5 mg film-coated tablet, 28 929998011000036103 Onglyza 5 mg film-coated tablet 929821011000036106 Onglyza 929821011000036106 Onglyza 932387011000036104 saxagliptin 5 mg tablet, 28 931841011000036101 saxagliptin 5 mg tablet 931810011000036104 saxagliptin +926677011000036101 Nicabate CQ Mint 2 mg lozenge, 48, tube 128779 926147011000036101 Nicabate CQ Mint 2 mg lozenge, 48 87060011000036106 Nicabate CQ Mint 2 mg lozenge 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 927319011000036107 nicotine 2 mg lozenge, 48 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +931711011000036108 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application, 125 mL, bottle 176111 930871011000036108 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application, 125 mL 930083011000036100 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application 76022011000036104 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 76022011000036104 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 932458011000036102 chlorhexidine gluconate 4% application, 125 mL 69954011000036105 chlorhexidine gluconate 4% application 21404011000036101 chlorhexidine +663911000168105 Solu-Medrol 500 mg powder for injection, 5 vials 50691 663901000168107 Solu-Medrol 500 mg powder for injection, 5 vials 36176011000036103 Solu-Medrol (methylprednisolone 500 mg) powder for injection, 500 mg vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 663891000168108 methylprednisolone 500 mg injection, 5 vials 37894011000036107 methylprednisolone 500 mg injection, vial 21605011000036100 methylprednisolone +1070841000168105 Analgesic Calmative (Trust) uncoated tablet, 20, blister pack 217762 1070831000168101 Analgesic Calmative (Trust) uncoated tablet, 20 1070341000168100 Analgesic Calmative (Trust) uncoated tablet 1070331000168109 Analgesic Calmative (Trust) 1070331000168109 Analgesic Calmative (Trust) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +116531000036106 Rosuvastatin (Apo) 10 mg film-coated tablet, 30, blister pack 183073 114821000036102 Rosuvastatin (Apo) 10 mg film-coated tablet, 30 113321000036106 Rosuvastatin (Apo) 10 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +20129011000036101 Persantin SR 200 mg modified release capsule, 60, bottle 73209 13353011000036108 Persantin SR 200 mg modified release capsule, 60 6638011000036104 Persantin SR 200 mg modified release capsule 48991000168109 Persantin SR 48991000168109 Persantin SR 27710011000036104 dipyridamole 200 mg modified release capsule, 60 23045011000036109 dipyridamole 200 mg modified release capsule 21674011000036109 dipyridamole +84405011000036103 Qpril 10 mg film-coated tablet, 30, blister pack 96923 84096011000036102 Qpril 10 mg film-coated tablet, 30 83710011000036100 Qpril 10 mg film-coated tablet 83545011000036104 Qpril 83545011000036104 Qpril 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +933231271000036102 Clear Laxative (Your Pharmacy) 1 g/g powder for oral liquid, 510 g, can 173416 933225341000036101 Clear Laxative (Your Pharmacy) 1 g/g powder for oral liquid, 510 g 933220561000036101 Clear Laxative (Your Pharmacy) 1 g/g powder for oral liquid 933219351000036105 Clear Laxative (Your Pharmacy) 933219351000036105 Clear Laxative (Your Pharmacy) 87831011000036106 macrogol-3350 1 g/g powder for oral liquid, 510 g 87764011000036103 macrogol-3350 1 g/g powder for oral liquid 87750011000036101 macrogol-3350 +931492011000036107 Topira-Lax 100 mg film-coated tablet, 60, blister pack 155197 928312011000036109 Topira-Lax 100 mg film-coated tablet, 60 927941011000036108 Topira-Lax 100 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +1030161000168101 Atomoxetine (Genpar) 40 mg hard capsule, 7, blister pack 234833 1030151000168103 Atomoxetine (Genpar) 40 mg hard capsule, 7 1030141000168100 Atomoxetine (Genpar) 40 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +17893011000036107 Zyloprim 300 mg uncoated tablet, 60, blister pack 11017 11405011000036103 Zyloprim 300 mg uncoated tablet, 60 5690011000036107 Zyloprim 300 mg uncoated tablet 4205011000036109 Zyloprim 4205011000036109 Zyloprim 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +81066011000036107 Iscover 300 mg film-coated tablet, 56, blister pack 151280 80575011000036102 Iscover 300 mg film-coated tablet, 56 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81654011000036100 clopidogrel 300 mg tablet, 56 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +775531000168106 Cisplatin (Pfizer (Perth)) 10 mg/10 mL injection solution, 5 x 10 mL vials 11349 775521000168108 Cisplatin (Pfizer (Perth)) 10 mg/10 mL injection solution, 5 x 10 mL vials 5288011000036106 Cisplatin (Pfizer (Perth)) 10 mg/10 mL injection solution, 10 mL vial 3306011000036107 Cisplatin (Pfizer (Perth)) 3306011000036107 Cisplatin (Pfizer (Perth)) 775511000168101 cisplatin 10 mg/10 mL injection, 5 x 10 mL vials 22297011000036106 cisplatin 10 mg/10 mL injection, vial 21771011000036102 cisplatin +19622011000036109 Camptosar 100 mg/5 mL concentrated injection, 5 mL vial 58806 12891011000036109 Camptosar 100 mg/5 mL concentrated injection, 5 mL vial 6181011000036103 Camptosar 100 mg/5 mL concentrated injection, 5 mL vial 2965011000036101 Camptosar 2965011000036101 Camptosar 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +84345011000036103 Stalevo 75/18.75/200 film-coated tablet, 30, bottle 160686 84038011000036106 Stalevo 75/18.75/200 film-coated tablet, 30 83664011000036102 Stalevo 75/18.75/200 film-coated tablet 1981000168109 Stalevo 75/18.75/200 1981000168109 Stalevo 75/18.75/200 84650011000036102 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 30 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +17908011000036109 Fosinopril Sodium (GenRx) 20 mg uncoated tablet, 30, blister pack 119861 11631011000036105 Fosinopril Sodium (GenRx) 20 mg uncoated tablet, 30 5844011000036104 Fosinopril Sodium (GenRx) 20 mg uncoated tablet 2930011000036104 Fosinopril Sodium (GenRx) 2930011000036104 Fosinopril Sodium (GenRx) 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +83394011000036107 Nebilet 1.25 mg tablet, 28, blister pack 148873 83312011000036102 Nebilet 1.25 mg tablet, 28 83246011000036102 Nebilet 1.25 mg tablet 83226011000036104 Nebilet 83226011000036104 Nebilet 83485011000036102 nebivolol 1.25 mg tablet, 28 83430011000036103 nebivolol 1.25 mg tablet 83418011000036105 nebivolol +18150011000036105 Karvea 75 mg film-coated tablet, 30, bottle 101705 11231011000036108 Karvea 75 mg film-coated tablet, 30 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +676841000168101 Raloxifene Hydrochloride (Terry White Chemists) 60 mg film-coated tablet, 28, blister pack 184793 676831000168105 Raloxifene Hydrochloride (Terry White Chemists) 60 mg film-coated tablet, 28 676821000168107 Raloxifene Hydrochloride (Terry White Chemists) 60 mg film-coated tablet 676811000168100 Raloxifene Hydrochloride (Terry White Chemists) 676811000168100 Raloxifene Hydrochloride (Terry White Chemists) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +1021801000168100 Atelvia 75 mg film-coated tablet, 2, blister pack 163754 1021791000168101 Atelvia 75 mg film-coated tablet, 2 1021781000168104 Atelvia 75 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 800971000168104 risedronate sodium 75 mg tablet, 2 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +61103011000036107 Dermaid Soft 0.5% modified cream, 15 g, tube 71683 57046011000036100 Dermaid Soft 0.5% modified cream, 15 g 54173011000036106 Dermaid Soft 0.5% modified cream 44871000168106 Dermaid Soft 44871000168106 Dermaid Soft 63714011000036108 hydrocortisone 0.5% modified cream, 15 g 62055011000036108 hydrocortisone 0.5% modified cream 21681011000036103 hydrocortisone +18596011000036109 Inderal 40 mg film-coated tablet, 100, bottle 11230 11437011000036104 Inderal 40 mg film-coated tablet, 100 4452011000036108 Inderal 40 mg film-coated tablet 2946011000036102 Inderal 2946011000036102 Inderal 26941011000036106 propranolol hydrochloride 40 mg tablet, 100 22317011000036102 propranolol hydrochloride 40 mg tablet 21392011000036104 propranolol +653081000168105 Capecitabine (GH) 150 mg film-coated tablet, 60, blister pack 200934 653071000168107 Capecitabine (GH) 150 mg film-coated tablet, 60 653061000168101 Capecitabine (GH) 150 mg film-coated tablet 651451000168106 Capecitabine (GH) 651451000168106 Capecitabine (GH) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +60812011000036101 Optrex 0.01% eye drops, 10 mL, bottle 57571 56768011000036108 Optrex 0.01% eye drops, 10 mL 54072011000036108 Optrex 0.01% eye drops 53471011000036109 Optrex 53471011000036109 Optrex 63558011000036105 naphazoline hydrochloride 0.01% eye drops, 10 mL 62016011000036108 naphazoline hydrochloride 0.01% eye drops 21921011000036106 naphazoline +61054011000036105 Nicorette Buccal Inhalation 10 mg breath activated inhalation, 42 cartridges 67823 56997011000036100 Nicorette Buccal Inhalation 10 mg breath activated inhalation, 42 cartridges 54150011000036100 Nicorette Buccal Inhalation 10 mg breath activated inhalation, cartridge 19481000168102 Nicorette Buccal Inhalation 19481000168102 Nicorette Buccal Inhalation 63679011000036107 nicotine 10 mg breath activated inhalation, 42 cartridges 62042011000036102 nicotine 10 mg breath activated inhalation, cartridge 21432011000036100 nicotine +34734011000036108 MS Contin 30 mg modified release tablet, 60, blister pack 43086 34318011000036109 MS Contin 30 mg modified release tablet, 60 4735011000036105 MS Contin 30 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35166011000036105 morphine sulfate pentahydrate 30 mg modified release tablet, 60 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +60642011000036100 Nicotinic Acid (Alphapharm) 250 mg uncoated tablet, 200, bottle 27193 56600011000036102 Nicotinic Acid (Alphapharm) 250 mg uncoated tablet, 200 53997011000036107 Nicotinic Acid (Alphapharm) 250 mg uncoated tablet 53144011000036105 Nicotinic Acid (Alphapharm) 53144011000036105 Nicotinic Acid (Alphapharm) 63452011000036101 nicotinic acid 250 mg tablet, 200 61973011000036103 nicotinic acid 250 mg tablet 61808011000036109 nicotinic acid +1036921000168107 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 30, blister pack 173505 1036911000168100 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 30 1036881000168100 Atorvastatin (Ranbaxy) 10 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +135761000036108 Ropinirole (GA) 2 mg film-coated tablet, 28, blister pack 190143 135151000036109 Ropinirole (GA) 2 mg film-coated tablet, 28 134231000036106 Ropinirole (GA) 2 mg film-coated tablet 134171000036100 Ropinirole (GA) 134171000036100 Ropinirole (GA) 46972011000036104 ropinirole 2 mg tablet, 28 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +670721000168104 Metoprolol Tartrate (AN) 100 mg film-coated tablet, 10, blister pack 192765 670711000168106 Metoprolol Tartrate (AN) 100 mg film-coated tablet, 10 670691000168108 Metoprolol Tartrate (AN) 100 mg film-coated tablet 670681000168105 Metoprolol Tartrate (AN) 670681000168105 Metoprolol Tartrate (AN) 670701000168108 metoprolol tartrate 100 mg tablet, 10 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +44511011000036101 Nebcin 80 mg/2 mL injection solution, 10 x 2 mL vials 77034 41966011000036108 Nebcin 80 mg/2 mL injection solution, 10 x 2 mL vials 40293011000036105 Nebcin 80 mg/2 mL injection solution, 2 mL vial 39703011000036101 Nebcin 39703011000036101 Nebcin 46747011000036106 tobramycin 80 mg/2 mL injection, 10 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +903701000168109 Brillior 300 mg hard capsule, 14, blister pack 224345 903691000168109 Brillior 300 mg hard capsule, 14 903681000168106 Brillior 300 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +55081000036107 Clopidogrel (Apo) 75 mg film-coated tablet, 28, bottle 129642 84880011000036102 Clopidogrel (Apo) 75 mg film-coated tablet, 28 84778011000036107 Clopidogrel (Apo) 75 mg film-coated tablet 18441000168101 Clopidogrel (Apo) 18441000168101 Clopidogrel (Apo) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +55081000036107 Clopidogrel (Apo) 75 mg film-coated tablet, 28, bottle 221806 84880011000036102 Clopidogrel (Apo) 75 mg film-coated tablet, 28 84778011000036107 Clopidogrel (Apo) 75 mg film-coated tablet 18441000168101 Clopidogrel (Apo) 18441000168101 Clopidogrel (Apo) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +79010011000036104 Lexam 10 mg film-coated tablet, 28, blister pack 211387 78819011000036109 Lexam 10 mg film-coated tablet, 28 78636011000036103 Lexam 10 mg film-coated tablet 78594011000036105 Lexam 78594011000036105 Lexam 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +79010011000036104 Lexam 10 mg film-coated tablet, 28, blister pack 135471 78819011000036109 Lexam 10 mg film-coated tablet, 28 78636011000036103 Lexam 10 mg film-coated tablet 78594011000036105 Lexam 78594011000036105 Lexam 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +664231000168106 Midazolam (Act) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207247 664221000168108 Midazolam (Act) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 664161000168109 Midazolam (Act) 5 mg/5 mL injection solution, 5 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +933239861000036107 Meloxicam (Terry White Chemists) 15 mg hard capsule, 100, blister pack 181205 933237181000036101 Meloxicam (Terry White Chemists) 15 mg hard capsule, 100 933234831000036102 Meloxicam (Terry White Chemists) 15 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 52890011000036107 meloxicam 15 mg capsule, 100 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +176971000036106 Latanoprost/Timolol 50/5 (Sandoz) eye drops solution, 2.5 mL, bottle 204403 175221000036105 Latanoprost/Timolol 50/5 (Sandoz) eye drops solution, 2.5 mL 173371000036102 Latanoprost/Timolol 50/5 (Sandoz) eye drops solution 29431000168108 Latanoprost/Timolol 50/5 (Sandoz) 29431000168108 Latanoprost/Timolol 50/5 (Sandoz) 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +82351011000036109 Zyprexa Relprevv (1 x 210 mg vial, 1 x 3 mL diluent vial), 1 pack, composite pack 143658 82140011000036106 Zyprexa Relprevv (1 x 210 mg vial, 1 x 3 mL diluent vial), 1 pack 631991000168107 Zyprexa Relprevv (inert substance) diluent, 3 mL vial 10631000168105 Zyprexa Relprevv 10631000168105 Zyprexa Relprevv 82531011000036107 olanzapine 210 mg modified release injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 631981000168109 inert substance diluent, 3 mL vial 21220011000036103 inert substance +82351011000036109 Zyprexa Relprevv (1 x 210 mg vial, 1 x 3 mL diluent vial), 1 pack, composite pack 143658 82140011000036106 Zyprexa Relprevv (1 x 210 mg vial, 1 x 3 mL diluent vial), 1 pack 82009011000036103 Zyprexa Relprevv (olanzapine 210 mg) modified release injection, 210 mg vial 10631000168105 Zyprexa Relprevv 10631000168105 Zyprexa Relprevv 82531011000036107 olanzapine 210 mg modified release injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 82439011000036100 olanzapine 210 mg modified release injection, vial 21485011000036103 olanzapine +670401000168104 Amlodipine/Atorvastatin 10/20 (Chemmart) film-coated tablet, 30, blister pack 214389 670391000168101 Amlodipine/Atorvastatin 10/20 (Chemmart) film-coated tablet, 30 670381000168104 Amlodipine/Atorvastatin 10/20 (Chemmart) film-coated tablet 670371000168102 Amlodipine/Atorvastatin 10/20 (Chemmart) 670371000168102 Amlodipine/Atorvastatin 10/20 (Chemmart) 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +961681000168106 Singulair 4 mg granules, 28 x 4 g sachets 81450 961671000168108 Singulair 4 mg granules, 28 x 4 g sachets 961621000168107 Singulair 4 mg granules, 4 g sachet 4287011000036103 Singulair 4287011000036103 Singulair 961661000168102 montelukast 4 mg granules, 28 x 4 g sachets 961611000168100 montelukast 4 mg granules, 4 g sachet 21884011000036106 montelukast +20446011000036106 Aranesp 100 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 77958 13649011000036104 Aranesp 100 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 6932011000036101 Aranesp 100 microgram/0.5 mL injection solution, 0.5 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27859011000036102 darbepoetin alfa 100 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23187011000036100 darbepoetin alfa 100 microgram/0.5 mL injection, syringe 21234011000036105 darbepoetin alfa +931595011000036105 Pratin 10 mg film-coated tablet, 90, bottle 163556 930756011000036103 Pratin 10 mg film-coated tablet, 90 930036011000036102 Pratin 10 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932406011000036105 pravastatin sodium 10 mg tablet, 90 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +18354011000036109 Onsetron 8 mg film-coated tablet, 4, blister pack 121368 11670011000036100 Onsetron 8 mg film-coated tablet, 4 4579011000036105 Onsetron 8 mg film-coated tablet 7751000168109 Onsetron 7751000168109 Onsetron 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +1096721000168101 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 90, blister pack 287308 1096711000168108 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 90 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1077401000168106 fexofenadine hydrochloride 180 mg tablet, 90 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1045231000168106 Amisulpride (Pharmacor) 100 mg uncoated tablet, 30, blister pack 234695 1045221000168108 Amisulpride (Pharmacor) 100 mg uncoated tablet, 30 1045211000168101 Amisulpride (Pharmacor) 100 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +736641000168107 Finide 5 mg film-coated tablet, 28, blister pack 161631 736631000168103 Finide 5 mg film-coated tablet, 28 736621000168101 Finide 5 mg film-coated tablet 736611000168108 Finide 736611000168108 Finide 933243481000036102 finasteride 5 mg tablet, 28 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +61602011000036101 Strepfen Intensive orange sugar free 8.75 mg lozenge, 12, blister pack 157020 57524011000036108 Strepfen Intensive orange sugar free 8.75 mg lozenge, 12 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63906011000036108 flurbiprofen 8.75 mg lozenge, 12 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +61602011000036101 Strepfen Intensive orange sugar free 8.75 mg lozenge, 12, blister pack 96063 57524011000036108 Strepfen Intensive orange sugar free 8.75 mg lozenge, 12 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63906011000036108 flurbiprofen 8.75 mg lozenge, 12 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +135921000036101 Hydroxychloroquine Sulfate (Actavis) 200 mg tablet, 100, bottle 186388 135131000036101 Hydroxychloroquine Sulfate (Actavis) 200 mg tablet, 100 134551000036100 Hydroxychloroquine Sulfate (Actavis) 200 mg tablet 134071000036104 Hydroxychloroquine Sulfate (Actavis) 134071000036104 Hydroxychloroquine Sulfate (Actavis) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +50353011000036100 Truetrack diagnostic strip, 50, bottle 110417 49541011000036105 Truetrack diagnostic strip, 50 48611011000036109 Truetrack diagnostic strip 51691000168108 Truetrack 51691000168108 Truetrack 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +18861011000036102 Celestone-M 0.02% cream, 100 g, tube 18778 12172011000036103 Celestone-M 0.02% cream, 100 g 4470011000036106 Celestone-M 0.02% cream 43331000168102 Celestone-M 43331000168102 Celestone-M 28033011000036106 betamethasone (as valerate) 0.02% cream, 100 g 23354011000036109 betamethasone (as valerate) 0.02% cream 21366011000036103 betamethasone valerate +732631000168104 Pioglitazone (Apo) 30 mg uncoated tablet, 28, blister pack 166909 732621000168102 Pioglitazone (Apo) 30 mg uncoated tablet, 28 732611000168109 Pioglitazone (Apo) 30 mg uncoated tablet 730631000168100 Pioglitazone (Apo) 730631000168100 Pioglitazone (Apo) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +1002381000168102 Rivastigmine (Apo) 4.5 mg hard capsule, 500, bottle 160566 1002371000168100 Rivastigmine (Apo) 4.5 mg hard capsule, 500 1002211000168100 Rivastigmine (Apo) 4.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002361000168106 rivastigmine 4.5 mg capsule, 500 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +68847011000036107 Savlon solution, 125 mL, bottle 11248 66597011000036107 Savlon solution, 125 mL 65545011000036105 Savlon solution 64957011000036103 Savlon 64957011000036103 Savlon 71320011000036101 chlorhexidine gluconate 0.3% + cetrimide 3% solution, 125 mL 69948011000036100 chlorhexidine gluconate 0.3% + cetrimide 3% solution 69756011000036105 chlorhexidine + cetrimide +50600011000036109 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 10 x 2 mL vials 135540 49627011000036108 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 10 x 2 mL vials 48791011000036100 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 2 mL vial 48324011000036105 Fludarabine Phosphate (Ebewe) 48324011000036105 Fludarabine Phosphate (Ebewe) 51519011000036102 fludarabine phosphate 50 mg/2 mL injection, 10 x 2 mL vials 50989011000036103 fludarabine phosphate 50 mg/2 mL injection, vial 39430011000036109 fludarabine +1053821000168107 Actiq 600 microgram lozenge on handle, 15, blister pack 91601 1053811000168100 Actiq 600 microgram lozenge on handle, 15 34077011000036102 Actiq 600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053801000168103 fentanyl 600 microgram lozenge on handle, 15 34912011000036104 fentanyl 600 microgram lozenge on handle 21258011000036102 fentanyl +818211000168100 Adenoview 30 mg/10 mL injection solution, 6 x 10 mL vials 176667 818201000168103 Adenoview 30 mg/10 mL injection solution, 6 x 10 mL vials 818191000168101 Adenoview 30 mg/10 mL injection solution, 10 mL vial 813771000168107 Adenoview 813771000168107 Adenoview 46438011000036102 adenosine 30 mg/10 mL injection, 6 x 10 mL vials 45156011000036101 adenosine 30 mg/10 mL injection, vial 44942011000036105 adenosine +758251000168106 Kenacomb ointment, 15 g, tube 19197 758241000168109 Kenacomb ointment, 15 g 758221000168103 Kenacomb ointment 3273011000036104 Kenacomb 3273011000036104 Kenacomb 758231000168100 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 15 g 758211000168105 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment 758201000168107 triamcinolone + neomycin + gramicidin + nystatin +926849011000036100 Hydrogen Peroxide (Gold Cross) 3% solution, 400 mL, bottle 27200 926245011000036108 Hydrogen Peroxide (Gold Cross) 3% solution, 400 mL 925695011000036102 Hydrogen Peroxide (Gold Cross) 3% solution 920953011000036101 Hydrogen Peroxide (Gold Cross) 920953011000036101 Hydrogen Peroxide (Gold Cross) 82529011000036109 hydrogen peroxide 3% solution, 400 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +933231331000036106 Glimepiride (GA) 4 mg uncoated tablet, 30, blister pack 173881 933225421000036100 Glimepiride (GA) 4 mg uncoated tablet, 30 933220601000036101 Glimepiride (GA) 4 mg uncoated tablet 933219111000036109 Glimepiride (GA) 933219111000036109 Glimepiride (GA) 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +938221000168109 Tevatiapine XR 300 mg modified release tablet, 60, blister pack 249792 938211000168102 Tevatiapine XR 300 mg modified release tablet, 60 938201000168100 Tevatiapine XR 300 mg modified release tablet 938101000168109 Tevatiapine XR 938101000168109 Tevatiapine XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +35653011000036107 Sertra 50 mg film-coated tablet, 30, blister pack 107067 35579011000036100 Sertra 50 mg film-coated tablet, 30 35461011000036101 Sertra 50 mg film-coated tablet 35426011000036102 Sertra 35426011000036102 Sertra 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +60135011000036108 Diareze 2 mg tablet, 10, blister pack 128825 56094011000036102 Diareze 2 mg tablet, 10 53787011000036103 Diareze 2 mg tablet 53445011000036105 Diareze 53445011000036105 Diareze 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +19913011000036107 Valium 2 mg uncoated tablet, 50, blister pack 66129 13158011000036108 Valium 2 mg uncoated tablet, 50 6441011000036106 Valium 2 mg uncoated tablet 2980011000036107 Valium 2980011000036107 Valium 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +878171000168108 Cabazitaxel (Sanofi) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack, composite pack 175502 878161000168102 Cabazitaxel (Sanofi) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack 878151000168104 Cabazitaxel (Sanofi) (inert substance) diluent, 4.5 mL vial 878131000168105 Cabazitaxel (Sanofi) 878131000168105 Cabazitaxel (Sanofi) 43131000036106 cabazitaxel 60 mg/1.5 mL injection [1.5 mL vial] (&) inert substance diluent [4.5 mL vial], 1 pack 637681000168107 inert substance diluent, 4.5 mL vial 21220011000036103 inert substance +878171000168108 Cabazitaxel (Sanofi) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack, composite pack 175502 878161000168102 Cabazitaxel (Sanofi) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack 878141000168101 Cabazitaxel (Sanofi) (cabazitaxel 60 mg/1.5 mL) concentrated injection, 1.5 mL vial 878131000168105 Cabazitaxel (Sanofi) 878131000168105 Cabazitaxel (Sanofi) 43131000036106 cabazitaxel 60 mg/1.5 mL injection [1.5 mL vial] (&) inert substance diluent [4.5 mL vial], 1 pack 41511000036105 cabazitaxel 60 mg/1.5 mL injection, vial 46261000036104 cabazitaxel +61394011000036101 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet, 8, blister pack 81958 57319011000036102 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet, 8 54271011000036107 Diarrhoea Relief (Pharmacy Health) 2.15 mg uncoated tablet 53563011000036108 Diarrhoea Relief (Pharmacy Health) 53563011000036108 Diarrhoea Relief (Pharmacy Health) 63807011000036103 loperamide hydrochloride 2.15 mg tablet, 8 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +931556011000036109 Ondron 4 mg film-coated tablet, 6, blister pack 163438 930717011000036108 Ondron 4 mg film-coated tablet, 6 930026011000036100 Ondron 4 mg film-coated tablet 40221000168103 Ondron 40221000168103 Ondron 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +813961000168103 Adenoview 60 mg/20 mL injection solution, 6 x 20 mL vials 152013 813951000168100 Adenoview 60 mg/20 mL injection solution, 6 x 20 mL vials 813931000168106 Adenoview 60 mg/20 mL injection solution, 20 mL vial 813771000168107 Adenoview 813771000168107 Adenoview 813941000168102 adenosine 60 mg/20 mL injection, 6 x 20 mL vials 813921000168108 adenosine 60 mg/20 mL injection, vial 44942011000036105 adenosine +1002441000168100 Rivastigmine (Apo) 4.5 mg hard capsule, 28, blister pack 160567 1002431000168109 Rivastigmine (Apo) 4.5 mg hard capsule, 28 1002211000168100 Rivastigmine (Apo) 4.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002421000168106 rivastigmine 4.5 mg capsule, 28 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +84388011000036103 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 19612 84080011000036101 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 83699011000036104 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 56881000168103 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% 56881000168103 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% 84663011000036101 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + methionine 2 g/L + phenylalanine 2.8 g/L + proline 3.4 g/L + serine 2.5 g/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags 84438011000036103 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + methionine 2 g/L + phenylalanine 2.8 g/L + proline 3.4 g/L + serine 2.5 g/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 84413011000036102 alanine + arginine + glucose + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +788261000168101 Viclofen 25 mg enteric tablet, 10, blister pack 75245 788251000168103 Viclofen 25 mg enteric tablet, 10 788241000168100 Viclofen 25 mg enteric tablet 788231000168109 Viclofen 788231000168109 Viclofen 63832011000036105 diclofenac sodium 25 mg enteric tablet, 10 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +931526011000036105 Onbrez Breezhaler 300 microgram powder for inhalation, 30 capsules, blister pack 160177 930687011000036102 Onbrez Breezhaler 300 microgram powder for inhalation, 30 capsules 930012011000036109 Onbrez Breezhaler 300 microgram powder for inhalation, 1 capsule 18301000168106 Onbrez Breezhaler 18301000168106 Onbrez Breezhaler 932403011000036104 indacaterol 300 microgram powder for inhalation, 30 capsules 931851011000036103 indacaterol 300 microgram powder for inhalation, 1 capsule 931806011000036104 indacaterol +1077421000168102 Fexo (Amcal) 180 mg film-coated tablet, 90, blister pack 223782 1077411000168109 Fexo (Amcal) 180 mg film-coated tablet, 90 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 1077401000168106 fexofenadine hydrochloride 180 mg tablet, 90 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +91211000036102 Fonat 70 mg tablet, 4, blister pack 134702 89491000036108 Fonat 70 mg tablet, 4 88571000036102 Fonat 70 mg tablet 87541000036105 Fonat 87541000036105 Fonat 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +44177011000036109 Zovirax Cold Sore 5% cream, 2 g, tube 55006 41653011000036107 Zovirax Cold Sore 5% cream, 2 g 40124011000036100 Zovirax Cold Sore 5% cream 34331000168101 Zovirax Cold Sore 34331000168101 Zovirax Cold Sore 46471011000036108 aciclovir 5% cream, 2 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +44177011000036109 Zovirax Cold Sore 5% cream, 2 g, tube 150098 41653011000036107 Zovirax Cold Sore 5% cream, 2 g 40124011000036100 Zovirax Cold Sore 5% cream 34331000168101 Zovirax Cold Sore 34331000168101 Zovirax Cold Sore 46471011000036108 aciclovir 5% cream, 2 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +920753011000036105 Doxycycline (Mayne Pharma) 50 mg modified release capsule, 25, blister pack 51691 920436011000036108 Doxycycline (Mayne Pharma) 50 mg modified release capsule, 25 920177011000036105 Doxycycline (Mayne Pharma) 50 mg modified release capsule 920064011000036102 Doxycycline (Mayne Pharma) 920064011000036102 Doxycycline (Mayne Pharma) 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +923923011000036101 Ranitidine (Sandoz) 150 mg film-coated tablet, 60, blister pack 70325 923467011000036102 Ranitidine (Sandoz) 150 mg film-coated tablet, 60 923097011000036105 Ranitidine (Sandoz) 150 mg film-coated tablet 920108011000036102 Ranitidine (Sandoz) 920108011000036102 Ranitidine (Sandoz) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +59801011000036108 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 12, blister pack 114361 55763011000036101 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 12 53619011000036102 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet 45481000168108 Ibuprofen (Pharmacy Health) 45481000168108 Ibuprofen (Pharmacy Health) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +20155011000036102 Moclobemide (GenRx) 150 mg film-coated tablet, 60, blister pack 73831 13378011000036101 Moclobemide (GenRx) 150 mg film-coated tablet, 60 6663011000036104 Moclobemide (GenRx) 150 mg film-coated tablet 4206011000036102 Moclobemide (GenRx) 4206011000036102 Moclobemide (GenRx) 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +676911000168106 Leflunomide (Sandoz) 10 mg film-coated tablet, 30, bottle 210905 676901000168108 Leflunomide (Sandoz) 10 mg film-coated tablet, 30 676891000168109 Leflunomide (Sandoz) 10 mg film-coated tablet 676771000168100 Leflunomide (Sandoz) 676771000168100 Leflunomide (Sandoz) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +39371000036109 Topotecan (Kabi) 4 mg powder for injection, 1 vial 170123 35851000036106 Topotecan (Kabi) 4 mg powder for injection, 1 vial 32371000036103 Topotecan (Kabi) 4 mg powder for injection, 4 mg vial 32121000036100 Topotecan (Kabi) 32121000036100 Topotecan (Kabi) 35861000036109 topotecan 4 mg injection, 1 vial 22759011000036102 topotecan 4 mg injection, vial 21571011000036101 topotecan +18562011000036107 Azol 100 mg hard capsule, 100, bottle 10001 11130011000036104 Azol 100 mg hard capsule, 100 4767011000036108 Azol 100 mg hard capsule 2984011000036102 Azol 2984011000036102 Azol 26531011000036100 danazol 100 mg capsule, 100 21941011000036109 danazol 100 mg capsule 21709011000036105 danazol +37424011000036109 Zan-Extra 10/10 film-coated tablet, 30, blister pack 120955 36714011000036107 Zan-Extra 10/10 film-coated tablet, 30 36154011000036108 Zan-Extra 10/10 film-coated tablet 61151000168101 Zan-Extra 10/10 61151000168101 Zan-Extra 10/10 38627011000036106 lercanidipine hydrochloride 10 mg + enalapril maleate 10 mg tablet, 30 37887011000036102 lercanidipine hydrochloride 10 mg + enalapril maleate 10 mg tablet 37713011000036106 lercanidipine + enalapril +951151000168102 Modafinil (Apo) 100 mg tablet, 60, blister pack 276420 951141000168104 Modafinil (Apo) 100 mg tablet, 60 951111000168103 Modafinil (Apo) 100 mg tablet 951101000168101 Modafinil (Apo) 951101000168101 Modafinil (Apo) 27978011000036104 modafinil 100 mg tablet, 60 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +116371000036100 Gabapentin (Aspen) 600 mg film-coated tablet, 100, blister pack 156106 114661000036107 Gabapentin (Aspen) 600 mg film-coated tablet, 100 113381000036107 Gabapentin (Aspen) 600 mg film-coated tablet 112611000036104 Gabapentin (Aspen) 112611000036104 Gabapentin (Aspen) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +928986011000036100 Valaciclovir (Chemmart) 500 mg film-coated tablet, 2, blister pack 158913 928347011000036100 Valaciclovir (Chemmart) 500 mg film-coated tablet, 2 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 927316011000036103 valaciclovir 500 mg tablet, 2 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +18979011000036103 Austrapen 500 mg powder for injection, 5 vials 29349 12287011000036106 Austrapen 500 mg powder for injection, 5 vials 4797011000036106 Austrapen 500 mg powder for injection, 500 mg vial 3658011000036105 Austrapen 3658011000036105 Austrapen 28098011000036109 ampicillin 500 mg injection, 5 vials 23406011000036103 ampicillin 500 mg injection, vial 21671011000036106 ampicillin +60323011000036102 Cetrelief (Generic Health) 10 mg film-coated tablet, 56, blister pack 138826 56282011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet, 56 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63287011000036106 cetirizine hydrochloride 10 mg tablet, 56 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +826731000168106 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack 158477 826721000168108 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack 826671000168100 MenA 10 microgram powder for injection, 10 microgram vial 929915011000036108 Menveo 715961000168101 MenA 826711000168101 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack 826661000168106 meningococcal A conjugate vaccine injection, vial 826651000168109 meningococcal A conjugate vaccine +826731000168106 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack 158477 826721000168108 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack 826701000168104 MenCWY injection solution, syringe 929915011000036108 Menveo 715971000168107 MenCWY 826711000168101 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack 826691000168104 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, syringe 826681000168102 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine +912611000168109 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet, 30, blister pack 198386 912601000168106 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet, 30 912541000168107 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet 912531000168103 Candesartan Hydrochlorothiazide 32/12.5 (RZ) 912531000168103 Candesartan Hydrochlorothiazide 32/12.5 (RZ) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +869581000168101 Atomerra 25 mg hard capsule, 28, blister pack 234813 869571000168104 Atomerra 25 mg hard capsule, 28 869521000168100 Atomerra 25 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +1070861000168109 Analgesic Calmative (Trust) uncoated tablet, 24, blister pack 217762 1070851000168107 Analgesic Calmative (Trust) uncoated tablet, 24 1070341000168100 Analgesic Calmative (Trust) uncoated tablet 1070331000168109 Analgesic Calmative (Trust) 1070331000168109 Analgesic Calmative (Trust) 52866011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 24 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +110591000036109 Sinus PE (Priceline) uncoated tablet, 24, blister pack 154881 108771000036100 Sinus PE (Priceline) uncoated tablet, 24 106911000036109 Sinus PE (Priceline) uncoated tablet 106411000036103 Sinus PE (Priceline) 106411000036103 Sinus PE (Priceline) 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +681251000168100 Esomeprazole (Actavis) 20 mg enteric tablet, 7, blister pack 210854 681241000168102 Esomeprazole (Actavis) 20 mg enteric tablet, 7 681221000168108 Esomeprazole (Actavis) 20 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +1088181000168100 Difflam Lozenge Strawberry Sugar Free lozenge, 16, blister pack 280581 1088171000168103 Difflam Lozenge Strawberry Sugar Free lozenge, 16 1088061000168105 Difflam Lozenge Strawberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +24901000036102 Lorstat 20 mg film-coated tablet, 30, blister pack 181404 22381000036103 Lorstat 20 mg film-coated tablet, 30 20791000036101 Lorstat 20 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +24901000036102 Lorstat 20 mg film-coated tablet, 30, blister pack 151297 22381000036103 Lorstat 20 mg film-coated tablet, 30 20791000036101 Lorstat 20 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1094461000168109 Paracetamol and Ibuprofen (Amcal) film-coated tablet, 24, blister pack 285414 1094451000168107 Paracetamol and Ibuprofen (Amcal) film-coated tablet, 24 1094421000168104 Paracetamol and Ibuprofen (Amcal) film-coated tablet 1094401000168108 Paracetamol and Ibuprofen (Amcal) 1094401000168108 Paracetamol and Ibuprofen (Amcal) 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1032351000168104 Atomoxetine (GXP) 60 mg hard capsule, 7, blister pack 234824 1032341000168101 Atomoxetine (GXP) 60 mg hard capsule, 7 1032331000168105 Atomoxetine (GXP) 60 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +922021011000036100 Paralgin Tabsule 500 mg uncoated tablet, 20, blister pack 97039 921579011000036103 Paralgin Tabsule 500 mg uncoated tablet, 20 54350011000036106 Paralgin Tabsule 500 mg uncoated tablet 16671000168105 Paralgin Tabsule 16671000168105 Paralgin Tabsule 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +946811000168103 Risdone 4 mg film-coated tablet, 10, blister pack 144282 946801000168101 Risdone 4 mg film-coated tablet, 10 946751000168107 Risdone 4 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946791000168102 risperidone 4 mg tablet, 10 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +83411011000036101 Revia 50 mg film-coated tablet, 30, blister pack 165096 13118011000036103 Revia 50 mg film-coated tablet, 30 6401011000036103 Revia 50 mg film-coated tablet 3332011000036103 Revia 3332011000036103 Revia 27559011000036103 naltrexone hydrochloride 50 mg tablet, 30 22898011000036104 naltrexone hydrochloride 50 mg tablet 21848011000036105 naltrexone +955261000168108 Ceftriaxone (Mylan) 1 g powder for injection, 1 vial 148218 955251000168106 Ceftriaxone (Mylan) 1 g powder for injection, 1 vial 955241000168109 Ceftriaxone (Mylan) 1 g powder for injection, vial 955231000168100 Ceftriaxone (Mylan) 955231000168100 Ceftriaxone (Mylan) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +18953011000036104 Stemetil 5 mg suppository, 5, blister pack 27558 12261011000036101 Stemetil 5 mg suppository, 5 5170011000036101 Stemetil 5 mg suppository 4309011000036101 Stemetil 4309011000036101 Stemetil 27024011000036103 prochlorperazine maleate 5 mg suppository, 5 22397011000036103 prochlorperazine maleate 5 mg suppository 21262011000036105 prochlorperazine +82531000036102 Ranoxyl 300 mg film-coated tablet, 30, blister pack 199392 14052011000036103 Ranoxyl 300 mg film-coated tablet, 30 7330011000036107 Ranoxyl 300 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +60043011000036100 Avil Syrup 15 mg/5 mL oral liquid solution, 30 mL, bottle 12395 56005011000036101 Avil Syrup 15 mg/5 mL oral liquid solution, 30 mL 53754011000036103 Avil Syrup 15 mg/5 mL oral liquid solution, 5 mL 36761000168102 Avil Syrup 36761000168102 Avil Syrup 63193011000036101 pheniramine maleate 15 mg/5 mL oral liquid, 30 mL 61882011000036107 pheniramine maleate 15 mg/5 mL oral liquid 61798011000036109 pheniramine +19613011000036106 Cilopen VK 500 mg hard capsule, 50, blister pack 58628 12882011000036104 Cilopen VK 500 mg hard capsule, 50 6173011000036107 Cilopen VK 500 mg hard capsule 36991000168106 Cilopen VK 36991000168106 Cilopen VK 27621011000036105 phenoxymethylpenicillin 500 mg capsule, 50 22959011000036107 phenoxymethylpenicillin 500 mg capsule 21370011000036105 phenoxymethylpenicillin +1070541000168108 Strong Pain Plus (Chemmart Pharmacy) uncoated tablet, 40, blister pack 197365 1070531000168104 Strong Pain Plus (Chemmart Pharmacy) uncoated tablet, 40 1070501000168106 Strong Pain Plus (Chemmart Pharmacy) uncoated tablet 1069951000168101 Strong Pain Plus (Chemmart Pharmacy) 1069951000168101 Strong Pain Plus (Chemmart Pharmacy) 28971000036104 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 40 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +18311000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 28, blister pack 179086 16871000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 28 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +18311000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 28, blister pack 177801 16871000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 28 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +933213791000036102 Ciprofloxacin (IPC) 250 mg film-coated tablet, 20, blister pack 153183 933201811000036103 Ciprofloxacin (IPC) 250 mg film-coated tablet, 20 933194811000036101 Ciprofloxacin (IPC) 250 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 932363011000036105 ciprofloxacin 250 mg tablet, 20 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +52176011000036105 Sodium Bicarbonate APF (extemporaneous) 5% ear drops, 15 mL, dropper container 52061011000036103 Sodium Bicarbonate APF (extemporaneous) 5% ear drops, 15 mL 51962011000036102 Sodium Bicarbonate APF (extemporaneous) 5% ear drops 26631000168104 Sodium Bicarbonate APF (extemporaneous) 26631000168104 Sodium Bicarbonate APF (extemporaneous) 52310011000036105 sodium bicarbonate 5% ear drops, 15 mL 52242011000036105 sodium bicarbonate 5% ear drops 21761011000036107 bicarbonate +1079911000168105 Carvedilol (Auro) 6.25 mg film-coated tablet, 60, blister pack 174797 1079851000168103 Carvedilol (Auro) 6.25 mg film-coated tablet, 60 737471000168101 Carvedilol (Auro) 6.25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +668711000168102 Imazan 50 mg film-coated tablet, 100, blister pack 184924 668701000168100 Imazan 50 mg film-coated tablet, 100 668691000168100 Imazan 50 mg film-coated tablet 668681000168103 Imazan 668681000168103 Imazan 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +60231011000036108 Fiorinal Dental hard capsule, 2, blister pack 13356 56190011000036104 Fiorinal Dental hard capsule, 2 53831011000036103 Fiorinal Dental hard capsule 54361000168105 Fiorinal Dental 54361000168105 Fiorinal Dental 63256011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 2 mg capsule, 2 61903011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 2 mg capsule 37813011000036109 paracetamol + codeine + doxylamine +37580011000036104 Diazoxide (DBL) 300 mg/20 mL injection solution, 20 mL ampoule 16377 36847011000036105 Diazoxide (DBL) 300 mg/20 mL injection solution, 20 mL ampoule 36106011000036109 Diazoxide (DBL) 300 mg/20 mL injection solution, 20 mL ampoule 35897011000036102 Diazoxide (DBL) 35897011000036102 Diazoxide (DBL) 38735011000036108 diazoxide 300 mg/20 mL injection, 20 mL ampoule 37963011000036101 diazoxide 300 mg/20 mL injection, ampoule 37742011000036106 diazoxide +931458011000036101 Ranitidine (GA) 300 mg film-coated tablet, 7, blister pack 148520 930637011000036107 Ranitidine (GA) 300 mg film-coated tablet, 7 929982011000036102 Ranitidine (GA) 300 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +933231411000036107 Fluorouracil (DBL) 500 mg/10 mL injection solution, 5 x 10 mL vials 47260 933225901000036103 Fluorouracil (DBL) 500 mg/10 mL injection solution, 5 x 10 mL vials 5449011000036107 Fluorouracil (DBL) 500 mg/10 mL injection solution, 10 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 933225911000036101 fluorouracil 500 mg/10 mL injection, 5 x 10 mL vials 23577011000036103 fluorouracil 500 mg/10 mL injection, vial 21481011000036100 fluorouracil +923812011000036108 Sulprix 100 mg tablet, 90, bottle 156046 84011011000036106 Sulprix 100 mg tablet, 90 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +116851000036100 Gemcitabine 2000 (Actavis) 2 g powder for injection, 1 vial 190605 115081000036109 Gemcitabine 2000 (Actavis) 2 g powder for injection, 1 vial 113221000036103 Gemcitabine 2000 (Actavis) 2 g powder for injection, 2 g vial 60801000168101 Gemcitabine 2000 (Actavis) 60801000168101 Gemcitabine 2000 (Actavis) 73514011000036108 gemcitabine 2 g injection, 1 vial 73378011000036105 gemcitabine 2 g injection, vial 21644011000036108 gemcitabine +813551000168106 Adin Melt 240 microgram sublingual wafer, 30, blister pack 121725 813541000168109 Adin Melt 240 microgram sublingual wafer, 30 813511000168105 Adin Melt 240 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 933200331000036106 desmopressin 240 microgram sublingual wafer, 30 933194041000036106 desmopressin 240 microgram sublingual wafer 21750011000036107 desmopressin +909961000168105 Caspofungin (AN) 70 mg powder for injection, 1 vial 276642 909951000168108 Caspofungin (AN) 70 mg powder for injection, 1 vial 909941000168106 Caspofungin (AN) 70 mg powder for injection, 70 mg vial 909931000168102 Caspofungin (AN) 909931000168102 Caspofungin (AN) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +741531000168109 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 231053 741521000168106 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 741501000168102 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741511000168104 follitropin alfa 450 units (33 microgram)/0.75 mL injection, 0.75 mL injection device 741491000168109 follitropin alfa 450 units (33 microgram)/0.75 mL injection, injection device 21352011000036107 follitropin alfa +43911011000036106 Trandolapril (Apo) 500 microgram hard capsule, 28, blister pack 135959 41403011000036101 Trandolapril (Apo) 500 microgram hard capsule, 28 39969011000036107 Trandolapril (Apo) 500 microgram hard capsule 11371000168108 Trandolapril (Apo) 11371000168108 Trandolapril (Apo) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +1100811000168105 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 1.25 L, pump pack 281338 1100801000168107 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 1.25 L 1094111000168100 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1100791000168106 ethanol 70% solution, 1.25 L 1094101000168103 ethanol 70% solution 69846011000036106 ethanol +1047561000168109 Buprenorphine (Sandoz) 15 microgram/hour patch, 1, sachet 269676 1047551000168107 Buprenorphine (Sandoz) 15 microgram/hour patch, 1 1047541000168105 Buprenorphine (Sandoz) 15 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046301000168101 buprenorphine 15 microgram/hour patch, 1 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +1010881000168108 Adynovate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 278728 1010871000168105 Adynovate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010681000168109 Adynovate (inert substance) diluent, 2 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010861000168104 rurioctocog alfa pegol 1000 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +1010881000168108 Adynovate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 278728 1010871000168105 Adynovate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010851000168101 Adynovate (rurioctocog alfa pegol 1000 units) powder for injection, 1000 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010861000168104 rurioctocog alfa pegol 1000 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 1010841000168103 rurioctocog alfa pegol 1000 units injection, vial 1010651000168102 rurioctocog alfa pegol +59818011000036101 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 20, blister pack 114890 55780011000036106 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 20 53670011000036100 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet 53381011000036107 Ibuprofen (Your Pharmacy) 53381011000036107 Ibuprofen (Your Pharmacy) 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933231091000036105 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 14, blister pack 172447 933225161000036102 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 14 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 86443011000036101 famciclovir 500 mg tablet, 14 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +984901000168106 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 50, blister pack 200606 984891000168107 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 50 984841000168104 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet 984781000168100 Cetirizine (Blooms The Chemist) 984781000168100 Cetirizine (Blooms The Chemist) 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1122501000168101 Humira 20 mg/0.2 mL injection solution, 2 x 0.2 mL syringes 289104 1122491000168108 Humira 20 mg/0.2 mL injection solution, 2 x 0.2 mL syringes 1122471000168107 Humira 20 mg/0.2 mL injection solution, 0.2 mL syringe 4142011000036107 Humira 4142011000036107 Humira 1122481000168105 adalimumab 20 mg/0.2 mL injection, 2 x 0.2 mL syringes 1122461000168101 adalimumab 20 mg/0.2 mL injection, syringe 21584011000036107 adalimumab +116871000036105 Paroxetine (GA) 20 mg film-coated tablet, 30, blister pack 199080 115101000036102 Paroxetine (GA) 20 mg film-coated tablet, 30 112771000036100 Paroxetine (GA) 20 mg film-coated tablet 78617011000036107 Paroxetine (GA) 78617011000036107 Paroxetine (GA) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +652921000168100 Bretaris Genuair 322 microgram/actuation powder for inhalation, 60 actuations, dry powder inhaler 206071 652911000168107 Bretaris Genuair 322 microgram/actuation powder for inhalation, 60 actuations 652861000168103 Bretaris Genuair 322 microgram/actuation powder for inhalation, actuation 652831000168106 Bretaris Genuair 652831000168106 Bretaris Genuair 652901000168109 aclidinium 322 microgram/actuation powder for inhalation, 60 actuations 652851000168100 aclidinium 322 microgram/actuation powder for inhalation, actuation 652841000168102 aclidinium +21123011000036109 Cholstat 40 mg uncoated tablet, 30, blister pack 98489 14266011000036102 Cholstat 40 mg uncoated tablet, 30 7552011000036105 Cholstat 40 mg uncoated tablet 3920011000036105 Cholstat 3920011000036105 Cholstat 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +933214111000036108 Visanne 2 mg tablet, 84, blister pack 160465 933203341000036107 Visanne 2 mg tablet, 84 933195781000036103 Visanne 2 mg tablet 933193281000036108 Visanne 933193281000036108 Visanne 933203351000036105 dienogest 2 mg tablet, 84 933195801000036102 dienogest 2 mg tablet 933216351000036102 dienogest +904301000168106 Amoxyclav 875/125 (B&B) film-coated tablet, 10, strip pack 236904 904291000168105 Amoxyclav 875/125 (B&B) film-coated tablet, 10 904281000168107 Amoxyclav 875/125 (B&B) film-coated tablet 904271000168109 Amoxyclav 875/125 (B&B) 904271000168109 Amoxyclav 875/125 (B&B) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1002201000168103 Pregabalin (Apo) 225 mg hard capsule, 56, blister pack 193278 1001341000168102 Pregabalin (Apo) 225 mg hard capsule, 56 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +1015131000168108 Valaciclovir (Apotex) 500 mg film-coated tablet, 100, blister pack 158914 1015121000168105 Valaciclovir (Apotex) 500 mg film-coated tablet, 100 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +60608011000036107 Demazin Cold Relief Syrup Blue oral liquid solution, 100 mL, bottle 18813 56566011000036105 Demazin Cold Relief Syrup Blue oral liquid solution, 100 mL 53976011000036101 Demazin Cold Relief Syrup Blue oral liquid solution, 5 mL 5951000168104 Demazin Cold Relief Syrup 5951000168104 Demazin Cold Relief Syrup 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +920685011000036108 Fluconazole (Sandoz) 150 mg hard capsule, 1, blister pack 104290 920351011000036108 Fluconazole (Sandoz) 150 mg hard capsule, 1 920122011000036107 Fluconazole (Sandoz) 150 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +900047011000036103 Levecetam-1000 1 g film-coated tablet, 60, blister pack 159037 900025011000036105 Levecetam-1000 1 g film-coated tablet, 60 900009011000036104 Levecetam-1000 1 g film-coated tablet 37921000168107 Levecetam-1000 37921000168107 Levecetam-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +20881011000036100 Keflex 250 mg/5 mL powder for oral liquid, 100 mL, bottle 92971 14043011000036107 Keflex 250 mg/5 mL powder for oral liquid, 100 mL 7321011000036102 Keflex 250 mg/5 mL powder for oral liquid, 5 mL 3358011000036104 Keflex 3358011000036104 Keflex 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +34616011000036104 Morphine Sulfate (DBL) 15 mg/mL injection solution, 50 x 1 mL ampoules 101243 34207011000036101 Morphine Sulfate (DBL) 15 mg/mL injection solution, 50 x 1 mL ampoules 5731011000036100 Morphine Sulfate (DBL) 15 mg/mL injection solution, ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 35092011000036103 morphine sulfate pentahydrate 15 mg/mL injection, 50 x 1 mL ampoules 21964011000036102 morphine sulfate pentahydrate 15 mg/mL injection, ampoule 21252011000036100 morphine +997871000168103 Imatinib (Apo) 100 mg film-coated tablet, 60, bottle 196034 997861000168109 Imatinib (Apo) 100 mg film-coated tablet, 60 997851000168107 Imatinib (Apo) 100 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 28142011000036106 imatinib 100 mg tablet, 60 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +19264011000036109 Rimycin 150 mg hard capsule, 100, bottle 48230 12554011000036103 Rimycin 150 mg hard capsule, 100 4450011000036109 Rimycin 150 mg hard capsule 3021011000036106 Rimycin 3021011000036106 Rimycin 27196011000036108 rifampicin 150 mg capsule, 100 22557011000036108 rifampicin 150 mg capsule 21532011000036109 rifampicin +933231011000036100 Famciclovir (Chemmart) 500 mg film-coated tablet, 14, blister pack 172446 933225081000036108 Famciclovir (Chemmart) 500 mg film-coated tablet, 14 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 86443011000036101 famciclovir 500 mg tablet, 14 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +817821000168109 Dynoval 10/10 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200818 817811000168102 Dynoval 10/10 (perindopril arginine/amlodipine) uncoated tablet, 30 817731000168100 Dynoval 10/10 (perindopril arginine/amlodipine) uncoated tablet 817721000168103 Dynoval 10/10 (perindopril arginine/amlodipine) 817721000168103 Dynoval 10/10 (perindopril arginine/amlodipine) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +19536011000036102 Tritace 5 mg uncoated tablet, 30, blister pack 56538 12808011000036102 Tritace 5 mg uncoated tablet, 30 6099011000036109 Tritace 5 mg uncoated tablet 4384011000036103 Tritace 4384011000036103 Tritace 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1071321000168103 Cold and Flu Relief PE Day and Night (Pharmacy Action) (36 x Day tablets, 12 x Night tablets), 48, blister pack 208283 1071311000168105 Cold and Flu Relief PE Day and Night (Pharmacy Action) (36 x Day tablets, 12 x Night tablets), 48 1071301000168107 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Action) film-coated tablet 9081000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) 9201000168106 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Action) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1071321000168103 Cold and Flu Relief PE Day and Night (Pharmacy Action) (36 x Day tablets, 12 x Night tablets), 48, blister pack 208283 1071311000168105 Cold and Flu Relief PE Day and Night (Pharmacy Action) (36 x Day tablets, 12 x Night tablets), 48 1071291000168106 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Action) film-coated tablet 9081000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) 9321000168108 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Action) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1079201000168101 Carvedilol (Auro) 3.125 mg film-coated tablet, 60, bottle 174798 1079191000168104 Carvedilol (Auro) 3.125 mg film-coated tablet, 60 737731000168109 Carvedilol (Auro) 3.125 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 1079181000168102 carvedilol 3.125 mg tablet, 60 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +50525011000036103 Tubifast (2434) red 10 m small limb size bandage, 1, carton 49326011000036100 Tubifast (2434) red 10 m small limb size bandage, 1 48760011000036109 Tubifast (2434) red 10 m small limb size bandage 26061000168102 Tubifast (2434) 26061000168102 Tubifast (2434) 51307011000036109 bandage tubular light weight 10 m small limb size bandage, 1 50836011000036107 bandage tubular light weight 10 m small limb size bandage 50703011000036107 bandage tubular light weight +809211000168109 Quetiapine XR (AS) 50 mg modified release tablet, 60, blister pack 241756 809201000168106 Quetiapine XR (AS) 50 mg modified release tablet, 60 809111000168104 Quetiapine XR (AS) 50 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +812021000168102 Affora 10 mg film-coated tablet, 30, blister pack 198056 812011000168109 Affora 10 mg film-coated tablet, 30 811971000168108 Affora 10 mg film-coated tablet 811911000168100 Affora 811911000168100 Affora 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +18011011000036102 Simvastatin (GenRx) 20 mg film-coated tablet, 30, blister pack 131587 11297011000036106 Simvastatin (GenRx) 20 mg film-coated tablet, 30 5998011000036108 Simvastatin (GenRx) 20 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18011011000036102 Simvastatin (GenRx) 20 mg film-coated tablet, 30, blister pack 104522 11297011000036106 Simvastatin (GenRx) 20 mg film-coated tablet, 30 5998011000036108 Simvastatin (GenRx) 20 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +923696011000036104 Grandicrit 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 147834 923296011000036101 Grandicrit 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 922983011000036103 Grandicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924119011000036109 epoetin lambda 4000 units/0.4 mL injection, 6 x 0.4 mL syringes 923949011000036100 epoetin lambda 4000 units/0.4 mL injection, syringe 923930011000036107 epoetin lambda +60366011000036104 Nurofen Back Pain 200 mg film-coated tablet, 6, blister pack 142080 56325011000036106 Nurofen Back Pain 200 mg film-coated tablet, 6 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +724211000168101 Sumatran 100 mg film-coated tablet, 2, blister pack 187217 724201000168104 Sumatran 100 mg film-coated tablet, 2 724191000168102 Sumatran 100 mg film-coated tablet 649751000168100 Sumatran 649751000168100 Sumatran 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +1036781000168109 Atorvastatin (RBX) 10 mg film-coated tablet, 100, bottle 173508 1036771000168106 Atorvastatin (RBX) 10 mg film-coated tablet, 100 1036691000168101 Atorvastatin (RBX) 10 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890221000168105 atorvastatin 10 mg tablet, 100 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +17919011000036104 Alepam 30 mg uncoated tablet, 25, bottle 17573 32368011000036104 Alepam 30 mg uncoated tablet, 25 32246011000036103 Alepam 30 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 32770011000036109 oxazepam 30 mg tablet, 25 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +18887011000036107 Chlorsig 0.5% eye drops solution, 10 mL, bottle 19661 12195011000036100 Chlorsig 0.5% eye drops solution, 10 mL 5812011000036101 Chlorsig 0.5% eye drops solution 4445011000036103 Chlorsig 4445011000036103 Chlorsig 27386011000036104 chloramphenicol 0.5% eye drops, 10 mL 22735011000036103 chloramphenicol 0.5% eye drops 21330011000036107 chloramphenicol +756601000168106 Pramipexole ER (Apo) 750 microgram modified release tablet, 30, blister pack 225621 756591000168104 Pramipexole ER (Apo) 750 microgram modified release tablet, 30 756561000168106 Pramipexole ER (Apo) 750 microgram modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 87815011000036100 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 30 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +894891000168101 Olmertan Combi 40/12.5 film-coated tablet, 30, blister pack 221128 894881000168104 Olmertan Combi 40/12.5 film-coated tablet, 30 894871000168102 Olmertan Combi 40/12.5 film-coated tablet 894831000168100 Olmertan Combi 40/12.5 894831000168100 Olmertan Combi 40/12.5 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +737201000168105 Pharmisil 1% cream, 15 g, tube 231903 737191000168107 Pharmisil 1% cream, 15 g 737181000168109 Pharmisil 1% cream 737171000168106 Pharmisil 737171000168106 Pharmisil 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +19930011000036109 Stelazine 2 mg film-coated tablet, 100, blister pack 66874 13174011000036103 Stelazine 2 mg film-coated tablet, 100 6457011000036101 Stelazine 2 mg film-coated tablet 7991000168102 Stelazine 7991000168102 Stelazine 27592011000036100 trifluoperazine 2 mg tablet, 100 22931011000036109 trifluoperazine 2 mg tablet 21507011000036102 trifluoperazine +1071341000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) (18 x Day tablets, 6 x Night tablets), 24, blister pack 208283 1071331000168100 Cold and Flu Relief PE Day and Night (Pharmacy Action) (18 x Day tablets, 6 x Night tablets), 24 1071301000168107 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Action) film-coated tablet 9081000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) 9201000168106 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Action) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1071341000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) (18 x Day tablets, 6 x Night tablets), 24, blister pack 208283 1071331000168100 Cold and Flu Relief PE Day and Night (Pharmacy Action) (18 x Day tablets, 6 x Night tablets), 24 1071291000168106 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Action) film-coated tablet 9081000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) 9321000168108 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Action) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +37338011000036106 Indopril 4 mg uncoated tablet, 30, blister pack 121626 36718011000036100 Indopril 4 mg uncoated tablet, 30 36120011000036102 Indopril 4 mg uncoated tablet 35995011000036104 Indopril 35995011000036104 Indopril 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +44194011000036106 Aerrane 1 mL/mL inhalation solution, 100 mL, bottle 55105 41670011000036102 Aerrane 1 mL/mL inhalation solution, 100 mL 40135011000036104 Aerrane 1 mL/mL inhalation solution 39640011000036105 Aerrane 39640011000036105 Aerrane 46487011000036108 isoflurane 1 mL/mL inhalation solution, 100 mL 45182011000036107 isoflurane 1 mL/mL inhalation solution 37776011000036109 isoflurane +926930011000036104 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel, 100 g, tube 91701 926324011000036102 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel, 100 g 925762011000036101 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +43669011000036108 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 10 x 50 mL bags 123038 41272011000036101 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 10 x 50 mL bags 39883011000036104 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 50 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46207011000036108 ciprofloxacin 100 mg/50 mL injection, 10 x 50 mL bags 45031011000036103 ciprofloxacin 100 mg/50 mL injection, bag 21245011000036105 ciprofloxacin +814191000168109 Clotrimazole 3 Day (Blooms The Chemist) 2% vaginal cream, 20 g, tube 172517 814181000168106 Clotrimazole 3 Day (Blooms The Chemist) 2% vaginal cream, 20 g 814171000168108 Clotrimazole 3 Day (Blooms The Chemist) 2% vaginal cream 814161000168102 Clotrimazole 3 Day (Blooms The Chemist) 814161000168102 Clotrimazole 3 Day (Blooms The Chemist) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +35644011000036106 Systane 0.4% / 0.3% eye drops solution, 15 mL, bottle 35568011000036100 Systane 0.4% / 0.3% eye drops solution, 15 mL 35451011000036108 Systane 0.4% / 0.3% eye drops solution 41741000168108 Systane 0.4% / 0.3% 41741000168108 Systane 0.4% / 0.3% 35765011000036107 polyethylene glycol-400 0.4% + propylene glycol 0.3% eye drops, 15 mL 35706011000036104 polyethylene glycol-400 0.4% + propylene glycol 0.3% eye drops 35694011000036104 polyethylene glycol-400 + propylene glycol +1010801000168100 Adynovate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 278727 1010791000168101 Adynovate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010771000168102 Adynovate (rurioctocog alfa pegol 500 units) powder for injection, 500 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010781000168104 rurioctocog alfa pegol 500 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 1010761000168108 rurioctocog alfa pegol 500 units injection, vial 1010651000168102 rurioctocog alfa pegol +1010801000168100 Adynovate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 278727 1010791000168101 Adynovate (1 x 500 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010681000168109 Adynovate (inert substance) diluent, 2 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010781000168104 rurioctocog alfa pegol 500 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +1079841000168100 Carvedilol (Auro) 6.25 mg film-coated tablet, 30, bottle 174801 737481000168103 Carvedilol (Auro) 6.25 mg film-coated tablet, 30 737471000168101 Carvedilol (Auro) 6.25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +653561000168105 Solu-Cortef 100 mg powder for injection, 5 vials 12264 653551000168108 Solu-Cortef 100 mg powder for injection, 5 vials 653531000168102 Solu-Cortef 100 mg powder for injection, 100 mg vial 653521000168100 Solu-Cortef 653521000168100 Solu-Cortef 653541000168106 hydrocortisone (as sodium succinate) 100 mg injection, 5 vials 22147011000036104 hydrocortisone (as sodium succinate) 100 mg injection, vial 21524011000036102 hydrocortisone sodium succinate +18219011000036108 Metforbell 500 mg film-coated tablet, 100, blister pack 125481 11800011000036103 Metforbell 500 mg film-coated tablet, 100 5559011000036101 Metforbell 500 mg film-coated tablet 2935011000036108 Metforbell 2935011000036108 Metforbell 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +1021481000168106 Voriconazole (Apo) 200 mg film-coated tablet, 2, blister pack 238282 1021471000168108 Voriconazole (Apo) 200 mg film-coated tablet, 2 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46805011000036106 voriconazole 200 mg tablet, 2 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +928969011000036106 Anaccord 1 mg film-coated tablet, 30, blister pack 158253 928330011000036100 Anaccord 1 mg film-coated tablet, 30 927955011000036108 Anaccord 1 mg film-coated tablet 927822011000036109 Anaccord 927822011000036109 Anaccord 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +56731000036104 Intratect 1 g/20 mL injection solution, 20 mL vial 164550 53181000036107 Intratect 1 g/20 mL injection solution, 20 mL vial 48761000036107 Intratect 1 g/20 mL injection solution, 20 mL vial 48311000036106 Intratect 48311000036106 Intratect 929199011000036109 normal immunoglobulin 1 g/20 mL injection, 20 mL vial 929139011000036101 normal immunoglobulin 1 g/20 mL injection, vial 74965011000036103 normal immunoglobulin +736561000168105 Clonea Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube 230936 736551000168108 Clonea Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g 736541000168106 Clonea Clotrimazole Thrush Treatment 3 Day 2% vaginal cream 736531000168102 Clonea Clotrimazole Thrush Treatment 3 Day 736531000168102 Clonea Clotrimazole Thrush Treatment 3 Day 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +680951000168103 Xigduo XR 10/500 modified release tablet, 28, blister pack 211294 680941000168100 Xigduo XR 10/500 modified release tablet, 28 680921000168106 Xigduo XR 10/500 modified release tablet 680891000168101 Xigduo XR 10/500 680891000168101 Xigduo XR 10/500 680931000168109 dapagliflozin 10 mg + metformin hydrochloride 500 mg modified release tablet, 28 680911000168104 dapagliflozin 10 mg + metformin hydrochloride 500 mg modified release tablet 680901000168102 dapagliflozin + metformin +1049851000168104 Bupannus 10 microgram/hour patch, 1, sachet 234723 1049841000168101 Bupannus 10 microgram/hour patch, 1 1049831000168105 Bupannus 10 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1046631000168104 buprenorphine 10 microgram/hour patch, 1 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +662221000168101 Temozolomide (AN) 100 mg hard capsule, 5, bottle 192689 662211000168108 Temozolomide (AN) 100 mg hard capsule, 5 662201000168105 Temozolomide (AN) 100 mg hard capsule 662021000168109 Temozolomide (AN) 662021000168109 Temozolomide (AN) 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +18587011000036106 Nuelin 133.3 mg/25 mL oral liquid, 500 mL, bottle 10576 11325011000036101 Nuelin 133.3 mg/25 mL oral liquid, 500 mL 5894011000036106 Nuelin 133.3 mg/25 mL oral liquid, 25 mL 62521000168108 Nuelin 62521000168108 Nuelin 26604011000036101 theophylline 133.3 mg/25 mL oral liquid, 500 mL 22012011000036100 theophylline 133.3 mg/25 mL oral liquid 21367011000036100 theophylline +50240011000036101 Handy Calico (5608) large triangular bandage, 1, carton 49331011000036107 Handy Calico (5608) large triangular bandage, 1 48773011000036108 Handy Calico (5608) large triangular bandage 64101000168103 Handy Calico (5608) 64101000168103 Handy Calico (5608) 51312011000036105 bandage calico large triangular bandage, 1 50841011000036101 bandage calico large triangular bandage 50775011000036100 bandage calico +661581000168108 Carvedilol (AN) 25 mg film-coated tablet, 60, bottle 174787 661561000168104 Carvedilol (AN) 25 mg film-coated tablet, 60 661551000168101 Carvedilol (AN) 25 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +1083611000168107 Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL, pump pack 58493 74348011000036108 Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL 73879011000036104 Decongestant (Pharmacy Choice) 0.05% nasal spray 73765011000036107 Decongestant (Pharmacy Choice) 73765011000036107 Decongestant (Pharmacy Choice) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +933239781000036107 Meloxicam (Chemmart) 15 mg hard capsule, 100, blister pack 181201 933237101000036107 Meloxicam (Chemmart) 15 mg hard capsule, 100 933234811000036106 Meloxicam (Chemmart) 15 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 52890011000036107 meloxicam 15 mg capsule, 100 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +962001000168104 Premia Low 0.3/1.5 Continuous sugar coated tablet, 28, blister pack 80614 961991000168101 Premia Low 0.3/1.5 Continuous sugar coated tablet, 28 961971000168102 Premia Low 0.3/1.5 Continuous sugar coated tablet 961951000168106 Premia Low 0.3/1.5 Continuous 961951000168106 Premia Low 0.3/1.5 Continuous 961981000168104 conjugated estrogens 300 microgram + medroxyprogesterone acetate 1.5 mg tablet, 28 961961000168108 conjugated estrogens 300 microgram + medroxyprogesterone acetate 1.5 mg tablet 33637011000036105 conjugated estrogens + medroxyprogesterone +123361000036106 Olanzapine (Pharmacy Choice) 7.5 mg film-coated tablet, 28, blister pack 163409 123101000036105 Olanzapine (Pharmacy Choice) 7.5 mg film-coated tablet, 28 122851000036107 Olanzapine (Pharmacy Choice) 7.5 mg film-coated tablet 1741000168102 Olanzapine (Pharmacy Choice) 1741000168102 Olanzapine (Pharmacy Choice) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +82391000036107 Parzol 20 mg enteric tablet, 30, blister pack 189763 80361000036104 Parzol 20 mg enteric tablet, 30 78451000036101 Parzol 20 mg enteric tablet 78041000036108 Parzol 78041000036108 Parzol 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +931522011000036106 Ilaris 150 mg powder for injection, 4 vials 159573 930683011000036106 Ilaris 150 mg powder for injection, 4 vials 930008011000036109 Ilaris (canakinumab 150 mg) powder for injection, 150 mg vial 929824011000036109 Ilaris 929824011000036109 Ilaris 932399011000036105 canakinumab 150 mg injection, 4 vials 931847011000036109 canakinumab 150 mg injection, vial 931784011000036108 canakinumab +19161011000036108 Nicorette 5 mg/16 hours patch, 7, sachet 46058 12460011000036107 Nicorette 5 mg/16 hours patch, 7 5603011000036102 Nicorette 5 mg/16 hours patch 15261000168108 Nicorette 15261000168108 Nicorette 27134011000036106 nicotine 5 mg/16 hours patch, 7 22499011000036103 nicotine 5 mg/16 hours patch 21432011000036100 nicotine +77226011000036107 Escitalopram (Apo) 10 mg film-coated tablet, 28, blister pack 146007 76642011000036109 Escitalopram (Apo) 10 mg film-coated tablet, 28 76084011000036103 Escitalopram (Apo) 10 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +77226011000036107 Escitalopram (Apo) 10 mg film-coated tablet, 28, blister pack 213721 76642011000036109 Escitalopram (Apo) 10 mg film-coated tablet, 28 76084011000036103 Escitalopram (Apo) 10 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +678761000168107 Anti-Fungal (Pharmacy Action) 1% cream, 50 g, tube 194535 678751000168105 Anti-Fungal (Pharmacy Action) 1% cream, 50 g 678721000168102 Anti-Fungal (Pharmacy Action) 1% cream 678711000168109 Anti-Fungal (Pharmacy Action) 678711000168109 Anti-Fungal (Pharmacy Action) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +826571000168104 Menactra injection solution, 0.5 mL vial 168403 826561000168105 Menactra injection solution, 0.5 mL vial 826541000168106 Menactra injection solution, 0.5 mL vial 93251000036104 Menactra 93251000036104 Menactra 826551000168108 meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial 826531000168102 meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial 826521000168100 meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine +18645011000036100 Durogesic 50 microgram/hour patch, 5, sachet 112369 11442011000036102 Durogesic 50 microgram/hour patch, 5 5331011000036101 Durogesic 50 microgram/hour patch 3568011000036107 Durogesic 3568011000036107 Durogesic 26650011000036103 fentanyl 50 microgram/hour patch, 5 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +923739011000036108 Quitx Classic 2 mg chewing gum, 24, blister pack 143429 923279011000036100 Quitx Classic 2 mg chewing gum, 24 922970011000036100 Quitx Classic 2 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +68676011000036104 Hydrogen Peroxide (Orion) 3% solution, 100 mL, bottle 11383 66612011000036101 Hydrogen Peroxide (Orion) 3% solution, 100 mL 65538011000036103 Hydrogen Peroxide (Orion) 3% solution 65016011000036105 Hydrogen Peroxide (Orion) 65016011000036105 Hydrogen Peroxide (Orion) 71334011000036108 hydrogen peroxide 3% solution, 100 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +1010711000168105 Adynovate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 273517 1010701000168107 Adynovate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010671000168106 Adynovate (rurioctocog alfa pegol 250 units) powder for injection, 250 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010691000168107 rurioctocog alfa pegol 250 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 1010661000168100 rurioctocog alfa pegol 250 units injection, vial 1010651000168102 rurioctocog alfa pegol +1010711000168105 Adynovate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 273517 1010701000168107 Adynovate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010681000168109 Adynovate (inert substance) diluent, 2 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010691000168107 rurioctocog alfa pegol 250 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +87191011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 215494 87127011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +87191011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 61771 87127011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +87191011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 215494 87127011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +87191011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 61771 87127011000036108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +1087861000168100 Gesicomb film-coated tablet, 12, blister pack 283035 1087851000168102 Gesicomb film-coated tablet, 12 1087781000168100 Gesicomb film-coated tablet 1087751000168107 Gesicomb 1087751000168107 Gesicomb 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +730701000168101 Methadone Syrup (Aspen) 5 mg/mL oral liquid solution, 1 L, bottle 49372 730691000168101 Methadone Syrup (Aspen) 5 mg/mL oral liquid solution, 1 L 650921000168104 Methadone Syrup (Aspen) 5 mg/mL oral liquid solution 650911000168106 Methadone Syrup (Aspen) 650911000168106 Methadone Syrup (Aspen) 27550011000036109 methadone hydrochloride 5 mg/mL oral liquid, 1 L 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +1092131000168103 Skin Irritation Cream (Chemists' Own) 1% cream, 30 g, tube 284795 1092121000168101 Skin Irritation Cream (Chemists' Own) 1% cream, 30 g 1092111000168108 Skin Irritation Cream (Chemists' Own) 1% cream 1092101000168105 Skin Irritation Cream (Chemists' Own) 1092101000168105 Skin Irritation Cream (Chemists' Own) 28029011000036107 hydrocortisone acetate 1% cream, 30 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +176651000036108 Enalapril Maleate (Actavis) 20 mg tablet, 30, blister pack 196513 174861000036101 Enalapril Maleate (Actavis) 20 mg tablet, 30 173111000036106 Enalapril Maleate (Actavis) 20 mg tablet 172841000036108 Enalapril Maleate (Actavis) 172841000036108 Enalapril Maleate (Actavis) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +80047011000036106 Ozmep 20 mg enteric tablet, 30, blister pack 149348 79971011000036106 Ozmep 20 mg enteric tablet, 30 79921011000036107 Ozmep 20 mg enteric tablet 79903011000036101 Ozmep 79903011000036101 Ozmep 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +140331000036107 Tramadol Hydrochloride (SCP) 50 mg hard capsule, 20, blister pack 141238 138741000036100 Tramadol Hydrochloride (SCP) 50 mg hard capsule, 20 137441000036107 Tramadol Hydrochloride (SCP) 50 mg hard capsule 927796011000036103 Tramadol Hydrochloride (SCP) 927796011000036103 Tramadol Hydrochloride (SCP) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +69552011000036105 Mycil Healthy Feet Tinea Powder dusting powder, 55 g, puffer pack 59494 67352011000036104 Mycil Healthy Feet Tinea Powder dusting powder, 55 g 65626011000036108 Mycil Healthy Feet Tinea Powder dusting powder 65120011000036109 Mycil Healthy Feet Tinea Powder 65120011000036109 Mycil Healthy Feet Tinea Powder 71895011000036101 tolnaftate 1% + chlorhexidine hydrochloride 0.25% dusting powder, 55 g 70238011000036100 tolnaftate 1% + chlorhexidine hydrochloride 0.25% dusting powder 69774011000036104 tolnaftate + chlorhexidine +1015051000168101 Valaciclovir (Apotex) 500 mg film-coated tablet, 42, blister pack 158914 1015041000168103 Valaciclovir (Apotex) 500 mg film-coated tablet, 42 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +19187011000036103 Spiractin 25 mg uncoated tablet, 100, blister pack 46690 12481011000036102 Spiractin 25 mg uncoated tablet, 100 6024011000036104 Spiractin 25 mg uncoated tablet 3212011000036100 Spiractin 3212011000036100 Spiractin 27647011000036100 spironolactone 25 mg tablet, 100 22984011000036100 spironolactone 25 mg tablet 21403011000036103 spironolactone +676591000168106 Vasafil 50 mg film-coated tablet, 4, blister pack 172074 676581000168108 Vasafil 50 mg film-coated tablet, 4 676571000168105 Vasafil 50 mg film-coated tablet 675921000168109 Vasafil 675921000168109 Vasafil 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +168431000036105 Dermaveen Moisturising 2% lotion, 500 mL, pump pack 56313 168001000036106 Dermaveen Moisturising 2% lotion, 500 mL 167551000036102 Dermaveen Moisturising 2% lotion 9661000168105 Dermaveen Moisturising 9661000168105 Dermaveen Moisturising 168031000036104 colloidal oatmeal 2% lotion, 500 mL 167561000036104 colloidal oatmeal 2% lotion 77444011000036102 colloidal oatmeal +747881000168100 Morphine MR (CH) 10 mg modified release tablet, 20, blister pack 225429 747871000168103 Morphine MR (CH) 10 mg modified release tablet, 20 747861000168109 Morphine MR (CH) 10 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +933047011000036104 Vycin IV 1 g powder for injection, 5 vials 119000 932857011000036107 Vycin IV 1 g powder for injection, 5 vials 932722011000036108 Vycin IV 1 g powder for injection, vial 40201000168107 Vycin IV 40201000168107 Vycin IV 932858011000036108 vancomycin 1 g injection, 5 vials 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +37681000036106 Respaz 1 mg film-coated tablet, 20, blister pack 165539 33961000036103 Respaz 1 mg film-coated tablet, 20 32601000036103 Respaz 1 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 81620011000036106 risperidone 1 mg tablet, 20 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +82371000036108 Rabeprazole Sodium (GA) 20 mg enteric tablet, 30, blister pack 189759 80341000036100 Rabeprazole Sodium (GA) 20 mg enteric tablet, 30 78331000036101 Rabeprazole Sodium (GA) 20 mg enteric tablet 77911000036105 Rabeprazole Sodium (GA) 77911000036105 Rabeprazole Sodium (GA) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +651551000168107 Minax XL 190 mg modified release tablet, 30, blister pack 205150 651541000168105 Minax XL 190 mg modified release tablet, 30 651531000168101 Minax XL 190 mg modified release tablet 651491000168101 Minax XL 651491000168101 Minax XL 28246011000036108 metoprolol succinate 190 mg modified release tablet, 30 23560011000036108 metoprolol succinate 190 mg modified release tablet 21662011000036107 metoprolol +1019381000168108 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 7, blister pack 175215 1019371000168105 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 7 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 792661000168100 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 7 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +79635011000036107 Clexane 40 mg/0.4 mL injection solution, 15 x 0.4 mL ampoules 147005 79481011000036101 Clexane 40 mg/0.4 mL injection solution, 15 x 0.4 mL ampoules 79366011000036104 Clexane 40 mg/0.4 mL injection solution, 0.4 mL ampoule 2391000168100 Clexane 2391000168100 Clexane 79812011000036101 enoxaparin sodium 40 mg/0.4 mL injection, 15 x 0.4 mL ampoules 79742011000036105 enoxaparin sodium 40 mg/0.4 mL injection, ampoule 21553011000036103 enoxaparin sodium +18231000036104 Ramipril (Pfizer) 2.5 mg uncoated tablet, 30, blister pack 175239 16791000036107 Ramipril (Pfizer) 2.5 mg uncoated tablet, 30 15531000036109 Ramipril (Pfizer) 2.5 mg uncoated tablet 15091000036101 Ramipril (Pfizer) 15091000036101 Ramipril (Pfizer) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +672251000168102 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet, 10, blister pack 208010 672241000168104 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet, 10 672221000168105 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet 672211000168103 Indapamide Hemihydrate SR (Terry White Chemists) 672211000168103 Indapamide Hemihydrate SR (Terry White Chemists) 672231000168108 indapamide hemihydrate 1.5 mg modified release tablet, 10 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +91371000036102 Fludarabine Phosphate (AS) 50 mg/2 mL concentrated injection, 2 mL vial 177891 89931000036100 Fludarabine Phosphate (AS) 50 mg/2 mL concentrated injection, 2 mL vial 88111000036101 Fludarabine Phosphate (AS) 50 mg/2 mL concentrated injection, 2 mL vial 92641000036105 Fludarabine Phosphate (AS) 92641000036105 Fludarabine Phosphate (AS) 51518011000036105 fludarabine phosphate 50 mg/2 mL injection, 2 mL vial 50989011000036103 fludarabine phosphate 50 mg/2 mL injection, vial 39430011000036109 fludarabine +651391000168105 Quetia 300 mg film-coated tablet, 100, blister pack 204156 651381000168107 Quetia 300 mg film-coated tablet, 100 651301000168104 Quetia 300 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +44211011000036105 Aciclovir Intravenous (DBL) 250 mg/10 mL injection solution, 5 x 10 mL vials 56809 41687011000036109 Aciclovir Intravenous (DBL) 250 mg/10 mL injection solution, 5 x 10 mL vials 40144011000036102 Aciclovir Intravenous (DBL) 250 mg/10 mL injection solution, 10 mL vial 13761000168102 Aciclovir Intravenous (DBL) 13761000168102 Aciclovir Intravenous (DBL) 46504011000036108 aciclovir 250 mg/10 mL injection, 5 x 10 mL vials 45191011000036102 aciclovir 250 mg/10 mL injection, vial 21239011000036106 aciclovir +1096471000168106 Cold and Flu plus Cough Relief Day and Night (Amcal) (18 x Day capsules, 6 x Night capsules), 24, blister pack 236392 1096451000168102 Cold and Flu plus Cough Relief Day and Night (Amcal) (18 x Day capsules, 6 x Night capsules), 24 1096421000168105 Cold and Flu plus Cough Relief Day and Night (Day) (Amcal) hard capsule 1096381000168101 Cold and Flu plus Cough Relief Day and Night (Amcal) 1096391000168103 Cold and Flu plus Cough Relief Day and Night (Day) (Amcal) 63209011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 61888011000036105 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61764011000036104 paracetamol + phenylephrine + dextromethorphan +1096471000168106 Cold and Flu plus Cough Relief Day and Night (Amcal) (18 x Day capsules, 6 x Night capsules), 24, blister pack 236392 1096451000168102 Cold and Flu plus Cough Relief Day and Night (Amcal) (18 x Day capsules, 6 x Night capsules), 24 1096431000168108 Cold and Flu plus Cough Relief Day and Night (Night) (Amcal) hard capsule 1096381000168101 Cold and Flu plus Cough Relief Day and Night (Amcal) 1096401000168101 Cold and Flu plus Cough Relief Day and Night (Night) (Amcal) 63209011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [18] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6], 24 62063011000036103 paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61767011000036105 paracetamol + chlorphenamine + dextromethorphan +925281011000036101 Votrient 400 mg film-coated tablet, 30, bottle 161281 924818011000036109 Votrient 400 mg film-coated tablet, 30 924512011000036105 Votrient 400 mg film-coated tablet 924364011000036100 Votrient 924364011000036100 Votrient 925423011000036105 pazopanib 400 mg tablet, 30 925381011000036106 pazopanib 400 mg tablet 925371011000036103 pazopanib +56771000036102 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 100, bottle 164953 53231000036104 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 100 39817011000036105 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 16901000036102 metformin hydrochloride 850 mg tablet, 100 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +69310011000036102 Riodine 10% solution, 50 mL, bottle 21199 67110011000036103 Riodine 10% solution, 50 mL 65224011000036102 Riodine 10% solution 65019011000036101 Riodine 65019011000036101 Riodine 71678011000036108 povidone-iodine 10% solution, 50 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +20547011000036103 Edronax 4 mg uncoated tablet, 60, blister pack 79745 13744011000036108 Edronax 4 mg uncoated tablet, 60 7028011000036107 Edronax 4 mg uncoated tablet 3605011000036109 Edronax 3605011000036109 Edronax 27913011000036101 reboxetine 4 mg tablet, 60 23237011000036108 reboxetine 4 mg tablet 21912011000036105 reboxetine +810011000168108 Centrum Advance 50 Plus film-coated tablet, 120, bottle 193642 810001000168105 Centrum Advance 50 Plus film-coated tablet, 120 809891000168104 Centrum Advance 50 Plus film-coated tablet 809511000168106 Centrum Advance 50 Plus 809511000168106 Centrum Advance 50 Plus 809991000168106 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet, 120 809881000168102 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet 809871000168100 vitamin A + betacarotene + colecalciferol + lutein + lycopene + phytomenadione + pantothenic acid + thiamine + nicotinamide + riboflavin + pyridoxine + cyanocobalamin + biotin + folic acid + dl-alpha-tocopheryl + ascorbic acid + calcium + magnesium + iron + zinc + manganese + chromium + selenium + copper + iodine + phosphorus + potassium +998511000168105 Esomeprazole (Apo) 20 mg enteric tablet, 30, blister pack 205827 998501000168107 Esomeprazole (Apo) 20 mg enteric tablet, 30 998441000168108 Esomeprazole (Apo) 20 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +933231191000036109 Temizole 5 mg hard capsule, 5, bottle 172973 933225261000036105 Temizole 5 mg hard capsule, 5 933220481000036105 Temizole 5 mg hard capsule 933219021000036101 Temizole 933219021000036101 Temizole 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +1002121000168103 Pregabalin (Apo) 200 mg hard capsule, 60, blister pack 193277 1001971000168105 Pregabalin (Apo) 200 mg hard capsule, 60 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +18345011000036105 Dilantin Infatab 50 mg chewable tablet, 200, bottle 14308 12021011000036100 Dilantin Infatab 50 mg chewable tablet, 200 5343011000036104 Dilantin Infatab 50 mg chewable tablet 59581000168107 Dilantin Infatab 59581000168107 Dilantin Infatab 26855011000036103 phenytoin 50 mg chewable tablet, 200 22236011000036103 phenytoin 50 mg chewable tablet 21672011000036100 phenytoin +928922011000036107 Tramadol Hydrochloride SR (SCP) 150 mg modified release tablet, 20, blister pack 154388 928284011000036109 Tramadol Hydrochloride SR (SCP) 150 mg modified release tablet, 20 927921011000036105 Tramadol Hydrochloride SR (SCP) 150 mg modified release tablet 27661000168105 Tramadol Hydrochloride SR (SCP) 27661000168105 Tramadol Hydrochloride SR (SCP) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +123401000036101 Doxycycline (Sandoz) 100 mg uncoated tablet, 7, blister pack 66302 123141000036108 Doxycycline (Sandoz) 100 mg uncoated tablet, 7 122831000036104 Doxycycline (Sandoz) 100 mg uncoated tablet 122691000036104 Doxycycline (Sandoz) 122691000036104 Doxycycline (Sandoz) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +757931000168107 Macu-Vision film-coated tablet, 90, bottle 141717 757921000168109 Macu-Vision film-coated tablet, 90 757841000168107 Macu-Vision film-coated tablet 4571000168102 Macu-Vision 4571000168102 Macu-Vision 757911000168102 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 90 757831000168103 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet 757821000168101 ascorbic acid + d-alpha-tocopheryl acid succinate + zinc + copper +68781011000036108 Panadol Cold and Flu lemon 600 mg powder for oral liquid, 10 sachets 131525 66744011000036107 Panadol Cold and Flu lemon 600 mg powder for oral liquid, 10 sachets 65454011000036102 Panadol Cold and Flu lemon 600 mg powder for oral liquid, 1 sachet 3791000168106 Panadol Cold and Flu 3791000168106 Panadol Cold and Flu 71408011000036102 paracetamol 600 mg powder for oral liquid, 10 sachets 69999011000036104 paracetamol 600 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1079361000168109 D-Complete (Biomedica) soft capsule, 90, bottle 204286 1079351000168107 D-Complete (Biomedica) soft capsule, 90 1079331000168101 D-Complete (Biomedica) soft capsule 1079301000168108 D-Complete (Biomedica) 1079301000168108 D-Complete (Biomedica) 1079341000168105 colecalciferol 25 microgram (1000 units) + d-alpha-tocopherol 16.8 mg (25 units) + magnesium 35 mg + zinc 4 mg + boron 1.5 mg + olive oil 400 mg capsule, 90 1079321000168104 colecalciferol 25 microgram (1000 units) + d-alpha-tocopherol 16.8 mg (25 units) + magnesium 35 mg + zinc 4 mg + boron 1.5 mg + olive oil 400 mg capsule 1079311000168106 colecalciferol + d-alpha-tocopherol + magnesium + zinc + boron + olive oil +34811011000036103 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 78982 34386011000036108 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 100 mL 34066011000036105 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +45351000036100 Gamine XR 16 mg modified release capsule, 28, blister pack 182038 43501000036107 Gamine XR 16 mg modified release capsule, 28 40861000036100 Gamine XR 16 mg modified release capsule 12551000168101 Gamine XR 12551000168101 Gamine XR 28249011000036104 galantamine 16 mg modified release capsule, 28 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +74878011000036109 Tetanus Immunoglobulin-VF (CSL) intramuscular 250 units injection solution, 1 vial 61218 74365011000036105 Tetanus Immunoglobulin-VF (CSL) intramuscular 250 units injection solution, 1 vial 73896011000036100 Tetanus Immunoglobulin-VF (CSL) intramuscular 250 units injection solution, vial 36121000168106 Tetanus Immunoglobulin-VF (CSL) 36121000168106 Tetanus Immunoglobulin-VF (CSL) 75465011000036105 tetanus immunoglobulin 250 units injection, 1 vial 75076011000036102 tetanus immunoglobulin 250 units injection, vial 74994011000036100 tetanus immunoglobulin +812181000168102 Iptam 100 mg film-coated tablet, 3, blister pack 124087 812171000168100 Iptam 100 mg film-coated tablet, 3 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 812161000168106 sumatriptan 100 mg tablet, 3 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +849991000168103 Vzole 200 mg film-coated tablet, 100, blister pack 238242 849981000168101 Vzole 200 mg film-coated tablet, 100 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46803011000036105 voriconazole 200 mg tablet, 100 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +688311000168100 Xalkori 200 mg hard capsule, 60, blister pack 190964 688301000168103 Xalkori 200 mg hard capsule, 60 688281000168102 Xalkori 200 mg hard capsule 688241000168107 Xalkori 688241000168107 Xalkori 688291000168104 crizotinib 200 mg capsule, 60 688271000168100 crizotinib 200 mg capsule 688261000168106 crizotinib +940761000168107 Escitalopram (Apo) 15 mg film-coated tablet, 30, bottle 146014 940751000168105 Escitalopram (Apo) 15 mg film-coated tablet, 30 940721000168102 Escitalopram (Apo) 15 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +73276011000036102 Jurnista 8 mg modified release tablet, 35, blister pack 141508 73074011000036104 Jurnista 8 mg modified release tablet, 35 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73472011000036100 hydromorphone hydrochloride 8 mg modified release tablet, 35 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +37474011000036108 Fortum 2 g powder for injection, 1 vial 12509 36742011000036105 Fortum 2 g powder for injection, 1 vial 36060011000036103 Fortum 2 g powder for injection, 2 g vial 36003011000036105 Fortum 36003011000036105 Fortum 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +933230871000036109 Famciclovir (Apo) 500 mg film-coated tablet, 20, blister pack 172443 933225011000036100 Famciclovir (Apo) 500 mg film-coated tablet, 20 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +44134011000036100 Klacid 500 mg film-coated tablet, 14, blister pack 52473 41610011000036105 Klacid 500 mg film-coated tablet, 14 7489011000036101 Klacid 500 mg film-coated tablet 3147011000036106 Klacid 3147011000036106 Klacid 46431011000036106 clarithromycin 500 mg tablet, 14 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +936511000168104 Quinapril (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 133231 936501000168102 Quinapril (Terry White Chemists) 10 mg film-coated tablet, 30 936481000168106 Quinapril (Terry White Chemists) 10 mg film-coated tablet 936411000168100 Quinapril (Terry White Chemists) 936411000168100 Quinapril (Terry White Chemists) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +60116011000036107 Lignocaine Hydrochloride (Orion) 2% gel, 20 g, tube 12732 56075011000036109 Lignocaine Hydrochloride (Orion) 2% gel, 20 g 53778011000036107 Lignocaine Hydrochloride (Orion) 2% gel 53090011000036100 Lignocaine Hydrochloride (Orion) 53090011000036100 Lignocaine Hydrochloride (Orion) 63212011000036106 lidocaine (lignocaine) hydrochloride 2% gel, 20 g 61889011000036102 lidocaine (lignocaine) hydrochloride 2% gel 21572011000036107 lidocaine (lignocaine) +933541000168106 Abacavir/Lamivudine 600/300 (Apotex) film-coated tablet, 30, blister pack 239753 933531000168102 Abacavir/Lamivudine 600/300 (Apotex) film-coated tablet, 30 933521000168100 Abacavir/Lamivudine 600/300 (Apotex) film-coated tablet 933511000168107 Abacavir/Lamivudine 600/300 (Apotex) 933511000168107 Abacavir/Lamivudine 600/300 (Apotex) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +20674011000036104 Diaformin-1000 1 g film-coated tablet, 90, blister pack 82207 13854011000036108 Diaformin-1000 1 g film-coated tablet, 90 7141011000036106 Diaformin-1000 1 g film-coated tablet 10811000168104 Diaformin-1000 10811000168104 Diaformin-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +65721000036100 Clotrimazole Anti-Fungal (Chemmart) 1% cream, 50 g, tube 116345 63241000036100 Clotrimazole Anti-Fungal (Chemmart) 1% cream, 50 g 60591000036102 Clotrimazole Anti-Fungal (Chemmart) 1% cream 40651000168109 Clotrimazole Anti-Fungal (Chemmart) 40651000168109 Clotrimazole Anti-Fungal (Chemmart) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +60417011000036106 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 12, blister pack 145584 56376011000036103 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 12 53895011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule 53491011000036102 Dimetapp PE Nasal Decongestant 53491011000036102 Dimetapp PE Nasal Decongestant 63323011000036103 phenylephrine hydrochloride 10 mg capsule, 12 61918011000036101 phenylephrine hydrochloride 10 mg capsule 37732011000036107 phenylephrine +1080211000168103 Salofalk 1 g enteric tablet, 20, blister pack 285903 1080201000168101 Salofalk 1 g enteric tablet, 20 1080151000168109 Salofalk 1 g enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 1080191000168104 mesalazine 1 g enteric tablet, 20 1080141000168107 mesalazine 1 g enteric tablet 21351011000036101 mesalazine +1054511000168100 Oxycodone (Sandoz) 5 mg modified release tablet, 60, blister pack 153605 785781000168105 Oxycodone (Sandoz) 5 mg modified release tablet, 60 679351000168102 Oxycodone (Sandoz) 5 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35245011000036108 oxycodone hydrochloride 5 mg modified release tablet, 60 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +43967011000036102 Sandimmun 50 mg soft capsule, 50, blister pack 40690 41459011000036107 Sandimmun 50 mg soft capsule, 50 39986011000036101 Sandimmun 50 mg soft capsule 3779011000036106 Sandimmun 3779011000036106 Sandimmun 46308011000036103 ciclosporin 50 mg capsule, 50 23297011000036102 ciclosporin 50 mg capsule 21379011000036104 ciclosporin +65731000036103 Doxorubicin Hydrochloride (Novotech) 100 mg/50 mL injection solution, 50 mL vial 107372 63161000036107 Doxorubicin Hydrochloride (Novotech) 100 mg/50 mL injection solution, 50 mL vial 60891000036100 Doxorubicin Hydrochloride (Novotech) 100 mg/50 mL injection solution, 50 mL vial 60281000036101 Doxorubicin Hydrochloride (Novotech) 60281000036101 Doxorubicin Hydrochloride (Novotech) 26697011000036109 doxorubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22092011000036101 doxorubicin hydrochloride 100 mg/50 mL injection, vial 21638011000036100 doxorubicin +74301000036104 Mirtazapine (Pfizer) 15 mg orally disintegrating tablet, 30, blister pack 183407 71881000036104 Mirtazapine (Pfizer) 15 mg orally disintegrating tablet, 30 69541000036100 Mirtazapine (Pfizer) 15 mg orally disintegrating tablet 69301000036108 Mirtazapine (Pfizer) 69301000036108 Mirtazapine (Pfizer) 47681000036105 mirtazapine 15 mg orally disintegrating tablet, 30 47581000036109 mirtazapine 15 mg orally disintegrating tablet 21463011000036102 mirtazapine +30921000036104 Aspirin EC (Chemmart) 100 mg enteric tablet, 84, blister pack 172167 28531000036109 Aspirin EC (Chemmart) 100 mg enteric tablet, 84 26781000036101 Aspirin EC (Chemmart) 100 mg enteric tablet 48411000168108 Aspirin EC (Chemmart) 48411000168108 Aspirin EC (Chemmart) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +931658011000036104 Twynsta 40/10 mg multilayer tablet, 7, blister pack 166264 930818011000036106 Twynsta 40/10 mg multilayer tablet, 7 930058011000036102 Twynsta 40/10 mg multilayer tablet 23641000168100 Twynsta 40/10 mg 23641000168100 Twynsta 40/10 mg 932431011000036107 telmisartan 40 mg + amlodipine 10 mg tablet, 7 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +849711000168109 Vzole 200 mg film-coated tablet, 14, blister pack 238242 849701000168106 Vzole 200 mg film-coated tablet, 14 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46804011000036107 voriconazole 200 mg tablet, 14 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +151891000036107 Roxithromycin (GH) 150 mg film-coated tablet, 10, blister pack 137902 149931000036102 Roxithromycin (GH) 150 mg film-coated tablet, 10 148141000036102 Roxithromycin (GH) 150 mg film-coated tablet 147781000036106 Roxithromycin (GH) 147781000036106 Roxithromycin (GH) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +774731000168101 Dimetapp Allergic Rhinitis oral liquid solution, 100 mL, bottle 231997 774721000168104 Dimetapp Allergic Rhinitis oral liquid solution, 100 mL 774601000168102 Dimetapp Allergic Rhinitis oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63601011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +796421000168108 Quetiapine (Accord) 200 mg film-coated tablet, 60, blister pack 203593 796411000168101 Quetiapine (Accord) 200 mg film-coated tablet, 60 796381000168104 Quetiapine (Accord) 200 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1017051000168107 Aripiprazole (AU) 5 mg uncoated tablet, 30, blister pack 217238 1017041000168105 Aripiprazole (AU) 5 mg uncoated tablet, 30 1017031000168101 Aripiprazole (AU) 5 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +50218011000036107 Telfa Retention (8253F) 7.5 cm x 2.3 m bandage, 1, carton 49514011000036102 Telfa Retention (8253F) 7.5 cm x 2.3 m bandage, 1 48479011000036102 Telfa Retention (8253F) 7.5 cm x 2.3 m bandage 43291000168108 Telfa Retention (8253F) 43291000168108 Telfa Retention (8253F) 51463011000036106 bandage retention cotton crepe 7.5 cm x 2.3 m bandage, 1 50970011000036103 bandage retention cotton crepe 7.5 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +714671000168102 Metformin 1000 (Auro) 1 g film-coated tablet, 90, blister pack 180443 714661000168108 Metformin 1000 (Auro) 1 g film-coated tablet, 90 714621000168103 Metformin 1000 (Auro) 1 g film-coated tablet 714611000168105 Metformin 1000 (Auro) 714611000168105 Metformin 1000 (Auro) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +19591000036107 Fluvax 2012 injection suspension, 1 x 0.5 mL syringe 117397 19021000036101 Fluvax 2012 injection suspension, 1 x 0.5 mL syringe 18561000036108 Fluvax 2012 injection suspension, 0.5 mL syringe 27841000168107 Fluvax 2012 27841000168107 Fluvax 2012 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +945121000168109 Diltiazem CD (Sanofi) 180 mg modified release capsule, 30, blister pack 139398 945111000168102 Diltiazem CD (Sanofi) 180 mg modified release capsule, 30 945051000168100 Diltiazem CD (Sanofi) 180 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +20341011000036109 Salbutamol (GenRx) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 142568 13550011000036102 Salbutamol (GenRx) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6832011000036107 Salbutamol (GenRx) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 4102011000036103 Salbutamol (GenRx) 4102011000036103 Salbutamol (GenRx) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +20341011000036109 Salbutamol (GenRx) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 76218 13550011000036102 Salbutamol (GenRx) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6832011000036107 Salbutamol (GenRx) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 4102011000036103 Salbutamol (GenRx) 4102011000036103 Salbutamol (GenRx) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +740571000168100 Metoprolol (RBX) 50 mg film-coated tablet, 100, blister pack 192774 740561000168106 Metoprolol (RBX) 50 mg film-coated tablet, 100 740531000168103 Metoprolol (RBX) 50 mg film-coated tablet 740521000168101 Metoprolol (RBX) 740521000168101 Metoprolol (RBX) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +83174011000036109 Vaxigrip 2010 needle free injection solution, 10 x 0.5 mL syringes 129874 83118011000036109 Vaxigrip 2010 needle free injection solution, 10 x 0.5 mL syringes 83066011000036103 Vaxigrip 2010 needle free injection solution, 0.5 mL syringe 21781000168101 Vaxigrip 2010 21781000168101 Vaxigrip 2010 83212011000036108 influenza trivalent adult vaccine 2010 injection, 10 x 0.5 mL syringes 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +933215001000036109 Reditron-ODT 8 mg orally disintegrating tablet, 4, blister pack 163646 933204591000036109 Reditron-ODT 8 mg orally disintegrating tablet, 4 933195591000036108 Reditron-ODT 8 mg orally disintegrating tablet 22261000168105 Reditron-ODT 22261000168105 Reditron-ODT 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +849671000168105 Vzole 200 mg film-coated tablet, 10, blister pack 238242 849651000168101 Vzole 200 mg film-coated tablet, 10 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46802011000036103 voriconazole 200 mg tablet, 10 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +50375011000036101 Tubigrip Long Stocking (1481) large D/E size bandage, 1, carton 49317011000036106 Tubigrip Long Stocking (1481) large D/E size bandage, 1 48604011000036105 Tubigrip Long Stocking (1481) large D/E size bandage 8681000168106 Tubigrip Long Stocking (1481) 8681000168106 Tubigrip Long Stocking (1481) 51298011000036102 bandage tubular short stocking large D/E size bandage, 1 50827011000036107 bandage tubular short stocking large D/E size bandage 50724011000036103 bandage tubular short stocking +679721000168109 Movectro 10 mg uncoated tablet, 5, blister pack 166483 679711000168102 Movectro 10 mg uncoated tablet, 5 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679701000168100 cladribine 10 mg tablet, 5 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +878491000168102 Baltine 60 mg enteric capsule, 28, blister pack 210679 878481000168100 Baltine 60 mg enteric capsule, 28 878401000168108 Baltine 60 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +68794011000036105 Diaformin XR 500 mg modified release tablet, 90, blister pack 120868 66658011000036108 Diaformin XR 500 mg modified release tablet, 90 65316011000036106 Diaformin XR 500 mg modified release tablet 35531000168107 Diaformin XR 35531000168107 Diaformin XR 28291011000036109 metformin hydrochloride 500 mg modified release tablet, 90 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +850031000168105 Sildenafil (Amneal) 100 mg film-coated tablet, 12, blister pack 202923 850021000168107 Sildenafil (Amneal) 100 mg film-coated tablet, 12 849911000168107 Sildenafil (Amneal) 100 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +79019011000036105 Tearsagain eye spray, 100 actuations, pump actuated metered dose aerosol 78783011000036105 Tearsagain eye spray, 100 actuations 78623011000036107 Tearsagain eye spray 50301000168102 Tearsagain 50301000168102 Tearsagain 79200011000036108 soy lecithin 1% + tocopherol 0.002% + vitamin A palmitate 0.025% eye spray, 100 actuations 79105011000036102 soy lecithin 1% + tocopherol 0.002% + vitamin A palmitate 0.025% eye spray 79095011000036109 soy lecithin + tocopherol + vitamin A +933213631000036109 Citalopram (IPCA) 20 mg film-coated tablet, 28, blister pack 158871 933203241000036104 Citalopram (IPCA) 20 mg film-coated tablet, 28 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +971051000168104 Azacitidine (Accord) 100 mg powder for injection, 1 vial 265774 971041000168101 Azacitidine (Accord) 100 mg powder for injection, 1 vial 971031000168105 Azacitidine (Accord) 100 mg powder for injection, 100 mg vial 971021000168107 Azacitidine (Accord) 971021000168107 Azacitidine (Accord) 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +13841000036100 Viramune XR 400 mg modified release tablet, 30, blister pack 176980 7481000036102 Viramune XR 400 mg modified release tablet, 30 2141000036103 Viramune XR 400 mg modified release tablet 63011000168102 Viramune XR 63011000168102 Viramune XR 7491000036100 nevirapine 400 mg modified release tablet, 30 2151000036100 nevirapine 400 mg modified release tablet 21551011000036104 nevirapine +675381000168107 Celecoxib (Chemmart) 100 mg hard capsule, 60, blister pack 226147 675371000168109 Celecoxib (Chemmart) 100 mg hard capsule, 60 675361000168103 Celecoxib (Chemmart) 100 mg hard capsule 675351000168100 Celecoxib (Chemmart) 675351000168100 Celecoxib (Chemmart) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +44618011000036104 Sinutab Sinus and Pain Relief uncoated tablet, 16, blister pack 90131 42071011000036103 Sinutab Sinus and Pain Relief uncoated tablet, 16 40346011000036102 Sinutab Sinus and Pain Relief uncoated tablet 39567011000036105 Sinutab Sinus and Pain Relief 39567011000036105 Sinutab Sinus and Pain Relief 46838011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 16 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +803981000168105 Cardiprin 100 mg tablet, 30, blister pack 15357 803971000168107 Cardiprin 100 mg tablet, 30 803961000168101 Cardiprin 100 mg tablet 4114011000036109 Cardiprin 4114011000036109 Cardiprin 63600011000036106 aspirin 100 mg tablet, 30 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +20409011000036108 Anselol 50 mg film-coated tablet, 30, bottle 77503 13616011000036103 Anselol 50 mg film-coated tablet, 30 6899011000036105 Anselol 50 mg film-coated tablet 3756011000036104 Anselol 3756011000036104 Anselol 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +118811000036103 Betadine Antiseptic Liquid 10% solution, 100 mL, bottle 29562 118461000036103 Betadine Antiseptic Liquid 10% solution, 100 mL 118071000036101 Betadine Antiseptic Liquid 10% solution 10801000168102 Betadine Antiseptic Liquid 10801000168102 Betadine Antiseptic Liquid 71675011000036102 povidone-iodine 10% solution, 100 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +20455011000036101 Cimetidine (GenRx) 400 mg film-coated tablet, 60, blister pack 78168 13658011000036109 Cimetidine (GenRx) 400 mg film-coated tablet, 60 6941011000036108 Cimetidine (GenRx) 400 mg film-coated tablet 3740011000036104 Cimetidine (GenRx) 3740011000036104 Cimetidine (GenRx) 27866011000036103 cimetidine 400 mg tablet, 60 23194011000036105 cimetidine 400 mg tablet 21427011000036101 cimetidine +60669011000036103 Panadol Gel Cap 500 mg gelatin coated tablet, 24, blister pack 40932 56627011000036107 Panadol Gel Cap 500 mg gelatin coated tablet, 24 54014011000036106 Panadol Gel Cap 500 mg gelatin coated tablet 3661000168107 Panadol Gel Cap 3661000168107 Panadol Gel Cap 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +43604011000036106 Voltfast 50 mg powder for oral liquid, 9 sachets 123192 41299011000036101 Voltfast 50 mg powder for oral liquid, 9 sachets 39846011000036102 Voltfast 50 mg powder for oral liquid, 50 mg sachet 39682011000036104 Voltfast 39682011000036104 Voltfast 46234011000036105 diclofenac potassium 50 mg powder for oral liquid, 9 sachets 45038011000036107 diclofenac potassium 50 mg powder for oral liquid, sachet 21288011000036105 diclofenac +1083361000168103 Ibuprofen plus Paracetamol (Blooms The Chemist) film-coated tablet, 12, blister pack 280188 1083351000168100 Ibuprofen plus Paracetamol (Blooms The Chemist) film-coated tablet, 12 1083341000168102 Ibuprofen plus Paracetamol (Blooms The Chemist) film-coated tablet 1083331000168106 Ibuprofen plus Paracetamol (Blooms The Chemist) 1083331000168106 Ibuprofen plus Paracetamol (Blooms The Chemist) 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +69013011000036106 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 7 sachets 138697 66815011000036104 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 7 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71444011000036100 paracetamol 1 g powder for oral liquid, 7 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +20272011000036105 Zyban SR 150 mg modified release tablet, 30, blister pack 75233 13482011000036102 Zyban SR 150 mg modified release tablet, 30 6765011000036108 Zyban SR 150 mg modified release tablet 58481000168104 Zyban SR 58481000168104 Zyban SR 27771011000036100 bupropion hydrochloride 150 mg modified release tablet, 30 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +941901000168101 Bicalutamide (Chemmart) 50 mg film-coated tablet, 28, blister pack 139576 941891000168100 Bicalutamide (Chemmart) 50 mg film-coated tablet, 28 941881000168103 Bicalutamide (Chemmart) 50 mg film-coated tablet 941871000168101 Bicalutamide (Chemmart) 941871000168101 Bicalutamide (Chemmart) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +130351000036103 Lotemax 0.5% eye drops suspension, 10 mL, bottle 127171000036107 Lotemax 0.5% eye drops suspension, 10 mL 125371000036104 Lotemax 0.5% eye drops suspension 123721000036101 Lotemax 123721000036101 Lotemax 127181000036109 loteprednol etabonate 0.5% eye drops, 10 mL 125381000036102 loteprednol etabonate 0.5% eye drops 132141000036104 loteprednol +932261000168102 Centevo 50/12.5/200 mg film-coated tablet, 175, bottle 238152 932251000168104 Centevo 50/12.5/200 mg film-coated tablet, 175 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932241000168101 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 175 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +658181000168101 Ramipril (AN) 2.5 mg uncoated tablet, 30, bottle 175219 657431000168107 Ramipril (AN) 2.5 mg uncoated tablet, 30 657421000168109 Ramipril (AN) 2.5 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +928933011000036103 Valaciclovir (Sandoz) 500 mg film-coated tablet, 42, blister pack 154464 928295011000036107 Valaciclovir (Sandoz) 500 mg film-coated tablet, 42 927924011000036108 Valaciclovir (Sandoz) 500 mg film-coated tablet 927787011000036101 Valaciclovir (Sandoz) 927787011000036101 Valaciclovir (Sandoz) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +959011000168101 Aropax CR 25 mg modified release tablet, 30, blister pack 101597 959001000168104 Aropax CR 25 mg modified release tablet, 30 958951000168109 Aropax CR 25 mg modified release tablet 957531000168105 Aropax CR 957531000168105 Aropax CR 958991000168104 paroxetine 25 mg modified release tablet, 30 958941000168107 paroxetine 25 mg modified release tablet 21618011000036109 paroxetine +1028691000168102 Ziprasidone Titration Pack (Apo) (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6, blister pack 201087 1028681000168100 Ziprasidone Titration Pack (Apo) (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6 1028651000168107 Ziprasidone Titration Pack (Apo) 40 mg hard capsule 1028641000168105 Ziprasidone Titration Pack (Apo) 1028641000168105 Ziprasidone Titration Pack (Apo) 51493011000036108 ziprasidone 40 mg capsule [2] (&) ziprasidone 60 mg capsule [2] (&) ziprasidone 80 mg capsule [2], 6 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +1028691000168102 Ziprasidone Titration Pack (Apo) (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6, blister pack 201087 1028681000168100 Ziprasidone Titration Pack (Apo) (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6 1028661000168109 Ziprasidone Titration Pack (Apo) 60 mg hard capsule 1028641000168105 Ziprasidone Titration Pack (Apo) 1028641000168105 Ziprasidone Titration Pack (Apo) 51493011000036108 ziprasidone 40 mg capsule [2] (&) ziprasidone 60 mg capsule [2] (&) ziprasidone 80 mg capsule [2], 6 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +1028691000168102 Ziprasidone Titration Pack (Apo) (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6, blister pack 201087 1028681000168100 Ziprasidone Titration Pack (Apo) (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6 1028671000168103 Ziprasidone Titration Pack (Apo) 80 mg hard capsule 1028641000168105 Ziprasidone Titration Pack (Apo) 1028641000168105 Ziprasidone Titration Pack (Apo) 51493011000036108 ziprasidone 40 mg capsule [2] (&) ziprasidone 60 mg capsule [2] (&) ziprasidone 80 mg capsule [2], 6 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +921884011000036107 Sevikar 20/5 film-coated tablet, 10, blister pack 157565 921443011000036109 Sevikar 20/5 film-coated tablet, 10 921013011000036107 Sevikar 20/5 film-coated tablet 3061000168102 Sevikar 20/5 3061000168102 Sevikar 20/5 922571011000036103 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 10 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +933081011000036100 Tramadol Hydrochloride SR (GA) 150 mg modified release tablet, 20, blister pack 154408 932878011000036105 Tramadol Hydrochloride SR (GA) 150 mg modified release tablet, 20 932739011000036101 Tramadol Hydrochloride SR (GA) 150 mg modified release tablet 24991000168103 Tramadol Hydrochloride SR (GA) 24991000168103 Tramadol Hydrochloride SR (GA) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +953711000168100 Gabapentin (AN) 400 mg hard capsule, 1000, blister pack 263842 953701000168103 Gabapentin (AN) 400 mg hard capsule, 1000 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953691000168103 gabapentin 400 mg capsule, 1000 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +44003011000036104 Zantac 150 mg effervescent tablet, 4, strip pack 45994 41494011000036101 Zantac 150 mg effervescent tablet, 4 4531011000036109 Zantac 150 mg effervescent tablet 3563011000036102 Zantac 3563011000036102 Zantac 83251000036100 ranitidine 150 mg effervescent tablet, 4 83111000036108 ranitidine 150 mg effervescent tablet 21682011000036109 ranitidine +140561000036109 Endometrin 100 mg compressed pessary, 21, blister pack 189948 139141000036108 Endometrin 100 mg compressed pessary, 21 137981000036108 Endometrin 100 mg compressed pessary 137271000036101 Endometrin 137271000036101 Endometrin 139151000036106 progesterone 100 mg pessary, 21 22361011000036109 progesterone 100 mg pessary 21412011000036108 progesterone +1020111000168101 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 14, blister pack 190327 1020101000168104 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 14 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82545011000036105 clopidogrel 75 mg + aspirin 100 mg tablet, 14 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +68748011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bottle 118860 66644011000036104 Sodium Chloride (Fresenius Kabi) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bottle 65362011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bottle 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 71354011000036107 sodium chloride 0.9% (4.5 g/500 mL) injection, 500 mL bottle 69968011000036109 sodium chloride 0.9% (4.5 g/500 mL) injection, bottle 21308011000036103 sodium chloride +152081000036108 Nicorette Freshdrops 2 mg lozenge, 96, blister pack 188136 150421000036104 Nicorette Freshdrops 2 mg lozenge, 96 148571000036104 Nicorette Freshdrops 2 mg lozenge 15261000168108 Nicorette 15261000168108 Nicorette 150431000036102 nicotine 2 mg lozenge, 96 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1107921000168107 Midalim 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207238 1107911000168100 Midalim 15 mg/3 mL injection solution, 10 x 3 mL ampoules 1107811000168106 Midalim 15 mg/3 mL injection solution, 3 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +820931000168105 Fexorelief 120 mg film-coated tablet, 100, blister pack 233591 820921000168107 Fexorelief 120 mg film-coated tablet, 100 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 820911000168100 fexofenadine hydrochloride 120 mg tablet, 100 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +820931000168105 Fexorelief 120 mg film-coated tablet, 100, blister pack 186664 820921000168107 Fexorelief 120 mg film-coated tablet, 100 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 820911000168100 fexofenadine hydrochloride 120 mg tablet, 100 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +757751000168104 PKU Easy powder for oral liquid, 30 x 130 mL pouches 757741000168101 PKU Easy powder for oral liquid, 30 x 130 mL pouches 757721000168107 PKU Easy powder for oral liquid, 130 mL pouch 757681000168101 PKU Easy 757681000168101 PKU Easy 757731000168105 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine, supplemented with docosahexaenoic acid powder for oral liquid, 30 x 130 mL pouches 757711000168100 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine, supplemented with docosahexaenoic acid powder for oral liquid, 130 mL pouch 757701000168103 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine, supplemented with docosahexaenoic acid +18571011000036106 Carvedilol (GenRx) 12.5 mg film-coated tablet, 60, blister pack 123838 11749011000036100 Carvedilol (GenRx) 12.5 mg film-coated tablet, 60 5177011000036100 Carvedilol (GenRx) 12.5 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +1108971000168109 Terbinafine (Trust) 1% cream, 30 g, tube 274183 1108961000168103 Terbinafine (Trust) 1% cream, 30 g 1108931000168106 Terbinafine (Trust) 1% cream 1108921000168108 Terbinafine (Trust) 1108921000168108 Terbinafine (Trust) 932349011000036101 terbinafine hydrochloride 1% cream, 30 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +928812011000036107 Skin Therapy Cream (Hamilton) 10% cream, 100 g, tube 11078 928179011000036101 Skin Therapy Cream (Hamilton) 10% cream, 100 g 927831011000036101 Skin Therapy Cream (Hamilton) 10% cream 927826011000036108 Skin Therapy Cream (Hamilton) 927826011000036108 Skin Therapy Cream (Hamilton) 27005011000036108 urea 10% cream, 100 g 22378011000036108 urea 10% cream 21561011000036106 urea +1005131000168106 Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 186573 1005121000168108 Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 1005111000168101 Ropibam 0.2% 200 mg/100 mL injection solution, 100 mL bag 711811000168108 Ropibam 0.2% 711811000168108 Ropibam 0.2% 1004551000168105 ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags 1004531000168104 ropivacaine hydrochloride 200 mg/100 mL injection, bag 44857011000036102 ropivacaine +44585011000036102 Vfend 200 mg film-coated tablet, 20, blister pack 82505 42038011000036109 Vfend 200 mg film-coated tablet, 20 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46806011000036104 voriconazole 200 mg tablet, 20 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +933381000168108 Centevo 150/37.5/200 mg film-coated tablet, 175, bottle 238857 933371000168105 Centevo 150/37.5/200 mg film-coated tablet, 175 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933361000168104 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 175 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +160621000036108 Nesina Met 12.5 mg/850 mg film-coated tablet, 56, blister pack 202306 159511000036104 Nesina Met 12.5 mg/850 mg film-coated tablet, 56 158141000036100 Nesina Met 12.5 mg/850 mg film-coated tablet 62751000168108 Nesina Met 12.5 mg/850 mg 62751000168108 Nesina Met 12.5 mg/850 mg 159521000036106 alogliptin 12.5 mg + metformin hydrochloride 850 mg tablet, 56 158151000036102 alogliptin 12.5 mg + metformin hydrochloride 850 mg tablet 160701000036106 alogliptin + metformin +82343011000036107 Epiramax 200 mg film-coated tablet, 60, blister pack 135596 82134011000036102 Epiramax 200 mg film-coated tablet, 60 82004011000036104 Epiramax 200 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +18473011000036103 D-Penamine 125 mg film-coated tablet, 100, bottle 14625 12045011000036100 D-Penamine 125 mg film-coated tablet, 100 4469011000036108 D-Penamine 125 mg film-coated tablet 2944011000036105 D-Penamine 2944011000036105 D-Penamine 26877011000036105 penicillamine 125 mg tablet, 100 22256011000036102 penicillamine 125 mg tablet 21611011000036100 penicillamine +44821011000036109 Seaze 2 mg tablet, 56, blister pack 99021 42253011000036106 Seaze 2 mg tablet, 56 40406011000036102 Seaze 2 mg tablet 3240011000036108 Seaze 3240011000036108 Seaze 47006011000036104 lamotrigine 2 mg tablet, 56 45372011000036106 lamotrigine 2 mg tablet 21643011000036106 lamotrigine +131881000036106 Montelukast (Sandoz) 4 mg chewable tablet, 28, blister pack 184832 128171000036106 Montelukast (Sandoz) 4 mg chewable tablet, 28 125641000036101 Montelukast (Sandoz) 4 mg chewable tablet 124191000036104 Montelukast (Sandoz) 124191000036104 Montelukast (Sandoz) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +804941000168102 Acyclo-V 250 mg powder for injection, 5 vials 50496 804931000168106 Acyclo-V 250 mg powder for injection, 5 vials 804921000168108 Acyclo-V 250 mg powder for injection, 250 mg vial 3992011000036100 Acyclo-V 3992011000036100 Acyclo-V 46732011000036105 aciclovir 250 mg injection, 5 vials 45288011000036107 aciclovir 250 mg injection, vial 21239011000036106 aciclovir +950421000168109 Doxycycline Acne Pack (GN) 50 mg film-coated tablet, 7, blister pack 148809 950411000168102 Doxycycline Acne Pack (GN) 50 mg film-coated tablet, 7 950401000168100 Doxycycline Acne Pack (GN) 50 mg film-coated tablet 950391000168102 Doxycycline Acne Pack (GN) 950391000168102 Doxycycline Acne Pack (GN) 46827011000036107 doxycycline 50 mg tablet, 7 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +79036011000036107 Bispro 2.5 mg film-coated tablet, 28, blister pack 130178 78786011000036104 Bispro 2.5 mg film-coated tablet, 28 78625011000036108 Bispro 2.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +1053221000168106 Lamotrigine (SZ) 100 mg tablet, 56, blister pack 143569 1053211000168104 Lamotrigine (SZ) 100 mg tablet, 56 1053201000168102 Lamotrigine (SZ) 100 mg tablet 1053131000168104 Lamotrigine (SZ) 1053131000168104 Lamotrigine (SZ) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +740491000168103 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet, 6, blister pack 163653 740481000168101 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet, 6 740451000168108 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet 740371000168106 Ondansetron ODT (SZ) 740371000168106 Ondansetron ODT (SZ) 719971000168109 ondansetron 4 mg orally disintegrating tablet, 6 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +52707011000036109 Simvastatin (Spirit) 80 mg film-coated tablet, 30, blister pack 116705 52534011000036107 Simvastatin (Spirit) 80 mg film-coated tablet, 30 52402011000036102 Simvastatin (Spirit) 80 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +866891000168108 Amitriptyline (Mylan) 50 mg film-coated tablet, 50, blister pack 232801 866881000168105 Amitriptyline (Mylan) 50 mg film-coated tablet, 50 866871000168107 Amitriptyline (Mylan) 50 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +966621000168102 Diavance 250/1.25 film-coated tablet, 30, blister pack 120263 966611000168109 Diavance 250/1.25 film-coated tablet, 30 966561000168106 Diavance 250/1.25 film-coated tablet 966551000168109 Diavance 250/1.25 966551000168109 Diavance 250/1.25 966601000168106 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet, 30 23507011000036105 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet 21813011000036107 metformin + glibenclamide +44700011000036109 Fasturtec (1 x 7.5 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 93860 42149011000036109 Fasturtec (1 x 7.5 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 636951000168105 Fasturtec (inert substance) diluent, 5 mL ampoule 39660011000036100 Fasturtec 39660011000036100 Fasturtec 46910011000036106 rasburicase 7.5 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 636941000168108 inert substance diluent, 5 mL ampoule 21220011000036103 inert substance +44700011000036109 Fasturtec (1 x 7.5 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 93860 42149011000036109 Fasturtec (1 x 7.5 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 40367011000036106 Fasturtec (rasburicase 7.5 mg) powder for injection, 7.5 mg vial 39660011000036100 Fasturtec 39660011000036100 Fasturtec 46910011000036106 rasburicase 7.5 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 45343011000036100 rasburicase 7.5 mg injection, vial 44913011000036105 rasburicase +18208011000036103 Eloxatin 50 mg/10 mL concentrated injection, 10 mL vial 101701 11230011000036101 Eloxatin 50 mg/10 mL concentrated injection, 10 mL vial 5695011000036103 Eloxatin 50 mg/10 mL concentrated injection, 10 mL vial 3353011000036109 Eloxatin 3353011000036109 Eloxatin 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +1013761000168100 Atomoxetine (Apotex) 100 mg hard capsule, 28, blister pack 199898 1013751000168102 Atomoxetine (Apotex) 100 mg hard capsule, 28 1013741000168104 Atomoxetine (Apotex) 100 mg hard capsule 1013681000168104 Atomoxetine (Apotex) 1013681000168104 Atomoxetine (Apotex) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +19176011000036108 Bisacodyl (Petrus) 10 mg moulded suppository, 12, strip pack 46400 12474011000036108 Bisacodyl (Petrus) 10 mg moulded suppository, 12 5675011000036109 Bisacodyl (Petrus) 10 mg moulded suppository 4362011000036105 Bisacodyl (Petrus) 4362011000036105 Bisacodyl (Petrus) 27142011000036103 bisacodyl 10 mg suppository, 12 22506011000036101 bisacodyl 10 mg suppository 21264011000036101 bisacodyl +44366011000036105 Vasocardol CD 180 mg modified release capsule, 30, bottle 68922 13251011000036102 Vasocardol CD 180 mg modified release capsule, 30 6533011000036101 Vasocardol CD 180 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +745871000168108 Celebrex 200 mg hard capsule, 10, blister pack 67902 745861000168102 Celebrex 200 mg hard capsule, 10 6496011000036105 Celebrex 200 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +832651000168108 Picolax powder for oral liquid, 2 x 20 g sachets 54113 832641000168106 Picolax powder for oral liquid, 2 x 20 g sachets 832621000168100 Picolax powder for oral liquid, 20 g sachet 920943011000036104 Picolax 920943011000036104 Picolax 832631000168102 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 2 x 20 g sachets 832611000168107 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet 870871000168104 picosulfate + magnesium carbonate + citric acid +890451000168101 Bansep 80 mg film-coated tablet, 100, bottle 173495 890441000168103 Bansep 80 mg film-coated tablet, 100 840951000168101 Bansep 80 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +662521000168103 Carvedilol (AN) 6.25 mg film-coated tablet, 60, blister pack 174785 662511000168105 Carvedilol (AN) 6.25 mg film-coated tablet, 60 662501000168107 Carvedilol (AN) 6.25 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +957961000168107 Clarithro 500 mg film-coated tablet, 42, blister pack 117203 957951000168105 Clarithro 500 mg film-coated tablet, 42 957941000168108 Clarithro 500 mg film-coated tablet 4200011000036100 Clarithro 4200011000036100 Clarithro 51516011000036106 clarithromycin 500 mg tablet, 42 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +933230911000036106 Famciclovir (Apo) 500 mg film-coated tablet, 56, blister pack 172443 933225061000036103 Famciclovir (Apo) 500 mg film-coated tablet, 56 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +808161000168106 Perindopril Arginine (Apo) 10 mg film-coated tablet, 100, blister pack 184809 808151000168109 Perindopril Arginine (Apo) 10 mg film-coated tablet, 100 808101000168105 Perindopril Arginine (Apo) 10 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 806941000168108 perindopril arginine 10 mg tablet, 100 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +43650011000036109 Oxytrol 3.9 mg/24 hours patch, 2, sachet 125489 41320011000036107 Oxytrol 3.9 mg/24 hours patch, 2 39893011000036100 Oxytrol 3.9 mg/24 hours patch 39669011000036106 Oxytrol 39669011000036106 Oxytrol 46242011000036102 oxybutynin 3.9 mg/24 hours patch, 2 45044011000036104 oxybutynin 3.9 mg/24 hours patch 21620011000036100 oxybutynin +37406011000036106 Synacthen 250 microgram/mL injection solution, 1 mL ampoule 11058 36649011000036105 Synacthen 250 microgram/mL injection solution, 1 mL ampoule 36186011000036105 Synacthen 250 microgram/mL injection solution, ampoule 3457011000036107 Synacthen 3457011000036107 Synacthen 38567011000036107 tetracosactide (tetracosactrin) 250 microgram/mL injection, 1 mL ampoule 37843011000036102 tetracosactide (tetracosactrin) 250 microgram/mL injection, ampoule 21499011000036102 tetracosactide (tetracosactrin) +86117011000036100 Nurofen Zavance 200 mg sugar coated tablet, 12, blister pack 156293 85694011000036106 Nurofen Zavance 200 mg sugar coated tablet, 12 85350011000036104 Nurofen Zavance 200 mg sugar coated tablet 5481000168102 Nurofen Zavance 5481000168102 Nurofen Zavance 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +59903011000036104 Benylin Sore Throat 250 mg/5 mL oral liquid suspension, 200 mL, bottle 117310 55865011000036102 Benylin Sore Throat 250 mg/5 mL oral liquid suspension, 200 mL 53716011000036104 Benylin Sore Throat 250 mg/5 mL oral liquid suspension, 5 mL 53211011000036104 Benylin Sore Throat 53211011000036104 Benylin Sore Throat 63543011000036103 paracetamol 250 mg/5 mL oral liquid, 200 mL 62009011000036101 paracetamol 250 mg/5 mL oral liquid 21433011000036107 paracetamol +1104861000168101 Hemlibra 150 mg/mL injection solution, 1 mL vial 293759 1104851000168103 Hemlibra 150 mg/mL injection solution, 1 mL vial 1104831000168109 Hemlibra 150 mg/mL injection solution, vial 1104651000168104 Hemlibra 1104651000168104 Hemlibra 1104841000168100 emicizumab 150 mg/mL injection, 1 mL vial 1104821000168106 emicizumab 150 mg/mL injection, vial 1104681000168106 emicizumab +20495011000036109 Doxycycline (Chemmart) 50 mg uncoated tablet, 25, blister pack 78601 13695011000036106 Doxycycline (Chemmart) 50 mg uncoated tablet, 25 6977011000036101 Doxycycline (Chemmart) 50 mg uncoated tablet 3187011000036102 Doxycycline (Chemmart) 3187011000036102 Doxycycline (Chemmart) 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +717411000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 7, blister pack 149417 717401000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 7 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716871000168105 omeprazole 20 mg enteric capsule, 7 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +65961000036106 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet, 10, blister pack 119095 63271000036107 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet, 10 61151000036108 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet 60311000036103 Zolpidem Tartrate (Synthon) 60311000036103 Zolpidem Tartrate (Synthon) 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1090441000168102 Eleva 100 mg film-coated tablet, 28, bottle 95584 1090431000168106 Eleva 100 mg film-coated tablet, 28 7397011000036102 Eleva 100 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 46996011000036108 sertraline 100 mg tablet, 28 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +677071000168104 Raloxifene Hydrochloride (Chemmart) 60 mg film-coated tablet, 28, blister pack 184795 677061000168105 Raloxifene Hydrochloride (Chemmart) 60 mg film-coated tablet, 28 677051000168108 Raloxifene Hydrochloride (Chemmart) 60 mg film-coated tablet 677041000168106 Raloxifene Hydrochloride (Chemmart) 677041000168106 Raloxifene Hydrochloride (Chemmart) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +929008011000036106 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 60, blister pack 158915 928369011000036100 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 60 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929222011000036106 valaciclovir 500 mg tablet, 60 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1022671000168100 Betadine Antiseptic 10% solution, 4.5 L, bottle 29562 1022661000168106 Betadine Antiseptic 10% solution, 4.5 L 1022551000168108 Betadine Antiseptic 10% solution 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 1022651000168109 povidone-iodine 10% solution, 4.5 L 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +983781000168102 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 203353 983771000168100 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 100 mL 983701000168105 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 5 mL 810831000168108 Ibuprofen (Blooms The Chemist) 810831000168108 Ibuprofen (Blooms The Chemist) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +13521000036106 Quetiapine (Pfizer) 25 mg film-coated tablet, 60, blister pack 172841 8651000036106 Quetiapine (Pfizer) 25 mg film-coated tablet, 60 1301000036107 Quetiapine (Pfizer) 25 mg film-coated tablet 721000036100 Quetiapine (Pfizer) 721000036100 Quetiapine (Pfizer) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +890131000168103 Bicalutamide (CH) 50 mg film-coated tablet, 500, bottle 129114 890121000168101 Bicalutamide (CH) 50 mg film-coated tablet, 500 877441000168109 Bicalutamide (CH) 50 mg film-coated tablet 877001000168101 Bicalutamide (CH) 877001000168101 Bicalutamide (CH) 39466011000036100 bicalutamide 50 mg tablet, 500 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +50552011000036105 Zeldox (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6, blister pack 134150 49588011000036107 Zeldox (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6 6416011000036106 Zeldox 60 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 51493011000036108 ziprasidone 40 mg capsule [2] (&) ziprasidone 60 mg capsule [2] (&) ziprasidone 80 mg capsule [2], 6 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +50552011000036105 Zeldox (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6, blister pack 134150 49588011000036107 Zeldox (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6 6415011000036104 Zeldox 40 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 51493011000036108 ziprasidone 40 mg capsule [2] (&) ziprasidone 60 mg capsule [2] (&) ziprasidone 80 mg capsule [2], 6 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +50552011000036105 Zeldox (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6, blister pack 134150 49588011000036107 Zeldox (2 x 40 mg capsules, 2 x 60 mg capsules, 2 x 80 mg capsules), 6 6417011000036109 Zeldox 80 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 51493011000036108 ziprasidone 40 mg capsule [2] (&) ziprasidone 60 mg capsule [2] (&) ziprasidone 80 mg capsule [2], 6 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +1052901000168100 Palexia SR 200 mg modified release tablet, 14, blister pack 165356 1052891000168104 Palexia SR 200 mg modified release tablet, 14 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052881000168102 tapentadol 200 mg modified release tablet, 14 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +85051011000036105 Sudafed PE Sinus and Anti-Inflammatory Pain Relief film-coated tablet, 48, blister pack 164735 84915011000036103 Sudafed PE Sinus and Anti-Inflammatory Pain Relief film-coated tablet, 48 84799011000036109 Sudafed PE Sinus and Anti-Inflammatory Pain Relief film-coated tablet 84768011000036104 Sudafed PE Sinus and Anti-Inflammatory Pain Relief 84768011000036104 Sudafed PE Sinus and Anti-Inflammatory Pain Relief 85185011000036105 phenylephrine hydrochloride 5 mg + ibuprofen 200 mg tablet, 48 85088011000036109 phenylephrine hydrochloride 5 mg + ibuprofen 200 mg tablet 85071011000036108 phenylephrine + ibuprofen +45591000036103 Pravastatin Sodium (PS) 20 mg film-coated tablet, 30, blister pack 190391 43721000036108 Pravastatin Sodium (PS) 20 mg film-coated tablet, 30 41461000036108 Pravastatin Sodium (PS) 20 mg film-coated tablet 40261000036101 Pravastatin Sodium (PS) 40261000036101 Pravastatin Sodium (PS) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1078861000168106 Atostat 20 mg film-coated tablet, 30, blister pack 194107 1078851000168109 Atostat 20 mg film-coated tablet, 30 1078841000168107 Atostat 20 mg film-coated tablet 1078191000168108 Atostat 1078191000168108 Atostat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +45671000036101 Quetiapine (Stada) 200 mg film-coated tablet, 60, blister pack 170854 42981000036101 Quetiapine (Stada) 200 mg film-coated tablet, 60 41341000036100 Quetiapine (Stada) 200 mg film-coated tablet 40401000036101 Quetiapine (Stada) 40401000036101 Quetiapine (Stada) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +920743011000036107 Terbinafine (DRLA) 250 mg tablet, 42, blister pack 167575 920426011000036105 Terbinafine (DRLA) 250 mg tablet, 42 920173011000036101 Terbinafine (DRLA) 250 mg tablet 920112011000036102 Terbinafine (DRLA) 920112011000036102 Terbinafine (DRLA) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +1087541000168101 Ramipril (Apotex) 5 mg tablet, 30, blister pack 150898 1087531000168105 Ramipril (Apotex) 5 mg tablet, 30 1087521000168107 Ramipril (Apotex) 5 mg tablet 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +17805011000036105 Prilace 2.5 mg uncoated tablet, 30, blister pack 121855 11698011000036109 Prilace 2.5 mg uncoated tablet, 30 5471011000036109 Prilace 2.5 mg uncoated tablet 3737011000036102 Prilace 3737011000036102 Prilace 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +18335011000036109 Ramipril (Winthrop) 2.5 mg uncoated tablet, 30, blister pack 128847 11868011000036102 Ramipril (Winthrop) 2.5 mg uncoated tablet, 30 5242011000036103 Ramipril (Winthrop) 2.5 mg uncoated tablet 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +69681011000036103 Dencorub Anti-Inflammatory 1% gel, 30 g, tube 82606 67480011000036104 Dencorub Anti-Inflammatory 1% gel, 30 g 65678011000036108 Dencorub Anti-Inflammatory 1% gel 64960011000036106 Dencorub Anti-Inflammatory 64960011000036106 Dencorub Anti-Inflammatory 72014011000036101 diclofenac sodium 1% gel, 30 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +18365011000036102 Epirubicin Hydrochloride (Ebewe) 10 mg/5 mL injection solution, 5 mL vial 131943 11924011000036105 Epirubicin Hydrochloride (Ebewe) 10 mg/5 mL injection solution, 5 mL vial 5167011000036106 Epirubicin Hydrochloride (Ebewe) 10 mg/5 mL injection solution, 5 mL vial 3912011000036104 Epirubicin Hydrochloride (Ebewe) 3912011000036104 Epirubicin Hydrochloride (Ebewe) 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +959331000168109 Ciram 10 mg film-coated tablet, 14, blister pack 158856 959321000168106 Ciram 10 mg film-coated tablet, 14 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +17989011000036102 Simvastatin (DP) 20 mg film-coated tablet, 30, blister pack 104510 11293011000036102 Simvastatin (DP) 20 mg film-coated tablet, 30 4533011000036105 Simvastatin (DP) 20 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +17989011000036102 Simvastatin (DP) 20 mg film-coated tablet, 30, blister pack 199734 11293011000036102 Simvastatin (DP) 20 mg film-coated tablet, 30 4533011000036105 Simvastatin (DP) 20 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +61084011000036104 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 50 mL, bottle 70321 57027011000036104 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 50 mL 54164011000036102 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 5 mL 53414011000036100 Tussinol for Dry Coughs 53414011000036100 Tussinol for Dry Coughs 63701011000036108 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 50 mL 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +763451000168106 Zinnat 125 mg/5 mL powder for oral liquid, 100 mL, bottle 81297 763441000168109 Zinnat 125 mg/5 mL powder for oral liquid, 100 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763431000168100 cefuroxime 125 mg/5 mL powder for oral liquid, 100 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +763451000168106 Zinnat 125 mg/5 mL powder for oral liquid, 100 mL, bottle 178687 763441000168109 Zinnat 125 mg/5 mL powder for oral liquid, 100 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763431000168100 cefuroxime 125 mg/5 mL powder for oral liquid, 100 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +18970011000036109 Panafcortelone 1 mg uncoated tablet, 100, bottle 27960 12278011000036102 Panafcortelone 1 mg uncoated tablet, 100 5885011000036106 Panafcortelone 1 mg uncoated tablet 3294011000036105 Panafcortelone 3294011000036105 Panafcortelone 33833011000036105 prednisolone 1 mg tablet, 100 33697011000036104 prednisolone 1 mg tablet 21273011000036105 prednisolone +44203011000036109 Uromitexan 400 mg film-coated tablet, 50, blister pack 56481 41679011000036108 Uromitexan 400 mg film-coated tablet, 50 40141011000036100 Uromitexan 400 mg film-coated tablet 4340011000036101 Uromitexan 4340011000036101 Uromitexan 46496011000036106 mesna 400 mg tablet, 50 45188011000036105 mesna 400 mg tablet 21302011000036101 mesna +692881000168104 Atorvastatin (Blooms The Chemist) 10 mg film-coated tablet, 30, blister pack 153717 692871000168102 Atorvastatin (Blooms The Chemist) 10 mg film-coated tablet, 30 692861000168108 Atorvastatin (Blooms The Chemist) 10 mg film-coated tablet 692851000168106 Atorvastatin (Blooms The Chemist) 692851000168106 Atorvastatin (Blooms The Chemist) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +86147011000036106 Famciclovir (Sandoz) 250 mg film-coated tablet, 20, blister pack 162313 85755011000036109 Famciclovir (Sandoz) 250 mg film-coated tablet, 20 85376011000036104 Famciclovir (Sandoz) 250 mg film-coated tablet 85265011000036105 Famciclovir (Sandoz) 85265011000036105 Famciclovir (Sandoz) 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +77361011000036104 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 125 mL syringe 61984 76777011000036103 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 125 mL syringe 76176011000036106 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 125 mL syringe 14501000168105 Optiray-350 14501000168105 Optiray-350 78282011000036106 ioversol 741 mg (iodine 350 mg)/mL injection, 125 mL syringe 77592011000036105 ioversol 741 mg (iodine 350 mg)/mL injection, 125 mL syringe 77421011000036103 ioversol +18002011000036105 Lopresor 100 mg film-coated tablet, 60, bottle 11042 11411011000036103 Lopresor 100 mg film-coated tablet, 60 4957011000036108 Lopresor 100 mg film-coated tablet 3231011000036102 Lopresor 3231011000036102 Lopresor 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +1096201000168102 Aleve 24 Hour 660 mg modified release tablet, 8, blister pack 263421 1096191000168100 Aleve 24 Hour 660 mg modified release tablet, 8 1096141000168108 Aleve 24 Hour 660 mg modified release tablet 1096101000168106 Aleve 24 Hour 1096101000168106 Aleve 24 Hour 1096181000168103 naproxen sodium 660 mg modified release tablet, 8 1096131000168104 naproxen sodium 660 mg modified release tablet 21304011000036105 naproxen +43732011000036100 Duac Once Daily gel, 25 g, tube 100707 41088011000036101 Duac Once Daily gel, 25 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46074011000036101 clindamycin 1% + benzoyl peroxide 5% gel, 25 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +69138011000036101 Nicotinell Classic 4 mg chewing gum, 144, blister pack 152894 66938011000036108 Nicotinell Classic 4 mg chewing gum, 144 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71515011000036101 nicotine 4 mg gum, 144 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +992481000168100 Bisoprolol (Apotex) 10 mg tablet, 42, blister pack 182127 992471000168103 Bisoprolol (Apotex) 10 mg tablet, 42 992371000168105 Bisoprolol (Apotex) 10 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79216011000036109 bisoprolol fumarate 10 mg tablet, 42 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +717371000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 60, blister pack 149417 717361000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 60 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716831000168107 omeprazole 20 mg enteric capsule, 60 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +39411011000036106 Cosamide 50 mg film-coated tablet, 30, blister pack 135207 39299011000036105 Cosamide 50 mg film-coated tablet, 30 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 39490011000036100 bicalutamide 50 mg tablet, 30 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +746191000168108 Ceftazidime (Mylan) 2 g powder for injection, 5 vials 154824 746181000168105 Ceftazidime (Mylan) 2 g powder for injection, 5 vials 746151000168103 Ceftazidime (Mylan) 2 g powder for injection, 2 g vial 746141000168100 Ceftazidime (Mylan) 746141000168100 Ceftazidime (Mylan) 38651011000036102 ceftazidime 2 g injection, 5 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +946401000168104 Frusemide (Winthrop) 40 mg tablet, 1000, bottle 144478 946391000168101 Frusemide (Winthrop) 40 mg tablet, 1000 946271000168105 Frusemide (Winthrop) 40 mg tablet 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 928751000168105 furosemide (frusemide) 40 mg tablet, 1000 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +60450011000036104 Medijel oral gel, 12.5 g, tube 14895 56408011000036103 Medijel oral gel, 12.5 g 53912011000036106 Medijel oral gel 48901000168103 Medijel 48901000168103 Medijel 63347011000036109 lidocaine (lignocaine) hydrochloride 0.66% + aminoacridine hydrochloride 0.05% oral gel, 12.5 g 61923011000036102 lidocaine (lignocaine) hydrochloride 0.66% + aminoacridine hydrochloride 0.05% oral gel 61733011000036106 lidocaine (lignocaine) + aminoacridine +79670011000036100 Loxalate 20 mg film-coated tablet, 30, blister pack 119966 79461011000036104 Loxalate 20 mg film-coated tablet, 30 79365011000036106 Loxalate 20 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +923791011000036104 Cephazolin (Alphapharm) 2 g powder for injection, 1 vial 154640 923351011000036107 Cephazolin (Alphapharm) 2 g powder for injection, 1 vial 923026011000036100 Cephazolin (Alphapharm) 2 g powder for injection, 2 g vial 922923011000036109 Cephazolin (Alphapharm) 922923011000036109 Cephazolin (Alphapharm) 924150011000036109 cefazolin 2 g injection, 1 vial 923967011000036100 cefazolin 2 g injection, vial 21621011000036107 cefazolin +1074431000168108 Monurol 3 g granules, 1 sachet 278658 1074421000168105 Monurol 3 g granules, 1 sachet 1074401000168101 Monurol 3 g granules, 3 g sachet 1074371000168104 Monurol 1074371000168104 Monurol 1074411000168103 fosfomycin 3 g granules, 1 sachet 1074391000168103 fosfomycin 3 g granules, sachet 1074381000168101 fosfomycin +692721000168109 Desfax 50 mg modified release tablet, 1000, bottle 218079 692711000168102 Desfax 50 mg modified release tablet, 1000 692601000168106 Desfax 50 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 692701000168100 desvenlafaxine 50 mg modified release tablet, 1000 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +723171000168100 Tacrolimus (Apotex) 5 mg hard capsule, 50, blister pack 209269 723161000168106 Tacrolimus (Apotex) 5 mg hard capsule, 50 723151000168109 Tacrolimus (Apotex) 5 mg hard capsule 723141000168107 Tacrolimus (Apotex) 723141000168107 Tacrolimus (Apotex) 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +988271000168104 Risedronate (Apo) 75 mg film-coated tablet, 4, blister pack 181973 988261000168105 Risedronate (Apo) 75 mg film-coated tablet, 4 988231000168102 Risedronate (Apo) 75 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 801001000168102 risedronate sodium 75 mg tablet, 4 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +875751000168106 Bispro 1.25 mg film-coated tablet, 100, blister pack 130177 875741000168109 Bispro 1.25 mg film-coated tablet, 100 875611000168103 Bispro 1.25 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 46789011000036109 bisoprolol fumarate 1.25 mg tablet, 100 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +77135011000036100 Ostevit-D 25 microgram (1000 units) uncoated tablet, 250, bottle 119581 76595011000036103 Ostevit-D 25 microgram (1000 units) uncoated tablet, 250 76053011000036107 Ostevit-D 25 microgram (1000 units) uncoated tablet 41951000168108 Ostevit-D 41951000168108 Ostevit-D 78149011000036109 colecalciferol 25 microgram (1000 units) tablet, 250 77514011000036102 colecalciferol 25 microgram (1000 units) tablet 77447011000036108 colecalciferol +20871011000036108 Arabloc 20 mg film-coated tablet, 30, bottle 92754 14033011000036106 Arabloc 20 mg film-coated tablet, 30 7309011000036106 Arabloc 20 mg film-coated tablet 4283011000036107 Arabloc 4283011000036107 Arabloc 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +68654011000036109 Sodium Chloride (AstraZeneca) 0.9% (18 mg/2 mL) injection solution, 50 x 2 mL ampoules 11974 66648011000036106 Sodium Chloride (AstraZeneca) 0.9% (18 mg/2 mL) injection solution, 50 x 2 mL ampoules 65305011000036101 Sodium Chloride (AstraZeneca) 0.9% (18 mg/2 mL) injection solution, 2 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71358011000036100 sodium chloride 0.9% (18 mg/2 mL) injection, 50 x 2 mL ampoules 69971011000036105 sodium chloride 0.9% (18 mg/2 mL) injection, ampoule 21308011000036103 sodium chloride +1019791000168105 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 3, blister pack 175199 1019781000168107 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 3 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019771000168109 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 3 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +967921000168109 Nortriptyline (Apo) 10 mg uncoated tablet, 50, blister pack 220996 967911000168102 Nortriptyline (Apo) 10 mg uncoated tablet, 50 967901000168100 Nortriptyline (Apo) 10 mg uncoated tablet 967891000168104 Nortriptyline (Apo) 967891000168104 Nortriptyline (Apo) 26876011000036107 nortriptyline 10 mg tablet, 50 22255011000036109 nortriptyline 10 mg tablet 21689011000036104 nortriptyline +50581011000036109 Clarithromycin (Chemmart) 250 mg film-coated tablet, 2, blister pack 134854 49613011000036108 Clarithromycin (Chemmart) 250 mg film-coated tablet, 2 5470011000036102 Clarithromycin (Chemmart) 250 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1002711000168109 Rivastigmine (Apo) 1.5 mg hard capsule, 112, blister pack 160581 1002701000168106 Rivastigmine (Apo) 1.5 mg hard capsule, 112 1002531000168108 Rivastigmine (Apo) 1.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002691000168106 rivastigmine 1.5 mg capsule, 112 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +86065011000036103 Ezovir 500 mg film-coated tablet, 14, blister pack 157787 85724011000036109 Ezovir 500 mg film-coated tablet, 14 85362011000036105 Ezovir 500 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 86443011000036101 famciclovir 500 mg tablet, 14 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +940601000168100 Pravastatin (DP) 80 mg uncoated tablet, 30, blister pack 145166 940591000168107 Pravastatin (DP) 80 mg uncoated tablet, 30 940581000168109 Pravastatin (DP) 80 mg uncoated tablet 3957011000036105 Pravastatin (DP) 3957011000036105 Pravastatin (DP) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +59920011000036103 Paracetamol (Alphapharm) 500 mg uncoated tablet, 100, blister pack 118824 55882011000036107 Paracetamol (Alphapharm) 500 mg uncoated tablet, 100 53628011000036104 Paracetamol (Alphapharm) 500 mg uncoated tablet 53179011000036107 Paracetamol (Alphapharm) 53179011000036107 Paracetamol (Alphapharm) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +151801000036104 Aptamil Gold De-Lact powder for oral liquid, 900 g, can 149841000036102 Aptamil Gold De-Lact powder for oral liquid, 900 g 148641000036105 Aptamil Gold De-Lact powder for oral liquid 43661000168103 Aptamil Gold De-Lact 43661000168103 Aptamil Gold De-Lact 51255011000036100 milk powder lactose free formula predigested powder for oral liquid, 900 g 50790011000036102 milk powder lactose free formula predigested powder for oral liquid 50737011000036107 milk powder lactose free formula predigested +815311000168101 Perindo Arg 5 mg film-coated tablet, 30, bottle 194892 815301000168104 Perindo Arg 5 mg film-coated tablet, 30 815291000168100 Perindo Arg 5 mg film-coated tablet 815251000168105 Perindo Arg 815251000168105 Perindo Arg 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +933230591000036106 Docetaxel (Sandoz) 80 mg/8 mL concentrated injection, 8 mL vial 170109 933224651000036108 Docetaxel (Sandoz) 80 mg/8 mL concentrated injection, 8 mL vial 933220351000036106 Docetaxel (Sandoz) 80 mg/8 mL concentrated injection, 8 mL vial 933219161000036106 Docetaxel (Sandoz) 933219161000036106 Docetaxel (Sandoz) 927737011000036106 docetaxel 80 mg/8 mL injection, 8 mL vial 927715011000036109 docetaxel 80 mg/8 mL injection, vial 21721011000036101 docetaxel +992521000168100 Bisoprolol (Apotex) 10 mg tablet, 100, blister pack 182127 992511000168107 Bisoprolol (Apotex) 10 mg tablet, 100 992371000168105 Bisoprolol (Apotex) 10 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79214011000036101 bisoprolol fumarate 10 mg tablet, 100 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +60600011000036105 Benzac W 5% gel, 50 g, tube 18558 56558011000036103 Benzac W 5% gel, 50 g 53972011000036100 Benzac W 5% gel 7001000168107 Benzac W 7001000168107 Benzac W 63424011000036109 benzoyl peroxide 5% gel, 50 g 61955011000036100 benzoyl peroxide 5% gel 61709011000036104 benzoyl peroxide +59736011000036108 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 24, blister pack 100678 55643011000036103 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 24 53667011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet 53194011000036103 Paracetamol Pain Relief (Amcal) 53194011000036103 Paracetamol Pain Relief (Amcal) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44687011000036102 Malarone Junior 62.5/25 film-coated tablet, 12, blister pack 92855 42136011000036104 Malarone Junior 62.5/25 film-coated tablet, 12 40360011000036105 Malarone Junior 62.5/25 film-coated tablet 22191000168106 Malarone Junior 62.5/25 22191000168106 Malarone Junior 62.5/25 46897011000036104 atovaquone 62.5 mg + proguanil hydrochloride 25 mg tablet, 12 45338011000036106 atovaquone 62.5 mg + proguanil hydrochloride 25 mg tablet 44920011000036109 atovaquone + proguanil +86088011000036106 Cetirizine Hydrochloride (Apo) 10 mg film-coated tablet, 30, blister pack 154450 85686011000036104 Cetirizine Hydrochloride (Apo) 10 mg film-coated tablet, 30 85333011000036108 Cetirizine Hydrochloride (Apo) 10 mg film-coated tablet 27041000168104 Cetirizine Hydrochloride (Apo) 27041000168104 Cetirizine Hydrochloride (Apo) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +19304011000036100 Carboplatin (Pfizer (Perth)) 450 mg/45 mL injection solution, 45 mL vial 49349 12594011000036108 Carboplatin (Pfizer (Perth)) 450 mg/45 mL injection solution, 45 mL vial 5749011000036100 Carboplatin (Pfizer (Perth)) 450 mg/45 mL injection solution, 45 mL vial 3371011000036106 Carboplatin (Pfizer (Perth)) 3371011000036106 Carboplatin (Pfizer (Perth)) 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +688451000168105 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL, bottle 27213 688431000168104 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL 688401000168106 Friars' Balsam Compound Benzoin (Gold Cross) tincture 688371000168108 Friars' Balsam Compound Benzoin (Gold Cross) 688371000168108 Friars' Balsam Compound Benzoin (Gold Cross) 688411000168109 benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 25 mL 688391000168109 benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture 688381000168106 benzoin Sumatra + storax prepared + Aloes cape +74461000036109 Polytar Plus 4% shampoo, 150 mL, bottle 58005 72391000036102 Polytar Plus 4% shampoo, 150 mL 69481000036108 Polytar Plus 4% shampoo 65078011000036102 Polytar Plus 65078011000036102 Polytar Plus 72401000036104 coal tar solution 4% shampoo, 150 mL 69491000036105 coal tar solution 4% shampoo 69856011000036108 coal tar solution +13561000036102 Delucon 300 mg film-coated tablet, 60, bottle 172854 8691000036102 Delucon 300 mg film-coated tablet, 60 1761000036105 Delucon 300 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +69635011000036106 Intralipid 20% (20 g/100 mL) intravenous infusion injection, 12 x 100 mL bags 77745 67434011000036102 Intralipid 20% (20 g/100 mL) intravenous infusion injection, 12 x 100 mL bags 65662011000036103 Intralipid 20% (20 g/100 mL) intravenous infusion injection, 100 mL bag 65008011000036106 Intralipid 65008011000036106 Intralipid 71964011000036108 soya oil 20% (20 g/100 mL) injection, 12 x 100 mL bags 70265011000036104 soya oil 20% (20 g/100 mL) injection, bag 69767011000036104 soya oil +140721000036106 Candesartan Cilexetil (RBX) 4 mg uncoated tablet, 30, blister pack 195451 139181000036104 Candesartan Cilexetil (RBX) 4 mg uncoated tablet, 30 137641000036105 Candesartan Cilexetil (RBX) 4 mg uncoated tablet 137351000036102 Candesartan Cilexetil (RBX) 137351000036102 Candesartan Cilexetil (RBX) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +18987011000036102 Doryx 100 mg modified release capsule, 21, blister pack 29618 12295011000036102 Doryx 100 mg modified release capsule, 21 4456011000036107 Doryx 100 mg modified release capsule 4100011000036102 Doryx 4100011000036102 Doryx 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +936191000168102 Quinapril (Chemmart) 20 mg film-coated tablet, 30, blister pack 133226 936181000168100 Quinapril (Chemmart) 20 mg film-coated tablet, 30 936171000168103 Quinapril (Chemmart) 20 mg film-coated tablet 936031000168102 Quinapril (Chemmart) 936031000168102 Quinapril (Chemmart) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +728971000168107 Bisolvon Chesty Forte 8 mg uncoated tablet, 100, blister pack 125375 728961000168101 Bisolvon Chesty Forte 8 mg uncoated tablet, 100 728911000168104 Bisolvon Chesty Forte 8 mg uncoated tablet 13191000168108 Bisolvon Chesty Forte 13191000168108 Bisolvon Chesty Forte 63197011000036105 bromhexine hydrochloride 8 mg tablet, 100 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +926784011000036106 Medipulv dusting powder, 12.5 g, tube 16129 926180011000036109 Medipulv dusting powder, 12.5 g 925660011000036108 Medipulv dusting powder 925548011000036106 Medipulv 925548011000036106 Medipulv 927334011000036101 chlorhexidine hydrochloride 1% + hexamidine isetionate 0.15% + allantoin 0.25% dusting powder, 12.5 g 926993011000036100 chlorhexidine hydrochloride 1% + hexamidine isetionate 0.15% + allantoin 0.25% dusting powder 926969011000036104 chlorhexidine + hexamidine + allantoin +20301011000036101 Ipravent 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 75644 13510011000036108 Ipravent 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 6792011000036102 Ipravent 250 microgram/mL inhalation solution, ampoule 2982011000036106 Ipravent 2982011000036106 Ipravent 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +933213471000036109 Lisinopril (IPCA) 20 mg uncoated tablet, 30, blister pack 152718 933201731000036100 Lisinopril (IPCA) 20 mg uncoated tablet, 30 933194801000036103 Lisinopril (IPCA) 20 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +957801000168101 Zolpidem (Hexal) 10 mg film-coated tablet, 20, bottle 116906 956671000168105 Zolpidem (Hexal) 10 mg film-coated tablet, 20 956541000168104 Zolpidem (Hexal) 10 mg film-coated tablet 956531000168108 Zolpidem (Hexal) 956531000168108 Zolpidem (Hexal) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +20328011000036102 Adalat Oros 30 mg modified release tablet, 30, blister pack 76041 13537011000036102 Adalat Oros 30 mg modified release tablet, 30 6820011000036105 Adalat Oros 30 mg modified release tablet 28961000168100 Adalat Oros 28961000168100 Adalat Oros 28048011000036102 nifedipine 30 mg modified release tablet, 30 23369011000036100 nifedipine 30 mg modified release tablet 21241011000036108 nifedipine +19938011000036106 Triasyn 5.0/5.0 modified release tablet, 30, blister pack 67183 13182011000036103 Triasyn 5.0/5.0 modified release tablet, 30 6465011000036100 Triasyn 5.0/5.0 modified release tablet 26291000168102 Triasyn 5.0/5.0 26291000168102 Triasyn 5.0/5.0 27598011000036102 ramipril 5 mg + felodipine 5 mg modified release tablet, 30 22937011000036101 ramipril 5 mg + felodipine 5 mg modified release tablet 21249011000036107 ramipril + felodipine +69438011000036102 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 48515 67238011000036108 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 65570011000036102 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71788011000036109 sodium chloride 0.9% (900 mg/100 mL) injection, 100 mL bag 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +942131000168101 Sodium Valproate EC (Sanofi) 200 mg enteric tablet, 10, blister pack 140154 942121000168104 Sodium Valproate EC (Sanofi) 200 mg enteric tablet, 10 942101000168108 Sodium Valproate EC (Sanofi) 200 mg enteric tablet 942001000168109 Sodium Valproate EC (Sanofi) 942001000168109 Sodium Valproate EC (Sanofi) 942111000168106 valproate sodium 200 mg enteric tablet, 10 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +59933011000036108 Junior Decongestant Mixture (Amcal) oral liquid solution, 200 mL, bottle 119362 55895011000036100 Junior Decongestant Mixture (Amcal) oral liquid solution, 200 mL 53620011000036101 Junior Decongestant Mixture (Amcal) oral liquid solution, 5 mL 36781000168106 Junior Decongestant Mixture (Amcal) 36781000168106 Junior Decongestant Mixture (Amcal) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +86078011000036101 Kevtam 500 mg film-coated tablet, 60, blister pack 278842 85670011000036108 Kevtam 500 mg film-coated tablet, 60 85322011000036104 Kevtam 500 mg film-coated tablet 85282011000036100 Kevtam 85282011000036100 Kevtam 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +86078011000036101 Kevtam 500 mg film-coated tablet, 60, blister pack 152769 85670011000036108 Kevtam 500 mg film-coated tablet, 60 85322011000036104 Kevtam 500 mg film-coated tablet 85282011000036100 Kevtam 85282011000036100 Kevtam 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +81093011000036104 Dizole 100 mg hard capsule, 100, blister pack 159620 80601011000036100 Dizole 100 mg hard capsule, 100 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81669011000036109 fluconazole 100 mg capsule, 100 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +74421000036100 Cetrimide (Orion) 20% shampoo, 100 mL, bottle 42848 72271000036107 Cetrimide (Orion) 20% shampoo, 100 mL 70411000036103 Cetrimide (Orion) 20% shampoo 65022011000036101 Cetrimide (Orion) 65022011000036101 Cetrimide (Orion) 72281000036109 cetrimide 20% shampoo, 100 mL 70421000036105 cetrimide 20% shampoo 69815011000036108 cetrimide +736141000168101 Aspirin (Pharmacy Choice) 300 mg dispersible tablet, 24, strip pack 197882 736131000168105 Aspirin (Pharmacy Choice) 300 mg dispersible tablet, 24 736121000168107 Aspirin (Pharmacy Choice) 300 mg dispersible tablet 736111000168100 Aspirin (Pharmacy Choice) 736111000168100 Aspirin (Pharmacy Choice) 83711000036109 aspirin 300 mg dispersible tablet, 24 83601000036104 aspirin 300 mg dispersible tablet 21719011000036107 aspirin +69000011000036101 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 500 mL, bottle 13654 66802011000036109 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 500 mL 65398011000036109 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 10 mL 65069011000036102 Bronchitis Cough Medicine (Nyal) 65069011000036102 Bronchitis Cough Medicine (Nyal) 71432011000036105 ammonium chloride 110 mg/10 mL oral liquid, 500 mL 70007011000036102 ammonium chloride 110 mg/10 mL oral liquid 69860011000036103 ammonium chloride +925197011000036108 Paclitaxel (Kabi) 30 mg/5 mL concentrated injection, 5 x 5 mL vials 156264 924734011000036105 Paclitaxel (Kabi) 30 mg/5 mL concentrated injection, 5 x 5 mL vials 924443011000036103 Paclitaxel (Kabi) 30 mg/5 mL concentrated injection, 5 mL vial 924407011000036104 Paclitaxel (Kabi) 924407011000036104 Paclitaxel (Kabi) 925410011000036109 paclitaxel 30 mg/5 mL injection, 5 x 5 mL vials 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +151851000036103 Clarithromycin (Sandoz) 250 mg film-coated tablet, 14, blister pack 101265 149861000036101 Clarithromycin (Sandoz) 250 mg film-coated tablet, 14 148151000036104 Clarithromycin (Sandoz) 250 mg film-coated tablet 147831000036100 Clarithromycin (Sandoz) 147831000036100 Clarithromycin (Sandoz) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +20906011000036102 Aldazine 25 mg film-coated tablet, 100, bottle 93655 32404011000036101 Aldazine 25 mg film-coated tablet, 100 32255011000036108 Aldazine 25 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32802011000036103 thioridazine hydrochloride 25 mg tablet, 100 32706011000036101 thioridazine hydrochloride 25 mg tablet 21637011000036101 thioridazine +1005311000168103 Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 186568 1005301000168101 Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 1005291000168102 Ropibam 1% 200 mg/20 mL injection solution, 20 mL ampoule 711881000168102 Ropibam 1% 711881000168102 Ropibam 1% 1005051000168104 ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules 1005031000168105 ropivacaine hydrochloride 200 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +757571000168103 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 14, blister pack 123670 757561000168109 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 14 757531000168101 Ranitidine (Chemists' Own) 150 mg film-coated tablet 757521000168104 Ranitidine (Chemists' Own) 757521000168104 Ranitidine (Chemists' Own) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +152441000036108 Tafinlar 50 mg hard capsule, 120, bottle 200922 150731000036106 Tafinlar 50 mg hard capsule, 120 148461000036108 Tafinlar 50 mg hard capsule 147911000036101 Tafinlar 147911000036101 Tafinlar 150741000036101 dabrafenib 50 mg capsule, 120 148471000036100 dabrafenib 50 mg capsule 152631000036101 dabrafenib +77182011000036102 Lisinopril (GA) 20 mg uncoated tablet, 28, blister pack 106502 76570011000036100 Lisinopril (GA) 20 mg uncoated tablet, 28 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 46264011000036101 lisinopril 20 mg tablet, 28 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +740251000168107 Ondansetron (SZ) 4 mg film-coated tablet, 4, blister pack 163438 740241000168105 Ondansetron (SZ) 4 mg film-coated tablet, 4 740231000168101 Ondansetron (SZ) 4 mg film-coated tablet 740221000168104 Ondansetron (SZ) 740221000168104 Ondansetron (SZ) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +44550011000036102 Vaniqa 11.5% cream, 3.7 g, tube 80167 42003011000036108 Vaniqa 11.5% cream, 3.7 g 40314011000036104 Vaniqa 11.5% cream 39569011000036103 Vaniqa 39569011000036103 Vaniqa 46778011000036106 eflornithine 11.5% cream, 3.7 g 45312011000036100 eflornithine 11.5% cream 44937011000036108 eflornithine +60498011000036106 Veganin uncoated tablet, 20, blister pack 15074 56456011000036106 Veganin uncoated tablet, 20 53928011000036103 Veganin uncoated tablet 53242011000036103 Veganin 53242011000036103 Veganin 63370011000036107 aspirin 325 mg + codeine phosphate hemihydrate 8 mg tablet, 20 61930011000036108 aspirin 325 mg + codeine phosphate hemihydrate 8 mg tablet 21831011000036102 aspirin + codeine +81020011000036101 Co-Diovan 320/12.5 film-coated tablet, 56, blister pack 135782 80493011000036103 Co-Diovan 320/12.5 film-coated tablet, 56 80163011000036104 Co-Diovan 320/12.5 film-coated tablet 19511000168109 Co-Diovan 320/12.5 19511000168109 Co-Diovan 320/12.5 81589011000036103 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet, 56 81263011000036108 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +947931000168101 Citlam-S 5 mg film-coated tablet, 56, blister pack 191899 947921000168104 Citlam-S 5 mg film-coated tablet, 56 947711000168108 Citlam-S 5 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 945131000168107 escitalopram 5 mg tablet, 56 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +933231961000036104 Fluvirin 2011 injection solution, 1 x 0.5 mL syringe 92695 933226671000036108 Fluvirin 2011 injection solution, 1 x 0.5 mL syringe 933221301000036101 Fluvirin 2011 injection solution, 0.5 mL syringe 19111000168102 Fluvirin 2011 19111000168102 Fluvirin 2011 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +44066011000036109 Flixotide Junior Inhaler 25 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 48551 41553011000036101 Flixotide Junior Inhaler 25 microgram/actuation pressurised inhalation, 120 actuations 40059011000036108 Flixotide Junior Inhaler 25 microgram/actuation pressurised inhalation, actuation 441000168109 Flixotide Junior Inhaler 441000168109 Flixotide Junior Inhaler 46385011000036108 fluticasone propionate 25 microgram/actuation pressurised inhalation, 120 actuations 45121011000036105 fluticasone propionate 25 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +829841000168100 Imatinib (Teva) 400 mg film-coated tablet, 90, blister pack 232242 829831000168109 Imatinib (Teva) 400 mg film-coated tablet, 90 829201000168101 Imatinib (Teva) 400 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 829821000168106 imatinib 400 mg tablet, 90 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +13241000036101 Lanzek 7.5 mg film-coated tablet, 28, blister pack 167682 8391000036109 Lanzek 7.5 mg film-coated tablet, 28 2311000036102 Lanzek 7.5 mg film-coated tablet 9311000168101 Lanzek 9311000168101 Lanzek 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +61072011000036104 Codral Original Cold and Flu Max uncoated tablet, 24, blister pack 68949 57015011000036103 Codral Original Cold and Flu Max uncoated tablet, 24 54161011000036100 Codral Original Cold and Flu Max uncoated tablet 49641000168104 Codral Original Cold and Flu Max 49641000168104 Codral Original Cold and Flu Max 63691011000036101 chlorphenamine maleate 2 mg + codeine phosphate hemihydrate 9.5 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62049011000036107 chlorphenamine maleate 2 mg + codeine phosphate hemihydrate 9.5 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 61729011000036107 chlorphenamine + codeine + paracetamol + pseudoephedrine +933214681000036105 Alendronate (Pharmacor) 10 mg uncoated tablet, 30, blister pack 161445 933204041000036106 Alendronate (Pharmacor) 10 mg uncoated tablet, 30 933196081000036105 Alendronate (Pharmacor) 10 mg uncoated tablet 933193871000036105 Alendronate (Pharmacor) 933193871000036105 Alendronate (Pharmacor) 46700011000036104 alendronate 10 mg tablet, 30 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +85541000036101 Razit 20 mg enteric tablet, 30, bottle 189228 84721000036104 Razit 20 mg enteric tablet, 30 84221000036108 Razit 20 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +830161000168102 Atomoxetine (Apo) 100 mg hard capsule, 28, blister pack 234803 830151000168104 Atomoxetine (Apo) 100 mg hard capsule, 28 830091000168108 Atomoxetine (Apo) 100 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +923774011000036109 Ozvenaf 150 mg modified release capsule, 28, blister pack 149455 923329011000036105 Ozvenaf 150 mg modified release capsule, 28 923006011000036105 Ozvenaf 150 mg modified release capsule 922911011000036101 Ozvenaf 922911011000036101 Ozvenaf 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +1086901000168109 Proxen 500 mg uncoated tablet, 50, blister pack 281278 1086891000168105 Proxen 500 mg uncoated tablet, 50 1086881000168107 Proxen 500 mg uncoated tablet 1086871000168109 Proxen 1086871000168109 Proxen 27554011000036104 naproxen 500 mg tablet, 50 22893011000036109 naproxen 500 mg tablet 21304011000036105 naproxen +933230551000036102 Irinotecan Hydrochloride Trihydrate (Actavis) 500 mg/25 mL concentrated injection, 25 mL vial 169331 933224591000036100 Irinotecan Hydrochloride Trihydrate (Actavis) 500 mg/25 mL concentrated injection, 25 mL vial 933220311000036107 Irinotecan Hydrochloride Trihydrate (Actavis) 500 mg/25 mL concentrated injection, 25 mL vial 76020011000036103 Irinotecan Hydrochloride Trihydrate (Actavis) 76020011000036103 Irinotecan Hydrochloride Trihydrate (Actavis) 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +658821000168105 Telmisartan HCTZ 80/25 (AN) multilayer tablet, 28, blister pack 221181 658811000168103 Telmisartan HCTZ 80/25 (AN) multilayer tablet, 28 658801000168101 Telmisartan HCTZ 80/25 (AN) multilayer tablet 658791000168102 Telmisartan HCTZ 80/25 (AN) 658791000168102 Telmisartan HCTZ 80/25 (AN) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +1089071000168109 Lorstat 40 mg film-coated tablet, 90, bottle 181409 1089061000168103 Lorstat 40 mg film-coated tablet, 90 20781000036103 Lorstat 40 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1041491000168106 atorvastatin 40 mg tablet, 90 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +59937011000036104 Worming Tablet (Terry White Chemists) 100 mg chewable tablet, 2, blister pack 119655 55899011000036103 Worming Tablet (Terry White Chemists) 100 mg chewable tablet, 2 53708011000036103 Worming Tablet (Terry White Chemists) 100 mg chewable tablet 53499011000036103 Worming Tablet (Terry White Chemists) 53499011000036103 Worming Tablet (Terry White Chemists) 75961000036100 mebendazole 100 mg chewable tablet, 2 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +50235011000036109 Cotton Wool (02013) (Johnson & Johnson Medical) roll, 100 g, carton 49438011000036105 Cotton Wool (02013) (Johnson & Johnson Medical) roll, 100 g 48735011000036107 Cotton Wool (02013) (Johnson & Johnson Medical) roll 47441000168106 Cotton Wool (02013) (Johnson & Johnson Medical) 47441000168106 Cotton Wool (02013) (Johnson & Johnson Medical) 51405011000036106 cotton wool roll, 100 g 50925011000036108 cotton wool roll 50705011000036108 cotton wool +1026921000168109 Pregabalin (Amneal) 300 mg hard capsule, 21, blister pack 235840 1026911000168102 Pregabalin (Amneal) 300 mg hard capsule, 21 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855551000168101 pregabalin 300 mg capsule, 21 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1082631000168106 Benzatropine (Phebra) 2 mg/2 mL injection solution, 5 x 2 mL vials 276242 1082621000168108 Benzatropine (Phebra) 2 mg/2 mL injection solution, 5 x 2 mL vials 1082601000168104 Benzatropine (Phebra) 2 mg/2 mL injection solution, 2 mL vial 1082591000168106 Benzatropine (Phebra) 1082591000168106 Benzatropine (Phebra) 1082611000168101 benzatropine mesilate 2 mg/2 mL injection, 5 x 2 mL vials 154851000036101 benzatropine mesilate 2 mg/2 mL injection, vial 21334011000036102 benzatropine +1072191000168105 Codasig uncoated tablet, 40, blister pack 226290 1072181000168107 Codasig uncoated tablet, 40 1072151000168100 Codasig uncoated tablet 1072141000168102 Codasig 1072141000168102 Codasig 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +20122011000036106 Leukeran 2 mg film-coated tablet, 25, bottle 73026 13346011000036104 Leukeran 2 mg film-coated tablet, 25 6631011000036108 Leukeran 2 mg film-coated tablet 4398011000036106 Leukeran 4398011000036106 Leukeran 27707011000036101 chlorambucil 2 mg tablet, 25 23042011000036101 chlorambucil 2 mg tablet 21773011000036101 chlorambucil +921875011000036104 Cefepime (Omegapharm) 2 g powder for injection, 1 vial 156641 921434011000036105 Cefepime (Omegapharm) 2 g powder for injection, 1 vial 921006011000036104 Cefepime (Omegapharm) 2 g powder for injection, 2 g vial 920965011000036106 Cefepime (Omegapharm) 920965011000036106 Cefepime (Omegapharm) 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +18588011000036107 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Chemmart) uncoated tablet, 30, blister pack 127120 11833011000036102 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Chemmart) uncoated tablet, 30 5280011000036109 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Chemmart) uncoated tablet 63201000168105 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Chemmart) 63201000168105 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (Chemmart) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +43582011000036107 Duac Once Daily gel, 55 g, tube 100707 41094011000036107 Duac Once Daily gel, 55 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46080011000036100 clindamycin 1% + benzoyl peroxide 5% gel, 55 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +44169011000036105 Cozaar 50 mg film-coated tablet, 15, blister pack 54809 41645011000036105 Cozaar 50 mg film-coated tablet, 15 40122011000036109 Cozaar 50 mg film-coated tablet 39592011000036106 Cozaar 39592011000036106 Cozaar 46464011000036100 losartan potassium 50 mg tablet, 15 45171011000036109 losartan potassium 50 mg tablet 44887011000036108 losartan +152491000036102 Ziprasidone (Apo) 80 mg hard capsule, 60, blister pack 201064 150801000036106 Ziprasidone (Apo) 80 mg hard capsule, 60 148281000036104 Ziprasidone (Apo) 80 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27572011000036105 ziprasidone 80 mg capsule, 60 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +152491000036102 Ziprasidone (Apo) 80 mg hard capsule, 60, blister pack 201060 150801000036106 Ziprasidone (Apo) 80 mg hard capsule, 60 148281000036104 Ziprasidone (Apo) 80 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27572011000036105 ziprasidone 80 mg capsule, 60 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +1040171000168106 Asartan 32 mg uncoated tablet, 28, blister pack 195369 1040161000168100 Asartan 32 mg uncoated tablet, 28 1040151000168102 Asartan 32 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 904831000168107 candesartan cilexetil 32 mg tablet, 28 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +61239011000036103 Tri-Profen 200 mg film-coated tablet, 96, blister pack 76986 57175011000036101 Tri-Profen 200 mg film-coated tablet, 96 54224011000036106 Tri-Profen 200 mg film-coated tablet 53358011000036106 Tri-Profen 53358011000036106 Tri-Profen 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +931675011000036108 Actonel EC Once-a-Week 35 mg enteric tablet, 4, blister pack 166838 930835011000036108 Actonel EC Once-a-Week 35 mg enteric tablet, 4 930063011000036103 Actonel EC Once-a-Week 35 mg enteric tablet 700017651000036104 Actonel EC Once-a-Week 700017651000036104 Actonel EC Once-a-Week 75621000036104 risedronate sodium 35 mg enteric tablet, 4 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +61085011000036100 Cyklokapron 500 mg film-coated tablet, 108, blister pack 70405 57028011000036103 Cyklokapron 500 mg film-coated tablet, 108 4970011000036109 Cyklokapron 500 mg film-coated tablet 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 63702011000036102 tranexamic acid 500 mg tablet, 108 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +18104011000036107 Barbloc 5 mg uncoated tablet, 100, bottle 17589 12123011000036106 Barbloc 5 mg uncoated tablet, 100 4546011000036100 Barbloc 5 mg uncoated tablet 4187011000036100 Barbloc 4187011000036100 Barbloc 26933011000036106 pindolol 5 mg tablet, 100 22310011000036103 pindolol 5 mg tablet 21768011000036103 pindolol +1039851000168100 Atorvastatin (Ascent) 10 mg film-coated tablet, 50, blister pack 178530 1039841000168102 Atorvastatin (Ascent) 10 mg film-coated tablet, 50 1039731000168104 Atorvastatin (Ascent) 10 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841591000168106 atorvastatin 10 mg tablet, 50 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +68983011000036104 Nicotinell Liquorice 2 mg chewing gum, 144, blister pack 136134 66785011000036100 Nicotinell Liquorice 2 mg chewing gum, 144 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71510011000036105 nicotine 2 mg gum, 144 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1069701000168103 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 10, blister pack 211368 1069691000168103 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 10 1069671000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069681000168101 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 10 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +890051000168105 Buscopan 10 mg moulded suppository, 6, strip pack 17917 890041000168108 Buscopan 10 mg moulded suppository, 6 890021000168102 Buscopan 10 mg moulded suppository 2401000168103 Buscopan 2401000168103 Buscopan 890031000168104 hyoscine butylbromide 10 mg suppository, 6 890011000168109 hyoscine butylbromide 10 mg suppository 21580011000036102 hyoscine butylbromide +77379011000036108 Vitabdeck hard capsule, 60, bottle 73551 76795011000036102 Vitabdeck hard capsule, 60 76183011000036105 Vitabdeck hard capsule 11901000168104 Vitabdeck 11901000168104 Vitabdeck 78299011000036102 vitamin A 2500 units + betacarotene 3 mg + thiamine hydrochloride 1.5 mg + riboflavin 1.7 mg + pyridoxine hydrochloride 1.9 mg + cyanocobalamin 3 microgram + nicotinamide 20 mg + biotin 100 microgram + folic acid 200 microgram + ascorbic acid 100 mg + pantothenic acid (as calcium pantothenate) 12 mg + colecalciferol 11 microgram (440 units) + d-alpha-tocopheryl acid succinate 150 units + phytomenadione 150 microgram + zinc amino acid chelate 37.5 mg (zinc 7.5 mg) capsule, 60 77598011000036108 vitamin A 2500 units + betacarotene 3 mg + thiamine hydrochloride 1.5 mg + riboflavin 1.7 mg + pyridoxine hydrochloride 1.9 mg + cyanocobalamin 3 microgram + nicotinamide 20 mg + biotin 100 microgram + folic acid 200 microgram + ascorbic acid 100 mg + pantothenic acid (as calcium pantothenate) 12 mg + colecalciferol 11 microgram (440 units) + d-alpha-tocopheryl acid succinate 150 units + phytomenadione 150 microgram + zinc amino acid chelate 37.5 mg (zinc 7.5 mg) capsule 77438011000036105 vitamin A + betacarotene + thiamine + riboflavin + pyridoxine + cyanocobalamin + nicotinamide + biotin + folic acid + ascorbic acid + calcium pantothenate + colecalciferol + d-alpha-tocopheryl acid succinate + phytomenadione + zinc amino acid chelate +694891000168109 Xanopan 50/5 eye drops solution, 2.5 mL, bottle 217134 694881000168106 Xanopan 50/5 eye drops solution, 2.5 mL 694871000168108 Xanopan 50/5 eye drops solution 694861000168102 Xanopan 50/5 694861000168102 Xanopan 50/5 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +21043011000036104 Amoxycillin (GenRx) 500 mg hard capsule, 20, blister pack 96876 14188011000036103 Amoxycillin (GenRx) 500 mg hard capsule, 20 7469011000036104 Amoxycillin (GenRx) 500 mg hard capsule 3646011000036109 Amoxycillin (GenRx) 3646011000036109 Amoxycillin (GenRx) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +19072011000036100 Clofen 25 mg uncoated tablet, 100, bottle 42147 12380011000036101 Clofen 25 mg uncoated tablet, 100 5630011000036103 Clofen 25 mg uncoated tablet 3955011000036100 Clofen 3955011000036100 Clofen 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +926775011000036103 Colgate Total Mint Stripe toothpaste, 160 g, tube 154430 926172011000036104 Colgate Total Mint Stripe toothpaste, 160 g 925655011000036105 Colgate Total Mint Stripe toothpaste 20541000168109 Colgate Total Mint Stripe 20541000168109 Colgate Total Mint Stripe 927328011000036105 sodium fluoride 0.22% + triclosan 0.3% toothpaste, 160 g 926991011000036101 sodium fluoride 0.22% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +61556011000036100 Neutrafluor Mint 1.05% toothpaste, 56 g, tube 93948 57478011000036106 Neutrafluor Mint 1.05% toothpaste, 56 g 54317011000036104 Neutrafluor Mint 1.05% toothpaste 53204011000036103 Neutrafluor 53204011000036103 Neutrafluor 63878011000036106 sodium fluoride 1.05% toothpaste, 56 g 62093011000036101 sodium fluoride 1.05% toothpaste 61768011000036106 fluoride +947611000168101 Risdone 1 mg film-coated tablet, 28, blister pack 144262 947601000168104 Risdone 1 mg film-coated tablet, 28 947511000168102 Risdone 1 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947591000168106 risperidone 1 mg tablet, 28 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +849351000168109 Vzole 50 mg film-coated tablet, 56, blister pack 238239 849331000168103 Vzole 50 mg film-coated tablet, 56 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +1121221000168102 Quetiapine XR (Medis) 400 mg modified release tablet, 30, blister pack 226810 1121211000168109 Quetiapine XR (Medis) 400 mg modified release tablet, 30 1121161000168101 Quetiapine XR (Medis) 400 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 790841000168102 quetiapine 400 mg modified release tablet, 30 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +87668011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet, 112, blister pack 148947 87429011000036100 Clopidogrel (Winthrop) 75 mg film-coated tablet, 112 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87799011000036100 clopidogrel 75 mg tablet, 112 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +812981000168104 Nuromol film-coated tablet, 4, blister pack 225322 812971000168102 Nuromol film-coated tablet, 4 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 812961000168108 paracetamol 500 mg + ibuprofen 200 mg tablet, 4 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +748841000168106 Docetaxel (Mayne) 160 mg/8 mL concentrated injection, 8 mL vial 209465 748831000168102 Docetaxel (Mayne) 160 mg/8 mL concentrated injection, 8 mL vial 748821000168100 Docetaxel (Mayne) 160 mg/8 mL concentrated injection, 8 mL vial 748511000168105 Docetaxel (Mayne) 748511000168105 Docetaxel (Mayne) 748241000168107 docetaxel 160 mg/8 mL injection, 8 mL vial 748221000168101 docetaxel 160 mg/8 mL injection, vial 21721011000036101 docetaxel +1080531000168106 Fem-V Plus (1 x 150 mg capsule, 1 x 10 g cream), 1 pack, composite pack 211457 1080521000168108 Fem-V Plus (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 1080491000168106 Fem-V Plus 1% cream 1080451000168101 Fem-V Plus 1080451000168101 Fem-V Plus 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1080531000168106 Fem-V Plus (1 x 150 mg capsule, 1 x 10 g cream), 1 pack, composite pack 211457 1080521000168108 Fem-V Plus (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 1080461000168104 Fem-V Plus 150 mg hard capsule 1080451000168101 Fem-V Plus 1080451000168101 Fem-V Plus 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1108241000168107 Midavel 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207246 1108231000168103 Midavel 5 mg/5 mL injection solution, 10 x 5 mL ampoules 1108171000168106 Midavel 5 mg/5 mL injection solution, 5 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +1078681000168101 Atomoxetine (GPPL) 5 mg hard capsule, 56, blister pack 234842 1078671000168104 Atomoxetine (GPPL) 5 mg hard capsule, 56 1078601000168109 Atomoxetine (GPPL) 5 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 976401000168100 atomoxetine 5 mg capsule, 56 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +898641000168104 Nicotinell Peppermint 2 mg lozenge, 96, blister pack 276925 898631000168108 Nicotinell Peppermint 2 mg lozenge, 96 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 150431000036102 nicotine 2 mg lozenge, 96 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1035821000168105 Atorvastatin (RBX) 20 mg film-coated tablet, 30, bottle 173509 1035781000168100 Atorvastatin (RBX) 20 mg film-coated tablet, 30 1035751000168107 Atorvastatin (RBX) 20 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +926721011000036104 Perindobell 8 mg uncoated tablet, 30, blister pack 125453 926132011000036102 Perindobell 8 mg uncoated tablet, 30 925587011000036101 Perindobell 8 mg uncoated tablet 925554011000036101 Perindobell 925554011000036101 Perindobell 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +933213151000036105 Pravastatin Sodium (Hexal) 10 mg tablet, 30, blister pack 152459 933201571000036107 Pravastatin Sodium (Hexal) 10 mg tablet, 30 933194721000036100 Pravastatin Sodium (Hexal) 10 mg tablet 933193451000036102 Pravastatin Sodium (Hexal) 933193451000036102 Pravastatin Sodium (Hexal) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +804371000168108 Disprin Max 500 mg tablet, 16, strip pack 53682 804361000168102 Disprin Max 500 mg tablet, 16 804351000168104 Disprin Max 500 mg tablet 22811000168106 Disprin Max 22811000168106 Disprin Max 63741011000036100 aspirin 500 mg tablet, 16 62068011000036108 aspirin 500 mg tablet 21719011000036107 aspirin +68829011000036103 Rikoderm bath oil, 250 mL, bottle 10588 66513011000036104 Rikoderm bath oil, 250 mL 65318011000036105 Rikoderm bath oil 65134011000036102 Rikoderm 65134011000036102 Rikoderm 71245011000036100 light liquid paraffin 91.7% + wool fat 3% bath oil, 250 mL 69916011000036109 light liquid paraffin 91.7% + wool fat 3% bath oil 69787011000036102 light liquid paraffin + wool fat +85381000036103 Fendex ER 10 mg modified release tablet, 30, bottle 184618 84551000036104 Fendex ER 10 mg modified release tablet, 30 84091000036104 Fendex ER 10 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 27476011000036101 felodipine 10 mg modified release tablet, 30 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +1082791000168104 Telnase 55 microgram/actuation nasal spray, 120 actuations, pump pack 104544 74200011000036107 Telnase 55 microgram/actuation nasal spray, 120 actuations 73835011000036103 Telnase 55 microgram/actuation nasal spray, actuation 73735011000036100 Telnase 73735011000036100 Telnase 75345011000036109 triamcinolone acetonide 55 microgram/actuation nasal spray, 120 actuations 75010011000036108 triamcinolone acetonide 55 microgram/actuation nasal spray, actuation 21377011000036106 triamcinolone +37491011000036103 Heparin Sodium (DBL) 1000 units/mL injection solution, 50 x 1 mL ampoules 12883 36759011000036102 Heparin Sodium (DBL) 1000 units/mL injection solution, 50 x 1 mL ampoules 36151011000036105 Heparin Sodium (DBL) 1000 units/mL injection solution, ampoule 4435011000036104 Heparin Sodium (DBL) 4435011000036104 Heparin Sodium (DBL) 38664011000036107 heparin sodium 1000 units/mL injection, 50 x 1 mL ampoules 37913011000036100 heparin sodium 1000 units/mL injection, ampoule 858661000168109 heparin +19522011000036104 Acyclo-V 200 mg film-coated tablet, 25, blister pack 56372 12794011000036109 Acyclo-V 200 mg film-coated tablet, 25 6088011000036102 Acyclo-V 200 mg film-coated tablet 3992011000036100 Acyclo-V 3992011000036100 Acyclo-V 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +947771000168100 Risdone 500 microgram film-coated tablet, 6, blister pack 144200 947761000168106 Risdone 500 microgram film-coated tablet, 6 947741000168107 Risdone 500 microgram film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947751000168109 risperidone 500 microgram tablet, 6 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +18181011000036108 Olmetec Plus 40/12.5 mg film-coated tablet, 30, blister pack 115737 11501011000036106 Olmetec Plus 40/12.5 mg film-coated tablet, 30 5622011000036102 Olmetec Plus 40/12.5 mg film-coated tablet 42781000168106 Olmetec Plus 40/12.5 mg 42781000168106 Olmetec Plus 40/12.5 mg 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +50629011000036106 Amipride 400 mg film-coated tablet, 60, blister pack 140231 49655011000036102 Amipride 400 mg film-coated tablet, 60 48803011000036104 Amipride 400 mg film-coated tablet 48437011000036106 Amipride 48437011000036106 Amipride 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +1104221000168105 Alepam 15 mg uncoated tablet, 50, bottle 17572 1104211000168103 Alepam 15 mg uncoated tablet, 50 32245011000036105 Alepam 15 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 980351000168101 oxazepam 15 mg tablet, 50 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +933215481000036107 Olanzapine IM (LY) 10 mg powder for injection, 10 vials 167677 933204941000036105 Olanzapine IM (LY) 10 mg powder for injection, 10 vials 933196111000036101 Olanzapine IM (LY) 10 mg powder for injection, 10 mg vial 52601000168106 Olanzapine IM (LY) 52601000168106 Olanzapine IM (LY) 46746011000036108 olanzapine 10 mg injection, 10 vials 45297011000036107 olanzapine 10 mg injection, vial 21485011000036103 olanzapine +20572011000036101 Nicabate CQ 14 mg/24 hours patch, 7, sachet 80207 13762011000036107 Nicabate CQ 14 mg/24 hours patch, 7 7047011000036108 Nicabate CQ 14 mg/24 hours patch 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 27925011000036106 nicotine 14 mg/24 hours patch, 7 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +69300011000036100 Nasalate nasal cream, 15 g, tube 20861 67100011000036101 Nasalate nasal cream, 15 g 65205011000036107 Nasalate nasal cream 65127011000036105 Nasalate 65127011000036105 Nasalate 71668011000036100 phenylephrine hydrochloride 0.25% + chlorhexidine gluconate 0.3% nasal cream, 15 g 70117011000036106 phenylephrine hydrochloride 0.25% + chlorhexidine gluconate 0.3% nasal cream 69881011000036108 phenylephrine + chlorhexidine +37423011000036107 Bricanyl Elixir 300 microgram/mL oral liquid solution, 100 mL, bottle 12067 36705011000036109 Bricanyl Elixir 300 microgram/mL oral liquid solution, 100 mL 36049011000036102 Bricanyl Elixir 300 microgram/mL oral liquid solution 39851000168102 Bricanyl Elixir 39851000168102 Bricanyl Elixir 38618011000036101 terbutaline sulfate 300 microgram/mL oral liquid, 100 mL 37882011000036104 terbutaline sulfate 300 microgram/mL oral liquid 21514011000036105 terbutaline +17736011000036108 Epilim Syrup 200 mg/5 mL oral liquid solution, 300 mL, bottle 15372 12088011000036100 Epilim Syrup 200 mg/5 mL oral liquid solution, 300 mL 5049011000036102 Epilim Syrup 200 mg/5 mL oral liquid solution, 5 mL 49761000168108 Epilim Syrup 49761000168108 Epilim Syrup 30615011000036109 valproate sodium 200 mg/5 mL oral liquid, 300 mL 23088011000036109 valproate sodium 200 mg/5 mL oral liquid 21225011000036107 valproate +933213311000036108 Citalopram (IPCA) 40 mg film-coated tablet, 14, bottle 158855 933202831000036101 Citalopram (IPCA) 40 mg film-coated tablet, 14 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202841000036106 citalopram 40 mg tablet, 14 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +710101000168106 PKU Air 15 Green (Lime Twist) oral liquid solution, 30 x 130 mL pouches 710091000168101 PKU Air 15 Green (Lime Twist) oral liquid solution, 30 x 130 mL pouches 710081000168104 PKU Air 15 Green (Lime Twist) oral liquid solution, 130 mL pouch 709991000168108 PKU Air 15 709991000168108 PKU Air 15 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +19141011000036104 Pressin 1 mg uncoated tablet, 100, blister pack 44555 12440011000036102 Pressin 1 mg uncoated tablet, 100 5129011000036108 Pressin 1 mg uncoated tablet 3517011000036105 Pressin 3517011000036105 Pressin 27727011000036107 prazosin 1 mg tablet, 100 23062011000036109 prazosin 1 mg tablet 21544011000036104 prazosin +59680011000036109 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension, 30 mL, bottle 108772 55739011000036109 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension, 30 mL 53643011000036107 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension 7531000168107 Nurofen for Children Infant Drops 7531000168107 Nurofen for Children Infant Drops 63364011000036108 ibuprofen 40 mg/mL oral liquid, 30 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +832171000168107 PKU Restore Berry powder for oral liquid, 60 x 20 g sachets 832161000168101 PKU Restore Berry powder for oral liquid, 60 x 20 g sachets 832151000168103 PKU Restore Berry powder for oral liquid, 20 g sachet 832051000168102 PKU Restore 832051000168102 PKU Restore 832121000168106 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 60 x 20 g sachets 832061000168100 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 20 g sachet 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +69065011000036106 Oxycontin 15 mg modified release tablet, 60, blister pack 143102 66867011000036105 Oxycontin 15 mg modified release tablet, 60 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 71472011000036108 oxycodone hydrochloride 15 mg modified release tablet, 60 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +130831000036100 Aubagio 14 mg film-coated tablet, 10, blister pack 192672 128061000036104 Aubagio 14 mg film-coated tablet, 10 124821000036106 Aubagio 14 mg film-coated tablet 123781000036100 Aubagio 123781000036100 Aubagio 128071000036107 teriflunomide 14 mg tablet, 10 124831000036108 teriflunomide 14 mg tablet 132081000036109 teriflunomide +1039931000168102 Aspramide 10 mg film-coated tablet, 125, blister pack 196460 1039921000168100 Aspramide 10 mg film-coated tablet, 125 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 671991000168109 metoclopramide hydrochloride 10 mg tablet, 125 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +68816011000036104 Mylanta Double Strength reformulation oral liquid suspension, 200 mL, bottle 126090 66703011000036100 Mylanta Double Strength reformulation oral liquid suspension, 200 mL 65356011000036104 Mylanta Double Strength reformulation oral liquid suspension, 5 mL 23731000168101 Mylanta Double Strength 23731000168101 Mylanta Double Strength 71386011000036109 aluminium hydroxide 400 mg/5 mL + magnesium hydroxide 400 mg/5 mL + simethicone 30 mg/5 mL oral liquid, 200 mL 69988011000036106 aluminium hydroxide 400 mg/5 mL + magnesium hydroxide 400 mg/5 mL + simethicone 30 mg/5 mL oral liquid 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +933211161000036107 Zavesca 100 mg hard capsule, 90, blister pack 122957 933200261000036105 Zavesca 100 mg hard capsule, 90 933193981000036104 Zavesca 100 mg hard capsule 933193401000036103 Zavesca 933193401000036103 Zavesca 933200271000036102 miglustat 100 mg capsule, 90 933193991000036102 miglustat 100 mg capsule 933216281000036104 miglustat +971371000168106 Glivanib 400 mg hard capsule, 120, blister pack 285900 971361000168100 Glivanib 400 mg hard capsule, 120 971271000168103 Glivanib 400 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 893981000168108 imatinib 400 mg capsule, 120 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +933052011000036104 Motrig 200 mg tablet, 56, blister pack 106988 932848011000036106 Motrig 200 mg tablet, 56 932716011000036104 Motrig 200 mg tablet 925505011000036107 Motrig 925505011000036107 Motrig 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +60279011000036109 Panadol Caplet 500 mg film-coated tablet, 24, blister pack 13590 56238011000036108 Panadol Caplet 500 mg film-coated tablet, 24 53849011000036103 Panadol Caplet 500 mg film-coated tablet 29141000168108 Panadol Caplet 29141000168108 Panadol Caplet 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +929696011000036101 Valacor 500 mg film-coated tablet, 100, blister pack 177373 929532011000036101 Valacor 500 mg film-coated tablet, 100 929415011000036105 Valacor 500 mg film-coated tablet 929366011000036107 Valacor 929366011000036107 Valacor 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +933215321000036102 Orfadin 10 mg hard capsule, 60, bottle 164174 933204771000036101 Orfadin 10 mg hard capsule, 60 933195731000036102 Orfadin 10 mg hard capsule 933193831000036108 Orfadin 933193831000036108 Orfadin 933204781000036104 nitisinone 10 mg capsule, 60 933195741000036107 nitisinone 10 mg capsule 933216371000036107 nitisinone +933231921000036108 Aethoxysklerol 3% (60 mg/2 mL) injection solution, 5 x 2 mL ampoules 79121 933226381000036102 Aethoxysklerol 3% (60 mg/2 mL) injection solution, 5 x 2 mL ampoules 933221151000036102 Aethoxysklerol 3% (60 mg/2 mL) injection solution, 2 mL ampoule 39757011000036100 Aethoxysklerol 39757011000036100 Aethoxysklerol 933226391000036100 lauromacrogol-400 3% (60 mg/2 mL) injection, 5 x 2 mL ampoules 933221161000036104 lauromacrogol-400 3% (60 mg/2 mL) injection, ampoule 44952011000036107 lauromacrogol-400 +19051011000036108 Flopen 250 mg hard capsule, 24, blister pack 40827 12359011000036104 Flopen 250 mg hard capsule, 24 5932011000036103 Flopen 250 mg hard capsule 3750011000036102 Flopen 3750011000036102 Flopen 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +19051011000036108 Flopen 250 mg hard capsule, 24, blister pack 209367 12359011000036104 Flopen 250 mg hard capsule, 24 5932011000036103 Flopen 250 mg hard capsule 3750011000036102 Flopen 3750011000036102 Flopen 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +1087061000168106 Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations, pump pack 67490 953941000168103 Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations 148821000036101 Atrovent Forte 44 microgram/actuation nasal spray, actuation 18601000168101 Atrovent Forte 18601000168101 Atrovent Forte 953931000168107 ipratropium bromide monohydrate 44 microgram/actuation nasal spray, 120 actuations 148841000036109 ipratropium bromide monohydrate 44 microgram/actuation nasal spray, actuation 21512011000036101 ipratropium +59885011000036109 Period Pain Relief (Amcal) 275 mg film-coated tablet, 12, blister pack 222642 55847011000036100 Period Pain Relief (Amcal) 275 mg film-coated tablet, 12 53718011000036100 Period Pain Relief (Amcal) 275 mg film-coated tablet 53379011000036100 Period Pain Relief (Amcal) 53379011000036100 Period Pain Relief (Amcal) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +59885011000036109 Period Pain Relief (Amcal) 275 mg film-coated tablet, 12, blister pack 116382 55847011000036100 Period Pain Relief (Amcal) 275 mg film-coated tablet, 12 53718011000036100 Period Pain Relief (Amcal) 275 mg film-coated tablet 53379011000036100 Period Pain Relief (Amcal) 53379011000036100 Period Pain Relief (Amcal) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +69699011000036100 Imflac Anti-Inflammatory Pain Relief 1% gel, 120 g, tube 91047 67498011000036101 Imflac Anti-Inflammatory Pain Relief 1% gel, 120 g 65684011000036105 Imflac Anti-Inflammatory Pain Relief 1% gel 15971000168106 Imflac Anti-Inflammatory Pain Relief 15971000168106 Imflac Anti-Inflammatory Pain Relief 72013011000036103 diclofenac sodium 1% gel, 120 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +83393011000036105 Nebilet 5 mg tablet, 28, blister pack 148874 83314011000036106 Nebilet 5 mg tablet, 28 83247011000036104 Nebilet 5 mg tablet 83226011000036104 Nebilet 83226011000036104 Nebilet 83487011000036107 nebivolol 5 mg tablet, 28 83431011000036105 nebivolol 5 mg tablet 83418011000036105 nebivolol +43587011000036109 Ceftazidime (DBL) 1 g powder for injection, 1 vial 120543 41230011000036103 Ceftazidime (DBL) 1 g powder for injection, 1 vial 39859011000036109 Ceftazidime (DBL) 1 g powder for injection, vial 39610011000036101 Ceftazidime (DBL) 39610011000036101 Ceftazidime (DBL) 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +688631000168101 Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1, carton 688621000168104 Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1 48646011000036109 Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll 13301000168104 Combine Roll (12010) (Johnson & Johnson Medical) 13301000168104 Combine Roll (12010) (Johnson & Johnson Medical) 688611000168106 gauze and cotton tissue combine roll 10 cm x 10 m wrapped pack roll, 1 50940011000036102 gauze and cotton tissue combine roll 10 cm x 10 m wrapped pack roll 50777011000036105 gauze and cotton tissue combine roll +86049011000036108 Amlodipine (DRLA) 10 mg tablet, 30, blister pack 147606 85642011000036108 Amlodipine (DRLA) 10 mg tablet, 30 85312011000036109 Amlodipine (DRLA) 10 mg tablet 85261011000036108 Amlodipine (DRLA) 85261011000036108 Amlodipine (DRLA) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +74581000036103 Konazol (Hexal) 2% shampoo, 100 mL, bottle 82748 72621000036106 Konazol (Hexal) 2% shampoo, 100 mL 70461000036101 Konazol (Hexal) 2% shampoo 69341000036106 Konazol (Hexal) 69341000036106 Konazol (Hexal) 72531000036107 ketoconazole 2% shampoo, 100 mL 69971000036100 ketoconazole 2% shampoo 21500011000036103 ketoconazole +941421000168104 Frusemide (Winthrop) 40 mg/4 mL injection solution, 5 x 4 mL ampoules 144481 941411000168106 Frusemide (Winthrop) 40 mg/4 mL injection solution, 5 x 4 mL ampoules 941401000168108 Frusemide (Winthrop) 40 mg/4 mL injection solution, 4 mL ampoule 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 46741011000036103 furosemide (frusemide) 40 mg/4 mL injection, 5 x 4 mL ampoules 45293011000036103 furosemide (frusemide) 40 mg/4 mL injection, ampoule 21329011000036103 furosemide (frusemide) +1089231000168102 Lorstat 80 mg film-coated tablet, 90, bottle 181408 1089221000168100 Lorstat 80 mg film-coated tablet, 90 20761000036108 Lorstat 80 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1074111000168109 Ceftazidime (Auro) 2 g powder for injection, 5 vials 158793 1074101000168106 Ceftazidime (Auro) 2 g powder for injection, 5 vials 1074061000168108 Ceftazidime (Auro) 2 g powder for injection, 2 g vial 1074001000168107 Ceftazidime (Auro) 1074001000168107 Ceftazidime (Auro) 38651011000036102 ceftazidime 2 g injection, 5 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +1095721000168107 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet, 20, blister pack 287705 1095711000168100 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet, 20 1095681000168101 Anti-Inflammatory Pain Relief (Blooms The Chemist) 25 mg enteric tablet 1095591000168102 Anti-Inflammatory Pain Relief (Blooms The Chemist) 1095591000168102 Anti-Inflammatory Pain Relief (Blooms The Chemist) 63834011000036101 diclofenac sodium 25 mg enteric tablet, 20 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +1080551000168100 Dermadrate Dry Skin Treatment 10% cream, 50 g, tube 1080541000168102 Dermadrate Dry Skin Treatment 10% cream, 50 g 65638011000036105 Dermadrate Dry Skin Treatment 10% cream 65152011000036107 Dermadrate Dry Skin Treatment 65152011000036107 Dermadrate Dry Skin Treatment 71288011000036100 urea 10% cream, 50 g 22378011000036108 urea 10% cream 21561011000036106 urea +19535011000036109 Tritace 2.5 mg uncoated tablet, 30, blister pack 56537 12807011000036103 Tritace 2.5 mg uncoated tablet, 30 6098011000036101 Tritace 2.5 mg uncoated tablet 4384011000036103 Tritace 4384011000036103 Tritace 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +954191000168105 Trandolapril (Terry White Chemists) 500 microgram capsule, 28, blister pack 135965 954181000168107 Trandolapril (Terry White Chemists) 500 microgram capsule, 28 954171000168109 Trandolapril (Terry White Chemists) 500 microgram capsule 954161000168103 Trandolapril (Terry White Chemists) 954161000168103 Trandolapril (Terry White Chemists) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +1054831000168108 Palexia SR 250 mg modified release tablet, 30, blister pack 165357 1054821000168105 Palexia SR 250 mg modified release tablet, 30 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054811000168103 tapentadol 250 mg modified release tablet, 30 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +680041000168101 Lozanoc 50 mg hard capsule, 15, blister pack 206361 680031000168105 Lozanoc 50 mg hard capsule, 15 680011000168100 Lozanoc 50 mg hard capsule 679991000168108 Lozanoc 679991000168108 Lozanoc 680021000168107 itraconazole 50 mg capsule, 15 680001000168103 itraconazole 50 mg capsule 21903011000036100 itraconazole +60035011000036100 Heartburn Relief (Guardian) 150 mg film-coated tablet, 28, blister pack 123671 55997011000036103 Heartburn Relief (Guardian) 150 mg film-coated tablet, 28 53751011000036101 Heartburn Relief (Guardian) 150 mg film-coated tablet 53366011000036104 Heartburn Relief (Guardian) 53366011000036104 Heartburn Relief (Guardian) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +152401000036105 Crampeze Night Cramps hard capsule, 60, blister pack 199961 150661000036106 Crampeze Night Cramps hard capsule, 60 148621000036102 Crampeze Night Cramps hard capsule 147981000036109 Crampeze Night Cramps 147981000036109 Crampeze Night Cramps 150671000036103 citrus bioflavonoids extract 150 mg + copper + ginkgo biloba 1.5 g + magnesium (as oxide heavy) 72.36 mg + magnesium (as sulfate dried) 3.25 mg + pyridoxine hydrochloride 10 mg + rutoside 200 mg capsule, 60 148631000036100 citrus bioflavonoids extract 150 mg + copper + ginkgo biloba 1.5 g + magnesium (as oxide heavy) 72.36 mg + magnesium (as sulfate dried) 3.25 mg + pyridoxine hydrochloride 10 mg + rutoside 200 mg capsule 152671000036104 citrus bioflavonoids extract + copper + ginkgo biloba + magnesium oxide heavy + magnesium sulfate dried + pyridoxine + rutoside +933214841000036102 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 30, bottle 163565 933204441000036102 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 30 933195531000036107 Pravastatin Sodium (RZ) 20 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +680201000168108 Lozanoc 50 mg hard capsule, 60, blister pack 206361 680191000168105 Lozanoc 50 mg hard capsule, 60 680011000168100 Lozanoc 50 mg hard capsule 679991000168108 Lozanoc 679991000168108 Lozanoc 680181000168107 itraconazole 50 mg capsule, 60 680001000168103 itraconazole 50 mg capsule 21903011000036100 itraconazole +39410011000036104 Cosamide 50 mg film-coated tablet, 100, blister pack 135207 39294011000036109 Cosamide 50 mg film-coated tablet, 100 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 39486011000036103 bicalutamide 50 mg tablet, 100 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +37568011000036104 Papaverine Hydrochloride (DBL) 120 mg/10 mL injection solution, 5 x 10 mL ampoules 16277 36835011000036101 Papaverine Hydrochloride (DBL) 120 mg/10 mL injection solution, 5 x 10 mL ampoules 36066011000036100 Papaverine Hydrochloride (DBL) 120 mg/10 mL injection solution, 10 mL ampoule 35936011000036101 Papaverine Hydrochloride (DBL) 35936011000036101 Papaverine Hydrochloride (DBL) 38724011000036107 papaverine hydrochloride 120 mg/10 mL injection, 5 x 10 mL ampoules 37954011000036107 papaverine hydrochloride 120 mg/10 mL injection, ampoule 37766011000036104 papaverine +1095561000168109 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 50, blister pack 287305 1095551000168107 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 50 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +69155011000036106 Disprin Direct 300 mg chewable tablet, 2, strip pack 15356 66955011000036103 Disprin Direct 300 mg chewable tablet, 2 65492011000036103 Disprin Direct 300 mg chewable tablet 38641000168105 Disprin Direct 38641000168105 Disprin Direct 71530011000036100 aspirin 300 mg chewable tablet, 2 87371000036106 aspirin 300 mg chewable tablet 21719011000036107 aspirin +746591000168102 Morphine Sulfate (Hospira) 30 mg/mL injection solution, 5 x 1 mL ampoules 225412 746581000168100 Morphine Sulfate (Hospira) 30 mg/mL injection solution, 5 x 1 mL ampoules 746571000168103 Morphine Sulfate (Hospira) 30 mg/mL injection solution, ampoule 746471000168102 Morphine Sulfate (Hospira) 746471000168102 Morphine Sulfate (Hospira) 26737011000036109 morphine sulfate pentahydrate 30 mg/mL injection, 5 x 1 mL ampoules 22132011000036100 morphine sulfate pentahydrate 30 mg/mL injection, ampoule 21252011000036100 morphine +797951000168107 Aciclovir (AN) 800 mg uncoated tablet, 120, blister pack 182886 797941000168105 Aciclovir (AN) 800 mg uncoated tablet, 120 797911000168106 Aciclovir (AN) 800 mg uncoated tablet 797081000168104 Aciclovir (AN) 797081000168104 Aciclovir (AN) 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +152171000036105 Prexum Combi 5/1.25 film-coated tablet, 30, bottle 194917 150291000036102 Prexum Combi 5/1.25 film-coated tablet, 30 148161000036101 Prexum Combi 5/1.25 film-coated tablet 43401000168101 Prexum Combi 5/1.25 43401000168101 Prexum Combi 5/1.25 26767011000036101 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 30 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +17783011000036105 Lactocur 3.34 g/5 mL oral liquid solution, 500 mL, bottle 109887 11396011000036101 Lactocur 3.34 g/5 mL oral liquid solution, 500 mL 5102011000036105 Lactocur 3.34 g/5 mL oral liquid solution, 5 mL 3846011000036103 Lactocur 3846011000036103 Lactocur 27821011000036102 lactulose 3.34 g/5 mL oral liquid, 500 mL 23149011000036102 lactulose 3.34 g/5 mL oral liquid 21591011000036108 lactulose +60832011000036109 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 4, blister pack 58353 56788011000036105 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 4 54080011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 63571011000036103 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule, 4 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +1108811000168107 Midazolam (GenRx) 5 mg/mL injection solution, 10 x 1 mL ampoules 217656 1108801000168109 Midazolam (GenRx) 5 mg/mL injection solution, 10 x 1 mL ampoules 1108791000168108 Midazolam (GenRx) 5 mg/mL injection solution, ampoule 1108721000168106 Midazolam (GenRx) 1108721000168106 Midazolam (GenRx) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +921838011000036107 Tensodeine uncoated tablet, 20, blister pack 138543 921406011000036105 Tensodeine uncoated tablet, 20 920989011000036106 Tensodeine uncoated tablet 920918011000036101 Tensodeine 920918011000036101 Tensodeine 52897011000036108 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +34647011000036107 Depodur 10 mg/mL modified release injection, 5 x 1 mL vials 123620 34236011000036107 Depodur 10 mg/mL modified release injection, 5 x 1 mL vials 33978011000036105 Depodur 10 mg/mL modified release injection, vial 52571000168100 Depodur 52571000168100 Depodur 35112011000036105 morphine sulfate pentahydrate 10 mg/mL modified release injection, 5 x 1 mL vials 34854011000036109 morphine sulfate pentahydrate 10 mg/mL modified release injection, vial 21252011000036100 morphine +21107011000036106 Reminyl 16 mg modified release capsule, 28, blister pack 97885 14250011000036107 Reminyl 16 mg modified release capsule, 28 7536011000036108 Reminyl 16 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 28249011000036104 galantamine 16 mg modified release capsule, 28 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +931624011000036105 Aqium 70% gel, 1 L, pump pack 165368 930785011000036101 Aqium 70% gel, 1 L 930044011000036106 Aqium 70% gel 65090011000036106 Aqium 65090011000036106 Aqium 925446011000036102 ethanol 70% gel, 1 L 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +931624011000036105 Aqium 70% gel, 1 L, pump pack 179333 930785011000036101 Aqium 70% gel, 1 L 930044011000036106 Aqium 70% gel 65090011000036106 Aqium 65090011000036106 Aqium 925446011000036102 ethanol 70% gel, 1 L 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +946081000168102 Glimepiride (Sanofi) 3 mg uncoated tablet, 30, blister pack 142392 946071000168100 Glimepiride (Sanofi) 3 mg uncoated tablet, 30 946011000168108 Glimepiride (Sanofi) 3 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +1121701000168103 Zopiclone (GenRx) 7.5 mg film-coated tablet, 30, blister pack 213072 1121691000168103 Zopiclone (GenRx) 7.5 mg film-coated tablet, 30 1121681000168101 Zopiclone (GenRx) 7.5 mg film-coated tablet 1121671000168104 Zopiclone (GenRx) 1121671000168104 Zopiclone (GenRx) 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +66451000036109 Nappy Rash Soothing and Healing (David Hosking's) cream, 500 g, jar 54249 63951000036107 Nappy Rash Soothing and Healing (David Hosking's) cream, 500 g 61671000036109 Nappy Rash Soothing and Healing (David Hosking's) cream 18891000168106 Nappy Rash Soothing and Healing (David Hosking's) 18891000168106 Nappy Rash Soothing and Healing (David Hosking's) 63961000036105 benzoin Sumatra 1% + camphor 1% + storax prepared 0.8% + wool fat 52.4% + zinc oxide 14.3% cream, 500 g 61681000036106 benzoin Sumatra 1% + camphor 1% + storax prepared 0.8% + wool fat 52.4% + zinc oxide 14.3% cream 66881000036104 benzoin Sumatra + camphor + storax prepared + wool fat + zinc oxide +1005771000168105 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags 190549 1005761000168104 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags 1005751000168101 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 100 mL bag 728591000168104 Ropivacaine 0.2% (Actavis) 728591000168104 Ropivacaine 0.2% (Actavis) 1004551000168105 ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags 1004531000168104 ropivacaine hydrochloride 200 mg/100 mL injection, bag 44857011000036102 ropivacaine +682371000168105 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 205579 682361000168104 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28 682311000168102 Eleanor 150/30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 682351000168101 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +682371000168105 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 205579 682361000168104 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28 682321000168109 Eleanor 150/30 ED (inert substance) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 682351000168101 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +44666011000036102 Liprace 5 mg uncoated tablet, 30, bottle 91377 13967011000036100 Liprace 5 mg uncoated tablet, 30 7253011000036107 Liprace 5 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +1105911000168106 Zolpidem (AN) 10 mg film-coated tablet, 28, blister pack 131917 1105901000168108 Zolpidem (AN) 10 mg film-coated tablet, 28 698831000168103 Zolpidem (AN) 10 mg film-coated tablet 698821000168101 Zolpidem (AN) 698821000168101 Zolpidem (AN) 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +61016011000036109 Visine Allergy 0.025% / 0.3% eye drops solution, 2 mL, bottle 66073 56959011000036100 Visine Allergy 0.025% / 0.3% eye drops solution, 2 mL 54139011000036107 Visine Allergy 0.025% / 0.3% eye drops solution 6601000168102 Visine Allergy 0.025% / 0.3% 6601000168102 Visine Allergy 0.025% / 0.3% 63657011000036102 naphazoline hydrochloride 0.025% + pheniramine maleate 0.3% eye drops, 2 mL 22550011000036107 naphazoline hydrochloride 0.025% + pheniramine maleate 0.3% eye drops 21769011000036106 naphazoline + pheniramine +692561000168106 Desfax 100 mg modified release tablet, 28, bottle 218081 692521000168101 Desfax 100 mg modified release tablet, 28 692471000168104 Desfax 100 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +931382011000036100 Serdolect 20 mg film-coated tablet, 28, blister pack 127488 930584011000036101 Serdolect 20 mg film-coated tablet, 28 929952011000036109 Serdolect 20 mg film-coated tablet 929832011000036102 Serdolect 929832011000036102 Serdolect 932358011000036106 sertindole 20 mg tablet, 28 931830011000036109 sertindole 20 mg tablet 931786011000036100 sertindole +1026681000168101 Pregabalin (Amneal) 150 mg hard capsule, 21, blister pack 235877 1026671000168104 Pregabalin (Amneal) 150 mg hard capsule, 21 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855121000168102 pregabalin 150 mg capsule, 21 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +82361011000036102 Simvastatin (GA) 20 mg film-coated tablet, 30, blister pack 131652 82125011000036100 Simvastatin (GA) 20 mg film-coated tablet, 30 81998011000036104 Simvastatin (GA) 20 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +82361011000036102 Simvastatin (GA) 20 mg film-coated tablet, 30, blister pack 199744 82125011000036100 Simvastatin (GA) 20 mg film-coated tablet, 30 81998011000036104 Simvastatin (GA) 20 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +20156011000036109 Moclobemide (Terry White Chemists) 300 mg film-coated tablet, 60, blister pack 73832 13379011000036109 Moclobemide (Terry White Chemists) 300 mg film-coated tablet, 60 6664011000036102 Moclobemide (Terry White Chemists) 300 mg film-coated tablet 4080011000036107 Moclobemide (Terry White Chemists) 4080011000036107 Moclobemide (Terry White Chemists) 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +44683011000036106 Cernevit powder for injection, 10 vials 92418 42132011000036103 Cernevit powder for injection, 10 vials 40358011000036101 Cernevit powder for injection, vial 39604011000036109 Cernevit 39604011000036109 Cernevit 46894011000036105 retinol palmitate 3500 units + colecalciferol 5.5 microgram + dl-alpha-tocopherol 10.2 mg + ascorbic acid 125 mg + cocarboxylase tetrahydrate 5.8 mg + riboflavin sodium phosphate 5.67 mg + pyridoxine hydrochloride 5.5 mg + cyanocobalamin 6 microgram + folic acid 414 microgram + dexpanthenol 16.15 mg + biotin 69 microgram + nicotinamide 46 mg injection, 10 vials 45337011000036105 retinol palmitate 3500 units + colecalciferol 5.5 microgram + dl-alpha-tocopherol 10.2 mg + ascorbic acid 125 mg + cocarboxylase tetrahydrate 5.8 mg + riboflavin sodium phosphate 5.67 mg + pyridoxine hydrochloride 5.5 mg + cyanocobalamin 6 microgram + folic acid 414 microgram + dexpanthenol 16.15 mg + biotin 69 microgram + nicotinamide 46 mg injection, vial 44933011000036104 retinol palmitate + colecalciferol + dl-alpha-tocopherol + ascorbic acid + cocarboxylase + riboflavin + pyridoxine + cyanocobalamin + folic acid + dexpanthenol + biotin + nicotinamide +931750011000036107 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 200 mL vials 63959 930910011000036102 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 200 mL vials 930112011000036101 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 200 mL vial 5101000168100 Iomeron-300 5101000168100 Iomeron-300 932489011000036102 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 10 x 200 mL vials 931885011000036105 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 200 mL vial 931793011000036105 iomeprol +74830011000036109 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) injection solution, 18 x 500 mL bags 19495 74317011000036101 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) injection solution, 18 x 500 mL bags 5203011000036100 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) injection solution, 500 mL bag 4241000168107 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 4241000168107 Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 75427011000036105 sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, 18 x 500 mL bags 22348011000036109 sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +1103741000168108 Quetiapine (GH) 300 mg film-coated tablet, 30, blister pack 179896 1103731000168104 Quetiapine (GH) 300 mg film-coated tablet, 30 2211000036108 Quetiapine (GH) 300 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103721000168102 quetiapine 300 mg tablet, 30 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1018741000168107 Azithromycin (Apotex) 500 mg film-coated tablet, 1, blister pack 195915 1018731000168103 Azithromycin (Apotex) 500 mg film-coated tablet, 1 1018721000168101 Azithromycin (Apotex) 500 mg film-coated tablet 1018681000168107 Azithromycin (Apotex) 1018681000168107 Azithromycin (Apotex) 46128011000036104 azithromycin 500 mg tablet, 1 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +663001000168106 Irbesartan HCT 150/12.5 (GH) film-coated tablet, 30, blister pack 190115 662991000168105 Irbesartan HCT 150/12.5 (GH) film-coated tablet, 30 662981000168107 Irbesartan HCT 150/12.5 (GH) film-coated tablet 662971000168109 Irbesartan HCT 150/12.5 (GH) 662971000168109 Irbesartan HCT 150/12.5 (GH) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +59898011000036102 Becoderm-C Flareup 0.05% cream, 15 g, tube 116959 55860011000036106 Becoderm-C Flareup 0.05% cream, 15 g 53605011000036101 Becoderm-C Flareup 0.05% cream 45111000168108 Becoderm-C Flareup 45111000168108 Becoderm-C Flareup 63149011000036107 clobetasone butyrate 0.05% cream, 15 g 61871011000036109 clobetasone butyrate 0.05% cream 61820011000036103 clobetasone +931399011000036109 LMX 4 Topical Anaesthetic 4% cream, 5 g, tube 126095 930580011000036106 LMX 4 Topical Anaesthetic 4% cream, 5 g 929948011000036105 LMX 4 Topical Anaesthetic 4% cream 4651000168107 LMX 4 Topical Anaesthetic 4651000168107 LMX 4 Topical Anaesthetic 932354011000036104 lidocaine (lignocaine) 4% cream, 5 g 931826011000036109 lidocaine (lignocaine) 4% cream 21572011000036107 lidocaine (lignocaine) +947451000168102 Risdone 2 mg film-coated tablet, 60, blister pack 144280 947441000168104 Risdone 2 mg film-coated tablet, 60 947221000168106 Risdone 2 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +130671000036104 Adesan 8 mg uncoated tablet, 30, bottle 171018 127701000036102 Adesan 8 mg uncoated tablet, 30 124591000036107 Adesan 8 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +18554011000036106 Bactroban 2% ointment, 15 g, tube 11145 11425011000036107 Bactroban 2% ointment, 15 g 4814011000036103 Bactroban 2% ointment 3296011000036102 Bactroban 3296011000036102 Bactroban 26643011000036108 mupirocin 2% ointment, 15 g 22049011000036102 mupirocin 2% ointment 21590011000036101 mupirocin +757331000168106 Palexia SR 25 mg modified release tablet, 50, blister pack 229737 757321000168108 Palexia SR 25 mg modified release tablet, 50 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757311000168101 tapentadol 25 mg modified release tablet, 50 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +1080691000168109 Alpha Keri lotion, 50 mL, bottle 24617 1080681000168106 Alpha Keri lotion, 50 mL 5061011000036105 Alpha Keri lotion 30572011000036100 Alpha Keri 30572011000036100 Alpha Keri 1080671000168108 liquid paraffin 15.2% + lanolin oil 0.56% lotion, 50 mL 22370011000036106 liquid paraffin 15.2% + lanolin oil 0.56% lotion 33631011000036102 liquid paraffin + lanolin oil +60532011000036105 Cold and Flu Relief PE (Guardian) uncoated tablet, 96, blister pack 152036 56490011000036103 Cold and Flu Relief PE (Guardian) uncoated tablet, 96 53939011000036108 Cold and Flu Relief PE (Guardian) uncoated tablet 53454011000036109 Cold and Flu Relief PE (Guardian) 53454011000036109 Cold and Flu Relief PE (Guardian) 63382011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 96 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +86100011000036104 Lisinopril (GA) 10 mg uncoated tablet, 28, blister pack 106501 85615011000036109 Lisinopril (GA) 10 mg uncoated tablet, 28 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 46263011000036103 lisinopril 10 mg tablet, 28 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +949621000168100 Xylocaine Pump Spray 10% spray solution, 50 mL, pump actuated metered dose aerosol 134540 56199011000036105 Xylocaine Pump Spray 10% spray solution, 50 mL 53838011000036107 Xylocaine Pump Spray 10% spray solution, actuation 52831000168100 Xylocaine Pump Spray 52831000168100 Xylocaine Pump Spray 63258011000036104 lidocaine (lignocaine) 10% spray, 50 mL 61904011000036106 lidocaine (lignocaine) 10% spray, actuation 21572011000036107 lidocaine (lignocaine) +20640011000036105 Profloxin 750 mg film-coated tablet, 14, blister pack 81462 13820011000036102 Profloxin 750 mg film-coated tablet, 14 7106011000036108 Profloxin 750 mg film-coated tablet 3630011000036107 Profloxin 3630011000036107 Profloxin 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +44773011000036107 Reminyl 8 mg modified release capsule, 30, bottle 97882 42218011000036106 Reminyl 8 mg modified release capsule, 30 7535011000036101 Reminyl 8 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46978011000036101 galantamine 8 mg modified release capsule, 30 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +69232011000036101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 24 x 100 mL bottles 19462 67032011000036104 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 24 x 100 mL bottles 65309011000036104 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 100 mL bottle 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 71602011000036102 chlorhexidine acetate 0.1% (100 mg/100 mL) + cetrimide 1% (1 g/100 mL) solution, 24 x 100 mL bottles 70086011000036104 chlorhexidine acetate 0.1% (100 mg/100 mL) + cetrimide 1% (1 g/100 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +936671000168106 Ora-Sed Jel oral gel, 10 g, tube 16132 936661000168100 Ora-Sed Jel oral gel, 10 g 936641000168104 Ora-Sed Jel oral gel 44881000168109 Ora-Sed Jel 44881000168109 Ora-Sed Jel 936651000168102 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g 936631000168108 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel 69880011000036101 salicylic acid + benzalkonium chloride + ethanol +69716011000036103 Aerius 5 mg film-coated tablet, 1, blister pack 91116 67515011000036102 Aerius 5 mg film-coated tablet, 1 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72017011000036107 desloratadine 5 mg tablet, 1 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +889811000168107 Carbosin 150 mg/15 mL injection solution, 10 x 15 mL vials 99136 889801000168109 Carbosin 150 mg/15 mL injection solution, 10 x 15 mL vials 889761000168101 Carbosin 150 mg/15 mL injection solution, 15 mL vial 889751000168103 Carbosin 889751000168103 Carbosin 889791000168108 carboplatin 150 mg/15 mL injection, 10 x 15 mL vials 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +152121000036106 Metatar 50 mg film-coated tablet, 100, blister pack 192774 150821000036101 Metatar 50 mg film-coated tablet, 100 148091000036109 Metatar 50 mg film-coated tablet 147881000036101 Metatar 147881000036101 Metatar 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +665171000168104 Remifentanil (Alphapharm) 5 mg powder for injection, 1 vial 163903 665161000168105 Remifentanil (Alphapharm) 5 mg powder for injection, 1 vial 665141000168106 Remifentanil (Alphapharm) 5 mg powder for injection, 5 mg vial 664921000168101 Remifentanil (Alphapharm) 664921000168101 Remifentanil (Alphapharm) 665151000168108 remifentanil 5 mg injection, 1 vial 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +1106551000168107 Quetiapine (GH) 100 mg film-coated tablet, 30, blister pack 179895 1106541000168105 Quetiapine (GH) 100 mg film-coated tablet, 30 2221000036101 Quetiapine (GH) 100 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1106531000168101 quetiapine 100 mg tablet, 30 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +812661000168102 Citalopram (Amneal) 10 mg film-coated tablet, 84, blister pack 158879 812651000168104 Citalopram (Amneal) 10 mg film-coated tablet, 84 812561000168103 Citalopram (Amneal) 10 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +73263011000036101 Ramipril (GenRx) 1.25 mg hard capsule, 30, blister pack 134789 73063011000036108 Ramipril (GenRx) 1.25 mg hard capsule, 30 72952011000036108 Ramipril (GenRx) 1.25 mg hard capsule 39554011000036107 Ramipril (GenRx) 39554011000036107 Ramipril (GenRx) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +795461000168106 Nausrelief 5 mg uncoated tablet, 5, blister pack 186710 795451000168109 Nausrelief 5 mg uncoated tablet, 5 795431000168103 Nausrelief 5 mg uncoated tablet 795421000168101 Nausrelief 795421000168101 Nausrelief 795441000168107 prochlorperazine maleate 5 mg tablet, 5 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +84365011000036106 Cold and Flu Night Time Relief PE (Your Pharmacy) tablet, 24, blister pack 161829 84058011000036107 Cold and Flu Night Time Relief PE (Your Pharmacy) tablet, 24 83683011000036101 Cold and Flu Night Time Relief PE (Your Pharmacy) tablet 83557011000036106 Cold and Flu Night Time Relief PE (Your Pharmacy) 83557011000036106 Cold and Flu Night Time Relief PE (Your Pharmacy) 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +60001011000036109 Sinutab PE Sinus and Pain Relief film-coated tablet, 48, blister pack 123040 55963011000036105 Sinutab PE Sinus and Pain Relief film-coated tablet, 48 53740011000036106 Sinutab PE Sinus and Pain Relief film-coated tablet 53275011000036107 Sinutab PE Sinus and Pain Relief 53275011000036107 Sinutab PE Sinus and Pain Relief 63181011000036101 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 48 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +808321000168104 Pramipexole XR (GP) 750 microgram modified release tablet, 10, blister pack 225585 808311000168106 Pramipexole XR (GP) 750 microgram modified release tablet, 10 808301000168108 Pramipexole XR (GP) 750 microgram modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 87814011000036104 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 10 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +710381000168101 PKU Air 20 Green (Lime Twist) oral liquid solution, 30 x 174 mL pouches 710371000168104 PKU Air 20 Green (Lime Twist) oral liquid solution, 30 x 174 mL pouches 710361000168105 PKU Air 20 Green (Lime Twist) oral liquid solution, 174 mL pouch 710241000168100 PKU Air 20 710241000168100 PKU Air 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +81007011000036106 Zinc (Orion) 32% cream, 20 g, tube 10831 80481011000036103 Zinc (Orion) 32% cream, 20 g 80157011000036104 Zinc (Orion) 32% cream 80126011000036101 Zinc (Orion) 80126011000036101 Zinc (Orion) 81580011000036109 zinc oxide 32% cream, 20 g 81265011000036109 zinc oxide 32% cream 77446011000036105 zinc oxide +726961000168102 Forteo 20 microgram/dose injection solution, 28 doses, injection device 80333 726951000168104 Forteo 20 microgram/dose injection solution, 28 doses 726931000168105 Forteo 20 microgram/dose injection solution, dose 39562011000036108 Forteo 39562011000036108 Forteo 726941000168101 teriparatide 20 microgram/dose injection, 28 doses 726921000168107 teriparatide 20 microgram/dose injection, dose 44946011000036109 teriparatide +60048011000036105 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 200 mL, bottle 124416 56010011000036108 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 200 mL 53756011000036106 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 5 mL 22401000168105 Paracetamol 5 to 12 Years (Priceline) 22401000168105 Paracetamol 5 to 12 Years (Priceline) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +761761000168101 Codapane Xtra uncoated tablet, 30, blister pack 199680 761751000168103 Codapane Xtra uncoated tablet, 30 761641000168105 Codapane Xtra uncoated tablet 761631000168101 Codapane Xtra 761631000168101 Codapane Xtra 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1103901000168109 Quetiapine (GH) 200 mg film-coated tablet, 10, blister pack 179897 1103891000168105 Quetiapine (GH) 200 mg film-coated tablet, 10 2201000036106 Quetiapine (GH) 200 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103881000168107 quetiapine 200 mg tablet, 10 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1037511000168107 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 15 mL, bottle 57233 1037501000168109 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 15 mL 1037481000168100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 5 mL 26351000168102 Benadryl Cough Medicine for Dry Coughs 26351000168102 Benadryl Cough Medicine for Dry Coughs 1037491000168102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 15 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +933215161000036109 Ondron ODT 4 mg orally disintegrating tablet, 10, blister pack 163653 933204691000036105 Ondron ODT 4 mg orally disintegrating tablet, 10 933195651000036100 Ondron ODT 4 mg orally disintegrating tablet 10891000168108 Ondron ODT 10891000168108 Ondron ODT 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +1095881000168102 Ibuprofen (Genpar) 200 mg film-coated tablet, 48, blister pack 285310 1095871000168100 Ibuprofen (Genpar) 200 mg film-coated tablet, 48 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +43985011000036105 Ventolin 200 microgram powder for inhalation, 120 unit doses, blister pack 42960 41477011000036103 Ventolin 200 microgram powder for inhalation, 120 unit doses 40002011000036109 Ventolin 200 microgram powder for inhalation, 200 microgram unit dose 34481000168108 Ventolin 34481000168108 Ventolin 46323011000036101 salbutamol 200 microgram powder for inhalation, 120 unit doses 45078011000036105 salbutamol 200 microgram powder for inhalation, unit dose 21493011000036100 salbutamol +889731000168109 Candyl-D 10 mg dispersible tablet, 50, bottle 65536 889721000168106 Candyl-D 10 mg dispersible tablet, 50 889711000168104 Candyl-D 10 mg dispersible tablet 889671000168103 Candyl-D 889671000168103 Candyl-D 27881011000036106 piroxicam 10 mg dispersible tablet, 50 23209011000036106 piroxicam 10 mg dispersible tablet 21531011000036103 piroxicam +19004011000036104 Prinivil 5 mg uncoated tablet, 30, blister pack 34377 12311011000036106 Prinivil 5 mg uncoated tablet, 30 4795011000036101 Prinivil 5 mg uncoated tablet 3191011000036109 Prinivil 3191011000036109 Prinivil 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +864561000168109 Amitriptyline (AN) 50 mg tablet, 10, blister pack 232120 864551000168107 Amitriptyline (AN) 50 mg tablet, 10 864541000168105 Amitriptyline (AN) 50 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +77298011000036101 Calcium Chloride Min-I-Jet (CSL) 1 g/10 mL injection solution, 10 mL syringe 28987 76714011000036102 Calcium Chloride Min-I-Jet (CSL) 1 g/10 mL injection solution, 10 mL syringe 76134011000036100 Calcium Chloride Min-I-Jet (CSL) 1 g/10 mL injection solution, 10 mL syringe 61851000168107 Calcium Chloride Min-I-Jet (CSL) 61851000168107 Calcium Chloride Min-I-Jet (CSL) 78228011000036100 calcium chloride dihydrate 1 g/10 mL injection, 10 mL syringe 77556011000036103 calcium chloride dihydrate 1 g/10 mL injection, syringe 69845011000036104 calcium chloride dihydrate +44619011000036107 Sinutab Sinus and Pain Relief uncoated tablet, 20, blister pack 90131 42072011000036109 Sinutab Sinus and Pain Relief uncoated tablet, 20 40346011000036102 Sinutab Sinus and Pain Relief uncoated tablet 39567011000036105 Sinutab Sinus and Pain Relief 39567011000036105 Sinutab Sinus and Pain Relief 46839011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 20 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +61466011000036101 Levonelle-2 750 microgram uncoated tablet, 2, blister pack 90912 57391011000036100 Levonelle-2 750 microgram uncoated tablet, 2 54293011000036104 Levonelle-2 750 microgram uncoated tablet 25581000168105 Levonelle-2 25581000168105 Levonelle-2 63842011000036109 levonorgestrel 750 microgram tablet, 2 62089011000036102 levonorgestrel 750 microgram tablet 21391011000036105 levonorgestrel +958281000168107 Dormizol 5 mg film-coated tablet, 7, blister pack 117952 958271000168109 Dormizol 5 mg film-coated tablet, 7 958241000168102 Dormizol 5 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 926171000168101 zolpidem tartrate 5 mg tablet, 7 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +21077011000036107 Tramadol Hydrochloride (Terry White Chemists) 50 mg hard capsule, 20, blister pack 97460 14220011000036108 Tramadol Hydrochloride (Terry White Chemists) 50 mg hard capsule, 20 7506011000036100 Tramadol Hydrochloride (Terry White Chemists) 50 mg hard capsule 3433011000036102 Tramadol Hydrochloride (Terry White Chemists) 3433011000036102 Tramadol Hydrochloride (Terry White Chemists) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +21077011000036107 Tramadol Hydrochloride (Terry White Chemists) 50 mg hard capsule, 20, blister pack 158473 14220011000036108 Tramadol Hydrochloride (Terry White Chemists) 50 mg hard capsule, 20 7506011000036100 Tramadol Hydrochloride (Terry White Chemists) 50 mg hard capsule 3433011000036102 Tramadol Hydrochloride (Terry White Chemists) 3433011000036102 Tramadol Hydrochloride (Terry White Chemists) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +1123071000168107 Grazax 75 000 SQ-T orally disintegrating tablet, 30, blister pack 267955 1123061000168101 Grazax 75 000 SQ-T orally disintegrating tablet, 30 1123011000168104 Grazax 75 000 SQ-T orally disintegrating tablet 1120251000168103 Grazax 1120251000168103 Grazax 1123051000168103 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet, 30 1123001000168102 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet 1122991000168103 Phleum pratense pollen extract +79671011000036107 Loxalate 20 mg film-coated tablet, 28, blister pack 119966 79460011000036106 Loxalate 20 mg film-coated tablet, 28 79365011000036106 Loxalate 20 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +79002011000036103 Momex SR 30 mg modified release tablet, 60, blister pack 132255 78807011000036100 Momex SR 30 mg modified release tablet, 60 78629011000036105 Momex SR 30 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 35166011000036105 morphine sulfate pentahydrate 30 mg modified release tablet, 60 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +923800011000036106 Sulprix 200 mg tablet, 50, bottle 156043 84013011000036107 Sulprix 200 mg tablet, 50 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84642011000036100 amisulpride 200 mg tablet, 50 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +45271000036104 Latanoprost (Chemmart) 0.005% eye drops solution, 2.5 mL, bottle 164489 42881000036109 Latanoprost (Chemmart) 0.005% eye drops solution, 2.5 mL 41291000036102 Latanoprost (Chemmart) 0.005% eye drops solution 40041000036107 Latanoprost (Chemmart) 40041000036107 Latanoprost (Chemmart) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +44135011000036101 Klacid 500 mg film-coated tablet, 28, blister pack 52473 41611011000036103 Klacid 500 mg film-coated tablet, 28 7489011000036101 Klacid 500 mg film-coated tablet 3147011000036106 Klacid 3147011000036106 Klacid 46432011000036100 clarithromycin 500 mg tablet, 28 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +44182011000036103 Anzemet 200 mg/10 mL injection solution, 10 mL ampoule 55064 41658011000036102 Anzemet 200 mg/10 mL injection solution, 10 mL ampoule 40128011000036107 Anzemet 200 mg/10 mL injection solution, 10 mL ampoule 4210011000036102 Anzemet 4210011000036102 Anzemet 46476011000036103 dolasetron mesilate monohydrate 200 mg/10 mL injection, 10 mL ampoule 45176011000036104 dolasetron mesilate monohydrate 200 mg/10 mL injection, ampoule 21471011000036108 dolasetron +929088011000036107 Pioglitazone (Apotex) 45 mg uncoated tablet, 50, blister pack 166913 928449011000036101 Pioglitazone (Apotex) 45 mg uncoated tablet, 50 927986011000036106 Pioglitazone (Apotex) 45 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929260011000036104 pioglitazone 45 mg tablet, 50 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +74843011000036100 Tetanus Immunoglobulin-VF (CSL) 4000 units intravenous infusion injection, 1 vial 31829 74330011000036107 Tetanus Immunoglobulin-VF (CSL) 4000 units intravenous infusion injection, 1 vial 73857011000036109 Tetanus Immunoglobulin-VF (CSL) 4000 units intravenous infusion injection, vial 36121000168106 Tetanus Immunoglobulin-VF (CSL) 36121000168106 Tetanus Immunoglobulin-VF (CSL) 75436011000036105 tetanus immunoglobulin 4000 units injection, 1 vial 75056011000036104 tetanus immunoglobulin 4000 units injection, vial 74994011000036100 tetanus immunoglobulin +18507011000036105 Zovirax 3% eye ointment, 4.5 g, tube 11013 11403011000036104 Zovirax 3% eye ointment, 4.5 g 4885011000036102 Zovirax 3% eye ointment 16291000168109 Zovirax 16291000168109 Zovirax 26635011000036108 aciclovir 3% eye ointment, 4.5 g 22041011000036101 aciclovir 3% eye ointment 21239011000036106 aciclovir +928846011000036101 Wart Removal System (Scholl) Fabric 40% medicated dressing, 15 applications, wrapping 130304 928208011000036103 Wart Removal System (Scholl) Fabric 40% medicated dressing, 15 applications 927867011000036101 Wart Removal System (Scholl) Fabric 40% medicated dressing, application 421000168103 Wart Removal System (Scholl) 421000168103 Wart Removal System (Scholl) 927375011000036100 salicylic acid 40% dressing, 15 applications 927018011000036100 salicylic acid 40% dressing, application 52232011000036106 salicylic acid +61256011000036108 Nicotine (Amcal) 21 mg/24 hours patch, 21, sachet 77120 57192011000036104 Nicotine (Amcal) 21 mg/24 hours patch, 21 54231011000036105 Nicotine (Amcal) 21 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63762011000036103 nicotine 21 mg/24 hours patch, 21 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +77221011000036102 Hydrogen Peroxide (David Craig) 6% solution, 400 mL, bottle 14217 76637011000036107 Hydrogen Peroxide (David Craig) 6% solution, 400 mL 76079011000036108 Hydrogen Peroxide (David Craig) 6% solution 76018011000036107 Hydrogen Peroxide (David Craig) 76018011000036107 Hydrogen Peroxide (David Craig) 78186011000036108 hydrogen peroxide 6% solution, 400 mL 77534011000036107 hydrogen peroxide 6% solution 69793011000036105 hydrogen peroxide +729151000168106 Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack 75658 41938011000036102 Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations 40275011000036100 Rhinocort Aqueous 64 microgram/actuation nasal spray, actuation 31911000168108 Rhinocort Aqueous 31911000168108 Rhinocort Aqueous 27779011000036101 budesonide 64 microgram/actuation nasal spray, 120 actuations 23109011000036108 budesonide 64 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +20490011000036100 Doxycycline (GenRx) 50 mg uncoated tablet, 25, blister pack 78597 13690011000036102 Doxycycline (GenRx) 50 mg uncoated tablet, 25 6973011000036105 Doxycycline (GenRx) 50 mg uncoated tablet 3262011000036104 Doxycycline (GenRx) 3262011000036104 Doxycycline (GenRx) 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +920778011000036103 Cefaclor (GA) 375 mg modified release tablet, 10, blister pack 77101 920457011000036107 Cefaclor (GA) 375 mg modified release tablet, 10 920194011000036107 Cefaclor (GA) 375 mg modified release tablet 920063011000036104 Cefaclor (GA) 920063011000036104 Cefaclor (GA) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +13201000036104 Imulate 250 mg hard capsule, 100, blister pack 167225 8351000036100 Imulate 250 mg hard capsule, 100 3301000036108 Imulate 250 mg hard capsule 801000036103 Imulate 801000036103 Imulate 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +1040251000168109 Atorvastatin (Ascent) 80 mg film-coated tablet, 10, blister pack 178531 1040241000168107 Atorvastatin (Ascent) 80 mg film-coated tablet, 10 1040231000168103 Atorvastatin (Ascent) 80 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +926792011000036101 Ondansetron (DRLA) 4 mg film-coated tablet, 10, blister pack 163428 926188011000036106 Ondansetron (DRLA) 4 mg film-coated tablet, 10 925665011000036104 Ondansetron (DRLA) 4 mg film-coated tablet 20111000168103 Ondansetron (DRLA) 20111000168103 Ondansetron (DRLA) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +933212991000036109 Pantoprazole (IPCA) 20 mg enteric tablet, 30, blister pack 158198 933202641000036107 Pantoprazole (IPCA) 20 mg enteric tablet, 30 933195291000036106 Pantoprazole (IPCA) 20 mg enteric tablet 933193271000036106 Pantoprazole (IPCA) 933193271000036106 Pantoprazole (IPCA) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +34664011000036106 Invega 3 mg modified release tablet, 28, blister pack 130502 34250011000036105 Invega 3 mg modified release tablet, 28 33986011000036104 Invega 3 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35119011000036100 paliperidone 3 mg modified release tablet, 28 34855011000036108 paliperidone 3 mg modified release tablet 34837011000036104 paliperidone +18888011000036108 Chlorsig 1% eye ointment, 4 g, tube 19662 12196011000036107 Chlorsig 1% eye ointment, 4 g 4676011000036106 Chlorsig 1% eye ointment 4445011000036103 Chlorsig 4445011000036103 Chlorsig 27367011000036103 chloramphenicol 1% eye ointment, 4 g 22717011000036101 chloramphenicol 1% eye ointment 21330011000036107 chloramphenicol +43621011000036103 Voltfast 50 mg powder for oral liquid, 21 sachets 123192 41296011000036105 Voltfast 50 mg powder for oral liquid, 21 sachets 39846011000036102 Voltfast 50 mg powder for oral liquid, 50 mg sachet 39682011000036104 Voltfast 39682011000036104 Voltfast 46231011000036107 diclofenac potassium 50 mg powder for oral liquid, 21 sachets 45038011000036107 diclofenac potassium 50 mg powder for oral liquid, sachet 21288011000036105 diclofenac +1089391000168108 Paracetamol (Genpar) 500 mg film-coated tablet, 12, blister pack 280973 1089381000168105 Paracetamol (Genpar) 500 mg film-coated tablet, 12 1089371000168107 Paracetamol (Genpar) 500 mg film-coated tablet 1089361000168101 Paracetamol (Genpar) 1089361000168101 Paracetamol (Genpar) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1035421000168108 Actonel Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack 117667 1035411000168101 Actonel Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 56751000168100 Actonel Combi 700024831000036105 Actonel Once-a-Week 852571000168104 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1035421000168108 Actonel Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack 117667 1035411000168101 Actonel Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 56751000168100 Actonel Combi 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 852571000168104 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +69219011000036104 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 1 L bottle 19460 67019011000036102 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 1 L bottle 65490011000036102 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 1 L bottle 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 71589011000036102 chlorhexidine acetate 0.05% (500 mg/L) + cetrimide 0.5% (5 g/L) solution, 1 L bottle 70080011000036102 chlorhexidine acetate 0.05% (500 mg/L) + cetrimide 0.5% (5 g/L) solution, bottle 69756011000036105 chlorhexidine + cetrimide +1082951000168107 Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations, pump pack 77885 74410011000036109 Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations 73931011000036106 Rhinocort Hayfever 32 microgram/actuation nasal spray, actuation 73757011000036106 Rhinocort Hayfever 73757011000036106 Rhinocort Hayfever 75507011000036109 budesonide 32 microgram/actuation nasal spray, 60 actuations 75105011000036105 budesonide 32 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +152211000036108 Candesartan Cilexetil (Auro) 4 mg uncoated tablet, 30, blister pack 195376 150331000036105 Candesartan Cilexetil (Auro) 4 mg uncoated tablet, 30 148681000036101 Candesartan Cilexetil (Auro) 4 mg uncoated tablet 147891000036104 Candesartan Cilexetil (Auro) 147891000036104 Candesartan Cilexetil (Auro) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +21090011000036104 Sporahexal 500 mg capsule, 20, blister pack 97590 14233011000036103 Sporahexal 500 mg capsule, 20 7519011000036106 Sporahexal 500 mg capsule 3832011000036101 Sporahexal 3832011000036101 Sporahexal 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +60485011000036104 Nurofen for Children 5 to 12 Years strawberry 100 mg/5 mL oral liquid suspension, 100 mL, bottle 150237 56443011000036103 Nurofen for Children 5 to 12 Years strawberry 100 mg/5 mL oral liquid suspension, 100 mL 53920011000036100 Nurofen for Children 5 to 12 Years strawberry 100 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +60515011000036105 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 100 mL, bottle 151334 56473011000036102 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 100 mL 53933011000036105 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 5 mL 34281000168109 Nurofen for Children 1 to 5 Years 34281000168109 Nurofen for Children 1 to 5 Years 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +1087221000168109 Zorvolex 18 mg hard capsule, 20, blister pack 282521 1087211000168102 Zorvolex 18 mg hard capsule, 20 1087081000168102 Zorvolex 18 mg hard capsule 1087021000168101 Zorvolex 1087021000168101 Zorvolex 1087201000168100 diclofenac 18 mg capsule, 20 1087071000168100 diclofenac 18 mg capsule 21288011000036105 diclofenac +876801000168107 Briviact 50 mg film-coated tablet, 168, blister pack 243797 876791000168106 Briviact 50 mg film-coated tablet, 168 876631000168104 Briviact 50 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876781000168108 brivaracetam 50 mg tablet, 168 876621000168102 brivaracetam 50 mg tablet 876401000168109 brivaracetam +20593011000036104 Diltiazem Hydrochloride CD (GenRx) 180 mg modified release capsule, 30, blister pack 80555 13939011000036101 Diltiazem Hydrochloride CD (GenRx) 180 mg modified release capsule, 30 7227011000036102 Diltiazem Hydrochloride CD (GenRx) 180 mg modified release capsule 37971000168108 Diltiazem Hydrochloride CD (GenRx) 37971000168108 Diltiazem Hydrochloride CD (GenRx) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +19856011000036102 Evista 60 mg film-coated tablet, 28, blister pack 64709 13103011000036106 Evista 60 mg film-coated tablet, 28 6387011000036102 Evista 60 mg film-coated tablet 3882011000036107 Evista 3882011000036107 Evista 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +1009241000168107 Ezetimibe (Apo) 10 mg tablet, 30, blister pack 250255 1009221000168101 Ezetimibe (Apo) 10 mg tablet, 30 1009211000168108 Ezetimibe (Apo) 10 mg tablet 1009201000168105 Ezetimibe (Apo) 1009201000168105 Ezetimibe (Apo) 28041011000036106 ezetimibe 10 mg tablet, 30 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +668961000168101 Halaven 1 mg/2 mL injection solution, 2 mL vial 187136 668951000168103 Halaven 1 mg/2 mL injection solution, 2 mL vial 668931000168109 Halaven 1 mg/2 mL injection solution, 2 mL vial 668891000168101 Halaven 668891000168101 Halaven 668941000168100 eribulin mesilate 1 mg/2 mL injection, 2 mL vial 668921000168106 eribulin mesilate 1 mg/2 mL injection, vial 668911000168104 eribulin +18370011000036102 Lamotrigine (GenRx) 25 mg tablet, 56, blister pack 101351 11192011000036107 Lamotrigine (GenRx) 25 mg tablet, 56 5752011000036107 Lamotrigine (GenRx) 25 mg tablet 3001011000036101 Lamotrigine (GenRx) 3001011000036101 Lamotrigine (GenRx) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +926910011000036109 Sore Throat Gargle (Guardian) 2.5% mouthwash, 15 mL, bottle 76701 926304011000036108 Sore Throat Gargle (Guardian) 2.5% mouthwash, 15 mL 925748011000036107 Sore Throat Gargle (Guardian) 2.5% mouthwash 20661000168109 Sore Throat Gargle (Guardian) 20661000168109 Sore Throat Gargle (Guardian) 927397011000036101 povidone-iodine 2.5% mouthwash, 15 mL 927038011000036109 povidone-iodine 2.5% mouthwash 21660011000036108 povidone-iodine +713991000168107 Xycilan 500 mg hard capsule, 20, blister pack 185797 713981000168109 Xycilan 500 mg hard capsule, 20 713971000168106 Xycilan 500 mg hard capsule 713931000168108 Xycilan 713931000168108 Xycilan 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +37682011000036106 Sifrol 125 microgram uncoated tablet, 100, blister pack 67238 36948011000036101 Sifrol 125 microgram uncoated tablet, 100 36275011000036107 Sifrol 125 microgram uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 38829011000036105 pramipexole dihydrochloride monohydrate 125 microgram tablet, 100 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +1035181000168101 Atomoxetine (CH) 80 mg hard capsule, 28, blister pack 234859 1035171000168104 Atomoxetine (CH) 80 mg hard capsule, 28 1035121000168100 Atomoxetine (CH) 80 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +798591000168105 Abyraz 10 mg uncoated tablet, 28, blister pack 159503 798581000168107 Abyraz 10 mg uncoated tablet, 28 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787351000168109 aripiprazole 10 mg tablet, 28 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +748191000168107 Morphine MR (CH) 100 mg modified release tablet, 20, blister pack 225432 748181000168109 Morphine MR (CH) 100 mg modified release tablet, 20 748171000168106 Morphine MR (CH) 100 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 27109011000036102 morphine sulfate pentahydrate 100 mg modified release tablet, 20 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +921925011000036109 Clonea 1% cream, 50 g, tube 17593 921484011000036103 Clonea 1% cream, 50 g 5503011000036107 Clonea 1% cream 3310011000036107 Clonea 3310011000036107 Clonea 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +726501000168106 Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL, injection device 173396 726491000168104 Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL 726481000168102 Norditropin Flexpro 5 mg/1.5 mL injection solution 17991000168100 Norditropin Flexpro 17991000168100 Norditropin Flexpro 726351000168103 somatropin 5 mg/1.5 mL injection, 1.5 mL 726331000168109 somatropin 5 mg/1.5 mL injection 21295011000036100 somatropin +1003121000168107 Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60, blister pack 189887 1003111000168100 Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60 1003101000168103 Levetiracetam 1000 (Accord) 1 g film-coated tablet 1003091000168108 Levetiracetam 1000 (Accord) 1003091000168108 Levetiracetam 1000 (Accord) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +1039531000168108 Atorvastatin (Ascent) 40 mg film-coated tablet, 20, blister pack 178527 1039521000168105 Atorvastatin (Ascent) 40 mg film-coated tablet, 20 1039441000168100 Atorvastatin (Ascent) 40 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841671000168109 atorvastatin 40 mg tablet, 20 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +17840011000036107 Augmentin 125 powder for oral liquid, 75 mL, bottle 11143 11424011000036108 Augmentin 125 powder for oral liquid, 75 mL 4697011000036100 Augmentin 125 powder for oral liquid, 5 mL 60581000168106 Augmentin 125 60581000168106 Augmentin 125 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +17840011000036107 Augmentin 125 powder for oral liquid, 75 mL, bottle 144172 11424011000036108 Augmentin 125 powder for oral liquid, 75 mL 4697011000036100 Augmentin 125 powder for oral liquid, 5 mL 60581000168106 Augmentin 125 60581000168106 Augmentin 125 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +84337011000036109 Panto 20 mg enteric tablet, 30, blister pack 158559 84030011000036109 Panto 20 mg enteric tablet, 30 83659011000036106 Panto 20 mg enteric tablet 83563011000036106 Panto 83563011000036106 Panto 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +82321000036109 Rabeprazole Sodium (Chemmart) 10 mg enteric tablet, 28, blister pack 189745 80291000036102 Rabeprazole Sodium (Chemmart) 10 mg enteric tablet, 28 78541000036100 Rabeprazole Sodium (Chemmart) 10 mg enteric tablet 78031000036103 Rabeprazole Sodium (Chemmart) 78031000036103 Rabeprazole Sodium (Chemmart) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +177101000036102 Lucentis 1.65 mg/0.165 mL injection solution, 0.165 mL syringe 212387 175361000036106 Lucentis 1.65 mg/0.165 mL injection solution, 0.165 mL syringe 173121000036104 Lucentis 1.65 mg/0.165 mL injection solution, 0.165 mL syringe 3299011000036106 Lucentis 3299011000036106 Lucentis 175371000036103 ranibizumab 1.65 mg/0.165 mL injection, 0.165 mL syringe 173131000036102 ranibizumab 1.65 mg/0.165 mL injection, syringe 21495011000036104 ranibizumab +61292011000036101 Wartec 0.15% cream, 10 g, tube 78993 57228011000036109 Wartec 0.15% cream, 10 g 54247011000036103 Wartec 0.15% cream 53465011000036102 Wartec 53465011000036102 Wartec 63771011000036104 podophyllotoxin 0.15% cream, 10 g 62077011000036101 podophyllotoxin 0.15% cream 21864011000036108 podophyllotoxin +35654011000036109 Viscotears 0.2% eye drops solution, 30 x 0.6 mL unit doses, ampoule 35572011000036105 Viscotears 0.2% eye drops solution, 30 x 0.6 mL unit doses 35469011000036102 Viscotears 0.2% eye drops solution, 0.6 mL unit dose 61971000168108 Viscotears 61971000168108 Viscotears 35769011000036109 carbomer-980 0.2% eye drops, 30 x 0.6 mL unit doses 35710011000036104 carbomer-980 0.2% eye drops, 0.6 mL unit dose 35685011000036104 carbomer-980 +933215731000036104 Exaccord 25 mg film-coated tablet, 15, blister pack 167856 933205261000036104 Exaccord 25 mg film-coated tablet, 15 933196241000036106 Exaccord 25 mg film-coated tablet 933193861000036102 Exaccord 933193861000036102 Exaccord 933205271000036107 exemestane 25 mg tablet, 15 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +37636011000036101 Isopto Carbachol 3% eye drops solution, 15 mL, bottle 25291 36902011000036108 Isopto Carbachol 3% eye drops solution, 15 mL 36235011000036105 Isopto Carbachol 3% eye drops solution 35888011000036102 Isopto Carbachol 35888011000036102 Isopto Carbachol 38787011000036108 carbachol 3% eye drops, 15 mL 38000011000036109 carbachol 3% eye drops 37774011000036101 carbachol +680521000168101 Temodal 5 mg hard capsule, 5, sachet 164210 13246011000036105 Temodal 5 mg hard capsule, 5 6528011000036108 Temodal 5 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +752531000168104 Oxycodone (WT) 10 mg hard capsule, 60, bottle 227825 752521000168102 Oxycodone (WT) 10 mg hard capsule, 60 752491000168104 Oxycodone (WT) 10 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +1086651000168101 Paracetamol (Beximco) 665 mg modified release tablet, 24, blister pack 281995 1086641000168103 Paracetamol (Beximco) 665 mg modified release tablet, 24 1086621000168109 Paracetamol (Beximco) 665 mg modified release tablet 1086611000168102 Paracetamol (Beximco) 1086611000168102 Paracetamol (Beximco) 1086631000168107 paracetamol 665 mg modified release tablet, 24 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +686141000168100 Topiramate (AN) 200 mg film-coated tablet, 60, bottle 157961 686131000168109 Topiramate (AN) 200 mg film-coated tablet, 60 686121000168106 Topiramate (AN) 200 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +66281000036103 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 10 x 50 mL vials 49422 64161000036109 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 10 x 50 mL vials 61191000036104 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 50 mL vial 28191000168109 Optiray-320 28191000168109 Optiray-320 64171000036101 ioversol 678 mg (iodine 320 mg)/mL injection, 10 x 50 mL vials 61201000036102 ioversol 678 mg (iodine 320 mg)/mL injection, 50 mL vial 77421011000036103 ioversol +687991000168109 Ciprofloxacin (Alphapharm) 400 mg/200 mL injection solution, 10 x 200 mL bags 154612 687981000168106 Ciprofloxacin (Alphapharm) 400 mg/200 mL injection solution, 10 x 200 mL bags 687971000168108 Ciprofloxacin (Alphapharm) 400 mg/200 mL injection solution, 200 mL bag 687661000168108 Ciprofloxacin (Alphapharm) 687661000168108 Ciprofloxacin (Alphapharm) 46213011000036102 ciprofloxacin 400 mg/200 mL injection, 10 x 200 mL bags 45033011000036102 ciprofloxacin 400 mg/200 mL injection, bag 21245011000036105 ciprofloxacin +939641000168105 Frusemide High Dose (Sanofi) 250 mg/25 mL intravenous infusion injection, 5 x 25 mL ampoules 144456 939631000168101 Frusemide High Dose (Sanofi) 250 mg/25 mL intravenous infusion injection, 5 x 25 mL ampoules 939621000168104 Frusemide High Dose (Sanofi) 250 mg/25 mL intravenous infusion injection, 25 mL ampoule 939611000168106 Frusemide High Dose (Sanofi) 939611000168106 Frusemide High Dose (Sanofi) 38641011000036100 furosemide (frusemide) 250 mg/25 mL injection, 5 x 25 mL ampoules 37896011000036104 furosemide (frusemide) 250 mg/25 mL injection, ampoule 21329011000036103 furosemide (frusemide) +1011661000168107 Donepezil (Apotex) 10 mg film-coated tablet, 28, blister pack 168334 1011651000168105 Donepezil (Apotex) 10 mg film-coated tablet, 28 1011581000168102 Donepezil (Apotex) 10 mg film-coated tablet 1011531000168103 Donepezil (Apotex) 1011531000168103 Donepezil (Apotex) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +18036011000036101 Fibsol 10 mg uncoated tablet, 30, blister pack 101317 11189011000036101 Fibsol 10 mg uncoated tablet, 30 5163011000036102 Fibsol 10 mg uncoated tablet 4290011000036103 Fibsol 4290011000036103 Fibsol 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +44250011000036109 Cystagon 50 mg hard capsule, 500, bottle 60451 41721011000036104 Cystagon 50 mg hard capsule, 500 40164011000036107 Cystagon 50 mg hard capsule 39718011000036109 Cystagon 39718011000036109 Cystagon 46528011000036109 cysteamine 50 mg capsule, 500 45203011000036101 cysteamine 50 mg capsule 44906011000036102 cysteamine +61511011000036102 Diovan 40 mg film-coated tablet, 14, blister pack 93165 57436011000036109 Diovan 40 mg film-coated tablet, 14 54302011000036104 Diovan 40 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63854011000036102 valsartan 40 mg tablet, 14 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +38861000036103 Escitalopram (MPPL) 20 mg film-coated tablet, 100, bottle 165877 35231000036102 Escitalopram (MPPL) 20 mg film-coated tablet, 100 32991000036100 Escitalopram (MPPL) 20 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +61050011000036100 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 20, blister pack 67366 56993011000036109 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 20 54149011000036108 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet 53376011000036109 Naproxen Sodium (Soul Pattinson) 53376011000036109 Naproxen Sodium (Soul Pattinson) 63677011000036100 naproxen sodium 275 mg tablet, 20 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +729791000168100 Trulicity 1.5 mg/0.5 mL injection solution, 4 x 0.5 mL injection devices 217965 729781000168103 Trulicity 1.5 mg/0.5 mL injection solution, 4 x 0.5 mL injection devices 729761000168107 Trulicity 1.5 mg/0.5 mL injection solution, 0.5 mL injection device 729641000168103 Trulicity 729641000168103 Trulicity 729771000168101 dulaglutide 1.5 mg/0.5 mL injection, 4 x 0.5 mL injection devices 729751000168105 dulaglutide 1.5 mg/0.5 mL injection, injection device 729741000168108 dulaglutide +933215801000036104 Metformin Hydrochloride (Chemmart) 500 mg film-coated tablet, 100, blister pack 174817 933203851000036100 Metformin Hydrochloride (Chemmart) 500 mg film-coated tablet, 100 933196381000036107 Metformin Hydrochloride (Chemmart) 500 mg film-coated tablet 18621000168105 Metformin Hydrochloride (Chemmart) 18621000168105 Metformin Hydrochloride (Chemmart) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +933212831000036103 Simvastatin (Auro) 10 mg film-coated tablet, 30, blister pack 150154 933202571000036101 Simvastatin (Auro) 10 mg film-coated tablet, 30 933194501000036101 Simvastatin (Auro) 10 mg film-coated tablet 16361000168106 Simvastatin (Auro) 16361000168106 Simvastatin (Auro) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +116641000036102 Rosuvastatin (GH) 5 mg film-coated tablet, 30, blister pack 183709 114931000036105 Rosuvastatin (GH) 5 mg film-coated tablet, 30 113551000036107 Rosuvastatin (GH) 5 mg film-coated tablet 112721000036104 Rosuvastatin (GH) 112721000036104 Rosuvastatin (GH) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +853281000168106 Aliquen 25 mg film-coated tablet, 20, blister pack 204837 853271000168108 Aliquen 25 mg film-coated tablet, 20 853241000168101 Aliquen 25 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +968881000168103 Pregabalin (DRLA) 75 mg hard capsule, 56, blister pack 263081 968871000168101 Pregabalin (DRLA) 75 mg hard capsule, 56 968821000168102 Pregabalin (DRLA) 75 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +761121000168105 Cabergoline (Apotex) 500 microgram tablet, 2, bottle 218127 761111000168103 Cabergoline (Apotex) 500 microgram tablet, 2 761101000168101 Cabergoline (Apotex) 500 microgram tablet 761051000168101 Cabergoline (Apotex) 761051000168101 Cabergoline (Apotex) 27271011000036107 cabergoline 500 microgram tablet, 2 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +18278011000036107 Provera 100 mg uncoated tablet, 100, blister pack 12331 11733011000036104 Provera 100 mg uncoated tablet, 100 4951011000036100 Provera 100 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 26754011000036104 medroxyprogesterone acetate 100 mg tablet, 100 22141011000036107 medroxyprogesterone acetate 100 mg tablet 21378011000036107 medroxyprogesterone +872371000168107 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 91430 872361000168101 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 872351000168103 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 36521000168104 Extraneal 7.5% 36521000168104 Extraneal 7.5% 872311000168104 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 872291000168103 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag 861151000168100 icodextrin + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +735181000168104 Pantoprazole Heartburn Relief (Apo) 20 mg enteric tablet, 7, blister pack 156332 735171000168102 Pantoprazole Heartburn Relief (Apo) 20 mg enteric tablet, 7 735161000168108 Pantoprazole Heartburn Relief (Apo) 20 mg enteric tablet 735151000168106 Pantoprazole Heartburn Relief (Apo) 735151000168106 Pantoprazole Heartburn Relief (Apo) 924214011000036106 pantoprazole 20 mg enteric tablet, 7 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +18762011000036106 Mylanta Double Strength chewable tablet, 100, blister pack 14369 12023011000036104 Mylanta Double Strength chewable tablet, 100 5767011000036100 Mylanta Double Strength chewable tablet 23731000168101 Mylanta Double Strength 23731000168101 Mylanta Double Strength 684431000168107 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet, 100 684421000168109 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +948341000168105 Doxiris 100 mg film-coated tablet, 7, blister pack 148806 948331000168101 Doxiris 100 mg film-coated tablet, 7 948321000168104 Doxiris 100 mg film-coated tablet 946521000168107 Doxiris 946521000168107 Doxiris 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +935391000168107 Baclofen (Sintetica) 40 mg/20 mL intrathecal injection, 20 mL ampoule 271175 935381000168109 Baclofen (Sintetica) 40 mg/20 mL intrathecal injection, 20 mL ampoule 935361000168100 Baclofen (Sintetica) 40 mg/20 mL intrathecal injection, 20 mL ampoule 919811000168104 Baclofen (Sintetica) 919811000168104 Baclofen (Sintetica) 935371000168106 baclofen 40 mg/20 mL intrathecal injection, 20 mL ampoule 935351000168102 baclofen 40 mg/20 mL intrathecal injection, ampoule 21227011000036102 baclofen +44492011000036101 Aciclovir IV (Sandoz) 250 mg powder for injection, 5 vials 75839 41947011000036104 Aciclovir IV (Sandoz) 250 mg powder for injection, 5 vials 40280011000036103 Aciclovir IV (Sandoz) 250 mg powder for injection, 250 mg vial 43921000168104 Aciclovir IV (Sandoz) 43921000168104 Aciclovir IV (Sandoz) 46732011000036105 aciclovir 250 mg injection, 5 vials 45288011000036107 aciclovir 250 mg injection, vial 21239011000036106 aciclovir +52771011000036105 Amlodipine (Pharmacor) 10 mg uncoated tablet, 30, blister pack 215706 52581011000036103 Amlodipine (Pharmacor) 10 mg uncoated tablet, 30 52429011000036104 Amlodipine (Pharmacor) 10 mg uncoated tablet 52388011000036105 Amlodipine (Pharmacor) 52388011000036105 Amlodipine (Pharmacor) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +52771011000036105 Amlodipine (Pharmacor) 10 mg uncoated tablet, 30, blister pack 150617 52581011000036103 Amlodipine (Pharmacor) 10 mg uncoated tablet, 30 52429011000036104 Amlodipine (Pharmacor) 10 mg uncoated tablet 52388011000036105 Amlodipine (Pharmacor) 52388011000036105 Amlodipine (Pharmacor) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +756791000168106 Duloxetine (Sandoz) 60 mg enteric capsule, 7, blister pack 197167 756781000168108 Duloxetine (Sandoz) 60 mg enteric capsule, 7 756771000168105 Duloxetine (Sandoz) 60 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 38613011000036106 duloxetine 60 mg enteric capsule, 7 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +683651000168101 Oxaliplatin (MYX) 100 mg/20 mL concentrated injection, 20 mL vial 209720 683641000168103 Oxaliplatin (MYX) 100 mg/20 mL concentrated injection, 20 mL vial 683631000168107 Oxaliplatin (MYX) 100 mg/20 mL concentrated injection, 20 mL vial 683621000168109 Oxaliplatin (MYX) 683621000168109 Oxaliplatin (MYX) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +957001000168105 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 150 mL bottle 49605 956991000168103 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 150 mL bottle 956971000168104 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 150 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 956981000168101 iodixanol 550 mg (iodine 270 mg)/mL injection, 150 mL bottle 956961000168105 iodixanol 550 mg (iodine 270 mg)/mL injection, 150 mL bottle 922032011000036109 iodixanol +61269011000036109 Clotrimazole Anti-Fungal (Pharmacist) 1% cream, 50 g, tube 77752 57205011000036107 Clotrimazole Anti-Fungal (Pharmacist) 1% cream, 50 g 54235011000036107 Clotrimazole Anti-Fungal (Pharmacist) 1% cream 16041000168105 Clotrimazole Anti-Fungal (Pharmacist) 16041000168105 Clotrimazole Anti-Fungal (Pharmacist) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +44008011000036109 Myambutol 400 mg film-coated tablet, 100, bottle 147246 41499011000036100 Myambutol 400 mg film-coated tablet, 100 40019011000036102 Myambutol 400 mg film-coated tablet 39578011000036103 Myambutol 39578011000036103 Myambutol 46343011000036103 ethambutol hydrochloride 400 mg tablet, 100 45093011000036109 ethambutol hydrochloride 400 mg tablet 44949011000036100 ethambutol +44008011000036109 Myambutol 400 mg film-coated tablet, 100, bottle 46465 41499011000036100 Myambutol 400 mg film-coated tablet, 100 40019011000036102 Myambutol 400 mg film-coated tablet 39578011000036103 Myambutol 39578011000036103 Myambutol 46343011000036103 ethambutol hydrochloride 400 mg tablet, 100 45093011000036109 ethambutol hydrochloride 400 mg tablet 44949011000036100 ethambutol +17794011000036106 Ondansetron Zydis (RL) 4 mg wafer, 10, blister pack 116434 11522011000036107 Ondansetron Zydis (RL) 4 mg wafer, 10 5768011000036104 Ondansetron Zydis (RL) 4 mg wafer 48431000168103 Ondansetron Zydis (RL) 48431000168103 Ondansetron Zydis (RL) 27516011000036100 ondansetron 4 mg wafer, 10 22858011000036108 ondansetron 4 mg wafer 21545011000036100 ondansetron +929687011000036104 Escitalopram (Pharmacor) 10 mg film-coated tablet, 28, blister pack 166137 929523011000036106 Escitalopram (Pharmacor) 10 mg film-coated tablet, 28 929407011000036103 Escitalopram (Pharmacor) 10 mg film-coated tablet 929380011000036106 Escitalopram (Pharmacor) 929380011000036106 Escitalopram (Pharmacor) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1106801000168105 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 20, blister pack 119095 1106791000168109 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 20 1106721000168107 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet 1106711000168100 Zolpidem (Dr. Reddy's) 1106711000168100 Zolpidem (Dr. Reddy's) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +18520011000036100 Anafranil 25 mg sugar coated tablet, 50, blister pack 10987 11395011000036108 Anafranil 25 mg sugar coated tablet, 50 4762011000036106 Anafranil 25 mg sugar coated tablet 3480011000036102 Anafranil 3480011000036102 Anafranil 27730011000036109 clomipramine hydrochloride 25 mg tablet, 50 23065011000036101 clomipramine hydrochloride 25 mg tablet 21897011000036104 clomipramine +60687011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 50 mL, bottle 42870 56645011000036104 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 50 mL 54019011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 63482011000036108 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash, 50 mL 61990011000036104 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash 61818011000036107 benzydamine + chlorhexidine +888361000168108 Bosentan (Intas) 125 mg film-coated tablet, 100, bottle 235894 888351000168106 Bosentan (Intas) 125 mg film-coated tablet, 100 888261000168104 Bosentan (Intas) 125 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884161000168104 bosentan 125 mg tablet, 100 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +32566011000036101 Irinotecan Hydrochloride Trihydrate (DBL) 500 mg/25 mL concentrated injection, 25 mL vial 131536 32357011000036109 Irinotecan Hydrochloride Trihydrate (DBL) 500 mg/25 mL concentrated injection, 25 mL vial 32234011000036105 Irinotecan Hydrochloride Trihydrate (DBL) 500 mg/25 mL concentrated injection, 25 mL vial 32197011000036108 Irinotecan Hydrochloride Trihydrate (DBL) 32197011000036108 Irinotecan Hydrochloride Trihydrate (DBL) 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +82161000036102 Reedos 50 mg tablet, 56, blister pack 187267 80691000036104 Reedos 50 mg tablet, 56 78861000036101 Reedos 50 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +66361000036103 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 25 mL, bottle 52420 63871000036106 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 25 mL 60881000036102 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 933205371000036101 melaleuca oil 1 mL/mL application, 25 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +61004011000036103 Aleve 220 mg film-coated tablet, 30, blister pack 63794 56947011000036105 Aleve 220 mg film-coated tablet, 30 54133011000036109 Aleve 220 mg film-coated tablet 53458011000036102 Aleve 53458011000036102 Aleve 63653011000036106 naproxen sodium 220 mg tablet, 30 62035011000036109 naproxen sodium 220 mg tablet 21304011000036105 naproxen +813461000168107 Adin Melt 60 microgram sublingual wafer, 30, blister pack 121723 813451000168105 Adin Melt 60 microgram sublingual wafer, 30 813401000168106 Adin Melt 60 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 813441000168108 desmopressin 60 microgram sublingual wafer, 30 813391000168109 desmopressin 60 microgram sublingual wafer 21750011000036107 desmopressin +20882011000036106 Ibilex 125 mg/5 mL powder for oral liquid, 100 mL, bottle 92972 14044011000036109 Ibilex 125 mg/5 mL powder for oral liquid, 100 mL 7322011000036108 Ibilex 125 mg/5 mL powder for oral liquid, 5 mL 3667011000036100 Ibilex 3667011000036100 Ibilex 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +1052261000168107 Oxylieve MR 10 mg modified release tablet, 20, blister pack 153604 1052251000168105 Oxylieve MR 10 mg modified release tablet, 20 1052241000168108 Oxylieve MR 10 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +21124011000036106 Calcium Folinate (Ebewe) 50 mg/5 mL injection, 5 x 5 mL ampoules 98539 14267011000036104 Calcium Folinate (Ebewe) 50 mg/5 mL injection, 5 x 5 mL ampoules 7553011000036103 Calcium Folinate (Ebewe) 50 mg/5 mL injection, 5 mL ampoule 929362011000036108 Calcium Folinate (Ebewe) 929362011000036108 Calcium Folinate (Ebewe) 28261011000036107 folinic acid 50 mg/5 mL injection, 5 x 5 mL ampoules 23575011000036108 folinic acid 50 mg/5 mL injection, ampoule 21617011000036108 folinic acid +50380011000036104 Telfa Non Adherent (2140C) 7.5 cm x 10 cm dressing, 6, carton 49405011000036105 Telfa Non Adherent (2140C) 7.5 cm x 10 cm dressing, 6 48676011000036108 Telfa Non Adherent (2140C) 7.5 cm x 10 cm dressing 42061000168100 Telfa Non Adherent (2140C) 42061000168100 Telfa Non Adherent (2140C) 51386011000036107 dressing non adherent 7.5 cm x 10 cm dressing, 6 50907011000036109 dressing non adherent 7.5 cm x 10 cm dressing 50699011000036100 dressing non adherent +688151000168102 Hepasol oral liquid solution, 200 mL, bottle 10754 688141000168104 Hepasol oral liquid solution, 200 mL 688121000168105 Hepasol oral liquid solution, 10 mL 60271000036103 Hepasol 60271000036103 Hepasol 688131000168108 iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 200 mL 688111000168103 iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid 688101000168101 iron + calcium + potassium + sodium + manganese + thiamine + bovine liver +50426011000036104 Rispa 500 microgram film-coated tablet, 15, blister pack 127880 49558011000036104 Rispa 500 microgram film-coated tablet, 15 48600011000036100 Rispa 500 microgram film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 51483011000036109 risperidone 500 microgram tablet, 15 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1052181000168105 Palexia SR 100 mg modified release tablet, 10, blister pack 165346 1052171000168107 Palexia SR 100 mg modified release tablet, 10 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052161000168101 tapentadol 100 mg modified release tablet, 10 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +60324011000036100 Cetrelief (Generic Health) 10 mg film-coated tablet, 60, blister pack 138826 56283011000036106 Cetrelief (Generic Health) 10 mg film-coated tablet, 60 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63288011000036107 cetirizine hydrochloride 10 mg tablet, 60 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +60082011000036102 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 96, blister pack 126488 56043011000036107 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 96 53767011000036100 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet 53168011000036107 Worming Tablet (Pharmacy Choice) 53168011000036107 Worming Tablet (Pharmacy Choice) 63208011000036106 mebendazole 100 mg chewable tablet, 96 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +738471000168102 Flubiclox 1 g powder for injection, 10 vials 92842 738461000168108 Flubiclox 1 g powder for injection, 10 vials 7314011000036107 Flubiclox 1 g powder for injection, vial 3773011000036108 Flubiclox 3773011000036108 Flubiclox 735661000168104 flucloxacillin 1 g injection, 10 vials 23409011000036107 flucloxacillin 1 g injection, vial 21623011000036108 flucloxacillin +798431000168107 Acimax 40 mg enteric tablet, 5, blister pack 69964 798421000168109 Acimax 40 mg enteric tablet, 5 798401000168100 Acimax 40 mg enteric tablet 3241011000036101 Acimax 3241011000036101 Acimax 798411000168102 omeprazole 40 mg enteric tablet, 5 798391000168102 omeprazole 40 mg enteric tablet 21676011000036101 omeprazole +37590011000036103 Norcuron 4 mg powder for injection, 50 ampoules 177718 36857011000036107 Norcuron 4 mg powder for injection, 50 ampoules 36196011000036106 Norcuron (vecuronium bromide 4 mg) powder for injection, 4 mg ampoule 35981011000036100 Norcuron 35981011000036100 Norcuron 38744011000036105 vecuronium bromide 4 mg injection, 50 ampoules 37970011000036100 vecuronium bromide 4 mg injection, ampoule 37741011000036100 vecuronium +931692011000036105 Soldara 5% cream, 12 x 250 mg sachets 170201 930852011000036104 Soldara 5% cream, 12 x 250 mg sachets 930072011000036103 Soldara 5% cream, 250 mg sachet 929829011000036105 Soldara 929829011000036105 Soldara 27549011000036101 imiquimod 5% cream, 12 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +847701000168104 Sandostatin LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 227963 847691000168104 Sandostatin LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 845101000168109 Sandostatin LAR (inert substance) diluent, 2 mL syringe 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 847681000168102 octreotide 20 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +847701000168104 Sandostatin LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 227963 847691000168104 Sandostatin LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 6560011000036103 Sandostatin LAR (octreotide 20 mg) modified release injection, 20 mg vial 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 847681000168102 octreotide 20 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 22999011000036100 octreotide 20 mg modified release injection, vial 21316011000036104 octreotide +1035101000168109 Atomoxetine (CH) 5 mg hard capsule, 56, blister pack 234844 1035091000168104 Atomoxetine (CH) 5 mg hard capsule, 56 1035011000168108 Atomoxetine (CH) 5 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 976401000168100 atomoxetine 5 mg capsule, 56 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +60445011000036105 Panoxyl Wash 10% lotion, 150 mL, bottle 14830 56404011000036105 Panoxyl Wash 10% lotion, 150 mL 53907011000036105 Panoxyl Wash 10% lotion 30941000168100 Panoxyl Wash 30941000168100 Panoxyl Wash 63344011000036103 benzoyl peroxide 10% lotion, 150 mL 61920011000036105 benzoyl peroxide 10% lotion 61709011000036104 benzoyl peroxide +19603011000036109 Roferon-A 4.5 million units/0.5 mL injection solution, 0.5 mL syringe 58595 12873011000036101 Roferon-A 4.5 million units/0.5 mL injection solution, 0.5 mL syringe 6164011000036103 Roferon-A 4.5 million units/0.5 mL injection solution, 0.5 mL syringe 3169011000036106 Roferon-A 3169011000036106 Roferon-A 27408011000036106 interferon alfa-2a 4.5 million units/0.5 mL injection, 0.5 mL syringe 22756011000036106 interferon alfa-2a 4.5 million units/0.5 mL injection, syringe 21592011000036102 interferon alfa-2a +18589011000036104 Parlodel 2.5 mg uncoated tablet, 30, bottle 13340 11975011000036108 Parlodel 2.5 mg uncoated tablet, 30 4620011000036107 Parlodel 2.5 mg uncoated tablet 3938011000036105 Parlodel 3938011000036105 Parlodel 27287011000036107 bromocriptine 2.5 mg tablet, 30 22641011000036106 bromocriptine 2.5 mg tablet 21300011000036100 bromocriptine +868031000168100 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags 16847 868021000168103 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags 867971000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 10581000168107 Dianeal PD-4 with Glucose 2.5% 10581000168107 Dianeal PD-4 with Glucose 2.5% 868011000168105 glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 5 x 2 L bags 867961000168105 glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +1072601000168106 Pantoprazole (Generic Health) 40 mg enteric tablet, 5, blister pack 191033 1072591000168104 Pantoprazole (Generic Health) 40 mg enteric tablet, 5 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +66371000036106 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 50 mL, bottle 52420 63881000036108 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 50 mL 60881000036102 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 933205391000036102 melaleuca oil 1 mL/mL application, 50 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +80984011000036102 Resdone 500 microgram film-coated tablet, 20, blister pack 147652 80534011000036103 Resdone 500 microgram film-coated tablet, 20 80182011000036108 Resdone 500 microgram film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +939821000168100 Celebrex 400 mg hard capsule, 30, blister pack 101341 939811000168107 Celebrex 400 mg hard capsule, 30 939701000168102 Celebrex 400 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 939801000168109 celecoxib 400 mg capsule, 30 939691000168102 celecoxib 400 mg capsule 21566011000036101 celecoxib +692401000168109 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet, 100, blister pack 215403 692391000168107 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet, 100 692321000168105 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +902331000168105 Ninlaro 4 mg capsule, 3, blister pack 260934 902321000168107 Ninlaro 4 mg capsule, 3 902271000168100 Ninlaro 4 mg capsule 902241000168107 Ninlaro 902241000168107 Ninlaro 902311000168100 ixazomib 4 mg capsule, 3 902261000168106 ixazomib 4 mg capsule 902251000168109 ixazomib +59817011000036102 Codral Original Dry Cough Liquicap soft capsule, 24, blister pack 114801 55779011000036106 Codral Original Dry Cough Liquicap soft capsule, 24 53641011000036106 Codral Original Dry Cough Liquicap soft capsule 14711000168102 Codral Original Dry Cough Liquicap 14711000168102 Codral Original Dry Cough Liquicap 63137011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg capsule, 24 61869011000036100 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg capsule 61751011000036109 dextromethorphan + pseudoephedrine +885071000168108 Skin Assist First Aid (Cipla) cream, 50 g, tube 132067 885061000168102 Skin Assist First Aid (Cipla) cream, 50 g 885051000168104 Skin Assist First Aid (Cipla) cream 885041000168101 Skin Assist First Aid (Cipla) 885041000168101 Skin Assist First Aid (Cipla) 63520011000036109 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 50 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +44826011000036104 Detrusitol 2 mg film-coated tablet, 14, blister pack 99394 42258011000036101 Detrusitol 2 mg film-coated tablet, 14 40408011000036103 Detrusitol 2 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47011011000036106 tolterodine tartrate 2 mg tablet, 14 45374011000036102 tolterodine tartrate 2 mg tablet 44907011000036104 tolterodine +807111000168109 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) uncoated tablet, 30, bottle 224308 807101000168106 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) uncoated tablet, 30 807091000168101 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) uncoated tablet 807081000168104 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) 807081000168104 Perindopril Arginine/Amlodipine 5/10 (Blooms The Chemist) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +948251000168102 Ranitidine (GA) 150 mg film-coated tablet, 360, bottle 148519 948241000168104 Ranitidine (GA) 150 mg film-coated tablet, 360 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 46866011000036100 ranitidine 150 mg tablet, 360 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +929069011000036102 Pioglitazone (Generic Health) 15 mg uncoated tablet, 28, blister pack 164419 928430011000036108 Pioglitazone (Generic Health) 15 mg uncoated tablet, 28 927974011000036107 Pioglitazone (Generic Health) 15 mg uncoated tablet 927792011000036102 Pioglitazone (Generic Health) 927792011000036102 Pioglitazone (Generic Health) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +68943011000036108 Nicotinell Mint 2 mg chewing gum, 192, blister pack 126043 66697011000036100 Nicotinell Mint 2 mg chewing gum, 192 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71513011000036102 nicotine 2 mg gum, 192 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +50668011000036105 Carvedilol (Genepharm) 12.5 mg uncoated tablet, 60, blister pack 152439 49692011000036102 Carvedilol (Genepharm) 12.5 mg uncoated tablet, 60 48826011000036100 Carvedilol (Genepharm) 12.5 mg uncoated tablet 48379011000036105 Carvedilol (Genepharm) 48379011000036105 Carvedilol (Genepharm) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +747151000168101 Diazepam (Chemmart) 5 mg uncoated tablet, 50, blister pack 93669 747141000168103 Diazepam (Chemmart) 5 mg uncoated tablet, 50 747131000168107 Diazepam (Chemmart) 5 mg uncoated tablet 746001000168101 Diazepam (Chemmart) 746001000168101 Diazepam (Chemmart) 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +933215891000036107 Rivacol 0.2% mouthwash, 250 mL, bottle 19339 933204221000036109 Rivacol 0.2% mouthwash, 250 mL 933196441000036105 Rivacol 0.2% mouthwash 65188011000036102 Rivacol 65188011000036102 Rivacol 933199701000036106 chlorhexidine gluconate 0.2% mouthwash, 250 mL 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +78991011000036102 Bisoprolol Fumarate (Sandoz) 5 mg film-coated tablet, 28, blister pack 144884 78822011000036109 Bisoprolol Fumarate (Sandoz) 5 mg film-coated tablet, 28 78639011000036107 Bisoprolol Fumarate (Sandoz) 5 mg film-coated tablet 78616011000036109 Bisoprolol Fumarate (Sandoz) 78616011000036109 Bisoprolol Fumarate (Sandoz) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +19701011000036104 Efexor-XR 75 mg modified release capsule, 28, blister pack 60858 12958011000036100 Efexor-XR 75 mg modified release capsule, 28 6248011000036103 Efexor-XR 75 mg modified release capsule 45291000168107 Efexor-XR 45291000168107 Efexor-XR 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +952591000168106 Fluvoxamine (AN) 100 mg film-coated tablet, 30, blister pack 168718 952581000168108 Fluvoxamine (AN) 100 mg film-coated tablet, 30 952521000168109 Fluvoxamine (AN) 100 mg film-coated tablet 952311000168107 Fluvoxamine (AN) 952311000168107 Fluvoxamine (AN) 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +801721000168108 Abilify 2 mg uncoated tablet, 60, blister pack 91001 801711000168101 Abilify 2 mg uncoated tablet, 60 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801701000168104 aripiprazole 2 mg tablet, 60 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +19119011000036108 Cardol 160 mg uncoated tablet, 60, blister pack 43242 12422011000036100 Cardol 160 mg uncoated tablet, 60 5048011000036105 Cardol 160 mg uncoated tablet 3631011000036100 Cardol 3631011000036100 Cardol 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +1090831000168108 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 30, blister pack 286355 1090821000168105 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 30 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +60958011000036104 Paracetamol Infant's Drops (Pharmacist) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 62650 56901011000036105 Paracetamol Infant's Drops (Pharmacist) Colour Free 100 mg/mL oral liquid solution, 20 mL 54115011000036102 Paracetamol Infant's Drops (Pharmacist) Colour Free 100 mg/mL oral liquid solution 63091000168106 Paracetamol Infant's Drops (Pharmacist) 63091000168106 Paracetamol Infant's Drops (Pharmacist) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +802771000168102 Abilify ODT 30 mg orally disintegrating tablet, 7, blister pack 128904 802761000168108 Abilify ODT 30 mg orally disintegrating tablet, 7 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802751000168106 aripiprazole 30 mg orally disintegrating tablet, 7 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +931141000168100 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 161181 931131000168109 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 931101000168102 Adronat Plus D-Cal 85275011000036101 Bonecal 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +931141000168100 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 161181 931131000168109 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 82681011000036107 Adronat Plus 70 mg/140 microgram uncoated tablet 931101000168102 Adronat Plus D-Cal 12501000168100 Adronat Plus 70 mg/140 microgram 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +69427011000036101 Sodium Chloride (AstraZeneca) 0.9% (90 mg/10 mL) injection solution, 10 x 10 mL ampoules 48347 67227011000036109 Sodium Chloride (AstraZeneca) 0.9% (90 mg/10 mL) injection solution, 10 x 10 mL ampoules 65565011000036102 Sodium Chloride (AstraZeneca) 0.9% (90 mg/10 mL) injection solution, 10 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71777011000036100 sodium chloride 0.9% (90 mg/10 mL) injection, 10 x 10 mL ampoules 22582011000036104 sodium chloride 0.9% (90 mg/10 mL) injection, ampoule 21308011000036103 sodium chloride +761041000168103 Olmesartan/Amlodipine 20/5 (Apotex) film-coated tablet, 30, blister pack 218242 761031000168107 Olmesartan/Amlodipine 20/5 (Apotex) film-coated tablet, 30 761021000168109 Olmesartan/Amlodipine 20/5 (Apotex) film-coated tablet 761011000168102 Olmesartan/Amlodipine 20/5 (Apotex) 761011000168102 Olmesartan/Amlodipine 20/5 (Apotex) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +864881000168102 Amitriptyline (GXP) 25 mg tablet, 90, blister pack 232130 864871000168100 Amitriptyline (GXP) 25 mg tablet, 90 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +69087011000036104 Gemcitabine (Ebewe) 200 mg/20 mL concentrated injection, 20 mL vial 146760 66888011000036108 Gemcitabine (Ebewe) 200 mg/20 mL concentrated injection, 20 mL vial 65269011000036105 Gemcitabine (Ebewe) 200 mg/20 mL concentrated injection, 20 mL vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 71488011000036101 gemcitabine 200 mg/20 mL injection, 20 mL vial 70031011000036103 gemcitabine 200 mg/20 mL injection, vial 21644011000036108 gemcitabine +1089801000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 16, blister pack 281501 1089791000168107 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 16 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813171000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 16 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +60209011000036102 Sinus (Pharmacy Choice) uncoated tablet, 24, blister pack 133184 56168011000036100 Sinus (Pharmacy Choice) uncoated tablet, 24 53817011000036104 Sinus (Pharmacy Choice) uncoated tablet 53264011000036102 Sinus (Pharmacy Choice) 53264011000036102 Sinus (Pharmacy Choice) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +59990011000036109 Gastrogel-Ranitidine 150 mg film-coated tablet, 10, blister pack 121941 55952011000036108 Gastrogel-Ranitidine 150 mg film-coated tablet, 10 53736011000036105 Gastrogel-Ranitidine 150 mg film-coated tablet 13391000168105 Gastrogel-Ranitidine 13391000168105 Gastrogel-Ranitidine 63188011000036105 ranitidine 150 mg tablet, 10 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +14481000036108 Amlodipine (Pfizer) 5 mg uncoated tablet, 30, blister pack 192144 8291000036100 Amlodipine (Pfizer) 5 mg uncoated tablet, 30 1261000036101 Amlodipine (Pfizer) 5 mg uncoated tablet 731000036103 Amlodipine (Pfizer) 731000036103 Amlodipine (Pfizer) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +60451011000036106 Medijel oral gel, 15 g, tube 14895 56409011000036106 Medijel oral gel, 15 g 53912011000036106 Medijel oral gel 48901000168103 Medijel 48901000168103 Medijel 63348011000036105 lidocaine (lignocaine) hydrochloride 0.66% + aminoacridine hydrochloride 0.05% oral gel, 15 g 61923011000036102 lidocaine (lignocaine) hydrochloride 0.66% + aminoacridine hydrochloride 0.05% oral gel 61733011000036106 lidocaine (lignocaine) + aminoacridine +889411000168109 Bosleer 125 mg film-coated tablet, 100, bottle 235896 889401000168106 Bosleer 125 mg film-coated tablet, 100 889311000168100 Bosleer 125 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884161000168104 bosentan 125 mg tablet, 100 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +726641000168109 Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose, injection device 170544 726631000168100 Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose 726611000168105 Anapen Auto-Injector 500 microgram/0.3 mL injection solution, dose 21251000168102 Anapen Auto-Injector 21251000168102 Anapen Auto-Injector 726621000168103 adrenaline (epinephrine) 500 microgram/0.3 mL injection, 1 dose 726601000168107 adrenaline (epinephrine) 500 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +1091151000168101 Diclofenac (Medreich) 25 mg enteric tablet, 30, blister pack 284835 1091141000168103 Diclofenac (Medreich) 25 mg enteric tablet, 30 1091091000168105 Diclofenac (Medreich) 25 mg enteric tablet 1091051000168100 Diclofenac (Medreich) 1091051000168100 Diclofenac (Medreich) 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +61142011000036109 Benadryl for the Family Chesty Forte oral liquid solution, 300 mL, bottle 73178 57085011000036101 Benadryl for the Family Chesty Forte oral liquid solution, 300 mL 54189011000036103 Benadryl for the Family Chesty Forte oral liquid solution, 5 mL 8221000168105 Benadryl for the Family Chesty Forte 8221000168105 Benadryl for the Family Chesty Forte 63732011000036107 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 300 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +705171000168107 Sildenafil (Generic Health) 100 mg film-coated tablet, 4, blister pack 186299 705161000168101 Sildenafil (Generic Health) 100 mg film-coated tablet, 4 705151000168103 Sildenafil (Generic Health) 100 mg film-coated tablet 705141000168100 Sildenafil (Generic Health) 705141000168100 Sildenafil (Generic Health) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +43858011000036103 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 7, blister pack 128095 41354011000036101 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 7 39907011000036104 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet 39781011000036103 Zolpidem Tartrate (Sandoz) 39781011000036103 Zolpidem Tartrate (Sandoz) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +709461000168105 Vaxigrip 2015 injection solution, 10 x 0.5 mL syringes 80198 709451000168108 Vaxigrip 2015 injection solution, 10 x 0.5 mL syringes 709421000168100 Vaxigrip 2015 injection solution, 0.5 mL syringe 709311000168103 Vaxigrip 2015 709311000168103 Vaxigrip 2015 709391000168107 influenza trivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +1004671000168102 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 52395 1004661000168108 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 1004641000168109 Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag 711291000168100 Naropin 0.2% 711291000168100 Naropin 0.2% 1004651000168106 ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags 1004631000168100 ropivacaine hydrochloride 400 mg/200 mL injection, bag 44857011000036102 ropivacaine +1026361000168103 Neuroccord 150 mg hard capsule, 56, blister pack 235837 1026181000168105 Neuroccord 150 mg hard capsule, 56 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +140931000036106 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 30, bottle 196576 139361000036106 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 30 137741000036101 Rabeprazole Sodium (DRLA) 10 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 84671000036105 rabeprazole sodium 10 mg enteric tablet, 30 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +44221011000036103 Esmeron 50 mg/5 mL injection solution, 12 x 5 mL vials 57063 41697011000036105 Esmeron 50 mg/5 mL injection solution, 12 x 5 mL vials 40146011000036105 Esmeron 50 mg/5 mL injection solution, 5 mL vial 39588011000036108 Esmeron 39588011000036108 Esmeron 46514011000036105 rocuronium bromide 50 mg/5 mL injection, 12 x 5 mL vials 45193011000036101 rocuronium bromide 50 mg/5 mL injection, vial 44919011000036108 rocuronium +1098371000168100 Azolast 5 mg/100 mL injection solution, 6 x 100 mL bags 182212 1098361000168106 Azolast 5 mg/100 mL injection solution, 6 x 100 mL bags 1098261000168102 Azolast 5 mg/100 mL injection solution, 100 mL bag 1098241000168101 Azolast 1098241000168101 Azolast 1076761000168103 zoledronic acid 5 mg/100 mL injection, 6 x 100 mL bags 731431000168106 zoledronic acid 5 mg/100 mL injection, bag 21790011000036102 zoledronic acid +61321011000036107 Diovan 160 mg film-coated tablet, 56, blister pack 80871 57257011000036107 Diovan 160 mg film-coated tablet, 56 54255011000036106 Diovan 160 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63791011000036106 valsartan 160 mg tablet, 56 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +1073791000168101 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 20, blister pack 230261 1073781000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 20 824371000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet 824361000168105 Paracetamol Pain Relief (Apohealth) 824361000168105 Paracetamol Pain Relief (Apohealth) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +735411000168104 Soolantra 1% cream, 30 g, tube 227125 735401000168102 Soolantra 1% cream, 30 g 735381000168102 Soolantra 1% cream 735361000168106 Soolantra 735361000168106 Soolantra 735391000168104 ivermectin 1% cream, 30 g 735371000168100 ivermectin 1% cream 21548011000036106 ivermectin +1000421000168105 Tadalafil PHT (Apo) 20 mg film-coated tablet, 56, blister pack 205868 1000411000168103 Tadalafil PHT (Apo) 20 mg film-coated tablet, 56 1000341000168106 Tadalafil PHT (Apo) 20 mg film-coated tablet 1000321000168100 Tadalafil PHT (Apo) 1000321000168100 Tadalafil PHT (Apo) 8721000036107 tadalafil 20 mg tablet, 56 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +657541000168102 Ramipril (AN) 5 mg uncoated tablet, 30, bottle 175236 657531000168106 Ramipril (AN) 5 mg uncoated tablet, 30 657521000168108 Ramipril (AN) 5 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1108331000168105 Midavel 5 mg/mL injection solution, 1 mL ampoule 207242 1108321000168107 Midavel 5 mg/mL injection solution, 1 mL ampoule 1108311000168100 Midavel 5 mg/mL injection solution, ampoule 1108021000168109 Midavel 1108021000168109 Midavel 664011000168107 midazolam 5 mg/mL injection, 1 mL ampoule 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +43553011000036107 Sutent 50 mg capsule, 28, bottle 123147 41290011000036107 Sutent 50 mg capsule, 28 39864011000036100 Sutent 50 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46225011000036107 sunitinib 50 mg capsule, 28 45036011000036108 sunitinib 50 mg capsule 44859011000036109 sunitinib +160161000036109 Montelukast (Terry White Chemists) 10 mg film-coated tablet, 28, blister pack 170244 158901000036100 Montelukast (Terry White Chemists) 10 mg film-coated tablet, 28 158111000036101 Montelukast (Terry White Chemists) 10 mg film-coated tablet 123801000036104 Montelukast (Terry White Chemists) 123801000036104 Montelukast (Terry White Chemists) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +140891000036100 Candesartan Cilexetil HCTZ 16/12.5 (RBX) uncoated tablet, 30, bottle 196444 139461000036102 Candesartan Cilexetil HCTZ 16/12.5 (RBX) uncoated tablet, 30 137551000036109 Candesartan Cilexetil HCTZ 16/12.5 (RBX) uncoated tablet 14681000168103 Candesartan Cilexetil HCTZ 16/12.5 (RBX) 14681000168103 Candesartan Cilexetil HCTZ 16/12.5 (RBX) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +876481000168101 Briviact 100 mg film-coated tablet, 56, blister pack 243792 876471000168104 Briviact 100 mg film-coated tablet, 56 876421000168100 Briviact 100 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876461000168105 brivaracetam 100 mg tablet, 56 876411000168107 brivaracetam 100 mg tablet 876401000168109 brivaracetam +181591000036102 Candesartan Cilexetil HCTZ 16/12.5 (Chemmart) uncoated tablet, 30, blister pack 210568 181131000036109 Candesartan Cilexetil HCTZ 16/12.5 (Chemmart) uncoated tablet, 30 180591000036107 Candesartan Cilexetil HCTZ 16/12.5 (Chemmart) uncoated tablet 53991000168104 Candesartan Cilexetil HCTZ 16/12.5 (Chemmart) 53991000168104 Candesartan Cilexetil HCTZ 16/12.5 (Chemmart) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +69254011000036109 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 12 x 1 L bags 19470 67054011000036107 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 12 x 1 L bags 65281011000036109 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 33821000168108 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 33821000168108 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 71624011000036100 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.9% (9 g/L) injection, 12 x 1 L bags 70097011000036100 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.9% (9 g/L) injection, bag 69799011000036108 potassium chloride + sodium chloride +1104061000168107 Quetiaccord 200 mg film-coated tablet, 20, blister pack 170850 1104051000168105 Quetiaccord 200 mg film-coated tablet, 20 3731000036100 Quetiaccord 200 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +73310011000036100 Jurnista 64 mg modified release tablet, 40, blister pack 141535 73108011000036105 Jurnista 64 mg modified release tablet, 40 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73506011000036103 hydromorphone hydrochloride 64 mg modified release tablet, 40 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +920725011000036105 Pantoprazole (Generic Health) 20 mg enteric tablet, 30, blister pack 191032 920412011000036101 Pantoprazole (Generic Health) 20 mg enteric tablet, 30 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +920725011000036105 Pantoprazole (Generic Health) 20 mg enteric tablet, 30, blister pack 155114 920412011000036101 Pantoprazole (Generic Health) 20 mg enteric tablet, 30 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +19649011000036101 Lipitor 40 mg film-coated tablet, 30, blister pack 166899 12916011000036106 Lipitor 40 mg film-coated tablet, 30 6206011000036109 Lipitor 40 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +19649011000036101 Lipitor 40 mg film-coated tablet, 30, blister pack 59607 12916011000036106 Lipitor 40 mg film-coated tablet, 30 6206011000036109 Lipitor 40 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +19649011000036101 Lipitor 40 mg film-coated tablet, 30, blister pack 168342 12916011000036106 Lipitor 40 mg film-coated tablet, 30 6206011000036109 Lipitor 40 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +746911000168102 Morphine (JN) 10 mg/mL injection solution, 5 x 1 mL ampoules 224252 746901000168100 Morphine (JN) 10 mg/mL injection solution, 5 x 1 mL ampoules 746891000168104 Morphine (JN) 10 mg/mL injection solution, ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 707011000168107 morphine hydrochloride trihydrate 10 mg/mL injection, 5 x 1 mL ampoules 706991000168102 morphine hydrochloride trihydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +718011000168108 Imbruvica 140 mg hard capsule, 120, bottle 228499 718001000168105 Imbruvica 140 mg hard capsule, 120 717951000168106 Imbruvica 140 mg hard capsule 717911000168105 Imbruvica 717911000168105 Imbruvica 717991000168101 ibrutinib 140 mg capsule, 120 717941000168109 ibrutinib 140 mg capsule 717931000168100 ibrutinib +933215571000036106 Olanzapine (Lilly) 7.5 mg film-coated tablet, 28, blister pack 167682 933205061000036106 Olanzapine (Lilly) 7.5 mg film-coated tablet, 28 933196161000036104 Olanzapine (Lilly) 7.5 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +705131000168109 Temozolomide (Apo) 100 mg hard capsule, 5, bottle 231527 705121000168106 Temozolomide (Apo) 100 mg hard capsule, 5 705111000168104 Temozolomide (Apo) 100 mg hard capsule 703741000168100 Temozolomide (Apo) 703741000168100 Temozolomide (Apo) 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +39181000036108 Exemestane (Pharmacor) 25 mg film-coated tablet, 30, blister pack 167858 35581000036101 Exemestane (Pharmacor) 25 mg film-coated tablet, 30 32451000036100 Exemestane (Pharmacor) 25 mg film-coated tablet 32281000036106 Exemestane (Pharmacor) 32281000036106 Exemestane (Pharmacor) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +815951000168101 Oxynorm 1 mg/mL oral liquid solution, 250 mL, bottle 77464 815941000168103 Oxynorm 1 mg/mL oral liquid solution, 250 mL 815921000168109 Oxynorm 1 mg/mL oral liquid solution 4209011000036106 Oxynorm 4209011000036106 Oxynorm 815931000168107 oxycodone hydrochloride 1 mg/mL oral liquid, 250 mL 815911000168102 oxycodone hydrochloride 1 mg/mL oral liquid 21259011000036105 oxycodone +83185011000036101 Irinotecan Hydrochloride Trihydrate (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 154237 83131011000036109 Irinotecan Hydrochloride Trihydrate (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 83075011000036101 Irinotecan Hydrochloride Trihydrate (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +61384011000036100 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 200 mL, bottle 81838 57309011000036104 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 200 mL 54268011000036106 Congested Cold and Cough Elixir (Soul Pattinson) oral liquid solution, 5 mL 26101000168104 Congested Cold and Cough Elixir (Soul Pattinson) 26101000168104 Congested Cold and Cough Elixir (Soul Pattinson) 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +50507011000036102 Duoderm Paste (H7930) paste, 30 g, tube 157333 49429011000036104 Duoderm Paste (H7930) paste, 30 g 48668011000036104 Duoderm Paste (H7930) paste 62961000168108 Duoderm Paste (H7930) 62961000168108 Duoderm Paste (H7930) 51397011000036106 dressing hydrocolloid cavity wound paste, 30 g 50918011000036108 dressing hydrocolloid cavity wound paste 50740011000036105 dressing hydrocolloid cavity wound +19741011000036107 Insig 2.5 mg film-coated tablet, 90, blister pack 62057 12995011000036103 Insig 2.5 mg film-coated tablet, 90 6283011000036104 Insig 2.5 mg film-coated tablet 4269011000036107 Insig 4269011000036107 Insig 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +61488011000036100 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 500, blister pack 91993 57413011000036109 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 500 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +666221000168100 Azithromycin (GA) 500 mg film-coated tablet, 3, blister pack 200051 666211000168107 Azithromycin (GA) 500 mg film-coated tablet, 3 143731000036102 Azithromycin (GA) 500 mg film-coated tablet 143271000036107 Azithromycin (GA) 143271000036107 Azithromycin (GA) 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +19015011000036103 Ciproxin 250 mg film-coated tablet, 14, blister pack 35317 12320011000036106 Ciproxin 250 mg film-coated tablet, 14 5064011000036108 Ciproxin 250 mg film-coated tablet 28351000168101 Ciproxin 28351000168101 Ciproxin 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +683491000168108 Methylprednisolone (Alphapharm) 500 mg powder for injection, 1 vial 166624 683481000168105 Methylprednisolone (Alphapharm) 500 mg powder for injection, 1 vial 683471000168107 Methylprednisolone (Alphapharm) 500 mg powder for injection, 500 mg vial 663851000168103 Methylprednisolone (Alphapharm) 663851000168103 Methylprednisolone (Alphapharm) 653941000168104 methylprednisolone 500 mg injection, 1 vial 37894011000036107 methylprednisolone 500 mg injection, vial 21605011000036100 methylprednisolone +69617011000036108 Mylanta 2go Rolltab Fruit chewable tablet, 12, wrapping 75880 67416011000036104 Mylanta 2go Rolltab Fruit chewable tablet, 12 65654011000036104 Mylanta 2go Rolltab Fruit chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71947011000036109 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 12 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +66041000036102 Onsetron ODT 8 mg orally disintegrating tablet, 10, blister pack 176762 63561000036101 Onsetron ODT 8 mg orally disintegrating tablet, 10 60851000036109 Onsetron ODT 8 mg orally disintegrating tablet 26511000168108 Onsetron ODT 26511000168108 Onsetron ODT 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +43795011000036104 Zindaclin 1% gel, 30 g, tube 101427 41124011000036109 Zindaclin 1% gel, 30 g 39903011000036108 Zindaclin 1% gel 39593011000036104 Zindaclin 39593011000036104 Zindaclin 46106011000036108 clindamycin 1% gel, 30 g 44987011000036103 clindamycin 1% gel 21255011000036108 clindamycin +1082471000168106 Atorvastatin (WT) 80 mg film-coated tablet, 90, bottle 217175 1082461000168100 Atorvastatin (WT) 80 mg film-coated tablet, 90 1082411000168103 Atorvastatin (WT) 80 mg film-coated tablet 1082401000168101 Atorvastatin (WT) 1082401000168101 Atorvastatin (WT) 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +44037011000036104 Sporanox 100 mg hard capsule, 15, bottle 47862 41526011000036108 Sporanox 100 mg hard capsule, 15 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 46361011000036108 itraconazole 100 mg capsule, 15 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +687831000168101 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, 65 actuations, pump pack 184659 687821000168104 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, 65 actuations 687811000168106 Mometasone Furoate (Apo) 50 microgram/actuation nasal spray, actuation 687801000168108 Mometasone Furoate (Apo) 687801000168108 Mometasone Furoate (Apo) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +888041000168107 Ursofalk 500 mg film-coated tablet, 100, blister pack 262732 888031000168103 Ursofalk 500 mg film-coated tablet, 100 887981000168104 Ursofalk 500 mg film-coated tablet 3056011000036102 Ursofalk 3056011000036102 Ursofalk 888021000168101 ursodeoxycholic acid 500 mg tablet, 100 887971000168102 ursodeoxycholic acid 500 mg tablet 21849011000036102 ursodeoxycholic acid +951381000168106 Modafinil (AN) 100 mg uncoated tablet, 10, blister pack 269912 951371000168108 Modafinil (AN) 100 mg uncoated tablet, 10 951361000168102 Modafinil (AN) 100 mg uncoated tablet 951351000168104 Modafinil (AN) 951351000168104 Modafinil (AN) 932449011000036107 modafinil 100 mg tablet, 10 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +1013351000168103 Kanuma 20 mg/10 mL injection solution, 10 mL vial 274498 1013341000168100 Kanuma 20 mg/10 mL injection solution, 10 mL vial 1013321000168106 Kanuma 20 mg/10 mL injection solution, 10 mL vial 987271000168103 Kanuma 987271000168103 Kanuma 1013331000168109 sebelipase alfa 20 mg/10 mL injection, 10 mL vial 1013311000168104 sebelipase alfa 20 mg/10 mL injection, vial 987281000168100 sebelipase alfa +1085371000168105 Atrovent 22 microgram/actuation nasal spray, 180 actuations, pump pack 53362 150881000036100 Atrovent 22 microgram/actuation nasal spray, 180 actuations 148021000036106 Atrovent 22 microgram/actuation nasal spray, actuation 3536011000036101 Atrovent 3536011000036101 Atrovent 150891000036103 ipratropium bromide monohydrate 22 microgram/actuation nasal spray, 180 actuations 148031000036108 ipratropium bromide monohydrate 22 microgram/actuation nasal spray, actuation 21512011000036101 ipratropium +84372011000036105 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 10 mg film-coated tablet, 30, blister pack 165685 84065011000036107 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 10 mg film-coated tablet, 30 83690011000036105 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 10 mg film-coated tablet 37901000168103 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 37901000168103 Cetirizine Hydrochloride Hayfever and Allergy Relief (Pharmacist Formula) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1037841000168108 Darzalex 400 mg/20 mL concentrated injection, 20 mL vial 281843 1037831000168104 Darzalex 400 mg/20 mL concentrated injection, 20 mL vial 1037811000168109 Darzalex 400 mg/20 mL concentrated injection, 20 mL vial 1037731000168106 Darzalex 1037731000168106 Darzalex 1037821000168102 daratumumab 400 mg/20 mL injection, 20 mL vial 1037801000168106 daratumumab 400 mg/20 mL injection, vial 1037741000168102 daratumumab +1121381000168107 Quetiapine XR (Medis) 50 mg modified release tablet, 30, blister pack 241757 1121371000168109 Quetiapine XR (Medis) 50 mg modified release tablet, 30 1121341000168102 Quetiapine XR (Medis) 50 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 809171000168107 quetiapine 50 mg modified release tablet, 30 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +21009011000036107 Lisinopril (Terry White Chemists) 5 mg tablet, 30, blister pack 213396 14155011000036100 Lisinopril (Terry White Chemists) 5 mg tablet, 30 7434011000036109 Lisinopril (Terry White Chemists) 5 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +21009011000036107 Lisinopril (Terry White Chemists) 5 mg tablet, 30, blister pack 143986 14155011000036100 Lisinopril (Terry White Chemists) 5 mg tablet, 30 7434011000036109 Lisinopril (Terry White Chemists) 5 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +21009011000036107 Lisinopril (Terry White Chemists) 5 mg tablet, 30, blister pack 96327 14155011000036100 Lisinopril (Terry White Chemists) 5 mg tablet, 30 7434011000036109 Lisinopril (Terry White Chemists) 5 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +1095401000168107 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 80, blister pack 287307 1095391000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 80 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1077371000168108 fexofenadine hydrochloride 180 mg tablet, 80 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +60007011000036101 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 50 mL, bottle 123258 55969011000036108 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 50 mL 53742011000036105 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 5 mL 11351000168104 Ibuprofen for Children (Priceline) 11351000168104 Ibuprofen for Children (Priceline) 63869011000036106 ibuprofen 100 mg/5 mL oral liquid, 50 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +80051011000036100 Sulprix 400 mg film-coated tablet, 60, blister pack 152460 79979011000036105 Sulprix 400 mg film-coated tablet, 60 79927011000036104 Sulprix 400 mg film-coated tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +1039291000168109 Atomoxetine (Actavis) 80 mg hard capsule, 7, blister pack 237257 1039281000168106 Atomoxetine (Actavis) 80 mg hard capsule, 7 1039271000168108 Atomoxetine (Actavis) 80 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +66051000036104 Onsetron ODT 8 mg orally disintegrating tablet, 4, blister pack 176762 63571000036109 Onsetron ODT 8 mg orally disintegrating tablet, 4 60851000036109 Onsetron ODT 8 mg orally disintegrating tablet 26511000168108 Onsetron ODT 26511000168108 Onsetron ODT 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +925180011000036106 Nicotine (Guardian) 2 mg chewing gum, 96, blister pack 152931 924717011000036106 Nicotine (Guardian) 2 mg chewing gum, 96 924430011000036107 Nicotine (Guardian) 2 mg chewing gum 924357011000036102 Nicotine (Guardian) 924357011000036102 Nicotine (Guardian) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60658011000036100 Dozile 25 mg soft capsule, 20, blister pack 34074 56616011000036101 Dozile 25 mg soft capsule, 20 54011011000036108 Dozile 25 mg soft capsule 53226011000036101 Dozile 53226011000036101 Dozile 63468011000036109 doxylamine succinate 25 mg capsule, 20 61987011000036104 doxylamine succinate 25 mg capsule 61728011000036104 doxylamine +1055151000168109 Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules 152411 1055141000168107 Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules 1055131000168103 Oxynorm 50 mg/mL injection solution, ampoule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 929214011000036105 oxycodone hydrochloride 50 mg/mL injection, 5 x 1 mL ampoules 929150011000036108 oxycodone hydrochloride 50 mg/mL injection, ampoule 21259011000036105 oxycodone +43766011000036108 Duac Once Daily gel, 5 g, tube 100707 41092011000036103 Duac Once Daily gel, 5 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46078011000036108 clindamycin 1% + benzoyl peroxide 5% gel, 5 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +33551011000036107 Quinapril (Apo) 20 mg film-coated tablet, 30, blister pack 133221 33289011000036109 Quinapril (Apo) 20 mg film-coated tablet, 30 33051011000036109 Quinapril (Apo) 20 mg film-coated tablet 17791000168102 Quinapril (Apo) 17791000168102 Quinapril (Apo) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +20525011000036105 Zarontin Syrup 250 mg/5 mL oral liquid solution, 200 mL, bottle 79031 13724011000036105 Zarontin Syrup 250 mg/5 mL oral liquid solution, 200 mL 7006011000036103 Zarontin Syrup 250 mg/5 mL oral liquid solution, 5 mL 45101000168105 Zarontin Syrup 45101000168105 Zarontin Syrup 27900011000036106 ethosuximide 250 mg/5 mL oral liquid, 200 mL 23225011000036100 ethosuximide 250 mg/5 mL oral liquid 21833011000036101 ethosuximide +1020421000168100 Aripiprazole (WT) 15 mg uncoated tablet, 100, bottle 217220 1020411000168107 Aripiprazole (WT) 15 mg uncoated tablet, 100 1020401000168109 Aripiprazole (WT) 15 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +20767011000036109 Ampicyn 1 g powder for injection, 5 vials 90881 13936011000036105 Ampicyn 1 g powder for injection, 5 vials 7224011000036108 Ampicyn 1 g powder for injection, vial 3809011000036101 Ampicyn 3809011000036101 Ampicyn 28099011000036101 ampicillin 1 g injection, 5 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +948571000168109 Ondansetron (Mylan) 4 mg/2 mL injection, 2 mL vial 148299 948561000168103 Ondansetron (Mylan) 4 mg/2 mL injection, 2 mL vial 948541000168102 Ondansetron (Mylan) 4 mg/2 mL injection, 2 mL vial 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 948551000168100 ondansetron 4 mg/2 mL injection, 2 mL vial 948531000168106 ondansetron 4 mg/2 mL injection, vial 21545011000036100 ondansetron +34686011000036101 Amlodipine (Terry White Chemists) 5 mg uncoated tablet, 30, blister pack 135135 34272011000036106 Amlodipine (Terry White Chemists) 5 mg uncoated tablet, 30 34000011000036108 Amlodipine (Terry White Chemists) 5 mg uncoated tablet 33931011000036103 Amlodipine (Terry White Chemists) 33931011000036103 Amlodipine (Terry White Chemists) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +970091000168103 Pregabalin (Apo) 25 mg hard capsule, 60, blister pack 193255 970081000168101 Pregabalin (Apo) 25 mg hard capsule, 60 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +716771000168102 Omepro 20 mg enteric capsule, 56, blister pack 149516 716761000168108 Omepro 20 mg enteric capsule, 56 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716751000168106 omeprazole 20 mg enteric capsule, 56 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +925274011000036107 Elonva 100 microgram/0.5 mL injection solution, 0.5 mL syringe 160646 924811011000036100 Elonva 100 microgram/0.5 mL injection solution, 0.5 mL syringe 924505011000036104 Elonva 100 microgram/0.5 mL injection solution, 0.5 mL syringe 924354011000036108 Elonva 924354011000036108 Elonva 925417011000036105 corifollitropin alfa 100 microgram/0.5 mL injection, 0.5 mL syringe 925375011000036101 corifollitropin alfa 100 microgram/0.5 mL injection, syringe 925370011000036105 corifollitropin alfa +1080871000168107 Claratyne Children's 5 mg chewable tablet, 50, blister pack 169329 1080861000168101 Claratyne Children's 5 mg chewable tablet, 50 930070011000036102 Claratyne Children's 5 mg chewable tablet 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 1080851000168103 loratadine 5 mg chewable tablet, 50 931862011000036104 loratadine 5 mg chewable tablet 21701011000036106 loratadine +934181000168108 Centevo 175/43.75/200 mg film-coated tablet, 28, bottle 238858 934171000168105 Centevo 175/43.75/200 mg film-coated tablet, 28 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934161000168104 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 28 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +37555011000036104 Novantrone 20 mg/10 mL concentrated injection, 10 mL vial 15194 36823011000036104 Novantrone 20 mg/10 mL concentrated injection, 10 mL vial 36092011000036101 Novantrone 20 mg/10 mL concentrated injection, 10 mL vial 35900011000036106 Novantrone 35900011000036106 Novantrone 27985011000036103 mitozantrone 20 mg/10 mL injection, 10 mL vial 23309011000036101 mitozantrone 20 mg/10 mL injection, vial 21652011000036102 mitozantrone +17823011000036102 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 500 mL, bottle 38572 11322011000036109 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 500 mL 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 26602011000036105 benzydamine hydrochloride 0.15% mouthwash, 500 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +17823011000036102 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 500 mL, bottle 10544 11322011000036109 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 500 mL 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 26602011000036105 benzydamine hydrochloride 0.15% mouthwash, 500 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +20283011000036108 Metolol 100 mg uncoated tablet, 60, blister pack 75459 13492011000036101 Metolol 100 mg uncoated tablet, 60 6774011000036103 Metolol 100 mg uncoated tablet 3932011000036107 Metolol 3932011000036107 Metolol 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +807271000168107 Lynparza 50 mg hard capsule, 4 x 112, bottles 234008 807261000168101 Lynparza 50 mg hard capsule, 4 x 112 807211000168104 Lynparza 50 mg hard capsule 807181000168103 Lynparza 807181000168103 Lynparza 807251000168103 olaparib 50 mg capsule, 4 x 112 807201000168102 olaparib 50 mg capsule 807191000168100 olaparib +660581000168100 Irbesartan HCTZ 150/12.5 (AN) film-coated tablet, 30, blister pack 192837 660571000168103 Irbesartan HCTZ 150/12.5 (AN) film-coated tablet, 30 660561000168109 Irbesartan HCTZ 150/12.5 (AN) film-coated tablet 657281000168109 Irbesartan HCTZ 150/12.5 (AN) 657281000168109 Irbesartan HCTZ 150/12.5 (AN) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1017691000168106 Arizole 5 mg uncoated tablet, 100, bottle 198207 1017681000168108 Arizole 5 mg uncoated tablet, 100 1017651000168101 Arizole 5 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +1078221000168102 Atostat 10 mg film-coated tablet, 30, blister pack 194103 1078211000168109 Atostat 10 mg film-coated tablet, 30 1078201000168106 Atostat 10 mg film-coated tablet 1078191000168108 Atostat 1078191000168108 Atostat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1026281000168103 Pregabalin (Amneal) 75 mg hard capsule, 14, blister pack 235855 1026271000168101 Pregabalin (Amneal) 75 mg hard capsule, 14 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +39101000036102 Nurofen for Children 5 to 12 Years orange 200 mg/5 mL oral liquid suspension, 100 mL, bottle 167734 35481000036102 Nurofen for Children 5 to 12 Years orange 200 mg/5 mL oral liquid suspension, 100 mL 32661000036104 Nurofen for Children 5 to 12 Years orange 200 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 35491000036100 ibuprofen 200 mg/5 mL oral liquid, 100 mL 32671000036107 ibuprofen 200 mg/5 mL oral liquid 21885011000036105 ibuprofen +850671000168101 Temozolomide (Amneal) 20 mg hard capsule, 20, sachet 206043 850661000168107 Temozolomide (Amneal) 20 mg hard capsule, 20 850631000168104 Temozolomide (Amneal) 20 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 164291000036104 temozolomide 20 mg capsule, 20 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +44734011000036107 Testogel 1% (25 mg/2.5 g) gel, 10 x 2.5 g sachets 96129 42179011000036105 Testogel 1% (25 mg/2.5 g) gel, 10 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46940011000036102 testosterone 1% (25 mg/2.5 g) gel, 10 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +87725011000036109 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 30, blister pack 164469 87491011000036107 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 30 87339011000036107 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1009101000168101 Rivastigmine (Apotex) 4.5 mg hard capsule, 112, blister pack 160569 1009091000168106 Rivastigmine (Apotex) 4.5 mg hard capsule, 112 1009021000168109 Rivastigmine (Apotex) 4.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002471000168107 rivastigmine 4.5 mg capsule, 112 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +716731000168100 Omepro 20 mg enteric capsule, 500, bottle 167314 716691000168107 Omepro 20 mg enteric capsule, 500 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716681000168109 omeprazole 20 mg enteric capsule, 500 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +1037921000168105 Intuniv 1 mg modified release tablet, 7, blister pack 275278 1037911000168103 Intuniv 1 mg modified release tablet, 7 1037891000168100 Intuniv 1 mg modified release tablet 1037851000168105 Intuniv 1037851000168105 Intuniv 1037901000168101 guanfacine 1 mg modified release tablet, 7 1037881000168103 guanfacine 1 mg modified release tablet 1037871000168101 guanfacine +43812011000036105 Sutent 12.5 mg capsule, 10, bottle 123139 41281011000036104 Sutent 12.5 mg capsule, 10 39790011000036106 Sutent 12.5 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46216011000036108 sunitinib 12.5 mg capsule, 10 45034011000036100 sunitinib 12.5 mg capsule 44859011000036109 sunitinib +52788011000036106 Rapideine Day (Soul Pattinson) capsule shaped uncoated tablet, 100, bottle 94315 52598011000036108 Rapideine Day (Soul Pattinson) capsule shaped uncoated tablet, 100 52438011000036105 Rapideine Day (Soul Pattinson) capsule shaped uncoated tablet 52385011000036104 Rapideine Day (Soul Pattinson) 52385011000036104 Rapideine Day (Soul Pattinson) 52903011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 100 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +926920011000036102 Teething (Terry White Chemists) 8.7% oral gel, 20 g, tube 90459 926314011000036105 Teething (Terry White Chemists) 8.7% oral gel, 20 g 925756011000036105 Teething (Terry White Chemists) 8.7% oral gel 925574011000036103 Teething (Terry White Chemists) 925574011000036103 Teething (Terry White Chemists) 927403011000036102 choline salicylate 8.7% oral gel, 20 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +686301000168104 Topiramate (AN) 100 mg film-coated tablet, 60, bottle 157974 686291000168100 Topiramate (AN) 100 mg film-coated tablet, 60 686281000168103 Topiramate (AN) 100 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +82390011000036107 Duocover 75 mg/100 mg film-coated tablet, 7, blister pack 151075 82179011000036104 Duocover 75 mg/100 mg film-coated tablet, 7 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82553011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 7 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +746831000168103 Morphine (JN) 20 mg/mL injection solution, 5 x 1 mL ampoules 224249 746821000168101 Morphine (JN) 20 mg/mL injection solution, 5 x 1 mL ampoules 746811000168108 Morphine (JN) 20 mg/mL injection solution, ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 706851000168104 morphine hydrochloride trihydrate 20 mg/mL injection, 5 x 1 mL ampoules 706831000168105 morphine hydrochloride trihydrate 20 mg/mL injection, ampoule 21252011000036100 morphine +1055241000168104 Sorbact Gel (S98137) 7.5 cm x 15 cm dressing, 10, carton 173773 1055231000168108 Sorbact Gel (S98137) 7.5 cm x 15 cm dressing, 10 1055211000168103 Sorbact Gel (S98137) 7.5 cm x 15 cm dressing 1055191000168104 Sorbact Gel (S98137) 1055191000168104 Sorbact Gel (S98137) 1055221000168105 dressing hydrogel 7.5 cm x 15 cm dressing, 10 1055201000168101 dressing hydrogel 7.5 cm x 15 cm dressing 111261000036108 dressing hydrogel +756871000168102 Duloxetine (Sandoz) 30 mg enteric capsule, 7, blister pack 197161 756861000168108 Duloxetine (Sandoz) 30 mg enteric capsule, 7 756851000168106 Duloxetine (Sandoz) 30 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 38611011000036105 duloxetine 30 mg enteric capsule, 7 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +1090991000168100 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 20, blister pack 286271 1090981000168103 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 20 1090951000168105 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 71490011000036102 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 20 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +86083011000036101 Fexal 30 mg film-coated tablet, 20, blister pack 140282 85629011000036101 Fexal 30 mg film-coated tablet, 20 85304011000036102 Fexal 30 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 63736011000036106 fexofenadine hydrochloride 30 mg tablet, 20 62066011000036109 fexofenadine hydrochloride 30 mg tablet 21394011000036108 fexofenadine +82001000036102 Methaccord 1 g/10 mL injection solution, 10 mL vial 159100 79931000036109 Methaccord 1 g/10 mL injection solution, 10 mL vial 78201000036101 Methaccord 1 g/10 mL injection solution, 10 mL vial 1131000036103 Methaccord 1131000036103 Methaccord 28266011000036102 methotrexate 1 g/10 mL injection, 10 mL vial 23580011000036105 methotrexate 1 g/10 mL injection, vial 21342011000036105 methotrexate +66131000036106 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution, 100 mL, bottle 14488 63361000036109 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution, 100 mL 61081000036100 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution 60391000036108 Eucalyptus Oil (True Blue) 60391000036108 Eucalyptus Oil (True Blue) 73519011000036109 eucalyptus oil 1 mL/mL inhalation solution, 100 mL 73382011000036103 eucalyptus oil 1 mL/mL inhalation solution 73351011000036104 eucalyptus oil +135651000036100 Candesartan/HCT 16 mg/12.5 mg (Sandoz) tablet, 30, blister pack 157942 134951000036108 Candesartan/HCT 16 mg/12.5 mg (Sandoz) tablet, 30 134301000036106 Candesartan/HCT 16 mg/12.5 mg (Sandoz) tablet 29151000168105 Candesartan/HCT 16 mg/12.5 mg (Sandoz) 29151000168105 Candesartan/HCT 16 mg/12.5 mg (Sandoz) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +854971000168102 Algerika 100 mg hard capsule, 14, blister pack 229592 854961000168108 Algerika 100 mg hard capsule, 14 854941000168109 Algerika 100 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +32537011000036106 NutropinAq 10 mg/2 mL injection solution, 2 mL cartridge 116678 32331011000036100 NutropinAq 10 mg/2 mL injection solution, 2 mL cartridge 5910011000036107 NutropinAq 10 mg/2 mL injection solution, 2 mL cartridge 15821000168102 NutropinAq 15821000168102 NutropinAq 32756011000036105 somatropin 10 mg/2 mL injection, 2 mL cartridge 22079011000036101 somatropin 10 mg/2 mL injection, cartridge 21295011000036100 somatropin +33534011000036106 Dolapril 500 microgram hard capsule, 28, blister pack 125432 33274011000036104 Dolapril 500 microgram hard capsule, 28 33039011000036109 Dolapril 500 microgram hard capsule 32987011000036105 Dolapril 32987011000036105 Dolapril 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +715081000168106 Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube 18699 715071000168108 Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g 715061000168102 Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream 53401000168103 Canesten Clotrimazole Thrush Treatment 6 Day 53401000168103 Canesten Clotrimazole Thrush Treatment 6 Day 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +942701000168107 Mandol 500 mg powder for injection, 10 vials 14650 942691000168107 Mandol 500 mg powder for injection, 10 vials 942671000168106 Mandol 500 mg powder for injection, 500 mg vial 942471000168108 Mandol 942471000168108 Mandol 942681000168109 cefamandole 500 mg injection, 10 vials 942661000168100 cefamandole 500 mg injection, vial 942521000168106 cefamandole +883791000168105 Betahistine (Actavis) 8 mg tablet, 25, blister pack 231722 883781000168107 Betahistine (Actavis) 8 mg tablet, 25 883751000168100 Betahistine (Actavis) 8 mg tablet 883671000168100 Betahistine (Actavis) 883671000168100 Betahistine (Actavis) 883121000168107 betahistine dihydrochloride 8 mg tablet, 25 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +933215641000036100 Olanzapine (LY) 10 mg film-coated tablet, 7, blister pack 167685 933205151000036109 Olanzapine (LY) 10 mg film-coated tablet, 7 933196191000036106 Olanzapine (LY) 10 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 933205131000036101 olanzapine 10 mg tablet, 7 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +748431000168104 Docetaxel (Intas) 80 mg/4 mL concentrated injection, 4 mL vial 209474 748421000168102 Docetaxel (Intas) 80 mg/4 mL concentrated injection, 4 mL vial 748411000168109 Docetaxel (Intas) 80 mg/4 mL concentrated injection, 4 mL vial 748331000168105 Docetaxel (Intas) 748331000168105 Docetaxel (Intas) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +982981000168108 Propofol (HX) 500 mg/50 mL injection emulsion, 50 mL vial 79584 982971000168105 Propofol (HX) 500 mg/50 mL injection emulsion, 50 mL vial 982961000168104 Propofol (HX) 500 mg/50 mL injection emulsion, 50 mL vial 933193851000036100 Propofol (HX) 933193851000036100 Propofol (HX) 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +20219011000036109 Oxynorm 20 mg hard capsule, 20, blister pack 74141 13437011000036105 Oxynorm 20 mg hard capsule, 20 6719011000036106 Oxynorm 20 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +921993011000036103 Anzemet 200 mg film-coated tablet, 5, blister pack 55068 921551011000036100 Anzemet 200 mg film-coated tablet, 5 6059011000036102 Anzemet 200 mg film-coated tablet 4210011000036102 Anzemet 4210011000036102 Anzemet 922667011000036106 dolasetron mesilate monohydrate 200 mg tablet, 5 22695011000036103 dolasetron mesilate monohydrate 200 mg tablet 21471011000036108 dolasetron +74825011000036102 Diprosone 0.05% cream, 50 g, tube 18818 74312011000036103 Diprosone 0.05% cream, 50 g 5366011000036104 Diprosone 0.05% cream 10951000168106 Diprosone 10951000168106 Diprosone 75422011000036108 betamethasone (as dipropionate) 0.05% cream, 50 g 22453011000036107 betamethasone (as dipropionate) 0.05% cream 21372011000036109 betamethasone dipropionate +933216121000036105 Aethoxysklerol 2% (40 mg/2 mL) injection solution, 5 x 2 mL ampoules 79120 933205751000036105 Aethoxysklerol 2% (40 mg/2 mL) injection solution, 5 x 2 mL ampoules 933196741000036104 Aethoxysklerol 2% (40 mg/2 mL) injection solution, 2 mL ampoule 39757011000036100 Aethoxysklerol 39757011000036100 Aethoxysklerol 933205761000036108 lauromacrogol-400 2% (40 mg/2 mL) injection, 5 x 2 mL ampoules 933196751000036101 lauromacrogol-400 2% (40 mg/2 mL) injection, ampoule 44952011000036107 lauromacrogol-400 +14291000036109 Ozin 10 mg uncoated tablet, 28, blister pack 179923 7901000036101 Ozin 10 mg uncoated tablet, 28 2161000036102 Ozin 10 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +944711000168104 Risperidone (GenRx) 3 mg film-coated tablet, 60, blister pack 127574 944701000168102 Risperidone (GenRx) 3 mg film-coated tablet, 60 944691000168102 Risperidone (GenRx) 3 mg film-coated tablet 943311000168103 Risperidone (GenRx) 943311000168103 Risperidone (GenRx) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +34629011000036103 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 118321 34219011000036105 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 33970011000036108 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 33950011000036106 Metronidazole (Sandoz) 33950011000036106 Metronidazole (Sandoz) 32778011000036106 metronidazole 500 mg/100 mL (0.5%) injection, 100 mL bag 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +749881000168109 Tacrolimus (CH) 5 mg hard capsule, 10, blister pack 224278 749871000168106 Tacrolimus (CH) 5 mg hard capsule, 10 749861000168100 Tacrolimus (CH) 5 mg hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 749331000168100 tacrolimus 5 mg capsule, 10 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +69346011000036109 Citravescent powder for oral liquid, 28 x 4 g sachets 27908 67146011000036105 Citravescent powder for oral liquid, 28 x 4 g sachets 65254011000036101 Citravescent powder for oral liquid, 4 g sachet 65161011000036108 Citravescent 65161011000036108 Citravescent 71711011000036102 sodium bicarbonate 1.45 g + citric acid 1.23 g + tartaric acid 400 mg powder for oral liquid, 28 x 4 g sachets 70142011000036102 sodium bicarbonate 1.45 g + citric acid 1.23 g + tartaric acid 400 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +953071000168106 Gabapentin (AN) 300 mg hard capsule, 20, blister pack 263841 953061000168100 Gabapentin (AN) 300 mg hard capsule, 20 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 853081000168100 gabapentin 300 mg capsule, 20 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +18716011000036109 Cyklokapron 500 mg film-coated tablet, 100, bottle 14463 12028011000036109 Cyklokapron 500 mg film-coated tablet, 100 4970011000036109 Cyklokapron 500 mg film-coated tablet 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 26862011000036101 tranexamic acid 500 mg tablet, 100 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +50443011000036108 Glucostix diagnostic strip, 50, bottle 49253011000036100 Glucostix diagnostic strip, 50 48616011000036104 Glucostix diagnostic strip 48416011000036102 Glucostix 48416011000036102 Glucostix 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1077581000168104 Atomoxetine (AN) 10 mg hard capsule, 7, blister pack 234797 1077571000168102 Atomoxetine (AN) 10 mg hard capsule, 7 1077561000168108 Atomoxetine (AN) 10 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +45911000036103 Ramipril (Apo) 5 mg capsule, 30, bottle 179012 43251000036105 Ramipril (Apo) 5 mg capsule, 30 41421000036104 Ramipril (Apo) 5 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +177021000036108 Quetiapine (Pharmacor) 200 mg film-coated tablet, 60, blister pack 204819 175261000036101 Quetiapine (Pharmacor) 200 mg film-coated tablet, 60 172871000036101 Quetiapine (Pharmacor) 200 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +734861000168102 Paracetamol plus Codeine and Calmative (Apohealth) uncoated tablet, 40, blister pack 230135 734851000168104 Paracetamol plus Codeine and Calmative (Apohealth) uncoated tablet, 40 734821000168107 Paracetamol plus Codeine and Calmative (Apohealth) uncoated tablet 734811000168100 Paracetamol plus Codeine and Calmative (Apohealth) 734811000168100 Paracetamol plus Codeine and Calmative (Apohealth) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +81111011000036105 Dizole 50 mg hard capsule, 10, blister pack 162640 80616011000036108 Dizole 50 mg hard capsule, 10 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81676011000036105 fluconazole 50 mg capsule, 10 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +87714011000036102 Galantyl 16 mg modified release capsule, 28, blister pack 157932 87450011000036105 Galantyl 16 mg modified release capsule, 28 87316011000036109 Galantyl 16 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 28249011000036104 galantamine 16 mg modified release capsule, 28 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +670331000168100 Enalapril Maleate (AN) 10 mg uncoated tablet, 30, blister pack 188553 670321000168103 Enalapril Maleate (AN) 10 mg uncoated tablet, 30 670311000168105 Enalapril Maleate (AN) 10 mg uncoated tablet 670271000168105 Enalapril Maleate (AN) 670271000168105 Enalapril Maleate (AN) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +950901000168107 Fiasp Flextouch 100 units/mL injection solution, 3 mL injection device 275394 950891000168108 Fiasp Flextouch 100 units/mL injection solution, 3 mL injection device 950871000168107 Fiasp Flextouch 100 units/mL injection solution, 3 mL injection device 950851000168103 Fiasp Flextouch 950851000168103 Fiasp Flextouch 950881000168105 insulin aspart 100 units/mL injection, 3 mL injection device 950861000168101 insulin aspart 100 units/mL injection, injection device 21699011000036100 insulin aspart +61615011000036106 Nurofen Liquid Capsule 200 mg soft capsule, 4, blister pack 96115 57537011000036104 Nurofen Liquid Capsule 200 mg soft capsule, 4 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63915011000036104 ibuprofen 200 mg capsule, 4 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +1083681000168101 Drixine Adult 0.05% nasal spray, 15 mL, pump pack 26981 74326011000036107 Drixine Adult 0.05% nasal spray, 15 mL 73864011000036106 Drixine Adult 0.05% nasal spray 1631000168103 Drixine Adult 1631000168103 Drixine Adult 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +929078011000036102 Zircol 20 mg film-coated tablet, 28, blister pack 166274 928439011000036102 Zircol 20 mg film-coated tablet, 28 927983011000036100 Zircol 20 mg film-coated tablet 927766011000036101 Zircol 927766011000036101 Zircol 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +949051000168102 Risperidone (WT) 500 microgram film-coated tablet, 30, bottle 127893 949041000168104 Risperidone (WT) 500 microgram film-coated tablet, 30 948991000168101 Risperidone (WT) 500 microgram film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 51484011000036106 risperidone 500 microgram tablet, 30 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +931469011000036104 Paroxetine (SAU) 20 mg film-coated tablet, 28, blister pack 152490 930648011000036107 Paroxetine (SAU) 20 mg film-coated tablet, 28 929990011000036100 Paroxetine (SAU) 20 mg film-coated tablet 929841011000036109 Paroxetine (SAU) 929841011000036109 Paroxetine (SAU) 51564011000036104 paroxetine 20 mg tablet, 28 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +142261000036107 Xyntha 3000 IU (1 x 3000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174841 141711000036105 Xyntha 3000 IU (1 x 3000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 141431000036105 Xyntha 3000 IU (moroctocog alfa 3000 units) powder for injection, 3000 units syringe 21651000168104 Xyntha 3000 IU 21651000168104 Xyntha 3000 IU 141721000036103 moroctocog alfa 3000 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 141441000036100 moroctocog alfa 3000 units injection, syringe 44868011000036107 moroctocog alfa +142261000036107 Xyntha 3000 IU (1 x 3000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174841 141711000036105 Xyntha 3000 IU (1 x 3000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 21651000168104 Xyntha 3000 IU 83556011000036108 Xyntha 141721000036103 moroctocog alfa 3000 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +14251000036100 Quetiapine (GH) 25 mg film-coated tablet, 60, blister pack 179902 7861000036109 Quetiapine (GH) 25 mg film-coated tablet, 60 2321000036109 Quetiapine (GH) 25 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +867391000168104 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 10 x 250 mL bags 241252 867381000168102 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 10 x 250 mL bags 867341000168107 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 250 mL bag 867331000168103 Moxifloxacin (Kabi) 867331000168103 Moxifloxacin (Kabi) 867371000168100 moxifloxacin 400 mg/250 mL injection, 10 x 250 mL bags 33684011000036106 moxifloxacin 400 mg/250 mL injection, bag 21765011000036109 moxifloxacin +60704011000036105 Dimetapp PE Sinus Cold uncoated tablet, 20, blister pack 43458 56662011000036104 Dimetapp PE Sinus Cold uncoated tablet, 20 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63494011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 20 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +922011011000036107 Prohance 2.79 g/10 mL injection solution, 5 x 10 mL syringes 72674 921569011000036106 Prohance 2.79 g/10 mL injection solution, 5 x 10 mL syringes 921092011000036101 Prohance 2.79 g/10 mL injection solution, 10 mL syringe 20611000168106 Prohance 20611000168106 Prohance 922683011000036104 gadoteridol 2.79 g/10 mL injection, 5 x 10 mL syringes 922156011000036101 gadoteridol 2.79 g/10 mL injection, syringe 922035011000036101 gadoteridol +33592011000036109 Doxycycline (GenRx) 100 mg uncoated tablet, 21, blister pack 78598 33330011000036104 Doxycycline (GenRx) 100 mg uncoated tablet, 21 33092011000036106 Doxycycline (GenRx) 100 mg uncoated tablet 3262011000036104 Doxycycline (GenRx) 3262011000036104 Doxycycline (GenRx) 33813011000036104 doxycycline 100 mg tablet, 21 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +865521000168103 Amitriptyline (GXP) 50 mg tablet, 250, bottle 232133 865511000168105 Amitriptyline (GXP) 50 mg tablet, 250 864731000168105 Amitriptyline (GXP) 50 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 862961000168107 amitriptyline hydrochloride 50 mg tablet, 250 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +801081000168105 Actonate 75 mg film-coated tablet, 8, blister pack 163749 801071000168107 Actonate 75 mg film-coated tablet, 8 800961000168105 Actonate 75 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 801061000168101 risedronate sodium 75 mg tablet, 8 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +43950011000036105 Videx 10 mg/mL powder for oral liquid, 1 mL bottle 34306 41442011000036104 Videx 10 mg/mL powder for oral liquid, 1 mL bottle 39974011000036100 Videx 10 mg/mL powder for oral liquid 49411000168100 Videx 49411000168100 Videx 46293011000036101 didanosine 10 mg/mL powder for oral liquid, 1 mL bottle 45058011000036108 didanosine 10 mg/mL powder for oral liquid 21467011000036106 didanosine +73821000036104 Ceftriaxone (Alphapharm) 1 g powder for injection, 5 vials 164920 71571000036103 Ceftriaxone (Alphapharm) 1 g powder for injection, 5 vials 69791000036104 Ceftriaxone (Alphapharm) 1 g powder for injection, vial 69311000036105 Ceftriaxone (Alphapharm) 69311000036105 Ceftriaxone (Alphapharm) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +31331000036106 Nystatin (Terry White Chemists) 100 000 units/mL oral liquid suspension, 24 mL, bottle 171913 28461000036102 Nystatin (Terry White Chemists) 100 000 units/mL oral liquid suspension, 24 mL 27051000036109 Nystatin (Terry White Chemists) 100 000 units/mL oral liquid suspension 26321000036103 Nystatin (Terry White Chemists) 26321000036103 Nystatin (Terry White Chemists) 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +951221000168101 Modafinil (Sandoz) 100 mg uncoated tablet, 60, blister pack 269914 951211000168108 Modafinil (Sandoz) 100 mg uncoated tablet, 60 951161000168100 Modafinil (Sandoz) 100 mg uncoated tablet 951091000168106 Modafinil (Sandoz) 951091000168106 Modafinil (Sandoz) 27978011000036104 modafinil 100 mg tablet, 60 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +17955011000036108 Serenace 5 mg/mL injection solution, 10 x 1 mL ampoules 10263 11262011000036106 Serenace 5 mg/mL injection solution, 10 x 1 mL ampoules 4733011000036109 Serenace 5 mg/mL injection solution, ampoule 3608011000036103 Serenace 3608011000036103 Serenace 26578011000036107 haloperidol 5 mg/mL injection, 10 x 1 mL ampoules 21986011000036107 haloperidol 5 mg/mL injection, ampoule 21443011000036108 haloperidol +17955011000036108 Serenace 5 mg/mL injection solution, 10 x 1 mL ampoules 188367 11262011000036106 Serenace 5 mg/mL injection solution, 10 x 1 mL ampoules 4733011000036109 Serenace 5 mg/mL injection solution, ampoule 3608011000036103 Serenace 3608011000036103 Serenace 26578011000036107 haloperidol 5 mg/mL injection, 10 x 1 mL ampoules 21986011000036107 haloperidol 5 mg/mL injection, ampoule 21443011000036108 haloperidol +77153011000036102 Metamucil Fibrecap 525 mg hard capsule, 160, bottle 118183 76593011000036104 Metamucil Fibrecap 525 mg hard capsule, 160 76051011000036106 Metamucil Fibrecap 525 mg hard capsule 36031000168108 Metamucil Fibrecap 36031000168108 Metamucil Fibrecap 78147011000036102 psyllium husk powder 525 mg capsule, 160 77512011000036106 psyllium husk powder 525 mg capsule 21683011000036102 psyllium husk powder +73781000036108 Famciclovir (Sandoz) 500 mg film-coated tablet, 30, blister pack 162314 71541000036105 Famciclovir (Sandoz) 500 mg film-coated tablet, 30 70101000036109 Famciclovir (Sandoz) 500 mg film-coated tablet 85265011000036105 Famciclovir (Sandoz) 85265011000036105 Famciclovir (Sandoz) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +687651000168106 Xalamol 50/5 eye drops solution, 2.5 mL, bottle 217150 687641000168109 Xalamol 50/5 eye drops solution, 2.5 mL 687631000168100 Xalamol 50/5 eye drops solution 687621000168103 Xalamol 50/5 687621000168103 Xalamol 50/5 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +116481000036109 Rosuvastatin (Chemmart) 10 mg film-coated tablet, 30, blister pack 183066 114781000036106 Rosuvastatin (Chemmart) 10 mg film-coated tablet, 30 113211000036105 Rosuvastatin (Chemmart) 10 mg film-coated tablet 112531000036107 Rosuvastatin (Chemmart) 112531000036107 Rosuvastatin (Chemmart) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +942221000168108 Diamet 500 mg film-coated tablet, 100, blister pack 147645 942211000168101 Diamet 500 mg film-coated tablet, 100 942201000168104 Diamet 500 mg film-coated tablet 942191000168102 Diamet 942191000168102 Diamet 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +19857011000036104 Frusehexal 40 mg uncoated tablet, 100, bottle 64718 13104011000036108 Frusehexal 40 mg uncoated tablet, 100 6388011000036101 Frusehexal 40 mg uncoated tablet 3831011000036107 Frusehexal 3831011000036107 Frusehexal 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +1034781000168104 Atelvia EC Once-a-Week 35 mg enteric tablet, 10, blister pack 166841 1034771000168102 Atelvia EC Once-a-Week 35 mg enteric tablet, 10 1034661000168100 Atelvia EC Once-a-Week 35 mg enteric tablet 1034651000168102 Atelvia EC Once-a-Week 1034651000168102 Atelvia EC Once-a-Week 801881000168103 risedronate sodium 35 mg enteric tablet, 10 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +687671000168102 Vaclovir 500 mg film-coated tablet, 30, bottle 153823 928275011000036101 Vaclovir 500 mg film-coated tablet, 30 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +44192011000036102 Accolate 20 mg film-coated tablet, 14, blister pack 55091 41668011000036108 Accolate 20 mg film-coated tablet, 14 40134011000036103 Accolate 20 mg film-coated tablet 39702011000036108 Accolate 39702011000036108 Accolate 46485011000036103 zafirlukast 20 mg tablet, 14 45181011000036101 zafirlukast 20 mg tablet 44861011000036103 zafirlukast +19517011000036106 Ramace 2.5 mg uncoated tablet, 30, blister pack 56243 12789011000036106 Ramace 2.5 mg uncoated tablet, 30 6083011000036107 Ramace 2.5 mg uncoated tablet 3038011000036104 Ramace 3038011000036104 Ramace 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +833451000168102 Centrum film-coated tablet, 250, bottle 75827 833441000168104 Centrum film-coated tablet, 250 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833431000168108 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 250 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +59852011000036108 Strong Pain Relief (Amcal) uncoated tablet, 96, blister pack 115171 55814011000036100 Strong Pain Relief (Amcal) uncoated tablet, 96 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +926911011000036102 Gelofusine 40 g/L injection solution, 10 x 1 L bags 78103 926305011000036107 Gelofusine 40 g/L injection solution, 10 x 1 L bags 925749011000036104 Gelofusine 40 g/L injection solution, 1 L bag 4101011000036109 Gelofusine 4101011000036109 Gelofusine 927398011000036100 succinylated gelatin 40 g/L injection, 10 x 1 L bags 927039011000036101 succinylated gelatin 40 g/L injection, bag 32620011000036100 succinylated gelatin +933216051000036100 PYtest 37 kBq hard capsule, 1, blister pack 67146 933205521000036105 PYtest 37 kBq hard capsule, 1 933196681000036104 PYtest 37 kBq hard capsule 933193421000036108 PYtest 933193421000036108 PYtest 933205531000036107 urea (14C) 37 kBq capsule, 1 923984011000036109 urea (14C) 37 kBq capsule 923935011000036103 urea (14C) +666381000168105 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent syringe), 1 pack 206196 666371000168107 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent syringe), 1 pack 82016011000036105 Novoseven RT (eptacog alfa (activated) 5 mg) powder for injection, 5 mg vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666361000168101 eptacog alfa (activated) 5 mg injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 82445011000036101 eptacog alfa (activated) 5 mg injection, vial 44889011000036101 eptacog alfa (activated) +666381000168105 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent syringe), 1 pack 206196 666371000168107 Novoseven RT (1 x 5 mg vial, 1 x 5 mL inert diluent syringe), 1 pack 666351000168103 Novoseven RT (inert substance) diluent, 5 mL syringe 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666361000168101 eptacog alfa (activated) 5 mg injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +715361000168100 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g, tube 93076 715351000168102 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g 715341000168104 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream 62091000168100 Clotrimazole Thrush Treatment 6 Day (GenRx) 62091000168100 Clotrimazole Thrush Treatment 6 Day (GenRx) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +14201000036101 Quetiapine (GH) 300 mg film-coated tablet, 60, blister pack 179896 7811000036107 Quetiapine (GH) 300 mg film-coated tablet, 60 2211000036108 Quetiapine (GH) 300 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +751891000168108 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 150, blister pack 196502 751881000168105 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 150 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 672021000168102 metoclopramide hydrochloride 10 mg tablet, 150 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +940301000168105 Escitalopram (GenRx) 10 mg film-coated tablet, 28, blister pack 145632 940291000168109 Escitalopram (GenRx) 10 mg film-coated tablet, 28 940271000168108 Escitalopram (GenRx) 10 mg film-coated tablet 940221000168107 Escitalopram (GenRx) 940221000168107 Escitalopram (GenRx) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +926757011000036106 Risperidone (Sandoz) 500 microgram film-coated tablet, 60, blister pack 147326 926156011000036102 Risperidone (Sandoz) 500 microgram film-coated tablet, 60 925644011000036108 Risperidone (Sandoz) 500 microgram film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +17857011000036105 Onsetron 8 mg film-coated tablet, 10, blister pack 121368 11669011000036103 Onsetron 8 mg film-coated tablet, 10 4579011000036105 Onsetron 8 mg film-coated tablet 7751000168109 Onsetron 7751000168109 Onsetron 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +940281000168106 Maxor 20 mg enteric capsule, 5, bottle 144188 940261000168102 Maxor 20 mg enteric capsule, 5 78181000036100 Maxor 20 mg enteric capsule 55631000168107 Maxor 55631000168107 Maxor 716611000168103 omeprazole 20 mg enteric capsule, 5 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +940281000168106 Maxor 20 mg enteric capsule, 5, bottle 173987 940261000168102 Maxor 20 mg enteric capsule, 5 78181000036100 Maxor 20 mg enteric capsule 55631000168107 Maxor 55631000168107 Maxor 716611000168103 omeprazole 20 mg enteric capsule, 5 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +14161000036105 Trovas 10 mg film-coated tablet, 30, blister pack 179846 7771000036107 Trovas 10 mg film-coated tablet, 30 2241000036109 Trovas 10 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +17921011000036105 Madopar HBS 100/25 modified release capsule, 100, bottle 13743 12001011000036105 Madopar HBS 100/25 modified release capsule, 100 5951011000036108 Madopar HBS 100/25 modified release capsule 48691000168101 Madopar HBS 100/25 48691000168101 Madopar HBS 100/25 32767011000036104 levodopa 100 mg + benserazide 25 mg modified release capsule, 100 32698011000036108 levodopa 100 mg + benserazide 25 mg modified release capsule 21331011000036100 levodopa + benserazide +19033011000036105 Lipex 5 mg film-coated tablet, 30, blister pack 39925 12338011000036106 Lipex 5 mg film-coated tablet, 30 4664011000036109 Lipex 5 mg film-coated tablet 3298011000036103 Lipex 3298011000036103 Lipex 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +983141000168108 Cetirizine (AN) 10 mg film-coated tablet, 60, blister pack 126249 983131000168104 Cetirizine (AN) 10 mg film-coated tablet, 60 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63288011000036107 cetirizine hydrochloride 10 mg tablet, 60 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +747551000168105 Morphine (JN) 100 mg/5 mL injection solution, 10 x 5 mL ampoules 224243 747541000168108 Morphine (JN) 100 mg/5 mL injection solution, 10 x 5 mL ampoules 747511000168109 Morphine (JN) 100 mg/5 mL injection solution, 5 mL ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 706961000168109 morphine hydrochloride trihydrate 100 mg/5 mL injection, 10 x 5 mL ampoules 706911000168106 morphine hydrochloride trihydrate 100 mg/5 mL injection, ampoule 21252011000036100 morphine +659781000168105 Amoxyclav 875/125 (RBX) film-coated tablet, 10, blister pack 202574 659771000168107 Amoxyclav 875/125 (RBX) film-coated tablet, 10 659761000168101 Amoxyclav 875/125 (RBX) film-coated tablet 659751000168103 Amoxyclav 875/125 (RBX) 659751000168103 Amoxyclav 875/125 (RBX) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +19159011000036102 Zantac 150 mg effervescent tablet, 30, tube 45993 12458011000036103 Zantac 150 mg effervescent tablet, 30 4531011000036109 Zantac 150 mg effervescent tablet 3563011000036102 Zantac 3563011000036102 Zantac 27132011000036102 ranitidine 150 mg effervescent tablet, 30 83111000036108 ranitidine 150 mg effervescent tablet 21682011000036109 ranitidine +44751011000036108 Co-Diovan 80/12.5 film-coated tablet, 14, blister pack 96740 42196011000036109 Co-Diovan 80/12.5 film-coated tablet, 14 40385011000036103 Co-Diovan 80/12.5 film-coated tablet 34621000168107 Co-Diovan 80/12.5 34621000168107 Co-Diovan 80/12.5 46956011000036102 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 14 45358011000036107 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +19684011000036105 Aricept 10 mg film-coated tablet, 28, blister pack 60178 12942011000036100 Aricept 10 mg film-coated tablet, 28 6232011000036100 Aricept 10 mg film-coated tablet 2960011000036105 Aricept 2960011000036105 Aricept 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +674741000168102 Serenace 20 mg/2 mL injection solution, 10 x 2 mL ampoules 10260 674731000168106 Serenace 20 mg/2 mL injection solution, 10 x 2 mL ampoules 674711000168101 Serenace 20 mg/2 mL injection solution, 2 mL ampoule 3608011000036103 Serenace 3608011000036103 Serenace 674721000168108 haloperidol 20 mg/2 mL injection, 10 x 2 mL ampoules 674701000168104 haloperidol 20 mg/2 mL injection, ampoule 21443011000036108 haloperidol +1021711000168105 Atelvia 5 mg film-coated tablet, 7, blister pack 163751 1021701000168107 Atelvia 5 mg film-coated tablet, 7 1021691000168107 Atelvia 5 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 800761000168107 risedronate sodium 5 mg tablet, 7 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +69554011000036101 Paroven 250 mg hard capsule, 50, blister pack 60271 67354011000036108 Paroven 250 mg hard capsule, 50 65627011000036106 Paroven 250 mg hard capsule 29071000168102 Paroven 29071000168102 Paroven 71897011000036106 oxerutins 250 mg capsule, 50 70239011000036108 oxerutins 250 mg capsule 69757011000036108 oxerutins +121461000036101 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 20, blister pack 191154 120361000036103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 20 119521000036103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule 119241000036108 Diarrhoea Relief (Pharmacy Action) 119241000036108 Diarrhoea Relief (Pharmacy Action) 87019011000036104 loperamide hydrochloride 2 mg capsule, 20 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +931760011000036100 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan application, 500 mL, bottle 77397 930920011000036109 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan application, 500 mL 930120011000036107 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan application 929913011000036107 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan 929913011000036107 Avagard Antiseptic Hand Rub with Povidone-Iodine and Triclosan 932493011000036101 ethanol 58.73% + iodine 0.1% + triclosan 0.5% application, 500 mL 931887011000036100 ethanol 58.73% + iodine 0.1% + triclosan 0.5% application 931787011000036102 ethanol + iodine + triclosan +18405011000036105 Omepral 20 mg enteric tablet, 30, blister pack 120594 11643011000036107 Omepral 20 mg enteric tablet, 30 5295011000036101 Omepral 20 mg enteric tablet 3379011000036105 Omepral 3379011000036105 Omepral 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +60261011000036100 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 8 sachets 134660 56220011000036108 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 8 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63361011000036105 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 8 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +82481000036104 Hylo-Fresh 0.1% eye drops solution, 10 mL, bottle 192033 80531000036101 Hylo-Fresh 0.1% eye drops solution, 10 mL 78661000036100 Hylo-Fresh 0.1% eye drops solution 55181000168104 Hylo-Fresh 55181000168104 Hylo-Fresh 80541000036106 hyaluronate sodium 0.1% eye drops, 10 mL 78671000036108 hyaluronate sodium 0.1% eye drops 83071000036101 hyaluronate sodium +743301000168105 Jardiamet 5 mg/850 mg film-coated tablet, 60, blister pack 229816 743291000168109 Jardiamet 5 mg/850 mg film-coated tablet, 60 743241000168101 Jardiamet 5 mg/850 mg film-coated tablet 743211000168100 Jardiamet 5 mg/850 mg 743211000168100 Jardiamet 5 mg/850 mg 743281000168106 empagliflozin 5 mg + metformin hydrochloride 850 mg tablet, 60 743231000168105 empagliflozin 5 mg + metformin hydrochloride 850 mg tablet 743221000168107 empagliflozin + metformin +970411000168100 Lypralin 25 mg hard capsule, 60, bottle 235870 970251000168100 Lypralin 25 mg hard capsule, 60 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +44020011000036103 Vincristine Sulfate (DBL) 2 mg/2 mL injection solution, 5 x 2 mL vials 47249 41509011000036107 Vincristine Sulfate (DBL) 2 mg/2 mL injection solution, 5 x 2 mL vials 40026011000036103 Vincristine Sulfate (DBL) 2 mg/2 mL injection solution, 2 mL vial 3672011000036109 Vincristine Sulfate (DBL) 3672011000036109 Vincristine Sulfate (DBL) 46366011000036103 vincristine sulfate 2 mg/2 mL injection, 5 x 2 mL vials 45109011000036101 vincristine sulfate 2 mg/2 mL injection, vial 21749011000036104 vincristine +18624011000036102 Lamidus 50 mg tablet, 56, blister pack 116730 11539011000036100 Lamidus 50 mg tablet, 56 5361011000036109 Lamidus 50 mg tablet 3897011000036105 Lamidus 3897011000036105 Lamidus 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +818281000168106 Advagraf XL 500 microgram modified release capsule, 30, blister pack 269212 818271000168108 Advagraf XL 500 microgram modified release capsule, 30 818261000168102 Advagraf XL 500 microgram modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 922599011000036109 tacrolimus 500 microgram modified release capsule, 30 922098011000036104 tacrolimus 500 microgram modified release capsule 21380011000036104 tacrolimus +34819011000036104 Ritalin LA 40 mg modified release capsule, 30, bottle 82959 34394011000036101 Ritalin LA 40 mg modified release capsule, 30 34069011000036101 Ritalin LA 40 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 35238011000036101 methylphenidate hydrochloride 40 mg modified release capsule, 30 34909011000036107 methylphenidate hydrochloride 40 mg modified release capsule 21277011000036101 methylphenidate +848341000168104 Alinivir 800 mg uncoated tablet, 35, blister pack 202877 848331000168108 Alinivir 800 mg uncoated tablet, 35 848321000168105 Alinivir 800 mg uncoated tablet 848211000168106 Alinivir 848211000168106 Alinivir 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +84326011000036108 Pantoprazole (Chemmart) 40 mg enteric tablet, 30, blister pack 156335 84019011000036105 Pantoprazole (Chemmart) 40 mg enteric tablet, 30 83648011000036100 Pantoprazole (Chemmart) 40 mg enteric tablet 83551011000036103 Pantoprazole (Chemmart) 83551011000036103 Pantoprazole (Chemmart) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +84326011000036108 Pantoprazole (Chemmart) 40 mg enteric tablet, 30, blister pack 213718 84019011000036105 Pantoprazole (Chemmart) 40 mg enteric tablet, 30 83648011000036100 Pantoprazole (Chemmart) 40 mg enteric tablet 83551011000036103 Pantoprazole (Chemmart) 83551011000036103 Pantoprazole (Chemmart) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +18163011000036106 Sinequan 25 mg hard capsule, 50, blister pack 10768 11382011000036101 Sinequan 25 mg hard capsule, 50 5359011000036103 Sinequan 25 mg hard capsule 4176011000036105 Sinequan 4176011000036105 Sinequan 27463011000036100 doxepin 25 mg capsule, 50 22810011000036100 doxepin 25 mg capsule 21583011000036105 doxepin +1083841000168107 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 100 mL, bottle 38572 1083831000168103 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 100 mL 1083781000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 63470011000036103 benzydamine hydrochloride 0.15% mouthwash, 100 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +704851000168105 Noxicid 40 mg enteric capsule, 30, bottle 161344 704241000168109 Noxicid 40 mg enteric capsule, 30 704231000168100 Noxicid 40 mg enteric capsule 704221000168103 Noxicid 704221000168103 Noxicid 682531000168102 esomeprazole 40 mg enteric capsule, 30 682511000168107 esomeprazole 40 mg enteric capsule 21697011000036107 esomeprazole +33545011000036106 Gabapentin (GenRx) 600 mg film-coated tablet, 100, bottle 131471 33284011000036108 Gabapentin (GenRx) 600 mg film-coated tablet, 100 33046011000036101 Gabapentin (GenRx) 600 mg film-coated tablet 3416011000036102 Gabapentin (GenRx) 3416011000036102 Gabapentin (GenRx) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +666131000168107 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 2, blister pack 196561 666121000168109 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 2 137741000036101 Rabeprazole Sodium (DRLA) 10 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 666111000168102 rabeprazole sodium 10 mg enteric tablet, 2 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +888851000168102 Bosentan (Astron) 62.5 mg film-coated tablet, 60, bottle 235890 888841000168104 Bosentan (Astron) 62.5 mg film-coated tablet, 60 888831000168108 Bosentan (Astron) 62.5 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +933096011000036106 Oncotaxel 80 mg/4 mL concentrated injection, 4 mL vial 167645 932903011000036101 Oncotaxel 80 mg/4 mL concentrated injection, 4 mL vial 932757011000036109 Oncotaxel 80 mg/4 mL concentrated injection, 4 mL vial 932702011000036101 Oncotaxel 932702011000036101 Oncotaxel 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +764651000168105 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet, 28, blister pack 214504 764641000168108 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet, 28 764611000168109 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +704811000168109 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, 30 sachets 220585 704801000168106 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, 30 sachets 704791000168105 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, sachet 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +135811000036100 Famciclovir (Auro) 250 mg film-coated tablet, 56, blister pack 195176 135231000036105 Famciclovir (Auro) 250 mg film-coated tablet, 56 134391000036103 Famciclovir (Auro) 250 mg film-coated tablet 112681000036107 Famciclovir (Auro) 112681000036107 Famciclovir (Auro) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +50253011000036107 Cutinova Hydro (66047443) 10 cm x 10 cm dressing, 5, carton 49371011000036109 Cutinova Hydro (66047443) 10 cm x 10 cm dressing, 5 48762011000036108 Cutinova Hydro (66047443) 10 cm x 10 cm dressing 61231000168102 Cutinova Hydro (66047443) 61231000168102 Cutinova Hydro (66047443) 51345011000036106 dressing hydroactive superficial wound moderate exudate 10 cm x 10 cm dressing, 5 50869011000036109 dressing hydroactive superficial wound moderate exudate 10 cm x 10 cm dressing 50754011000036102 dressing hydroactive superficial wound moderate exudate +1008921000168102 Rivastigmine (Apotex) 1.5 mg hard capsule, 14, blister pack 160563 1008911000168109 Rivastigmine (Apotex) 1.5 mg hard capsule, 14 1008901000168106 Rivastigmine (Apotex) 1.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002621000168109 rivastigmine 1.5 mg capsule, 14 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +52754011000036105 Movalis 7.5 mg hard capsule, 30, blister pack 142228 52566011000036106 Movalis 7.5 mg hard capsule, 30 52420011000036105 Movalis 7.5 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +61131011000036104 Throat Lozenge (Guardian) raspberry lozenge, 16, blister pack 72554 57074011000036109 Throat Lozenge (Guardian) raspberry lozenge, 16 54184011000036104 Throat Lozenge (Guardian) raspberry lozenge 38571000168102 Throat Lozenge (Guardian) 38571000168102 Throat Lozenge (Guardian) 63728011000036107 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 62061011000036104 lidocaine (lignocaine) hydrochloride 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +948821000168106 Invast 20 mg film-coated tablet, 30, blister pack 100256 945991000168109 Invast 20 mg film-coated tablet, 30 945981000168106 Invast 20 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1107441000168107 Delucon 100 mg film-coated tablet, 60, blister pack 172843 1107431000168103 Delucon 100 mg film-coated tablet, 60 1631000036105 Delucon 100 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +82379011000036106 Osteoeze Tabsule Forte (Herron) 1 g film-coated tablet, 100, jar 150951 82168011000036104 Osteoeze Tabsule Forte (Herron) 1 g film-coated tablet, 100 82023011000036108 Osteoeze Tabsule Forte (Herron) 1 g film-coated tablet 46761000168101 Osteoeze Tabsule Forte (Herron) 46761000168101 Osteoeze Tabsule Forte (Herron) 82542011000036102 glucosamine hydrochloride 1 g tablet, 100 82447011000036106 glucosamine hydrochloride 1 g tablet 69813011000036107 glucosamine +751811000168104 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 50, blister pack 196502 751801000168102 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 50 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 671911000168100 metoclopramide hydrochloride 10 mg tablet, 50 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +820451000168109 Levetiracetam (Juno) 1 g/100 mL injection solution, 100 mL, bag 224489 820441000168107 Levetiracetam (Juno) 1 g/100 mL injection solution, 100 mL 820421000168101 Levetiracetam (Juno) 1 g/100 mL injection solution 779491000168109 Levetiracetam (Juno) 779491000168109 Levetiracetam (Juno) 820431000168103 levetiracetam 1 g/100 mL injection, 100 mL 820411000168108 levetiracetam 1 g/100 mL injection 21766011000036102 levetiracetam +82863011000036104 Stelara 45 mg/0.5 mL injection solution, 0.5 mL vial 149549 82770011000036101 Stelara 45 mg/0.5 mL injection solution, 0.5 mL vial 82680011000036100 Stelara 45 mg/0.5 mL injection solution, 0.5 mL vial 82656011000036107 Stelara 82656011000036107 Stelara 82991011000036107 ustekinumab 45 mg/0.5 mL injection, 0.5 mL vial 82928011000036108 ustekinumab 45 mg/0.5 mL injection, vial 82917011000036103 ustekinumab +68828011000036106 Calcium Gluconate (Orion) 2.5% gel, 50 g, tube 11320 66602011000036104 Calcium Gluconate (Orion) 2.5% gel, 50 g 65244011000036104 Calcium Gluconate (Orion) 2.5% gel 65124011000036104 Calcium Gluconate (Orion) 65124011000036104 Calcium Gluconate (Orion) 71324011000036106 calcium gluconate monohydrate 2.5% gel, 50 g 69950011000036100 calcium gluconate monohydrate 2.5% gel 69763011000036108 calcium gluconate monohydrate +726321000168106 Epirubicin Hydrochloride (Kabi) 10 mg/5 mL injection solution, 5 mL vial 175841 726311000168104 Epirubicin Hydrochloride (Kabi) 10 mg/5 mL injection solution, 5 mL vial 726301000168102 Epirubicin Hydrochloride (Kabi) 10 mg/5 mL injection solution, 5 mL vial 78081000036104 Epirubicin Hydrochloride (Kabi) 78081000036104 Epirubicin Hydrochloride (Kabi) 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +966141000168102 Claraderm 0.05% cream, 5 g, tube 18412 966131000168106 Claraderm 0.05% cream, 5 g 966061000168102 Claraderm 0.05% cream 966031000168105 Claraderm 966031000168105 Claraderm 966121000168108 alclometasone dipropionate 0.05% cream, 5 g 966051000168104 alclometasone dipropionate 0.05% cream 966041000168101 alclometasone dipropionate +20744011000036108 Movox 100 mg film-coated tablet, 30, blister pack 90059 13913011000036105 Movox 100 mg film-coated tablet, 30 7199011000036101 Movox 100 mg film-coated tablet 3073011000036106 Movox 3073011000036106 Movox 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +106131000036102 Coloxyl with Senna film-coated tablet, 90, bottle 59118 106031000036101 Coloxyl with Senna film-coated tablet, 90 105911000036104 Coloxyl with Senna film-coated tablet 3208011000036100 Coloxyl with Senna 3208011000036100 Coloxyl with Senna 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +665811000168103 Pedoz Anti-Fungal dusting powder, 50 g, bottle 14840 665801000168101 Pedoz Anti-Fungal dusting powder, 50 g 665781000168100 Pedoz Anti-Fungal dusting powder 664451000168104 Pedoz Anti-Fungal 664451000168104 Pedoz Anti-Fungal 665791000168102 3,4,5,6-tetrabromo-ortho-cresol 1% + zinc undecenoate 5% + undecenoic acid 1% + zinc oxide 5% dusting powder, 50 g 665771000168103 3,4,5,6-tetrabromo-ortho-cresol 1% + zinc undecenoate 5% + undecenoic acid 1% + zinc oxide 5% dusting powder 664561000168101 3,4,5,6-tetrabromo-ortho-cresol + zinc undecenoate + undecenoic acid + zinc oxide +86146011000036108 Famciclovir (Sandoz) 250 mg film-coated tablet, 14, blister pack 162313 85754011000036105 Famciclovir (Sandoz) 250 mg film-coated tablet, 14 85376011000036104 Famciclovir (Sandoz) 250 mg film-coated tablet 85265011000036105 Famciclovir (Sandoz) 85265011000036105 Famciclovir (Sandoz) 86449011000036103 famciclovir 250 mg tablet, 14 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +666541000168108 Lamotrigine (Aspen) 5 mg tablet, 56, blister pack 99030 666531000168104 Lamotrigine (Aspen) 5 mg tablet, 56 666521000168102 Lamotrigine (Aspen) 5 mg tablet 83951000036105 Lamotrigine (Aspen) 83951000036105 Lamotrigine (Aspen) 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +925172011000036101 Reflux Relief Extra Strength (Pharmacy Health) 300 mg film-coated tablet, 14, blister pack 151866 924709011000036101 Reflux Relief Extra Strength (Pharmacy Health) 300 mg film-coated tablet, 14 924427011000036105 Reflux Relief Extra Strength (Pharmacy Health) 300 mg film-coated tablet 62821000168106 Reflux Relief Extra Strength (Pharmacy Health) 62821000168106 Reflux Relief Extra Strength (Pharmacy Health) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +20185011000036106 Fluoxetine (GenRx) 20 mg hard capsule, 28, blister pack 73882 13408011000036100 Fluoxetine (GenRx) 20 mg hard capsule, 28 6693011000036102 Fluoxetine (GenRx) 20 mg hard capsule 4127011000036107 Fluoxetine (GenRx) 4127011000036107 Fluoxetine (GenRx) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +738561000168109 Clopixol Acuphase 50 mg/mL injection solution, 5 x 1 mL ampoules 45080 738551000168107 Clopixol Acuphase 50 mg/mL injection solution, 5 x 1 mL ampoules 40014011000036103 Clopixol Acuphase 50 mg/mL injection solution, ampoule 971000168105 Clopixol Acuphase 971000168105 Clopixol Acuphase 738541000168105 zuclopenthixol acetate 50 mg/mL injection, 5 x 1 mL ampoules 45090011000036101 zuclopenthixol acetate 50 mg/mL injection, ampoule 44905011000036109 zuclopenthixol acetate +1107281000168101 Olumiant 4 mg film-coated tablet, 7, blister pack 277917 1107271000168104 Olumiant 4 mg film-coated tablet, 7 1107251000168108 Olumiant 4 mg film-coated tablet 1107071000168109 Olumiant 1107071000168109 Olumiant 1107261000168105 baricitinib 4 mg tablet, 7 1107241000168106 baricitinib 4 mg tablet 1107081000168107 baricitinib +923861011000036103 Paracetamol Tabsule (Herron) Gold 500 mg film-coated tablet, 24, blister pack 162205 923407011000036101 Paracetamol Tabsule (Herron) Gold 500 mg film-coated tablet, 24 923090011000036109 Paracetamol Tabsule (Herron) Gold 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +77239011000036101 Ozidal 500 microgram film-coated tablet, 10, blister pack 148964 76655011000036103 Ozidal 500 microgram film-coated tablet, 10 76093011000036101 Ozidal 500 microgram film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 78192011000036105 risperidone 500 microgram tablet, 10 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +933215961000036107 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 250 mL vials 63964 933205491000036107 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 250 mL vials 933196591000036103 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 250 mL vial 8561000168103 Iomeron-350 8561000168103 Iomeron-350 933205501000036100 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 10 x 250 mL vials 933196601000036105 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 250 mL vial 931793011000036105 iomeprol +68886011000036101 Zonegran 50 mg capsule, 56, blister pack 125870 66681011000036109 Zonegran 50 mg capsule, 56 65406011000036101 Zonegran 50 mg capsule 65180011000036104 Zonegran 65180011000036104 Zonegran 71384011000036101 zonisamide 50 mg capsule, 56 69986011000036107 zonisamide 50 mg capsule 69755011000036103 zonisamide +116801000036101 Zopral ODT 30 mg orally disintegrating tablet, 28, bottle 187428 115071000036107 Zopral ODT 30 mg orally disintegrating tablet, 28 112891000036105 Zopral ODT 30 mg orally disintegrating tablet 14811000168105 Zopral ODT 14811000168105 Zopral ODT 79819011000036106 lansoprazole 30 mg orally disintegrating tablet, 28 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +756551000168109 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, 8 sachets 220585 756541000168107 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, 8 sachets 704791000168105 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, sachet 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 669051000168107 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +86821000036103 Tisseel VH S/D solution, 2 mL, dual chamber syringe 147141 86451000036107 Tisseel VH S/D solution, 2 mL 85981000036104 Tisseel VH S/D solution 85961000036109 Tisseel VH S/D 85961000036109 Tisseel VH S/D 86461000036105 aprotinin 2250 KI units/mL + factor XIII 1.2 units/mL + fibrinogen 72 mg/mL + human thrombin 400 units/mL + calcium chloride dihydrate 3.96 mg (calcium 36 micromoles)/mL solution, 2 mL 85991000036102 aprotinin 2250 KI units/mL + factor XIII 1.2 units/mL + fibrinogen 72 mg/mL + human thrombin 400 units/mL + calcium chloride dihydrate 3.96 mg (calcium 36 micromoles)/mL solution 91891000036106 aprotinin + factor XIII + fibrinogen + human thrombin + calcium chloride dihydrate +677301000168106 Parapane 500 mg uncoated tablet, 100, blister pack 155493 677291000168105 Parapane 500 mg uncoated tablet, 100 677281000168107 Parapane 500 mg uncoated tablet 677271000168109 Parapane 677271000168109 Parapane 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +717731000168102 Probitor 20 mg enteric capsule, 30, bottle 78186 717711000168107 Probitor 20 mg enteric capsule, 30 715901000168102 Probitor 20 mg enteric capsule 2966011000036108 Probitor 2966011000036108 Probitor 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +666611000168105 Salbutamol (Actavis) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135467 666601000168107 Salbutamol (Actavis) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 666591000168100 Salbutamol (Actavis) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 666581000168103 Salbutamol (Actavis) 666581000168103 Salbutamol (Actavis) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +73941000036102 Quetiapine (GA) 300 mg film-coated tablet, 60, blister pack 176718 71631000036104 Quetiapine (GA) 300 mg film-coated tablet, 60 69611000036102 Quetiapine (GA) 300 mg film-coated tablet 69421000036107 Quetiapine (GA) 69421000036107 Quetiapine (GA) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +81122011000036109 Panvax H1N1 Vaccine 2009 300 microgram/10 mL injection suspension, 50 x 10 mL vials 163897 80627011000036102 Panvax H1N1 Vaccine 2009 300 microgram/10 mL injection suspension, 50 x 10 mL vials 363941000168104 Panvax H1N1 Vaccine 2009 300 microgram/10 mL injection suspension, 10 mL vial 24411000168104 Panvax H1N1 Vaccine 2009 24411000168104 Panvax H1N1 Vaccine 2009 81686011000036103 influenza multi-dose vaccine pandemic 2009 injection, 50 x 10 mL vials 363681000168102 influenza multi-dose vaccine pandemic 2009 injection, 10 mL vial 81214011000036106 influenza vaccine pandemic 2009 +920734011000036108 Memantine (Apo) 10 mg film-coated tablet, 56, bottle 159576 920422011000036106 Memantine (Apo) 10 mg film-coated tablet, 56 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +19943011000036100 Frusid 40 mg uncoated tablet, 100, bottle 67191 13186011000036104 Frusid 40 mg uncoated tablet, 100 6469011000036103 Frusid 40 mg uncoated tablet 3598011000036105 Frusid 3598011000036105 Frusid 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +683171000168102 Indomethacin (Agila) 1 mg powder for injection, 3 vials 208055 683161000168108 Indomethacin (Agila) 1 mg powder for injection, 3 vials 683151000168106 Indomethacin (Agila) 1 mg powder for injection, vial 683141000168109 Indomethacin (Agila) 683141000168109 Indomethacin (Agila) 38548011000036104 indometacin 1 mg injection, 3 vials 37828011000036105 indometacin 1 mg injection, vial 21301011000036107 indometacin +1038971000168107 Atorvastatin (Actavis) 10 mg film-coated tablet, 10, blister pack 185027 1038961000168101 Atorvastatin (Actavis) 10 mg film-coated tablet, 10 1038951000168103 Atorvastatin (Actavis) 10 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +11831000036109 Olanzapine (Sandoz) 7.5 mg film-coated tablet, 28, blister pack 148474 6571000036101 Olanzapine (Sandoz) 7.5 mg film-coated tablet, 28 3721000036102 Olanzapine (Sandoz) 7.5 mg film-coated tablet 1151000036106 Olanzapine (Sandoz) 1151000036106 Olanzapine (Sandoz) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +951061000168104 Estamane 25 mg film-coated tablet, 30, blister pack 281353 951051000168101 Estamane 25 mg film-coated tablet, 30 951021000168109 Estamane 25 mg film-coated tablet 951011000168102 Estamane 951011000168102 Estamane 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +983461000168100 Arfam 20 mg film-coated tablet, 60, blister pack 93764 983451000168102 Arfam 20 mg film-coated tablet, 60 983441000168104 Arfam 20 mg film-coated tablet 983401000168101 Arfam 983401000168101 Arfam 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +926688011000036105 Lisoril 5 mg uncoated tablet, 56, blister pack 106495 926072011000036108 Lisoril 5 mg uncoated tablet, 56 925620011000036100 Lisoril 5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 83481011000036104 lisinopril 5 mg tablet, 56 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +50651011000036108 Strattera 80 mg hard capsule, 28, blister pack 146333 49675011000036104 Strattera 80 mg hard capsule, 28 48814011000036100 Strattera 80 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +830801000168106 Imatinib (DRLA) 400 mg hard capsule, 30, blister pack 261057 830791000168105 Imatinib (DRLA) 400 mg hard capsule, 30 830771000168109 Imatinib (DRLA) 400 mg hard capsule 830751000168100 Imatinib (DRLA) 830751000168100 Imatinib (DRLA) 830781000168107 imatinib 400 mg capsule, 30 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +1004351000168103 Tenofovir (Apo) 300 mg coated tablet, 30, blister pack 247323 1004331000168109 Tenofovir (Apo) 300 mg coated tablet, 30 1004321000168106 Tenofovir (Apo) 300 mg coated tablet 1004311000168104 Tenofovir (Apo) 1004311000168104 Tenofovir (Apo) 28009011000036104 tenofovir disoproxil fumarate 300 mg tablet, 30 23332011000036101 tenofovir disoproxil fumarate 300 mg tablet 851521000168106 tenofovir disoproxil +19793011000036100 Karvea 75 mg uncoated tablet, 30, blister pack 63088 13051011000036106 Karvea 75 mg uncoated tablet, 30 6335011000036102 Karvea 75 mg uncoated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1000741000168107 Capecitabine (Apo) 150 mg film-coated tablet, 60, blister pack 202737 1000731000168103 Capecitabine (Apo) 150 mg film-coated tablet, 60 1000721000168101 Capecitabine (Apo) 150 mg film-coated tablet 732291000168102 Capecitabine (Apo) 732291000168102 Capecitabine (Apo) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +948891000168108 Diltiazem CD (Sanofi) 360 mg modified release capsule, 10, bottle 139401 948881000168105 Diltiazem CD (Sanofi) 360 mg modified release capsule, 10 948841000168100 Diltiazem CD (Sanofi) 360 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 46719011000036107 diltiazem hydrochloride 360 mg modified release capsule, 10 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +19476011000036107 Rulide D 50 mg dispersible tablet, 10, blister pack 54811 12753011000036101 Rulide D 50 mg dispersible tablet, 10 6047011000036107 Rulide D 50 mg dispersible tablet 55421000168106 Rulide D 55421000168106 Rulide D 27333011000036102 roxithromycin 50 mg dispersible tablet, 10 22686011000036109 roxithromycin 50 mg dispersible tablet 21724011000036103 roxithromycin +876161000168103 Airomir 100 microgram/actuation pressurised inhalation, 100 actuations, metered dose aerosol can 64799 876151000168100 Airomir 100 microgram/actuation pressurised inhalation, 100 actuations 6390011000036102 Airomir 100 microgram/actuation pressurised inhalation, actuation 49511000168104 Airomir 49511000168104 Airomir 876141000168102 salbutamol 100 microgram/actuation pressurised inhalation, 100 actuations 22940011000036103 salbutamol 100 microgram/actuation pressurised inhalation, actuation 21493011000036100 salbutamol +819971000168107 Ramipril (AN) 10 mg hard capsule, 30, blister pack 203711 817911000168108 Ramipril (AN) 10 mg hard capsule, 30 817901000168105 Ramipril (AN) 10 mg hard capsule 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +18992011000036103 Doryx 50 mg modified release capsule, 25, bottle 29728 12299011000036100 Doryx 50 mg modified release capsule, 25 5210011000036106 Doryx 50 mg modified release capsule 4100011000036102 Doryx 4100011000036102 Doryx 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +660101000168102 Valaciclovir (AN) 500 mg film-coated tablet, 30, bottle 173292 660001000168101 Valaciclovir (AN) 500 mg film-coated tablet, 30 659951000168100 Valaciclovir (AN) 500 mg film-coated tablet 659941000168102 Valaciclovir (AN) 659941000168102 Valaciclovir (AN) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +37428011000036102 Ativan 2.5 mg uncoated tablet, 50, blister pack 10388 36627011000036100 Ativan 2.5 mg uncoated tablet, 50 36088011000036104 Ativan 2.5 mg uncoated tablet 35865011000036105 Ativan 35865011000036105 Ativan 38547011000036100 lorazepam 2.5 mg tablet, 50 37827011000036109 lorazepam 2.5 mg tablet 37711011000036105 lorazepam +44239011000036102 Ergometrine Maleate (DBL) 500 microgram/mL injection solution, 5 x 1 mL ampoules 58866 41711011000036106 Ergometrine Maleate (DBL) 500 microgram/mL injection solution, 5 x 1 mL ampoules 40157011000036105 Ergometrine Maleate (DBL) 500 microgram/mL injection solution, ampoule 39748011000036101 Ergometrine Maleate (DBL) 39748011000036101 Ergometrine Maleate (DBL) 46523011000036104 ergometrine maleate 500 microgram/mL injection, 5 x 1 mL ampoules 45199011000036103 ergometrine maleate 500 microgram/mL injection, ampoule 44885011000036103 ergometrine +815631000168102 Deflectum 5/5 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200819 815621000168100 Deflectum 5/5 (perindopril arginine/amlodipine) uncoated tablet, 30 815591000168102 Deflectum 5/5 (perindopril arginine/amlodipine) uncoated tablet 815471000168102 Deflectum 5/5 (perindopril arginine/amlodipine) 815471000168102 Deflectum 5/5 (perindopril arginine/amlodipine) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +44284011000036105 Acular 0.5% eye drops solution, 5 mL, bottle 63539 41755011000036101 Acular 0.5% eye drops solution, 5 mL 40182011000036101 Acular 0.5% eye drops solution 39700011000036109 Acular 39700011000036109 Acular 46562011000036100 ketorolac trometamol 0.5% eye drops, 5 mL 45218011000036109 ketorolac trometamol 0.5% eye drops 44879011000036107 ketorolac +18917011000036100 Genoptic 0.3% eye drops solution, 5 mL, bottle 23215 12225011000036109 Genoptic 0.3% eye drops solution, 5 mL 5592011000036103 Genoptic 0.3% eye drops solution 3664011000036106 Genoptic 3664011000036106 Genoptic 26994011000036102 gentamicin 0.3% eye drops, 5 mL 22367011000036101 gentamicin 0.3% eye drops 21397011000036102 gentamicin +176781000036105 Cadivast 5/10 film-coated tablet, 30, blister pack 199221 174931000036102 Cadivast 5/10 film-coated tablet, 30 173361000036105 Cadivast 5/10 film-coated tablet 24511000168103 Cadivast 5/10 24511000168103 Cadivast 5/10 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +131951000036105 Fexorelief 120 mg film-coated tablet, 30, blister pack 233591 128221000036102 Fexorelief 120 mg film-coated tablet, 30 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +131951000036105 Fexorelief 120 mg film-coated tablet, 30, blister pack 186664 128221000036102 Fexorelief 120 mg film-coated tablet, 30 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +73981000036106 Ionil-T Scalp Cleanser with Owentar shampoo, 200 mL, bottle 25283 72001000036107 Ionil-T Scalp Cleanser with Owentar shampoo, 200 mL 70051000036109 Ionil-T Scalp Cleanser with Owentar shampoo 46121000168105 Ionil-T Scalp Cleanser with Owentar 46121000168105 Ionil-T Scalp Cleanser with Owentar 72021000036102 coal tar solution 5% + salicylic acid 2% shampoo, 200 mL 70061000036107 coal tar solution 5% + salicylic acid 2% shampoo 74631000036101 coal tar solution + salicylic acid +69070011000036106 Mylanta 2go Antacid Dual Action chewable tablet, 4, blister pack 14378 66872011000036101 Mylanta 2go Antacid Dual Action chewable tablet, 4 65467011000036104 Mylanta 2go Antacid Dual Action chewable tablet 64987011000036109 Mylanta 2go Antacid Dual Action 64987011000036109 Mylanta 2go Antacid Dual Action 71477011000036105 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet, 4 70025011000036103 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet 69870011000036107 alginic acid + magaldrate + bicarbonate +34813011000036102 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 78982 34388011000036107 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 75 mL 34066011000036105 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 35232011000036104 cefalexin 250 mg/5 mL powder for oral liquid, 75 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +20427011000036107 Mobic 7.5 mg hard capsule, 30, blister pack 77698 13632011000036105 Mobic 7.5 mg hard capsule, 30 6915011000036101 Mobic 7.5 mg hard capsule 3572011000036102 Mobic 3572011000036102 Mobic 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +11871000036106 Venlexor XR 150 mg modified release capsule, 28, blister pack 151874 6591000036102 Venlexor XR 150 mg modified release capsule, 28 2271000036102 Venlexor XR 150 mg modified release capsule 14871000168102 Venlexor XR 14871000168102 Venlexor XR 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +1038891000168101 Atorvastatin (Actavis) 20 mg film-coated tablet, 30, blister pack 185036 1038881000168104 Atorvastatin (Actavis) 20 mg film-coated tablet, 30 1038851000168106 Atorvastatin (Actavis) 20 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +933216211000036107 Actiq 400 microgram lozenge on handle, 30, blister pack 91600 933205851000036101 Actiq 400 microgram lozenge on handle, 30 34076011000036100 Actiq 400 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 933205861000036103 fentanyl 400 microgram lozenge on handle, 30 34911011000036105 fentanyl 400 microgram lozenge on handle 21258011000036102 fentanyl +801401000168108 Actonate Once-a-Month 150 mg film-coated tablet, 3, blister pack 163750 801391000168106 Actonate Once-a-Month 150 mg film-coated tablet, 3 801341000168103 Actonate Once-a-Month 150 mg film-coated tablet 801331000168107 Actonate Once-a-Month 801331000168107 Actonate Once-a-Month 78196011000036109 risedronate sodium 150 mg tablet, 3 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +13881000036109 Venlafaxine XR (Terry White Chemists) 75 mg modified release capsule, 28, blister pack 177460 7541000036105 Venlafaxine XR (Terry White Chemists) 75 mg modified release capsule, 28 1311000036109 Venlafaxine XR (Terry White Chemists) 75 mg modified release capsule 22511000168109 Venlafaxine XR (Terry White Chemists) 22511000168109 Venlafaxine XR (Terry White Chemists) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +61212011000036100 Strepfen Intensive cherry 8.75 mg lozenge, 24, blister pack 76192 57148011000036108 Strepfen Intensive cherry 8.75 mg lozenge, 24 54217011000036109 Strepfen Intensive cherry 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63909011000036104 flurbiprofen 8.75 mg lozenge, 24 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +20444011000036103 Aranesp 60 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 77956 13647011000036106 Aranesp 60 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 6930011000036100 Aranesp 60 microgram/0.3 mL injection solution, 0.3 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27857011000036109 darbepoetin alfa 60 microgram/0.3 mL injection, 4 x 0.3 mL syringes 23185011000036105 darbepoetin alfa 60 microgram/0.3 mL injection, syringe 21234011000036105 darbepoetin alfa +68811011000036109 QV Skin Lotion, 500 mL, bottle 10630 66532011000036103 QV Skin Lotion, 500 mL 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71264011000036109 glycerol 5% + white soft paraffin 5% lotion, 500 mL 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +1081991000168105 Zirizine 10 mg film-coated tablet, 10, blister pack 286354 1081981000168107 Zirizine 10 mg film-coated tablet, 10 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +69565011000036108 Vicks Vaporub Vaporizing ointment, 50 g, jar 61019 67365011000036101 Vicks Vaporub Vaporizing ointment, 50 g 65631011000036101 Vicks Vaporub Vaporizing ointment 23431000168106 Vicks Vaporub Vaporizing 23431000168106 Vicks Vaporub Vaporizing 71905011000036106 menthol 2.82% + camphor 5.26% + eucalyptus oil 1.33% ointment, 50 g 70242011000036104 menthol 2.82% + camphor 5.26% + eucalyptus oil 1.33% ointment 69806011000036104 menthol + camphor + eucalyptus oil +931461000168108 Centevo 75/18.75/200 mg film-coated tablet, 175, bottle 238853 931451000168106 Centevo 75/18.75/200 mg film-coated tablet, 175 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931441000168109 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 175 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +37731000036101 Respaz 3 mg film-coated tablet, 60, blister pack 165541 34021000036109 Respaz 3 mg film-coated tablet, 60 32531000036109 Respaz 3 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +74141000036103 Risedronate (Apo) 150 mg film-coated tablet, 1, blister pack 181970 71791000036106 Risedronate (Apo) 150 mg film-coated tablet, 1 69501000036103 Risedronate (Apo) 150 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +37336011000036107 Tambocor 150 mg/15 mL injection solution, 5 x 15 mL ampoules 10592 36634011000036108 Tambocor 150 mg/15 mL injection solution, 5 x 15 mL ampoules 36074011000036102 Tambocor 150 mg/15 mL injection solution, 15 mL ampoule 3960011000036102 Tambocor 3960011000036102 Tambocor 38554011000036109 flecainide acetate 150 mg/15 mL injection, 5 x 15 mL ampoules 37833011000036103 flecainide acetate 150 mg/15 mL injection, ampoule 21457011000036102 flecainide +848021000168107 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack, composite pack 222684 848011000168100 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack 847881000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet 692001000168103 Alendronate Plus D3 and Calcium (Sandoz) 691961000168107 Calcium (Sandoz) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +848021000168107 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack, composite pack 222684 848011000168100 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Calcium tablets), 1 pack 718911000168109 Alendronate Plus D3 70 mg/140 microgram (Sandoz) uncoated tablet 692001000168103 Alendronate Plus D3 and Calcium (Sandoz) 718901000168106 Alendronate Plus D3 70 mg/140 microgram (Sandoz) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +19960011000036103 Zavedos 5 mg/5 mL injection solution, 5 mL vial 67397 13203011000036109 Zavedos 5 mg/5 mL injection solution, 5 mL vial 6485011000036102 Zavedos 5 mg/5 mL injection solution, 5 mL vial 4217011000036101 Zavedos 4217011000036101 Zavedos 27615011000036101 idarubicin hydrochloride 5 mg/5 mL injection, 5 mL vial 22953011000036109 idarubicin hydrochloride 5 mg/5 mL injection, vial 21720011000036108 idarubicin +815791000168109 Zamic 500 mg/5 mL injection solution, 5 x 5 mL ampoules 202786 815781000168106 Zamic 500 mg/5 mL injection solution, 5 x 5 mL ampoules 815771000168108 Zamic 500 mg/5 mL injection solution, 5 mL ampoule 815761000168102 Zamic 815761000168102 Zamic 699121000168101 tranexamic acid 500 mg/5 mL injection, 5 x 5 mL ampoules 699101000168105 tranexamic acid 500 mg/5 mL injection, ampoule 21746011000036108 tranexamic acid +925206011000036105 Pravastat 20 mg uncoated tablet, 30, blister pack 156364 924743011000036109 Pravastat 20 mg uncoated tablet, 30 924450011000036108 Pravastat 20 mg uncoated tablet 924369011000036104 Pravastat 924369011000036104 Pravastat 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +927699011000036104 Bicard 2.5 mg tablet, 28, blister pack 164257 927635011000036105 Bicard 2.5 mg tablet, 28 927588011000036104 Bicard 2.5 mg tablet 927569011000036109 Bicard 927569011000036109 Bicard 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +1008601000168102 Cefuroxime (AL) 250 mg film-coated tablet, 2, blister pack 273227 1008591000168109 Cefuroxime (AL) 250 mg film-coated tablet, 2 1008581000168106 Cefuroxime (AL) 250 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 763521000168104 cefuroxime 250 mg tablet, 2 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +970571000168107 Pregabalin (Apo) 75 mg hard capsule, 56, blister pack 193274 970561000168101 Pregabalin (Apo) 75 mg hard capsule, 56 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +743541000168104 Jardiamet 12.5 mg/500 mg film-coated tablet, 14, blister pack 229818 743531000168108 Jardiamet 12.5 mg/500 mg film-coated tablet, 14 743511000168103 Jardiamet 12.5 mg/500 mg film-coated tablet 743491000168108 Jardiamet 12.5 mg/500 mg 743491000168108 Jardiamet 12.5 mg/500 mg 743521000168105 empagliflozin 12.5 mg + metformin hydrochloride 500 mg tablet, 14 743501000168101 empagliflozin 12.5 mg + metformin hydrochloride 500 mg tablet 743221000168107 empagliflozin + metformin +666451000168109 Xiaflex (1 x 900 microgram vial, 1 x 3 mL inert diluent vial), 1 pack 199584 665911000168109 Xiaflex (1 x 900 microgram vial, 1 x 3 mL inert diluent vial), 1 pack 665881000168109 Xiaflex (collagenase clostridium histolyticum 900 microgram) powder for injection, 900 microgram vial 665851000168102 Xiaflex 665851000168102 Xiaflex 665901000168106 collagenase clostridium histolyticum 900 microgram injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 665871000168106 collagenase clostridium histolyticum 900 microgram injection, vial 665861000168100 collagenase clostridium histolyticum +666451000168109 Xiaflex (1 x 900 microgram vial, 1 x 3 mL inert diluent vial), 1 pack 199584 665911000168109 Xiaflex (1 x 900 microgram vial, 1 x 3 mL inert diluent vial), 1 pack 665891000168107 Xiaflex (inert substance) diluent, 3 mL vial 665851000168102 Xiaflex 665851000168102 Xiaflex 665901000168106 collagenase clostridium histolyticum 900 microgram injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 631981000168109 inert substance diluent, 3 mL vial 21220011000036103 inert substance +752131000168107 Oxycodone (Actavis) 5 mg hard capsule, 20, blister pack 227834 752091000168105 Oxycodone (Actavis) 5 mg hard capsule, 20 752081000168107 Oxycodone (Actavis) 5 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +116961000036109 Caelyx 50 mg/25 mL concentrated injection, 25 mL vial 79921 115291000036104 Caelyx 50 mg/25 mL concentrated injection, 25 mL vial 113181000036109 Caelyx 50 mg/25 mL concentrated injection, 25 mL vial 3909011000036107 Caelyx 3909011000036107 Caelyx 114391000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, 25 mL vial 113171000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +687351000168103 Scytera 2% foam, 100 g, aerosol can 208048 687341000168100 Scytera 2% foam, 100 g 687321000168106 Scytera 2% foam 687301000168102 Scytera 687301000168102 Scytera 687331000168109 coal tar 2% foam, 100 g 687311000168104 coal tar 2% foam 69872011000036106 coal tar +764411000168107 Ursodeoxycholic Acid (LAPL) 250 mg hard capsule, 100, blister pack 232483 764401000168109 Ursodeoxycholic Acid (LAPL) 250 mg hard capsule, 100 764371000168106 Ursodeoxycholic Acid (LAPL) 250 mg hard capsule 764361000168100 Ursodeoxycholic Acid (LAPL) 764361000168100 Ursodeoxycholic Acid (LAPL) 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +59835011000036104 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 24, blister pack 114915 55797011000036108 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 24 53630011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet 29541000168103 Strong Pain Relief Tabsule (Amcal) 29541000168103 Strong Pain Relief Tabsule (Amcal) 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +1072831000168100 Pantoprazole (Generic Health) 20 mg enteric tablet, 5, blister pack 191032 1072821000168103 Pantoprazole (Generic Health) 20 mg enteric tablet, 5 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46675011000036108 pantoprazole 20 mg enteric tablet, 5 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +914341000168106 Amoxyclav 500/125 (Generic Health) film-coated tablet, 2, blister pack 255077 914331000168102 Amoxyclav 500/125 (Generic Health) film-coated tablet, 2 914321000168100 Amoxyclav 500/125 (Generic Health) film-coated tablet 914281000168105 Amoxyclav 500/125 (Generic Health) 914281000168105 Amoxyclav 500/125 (Generic Health) 51544011000036109 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 2 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1017141000168109 Famciclovir (Apotex) 500 mg film-coated tablet, 20, blister pack 172444 1017131000168100 Famciclovir (Apotex) 500 mg film-coated tablet, 20 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +86020011000036104 Lisinopril (DRLA) 20 mg uncoated tablet, 100, blister pack 152722 85663011000036107 Lisinopril (DRLA) 20 mg uncoated tablet, 100 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 78125011000036109 lisinopril 20 mg tablet, 100 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +668641000168108 Esomeprazole (GXP) 20 mg enteric tablet, 30, blister pack 205845 668631000168104 Esomeprazole (GXP) 20 mg enteric tablet, 30 668621000168102 Esomeprazole (GXP) 20 mg enteric tablet 668611000168109 Esomeprazole (GXP) 668611000168109 Esomeprazole (GXP) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +674581000168101 Lignocaine Hydrochloride Min-I-Jet (UCB) 2% (100 mg/5 mL) injection solution, 5 mL syringe 29041 674571000168104 Lignocaine Hydrochloride Min-I-Jet (UCB) 2% (100 mg/5 mL) injection solution, 5 mL syringe 674551000168108 Lignocaine Hydrochloride Min-I-Jet (UCB) 2% (100 mg/5 mL) injection solution, 5 mL syringe 674531000168102 Lignocaine Hydrochloride Min-I-Jet (UCB) 674531000168102 Lignocaine Hydrochloride Min-I-Jet (UCB) 674561000168105 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, 5 mL syringe 674541000168106 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, syringe 21572011000036107 lidocaine (lignocaine) +807841000168101 Irbesartan (Apo) 150 mg film-coated tablet, 30, bottle 169793 807781000168102 Irbesartan (Apo) 150 mg film-coated tablet, 30 807771000168100 Irbesartan (Apo) 150 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1002801000168104 Rivastigmine (Apo) 3 mg hard capsule, 500, bottle 160579 1002791000168100 Rivastigmine (Apo) 3 mg hard capsule, 500 1002721000168102 Rivastigmine (Apo) 3 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002781000168103 rivastigmine 3 mg capsule, 500 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +52189011000036107 Bondronat 50 mg film-coated tablet, 7, blister pack 119673 52081011000036100 Bondronat 50 mg film-coated tablet, 7 51981011000036106 Bondronat 50 mg film-coated tablet 32976011000036100 Bondronat 32976011000036100 Bondronat 52325011000036107 ibandronate 50 mg tablet, 7 52256011000036106 ibandronate 50 mg tablet 33641011000036101 ibandronate +882741000168108 Bosentan (Ran) 62.5 mg film-coated tablet, 56, bottle 257754 878911000168103 Bosentan (Ran) 62.5 mg film-coated tablet, 56 878891000168100 Bosentan (Ran) 62.5 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +13971000036103 Olanzapine (PS) 7.5 mg film-coated tablet, 28, blister pack 178992 7631000036104 Olanzapine (PS) 7.5 mg film-coated tablet, 28 1941000036106 Olanzapine (PS) 7.5 mg film-coated tablet 17601000168102 Olanzapine (PS) 17601000168102 Olanzapine (PS) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +1089961000168102 Dymafen film-coated tablet, 30, blister pack 282486 1089951000168104 Dymafen film-coated tablet, 30 1089881000168100 Dymafen film-coated tablet 1089871000168103 Dymafen 1089871000168103 Dymafen 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +50679011000036105 Clinitest compound diagnostic tablet, 36, bottle 34239 49703011000036100 Clinitest compound diagnostic tablet, 36 48831011000036107 Clinitest compound diagnostic tablet 48348011000036101 Clinitest 48348011000036101 Clinitest 51567011000036105 copper sulfate compound diagnostic tablet, 36 51004011000036102 copper sulfate compound diagnostic tablet 50778011000036106 copper sulfate +50634011000036107 Clavulin Duo 500/125 film-coated tablet, 60, blister pack 142690 49660011000036104 Clavulin Duo 500/125 film-coated tablet, 60 7026011000036108 Clavulin Duo 500/125 film-coated tablet 39301000168107 Clavulin Duo 500/125 39301000168107 Clavulin Duo 500/125 51545011000036108 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 60 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +79648011000036102 Bridion 500 mg/5 mL injection solution, 10 x 5 mL vials 148263 79484011000036103 Bridion 500 mg/5 mL injection solution, 10 x 5 mL vials 79369011000036108 Bridion 500 mg/5 mL injection solution, 5 mL vial 79335011000036104 Bridion 79335011000036104 Bridion 79815011000036109 sugammadex 500 mg/5 mL injection, 10 x 5 mL vials 79744011000036101 sugammadex 500 mg/5 mL injection, vial 79728011000036106 sugammadex +20853011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 92118 14016011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack 7295011000036100 Peg-Intron Redipen Injector (peginterferon alfa-2b 100 microgram) powder for injection, 100 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28079011000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23390011000036109 peginterferon alfa-2b 100 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20853011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 92118 14016011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28079011000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20853011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 92118 14016011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28079011000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +69128011000036104 Nicotinell Classic 2 mg chewing gum, 12, blister pack 152893 66928011000036105 Nicotinell Classic 2 mg chewing gum, 12 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +45991000036108 Ramipril (Apo) 1.25 mg capsule, 30, blister pack 179033 43271000036100 Ramipril (Apo) 1.25 mg capsule, 30 41401000036109 Ramipril (Apo) 1.25 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +13931000036100 Sequase 300 mg film-coated tablet, 60, blister pack 178488 7591000036104 Sequase 300 mg film-coated tablet, 60 2671000036104 Sequase 300 mg film-coated tablet 481000036106 Sequase 481000036106 Sequase 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +19977011000036108 Cilex 500 mg hard capsule, 20, blister pack 67946 13220011000036105 Cilex 500 mg hard capsule, 20 6502011000036103 Cilex 500 mg hard capsule 3195011000036106 Cilex 3195011000036106 Cilex 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +19977011000036108 Cilex 500 mg hard capsule, 20, blister pack 144110 13220011000036105 Cilex 500 mg hard capsule, 20 6502011000036103 Cilex 500 mg hard capsule 3195011000036106 Cilex 3195011000036106 Cilex 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +1084161000168103 Salofalk 1 g modified release granules, 50 sachets 80649 1084151000168100 Salofalk 1 g modified release granules, 50 sachets 1084131000168106 Salofalk 1 g modified release granules, sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084141000168102 mesalazine 1 g modified release granules, 50 sachets 23619011000036106 mesalazine 1 g modified release granules, sachet 21351011000036101 mesalazine +82332011000036104 Duromine 30 mg modified release capsule, 3, blister pack 76680 82113011000036105 Duromine 30 mg modified release capsule, 3 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82517011000036106 phentermine 30 mg modified release capsule, 3 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +82332011000036104 Duromine 30 mg modified release capsule, 3, blister pack 10940 82113011000036105 Duromine 30 mg modified release capsule, 3 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82517011000036106 phentermine 30 mg modified release capsule, 3 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +922002011000036104 Suvalan 50 mg film-coated tablet, 4, blister pack 63592 921560011000036100 Suvalan 50 mg film-coated tablet, 4 6357011000036108 Suvalan 50 mg film-coated tablet 3454011000036101 Suvalan 3454011000036101 Suvalan 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +933701000168104 Centevo 200/50/200 mg film-coated tablet, 60, bottle 238859 933691000168104 Centevo 200/50/200 mg film-coated tablet, 60 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933681000168102 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 60 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +50542011000036108 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 7, blister pack 131918 49579011000036105 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 7 48778011000036103 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet 48261011000036105 Zolpidem Tartrate (Pharmacor) 48261011000036105 Zolpidem Tartrate (Pharmacor) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +176701000036104 Cadivast 5/10 film-coated tablet, 30, bottle 199213 174931000036102 Cadivast 5/10 film-coated tablet, 30 173361000036105 Cadivast 5/10 film-coated tablet 24511000168103 Cadivast 5/10 24511000168103 Cadivast 5/10 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +1081351000168104 Alpha Keri Bath and Body Oil application, 2.5 L, bottle 24618 1081341000168101 Alpha Keri Bath and Body Oil application, 2.5 L 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 1081331000168105 liquid paraffin 80.7% + lanolin oil 2.64% application, 2.5 L 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +940121000168103 Celecoxib (Ranbaxy) 100 mg hard capsule, 20, blister pack 212786 940111000168105 Celecoxib (Ranbaxy) 100 mg hard capsule, 20 940081000168100 Celecoxib (Ranbaxy) 100 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +674421000168104 Fruitivits Orange powder for oral liquid, 30 x 6 g sachets 674411000168106 Fruitivits Orange powder for oral liquid, 30 x 6 g sachets 674391000168106 Fruitivits Orange powder for oral liquid, 6 g sachet 673951000168100 Fruitivits 673951000168100 Fruitivits 674401000168108 vitamins, minerals and trace elements with carbohydrate powder for oral liquid, 30 x 6 g sachets 674381000168108 vitamins, minerals and trace elements with carbohydrate powder for oral liquid, 6 g sachet 84417011000036106 vitamins, minerals and trace elements with carbohydrate +730751000168102 Zoledronic Acid (DBL) 4 mg/5 mL concentrated injection, 5 mL vial 182071 730741000168104 Zoledronic Acid (DBL) 4 mg/5 mL concentrated injection, 5 mL vial 730731000168108 Zoledronic Acid (DBL) 4 mg/5 mL concentrated injection, 5 mL vial 730711000168103 Zoledronic Acid (DBL) 730711000168103 Zoledronic Acid (DBL) 28024011000036106 zoledronic acid 4 mg/5 mL injection, 5 mL vial 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +940141000168109 Celecoxib (Ranbaxy) 100 mg hard capsule, 50, blister pack 212786 940131000168100 Celecoxib (Ranbaxy) 100 mg hard capsule, 50 940081000168100 Celecoxib (Ranbaxy) 100 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +957641000168100 Amlodipine (Terry White Chemists) 2.5 mg uncoated tablet, 30, blister pack 135132 957631000168109 Amlodipine (Terry White Chemists) 2.5 mg uncoated tablet, 30 957621000168106 Amlodipine (Terry White Chemists) 2.5 mg uncoated tablet 33931011000036103 Amlodipine (Terry White Chemists) 33931011000036103 Amlodipine (Terry White Chemists) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +752211000168107 Oxycodone (Actavis) 10 mg hard capsule, 60, blister pack 227838 752181000168108 Oxycodone (Actavis) 10 mg hard capsule, 60 752151000168101 Oxycodone (Actavis) 10 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +17930011000036100 Betnovate-1/5 0.02% cream, 100 g, tube 12491 11783011000036107 Betnovate-1/5 0.02% cream, 100 g 5452011000036100 Betnovate-1/5 0.02% cream 63141000168104 Betnovate-1/5 63141000168104 Betnovate-1/5 28033011000036106 betamethasone (as valerate) 0.02% cream, 100 g 23354011000036109 betamethasone (as valerate) 0.02% cream 21366011000036103 betamethasone valerate +736231000168100 Afeme Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack, composite pack 231084 736221000168103 Afeme Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 736161000168102 Afeme Duo 150 mg hard capsule 736151000168104 Afeme Duo 736151000168104 Afeme Duo 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +736231000168100 Afeme Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack, composite pack 231084 736221000168103 Afeme Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 736191000168109 Afeme Duo 1% cream 736151000168104 Afeme Duo 736151000168104 Afeme Duo 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +60175011000036105 Exforge 10/160 film-coated tablet, 30, blister pack 130841 56134011000036103 Exforge 10/160 film-coated tablet, 30 53803011000036106 Exforge 10/160 film-coated tablet 22241000168106 Exforge 10/160 22241000168106 Exforge 10/160 63238011000036100 amlodipine 10 mg + valsartan 160 mg tablet, 30 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +18041000036104 Densate 70 mg uncoated tablet, 4, blister pack 171794 17051000036102 Densate 70 mg uncoated tablet, 4 15591000036105 Densate 70 mg uncoated tablet 15211000036103 Densate 15211000036103 Densate 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +933246721000036104 Lisinopril (PS) 20 mg uncoated tablet, 10, blister pack 152714 933243361000036103 Lisinopril (PS) 20 mg uncoated tablet, 10 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 78124011000036105 lisinopril 20 mg tablet, 10 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +719011000168102 Privigen 20 g/200 mL injection solution, 200 mL bottle 143368 719001000168100 Privigen 20 g/200 mL injection solution, 200 mL bottle 718991000168100 Privigen 20 g/200 mL injection solution, 200 mL bottle 718951000168105 Privigen 718951000168105 Privigen 112041000036105 normal immunoglobulin 20 g/200 mL injection, 200 mL bottle 111881000036104 normal immunoglobulin 20 g/200 mL injection, bottle 74965011000036103 normal immunoglobulin +883141000168101 Betahistine (GX) 8 mg tablet, 25, blister pack 231711 883131000168105 Betahistine (GX) 8 mg tablet, 25 883081000168105 Betahistine (GX) 8 mg tablet 883061000168101 Betahistine (GX) 883061000168101 Betahistine (GX) 883121000168107 betahistine dihydrochloride 8 mg tablet, 25 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +695531000168108 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials 47383 695521000168105 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials 695501000168101 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 20 mL vial 20471000168101 Ultravist-370 20471000168101 Ultravist-370 695511000168103 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 20 mL vials 695491000168108 iopromide 769 mg (iodine 370 mg)/mL injection, 20 mL vial 77425011000036101 iopromide +69409011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (9 g/L) intravenous infusion injection, 1 L bag 47400 67209011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (9 g/L) intravenous infusion injection, 1 L bag 65556011000036101 Sodium Chloride (Fresenius Kabi) 0.9% (9 g/L) intravenous infusion injection, 1 L bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 32782011000036104 sodium chloride 0.9% (9 g/L) injection, 1 L bag 22566011000036102 sodium chloride 0.9% (9 g/L) injection, bag 21308011000036103 sodium chloride +44085011000036104 Scandonest Special 2% / 1 in 100 000 injection solution, 50 x 2.2 mL cartridges 49320 41572011000036105 Scandonest Special 2% / 1 in 100 000 injection solution, 50 x 2.2 mL cartridges 40075011000036109 Scandonest Special 2% / 1 in 100 000 injection solution, 2.2 mL cartridge 43481000168109 Scandonest Special 2% / 1 in 100 000 43481000168109 Scandonest Special 2% / 1 in 100 000 46401011000036104 mepivacaine hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, 50 x 2.2 mL cartridges 45135011000036109 mepivacaine hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, cartridge 44936011000036105 mepivacaine + adrenaline (epinephrine) +1075871000168109 Aripiprazole (Auro) 5 mg uncoated tablet, 28, blister pack 198185 1075861000168103 Aripiprazole (Auro) 5 mg uncoated tablet, 28 1075851000168100 Aripiprazole (Auro) 5 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 46872011000036106 aripiprazole 5 mg tablet, 28 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +1121951000168101 Afluria Quad 2018 injection suspension, 10 x 0.5 mL syringes 262428 1121941000168103 Afluria Quad 2018 injection suspension, 10 x 0.5 mL syringes 1121891000168104 Afluria Quad 2018 injection suspension, 0.5 mL syringe 1121841000168107 Afluria Quad 2018 1121841000168107 Afluria Quad 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +1067141000168108 Rafen Plus film-coated tablet, 10, blister pack 178744 1067131000168104 Rafen Plus film-coated tablet, 10 27111000036106 Rafen Plus film-coated tablet 26031000036103 Rafen Plus 26031000036103 Rafen Plus 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +18453011000036101 Avapro 300 mg film-coated tablet, 30, blister pack 101736 11236011000036103 Avapro 300 mg film-coated tablet, 30 5075011000036103 Avapro 300 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +1004171000168105 Midazolam (Apo) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 217667 1004161000168104 Midazolam (Apo) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1004151000168101 Midazolam (Apo) 5 mg/5 mL injection solution, 5 mL ampoule 1004091000168105 Midazolam (Apo) 1004091000168105 Midazolam (Apo) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +925129011000036107 HCU Anamix Infant powder for oral liquid, 400 g, can 924686011000036103 HCU Anamix Infant powder for oral liquid, 400 g 924412011000036103 HCU Anamix Infant powder for oral liquid 46721000168106 HCU Anamix Infant 46721000168106 HCU Anamix Infant 51440011000036108 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 400 g 50957011000036104 amino acid formula with vitamins and minerals without methionine powder for oral liquid 50753011000036104 amino acid formula with vitamins and minerals without methionine +59874011000036101 Sudafed PE Nasal Decongestant 10 mg film-coated tablet, 48, blister pack 115775 55836011000036102 Sudafed PE Nasal Decongestant 10 mg film-coated tablet, 48 53661011000036102 Sudafed PE Nasal Decongestant 10 mg film-coated tablet 53133011000036107 Sudafed PE Nasal Decongestant 53133011000036107 Sudafed PE Nasal Decongestant 63142011000036102 phenylephrine hydrochloride 10 mg tablet, 48 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +874611000168102 Beezole 40 mg enteric tablet, 30, blister pack 205829 874601000168100 Beezole 40 mg enteric tablet, 30 874551000168102 Beezole 40 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +933246761000036108 Lisinopril (PS) 20 mg uncoated tablet, 30, blister pack 152714 933243401000036108 Lisinopril (PS) 20 mg uncoated tablet, 30 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +82388011000036108 Duocover 75 mg/100 mg film-coated tablet, 50, blister pack 151075 82177011000036106 Duocover 75 mg/100 mg film-coated tablet, 50 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82551011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 50 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +60345011000036103 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 40, blister pack 140287 56304011000036101 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 40 53869011000036105 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60345011000036103 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 40, blister pack 160498 56304011000036101 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet, 40 53869011000036105 Strong Pain with Calmative (Pharmacy Choice) uncoated tablet 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 53504011000036109 Strong Pain with Calmative (Pharmacy Choice) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1021061000168105 Alli 60 mg hard capsule, 42, bottle 194528 1021051000168108 Alli 60 mg hard capsule, 42 1021031000168102 Alli 60 mg hard capsule 1021011000168107 Alli 1021011000168107 Alli 1021041000168106 orlistat 60 mg capsule, 42 1021021000168100 orlistat 60 mg capsule 21581011000036109 orlistat +969611000168101 Lypralin 150 mg hard capsule, 21, blister pack 235846 969601000168104 Lypralin 150 mg hard capsule, 21 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855121000168102 pregabalin 150 mg capsule, 21 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +921943011000036106 Epsom Salts (Biotech) 1 g/g powder, 375 g, bottle 27357 921502011000036100 Epsom Salts (Biotech) 1 g/g powder, 375 g 921043011000036100 Epsom Salts (Biotech) 1 g/g powder 920958011000036106 Epsom Salts (Biotech) 920958011000036106 Epsom Salts (Biotech) 922624011000036107 magnesium sulfate heptahydrate 1 g/g powder, 375 g 922116011000036108 magnesium sulfate heptahydrate 1 g/g powder 69777011000036105 magnesium sulfate heptahydrate +926748011000036105 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 10 x 10 mL ampoules 117968 926110011000036106 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 10 x 10 mL ampoules 925586011000036104 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 10 mL ampoule 925569011000036105 Flumazenil (Sandoz) 925569011000036105 Flumazenil (Sandoz) 927310011000036101 flumazenil 1 mg/10 mL injection, 10 x 10 mL ampoules 45022011000036106 flumazenil 1 mg/10 mL injection, ampoule 37762011000036103 flumazenil +176461000036108 Vagifem Low 10 microgram modified release pessary, 18, blister pack 163054 174661000036100 Vagifem Low 10 microgram modified release pessary, 18 173071000036104 Vagifem Low 10 microgram modified release pessary 28321000168109 Vagifem Low 28321000168109 Vagifem Low 174671000036108 estradiol 10 microgram modified release pessary, 18 173081000036102 estradiol 10 microgram modified release pessary 21238011000036103 estradiol +19268011000036102 E-Mycin 400 mg/5 mL powder for oral liquid, 100 mL, bottle 48287 12558011000036105 E-Mycin 400 mg/5 mL powder for oral liquid, 100 mL 4489011000036106 E-Mycin 400 mg/5 mL powder for oral liquid, 5 mL 4167011000036102 E-Mycin 4167011000036102 E-Mycin 27323011000036104 erythromycin (as ethylsuccinate) 400 mg/5 mL powder for oral liquid, 100 mL 22676011000036102 erythromycin (as ethylsuccinate) 400 mg/5 mL powder for oral liquid 21523011000036104 erythromycin ethylsuccinate +1018191000168100 Amisulpride (Apotex) 400 mg film-coated tablet, 100, blister pack 178897 1018181000168103 Amisulpride (Apotex) 400 mg film-coated tablet, 100 1018091000168101 Amisulpride (Apotex) 400 mg film-coated tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 80066011000036102 amisulpride 400 mg tablet, 100 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +37677011000036100 Sifrol 250 microgram uncoated tablet, 10, blister pack 66484 36943011000036106 Sifrol 250 microgram uncoated tablet, 10 36273011000036106 Sifrol 250 microgram uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 38824011000036109 pramipexole dihydrochloride monohydrate 250 microgram tablet, 10 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +704211000168105 Alendronate Plus D3 70 mg/140 microgram (Terry White Chemists) tablet, 4, blister pack 220375 704201000168107 Alendronate Plus D3 70 mg/140 microgram (Terry White Chemists) tablet, 4 704191000168109 Alendronate Plus D3 70 mg/140 microgram (Terry White Chemists) tablet 704181000168106 Alendronate Plus D3 70 mg/140 microgram (Terry White Chemists) 704181000168106 Alendronate Plus D3 70 mg/140 microgram (Terry White Chemists) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +991201000168104 Lyrica 100 mg hard capsule, 14, bottle 99527 991191000168102 Lyrica 100 mg hard capsule, 14 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +729061000168109 Mirena 52 mg intrauterine drug delivery system, 1 system, applicator 73027 52111011000036106 Mirena 52 mg intrauterine drug delivery system, 1 system 52000011000036106 Mirena 52 mg intrauterine drug delivery system, 1 system 51946011000036109 Mirena 51946011000036109 Mirena 52335011000036109 levonorgestrel 52 mg intrauterine drug delivery system, 1 system 52260011000036101 levonorgestrel 52 mg intrauterine drug delivery system, 1 system 21391011000036105 levonorgestrel +666771000168106 Doxycycline (AN) 100 mg film-coated tablet, 21, blister pack 148808 666761000168100 Doxycycline (AN) 100 mg film-coated tablet, 21 666691000168101 Doxycycline (AN) 100 mg film-coated tablet 666651000168106 Doxycycline (AN) 666651000168106 Doxycycline (AN) 33813011000036104 doxycycline 100 mg tablet, 21 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +882821000168108 Bosentan (RBX) 62.5 mg film-coated tablet, 60, blister pack 257757 882811000168101 Bosentan (RBX) 62.5 mg film-coated tablet, 60 882781000168103 Bosentan (RBX) 62.5 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +12241000036107 Olanzapine (DRLA) 2.5 mg film-coated tablet, 28, blister pack 163387 7441000036106 Olanzapine (DRLA) 2.5 mg film-coated tablet, 28 1841000036101 Olanzapine (DRLA) 2.5 mg film-coated tablet 36491000168101 Olanzapine (DRLA) 36491000168101 Olanzapine (DRLA) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +52789011000036103 Rapideine Day (Soul Pattinson) capsule shaped uncoated tablet, 50, bottle 94315 52599011000036100 Rapideine Day (Soul Pattinson) capsule shaped uncoated tablet, 50 52438011000036105 Rapideine Day (Soul Pattinson) capsule shaped uncoated tablet 52385011000036104 Rapideine Day (Soul Pattinson) 52385011000036104 Rapideine Day (Soul Pattinson) 52904011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 50 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +1015681000168100 Aripiprazole (ZP) 10 mg uncoated tablet, 30, blister pack 217195 1015671000168103 Aripiprazole (ZP) 10 mg uncoated tablet, 30 1015661000168109 Aripiprazole (ZP) 10 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +43761011000036103 Angeliq 1/2 film-coated tablet, 112, blister pack 114816 41162011000036106 Angeliq 1/2 film-coated tablet, 112 39892011000036107 Angeliq 1/2 film-coated tablet 16131000168100 Angeliq 1/2 16131000168100 Angeliq 1/2 46129011000036107 estradiol 1 mg + drospirenone 2 mg tablet, 112 45002011000036104 estradiol 1 mg + drospirenone 2 mg tablet 44878011000036104 estradiol + drospirenone +34628011000036106 Pethidine Hydrochloride (DBL) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 107387 34212011000036100 Pethidine Hydrochloride (DBL) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 33964011000036109 Pethidine Hydrochloride (DBL) 100 mg/2 mL injection solution, 2 mL ampoule 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35097011000036101 pethidine hydrochloride 100 mg/2 mL injection, 5 x 2 mL ampoules 34848011000036104 pethidine hydrochloride 100 mg/2 mL injection, ampoule 34839011000036106 pethidine +68964011000036100 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 10 sachets 134408 66766011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 10 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71418011000036104 paracetamol 500 mg powder for oral liquid, 10 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +34756011000036104 Fentanyl (AstraZeneca) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 48369 34337011000036101 Fentanyl (AstraZeneca) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 34051011000036107 Fentanyl (AstraZeneca) 500 microgram/10 mL injection solution, 10 mL ampoule 33946011000036107 Fentanyl (AstraZeneca) 33946011000036107 Fentanyl (AstraZeneca) 35185011000036100 fentanyl 500 microgram/10 mL injection, 10 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +687261000168105 Capecitabine (AN) 150 mg film-coated tablet, 60, blister pack 213033 687251000168108 Capecitabine (AN) 150 mg film-coated tablet, 60 687241000168106 Capecitabine (AN) 150 mg film-coated tablet 687231000168102 Capecitabine (AN) 687231000168102 Capecitabine (AN) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +43640011000036107 Coralan 7.5 mg film-coated tablet, 56, blister pack 107301 41154011000036105 Coralan 7.5 mg film-coated tablet, 56 39965011000036105 Coralan 7.5 mg film-coated tablet 39619011000036107 Coralan 39619011000036107 Coralan 46125011000036105 ivabradine 7.5 mg tablet, 56 44999011000036109 ivabradine 7.5 mg tablet 44871011000036108 ivabradine +61647011000036107 Advil 200 mg soft capsule, 50, blister pack 97229 57569011000036100 Advil 200 mg soft capsule, 50 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63934011000036108 ibuprofen 200 mg capsule, 50 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +958051000168108 Ozvir 400 mg tablet, 100, blister pack 117381 958041000168106 Ozvir 400 mg tablet, 100 958011000168107 Ozvir 400 mg tablet 3956011000036107 Ozvir 3956011000036107 Ozvir 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +60551011000036100 Disprin Regular 300 mg dispersible tablet, 24, strip pack 15366 56509011000036102 Disprin Regular 300 mg dispersible tablet, 24 53946011000036100 Disprin Regular 300 mg dispersible tablet 17321000168103 Disprin Regular 17321000168103 Disprin Regular 83711000036109 aspirin 300 mg dispersible tablet, 24 83601000036104 aspirin 300 mg dispersible tablet 21719011000036107 aspirin +18898011000036109 Sigmacort 1% cream, 30 g, tube 19778 12206011000036107 Sigmacort 1% cream, 30 g 5811011000036107 Sigmacort 1% cream 3068011000036109 Sigmacort 3068011000036109 Sigmacort 28029011000036107 hydrocortisone acetate 1% cream, 30 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +886031000168102 Paracetamol Osteo-Tab 665 mg modified release tablet, 100, bottle 202407 886021000168100 Paracetamol Osteo-Tab 665 mg modified release tablet, 100 885991000168108 Paracetamol Osteo-Tab 665 mg modified release tablet 885981000168105 Paracetamol Osteo-Tab 885981000168105 Paracetamol Osteo-Tab 677931000168103 paracetamol 665 mg modified release tablet, 100 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +83416011000036106 Paracetamol (Generic Health) 500 mg uncoated tablet, 100, bottle 99406 83334011000036101 Paracetamol (Generic Health) 500 mg uncoated tablet, 100 83261011000036103 Paracetamol (Generic Health) 500 mg uncoated tablet 83233011000036107 Paracetamol (Generic Health) 83233011000036107 Paracetamol (Generic Health) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +83416011000036106 Paracetamol (Generic Health) 500 mg uncoated tablet, 100, bottle 165002 83334011000036101 Paracetamol (Generic Health) 500 mg uncoated tablet, 100 83261011000036103 Paracetamol (Generic Health) 500 mg uncoated tablet 83233011000036107 Paracetamol (Generic Health) 83233011000036107 Paracetamol (Generic Health) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +802541000168100 Abilify ODT 10 mg orally disintegrating tablet, 30, blister pack 128893 802531000168109 Abilify ODT 10 mg orally disintegrating tablet, 30 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802521000168106 aripiprazole 10 mg orally disintegrating tablet, 30 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +926794011000036105 Ondansetron (DRLA) 4 mg film-coated tablet, 6, blister pack 163428 926190011000036105 Ondansetron (DRLA) 4 mg film-coated tablet, 6 925665011000036104 Ondansetron (DRLA) 4 mg film-coated tablet 20111000168103 Ondansetron (DRLA) 20111000168103 Ondansetron (DRLA) 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +931576011000036106 Redichol 10 mg film-coated tablet, 100, bottle 163552 930737011000036101 Redichol 10 mg film-coated tablet, 100 930032011000036101 Redichol 10 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932414011000036100 pravastatin sodium 10 mg tablet, 100 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +20998011000036101 Cefaclor (GenRx) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 169117 14144011000036102 Cefaclor (GenRx) 250 mg/5 mL powder for oral liquid, 75 mL 7423011000036105 Cefaclor (GenRx) 250 mg/5 mL powder for oral liquid, 5 mL 3265011000036107 Cefaclor (GenRx) 3265011000036107 Cefaclor (GenRx) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +20998011000036101 Cefaclor (GenRx) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 96314 14144011000036102 Cefaclor (GenRx) 250 mg/5 mL powder for oral liquid, 75 mL 7423011000036105 Cefaclor (GenRx) 250 mg/5 mL powder for oral liquid, 5 mL 3265011000036107 Cefaclor (GenRx) 3265011000036107 Cefaclor (GenRx) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +1024361000168109 Betadine Sore Throat Lozenges Orange lozenge, 32, blister pack 227169 1024351000168107 Betadine Sore Throat Lozenges Orange lozenge, 32 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023781000168103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 32 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +12281000036103 Zylap 2.5 mg film-coated tablet, 28, blister pack 163403 7191000036107 Zylap 2.5 mg film-coated tablet, 28 1701000036106 Zylap 2.5 mg film-coated tablet 7481000168109 Zylap 7481000168109 Zylap 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +865931000168106 Amitriptyline (PN) 50 mg tablet, 10, blister pack 232150 865921000168108 Amitriptyline (PN) 50 mg tablet, 10 865851000168108 Amitriptyline (PN) 50 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +704171000168108 Alendronate Plus D3 70 mg/70 microgram (Terry White Chemists) tablet, 4, blister pack 220368 704161000168102 Alendronate Plus D3 70 mg/70 microgram (Terry White Chemists) tablet, 4 704151000168104 Alendronate Plus D3 70 mg/70 microgram (Terry White Chemists) tablet 704141000168101 Alendronate Plus D3 70 mg/70 microgram (Terry White Chemists) 704141000168101 Alendronate Plus D3 70 mg/70 microgram (Terry White Chemists) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +86183011000036106 Glamin intravenous infusion injection, 1 L bottle 77751 85790011000036105 Glamin intravenous infusion injection, 1 L bottle 85404011000036106 Glamin intravenous infusion injection, 1 L bottle 85245011000036102 Glamin 85245011000036102 Glamin 86473011000036100 alanine 16 g/L + arginine 11.3 g/L + aspartic acid 3.4 g/L + glutamic acid 5.6 g/L + glycylglutamine monohydrate 30.27 g/L (equivalent to 10.27 g of glycine and 20 g of glutamine ) + glycyltyrosine dihydrate 3.45 g/L (equivalent to 940 mg of glycine and 2.28 g of tyrosine ) + histidine 6.8 g/L + isoleucine 5.6 g/L + leucine 7.9 g/L + lysine 9 g/L + methionine 5.6 g/L + phenylalanine 5.85 g/L + proline 6.8 g/L + serine 4.5 g/L + threonine 5.6 g/L + tryptophan 1.9 g/L + valine 7.3 g/L injection, 1 L bottle 86246011000036106 alanine 16 g/L + arginine 11.3 g/L + aspartic acid 3.4 g/L + glutamic acid 5.6 g/L + glycylglutamine monohydrate 30.27 g/L (equivalent to 10.27 g of glycine and 20 g of glutamine ) + glycyltyrosine dihydrate 3.45 g/L (equivalent to 940 mg of glycine and 2.28 g of tyrosine ) + histidine 6.8 g/L + isoleucine 5.6 g/L + leucine 7.9 g/L + lysine 9 g/L + methionine 5.6 g/L + phenylalanine 5.85 g/L + proline 6.8 g/L + serine 4.5 g/L + threonine 5.6 g/L + tryptophan 1.9 g/L + valine 7.3 g/L injection, bottle 86194011000036107 alanine + arginine + aspartic acid + glutamic acid + glycylglutamine monohydrate + glycyltyrosine dihydrate + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + valine +931403011000036103 Advate (1 x 1500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100387 930546011000036101 Advate (1 x 1500 units vial, 1 x 5 mL inert diluent vial), 1 pack 633331000168108 Advate (inert substance) diluent, 5 mL vial 65054011000036106 Advate 65054011000036106 Advate 932335011000036104 octocog alfa 1500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +931403011000036103 Advate (1 x 1500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100387 930546011000036101 Advate (1 x 1500 units vial, 1 x 5 mL inert diluent vial), 1 pack 929935011000036100 Advate (octocog alfa 1500 units) powder for injection, 1500 units vial 65054011000036106 Advate 65054011000036106 Advate 932335011000036104 octocog alfa 1500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 931817011000036103 octocog alfa 1500 units injection, vial 69843011000036100 octocog alfa +933097011000036109 Aquinafil 5 mg film-coated tablet, 30, blister pack 173708 932904011000036104 Aquinafil 5 mg film-coated tablet, 30 932758011000036105 Aquinafil 5 mg film-coated tablet 932703011000036108 Aquinafil 932703011000036108 Aquinafil 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +20236011000036106 Azahexal 25 mg film-coated tablet, 100, blister pack 74404 13447011000036109 Azahexal 25 mg film-coated tablet, 100 6729011000036101 Azahexal 25 mg film-coated tablet 4051011000036105 Azahexal 4051011000036105 Azahexal 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +43777011000036100 Stilnox CR 6.25 mg modified release tablet, 28, blister pack 120707 41239011000036109 Stilnox CR 6.25 mg modified release tablet, 28 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46181011000036104 zolpidem tartrate 6.25 mg modified release tablet, 28 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +725681000168105 PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches 725671000168107 PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches 725661000168101 PKU Cooler 15 Purple oral liquid solution, 130 mL pouch 8661000168102 PKU Cooler 15 8661000168102 PKU Cooler 15 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +18131000036108 Vascalace 2.5 mg uncoated tablet, 30, bottle 175223 16741000036101 Vascalace 2.5 mg uncoated tablet, 30 15341000036105 Vascalace 2.5 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +933213721000036100 Citalopram (IPCA) 20 mg film-coated tablet, 500, bottle 158872 933203251000036101 Citalopram (IPCA) 20 mg film-coated tablet, 500 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203261000036103 citalopram 20 mg tablet, 500 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +804871000168104 Actonel 75 mg film-coated tablet, 4, blister pack 141530 804861000168105 Actonel 75 mg film-coated tablet, 4 804831000168102 Actonel 75 mg film-coated tablet 13171000168107 Actonel 13171000168107 Actonel 801001000168102 risedronate sodium 75 mg tablet, 4 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +59763011000036107 Rikodeine 19 mg/10 mL oral liquid solution, 30 mL, bottle 10587 55720011000036101 Rikodeine 19 mg/10 mL oral liquid solution, 30 mL 53614011000036103 Rikodeine 19 mg/10 mL oral liquid solution, 10 mL 53421011000036105 Rikodeine 53421011000036105 Rikodeine 63116011000036108 dihydrocodeine tartrate 19 mg/10 mL oral liquid, 30 mL 61860011000036106 dihydrocodeine tartrate 19 mg/10 mL oral liquid 34841011000036108 dihydrocodeine +43709011000036100 Refacto (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119164 41210011000036108 Refacto (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack 39956011000036106 Refacto (moroctocog alfa 250 units) powder for injection, 250 units vial 7771000168100 Refacto 7771000168100 Refacto 46161011000036102 moroctocog alfa 250 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45013011000036108 moroctocog alfa 250 units injection, vial 44868011000036107 moroctocog alfa +43709011000036100 Refacto (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119164 41210011000036108 Refacto (1 x 250 units vial, 1 x 4 mL inert diluent syringe), 1 pack 631401000168108 Refacto (inert substance) diluent, 4 mL syringe 7771000168100 Refacto 7771000168100 Refacto 46161011000036102 moroctocog alfa 250 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +77309011000036101 Water for Irrigation (Baxter) irrigation solution, 24 x 100 mL bottles 35657 76725011000036109 Water for Irrigation (Baxter) irrigation solution, 24 x 100 mL bottles 76143011000036101 Water for Irrigation (Baxter) irrigation solution, 100 mL bottle 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78239011000036105 water for irrigation solution, 24 x 100 mL bottles 77565011000036104 water for irrigation solution, 100 mL bottle 77440011000036107 water for irrigation +933231001000036102 Famciclovir (Chemmart) 500 mg film-coated tablet, 12, blister pack 172446 933225071000036106 Famciclovir (Chemmart) 500 mg film-coated tablet, 12 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 933224971000036106 famciclovir 500 mg tablet, 12 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +19585011000036104 Aropax 20 mg film-coated tablet, 30, blister pack 57927 12856011000036105 Aropax 20 mg film-coated tablet, 30 6147011000036102 Aropax 20 mg film-coated tablet 4035011000036108 Aropax 4035011000036108 Aropax 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +933230961000036108 Famciclovir (Apo) 500 mg film-coated tablet, 20, bottle 172445 933225011000036100 Famciclovir (Apo) 500 mg film-coated tablet, 20 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1075801000168104 Aripiprazole (Auro) 2 mg uncoated tablet, 56, blister pack 198190 1075791000168100 Aripiprazole (Auro) 2 mg uncoated tablet, 56 1075671000168105 Aripiprazole (Auro) 2 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 801671000168100 aripiprazole 2 mg tablet, 56 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +81181011000036107 Robitussin Chesty Cough 200 mg soft capsule, 24, blister pack 74414 80683011000036100 Robitussin Chesty Cough 200 mg soft capsule, 24 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81738011000036103 guaifenesin 200 mg capsule, 24 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +999781000168100 Memantine (Apotex) 10 mg film-coated tablet, 56, bottle 159579 999581000168106 Memantine (Apotex) 10 mg film-coated tablet, 56 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +940851000168100 Escitalopram (Apo) 5 mg film-coated tablet, 28, blister pack 146005 940841000168102 Escitalopram (Apo) 5 mg film-coated tablet, 28 940811000168101 Escitalopram (Apo) 5 mg film-coated tablet 35351000168108 Escitalopram (Apo) 35351000168108 Escitalopram (Apo) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +721341000168106 Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL, pump pack 114417 721331000168102 Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL 721311000168107 Difflam Forte Anti-Inflammatory Throat 0.3% oral spray 26571000168100 Difflam Forte Anti-Inflammatory Throat 26571000168100 Difflam Forte Anti-Inflammatory Throat 721321000168100 benzydamine hydrochloride 0.3% oral spray, 15 mL 721301000168109 benzydamine hydrochloride 0.3% oral spray 21819011000036105 benzydamine +69118011000036105 Strepsils honey and lemon lozenge, 24, blister pack 14975 66919011000036107 Strepsils honey and lemon lozenge, 24 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +712751000168105 Brintellix 10 mg film-coated tablet, 28, blister pack 203955 712741000168108 Brintellix 10 mg film-coated tablet, 28 712721000168102 Brintellix 10 mg film-coated tablet 712621000168109 Brintellix 712621000168109 Brintellix 712731000168104 vortioxetine 10 mg tablet, 28 712711000168109 vortioxetine 10 mg tablet 712651000168101 vortioxetine +1084341000168104 Salofalk 3 g modified release granules, 30 sachets 214810 1084331000168108 Salofalk 3 g modified release granules, 30 sachets 1084311000168103 Salofalk 3 g modified release granules, 3 g sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084321000168105 mesalazine 3 g modified release granules, 30 sachets 1084301000168101 mesalazine 3 g modified release granules, sachet 21351011000036101 mesalazine +20321011000036106 Tramal SR 150 mg modified release tablet, 20, blister pack 75948 13530011000036103 Tramal SR 150 mg modified release tablet, 20 6813011000036106 Tramal SR 150 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +44042011000036102 Vincristine Sulfate (Pfizer (Perth)) 2 mg/2 mL injection solution, 5 x 2 mL vials 48055 41531011000036101 Vincristine Sulfate (Pfizer (Perth)) 2 mg/2 mL injection solution, 5 x 2 mL vials 40043011000036107 Vincristine Sulfate (Pfizer (Perth)) 2 mg/2 mL injection solution, 2 mL vial 3033011000036109 Vincristine Sulfate (Pfizer (Perth)) 3033011000036109 Vincristine Sulfate (Pfizer (Perth)) 46366011000036103 vincristine sulfate 2 mg/2 mL injection, 5 x 2 mL vials 45109011000036101 vincristine sulfate 2 mg/2 mL injection, vial 21749011000036104 vincristine +884101000168100 Bosentan (Accord) 125 mg film-coated tablet, 56, blister pack 235892 884091000168105 Bosentan (Accord) 125 mg film-coated tablet, 56 884051000168100 Bosentan (Accord) 125 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +933212211000036106 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 56, blister pack 142236 933200921000036108 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 56 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200931000036105 donepezil hydrochloride 10 mg tablet, 56 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +170711000036100 Visacor 40 mg film-coated tablet, 30, blister pack 119136 169761000036101 Visacor 40 mg film-coated tablet, 30 169271000036102 Visacor 40 mg film-coated tablet 168721000036103 Visacor 168721000036103 Visacor 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +949531000168101 Metformin 1000 (AS) 1 g film-coated tablet, 60, blister pack 147412 949521000168104 Metformin 1000 (AS) 1 g film-coated tablet, 60 949471000168102 Metformin 1000 (AS) 1 g film-coated tablet 949461000168108 Metformin 1000 (AS) 949461000168108 Metformin 1000 (AS) 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +999741000168105 Memantine (Apotex) 10 mg film-coated tablet, 30, bottle 159579 999501000168103 Memantine (Apotex) 10 mg film-coated tablet, 30 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38840011000036102 memantine hydrochloride 10 mg tablet, 30 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +18231011000036100 Neo-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 121709 11685011000036102 Neo-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 5658011000036100 Neo-B12 1 mg/mL injection solution, ampoule 3673011000036102 Neo-B12 3673011000036102 Neo-B12 26736011000036106 hydroxocobalamin 1 mg/mL injection, 3 x 1 mL ampoules 22131011000036106 hydroxocobalamin 1 mg/mL injection, ampoule 21828011000036108 hydroxocobalamin +933212121000036109 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 56, blister pack 142235 933200751000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 56 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200761000036101 donepezil hydrochloride 5 mg tablet, 56 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1032861000168105 Ramipril (Apotex) 1.25 mg capsule, 30, blister pack 179031 1032851000168108 Ramipril (Apotex) 1.25 mg capsule, 30 1032841000168106 Ramipril (Apotex) 1.25 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +1000831000168105 Pregabalin (Apo) 100 mg hard capsule, 20, bottle 193248 1000821000168107 Pregabalin (Apo) 100 mg hard capsule, 20 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903511000168101 pregabalin 100 mg capsule, 20 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +61683011000036107 Febridol 500 mg uncoated tablet, 100, bottle 207317 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61683011000036107 Febridol 500 mg uncoated tablet, 100, bottle 213739 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61683011000036107 Febridol 500 mg uncoated tablet, 100, bottle 287227 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61683011000036107 Febridol 500 mg uncoated tablet, 100, bottle 98138 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +716001000168109 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack, composite pack 91895 715991000168108 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack 715901000168102 Probitor 20 mg enteric capsule 3868011000036108 Klacid Hp7 2966011000036108 Probitor 715931000168109 omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +716001000168109 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack, composite pack 91895 715991000168108 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack 7277011000036101 Amoxycillin (Sandoz) 500 mg hard capsule 3868011000036108 Klacid Hp7 3323011000036108 Amoxycillin (Sandoz) 715931000168109 omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +716001000168109 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack, composite pack 91895 715991000168108 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack 7489011000036101 Klacid 500 mg film-coated tablet 3868011000036108 Klacid Hp7 3147011000036106 Klacid 715931000168109 omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +799551000168107 Abyraz 15 mg uncoated tablet, 20, blister pack 159506 799541000168105 Abyraz 15 mg uncoated tablet, 20 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799531000168101 aripiprazole 15 mg tablet, 20 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1078931000168107 Paracetamol Infant Drops (Amcal) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 209696 1078921000168109 Paracetamol Infant Drops (Amcal) Colour Free 100 mg/mL oral liquid solution, 20 mL 1078911000168102 Paracetamol Infant Drops (Amcal) Colour Free 100 mg/mL oral liquid solution 1078901000168100 Paracetamol Infant Drops (Amcal) 1078901000168100 Paracetamol Infant Drops (Amcal) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +69563011000036107 Clearasil Pimple Treatment Tinted cream, 25 g, tube 60753 67363011000036102 Clearasil Pimple Treatment Tinted cream, 25 g 65630011000036108 Clearasil Pimple Treatment Tinted cream 29201000168102 Clearasil Pimple Treatment Tinted 29201000168102 Clearasil Pimple Treatment Tinted 71903011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream, 25 g 70241011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream 69816011000036101 bentonite + precipitated sulfur + triclosan +949371000168109 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, bottle 123673 949351000168100 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90 949341000168102 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet 949331000168106 Metformin Hydrochloride 1000 (Sandoz) 949331000168106 Metformin Hydrochloride 1000 (Sandoz) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +38221000036108 Escitalupin 5 mg film-coated tablet, 30, bottle 165837 34551000036107 Escitalupin 5 mg film-coated tablet, 30 33101000036100 Escitalupin 5 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +923706011000036107 Grandicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 147834 923295011000036108 Grandicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 922983011000036103 Grandicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924116011000036100 epoetin lambda 4000 units/0.4 mL injection, 0.4 mL syringe 923949011000036100 epoetin lambda 4000 units/0.4 mL injection, syringe 923930011000036107 epoetin lambda +20030011000036100 Monoplus 20/12.5 uncoated tablet, 30, bottle 68970 13262011000036103 Monoplus 20/12.5 uncoated tablet, 30 6544011000036103 Monoplus 20/12.5 uncoated tablet 37201000168109 Monoplus 20/12.5 37201000168109 Monoplus 20/12.5 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +121781000036104 Prezista 800 mg film-coated tablet, 30, bottle 199320 120751000036102 Prezista 800 mg film-coated tablet, 30 119711000036102 Prezista 800 mg film-coated tablet 32180011000036106 Prezista 32180011000036106 Prezista 120761000036104 darunavir 800 mg tablet, 30 119721000036109 darunavir 800 mg tablet 32622011000036101 darunavir +1051221000168107 Oxycodone (Sandoz) 80 mg modified release tablet, 60, blister pack 153591 785831000168102 Oxycodone (Sandoz) 80 mg modified release tablet, 60 676281000168105 Oxycodone (Sandoz) 80 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35206011000036108 oxycodone hydrochloride 80 mg modified release tablet, 60 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +1075711000168109 Aripiprazole (Auro) 2 mg uncoated tablet, 100, bottle 198180 1075701000168106 Aripiprazole (Auro) 2 mg uncoated tablet, 100 1075671000168105 Aripiprazole (Auro) 2 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 1014051000168102 aripiprazole 2 mg tablet, 100 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +1068741000168106 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 20, blister pack 193078 1068731000168102 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 20 1068701000168109 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +20389011000036103 Eprex 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 76973 13597011000036108 Eprex 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 6880011000036100 Eprex 8000 units/0.8 mL injection solution, 0.8 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27827011000036105 epoetin alfa 8000 units/0.8 mL injection, 6 x 0.8 mL syringes 23155011000036101 epoetin alfa 8000 units/0.8 mL injection, syringe 21294011000036104 epoetin alfa +1018331000168102 Amisulpride (Apotex) 100 mg tablet, 50, blister pack 178907 1018321000168100 Amisulpride (Apotex) 100 mg tablet, 50 1018291000168108 Amisulpride (Apotex) 100 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 84638011000036101 amisulpride 100 mg tablet, 50 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +943431000168102 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 150 mL bottles 48236 943421000168100 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 150 mL bottles 943401000168109 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 150 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 943411000168107 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 150 mL bottles 943391000168107 iohexol 755 mg (iodine 350 mg)/mL injection, 150 mL bottle 77459011000036103 iohexol +34730011000036103 Temgesic 200 microgram sublingual tablet, 50, blister pack 34091 34314011000036102 Temgesic 200 microgram sublingual tablet, 50 34037011000036100 Temgesic 200 microgram sublingual tablet 33926011000036105 Temgesic 33926011000036105 Temgesic 35163011000036104 buprenorphine 200 microgram sublingual tablet, 50 34885011000036104 buprenorphine 200 microgram sublingual tablet 21232011000036101 buprenorphine +1025641000168102 Pregabalin (Amneal) 25 mg hard capsule, 14, blister pack 235857 1025631000168106 Pregabalin (Amneal) 25 mg hard capsule, 14 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +20903011000036108 Sandrena 0.1% (1 mg/g) gel, 28 x 1 g sachets 93609 14061011000036102 Sandrena 0.1% (1 mg/g) gel, 28 x 1 g sachets 7339011000036101 Sandrena 0.1% (1 mg/g) gel, sachet 3739011000036109 Sandrena 3739011000036109 Sandrena 28116011000036100 estradiol 0.1% (1 mg/g) gel, 28 x 1 g sachets 23425011000036101 estradiol 0.1% (1 mg/g) gel, sachet 21238011000036103 estradiol +897351000168106 Elevit Morning Sickness Relief multilayer tablet, 30, bottle 199826 897341000168109 Elevit Morning Sickness Relief multilayer tablet, 30 897321000168103 Elevit Morning Sickness Relief multilayer tablet 897291000168106 Elevit Morning Sickness Relief 897291000168106 Elevit Morning Sickness Relief 897331000168100 ginger powder 600 mg + pyridoxine hydrochloride 37.5 mg tablet, 30 897311000168105 ginger powder 600 mg + pyridoxine hydrochloride 37.5 mg tablet 897301000168107 ginger powder + pyridoxine +828311000168101 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 60881 828301000168104 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 828251000168105 Hiberix (Haemophilus influenzae type b conjugate (PRP-T) vaccine) powder for injection, 10 microgram vial 73759011000036104 Hiberix 73759011000036104 Hiberix 828291000168100 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 828231000168104 Haemophilus influenzae type b conjugate (PRP-T) vaccine +828311000168101 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 60881 828301000168104 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 630631000168107 Hiberix (inert substance) diluent, 0.5 mL syringe 73759011000036104 Hiberix 73759011000036104 Hiberix 828291000168100 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +19739011000036105 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 61885 12993011000036104 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 6281011000036100 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL ampoule 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 27490011000036106 folinic acid 50 mg/5 mL injection, 10 x 5 mL ampoules 23575011000036108 folinic acid 50 mg/5 mL injection, ampoule 21617011000036108 folinic acid +121621000036107 Caprelsa 300 mg film-coated tablet, 30, blister pack 192497 120571000036103 Caprelsa 300 mg film-coated tablet, 30 119561000036107 Caprelsa 300 mg film-coated tablet 119171000036109 Caprelsa 119171000036109 Caprelsa 120581000036101 vandetanib 300 mg tablet, 30 119571000036104 vandetanib 300 mg tablet 121841000036100 vandetanib +18094011000036103 Onsetron 4 mg film-coated tablet, 4, blister pack 121359 11668011000036106 Onsetron 4 mg film-coated tablet, 4 5214011000036101 Onsetron 4 mg film-coated tablet 7751000168109 Onsetron 7751000168109 Onsetron 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +19241011000036102 Eldepryl 5 mg uncoated tablet, 100, bottle 47465 12532011000036106 Eldepryl 5 mg uncoated tablet, 100 4761011000036100 Eldepryl 5 mg uncoated tablet 4381011000036101 Eldepryl 4381011000036101 Eldepryl 27415011000036103 selegiline hydrochloride 5 mg tablet, 100 22763011000036109 selegiline hydrochloride 5 mg tablet 21925011000036108 selegiline +862871000168106 Amitriptyline (AC) 10 mg tablet, 100, blister pack 232105 862861000168100 Amitriptyline (AC) 10 mg tablet, 100 862831000168108 Amitriptyline (AC) 10 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +116321000036104 Appese-0.5 500 microgram film-coated tablet, 28, blister pack 140833 114591000036101 Appese-0.5 500 microgram film-coated tablet, 28 113541000036109 Appese-0.5 500 microgram film-coated tablet 59171000168100 Appese-0.5 59171000168100 Appese-0.5 46970011000036103 ropinirole 500 microgram tablet, 28 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +933246531000036107 Ciprofloxacin (PS) 500 mg film-coated tablet, 10, blister pack 148852 933243101000036104 Ciprofloxacin (PS) 500 mg film-coated tablet, 10 933241321000036108 Ciprofloxacin (PS) 500 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 933199771000036102 ciprofloxacin 500 mg tablet, 10 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +933230681000036105 Valaciclovir (Generic Health) 500 mg film-coated tablet, 42, blister pack 170178 933224781000036105 Valaciclovir (Generic Health) 500 mg film-coated tablet, 42 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +60859011000036100 Lorastyne 10 mg uncoated tablet, 10, blister pack 59231 56813011000036104 Lorastyne 10 mg uncoated tablet, 10 54088011000036101 Lorastyne 10 mg uncoated tablet 14761000168104 Lorastyne 14761000168104 Lorastyne 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +60868011000036102 Lorastyne Syrup 1 mg/mL oral liquid solution, 70 mL, bottle 59232 56822011000036101 Lorastyne Syrup 1 mg/mL oral liquid solution, 70 mL 54089011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution 27141000168100 Lorastyne Syrup 27141000168100 Lorastyne Syrup 63592011000036104 loratadine 1 mg/mL oral liquid, 70 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +43718011000036106 Stilnox CR 12.5 mg modified release tablet, 20, blister pack 120713 41245011000036108 Stilnox CR 12.5 mg modified release tablet, 20 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46187011000036107 zolpidem tartrate 12.5 mg modified release tablet, 20 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +851311000168109 Bivalirudin (Apotex) 250 mg powder for injection, 10 vials 241714 851301000168106 Bivalirudin (Apotex) 250 mg powder for injection, 10 vials 851211000168101 Bivalirudin (Apotex) 250 mg powder for injection, 250 mg vial 851181000168100 Bivalirudin (Apotex) 851181000168100 Bivalirudin (Apotex) 851291000168105 bivalirudin 250 mg injection, 10 vials 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +60038011000036106 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 96, blister pack 123811 56000011000036105 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 96 53752011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet 53547011000036106 Strong Pain Relief (Pharmacy Choice) 53547011000036106 Strong Pain Relief (Pharmacy Choice) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +60038011000036106 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 96, blister pack 167854 56000011000036105 Strong Pain Relief (Pharmacy Choice) uncoated tablet, 96 53752011000036107 Strong Pain Relief (Pharmacy Choice) uncoated tablet 53547011000036106 Strong Pain Relief (Pharmacy Choice) 53547011000036106 Strong Pain Relief (Pharmacy Choice) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +914751000168109 Carvedilol (AS) 3.125 mg uncoated tablet, 30, blister pack 194252 914741000168107 Carvedilol (AS) 3.125 mg uncoated tablet, 30 914731000168103 Carvedilol (AS) 3.125 mg uncoated tablet 914721000168101 Carvedilol (AS) 914721000168101 Carvedilol (AS) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +956521000168105 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 150 mL bags 49608 956511000168103 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 150 mL bags 956491000168108 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 150 mL bag 920924011000036100 Visipaque 920924011000036100 Visipaque 956501000168101 iodixanol 550 mg (iodine 270 mg)/mL injection, 10 x 150 mL bags 956481000168105 iodixanol 550 mg (iodine 270 mg)/mL injection, 150 mL bag 922032011000036109 iodixanol +933212371000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 30, blister pack 142238 933201161000036105 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 30 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200891000036104 donepezil hydrochloride 10 mg tablet, 30 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +738891000168104 Natural E 1000 IU (Blackmores) 670 mg (1000 units) soft capsule, 30, bottle 91950 738881000168102 Natural E 1000 IU (Blackmores) 670 mg (1000 units) soft capsule, 30 738861000168106 Natural E 1000 IU (Blackmores) 670 mg (1000 units) soft capsule 738701000168103 Natural E 1000 IU (Blackmores) 738701000168103 Natural E 1000 IU (Blackmores) 738871000168100 d-alpha-tocopherol 670 mg (1000 units) capsule, 30 738851000168109 d-alpha-tocopherol 670 mg (1000 units) capsule 77434011000036103 d-alpha-tocopherol +934821000168104 Zantac 75 mg film-coated tablet, 120, blister pack 55238 934811000168106 Zantac 75 mg film-coated tablet, 120 934701000168101 Zantac 75 mg film-coated tablet 3563011000036102 Zantac 3563011000036102 Zantac 934801000168108 ranitidine 75 mg tablet, 120 934691000168101 ranitidine 75 mg tablet 21682011000036109 ranitidine +44840011000036100 Enablex 15 mg modified release tablet, 98, blister pack 99439 42272011000036102 Enablex 15 mg modified release tablet, 98 40411011000036109 Enablex 15 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47025011000036102 darifenacin 15 mg modified release tablet, 98 45377011000036108 darifenacin 15 mg modified release tablet 44860011000036105 darifenacin +928914011000036106 Vaclovir 500 mg film-coated tablet, 4, blister pack 153822 928276011000036108 Vaclovir 500 mg film-coated tablet, 4 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929219011000036106 valaciclovir 500 mg tablet, 4 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +937791000168103 Famciclovir (FBM) 250 mg film-coated tablet, 21, blister pack 177000 937781000168101 Famciclovir (FBM) 250 mg film-coated tablet, 21 937691000168109 Famciclovir (FBM) 250 mg film-coated tablet 937681000168106 Famciclovir (FBM) 937681000168106 Famciclovir (FBM) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +692811000168105 Androforte 5% (50 mg/mL) cream, 50 mL, tube 123764 692801000168107 Androforte 5% (50 mg/mL) cream, 50 mL 692781000168108 Androforte 5% (50 mg/mL) cream 692761000168104 Androforte 692761000168104 Androforte 692791000168106 testosterone 5% (50 mg/mL) cream, 50 mL 692771000168105 testosterone 5% (50 mg/mL) cream 21290011000036109 testosterone +170851000036105 Seebri Breezhaler 50 microgram powder for inhalation, 30 capsules, blister pack 191517 169991000036106 Seebri Breezhaler 50 microgram powder for inhalation, 30 capsules 169191000036109 Seebri Breezhaler 50 microgram powder for inhalation, 1 capsule 50881000168100 Seebri Breezhaler 50881000168100 Seebri Breezhaler 170001000036104 glycopyrronium 50 microgram powder for inhalation, 30 capsules 169201000036106 glycopyrronium 50 microgram powder for inhalation, 1 capsule 171071000036103 glycopyrronium +914671000168109 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet, 7, blister pack 198390 914661000168103 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet, 7 914651000168100 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet 914641000168102 Candesartan HCTZ 16/12.5 (DRLA) 914641000168102 Candesartan HCTZ 16/12.5 (DRLA) 890801000168102 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 7 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +18607011000036102 Daktarin 2% lotion, 30 g, bottle 13286 11947011000036102 Daktarin 2% lotion, 30 g 4892011000036106 Daktarin 2% lotion 431000168100 Daktarin 431000168100 Daktarin 26814011000036106 miconazole nitrate 2% lotion, 30 g 22196011000036106 miconazole nitrate 2% lotion 21454011000036108 miconazole +939161000168100 Ondansetron (Sandoz) 8 mg film-coated tablet, 4, blister pack 132574 939151000168102 Ondansetron (Sandoz) 8 mg film-coated tablet, 4 939141000168104 Ondansetron (Sandoz) 8 mg film-coated tablet 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +687101000168100 Venlafaxine XR (Blooms The Chemist) 75 mg modified release capsule, 28, blister pack 177456 687091000168105 Venlafaxine XR (Blooms The Chemist) 75 mg modified release capsule, 28 687081000168107 Venlafaxine XR (Blooms The Chemist) 75 mg modified release capsule 687071000168109 Venlafaxine XR (Blooms The Chemist) 687071000168109 Venlafaxine XR (Blooms The Chemist) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +888761000168109 Bosentan (Astron) 125 mg film-coated tablet, 500, bottle 235889 888751000168107 Bosentan (Astron) 125 mg film-coated tablet, 500 888701000168108 Bosentan (Astron) 125 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884191000168106 bosentan 125 mg tablet, 500 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +884421000168101 Bosentan (Sun) 62.5 mg film-coated tablet, 56, blister pack 257755 884411000168108 Bosentan (Sun) 62.5 mg film-coated tablet, 56 884401000168105 Bosentan (Sun) 62.5 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1084661000168107 Disodium Edetate (Biological Therapies) 3 g powder for injection, 1 vial 22277 1084651000168105 Disodium Edetate (Biological Therapies) 3 g powder for injection, 1 vial 1084631000168104 Disodium Edetate (Biological Therapies) 3 g powder for injection, vial 680761000168104 Disodium Edetate (Biological Therapies) 680761000168104 Disodium Edetate (Biological Therapies) 1084641000168108 edetate disodium 3 g injection, 1 vial 1084621000168102 edetate disodium 3 g injection, vial 85074011000036106 edetic acid +25211000036108 Simvastatin (Sandoz) 10 mg film-coated tablet, 30, blister pack 114797 22121000036102 Simvastatin (Sandoz) 10 mg film-coated tablet, 30 20541000036102 Simvastatin (Sandoz) 10 mg film-coated tablet 933234211000036105 Simvastatin (Sandoz) 933234211000036105 Simvastatin (Sandoz) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +798021000168102 Ondansetron (Accord) 4 mg/2 mL injection solution, 10 x 2 mL ampoules 205590 798011000168109 Ondansetron (Accord) 4 mg/2 mL injection solution, 10 x 2 mL ampoules 797981000168100 Ondansetron (Accord) 4 mg/2 mL injection solution, 2 mL ampoule 797971000168103 Ondansetron (Accord) 797971000168103 Ondansetron (Accord) 922698011000036105 ondansetron 4 mg/2 mL injection, 10 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +37464011000036102 Streptase 1 500 000 units powder for injection, 1 vial 12418 36734011000036102 Streptase 1 500 000 units powder for injection, 1 vial 36162011000036109 Streptase 1 500 000 units powder for injection, 1 500 000 units vial 35967011000036106 Streptase 35967011000036106 Streptase 38644011000036102 streptokinase 1 500 000 units injection, 1 vial 37899011000036108 streptokinase 1 500 000 units injection, vial 37726011000036108 streptokinase +69092011000036100 Omeprazole (Apo) 20 mg enteric tablet, 30, bottle 147425 66893011000036104 Omeprazole (Apo) 20 mg enteric tablet, 30 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +69092011000036100 Omeprazole (Apo) 20 mg enteric tablet, 30, bottle 193617 66893011000036104 Omeprazole (Apo) 20 mg enteric tablet, 30 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +69092011000036100 Omeprazole (Apo) 20 mg enteric tablet, 30, bottle 243813 66893011000036104 Omeprazole (Apo) 20 mg enteric tablet, 30 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +933212281000036103 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 30, blister pack 142237 933201051000036106 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 30 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200721000036105 donepezil hydrochloride 5 mg tablet, 30 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +844101000168108 Eskazole 400 mg tablet, 60, bottle 97505 844091000168103 Eskazole 400 mg tablet, 60 844071000168104 Eskazole 400 mg tablet 3706011000036108 Eskazole 3706011000036108 Eskazole 844081000168101 albendazole 400 mg tablet, 60 844061000168105 albendazole 400 mg tablet 21425011000036106 albendazole +849901000168109 Itranox 100 mg hard capsule, 28, blister pack 244432 849891000168105 Itranox 100 mg hard capsule, 28 849721000168102 Itranox 100 mg hard capsule 849661000168104 Itranox 849661000168104 Itranox 848911000168104 itraconazole 100 mg capsule, 28 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +865701000168102 Amitriptyline (PN) 25 mg tablet, 90, blister pack 232148 865691000168102 Amitriptyline (PN) 25 mg tablet, 90 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +61186011000036100 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 96, bottle 75200 57414011000036106 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 96 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +82876011000036100 Maxydol uncoated tablet, 20, blister pack 157576 82783011000036104 Maxydol uncoated tablet, 20 82693011000036107 Maxydol uncoated tablet 82668011000036100 Maxydol 82668011000036100 Maxydol 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +68896011000036100 Bepanthen First Aid Antiseptic 0.55% cream, 100 g, tube 131912 66746011000036104 Bepanthen First Aid Antiseptic 0.55% cream, 100 g 65453011000036104 Bepanthen First Aid Antiseptic 0.55% cream 42871000168100 Bepanthen First Aid Antiseptic 42871000168100 Bepanthen First Aid Antiseptic 71410011000036101 chlorhexidine hydrochloride 0.55% cream, 100 g 70000011000036103 chlorhexidine hydrochloride 0.55% cream 21404011000036101 chlorhexidine +18924011000036103 Flarex 0.1% eye drops suspension, 5 mL, bottle 25278 12232011000036103 Flarex 0.1% eye drops suspension, 5 mL 4919011000036107 Flarex 0.1% eye drops suspension 3843011000036109 Flarex 3843011000036109 Flarex 27000011000036104 fluorometholone acetate 0.1% eye drops, 5 mL 22373011000036103 fluorometholone acetate 0.1% eye drops 21914011000036101 fluorometholone acetate +933213401000036100 Citalopram (IPCA) 40 mg film-coated tablet, 7, bottle 158855 933202921000036109 Citalopram (IPCA) 40 mg film-coated tablet, 7 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202931000036106 citalopram 40 mg tablet, 7 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +17811000036105 Seronia 100 mg film-coated tablet, 90, blister pack 143710 16531000036101 Seronia 100 mg film-coated tablet, 90 15411000036104 Seronia 100 mg film-coated tablet 15121000036100 Seronia 15121000036100 Seronia 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1027011000168101 Pregabalin (Amneal) 300 mg hard capsule, 20, bottle 235869 1027001000168104 Pregabalin (Amneal) 300 mg hard capsule, 20 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +802361000168107 Abilify ODT 10 mg orally disintegrating tablet, 5, blister pack 128893 802351000168105 Abilify ODT 10 mg orally disintegrating tablet, 5 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802341000168108 aripiprazole 10 mg orally disintegrating tablet, 5 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +80033011000036103 Topiramate (Sandoz) 100 mg film-coated tablet, 60, bottle 135794 79950011000036101 Topiramate (Sandoz) 100 mg film-coated tablet, 60 79911011000036100 Topiramate (Sandoz) 100 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +1080301000168108 Salofalk 1 g enteric tablet, 90, blister pack 285903 1080291000168107 Salofalk 1 g enteric tablet, 90 1080151000168109 Salofalk 1 g enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 1080281000168109 mesalazine 1 g enteric tablet, 90 1080141000168107 mesalazine 1 g enteric tablet 21351011000036101 mesalazine +69255011000036108 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 19471 67055011000036106 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 65448011000036107 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 1 L bag 14561000168106 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 14561000168106 Potassium Chloride 0.224% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 71625011000036101 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, 1 L bag 70098011000036104 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +38141000036106 Escital 5 mg film-coated tablet, 30, bottle 165833 34471000036103 Escital 5 mg film-coated tablet, 30 32351000036108 Escital 5 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +930501000168100 Cavstat 5 mg film-coated tablet, 28, blister pack 234543 930491000168107 Cavstat 5 mg film-coated tablet, 28 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930481000168109 rosuvastatin 5 mg tablet, 28 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +933246851000036101 Pantoprazole (PS) 20 mg enteric tablet, 28, blister pack 158196 933243681000036100 Pantoprazole (PS) 20 mg enteric tablet, 28 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46674011000036109 pantoprazole 20 mg enteric tablet, 28 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1076031000168109 Aripiprazole (Auro) 15 mg uncoated tablet, 28, blister pack 198187 1076021000168106 Aripiprazole (Auro) 15 mg uncoated tablet, 28 1076011000168104 Aripiprazole (Auro) 15 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 788021000168103 aripiprazole 15 mg tablet, 28 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +871501000168104 Nitrostat 300 microgram sublingual tablet, 100, bottle 871491000168106 Nitrostat 300 microgram sublingual tablet, 100 871471000168105 Nitrostat 300 microgram sublingual tablet 871451000168101 Nitrostat 871451000168101 Nitrostat 871481000168108 glyceryl trinitrate 300 microgram sublingual tablet, 100 871461000168104 glyceryl trinitrate 300 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +19798011000036105 Cephalothin (DBL) 1 g powder for injection, 10 vials 63203 13055011000036108 Cephalothin (DBL) 1 g powder for injection, 10 vials 6339011000036100 Cephalothin (DBL) 1 g powder for injection, vial 3041011000036109 Cephalothin (DBL) 3041011000036109 Cephalothin (DBL) 27524011000036100 cefalotin 1 g injection, 10 vials 22864011000036109 cefalotin 1 g injection, vial 21844011000036103 cefalotin +681481000168106 Betmiga 50 mg modified release tablet, 30, blister pack 199668 681471000168108 Betmiga 50 mg modified release tablet, 30 681451000168104 Betmiga 50 mg modified release tablet 681211000168101 Betmiga 681211000168101 Betmiga 681461000168102 mirabegron 50 mg modified release tablet, 30 681441000168101 mirabegron 50 mg modified release tablet 681341000168108 mirabegron +116161000036106 Oratane 5 mg soft capsule, 60, blister pack 127499 114401000036105 Oratane 5 mg soft capsule, 60 113441000036105 Oratane 5 mg soft capsule 3045011000036106 Oratane 3045011000036106 Oratane 114411000036107 isotretinoin 5 mg capsule, 60 113451000036108 isotretinoin 5 mg capsule 21546011000036107 isotretinoin +50656011000036103 Stalevo 200/50/200 film-coated tablet, 100, bottle 146890 49680011000036102 Stalevo 200/50/200 film-coated tablet, 100 48816011000036108 Stalevo 200/50/200 film-coated tablet 11001000168100 Stalevo 200/50/200 11001000168100 Stalevo 200/50/200 51558011000036100 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 100 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +900411000168105 Ampicillin (Agila) 500 mg powder for injection, 5 vials 203930 900401000168107 Ampicillin (Agila) 500 mg powder for injection, 5 vials 900391000168105 Ampicillin (Agila) 500 mg powder for injection, 500 mg vial 900381000168107 Ampicillin (Agila) 900381000168107 Ampicillin (Agila) 28098011000036109 ampicillin 500 mg injection, 5 vials 23406011000036103 ampicillin 500 mg injection, vial 21671011000036106 ampicillin +1007001000168106 Maxatan 10 mg orally disintegrating tablet, 6, blister pack 222209 1006991000168104 Maxatan 10 mg orally disintegrating tablet, 6 1006901000168105 Maxatan 10 mg orally disintegrating tablet 1006861000168104 Maxatan 1006861000168104 Maxatan 742351000168101 rizatriptan 10 mg orally disintegrating tablet, 6 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +12561000036106 Clopidogrel (GH) 75 mg film-coated tablet, 28, blister pack 164870 7651000036107 Clopidogrel (GH) 75 mg film-coated tablet, 28 3221000036106 Clopidogrel (GH) 75 mg film-coated tablet 1011000036106 Clopidogrel (GH) 1011000036106 Clopidogrel (GH) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +931605011000036100 Pratin 80 mg film-coated tablet, 30, bottle 163559 930766011000036106 Pratin 80 mg film-coated tablet, 30 930039011000036106 Pratin 80 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +933246811000036100 Pantoprazole (PS) 20 mg enteric tablet, 100, blister pack 158196 933243641000036109 Pantoprazole (PS) 20 mg enteric tablet, 100 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46670011000036104 pantoprazole 20 mg enteric tablet, 100 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1052991000168106 Tramadol SR (Sandoz) 100 mg modified release tablet, 20, bottle 99248 926350011000036106 Tramadol SR (Sandoz) 100 mg modified release tablet, 20 925777011000036105 Tramadol SR (Sandoz) 100 mg modified release tablet 32631000168103 Tramadol SR (Sandoz) 32631000168103 Tramadol SR (Sandoz) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +17819011000036109 Avandamet 4/500 film-coated tablet, 56, blister pack 114517 11479011000036108 Avandamet 4/500 film-coated tablet, 56 5469011000036100 Avandamet 4/500 film-coated tablet 20521000168103 Avandamet 4/500 20521000168103 Avandamet 4/500 26664011000036100 rosiglitazone 4 mg + metformin hydrochloride 500 mg tablet, 56 22064011000036108 rosiglitazone 4 mg + metformin hydrochloride 500 mg tablet 21426011000036104 rosiglitazone + metformin +1015541000168109 Aripiprazole (Medis) 2 mg uncoated tablet, 30, blister pack 217222 1015531000168100 Aripiprazole (Medis) 2 mg uncoated tablet, 30 1015521000168103 Aripiprazole (Medis) 2 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +1025721000168101 Neuroccord 300 mg hard capsule, 14, bottle 235861 1025711000168108 Neuroccord 300 mg hard capsule, 14 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1001111000168104 Pregabalin (Apo) 50 mg hard capsule, 500, bottle 193246 1001101000168102 Pregabalin (Apo) 50 mg hard capsule, 500 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1001091000168107 pregabalin 50 mg capsule, 500 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +50460011000036105 Profore Lite (66050415) four layer bandage, 1, carton 49310011000036105 Profore Lite (66050415) four layer bandage, 1 48508011000036108 Profore Lite (66050415) four layer bandage 38841000168106 Profore Lite (66050415) 38841000168106 Profore Lite (66050415) 51293011000036107 bandage compression four layer bandage, 1 50822011000036105 bandage compression four layer bandage 50716011000036103 bandage compression +61006011000036106 Paracetamol Children's Drops 1 Month to 2 Years (Pharmacy Choice) 100 mg/mL oral liquid solution, 20 mL, bottle 64501 56949011000036103 Paracetamol Children's Drops 1 Month to 2 Years (Pharmacy Choice) 100 mg/mL oral liquid solution, 20 mL 54135011000036105 Paracetamol Children's Drops 1 Month to 2 Years (Pharmacy Choice) 100 mg/mL oral liquid solution 41791000168100 Paracetamol Children's Drops 1 Month to 2 Years (Pharmacy Choice) 41791000168100 Paracetamol Children's Drops 1 Month to 2 Years (Pharmacy Choice) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +932031000168101 Centevo 50/12.5/200 mg film-coated tablet, 30, bottle 238152 932021000168104 Centevo 50/12.5/200 mg film-coated tablet, 30 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932011000168106 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 30 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +44445011000036104 Pentothal 500 mg powder for injection, 84 vials 73505 41901011000036104 Pentothal 500 mg powder for injection, 84 vials 40254011000036102 Pentothal 500 mg powder for injection, 500 mg vial 39749011000036109 Pentothal 39749011000036109 Pentothal 46699011000036100 thiopental sodium 500 mg injection, 84 vials 45273011000036107 thiopental sodium 500 mg injection, vial 44938011000036109 thiopental +717321000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 500, bottle 167313 717301000168108 Omeprazole (Pharmacor) 20 mg enteric capsule, 500 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716681000168109 omeprazole 20 mg enteric capsule, 500 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +798181000168102 Abipra 15 mg uncoated tablet, 30, blister pack 173805 798171000168100 Abipra 15 mg uncoated tablet, 30 798161000168106 Abipra 15 mg uncoated tablet 798151000168109 Abipra 798151000168109 Abipra 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +929669011000036108 Acris Once-a-Week 35 mg film-coated tablet, 10, blister pack 163785 929505011000036103 Acris Once-a-Week 35 mg film-coated tablet, 10 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 22031000168106 Acris Once-a-Week 22031000168106 Acris Once-a-Week 929753011000036106 risedronate sodium 35 mg tablet, 10 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +32555011000036102 Meloxicam (Pharmacor) 15 mg uncoated tablet, 30, blister pack 127416 32347011000036107 Meloxicam (Pharmacor) 15 mg uncoated tablet, 30 32224011000036108 Meloxicam (Pharmacor) 15 mg uncoated tablet 32185011000036102 Meloxicam (Pharmacor) 32185011000036102 Meloxicam (Pharmacor) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +60842011000036108 Aspro Clear 300 mg effervescent tablet, 20, strip pack 58566 56798011000036106 Aspro Clear 300 mg effervescent tablet, 20 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 83271000036105 aspirin 300 mg effervescent tablet, 20 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +888681000168105 Bosentan (Intas) 62.5 mg film-coated tablet, 112, blister pack 235897 888671000168107 Bosentan (Intas) 62.5 mg film-coated tablet, 112 888071000168100 Bosentan (Intas) 62.5 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884361000168101 bosentan 62.5 mg tablet, 112 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +933213561000036102 Citalopram (IPCA) 10 mg film-coated tablet, 250, bottle 158869 933203021000036101 Citalopram (IPCA) 10 mg film-coated tablet, 250 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203031000036104 citalopram 10 mg tablet, 250 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +79716011000036104 Potassium Acetate (DBL) 2.45 g (potassium 25 mmol)/5 mL concentrated injection, 50 x 5 mL ampoules 16266 79527011000036109 Potassium Acetate (DBL) 2.45 g (potassium 25 mmol)/5 mL concentrated injection, 50 x 5 mL ampoules 79395011000036108 Potassium Acetate (DBL) 2.45 g (potassium 25 mmol)/5 mL concentrated injection, 5 mL ampoule 79347011000036108 Potassium Acetate (DBL) 79347011000036108 Potassium Acetate (DBL) 79833011000036102 potassium acetate 2.45 g (potassium 25 mmol)/5 mL injection, 50 x 5 mL ampoules 79751011000036101 potassium acetate 2.45 g (potassium 25 mmol)/5 mL injection, ampoule 988221000168100 potassium acetate +734541000168103 Zoledronic Acid (DBL) 4 mg/100 mL injection solution, 100 mL bag 188261 734531000168107 Zoledronic Acid (DBL) 4 mg/100 mL injection solution, 100 mL bag 734511000168102 Zoledronic Acid (DBL) 4 mg/100 mL injection solution, 100 mL bag 730711000168103 Zoledronic Acid (DBL) 730711000168103 Zoledronic Acid (DBL) 734521000168109 zoledronic acid 4 mg/100 mL injection, 100 mL bag 734501000168100 zoledronic acid 4 mg/100 mL injection, bag 21790011000036102 zoledronic acid +665421000168108 Remifentanil (Sandoz) 2 mg powder for injection, 5 vials 195287 665411000168101 Remifentanil (Sandoz) 2 mg powder for injection, 5 vials 665401000168104 Remifentanil (Sandoz) 2 mg powder for injection, 2 mg vial 665361000168108 Remifentanil (Sandoz) 665361000168108 Remifentanil (Sandoz) 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +717281000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 50, blister pack 149417 717271000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 50 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716641000168104 omeprazole 20 mg enteric capsule, 50 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +1078771000168108 Atomoxetine (GPPL) 40 mg hard capsule, 56, blister pack 234840 1078761000168102 Atomoxetine (GPPL) 40 mg hard capsule, 56 1078691000168103 Atomoxetine (GPPL) 40 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830721000168108 atomoxetine 40 mg capsule, 56 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +61339011000036108 Panadol Mini Cap 500 mg gelatin coated tablet, 24, blister pack 81007 57264011000036109 Panadol Mini Cap 500 mg gelatin coated tablet, 24 54256011000036104 Panadol Mini Cap 500 mg gelatin coated tablet 25261000168103 Panadol Mini Cap 25261000168103 Panadol Mini Cap 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +43948011000036105 Omeprazole (Ranbaxy) 20 mg enteric tablet, 30, bottle 150599 41440011000036103 Omeprazole (Ranbaxy) 20 mg enteric tablet, 30 39808011000036108 Omeprazole (Ranbaxy) 20 mg enteric tablet 39586011000036109 Omeprazole (Ranbaxy) 39586011000036109 Omeprazole (Ranbaxy) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +695851000168100 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g, screw cap jar 695841000168102 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g 695821000168108 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream 51501000168103 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) 51501000168103 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) 695831000168106 salicylic acid 2% + precipitated sulfur 2% + aqueous cream, 100 g 695811000168101 salicylic acid 2% + precipitated sulfur 2% + aqueous cream 69871011000036100 salicylic acid + precipitated sulfur + aqueous cream +43931011000036102 Clopine 50 mg/mL oral liquid suspension, 100 mL, bottle 142239 41423011000036108 Clopine 50 mg/mL oral liquid suspension, 100 mL 39830011000036104 Clopine 50 mg/mL oral liquid suspension 3146011000036108 Clopine 3146011000036108 Clopine 46291011000036102 clozapine 50 mg/mL oral liquid, 100 mL 45056011000036109 clozapine 50 mg/mL oral liquid 21222011000036104 clozapine +19062011000036107 Retrovir 50 mg/5 mL oral liquid solution, 200 mL, bottle 41043 12370011000036107 Retrovir 50 mg/5 mL oral liquid solution, 200 mL 4695011000036105 Retrovir 50 mg/5 mL oral liquid solution, 5 mL 3895011000036100 Retrovir 3895011000036100 Retrovir 27082011000036104 zidovudine 50 mg/5 mL oral liquid, 200 mL 22451011000036106 zidovudine 50 mg/5 mL oral liquid 21429011000036108 zidovudine +1076121000168107 Aripiprazole (Auro) 15 mg uncoated tablet, 100, bottle 198186 1076111000168100 Aripiprazole (Auro) 15 mg uncoated tablet, 100 1076011000168104 Aripiprazole (Auro) 15 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +815381000168107 Tevatrexed 100 mg powder for injection, 1 vial 232160 815371000168109 Tevatrexed 100 mg powder for injection, 1 vial 815361000168103 Tevatrexed 100 mg powder for injection, 100 mg vial 815321000168108 Tevatrexed 815321000168108 Tevatrexed 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +44386011000036107 Somac 40 mg enteric tablet, 100, bottle 69791 41847011000036107 Somac 40 mg enteric tablet, 100 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46653011000036109 pantoprazole 40 mg enteric tablet, 100 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +926875011000036101 Wart Removal System (Scholl) Washproof 40% medicated dressing, 15 applications, wrapping 53606 926271011000036107 Wart Removal System (Scholl) Washproof 40% medicated dressing, 15 applications 925716011000036103 Wart Removal System (Scholl) Washproof 40% medicated dressing, application 421000168103 Wart Removal System (Scholl) 421000168103 Wart Removal System (Scholl) 927375011000036100 salicylic acid 40% dressing, 15 applications 927018011000036100 salicylic acid 40% dressing, application 52232011000036106 salicylic acid +1070111000168102 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet, 12, blister pack 188893 1070101000168100 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet, 12 1070091000168105 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet 1070061000168103 Pain Relief Paracetamol plus Codeine 15 (Cipla) 1070061000168103 Pain Relief Paracetamol plus Codeine 15 (Cipla) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +60568011000036103 Panalgesic hard capsule, 24, blister pack 15489 56526011000036101 Panalgesic hard capsule, 24 53953011000036109 Panalgesic hard capsule 53207011000036109 Panalgesic 53207011000036109 Panalgesic 63396011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg capsule, 24 61938011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg capsule 37813011000036109 paracetamol + codeine + doxylamine +43872011000036104 Felodil XR 5 mg modified release tablet, 30, blister pack 128793 41368011000036102 Felodil XR 5 mg modified release tablet, 30 39884011000036102 Felodil XR 5 mg modified release tablet 43531000168107 Felodil XR 43531000168107 Felodil XR 27475011000036108 felodipine 5 mg modified release tablet, 30 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +1024031000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 6, blister pack 227167 1024021000168102 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 6 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +933230641000036101 Valaciclovir (Generic Health) 500 mg film-coated tablet, 20, blister pack 170178 933224721000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet, 20 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +19395011000036103 Maxipime 2 g powder for injection, 1 bottle 52809 12680011000036107 Maxipime 2 g powder for injection, 1 bottle 4486011000036102 Maxipime 2 g powder for injection, 2 g bottle 3139011000036100 Maxipime 3139011000036100 Maxipime 27281011000036104 cefepime 2 g injection, 1 bottle 22636011000036100 cefepime 2 g injection, bottle 21558011000036108 cefepime +61520011000036102 Pepzan Relief 20 mg film-coated tablet, 20, blister pack 93495 57445011000036101 Pepzan Relief 20 mg film-coated tablet, 20 54305011000036107 Pepzan Relief 20 mg film-coated tablet 6341000168109 Pepzan Relief 6341000168109 Pepzan Relief 63862011000036101 famotidine 20 mg tablet, 20 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +667091000168108 Telmisartan (RBX) 40 mg uncoated tablet, 28, blister pack 199451 667081000168105 Telmisartan (RBX) 40 mg uncoated tablet, 28 667071000168107 Telmisartan (RBX) 40 mg uncoated tablet 667061000168101 Telmisartan (RBX) 667061000168101 Telmisartan (RBX) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +964861000168103 Physiotens 300 microgram film-coated tablet, 98, blister pack 114120 964851000168100 Physiotens 300 microgram film-coated tablet, 98 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964431000168109 moxonidine 300 microgram tablet, 98 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +69418011000036106 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 300 g, jar 47538 67218011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 300 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71769011000036104 psyllium husk powder 578 mg/g powder for oral liquid, 300 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +862321000168103 Ostelin Vitamin D and Calcium film-coated tablet, 60, bottle 200088 862311000168105 Ostelin Vitamin D and Calcium film-coated tablet, 60 862241000168103 Ostelin Vitamin D and Calcium film-coated tablet 920102011000036100 Ostelin Vitamin D and Calcium 920102011000036100 Ostelin Vitamin D and Calcium 733981000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +862321000168103 Ostelin Vitamin D and Calcium film-coated tablet, 60, bottle 114144 862311000168105 Ostelin Vitamin D and Calcium film-coated tablet, 60 862241000168103 Ostelin Vitamin D and Calcium film-coated tablet 920102011000036100 Ostelin Vitamin D and Calcium 920102011000036100 Ostelin Vitamin D and Calcium 733981000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +19730011000036104 Prothiaden 75 mg sugar coated tablet, 30, blister pack 61568 12983011000036103 Prothiaden 75 mg sugar coated tablet, 30 6272011000036102 Prothiaden 75 mg sugar coated tablet 3346011000036100 Prothiaden 3346011000036100 Prothiaden 27514011000036108 dosulepin (dothiepin) hydrochloride 75 mg tablet, 30 22856011000036109 dosulepin (dothiepin) hydrochloride 75 mg tablet 21722011000036107 dosulepin (dothiepin) +667431000168101 Kaptan 300 mg film-coated tablet, 90, blister pack 202245 667421000168104 Kaptan 300 mg film-coated tablet, 90 667361000168104 Kaptan 300 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 667411000168106 quetiapine 300 mg tablet, 90 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +933247081000036104 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 84, blister pack 158413 933243901000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 84 933241491000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet 933241021000036106 Prochlorperazine Maleate (PS) 933241021000036106 Prochlorperazine Maleate (PS) 924175011000036102 prochlorperazine maleate 5 mg tablet, 84 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +925308011000036103 Cosucor 50 mg film-coated tablet, 28, blister pack 162830 924845011000036107 Cosucor 50 mg film-coated tablet, 28 924528011000036102 Cosucor 50 mg film-coated tablet 924372011000036102 Cosucor 924372011000036102 Cosucor 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1025001000168107 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 56, blister pack 193302 1024991000168101 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 56 1024941000168109 Pregabalin (Blooms The Chemist) 150 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +61597011000036109 Sinus with Antihistamine (Terry White Chemists) uncoated tablet, 24, blister pack 95856 57519011000036104 Sinus with Antihistamine (Terry White Chemists) uncoated tablet, 24 54337011000036106 Sinus with Antihistamine (Terry White Chemists) uncoated tablet 53477011000036101 Sinus with Antihistamine (Terry White Chemists) 53477011000036101 Sinus with Antihistamine (Terry White Chemists) 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +686621000168100 Healthpro diagnostic strip, 50, bottle 223366 686611000168107 Healthpro diagnostic strip, 50 686601000168109 Healthpro diagnostic strip 686591000168102 Healthpro 686591000168102 Healthpro 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +80975011000036105 Resdone 3 mg film-coated tablet, 50, blister pack 147674 80546011000036105 Resdone 3 mg film-coated tablet, 50 80185011000036100 Resdone 3 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81628011000036108 risperidone 3 mg tablet, 50 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +21143011000036107 Aeron 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 98648 14285011000036107 Aeron 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 7571011000036101 Aeron 500 microgram/mL inhalation solution, ampoule 3743011000036107 Aeron 3743011000036107 Aeron 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +59780011000036102 Fiorinal uncoated tablet, 24, blister pack 10205 55677011000036106 Fiorinal uncoated tablet, 24 53701011000036107 Fiorinal uncoated tablet 20121000168105 Fiorinal 20121000168105 Fiorinal 63089011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg tablet, 24 61853011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +933212531000036100 Ranitidine (GN) 150 mg film-coated tablet, 60, blister pack 148523 933202211000036109 Ranitidine (GN) 150 mg film-coated tablet, 60 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +33617011000036103 Lyrica 150 mg hard capsule, 56, blister pack 99528 33354011000036108 Lyrica 150 mg hard capsule, 56 33112011000036104 Lyrica 150 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +827761000168101 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 80091 827751000168103 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 637621000168108 Menomune-A/C/Y/W-135 (inert substance) diluent, 0.5 mL vial 73740011000036108 Menomune-A/C/Y/W-135 73740011000036108 Menomune-A/C/Y/W-135 827711000168104 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 634321000168107 inert substance diluent, 0.5 mL vial 21220011000036103 inert substance +827761000168101 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 80091 827751000168103 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 827741000168100 Menomune-A/C/Y/W-135 (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial 73740011000036108 Menomune-A/C/Y/W-135 73740011000036108 Menomune-A/C/Y/W-135 827711000168104 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 827691000168102 meningococcal quadrivalent polysaccharide vaccine injection, vial 827681000168100 meningococcal quadrivalent polysaccharide vaccine +1076191000168109 Quetiapine (Auro) 300 mg film-coated tablet, 20, blister pack 172832 1076181000168106 Quetiapine (Auro) 300 mg film-coated tablet, 20 1075571000168106 Quetiapine (Auro) 300 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +60740011000036106 Feldene 0.5% gel, 50 g, tube 49700 56698011000036103 Feldene 0.5% gel, 50 g 54038011000036108 Feldene 0.5% gel 8391000168102 Feldene 8391000168102 Feldene 63516011000036104 piroxicam 0.5% gel, 50 g 61999011000036105 piroxicam 0.5% gel 21531011000036103 piroxicam +994811000168104 Cisatracurium (Apo) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 237310 994801000168102 Cisatracurium (Apo) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 994791000168103 Cisatracurium (Apo) 20 mg/10 mL injection solution, 10 mL ampoule 994781000168101 Cisatracurium (Apo) 994781000168101 Cisatracurium (Apo) 909161000168108 cisatracurium 20 mg/10 mL injection, 5 x 10 mL ampoules 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +156741000036103 Paroxetine (GN) 20 mg film-coated tablet, 30, blister pack 154655 155751000036109 Paroxetine (GN) 20 mg film-coated tablet, 30 154981000036100 Paroxetine (GN) 20 mg film-coated tablet 154551000036104 Paroxetine (GN) 154551000036104 Paroxetine (GN) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +82320011000036101 Hydrogen Peroxide (David Craig) 3% solution, 400 mL, bottle 14218 82138011000036109 Hydrogen Peroxide (David Craig) 3% solution, 400 mL 82006011000036107 Hydrogen Peroxide (David Craig) 3% solution 76018011000036107 Hydrogen Peroxide (David Craig) 76018011000036107 Hydrogen Peroxide (David Craig) 82529011000036109 hydrogen peroxide 3% solution, 400 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +665241000168103 Comprilan (01027-00) 8 cm x 2.6 m short stretch bandage, 1, carton 665231000168107 Comprilan (01027-00) 8 cm x 2.6 m short stretch bandage, 1 665211000168102 Comprilan (01027-00) 8 cm x 2.6 m short stretch bandage 30521000168101 Comprilan (01027-00) 30521000168101 Comprilan (01027-00) 665221000168109 bandage compression 8 cm x 2.6 m short stretch bandage, 1 665201000168100 bandage compression 8 cm x 2.6 m short stretch bandage 50716011000036103 bandage compression +947701000168105 Atenolol (Pharmacor) 50 mg uncoated tablet, 30, blister pack 143388 947691000168105 Atenolol (Pharmacor) 50 mg uncoated tablet, 30 947681000168107 Atenolol (Pharmacor) 50 mg uncoated tablet 947671000168109 Atenolol (Pharmacor) 947671000168109 Atenolol (Pharmacor) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +85451000036102 Fendex ER 2.5 mg modified release tablet, 500, bottle 184620 84901000036106 Fendex ER 2.5 mg modified release tablet, 500 84071000036103 Fendex ER 2.5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84911000036108 felodipine 2.5 mg modified release tablet, 500 22820011000036107 felodipine 2.5 mg modified release tablet 21440011000036100 felodipine +84299011000036104 Vimpat 100 mg film-coated tablet, 14, blister pack 151811 83992011000036108 Vimpat 100 mg film-coated tablet, 14 83628011000036102 Vimpat 100 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84627011000036100 lacosamide 100 mg tablet, 14 84428011000036101 lacosamide 100 mg tablet 84408011000036109 lacosamide +84299011000036104 Vimpat 100 mg film-coated tablet, 14, blister pack 196450 83992011000036108 Vimpat 100 mg film-coated tablet, 14 83628011000036102 Vimpat 100 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84627011000036100 lacosamide 100 mg tablet, 14 84428011000036101 lacosamide 100 mg tablet 84408011000036109 lacosamide +992931000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 7, blister pack 201680 992921000168105 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 7 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992911000168103 clopidogrel 75 mg + aspirin 75 mg tablet, 7 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +665261000168104 Trueresult diagnostic strip, 100, bottle 665251000168101 Trueresult diagnostic strip, 100 933219481000036109 Trueresult diagnostic strip 933219221000036107 Trueresult 933219221000036107 Trueresult 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +753171000168104 Oxycodone (GX) 10 mg hard capsule, 60, bottle 227863 753141000168106 Oxycodone (GX) 10 mg hard capsule, 60 753081000168102 Oxycodone (GX) 10 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +933247131000036104 Sumatriptan (Terry White Chemists) 50 mg film-coated tablet, 2, blister pack 160189 933244121000036107 Sumatriptan (Terry White Chemists) 50 mg film-coated tablet, 2 924485011000036108 Sumatriptan (Terry White Chemists) 50 mg film-coated tablet 924373011000036109 Sumatriptan (Terry White Chemists) 924373011000036109 Sumatriptan (Terry White Chemists) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +660991000168106 Moclobemide (AN) 300 mg film-coated tablet, 60, blister pack 184085 660981000168108 Moclobemide (AN) 300 mg film-coated tablet, 60 660971000168105 Moclobemide (AN) 300 mg film-coated tablet 660961000168104 Moclobemide (AN) 660961000168104 Moclobemide (AN) 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +1086991000168103 Ibuprofamol film-coated tablet, 24, blister pack 283027 1086981000168101 Ibuprofamol film-coated tablet, 24 1086951000168108 Ibuprofamol film-coated tablet 1086941000168106 Ibuprofamol 1086941000168106 Ibuprofamol 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +18830011000036103 Alphamox 250 mg hard capsule, 20, blister pack 17678 12144011000036106 Alphamox 250 mg hard capsule, 20 5389011000036106 Alphamox 250 mg hard capsule 4042011000036101 Alphamox 4042011000036101 Alphamox 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +700029941000036106 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 101431000036103 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 98691000036101 Femme-Tab ED 20/100 (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 700015531000036100 Femme-Tab ED 20/100 700015531000036100 Femme-Tab ED 20/100 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029941000036106 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 101431000036103 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 98841000036106 Femme-Tab ED 20/100 (inert substance) film-coated tablet 700015531000036100 Femme-Tab ED 20/100 700015531000036100 Femme-Tab ED 20/100 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +68741011000036101 Mylanta 2go Double Strength chewable tablet, 24, blister pack 118508 66640011000036109 Mylanta 2go Double Strength chewable tablet, 24 65303011000036102 Mylanta 2go Double Strength chewable tablet 4781000168105 Mylanta 2go Double Strength 4781000168105 Mylanta 2go Double Strength 71350011000036102 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet, 24 69967011000036108 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +84316011000036100 Sulprix 100 mg tablet, 50, blister pack 156044 84009011000036108 Sulprix 100 mg tablet, 50 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84638011000036101 amisulpride 100 mg tablet, 50 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +1024681000168106 Amclavox Duo 500/125 film-coated tablet, 10, strip pack 289507 1024671000168108 Amclavox Duo 500/125 film-coated tablet, 10 1024661000168102 Amclavox Duo 500/125 film-coated tablet 1024651000168104 Amclavox Duo 500/125 1024651000168104 Amclavox Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +12601000036106 Olanzapine ODT (Terry White Chemists) 10 mg orally disintegrating tablet, 28, blister pack 158963 6851000036109 Olanzapine ODT (Terry White Chemists) 10 mg orally disintegrating tablet, 28 3531000036105 Olanzapine ODT (Terry White Chemists) 10 mg orally disintegrating tablet 12841000168101 Olanzapine ODT (Terry White Chemists) 12841000168101 Olanzapine ODT (Terry White Chemists) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +20364011000036102 Trimethoprim with Sulfamethoxazole DS (Terry White Chemists) uncoated tablet, 10, blister pack 76536 13572011000036101 Trimethoprim with Sulfamethoxazole DS (Terry White Chemists) uncoated tablet, 10 6854011000036104 Trimethoprim with Sulfamethoxazole DS (Terry White Chemists) uncoated tablet 62311000168106 Trimethoprim with Sulfamethoxazole DS (Terry White Chemists) 62311000168106 Trimethoprim with Sulfamethoxazole DS (Terry White Chemists) 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +19653011000036101 Distaph 500 mg hard capsule, 24, bottle 59653 12920011000036101 Distaph 500 mg hard capsule, 24 6210011000036109 Distaph 500 mg hard capsule 4299011000036109 Distaph 4299011000036109 Distaph 27777011000036108 dicloxacillin 500 mg capsule, 24 23107011000036101 dicloxacillin 500 mg capsule 21398011000036101 dicloxacillin +69701011000036106 Imflac Anti-Inflammatory Pain Relief 1% gel, 50 g, tube 91047 67500011000036108 Imflac Anti-Inflammatory Pain Relief 1% gel, 50 g 65684011000036105 Imflac Anti-Inflammatory Pain Relief 1% gel 15971000168106 Imflac Anti-Inflammatory Pain Relief 15971000168106 Imflac Anti-Inflammatory Pain Relief 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +1086971000168104 Ibuprofamol film-coated tablet, 12, blister pack 283027 1086961000168105 Ibuprofamol film-coated tablet, 12 1086951000168108 Ibuprofamol film-coated tablet 1086941000168106 Ibuprofamol 1086941000168106 Ibuprofamol 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +927704011000036108 Axit 45 mg film-coated tablet, 30, bottle 164494 927638011000036104 Axit 45 mg film-coated tablet, 30 927591011000036107 Axit 45 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +939321000168107 Celecoxib (Pfizer) 200 mg hard capsule, 50, blister pack 211501 939311000168100 Celecoxib (Pfizer) 200 mg hard capsule, 50 939241000168107 Celecoxib (Pfizer) 200 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +34696011000036100 Dilasig 6.25 mg film-coated tablet, 60, blister pack 141460 34280011000036101 Dilasig 6.25 mg film-coated tablet, 60 34007011000036109 Dilasig 6.25 mg film-coated tablet 33959011000036100 Dilasig 33959011000036100 Dilasig 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +60174011000036106 Exforge 10/160 film-coated tablet, 28, blister pack 130841 56133011000036100 Exforge 10/160 film-coated tablet, 28 53803011000036106 Exforge 10/160 film-coated tablet 22241000168106 Exforge 10/160 22241000168106 Exforge 10/160 63237011000036101 amlodipine 10 mg + valsartan 160 mg tablet, 28 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +61674011000036100 Dimetapp Chesty Cough Elixir oral liquid solution, 200 mL, bottle 97496 57596011000036107 Dimetapp Chesty Cough Elixir oral liquid solution, 200 mL 54358011000036108 Dimetapp Chesty Cough Elixir oral liquid solution, 10 mL 38781000168105 Dimetapp Chesty Cough Elixir 38781000168105 Dimetapp Chesty Cough Elixir 63947011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 200 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +1095651000168108 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 90, blister pack 287305 1095641000168106 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 90 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1077401000168106 fexofenadine hydrochloride 180 mg tablet, 90 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1076511000168107 Aripiprazole (Auro) 20 mg uncoated tablet, 30, blister pack 198218 1076501000168109 Aripiprazole (Auro) 20 mg uncoated tablet, 30 1076471000168103 Aripiprazole (Auro) 20 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1029251000168101 Aten 25 mg film-coated tablet, 250, bottle 197715 1029241000168103 Aten 25 mg film-coated tablet, 250 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029231000168107 atenolol 25 mg tablet, 250 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +171031000036100 Cefaclor CD (Apo) 375 mg modified release tablet, 10, blister pack 76226 170241000036106 Cefaclor CD (Apo) 375 mg modified release tablet, 10 169111000036104 Cefaclor CD (Apo) 375 mg modified release tablet 62161000168106 Cefaclor CD (Apo) 62161000168106 Cefaclor CD (Apo) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +20801011000036104 Liprace 5 mg uncoated tablet, 30, blister pack 91376 13967011000036100 Liprace 5 mg uncoated tablet, 30 7253011000036107 Liprace 5 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +920652011000036107 Debug Hand Hygiene 0.5% / 70% solution, 500 mL, pump pack 135488 920394011000036101 Debug Hand Hygiene 0.5% / 70% solution, 500 mL 920157011000036108 Debug Hand Hygiene 0.5% / 70% solution 8961000168108 Debug Hand Hygiene 0.5% / 70% 8961000168108 Debug Hand Hygiene 0.5% / 70% 920852011000036100 chlorhexidine gluconate 0.5% + isopropyl alcohol 70% solution, 500 mL 920825011000036107 chlorhexidine gluconate 0.5% + isopropyl alcohol 70% solution 920820011000036103 chlorhexidine + isopropyl alcohol +1050581000168101 Bupannus 25 microgram/hour patch, 2, sachet 234726 1050571000168104 Bupannus 25 microgram/hour patch, 2 1050561000168105 Bupannus 25 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 775931000168100 buprenorphine 25 microgram/hour patch, 2 775911000168105 buprenorphine 25 microgram/hour patch 21232011000036101 buprenorphine +937151000168109 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 12, blister pack 191154 937141000168107 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 12 119521000036103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule 119241000036108 Diarrhoea Relief (Pharmacy Action) 119241000036108 Diarrhoea Relief (Pharmacy Action) 27212011000036107 loperamide hydrochloride 2 mg capsule, 12 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +1009971000168109 Sildenafil PHT (Apotex) 20 mg film-coated tablet, 90, blister pack 164805 1009941000168102 Sildenafil PHT (Apotex) 20 mg film-coated tablet, 90 1009931000168106 Sildenafil PHT (Apotex) 20 mg film-coated tablet 1009921000168108 Sildenafil PHT (Apotex) 1009921000168108 Sildenafil PHT (Apotex) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +759351000168108 Xenical 120 mg hard capsule, 21, blister pack 61598 759341000168106 Xenical 120 mg hard capsule, 21 6274011000036106 Xenical 120 mg hard capsule 4256011000036106 Xenical 4256011000036106 Xenical 759331000168102 orlistat 120 mg capsule, 21 22831011000036103 orlistat 120 mg capsule 21581011000036109 orlistat +20047011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 69413 13279011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 636221000168109 Sandostatin LAR (inert substance) diluent, 2.5 mL syringe 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27663011000036103 octreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 636211000168102 inert substance diluent, 2.5 mL syringe 21220011000036103 inert substance +20047011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 227964 13279011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 636221000168109 Sandostatin LAR (inert substance) diluent, 2.5 mL syringe 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27663011000036103 octreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 636211000168102 inert substance diluent, 2.5 mL syringe 21220011000036103 inert substance +20047011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 69413 13279011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 6561011000036105 Sandostatin LAR (octreotide 30 mg) modified release injection, 30 mg vial 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27663011000036103 octreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 23000011000036106 octreotide 30 mg modified release injection, vial 21316011000036104 octreotide +20047011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 227964 13279011000036100 Sandostatin LAR (1 x 30 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 6561011000036105 Sandostatin LAR (octreotide 30 mg) modified release injection, 30 mg vial 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27663011000036103 octreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 23000011000036106 octreotide 30 mg modified release injection, vial 21316011000036104 octreotide +665101000168109 Remifentanil (Alphapharm) 2 mg powder for injection, 5 vials 163902 665091000168104 Remifentanil (Alphapharm) 2 mg powder for injection, 5 vials 665081000168102 Remifentanil (Alphapharm) 2 mg powder for injection, 2 mg vial 664921000168101 Remifentanil (Alphapharm) 664921000168101 Remifentanil (Alphapharm) 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +933212601000036106 Ciprofloxacin (GN) 250 mg film-coated tablet, 100, blister pack 148849 933202341000036102 Ciprofloxacin (GN) 250 mg film-coated tablet, 100 933195361000036109 Ciprofloxacin (GN) 250 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 932362011000036103 ciprofloxacin 250 mg tablet, 100 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +802201000168104 Nuvigil 250 mg uncoated tablet, 7, blister pack 226558 802191000168102 Nuvigil 250 mg uncoated tablet, 7 802141000168105 Nuvigil 250 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802181000168100 armodafinil 250 mg tablet, 7 802131000168101 armodafinil 250 mg tablet 802061000168105 armodafinil +38541000036102 Escitalup 10 mg film-coated tablet, 30, bottle 165855 34871000036100 Escitalup 10 mg film-coated tablet, 30 33111000036103 Escitalup 10 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +930661000168103 Cavstat 5 mg film-coated tablet, 90, blister pack 234543 928541000168104 Cavstat 5 mg film-coated tablet, 90 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 928531000168108 rosuvastatin 5 mg tablet, 90 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +817231000168106 Advagraf XL 1 mg modified release capsule, 50, blister pack 269214 817221000168108 Advagraf XL 1 mg modified release capsule, 50 817171000168103 Advagraf XL 1 mg modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 817211000168101 tacrolimus 1 mg modified release capsule, 50 922099011000036107 tacrolimus 1 mg modified release capsule 21380011000036104 tacrolimus +853601000168100 Alzil 5 mg film-coated tablet, 28, blister pack 175047 853591000168107 Alzil 5 mg film-coated tablet, 28 853581000168109 Alzil 5 mg film-coated tablet 853571000168106 Alzil 853571000168106 Alzil 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +61185011000036107 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 500, bottle 75200 57413011000036109 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 500 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +50562011000036100 Durotram XR (once a day) 100 mg modified release tablet, 30, blister pack 134773 49596011000036109 Durotram XR (once a day) 100 mg modified release tablet, 30 48786011000036109 Durotram XR (once a day) 100 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51500011000036105 tramadol hydrochloride 100 mg modified release tablet, 30 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +700029981000036102 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28, blister pack 13000011000036107 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28 6287011000036108 Brevinor 28 Day (inert substance) uncoated tablet 700011841000036105 Brevinor 28 Day 700011841000036105 Brevinor 28 Day 28353011000036106 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029981000036102 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28, blister pack 13000011000036107 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 28 6286011000036105 Brevinor 28 Day (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 700011841000036105 Brevinor 28 Day 700011841000036105 Brevinor 28 Day 28353011000036106 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +1033501000168104 Atomoxetine (CH) 100 mg hard capsule, 56, blister pack 234818 1033491000168106 Atomoxetine (CH) 100 mg hard capsule, 56 1033421000168109 Atomoxetine (CH) 100 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830171000168108 atomoxetine 100 mg capsule, 56 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +60997011000036107 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) oral liquid solution, 60 mL, bottle 63546 56940011000036109 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) oral liquid solution, 60 mL 54130011000036101 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) oral liquid solution, 5 mL 40091000168108 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) 40091000168108 Decongestant and Antihistamine Infant Elixir (Soul Pattinson) 63649011000036106 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 60 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +1080621000168107 Dermadrate Dry Skin Treatment 10% cream, 500 g, pump pack 1080611000168100 Dermadrate Dry Skin Treatment 10% cream, 500 g 65638011000036105 Dermadrate Dry Skin Treatment 10% cream 65152011000036107 Dermadrate Dry Skin Treatment 65152011000036107 Dermadrate Dry Skin Treatment 71756011000036100 urea 10% cream, 500 g 22378011000036108 urea 10% cream 21561011000036106 urea +667251000168106 Kaptan 25 mg film-coated tablet, 60, blister pack 202242 667241000168109 Kaptan 25 mg film-coated tablet, 60 667211000168105 Kaptan 25 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +19841011000036109 Faverin 100 mg film-coated tablet, 30, blister pack 64388 13092011000036108 Faverin 100 mg film-coated tablet, 30 6376011000036107 Faverin 100 mg film-coated tablet 3891011000036102 Faverin 3891011000036102 Faverin 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +59772011000036107 Glycosade powder for oral liquid, 30 x 60 g sachets 55627011000036105 Glycosade powder for oral liquid, 30 x 60 g sachets 299101000168108 Glycosade powder for oral liquid, 60 g sachet 53150011000036103 Glycosade 53150011000036103 Glycosade 63079011000036102 modified long chain amylopectin powder for oral liquid, 30 x 60 g sachets 298951000168104 modified long chain amylopectin powder for oral liquid, 60 g sachet 61787011000036107 modified long chain amylopectin +20330011000036101 Enalapril Maleate (Winthrop) 10 mg uncoated tablet, 30, blister pack 76043 13539011000036109 Enalapril Maleate (Winthrop) 10 mg uncoated tablet, 30 6822011000036109 Enalapril Maleate (Winthrop) 10 mg uncoated tablet 3391011000036104 Enalapril Maleate (Winthrop) 3391011000036104 Enalapril Maleate (Winthrop) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +1018511000168102 Atomoxetine (Apotex) 25 mg hard capsule, 28, blister pack 199915 1018501000168100 Atomoxetine (Apotex) 25 mg hard capsule, 28 1018491000168107 Atomoxetine (Apotex) 25 mg hard capsule 1013681000168104 Atomoxetine (Apotex) 1013681000168104 Atomoxetine (Apotex) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +34765011000036100 Dilaudid 2 mg uncoated tablet, 60, bottle 67353 34346011000036100 Dilaudid 2 mg uncoated tablet, 60 6476011000036102 Dilaudid 2 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35194011000036100 hydromorphone hydrochloride 2 mg tablet, 60 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +1012071000168100 Irbesartan (Apotex) 300 mg film-coated tablet, 7, blister pack 169795 1012061000168106 Irbesartan (Apotex) 300 mg film-coated tablet, 7 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 738181000168105 irbesartan 300 mg tablet, 7 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +746501000168108 Morphine Sulfate (Hospira) 5 mg/mL injection solution, 5 x 1 mL ampoules 225409 746491000168101 Morphine Sulfate (Hospira) 5 mg/mL injection solution, 5 x 1 mL ampoules 746481000168104 Morphine Sulfate (Hospira) 5 mg/mL injection solution, ampoule 746471000168102 Morphine Sulfate (Hospira) 746471000168102 Morphine Sulfate (Hospira) 35109011000036102 morphine sulfate pentahydrate 5 mg/mL injection, 5 x 1 mL ampoules 34851011000036106 morphine sulfate pentahydrate 5 mg/mL injection, ampoule 21252011000036100 morphine +84282011000036108 Nordip 5 mg uncoated tablet, 28, blister pack 133159 83975011000036106 Nordip 5 mg uncoated tablet, 28 83613011000036103 Nordip 5 mg uncoated tablet 83546011000036106 Nordip 83546011000036106 Nordip 84623011000036109 amlodipine 5 mg tablet, 28 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +947841000168101 Risdone 500 microgram film-coated tablet, 28, blister pack 144200 947831000168105 Risdone 500 microgram film-coated tablet, 28 947741000168107 Risdone 500 microgram film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947821000168107 risperidone 500 microgram tablet, 28 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1067781000168102 Ibuprofen plus Codeine (Trust) film-coated tablet, 12, blister pack 175264 1067771000168100 Ibuprofen plus Codeine (Trust) film-coated tablet, 12 1067741000168107 Ibuprofen plus Codeine (Trust) film-coated tablet 1067731000168103 Ibuprofen plus Codeine (Trust) 1067731000168103 Ibuprofen plus Codeine (Trust) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +933247041000036108 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 25, blister pack 158413 933243861000036109 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 25 933241491000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet 933241021000036106 Prochlorperazine Maleate (PS) 933241021000036106 Prochlorperazine Maleate (PS) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +1027091000168105 Pregabalin (Amneal) 300 mg hard capsule, 500, bottle 235869 1027081000168107 Pregabalin (Amneal) 300 mg hard capsule, 500 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970771000168102 pregabalin 300 mg capsule, 500 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +20698011000036100 Ciprol 250 mg film-coated tablet, 14, blister pack 82479 13873011000036109 Ciprol 250 mg film-coated tablet, 14 7160011000036109 Ciprol 250 mg film-coated tablet 3369011000036102 Ciprol 3369011000036102 Ciprol 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +1076441000168105 Aripiprazole (Auro) 10 mg uncoated tablet, 30, bottle 198210 1076381000168108 Aripiprazole (Auro) 10 mg uncoated tablet, 30 1076351000168101 Aripiprazole (Auro) 10 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +969131000168104 Pregabalin (DRLA) 150 mg hard capsule, 20, blister pack 263055 969121000168102 Pregabalin (DRLA) 150 mg hard capsule, 20 969091000168101 Pregabalin (DRLA) 150 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +929122011000036108 Oxycontin 20 mg modified release tablet, 28, blister pack 200033 928481011000036107 Oxycontin 20 mg modified release tablet, 28 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +929122011000036108 Oxycontin 20 mg modified release tablet, 28, blister pack 68190 928481011000036107 Oxycontin 20 mg modified release tablet, 28 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +44411011000036106 Somac 20 mg enteric tablet, 5, blister pack 70829 41870011000036105 Somac 20 mg enteric tablet, 5 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46675011000036108 pantoprazole 20 mg enteric tablet, 5 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +990561000168106 Lyrica 50 mg hard capsule, 20, blister pack 99479 990551000168109 Lyrica 50 mg hard capsule, 20 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 902701000168102 pregabalin 50 mg capsule, 20 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +718691000168108 Paclitaxel (Act) 300 mg/50 mL concentrated injection, 50 mL vial 148037 718681000168105 Paclitaxel (Act) 300 mg/50 mL concentrated injection, 50 mL vial 718671000168107 Paclitaxel (Act) 300 mg/50 mL concentrated injection, 50 mL vial 718601000168102 Paclitaxel (Act) 718601000168102 Paclitaxel (Act) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +81841000036101 Sumatriptan (RBX) 50 mg film-coated tablet, 4, blister pack 154819 79891000036103 Sumatriptan (RBX) 50 mg film-coated tablet, 4 78711000036109 Sumatriptan (RBX) 50 mg film-coated tablet 78091000036102 Sumatriptan (RBX) 78091000036102 Sumatriptan (RBX) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +60406011000036105 Nurofen Regular 200 mg sugar coated tablet, 4, blister pack 144202 56365011000036101 Nurofen Regular 200 mg sugar coated tablet, 4 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1069791000168109 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 30, blister pack 211368 1069781000168106 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 30 1069671000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069771000168108 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 30 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +885791000168106 Sitagliptin (Blooms The Chemist) 50 mg coated tablet, 28, blister pack 224391 885781000168108 Sitagliptin (Blooms The Chemist) 50 mg coated tablet, 28 885771000168105 Sitagliptin (Blooms The Chemist) 50 mg coated tablet 885731000168107 Sitagliptin (Blooms The Chemist) 885731000168107 Sitagliptin (Blooms The Chemist) 39484011000036106 sitagliptin 50 mg tablet, 28 39438011000036106 sitagliptin 50 mg tablet 39426011000036109 sitagliptin +990601000168106 Lyrica 50 mg hard capsule, 60, blister pack 99479 990591000168104 Lyrica 50 mg hard capsule, 60 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +952181000168103 Diclofenac (Amneal) 50 mg enteric tablet, 20, blister pack 272874 952171000168101 Diclofenac (Amneal) 50 mg enteric tablet, 20 952131000168104 Diclofenac (Amneal) 50 mg enteric tablet 952071000168102 Diclofenac (Amneal) 952071000168102 Diclofenac (Amneal) 952161000168107 diclofenac sodium 50 mg enteric tablet, 20 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +862231000168107 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60, bottle 196978 862221000168109 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60 862171000168104 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet 14051000168104 Caltrate 600 mg with Vitamin D 500 IU 14051000168104 Caltrate 600 mg with Vitamin D 500 IU 733981000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +678031000168101 Lexapro 20 mg/mL oral liquid solution, 15 mL, bottle 209721 678021000168104 Lexapro 20 mg/mL oral liquid solution, 15 mL 678001000168108 Lexapro 20 mg/mL oral liquid solution 3210011000036104 Lexapro 3210011000036104 Lexapro 678011000168106 escitalopram 20 mg/mL oral liquid, 15 mL 677991000168104 escitalopram 20 mg/mL oral liquid 21534011000036100 escitalopram +933230361000036107 Escitalopram (DRLA) 10 mg film-coated tablet, 28, blister pack 165129 933224241000036108 Escitalopram (DRLA) 10 mg film-coated tablet, 28 933220141000036106 Escitalopram (DRLA) 10 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +86852011000036100 Chlorhexidine Gluconate (David Craig) 0.2% mouthwash, 200 mL, bottle 86729011000036107 Chlorhexidine Gluconate (David Craig) 0.2% mouthwash, 200 mL 86607011000036104 Chlorhexidine Gluconate (David Craig) 0.2% mouthwash 64995011000036100 Chlorhexidine Gluconate (David Craig) 64995011000036100 Chlorhexidine Gluconate (David Craig) 933199671000036107 chlorhexidine gluconate 0.2% mouthwash, 200 mL 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +43906011000036104 Ramipril (Generic Health) 10 mg hard capsule, 30, blister pack 134802 41398011000036104 Ramipril (Generic Health) 10 mg hard capsule, 30 39826011000036104 Ramipril (Generic Health) 10 mg hard capsule 39759011000036107 Ramipril (Generic Health) 39759011000036107 Ramipril (Generic Health) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +60791011000036105 Unisom Sleepgel 50 mg soft capsule, 10, bottle 55324 56747011000036100 Unisom Sleepgel 50 mg soft capsule, 10 54063011000036108 Unisom Sleepgel 50 mg soft capsule 14531000168103 Unisom Sleepgel 14531000168103 Unisom Sleepgel 63549011000036100 diphenhydramine hydrochloride 50 mg capsule, 10 62012011000036109 diphenhydramine hydrochloride 50 mg capsule 61716011000036106 diphenhydramine +926811011000036109 Reaptan 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 170796 926207011000036106 Reaptan 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10 925676011000036101 Reaptan 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet 4401000168106 Reaptan 5mg/5mg (perindopril arginine/amlodipine) 4401000168106 Reaptan 5mg/5mg (perindopril arginine/amlodipine) 86423011000036104 perindopril arginine 5 mg + amlodipine 5 mg tablet, 10 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +933213241000036101 Citalopram (IPCA) 40 mg film-coated tablet, 84, blister pack 158854 933202941000036101 Citalopram (IPCA) 40 mg film-coated tablet, 84 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202951000036103 citalopram 40 mg tablet, 84 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +967191000168108 Febridol Plus uncoated tablet, 20, blister pack 154874 967181000168105 Febridol Plus uncoated tablet, 20 51998011000036101 Febridol Plus uncoated tablet 44291000168106 Febridol Plus 44291000168106 Febridol Plus 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +69495011000036104 Dulcolax 5 mg enteric tablet, 200, blister pack 50792 67295011000036106 Dulcolax 5 mg enteric tablet, 200 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 27705011000036106 bisacodyl 5 mg enteric tablet, 200 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +69495011000036104 Dulcolax 5 mg enteric tablet, 200, blister pack 155405 67295011000036106 Dulcolax 5 mg enteric tablet, 200 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 27705011000036106 bisacodyl 5 mg enteric tablet, 200 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +952021000168103 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 10, blister pack 273229 952011000168105 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 10 951951000168100 Cefuroxime (Pharmacor) 250 mg film-coated tablet 951941000168102 Cefuroxime (Pharmacor) 951941000168102 Cefuroxime (Pharmacor) 763551000168107 cefuroxime 250 mg tablet, 10 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +933212691000036103 Ciprofloxacin (GN) 750 mg film-coated tablet, 10, blister pack 148853 933202431000036104 Ciprofloxacin (GN) 750 mg film-coated tablet, 10 933195381000036104 Ciprofloxacin (GN) 750 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +849261000168102 Vzole 50 mg film-coated tablet, 30, blister pack 238239 849251000168104 Vzole 50 mg film-coated tablet, 30 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46817011000036103 voriconazole 50 mg tablet, 30 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +870681000168100 Desven 100 mg modified release tablet, 28, blister pack 218076 870501000168107 Desven 100 mg modified release tablet, 28 870451000168105 Desven 100 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +17862011000036103 Timentin powder for injection, 10 x 3.1 g vials 11165 11433011000036108 Timentin powder for injection, 10 x 3.1 g vials 5978011000036102 Timentin powder for injection, 3.1 g vial 4005011000036102 Timentin 4005011000036102 Timentin 26645011000036109 ticarcillin 3 g + clavulanic acid 100 mg injection, 10 x 3.1 g vials 22051011000036103 ticarcillin 3 g + clavulanic acid 100 mg injection, 3.1 g vial 21510011000036100 ticarcillin + clavulanic acid +17721000036106 Quinapril (Pfizer) 20 mg film-coated tablet, 30, blister pack 123436 16501000036108 Quinapril (Pfizer) 20 mg film-coated tablet, 30 15831000036106 Quinapril (Pfizer) 20 mg film-coated tablet 15111000036107 Quinapril (Pfizer) 15111000036107 Quinapril (Pfizer) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +827831000168102 Perindopril (AN) 4 mg uncoated tablet, 30, blister pack 212716 827821000168100 Perindopril (AN) 4 mg uncoated tablet, 30 827811000168107 Perindopril (AN) 4 mg uncoated tablet 827771000168107 Perindopril (AN) 827771000168107 Perindopril (AN) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +20989011000036105 Simvar 80 mg film-coated tablet, 30, blister pack 95954 14135011000036104 Simvar 80 mg film-coated tablet, 30 7413011000036101 Simvar 80 mg film-coated tablet 3363011000036100 Simvar 3363011000036100 Simvar 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +935141000168102 Centevo 125/31.25/200 mg film-coated tablet, 90, bottle 238856 935131000168106 Centevo 125/31.25/200 mg film-coated tablet, 90 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935121000168108 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 90 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +50288011000036105 Phlexy-10 apple and blackcurrant powder for oral liquid, 30 x 20 g sachets 49526011000036102 Phlexy-10 apple and blackcurrant powder for oral liquid, 30 x 20 g sachets 304501000168105 Phlexy-10 apple and blackcurrant powder for oral liquid, 20 g sachet 48301011000036102 Phlexy-10 48301011000036102 Phlexy-10 51472011000036106 amino acid formula without phenylalanine powder for oral liquid, 30 x 20 g sachets 301691000168102 amino acid formula without phenylalanine powder for oral liquid, 20 g sachet 50722011000036107 amino acid formula without phenylalanine +928833011000036106 Rispernia 6 mg film-coated tablet, 60, bottle 127930 928195011000036109 Rispernia 6 mg film-coated tablet, 60 927854011000036104 Rispernia 6 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 929205011000036107 risperidone 6 mg tablet, 60 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +923740011000036103 Gaviscon Lemon chewable tablet, 24, blister pack 156038 923265011000036106 Gaviscon Lemon chewable tablet, 24 922964011000036104 Gaviscon Lemon chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924101011000036108 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 24 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +923740011000036103 Gaviscon Lemon chewable tablet, 24, blister pack 119280 923265011000036106 Gaviscon Lemon chewable tablet, 24 922964011000036104 Gaviscon Lemon chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924101011000036108 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 24 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +1035271000168105 Anti Diarrhoea Plus (Amcal) chewable tablet, 4, blister pack 221948 1035261000168104 Anti Diarrhoea Plus (Amcal) chewable tablet, 4 1035231000168107 Anti Diarrhoea Plus (Amcal) chewable tablet 1035221000168109 Anti Diarrhoea Plus (Amcal) 1035221000168109 Anti Diarrhoea Plus (Amcal) 63673011000036109 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 4 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +44274011000036101 Sporanox 10 mg/mL oral liquid solution, 150 mL, bottle 62008 41745011000036104 Sporanox 10 mg/mL oral liquid solution, 150 mL 40179011000036100 Sporanox 10 mg/mL oral liquid solution 3606011000036102 Sporanox 3606011000036102 Sporanox 46552011000036105 itraconazole 10 mg/mL oral liquid, 150 mL 45215011000036103 itraconazole 10 mg/mL oral liquid 21903011000036100 itraconazole +868991000168102 Simipex XR 3 mg modified release tablet, 30, blister pack 225605 868981000168100 Simipex XR 3 mg modified release tablet, 30 868951000168107 Simipex XR 3 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 87817011000036105 pramipexole dihydrochloride monohydrate 3 mg modified release tablet, 30 87761011000036101 pramipexole dihydrochloride monohydrate 3 mg modified release tablet 37716011000036100 pramipexole +759441000168104 Clozaril 25 mg uncoated tablet, 50, blister pack 50510 759431000168108 Clozaril 25 mg uncoated tablet, 50 7036011000036106 Clozaril 25 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 759421000168105 clozapine 25 mg tablet, 50 23444011000036102 clozapine 25 mg tablet 21222011000036104 clozapine +943891000168101 Medformin 850 mg film-coated tablet, 10, blister pack 100290 943871000168102 Medformin 850 mg film-coated tablet, 10 943781000168108 Medformin 850 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943861000168108 metformin hydrochloride 850 mg tablet, 10 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +18162011000036104 Citalopram (Chemmart) 20 mg film-coated tablet, 28, blister pack 101220 11179011000036107 Citalopram (Chemmart) 20 mg film-coated tablet, 28 5913011000036104 Citalopram (Chemmart) 20 mg film-coated tablet 3354011000036106 Citalopram (Chemmart) 3354011000036106 Citalopram (Chemmart) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +37455011000036109 Xanax 500 microgram uncoated tablet, 50, blister pack 12352 11745011000036102 Xanax 500 microgram uncoated tablet, 50 5996011000036109 Xanax 500 microgram uncoated tablet 3527011000036101 Xanax 3527011000036101 Xanax 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +50511011000036107 Cutifilm Plus (76309) 5 cm x 7.2 cm dressing, 5, carton 49399011000036103 Cutifilm Plus (76309) 5 cm x 7.2 cm dressing, 5 48463011000036107 Cutifilm Plus (76309) 5 cm x 7.2 cm dressing 51431000168106 Cutifilm Plus (76309) 51431000168106 Cutifilm Plus (76309) 51369011000036101 dressing film island 5 cm x 7.2 cm dressing, 5 50891011000036107 dressing film island 5 cm x 7.2 cm dressing 50727011000036109 dressing film island +25851000036108 Cefazolin (AFT) 500 mg powder for injection, 5 vials 171534 25811000036109 Cefazolin (AFT) 500 mg powder for injection, 5 vials 20901000036106 Cefazolin (AFT) 500 mg powder for injection, 500 mg vial 19811000036104 Cefazolin (AFT) 19811000036104 Cefazolin (AFT) 32937011000036100 cefazolin 500 mg injection, 5 vials 32930011000036101 cefazolin 500 mg injection, vial 21621011000036107 cefazolin +1033901000168107 Atomoxetine (CH) 40 mg hard capsule, 56, blister pack 234826 1033891000168108 Atomoxetine (CH) 40 mg hard capsule, 56 1033771000168104 Atomoxetine (CH) 40 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830721000168108 atomoxetine 40 mg capsule, 56 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +933230321000036103 Citalopram (GA) 20 mg film-coated tablet, 56, blister pack 158852 933224361000036104 Citalopram (GA) 20 mg film-coated tablet, 56 933220071000036103 Citalopram (GA) 20 mg film-coated tablet 933219141000036105 Citalopram (GA) 933219141000036105 Citalopram (GA) 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1016501000168104 Olmesartan (Apotex) 10 mg film-coated tablet, 30, blister pack 201836 1016491000168106 Olmesartan (Apotex) 10 mg film-coated tablet, 30 1016481000168108 Olmesartan (Apotex) 10 mg film-coated tablet 895371000168105 Olmesartan (Apotex) 895371000168105 Olmesartan (Apotex) 845331000168100 olmesartan medoxomil 10 mg tablet, 30 845311000168105 olmesartan medoxomil 10 mg tablet 32674011000036109 olmesartan +19824011000036109 Captopril (Douglas) 50 mg uncoated tablet, 90, blister pack 63777 13609011000036105 Captopril (Douglas) 50 mg uncoated tablet, 90 6892011000036100 Captopril (Douglas) 50 mg uncoated tablet 4305011000036103 Captopril (Douglas) 4305011000036103 Captopril (Douglas) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +802041000168106 Actrapid Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 169622 802031000168102 Actrapid Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 802021000168100 Actrapid Flexpen 100 units/mL injection solution, 3 mL cartridge 802011000168107 Actrapid Flexpen 802011000168107 Actrapid Flexpen 27161011000036100 insulin neutral human 100 units/mL injection, 5 x 3 mL cartridges 22523011000036100 insulin neutral human 100 units/mL injection, cartridge 33644011000036103 insulin neutral human +60397011000036103 Febridol Co uncoated tablet, 12, blister pack 144070 56356011000036100 Febridol Co uncoated tablet, 12 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 63876011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 12 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +61348011000036101 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 12, blister pack 81474 57273011000036100 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 12 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +949551000168107 Metformin 1000 (AS) 1 g film-coated tablet, 90, blister pack 147412 949541000168105 Metformin 1000 (AS) 1 g film-coated tablet, 90 949471000168102 Metformin 1000 (AS) 1 g film-coated tablet 949461000168108 Metformin 1000 (AS) 949461000168108 Metformin 1000 (AS) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +47281000036107 Peg-Intron Redipen Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92005 46831000036109 Peg-Intron Redipen Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46841000036104 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +47281000036107 Peg-Intron Redipen Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92005 46831000036109 Peg-Intron Redipen Injector (4 x 50 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 7293011000036101 Peg-Intron Redipen Injector (peginterferon alfa-2b 50 microgram) powder for injection, 50 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46841000036104 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23388011000036105 peginterferon alfa-2b 50 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +896301000168105 Imatinib (GH) 100 mg hard capsule, 120, blister pack 281535 896291000168109 Imatinib (GH) 100 mg hard capsule, 120 896191000168101 Imatinib (GH) 100 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 828901000168100 imatinib 100 mg capsule, 120 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +20201011000036108 Captopril (Chemmart) 25 mg uncoated tablet, 90, blister pack 74004 13420011000036106 Captopril (Chemmart) 25 mg uncoated tablet, 90 6702011000036104 Captopril (Chemmart) 25 mg uncoated tablet 3676011000036108 Captopril (Chemmart) 3676011000036108 Captopril (Chemmart) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +1087151000168108 Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL, pump pack 150184 989771000168102 Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL 989761000168108 Decongestant (Blooms The Chemist) 0.05% nasal spray 989751000168106 Decongestant (Blooms The Chemist) 989751000168106 Decongestant (Blooms The Chemist) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +60106011000036109 Nurofen 200 mg sugar coated tablet, 72, bottle 127273 56066011000036107 Nurofen 200 mg sugar coated tablet, 72 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63320011000036106 ibuprofen 200 mg tablet, 72 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1001471000168102 Tramadol (Apotex) 50 mg hard capsule, 20, blister pack 158472 1001461000168108 Tramadol (Apotex) 50 mg hard capsule, 20 1001451000168106 Tramadol (Apotex) 50 mg hard capsule 1001411000168105 Tramadol (Apotex) 1001411000168105 Tramadol (Apotex) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +18796011000036108 Simvastatin (RL) 40 mg film-coated tablet, 30, blister pack 116806 11545011000036101 Simvastatin (RL) 40 mg film-coated tablet, 30 4822011000036102 Simvastatin (RL) 40 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +50494011000036103 Mepilex (294100) 10 cm x 10 cm dressing, 5, carton 49368011000036108 Mepilex (294100) 10 cm x 10 cm dressing, 5 48647011000036107 Mepilex (294100) 10 cm x 10 cm dressing 56311000168102 Mepilex (294100) 56311000168102 Mepilex (294100) 51342011000036103 dressing foam with silicone moderate exudate 10 cm x 10 cm dressing, 5 50866011000036100 dressing foam with silicone moderate exudate 10 cm x 10 cm dressing 50767011000036104 dressing foam with silicone moderate exudate +60774011000036100 Lomide 0.1% eye drops solution, 10 mL, bottle 54275 56732011000036101 Lomide 0.1% eye drops solution, 10 mL 54054011000036102 Lomide 0.1% eye drops solution 53404011000036102 Lomide 53404011000036102 Lomide 63536011000036105 lodoxamide 0.1% eye drops, 10 mL 62005011000036103 lodoxamide 0.1% eye drops 61774011000036105 lodoxamide +930181000168103 Zantac 150 mg effervescent tablet, 60, tube 45993 930171000168101 Zantac 150 mg effervescent tablet, 60 4531011000036109 Zantac 150 mg effervescent tablet 3563011000036102 Zantac 3563011000036102 Zantac 930161000168107 ranitidine 150 mg effervescent tablet, 60 83111000036108 ranitidine 150 mg effervescent tablet 21682011000036109 ranitidine +43880011000036109 Pravastatin Sodium (RL) 20 mg uncoated tablet, 30, bottle 129598 11610011000036108 Pravastatin Sodium (RL) 20 mg uncoated tablet, 30 5241011000036109 Pravastatin Sodium (RL) 20 mg uncoated tablet 3142011000036109 Pravastatin Sodium (RL) 3142011000036109 Pravastatin Sodium (RL) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +12921000036106 Quetiapine (Terry White Chemists) 25 mg film-coated tablet, 60, blister pack 166060 8061000036100 Quetiapine (Terry White Chemists) 25 mg film-coated tablet, 60 3541000036100 Quetiapine (Terry White Chemists) 25 mg film-coated tablet 491000036108 Quetiapine (Terry White Chemists) 491000036108 Quetiapine (Terry White Chemists) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +717001000168106 Pemzo 20 mg enteric capsule, 56, bottle 167315 716931000168103 Pemzo 20 mg enteric capsule, 56 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716751000168106 omeprazole 20 mg enteric capsule, 56 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +804851000168108 Actonel 75 mg film-coated tablet, 2, blister pack 141530 804841000168106 Actonel 75 mg film-coated tablet, 2 804831000168102 Actonel 75 mg film-coated tablet 13171000168107 Actonel 13171000168107 Actonel 800971000168104 risedronate sodium 75 mg tablet, 2 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +926805011000036109 Fluvoxamine Maleate (GA) 100 mg film-coated tablet, 10, blister pack 168718 926201011000036103 Fluvoxamine Maleate (GA) 100 mg film-coated tablet, 10 925672011000036100 Fluvoxamine Maleate (GA) 100 mg film-coated tablet 925579011000036102 Fluvoxamine Maleate (GA) 925579011000036102 Fluvoxamine Maleate (GA) 927343011000036102 fluvoxamine maleate 100 mg tablet, 10 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +19053011000036109 Inza 250 mg uncoated tablet, 50, bottle 40927 12361011000036105 Inza 250 mg uncoated tablet, 50 5099011000036106 Inza 250 mg uncoated tablet 3504011000036101 Inza 3504011000036101 Inza 27555011000036100 naproxen 250 mg tablet, 50 22894011000036106 naproxen 250 mg tablet 21304011000036105 naproxen +969771000168100 Lypralin 75 mg hard capsule, 14, blister pack 235863 969761000168106 Lypralin 75 mg hard capsule, 14 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +692491000168103 Desfax 100 mg modified release tablet, 7, blister pack 218061 692481000168101 Desfax 100 mg modified release tablet, 7 692471000168104 Desfax 100 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +929030011000036102 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 1, blister pack 160643 928391011000036102 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 1 927965011000036102 Risedronate Sodium (Chemmart) 35 mg film-coated tablet 927777011000036109 Risedronate Sodium (Chemmart) 927777011000036109 Risedronate Sodium (Chemmart) 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +20398011000036107 Viracept 250 mg film-coated tablet, 300, bottle 77222 13606011000036101 Viracept 250 mg film-coated tablet, 300 6889011000036106 Viracept 250 mg film-coated tablet 3583011000036104 Viracept 3583011000036104 Viracept 27830011000036107 nelfinavir 250 mg tablet, 300 23158011000036107 nelfinavir 250 mg tablet 21834011000036104 nelfinavir +948161000168106 Lamotran 100 mg tablet, 56, blister pack 147627 948151000168109 Lamotran 100 mg tablet, 56 948141000168107 Lamotran 100 mg tablet 948071000168101 Lamotran 948071000168101 Lamotran 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +81146011000036105 Doryx 100 mg modified release capsule, 7, bottle 30100 12296011000036109 Doryx 100 mg modified release capsule, 7 4456011000036107 Doryx 100 mg modified release capsule 4100011000036102 Doryx 4100011000036102 Doryx 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +933213081000036102 Carvedilol (Generic Health) 3.125 mg uncoated tablet, 30, blister pack 152418 933201511000036101 Carvedilol (Generic Health) 3.125 mg uncoated tablet, 30 933194661000036103 Carvedilol (Generic Health) 3.125 mg uncoated tablet 83061011000036108 Carvedilol (Generic Health) 83061011000036108 Carvedilol (Generic Health) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +982021000168105 Lovenox Forte 120 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 80270 982011000168103 Lovenox Forte 120 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 981961000168105 Lovenox Forte 120 mg/0.8 mL injection solution, 0.8 mL syringe 981881000168107 Lovenox Forte 981881000168107 Lovenox Forte 46703011000036107 enoxaparin sodium 120 mg/0.8 mL injection, 15 x 0.8 mL syringes 45275011000036108 enoxaparin sodium 120 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +923723011000036108 Hypersal6 6% (600 mg/10 mL) inhalation solution, 100 x 10 mL sachets 145765 923287011000036104 Hypersal6 6% (600 mg/10 mL) inhalation solution, 100 x 10 mL sachets 922976011000036102 Hypersal6 6% (600 mg/10 mL) inhalation solution, 10 mL sachet 25851000168101 Hypersal6 25851000168101 Hypersal6 924113011000036106 sodium chloride 6% (600 mg/10 mL) inhalation solution, 100 x 10 mL sachets 923947011000036107 sodium chloride 6% (600 mg/10 mL) inhalation solution, sachet 21308011000036103 sodium chloride +956841000168102 Paclitaxel (Genepharm) 30 mg/5 mL concentrated injection, 5 mL vial 107352 956821000168108 Paclitaxel (Genepharm) 30 mg/5 mL concentrated injection, 5 mL vial 956801000168104 Paclitaxel (Genepharm) 30 mg/5 mL concentrated injection, 5 mL vial 956571000168106 Paclitaxel (Genepharm) 956571000168106 Paclitaxel (Genepharm) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +69735011000036102 Resolve Itch Cleansing 1.6% gel, 50 g, tube 92662 67534011000036106 Resolve Itch Cleansing 1.6% gel, 50 g 65689011000036106 Resolve Itch Cleansing 1.6% gel 65058011000036104 Resolve Itch Cleansing 65058011000036104 Resolve Itch Cleansing 72035011000036105 tar 1.6% gel, 50 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +691121000168100 Amitriptyline Hydrochloride (Apo) 10 mg film-coated tablet, 50, blister pack 215351 691111000168107 Amitriptyline Hydrochloride (Apo) 10 mg film-coated tablet, 50 691101000168109 Amitriptyline Hydrochloride (Apo) 10 mg film-coated tablet 691091000168104 Amitriptyline Hydrochloride (Apo) 691091000168104 Amitriptyline Hydrochloride (Apo) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +59806011000036103 Ibuprofen (Your Pharmacy) sugar free 100 mg/5 mL oral liquid suspension, 100 mL, bottle 114672 55768011000036106 Ibuprofen (Your Pharmacy) sugar free 100 mg/5 mL oral liquid suspension, 100 mL 53717011000036101 Ibuprofen (Your Pharmacy) sugar free 100 mg/5 mL oral liquid suspension, 5 mL 53381011000036107 Ibuprofen (Your Pharmacy) 53381011000036107 Ibuprofen (Your Pharmacy) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +933247361000036107 Gemcitabine (Ebewe) 1 g/25 mL concentrated injection, 25 mL vial 169041 933244131000036109 Gemcitabine (Ebewe) 1 g/25 mL concentrated injection, 25 mL vial 933241681000036101 Gemcitabine (Ebewe) 1 g/25 mL concentrated injection, 25 mL vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 933244141000036104 gemcitabine 1 g/25 mL injection, 25 mL vial 933241691000036104 gemcitabine 1 g/25 mL injection, vial 21644011000036108 gemcitabine +943251000168107 Medformin 250 mg film-coated tablet, 10, bottle 100285 943241000168105 Medformin 250 mg film-coated tablet, 10 943221000168104 Medformin 250 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943231000168101 metformin hydrochloride 250 mg tablet, 10 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +1104471000168105 Quetiapine (CH) 300 mg film-coated tablet, 60, bottle 172836 1104461000168104 Quetiapine (CH) 300 mg film-coated tablet, 60 1104451000168101 Quetiapine (CH) 300 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +952341000168106 Fluvoxamine (AN) 50 mg film-coated tablet, 10, blister pack 168717 952331000168102 Fluvoxamine (AN) 50 mg film-coated tablet, 10 952321000168100 Fluvoxamine (AN) 50 mg film-coated tablet 952311000168107 Fluvoxamine (AN) 952311000168107 Fluvoxamine (AN) 927341011000036103 fluvoxamine maleate 50 mg tablet, 10 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +703891000168103 Temozolomide (Apo) 20 mg hard capsule, 5, bottle 231524 703881000168101 Temozolomide (Apo) 20 mg hard capsule, 5 703871000168104 Temozolomide (Apo) 20 mg hard capsule 703741000168100 Temozolomide (Apo) 703741000168100 Temozolomide (Apo) 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +20355011000036109 Cefotaxime (Sandoz) 1 g powder for injection, 1 vial 76432 13563011000036101 Cefotaxime (Sandoz) 1 g powder for injection, 1 vial 6845011000036103 Cefotaxime (Sandoz) 1 g powder for injection, vial 4148011000036105 Cefotaxime (Sandoz) 4148011000036105 Cefotaxime (Sandoz) 33811011000036100 cefotaxime 1 g injection, 1 vial 33682011000036102 cefotaxime 1 g injection, vial 21327011000036105 cefotaxime +19430011000036106 Allegron 25 mg film-coated tablet, 50, blister pack 53747 12713011000036106 Allegron 25 mg film-coated tablet, 50 4837011000036102 Allegron 25 mg film-coated tablet 4402011000036102 Allegron 4402011000036102 Allegron 27305011000036107 nortriptyline 25 mg tablet, 50 22658011000036100 nortriptyline 25 mg tablet 21689011000036104 nortriptyline +885471000168104 Tadalafil PHT (Blooms The Chemist) 20 mg film-coated tablet, 56, blister pack 205856 885461000168105 Tadalafil PHT (Blooms The Chemist) 20 mg film-coated tablet, 56 885421000168100 Tadalafil PHT (Blooms The Chemist) 20 mg film-coated tablet 885411000168107 Tadalafil PHT (Blooms The Chemist) 885411000168107 Tadalafil PHT (Blooms The Chemist) 8721000036107 tadalafil 20 mg tablet, 56 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +59729011000036101 Advil 200 mg sugar coated tablet, 50, blister pack 104221 55690011000036103 Advil 200 mg sugar coated tablet, 50 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +33497011000036102 Amclav Forte 875/125 (GA) film-coated tablet, 10, blister pack 199394 33241011000036103 Amclav Forte 875/125 (GA) film-coated tablet, 10 33015011000036104 Amclav Forte 875/125 (GA) film-coated tablet 4921000168108 Amclav Forte 875/125 (GA) 4921000168108 Amclav Forte 875/125 (GA) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +33497011000036102 Amclav Forte 875/125 (GA) film-coated tablet, 10, blister pack 106487 33241011000036103 Amclav Forte 875/125 (GA) film-coated tablet, 10 33015011000036104 Amclav Forte 875/125 (GA) film-coated tablet 4921000168108 Amclav Forte 875/125 (GA) 4921000168108 Amclav Forte 875/125 (GA) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +956681000168108 Zolpidem (Hexal) 10 mg film-coated tablet, 20, blister pack 116893 956671000168105 Zolpidem (Hexal) 10 mg film-coated tablet, 20 956541000168104 Zolpidem (Hexal) 10 mg film-coated tablet 956531000168108 Zolpidem (Hexal) 956531000168108 Zolpidem (Hexal) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +50271011000036109 Carboflex (403202) 10 cm x 10 cm dressing, 10, carton 49350011000036104 Carboflex (403202) 10 cm x 10 cm dressing, 10 48742011000036100 Carboflex (403202) 10 cm x 10 cm dressing 43261000168101 Carboflex (403202) 43261000168101 Carboflex (403202) 51329011000036105 dressing activated charcoal malodorous wound 10 cm x 10 cm dressing, 10 50856011000036108 dressing activated charcoal malodorous wound 10 cm x 10 cm dressing 50710011000036101 dressing activated charcoal malodorous wound +1027331000168109 Neuroccord 75 mg hard capsule, 500, bottle 235854 1027321000168106 Neuroccord 75 mg hard capsule, 500 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 971511000168108 pregabalin 75 mg capsule, 500 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1102301000168100 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet, 10, blister pack 286105 1102291000168101 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet, 10 1102281000168104 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet 1102201000168107 Olmesartan HCTZ 40/25 (Pharmacor) 1102201000168107 Olmesartan HCTZ 40/25 (Pharmacor) 727451000168107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 10 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +35673011000036105 Viscotears Liquid 0.2% eye gel, 10 g, tube 35573011000036103 Viscotears Liquid 0.2% eye gel, 10 g 35450011000036101 Viscotears Liquid 0.2% eye gel 55321000168101 Viscotears Liquid 55321000168101 Viscotears Liquid 35770011000036107 carbomer-980 0.2% eye gel, 10 g 35711011000036106 carbomer-980 0.2% eye gel 35685011000036104 carbomer-980 +849581000168109 Sildenafil (Amneal) 25 mg film-coated tablet, 12, blister pack 202925 849571000168106 Sildenafil (Amneal) 25 mg film-coated tablet, 12 849511000168103 Sildenafil (Amneal) 25 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 760331000168101 sildenafil 25 mg tablet, 12 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +19807011000036109 Losec 20 mg enteric tablet, 30, blister pack 63416 13064011000036101 Losec 20 mg enteric tablet, 30 6348011000036107 Losec 20 mg enteric tablet 3618011000036100 Losec 3618011000036100 Losec 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +968971000168106 Pregabalin (DRLA) 25 mg hard capsule, 56, blister pack 263089 968961000168100 Pregabalin (DRLA) 25 mg hard capsule, 56 968911000168103 Pregabalin (DRLA) 25 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +69341011000036104 Salicylic Acid (Gold Cross) 5% ointment, 100 g, jar 27602 67141011000036100 Salicylic Acid (Gold Cross) 5% ointment, 100 g 65288011000036100 Salicylic Acid (Gold Cross) 5% ointment 65087011000036106 Salicylic Acid (Gold Cross) 65087011000036106 Salicylic Acid (Gold Cross) 71706011000036109 salicylic acid 5% ointment, 100 g 70140011000036101 salicylic acid 5% ointment 52232011000036106 salicylic acid +43940011000036108 Ramipril (Pharmacor) 1.25 mg hard capsule, 30, blister pack 146719 41432011000036103 Ramipril (Pharmacor) 1.25 mg hard capsule, 30 39902011000036101 Ramipril (Pharmacor) 1.25 mg hard capsule 39763011000036100 Ramipril (Pharmacor) 39763011000036100 Ramipril (Pharmacor) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +37609011000036100 Vepesid 100 mg/5 mL concentrated injection, 10 x 5 mL vials 19284 36876011000036106 Vepesid 100 mg/5 mL concentrated injection, 10 x 5 mL vials 36210011000036106 Vepesid 100 mg/5 mL concentrated injection, 5 mL vial 3683011000036107 Vepesid 3683011000036107 Vepesid 38762011000036109 etoposide 100 mg/5 mL injection, 10 x 5 mL vials 23503011000036101 etoposide 100 mg/5 mL injection, vial 21469011000036104 etoposide +77180011000036101 Lisinopril (GA) 20 mg uncoated tablet, 56, blister pack 106502 76573011000036108 Lisinopril (GA) 20 mg uncoated tablet, 56 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 78128011000036103 lisinopril 20 mg tablet, 56 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +928863011000036101 Risperidone (Pharmacor) 1 mg film-coated tablet, 60, blister pack 139800 928225011000036100 Risperidone (Pharmacor) 1 mg film-coated tablet, 60 927883011000036108 Risperidone (Pharmacor) 1 mg film-coated tablet 927799011000036107 Risperidone (Pharmacor) 927799011000036107 Risperidone (Pharmacor) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +18856011000036104 Adalat 20 mg film-coated tablet, 60, blister pack 18691 12167011000036107 Adalat 20 mg film-coated tablet, 60 5510011000036101 Adalat 20 mg film-coated tablet 22891000168102 Adalat 22891000168102 Adalat 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +871001000168106 Clopidogrel (AN) 75 mg film-coated tablet, 90, bottle 187037 870991000168105 Clopidogrel (AN) 75 mg film-coated tablet, 90 660371000168109 Clopidogrel (AN) 75 mg film-coated tablet 660361000168103 Clopidogrel (AN) 660361000168103 Clopidogrel (AN) 925444011000036105 clopidogrel 75 mg tablet, 90 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +933247171000036102 Tevagrastim 480 microgram/0.8 mL injection solution, 0.8 mL syringe 163677 933243551000036108 Tevagrastim 480 microgram/0.8 mL injection solution, 0.8 mL syringe 933241531000036101 Tevagrastim 480 microgram/0.8 mL injection solution, 0.8 mL syringe 933240801000036104 Tevagrastim 933240801000036104 Tevagrastim 933243561000036106 filgrastim 480 microgram/0.8 mL injection, 0.8 mL syringe 933241541000036106 filgrastim 480 microgram/0.8 mL injection, syringe 21265011000036102 filgrastim +718371000168102 Spiriva Respimat 2.5 microgram/actuation inhalation solution, 60 actuations, cartridge 132578 718361000168108 Spiriva Respimat 2.5 microgram/actuation inhalation solution, 60 actuations 718341000168109 Spiriva Respimat 2.5 microgram/actuation inhalation solution, actuation 718281000168108 Spiriva Respimat 718281000168108 Spiriva Respimat 718351000168106 tiotropium 2.5 microgram/actuation inhalation solution, 60 actuations 718331000168100 tiotropium 2.5 microgram/actuation inhalation solution, actuation 21484011000036102 tiotropium +801901000168101 Actonate EC Once-a-Week 35 mg enteric tablet, 10, blister pack 166840 801891000168100 Actonate EC Once-a-Week 35 mg enteric tablet, 10 801801000168106 Actonate EC Once-a-Week 35 mg enteric tablet 801791000168105 Actonate EC Once-a-Week 801791000168105 Actonate EC Once-a-Week 801881000168103 risedronate sodium 35 mg enteric tablet, 10 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +60243011000036105 Fexo (Chemists' Own) 180 mg film-coated tablet, 20, blister pack 134655 56202011000036100 Fexo (Chemists' Own) 180 mg film-coated tablet, 20 53840011000036109 Fexo (Chemists' Own) 180 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +37472011000036104 Fortum 1 g powder for injection, 1 vial 12508 36740011000036106 Fortum 1 g powder for injection, 1 vial 36061011000036105 Fortum 1 g powder for injection, vial 36003011000036105 Fortum 36003011000036105 Fortum 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +83194011000036101 Influvac 2010 injection solution, 1 x 0.5 mL syringe 81465 83140011000036103 Influvac 2010 injection solution, 1 x 0.5 mL syringe 83081011000036106 Influvac 2010 injection solution, 0.5 mL syringe 52191000168105 Influvac 2010 52191000168105 Influvac 2010 83211011000036102 influenza trivalent adult vaccine 2010 injection, 1 x 0.5 mL syringe 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +81681000036109 Doxorubicin Hydrochloride (Accord) 200 mg/100 mL concentrated injection, 100 mL vial 174244 80111000036103 Doxorubicin Hydrochloride (Accord) 200 mg/100 mL concentrated injection, 100 mL vial 78561000036104 Doxorubicin Hydrochloride (Accord) 200 mg/100 mL concentrated injection, 100 mL vial 78051000036106 Doxorubicin Hydrochloride (Accord) 78051000036106 Doxorubicin Hydrochloride (Accord) 33809011000036103 doxorubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 33680011000036101 doxorubicin hydrochloride 200 mg/100 mL injection, vial 21638011000036100 doxorubicin +50588011000036100 Clarithromycin (Chemmart) 500 mg film-coated tablet, 20, blister pack 134860 49620011000036107 Clarithromycin (Chemmart) 500 mg film-coated tablet, 20 48790011000036107 Clarithromycin (Chemmart) 500 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 51514011000036103 clarithromycin 500 mg tablet, 20 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +931369011000036107 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 50 mL, bottle 10908 930554011000036107 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 50 mL 929926011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid 929899011000036104 Eucalyptus Oil (Bosisto's) 929899011000036104 Eucalyptus Oil (Bosisto's) 927355011000036103 eucalyptus oil 1 mL/mL liquid, 50 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +38461000036100 Escilupin 10 mg film-coated tablet, 30, bottle 165851 34791000036105 Escilupin 10 mg film-coated tablet, 30 33161000036101 Escilupin 10 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +87734011000036107 Risperidone (DRLA) 3 mg film-coated tablet, 20, blister pack 165517 87500011000036105 Risperidone (DRLA) 3 mg film-coated tablet, 20 87343011000036105 Risperidone (DRLA) 3 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 81626011000036109 risperidone 3 mg tablet, 20 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +1026771000168108 Pregabalin (Amneal) 150 mg hard capsule, 14, bottle 235880 1026651000168108 Pregabalin (Amneal) 150 mg hard capsule, 14 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1080781000168101 Claratyne Children's 5 mg chewable tablet, 5, blister pack 169329 1080771000168104 Claratyne Children's 5 mg chewable tablet, 5 930070011000036102 Claratyne Children's 5 mg chewable tablet 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 1080761000168105 loratadine 5 mg chewable tablet, 5 931862011000036104 loratadine 5 mg chewable tablet 21701011000036106 loratadine +79707011000036104 Allerfexo 180 mg film-coated tablet, 7, blister pack 159416 79523011000036100 Allerfexo 180 mg film-coated tablet, 7 79394011000036109 Allerfexo 180 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 79829011000036101 fexofenadine hydrochloride 180 mg tablet, 7 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +68750011000036105 Bonjela Teething 8.7% oral gel, 15 g, tube 10322 66494011000036109 Bonjela Teething 8.7% oral gel, 15 g 65433011000036103 Bonjela Teething 8.7% oral gel 44691000168108 Bonjela Teething 44691000168108 Bonjela Teething 71369011000036103 choline salicylate 8.7% oral gel, 15 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +933212921000036106 Prava 40 mg uncoated tablet, 30, blister pack 156361 933202611000036106 Prava 40 mg uncoated tablet, 30 933195191000036100 Prava 40 mg uncoated tablet 933193911000036107 Prava 933193911000036107 Prava 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +678191000168101 Glycine500 containing 500 mg glycine powder for oral liquid, 30 x 4 g sachets 678181000168104 Glycine500 containing 500 mg glycine powder for oral liquid, 30 x 4 g sachets 678161000168108 Glycine500 containing 500 mg glycine powder for oral liquid, 4 g sachet 678131000168100 Glycine500 678131000168100 Glycine500 678171000168102 glycine with carbohydrate containing 500 mg glycine powder for oral liquid, 30 x 4 g sachets 678151000168106 glycine with carbohydrate containing 500 mg glycine powder for oral liquid, 4 g sachet 678141000168109 glycine with carbohydrate +12881000036104 Femolet 2.5 mg film-coated tablet, 30, blister pack 166010 8041000036101 Femolet 2.5 mg film-coated tablet, 30 3501000036103 Femolet 2.5 mg film-coated tablet 541000036103 Femolet 541000036103 Femolet 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +43863011000036104 Lisinotrust 20 mg uncoated tablet, 28, blister pack 128162 41359011000036100 Lisinotrust 20 mg uncoated tablet, 28 39855011000036107 Lisinotrust 20 mg uncoated tablet 39731011000036109 Lisinotrust 39731011000036109 Lisinotrust 46264011000036101 lisinopril 20 mg tablet, 28 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +930981000168100 Xatral ER 5 mg modified release tablet, 56, blister pack 60097 930971000168103 Xatral ER 5 mg modified release tablet, 56 930951000168107 Xatral ER 5 mg modified release tablet 930931000168101 Xatral ER 930931000168101 Xatral ER 930961000168109 alfuzosin hydrochloride 5 mg modified release tablet, 56 930941000168105 alfuzosin hydrochloride 5 mg modified release tablet 926977011000036100 alfuzosin +69264011000036101 Chlorhexidine Acetate (Baxter) 0.5% (5 g/L) irrigation solution, 10 x 1 L bottles 19474 67064011000036104 Chlorhexidine Acetate (Baxter) 0.5% (5 g/L) irrigation solution, 10 x 1 L bottles 65412011000036102 Chlorhexidine Acetate (Baxter) 0.5% (5 g/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71634011000036103 chlorhexidine acetate 0.5% (5 g/L) solution, 10 x 1 L bottles 70102011000036106 chlorhexidine acetate 0.5% (5 g/L) solution, bottle 21404011000036101 chlorhexidine +1050341000168103 Bupredermal 40 microgram/hour patch, 4, sachet 234747 1050331000168107 Bupredermal 40 microgram/hour patch, 4 1050301000168100 Bupredermal 40 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1048721000168108 buprenorphine 40 microgram/hour patch, 4 773931000168101 buprenorphine 40 microgram/hour patch 21232011000036101 buprenorphine +716361000168107 Pemzo 20 mg enteric capsule, 15, blister pack 149517 716351000168105 Pemzo 20 mg enteric capsule, 15 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716341000168108 omeprazole 20 mg enteric capsule, 15 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +857531000168104 Invega Trinza 525 mg/2.625 mL modified release injection, 2.625 mL syringe 261408 857521000168102 Invega Trinza 525 mg/2.625 mL modified release injection, 2.625 mL syringe 857511000168109 Invega Trinza 525 mg/2.625 mL modified release injection, 2.625 mL syringe 857421000168101 Invega Trinza 857421000168101 Invega Trinza 857181000168108 paliperidone 525 mg/2.625 mL modified release injection, 2.625 mL syringe 857161000168104 paliperidone 525 mg/2.625 mL modified release injection, syringe 34837011000036104 paliperidone +937311000168106 Oxaliplatin (Accord) 100 mg/20 mL concentrated injection, 20 mL vial 209720 937301000168108 Oxaliplatin (Accord) 100 mg/20 mL concentrated injection, 20 mL vial 937291000168107 Oxaliplatin (Accord) 100 mg/20 mL concentrated injection, 20 mL vial 937281000168109 Oxaliplatin (Accord) 937281000168109 Oxaliplatin (Accord) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +44377011000036102 Stilnox 10 mg film-coated tablet, 2, blister pack 69681 41840011000036106 Stilnox 10 mg film-coated tablet, 2 40226011000036106 Stilnox 10 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 46646011000036100 zolpidem tartrate 10 mg tablet, 2 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +797701000168105 Citalopram (A) 20 mg film-coated tablet, 28, blister pack 234595 797431000168108 Citalopram (A) 20 mg film-coated tablet, 28 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +735591000168107 Aldiq 5% cream, 250 mg sachet 201801 735581000168109 Aldiq 5% cream, 250 mg sachet 143541000036102 Aldiq 5% cream, 250 mg sachet 143331000036103 Aldiq 143331000036103 Aldiq 735531000168108 imiquimod 5% cream, 250 mg sachet 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +943751000168101 Medformin 500 mg film-coated tablet, 100, bottle 100287 943741000168103 Medformin 500 mg film-coated tablet, 100 943701000168100 Medformin 500 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +18299011000036109 Ciprofloxacin (BW) 750 mg film-coated tablet, 14, blister pack 127782 11848011000036106 Ciprofloxacin (BW) 750 mg film-coated tablet, 14 6010011000036102 Ciprofloxacin (BW) 750 mg film-coated tablet 4377011000036101 Ciprofloxacin (BW) 4377011000036101 Ciprofloxacin (BW) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +68947011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 133242 66749011000036108 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71417011000036100 paracetamol 500 mg powder for oral liquid, 1 sachet 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +38781000036103 Escitalup 15 mg film-coated tablet, 30, bottle 165871 35151000036103 Escitalup 15 mg film-coated tablet, 30 33121000036105 Escitalup 15 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +17828011000036107 Prexaton 150 mg modified release tablet, 90, blister pack 119661 11623011000036109 Prexaton 150 mg modified release tablet, 90 5100011000036106 Prexaton 150 mg modified release tablet 3293011000036108 Prexaton 3293011000036108 Prexaton 27772011000036106 bupropion hydrochloride 150 mg modified release tablet, 90 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +797541000168103 Citalopram (A) 20 mg film-coated tablet, 500, bottle 158882 797531000168107 Citalopram (A) 20 mg film-coated tablet, 500 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 933203261000036103 citalopram 20 mg tablet, 500 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +943731000168107 Medformin 500 mg film-coated tablet, 10, bottle 100287 943721000168109 Medformin 500 mg film-coated tablet, 10 943701000168100 Medformin 500 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943711000168102 metformin hydrochloride 500 mg tablet, 10 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +955951000168102 Genexol 100 mg/16.7 mL concentrated injection, 16.7 mL vial 129578 955941000168104 Genexol 100 mg/16.7 mL concentrated injection, 16.7 mL vial 955931000168108 Genexol 100 mg/16.7 mL concentrated injection, 16.7 mL vial 955891000168100 Genexol 955891000168100 Genexol 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +50416011000036107 Tubigrip B (1520) 6.25 cm x 1 m bandage, 1, carton 49301011000036100 Tubigrip B (1520) 6.25 cm x 1 m bandage, 1 48506011000036109 Tubigrip B (1520) 6.25 cm x 1 m bandage 43381000168101 Tubigrip B (1520) 43381000168101 Tubigrip B (1520) 51287011000036104 bandage tubular 6.25 cm x 1 m bandage, 1 50816011000036101 bandage tubular 6.25 cm x 1 m bandage 50697011000036107 bandage tubular +933231601000036108 Taxotere (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack, composite pack 53455 933225861000036106 Taxotere (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack 634251000168109 Taxotere (inert substance) diluent, 6 mL vial 4063011000036102 Taxotere 4063011000036102 Taxotere 933225871000036103 docetaxel 80 mg/2 mL injection [2 mL vial] (&) inert substance diluent [6 mL vial], 1 pack 634241000168107 inert substance diluent, 6 mL vial 21220011000036103 inert substance +933231601000036108 Taxotere (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack, composite pack 53455 933225861000036106 Taxotere (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack 33086011000036109 Taxotere (docetaxel 80 mg/2 mL) concentrated injection, 2 mL vial 4063011000036102 Taxotere 4063011000036102 Taxotere 933225871000036103 docetaxel 80 mg/2 mL injection [2 mL vial] (&) inert substance diluent [6 mL vial], 1 pack 33678011000036109 docetaxel 80 mg/2 mL injection, vial 21721011000036101 docetaxel +24481000036103 Mycophenolate Mofetil (Pharmacor) 250 mg hard capsule, 100, blister pack 173633 22541000036101 Mycophenolate Mofetil (Pharmacor) 250 mg hard capsule, 100 20021000036102 Mycophenolate Mofetil (Pharmacor) 250 mg hard capsule 15141000036108 Mycophenolate Mofetil (Pharmacor) 15141000036108 Mycophenolate Mofetil (Pharmacor) 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +933247451000036101 Exemestane (Sandoz) 25 mg film-coated tablet, 30, blister pack 174337 933244301000036100 Exemestane (Sandoz) 25 mg film-coated tablet, 30 933241791000036107 Exemestane (Sandoz) 25 mg film-coated tablet 933241011000036104 Exemestane (Sandoz) 933241011000036104 Exemestane (Sandoz) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +676181000168103 Celecoxib (Terry White Chemists) 200 mg hard capsule, 30, blister pack 226152 676171000168101 Celecoxib (Terry White Chemists) 200 mg hard capsule, 30 676161000168107 Celecoxib (Terry White Chemists) 200 mg hard capsule 676121000168102 Celecoxib (Terry White Chemists) 676121000168102 Celecoxib (Terry White Chemists) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +43998011000036103 Brevibloc 100 mg/10 mL injection solution, 5 x 10 mL vials 43494 41489011000036104 Brevibloc 100 mg/10 mL injection solution, 5 x 10 mL vials 40011011000036101 Brevibloc 100 mg/10 mL injection solution, 10 mL vial 39685011000036107 Brevibloc 39685011000036107 Brevibloc 46335011000036103 esmolol hydrochloride 100 mg/10 mL injection, 5 x 10 mL vials 45087011000036101 esmolol hydrochloride 100 mg/10 mL injection, vial 44945011000036102 esmolol +68956011000036100 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 7 sachets 133242 66758011000036103 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 7 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71426011000036106 paracetamol 500 mg powder for oral liquid, 7 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +86165011000036109 Accu-Chek Mobile diagnostic strip, 100, bottle 166977 85773011000036106 Accu-Chek Mobile diagnostic strip, 100 83259011000036109 Accu-Chek Mobile diagnostic strip 33801000168104 Accu-Chek Mobile 33801000168104 Accu-Chek Mobile 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +802861000168104 Abilify ODT 30 mg orally disintegrating tablet, 20, blister pack 128904 802851000168101 Abilify ODT 30 mg orally disintegrating tablet, 20 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802841000168103 aripiprazole 30 mg orally disintegrating tablet, 20 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +719331000168105 Lyxumia 10 microgram/dose injection solution, 14 doses, injection device 192722 719321000168107 Lyxumia 10 microgram/dose injection solution, 14 doses 719301000168103 Lyxumia 10 microgram/dose injection solution, dose 177641000036107 Lyxumia 177641000036107 Lyxumia 719311000168100 lixisenatide 10 microgram/dose injection, 14 doses 719291000168104 lixisenatide 10 microgram/dose injection, dose 177821000036103 lixisenatide +60242011000036103 Fexo (Chemists' Own) 180 mg film-coated tablet, 10, blister pack 134655 56201011000036106 Fexo (Chemists' Own) 180 mg film-coated tablet, 10 53840011000036109 Fexo (Chemists' Own) 180 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +130991000036106 Montelukast (Apo) 4 mg chewable tablet, 28, blister pack 179118 127901000036100 Montelukast (Apo) 4 mg chewable tablet, 28 124271000036106 Montelukast (Apo) 4 mg chewable tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +676501000168100 Celecoxib (Actavis) 200 mg hard capsule, 30, blister pack 206822 676491000168107 Celecoxib (Actavis) 200 mg hard capsule, 30 676481000168109 Celecoxib (Actavis) 200 mg hard capsule 676471000168106 Celecoxib (Actavis) 676471000168106 Celecoxib (Actavis) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1097091000168103 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 20, blister pack 286508 1097081000168101 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 20 1097001000168109 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet 1096981000168100 Ibuprofen Double Strength (Medreich) 1096981000168100 Ibuprofen Double Strength (Medreich) 985941000168109 ibuprofen 400 mg tablet, 20 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +933231641000036106 Diclofenac Sodium (Sandoz) 50 mg enteric tablet, 50, bottle 61298 933226211000036104 Diclofenac Sodium (Sandoz) 50 mg enteric tablet, 50 933221061000036100 Diclofenac Sodium (Sandoz) 50 mg enteric tablet 933218871000036103 Diclofenac Sodium (Sandoz) 933218871000036103 Diclofenac Sodium (Sandoz) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +960291000168104 Ciram 20 mg film-coated tablet, 14, bottle 158859 959211000168107 Ciram 20 mg film-coated tablet, 14 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +20100011000036103 Neurontin 600 mg film-coated tablet, 100, bottle 71790 13328011000036102 Neurontin 600 mg film-coated tablet, 100 6614011000036101 Neurontin 600 mg film-coated tablet 4344011000036106 Neurontin 4344011000036106 Neurontin 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +18452011000036108 Oxybutynin Hydrochloride (Sandoz) 5 mg uncoated tablet, 100, bottle 130902 11914011000036102 Oxybutynin Hydrochloride (Sandoz) 5 mg uncoated tablet, 100 5287011000036105 Oxybutynin Hydrochloride (Sandoz) 5 mg uncoated tablet 4032011000036100 Oxybutynin Hydrochloride (Sandoz) 4032011000036100 Oxybutynin Hydrochloride (Sandoz) 27214011000036103 oxybutynin hydrochloride 5 mg tablet, 100 22574011000036104 oxybutynin hydrochloride 5 mg tablet 21620011000036100 oxybutynin +19132011000036106 Permax 50 microgram uncoated tablet, 100, bottle 43650 12581011000036106 Permax 50 microgram uncoated tablet, 100 5249011000036108 Permax 50 microgram uncoated tablet 3138011000036108 Permax 3138011000036108 Permax 27217011000036109 pergolide 50 microgram tablet, 100 22578011000036106 pergolide 50 microgram tablet 21344011000036101 pergolide +1068261000168100 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 10, blister pack 188379 1068251000168102 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 10 1068241000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1088411000168100 Mersynofen film-coated tablet, 6, blister pack 283907 1088401000168103 Mersynofen film-coated tablet, 6 1088371000168101 Mersynofen film-coated tablet 1088361000168107 Mersynofen 1088361000168107 Mersynofen 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1005951000168103 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 195811 1005941000168100 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 1005931000168109 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag 710981000168100 Ropivacaine 0.2% (Kabi) 710981000168100 Ropivacaine 0.2% (Kabi) 1004651000168106 ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags 1004631000168100 ropivacaine hydrochloride 400 mg/200 mL injection, bag 44857011000036102 ropivacaine +1102461000168109 Docetaxel (Actavis) 20 mg/mL concentrated injection, 1 mL vial 167641 1102451000168107 Docetaxel (Actavis) 20 mg/mL concentrated injection, 1 mL vial 1102441000168105 Docetaxel (Actavis) 20 mg/mL concentrated injection, vial 1102401000168108 Docetaxel (Actavis) 1102401000168108 Docetaxel (Actavis) 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +86030011000036101 Coveram 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 154440 85682011000036103 Coveram 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30 85331011000036107 Coveram 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet 18091000168103 Coveram 10mg/5mg (perindopril arginine/amlodipine) 18091000168103 Coveram 10mg/5mg (perindopril arginine/amlodipine) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +933211481000036105 Antiseptic (Chemmart) cream, 50 g, tube 136258 933200591000036101 Antiseptic (Chemmart) cream, 50 g 933194541000036103 Antiseptic (Chemmart) cream 933193901000036105 Antiseptic (Chemmart) 933193901000036105 Antiseptic (Chemmart) 63520011000036109 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 50 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +686211000168109 Rosuvastatin (Blooms The Chemist) 10 mg film-coated tablet, 30, blister pack 183064 686201000168106 Rosuvastatin (Blooms The Chemist) 10 mg film-coated tablet, 30 686191000168108 Rosuvastatin (Blooms The Chemist) 10 mg film-coated tablet 686151000168103 Rosuvastatin (Blooms The Chemist) 686151000168103 Rosuvastatin (Blooms The Chemist) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +69486011000036105 Strepsils Plus lozenge, 3, blister pack 50509 67286011000036100 Strepsils Plus lozenge, 3 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71834011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 3 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +165781000036108 Azastrole 1 mg film-coated tablet, 30, blister pack 188388 163831000036103 Azastrole 1 mg film-coated tablet, 30 162681000036108 Azastrole 1 mg film-coated tablet 162001000036108 Azastrole 162001000036108 Azastrole 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +21134011000036108 Simvahexal 80 mg film-coated tablet, 30, blister pack 98624 14277011000036105 Simvahexal 80 mg film-coated tablet, 30 7563011000036107 Simvahexal 80 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +44309011000036102 Arima 300 mg film-coated tablet, 60, blister pack 66482 41776011000036105 Arima 300 mg film-coated tablet, 60 40195011000036108 Arima 300 mg film-coated tablet 39674011000036104 Arima 39674011000036104 Arima 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +952661000168103 Clindamycin (DBL) 600 mg/4 mL injection solution, 10 x 4 mL ampoules 121775 952651000168100 Clindamycin (DBL) 600 mg/4 mL injection solution, 10 x 4 mL ampoules 952641000168102 Clindamycin (DBL) 600 mg/4 mL injection solution, 4 mL ampoule 952631000168106 Clindamycin (DBL) 952631000168106 Clindamycin (DBL) 46357011000036109 clindamycin 600 mg/4 mL injection, 10 x 4 mL ampoules 45103011000036104 clindamycin 600 mg/4 mL injection, ampoule 21255011000036108 clindamycin +1050981000168109 Targin 5/2.5 mg modified release tablet, 60, blister pack 156067 1050971000168106 Targin 5/2.5 mg modified release tablet, 60 923035011000036109 Targin 5/2.5 mg modified release tablet 20411000168109 Targin 5/2.5 mg 20411000168109 Targin 5/2.5 mg 1050961000168100 oxycodone hydrochloride 5 mg + naloxone hydrochloride 2.5 mg modified release tablet, 60 923973011000036102 oxycodone hydrochloride 5 mg + naloxone hydrochloride 2.5 mg modified release tablet 923931011000036100 oxycodone + naloxone +1010291000168105 Aprolan ODT 10 mg orally disintegrating tablet, 28, blister pack 163418 1010281000168107 Aprolan ODT 10 mg orally disintegrating tablet, 28 1010271000168109 Aprolan ODT 10 mg orally disintegrating tablet 1010081000168101 Aprolan ODT 1010081000168101 Aprolan ODT 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +831691000168106 Otezla Titration Pack (4 x 10 mg tablets, 4 x 20 mg tablets, 19 x 30 mg tablets), 27, blister pack 220424 831681000168108 Otezla Titration Pack (4 x 10 mg tablets, 4 x 20 mg tablets, 19 x 30 mg tablets), 27 831651000168101 Otezla Titration Pack 20 mg film-coated tablet 831611000168102 Otezla Titration Pack 831611000168102 Otezla Titration Pack 831671000168105 apremilast 10 mg tablet [4] (&) apremilast 20 mg tablet [4] (&) apremilast 30 mg tablet [19], 27 831641000168103 apremilast 20 mg tablet 804621000168104 apremilast +831691000168106 Otezla Titration Pack (4 x 10 mg tablets, 4 x 20 mg tablets, 19 x 30 mg tablets), 27, blister pack 220424 831681000168108 Otezla Titration Pack (4 x 10 mg tablets, 4 x 20 mg tablets, 19 x 30 mg tablets), 27 831661000168104 Otezla Titration Pack 30 mg film-coated tablet 831611000168102 Otezla Titration Pack 831611000168102 Otezla Titration Pack 831671000168105 apremilast 10 mg tablet [4] (&) apremilast 20 mg tablet [4] (&) apremilast 30 mg tablet [19], 27 804631000168101 apremilast 30 mg tablet 804621000168104 apremilast +831691000168106 Otezla Titration Pack (4 x 10 mg tablets, 4 x 20 mg tablets, 19 x 30 mg tablets), 27, blister pack 220424 831681000168108 Otezla Titration Pack (4 x 10 mg tablets, 4 x 20 mg tablets, 19 x 30 mg tablets), 27 831631000168107 Otezla Titration Pack 10 mg film-coated tablet 831611000168102 Otezla Titration Pack 831611000168102 Otezla Titration Pack 831671000168105 apremilast 10 mg tablet [4] (&) apremilast 20 mg tablet [4] (&) apremilast 30 mg tablet [19], 27 831621000168109 apremilast 10 mg tablet 804621000168104 apremilast +942931000168103 Fluvoxamine (Apotex) 100 mg film-coated tablet, 30, blister pack 147397 942921000168101 Fluvoxamine (Apotex) 100 mg film-coated tablet, 30 942911000168108 Fluvoxamine (Apotex) 100 mg film-coated tablet 942901000168105 Fluvoxamine (Apotex) 942901000168105 Fluvoxamine (Apotex) 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +895021000168106 Olmertan Combi 20/12.5 film-coated tablet, 30, blister pack 221132 895011000168104 Olmertan Combi 20/12.5 film-coated tablet, 30 895001000168102 Olmertan Combi 20/12.5 film-coated tablet 894961000168101 Olmertan Combi 20/12.5 894961000168101 Olmertan Combi 20/12.5 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +1088431000168105 Mersynofen film-coated tablet, 12, blister pack 283907 1088421000168107 Mersynofen film-coated tablet, 12 1088371000168101 Mersynofen film-coated tablet 1088361000168107 Mersynofen 1088361000168107 Mersynofen 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +61665011000036105 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 48, blister pack 97350 57587011000036109 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 48 54357011000036107 Paracetamol Tabsule (Herron) 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19449011000036104 Acenorm 50 mg uncoated tablet, 90, blister pack 54092 12752011000036108 Acenorm 50 mg uncoated tablet, 90 6046011000036109 Acenorm 50 mg uncoated tablet 4183011000036109 Acenorm 4183011000036109 Acenorm 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +87179011000036102 Nicabate CQ Mint 2 mg lozenge, 72, blister pack 106869 87114011000036105 Nicabate CQ Mint 2 mg lozenge, 72 87060011000036106 Nicabate CQ Mint 2 mg lozenge 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 87230011000036108 nicotine 2 mg lozenge, 72 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1093801000168109 Low Dose Aspirin (Coles) 100 mg enteric tablet, 84, blister pack 281316 1093791000168108 Low Dose Aspirin (Coles) 100 mg enteric tablet, 84 1093761000168101 Low Dose Aspirin (Coles) 100 mg enteric tablet 1093751000168103 Low Dose Aspirin (Coles) 1093751000168103 Low Dose Aspirin (Coles) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +60533011000036103 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet, 24, blister pack 152037 56491011000036105 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet, 24 53940011000036103 Sinus Allergy and Pain Relief PE (Guardian) uncoated tablet 53169011000036104 Sinus Allergy and Pain Relief PE (Guardian) 53169011000036104 Sinus Allergy and Pain Relief PE (Guardian) 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +920813011000036102 Alprazolam (Sandoz) 250 microgram uncoated tablet, 50, blister pack 98663 920492011000036102 Alprazolam (Sandoz) 250 microgram uncoated tablet, 50 920223011000036103 Alprazolam (Sandoz) 250 microgram uncoated tablet 920078011000036101 Alprazolam (Sandoz) 920078011000036101 Alprazolam (Sandoz) 28280011000036103 alprazolam 250 microgram tablet, 50 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +69391011000036105 No-Doz Awakeners 100 mg uncoated tablet, 2, strip pack 40353 67191011000036106 No-Doz Awakeners 100 mg uncoated tablet, 2 65307011000036106 No-Doz Awakeners 100 mg uncoated tablet 24711000168109 No-Doz Awakeners 24711000168109 No-Doz Awakeners 71750011000036103 caffeine 100 mg tablet, 2 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +889641000168105 Amisulpride (SCP) 50 mg uncoated tablet, 60, blister pack 234712 889631000168101 Amisulpride (SCP) 50 mg uncoated tablet, 60 889601000168108 Amisulpride (SCP) 50 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1011751000168101 Donepezil (Apotex) 5 mg film-coated tablet, 28, blister pack 168335 1011741000168103 Donepezil (Apotex) 5 mg film-coated tablet, 28 1011701000168100 Donepezil (Apotex) 5 mg film-coated tablet 1011531000168103 Donepezil (Apotex) 1011531000168103 Donepezil (Apotex) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +938681000168105 Celecoxib (Pfizer) 100 mg hard capsule, 50, blister pack 211500 938671000168107 Celecoxib (Pfizer) 100 mg hard capsule, 50 938561000168102 Celecoxib (Pfizer) 100 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +931450011000036103 Antiseptic Plus (Chemists' Own) cream, 50 g, tube 145050 930629011000036102 Antiseptic Plus (Chemists' Own) cream, 50 g 929980011000036101 Antiseptic Plus (Chemists' Own) cream 929847011000036101 Antiseptic Plus (Chemists' Own) 929847011000036101 Antiseptic Plus (Chemists' Own) 63520011000036109 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 50 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +68930011000036104 Chlorhexidine Gluconate (Pfizer (Perth)) 0.1% irrigation solution, 30 x 30 mL ampoules 11175 66593011000036103 Chlorhexidine Gluconate (Pfizer (Perth)) 0.1% irrigation solution, 30 x 30 mL ampoules 65204011000036108 Chlorhexidine Gluconate (Pfizer (Perth)) 0.1% irrigation solution, 30 mL ampoule 65148011000036108 Chlorhexidine Gluconate (Pfizer (Perth)) 65148011000036108 Chlorhexidine Gluconate (Pfizer (Perth)) 71316011000036106 chlorhexidine gluconate 0.1% solution, 30 x 30 mL ampoules 69946011000036104 chlorhexidine gluconate 0.1% solution, ampoule 21404011000036101 chlorhexidine +938751000168107 Celecoxib (Ran) 200 mg hard capsule, 20, blister pack 212787 938741000168105 Celecoxib (Ran) 200 mg hard capsule, 20 938691000168108 Celecoxib (Ran) 200 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +131151000036107 Candesartan Cilexetil (Stada) 32 mg uncoated tablet, 30, blister pack 195477 128261000036106 Candesartan Cilexetil (Stada) 32 mg uncoated tablet, 30 125031000036103 Candesartan Cilexetil (Stada) 32 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +955881000168103 Ramipril (Winthrop) 10 mg hard capsule, 28, blister pack 128854 955871000168101 Ramipril (Winthrop) 10 mg hard capsule, 28 933219401000036103 Ramipril (Winthrop) 10 mg hard capsule 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 46764011000036105 ramipril 10 mg capsule, 28 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +869081000168105 Pacrolim 1 mg hard capsule, 10, blister pack 224268 869071000168107 Pacrolim 1 mg hard capsule, 10 869061000168101 Pacrolim 1 mg hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 749071000168100 tacrolimus 1 mg capsule, 10 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +37695011000036104 Ebixa 10 mg film-coated tablet, 56, blister pack 180400 36961011000036101 Ebixa 10 mg film-coated tablet, 56 36282011000036108 Ebixa 10 mg film-coated tablet 19751000168102 Ebixa 19751000168102 Ebixa 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +37695011000036104 Ebixa 10 mg film-coated tablet, 56, blister pack 82026 36961011000036101 Ebixa 10 mg film-coated tablet, 56 36282011000036108 Ebixa 10 mg film-coated tablet 19751000168102 Ebixa 19751000168102 Ebixa 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +86862011000036105 Micolette Micro enema, 4 x 5 mL, tube 142564 86748011000036102 Micolette Micro enema, 4 x 5 mL 86626011000036107 Micolette Micro enema, 5 mL 35381000168101 Micolette Micro 35381000168101 Micolette Micro 26865011000036109 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema, 4 x 5 mL 22244011000036107 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema 21630011000036102 citric acid + lauryl sulfoacetate sodium + sorbitol +61374011000036109 Benadryl for the Family Nightime oral liquid solution, 200 mL, bottle 81664 57299011000036107 Benadryl for the Family Nightime oral liquid solution, 200 mL 54264011000036104 Benadryl for the Family Nightime oral liquid solution, 5 mL 17831000168108 Benadryl for the Family Nightime 17831000168108 Benadryl for the Family Nightime 63799011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 200 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +19567011000036107 Amaryl 2 mg uncoated tablet, 30, blister pack 57189 12838011000036108 Amaryl 2 mg uncoated tablet, 30 6129011000036106 Amaryl 2 mg uncoated tablet 4320011000036103 Amaryl 4320011000036103 Amaryl 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +50252011000036100 Tenderwet 24 Active (609210) 4 cm dressing, 8, carton 49389011000036102 Tenderwet 24 Active (609210) 4 cm dressing, 8 48734011000036108 Tenderwet 24 Active (609210) 4 cm dressing 24661000168104 Tenderwet 24 Active (609210) 24661000168104 Tenderwet 24 Active (609210) 51362011000036106 dressing hydroactive debridement 4 cm dressing, 8 50884011000036106 dressing hydroactive debridement 4 cm dressing 50721011000036101 dressing hydroactive debridement +20074011000036107 Magicul 200 mg film-coated tablet, 120, bottle 70763 13304011000036103 Magicul 200 mg film-coated tablet, 120 6588011000036104 Magicul 200 mg film-coated tablet 3689011000036105 Magicul 3689011000036105 Magicul 27678011000036100 cimetidine 200 mg tablet, 120 23015011000036100 cimetidine 200 mg tablet 21427011000036101 cimetidine +19060011000036108 Veracaps SR 160 mg modified release capsule, 30, blister pack 41033 12368011000036101 Veracaps SR 160 mg modified release capsule, 30 4564011000036103 Veracaps SR 160 mg modified release capsule 25621000168105 Veracaps SR 25621000168105 Veracaps SR 27080011000036103 verapamil hydrochloride 160 mg modified release capsule, 30 22449011000036107 verapamil hydrochloride 160 mg modified release capsule 21287011000036109 verapamil +960131000168108 Dormizol CR 6.25 mg modified release tablet, 2, blister pack 120712 960121000168105 Dormizol CR 6.25 mg modified release tablet, 2 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46178011000036103 zolpidem tartrate 6.25 mg modified release tablet, 2 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +154131000036101 Carbimazole (Aristo) 5 mg uncoated tablet, 100, bottle 149851000036104 Carbimazole (Aristo) 5 mg uncoated tablet, 100 147991000036106 Carbimazole (Aristo) 5 mg uncoated tablet 147941000036100 Carbimazole (Aristo) 147941000036100 Carbimazole (Aristo) 26730011000036108 carbimazole 5 mg tablet, 100 22125011000036106 carbimazole 5 mg tablet 21822011000036105 carbimazole +817711000168105 Dynoval 10/5 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200817 817701000168107 Dynoval 10/5 (perindopril arginine/amlodipine) uncoated tablet, 30 817671000168106 Dynoval 10/5 (perindopril arginine/amlodipine) uncoated tablet 817661000168100 Dynoval 10/5 (perindopril arginine/amlodipine) 817661000168100 Dynoval 10/5 (perindopril arginine/amlodipine) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +21160011000036109 Seaze 5 mg tablet, 56, blister pack 99030 14302011000036105 Seaze 5 mg tablet, 56 7588011000036100 Seaze 5 mg tablet 3240011000036108 Seaze 3240011000036108 Seaze 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +1023311000168108 Ibuprofen (A) 200 mg film-coated tablet, 50, blister pack 161314 1023301000168105 Ibuprofen (A) 200 mg film-coated tablet, 50 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44721011000036107 Chirocaine 250 mg/200 mL injection solution, 12 x 200 mL bags 94482 42166011000036106 Chirocaine 250 mg/200 mL injection solution, 12 x 200 mL bags 40373011000036109 Chirocaine 250 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46927011000036103 levobupivacaine 250 mg/200 mL injection, 12 x 200 mL bags 45348011000036105 levobupivacaine 250 mg/200 mL injection, bag 44881011000036100 levobupivacaine +756701000168100 Olanzacor 2.5 mg film-coated tablet, 28, blister pack 207850 756691000168100 Olanzacor 2.5 mg film-coated tablet, 28 756681000168103 Olanzacor 2.5 mg film-coated tablet 756671000168101 Olanzacor 756671000168101 Olanzacor 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +44139011000036104 Marcain 0.375% (75 mg/20 mL) injection solution, 5 x 20 mL ampoules 52691 41615011000036101 Marcain 0.375% (75 mg/20 mL) injection solution, 5 x 20 mL ampoules 40103011000036109 Marcain 0.375% (75 mg/20 mL) injection solution, 20 mL ampoule 12651000168100 Marcain 12651000168100 Marcain 46435011000036108 bupivacaine hydrochloride monohydrate 0.375% (75 mg/20 mL) injection, 5 x 20 mL ampoules 45153011000036107 bupivacaine hydrochloride monohydrate 0.375% (75 mg/20 mL) injection, ampoule 37702011000036102 bupivacaine +805831000168101 Uptravi 400 microgram film-coated tablet, 60, blister pack 234160 805821000168104 Uptravi 400 microgram film-coated tablet, 60 805801000168108 Uptravi 400 microgram film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 805811000168106 selexipag 400 microgram tablet, 60 805791000168107 selexipag 400 microgram tablet 805661000168108 selexipag +18095011000036104 Gabitril 5 mg film-coated tablet, 100, bottle 120271 11635011000036107 Gabitril 5 mg film-coated tablet, 100 4711011000036104 Gabitril 5 mg film-coated tablet 3197011000036101 Gabitril 3197011000036101 Gabitril 26715011000036107 tiagabine 5 mg tablet, 100 22110011000036109 tiagabine 5 mg tablet 21707011000036103 tiagabine +43776011000036103 Glimepiride (Sandoz) 1 mg uncoated tablet, 30, bottle 121785 11690011000036107 Glimepiride (Sandoz) 1 mg uncoated tablet, 30 5878011000036105 Glimepiride (Sandoz) 1 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +922013011000036108 Prohance 4.19 g/15 mL injection solution, 5 x 15 mL syringes 72675 921571011000036102 Prohance 4.19 g/15 mL injection solution, 5 x 15 mL syringes 921093011000036108 Prohance 4.19 g/15 mL injection solution, 15 mL syringe 20611000168106 Prohance 20611000168106 Prohance 922685011000036103 gadoteridol 4.19 g/15 mL injection, 5 x 15 mL syringes 922157011000036103 gadoteridol 4.19 g/15 mL injection, syringe 922035011000036101 gadoteridol +933247491000036105 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet, 28, blister pack 175917 933244351000036104 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet, 28 933241821000036101 Bisoprolol Fumarate (Pfizer) 10 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +60723011000036101 Disprin Extra Strength 500 mg dispersible tablet, 24, strip pack 46374 56681011000036108 Disprin Extra Strength 500 mg dispersible tablet, 24 54031011000036104 Disprin Extra Strength 500 mg dispersible tablet 19401000168105 Disprin Extra Strength 19401000168105 Disprin Extra Strength 63506011000036102 aspirin 500 mg dispersible tablet, 24 83621000036109 aspirin 500 mg dispersible tablet 21719011000036107 aspirin +860581000168105 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240, bottle 165284 860571000168107 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240 860351000168105 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet 81983011000036105 Calci-Tab 81983011000036105 Calci-Tab 860561000168101 calcium carbonate 1.5 g (calcium 600 mg) tablet, 240 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 745551000168101 calcium +933214361000036107 Seralin 100 mg film-coated tablet, 30, blister pack 160778 933203611000036103 Seralin 100 mg film-coated tablet, 30 933195851000036101 Seralin 100 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +928948011000036107 Topiramate (Lupin) 200 mg film-coated tablet, 60, bottle 155205 928309011000036101 Topiramate (Lupin) 200 mg film-coated tablet, 60 927938011000036103 Topiramate (Lupin) 200 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +43897011000036106 Neupro 8 mg/24 hours patch, 100, sachet 131383 41389011000036108 Neupro 8 mg/24 hours patch, 100 39865011000036101 Neupro 8 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46286011000036106 rotigotine 8 mg/24 hours patch, 100 45054011000036101 rotigotine 8 mg/24 hours patch 44880011000036107 rotigotine +17853011000036101 Simvastatin (RL) 5 mg film-coated tablet, 30, bottle 116789 11542011000036109 Simvastatin (RL) 5 mg film-coated tablet, 30 5416011000036108 Simvastatin (RL) 5 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +61547011000036104 Pain (Chemists' Own) uncoated tablet, 25, bottle 93828 57470011000036109 Pain (Chemists' Own) uncoated tablet, 25 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 63875011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 25 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +85062011000036109 Pantoloc 20 mg enteric tablet, 90, bottle 72932 84926011000036102 Pantoloc 20 mg enteric tablet, 90 83706011000036100 Pantoloc 20 mg enteric tablet 83566011000036100 Pantoloc 83566011000036100 Pantoloc 85193011000036108 pantoprazole 20 mg enteric tablet, 90 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1022261000168108 Butafen 200 mg film-coated tablet, 48, blister pack 155484 1022251000168106 Butafen 200 mg film-coated tablet, 48 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +872281000168101 Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags 56336 872271000168104 Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags 872221000168100 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 80111011000036104 Cardioplegia A Solution (Baxter) 80111011000036104 Cardioplegia A Solution (Baxter) 872261000168105 sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 12 x 1 L bags 872211000168107 sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, bag 81234011000036101 sodium chloride + potassium chloride + magnesium chloride + calcium chloride dihydrate +18265011000036105 Citalopram (GenRx) 40 mg film-coated tablet, 28, bottle 101224 11181011000036100 Citalopram (GenRx) 40 mg film-coated tablet, 28 4726011000036101 Citalopram (GenRx) 40 mg film-coated tablet 3295011000036109 Citalopram (GenRx) 3295011000036109 Citalopram (GenRx) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +24571000036104 Local Angel 4% gel, 20 x 5 g tubes 21981000036106 Local Angel 4% gel, 20 x 5 g 20581000036106 Local Angel 4% gel 86592011000036107 Local Angel 86592011000036107 Local Angel 86994011000036109 tetracaine (amethocaine) 4% gel, 20 x 5 g 86909011000036107 tetracaine (amethocaine) 4% gel 37707011000036100 tetracaine (amethocaine) +1007321000168104 Modafinil (Mylan) 100 mg uncoated tablet, 10, blister pack 269913 1007311000168106 Modafinil (Mylan) 100 mg uncoated tablet, 10 1007301000168108 Modafinil (Mylan) 100 mg uncoated tablet 1007271000168106 Modafinil (Mylan) 1007271000168106 Modafinil (Mylan) 932449011000036107 modafinil 100 mg tablet, 10 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +984831000168108 Afstyla (1 x 2500 units vial, 1 x inert diluent vial), 1 pack, composite pack 271637 984821000168105 Afstyla (1 x 2500 units vial, 1 x inert diluent vial), 1 pack 984801000168101 Afstyla (lonoctocog alfa 2500 units) powder for injection, 2500 units vial 984051000168109 Afstyla 984051000168109 Afstyla 984811000168103 lonoctocog alfa 2500 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 984791000168102 lonoctocog alfa 2500 units injection, vial 984551000168104 lonoctocog alfa +984831000168108 Afstyla (1 x 2500 units vial, 1 x inert diluent vial), 1 pack, composite pack 271637 984821000168105 Afstyla (1 x 2500 units vial, 1 x inert diluent vial), 1 pack 984581000168106 Afstyla (inert substance) diluent, vial 984051000168109 Afstyla 984051000168109 Afstyla 984811000168103 lonoctocog alfa 2500 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +660351000168100 Telmisartan HCTZ 40/12.5mg (Chemmart) multilayer tablet, 28, blister pack 198234 660341000168102 Telmisartan HCTZ 40/12.5mg (Chemmart) multilayer tablet, 28 660331000168106 Telmisartan HCTZ 40/12.5mg (Chemmart) multilayer tablet 660321000168108 Telmisartan HCTZ 40/12.5mg (Chemmart) 660321000168108 Telmisartan HCTZ 40/12.5mg (Chemmart) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +993251000168104 Lyrica 200 mg hard capsule, 56, blister pack 99533 993241000168101 Lyrica 200 mg hard capsule, 56 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +925216011000036108 Ropaccord 2 mg film-coated tablet, 84, bottle 157765 924753011000036107 Ropaccord 2 mg film-coated tablet, 84 924458011000036105 Ropaccord 2 mg film-coated tablet 924403011000036108 Ropaccord 924403011000036108 Ropaccord 46973011000036106 ropinirole 2 mg tablet, 84 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +20630011000036106 Amoxycillin and Clavulanic Acid 875/125 (GenRx) film-coated tablet, 10, blister pack 163700 13810011000036109 Amoxycillin and Clavulanic Acid 875/125 (GenRx) film-coated tablet, 10 7096011000036101 Amoxycillin and Clavulanic Acid 875/125 (GenRx) film-coated tablet 1811000168109 Amoxycillin and Clavulanic Acid 875/125 (GenRx) 1811000168109 Amoxycillin and Clavulanic Acid 875/125 (GenRx) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20630011000036106 Amoxycillin and Clavulanic Acid 875/125 (GenRx) film-coated tablet, 10, blister pack 81162 13810011000036109 Amoxycillin and Clavulanic Acid 875/125 (GenRx) film-coated tablet, 10 7096011000036101 Amoxycillin and Clavulanic Acid 875/125 (GenRx) film-coated tablet 1811000168109 Amoxycillin and Clavulanic Acid 875/125 (GenRx) 1811000168109 Amoxycillin and Clavulanic Acid 875/125 (GenRx) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +77307011000036108 Entonox 50% / 50% medicinal gas, 2 L, gas cylinder 34470 76723011000036108 Entonox 50% / 50% medicinal gas, 2 L 76142011000036108 Entonox 50% / 50% medicinal gas 23521000168107 Entonox 50% / 50% 23521000168107 Entonox 50% / 50% 78237011000036103 nitrous oxide 50% + oxygen 50% gas, 2 L 77564011000036103 nitrous oxide 50% + oxygen 50% gas 77479011000036100 nitrous oxide + oxygen +823171000168103 Cervarix injection suspension, 0.5 mL syringe 126114 823161000168109 Cervarix injection suspension, 0.5 mL syringe 823141000168105 Cervarix injection suspension, 0.5 mL syringe 73753011000036102 Cervarix 73753011000036102 Cervarix 823151000168107 human papillomavirus bivalent vaccine injection, 0.5 mL syringe 823131000168101 human papillomavirus bivalent vaccine injection, 0.5 mL syringe 823121000168104 human papillomavirus bivalent vaccine +931467011000036106 Paroxetine (SAU) 20 mg film-coated tablet, 14, blister pack 152490 930646011000036108 Paroxetine (SAU) 20 mg film-coated tablet, 14 929990011000036100 Paroxetine (SAU) 20 mg film-coated tablet 929841011000036109 Paroxetine (SAU) 929841011000036109 Paroxetine (SAU) 51562011000036108 paroxetine 20 mg tablet, 14 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +863601000168107 Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules 11941 863591000168100 Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules 863571000168101 Marcain Spinal Heavy injection solution, 4 mL ampoule 63121000168105 Marcain Spinal Heavy 63121000168105 Marcain Spinal Heavy 863581000168103 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, 5 x 4 mL ampoules 863561000168107 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, ampoule 37796011000036101 bupivacaine + glucose +751161000168106 D3 Drops Forte (Bioceuticals) 25 microgram (1000 units)/drop oral liquid emulsion, 20 mL, bottle 181932 751151000168109 D3 Drops Forte (Bioceuticals) 25 microgram (1000 units)/drop oral liquid emulsion, 20 mL 751131000168103 D3 Drops Forte (Bioceuticals) 25 microgram (1000 units)/drop oral liquid emulsion 751101000168105 D3 Drops Forte (Bioceuticals) 751101000168105 D3 Drops Forte (Bioceuticals) 751141000168107 colecalciferol 25 microgram (1000 units)/drop oral liquid, 20 mL 751121000168101 colecalciferol 25 microgram (1000 units)/drop oral liquid 77447011000036108 colecalciferol +68671011000036109 Pinetarsol 1% soap bar, 100 g, carton 10625 66520011000036100 Pinetarsol 1% soap bar, 100 g 65245011000036100 Pinetarsol 1% soap bar 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71252011000036105 tar 1% soap bar, 100 g 69921011000036106 tar 1% soap bar 21402011000036105 tar +1019151000168104 Candesartan HCTZ 32/25 (Apotex) tablet, 7, blister pack 193115 1019141000168101 Candesartan HCTZ 32/25 (Apotex) tablet, 7 1019131000168105 Candesartan HCTZ 32/25 (Apotex) tablet 1019121000168107 Candesartan HCTZ 32/25 (Apotex) 1019121000168107 Candesartan HCTZ 32/25 (Apotex) 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +165551000036107 Basecal100 providing 100 kilocalories powder for oral liquid, 30 x 21.5 g sachets 163521000036102 Basecal100 providing 100 kilocalories powder for oral liquid, 30 x 21.5 g sachets 531771000168102 Basecal100 providing 100 kilocalories powder for oral liquid, 21.5 g sachet 161891000036103 Basecal100 161891000036103 Basecal100 163531000036100 carbohydrates, fat, vitamins, minerals, trace elements and supplemented with arachidonic acid and docosahexaenoic acid providing 100 kilocalories powder for oral liquid, 30 x 21.5 g sachets 531531000168109 carbohydrates, fat, vitamins, minerals, trace elements and supplemented with arachidonic acid and docosahexaenoic acid providing 100 kilocalories powder for oral liquid, 21.5 g sachet 166291000036106 carbohydrates, fat, vitamins, minerals, trace elements and supplemented with arachidonic acid and docosahexaenoic acid +981701000168106 Relpax 20 mg film-coated tablet, 2, blister pack 68354 981691000168106 Relpax 20 mg film-coated tablet, 2 981641000168103 Relpax 20 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 981681000168108 eletriptan 20 mg tablet, 2 981631000168107 eletriptan 20 mg tablet 920818011000036107 eletriptan +21056011000036107 Nizac 300 mg hard capsule, 30, blister pack 96963 14201011000036106 Nizac 300 mg hard capsule, 30 7482011000036106 Nizac 300 mg hard capsule 4551000168106 Nizac 4551000168106 Nizac 28208011000036102 nizatidine 300 mg capsule, 30 23520011000036100 nizatidine 300 mg capsule 21421011000036109 nizatidine +1085301000168100 Decongestant (Nyal) 0.5% nasal spray, 15 mL, pump pack 13658 66804011000036100 Decongestant (Nyal) 0.5% nasal spray, 15 mL 65348011000036102 Decongestant (Nyal) 0.5% nasal spray 65100011000036100 Decongestant (Nyal) 65100011000036100 Decongestant (Nyal) 71434011000036101 phenylephrine hydrochloride 0.5% nasal spray, 15 mL 70009011000036109 phenylephrine hydrochloride 0.5% nasal spray 37732011000036107 phenylephrine +933214521000036108 Levetiracetam (Lupin) 250 mg film-coated tablet, 60, blister pack 161280 933203841000036103 Levetiracetam (Lupin) 250 mg film-coated tablet, 60 933195911000036108 Levetiracetam (Lupin) 250 mg film-coated tablet 933193761000036107 Levetiracetam (Lupin) 933193761000036107 Levetiracetam (Lupin) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +20028011000036101 Monoplus 10/12.5 uncoated tablet, 30, bottle 68968 13261011000036109 Monoplus 10/12.5 uncoated tablet, 30 6543011000036100 Monoplus 10/12.5 uncoated tablet 28581000168101 Monoplus 10/12.5 28581000168101 Monoplus 10/12.5 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +19106011000036102 Dantrium 50 mg capsule, 100, bottle 42976 12411011000036104 Dantrium 50 mg capsule, 100 4498011000036102 Dantrium 50 mg capsule 4175011000036103 Dantrium 4175011000036103 Dantrium 27104011000036103 dantrolene sodium hemiheptahydrate 50 mg capsule, 100 22472011000036103 dantrolene sodium hemiheptahydrate 50 mg capsule 21439011000036105 dantrolene +60415011000036101 Antifungal Clotrimazole (Priceline) 1% cream, 50 g, tube 144691 56374011000036106 Antifungal Clotrimazole (Priceline) 1% cream, 50 g 53894011000036106 Antifungal Clotrimazole (Priceline) 1% cream 53339011000036102 Antifungal Clotrimazole (Priceline) 53339011000036102 Antifungal Clotrimazole (Priceline) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +19198011000036101 Kalma 500 microgram uncoated tablet, 50, blister pack 46838 12489011000036103 Kalma 500 microgram uncoated tablet, 50 4665011000036108 Kalma 500 microgram uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +864971000168105 Amitriptyline (GXP) 10 mg tablet, 50, bottle 232129 864691000168103 Amitriptyline (GXP) 10 mg tablet, 50 864681000168101 Amitriptyline (GXP) 10 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +20192011000036102 Valtrex 500 mg film-coated tablet, 30, bottle 73918 13411011000036106 Valtrex 500 mg film-coated tablet, 30 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +37508011000036103 Tramedo SR 200 mg modified release tablet, 20, blister pack 133158 36776011000036108 Tramedo SR 200 mg modified release tablet, 20 36094011000036105 Tramedo SR 200 mg modified release tablet 47831000168100 Tramedo SR 47831000168100 Tramedo SR 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +20708011000036106 Lescol XL 80 mg modified release tablet, 28, blister pack 82743 13879011000036107 Lescol XL 80 mg modified release tablet, 28 7166011000036107 Lescol XL 80 mg modified release tablet 10271000168106 Lescol XL 10271000168106 Lescol XL 27986011000036105 fluvastatin 80 mg modified release tablet, 28 23310011000036105 fluvastatin 80 mg modified release tablet 21564011000036109 fluvastatin +1001751000168104 Pregabalin (Apo) 50 mg hard capsule, 20, blister pack 193256 1001001000168101 Pregabalin (Apo) 50 mg hard capsule, 20 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 902701000168102 pregabalin 50 mg capsule, 20 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +60464011000036101 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 12 sachets 150167 56422011000036108 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 12 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63354011000036100 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 12 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +990281000168100 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 163459 990271000168103 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 1 pack 990251000168107 Day plus Night Cold and Flu Relief PE (Day) (Blooms The Chemist) uncoated tablet 990221000168104 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) 990231000168101 Day plus Night Cold and Flu Relief PE (Day) (Blooms The Chemist) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +990281000168100 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 163459 990271000168103 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 1 pack 990261000168109 Day plus Night Cold and Flu Relief PE (Night) (Blooms The Chemist) uncoated tablet 990221000168104 Day plus Night Cold and Flu Relief PE (Blooms The Chemist) 990241000168105 Day plus Night Cold and Flu Relief PE (Night) (Blooms The Chemist) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1119941000168106 Quetiapine XR (Actavis) 300 mg modified release tablet, 100, blister pack 226807 1119931000168102 Quetiapine XR (Actavis) 300 mg modified release tablet, 100 1119861000168103 Quetiapine XR (Actavis) 300 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51536011000036100 quetiapine 300 mg modified release tablet, 100 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +86122011000036107 Levetiracetam (Apo) 500 mg tablet, 60, blister pack 156313 85708011000036105 Levetiracetam (Apo) 500 mg tablet, 60 85345011000036105 Levetiracetam (Apo) 500 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +68760011000036103 Mylanta 2go Double Strength chewable tablet, 8, blister pack 118508 66643011000036101 Mylanta 2go Double Strength chewable tablet, 8 65303011000036102 Mylanta 2go Double Strength chewable tablet 4781000168105 Mylanta 2go Double Strength 4781000168105 Mylanta 2go Double Strength 71353011000036105 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet, 8 69967011000036108 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +830411000168106 Atomoxetine (Apo) 18 mg hard capsule, 56, blister pack 234806 830401000168108 Atomoxetine (Apo) 18 mg hard capsule, 56 830281000168104 Atomoxetine (Apo) 18 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830391000168106 atomoxetine 18 mg capsule, 56 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +925320011000036109 Clopidogrel (Actavis) 75 mg film-coated tablet, 60, blister pack 164866 924856011000036103 Clopidogrel (Actavis) 75 mg film-coated tablet, 60 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 925443011000036108 clopidogrel 75 mg tablet, 60 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +686371000168109 Cefazolin (Hospira) 1 g powder for injection, 5 vials 175817 686361000168103 Cefazolin (Hospira) 1 g powder for injection, 5 vials 686351000168100 Cefazolin (Hospira) 1 g powder for injection, vial 686341000168102 Cefazolin (Hospira) 686341000168102 Cefazolin (Hospira) 32938011000036104 cefazolin 1 g injection, 5 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +18743011000036105 Tryzan 10 mg hard capsule, 30, blister pack 127153 11835011000036101 Tryzan 10 mg hard capsule, 30 4465011000036106 Tryzan 10 mg hard capsule 3401011000036105 Tryzan 3401011000036105 Tryzan 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +933132011000036108 Elmendos 50 mg tablet, 42, blister pack 98074 932935011000036106 Elmendos 50 mg tablet, 42 932779011000036104 Elmendos 50 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46988011000036106 lamotrigine 50 mg tablet, 42 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +20466011000036100 Clobemix 300 mg film-coated tablet, 60, blister pack 78258 13668011000036103 Clobemix 300 mg film-coated tablet, 60 6951011000036106 Clobemix 300 mg film-coated tablet 3063011000036104 Clobemix 3063011000036104 Clobemix 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +85291000036105 Ceretec 500 microgram powder for injection, 5 vials 10018 84431000036106 Ceretec 500 microgram powder for injection, 5 vials 84151000036109 Ceretec 500 microgram powder for injection, vial 83961000036108 Ceretec 83961000036108 Ceretec 84441000036101 exametazime 500 microgram injection, 5 vials 84161000036107 exametazime 500 microgram injection, vial 85681000036106 exametazime +690711000168103 Iptam 50 mg film-coated tablet, 2, blister pack 124086 690701000168101 Iptam 50 mg film-coated tablet, 2 690691000168101 Iptam 50 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +869311000168102 Atomerra 60 mg hard capsule, 14, blister pack 234808 869301000168100 Atomerra 60 mg hard capsule, 14 869251000168106 Atomerra 60 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830231000168100 atomoxetine 60 mg capsule, 14 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +804531000168100 Aczicrit 2000 units/mL injection solution, 1 mL syringe 147854 804521000168103 Aczicrit 2000 units/mL injection solution, 1 mL syringe 804511000168105 Aczicrit 2000 units/mL injection solution, syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924128011000036107 epoetin lambda 2000 units/mL injection, 1 mL syringe 923954011000036103 epoetin lambda 2000 units/mL injection, syringe 923930011000036107 epoetin lambda +831851000168100 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack 130229 831841000168102 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack 831791000168100 Zostavax (varicella-zoster live vaccine) powder for injection, vial 73774011000036102 Zostavax 73774011000036102 Zostavax 831831000168106 varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack 831781000168103 varicella-zoster live vaccine 19 400 PFU injection, vial 830851000168105 varicella-zoster live vaccine +831851000168100 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack 130229 831841000168102 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack 640261000168103 Zostavax (inert substance) diluent, 0.65 mL syringe 73774011000036102 Zostavax 73774011000036102 Zostavax 831831000168106 varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack 640251000168100 inert substance diluent, 0.65 mL syringe 21220011000036103 inert substance +925226011000036100 Ropinirole (Pharmacor) 2 mg film-coated tablet, 28, blister pack 157775 924763011000036103 Ropinirole (Pharmacor) 2 mg film-coated tablet, 28 924462011000036102 Ropinirole (Pharmacor) 2 mg film-coated tablet 59501000168104 Ropinirole (Pharmacor) 59501000168104 Ropinirole (Pharmacor) 46972011000036104 ropinirole 2 mg tablet, 28 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +19377011000036104 Minitran 10 mg/24 hours patch, 30, sachet 52029 12664011000036100 Minitran 10 mg/24 hours patch, 30 4696011000036103 Minitran 10 mg/24 hours patch 2932011000036100 Minitran 2932011000036100 Minitran 27268011000036106 glyceryl trinitrate 10 mg/24 hours patch, 30 22624011000036106 glyceryl trinitrate 10 mg/24 hours patch 21388011000036102 glyceryl trinitrate +808801000168102 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet, 100, blister pack 184815 808791000168103 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet, 100 808741000168106 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 806781000168100 perindopril arginine 5 mg tablet, 100 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +926828011000036106 Metformin 1000 (Apo) 1 g film-coated tablet, 60, blister pack 176509 926224011000036106 Metformin 1000 (Apo) 1 g film-coated tablet, 60 925684011000036100 Metformin 1000 (Apo) 1 g film-coated tablet 22791000168107 Metformin 1000 (Apo) 22791000168107 Metformin 1000 (Apo) 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +60706011000036102 Dimetapp PE Sinus Cold uncoated tablet, 30, blister pack 43458 56664011000036108 Dimetapp PE Sinus Cold uncoated tablet, 30 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63496011000036108 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 30 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +50324011000036104 Rispa 4 mg film-coated tablet, 60, blister pack 127888 49565011000036104 Rispa 4 mg film-coated tablet, 60 48761011000036102 Rispa 4 mg film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +804551000168106 Aczicrit 2000 units/mL injection solution, 6 x 1 mL syringes 147854 804541000168109 Aczicrit 2000 units/mL injection solution, 6 x 1 mL syringes 804511000168105 Aczicrit 2000 units/mL injection solution, syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924129011000036104 epoetin lambda 2000 units/mL injection, 6 x 1 mL syringes 923954011000036103 epoetin lambda 2000 units/mL injection, syringe 923930011000036107 epoetin lambda +825981000168101 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 127244 825971000168104 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 825891000168105 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 38281000168102 H-B-Vax II Paediatric 38281000168102 H-B-Vax II Paediatric 825961000168105 hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL syringe 825881000168107 hepatitis B child vaccine 5 microgram/0.5 mL injection, syringe 825191000168101 hepatitis B vaccine +20117011000036104 Desferal 2 g powder for injection, 1 vial 72343 13341011000036109 Desferal 2 g powder for injection, 1 vial 6626011000036101 Desferal 2 g powder for injection, 2 g vial 3060011000036107 Desferal 3060011000036107 Desferal 27709011000036108 desferrioxamine mesilate 2 g injection, 1 vial 23044011000036105 desferrioxamine mesilate 2 g injection, vial 21587011000036101 desferrioxamine +59738011000036107 Anti-Fungal (Amcal) 1% cream, 30 g, tube 102019 55675011000036101 Anti-Fungal (Amcal) 1% cream, 30 g 53621011000036108 Anti-Fungal (Amcal) 1% cream 53464011000036101 Anti-Fungal (Amcal) 53464011000036101 Anti-Fungal (Amcal) 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +890771000168104 Canpek 32/25 uncoated tablet, 30, blister pack 198395 890761000168105 Canpek 32/25 uncoated tablet, 30 890701000168109 Canpek 32/25 uncoated tablet 890691000168109 Canpek 32/25 890691000168109 Canpek 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1022021000168106 Atelvia 35 mg film-coated tablet, 16, blister pack 163753 1022011000168104 Atelvia 35 mg film-coated tablet, 16 1021871000168105 Atelvia 35 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 929234011000036100 risedronate sodium 35 mg tablet, 16 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +33524011000036109 Citalobell 20 mg film-coated tablet, 28, bottle 124715 33265011000036109 Citalobell 20 mg film-coated tablet, 28 33031011000036105 Citalobell 20 mg film-coated tablet 32991011000036103 Citalobell 32991011000036103 Citalobell 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +947061000168108 Risdone 3 mg film-coated tablet, 10, blister pack 144281 947051000168106 Risdone 3 mg film-coated tablet, 10 946971000168101 Risdone 3 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947041000168109 risperidone 3 mg tablet, 10 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +20166011000036101 Diltiazem Hydrochloride (Chemmart) 60 mg film-coated tablet, 90, bottle 73852 13389011000036103 Diltiazem Hydrochloride (Chemmart) 60 mg film-coated tablet, 90 6674011000036108 Diltiazem Hydrochloride (Chemmart) 60 mg film-coated tablet 52821000168103 Diltiazem Hydrochloride (Chemmart) 52821000168103 Diltiazem Hydrochloride (Chemmart) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +80977011000036100 Resdone 1 mg film-coated tablet, 50, blister pack 147672 80538011000036105 Resdone 1 mg film-coated tablet, 50 80183011000036101 Resdone 1 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81622011000036105 risperidone 1 mg tablet, 50 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +923914011000036107 Benadryl Mucus Relief Double Action oral liquid solution, 200 mL, bottle 168062 923458011000036107 Benadryl Mucus Relief Double Action oral liquid solution, 200 mL 923092011000036108 Benadryl Mucus Relief Double Action oral liquid solution, 5 mL 56931000168108 Benadryl Mucus Relief Double Action 56931000168108 Benadryl Mucus Relief Double Action 63967011000036105 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +1102781000168107 Aspramide 5 mg film-coated tablet, 50, blister pack 196499 1102771000168109 Aspramide 5 mg film-coated tablet, 50 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102761000168103 metoclopramide hydrochloride 5 mg tablet, 50 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +136791000036105 Flebogamma 5% DIF 2.5 g/50 mL injection solution, 50 mL vial 143800 136551000036107 Flebogamma 5% DIF 2.5 g/50 mL injection solution, 50 mL vial 136311000036104 Flebogamma 5% DIF 2.5 g/50 mL injection solution, 50 mL vial 11731000168109 Flebogamma 5% DIF 11731000168109 Flebogamma 5% DIF 933201321000036103 normal immunoglobulin 2.5 g/50 mL injection, 50 mL vial 933194971000036103 normal immunoglobulin 2.5 g/50 mL injection, vial 74965011000036103 normal immunoglobulin +660511000168106 Telmisartan HCTZ 40/12.5mg (Terry White Chemists) multilayer tablet, 28, blister pack 198240 660501000168108 Telmisartan HCTZ 40/12.5mg (Terry White Chemists) multilayer tablet, 28 660491000168101 Telmisartan HCTZ 40/12.5mg (Terry White Chemists) multilayer tablet 660481000168104 Telmisartan HCTZ 40/12.5mg (Terry White Chemists) 660481000168104 Telmisartan HCTZ 40/12.5mg (Terry White Chemists) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +658981000168103 Mizart HCT 40/12.5 mg multilayer tablet, 28, bottle 171087 654541000168108 Mizart HCT 40/12.5 mg multilayer tablet, 28 654531000168104 Mizart HCT 40/12.5 mg multilayer tablet 654521000168102 Mizart HCT 40/12.5 mg 654521000168102 Mizart HCT 40/12.5 mg 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +1050901000168101 Bupredermal 5 microgram/hour patch, 4, sachet 234741 1050891000168100 Bupredermal 5 microgram/hour patch, 4 1050841000168108 Bupredermal 5 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1046501000168105 buprenorphine 5 microgram/hour patch, 4 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +50520011000036107 Elastocrepe (36102420) 7.5 cm x 2.3 m bandage, 1, wrapping 49515011000036103 Elastocrepe (36102420) 7.5 cm x 2.3 m bandage, 1 48543011000036108 Elastocrepe (36102420) 7.5 cm x 2.3 m bandage 62191000168104 Elastocrepe (36102420) 62191000168104 Elastocrepe (36102420) 51463011000036106 bandage retention cotton crepe 7.5 cm x 2.3 m bandage, 1 50970011000036103 bandage retention cotton crepe 7.5 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +933211321000036100 Roflo 750 mg film-coated tablet, 10, blister pack 125324 933200461000036109 Roflo 750 mg film-coated tablet, 10 933194351000036107 Roflo 750 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +854921000168103 Algerika 75 mg hard capsule, 60, blister pack 229589 854911000168105 Algerika 75 mg hard capsule, 60 854811000168104 Algerika 75 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1076601000168105 Quetiapine (Auro) 200 mg film-coated tablet, 20, blister pack 172829 1076591000168103 Quetiapine (Auro) 200 mg film-coated tablet, 20 1075241000168101 Quetiapine (Auro) 200 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +18138011000036106 Hygroton 25 mg uncoated tablet, 50, bottle 11035 11408011000036109 Hygroton 25 mg uncoated tablet, 50 4804011000036100 Hygroton 25 mg uncoated tablet 3754011000036107 Hygroton 3754011000036107 Hygroton 26638011000036102 chlortalidone 25 mg tablet, 50 22044011000036103 chlortalidone 25 mg tablet 21827011000036107 chlortalidone +873651000168103 Midazolam (B Braun) 5 mg/mL injection solution, 10 x 1 mL ampoules 225699 873641000168100 Midazolam (B Braun) 5 mg/mL injection solution, 10 x 1 mL ampoules 873631000168109 Midazolam (B Braun) 5 mg/mL injection solution, ampoule 873561000168102 Midazolam (B Braun) 873561000168102 Midazolam (B Braun) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +823331000168104 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 0.4 mL syringe 221718 823321000168102 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 0.4 mL syringe 823301000168106 Clexane with Automatic Safety Lock System 40 mg/0.4 mL injection solution, 0.4 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823311000168109 enoxaparin sodium 40 mg/0.4 mL injection, 0.4 mL syringe 33671011000036100 enoxaparin sodium 40 mg/0.4 mL injection, syringe 21553011000036103 enoxaparin sodium +926678011000036100 Nicabate CQ Mint 4 mg lozenge, 72, tube 128780 926150011000036100 Nicabate CQ Mint 4 mg lozenge, 72 925640011000036103 Nicabate CQ Mint 4 mg lozenge 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 87242011000036106 nicotine 4 mg lozenge, 72 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +933086011000036105 Escitalopram (Generic Health) 10 mg film-coated tablet, 200, bottle 165847 932888011000036100 Escitalopram (Generic Health) 10 mg film-coated tablet, 200 932749011000036100 Escitalopram (Generic Health) 10 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +37600011000036106 Biltricide 600 mg film-coated tablet, 8, bottle 18845 36867011000036103 Biltricide 600 mg film-coated tablet, 8 36202011000036107 Biltricide 600 mg film-coated tablet 35911011000036102 Biltricide 35911011000036102 Biltricide 38754011000036108 praziquantel 600 mg tablet, 8 37974011000036105 praziquantel 600 mg tablet 37704011000036106 praziquantel +18847011000036103 Catapres 150 microgram uncoated tablet, 100, tube 17920 13682011000036104 Catapres 150 microgram uncoated tablet, 100 6965011000036102 Catapres 150 microgram uncoated tablet 3655011000036104 Catapres 3655011000036104 Catapres 27883011000036107 clonidine hydrochloride 150 microgram tablet, 100 23211011000036109 clonidine hydrochloride 150 microgram tablet 21589011000036108 clonidine +928931011000036104 Valaciclovir (Sandoz) 500 mg film-coated tablet, 20, blister pack 154464 928293011000036106 Valaciclovir (Sandoz) 500 mg film-coated tablet, 20 927924011000036108 Valaciclovir (Sandoz) 500 mg film-coated tablet 927787011000036101 Valaciclovir (Sandoz) 927787011000036101 Valaciclovir (Sandoz) 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +69273011000036105 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 72 x 50 mL bags 19477 67073011000036108 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 72 x 50 mL bags 65544011000036106 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71643011000036104 sodium chloride 0.9% (450 mg/50 mL) injection, 72 x 50 mL bags 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +73349011000036103 Vaporiser Fluid (Gold Cross) inhalation solution, 200 mL, bottle 27386 73143011000036105 Vaporiser Fluid (Gold Cross) inhalation solution, 200 mL 72948011000036109 Vaporiser Fluid (Gold Cross) inhalation solution 36841000168107 Vaporiser Fluid (Gold Cross) 36841000168107 Vaporiser Fluid (Gold Cross) 73523011000036102 methyl salicylate 25% + camphor 10% + menthol 3% + eucalyptus oil 10% inhalation solution, 200 mL 73383011000036105 methyl salicylate 25% + camphor 10% + menthol 3% + eucalyptus oil 10% inhalation solution 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +60553011000036104 Decongestant PE (Pharmacy Health) 10 mg tablet, 24, blister pack 154435 56511011000036104 Decongestant PE (Pharmacy Health) 10 mg tablet, 24 53947011000036102 Decongestant PE (Pharmacy Health) 10 mg tablet 53284011000036104 Decongestant PE (Pharmacy Health) 53284011000036104 Decongestant PE (Pharmacy Health) 63400011000036108 phenylephrine hydrochloride 10 mg tablet, 24 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +19440011000036105 Xanax Tri-Score 2 mg uncoated tablet, 50, bottle 53931 12722011000036109 Xanax Tri-Score 2 mg uncoated tablet, 50 5081011000036108 Xanax Tri-Score 2 mg uncoated tablet 58281000168103 Xanax Tri-Score 58281000168103 Xanax Tri-Score 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +959971000168108 Stilnoxium CR 6.25 mg modified release tablet, 7, blister pack 120711 959961000168102 Stilnoxium CR 6.25 mg modified release tablet, 7 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46182011000036105 zolpidem tartrate 6.25 mg modified release tablet, 7 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +941241000168109 Escitalopram (Terry White Chemists) 15 mg film-coated tablet, 28, blister pack 146036 941231000168100 Escitalopram (Terry White Chemists) 15 mg film-coated tablet, 28 941221000168103 Escitalopram (Terry White Chemists) 15 mg film-coated tablet 75949011000036103 Escitalopram (Terry White Chemists) 75949011000036103 Escitalopram (Terry White Chemists) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +19259011000036100 Kapanol 20 mg modified release capsule, 20, blister pack 48134 12549011000036100 Kapanol 20 mg modified release capsule, 20 4575011000036108 Kapanol 20 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 27191011000036103 morphine sulfate pentahydrate 20 mg modified release capsule, 20 22553011000036104 morphine sulfate pentahydrate 20 mg modified release capsule 21252011000036100 morphine +923868011000036107 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 500, bottle 163762 923413011000036107 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 500 923078011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 924193011000036107 lercanidipine hydrochloride 20 mg tablet, 500 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +61475011000036104 Paracetamol (Herron) 500 mg film-coated tablet, 8, blister pack 91501 57400011000036104 Paracetamol (Herron) 500 mg film-coated tablet, 8 54295011000036103 Paracetamol (Herron) 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63846011000036108 paracetamol 500 mg tablet, 8 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44067011000036107 Flixotide Junior Inhaler 25 microgram/actuation pressurised inhalation, 60 actuations, metered dose aerosol can 48551 41554011000036104 Flixotide Junior Inhaler 25 microgram/actuation pressurised inhalation, 60 actuations 40059011000036108 Flixotide Junior Inhaler 25 microgram/actuation pressurised inhalation, actuation 441000168109 Flixotide Junior Inhaler 441000168109 Flixotide Junior Inhaler 46386011000036101 fluticasone propionate 25 microgram/actuation pressurised inhalation, 60 actuations 45121011000036105 fluticasone propionate 25 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +1085281000168104 Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations, pump pack 77112 41971011000036108 Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations 40295011000036106 Nasonex Aqueous 50 microgram/actuation nasal spray, actuation 3481000168101 Nasonex Aqueous 3481000168101 Nasonex Aqueous 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +21042011000036106 Amoxycillin (GenRx) 250 mg hard capsule, 20, blister pack 96875 14187011000036104 Amoxycillin (GenRx) 250 mg hard capsule, 20 7468011000036107 Amoxycillin (GenRx) 250 mg hard capsule 3646011000036109 Amoxycillin (GenRx) 3646011000036109 Amoxycillin (GenRx) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +86047011000036101 Amlodipine (DRLA) 10 mg tablet, 10, blister pack 147606 85640011000036109 Amlodipine (DRLA) 10 mg tablet, 10 85312011000036109 Amlodipine (DRLA) 10 mg tablet 85261011000036108 Amlodipine (DRLA) 85261011000036108 Amlodipine (DRLA) 86413011000036108 amlodipine 10 mg tablet, 10 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +791621000168101 Trexject 7.5 mg/0.15 mL injection solution, 24 x 0.15 mL syringes 233714 791611000168108 Trexject 7.5 mg/0.15 mL injection solution, 24 x 0.15 mL syringes 791471000168103 Trexject 7.5 mg/0.15 mL injection solution, 0.15 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791601000168105 methotrexate 7.5 mg/0.15 mL injection, 24 x 0.15 mL syringes 791461000168109 methotrexate 7.5 mg/0.15 mL injection, syringe 21342011000036105 methotrexate +667571000168104 Lamotrigine (AN) 200 mg tablet, 56, blister pack 147634 667561000168105 Lamotrigine (AN) 200 mg tablet, 56 667551000168108 Lamotrigine (AN) 200 mg tablet 667441000168105 Lamotrigine (AN) 667441000168105 Lamotrigine (AN) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +69665011000036104 Nicabate Clear 7 mg/24 hours patch, 14, sachet 81033 67464011000036106 Nicabate Clear 7 mg/24 hours patch, 14 65674011000036101 Nicabate Clear 7 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71992011000036101 nicotine 7 mg/24 hours patch, 14 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +131311000036105 Candesartan Cilexetil (GA) 16 mg uncoated tablet, 30, bottle 195511 128381000036106 Candesartan Cilexetil (GA) 16 mg uncoated tablet, 30 125111000036108 Candesartan Cilexetil (GA) 16 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +60311011000036105 Ranoxyl Heartburn Relief 300 mg film-coated tablet, 14, strip pack 138512 56270011000036109 Ranoxyl Heartburn Relief 300 mg film-coated tablet, 14 53856011000036109 Ranoxyl Heartburn Relief 300 mg film-coated tablet 32121000168107 Ranoxyl Heartburn Relief 32121000168107 Ranoxyl Heartburn Relief 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +19875011000036107 Eprex 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 65444 13122011000036106 Eprex 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 6405011000036101 Eprex 3000 units/0.3 mL injection solution, 0.3 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27563011000036105 epoetin alfa 3000 units/0.3 mL injection, 6 x 0.3 mL syringes 22902011000036108 epoetin alfa 3000 units/0.3 mL injection, syringe 21294011000036104 epoetin alfa +933115011000036108 Lamictal 200 mg tablet, 60, blister pack 57262 932917011000036108 Lamictal 200 mg tablet, 60 932765011000036105 Lamictal 200 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46991011000036103 lamotrigine 200 mg tablet, 60 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +690641000168109 Sorbi 70% non-crystallising oral liquid solution, 500 mL, bottle 55753 690631000168100 Sorbi 70% non-crystallising oral liquid solution, 500 mL 690611000168105 Sorbi 70% non-crystallising oral liquid solution 690591000168100 Sorbi 690591000168100 Sorbi 690621000168103 sorbitol solution 70% non-crystallising oral liquid, 500 mL 690601000168107 sorbitol solution 70% non-crystallising oral liquid 922041011000036102 sorbitol +758471000168103 Cinryze (2 x 500 units vials, 2 x 5 mL inert diluent vials), 1 pack, composite pack 177513 758461000168109 Cinryze (2 x 500 units vials, 2 x 5 mL inert diluent vials), 1 pack 758431000168101 Cinryze (C1 esterase inhibitor 500 units) powder for injection, 500 units vial 758421000168104 Cinryze 758421000168104 Cinryze 758451000168107 C1 esterase inhibitor 500 units injection [2 vials] (&) inert substance diluent [2 x 5 mL vials], 1 pack 86225011000036102 C1 esterase inhibitor 500 units injection, vial 86199011000036108 C1 esterase inhibitor +758471000168103 Cinryze (2 x 500 units vials, 2 x 5 mL inert diluent vials), 1 pack, composite pack 177513 758461000168109 Cinryze (2 x 500 units vials, 2 x 5 mL inert diluent vials), 1 pack 758441000168105 Cinryze (inert substance) diluent, 5 mL vial 758421000168104 Cinryze 758421000168104 Cinryze 758451000168107 C1 esterase inhibitor 500 units injection [2 vials] (&) inert substance diluent [2 x 5 mL vials], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +59816011000036100 Codral Original Dry Cough Liquicap soft capsule, 12, blister pack 114801 55778011000036103 Codral Original Dry Cough Liquicap soft capsule, 12 53641011000036106 Codral Original Dry Cough Liquicap soft capsule 14711000168102 Codral Original Dry Cough Liquicap 14711000168102 Codral Original Dry Cough Liquicap 63136011000036102 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg capsule, 12 61869011000036100 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg capsule 61751011000036109 dextromethorphan + pseudoephedrine +37542011000036105 Amlodipine (Generic Health) 5 mg uncoated tablet, 30, blister pack 225374 36810011000036100 Amlodipine (Generic Health) 5 mg uncoated tablet, 30 36037011000036105 Amlodipine (Generic Health) 5 mg uncoated tablet 35947011000036104 Amlodipine (Generic Health) 35947011000036104 Amlodipine (Generic Health) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +37542011000036105 Amlodipine (Generic Health) 5 mg uncoated tablet, 30, blister pack 140104 36810011000036100 Amlodipine (Generic Health) 5 mg uncoated tablet, 30 36037011000036105 Amlodipine (Generic Health) 5 mg uncoated tablet 35947011000036104 Amlodipine (Generic Health) 35947011000036104 Amlodipine (Generic Health) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +1036871000168103 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 30, blister pack 173498 1032161000168100 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 30 1032101000168101 Atorvastatin (Ranbaxy) 40 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +60184011000036102 Pain Plus Relief (Your Pharmacy) uncoated tablet, 24, blister pack 131896 56143011000036104 Pain Plus Relief (Your Pharmacy) uncoated tablet, 24 53806011000036100 Pain Plus Relief (Your Pharmacy) uncoated tablet 53337011000036109 Pain Plus Relief (Your Pharmacy) 53337011000036109 Pain Plus Relief (Your Pharmacy) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +933211801000036102 Epirubicin Hydrochloride (Novotech) 200 mg/100 mL injection solution, 100 mL vial 107351 933200221000036101 Epirubicin Hydrochloride (Novotech) 200 mg/100 mL injection solution, 100 mL vial 933194061000036107 Epirubicin Hydrochloride (Novotech) 200 mg/100 mL injection solution, 100 mL vial 927793011000036109 Epirubicin Hydrochloride (Novotech) 927793011000036109 Epirubicin Hydrochloride (Novotech) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +1079731000168102 Oral Rehydration (Amcal) powder for oral liquid, 10 x 4.9 g sachets 213152 1079721000168100 Oral Rehydration (Amcal) powder for oral liquid, 10 x 4.9 g sachets 1079711000168107 Oral Rehydration (Amcal) powder for oral liquid, 4.9 g sachet 1079701000168109 Oral Rehydration (Amcal) 1079701000168109 Oral Rehydration (Amcal) 28137011000036109 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 23446011000036105 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +59865011000036106 Anti Diarrhoea (Amcal) 2 mg uncoated tablet, 20, blister pack 115530 55827011000036102 Anti Diarrhoea (Amcal) 2 mg uncoated tablet, 20 53613011000036100 Anti Diarrhoea (Amcal) 2 mg uncoated tablet 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +1120421000168105 Xque XR 300 mg modified release tablet, 10, blister pack 226815 1120411000168103 Xque XR 300 mg modified release tablet, 10 1120401000168101 Xque XR 300 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51535011000036107 quetiapine 300 mg modified release tablet, 10 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +17818011000036101 Carvedilol (Chemmart) 3.125 mg film-coated tablet, 30, blister pack 133037 11953011000036109 Carvedilol (Chemmart) 3.125 mg film-coated tablet, 30 4457011000036105 Carvedilol (Chemmart) 3.125 mg film-coated tablet 3037011000036100 Carvedilol (Chemmart) 3037011000036100 Carvedilol (Chemmart) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +33532011000036102 Champix 1 mg film-coated tablet, 56, bottle 124944 33272011000036108 Champix 1 mg film-coated tablet, 56 33037011000036102 Champix 1 mg film-coated tablet 32974011000036108 Champix 32974011000036108 Champix 33788011000036105 varenicline 1 mg tablet, 56 33660011000036103 varenicline 1 mg tablet 33624011000036101 varenicline +20665011000036109 Gabapentin (Douglas) 400 mg hard capsule, 100, blister pack 81812 13845011000036109 Gabapentin (Douglas) 400 mg hard capsule, 100 7132011000036104 Gabapentin (Douglas) 400 mg hard capsule 3047011000036101 Gabapentin (Douglas) 3047011000036101 Gabapentin (Douglas) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +920745011000036108 Alpha Keri lotion, 300 mL, bottle 24617 920428011000036109 Alpha Keri lotion, 300 mL 5061011000036105 Alpha Keri lotion 30572011000036100 Alpha Keri 30572011000036100 Alpha Keri 920859011000036105 liquid paraffin 15.2% + lanolin oil 0.56% lotion, 300 mL 22370011000036106 liquid paraffin 15.2% + lanolin oil 0.56% lotion 33631011000036102 liquid paraffin + lanolin oil +68965011000036101 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 11 sachets 134408 66767011000036108 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 11 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71419011000036107 paracetamol 500 mg powder for oral liquid, 11 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +77318011000036107 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 30 mL, bottle 46223 76734011000036107 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 30 mL 76150011000036106 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 78247011000036104 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid, 30 mL 77571011000036106 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid 77428011000036107 ascorbic acid + colecalciferol + dexpanthenol + nicotinamide + pyridoxine + retinol palmitate + riboflavin + thiamine +1077241000168107 Atomoxetine (AS) 25 mg hard capsule, 28, blister pack 238360 1077231000168103 Atomoxetine (AS) 25 mg hard capsule, 28 1077201000168105 Atomoxetine (AS) 25 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +86853011000036107 Lid-Care solution, 100 mL, bottle 86737011000036102 Lid-Care solution, 100 mL 86611011000036109 Lid-Care solution 86582011000036106 Lid-Care 86582011000036106 Lid-Care 87007011000036108 disodium lauroamphodiacetate 5% + hexylene glycol 5% + sodium trideceth sulfate 5% solution, 100 mL 86920011000036105 disodium lauroamphodiacetate 5% + hexylene glycol 5% + sodium trideceth sulfate 5% solution 86900011000036101 disodium lauroamphodiacetate + hexylene glycol + sodium trideceth sulfate +737011000168102 Alphaclav Duo 500/125 film-coated tablet, 10, blister pack 230395 737001000168100 Alphaclav Duo 500/125 film-coated tablet, 10 736991000168107 Alphaclav Duo 500/125 film-coated tablet 736891000168100 Alphaclav Duo 500/125 736891000168100 Alphaclav Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +37591011000036105 Norcuron 10 mg powder for injection, 10 vials 18636 36858011000036108 Norcuron 10 mg powder for injection, 10 vials 36197011000036109 Norcuron 10 mg powder for injection, 10 mg vial 35981011000036100 Norcuron 35981011000036100 Norcuron 38745011000036109 vecuronium bromide 10 mg injection, 10 vials 37971011000036107 vecuronium bromide 10 mg injection, vial 37741011000036100 vecuronium +985151000168109 Advil Mini Caps 200 mg sugar coated tablet, 2, blister pack 104222 985141000168107 Advil Mini Caps 200 mg sugar coated tablet, 2 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63628011000036100 ibuprofen 200 mg tablet, 2 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44686011000036100 Ibiamox 1 g powder for injection, 5 vials 92765 42135011000036106 Ibiamox 1 g powder for injection, 5 vials 40359011000036109 Ibiamox 1 g powder for injection, vial 39666011000036102 Ibiamox 39666011000036102 Ibiamox 38575011000036106 amoxicillin 1 g injection, 5 vials 37849011000036104 amoxicillin 1 g injection, vial 21415011000036100 amoxicillin +20183011000036105 Fluoxetine (Terry White Chemists) 20 mg hard capsule, 28, blister pack 73879 13406011000036104 Fluoxetine (Terry White Chemists) 20 mg hard capsule, 28 6691011000036103 Fluoxetine (Terry White Chemists) 20 mg hard capsule 3561011000036103 Fluoxetine (Terry White Chemists) 3561011000036103 Fluoxetine (Terry White Chemists) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +796741000168105 Aciclovir (Ascent) 400 mg uncoated tablet, 100, blister pack 202879 796731000168101 Aciclovir (Ascent) 400 mg uncoated tablet, 100 796671000168107 Aciclovir (Ascent) 400 mg uncoated tablet 796651000168103 Aciclovir (Ascent) 796651000168103 Aciclovir (Ascent) 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +60861011000036106 Lorastyne 10 mg uncoated tablet, 50, blister pack 59231 56815011000036103 Lorastyne 10 mg uncoated tablet, 50 54088011000036101 Lorastyne 10 mg uncoated tablet 14761000168104 Lorastyne 14761000168104 Lorastyne 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +131631000036106 Lukair 5 mg chewable tablet, 28, blister pack 197284 128611000036106 Lukair 5 mg chewable tablet, 28 124451000036102 Lukair 5 mg chewable tablet 123791000036103 Lukair 123791000036103 Lukair 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +61152011000036106 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 50 mL, bottle 74522 57095011000036102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 50 mL 54195011000036101 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 63814011000036106 paracetamol 240 mg/5 mL oral liquid, 50 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +1053871000168108 Fentanyl (Aspen) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 170931 1053861000168102 Fentanyl (Aspen) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 125301000036108 Fentanyl (Aspen) 500 microgram/10 mL injection solution, 10 mL ampoule 123941000036106 Fentanyl (Aspen) 123941000036106 Fentanyl (Aspen) 35185011000036100 fentanyl 500 microgram/10 mL injection, 10 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +871641000168101 Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets 61530 871631000168105 Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets 871611000168100 Gastrolyte Orange powder for oral liquid, 5.2 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871621000168107 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets 871601000168103 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +871641000168101 Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets 174783 871631000168105 Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets 871611000168100 Gastrolyte Orange powder for oral liquid, 5.2 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871621000168107 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets 871601000168103 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +933231281000036100 Glimepiride (GA) 1 mg uncoated tablet, 10, blister pack 173878 933225351000036103 Glimepiride (GA) 1 mg uncoated tablet, 10 933220571000036109 Glimepiride (GA) 1 mg uncoated tablet 933219111000036109 Glimepiride (GA) 933219111000036109 Glimepiride (GA) 925413011000036101 glimepiride 1 mg tablet, 10 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +693771000168102 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 20, blister pack 215356 693761000168108 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 20 693751000168106 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 692241000168105 amitriptyline hydrochloride 25 mg tablet, 20 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +19789011000036101 Zofran Zydis 4 mg wafer, 4, blister pack 63054 13047011000036100 Zofran Zydis 4 mg wafer, 4 6332011000036105 Zofran Zydis 4 mg wafer 21371000168103 Zofran Zydis 21371000168103 Zofran Zydis 27517011000036102 ondansetron 4 mg wafer, 4 22858011000036108 ondansetron 4 mg wafer 21545011000036100 ondansetron +891091000168106 Candesan Combi 32/25 uncoated tablet, 30, blister pack 204579 886811000168102 Candesan Combi 32/25 uncoated tablet, 30 886801000168100 Candesan Combi 32/25 uncoated tablet 886791000168101 Candesan Combi 32/25 886791000168101 Candesan Combi 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +926857011000036109 Sodium Chloride Minims (Bausch & Lomb) 0.9% eye drops solution, 20 x 0.5 mL unit doses, tube 32284 926253011000036105 Sodium Chloride Minims (Bausch & Lomb) 0.9% eye drops solution, 20 x 0.5 mL unit doses 925702011000036100 Sodium Chloride Minims (Bausch & Lomb) 0.9% eye drops solution, 0.5 mL unit dose 34291000168107 Sodium Chloride Minims (Bausch & Lomb) 34291000168107 Sodium Chloride Minims (Bausch & Lomb) 927360011000036100 sodium chloride 0.9% eye drops, 20 x 0.5 mL unit doses 927008011000036103 sodium chloride 0.9% eye drops, unit dose 21308011000036103 sodium chloride +931402011000036105 Advate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100386 930545011000036108 Advate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 929937011000036105 Advate (octocog alfa 1000 units) powder for injection, 1000 units vial 65054011000036106 Advate 65054011000036106 Advate 932334011000036103 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 931816011000036101 octocog alfa 1000 units injection, vial 69843011000036100 octocog alfa +931402011000036105 Advate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100386 930545011000036108 Advate (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 633331000168108 Advate (inert substance) diluent, 5 mL vial 65054011000036106 Advate 65054011000036106 Advate 932334011000036103 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +925272011000036103 Methotrexate (Kabi) 1 g/40 mL injection solution, 40 mL vial 160302 924809011000036103 Methotrexate (Kabi) 1 g/40 mL injection solution, 40 mL vial 924503011000036100 Methotrexate (Kabi) 1 g/40 mL injection solution, 40 mL vial 924399011000036102 Methotrexate (Kabi) 924399011000036102 Methotrexate (Kabi) 925415011000036100 methotrexate 1 g/40 mL injection, 40 mL vial 925373011000036102 methotrexate 1 g/40 mL injection, vial 21342011000036105 methotrexate +60910011000036107 Dimetapp DM Cough and Cold Drops colour free oral liquid solution, 50 mL, bottle 60799 56864011000036103 Dimetapp DM Cough and Cold Drops colour free oral liquid solution, 50 mL 54105011000036104 Dimetapp DM Cough and Cold Drops colour free oral liquid solution 21281000168109 Dimetapp DM Cough and Cold Drops 21281000168109 Dimetapp DM Cough and Cold Drops 63884011000036108 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 50 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +20500011000036105 Metformin Hydrochloride (Terry White Chemists) 850 mg tablet, 60, blister pack 78618 13700011000036109 Metformin Hydrochloride (Terry White Chemists) 850 mg tablet, 60 6982011000036107 Metformin Hydrochloride (Terry White Chemists) 850 mg tablet 9991000168106 Metformin Hydrochloride (Terry White Chemists) 9991000168106 Metformin Hydrochloride (Terry White Chemists) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +18317011000036106 Simvabell 80 mg film-coated tablet, 30, blister pack 100878 11172011000036102 Simvabell 80 mg film-coated tablet, 30 4715011000036102 Simvabell 80 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +933231321000036109 Glimepiride (GA) 3 mg uncoated tablet, 30, blister pack 173880 933225411000036107 Glimepiride (GA) 3 mg uncoated tablet, 30 933220591000036108 Glimepiride (GA) 3 mg uncoated tablet 933219111000036109 Glimepiride (GA) 933219111000036109 Glimepiride (GA) 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +140241000036105 Aquacel Extra (420672) 10 cm x 10 cm dressing, 10, sachet 138671000036102 Aquacel Extra (420672) 10 cm x 10 cm dressing, 10 137421000036104 Aquacel Extra (420672) 10 cm x 10 cm dressing 60271000168105 Aquacel Extra (420672) 60271000168105 Aquacel Extra (420672) 51338011000036104 dressing hydrofibre alternate to alginates 10 cm x 10 cm dressing, 10 50863011000036106 dressing hydrofibre alternate to alginates 10 cm x 10 cm dressing 50717011000036100 dressing hydrofibre alternate to alginates +826621000168101 Targin 60/30 mg modified release tablet, 28, blister pack 243252 826611000168108 Targin 60/30 mg modified release tablet, 28 826591000168103 Targin 60/30 mg modified release tablet 826291000168101 Targin 60/30 mg 826291000168101 Targin 60/30 mg 826601000168105 oxycodone hydrochloride 60 mg + naloxone hydrochloride 30 mg modified release tablet, 28 826581000168101 oxycodone hydrochloride 60 mg + naloxone hydrochloride 30 mg modified release tablet 923931011000036100 oxycodone + naloxone +852591000168103 Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7, blister pack 166197 852581000168101 Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 37751000168102 Acris Combi 22031000168106 Acris Once-a-Week 852571000168104 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +852591000168103 Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7, blister pack 166197 852581000168101 Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7 852561000168105 Calcium (Alphapharm) 1.25 g (calcium 500 mg) film-coated tablet 37751000168102 Acris Combi 933193301000036109 Calcium (Alphapharm) 852571000168104 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +1019611000168108 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 7, blister pack 175208 1019601000168105 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 7 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 792751000168106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 7 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +989551000168103 Dry Tickly Cough Medicine (Blooms The Chemist) 1 mg/mL oral liquid solution, 200 mL, bottle 160209 989541000168100 Dry Tickly Cough Medicine (Blooms The Chemist) 1 mg/mL oral liquid solution, 200 mL 989531000168109 Dry Tickly Cough Medicine (Blooms The Chemist) 1 mg/mL oral liquid solution 989521000168106 Dry Tickly Cough Medicine (Blooms The Chemist) 989521000168106 Dry Tickly Cough Medicine (Blooms The Chemist) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +60936011000036104 Claratyne 10 mg effervescent tablet, 25, blister pack 62125 56890011000036106 Claratyne 10 mg effervescent tablet, 25 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63634011000036109 loratadine 10 mg effervescent tablet, 25 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +43845011000036106 Mirtazapine (GenRx) 45 mg film-coated tablet, 30, blister pack 127697 41341011000036102 Mirtazapine (GenRx) 45 mg film-coated tablet, 30 39970011000036105 Mirtazapine (GenRx) 45 mg film-coated tablet 32202011000036106 Mirtazapine (GenRx) 32202011000036106 Mirtazapine (GenRx) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +61221011000036104 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 48, blister pack 76461 57157011000036109 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 48 54219011000036102 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet 16981000168101 Paracetamol Capseal (Chemists' Own) 16981000168101 Paracetamol Capseal (Chemists' Own) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +43641011000036100 Dormizol 10 mg film-coated tablet, 28, blister pack 117953 41204011000036100 Dormizol 10 mg film-coated tablet, 28 39940011000036106 Dormizol 10 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +933213881000036109 Ciprofloxacin (IPC) 750 mg film-coated tablet, 14, blister pack 153185 933201911000036106 Ciprofloxacin (IPC) 750 mg film-coated tablet, 14 933194831000036105 Ciprofloxacin (IPC) 750 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +24891000036103 Lorstat 10 mg film-coated tablet, 30, blister pack 181407 22371000036100 Lorstat 10 mg film-coated tablet, 30 20801000036102 Lorstat 10 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +24891000036103 Lorstat 10 mg film-coated tablet, 30, blister pack 151296 22371000036100 Lorstat 10 mg film-coated tablet, 30 20801000036102 Lorstat 10 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +897441000168102 Nicotinell Mint 4 mg chewing gum, 204, blister pack 126044 897431000168106 Nicotinell Mint 4 mg chewing gum, 204 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897421000168108 nicotine 4 mg gum, 204 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +923880011000036107 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 30, blister pack 163768 923424011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 30 923077011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 27841011000036104 lercanidipine hydrochloride 10 mg tablet, 30 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +81113011000036106 Dizole 50 mg hard capsule, 14, blister pack 162640 80618011000036107 Dizole 50 mg hard capsule, 14 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81678011000036109 fluconazole 50 mg capsule, 14 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +50358011000036105 Rispa 500 microgram film-coated tablet, 20, blister pack 127880 49559011000036107 Rispa 500 microgram film-coated tablet, 20 48600011000036100 Rispa 500 microgram film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +946741000168105 Risdone 6 mg film-coated tablet, 60, blister pack 144289 946731000168101 Risdone 6 mg film-coated tablet, 60 946571000168108 Risdone 6 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 929205011000036107 risperidone 6 mg tablet, 60 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +822531000168103 Rotateq oral liquid, 10 x 2 mL tubes 120245 822521000168101 Rotateq oral liquid, 10 x 2 mL tubes 822471000168104 Rotateq oral liquid, 2 mL tube 29701000168105 Rotateq 29701000168105 Rotateq 822511000168108 rotavirus pentavalent live vaccine oral liquid, 10 x 2 mL tubes 822461000168105 rotavirus pentavalent live vaccine oral liquid, 2 mL tube 822451000168108 rotavirus pentavalent live vaccine +925285011000036104 Taxotere 20 mg/mL concentrated injection, 1 mL vial 161365 924822011000036101 Taxotere 20 mg/mL concentrated injection, 1 mL vial 924514011000036101 Taxotere 20 mg/mL concentrated injection, vial 4063011000036102 Taxotere 4063011000036102 Taxotere 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +929076011000036101 Rocta 20 mg soft capsule, 60, blister pack 165125 928437011000036109 Rocta 20 mg soft capsule, 60 927981011000036101 Rocta 20 mg soft capsule 927788011000036100 Rocta 927788011000036100 Rocta 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +895341000168103 Atomoxetine (Sandoz) 40 mg hard capsule, 7, blister pack 238369 895331000168107 Atomoxetine (Sandoz) 40 mg hard capsule, 7 895321000168109 Atomoxetine (Sandoz) 40 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +968171000168108 Disodium Pamidronate (Hexal) 30 mg/10 mL concentrated injection, 2 x 10 mL vials 101285 968161000168102 Disodium Pamidronate (Hexal) 30 mg/10 mL concentrated injection, 2 x 10 mL vials 968121000168107 Disodium Pamidronate (Hexal) 30 mg/10 mL concentrated injection, 10 mL vial 968111000168100 Disodium Pamidronate (Hexal) 968111000168100 Disodium Pamidronate (Hexal) 968151000168104 pamidronate disodium 30 mg/10 mL injection, 2 x 10 mL vials 23097011000036109 pamidronate disodium 30 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +19123011000036101 Elocon 0.1% ointment, 45 g, tube 43344 12426011000036101 Elocon 0.1% ointment, 45 g 5017011000036103 Elocon 0.1% ointment 4301011000036100 Elocon 4301011000036100 Elocon 27113011000036103 mometasone furoate 0.1% ointment, 45 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +723991000168101 PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets 723981000168104 PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets 723971000168102 PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 29 g sachet 30231000168101 PKU Anamix Junior 30231000168101 PKU Anamix Junior 51448011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 29 g sachets 251031000168106 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 29 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +926862011000036102 Gamophen 1% soap bar, 100 g, wrapping 44107 926258011000036100 Gamophen 1% soap bar, 100 g 925706011000036101 Gamophen 1% soap bar 925525011000036103 Gamophen 925525011000036103 Gamophen 927362011000036101 triclosan 1% soap bar, 100 g 927009011000036106 triclosan 1% soap bar 69817011000036103 triclosan +18230011000036107 Visken 15 mg uncoated tablet, 50, blister pack 13393 11979011000036105 Visken 15 mg uncoated tablet, 50 5432011000036101 Visken 15 mg uncoated tablet 3925011000036101 Visken 3925011000036101 Visken 26932011000036104 pindolol 15 mg tablet, 50 22309011000036107 pindolol 15 mg tablet 21768011000036103 pindolol +45761000036103 Simvastatin (DRLA) 10 mg film-coated tablet, 30, blister pack 194752 43771000036107 Simvastatin (DRLA) 10 mg film-coated tablet, 30 41151000036104 Simvastatin (DRLA) 10 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1011021000168107 Risedronate (Apotex) 75 mg film-coated tablet, 2, blister pack 181976 1011011000168100 Risedronate (Apotex) 75 mg film-coated tablet, 2 1011001000168103 Risedronate (Apotex) 75 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 800971000168104 risedronate sodium 75 mg tablet, 2 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +11961000036105 Olanzapine (Generic Health) 10 mg tablet, 28, blister pack 152169 6681000036103 Olanzapine (Generic Health) 10 mg tablet, 28 3241000036103 Olanzapine (Generic Health) 10 mg tablet 711000168100 Olanzapine (Generic Health) 711000168100 Olanzapine (Generic Health) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +1094441000168105 Paracetamol and Ibuprofen (Amcal) film-coated tablet, 12, blister pack 285414 1094431000168101 Paracetamol and Ibuprofen (Amcal) film-coated tablet, 12 1094421000168104 Paracetamol and Ibuprofen (Amcal) film-coated tablet 1094401000168108 Paracetamol and Ibuprofen (Amcal) 1094401000168108 Paracetamol and Ibuprofen (Amcal) 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +73266011000036107 Odrik 4 mg hard capsule, 28, blister pack 134885 73066011000036102 Odrik 4 mg hard capsule, 28 72960011000036102 Odrik 4 mg hard capsule 3036011000036103 Odrik 3036011000036103 Odrik 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +18711011000036104 Pravastatin Sodium (GenRx) 40 mg uncoated tablet, 30, blister pack 118661 11588011000036101 Pravastatin Sodium (GenRx) 40 mg uncoated tablet, 30 5162011000036109 Pravastatin Sodium (GenRx) 40 mg uncoated tablet 4139011000036103 Pravastatin Sodium (GenRx) 4139011000036103 Pravastatin Sodium (GenRx) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +37901000036105 Epiccord 20 mg/10 mL concentrated injection, 10 mL vial 165691 34191000036106 Epiccord 20 mg/10 mL concentrated injection, 10 mL vial 32851000036103 Epiccord 20 mg/10 mL concentrated injection, 10 mL vial 32301000036107 Epiccord 32301000036107 Epiccord 27170011000036103 epirubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22532011000036105 epirubicin hydrochloride 20 mg/10 mL injection, vial 21230011000036100 epirubicin +933246401000036104 Ciprofloxacin (PS) 750 mg film-coated tablet, 8, blister pack 148853 933243191000036107 Ciprofloxacin (PS) 750 mg film-coated tablet, 8 933241331000036105 Ciprofloxacin (PS) 750 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 87798011000036108 ciprofloxacin 750 mg tablet, 8 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +131471000036106 Candesartan Cilexetil HCT 32/25 (Stada) uncoated tablet, 30, bottle 196425 128711000036104 Candesartan Cilexetil HCT 32/25 (Stada) uncoated tablet, 30 125051000036106 Candesartan Cilexetil HCT 32/25 (Stada) uncoated tablet 32931000168108 Candesartan Cilexetil HCT 32/25 (Stada) 32931000168108 Candesartan Cilexetil HCT 32/25 (Stada) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +863281000168101 Amitriptyline (AN) 25 mg tablet, 1000, blister pack 232118 863271000168104 Amitriptyline (AN) 25 mg tablet, 1000 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +60542011000036109 Panadeine Caplet uncoated tablet, 12, blister pack 152840 56500011000036108 Panadeine Caplet uncoated tablet, 12 53943011000036106 Panadeine Caplet uncoated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +891011000168102 Candesartan HCTZ 32/12.5 (Genpar) uncoated tablet, 30, blister pack 253613 890941000168109 Candesartan HCTZ 32/12.5 (Genpar) uncoated tablet, 30 890931000168100 Candesartan HCTZ 32/12.5 (Genpar) uncoated tablet 890921000168103 Candesartan HCTZ 32/12.5 (Genpar) 890921000168103 Candesartan HCTZ 32/12.5 (Genpar) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +21125011000036105 Calcium Folinate (Ebewe) 100 mg/10 mL injection, 10 mL vial 98541 14268011000036103 Calcium Folinate (Ebewe) 100 mg/10 mL injection, 10 mL vial 7554011000036101 Calcium Folinate (Ebewe) 100 mg/10 mL injection, 10 mL vial 929362011000036108 Calcium Folinate (Ebewe) 929362011000036108 Calcium Folinate (Ebewe) 28262011000036101 folinic acid 100 mg/10 mL injection, 10 mL vial 23576011000036101 folinic acid 100 mg/10 mL injection, vial 21617011000036108 folinic acid +803181000168107 Abilify ODT 20 mg orally disintegrating tablet, 10, blister pack 128903 803171000168109 Abilify ODT 20 mg orally disintegrating tablet, 10 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803161000168103 aripiprazole 20 mg orally disintegrating tablet, 10 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +19720011000036102 Diclohexal 25 mg enteric tablet, 50, bottle 61297 13075011000036106 Diclohexal 25 mg enteric tablet, 50 6359011000036101 Diclohexal 25 mg enteric tablet 3420011000036107 Diclohexal 3420011000036107 Diclohexal 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +19671011000036104 Zithromax 600 mg film-coated tablet, 8, blister pack 60057 12934011000036108 Zithromax 600 mg film-coated tablet, 8 6224011000036107 Zithromax 600 mg film-coated tablet 3528011000036100 Zithromax 3528011000036100 Zithromax 27449011000036109 azithromycin 600 mg tablet, 8 22796011000036100 azithromycin 600 mg tablet 21518011000036103 azithromycin +921816011000036102 Nicabate CQ Mint 2 mg lozenge, 36, blister pack 106869 921374011000036101 Nicabate CQ Mint 2 mg lozenge, 36 87060011000036106 Nicabate CQ Mint 2 mg lozenge 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 922525011000036100 nicotine 2 mg lozenge, 36 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +20011011000036103 Clofeme 100 mg compressed pessary, 6, blister pack 68736 13247011000036108 Clofeme 100 mg compressed pessary, 6 6529011000036100 Clofeme 100 mg compressed pessary 46481000168103 Clofeme 46481000168103 Clofeme 28090011000036107 clotrimazole 100 mg pessary, 6 23398011000036106 clotrimazole 100 mg pessary 21684011000036100 clotrimazole +933211641000036103 Leflunomide (Apo) 20 mg film-coated tablet, 30, blister pack 129538 933200631000036101 Leflunomide (Apo) 20 mg film-coated tablet, 30 933194191000036101 Leflunomide (Apo) 20 mg film-coated tablet 32491000168102 Leflunomide (Apo) 32491000168102 Leflunomide (Apo) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +805331000168109 Aczicrit 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 147840 805321000168106 Aczicrit 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 805291000168103 Aczicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924131011000036101 epoetin lambda 8000 units/0.8 mL injection, 6 x 0.8 mL syringes 923955011000036104 epoetin lambda 8000 units/0.8 mL injection, syringe 923930011000036107 epoetin lambda +933246441000036101 Lamotrigine (PS) 200 mg tablet, 56, blister pack 147634 933242991000036104 Lamotrigine (PS) 200 mg tablet, 56 933241261000036109 Lamotrigine (PS) 200 mg tablet 933240971000036104 Lamotrigine (PS) 933240971000036104 Lamotrigine (PS) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +685411000168103 Dolased Forte uncoated tablet, 20, blister pack 203987 685401000168101 Dolased Forte uncoated tablet, 20 685391000168103 Dolased Forte uncoated tablet 685381000168101 Dolased Forte 685381000168101 Dolased Forte 933223421000036101 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet, 20 933219641000036102 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +929701000168100 Pristiq 200 mg modified release tablet, 14, blister pack 133529 929691000168100 Pristiq 200 mg modified release tablet, 14 929671000168101 Pristiq 200 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 929681000168103 desvenlafaxine 200 mg modified release tablet, 14 929661000168107 desvenlafaxine 200 mg modified release tablet 52799011000036104 desvenlafaxine +1096771000168100 Voltaren Emulgel No Mess Applicator 1.16% gel, 20 g, tube 282516 1096761000168106 Voltaren Emulgel No Mess Applicator 1.16% gel, 20 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037031000168109 diclofenac diethylamine 1.16% gel, 20 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +1071071000168100 Abacavir/Lamivudine 600/300 (GH) film-coated tablet, 30, bottle 281027 1071051000168109 Abacavir/Lamivudine 600/300 (GH) film-coated tablet, 30 1071041000168107 Abacavir/Lamivudine 600/300 (GH) film-coated tablet 1071031000168103 Abacavir/Lamivudine 600/300 (GH) 1071031000168103 Abacavir/Lamivudine 600/300 (GH) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +21007011000036100 Lisinopril (Chemmart) 10 mg tablet, 30, blister pack 96324 14153011000036101 Lisinopril (Chemmart) 10 mg tablet, 30 7432011000036100 Lisinopril (Chemmart) 10 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +21007011000036100 Lisinopril (Chemmart) 10 mg tablet, 30, blister pack 143984 14153011000036101 Lisinopril (Chemmart) 10 mg tablet, 30 7432011000036100 Lisinopril (Chemmart) 10 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +21007011000036100 Lisinopril (Chemmart) 10 mg tablet, 30, blister pack 213400 14153011000036101 Lisinopril (Chemmart) 10 mg tablet, 30 7432011000036100 Lisinopril (Chemmart) 10 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +82895011000036101 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 5 x 5 mL vials 160612 82789011000036101 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 5 x 5 mL vials 82697011000036103 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 5 mL vial 35928011000036100 Paraldehyde (Phebra) 35928011000036100 Paraldehyde (Phebra) 83006011000036102 paraldehyde 5 mL/5 mL injection, 5 x 5 mL vials 82940011000036108 paraldehyde 5 mL/5 mL injection, vial 37730011000036108 paraldehyde +140401000036106 Evogam 16% 1.6 g/10 mL injection solution, 10 mL vial 173323 138861000036109 Evogam 16% 1.6 g/10 mL injection solution, 10 mL vial 138021000036105 Evogam 16% 1.6 g/10 mL injection solution, 10 mL vial 25611000168103 Evogam 16% 25611000168103 Evogam 16% 138871000036101 normal immunoglobulin 1.6 g/10 mL injection, 10 mL vial 138031000036107 normal immunoglobulin 1.6 g/10 mL injection, vial 74965011000036103 normal immunoglobulin +87196011000036103 Nicabate 4 mg lozenge, 72, blister pack 81978 87136011000036108 Nicabate 4 mg lozenge, 72 87082011000036107 Nicabate 4 mg lozenge 28411000168106 Nicabate 28411000168106 Nicabate 87242011000036106 nicotine 4 mg lozenge, 72 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +59899011000036105 Becoderm-C Flareup 0.05% cream, 30 g, tube 116959 55861011000036104 Becoderm-C Flareup 0.05% cream, 30 g 53605011000036101 Becoderm-C Flareup 0.05% cream 45111000168108 Becoderm-C Flareup 45111000168108 Becoderm-C Flareup 63150011000036104 clobetasone butyrate 0.05% cream, 30 g 61871011000036109 clobetasone butyrate 0.05% cream 61820011000036103 clobetasone +140381000036106 Benlysta 400 mg powder for injection, 1 vial 173078 138831000036103 Benlysta 400 mg powder for injection, 1 vial 137571000036104 Benlysta 400 mg powder for injection, 400 mg vial 137291000036102 Benlysta 137291000036102 Benlysta 138841000036108 belimumab 400 mg injection, 1 vial 137581000036102 belimumab 400 mg injection, vial 140971000036108 belimumab +59908011000036109 Period Pain Relief (Terry White Chemists) 275 mg film-coated tablet, 24, blister pack 117605 55870011000036102 Period Pain Relief (Terry White Chemists) 275 mg film-coated tablet, 24 53698011000036109 Period Pain Relief (Terry White Chemists) 275 mg film-coated tablet 53156011000036100 Period Pain Relief (Terry White Chemists) 53156011000036100 Period Pain Relief (Terry White Chemists) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +166101000036108 Temaccord 100 mg hard capsule, 20, sachet 206032 164311000036103 Temaccord 100 mg hard capsule, 20 162251000036103 Temaccord 100 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 164321000036105 temozolomide 100 mg capsule, 20 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +758711000168101 Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets 758701000168104 Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets 758681000168102 Flo Sinus Care powder for irrigation solution, 1.8 g sachet 86590011000036108 Flo Sinus Care 86590011000036108 Flo Sinus Care 758691000168104 sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 12 x 1.8 g sachets 758671000168100 sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 1.8 g sachet 86901011000036108 bicarbonate + calcium lactate pentahydrate + glucose + potassium chloride + sodium chloride +50647011000036102 Oroxine 75 microgram uncoated tablet, 200, bottle 144106 49673011000036100 Oroxine 75 microgram uncoated tablet, 200 48812011000036109 Oroxine 75 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 51552011000036103 levothyroxine sodium 75 microgram tablet, 200 50999011000036104 levothyroxine sodium 75 microgram tablet 21577011000036109 levothyroxine +920792011000036106 Ciprofloxacin (Sandoz) 750 mg film-coated tablet, 14, blister pack 81462 920471011000036101 Ciprofloxacin (Sandoz) 750 mg film-coated tablet, 14 920203011000036105 Ciprofloxacin (Sandoz) 750 mg film-coated tablet 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +52720011000036104 Simvastatin (Spirit) 80 mg film-coated tablet, 300, bottle 116715 52535011000036106 Simvastatin (Spirit) 80 mg film-coated tablet, 300 52402011000036102 Simvastatin (Spirit) 80 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 46095011000036108 simvastatin 80 mg tablet, 300 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +61510011000036109 Extra Strength Mini-Tab (Pharmacist) tablet, 96, blister pack 92776 57435011000036102 Extra Strength Mini-Tab (Pharmacist) tablet, 96 54301011000036105 Extra Strength Mini-Tab (Pharmacist) tablet 16431000168109 Extra Strength Mini-Tab (Pharmacist) 16431000168109 Extra Strength Mini-Tab (Pharmacist) 63853011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 96 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +20457011000036106 Metrol 100 mg uncoated tablet, 60, bottle 78185 13660011000036100 Metrol 100 mg uncoated tablet, 60 6943011000036109 Metrol 100 mg uncoated tablet 3236011000036107 Metrol 3236011000036107 Metrol 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +762411000168103 Bosentan (GenRx) 62.5 mg film-coated tablet, 60, bottle 222212 762401000168101 Bosentan (GenRx) 62.5 mg film-coated tablet, 60 762391000168103 Bosentan (GenRx) 62.5 mg film-coated tablet 762351000168108 Bosentan (GenRx) 762351000168108 Bosentan (GenRx) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +44410011000036104 Somac 20 mg enteric tablet, 30, blister pack 70829 13310011000036106 Somac 20 mg enteric tablet, 30 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +933211961000036105 Donpesyn 5 mg film-coated tablet, 7, blister pack 142231 933201291000036109 Donpesyn 5 mg film-coated tablet, 7 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200801000036107 donepezil hydrochloride 5 mg tablet, 7 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +989191000168102 Aspirin (Blooms The Chemist) 100 mg enteric tablet, 84, blister pack 258433 989181000168100 Aspirin (Blooms The Chemist) 100 mg enteric tablet, 84 989151000168107 Aspirin (Blooms The Chemist) 100 mg enteric tablet 989141000168105 Aspirin (Blooms The Chemist) 989141000168105 Aspirin (Blooms The Chemist) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +664441000168101 Premarin 300 microgram film-coated tablet, 28, blister pack 177673 664431000168105 Premarin 300 microgram film-coated tablet, 28 664421000168107 Premarin 300 microgram film-coated tablet 2940011000036100 Premarin 2940011000036100 Premarin 27262011000036108 conjugated estrogens 300 microgram tablet, 28 22618011000036105 conjugated estrogens 300 microgram tablet 33629011000036100 conjugated estrogens +1023711000168109 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 8, blister pack 227168 1023701000168106 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 8 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +920779011000036106 Cefotaxime (DBL) 500 mg powder for injection, 1 vial 78701 920458011000036108 Cefotaxime (DBL) 500 mg powder for injection, 1 vial 920195011000036106 Cefotaxime (DBL) 500 mg powder for injection, 500 mg vial 920087011000036105 Cefotaxime (DBL) 920087011000036105 Cefotaxime (DBL) 46754011000036102 cefotaxime 500 mg injection, 1 vial 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +11921000036101 Venlexor XR 75 mg modified release capsule, 28, blister pack 151885 6641000036107 Venlexor XR 75 mg modified release capsule, 28 2231000036104 Venlexor XR 75 mg modified release capsule 14871000168102 Venlexor XR 14871000168102 Venlexor XR 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +1006591000168108 Maltofer 370 mg (iron 100 mg) film-coated tablet, 100, blister pack 229647 1006581000168105 Maltofer 370 mg (iron 100 mg) film-coated tablet, 100 1006531000168109 Maltofer 370 mg (iron 100 mg) film-coated tablet 1006511000168104 Maltofer 1006511000168104 Maltofer 1006571000168107 iron polymaltose 370 mg (iron 100 mg) tablet, 100 1006521000168106 iron polymaltose 370 mg (iron 100 mg) tablet 21803011000036105 iron polymaltose +1087951000168105 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet, 10, blister pack 283261 1087941000168108 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet, 10 1087921000168102 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet 1087911000168109 Ferrous Fumarate (GPPL) 1087911000168109 Ferrous Fumarate (GPPL) 1087931000168104 ferrous fumarate 200 mg (iron 65.7 mg) tablet, 10 933220681000036107 ferrous fumarate 200 mg (iron 65.7 mg) tablet 933232111000036107 ferrous fumarate +1068421000168109 Paracetamol plus Codeine (Terry White Chemists) uncoated tablet, 20, blister pack 236818 1068411000168102 Paracetamol plus Codeine (Terry White Chemists) uncoated tablet, 20 1068401000168100 Paracetamol plus Codeine (Terry White Chemists) uncoated tablet 1068391000168102 Paracetamol plus Codeine (Terry White Chemists) 1068391000168102 Paracetamol plus Codeine (Terry White Chemists) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +86056011000036102 Ibuprofen plus Codeine (Chemmart) film-coated tablet, 96, blister pack 158118 85735011000036105 Ibuprofen plus Codeine (Chemmart) film-coated tablet, 96 85365011000036102 Ibuprofen plus Codeine (Chemmart) film-coated tablet 85266011000036103 Ibuprofen plus Codeine (Chemmart) 85266011000036103 Ibuprofen plus Codeine (Chemmart) 83005011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 96 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +20699011000036108 Ciprol 250 mg film-coated tablet, 14, bottle 82480 13873011000036109 Ciprol 250 mg film-coated tablet, 14 7160011000036109 Ciprol 250 mg film-coated tablet 3369011000036102 Ciprol 3369011000036102 Ciprol 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +912101000168104 Cavstat 40 mg film-coated tablet, 90, blister pack 234508 910591000168100 Cavstat 40 mg film-coated tablet, 90 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910581000168103 rosuvastatin 40 mg tablet, 90 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +81190011000036104 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 200 mL, bottle 81747 80692011000036108 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 200 mL 80239011000036109 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 5 mL 25021000168100 Actifed CC Chesty Cough 25021000168100 Actifed CC Chesty Cough 63614011000036104 guaifenesin 100 mg/5 mL oral liquid, 200 mL 62028011000036101 guaifenesin 100 mg/5 mL oral liquid 61763011000036101 guaifenesin +19189011000036105 Spiractin 100 mg uncoated tablet, 100, blister pack 46692 12482011000036108 Spiractin 100 mg uncoated tablet, 100 4652011000036105 Spiractin 100 mg uncoated tablet 3212011000036100 Spiractin 3212011000036100 Spiractin 27648011000036104 spironolactone 100 mg tablet, 100 22985011000036101 spironolactone 100 mg tablet 21403011000036103 spironolactone +895581000168101 Betavert 16 mg uncoated tablet, 10, blister pack 212080 895571000168104 Betavert 16 mg uncoated tablet, 10 895561000168105 Betavert 16 mg uncoated tablet 895551000168108 Betavert 895551000168108 Betavert 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +935941000168100 Zolpidem (Apo) 5 mg film-coated tablet, 14, bottle 127167 935911000168104 Zolpidem (Apo) 5 mg film-coated tablet, 14 935881000168104 Zolpidem (Apo) 5 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 926201000168102 zolpidem tartrate 5 mg tablet, 14 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +693931000168103 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet, 50, blister pack 215364 693921000168101 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet, 50 693891000168106 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +871821000168106 Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets 27482 871811000168104 Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets 871791000168103 Gastrolyte Fruit powder for oral liquid, 4.9 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871801000168102 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +871821000168106 Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets 61531 871811000168104 Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets 871791000168103 Gastrolyte Fruit powder for oral liquid, 4.9 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871801000168102 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +24801000036106 Volirop 3.125 mg film-coated tablet, 30, blister pack 174802 22591000036107 Volirop 3.125 mg film-coated tablet, 30 20301000036105 Volirop 3.125 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +946721000168104 Risdone 6 mg film-coated tablet, 56, blister pack 144289 946711000168106 Risdone 6 mg film-coated tablet, 56 946571000168108 Risdone 6 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946701000168108 risperidone 6 mg tablet, 56 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +18660011000036104 Enalapril Maleate (DP) 5 mg uncoated tablet, 30, blister pack 121953 11704011000036105 Enalapril Maleate (DP) 5 mg uncoated tablet, 30 5914011000036102 Enalapril Maleate (DP) 5 mg uncoated tablet 4424011000036100 Enalapril Maleate (DP) 4424011000036100 Enalapril Maleate (DP) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +1021621000168105 Voriconazole (Apo) 200 mg film-coated tablet, 56, blister pack 238282 1021611000168103 Voriconazole (Apo) 200 mg film-coated tablet, 56 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +46081000036101 Incivo 375 mg film-coated tablet, 42, bottle 180138 43351000036101 Incivo 375 mg film-coated tablet, 42 41191000036108 Incivo 375 mg film-coated tablet 40101000036105 Incivo 40101000036105 Incivo 43361000036103 telaprevir 375 mg tablet, 42 41201000036105 telaprevir 375 mg tablet 46281000036109 telaprevir +754451000168103 Oxycodone (AS) 5 mg hard capsule, 20, blister pack 227856 754411000168104 Oxycodone (AS) 5 mg hard capsule, 20 754401000168102 Oxycodone (AS) 5 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +20065011000036102 Tilade CFC-Free 2 mg/actuation pressurised inhalation, 112 actuations, metered dose aerosol can 70238 13295011000036108 Tilade CFC-Free 2 mg/actuation pressurised inhalation, 112 actuations 6579011000036101 Tilade CFC-Free 2 mg/actuation pressurised inhalation, actuation 3370011000036104 Tilade 3370011000036104 Tilade 27674011000036107 nedocromil sodium 2 mg/actuation pressurised inhalation, 112 actuations 23011011000036102 nedocromil sodium 2 mg/actuation pressurised inhalation, actuation 21920011000036104 nedocromil +44033011000036108 Prostin VR 500 microgram/mL injection solution, 5 x 1 mL ampoules 47641 41522011000036109 Prostin VR 500 microgram/mL injection solution, 5 x 1 mL ampoules 40036011000036100 Prostin VR 500 microgram/mL injection solution, ampoule 39707011000036105 Prostin VR 39707011000036105 Prostin VR 46358011000036105 alprostadil 500 microgram/mL injection, 5 x 1 mL ampoules 45104011000036102 alprostadil 500 microgram/mL injection, ampoule 21478011000036104 alprostadil +933214201000036101 Seralin 50 mg film-coated tablet, 30, blister pack 160770 933203421000036108 Seralin 50 mg film-coated tablet, 30 933195811000036100 Seralin 50 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +43727011000036101 Ciloquin 0.3% ear drops solution, 5 mL, bottle 121898 41268011000036106 Ciloquin 0.3% ear drops solution, 5 mL 39927011000036105 Ciloquin 0.3% ear drops solution 3544011000036105 Ciloquin 3544011000036105 Ciloquin 26742011000036106 ciprofloxacin 0.3% ear drops, 5 mL 22135011000036108 ciprofloxacin 0.3% ear drops 21245011000036105 ciprofloxacin +1088571000168107 Atacand Plus 16/12.5 uncoated tablet, 7, blister pack 76646 1088561000168101 Atacand Plus 16/12.5 uncoated tablet, 7 6863011000036105 Atacand Plus 16/12.5 uncoated tablet 21151000168109 Atacand Plus 16/12.5 21151000168109 Atacand Plus 16/12.5 890801000168102 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 7 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19431011000036104 Zactin 20 mg hard capsule, 28, bottle 53774 13300011000036108 Zactin 20 mg hard capsule, 28 6584011000036106 Zactin 20 mg hard capsule 2952011000036104 Zactin 2952011000036104 Zactin 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +993531000168108 Lyrica 225 mg hard capsule, 14, bottle 99536 993521000168105 Lyrica 225 mg hard capsule, 14 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +1002891000168105 Rivastigmine (Apo) 3 mg hard capsule, 28, blister pack 160578 1002881000168107 Rivastigmine (Apo) 3 mg hard capsule, 28 1002721000168102 Rivastigmine (Apo) 3 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002871000168109 rivastigmine 3 mg capsule, 28 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +886991000168104 Praluent 75 mg/mL injection solution, 6 x 1 mL injection devices 238285 886981000168102 Praluent 75 mg/mL injection solution, 6 x 1 mL injection devices 886901000168105 Praluent 75 mg/mL injection solution, injection device 886871000168105 Praluent 886871000168105 Praluent 886971000168100 alirocumab 75 mg/mL injection, 6 x 1 mL injection devices 886891000168106 alirocumab 75 mg/mL injection, injection device 886881000168108 alirocumab +796901000168106 Aciclovir (RBX) 400 mg uncoated tablet, 100, blister pack 182882 796891000168107 Aciclovir (RBX) 400 mg uncoated tablet, 100 796851000168102 Aciclovir (RBX) 400 mg uncoated tablet 796791000168102 Aciclovir (RBX) 796791000168102 Aciclovir (RBX) 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +989921000168101 Benadryl Mucus Relief Double Action Forte oral liquid solution, 30 mL, bottle 214072 989911000168108 Benadryl Mucus Relief Double Action Forte oral liquid solution, 30 mL 989891000168106 Benadryl Mucus Relief Double Action Forte oral liquid solution, 5 mL 989871000168105 Benadryl Mucus Relief Double Action Forte 989871000168105 Benadryl Mucus Relief Double Action Forte 989901000168105 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 30 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +131791000036104 Candesartan Cilexetil HCT 32/12.5 (GH) uncoated tablet, 30, blister pack 204581 128761000036102 Candesartan Cilexetil HCT 32/12.5 (GH) uncoated tablet, 30 125191000036103 Candesartan Cilexetil HCT 32/12.5 (GH) uncoated tablet 38961000168103 Candesartan Cilexetil HCT 32/12.5 (GH) 38961000168103 Candesartan Cilexetil HCT 32/12.5 (GH) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +34783011000036103 Marcain 0.125% with Fentanyl 1000 microgram/200 mL injection solution, 5 x 200 mL bags 72870 34361011000036101 Marcain 0.125% with Fentanyl 1000 microgram/200 mL injection solution, 5 x 200 mL bags 34058011000036103 Marcain 0.125% with Fentanyl 1000 microgram/200 mL injection solution, 200 mL bag 56161000168102 Marcain 0.125% with Fentanyl 1000 microgram/200 mL 56161000168102 Marcain 0.125% with Fentanyl 1000 microgram/200 mL 35209011000036104 bupivacaine hydrochloride 0.125% (250 mg/200 mL) + fentanyl 1000 microgram/200 mL injection, 5 x 200 mL bags 34902011000036102 bupivacaine hydrochloride 0.125% (250 mg/200 mL) + fentanyl 1000 microgram/200 mL injection, bag 34840011000036101 bupivacaine + fentanyl +44275011000036102 Propecia 1 mg film-coated tablet, 10, blister pack 62084 41746011000036106 Propecia 1 mg film-coated tablet, 10 40180011000036100 Propecia 1 mg film-coated tablet 39667011000036104 Propecia 39667011000036104 Propecia 46553011000036103 finasteride 1 mg tablet, 10 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +19294011000036106 Biaxsig 150 mg film-coated tablet, 10, blister pack 49134 12584011000036109 Biaxsig 150 mg film-coated tablet, 10 4552011000036102 Biaxsig 150 mg film-coated tablet 3985011000036109 Biaxsig 3985011000036109 Biaxsig 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +18418011000036101 Ulcaid 300 mg film-coated tablet, 30, blister pack 116928 11558011000036109 Ulcaid 300 mg film-coated tablet, 30 4899011000036101 Ulcaid 300 mg film-coated tablet 4401011000036108 Ulcaid 4401011000036108 Ulcaid 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +19386011000036109 Imigran 50 mg film-coated tablet, 2, blister pack 52261 12671011000036108 Imigran 50 mg film-coated tablet, 2 5286011000036107 Imigran 50 mg film-coated tablet 30771000168105 Imigran 30771000168105 Imigran 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +745781000168102 Cialis 20 mg film-coated tablet, 1, blister pack 81137 745771000168100 Cialis 20 mg film-coated tablet, 1 7095011000036108 Cialis 20 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 745761000168106 tadalafil 20 mg tablet, 1 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +44755011000036105 Co-Diovan 160/12.5 film-coated tablet, 28, blister pack 96741 42200011000036106 Co-Diovan 160/12.5 film-coated tablet, 28 40386011000036105 Co-Diovan 160/12.5 film-coated tablet 44061000168106 Co-Diovan 160/12.5 44061000168106 Co-Diovan 160/12.5 46960011000036107 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 28 45359011000036104 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +1122431000168109 Fluarix Tetra 2018 with Needle injection suspension, 1 x 0.5 mL syringe 210806 1122421000168106 Fluarix Tetra 2018 with Needle injection suspension, 1 x 0.5 mL syringe 1122411000168104 Fluarix Tetra 2018 with Needle injection suspension, 0.5 mL syringe 1122401000168102 Fluarix Tetra 2018 1122401000168102 Fluarix Tetra 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +33515011000036102 Xergic 60 mg film-coated tablet, 20, blister pack 123196 33258011000036109 Xergic 60 mg film-coated tablet, 20 33024011000036106 Xergic 60 mg film-coated tablet 4325011000036107 Xergic 4325011000036107 Xergic 27686011000036106 fexofenadine hydrochloride 60 mg tablet, 20 23023011000036105 fexofenadine hydrochloride 60 mg tablet 21394011000036108 fexofenadine +19866011000036105 Naprosyn 250 mg uncoated tablet, 50, blister pack 65247 13113011000036108 Naprosyn 250 mg uncoated tablet, 50 6396011000036104 Naprosyn 250 mg uncoated tablet 15611000168108 Naprosyn 15611000168108 Naprosyn 27555011000036100 naproxen 250 mg tablet, 50 22894011000036106 naproxen 250 mg tablet 21304011000036105 naproxen +50407011000036107 Risperidone (GA) 3 mg film-coated tablet, 60, blister pack 127787 49555011000036105 Risperidone (GA) 3 mg film-coated tablet, 60 48624011000036104 Risperidone (GA) 3 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +929381000168109 Semi-Daonil 2.5 mg uncoated tablet, 90, blister pack 42691 929371000168106 Semi-Daonil 2.5 mg uncoated tablet, 90 929261000168109 Semi-Daonil 2.5 mg uncoated tablet 929241000168105 Semi-Daonil 929241000168105 Semi-Daonil 929361000168100 glibenclamide 2.5 mg tablet, 90 929251000168107 glibenclamide 2.5 mg tablet 21911011000036104 glibenclamide +993571000168106 Lyrica 225 mg hard capsule, 56, bottle 99536 993561000168100 Lyrica 225 mg hard capsule, 56 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +79689011000036100 Sinutab Sinus and Pain Relief uncoated tablet, 24, blister pack 156808 79509011000036105 Sinutab Sinus and Pain Relief uncoated tablet, 24 40346011000036102 Sinutab Sinus and Pain Relief uncoated tablet 39567011000036105 Sinutab Sinus and Pain Relief 39567011000036105 Sinutab Sinus and Pain Relief 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +998461000168107 Esomeprazole (Apo) 20 mg enteric tablet, 7, blister pack 205827 998451000168105 Esomeprazole (Apo) 20 mg enteric tablet, 7 998441000168108 Esomeprazole (Apo) 20 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +61529011000036108 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 93610 57454011000036102 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 200 mL 54307011000036102 Ibuprofen (Pharmacy Health) 100 mg/5 mL oral liquid suspension, 5 mL 45481000168108 Ibuprofen (Pharmacy Health) 45481000168108 Ibuprofen (Pharmacy Health) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +760161000168106 Elidel 1% cream, 5 g, tube 93680 760151000168109 Elidel 1% cream, 5 g 7344011000036101 Elidel 1% cream 4387011000036109 Elidel 4387011000036109 Elidel 760141000168107 pimecrolimus 1% cream, 5 g 23430011000036108 pimecrolimus 1% cream 21745011000036101 pimecrolimus +18026011000036104 Avapro HCT 300/12.5 film-coated tablet, 30, blister pack 102086 11247011000036101 Avapro HCT 300/12.5 film-coated tablet, 30 4975011000036100 Avapro HCT 300/12.5 film-coated tablet 31701000168107 Avapro HCT 300/12.5 31701000168107 Avapro HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +46001000036107 Ramipril (Chemmart) 5 mg capsule, 30, blister pack 179035 43281000036103 Ramipril (Chemmart) 5 mg capsule, 30 41301000036103 Ramipril (Chemmart) 5 mg capsule 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +1068581000168107 Paracetamol plus Codeine (Sandoz) uncoated tablet, 40, blister pack 212684 1068571000168109 Paracetamol plus Codeine (Sandoz) uncoated tablet, 40 1068521000168108 Paracetamol plus Codeine (Sandoz) uncoated tablet 1068511000168101 Paracetamol plus Codeine (Sandoz) 1068511000168101 Paracetamol plus Codeine (Sandoz) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +44318011000036108 Relenza Rotadisk 5 mg powder for inhalation, 20 unit doses, blister pack 66962 41785011000036105 Relenza Rotadisk 5 mg powder for inhalation, 20 unit doses 40200011000036104 Relenza Rotadisk 5 mg powder for inhalation, 5 mg unit dose 19421000168101 Relenza Rotadisk 19421000168101 Relenza Rotadisk 46591011000036108 zanamivir 5 mg powder for inhalation, 20 unit doses 45232011000036103 zanamivir 5 mg powder for inhalation, unit dose 44894011000036103 zanamivir +933246121000036103 Cirofaxin 500 mg film-coated tablet, 14, blister pack 114044 933242631000036109 Cirofaxin 500 mg film-coated tablet, 14 933241171000036109 Cirofaxin 500 mg film-coated tablet 933240751000036107 Cirofaxin 933240751000036107 Cirofaxin 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +166191000036100 Hydralyte Ice Block Colour Free Lemonade oral liquid for freezing, 16 x 62.5 mL sachets 214507 164441000036109 Hydralyte Ice Block Colour Free Lemonade oral liquid for freezing, 16 x 62.5 mL sachets 162211000036102 Hydralyte Ice Block Colour Free Lemonade oral liquid for freezing, 62.5 mL sachet 21131000168103 Hydralyte Ice Block 21131000168103 Hydralyte Ice Block 81583011000036101 sodium chloride 156.2 mg/62.5 mL + potassium citrate monohydrate 137.5 mg (potassium 3.4 mmol)/62.5 mL + glucose monohydrate 1 g/62.5 mL + citrate monohydrate 300 mg/62.5 mL oral liquid for freezing, 16 x 62.5 mL sachets 81259011000036101 sodium chloride 156.2 mg/62.5 mL + potassium citrate monohydrate 137.5 mg (potassium 3.4 mmol)/62.5 mL + glucose monohydrate 1 g/62.5 mL + citrate monohydrate 300 mg/62.5 mL oral liquid for freezing, sachet 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +891331000168105 Capecitabine (Sandoz) 500 mg film-coated tablet, 120, bottle 201798 651951000168101 Capecitabine (Sandoz) 500 mg film-coated tablet, 120 651941000168103 Capecitabine (Sandoz) 500 mg film-coated tablet 650871000168108 Capecitabine (Sandoz) 650871000168108 Capecitabine (Sandoz) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +32564011000036109 Ossmax 70 mg uncoated tablet, 4, blister pack 129378 32355011000036104 Ossmax 70 mg uncoated tablet, 4 32232011000036101 Ossmax 70 mg uncoated tablet 32200011000036107 Ossmax 32200011000036107 Ossmax 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +897761000168109 Nicotinell Peppermint 4 mg lozenge, 96, blister pack 276926 897751000168107 Nicotinell Peppermint 4 mg lozenge, 96 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897741000168105 nicotine 4 mg lozenge, 96 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +18129011000036100 Zolacos CP (1 x 10.8 mg implant, 28 x 50 mg tablets), 1 pack, composite pack 125687 11814011000036105 Zolacos CP (1 x 10.8 mg implant, 28 x 50 mg tablets), 1 pack 6037011000036108 Cosudex 50 mg film-coated tablet, 1 tablet 3314011000036102 ZolaCos 4172011000036106 Cosudex 26782011000036101 goserelin 10.8 mg implant [1 implant] (&) bicalutamide 50 mg tablet [28], 1 pack 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +18129011000036100 Zolacos CP (1 x 10.8 mg implant, 28 x 50 mg tablets), 1 pack, composite pack 125687 11814011000036105 Zolacos CP (1 x 10.8 mg implant, 28 x 50 mg tablets), 1 pack 4709011000036102 Zoladex 10.8 mg implant 3314011000036102 ZolaCos 3435011000036101 Zoladex 26782011000036101 goserelin 10.8 mg implant [1 implant] (&) bicalutamide 50 mg tablet [28], 1 pack 22169011000036104 goserelin 10.8 mg implant 21305011000036109 goserelin +724311000168109 PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles 724301000168106 PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles 724271000168109 PKU Anamix Junior LQ Berry oral liquid solution, 125 mL bottle 2921000168101 PKU Anamix Junior LQ 2921000168101 PKU Anamix Junior LQ 724291000168105 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL bottles 724251000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL bottle 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +887071000168101 Praluent 150 mg/mL injection solution, 2 x 1 mL injection devices 238299 887061000168107 Praluent 150 mg/mL injection solution, 2 x 1 mL injection devices 887011000168109 Praluent 150 mg/mL injection solution, injection device 886871000168105 Praluent 886871000168105 Praluent 887051000168105 alirocumab 150 mg/mL injection, 2 x 1 mL injection devices 887001000168106 alirocumab 150 mg/mL injection, injection device 886881000168108 alirocumab +928982011000036104 Valaciclovir (Apo) 500 mg film-coated tablet, 80, blister pack 158911 928343011000036109 Valaciclovir (Apo) 500 mg film-coated tablet, 80 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929223011000036104 valaciclovir 500 mg tablet, 80 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +69477011000036100 Brolene Eye Ointment 0.15% eye ointment, 5 g, tube 49823 67277011000036105 Brolene Eye Ointment 0.15% eye ointment, 5 g 65590011000036109 Brolene Eye Ointment 0.15% eye ointment 65035011000036106 Brolene Eye Ointment 65035011000036106 Brolene Eye Ointment 71825011000036108 dibromopropamidine isethionate 0.15% eye ointment, 5 g 70205011000036100 dibromopropamidine isethionate 0.15% eye ointment 69869011000036109 dibromopropamidine +931535011000036101 Duodart 500/400 modified release capsule, 30, bottle 162530 930696011000036104 Duodart 500/400 modified release capsule, 30 930019011000036104 Duodart 500/400 modified release capsule 41311000168108 Duodart 500/400 41311000168108 Duodart 500/400 932405011000036103 dutasteride 500 microgram + tamsulosin hydrochloride 400 microgram modified release capsule, 30 931853011000036102 dutasteride 500 microgram + tamsulosin hydrochloride 400 microgram modified release capsule 931811011000036106 dutasteride + tamsulosin +754371000168100 Oxycodone (Medis) 10 mg hard capsule, 20, blister pack 227861 754331000168103 Oxycodone (Medis) 10 mg hard capsule, 20 754321000168101 Oxycodone (Medis) 10 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +926656011000036101 Cystitis Relief (Chemmart) powder for oral liquid, 28 x 4 g sachets 119160 926119011000036100 Cystitis Relief (Chemmart) powder for oral liquid, 28 x 4 g sachets 925592011000036102 Cystitis Relief (Chemmart) powder for oral liquid, 4 g sachet 925578011000036105 Cystitis Relief (Chemmart) 925578011000036105 Cystitis Relief (Chemmart) 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +931702011000036100 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet, 28, blister pack 172168 930862011000036109 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet, 28 930079011000036108 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet 33171000168102 Aspirin EC (Pharmacy Choice) 33171000168102 Aspirin EC (Pharmacy Choice) 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +18435011000036104 Salbutamol (Pfizer (Perth)) 0.5% (5 mg/mL) inhalation solution, 30 mL, bottle 10799 11387011000036104 Salbutamol (Pfizer (Perth)) 0.5% (5 mg/mL) inhalation solution, 30 mL 5511011000036108 Salbutamol (Pfizer (Perth)) 0.5% (5 mg/mL) inhalation solution 3207011000036101 Salbutamol (Pfizer (Perth)) 3207011000036101 Salbutamol (Pfizer (Perth)) 26630011000036104 salbutamol 0.5% (5 mg/mL) inhalation solution, 30 mL 22036011000036107 salbutamol 0.5% (5 mg/mL) inhalation solution 21493011000036100 salbutamol +43744011000036105 Simvabell 80 mg film-coated tablet, 250, bottle 100889 41112011000036105 Simvabell 80 mg film-coated tablet, 250 4715011000036102 Simvabell 80 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46094011000036109 simvastatin 80 mg tablet, 250 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +81156011000036107 Karvol Decongestant inhalation solution, 1 capsule, blister pack 43397 80659011000036105 Karvol Decongestant inhalation solution, 1 capsule 80229011000036107 Karvol Decongestant inhalation solution, 1 capsule 80129011000036105 Karvol Decongestant 80129011000036105 Karvol Decongestant 81717011000036106 menthol 35.55 mg + Scotch pine needle oil 9 mg + pine oil pumilio 103 mg + terpineol 66.6 mg inhalation solution, 1 capsule 81299011000036108 menthol 35.55 mg + Scotch pine needle oil 9 mg + pine oil pumilio 103 mg + terpineol 66.6 mg inhalation solution, 1 capsule 81226011000036106 menthol + Scotch pine needle oil + pine oil pumilio + terpineol +165871000036100 Clavam 875 mg/125 mg film-coated tablet, 10, blister pack 202571 164041000036100 Clavam 875 mg/125 mg film-coated tablet, 10 162691000036105 Clavam 875 mg/125 mg film-coated tablet 45431000168107 Clavam 875 mg/125 mg 45431000168107 Clavam 875 mg/125 mg 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +803501000168105 Abilify ODT 15 mg orally disintegrating tablet, 5, blister pack 128898 803491000168103 Abilify ODT 15 mg orally disintegrating tablet, 5 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803481000168101 aripiprazole 15 mg orally disintegrating tablet, 5 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +856611000168107 Entrip 10 mg film-coated tablet, 50, bottle 232153 855911000168106 Entrip 10 mg film-coated tablet, 50 855901000168108 Entrip 10 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +994211000168103 Amisulpride (Apo) 50 mg tablet, 60, blister pack 178900 994201000168101 Amisulpride (Apo) 50 mg tablet, 60 994191000168104 Amisulpride (Apo) 50 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +18326011000036100 Perindopril Erbumine (GenRx) 2 mg uncoated tablet, 30, blister pack 121615 11672011000036101 Perindopril Erbumine (GenRx) 2 mg uncoated tablet, 30 5982011000036109 Perindopril Erbumine (GenRx) 2 mg uncoated tablet 4349011000036107 Perindopril Erbumine (GenRx) 4349011000036107 Perindopril Erbumine (GenRx) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +82893011000036102 ProVen Plus film-coated tablet, 48, blister pack 160536 82787011000036108 ProVen Plus film-coated tablet, 48 82696011000036101 ProVen Plus film-coated tablet 82669011000036108 ProVen Plus 82669011000036108 ProVen Plus 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +59942011000036102 Sudafed PE Sinus and Pain Relief film-coated tablet, 12, blister pack 119994 55904011000036106 Sudafed PE Sinus and Pain Relief film-coated tablet, 12 53711011000036109 Sudafed PE Sinus and Pain Relief film-coated tablet 53525011000036104 Sudafed PE Sinus and Pain Relief 53525011000036104 Sudafed PE Sinus and Pain Relief 63179011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 12 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +18752011000036101 Simvabell 10 mg film-coated tablet, 30, blister pack 100871 11169011000036104 Simvabell 10 mg film-coated tablet, 30 4684011000036107 Simvabell 10 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +32605011000036100 Genotropin Miniquick (7 x 800 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76615 32400011000036106 Genotropin Miniquick (7 x 800 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 6861011000036109 Genotropin Miniquick (somatropin 800 microgram) powder for injection, 800 microgram syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32798011000036100 somatropin 800 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 23144011000036103 somatropin 800 microgram injection, syringe 21295011000036100 somatropin +32605011000036100 Genotropin Miniquick (7 x 800 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76615 32400011000036106 Genotropin Miniquick (7 x 800 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32798011000036100 somatropin 800 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +83184011000036100 Carvedilol (Generic Health) 25 mg uncoated tablet, 60, blister pack 152421 83130011000036102 Carvedilol (Generic Health) 25 mg uncoated tablet, 60 83074011000036100 Carvedilol (Generic Health) 25 mg uncoated tablet 83061011000036108 Carvedilol (Generic Health) 83061011000036108 Carvedilol (Generic Health) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +933214041000036108 Nivestim 120 microgram/0.2 mL injection solution, 0.2 mL syringe 160106 933203041000036109 Nivestim 120 microgram/0.2 mL injection solution, 0.2 mL syringe 933195671000036105 Nivestim 120 microgram/0.2 mL injection solution, 0.2 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 933203061000036105 filgrastim 120 microgram/0.2 mL injection, 0.2 mL syringe 933195681000036107 filgrastim 120 microgram/0.2 mL injection, syringe 21265011000036102 filgrastim +1002111000168105 Pregabalin (Apo) 200 mg hard capsule, 56, blister pack 193277 1001951000168101 Pregabalin (Apo) 200 mg hard capsule, 56 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +895661000168106 Betavert 16 mg uncoated tablet, 100, blister pack 212080 895651000168109 Betavert 16 mg uncoated tablet, 100 895561000168105 Betavert 16 mg uncoated tablet 895551000168108 Betavert 895551000168108 Betavert 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +69083011000036108 Oilatum Plus bath oil, 25 mL, bottle 14540 66884011000036101 Oilatum Plus bath oil, 25 mL 65371011000036107 Oilatum Plus bath oil 65096011000036109 Oilatum Plus 65096011000036109 Oilatum Plus 71485011000036107 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil, 25 mL 70030011000036105 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +852321000168109 Olmesartan/Amlodipine 40/5 (Myl) film-coated tablet, 10, blister pack 273619 852311000168102 Olmesartan/Amlodipine 40/5 (Myl) film-coated tablet, 10 852301000168100 Olmesartan/Amlodipine 40/5 (Myl) film-coated tablet 852291000168101 Olmesartan/Amlodipine 40/5 (Myl) 852291000168101 Olmesartan/Amlodipine 40/5 (Myl) 922569011000036107 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 10 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +132041000036100 Pritor Plus 40/12.5 multilayer tablet, 28, blister pack 90888 128821000036103 Pritor Plus 40/12.5 multilayer tablet, 28 124811000036104 Pritor Plus 40/12.5 multilayer tablet 38151000168102 Pritor Plus 40/12.5 38151000168102 Pritor Plus 40/12.5 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +20354011000036105 Aromasin 25 mg sugar coated tablet, 30, blister pack 76369 13562011000036108 Aromasin 25 mg sugar coated tablet, 30 6844011000036102 Aromasin 25 mg sugar coated tablet 2921011000036109 Aromasin 2921011000036109 Aromasin 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +60107011000036107 Nurofen 200 mg sugar coated tablet, 96, bottle 127273 56883011000036102 Nurofen 200 mg sugar coated tablet, 96 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1087771000168103 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 120 actuations, pump pack 280422 1087761000168109 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 120 actuations 1087701000168108 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, actuation 1087671000168107 Mometasone Allergy Relief (GPPL) 1087671000168107 Mometasone Allergy Relief (GPPL) 857711000168103 mometasone furoate 50 microgram/actuation nasal spray, 120 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +1079891000168108 Carvedilol (Auro) 6.25 mg film-coated tablet, 1000, bottle 174801 1079881000168105 Carvedilol (Auro) 6.25 mg film-coated tablet, 1000 737471000168101 Carvedilol (Auro) 6.25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 1079871000168107 carvedilol 6.25 mg tablet, 1000 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +717231000168108 Omeprazole (Pharmacor) 20 mg enteric capsule, 30, blister pack 149417 717221000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 30 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +21103011000036102 Toprol-XL 95 mg modified release tablet, 30, blister pack 97787 14246011000036108 Toprol-XL 95 mg modified release tablet, 30 7532011000036109 Toprol-XL 95 mg modified release tablet 32970011000036103 Toprol-XL 32970011000036103 Toprol-XL 28245011000036101 metoprolol succinate 95 mg modified release tablet, 30 23559011000036107 metoprolol succinate 95 mg modified release tablet 21662011000036107 metoprolol +45361000036102 Gamine XR 24 mg modified release capsule, 28, blister pack 182040 43511000036109 Gamine XR 24 mg modified release capsule, 28 40871000036108 Gamine XR 24 mg modified release capsule 12551000168101 Gamine XR 12551000168101 Gamine XR 28250011000036107 galantamine 24 mg modified release capsule, 28 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +931586011000036104 Redichol 40 mg film-coated tablet, 500, bottle 163554 930747011000036102 Redichol 40 mg film-coated tablet, 500 930034011000036105 Redichol 40 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932419011000036104 pravastatin sodium 40 mg tablet, 500 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +799321000168108 Acnatac gel, 60 g, tube 232394 799311000168101 Acnatac gel, 60 g 799261000168107 Acnatac gel 799231000168104 Acnatac 799231000168104 Acnatac 799301000168104 clindamycin 1% + tretinoin 0.025% gel, 60 g 799251000168105 clindamycin 1% + tretinoin 0.025% gel 799241000168108 clindamycin + tretinoin +685891000168109 Subutex 400 microgram sublingual tablet, 7, blister pack 76661 685881000168106 Subutex 400 microgram sublingual tablet, 7 685801000168103 Subutex 400 microgram sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685871000168108 buprenorphine 400 microgram sublingual tablet, 7 685791000168104 buprenorphine 400 microgram sublingual tablet 21232011000036101 buprenorphine +44546011000036101 Zyvox 20 mg/mL powder for oral liquid, 150 mL, bottle 79695 41999011000036102 Zyvox 20 mg/mL powder for oral liquid, 150 mL 40311011000036102 Zyvox 20 mg/mL powder for oral liquid 39746011000036100 Zyvox 39746011000036100 Zyvox 46774011000036104 linezolid 20 mg/mL powder for oral liquid, 150 mL 45310011000036104 linezolid 20 mg/mL powder for oral liquid 44888011000036109 linezolid +59946011000036103 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet, 24, blister pack 119999 55908011000036104 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet, 24 53695011000036103 Sudafed PE Sinus plus Allergy and Pain Relief film-coated tablet 53192011000036107 Sudafed PE Sinus plus Allergy and Pain Relief 53192011000036107 Sudafed PE Sinus plus Allergy and Pain Relief 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +820841000168105 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet, 4, blister pack 202686 820831000168101 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet, 4 820801000168108 Worm Treatment (Pharmacy Action) 100 mg uncoated tablet 820781000168109 Worm Treatment (Pharmacy Action) 820781000168109 Worm Treatment (Pharmacy Action) 63201011000036102 mebendazole 100 mg tablet, 4 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +931514011000036105 Citalo 20 mg film-coated tablet, 28, blister pack 158873 930675011000036100 Citalo 20 mg film-coated tablet, 28 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +933215021000036104 Reditron-ODT 8 mg orally disintegrating tablet, 6, blister pack 163646 933204601000036102 Reditron-ODT 8 mg orally disintegrating tablet, 6 933195591000036108 Reditron-ODT 8 mg orally disintegrating tablet 22261000168105 Reditron-ODT 22261000168105 Reditron-ODT 720011000168103 ondansetron 8 mg orally disintegrating tablet, 6 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +852911000168103 Alvesco 160 microgram/actuation pressurised inhalation, 60 actuations, metered dose aerosol can 93725 852901000168101 Alvesco 160 microgram/actuation pressurised inhalation, 60 actuations 7347011000036107 Alvesco 160 microgram/actuation pressurised inhalation, actuation 3011011000036104 Alvesco 3011011000036104 Alvesco 852891000168100 ciclesonide 160 microgram/actuation pressurised inhalation, 60 actuations 23433011000036100 ciclesonide 160 microgram/actuation pressurised inhalation, actuation 21555011000036102 ciclesonide +1019971000168106 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 98, blister pack 175199 1019961000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 98 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019951000168102 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 98 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1100291000168102 Axagon 40 mg enteric tablet, 30, blister pack 202458 1100281000168100 Axagon 40 mg enteric tablet, 30 1100271000168103 Axagon 40 mg enteric tablet 1100261000168109 Axagon 1100261000168109 Axagon 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +50424011000036107 Comfeel Seasorb Dressing (3710) 10 cm x 10 cm medicated dressing, 1, carton 49339011000036106 Comfeel Seasorb Dressing (3710) 10 cm x 10 cm medicated dressing, 1 48542011000036101 Comfeel Seasorb Dressing (3710) 10 cm x 10 cm medicated dressing 26241000168105 Comfeel Seasorb Dressing (3710) 26241000168105 Comfeel Seasorb Dressing (3710) 51319011000036100 dressing alginate superficial wound 10 cm x 10 cm dressing, 1 50857011000036106 dressing alginate superficial wound 10 cm x 10 cm dressing 50715011000036105 dressing alginate superficial wound +20010011000036105 Temodal 5 mg hard capsule, 5, bottle 68723 13246011000036105 Temodal 5 mg hard capsule, 5 6528011000036108 Temodal 5 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +1103511000168103 Quetiapine (Pharmacor) 300 mg film-coated tablet, 100, blister pack 204824 1103501000168101 Quetiapine (Pharmacor) 300 mg film-coated tablet, 100 172881000036104 Quetiapine (Pharmacor) 300 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +851041000168106 Lofenoxal uncoated tablet, 20, blister pack 74476 851031000168102 Lofenoxal uncoated tablet, 20 851011000168107 Lofenoxal uncoated tablet 2995011000036104 Lofenoxal 2995011000036104 Lofenoxal 851021000168100 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 20 851001000168109 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet 850991000168108 diphenoxylate + atropine sulfate monohydrate +61624011000036104 Nurofen Migraine Pain 200 mg film-coated tablet, 36, blister pack 96215 57546011000036103 Nurofen Migraine Pain 200 mg film-coated tablet, 36 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63920011000036101 ibuprofen 200 mg tablet, 36 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +973931000168105 Pregabalin (GH) 300 mg hard capsule, 20, blister pack 215688 973921000168107 Pregabalin (GH) 300 mg hard capsule, 20 973891000168102 Pregabalin (GH) 300 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +18074011000036106 Lisinopril (Winthrop) 5 mg uncoated tablet, 30, blister pack 131877 11921011000036107 Lisinopril (Winthrop) 5 mg uncoated tablet, 30 5702011000036101 Lisinopril (Winthrop) 5 mg uncoated tablet 4050011000036103 Lisinopril (Winthrop) 4050011000036103 Lisinopril (Winthrop) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +799641000168106 Abyraz 15 mg uncoated tablet, 60, blister pack 159506 799631000168102 Abyraz 15 mg uncoated tablet, 60 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 788131000168104 aripiprazole 15 mg tablet, 60 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +979301000168100 Paracetamol (CA) 500 mg uncoated tablet, 10, blister pack 197677 979291000168101 Paracetamol (CA) 500 mg uncoated tablet, 10 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 46257011000036103 paracetamol 500 mg tablet, 10 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +926879011000036104 Gelofusine 40 g/L injection solution, 10 x 1 L bottles 60645 926275011000036109 Gelofusine 40 g/L injection solution, 10 x 1 L bottles 925720011000036108 Gelofusine 40 g/L injection solution, 1 L bottle 4101011000036109 Gelofusine 4101011000036109 Gelofusine 927378011000036106 succinylated gelatin 40 g/L injection, 10 x 1 L bottles 927021011000036102 succinylated gelatin 40 g/L injection, bottle 32620011000036100 succinylated gelatin +1087721000168104 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 60 actuations, pump pack 280422 1087711000168106 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 60 actuations 1087701000168108 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, actuation 1087671000168107 Mometasone Allergy Relief (GPPL) 1087671000168107 Mometasone Allergy Relief (GPPL) 857681000168104 mometasone furoate 50 microgram/actuation nasal spray, 60 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +74211000036108 Levetiracetam (Pfizer) 500 mg film-coated tablet, 60, bottle 182810 71821000036100 Levetiracetam (Pfizer) 500 mg film-coated tablet, 60 70111000036106 Levetiracetam (Pfizer) 500 mg film-coated tablet 69321000036103 Levetiracetam (Pfizer) 69321000036103 Levetiracetam (Pfizer) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +936441000168101 Quinapril (Terry White Chemists) 5 mg film-coated tablet, 30, blister pack 133230 936431000168105 Quinapril (Terry White Chemists) 5 mg film-coated tablet, 30 936421000168107 Quinapril (Terry White Chemists) 5 mg film-coated tablet 936411000168100 Quinapril (Terry White Chemists) 936411000168100 Quinapril (Terry White Chemists) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +18996011000036104 Silvazine cream, 50 g, tube 31765 12303011000036105 Silvazine cream, 50 g 5847011000036105 Silvazine cream 3826011000036100 Silvazine 3826011000036100 Silvazine 27052011000036106 silver sulfadiazine 1% + chlorhexidine gluconate 0.2% cream, 50 g 22421011000036105 silver sulfadiazine 1% + chlorhexidine gluconate 0.2% cream 21487011000036108 silver sulfadiazine + chlorhexidine +13701000036105 Letara 2.5 mg film-coated tablet, 30, blister pack 174639 8811000036106 Letara 2.5 mg film-coated tablet, 30 3781000036101 Letara 2.5 mg film-coated tablet 901000036107 Letara 901000036107 Letara 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +43689011000036106 Simvastatin (DP) 10 mg film-coated tablet, 30, bottle 199737 11292011000036109 Simvastatin (DP) 10 mg film-coated tablet, 30 4629011000036101 Simvastatin (DP) 10 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +43689011000036106 Simvastatin (DP) 10 mg film-coated tablet, 30, bottle 125780 11292011000036109 Simvastatin (DP) 10 mg film-coated tablet, 30 4629011000036101 Simvastatin (DP) 10 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +962051000168100 Zinnat 250 mg powder for oral liquid, 10 sachets 81298 962041000168102 Zinnat 250 mg powder for oral liquid, 10 sachets 962021000168108 Zinnat 250 mg powder for oral liquid, 250 mg sachet 4288011000036102 Zinnat 4288011000036102 Zinnat 962031000168106 cefuroxime 250 mg powder for oral liquid, 10 sachets 962011000168101 cefuroxime 250 mg powder for oral liquid, sachet 21474011000036106 cefuroxime +1112171000168106 Srivasso 18 microgram powder for inhalation, 60 capsules, blister pack 269417 1112161000168100 Srivasso 18 microgram powder for inhalation, 60 capsules 1112111000168103 Srivasso 18 microgram powder for inhalation, 1 capsule 1112101000168101 Srivasso 1112101000168101 Srivasso 980801000168106 tiotropium 18 microgram powder for inhalation, 60 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +933213651000036101 Citalopram (IPCA) 20 mg film-coated tablet, 7, blister pack 158871 933203281000036108 Citalopram (IPCA) 20 mg film-coated tablet, 7 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +60695011000036103 Decongestant (Soul Pattinson) 60 mg uncoated tablet, 12, blister pack 42982 56653011000036102 Decongestant (Soul Pattinson) 60 mg uncoated tablet, 12 54021011000036101 Decongestant (Soul Pattinson) 60 mg uncoated tablet 53415011000036101 Decongestant (Soul Pattinson) 53415011000036101 Decongestant (Soul Pattinson) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +73262011000036108 Abraxane 100 mg powder for injection, 1 vial 133500 73062011000036101 Abraxane 100 mg powder for injection, 1 vial 72947011000036108 Abraxane 100 mg powder for injection, 100 mg vial 72905011000036105 Abraxane 72905011000036105 Abraxane 73464011000036103 nanoparticle albumin-bound paclitaxel 100 mg injection, 1 vial 73369011000036105 nanoparticle albumin-bound paclitaxel 100 mg injection, vial 73356011000036109 nanoparticle albumin-bound paclitaxel +18656011000036109 Citalopram (GenRx) 20 mg film-coated tablet, 28, bottle 101157 11177011000036100 Citalopram (GenRx) 20 mg film-coated tablet, 28 4996011000036104 Citalopram (GenRx) 20 mg film-coated tablet 3295011000036109 Citalopram (GenRx) 3295011000036109 Citalopram (GenRx) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +945101000168100 Diltiazem CD (Sanofi) 180 mg modified release capsule, 28, blister pack 139398 945091000168105 Diltiazem CD (Sanofi) 180 mg modified release capsule, 28 945051000168100 Diltiazem CD (Sanofi) 180 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 945081000168107 diltiazem hydrochloride 180 mg modified release capsule, 28 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +77357011000036103 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 12, wrapping 60032 76773011000036107 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 12 76173011000036100 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78278011000036104 calcium carbonate 500 mg chewable tablet, 12 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +1083381000168107 Ibuprofen plus Paracetamol (Blooms The Chemist) film-coated tablet, 24, blister pack 280188 1083371000168109 Ibuprofen plus Paracetamol (Blooms The Chemist) film-coated tablet, 24 1083341000168102 Ibuprofen plus Paracetamol (Blooms The Chemist) film-coated tablet 1083331000168106 Ibuprofen plus Paracetamol (Blooms The Chemist) 1083331000168106 Ibuprofen plus Paracetamol (Blooms The Chemist) 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1120831000168105 Quetiapine XR (KP) 150 mg modified release tablet, 60, bottle 278860 1120821000168107 Quetiapine XR (KP) 150 mg modified release tablet, 60 1120811000168100 Quetiapine XR (KP) 150 mg modified release tablet 1120771000168100 Quetiapine XR (KP) 1120771000168100 Quetiapine XR (KP) 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +68722011000036105 De-Gas 100 mg soft capsule, 48, blister pack 10395 66502011000036108 De-Gas 100 mg soft capsule, 48 65256011000036109 De-Gas 100 mg soft capsule 65132011000036106 De-Gas 65132011000036106 De-Gas 71234011000036100 simethicone 100 mg capsule, 48 69912011000036105 simethicone 100 mg capsule 69826011000036109 simethicone +933239591000036102 Amisulpride (Apo) 200 mg tablet, 90, blister pack 178902 933236911000036109 Amisulpride (Apo) 200 mg tablet, 90 933234761000036103 Amisulpride (Apo) 200 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +77370011000036102 Ostelin-1000 25 microgram soft capsule, 500, bottle 67032 76786011000036108 Ostelin-1000 25 microgram soft capsule, 500 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78290011000036108 ergocalciferol 25 microgram capsule, 500 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +970641000168104 Pregabalin (Apo) 300 mg hard capsule, 20, blister pack 193279 970631000168108 Pregabalin (Apo) 300 mg hard capsule, 20 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +925263011000036103 Venfax SR 37.5 mg modified release capsule, 28, blister pack 160293 924800011000036109 Venfax SR 37.5 mg modified release capsule, 28 924494011000036108 Venfax SR 37.5 mg modified release capsule 14411000168107 Venfax SR 14411000168107 Venfax SR 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +953781000168106 Ursodeoxycholic Acid (Apo) 250 mg hard capsule, 100, blister pack 276339 953771000168108 Ursodeoxycholic Acid (Apo) 250 mg hard capsule, 100 953761000168102 Ursodeoxycholic Acid (Apo) 250 mg hard capsule 953751000168104 Ursodeoxycholic Acid (Apo) 953751000168104 Ursodeoxycholic Acid (Apo) 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +151941000036106 Nicorette Invisipatch 15 mg/16 hours patch, 14, sachet 162576 150021000036106 Nicorette Invisipatch 15 mg/16 hours patch, 14 148601000036107 Nicorette Invisipatch 15 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 150031000036108 nicotine 15 mg/16 hours patch, 14 22501011000036106 nicotine 15 mg/16 hours patch 21432011000036100 nicotine +17809011000036107 Seretide MDI 50/25 pressurised inhalation, 120 actuations, metered dose aerosol can 120661 11649011000036105 Seretide MDI 50/25 pressurised inhalation, 120 actuations 4784011000036104 Seretide MDI 50/25 pressurised inhalation, actuation 10791000168103 Seretide MDI 50/25 10791000168103 Seretide MDI 50/25 26723011000036102 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22118011000036106 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +17809011000036107 Seretide MDI 50/25 pressurised inhalation, 120 actuations, metered dose aerosol can 77814 11649011000036105 Seretide MDI 50/25 pressurised inhalation, 120 actuations 4784011000036104 Seretide MDI 50/25 pressurised inhalation, actuation 10791000168103 Seretide MDI 50/25 10791000168103 Seretide MDI 50/25 26723011000036102 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22118011000036106 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +962371000168107 Renagel 400 mg film-coated tablet, 360, bottle 101550 962361000168101 Renagel 400 mg film-coated tablet, 360 962341000168100 Renagel 400 mg film-coated tablet 32186011000036109 Renagel 32186011000036109 Renagel 962351000168103 sevelamer hydrochloride 400 mg tablet, 360 962331000168109 sevelamer hydrochloride 400 mg tablet 32634011000036107 sevelamer +792101000168108 Co-Phenylcaine Forte nasal spray, 50 mL, pump pack 35208 792091000168103 Co-Phenylcaine Forte nasal spray, 50 mL 791921000168105 Co-Phenylcaine Forte nasal spray 9271000168101 Co-Phenylcaine Forte 9271000168101 Co-Phenylcaine Forte 792081000168101 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 50 mL 791911000168103 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray 74988011000036106 lidocaine (lignocaine) + phenylephrine +1100451000168108 Flucloxacillin (Chemmart) 500 mg capsule, 24, blister pack 226372 1100441000168106 Flucloxacillin (Chemmart) 500 mg capsule, 24 1100431000168102 Flucloxacillin (Chemmart) 500 mg capsule 1100401000168109 Flucloxacillin (Chemmart) 1100401000168109 Flucloxacillin (Chemmart) 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +1074681000168107 Cefazolin (Auro) 500 mg powder for injection, 10 vials 174066 1074671000168109 Cefazolin (Auro) 500 mg powder for injection, 10 vials 1074621000168108 Cefazolin (Auro) 500 mg powder for injection, 500 mg vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 942631000168108 cefazolin 500 mg injection, 10 vials 32930011000036101 cefazolin 500 mg injection, vial 21621011000036107 cefazolin +81011011000036101 B.O.Z. (Gold Cross) ointment, 100 g, jar 14209 80504011000036106 B.O.Z. (Gold Cross) ointment, 100 g 80169011000036101 B.O.Z. (Gold Cross) ointment 80118011000036108 B.O.Z. (Gold Cross) 80118011000036108 B.O.Z. (Gold Cross) 81599011000036104 boric acid 0.25% + olive oil 25% + zinc oxide 7.5% ointment, 100 g 81268011000036103 boric acid 0.25% + olive oil 25% + zinc oxide 7.5% ointment 81215011000036105 boric acid + olive oil + zinc oxide +979461000168109 Paracetamol (CA) 500 mg uncoated tablet, 48, blister pack 197677 979451000168107 Paracetamol (CA) 500 mg uncoated tablet, 48 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19150011000036108 Gopten 500 microgram hard capsule, 28, blister pack 45456 12449011000036108 Gopten 500 microgram hard capsule, 28 5568011000036103 Gopten 500 microgram hard capsule 4026011000036104 Gopten 4026011000036104 Gopten 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +152031000036109 Nicorette Invisipatch 25 mg/16 hours patch, 7, sachet 162578 150151000036104 Nicorette Invisipatch 25 mg/16 hours patch, 7 148581000036102 Nicorette Invisipatch 25 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 150161000036101 nicotine 25 mg/16 hours patch, 7 148591000036100 nicotine 25 mg/16 hours patch 21432011000036100 nicotine +1103601000168100 Quetiapine (GH) 25 mg film-coated tablet, 10, blister pack 179902 1103591000168107 Quetiapine (GH) 25 mg film-coated tablet, 10 2321000036109 Quetiapine (GH) 25 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103581000168109 quetiapine 25 mg tablet, 10 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1033991000168101 Strong Pain Relief Extra (Amcal) uncoated tablet, 36, blister pack 208319 1033981000168104 Strong Pain Relief Extra (Amcal) uncoated tablet, 36 1033571000168109 Strong Pain Relief Extra (Amcal) uncoated tablet 1033541000168102 Strong Pain Relief Extra (Amcal) 1033541000168102 Strong Pain Relief Extra (Amcal) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +50388011000036102 Elastoplast (2226) size D (25 cm to 43 cm) straight bandage, 1, wrapping 49329011000036109 Elastoplast (2226) size D (25 cm to 43 cm) straight bandage, 1 48653011000036100 Elastoplast (2226) size D (25 cm to 43 cm) straight bandage 50431000168103 Elastoplast (2226) 50431000168103 Elastoplast (2226) 51310011000036106 bandage tubular size D (25 cm to 43 cm) straight bandage, 1 50839011000036103 bandage tubular size D (25 cm to 43 cm) straight bandage 50697011000036107 bandage tubular +60443011000036109 Panoxyl AQ 10% gel, 40 g, tube 14827 56402011000036101 Panoxyl AQ 10% gel, 40 g 53905011000036100 Panoxyl AQ 10% gel 25641000168104 Panoxyl AQ 25641000168104 Panoxyl AQ 63342011000036107 benzoyl peroxide 10% gel, 40 g 61954011000036104 benzoyl peroxide 10% gel 61709011000036104 benzoyl peroxide +1087561000168102 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 20, blister pack 283196 1087551000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 20 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 985941000168109 ibuprofen 400 mg tablet, 20 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +20079011000036108 Estalis Continuous 50/250 patch, 8, sachet 70817 13307011000036109 Estalis Continuous 50/250 patch, 8 6591011000036107 Estalis Continuous 50/250 patch 15311000168102 Estalis Continuous 50/250 15311000168102 Estalis Continuous 50/250 27680011000036108 estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch, 8 23019011000036103 estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch 21228011000036101 estradiol + norethisterone acetate +20563011000036101 Gliclazide (GenRx) 80 mg uncoated tablet, 100, blister pack 80084 13754011000036106 Gliclazide (GenRx) 80 mg uncoated tablet, 100 7039011000036102 Gliclazide (GenRx) 80 mg uncoated tablet 4008011000036108 Gliclazide (GenRx) 4008011000036108 Gliclazide (GenRx) 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +970801000168100 Pregabalin (Apo) 25 mg hard capsule, 14, bottle 193211 969951000168107 Pregabalin (Apo) 25 mg hard capsule, 14 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +920677011000036106 Cephalexin (Max) 250 mg hard capsule, 20, blister pack 127390 920385011000036101 Cephalexin (Max) 250 mg hard capsule, 20 920148011000036107 Cephalexin (Max) 250 mg hard capsule 920067011000036108 Cephalexin (Max) 920067011000036108 Cephalexin (Max) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +60407011000036108 Nurofen Regular 200 mg sugar coated tablet, 48, blister pack 144202 56366011000036108 Nurofen Regular 200 mg sugar coated tablet, 48 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +59727011000036108 Advil 200 mg sugar coated tablet, 96, blister pack 104221 55693011000036106 Advil 200 mg sugar coated tablet, 96 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +890511000168101 Candesartan plus HCTZ 32/12.5 (Pfizer) uncoated tablet, 30, blister pack 199097 890501000168104 Candesartan plus HCTZ 32/12.5 (Pfizer) uncoated tablet, 30 890471000168105 Candesartan plus HCTZ 32/12.5 (Pfizer) uncoated tablet 890461000168104 Candesartan plus HCTZ 32/12.5 (Pfizer) 890461000168104 Candesartan plus HCTZ 32/12.5 (Pfizer) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19501000036104 Risperidone (Actavis) 1 mg film-coated tablet, 60, blister pack 159973 19141000036105 Risperidone (Actavis) 1 mg film-coated tablet, 60 18511000036106 Risperidone (Actavis) 1 mg film-coated tablet 9261000168107 Risperidone (Actavis) 9261000168107 Risperidone (Actavis) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +936601000168101 Quinapril (GenRx) 10 mg film-coated tablet, 30, blister pack 133228 936591000168108 Quinapril (GenRx) 10 mg film-coated tablet, 30 936581000168105 Quinapril (GenRx) 10 mg film-coated tablet 936451000168104 Quinapril (GenRx) 936451000168104 Quinapril (GenRx) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +19513011000036102 Climara 50 microgram/24 hours patch, 4, sachet 56197 12785011000036109 Climara 50 microgram/24 hours patch, 4 6079011000036104 Climara 50 microgram/24 hours patch 4358011000036102 Climara 4358011000036102 Climara 27381011000036109 estradiol 50 microgram/24 hours patch, 4 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +61457011000036107 Bifonazole Antifungal (Pharmacist) 1% cream, 50 g, tube 90625 57382011000036105 Bifonazole Antifungal (Pharmacist) 1% cream, 50 g 54289011000036100 Bifonazole Antifungal (Pharmacist) 1% cream 51841000168104 Bifonazole Antifungal (Pharmacist) 51841000168104 Bifonazole Antifungal (Pharmacist) 63840011000036105 bifonazole 1% cream, 50 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +1008331000168100 Cefuroxime (AL) 500 mg film-coated tablet, 6, blister pack 273226 1008321000168103 Cefuroxime (AL) 500 mg film-coated tablet, 6 1008271000168105 Cefuroxime (AL) 500 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 1008311000168105 cefuroxime 500 mg tablet, 6 1008261000168104 cefuroxime 500 mg tablet 21474011000036106 cefuroxime +20164011000036109 Gemfibrozil (GenRx) 600 mg film-coated tablet, 60, bottle 73850 13387011000036105 Gemfibrozil (GenRx) 600 mg film-coated tablet, 60 6672011000036104 Gemfibrozil (GenRx) 600 mg film-coated tablet 3131011000036104 Gemfibrozil (GenRx) 3131011000036104 Gemfibrozil (GenRx) 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +110311000036108 Isoleucine1000 containing 1 g isoleucine powder for oral liquid, 30 x 4 g sachets 108511000036103 Isoleucine1000 containing 1 g isoleucine powder for oral liquid, 30 x 4 g sachets 405381000168102 Isoleucine1000 containing 1 g isoleucine powder for oral liquid, 4 g sachet 106541000036103 Isoleucine1000 106541000036103 Isoleucine1000 929744011000036105 isoleucine with carbohydrate containing 1 g isoleucine powder for oral liquid, 30 x 4 g sachets 405181000168104 isoleucine with carbohydrate containing 1 g isoleucine powder for oral liquid, 4 g sachet 50770011000036109 isoleucine with carbohydrate +1120761000168106 Quetiapine XR (AN) 300 mg modified release tablet, 60, bottle 278871 1120751000168109 Quetiapine XR (AN) 300 mg modified release tablet, 60 1120741000168107 Quetiapine XR (AN) 300 mg modified release tablet 1120701000168105 Quetiapine XR (AN) 1120701000168105 Quetiapine XR (AN) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +825181000168104 Vaqta Adult 50 units/mL injection suspension, 1 mL syringe 58540 825171000168102 Vaqta Adult 50 units/mL injection suspension, 1 mL syringe 825151000168106 Vaqta Adult 50 units/mL injection suspension, syringe 16311000168108 Vaqta Adult 16311000168108 Vaqta Adult 825161000168108 hepatitis A adult vaccine 50 units/mL injection, 1 mL syringe 825141000168109 hepatitis A adult vaccine 50 units/mL injection, syringe 824641000168102 hepatitis A vaccine +861591000168104 Logicin Rapid Relief menthol and eucalyptus lozenge, 16, blister pack 63266 861581000168102 Logicin Rapid Relief menthol and eucalyptus lozenge, 16 861571000168100 Logicin Rapid Relief menthol and eucalyptus lozenge 53296011000036108 Logicin Rapid Relief 53296011000036108 Logicin Rapid Relief 861241000168105 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +1054371000168102 Jurnista 4 mg modified release tablet, 35, blister pack 155995 1054361000168108 Jurnista 4 mg modified release tablet, 35 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054351000168106 hydromorphone hydrochloride 4 mg modified release tablet, 35 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +933239411000036108 Eliquis 2.5 mg film-coated tablet, 60, blister pack 172244 933236711000036107 Eliquis 2.5 mg film-coated tablet, 60 933234631000036103 Eliquis 2.5 mg film-coated tablet 933234191000036106 Eliquis 933234191000036106 Eliquis 933236721000036100 apixaban 2.5 mg tablet, 60 933234641000036108 apixaban 2.5 mg tablet 933240151000036106 apixaban +83402011000036109 Atacand Plus 32/12.5 uncoated tablet, 30, blister pack 154247 83321011000036101 Atacand Plus 32/12.5 uncoated tablet, 30 83252011000036104 Atacand Plus 32/12.5 uncoated tablet 61251000168108 Atacand Plus 32/12.5 61251000168108 Atacand Plus 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +86058011000036103 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 24, blister pack 158156 85736011000036103 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 24 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +86058011000036103 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 24, blister pack 197886 85736011000036103 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 24 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +60489011000036102 Cold and Flu Relief (Blooms The Chemist) uncoated tablet, 24, blister pack 150284 56447011000036107 Cold and Flu Relief (Blooms The Chemist) uncoated tablet, 24 53922011000036101 Cold and Flu Relief (Blooms The Chemist) uncoated tablet 53118011000036106 Cold and Flu Relief (Blooms The Chemist) 53118011000036106 Cold and Flu Relief (Blooms The Chemist) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +19595011000036100 Pyralin EN 500 mg enteric tablet, 100, bottle 58398 12866011000036102 Pyralin EN 500 mg enteric tablet, 100 6157011000036100 Pyralin EN 500 mg enteric tablet 39241000168103 Pyralin EN 39241000168103 Pyralin EN 75581000036104 sulfasalazine 500 mg enteric tablet, 100 75571000036101 sulfasalazine 500 mg enteric tablet 21923011000036107 sulfasalazine +904491000168109 Amoxyclav 500/125 (MLabs) film-coated tablet, 10, strip pack 236901 904481000168106 Amoxyclav 500/125 (MLabs) film-coated tablet, 10 904471000168108 Amoxyclav 500/125 (MLabs) film-coated tablet 904461000168102 Amoxyclav 500/125 (MLabs) 904461000168102 Amoxyclav 500/125 (MLabs) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +59881000036103 Cyclosporin (Sandoz) 100 mg soft capsule, 30, blister pack 186361 58991000036104 Cyclosporin (Sandoz) 100 mg soft capsule, 30 58351000036107 Cyclosporin (Sandoz) 100 mg soft capsule 58081000036102 Cyclosporin (Sandoz) 58081000036102 Cyclosporin (Sandoz) 27974011000036106 ciclosporin 100 mg capsule, 30 23298011000036101 ciclosporin 100 mg capsule 21379011000036104 ciclosporin +18499011000036105 Simvastatin (Chemmart) 20 mg film-coated tablet, 30, blister pack 211957 11306011000036103 Simvastatin (Chemmart) 20 mg film-coated tablet, 30 5522011000036107 Simvastatin (Chemmart) 20 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18499011000036105 Simvastatin (Chemmart) 20 mg film-coated tablet, 30, blister pack 149805 11306011000036103 Simvastatin (Chemmart) 20 mg film-coated tablet, 30 5522011000036107 Simvastatin (Chemmart) 20 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18499011000036105 Simvastatin (Chemmart) 20 mg film-coated tablet, 30, blister pack 131647 11306011000036103 Simvastatin (Chemmart) 20 mg film-coated tablet, 30 5522011000036107 Simvastatin (Chemmart) 20 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +18499011000036105 Simvastatin (Chemmart) 20 mg film-coated tablet, 30, blister pack 104533 11306011000036103 Simvastatin (Chemmart) 20 mg film-coated tablet, 30 5522011000036107 Simvastatin (Chemmart) 20 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1094991000168107 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 20, blister pack 287918 1094981000168109 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 20 1094831000168104 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule 53104011000036101 Diarrhoea Relief (Chemists' Own) 53104011000036101 Diarrhoea Relief (Chemists' Own) 87019011000036104 loperamide hydrochloride 2 mg capsule, 20 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +60270011000036103 Cetirizine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 10, blister pack 134696 56229011000036102 Cetirizine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 10 53847011000036105 Cetirizine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 53170011000036101 Cetirizine Hydrochloride (Terry White Chemists) 53170011000036101 Cetirizine Hydrochloride (Terry White Chemists) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +829431000168107 Metex XR-1000 1 g modified release tablet, 120, blister pack 232639 829421000168109 Metex XR-1000 1 g modified release tablet, 120 829281000168109 Metex XR-1000 1 g modified release tablet 829271000168106 Metex XR-1000 829271000168106 Metex XR-1000 829411000168102 metformin hydrochloride 1 g modified release tablet, 120 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +913151000168107 Amoxycillin/Clavulanic Acid 875/125 (Spirit) film-coated tablet, 10, blister pack 196895 913141000168105 Amoxycillin/Clavulanic Acid 875/125 (Spirit) film-coated tablet, 10 913131000168101 Amoxycillin/Clavulanic Acid 875/125 (Spirit) film-coated tablet 913121000168104 Amoxycillin/Clavulanic Acid 875/125 (Spirit) 913121000168104 Amoxycillin/Clavulanic Acid 875/125 (Spirit) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +68807011000036104 Difflam 3% gel, 75 g, tube 10930 66575011000036108 Difflam 3% gel, 75 g 65426011000036106 Difflam 3% gel 15911000168103 Difflam 15911000168103 Difflam 71298011000036104 benzydamine hydrochloride 3% gel, 75 g 69936011000036103 benzydamine hydrochloride 3% gel 21819011000036105 benzydamine +18983011000036106 Flopen 250 mg/5 mL powder for oral liquid, 100 mL, bottle 29453 12291011000036104 Flopen 250 mg/5 mL powder for oral liquid, 100 mL 5601011000036103 Flopen 250 mg/5 mL powder for oral liquid, 5 mL 3750011000036102 Flopen 3750011000036102 Flopen 27045011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid, 100 mL 22415011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +991291000168105 Lyrica 100 mg hard capsule, 60, bottle 99527 991281000168107 Lyrica 100 mg hard capsule, 60 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +61411011000036107 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 100 mL, bottle 82401 57336011000036100 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 100 mL 54279011000036106 Paracetamol Children's 1 to 5 Years (Pharmacy Health) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 26641000168108 Paracetamol Children's 1 to 5 Years (Pharmacy Health) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1109041000168107 Cloap 75/100 uncoated tablet, 2, blister pack 219058 1109031000168103 Cloap 75/100 uncoated tablet, 2 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82546011000036103 clopidogrel 75 mg + aspirin 100 mg tablet, 2 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +69707011000036103 Claramax 5 mg film-coated tablet, 20, blister pack 91115 67506011000036106 Claramax 5 mg film-coated tablet, 20 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72022011000036100 desloratadine 5 mg tablet, 20 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +929031011000036109 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 12, blister pack 160643 928392011000036108 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 12 927965011000036102 Risedronate Sodium (Chemmart) 35 mg film-coated tablet 927777011000036109 Risedronate Sodium (Chemmart) 927777011000036109 Risedronate Sodium (Chemmart) 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +987861000168108 Zyprexa 20 mg film-coated tablet, 100, bottle 77391 987851000168106 Zyprexa 20 mg film-coated tablet, 100 987811000168105 Zyprexa 20 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 987841000168109 olanzapine 20 mg tablet, 100 1361000036106 olanzapine 20 mg tablet 21485011000036103 olanzapine +18545011000036107 Nifedipine (Chemmart) 20 mg film-coated tablet, 60, blister pack 127283 11838011000036107 Nifedipine (Chemmart) 20 mg film-coated tablet, 60 4582011000036109 Nifedipine (Chemmart) 20 mg film-coated tablet 3402011000036104 Nifedipine (Chemmart) 3402011000036104 Nifedipine (Chemmart) 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +821001000168105 Panadol Osteo 665 mg modified release tablet, 400, bottle 235560 820991000168109 Panadol Osteo 665 mg modified release tablet, 400 5848011000036106 Panadol Osteo 665 mg modified release tablet 47941000168100 Panadol Osteo 47941000168100 Panadol Osteo 820981000168106 paracetamol 665 mg modified release tablet, 400 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +887391000168102 Zinbryta 150 mg/mL injection solution, 1 mL syringe 243872 887381000168100 Zinbryta 150 mg/mL injection solution, 1 mL syringe 887361000168109 Zinbryta 150 mg/mL injection solution, syringe 887331000168101 Zinbryta 887331000168101 Zinbryta 887371000168103 daclizumab 150 mg/mL injection, 1 mL syringe 887351000168107 daclizumab 150 mg/mL injection, syringe 887341000168105 daclizumab +68974011000036106 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 9 sachets 134408 66776011000036100 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 9 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71428011000036105 paracetamol 500 mg powder for oral liquid, 9 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +37402011000036107 Glucophage 500 mg film-coated tablet, 100, bottle 10556 12615011000036100 Glucophage 500 mg film-coated tablet, 100 5965011000036104 Glucophage 500 mg film-coated tablet 3898011000036106 Glucophage 3898011000036106 Glucophage 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +925217011000036106 Ropicor 2 mg film-coated tablet, 28, blister pack 157766 924754011000036109 Ropicor 2 mg film-coated tablet, 28 924459011000036102 Ropicor 2 mg film-coated tablet 2051000168108 Ropicor 2051000168108 Ropicor 46972011000036104 ropinirole 2 mg tablet, 28 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +45451000036108 Hydroxychloroquine Sulfate (Chemmart) 200 mg tablet, 100, bottle 186386 43601000036106 Hydroxychloroquine Sulfate (Chemmart) 200 mg tablet, 100 40601000036103 Hydroxychloroquine Sulfate (Chemmart) 200 mg tablet 40081000036103 Hydroxychloroquine Sulfate (Chemmart) 40081000036103 Hydroxychloroquine Sulfate (Chemmart) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +963421000168108 Aripiprazole (Apo) 10 mg uncoated tablet, 30, bottle 152920 870081000168108 Aripiprazole (Apo) 10 mg uncoated tablet, 30 870071000168105 Aripiprazole (Apo) 10 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +657151000168109 Pravastatin Sodium (AN) 40 mg uncoated tablet, 30, blister pack 191718 656571000168107 Pravastatin Sodium (AN) 40 mg uncoated tablet, 30 656561000168101 Pravastatin Sodium (AN) 40 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +946261000168104 Glimepiride (Sanofi) 4 mg uncoated tablet, 100, blister pack 142393 946251000168101 Glimepiride (Sanofi) 4 mg uncoated tablet, 100 946151000168108 Glimepiride (Sanofi) 4 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 946241000168103 glimepiride 4 mg tablet, 100 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +69291011000036102 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 36 x 50 mL packs, bag 19503 67091011000036100 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 36 x 50 mL packs 65521011000036105 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71659011000036103 glucose 5% (2.5 g/50 mL) injection, 36 x 50 mL packs 70112011000036109 glucose 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +45441000036105 Lezole 2.5 mg film-coated tablet, 30, blister pack 184746 43591000036104 Lezole 2.5 mg film-coated tablet, 30 40531000036109 Lezole 2.5 mg film-coated tablet 40351000036108 Lezole 40351000036108 Lezole 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +60927011000036104 Nurofen 200 mg sugar coated tablet, 48, blister pack 127272 56881011000036103 Nurofen 200 mg sugar coated tablet, 48 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60927011000036104 Nurofen 200 mg sugar coated tablet, 48, blister pack 61869 56881011000036103 Nurofen 200 mg sugar coated tablet, 48 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +69661011000036101 Gasbusters 200 mg soft capsule, 20, blister pack 80295 67460011000036101 Gasbusters 200 mg soft capsule, 20 65673011000036103 Gasbusters 200 mg soft capsule 65074011000036109 Gasbusters 65074011000036109 Gasbusters 71988011000036104 simethicone 200 mg capsule, 20 70273011000036107 simethicone 200 mg capsule 69826011000036109 simethicone +34792011000036106 Oxynorm 5 mg hard capsule, 60, blister pack 74145 34368011000036105 Oxynorm 5 mg hard capsule, 60 6721011000036100 Oxynorm 5 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +1008371000168102 Mupirocin (Apo) 2% ointment, 15 g, tube 276520 1008361000168108 Mupirocin (Apo) 2% ointment, 15 g 1008351000168106 Mupirocin (Apo) 2% ointment 1008341000168109 Mupirocin (Apo) 1008341000168109 Mupirocin (Apo) 26643011000036108 mupirocin 2% ointment, 15 g 22049011000036102 mupirocin 2% ointment 21590011000036101 mupirocin +37559011000036102 Cordarone X Intravenous 150 mg/3 mL injection solution, 10 x 3 mL ampoules 15360 36826011000036105 Cordarone X Intravenous 150 mg/3 mL injection solution, 10 x 3 mL ampoules 36111011000036102 Cordarone X Intravenous 150 mg/3 mL injection solution, 3 mL ampoule 59231000168108 Cordarone X Intravenous 59231000168108 Cordarone X Intravenous 38715011000036100 amiodarone hydrochloride 150 mg/3 mL injection, 10 x 3 mL ampoules 37946011000036101 amiodarone hydrochloride 150 mg/3 mL injection, ampoule 21535011000036101 amiodarone +61094011000036100 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 200 mL, bottle 71041 57037011000036101 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 200 mL 54168011000036109 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 5 mL 55471000168107 Cold and Allergy Children's Mixture (Chemists' Own) 55471000168107 Cold and Allergy Children's Mixture (Chemists' Own) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +953621000168100 Gabapentin (AN) 400 mg hard capsule, 150, blister pack 263842 953611000168107 Gabapentin (AN) 400 mg hard capsule, 150 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953601000168109 gabapentin 400 mg capsule, 150 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +19847011000036101 Viagra 100 mg film-coated tablet, 4, blister pack 64436 13097011000036105 Viagra 100 mg film-coated tablet, 4 6381011000036105 Viagra 100 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +34638011000036109 Suboxone 2/0.5 sublingual tablet, 7, blister pack 120159 34228011000036108 Suboxone 2/0.5 sublingual tablet, 7 5108011000036108 Suboxone 2/0.5 sublingual tablet 39741000168105 Suboxone 2/0.5 39741000168105 Suboxone 2/0.5 35107011000036109 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet, 7 22108011000036108 buprenorphine 2 mg + naloxone 500 microgram sublingual tablet 21739011000036100 buprenorphine + naloxone +870091000168106 Aripiprazole (Apo) 10 mg uncoated tablet, 30, blister pack 152908 870081000168108 Aripiprazole (Apo) 10 mg uncoated tablet, 30 870071000168105 Aripiprazole (Apo) 10 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +823971000168100 Clexane with Automatic Safety Lock System 20 mg/0.2 mL injection solution, 0.2 mL syringe 221717 823961000168106 Clexane with Automatic Safety Lock System 20 mg/0.2 mL injection solution, 0.2 mL syringe 823271000168109 Clexane with Automatic Safety Lock System 20 mg/0.2 mL injection solution, 0.2 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823951000168109 enoxaparin sodium 20 mg/0.2 mL injection, 0.2 mL syringe 33672011000036106 enoxaparin sodium 20 mg/0.2 mL injection, syringe 21553011000036103 enoxaparin sodium +74531000036102 Nizoral 2% shampoo, 60 mL, bottle 68057 72561000036101 Nizoral 2% shampoo, 60 mL 70371000036102 Nizoral 2% shampoo 4145011000036104 Nizoral 4145011000036104 Nizoral 72571000036109 ketoconazole 2% shampoo, 60 mL 69971000036100 ketoconazole 2% shampoo 21500011000036103 ketoconazole +895991000168107 Atomoxetine (Sandoz) 100 mg hard capsule, 28, blister pack 238372 895981000168109 Atomoxetine (Sandoz) 100 mg hard capsule, 28 895951000168102 Atomoxetine (Sandoz) 100 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +1120601000168104 Xque XR 50 mg modified release tablet, 10, blister pack 241752 1120591000168106 Xque XR 50 mg modified release tablet, 10 1120581000168108 Xque XR 50 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51529011000036107 quetiapine 50 mg modified release tablet, 10 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +751951000168106 Bronchitol 40 mg powder for inhalation, 224 capsules, blister pack 187575 751941000168109 Bronchitol 40 mg powder for inhalation, 224 capsules 32891000036107 Bronchitol 40 mg powder for inhalation, 1 capsule 32151000036106 Bronchitol 32151000036106 Bronchitol 751931000168100 mannitol 40 mg powder for inhalation, 224 capsules 81258011000036109 mannitol 40 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +1048661000168106 Paracetamol Codeine 500/30 (GPPL) tablet, 20, blister pack 220977 1048651000168109 Paracetamol Codeine 500/30 (GPPL) tablet, 20 1048431000168101 Paracetamol Codeine 500/30 (GPPL) tablet 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +1077491000168100 Atomoxetine (AN) 18 mg hard capsule, 7, blister pack 234790 1077481000168103 Atomoxetine (AN) 18 mg hard capsule, 7 1077471000168101 Atomoxetine (AN) 18 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +59710011000036100 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 30 mL, bottle 10549 55712011000036107 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 30 mL 53625011000036105 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 63108011000036109 pholcodine 3 mg/mL oral liquid, 30 mL 61858011000036102 pholcodine 3 mg/mL oral liquid 21705011000036108 pholcodine +859901000168106 Citracal Plus D film-coated tablet, 60, bottle 129696 859891000168107 Citracal Plus D film-coated tablet, 60 859871000168106 Citracal Plus D film-coated tablet 920934011000036103 Citracal Plus D 920934011000036103 Citracal Plus D 859881000168109 calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 859861000168100 calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +60460011000036106 Sleep Aid (Pharmacist Formula) 25 mg tablet, 20, blister pack 149475 56418011000036100 Sleep Aid (Pharmacist Formula) 25 mg tablet, 20 53917011000036108 Sleep Aid (Pharmacist Formula) 25 mg tablet 53529011000036102 Sleep Aid (Pharmacist Formula) 53529011000036102 Sleep Aid (Pharmacist Formula) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +19467011000036104 Mixtard 30/70 injection suspension, 1 x 10 mL vial 54654 12744011000036102 Mixtard 30/70 injection suspension, 1 x 10 mL vial 6038011000036109 Mixtard 30/70 injection suspension, 10 mL vial 36741000168101 Mixtard 30/70 36741000168101 Mixtard 30/70 27329011000036101 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, 1 x 10 mL vial 22682011000036105 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, vial 33639011000036103 insulin isophane human + insulin neutral human +74551000036105 Indosyl Combi 4/1.25 uncoated tablet, 30, blister pack 74137 72511000036103 Indosyl Combi 4/1.25 uncoated tablet, 30 69761000036106 Indosyl Combi 4/1.25 uncoated tablet 52461000168105 Indosyl Combi 4/1.25 52461000168105 Indosyl Combi 4/1.25 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +851361000168107 Entecavir (Amneal) 1 mg film-coated tablet, 30, blister pack 259921 851351000168105 Entecavir (Amneal) 1 mg film-coated tablet, 30 851341000168108 Entecavir (Amneal) 1 mg film-coated tablet 851331000168104 Entecavir (Amneal) 851331000168104 Entecavir (Amneal) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +753321000168103 Oxycodone (ZP) 20 mg hard capsule, 60, blister pack 227858 753291000168106 Oxycodone (ZP) 20 mg hard capsule, 60 753261000168104 Oxycodone (ZP) 20 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +87740011000036103 Genotropin GoQuick (5 x 5 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack, dual chamber composite pack 166829 87506011000036108 Genotropin GoQuick (5 x 5 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack 640591000168108 Genotropin GoQuick (somatropin 5 mg) powder for injection, 5 mg cartridge 5561000168107 Genotropin GoQuick 5561000168107 Genotropin GoQuick 87832011000036100 somatropin 5 mg injection [5 cartridges] (&) inert substance diluent [5 x 1 mL cartridges], 1 pack 23220011000036109 somatropin 5 mg injection, cartridge 21295011000036100 somatropin +87740011000036103 Genotropin GoQuick (5 x 5 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack, dual chamber composite pack 166829 87506011000036108 Genotropin GoQuick (5 x 5 mg cartridges, 5 x 1 mL inert diluent cartridges), 1 pack 630911000168107 Genotropin GoQuick (inert substance) diluent, 1 mL cartridge 5561000168107 Genotropin GoQuick 5561000168107 Genotropin GoQuick 87832011000036100 somatropin 5 mg injection [5 cartridges] (&) inert substance diluent [5 x 1 mL cartridges], 1 pack 630901000168109 inert substance diluent, 1 mL cartridge 21220011000036103 inert substance +59561000036105 Fluconazole (Alphapharm) 400 mg/200 mL injection solution, 10 x 200 mL bags 155341 58751000036106 Fluconazole (Alphapharm) 400 mg/200 mL injection solution, 10 x 200 mL bags 58241000036101 Fluconazole (Alphapharm) 400 mg/200 mL injection solution, 200 mL bag 58061000036107 Fluconazole (Alphapharm) 58061000036107 Fluconazole (Alphapharm) 46271011000036109 fluconazole 400 mg/200 mL injection, 10 x 200 mL bags 22174011000036106 fluconazole 400 mg/200 mL injection, bag 21365011000036105 fluconazole +985171000168100 Advil Mini Caps 200 mg sugar coated tablet, 6, blister pack 104222 985161000168106 Advil Mini Caps 200 mg sugar coated tablet, 6 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +146321000036107 Sevikar HCT 40/5/12.5 film-coated tablet, 30, blister pack 199006 145031000036101 Sevikar HCT 40/5/12.5 film-coated tablet, 30 143611000036104 Sevikar HCT 40/5/12.5 film-coated tablet 25911000168108 Sevikar HCT 40/5/12.5 25911000168108 Sevikar HCT 40/5/12.5 145041000036106 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet, 30 143621000036106 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +20147011000036105 Fosamax Once Weekly 70 mg uncoated tablet, 4, blister pack 73772 13371011000036105 Fosamax Once Weekly 70 mg uncoated tablet, 4 6656011000036102 Fosamax Once Weekly 70 mg uncoated tablet 48861000168109 Fosamax Once Weekly 48861000168109 Fosamax Once Weekly 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +1100541000168107 Flucloxacillin (Chemmart) 250 mg capsule, 48, blister pack 226387 1100531000168103 Flucloxacillin (Chemmart) 250 mg capsule, 48 1100501000168105 Flucloxacillin (Chemmart) 250 mg capsule 1100401000168109 Flucloxacillin (Chemmart) 1100401000168109 Flucloxacillin (Chemmart) 879531000168107 flucloxacillin 250 mg capsule, 48 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +69245011000036105 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 19466 67045011000036108 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 65268011000036102 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 16261000168102 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 16261000168102 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 71615011000036107 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.9% (9 g/L) injection, 1 L bag 70093011000036109 potassium chloride 1.5 g (potassium 20 mmol)/L + sodium chloride 0.9% (9 g/L) injection, bag 69799011000036108 potassium chloride + sodium chloride +20194011000036106 Rapamune 1 mg/mL oral liquid solution, 60 mL, bottle 73921 13413011000036107 Rapamune 1 mg/mL oral liquid solution, 60 mL 6695011000036101 Rapamune 1 mg/mL oral liquid solution 3482011000036103 Rapamune 3482011000036103 Rapamune 27735011000036100 sirolimus 1 mg/mL oral liquid, 60 mL 23067011000036106 sirolimus 1 mg/mL oral liquid 21862011000036104 sirolimus +18155011000036101 Doxorubicin Hydrochloride (Ebewe) 10 mg/5 mL injection, 5 mL vial 118528 11576011000036107 Doxorubicin Hydrochloride (Ebewe) 10 mg/5 mL injection, 5 mL vial 5611011000036101 Doxorubicin Hydrochloride (Ebewe) 10 mg/5 mL injection, 5 mL vial 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +933230731000036100 Irinotecan Hydrochloride Trihydrate (Kabi) 40 mg/2 mL concentrated injection, 2 mL vial 171228 933224851000036107 Irinotecan Hydrochloride Trihydrate (Kabi) 40 mg/2 mL concentrated injection, 2 mL vial 933220381000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 40 mg/2 mL concentrated injection, 2 mL vial 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +18516011000036105 Monace 10 mg uncoated tablet, 30, blister pack 101878 11242011000036103 Monace 10 mg uncoated tablet, 30 4901011000036106 Monace 10 mg uncoated tablet 3242011000036107 Monace 3242011000036107 Monace 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +929048011000036101 Galvumet 50/850 film-coated tablet, 10, blister pack 161217 928409011000036107 Galvumet 50/850 film-coated tablet, 10 927969011000036100 Galvumet 50/850 film-coated tablet 9411000168105 Galvumet 50/850 9411000168105 Galvumet 50/850 929246011000036107 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet, 10 929155011000036104 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet 929132011000036106 vildagliptin + metformin +877301000168104 Briviact 25 mg film-coated tablet, 56, blister pack 243796 877291000168100 Briviact 25 mg film-coated tablet, 56 877241000168108 Briviact 25 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877281000168103 brivaracetam 25 mg tablet, 56 877231000168104 brivaracetam 25 mg tablet 876401000168109 brivaracetam +949321000168108 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) film-coated tablet, 30, bottle 265834 949311000168101 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) film-coated tablet, 30 949291000168100 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) film-coated tablet 949261000168107 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) 949261000168107 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) 949301000168104 tenofovir disoproxil maleate 300 mg + emtricitabine 200 mg tablet, 30 949281000168103 tenofovir disoproxil maleate 300 mg + emtricitabine 200 mg tablet 851481000168106 tenofovir disoproxil + emtricitabine +835531000168106 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL, bottle 42832 835521000168108 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL 835511000168101 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution 39728011000036103 Codeine Phosphate Linctus (Orion) 39728011000036103 Codeine Phosphate Linctus (Orion) 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +795071000168109 Instanyl 50 microgram/actuation nasal spray, 10 x 1 actuation, pump packs 197680 795061000168103 Instanyl 50 microgram/actuation nasal spray, 10 x 1 actuation 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795051000168100 fentanyl 50 microgram/actuation nasal spray, 10 x 1 actuation 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +965111000168106 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 20, blister pack 134861 965101000168108 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 20 965051000168108 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 51514011000036103 clarithromycin 500 mg tablet, 20 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +983801000168103 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 203353 983791000168104 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 200 mL 983701000168105 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 5 mL 810831000168108 Ibuprofen (Blooms The Chemist) 810831000168108 Ibuprofen (Blooms The Chemist) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +996771000168108 PKU Glytactin Build 10 containing 10 g of protein equivalent powder for oral liquid, 60 x 16 g sachets 996761000168102 PKU Glytactin Build 10 containing 10 g of protein equivalent powder for oral liquid, 60 x 16 g sachets 996741000168101 PKU Glytactin Build 10 containing 10 g of protein equivalent powder for oral liquid, 16 g sachet 996721000168107 PKU Glytactin Build 10 996721000168107 PKU Glytactin Build 10 996751000168104 glycomacropeptide and essential amino acids with vitamins and minerals containing 10 g of protein equivalent powder for oral liquid, 60 x 16 g sachets 996731000168105 glycomacropeptide and essential amino acids with vitamins and minerals containing 10 g of protein equivalent powder for oral liquid, 16 g sachet 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +45681000036104 Quetiapine (Stada) 300 mg film-coated tablet, 60, blister pack 170856 42991000036104 Quetiapine (Stada) 300 mg film-coated tablet, 60 41331000036105 Quetiapine (Stada) 300 mg film-coated tablet 40401000036101 Quetiapine (Stada) 40401000036101 Quetiapine (Stada) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1035681000168105 Aranesp 15 microgram/0.38 mL injection solution, 0.38 mL injection device 122858 1035671000168107 Aranesp 15 microgram/0.38 mL injection solution, 0.38 mL injection device 1035651000168103 Aranesp 15 microgram/0.38 mL injection solution, 0.38 mL injection device 6471000168109 Aranesp 6471000168109 Aranesp 1035661000168101 darbepoetin alfa 15 microgram/0.38 mL injection, 0.38 mL injection device 1035641000168100 darbepoetin alfa 15 microgram/0.38 mL injection device 21234011000036105 darbepoetin alfa +662611000168106 Telmisartan (Apo) 40 mg uncoated tablet, 28, bottle 189908 662601000168108 Telmisartan (Apo) 40 mg uncoated tablet, 28 662591000168101 Telmisartan (Apo) 40 mg uncoated tablet 662541000168109 Telmisartan (Apo) 662541000168109 Telmisartan (Apo) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +946381000168104 Frusemide (Winthrop) 40 mg tablet, 250, bottle 144478 946371000168102 Frusemide (Winthrop) 40 mg tablet, 250 946271000168105 Frusemide (Winthrop) 40 mg tablet 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 946361000168108 furosemide (frusemide) 40 mg tablet, 250 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +19680011000036100 Flopen 500 mg hard capsule, 24, blister pack 209368 12940011000036104 Flopen 500 mg hard capsule, 24 6230011000036104 Flopen 500 mg hard capsule 3750011000036102 Flopen 3750011000036102 Flopen 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +19680011000036100 Flopen 500 mg hard capsule, 24, blister pack 60174 12940011000036104 Flopen 500 mg hard capsule, 24 6230011000036104 Flopen 500 mg hard capsule 3750011000036102 Flopen 3750011000036102 Flopen 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +18879011000036106 Modecate 12.5 mg/0.5 mL injection solution, 5 x 0.5 mL ampoules 19263 12187011000036109 Modecate 12.5 mg/0.5 mL injection solution, 5 x 0.5 mL ampoules 5615011000036104 Modecate 12.5 mg/0.5 mL injection solution, 0.5 mL ampoule 4410011000036103 Modecate 4410011000036103 Modecate 26971011000036107 fluphenazine decanoate 12.5 mg/0.5 mL injection, 5 x 0.5 mL ampoules 22344011000036102 fluphenazine decanoate 12.5 mg/0.5 mL injection, ampoule 21519011000036106 fluphenazine decanoate +947791000168104 Risdone 500 microgram film-coated tablet, 10, blister pack 144200 947781000168102 Risdone 500 microgram film-coated tablet, 10 947741000168107 Risdone 500 microgram film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 78192011000036105 risperidone 500 microgram tablet, 10 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +44611011000036108 Ipravent 250 microgram/mL inhalation solution, 20 mL, bottle 90060 42064011000036106 Ipravent 250 microgram/mL inhalation solution, 20 mL 40344011000036105 Ipravent 250 microgram/mL inhalation solution 2982011000036106 Ipravent 2982011000036106 Ipravent 46831011000036102 ipratropium bromide 250 microgram/mL inhalation solution, 20 mL 22328011000036107 ipratropium bromide 250 microgram/mL inhalation solution 21512011000036101 ipratropium +926752011000036109 Primovist 907.1 mg/5 mL injection solution, 5 mL vial 102088 926059011000036101 Primovist 907.1 mg/5 mL injection solution, 5 mL vial 925622011000036101 Primovist 907.1 mg/5 mL injection solution, 5 mL vial 920914011000036108 Primovist 920914011000036108 Primovist 927291011000036101 gadoxetate disodium 907.1 mg/5 mL injection, 5 mL vial 926980011000036107 gadoxetate disodium 907.1 mg/5 mL injection, vial 922038011000036107 gadoxetic acid +69164011000036104 Infacol 100 mg/mL oral liquid solution, 30 mL, bottle 16124 66964011000036105 Infacol 100 mg/mL oral liquid solution, 30 mL 65376011000036102 Infacol 100 mg/mL oral liquid solution 65088011000036107 Infacol 65088011000036107 Infacol 71537011000036104 simethicone 100 mg/mL oral liquid, 30 mL 70047011000036105 simethicone 100 mg/mL oral liquid 69826011000036109 simethicone +20481011000036108 Piroxicam (Chemmart) 20 mg dispersible tablet, 25, blister pack 78374 13681011000036105 Piroxicam (Chemmart) 20 mg dispersible tablet, 25 6964011000036101 Piroxicam (Chemmart) 20 mg dispersible tablet 2915011000036100 Piroxicam (Chemmart) 2915011000036100 Piroxicam (Chemmart) 27882011000036100 piroxicam 20 mg dispersible tablet, 25 23210011000036102 piroxicam 20 mg dispersible tablet 21531011000036103 piroxicam +37432011000036102 Metronidazole (Orion) 0.5% gel, 10 g, tube 10846 36639011000036109 Metronidazole (Orion) 0.5% gel, 10 g 36040011000036108 Metronidazole (Orion) 0.5% gel 35906011000036109 Metronidazole (Orion) 35906011000036109 Metronidazole (Orion) 38557011000036103 metronidazole 0.5% gel, 10 g 37836011000036109 metronidazole 0.5% gel 21482011000036106 metronidazole +922022011000036106 Wagner 1000 Plus Glucosamine hard capsule, 100, bottle 98506 921580011000036103 Wagner 1000 Plus Glucosamine hard capsule, 100 921098011000036103 Wagner 1000 Plus Glucosamine hard capsule 920938011000036105 Wagner 1000 Plus Glucosamine 920938011000036105 Wagner 1000 Plus Glucosamine 922693011000036100 ascorbic acid 50 mg + citrus bioflavonoids extract 50 mg + cupric sulfate pentahydrate 649 microgram (copper 166 microgram) + glucosamine sulfate potassium chloride 1 g + manganese amino acid chelate 5 mg (manganese 500 microgram) + zinc (as oxide) 2 mg capsule, 100 922162011000036105 ascorbic acid 50 mg + citrus bioflavonoids extract 50 mg + cupric sulfate pentahydrate 649 microgram (copper 166 microgram) + glucosamine sulfate potassium chloride 1 g + manganese amino acid chelate 5 mg (manganese 500 microgram) + zinc (as oxide) 2 mg capsule 922040011000036109 ascorbic acid + citrus bioflavonoids extract + cupric sulfate pentahydrate + glucosamine + manganese amino acid chelate + zinc oxide +931557011000036107 Ondron 8 mg film-coated tablet, 10, blister pack 163439 930718011000036109 Ondron 8 mg film-coated tablet, 10 930027011000036102 Ondron 8 mg film-coated tablet 40221000168103 Ondron 40221000168103 Ondron 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +37419011000036100 Salbutamol Sterineb (Pfizer (Perth)) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 11355 36664011000036104 Salbutamol Sterineb (Pfizer (Perth)) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 36078011000036109 Salbutamol Sterineb (Pfizer (Perth)) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 25971000168100 Salbutamol Sterineb (Pfizer (Perth)) 25971000168100 Salbutamol Sterineb (Pfizer (Perth)) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +808141000168107 Perindopril Arginine (Apo) 10 mg film-coated tablet, 30, blister pack 184809 808131000168103 Perindopril Arginine (Apo) 10 mg film-coated tablet, 30 808101000168105 Perindopril Arginine (Apo) 10 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +944941000168102 Epiramax 50 mg hard capsule, 60, bottle 137712 944931000168106 Epiramax 50 mg hard capsule, 60 944921000168108 Epiramax 50 mg hard capsule 81973011000036100 Epiramax 81973011000036100 Epiramax 27655011000036108 topiramate 50 mg capsule, 60 22992011000036105 topiramate 50 mg capsule 21458011000036101 topiramate +44598011000036109 Vfend 50 mg film-coated tablet, 56, blister pack 82507 42051011000036101 Vfend 50 mg film-coated tablet, 56 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +890191000168104 Bicalutamide (DRLA) 50 mg film-coated tablet, 30, blister pack 170314 890181000168102 Bicalutamide (DRLA) 50 mg film-coated tablet, 30 890151000168109 Bicalutamide (DRLA) 50 mg film-coated tablet 890141000168107 Bicalutamide (DRLA) 890141000168107 Bicalutamide (DRLA) 39490011000036100 bicalutamide 50 mg tablet, 30 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1106251000168105 Paxam 500 microgram uncoated tablet, 200, bottle 54846 1106241000168108 Paxam 500 microgram uncoated tablet, 200 6048011000036108 Paxam 500 microgram uncoated tablet 3163011000036108 Paxam 3163011000036108 Paxam 1106231000168104 clonazepam 500 microgram tablet, 200 22687011000036107 clonazepam 500 microgram tablet 21226011000036100 clonazepam +1074521000168109 Cefazolin (Auro) 1 g powder for injection, 10 vials 174072 1074511000168102 Cefazolin (Auro) 1 g powder for injection, 10 vials 1074461000168100 Cefazolin (Auro) 1 g powder for injection, vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 26880011000036103 cefazolin 1 g injection, 10 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +45531000036104 Enalapril Maleate (PS) 5 mg uncoated tablet, 30, blister pack 188552 43661000036105 Enalapril Maleate (PS) 5 mg uncoated tablet, 30 40761000036105 Enalapril Maleate (PS) 5 mg uncoated tablet 40281000036106 Enalapril Maleate (PS) 40281000036106 Enalapril Maleate (PS) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +834001000168105 Fisamox 500 mg powder for injection, 10 vials 29406 833991000168102 Fisamox 500 mg powder for injection, 10 vials 65255011000036102 Fisamox 500 mg powder for injection, 500 mg vial 39663011000036108 Fisamox 39663011000036108 Fisamox 833981000168100 amoxicillin 500 mg injection, 10 vials 70143011000036109 amoxicillin 500 mg injection, vial 21415011000036100 amoxicillin +69648011000036101 Goanna Arthritis 10% cream, 50 g, tube 78992 67447011000036107 Goanna Arthritis 10% cream, 50 g 65668011000036100 Goanna Arthritis 10% cream 65065011000036104 Goanna Arthritis 65065011000036104 Goanna Arthritis 71975011000036103 trolamine salicylate 10% cream, 50 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +928973011000036101 Valaciclovir (Apo) 500 mg film-coated tablet, 20, blister pack 158911 928334011000036105 Valaciclovir (Apo) 500 mg film-coated tablet, 20 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +949121000168106 Risperidone (WT) 1 mg film-coated tablet, 60, bottle 127895 949111000168104 Risperidone (WT) 1 mg film-coated tablet, 60 949101000168102 Risperidone (WT) 1 mg film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1053081000168104 Targin 40/20 mg modified release tablet, 60, blister pack 156194 1053071000168102 Targin 40/20 mg modified release tablet, 60 923038011000036103 Targin 40/20 mg modified release tablet 46091000168106 Targin 40/20 mg 46091000168106 Targin 40/20 mg 1053061000168108 oxycodone hydrochloride 40 mg + naloxone hydrochloride 20 mg modified release tablet, 60 923976011000036108 oxycodone hydrochloride 40 mg + naloxone hydrochloride 20 mg modified release tablet 923931011000036100 oxycodone + naloxone +74391000036107 Frusemide (Apo) 20 mg tablet, 100, bottle 186517 71961000036102 Frusemide (Apo) 20 mg tablet, 100 69941000036107 Frusemide (Apo) 20 mg tablet 69451000036101 Frusemide (Apo) 69451000036101 Frusemide (Apo) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +65821000036108 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application, 100 mL, bottle 14489 63401000036104 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application, 100 mL 61651000036104 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application 45161000168106 Tea Tree Oil Antiseptic (The Good Oil Co) 45161000168106 Tea Tree Oil Antiseptic (The Good Oil Co) 63411000036102 melaleuca oil 1 mL/mL application, 100 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +1051391000168104 Oxylieve MR 5 mg modified release tablet, 20, blister pack 153598 1051381000168102 Oxylieve MR 5 mg modified release tablet, 20 1051371000168100 Oxylieve MR 5 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 28126011000036108 oxycodone hydrochloride 5 mg modified release tablet, 20 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +760711000168107 Demazin Chesty Cough Relief oral liquid solution, 200 mL, bottle 136194 760701000168109 Demazin Chesty Cough Relief oral liquid solution, 200 mL 760691000168109 Demazin Chesty Cough Relief oral liquid solution, 10 mL 760681000168106 Demazin Chesty Cough Relief 760681000168106 Demazin Chesty Cough Relief 63947011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 200 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +973771000168106 Pregabalin (Teva) 150 mg hard capsule, 14, blister pack 229593 973761000168100 Pregabalin (Teva) 150 mg hard capsule, 14 973751000168102 Pregabalin (Teva) 150 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +19951011000036103 Dilaudid 4 mg uncoated tablet, 20, bottle 67354 13194011000036106 Dilaudid 4 mg uncoated tablet, 20 6477011000036104 Dilaudid 4 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 27606011000036105 hydromorphone hydrochloride 4 mg tablet, 20 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +86863011000036103 Micolette Micro enema, 50 x 5 mL, tube 142564 86749011000036105 Micolette Micro enema, 50 x 5 mL 86626011000036107 Micolette Micro enema, 5 mL 35381000168101 Micolette Micro 35381000168101 Micolette Micro 87014011000036100 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema, 50 x 5 mL 22244011000036107 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema 21630011000036102 citric acid + lauryl sulfoacetate sodium + sorbitol +846931000168105 Olmesartan HCT 20/25 (Alembic) film-coated tablet, 30, blister pack 221129 846921000168107 Olmesartan HCT 20/25 (Alembic) film-coated tablet, 30 846901000168103 Olmesartan HCT 20/25 (Alembic) film-coated tablet 846881000168100 Olmesartan HCT 20/25 (Alembic) 846881000168100 Olmesartan HCT 20/25 (Alembic) 846911000168100 olmesartan medoxomil 20 mg + hydrochlorothiazide 25 mg tablet, 30 846891000168102 olmesartan medoxomil 20 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +146141000036101 Candesartan Cilexetil (Pharmacor) 8 mg uncoated tablet, 30, blister pack 195500 145221000036109 Candesartan Cilexetil (Pharmacor) 8 mg uncoated tablet, 30 144041000036107 Candesartan Cilexetil (Pharmacor) 8 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +68820011000036109 Strepsils orange lozenge, 9, blister pack 115527 66626011000036105 Strepsils orange lozenge, 9 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71527011000036102 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 9 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +825501000168101 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 123712 825491000168108 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 825441000168100 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 31101000168108 Engerix-B Paediatric 31101000168108 Engerix-B Paediatric 825481000168105 hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes 825431000168109 hepatitis B child vaccine 10 microgram/0.5 mL injection, syringe 825191000168101 hepatitis B vaccine +937881000168105 Zonisamide (Apo) 25 mg hard capsule, 56, blister pack 265578 937871000168107 Zonisamide (Apo) 25 mg hard capsule, 56 937861000168101 Zonisamide (Apo) 25 mg hard capsule 937851000168103 Zonisamide (Apo) 937851000168103 Zonisamide (Apo) 71383011000036103 zonisamide 25 mg capsule, 56 69985011000036100 zonisamide 25 mg capsule 69755011000036103 zonisamide +37465011000036103 Marcain Epidural Infusion 0.125% (125 mg/100 mL) injection solution, 5 x 100 mL bags 12424 36735011000036103 Marcain Epidural Infusion 0.125% (125 mg/100 mL) injection solution, 5 x 100 mL bags 36173011000036109 Marcain Epidural Infusion 0.125% (125 mg/100 mL) injection solution, 100 mL bag 31131000168101 Marcain Epidural Infusion 31131000168101 Marcain Epidural Infusion 38645011000036103 bupivacaine hydrochloride monohydrate 0.125% (125 mg/100 mL) injection, 5 x 100 mL bags 37900011000036105 bupivacaine hydrochloride monohydrate 0.125% (125 mg/100 mL) injection, bag 37702011000036102 bupivacaine +925289011000036102 Drixine Metered Pump Decongestant refill 0.05% nasal spray, 15 mL, bottle 161594 924826011000036102 Drixine Metered Pump Decongestant refill 0.05% nasal spray, 15 mL 924518011000036108 Drixine Metered Pump Decongestant refill 0.05% nasal spray 44711000168106 Drixine Metered Pump Decongestant 44711000168106 Drixine Metered Pump Decongestant 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +20678011000036106 Modavigil 100 mg tablet, 60, blister pack 82350 13857011000036102 Modavigil 100 mg tablet, 60 7144011000036109 Modavigil 100 mg tablet 3390011000036106 Modavigil 3390011000036106 Modavigil 27978011000036104 modafinil 100 mg tablet, 60 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +20678011000036106 Modavigil 100 mg tablet, 60, blister pack 168497 13857011000036102 Modavigil 100 mg tablet, 60 7144011000036109 Modavigil 100 mg tablet 3390011000036106 Modavigil 3390011000036106 Modavigil 27978011000036104 modafinil 100 mg tablet, 60 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +60086011000036103 Period Pain Relief (Pharmacy Choice) 275 mg film-coated tablet, 24, blister pack 126537 56047011000036103 Period Pain Relief (Pharmacy Choice) 275 mg film-coated tablet, 24 53770011000036105 Period Pain Relief (Pharmacy Choice) 275 mg film-coated tablet 53422011000036104 Period Pain Relief (Pharmacy Choice) 53422011000036104 Period Pain Relief (Pharmacy Choice) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +25121000036106 Atorvastatin (GH) 10 mg film-coated tablet, 30, blister pack 180321 22801000036101 Atorvastatin (GH) 10 mg film-coated tablet, 30 20811000036100 Atorvastatin (GH) 10 mg film-coated tablet 19801000036101 Atorvastatin (GH) 19801000036101 Atorvastatin (GH) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1081901000168104 Ralovera 2.5 mg uncoated tablet, 28, blister pack 46527 1081891000168103 Ralovera 2.5 mg uncoated tablet, 28 1081881000168101 Ralovera 2.5 mg uncoated tablet 4418011000036101 Ralovera 4418011000036101 Ralovera 46319011000036108 medroxyprogesterone acetate 2.5 mg tablet, 28 45075011000036104 medroxyprogesterone acetate 2.5 mg tablet 21378011000036107 medroxyprogesterone +25161000036102 Atorvastatin (Sandoz) 10 mg film-coated tablet, 30, blister pack 156055 22341000036107 Atorvastatin (Sandoz) 10 mg film-coated tablet, 30 20641000036103 Atorvastatin (Sandoz) 10 mg film-coated tablet 19781000036102 Atorvastatin (Sandoz) 19781000036102 Atorvastatin (Sandoz) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1120511000168102 Xque XR 200 mg modified release tablet, 10, blister pack 226811 1120501000168100 Xque XR 200 mg modified release tablet, 10 1120491000168107 Xque XR 200 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51532011000036104 quetiapine 200 mg modified release tablet, 10 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +955061000168101 Extine 30 mg film-coated tablet, 30, bottle 120732 955051000168103 Extine 30 mg film-coated tablet, 30 955041000168100 Extine 30 mg film-coated tablet 4015011000036100 Extine 4015011000036100 Extine 927201000168104 paroxetine 30 mg tablet, 30 927091000168103 paroxetine 30 mg tablet 21618011000036109 paroxetine +44657011000036108 Abilify 5 mg uncoated tablet, 20, blister pack 90925 42109011000036103 Abilify 5 mg uncoated tablet, 20 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46871011000036100 aripiprazole 5 mg tablet, 20 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +890271000168106 Bansep 40 mg film-coated tablet, 28, bottle 173491 890261000168100 Bansep 40 mg film-coated tablet, 28 841051000168106 Bansep 40 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890251000168102 atorvastatin 40 mg tablet, 28 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +903121000168101 Brillior 75 mg hard capsule, 14, blister pack 224340 903111000168108 Brillior 75 mg hard capsule, 14 903101000168105 Brillior 75 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1099101000168104 Cubitan oral liquid, 24 x 200 mL bottles 1099091000168109 Cubitan oral liquid, 24 x 200 mL bottles 1099071000168108 Cubitan oral liquid, 200 mL bottle 1099051000168104 Cubitan 1099051000168104 Cubitan 1099081000168106 protein formula with arginine, vitamin C, E and zinc oral liquid, 24 x 200 mL bottles 1099061000168102 protein formula with arginine, vitamin C, E and zinc oral liquid, 200 mL bottle 733691000168107 protein formula with arginine, vitamin C, E and zinc +931439011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 60 x 50 mL bags 144596 930618011000036104 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 60 x 50 mL bags 929976011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932374011000036101 sodium chloride 0.9% (450 mg/50 mL) injection, 60 x 50 mL bags 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +18443011000036104 Serepax 30 mg uncoated tablet, 25, blister pack 10417 11270011000036103 Serepax 30 mg uncoated tablet, 25 5092011000036101 Serepax 30 mg uncoated tablet 3507011000036107 Serepax 3507011000036107 Serepax 32770011000036109 oxazepam 30 mg tablet, 25 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +773541000168103 Claratyne Reditab 10 mg orally disintegrating tablet, 20, blister pack 217147 773531000168107 Claratyne Reditab 10 mg orally disintegrating tablet, 20 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773521000168109 loratadine 10 mg orally disintegrating tablet, 20 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +983961000168109 Aranesp 200 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 77960 983951000168107 Aranesp 200 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 983901000168108 Aranesp 200 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983941000168105 darbepoetin alfa 200 microgram/0.4 mL injection, 4 x 0.4 mL syringes 983891000168109 darbepoetin alfa 200 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +74371000036108 Isotretinoin (PS) 20 mg soft capsule, 60, blister pack 186340 71941000036103 Isotretinoin (PS) 20 mg soft capsule, 60 70351000036107 Isotretinoin (PS) 20 mg soft capsule 69411000036100 Isotretinoin (PS) 69411000036100 Isotretinoin (PS) 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +892931000168101 Behistatine 16 mg uncoated tablet, 30, blister pack 212084 892921000168104 Behistatine 16 mg uncoated tablet, 30 892871000168108 Behistatine 16 mg uncoated tablet 892861000168102 Behistatine 892861000168102 Behistatine 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1013941000168101 Aripiprazole (Generic Health) 20 mg uncoated tablet, 30, blister pack 176800 1013931000168105 Aripiprazole (Generic Health) 20 mg uncoated tablet, 30 1013921000168107 Aripiprazole (Generic Health) 20 mg uncoated tablet 1013811000168106 Aripiprazole (Generic Health) 1013811000168106 Aripiprazole (Generic Health) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1036971000168108 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 100, bottle 173506 1036961000168102 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 100 1036881000168100 Atorvastatin (Ranbaxy) 10 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890221000168105 atorvastatin 10 mg tablet, 100 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +59641000036108 Prioten 45 mg uncoated tablet, 28, blister pack 176382 59121000036108 Prioten 45 mg uncoated tablet, 28 58411000036103 Prioten 45 mg uncoated tablet 58101000036109 Prioten 58101000036109 Prioten 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +1018241000168100 Amisulpride (Apotex) 200 mg tablet, 60, blister pack 178905 1018231000168109 Amisulpride (Apotex) 200 mg tablet, 60 1018201000168102 Amisulpride (Apotex) 200 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +1005361000168100 Prostin E2 1 mg/3 g vaginal gel, 3 g syringe 9983 1005351000168102 Prostin E2 1 mg/3 g vaginal gel, 3 g syringe 1005331000168108 Prostin E2 1 mg/3 g vaginal gel, 3 g syringe 35895011000036107 Prostin E2 35895011000036107 Prostin E2 1005341000168104 dinoprostone 1 mg/3 g vaginal gel, 3 g syringe 1005321000168105 dinoprostone 1 mg/3 g vaginal gel, syringe 37724011000036100 dinoprostone +1048741000168102 Bupretec 40 microgram/hour patch, 4, sachet 234736 1048731000168106 Bupretec 40 microgram/hour patch, 4 1048691000168104 Bupretec 40 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1048721000168108 buprenorphine 40 microgram/hour patch, 4 773931000168101 buprenorphine 40 microgram/hour patch 21232011000036101 buprenorphine +21086011000036102 Estradot 37.5 microgram/24 hours patch, 8, sachet 97563 14229011000036102 Estradot 37.5 microgram/24 hours patch, 8 7515011000036109 Estradot 37.5 microgram/24 hours patch 4248011000036108 Estradot 4248011000036108 Estradot 28231011000036104 estradiol 37.5 microgram/24 hours patch, 8 23545011000036107 estradiol 37.5 microgram/24 hours patch 21238011000036103 estradiol +959311000168104 Ciram 10 mg film-coated tablet, 7, blister pack 158856 959301000168102 Ciram 10 mg film-coated tablet, 7 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +61248011000036105 Lanacane C 3% / 0.5% cream, 30 g, tube 77014 57184011000036109 Lanacane C 3% / 0.5% cream, 30 g 54228011000036104 Lanacane C 3% / 0.5% cream 57371000168108 Lanacane C 3% / 0.5% 57371000168108 Lanacane C 3% / 0.5% 63756011000036107 benzocaine 3% + cetrimide 0.5% cream, 30 g 62074011000036107 benzocaine 3% + cetrimide 0.5% cream 61795011000036103 benzocaine + cetrimide +61248011000036105 Lanacane C 3% / 0.5% cream, 30 g, tube 166599 57184011000036109 Lanacane C 3% / 0.5% cream, 30 g 54228011000036104 Lanacane C 3% / 0.5% cream 57371000168108 Lanacane C 3% / 0.5% 57371000168108 Lanacane C 3% / 0.5% 63756011000036107 benzocaine 3% + cetrimide 0.5% cream, 30 g 62074011000036107 benzocaine 3% + cetrimide 0.5% cream 61795011000036103 benzocaine + cetrimide +855471000168106 Algerika 225 mg hard capsule, 56, blister pack 229601 855461000168100 Algerika 225 mg hard capsule, 56 855371000168104 Algerika 225 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +999511000168100 Memantine (Apotex) 10 mg film-coated tablet, 30, blister pack 159580 999501000168103 Memantine (Apotex) 10 mg film-coated tablet, 30 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38840011000036102 memantine hydrochloride 10 mg tablet, 30 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +52711011000036104 Diphereline (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 109854 52518011000036109 Diphereline (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 638051000168105 Diphereline (inert substance) diluent, 2 mL ampoule 52377011000036101 Diphereline 52377011000036101 Diphereline 52863011000036101 triptorelin 3.75 mg injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 634671000168103 inert substance diluent, 2 mL ampoule 21220011000036103 inert substance +52711011000036104 Diphereline (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 109854 52518011000036109 Diphereline (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 52405011000036105 Diphereline (triptorelin 3.75 mg) powder for injection, 3.75 mg vial 52377011000036101 Diphereline 52377011000036101 Diphereline 52863011000036101 triptorelin 3.75 mg injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 52804011000036100 triptorelin 3.75 mg injection, vial 52800011000036105 triptorelin +17959011000036105 Glycerol for Infants (Petrus) 700 mg moulded suppository, 12, strip pack 12787 11849011000036103 Glycerol for Infants (Petrus) 700 mg moulded suppository, 12 4716011000036109 Glycerol for Infants (Petrus) 700 mg moulded suppository 42031000168108 Glycerol for Infants (Petrus) 42031000168108 Glycerol for Infants (Petrus) 26790011000036104 glycerol 700 mg suppository, 12 22176011000036103 glycerol 700 mg suppository 21770011000036109 glycerol +1086241000168101 Hysoderm 1% cream, 30 g, tube 282487 1086231000168105 Hysoderm 1% cream, 30 g 1086221000168107 Hysoderm 1% cream 1086211000168100 Hysoderm 1086211000168100 Hysoderm 28029011000036107 hydrocortisone acetate 1% cream, 30 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +953461000168108 Valproate Syrup (Winthrop) 200 mg/5 mL oral liquid, 300 mL, bottle 125622 953451000168106 Valproate Syrup (Winthrop) 200 mg/5 mL oral liquid, 300 mL 953441000168109 Valproate Syrup (Winthrop) 200 mg/5 mL oral liquid, 5 mL 953351000168100 Valproate Syrup (Winthrop) 953351000168100 Valproate Syrup (Winthrop) 30615011000036109 valproate sodium 200 mg/5 mL oral liquid, 300 mL 23088011000036109 valproate sodium 200 mg/5 mL oral liquid 21225011000036107 valproate +1103351000168109 Quetiapine (AN) 100 mg film-coated tablet, 20, blister pack 170851 1103341000168107 Quetiapine (AN) 100 mg film-coated tablet, 20 655161000168103 Quetiapine (AN) 100 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +61641011000036104 Advil 200 mg soft capsule, 12, blister pack 97229 57563011000036103 Advil 200 mg soft capsule, 12 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63928011000036104 ibuprofen 200 mg capsule, 12 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +933239271000036103 Agamatrix Jazz diagnostic strip, 50, bottle 165311 933236391000036103 Agamatrix Jazz diagnostic strip, 50 933234581000036100 Agamatrix Jazz diagnostic strip 933234361000036102 Agamatrix Jazz 933234361000036102 Agamatrix Jazz 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +931603011000036101 Pratin 40 mg film-coated tablet, 90, bottle 163558 930764011000036103 Pratin 40 mg film-coated tablet, 90 930038011000036103 Pratin 40 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932408011000036109 pravastatin sodium 40 mg tablet, 90 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +78993011000036101 Bergoline 1 mg uncoated tablet, 30, bottle 132562 78814011000036108 Bergoline 1 mg uncoated tablet, 30 78633011000036109 Bergoline 1 mg uncoated tablet 78599011000036106 Bergoline 78599011000036106 Bergoline 27390011000036101 cabergoline 1 mg tablet, 30 22739011000036101 cabergoline 1 mg tablet 21526011000036105 cabergoline +911701000168108 Cavstat 20 mg film-coated tablet, 98, blister pack 234514 911691000168108 Cavstat 20 mg film-coated tablet, 98 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911681000168105 rosuvastatin 20 mg tablet, 98 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +80043011000036102 Oxaliplatin (Alphapharm) 50 mg powder for injection, 2 vials 130848 79958011000036104 Oxaliplatin (Alphapharm) 50 mg powder for injection, 2 vials 79918011000036109 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80055011000036103 oxaliplatin 50 mg injection, 2 vials 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +1117861000168107 Donepezil (GH) 5 mg film-coated tablet, 84, blister pack 193661 1117851000168105 Donepezil (GH) 5 mg film-coated tablet, 84 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200821000036102 donepezil hydrochloride 5 mg tablet, 84 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +959241000168106 Ciram 20 mg film-coated tablet, 28, blister pack 158858 959231000168102 Ciram 20 mg film-coated tablet, 28 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +44173011000036100 Arima 150 mg film-coated tablet, 30, blister pack 54997 41649011000036107 Arima 150 mg film-coated tablet, 30 40123011000036102 Arima 150 mg film-coated tablet 39674011000036104 Arima 39674011000036104 Arima 46468011000036107 moclobemide 150 mg tablet, 30 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +44628011000036105 Levitra 5 mg film-coated tablet, 4, blister pack 90498 42081011000036106 Levitra 5 mg film-coated tablet, 4 40348011000036103 Levitra 5 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46848011000036105 vardenafil 5 mg tablet, 4 45332011000036108 vardenafil 5 mg tablet 44856011000036100 vardenafil +890281000168109 Bansep 40 mg film-coated tablet, 30, bottle 173491 841121000168102 Bansep 40 mg film-coated tablet, 30 841051000168106 Bansep 40 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +731851000168102 Cyramza 100 mg/10 mL concentrated injection, 10 mL vial 227351 731841000168104 Cyramza 100 mg/10 mL concentrated injection, 10 mL vial 731821000168105 Cyramza 100 mg/10 mL concentrated injection, 10 mL vial 731771000168103 Cyramza 731771000168103 Cyramza 731831000168108 ramucirumab 100 mg/10 mL injection, 10 mL vial 731811000168103 ramucirumab 100 mg/10 mL injection, vial 731801000168101 ramucirumab +1034311000168109 Atomoxetine (GXP) 80 mg hard capsule, 7, blister pack 234855 1034301000168106 Atomoxetine (GXP) 80 mg hard capsule, 7 1034291000168105 Atomoxetine (GXP) 80 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1100611000168109 Crestat 40 mg film-coated tablet, 30, blister pack 183259 1100601000168106 Crestat 40 mg film-coated tablet, 30 1100591000168104 Crestat 40 mg film-coated tablet 1099501000168105 Crestat 1099501000168105 Crestat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +893011000168103 Betahistine (GXP) 16 mg uncoated tablet, 10, blister pack 212082 893001000168101 Betahistine (GXP) 16 mg uncoated tablet, 10 892991000168102 Betahistine (GXP) 16 mg uncoated tablet 892981000168100 Betahistine (GXP) 892981000168100 Betahistine (GXP) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1103441000168100 Quetiapine (RBX) 100 mg film-coated tablet, 20, blister pack 166429 1103431000168109 Quetiapine (RBX) 100 mg film-coated tablet, 20 3401000036102 Quetiapine (RBX) 100 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +933213491000036108 Lisinopril (IPCA) 20 mg uncoated tablet, 56, blister pack 152718 933201741000036105 Lisinopril (IPCA) 20 mg uncoated tablet, 56 933194801000036103 Lisinopril (IPCA) 20 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 78128011000036103 lisinopril 20 mg tablet, 56 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1037051000168103 Voltaren Emulgel 1.16% gel, 20 g, tube 47676 1037041000168100 Voltaren Emulgel 1.16% gel, 20 g 1036991000168109 Voltaren Emulgel 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037031000168109 diclofenac diethylamine 1.16% gel, 20 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +760631000168105 Panadeine Extra uncoated tablet, 40, blister pack 101436 760621000168107 Panadeine Extra uncoated tablet, 40 52397011000036105 Panadeine Extra uncoated tablet 9851000168109 Panadeine Extra 9851000168109 Panadeine Extra 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1109201000168100 Cloap 75/100 uncoated tablet, 14, blister pack 219058 1109191000168103 Cloap 75/100 uncoated tablet, 14 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82545011000036105 clopidogrel 75 mg + aspirin 100 mg tablet, 14 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +959401000168105 Ciram 10 mg film-coated tablet, 7, bottle 158857 959301000168102 Ciram 10 mg film-coated tablet, 7 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1116261000168105 Epirubicin (AN) 100 mg/50 mL concentrated injection, 50 mL vial 146598 1116251000168108 Epirubicin (AN) 100 mg/50 mL concentrated injection, 50 mL vial 1116241000168106 Epirubicin (AN) 100 mg/50 mL concentrated injection, 50 mL vial 1116161000168104 Epirubicin (AN) 1116161000168104 Epirubicin (AN) 26804011000036109 epirubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22188011000036109 epirubicin hydrochloride 100 mg/50 mL injection, vial 21230011000036100 epirubicin +773461000168100 Claratyne Reditab 10 mg orally disintegrating tablet, 5, blister pack 217147 773451000168102 Claratyne Reditab 10 mg orally disintegrating tablet, 5 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773441000168104 loratadine 10 mg orally disintegrating tablet, 5 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +1042811000168106 Kalma 500 microgram uncoated tablet, 10, bottle 46837 1042801000168108 Kalma 500 microgram uncoated tablet, 10 4665011000036108 Kalma 500 microgram uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 1042791000168107 alprazolam 500 microgram tablet, 10 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +1018281000168105 Amisulpride (Apotex) 200 mg tablet, 100, blister pack 178905 1018271000168107 Amisulpride (Apotex) 200 mg tablet, 100 1018201000168102 Amisulpride (Apotex) 200 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 84641011000036106 amisulpride 200 mg tablet, 100 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +60511011000036108 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 96, blister pack 119158 56469011000036107 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 96 53931011000036109 Ibuprofen (Pharmacist) 200 mg film-coated tablet 53148011000036103 Ibuprofen (Pharmacist) 53148011000036103 Ibuprofen (Pharmacist) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60511011000036108 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 96, blister pack 151123 56469011000036107 Ibuprofen (Pharmacist) 200 mg film-coated tablet, 96 53931011000036109 Ibuprofen (Pharmacist) 200 mg film-coated tablet 53148011000036103 Ibuprofen (Pharmacist) 53148011000036103 Ibuprofen (Pharmacist) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +973611000168105 Pregabalin (Teva) 75 mg hard capsule, 56, blister pack 229587 973601000168107 Pregabalin (Teva) 75 mg hard capsule, 56 973481000168102 Pregabalin (Teva) 75 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +913391000168100 Cisatracurium (AJS) 20 mg/10 mL injection solution, 5 x 10 mL vials 181598 913381000168103 Cisatracurium (AJS) 20 mg/10 mL injection solution, 5 x 10 mL vials 913361000168107 Cisatracurium (AJS) 20 mg/10 mL injection solution, 10 mL vial 913251000168100 Cisatracurium (AJS) 913251000168100 Cisatracurium (AJS) 913371000168101 cisatracurium 20 mg/10 mL injection, 5 x 10 mL vials 748921000168108 cisatracurium 20 mg/10 mL injection, vial 44902011000036101 cisatracurium +714261000168105 Mirtazapine (Auro) 30 mg film-coated tablet, 30, blister pack 183377 714251000168108 Mirtazapine (Auro) 30 mg film-coated tablet, 30 714241000168106 Mirtazapine (Auro) 30 mg film-coated tablet 714231000168102 Mirtazapine (Auro) 714231000168102 Mirtazapine (Auro) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +925246011000036103 Sumatriptan (LAPL) 50 mg film-coated tablet, 4, blister pack 160184 924783011000036100 Sumatriptan (LAPL) 50 mg film-coated tablet, 4 924480011000036104 Sumatriptan (LAPL) 50 mg film-coated tablet 924381011000036100 Sumatriptan (LAPL) 924381011000036100 Sumatriptan (LAPL) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +945781000168109 Glimepiride (Sanofi) 1 mg uncoated tablet, 50, blister pack 142390 945771000168106 Glimepiride (Sanofi) 1 mg uncoated tablet, 50 945711000168103 Glimepiride (Sanofi) 1 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 945761000168100 glimepiride 1 mg tablet, 50 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +73314011000036105 Tamiflu 30 mg hard capsule, 10, blister pack 145953 73112011000036105 Tamiflu 30 mg hard capsule, 10 72950011000036109 Tamiflu 30 mg hard capsule 39602011000036100 Tamiflu 39602011000036100 Tamiflu 73510011000036103 oseltamivir 30 mg capsule, 10 73374011000036103 oseltamivir 30 mg capsule 44916011000036104 oseltamivir +904811000168102 Candesartan (CH) 8 mg uncoated tablet, 30, blister pack 195368 904801000168100 Candesartan (CH) 8 mg uncoated tablet, 30 904761000168108 Candesartan (CH) 8 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +111181000036105 Indosyl Mono 4 mg uncoated tablet, 30, blister pack 198357 109451000036107 Indosyl Mono 4 mg uncoated tablet, 30 107381000036103 Indosyl Mono 4 mg uncoated tablet 3111000168101 Indosyl Mono 3111000168101 Indosyl Mono 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +61646011000036109 Advil 200 mg soft capsule, 48, blister pack 97229 57568011000036108 Advil 200 mg soft capsule, 48 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63933011000036106 ibuprofen 200 mg capsule, 48 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +33525011000036108 Citalobell 20 mg film-coated tablet, 7, bottle 124715 33266011000036102 Citalobell 20 mg film-coated tablet, 7 33031011000036105 Citalobell 20 mg film-coated tablet 32991011000036103 Citalobell 32991011000036103 Citalobell 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +913471000168108 Solu-Medrol 1 g powder for injection, 1 vial 50698 913461000168102 Solu-Medrol 1 g powder for injection, 1 vial 4573011000036107 Solu-Medrol (methylprednisolone 1 g) powder for injection, vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 653981000168109 methylprednisolone 1 g injection, 1 vial 22145011000036109 methylprednisolone 1 g injection, vial 21605011000036100 methylprednisolone +799961000168104 Abyraz 20 mg uncoated tablet, 60, blister pack 159505 799951000168101 Abyraz 20 mg uncoated tablet, 60 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787751000168105 aripiprazole 20 mg tablet, 60 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +160431000036108 Asthakast 10 mg uncoated tablet, 28, blister pack 189242 159201000036104 Asthakast 10 mg uncoated tablet, 28 158311000036104 Asthakast 10 mg uncoated tablet 157791000036106 Asthakast 157791000036106 Asthakast 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +868721000168101 Simipex XR 375 microgram modified release tablet, 10, blister pack 225592 868711000168108 Simipex XR 375 microgram modified release tablet, 10 868701000168105 Simipex XR 375 microgram modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 87812011000036108 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 10 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +43994011000036105 Penthrox 999.9 mg/g inhalation solution, 5 x 3 mL, bottles 43144 41485011000036101 Penthrox 999.9 mg/g inhalation solution, 5 x 3 mL 40008011000036107 Penthrox 999.9 mg/g inhalation solution 39767011000036109 Penthrox 39767011000036109 Penthrox 46331011000036100 methoxyflurane 999.9 mg/g inhalation solution, 5 x 3 mL 45084011000036107 methoxyflurane 999.9 mg/g inhalation solution 44935011000036103 methoxyflurane +988641000168109 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 48, blister pack 277252 988631000168100 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 48 988581000168103 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +931577011000036109 Redichol 10 mg film-coated tablet, 30, bottle 163552 930738011000036100 Redichol 10 mg film-coated tablet, 30 930032011000036101 Redichol 10 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +43976011000036105 Sandimmun 100 mg/mL oral liquid solution, 50 mL, bottle 42686 41468011000036105 Sandimmun 100 mg/mL oral liquid solution, 50 mL 39994011000036108 Sandimmun 100 mg/mL oral liquid solution 3779011000036106 Sandimmun 3779011000036106 Sandimmun 27230011000036103 ciclosporin 100 mg/mL oral liquid, 50 mL 22590011000036102 ciclosporin 100 mg/mL oral liquid 21379011000036104 ciclosporin +1031491000168107 Aten 50 mg film-coated tablet, 100, bottle 197717 1031481000168109 Aten 50 mg film-coated tablet, 100 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 993681000168108 atenolol 50 mg tablet, 100 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +34793011000036104 Oxynorm 5 mg hard capsule, 60, bottle 74146 34368011000036105 Oxynorm 5 mg hard capsule, 60 6721011000036100 Oxynorm 5 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +905131000168102 Ceftriaxone (Kabi) 500 mg powder for injection, 10 vials 223323 905121000168100 Ceftriaxone (Kabi) 500 mg powder for injection, 10 vials 904661000168100 Ceftriaxone (Kabi) 500 mg powder for injection, 500 mg vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 58911000036109 ceftriaxone 500 mg injection, 10 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +20302011000036107 Ipravent 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 75645 13511011000036101 Ipravent 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 6793011000036109 Ipravent 500 microgram/mL inhalation solution, ampoule 2982011000036106 Ipravent 2982011000036106 Ipravent 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +980101000168103 Octanate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 98215 980091000168108 Octanate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 980021000168106 Octanate (inert substance) diluent, 10 mL vial 979921000168105 Octanate 979921000168105 Octanate 980081000168105 factor VIII 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +980101000168103 Octanate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 98215 980091000168108 Octanate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 980071000168107 Octanate (factor VIII 1000 units) powder for injection, 1000 units vial 979921000168105 Octanate 979921000168105 Octanate 980081000168105 factor VIII 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 980061000168101 factor VIII 1000 units injection, vial 979931000168108 factor VIII +111201000036109 Co-Senna film-coated tablet, 90, bottle 199163 109471000036102 Co-Senna film-coated tablet, 90 106701000036105 Co-Senna film-coated tablet 106341000036109 Co-Senna 106341000036109 Co-Senna 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +50590011000036101 Clarithromycin (Chemmart) 500 mg film-coated tablet, 3, blister pack 134860 49622011000036106 Clarithromycin (Chemmart) 500 mg film-coated tablet, 3 48790011000036107 Clarithromycin (Chemmart) 500 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 51515011000036104 clarithromycin 500 mg tablet, 3 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +19548011000036104 Diclocil 500 mg powder for injection, 5 vials 56803 12820011000036108 Diclocil 500 mg powder for injection, 5 vials 6111011000036100 Diclocil 500 mg powder for injection, 500 mg vial 4083011000036104 Diclocil 4083011000036104 Diclocil 27377011000036109 dicloxacillin 500 mg injection, 5 vials 22726011000036107 dicloxacillin 500 mg injection, vial 21398011000036101 dicloxacillin +829911000168105 Atomoxetine (Apo) 10 mg hard capsule, 7, blister pack 234800 829901000168107 Atomoxetine (Apo) 10 mg hard capsule, 7 829891000168108 Atomoxetine (Apo) 10 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +990511000168108 Lyrica 25 mg hard capsule, 60, bottle 99478 990501000168105 Lyrica 25 mg hard capsule, 60 83262011000036109 Lyrica 25 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +160391000036104 Montelukast (APL) 10 mg film-coated tablet, 28, blister pack 197208 159161000036108 Montelukast (APL) 10 mg film-coated tablet, 28 158211000036105 Montelukast (APL) 10 mg film-coated tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +921947011000036102 Soluvit N powder for injection, 10 vials 40145 921506011000036101 Soluvit N powder for injection, 10 vials 921045011000036104 Soluvit N powder for injection, vial 920927011000036106 Soluvit N 920927011000036106 Soluvit N 922628011000036100 thiamine nitrate 3.1 mg + riboflavin 3.6 mg + nicotinamide 40 mg + pyridoxine 4 mg + pantothenic acid (as sodium pantothenate) 15 mg + ascorbic acid 100 mg + biotin 60 microgram + folic acid 400 microgram + cyanocobalamin 5 microgram injection, 10 vials 922118011000036107 thiamine nitrate 3.1 mg + riboflavin 3.6 mg + nicotinamide 40 mg + pyridoxine 4 mg + pantothenic acid (as sodium pantothenate) 15 mg + ascorbic acid 100 mg + biotin 60 microgram + folic acid 400 microgram + cyanocobalamin 5 microgram injection, vial 922058011000036108 thiamine + riboflavin + nicotinamide + pyridoxine + sodium pantothenate + ascorbic acid + biotin + folic acid + cyanocobalamin +50384011000036109 Metabolic Mineral Mixture powder for oral liquid, 250 g, can 49271011000036103 Metabolic Mineral Mixture powder for oral liquid, 250 g 48545011000036109 Metabolic Mineral Mixture powder for oral liquid 41731000168104 Metabolic Mineral Mixture 41731000168104 Metabolic Mineral Mixture 51264011000036107 mineral mixture powder for oral liquid, 250 g 50797011000036101 mineral mixture powder for oral liquid 50785011000036107 mineral mixture +61046011000036104 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 24, blister pack 67365 56989011000036108 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 24 54148011000036100 Period Pain Relief (Pharmacist) 275 mg film-coated tablet 53313011000036106 Period Pain Relief (Pharmacist) 53313011000036106 Period Pain Relief (Pharmacist) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +868401000168101 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags 33532 868391000168103 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags 868291000168108 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 45581000168107 Dianeal PD-4 with Glucose 4.25% 45581000168107 Dianeal PD-4 with Glucose 4.25% 868381000168101 glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags 868281000168105 glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +50209011000036101 Elastoplast (2225) size C (15 cm to 25 cm) straight bandage, 1, wrapping 49328011000036101 Elastoplast (2225) size C (15 cm to 25 cm) straight bandage, 1 48516011000036107 Elastoplast (2225) size C (15 cm to 25 cm) straight bandage 22751000168102 Elastoplast (2225) 22751000168102 Elastoplast (2225) 51309011000036102 bandage tubular size C (15 cm to 25 cm) straight bandage, 1 50838011000036106 bandage tubular size C (15 cm to 25 cm) straight bandage 50697011000036107 bandage tubular +43595011000036100 Vesicare 10 mg film-coated tablet, 10, blister pack 117227 41192011000036109 Vesicare 10 mg film-coated tablet, 10 39921011000036102 Vesicare 10 mg film-coated tablet 39622011000036107 Vesicare 39622011000036107 Vesicare 46154011000036107 solifenacin succinate 10 mg tablet, 10 45011011000036107 solifenacin succinate 10 mg tablet 44891011000036101 solifenacin +1018561000168104 Aripiprazole (Actavis) 5 mg uncoated tablet, 100, bottle 217188 1018551000168101 Aripiprazole (Actavis) 5 mg uncoated tablet, 100 1018541000168103 Aripiprazole (Actavis) 5 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +44730011000036102 Ovidrel 250 microgram/0.5 mL injection solution, 0.5 mL syringe 96037 42175011000036108 Ovidrel 250 microgram/0.5 mL injection solution, 0.5 mL syringe 40376011000036103 Ovidrel 250 microgram/0.5 mL injection solution, 0.5 mL syringe 4186011000036103 Ovidrel 4186011000036103 Ovidrel 46936011000036103 choriogonadotropin alfa 250 microgram/0.5 mL injection, 0.5 mL syringe 45350011000036105 choriogonadotropin alfa 250 microgram/0.5 mL injection, syringe 21430011000036104 choriogonadotropin alfa +77289011000036105 Water for Irrigation (Baxter) irrigation solution, 4 x 3 L bags 19457 76705011000036100 Water for Irrigation (Baxter) irrigation solution, 4 x 3 L bags 76127011000036108 Water for Irrigation (Baxter) irrigation solution, 3 L bag 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78219011000036103 water for irrigation solution, 4 x 3 L bags 77549011000036109 water for irrigation solution, 3 L bag 77440011000036107 water for irrigation +931739011000036100 Silver Clove Medicated Balm ointment, 40 g, can 51560 930899011000036102 Silver Clove Medicated Balm ointment, 40 g 930103011000036106 Silver Clove Medicated Balm ointment 60261000168104 Silver Clove Medicated Balm 60261000168104 Silver Clove Medicated Balm 932479011000036108 cajuput oil 9.5% + camphor 24.5% + clove bud oil 5.5% + menthol 8.5% + peppermint oil 15% ointment, 40 g 931877011000036108 cajuput oil 9.5% + camphor 24.5% + clove bud oil 5.5% + menthol 8.5% + peppermint oil 15% ointment 931807011000036101 cajuput oil + camphor + clove bud oil + menthol + peppermint oil +731571000168108 Osteovan 5 mg/100 mL injection solution, 100 mL vial 134665 731561000168102 Osteovan 5 mg/100 mL injection solution, 100 mL vial 731551000168104 Osteovan 5 mg/100 mL injection solution, 100 mL vial 731541000168101 Osteovan 731541000168101 Osteovan 51495011000036109 zoledronic acid 5 mg/100 mL injection, 100 mL vial 50987011000036105 zoledronic acid 5 mg/100 mL injection, vial 21790011000036102 zoledronic acid +1007731000168102 Novacodone 80 mg modified release tablet, 20, blister pack 227946 1007721000168100 Novacodone 80 mg modified release tablet, 20 1007711000168107 Novacodone 80 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +1048421000168104 Coparadeine Forte 500/30 tablet, 4, blister pack 220978 1048411000168106 Coparadeine Forte 500/30 tablet, 4 1048381000168108 Coparadeine Forte 500/30 tablet 1048371000168105 Coparadeine Forte 500/30 1048371000168105 Coparadeine Forte 500/30 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +933239091000036106 Fentanyl (Sandoz) 25 microgram/hour patch, 1, sachet 152569 933235711000036101 Fentanyl (Sandoz) 25 microgram/hour patch, 1 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235721000036108 fentanyl 25 microgram/hour patch, 1 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +933214701000036107 Alendrocor 10 mg uncoated tablet, 30, blister pack 161448 933204051000036109 Alendrocor 10 mg uncoated tablet, 30 933196091000036107 Alendrocor 10 mg uncoated tablet 933193701000036108 Alendrocor 933193701000036108 Alendrocor 46700011000036104 alendronate 10 mg tablet, 30 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +146001000036100 IBS Support (Ethical Nutrients) 20 billion organisms hard capsule, 90, bottle 133842 144741000036109 IBS Support (Ethical Nutrients) 20 billion organisms hard capsule, 90 143451000036103 IBS Support (Ethical Nutrients) 20 billion organisms hard capsule 143401000036104 IBS Support (Ethical Nutrients) 143401000036104 IBS Support (Ethical Nutrients) 144751000036107 lactobacillus plantarum 20 billion organisms capsule, 90 143461000036100 lactobacillus plantarum 20 billion organisms capsule 146541000036105 lactobacillus plantarum +755011000168107 Cabergoline (Apo) 500 microgram tablet, 8, bottle 218126 755001000168109 Cabergoline (Apo) 500 microgram tablet, 8 754971000168104 Cabergoline (Apo) 500 microgram tablet 754961000168105 Cabergoline (Apo) 754961000168105 Cabergoline (Apo) 27272011000036101 cabergoline 500 microgram tablet, 8 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +21081011000036107 Certican 500 microgram uncoated tablet, 60, blister pack 97506 14224011000036103 Certican 500 microgram uncoated tablet, 60 7510011000036100 Certican 500 microgram uncoated tablet 4369011000036100 Certican 4369011000036100 Certican 28226011000036106 everolimus 500 microgram tablet, 60 23540011000036103 everolimus 500 microgram tablet 21615011000036103 everolimus +842821000168100 Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60, bottle 24585 842811000168107 Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60 842791000168108 Vitamin E (Cenovis) 250 mg (250 units) soft capsule 920948011000036109 Vitamin E (Cenovis) 920948011000036109 Vitamin E (Cenovis) 842801000168109 dl-alpha-tocopheryl acetate 250 mg (250 units) capsule, 60 842781000168105 dl-alpha-tocopheryl acetate 250 mg (250 units) capsule 77461011000036109 dl-alpha-tocopherol +18961011000036107 Colgout 500 microgram uncoated tablet, 100, bottle 27909 12269011000036102 Colgout 500 microgram uncoated tablet, 100 4720011000036104 Colgout 500 microgram uncoated tablet 3313011000036104 Colgout 3313011000036104 Colgout 28223011000036100 colchicine 500 microgram tablet, 100 23537011000036101 colchicine 500 microgram tablet 21400011000036106 colchicine +32925011000036108 Cephazolin (DBL) 500 mg powder for injection, 5 vials 56371 32915011000036102 Cephazolin (DBL) 500 mg powder for injection, 5 vials 32906011000036106 Cephazolin (DBL) 500 mg powder for injection, 500 mg vial 4065011000036101 Cephazolin (DBL) 4065011000036101 Cephazolin (DBL) 32937011000036100 cefazolin 500 mg injection, 5 vials 32930011000036101 cefazolin 500 mg injection, vial 21621011000036107 cefazolin +933213331000036104 Lisinopril (IPCA) 5 mg uncoated tablet, 56, blister pack 152716 933201661000036100 Lisinopril (IPCA) 5 mg uncoated tablet, 56 933194781000036104 Lisinopril (IPCA) 5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 83481011000036104 lisinopril 5 mg tablet, 56 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +933215501000036102 Olanzapine (Lilly) 2.5 mg film-coated tablet, 7, blister pack 167678 933204971000036103 Olanzapine (Lilly) 2.5 mg film-coated tablet, 7 933196121000036108 Olanzapine (Lilly) 2.5 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 933204981000036101 olanzapine 2.5 mg tablet, 7 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +20631011000036104 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) film-coated tablet, 10, blister pack 81163 13811011000036102 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) film-coated tablet, 10 7097011000036103 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) film-coated tablet 49741000168109 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) 49741000168109 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20631011000036104 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) film-coated tablet, 10, blister pack 163698 13811011000036102 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) film-coated tablet, 10 7097011000036103 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) film-coated tablet 49741000168109 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) 49741000168109 Amoxycillin and Clavulanic Acid 875/125 (Chemmart) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +889961000168103 Gastrolyte Ready to Drink Strawberry oral liquid solution, 1 L, bottle 198537 889951000168100 Gastrolyte Ready to Drink Strawberry oral liquid solution, 1 L 889941000168102 Gastrolyte Ready to Drink Strawberry oral liquid solution 889821000168100 Gastrolyte Ready to Drink 889821000168100 Gastrolyte Ready to Drink 889851000168108 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid, 1 L 889831000168102 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +931448011000036103 Fexofenadine Hydrochloride (Pharmacor) 120 mg film-coated tablet, 10, blister pack 144693 930627011000036109 Fexofenadine Hydrochloride (Pharmacor) 120 mg film-coated tablet, 10 929979011000036101 Fexofenadine Hydrochloride (Pharmacor) 120 mg film-coated tablet 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +32557011000036107 Meloxicam (Ranbaxy) 15 mg uncoated tablet, 30, blister pack 127418 32349011000036100 Meloxicam (Ranbaxy) 15 mg uncoated tablet, 30 32226011000036100 Meloxicam (Ranbaxy) 15 mg uncoated tablet 32178011000036103 Meloxicam (Ranbaxy) 32178011000036103 Meloxicam (Ranbaxy) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +18742011000036103 Kaletra 200/50 film-coated tablet, 120, blister pack 121058 11661011000036102 Kaletra 200/50 film-coated tablet, 120 4832011000036104 Kaletra 200/50 film-coated tablet 40271000168102 Kaletra 200/50 40271000168102 Kaletra 200/50 26729011000036104 lopinavir 200 mg + ritonavir 50 mg tablet, 120 22124011000036107 lopinavir 200 mg + ritonavir 50 mg tablet 21345011000036102 lopinavir + ritonavir +967121000168106 Diavance 500/5 film-coated tablet, 120, blister pack 120265 967111000168104 Diavance 500/5 film-coated tablet, 120 966981000168105 Diavance 500/5 film-coated tablet 966971000168107 Diavance 500/5 966971000168107 Diavance 500/5 967101000168102 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet, 120 23509011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet 21813011000036107 metformin + glibenclamide +795711000168103 Mekinist 1 mg film-coated tablet, 30, bottle 205918 795701000168101 Mekinist 1 mg film-coated tablet, 30 795651000168106 Mekinist 1 mg film-coated tablet 674811000168109 Mekinist 674811000168109 Mekinist 795691000168101 trametinib 1 mg tablet, 30 795641000168109 trametinib 1 mg tablet 674821000168102 trametinib +847111000168100 Zepatier film-coated tablet, 28, blister pack 259928 847101000168103 Zepatier film-coated tablet, 28 847081000168105 Zepatier film-coated tablet 847051000168103 Zepatier 847051000168103 Zepatier 847091000168108 elbasvir 50 mg + grazoprevir 100 mg tablet, 28 847071000168107 elbasvir 50 mg + grazoprevir 100 mg tablet 847061000168101 elbasvir + grazoprevir +1099901000168102 Ibuprofen (Apohealth) 200 mg soft capsule, 100, blister pack 279997 1099891000168101 Ibuprofen (Apohealth) 200 mg soft capsule, 100 1099771000168105 Ibuprofen (Apohealth) 200 mg soft capsule 1099761000168104 Ibuprofen (Apohealth) 1099761000168104 Ibuprofen (Apohealth) 63927011000036100 ibuprofen 200 mg capsule, 100 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +1024911000168105 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 56, blister pack 193300 1024901000168107 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 56 1024851000168103 Pregabalin (Blooms The Chemist) 75 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +990651000168105 Momasone 0.1% ointment, 50 g, tube 266268 990641000168108 Momasone 0.1% ointment, 50 g 990611000168109 Momasone 0.1% ointment 671481000168102 Momasone 671481000168102 Momasone 933237261000036103 mometasone furoate 0.1% ointment, 50 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +1031341000168106 Atomoxetine (GXP) 10 mg hard capsule, 14, blister pack 234816 1031331000168102 Atomoxetine (GXP) 10 mg hard capsule, 14 1031301000168109 Atomoxetine (GXP) 10 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 829921000168103 atomoxetine 10 mg capsule, 14 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1082741000168107 Solian 50 mg uncoated tablet, 2, blister pack 96421 1082731000168103 Solian 50 mg uncoated tablet, 2 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 860401000168103 amisulpride 50 mg tablet, 2 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +21115011000036104 Vytorin 10/40 uncoated tablet, 30, blister pack 98115 14258011000036109 Vytorin 10/40 uncoated tablet, 30 7544011000036104 Vytorin 10/40 uncoated tablet 44141000168106 Vytorin 10/40 44141000168106 Vytorin 10/40 28253011000036104 ezetimibe 10 mg + simvastatin 40 mg tablet, 30 23567011000036109 ezetimibe 10 mg + simvastatin 40 mg tablet 21565011000036108 ezetimibe + simvastatin +1121311000168101 Quetiapine XR (Medis) 300 mg modified release tablet, 60, blister pack 226812 1121301000168104 Quetiapine XR (Medis) 300 mg modified release tablet, 60 1121251000168105 Quetiapine XR (Medis) 300 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +997091000168105 Olanzapine ODT (Apotex) 15 mg orally disintegrating tablet, 28, blister pack 158966 997081000168107 Olanzapine ODT (Apotex) 15 mg orally disintegrating tablet, 28 997071000168109 Olanzapine ODT (Apotex) 15 mg orally disintegrating tablet 997061000168103 Olanzapine ODT (Apotex) 997061000168103 Olanzapine ODT (Apotex) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +17993011000036101 Lipex 10 mg film-coated tablet, 30, blister pack 11616 11505011000036108 Lipex 10 mg film-coated tablet, 30 5880011000036102 Lipex 10 mg film-coated tablet 3298011000036103 Lipex 3298011000036103 Lipex 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +19612011000036104 Cilopen VK 250 mg hard capsule, 50, blister pack 58627 12881011000036105 Cilopen VK 250 mg hard capsule, 50 6172011000036100 Cilopen VK 250 mg hard capsule 36991000168106 Cilopen VK 36991000168106 Cilopen VK 27620011000036103 phenoxymethylpenicillin 250 mg capsule, 50 22958011000036104 phenoxymethylpenicillin 250 mg capsule 21370011000036105 phenoxymethylpenicillin +933213171000036100 Pravastatin Sodium (HX) 80 mg tablet, 30, blister pack 152462 933201591000036106 Pravastatin Sodium (HX) 80 mg tablet, 30 933194741000036108 Pravastatin Sodium (HX) 80 mg tablet 933193361000036108 Pravastatin Sodium (HX) 933193361000036108 Pravastatin Sodium (HX) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +152351000036103 Deotine 30 mg enteric capsule, 28, blister pack 199264 150581000036102 Deotine 30 mg enteric capsule, 28 148211000036107 Deotine 30 mg enteric capsule 148041000036103 Deotine 148041000036103 Deotine 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +20644011000036100 Risperdal Consta (1 x 50 mg vial, 1 x 2 mL diluent syringe), 1 pack, composite pack 81491 13824011000036107 Risperdal Consta (1 x 50 mg vial, 1 x 2 mL diluent syringe), 1 pack 637531000168107 Risperdal Consta (inert substance) diluent, 2 mL syringe 37741000168104 Risperdal Consta 37741000168104 Risperdal Consta 27951011000036105 risperidone 50 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +20644011000036100 Risperdal Consta (1 x 50 mg vial, 1 x 2 mL diluent syringe), 1 pack, composite pack 81491 13824011000036107 Risperdal Consta (1 x 50 mg vial, 1 x 2 mL diluent syringe), 1 pack 7110011000036108 Risperdal Consta (risperidone 50 mg) modified release injection, 50 mg vial 37741000168104 Risperdal Consta 37741000168104 Risperdal Consta 27951011000036105 risperidone 50 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 23275011000036101 risperidone 50 mg modified release injection, vial 21338011000036109 risperidone +69390011000036103 Vitalipid N Infant concentrated injection, 10 x 10 mL ampoules 40253 67190011000036104 Vitalipid N Infant concentrated injection, 10 x 10 mL ampoules 65383011000036103 Vitalipid N Infant concentrated injection, 10 mL ampoule 42191000168108 Vitalipid N Infant 42191000168108 Vitalipid N Infant 71749011000036106 retinol palmitate 690 microgram (2300 units)/10 mL + ergocalciferol 10 microgram (400 units)/10 mL + dl-alpha-tocopherol 6.4 mg (7 units)/10 mL + phytomenadione 200 microgram/10 mL injection, 10 x 10 mL ampoules 70168011000036108 retinol palmitate 690 microgram (2300 units)/10 mL + ergocalciferol 10 microgram (400 units)/10 mL + dl-alpha-tocopherol 6.4 mg (7 units)/10 mL + phytomenadione 200 microgram/10 mL injection, ampoule 69807011000036101 retinol palmitate + ergocalciferol + dl-alpha-tocopherol + phytomenadione +50320011000036109 Handy Gloves (4207) small glove, 100, carton 49421011000036103 Handy Gloves (4207) small glove, 100 48565011000036101 Handy Gloves (4207) small glove 42101000168102 Handy Gloves (4207) 42101000168102 Handy Gloves (4207) 51389011000036103 gloves plastic disposable small glove, 100 50910011000036106 gloves plastic disposable small glove 50759011000036101 gloves plastic disposable +870731000168109 Calcipotriol/Betamethasone 50/500 (Sandoz) ointment, 30 g, tube 255532 870721000168106 Calcipotriol/Betamethasone 50/500 (Sandoz) ointment, 30 g 870711000168104 Calcipotriol/Betamethasone 50/500 (Sandoz) ointment 870691000168102 Calcipotriol/Betamethasone 50/500 (Sandoz) 870691000168102 Calcipotriol/Betamethasone 50/500 (Sandoz) 47002011000036103 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment, 30 g 45370011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment 44974011000036100 calcipotriol + betamethasone dipropionate +73301011000036105 Jurnista 32 mg modified release tablet, 60, blister pack 141534 73099011000036108 Jurnista 32 mg modified release tablet, 60 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73497011000036107 hydromorphone hydrochloride 32 mg modified release tablet, 60 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +83406011000036108 Ebixa 20 mg film-coated tablet, 28, blister pack 156299 83325011000036104 Ebixa 20 mg film-coated tablet, 28 83254011000036108 Ebixa 20 mg film-coated tablet 19751000168102 Ebixa 19751000168102 Ebixa 83496011000036105 memantine hydrochloride 20 mg tablet, 28 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +834321000168103 Aspalgin dispersible tablet, 40, blister pack 13431 834311000168105 Aspalgin dispersible tablet, 40 834231000168107 Aspalgin dispersible tablet 4318011000036107 Aspalgin 4318011000036107 Aspalgin 834301000168107 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 40 834221000168109 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet 21831011000036102 aspirin + codeine +928895011000036103 Valnir 500 mg film-coated tablet, 100, blister pack 147607 928257011000036109 Valnir 500 mg film-coated tablet, 100 927909011000036101 Valnir 500 mg film-coated tablet 927774011000036103 Valnir 927774011000036103 Valnir 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +808621000168107 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 100, blister pack 184819 808231000168108 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 100 808171000168100 Perindopril Arginine (Apo) 2.5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 806601000168102 perindopril arginine 2.5 mg tablet, 100 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +37581011000036106 Dopamine Hydrochloride Sterile (DBL) 200 mg/5 mL concentrated injection, 5 x 5 mL ampoules 16378 36848011000036106 Dopamine Hydrochloride Sterile (DBL) 200 mg/5 mL concentrated injection, 5 x 5 mL ampoules 36182011000036106 Dopamine Hydrochloride Sterile (DBL) 200 mg/5 mL concentrated injection, 5 mL ampoule 57591000168101 Dopamine Hydrochloride Sterile (DBL) 57591000168101 Dopamine Hydrochloride Sterile (DBL) 38736011000036101 dopamine hydrochloride 200 mg/5 mL injection, 5 x 5 mL ampoules 37964011000036104 dopamine hydrochloride 200 mg/5 mL injection, ampoule 37798011000036102 dopamine +1031251000168103 Aten 50 mg film-coated tablet, 112, blister pack 197716 1031241000168100 Aten 50 mg film-coated tablet, 112 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031231000168109 atenolol 50 mg tablet, 112 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +44148011000036106 Clarinase Repetab modified release tablet, 18, blister pack 53516 41624011000036108 Clarinase Repetab modified release tablet, 18 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46443011000036108 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 18 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +61479011000036102 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 12, blister pack 91993 57404011000036109 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 12 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61479011000036102 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 12, blister pack 82364 57404011000036109 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 12 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61607011000036104 Strepfen Intensive orange sugar free 8.75 mg lozenge, 6, blister pack 157020 57529011000036109 Strepfen Intensive orange sugar free 8.75 mg lozenge, 6 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63911011000036101 flurbiprofen 8.75 mg lozenge, 6 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +61607011000036104 Strepfen Intensive orange sugar free 8.75 mg lozenge, 6, blister pack 96063 57529011000036109 Strepfen Intensive orange sugar free 8.75 mg lozenge, 6 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63911011000036101 flurbiprofen 8.75 mg lozenge, 6 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +947911000168106 Citlam-S 5 mg film-coated tablet, 28, blister pack 191899 947901000168108 Citlam-S 5 mg film-coated tablet, 28 947711000168108 Citlam-S 5 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +60995011000036102 Telfast 180 mg film-coated tablet, 30, blister pack 63338 56938011000036107 Telfast 180 mg film-coated tablet, 30 54129011000036105 Telfast 180 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1005681000168103 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags 162857 1005671000168101 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags 1005661000168107 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 200 mL bag 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1004651000168106 ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags 1004631000168100 ropivacaine hydrochloride 400 mg/200 mL injection, bag 44857011000036102 ropivacaine +1089211000168107 Lorstat 80 mg film-coated tablet, 30, bottle 181408 22401000036103 Lorstat 80 mg film-coated tablet, 30 20761000036108 Lorstat 80 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1033591000168105 Strong Pain Relief Extra (Amcal) uncoated tablet, 10, blister pack 208319 1033581000168107 Strong Pain Relief Extra (Amcal) uncoated tablet, 10 1033571000168109 Strong Pain Relief Extra (Amcal) uncoated tablet 1033541000168102 Strong Pain Relief Extra (Amcal) 1033541000168102 Strong Pain Relief Extra (Amcal) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +18760011000036107 Glycerol for Children (Petrus) 1.4 g moulded suppository, 12, strip pack 12788 11850011000036106 Glycerol for Children (Petrus) 1.4 g moulded suppository, 12 4874011000036105 Glycerol for Children (Petrus) 1.4 g moulded suppository 51631000168109 Glycerol for Children (Petrus) 51631000168109 Glycerol for Children (Petrus) 26791011000036106 glycerol 1.4 g suppository, 12 22177011000036100 glycerol 1.4 g suppository 21770011000036109 glycerol +885621000168102 Bivalirudin (Juno) 250 mg powder for injection, 10 vials 226748 885611000168109 Bivalirudin (Juno) 250 mg powder for injection, 10 vials 885581000168102 Bivalirudin (Juno) 250 mg powder for injection, 250 mg vial 885571000168100 Bivalirudin (Juno) 885571000168100 Bivalirudin (Juno) 851291000168105 bivalirudin 250 mg injection, 10 vials 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +1055011000168109 Palexia SR 250 mg modified release tablet, 100, blister pack 165357 1055001000168106 Palexia SR 250 mg modified release tablet, 100 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054991000168100 tapentadol 250 mg modified release tablet, 100 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +933215341000036105 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 30, bottle 163527 933204281000036105 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 30 933195461000036100 Pravastatin Sodium (DRLA) 20 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +19342011000036100 Ear Clear for Ear Wax Removal 6.5% ear drops solution, 12 mL, bottle 50897 12630011000036104 Ear Clear for Ear Wax Removal 6.5% ear drops solution, 12 mL 5583011000036106 Ear Clear for Ear Wax Removal 6.5% ear drops solution 3581011000036100 Ear Clear for Ear Wax Removal 3581011000036100 Ear Clear for Ear Wax Removal 27244011000036109 carbamide peroxide 6.5% ear drops, 12 mL 22603011000036102 carbamide peroxide 6.5% ear drops 21582011000036103 carbamide peroxide +933230411000036100 Escitalopram (DRLA) 10 mg film-coated tablet, 30, bottle 165131 933224321000036108 Escitalopram (DRLA) 10 mg film-coated tablet, 30 933220141000036106 Escitalopram (DRLA) 10 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1089051000168100 Lorstat 40 mg film-coated tablet, 30, bottle 181409 22391000036101 Lorstat 40 mg film-coated tablet, 30 20781000036103 Lorstat 40 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +697291000168104 Vascalace 2.5 mg capsule, 30, bottle 203702 697281000168102 Vascalace 2.5 mg capsule, 30 697271000168100 Vascalace 2.5 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +825661000168104 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe 127245 825651000168101 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe 825631000168107 H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe 27541000168105 H-B-Vax II 27541000168105 H-B-Vax II 825641000168103 hepatitis B adult vaccine 10 microgram/mL injection, 1 mL syringe 825621000168109 hepatitis B adult vaccine 10 microgram/mL injection, syringe 825191000168101 hepatitis B vaccine +879311000168107 Solifenacin (Blooms The Chemist) 10 mg film-coated tablet, 30, blister pack 218398 879301000168109 Solifenacin (Blooms The Chemist) 10 mg film-coated tablet, 30 879291000168108 Solifenacin (Blooms The Chemist) 10 mg film-coated tablet 879251000168103 Solifenacin (Blooms The Chemist) 879251000168103 Solifenacin (Blooms The Chemist) 46155011000036106 solifenacin succinate 10 mg tablet, 30 45011011000036107 solifenacin succinate 10 mg tablet 44891011000036101 solifenacin +156691000036101 Fosinopril Sodium (Apo) 10 mg uncoated tablet, 30, bottle 119875 155711000036105 Fosinopril Sodium (Apo) 10 mg uncoated tablet, 30 154751000036105 Fosinopril Sodium (Apo) 10 mg uncoated tablet 154501000036100 Fosinopril Sodium (Apo) 154501000036100 Fosinopril Sodium (Apo) 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +973451000168109 Pregabalin (GH) 150 mg hard capsule, 20, blister pack 215680 973441000168107 Pregabalin (GH) 150 mg hard capsule, 20 973411000168108 Pregabalin (GH) 150 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1121241000168108 Quetiapine XR (Medis) 400 mg modified release tablet, 10, blister pack 226810 1121231000168104 Quetiapine XR (Medis) 400 mg modified release tablet, 10 1121161000168101 Quetiapine XR (Medis) 400 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51538011000036101 quetiapine 400 mg modified release tablet, 10 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +68739011000036103 Sodium Bicarbonate (Phebra) 8.4% (840 mg/10 mL) injection solution, 10 x 10 mL vials 131067 66741011000036109 Sodium Bicarbonate (Phebra) 8.4% (840 mg/10 mL) injection solution, 10 x 10 mL vials 65338011000036101 Sodium Bicarbonate (Phebra) 8.4% (840 mg/10 mL) injection solution, 10 mL vial 65122011000036108 Sodium Bicarbonate (Phebra) 65122011000036108 Sodium Bicarbonate (Phebra) 71407011000036103 sodium bicarbonate 8.4% (840 mg/10 mL) injection, 10 x 10 mL vials 69998011000036107 sodium bicarbonate 8.4% (840 mg/10 mL) injection, vial 21761011000036107 bicarbonate +69729011000036102 Aerius 5 mg film-coated tablet, 7, blister pack 91116 67528011000036102 Aerius 5 mg film-coated tablet, 7 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72030011000036101 desloratadine 5 mg tablet, 7 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +13381000036100 Tasigna 150 mg hard capsule, 40, blister pack 171498 8591000036103 Tasigna 150 mg hard capsule, 40 2381000036105 Tasigna 150 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 8601000036105 nilotinib 150 mg capsule, 40 2391000036107 nilotinib 150 mg capsule 39428011000036108 nilotinib +800121000168103 Abyraz 30 mg uncoated tablet, 10, blister pack 159504 800111000168105 Abyraz 30 mg uncoated tablet, 10 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800101000168107 aripiprazole 30 mg tablet, 10 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +79709011000036106 Omeprazole (GA) 20 mg enteric tablet, 30, blister pack 159686 11732011000036106 Omeprazole (GA) 20 mg enteric tablet, 30 4956011000036105 Omeprazole (GA) 20 mg enteric tablet 3601011000036107 Omeprazole (GA) 3601011000036107 Omeprazole (GA) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +69223011000036106 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 100 mL bottle 19460 67023011000036109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 100 mL bottle 65543011000036109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 100 mL bottle 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 71593011000036101 chlorhexidine acetate 0.05% (50 mg/100 mL) + cetrimide 0.5% (500 mg/100 mL) solution, 100 mL bottle 70082011000036103 chlorhexidine acetate 0.05% (50 mg/100 mL) + cetrimide 0.5% (500 mg/100 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +705901000168100 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, jar 705891000168104 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 705881000168102 glycerol 10% + cetomacrogol aqueous cream, 500 mL 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +43989011000036107 Nimotop 30 mg film-coated tablet, 100, blister pack 43100 41482011000036109 Nimotop 30 mg film-coated tablet, 100 40007011000036106 Nimotop 30 mg film-coated tablet 39664011000036105 Nimotop 39664011000036105 Nimotop 46328011000036106 nimodipine 30 mg tablet, 100 45083011000036105 nimodipine 30 mg tablet 44927011000036105 nimodipine +931431011000036106 Diarrhoea Relief (Chemmart) 2 mg uncoated tablet, 10, blister pack 132050 930591011000036100 Diarrhoea Relief (Chemmart) 2 mg uncoated tablet, 10 929959011000036104 Diarrhoea Relief (Chemmart) 2 mg uncoated tablet 929910011000036104 Diarrhoea Relief (Chemmart) 929910011000036104 Diarrhoea Relief (Chemmart) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +920703011000036102 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 7, blister pack 119091 920365011000036104 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 7 920131011000036104 Zolpidem Tartrate (GA) 10 mg film-coated tablet 920116011000036103 Zolpidem Tartrate (GA) 920116011000036103 Zolpidem Tartrate (GA) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +697611000168106 Hydrosorb (900854) 10 cm x 10 cm dressing, 5, carton 697601000168108 Hydrosorb (900854) 10 cm x 10 cm dressing, 5 697591000168101 Hydrosorb (900854) 10 cm x 10 cm dressing 697581000168104 Hydrosorb (900854) 697581000168104 Hydrosorb (900854) 51348011000036100 dressing hydrogel sheet 10 cm x 10 cm dressing, 5 50872011000036106 dressing hydrogel sheet 10 cm x 10 cm dressing 50742011000036109 dressing hydrogel sheet +933214861000036101 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 90, bottle 163565 933204461000036101 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 90 933195531000036107 Pravastatin Sodium (RZ) 20 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932407011000036108 pravastatin sodium 20 mg tablet, 90 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +984121000168100 Butafen 200 mg sugar coated tablet, 10, blister pack 126093 984111000168107 Butafen 200 mg sugar coated tablet, 10 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +997181000168108 Pramipexole (Apotex) 250 microgram uncoated tablet, 100, blister pack 168558 997171000168105 Pramipexole (Apotex) 250 microgram uncoated tablet, 100 997161000168104 Pramipexole (Apotex) 250 microgram uncoated tablet 997101000168100 Pramipexole (Apotex) 997101000168100 Pramipexole (Apotex) 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +932991000168103 Ostelin Osteoguard film-coated tablet, 90, blister pack 199117 932981000168101 Ostelin Osteoguard film-coated tablet, 90 932961000168105 Ostelin Osteoguard film-coated tablet 93291000036108 Ostelin Osteoguard 93291000036108 Ostelin Osteoguard 932971000168104 colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet, 90 932951000168108 colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet 932941000168106 colecalciferol + calcium + magnesium + manganese + phytomenadione + boron +73348011000036106 Vaporiser Fluid (Gold Cross) inhalation solution, 100 mL, bottle 27386 73142011000036103 Vaporiser Fluid (Gold Cross) inhalation solution, 100 mL 72948011000036109 Vaporiser Fluid (Gold Cross) inhalation solution 36841000168107 Vaporiser Fluid (Gold Cross) 36841000168107 Vaporiser Fluid (Gold Cross) 73522011000036109 methyl salicylate 25% + camphor 10% + menthol 3% + eucalyptus oil 10% inhalation solution, 100 mL 73383011000036105 methyl salicylate 25% + camphor 10% + menthol 3% + eucalyptus oil 10% inhalation solution 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +1036001000168104 Aranesp with Automatic Needle Guard 300 microgram/0.6 mL injection solution, 4 x 0.6 mL syringes 166093 1035991000168100 Aranesp with Automatic Needle Guard 300 microgram/0.6 mL injection solution, 4 x 0.6 mL syringes 1035961000168107 Aranesp with Automatic Needle Guard 300 microgram/0.6 mL injection solution, 0.6 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 984021000168101 darbepoetin alfa 300 microgram/0.6 mL injection, 4 x 0.6 mL syringes 983971000168103 darbepoetin alfa 300 microgram/0.6 mL injection, syringe 21234011000036105 darbepoetin alfa +958921000168101 Aropax CR 12.5 mg modified release tablet, 30, blister pack 101596 958911000168108 Aropax CR 12.5 mg modified release tablet, 30 958861000168104 Aropax CR 12.5 mg modified release tablet 957531000168105 Aropax CR 957531000168105 Aropax CR 958901000168105 paroxetine 12.5 mg modified release tablet, 30 958851000168101 paroxetine 12.5 mg modified release tablet 21618011000036109 paroxetine +808501000168104 Pramipexole XR (GP) 2.25 mg modified release tablet, 10, blister pack 225588 808491000168106 Pramipexole XR (GP) 2.25 mg modified release tablet, 10 808481000168108 Pramipexole XR (GP) 2.25 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 756041000168101 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet, 10 933220621000036106 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet 37716011000036100 pramipexole +863871000168103 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 144671 863861000168109 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 863841000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863851000168107 glucose monohydrate 5% (5 g/100 mL) injection, 100 mL bag 863831000168101 glucose monohydrate 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +77201000036100 Rabzole 10 mg enteric tablet, 28, blister pack 194561 76861000036102 Rabzole 10 mg enteric tablet, 28 76761000036107 Rabzole 10 mg enteric tablet 76651000036104 Rabzole 76651000036104 Rabzole 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +86079011000036109 Kevtam 250 mg film-coated tablet, 60, blister pack 278843 85672011000036107 Kevtam 250 mg film-coated tablet, 60 85324011000036108 Kevtam 250 mg film-coated tablet 85282011000036100 Kevtam 85282011000036100 Kevtam 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +86079011000036109 Kevtam 250 mg film-coated tablet, 60, blister pack 152772 85672011000036107 Kevtam 250 mg film-coated tablet, 60 85324011000036108 Kevtam 250 mg film-coated tablet 85282011000036100 Kevtam 85282011000036100 Kevtam 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +946061000168106 Invast 20 mg film-coated tablet, 100, bottle 100261 946051000168109 Invast 20 mg film-coated tablet, 100 945981000168106 Invast 20 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 46246011000036103 simvastatin 20 mg tablet, 100 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1030941000168103 Aten 50 mg film-coated tablet, 14, blister pack 197716 1030931000168107 Aten 50 mg film-coated tablet, 14 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1030921000168109 atenolol 50 mg tablet, 14 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +80986011000036105 Prickly Heat (Church and Dwight) dusting powder, 150 g, puffer pack 10136 80473011000036107 Prickly Heat (Church and Dwight) dusting powder, 150 g 80151011000036107 Prickly Heat (Church and Dwight) dusting powder 80112011000036105 Prickly Heat (Church and Dwight) 80112011000036105 Prickly Heat (Church and Dwight) 81577011000036102 zinc oxide 25% + maize starch 72.4% dusting powder, 150 g 81252011000036106 zinc oxide 25% + maize starch 72.4% dusting powder 81210011000036101 zinc oxide + maize starch +43912011000036100 Trandolapril (DP) 1 mg hard capsule, 28, blister pack 135967 41404011000036104 Trandolapril (DP) 1 mg hard capsule, 28 39841011000036107 Trandolapril (DP) 1 mg hard capsule 39661011000036107 Trandolapril (DP) 39661011000036107 Trandolapril (DP) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +887711000168107 Praluent 75 mg/mL injection solution, 6 x 1 mL syringes 238304 887701000168109 Praluent 75 mg/mL injection solution, 6 x 1 mL syringes 887621000168107 Praluent 75 mg/mL injection solution, syringe 886871000168105 Praluent 886871000168105 Praluent 887691000168109 alirocumab 75 mg/mL injection, 6 x 1 mL syringes 887611000168100 alirocumab 75 mg/mL injection, syringe 886881000168108 alirocumab +889871000168104 Gastrolyte Ready to Drink Orange oral liquid solution, 1 L, bottle 198536 889861000168105 Gastrolyte Ready to Drink Orange oral liquid solution, 1 L 889841000168106 Gastrolyte Ready to Drink Orange oral liquid solution 889821000168100 Gastrolyte Ready to Drink 889821000168100 Gastrolyte Ready to Drink 889851000168108 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid, 1 L 889831000168102 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +1054771000168103 Palexia SR 250 mg modified release tablet, 14, blister pack 165357 1054761000168109 Palexia SR 250 mg modified release tablet, 14 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054751000168107 tapentadol 250 mg modified release tablet, 14 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +716911000168108 Pemzo 20 mg enteric capsule, 500, blister pack 149517 716891000168106 Pemzo 20 mg enteric capsule, 500 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716681000168109 omeprazole 20 mg enteric capsule, 500 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +948231000168108 Ranitidine (GA) 150 mg film-coated tablet, 60, bottle 148519 930633011000036103 Ranitidine (GA) 150 mg film-coated tablet, 60 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +35645011000036105 Poly Visc 1 g/g eye ointment, 2 x 3.5 g tubes 35561011000036109 Poly Visc 1 g/g eye ointment, 2 x 3.5 g 35479011000036105 Poly Visc 1 g/g eye ointment 35420011000036100 Poly Visc 35420011000036100 Poly Visc 35761011000036105 paraffin 1 g/g eye ointment, 2 x 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +684521000168108 MS-2 Step (4 x Gymiso tablets, 1 x Mifepristone (Linepharma) tablet), 1 pack 210574 684511000168101 MS-2 Step (4 x Gymiso tablets, 1 x Mifepristone (Linepharma) tablet), 1 pack 124331000036102 Gymiso 200 microgram tablet 684491000168106 MS-2 Step 123981000036102 Gymiso 684501000168104 mifepristone 200 mg tablet [1] (&) misoprostol 200 microgram tablet [4], 1 pack 22876011000036106 misoprostol 200 microgram tablet 21520011000036107 misoprostol +684521000168108 MS-2 Step (4 x Gymiso tablets, 1 x Mifepristone (Linepharma) tablet), 1 pack 210574 684511000168101 MS-2 Step (4 x Gymiso tablets, 1 x Mifepristone (Linepharma) tablet), 1 pack 124311000036106 Mifepristone (Linepharma) 200 mg uncoated tablet 684491000168106 MS-2 Step 123741000036109 Mifepristone (Linepharma) 684501000168104 mifepristone 200 mg tablet [1] (&) misoprostol 200 microgram tablet [4], 1 pack 124321000036104 mifepristone 200 mg tablet 132121000036107 mifepristone +69613011000036104 Mylanta 2go Rolltab Peppermint chewable tablet, 12, wrapping 75879 67412011000036103 Mylanta 2go Rolltab Peppermint chewable tablet, 12 65653011000036101 Mylanta 2go Rolltab Peppermint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71947011000036109 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 12 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +696811000168109 Pravastatin (Auro) 10 mg uncoated tablet, 30, blister pack 191704 696801000168106 Pravastatin (Auro) 10 mg uncoated tablet, 30 696791000168105 Pravastatin (Auro) 10 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +1020251000168107 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 100, blister pack 190327 1020241000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 100 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82543011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 100 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +37500011000036100 Fucidin 2% ointment, 5 g, tube 12990 36768011000036104 Fucidin 2% ointment, 5 g 36022011000036105 Fucidin 2% ointment 20071000168105 Fucidin 20071000168105 Fucidin 38668011000036100 sodium fusidate 2% ointment, 5 g 37914011000036103 sodium fusidate 2% ointment 21917011000036107 fusidate +981951000168108 Lovenox Forte 150 mg/mL injection solution, 15 x 1 mL syringes 80271 981941000168106 Lovenox Forte 150 mg/mL injection solution, 15 x 1 mL syringes 981891000168105 Lovenox Forte 150 mg/mL injection solution, syringe 981881000168107 Lovenox Forte 981881000168107 Lovenox Forte 46706011000036101 enoxaparin sodium 150 mg/mL injection, 15 x 1 mL syringes 45276011000036101 enoxaparin sodium 150 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +947431000168108 Risdone 2 mg film-coated tablet, 56, blister pack 144280 947421000168105 Risdone 2 mg film-coated tablet, 56 947221000168106 Risdone 2 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947411000168103 risperidone 2 mg tablet, 56 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +1042491000168104 Nicotine (Amcal) 4 mg lozenge, 120, blister pack 213240 1042481000168102 Nicotine (Amcal) 4 mg lozenge, 120 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897801000168101 nicotine 4 mg lozenge, 120 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +18027011000036101 Durogesic 25 microgram/hour patch, 5, sachet 112368 11441011000036108 Durogesic 25 microgram/hour patch, 5 5159011000036109 Durogesic 25 microgram/hour patch 3568011000036107 Durogesic 3568011000036107 Durogesic 26649011000036106 fentanyl 25 microgram/hour patch, 5 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +966961000168101 Diavance 500/2.5 film-coated tablet, 120, blister pack 120264 966951000168103 Diavance 500/2.5 film-coated tablet, 120 966821000168103 Diavance 500/2.5 film-coated tablet 966811000168105 Diavance 500/2.5 966811000168105 Diavance 500/2.5 966941000168100 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet, 120 23508011000036106 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet 21813011000036107 metformin + glibenclamide +933215181000036104 Ondron ODT 8 mg orally disintegrating tablet, 10, blister pack 163654 933204711000036107 Ondron ODT 8 mg orally disintegrating tablet, 10 933195661000036102 Ondron ODT 8 mg orally disintegrating tablet 10891000168108 Ondron ODT 10891000168108 Ondron ODT 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +45131000036105 Tenderwet 24 Active (609210) 4 cm dressing, 10, carton 42631000036109 Tenderwet 24 Active (609210) 4 cm dressing, 10 48734011000036108 Tenderwet 24 Active (609210) 4 cm dressing 24661000168104 Tenderwet 24 Active (609210) 24661000168104 Tenderwet 24 Active (609210) 42641000036104 dressing hydroactive debridement 4 cm dressing, 10 50884011000036106 dressing hydroactive debridement 4 cm dressing 50721011000036101 dressing hydroactive debridement +45041000036101 Sumagran 50 mg film-coated tablet, 2, blister pack 160185 42911000036109 Sumagran 50 mg film-coated tablet, 2 33020011000036101 Sumagran 50 mg film-coated tablet 32986011000036107 Sumagran 32986011000036107 Sumagran 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +945261000168105 Diltiazem CD (Sanofi) 240 mg modified release capsule, 30, blister pack 139400 945251000168108 Diltiazem CD (Sanofi) 240 mg modified release capsule, 30 945161000168104 Diltiazem CD (Sanofi) 240 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +1082861000168102 Solian 50 mg uncoated tablet, 50, blister pack 96421 1082851000168104 Solian 50 mg uncoated tablet, 50 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 924159011000036103 amisulpride 50 mg tablet, 50 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +923736011000036104 Quitx Classic 2 mg chewing gum, 96, blister pack 143429 923280011000036100 Quitx Classic 2 mg chewing gum, 96 922970011000036100 Quitx Classic 2 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1048981000168109 Neodol Forte 500/30 tablet, 4, blister pack 220981 1048971000168106 Neodol Forte 500/30 tablet, 4 1048941000168104 Neodol Forte 500/30 tablet 1048931000168108 Neodol Forte 500/30 1048931000168108 Neodol Forte 500/30 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +59894011000036109 Nurofen Plus film-coated tablet, 48, blister pack 116620 55856011000036101 Nurofen Plus film-coated tablet, 48 53658011000036100 Nurofen Plus film-coated tablet 28771000168109 Nurofen Plus 28771000168109 Nurofen Plus 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +60378011000036108 Pholcodine Linctus APF 13 (David Craig) 1 mg/mL oral liquid solution, 100 mL, bottle 14289 56337011000036103 Pholcodine Linctus APF 13 (David Craig) 1 mg/mL oral liquid solution, 100 mL 53882011000036103 Pholcodine Linctus APF 13 (David Craig) 1 mg/mL oral liquid solution 26791000168106 Pholcodine Linctus APF 13 (David Craig) 26791000168106 Pholcodine Linctus APF 13 (David Craig) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +656511000168104 Pravastatin Sodium (AN) 80 mg uncoated tablet, 30, bottle 191694 656501000168102 Pravastatin Sodium (AN) 80 mg uncoated tablet, 30 656491000168109 Pravastatin Sodium (AN) 80 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +859581000168106 Zovirax Dispersible 400 mg tablet, 100, bottle 51432 859561000168102 Zovirax Dispersible 400 mg tablet, 100 859531000168105 Zovirax Dispersible 400 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +851681000168109 Metformin XR 1000 (Chemmart) 1 g modified release tablet, 60, blister pack 218275 851671000168106 Metformin XR 1000 (Chemmart) 1 g modified release tablet, 60 851661000168100 Metformin XR 1000 (Chemmart) 1 g modified release tablet 851651000168102 Metformin XR 1000 (Chemmart) 851651000168102 Metformin XR 1000 (Chemmart) 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +851681000168109 Metformin XR 1000 (Chemmart) 1 g modified release tablet, 60, blister pack 278177 851671000168106 Metformin XR 1000 (Chemmart) 1 g modified release tablet, 60 851661000168100 Metformin XR 1000 (Chemmart) 1 g modified release tablet 851651000168102 Metformin XR 1000 (Chemmart) 851651000168102 Metformin XR 1000 (Chemmart) 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +87659011000036101 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 96, blister pack 126538 87419011000036105 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 96 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1022341000168103 Butafen 200 mg film-coated tablet, 100, blister pack 155484 1022331000168107 Butafen 200 mg film-coated tablet, 100 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +86010011000036106 Lisinopril (DRLA) 5 mg uncoated tablet, 30, blister pack 152720 85650011000036106 Lisinopril (DRLA) 5 mg uncoated tablet, 30 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +654341000168100 Simvastatin (AN) 20 mg film-coated tablet, 30, blister pack 170526 654331000168109 Simvastatin (AN) 20 mg film-coated tablet, 30 654321000168106 Simvastatin (AN) 20 mg film-coated tablet 654281000168101 Simvastatin (AN) 654281000168101 Simvastatin (AN) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +44392011000036109 Somac 40 mg enteric tablet, 30, bottle 69791 13286011000036102 Somac 40 mg enteric tablet, 30 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +808461000168104 Pramipexole XR (GP) 1.5 mg modified release tablet, 30, blister pack 225600 808451000168101 Pramipexole XR (GP) 1.5 mg modified release tablet, 30 808421000168109 Pramipexole XR (GP) 1.5 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 87816011000036107 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet, 30 87760011000036108 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet 37716011000036100 pramipexole +1099401000168109 Lamotrigine (Chemmart) 200 mg uncoated tablet, 56, blister pack 167528 1099391000168107 Lamotrigine (Chemmart) 200 mg uncoated tablet, 56 1099381000168109 Lamotrigine (Chemmart) 200 mg uncoated tablet 1097871000168105 Lamotrigine (Chemmart) 1097871000168105 Lamotrigine (Chemmart) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +927685011000036100 PKU Gel Raspberry powder for oral liquid, 30 x 24 g sachets 927618011000036108 PKU Gel Raspberry powder for oral liquid, 30 x 24 g sachets 257221000168108 PKU Gel Raspberry powder for oral liquid, 24 g sachet 1281000168104 PKU Gel 1281000168104 PKU Gel 927729011000036101 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 24 g sachets 240811000168100 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 24 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +21047011000036108 Amoxycillin (Terry White Chemists) 500 mg hard capsule, 20, blister pack 142542 14192011000036100 Amoxycillin (Terry White Chemists) 500 mg hard capsule, 20 7473011000036109 Amoxycillin (Terry White Chemists) 500 mg hard capsule 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +21047011000036108 Amoxycillin (Terry White Chemists) 500 mg hard capsule, 20, blister pack 208146 14192011000036100 Amoxycillin (Terry White Chemists) 500 mg hard capsule, 20 7473011000036109 Amoxycillin (Terry White Chemists) 500 mg hard capsule 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +21047011000036108 Amoxycillin (Terry White Chemists) 500 mg hard capsule, 20, blister pack 96880 14192011000036100 Amoxycillin (Terry White Chemists) 500 mg hard capsule, 20 7473011000036109 Amoxycillin (Terry White Chemists) 500 mg hard capsule 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +19295011000036105 Biaxsig 300 mg film-coated tablet, 5, blister pack 49135 12585011000036108 Biaxsig 300 mg film-coated tablet, 5 5944011000036108 Biaxsig 300 mg film-coated tablet 3985011000036109 Biaxsig 3985011000036109 Biaxsig 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +821391000168101 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 100582 821381000168104 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack 631721000168108 Rabipur (inert substance) diluent, 1 mL ampoule 73706011000036104 Rabipur 73706011000036104 Rabipur 821371000168102 rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +821391000168101 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 100582 821381000168104 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack 821361000168108 Rabipur (rabies vaccine) powder for injection, 2.5 units vial 73706011000036104 Rabipur 73706011000036104 Rabipur 821371000168102 rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 821351000168106 rabies vaccine injection, vial 821341000168109 rabies vaccine +18327011000036102 Meloxicam (Terry White Chemists) 15 mg uncoated tablet, 30, blister pack 127505 11845011000036100 Meloxicam (Terry White Chemists) 15 mg uncoated tablet, 30 5626011000036103 Meloxicam (Terry White Chemists) 15 mg uncoated tablet 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +69429011000036108 Orudis 2.5% gel, 30 g, tube 48482 67229011000036102 Orudis 2.5% gel, 30 g 65566011000036109 Orudis 2.5% gel 3793011000036104 Orudis 3793011000036104 Orudis 71779011000036107 ketoprofen 2.5% gel, 30 g 70182011000036107 ketoprofen 2.5% gel 21856011000036108 ketoprofen +1031021000168103 Aten 50 mg film-coated tablet, 28, blister pack 197716 1031011000168105 Aten 50 mg film-coated tablet, 28 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 929269011000036105 atenolol 50 mg tablet, 28 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +86880011000036108 Favic 125 mg film-coated tablet, 40, blister pack 159602 86762011000036108 Favic 125 mg film-coated tablet, 40 86638011000036109 Favic 125 mg film-coated tablet 86581011000036100 Favic 86581011000036100 Favic 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +855241000168100 Algerika 200 mg hard capsule, 14, blister pack 229598 855231000168109 Algerika 200 mg hard capsule, 14 855211000168104 Algerika 200 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +20096011000036107 Exelon 4.5 mg hard capsule, 56, blister pack 71447 13323011000036107 Exelon 4.5 mg hard capsule, 56 6609011000036102 Exelon 4.5 mg hard capsule 4601000168108 Exelon 4601000168108 Exelon 27693011000036101 rivastigmine 4.5 mg capsule, 56 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +870411000168109 Desven 50 mg modified release tablet, 28, bottle 218066 870401000168106 Desven 50 mg modified release tablet, 28 870351000168104 Desven 50 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +965431000168105 Olmetec Plus 20/25 mg film-coated tablet, 10, blister pack 115732 965421000168107 Olmetec Plus 20/25 mg film-coated tablet, 10 965401000168103 Olmetec Plus 20/25 mg film-coated tablet 965391000168100 Olmetec Plus 20/25 mg 965391000168100 Olmetec Plus 20/25 mg 965411000168100 olmesartan medoxomil 20 mg + hydrochlorothiazide 25 mg tablet, 10 846891000168102 olmesartan medoxomil 20 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +19929011000036100 Stelazine 1 mg film-coated tablet, 100, blister pack 66873 13173011000036100 Stelazine 1 mg film-coated tablet, 100 6456011000036104 Stelazine 1 mg film-coated tablet 7991000168102 Stelazine 7991000168102 Stelazine 27591011000036106 trifluoperazine 1 mg tablet, 100 22930011000036102 trifluoperazine 1 mg tablet 21507011000036102 trifluoperazine +947471000168106 Citlam-S 10 mg film-coated tablet, 98, blister pack 191886 947461000168100 Citlam-S 10 mg film-coated tablet, 98 947121000168102 Citlam-S 10 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 667961000168100 escitalopram 10 mg tablet, 98 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +34677011000036106 Salbutamol (Pharmacor) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 133122 34263011000036106 Salbutamol (Pharmacor) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 33993011000036109 Salbutamol (Pharmacor) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33948011000036106 Salbutamol (Pharmacor) 33948011000036106 Salbutamol (Pharmacor) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +61012011000036105 Nurofen Cold and Flu with Decongestant film-coated tablet, 4, blister pack 65640 56955011000036102 Nurofen Cold and Flu with Decongestant film-coated tablet, 4 54138011000036104 Nurofen Cold and Flu with Decongestant film-coated tablet 49471000168108 Nurofen Cold and Flu with Decongestant 49471000168108 Nurofen Cold and Flu with Decongestant 52900011000036104 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +925312011000036103 Clopidogrel (Actavis) 75 mg film-coated tablet, 90, bottle 164865 924858011000036104 Clopidogrel (Actavis) 75 mg film-coated tablet, 90 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 925444011000036105 clopidogrel 75 mg tablet, 90 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +77341000036105 Astromide 180 mg hard capsule, 5, sachet 197467 76841000036103 Astromide 180 mg hard capsule, 5 76691000036108 Astromide 180 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +60562011000036101 Panadeine uncoated tablet, 12, blister pack 15478 56520011000036104 Panadeine uncoated tablet, 12 53950011000036101 Panadeine uncoated tablet 13481000168104 Panadeine 13481000168104 Panadeine 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +20880011000036107 Keflex 125 mg/5 mL powder for oral liquid, 100 mL, bottle 92970 14042011000036100 Keflex 125 mg/5 mL powder for oral liquid, 100 mL 7320011000036109 Keflex 125 mg/5 mL powder for oral liquid, 5 mL 3358011000036104 Keflex 3358011000036104 Keflex 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +962531000168104 Salmol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135468 962521000168102 Salmol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 962511000168109 Salmol 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 962441000168107 Salmol 962441000168107 Salmol 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +1031571000168105 Aten 50 mg film-coated tablet, 500, bottle 197717 1031561000168104 Aten 50 mg film-coated tablet, 500 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 993791000168100 atenolol 50 mg tablet, 500 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +920686011000036101 Metformin Hydrochloride (Sandoz) 500 mg film-coated tablet, 100, bottle 148268 920400011000036103 Metformin Hydrochloride (Sandoz) 500 mg film-coated tablet, 100 920162011000036101 Metformin Hydrochloride (Sandoz) 500 mg film-coated tablet 920094011000036100 Metformin Hydrochloride (Sandoz) 920094011000036100 Metformin Hydrochloride (Sandoz) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20319011000036100 PV Carpine 6% eye drops solution, 15 mL, bottle 75897 13528011000036104 PV Carpine 6% eye drops solution, 15 mL 6811011000036105 PV Carpine 6% eye drops solution 3091011000036103 PV Carpine 3091011000036103 PV Carpine 27791011000036107 pilocarpine hydrochloride 6% eye drops, 15 mL 23121011000036104 pilocarpine hydrochloride 6% eye drops 21254011000036109 pilocarpine +1031661000168103 Aripra 5 mg uncoated tablet, 30, blister pack 217227 1031651000168100 Aripra 5 mg uncoated tablet, 30 1031641000168102 Aripra 5 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +86092011000036109 Ciprofloxacin (DRLA) 750 mg film-coated tablet, 14, blister pack 127785 85625011000036103 Ciprofloxacin (DRLA) 750 mg film-coated tablet, 14 85302011000036106 Ciprofloxacin (DRLA) 750 mg film-coated tablet 85271011000036103 Ciprofloxacin (DRLA) 85271011000036103 Ciprofloxacin (DRLA) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +60288011000036106 Panadol 500 mg film-coated tablet, 4, blister pack 13591 56247011000036106 Panadol 500 mg film-coated tablet, 4 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +50543011000036101 Revlimid 5 mg hard capsule, 21, blister pack 132510 49580011000036105 Revlimid 5 mg hard capsule, 21 48779011000036106 Revlimid 5 mg hard capsule 48335011000036106 Revlimid 48335011000036106 Revlimid 51487011000036100 lenalidomide 5 mg capsule, 21 50983011000036101 lenalidomide 5 mg capsule 50719011000036107 lenalidomide +808341000168105 Pramipexole XR (GP) 750 microgram modified release tablet, 30, blister pack 225585 808331000168101 Pramipexole XR (GP) 750 microgram modified release tablet, 30 808301000168108 Pramipexole XR (GP) 750 microgram modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 87815011000036100 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 30 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +1035361000168108 Senega and Ammonia Mixture (Amcal) Cherry oral liquid, 100 mL, bottle 222489 1035351000168106 Senega and Ammonia Mixture (Amcal) Cherry oral liquid, 100 mL 1035341000168109 Senega and Ammonia Mixture (Amcal) Cherry oral liquid 81977011000036109 Senega and Ammonia Mixture (Amcal) 81977011000036109 Senega and Ammonia Mixture (Amcal) 81683011000036109 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 100 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +971121000168108 Bosentan (DRLA) 125 mg film-coated tablet, 60, blister pack 271472 971111000168101 Bosentan (DRLA) 125 mg film-coated tablet, 60 971101000168104 Bosentan (DRLA) 125 mg film-coated tablet 971061000168102 Bosentan (DRLA) 971061000168102 Bosentan (DRLA) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1106571000168103 Quetiapine (GH) 100 mg film-coated tablet, 60, blister pack 179895 1106561000168109 Quetiapine (GH) 100 mg film-coated tablet, 60 2221000036101 Quetiapine (GH) 100 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +696971000168106 Atorvastatin (Blooms The Chemist) 40 mg film-coated tablet, 30, blister pack 153722 696961000168100 Atorvastatin (Blooms The Chemist) 40 mg film-coated tablet, 30 696951000168102 Atorvastatin (Blooms The Chemist) 40 mg film-coated tablet 692851000168106 Atorvastatin (Blooms The Chemist) 692851000168106 Atorvastatin (Blooms The Chemist) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +945941000168101 Glimepiride (Sanofi) 2 mg uncoated tablet, 50, blister pack 142391 945931000168105 Glimepiride (Sanofi) 2 mg uncoated tablet, 50 945871000168103 Glimepiride (Sanofi) 2 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 945921000168107 glimepiride 2 mg tablet, 50 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +77361000036106 Metalyse (1 x 8000 units (40 mg) vial, 1 x 8 mL inert diluent syringe), 1 pack, composite pack 75012 77001000036109 Metalyse (1 x 8000 units (40 mg) vial, 1 x 8 mL inert diluent syringe), 1 pack 6748011000036106 Metalyse (tenecteplase 8000 units (40 mg)) powder for injection, 40 mg vial 3710011000036108 Metalyse 3710011000036108 Metalyse 77021000036104 tenecteplase 8000 units (40 mg) injection [1 vial] (&) inert substance diluent [8 mL syringe], 1 pack 23091011000036101 tenecteplase 8000 units (40 mg) injection, vial 21434011000036109 tenecteplase +77361000036106 Metalyse (1 x 8000 units (40 mg) vial, 1 x 8 mL inert diluent syringe), 1 pack, composite pack 75012 77001000036109 Metalyse (1 x 8000 units (40 mg) vial, 1 x 8 mL inert diluent syringe), 1 pack 644321000168108 Metalyse (inert substance) diluent, 8 mL syringe 3710011000036108 Metalyse 3710011000036108 Metalyse 77021000036104 tenecteplase 8000 units (40 mg) injection [1 vial] (&) inert substance diluent [8 mL syringe], 1 pack 644311000168101 inert substance diluent, 8 mL syringe 21220011000036103 inert substance +37397011000036104 Neostigmine Methylsulfate (AstraZeneca) 500 microgram/mL injection solution, 10 x 1 mL ampoules 11973 36680011000036106 Neostigmine Methylsulfate (AstraZeneca) 500 microgram/mL injection solution, 10 x 1 mL ampoules 36189011000036101 Neostigmine Methylsulfate (AstraZeneca) 500 microgram/mL injection solution, ampoule 35894011000036108 Neostigmine Methylsulfate (AstraZeneca) 35894011000036108 Neostigmine Methylsulfate (AstraZeneca) 38593011000036101 neostigmine methylsulfate 500 microgram/mL injection, 10 x 1 mL ampoules 37864011000036105 neostigmine methylsulfate 500 microgram/mL injection, ampoule 37705011000036105 neostigmine +20970011000036105 Zimstat 5 mg film-coated tablet, 30, blister pack 95672 14121011000036103 Zimstat 5 mg film-coated tablet, 30 7398011000036101 Zimstat 5 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +834481000168107 Rocuronium (Mylan) 50 mg/5 mL injection solution, 5 x 5 mL vials 169872 834471000168109 Rocuronium (Mylan) 50 mg/5 mL injection solution, 5 x 5 mL vials 834451000168100 Rocuronium (Mylan) 50 mg/5 mL injection solution, 5 mL vial 834441000168102 Rocuronium (Mylan) 834441000168102 Rocuronium (Mylan) 834461000168103 rocuronium bromide 50 mg/5 mL injection, 5 x 5 mL vials 45193011000036101 rocuronium bromide 50 mg/5 mL injection, vial 44919011000036108 rocuronium +931566011000036101 Cholpra 20 mg film-coated tablet, 500, bottle 163543 930727011000036104 Cholpra 20 mg film-coated tablet, 500 930029011000036109 Cholpra 20 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932417011000036106 pravastatin sodium 20 mg tablet, 500 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +52779011000036109 Strong Pain Caplet (Pharmacor) uncoated tablet, 96, blister pack 75647 52589011000036104 Strong Pain Caplet (Pharmacor) uncoated tablet, 96 52433011000036100 Strong Pain Caplet (Pharmacor) uncoated tablet 6871000168106 Strong Pain Caplet (Pharmacor) 6871000168106 Strong Pain Caplet (Pharmacor) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +926822011000036108 Zitrocin 500 mg film-coated tablet, 15, blister pack 171321 926218011000036105 Zitrocin 500 mg film-coated tablet, 15 925682011000036109 Zitrocin 500 mg film-coated tablet 925522011000036106 Zitrocin 925522011000036106 Zitrocin 927345011000036101 azithromycin 500 mg tablet, 15 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +1089411000168108 Paracetamol (Genpar) 500 mg film-coated tablet, 20, blister pack 280973 1089401000168105 Paracetamol (Genpar) 500 mg film-coated tablet, 20 1089371000168107 Paracetamol (Genpar) 500 mg film-coated tablet 1089361000168101 Paracetamol (Genpar) 1089361000168101 Paracetamol (Genpar) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69129011000036107 Nicotinell Classic 2 mg chewing gum, 120, blister pack 152893 66929011000036102 Nicotinell Classic 2 mg chewing gum, 120 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71509011000036101 nicotine 2 mg gum, 120 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +757421000168103 Palexia SR 25 mg modified release tablet, 90, blister pack 229737 757411000168105 Palexia SR 25 mg modified release tablet, 90 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757401000168107 tapentadol 25 mg modified release tablet, 90 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +60455011000036108 Sleep Aid (Pharmacist) 25 mg tablet, 10, blister pack 149474 56413011000036105 Sleep Aid (Pharmacist) 25 mg tablet, 10 53916011000036105 Sleep Aid (Pharmacist) 25 mg tablet 53353011000036101 Sleep Aid (Pharmacist) 53353011000036101 Sleep Aid (Pharmacist) 63825011000036104 doxylamine succinate 25 mg tablet, 10 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +74856011000036108 Sodium Chloride (Baxter) 0.9% (9 g/L) intravenous infusion injection, 12 x 1 L bags 48520 74343011000036103 Sodium Chloride (Baxter) 0.9% (9 g/L) intravenous infusion injection, 12 x 1 L bags 4949011000036104 Sodium Chloride (Baxter) 0.9% (9 g/L) intravenous infusion injection, 1 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 75446011000036109 sodium chloride 0.9% (9 g/L) injection, 12 x 1 L bags 22566011000036102 sodium chloride 0.9% (9 g/L) injection, bag 21308011000036103 sodium chloride +44696011000036104 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 93506 42145011000036107 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46906011000036106 follitropin alfa 37.5 units (2.73 microgram) injection [10 x 37.5 units vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44696011000036104 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 93506 42145011000036107 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46906011000036106 follitropin alfa 37.5 units (2.73 microgram) injection [10 x 37.5 units vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +933213011000036105 Pantoprazole (IPCA) 40 mg enteric tablet, 5, blister pack 158199 933202661000036108 Pantoprazole (IPCA) 40 mg enteric tablet, 5 933195301000036105 Pantoprazole (IPCA) 40 mg enteric tablet 933193271000036106 Pantoprazole (IPCA) 933193271000036106 Pantoprazole (IPCA) 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +68992011000036107 Nicotinell Liquorice 4 mg chewing gum, 168, blister pack 136135 66794011000036100 Nicotinell Liquorice 4 mg chewing gum, 168 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71516011000036108 nicotine 4 mg gum, 168 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +816981000168100 Espler 25 mg film-coated tablet, 120, blister pack 231454 816971000168103 Espler 25 mg film-coated tablet, 120 816881000168106 Espler 25 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 790521000168105 eplerenone 25 mg tablet, 120 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +964631000168107 Normatens 400 microgram film-coated tablet, 56, blister pack 114124 964621000168109 Normatens 400 microgram film-coated tablet, 56 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964611000168102 moxonidine 400 microgram tablet, 56 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +1042411000168108 Nicotine (Amcal) 4 mg lozenge, 36, blister pack 213240 1042401000168105 Nicotine (Amcal) 4 mg lozenge, 36 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897691000168108 nicotine 4 mg lozenge, 36 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +20113011000036108 Qvar Inhaler 100 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 71993 13338011000036104 Qvar Inhaler 100 microgram/actuation pressurised inhalation, 200 actuations 6623011000036107 Qvar Inhaler 100 microgram/actuation pressurised inhalation, actuation 45381000168100 Qvar Inhaler 45381000168100 Qvar Inhaler 27702011000036103 beclometasone dipropionate 100 microgram/actuation pressurised inhalation, 200 actuations 23037011000036103 beclometasone dipropionate 100 microgram/actuation pressurised inhalation, actuation 21435011000036108 beclometasone +795551000168105 Candesartan HCTZ 16/12.5 (Blooms The Chemist) uncoated tablet, 30, blister pack 259999 795541000168108 Candesartan HCTZ 16/12.5 (Blooms The Chemist) uncoated tablet, 30 795531000168104 Candesartan HCTZ 16/12.5 (Blooms The Chemist) uncoated tablet 795521000168102 Candesartan HCTZ 16/12.5 (Blooms The Chemist) 795521000168102 Candesartan HCTZ 16/12.5 (Blooms The Chemist) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1123251000168106 Quetiapine XR (ZP) 200 mg modified release tablet, 10, blister pack 226803 1123241000168109 Quetiapine XR (ZP) 200 mg modified release tablet, 10 1123231000168100 Quetiapine XR (ZP) 200 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51532011000036104 quetiapine 200 mg modified release tablet, 10 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +18344011000036106 Enbrel (4 x 50 mg vials, 4 x 1 mL inert diluent syringes), 1 pack, composite pack 107316 11367011000036101 Enbrel (4 x 50 mg vials, 4 x 1 mL inert diluent syringes), 1 pack 634841000168106 Enbrel (inert substance) diluent, 1 mL syringe 25701000168107 Enbrel 25701000168107 Enbrel 26623011000036105 etanercept 50 mg injection [4 vials] (&) inert substance diluent [4 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +18344011000036106 Enbrel (4 x 50 mg vials, 4 x 1 mL inert diluent syringes), 1 pack, composite pack 107316 11367011000036101 Enbrel (4 x 50 mg vials, 4 x 1 mL inert diluent syringes), 1 pack 4553011000036109 Enbrel (etanercept 50 mg) powder for injection, 50 mg vial 25701000168107 Enbrel 25701000168107 Enbrel 26623011000036105 etanercept 50 mg injection [4 vials] (&) inert substance diluent [4 x 1 mL syringes], 1 pack 22029011000036100 etanercept 50 mg injection, vial 21347011000036107 etanercept +714171000168105 Olanzapine (Auro) 10 mg uncoated tablet, 28, blister pack 179918 714161000168104 Olanzapine (Auro) 10 mg uncoated tablet, 28 714151000168101 Olanzapine (Auro) 10 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +921956011000036103 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 200 mL vial 47072 921514011000036106 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 200 mL vial 921052011000036109 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 200 mL vial 35921000168104 Isovue-370 35921000168104 Isovue-370 922636011000036101 iopamidol 755 mg (iodine 370 mg)/mL injection, 200 mL vial 922124011000036108 iopamidol 755 mg (iodine 370 mg)/mL injection, 200 mL vial 77457011000036105 iopamidol +59971011000036109 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 100 mL, bottle 120724 55933011000036100 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 100 mL 53666011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63363011000036106 ibuprofen 40 mg/mL oral liquid, 100 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +1121081000168109 Quetiapine XR (Medis) 200 mg modified release tablet, 10, blister pack 226802 1121071000168106 Quetiapine XR (Medis) 200 mg modified release tablet, 10 1121061000168100 Quetiapine XR (Medis) 200 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51532011000036104 quetiapine 200 mg modified release tablet, 10 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +1020291000168102 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 280, blister pack 190327 1020281000168100 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 280 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82548011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 280 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +18511011000036100 Simvahexal 40 mg film-coated tablet, 30, blister pack 114800 14206011000036101 Simvahexal 40 mg film-coated tablet, 30 7487011000036108 Simvahexal 40 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +933151000168104 Centevo 150/37.5/200 mg film-coated tablet, 30, bottle 238857 933141000168101 Centevo 150/37.5/200 mg film-coated tablet, 30 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933131000168105 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 30 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +864511000168106 Amitriptyline (AN) 10 mg tablet, 50, blister pack 232116 864451000168106 Amitriptyline (AN) 10 mg tablet, 50 864441000168109 Amitriptyline (AN) 10 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1100061000168102 Valganciclovir (Chemmart) 450 mg film-coated tablet, 60, bottle 184307 1100051000168104 Valganciclovir (Chemmart) 450 mg film-coated tablet, 60 1100041000168101 Valganciclovir (Chemmart) 450 mg film-coated tablet 1100031000168105 Valganciclovir (Chemmart) 1100031000168105 Valganciclovir (Chemmart) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +893651000168108 Olmesartan (Pharmacor) 40 mg film-coated tablet, 30, blister pack 235832 893641000168106 Olmesartan (Pharmacor) 40 mg film-coated tablet, 30 893631000168102 Olmesartan (Pharmacor) 40 mg film-coated tablet 893431000168100 Olmesartan (Pharmacor) 893431000168100 Olmesartan (Pharmacor) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +1006361000168107 Olmesartan HCTZ 40/25 (Apo) film-coated tablet, 30, blister pack 221121 1006351000168105 Olmesartan HCTZ 40/25 (Apo) film-coated tablet, 30 1006341000168108 Olmesartan HCTZ 40/25 (Apo) film-coated tablet 1006331000168104 Olmesartan HCTZ 40/25 (Apo) 1006331000168104 Olmesartan HCTZ 40/25 (Apo) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +726591000168100 Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL, injection device 173399 726581000168103 Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL 726571000168101 Norditropin Flexpro 15 mg/1.5 mL injection solution 17991000168100 Norditropin Flexpro 17991000168100 Norditropin Flexpro 726451000168109 somatropin 15 mg/1.5 mL injection, 1.5 mL 726431000168103 somatropin 15 mg/1.5 mL injection 21295011000036100 somatropin +34620011000036109 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 100 mL, bottle 90136 34216011000036101 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 100 mL 33966011000036101 Tussinol Linctus sugar free 1 mg/mL oral liquid solution 33960011000036104 Tussinol Linctus 33960011000036104 Tussinol Linctus 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +34620011000036109 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 100 mL, bottle 10770 34216011000036101 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 100 mL 33966011000036101 Tussinol Linctus sugar free 1 mg/mL oral liquid solution 33960011000036104 Tussinol Linctus 33960011000036104 Tussinol Linctus 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +1023221000168107 Bambini Teething 8.7% oral gel, 20 g, tube 223918 1023211000168100 Bambini Teething 8.7% oral gel, 20 g 1023141000168109 Bambini Teething 8.7% oral gel 1023071000168103 Bambini Teething 1023071000168103 Bambini Teething 927403011000036102 choline salicylate 8.7% oral gel, 20 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +759991000168102 Betahistine (GH) 16 mg uncoated tablet, 10, blister pack 212076 759981000168100 Betahistine (GH) 16 mg uncoated tablet, 10 759971000168103 Betahistine (GH) 16 mg uncoated tablet 759961000168109 Betahistine (GH) 759961000168109 Betahistine (GH) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +850721000168109 Temozolomide (Amneal) 250 mg hard capsule, 20, sachet 206046 850711000168102 Temozolomide (Amneal) 250 mg hard capsule, 20 850681000168103 Temozolomide (Amneal) 250 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 164411000036108 temozolomide 250 mg capsule, 20 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +760071000168101 Betahistine (GH) 16 mg uncoated tablet, 60, blister pack 212076 760061000168107 Betahistine (GH) 16 mg uncoated tablet, 60 759971000168103 Betahistine (GH) 16 mg uncoated tablet 759961000168109 Betahistine (GH) 759961000168109 Betahistine (GH) 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1098461000168101 Risedronate (Auro) 30 mg film-coated tablet, 14, blister pack 190156 1098451000168103 Risedronate (Auro) 30 mg film-coated tablet, 14 1098441000168100 Risedronate (Auro) 30 mg film-coated tablet 1098381000168102 Risedronate (Auro) 1098381000168102 Risedronate (Auro) 800891000168105 risedronate sodium 30 mg tablet, 14 23072011000036102 risedronate sodium 30 mg tablet 21476011000036103 risedronate +1081261000168106 Alpha Keri Bath and Body Oil application, 500 mL, bottle 24618 1081251000168109 Alpha Keri Bath and Body Oil application, 500 mL 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 26998011000036109 liquid paraffin 80.7% + lanolin oil 2.64% application, 500 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +66221000036104 Mentholaire Vaporizer Fluid inhalation solution, 200 mL, bottle 43303 63911000036108 Mentholaire Vaporizer Fluid inhalation solution, 200 mL 61381000036103 Mentholaire Vaporizer Fluid inhalation solution 34271000168106 Mentholaire Vaporizer Fluid 34271000168106 Mentholaire Vaporizer Fluid 63921000036101 methyl salicylate 1.3% + camphor 0.59% + menthol 9.76% + eucalyptus oil 10.4% inhalation solution, 200 mL 61391000036101 methyl salicylate 1.3% + camphor 0.59% + menthol 9.76% + eucalyptus oil 10.4% inhalation solution 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +37368011000036101 Marcain Epidural Infusion 0.25% (250 mg/100 mL) injection solution, 5 x 100 mL bags 11953 36676011000036102 Marcain Epidural Infusion 0.25% (250 mg/100 mL) injection solution, 5 x 100 mL bags 36052011000036109 Marcain Epidural Infusion 0.25% (250 mg/100 mL) injection solution, 100 mL bag 31131000168101 Marcain Epidural Infusion 31131000168101 Marcain Epidural Infusion 38589011000036102 bupivacaine hydrochloride monohydrate 0.25% (250 mg/100 mL) injection, 5 x 100 mL bags 37860011000036100 bupivacaine hydrochloride monohydrate 0.25% (250 mg/100 mL) injection, bag 37702011000036102 bupivacaine +738381000168107 Benefiber 1 g/g powder for oral liquid, 261 g, jar 738371000168109 Benefiber 1 g/g powder for oral liquid, 261 g 143551000036104 Benefiber 1 g/g powder for oral liquid 143351000036106 Benefiber 143351000036106 Benefiber 738361000168103 wheat dextrin 1 g/g powder for oral liquid, 261 g 143561000036101 wheat dextrin 1 g/g powder for oral liquid 146531000036100 wheat dextrin +893571000168103 Dorzolamide (Apo) 2% eye drops solution, 5 mL, bottle 267119 893561000168109 Dorzolamide (Apo) 2% eye drops solution, 5 mL 893551000168107 Dorzolamide (Apo) 2% eye drops solution 893541000168105 Dorzolamide (Apo) 893541000168105 Dorzolamide (Apo) 27338011000036107 dorzolamide 2% eye drops, 5 mL 22691011000036100 dorzolamide 2% eye drops 21898011000036103 dorzolamide +965681000168109 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 10 x 25 mL vials 117278 965671000168106 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 10 x 25 mL vials 965591000168108 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 25 mL vial 965571000168107 Frusemide High Dose (Sandoz) 965571000168107 Frusemide High Dose (Sandoz) 965661000168100 furosemide (frusemide) 250 mg/25 mL injection, 10 x 25 mL vials 965581000168105 furosemide (frusemide) 250 mg/25 mL injection, vial 21329011000036103 furosemide (frusemide) +1006001000168109 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 195805 1005991000168108 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1005971000168107 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule 711051000168102 Ropivacaine 0.5% (Kabi) 711051000168102 Ropivacaine 0.5% (Kabi) 1005981000168105 ropivacaine hydrochloride 50 mg/10 mL injection, 5 x 10 mL ampoules 1005961000168101 ropivacaine hydrochloride 50 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +1085551000168108 Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 77112 814421000168104 Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations 40295011000036106 Nasonex Aqueous 50 microgram/actuation nasal spray, actuation 3481000168101 Nasonex Aqueous 3481000168101 Nasonex Aqueous 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +20228011000036107 MS Mono 90 mg modified release capsule, 10, bottle 74153 13441011000036101 MS Mono 90 mg modified release capsule, 10 6723011000036104 MS Mono 90 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27748011000036105 morphine sulfate pentahydrate 90 mg modified release capsule, 10 23079011000036107 morphine sulfate pentahydrate 90 mg modified release capsule 21252011000036100 morphine +61606011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge, 4, blister pack 157020 57528011000036101 Strepfen Intensive orange sugar free 8.75 mg lozenge, 4 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63910011000036108 flurbiprofen 8.75 mg lozenge, 4 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +61606011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge, 4, blister pack 96063 57528011000036101 Strepfen Intensive orange sugar free 8.75 mg lozenge, 4 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63910011000036108 flurbiprofen 8.75 mg lozenge, 4 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +928876011000036102 Pipertaz 4g/0.5g powder for injection, 4.5 g bottle 140840 928238011000036109 Pipertaz 4g/0.5g powder for injection, 4.5 g bottle 927896011000036101 Pipertaz 4g/0.5g powder for injection, 4.5 g bottle 58831000168103 Pipertaz 4g/0.5g 58831000168103 Pipertaz 4g/0.5g 929208011000036101 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g bottle 929146011000036109 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g bottle 44928011000036106 piperacillin + tazobactam +1006321000168102 Olmesartan HCTZ 40/12.5 (Apo) film-coated tablet, 30, blister pack 221118 1006311000168109 Olmesartan HCTZ 40/12.5 (Apo) film-coated tablet, 30 1006301000168106 Olmesartan HCTZ 40/12.5 (Apo) film-coated tablet 1006291000168105 Olmesartan HCTZ 40/12.5 (Apo) 1006291000168105 Olmesartan HCTZ 40/12.5 (Apo) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +890681000168106 Canpek 32/12.5 uncoated tablet, 30, blister pack 198394 890671000168108 Canpek 32/12.5 uncoated tablet, 30 890621000168107 Canpek 32/12.5 uncoated tablet 890611000168100 Canpek 32/12.5 890611000168100 Canpek 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19721011000036109 Diclohexal 50 mg enteric tablet, 50, bottle 61298 13074011000036107 Diclohexal 50 mg enteric tablet, 50 6358011000036109 Diclohexal 50 mg enteric tablet 3420011000036107 Diclohexal 3420011000036107 Diclohexal 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +759751000168109 Crystaderm 1% cream, 25 g, tube 257332 759741000168107 Crystaderm 1% cream, 25 g 759661000168103 Crystaderm 1% cream 759641000168102 Crystaderm 759641000168102 Crystaderm 759731000168103 hydrogen peroxide 1% cream, 25 g 759651000168100 hydrogen peroxide 1% cream 69793011000036105 hydrogen peroxide +885301000168101 Candesan 32 mg uncoated tablet, 30, blister pack 195459 885291000168102 Candesan 32 mg uncoated tablet, 30 885281000168100 Candesan 32 mg uncoated tablet 885241000168105 Candesan 885241000168105 Candesan 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +1052361000168103 Palexia SR 150 mg modified release tablet, 90, blister pack 165347 1052351000168100 Palexia SR 150 mg modified release tablet, 90 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052341000168102 tapentadol 150 mg modified release tablet, 90 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +928912011000036102 Vaclovir 500 mg film-coated tablet, 240, blister pack 153822 928274011000036100 Vaclovir 500 mg film-coated tablet, 240 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929218011000036103 valaciclovir 500 mg tablet, 240 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +20735011000036106 Paroxetine (Chemmart) 20 mg film-coated tablet, 30, blister pack 83104 13904011000036105 Paroxetine (Chemmart) 20 mg film-coated tablet, 30 7190011000036107 Paroxetine (Chemmart) 20 mg film-coated tablet 4386011000036106 Paroxetine (Chemmart) 4386011000036106 Paroxetine (Chemmart) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +19750011000036103 Ipratrin Adult Uni-Dose 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 62144 13011011000036103 Ipratrin Adult Uni-Dose 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 6300011000036104 Ipratrin Adult Uni-Dose 500 microgram/mL inhalation solution, ampoule 23591000168109 Ipratrin Adult Uni-Dose 23591000168109 Ipratrin Adult Uni-Dose 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +14341000036106 Bisoprolol Fumarate (Terry White Chemists) 2.5 mg tablet, 28, blister pack 182115 7961000036102 Bisoprolol Fumarate (Terry White Chemists) 2.5 mg tablet, 28 3361000036107 Bisoprolol Fumarate (Terry White Chemists) 2.5 mg tablet 1181000036104 Bisoprolol Fumarate (Terry White Chemists) 1181000036104 Bisoprolol Fumarate (Terry White Chemists) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +60978011000036102 De Worm (Chemists' Own) 100 mg chewable tablet, 2, blister pack 62963 56921011000036100 De Worm (Chemists' Own) 100 mg chewable tablet, 2 54121011000036106 De Worm (Chemists' Own) 100 mg chewable tablet 53594011000036107 De Worm (Chemists' Own) 53594011000036107 De Worm (Chemists' Own) 75961000036100 mebendazole 100 mg chewable tablet, 2 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +755731000168100 Vttack 200 mg film-coated tablet, 2, blister pack 206985 755721000168103 Vttack 200 mg film-coated tablet, 2 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46805011000036106 voriconazole 200 mg tablet, 2 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +846471000168100 Progout 100 mg uncoated tablet, 10, bottle 27969 846461000168106 Progout 100 mg uncoated tablet, 10 5743011000036103 Progout 100 mg uncoated tablet 4173011000036104 Progout 4173011000036104 Progout 846451000168109 allopurinol 100 mg tablet, 10 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +1089571000168101 Heartburn and Acid Indigestion (Coles) 150 mg film-coated tablet, 14, blister pack 281344 1089561000168107 Heartburn and Acid Indigestion (Coles) 150 mg film-coated tablet, 14 1089551000168105 Heartburn and Acid Indigestion (Coles) 150 mg film-coated tablet 1089541000168108 Heartburn and Acid Indigestion (Coles) 1089541000168108 Heartburn and Acid Indigestion (Coles) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +692311000168103 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet, 100, blister pack 215397 692301000168101 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet, 100 692231000168101 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +897911000168109 Nicotinell Peppermint 4 mg lozenge, 156, blister pack 276926 897901000168106 Nicotinell Peppermint 4 mg lozenge, 156 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897891000168107 nicotine 4 mg lozenge, 156 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +20205011000036105 Captopril (GenRx) 50 mg uncoated tablet, 90, blister pack 74010 13424011000036101 Captopril (GenRx) 50 mg uncoated tablet, 90 6706011000036100 Captopril (GenRx) 50 mg uncoated tablet 3942011000036106 Captopril (GenRx) 3942011000036106 Captopril (GenRx) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +44564011000036104 Bicor 1.25 mg film-coated tablet, 28, blister pack 81603 42017011000036101 Bicor 1.25 mg film-coated tablet, 28 40323011000036105 Bicor 1.25 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 46790011000036102 bisoprolol fumarate 1.25 mg tablet, 28 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +893971000168105 Imatinib Adult (Cipla) 400 mg hard capsule, 96, blister pack 231746 893961000168104 Imatinib Adult (Cipla) 400 mg hard capsule, 96 893861000168106 Imatinib Adult (Cipla) 400 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 893951000168101 imatinib 400 mg capsule, 96 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +1085191000168109 Potassium Chloride 40 mmol/1000mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 225806 1085181000168106 Potassium Chloride 40 mmol/1000mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 1085161000168102 Potassium Chloride 40 mmol/1000mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, bag 1085141000168101 Potassium Chloride 40 mmol/1000mL and Sodium Chloride 0.9% (Baxter) 1085141000168101 Potassium Chloride 40 mmol/1000mL and Sodium Chloride 0.9% (Baxter) 1085171000168108 potassium chloride 2.98 g (potassium 40 mmol)/L + sodium chloride 0.9% (9 g/L) injection, 1 L bag 1085151000168104 potassium chloride 2.98 g (potassium 40 mmol)/L + sodium chloride 0.9% (9 g/L) injection, bag 69799011000036108 potassium chloride + sodium chloride +34764011000036104 Dilaudid 2 mg uncoated tablet, 500, bottle 67353 34345011000036107 Dilaudid 2 mg uncoated tablet, 500 6476011000036102 Dilaudid 2 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35193011000036102 hydromorphone hydrochloride 2 mg tablet, 500 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +994441000168103 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (18 x Day tablets, 6 x Night tablets), 24, blister pack 255012 994431000168107 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (18 x Day tablets, 6 x Night tablets), 24 994411000168102 Cold and Flu Relief PE Day and Night (Day) (Blooms The Chemist) film-coated tablet 994321000168104 Cold and Flu Relief PE Day and Night (Blooms The Chemist) 994381000168100 Cold and Flu Relief PE Day and Night (Day) (Blooms The Chemist) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +994441000168103 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (18 x Day tablets, 6 x Night tablets), 24, blister pack 255012 994431000168107 Cold and Flu Relief PE Day and Night (Blooms The Chemist) (18 x Day tablets, 6 x Night tablets), 24 994421000168109 Cold and Flu Relief PE Day and Night (Night) (Blooms The Chemist) film-coated tablet 994321000168104 Cold and Flu Relief PE Day and Night (Blooms The Chemist) 994401000168100 Cold and Flu Relief PE Day and Night (Night) (Blooms The Chemist) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +764001000168103 Modafin 100 mg uncoated tablet, 60, blister pack 230327 763991000168106 Modafin 100 mg uncoated tablet, 60 763931000168107 Modafin 100 mg uncoated tablet 763921000168109 Modafin 763921000168109 Modafin 27978011000036104 modafinil 100 mg tablet, 60 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +933238861000036103 Fentanyl (Sandoz) 12 microgram/hour patch, 10, sachet 152572 933236031000036101 Fentanyl (Sandoz) 12 microgram/hour patch, 10 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236041000036106 fentanyl 12 microgram/hour patch, 10 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +86028011000036102 Coveram 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 154441 85683011000036105 Coveram 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10 85332011000036101 Coveram 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet 26071000168108 Coveram 10mg/10mg (perindopril arginine/amlodipine) 26071000168108 Coveram 10mg/10mg (perindopril arginine/amlodipine) 86429011000036101 perindopril arginine 10 mg + amlodipine 10 mg tablet, 10 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +20862011000036109 Stelax 25 mg uncoated tablet, 100, blister pack 92253 14024011000036106 Stelax 25 mg uncoated tablet, 100 7300011000036100 Stelax 25 mg uncoated tablet 3204011000036107 Stelax 3204011000036107 Stelax 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +181441000036109 Epirubicin Hydrochloride (Act) 100 mg/50 mL concentrated injection, 50 mL vial 146598 180961000036109 Epirubicin Hydrochloride (Act) 100 mg/50 mL concentrated injection, 50 mL vial 180501000036104 Epirubicin Hydrochloride (Act) 100 mg/50 mL concentrated injection, 50 mL vial 47661000168107 Epirubicin Hydrochloride (Act) 47661000168107 Epirubicin Hydrochloride (Act) 26804011000036109 epirubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22188011000036109 epirubicin hydrochloride 100 mg/50 mL injection, vial 21230011000036100 epirubicin +660281000168103 Isotretinoin (AN) 10 mg soft capsule, 60, blister pack 186339 660271000168101 Isotretinoin (AN) 10 mg soft capsule, 60 660261000168107 Isotretinoin (AN) 10 mg soft capsule 660251000168105 Isotretinoin (AN) 660251000168105 Isotretinoin (AN) 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +44322011000036100 Crixivan 400 mg hard capsule, 42, blister pack 66979 41789011000036107 Crixivan 400 mg hard capsule, 42 6329011000036102 Crixivan 400 mg hard capsule 3537011000036103 Crixivan 3537011000036103 Crixivan 46595011000036105 indinavir 400 mg capsule, 42 22855011000036102 indinavir 400 mg capsule 21424011000036107 indinavir +1043771000168103 Pryzex 10 mg film-coated tablet, 50, blister pack 178996 1043761000168109 Pryzex 10 mg film-coated tablet, 50 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043751000168107 olanzapine 10 mg tablet, 50 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +738421000168103 Protamine Sulphate (Sanofi-Aventis) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 27971 738411000168105 Protamine Sulphate (Sanofi-Aventis) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 738401000168107 Protamine Sulphate (Sanofi-Aventis) 50 mg/5 mL injection solution, 5 mL ampoule 738391000168105 Protamine Sulphate (Sanofi-Aventis) 738391000168105 Protamine Sulphate (Sanofi-Aventis) 145181000036103 protamine sulfate 50 mg/5 mL injection, 10 x 5 mL ampoules 143531000036107 protamine sulfate 50 mg/5 mL injection, ampoule 146521000036102 protamine sulfate +933215821000036109 Metformin Hydrochloride (Terry White Chemists) 500 mg film-coated tablet, 100, blister pack 174819 933203871000036105 Metformin Hydrochloride (Terry White Chemists) 500 mg film-coated tablet, 100 933196401000036107 Metformin Hydrochloride (Terry White Chemists) 500 mg film-coated tablet 9991000168106 Metformin Hydrochloride (Terry White Chemists) 9991000168106 Metformin Hydrochloride (Terry White Chemists) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +74788011000036101 Sandoglobulin 6 g powder for injection, 1 vial 13375 74275011000036106 Sandoglobulin 6 g powder for injection, 1 vial 73823011000036101 Sandoglobulin 6 g powder for injection, 6 g vial 63381000168106 Sandoglobulin 63381000168106 Sandoglobulin 75402011000036101 normal immunoglobulin 6 g injection, 1 vial 75041011000036106 normal immunoglobulin 6 g injection, vial 74965011000036103 normal immunoglobulin +747061000168103 Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials 173995 747051000168100 Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials 747041000168102 Granisetron (Sandoz) 1 mg/mL injection solution, vial 137251000036106 Granisetron (Sandoz) 137251000036106 Granisetron (Sandoz) 138911000036104 granisetron 1 mg/mL injection, 5 x 1 mL vials 137941000036104 granisetron 1 mg/mL injection, vial 21431011000036106 granisetron +751391000168102 Canesten Plus cream, 20 g, tube 192113 751381000168100 Canesten Plus cream, 20 g 715871000168102 Canesten Plus cream 119221000036100 Canesten Plus 119221000036100 Canesten Plus 751371000168103 hydrocortisone 1% + clotrimazole 1% cream, 20 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +77415011000036107 Bio Zinc film-coated tablet, 84, bottle 91611 76831011000036106 Bio Zinc film-coated tablet, 84 76197011000036100 Bio Zinc film-coated tablet 13091000168107 Bio Zinc 13091000168107 Bio Zinc 78335011000036102 zinc amino acid chelate 125 mg (zinc 25 mg) + magnesium (as phosphate pentahydrate) 25 mg + manganese amino acid chelate 20 mg (manganese 2 mg) + retinol acetate 860 microgram (2500 units) + pyridoxine hydrochloride 50 mg tablet, 84 77612011000036101 zinc amino acid chelate 125 mg (zinc 25 mg) + magnesium (as phosphate pentahydrate) 25 mg + manganese amino acid chelate 20 mg (manganese 2 mg) + retinol acetate 860 microgram (2500 units) + pyridoxine hydrochloride 50 mg tablet 77432011000036107 zinc amino acid chelate + magnesium phosphate pentahydrate + manganese amino acid chelate + retinol acetate + pyridoxine +1052041000168104 Palexia SR 100 mg modified release tablet, 30, blister pack 165346 1052031000168108 Palexia SR 100 mg modified release tablet, 30 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052021000168105 tapentadol 100 mg modified release tablet, 30 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +52699011000036107 Paracetamol Extra Plus (Guardian) uncoated tablet, 48, blister pack 114674 52522011000036101 Paracetamol Extra Plus (Guardian) uncoated tablet, 48 52403011000036109 Paracetamol Extra Plus (Guardian) uncoated tablet 52380011000036108 Paracetamol Extra Plus (Guardian) 52380011000036108 Paracetamol Extra Plus (Guardian) 52867011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 48 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +116661000036101 Rosuvastatin (GH) 20 mg film-coated tablet, 30, blister pack 183717 114951000036102 Rosuvastatin (GH) 20 mg film-coated tablet, 30 113581000036100 Rosuvastatin (GH) 20 mg film-coated tablet 112721000036104 Rosuvastatin (GH) 112721000036104 Rosuvastatin (GH) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +60736011000036105 Panadol Cold and Flu film-coated tablet, 24, blister pack 49566 56694011000036105 Panadol Cold and Flu film-coated tablet, 24 54037011000036107 Panadol Cold and Flu film-coated tablet 3791000168106 Panadol Cold and Flu 3791000168106 Panadol Cold and Flu 63924011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet, 24 62103011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +933212851000036106 Simvastatin (Auro) 40 mg film-coated tablet, 30, blister pack 150156 933202601000036109 Simvastatin (Auro) 40 mg film-coated tablet, 30 933194521000036106 Simvastatin (Auro) 40 mg film-coated tablet 16361000168106 Simvastatin (Auro) 16361000168106 Simvastatin (Auro) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +50406011000036109 Comfeel Seasorb Dressing (3705) 5 cm x 5 cm medicated dressing, 1, carton 49343011000036109 Comfeel Seasorb Dressing (3705) 5 cm x 5 cm medicated dressing, 1 48718011000036105 Comfeel Seasorb Dressing (3705) 5 cm x 5 cm medicated dressing 17491000168105 Comfeel Seasorb Dressing (3705) 17491000168105 Comfeel Seasorb Dressing (3705) 51322011000036100 dressing alginate superficial wound 5 cm x 5 cm dressing, 1 50885011000036105 dressing alginate superficial wound 5 cm x 5 cm dressing 50715011000036105 dressing alginate superficial wound +939731000168109 Celebrex 400 mg hard capsule, 5, blister pack 101341 939721000168106 Celebrex 400 mg hard capsule, 5 939701000168102 Celebrex 400 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 939711000168104 celecoxib 400 mg capsule, 5 939691000168102 celecoxib 400 mg capsule 21566011000036101 celecoxib +87192011000036102 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 63484 87129011000036101 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 87075011000036106 Microgynon 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +87192011000036102 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 63484 87129011000036101 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 87076011000036104 Microgynon 20 ED (inert substance) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +20372011000036104 Atacand Plus 16/12.5 uncoated tablet, 30, blister pack 76646 13580011000036106 Atacand Plus 16/12.5 uncoated tablet, 30 6863011000036105 Atacand Plus 16/12.5 uncoated tablet 21151000168109 Atacand Plus 16/12.5 21151000168109 Atacand Plus 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +876661000168107 Briviact 50 mg film-coated tablet, 14, blister pack 243797 876651000168105 Briviact 50 mg film-coated tablet, 14 876631000168104 Briviact 50 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876641000168108 brivaracetam 50 mg tablet, 14 876621000168102 brivaracetam 50 mg tablet 876401000168109 brivaracetam +1085391000168106 Aerodiol 150 microgram/actuation nasal spray, 60 actuations, pump pack 83232 13908011000036103 Aerodiol 150 microgram/actuation nasal spray, 60 actuations 7194011000036102 Aerodiol 150 microgram/actuation nasal spray, actuation 3936011000036106 Aerodiol 3936011000036106 Aerodiol 28001011000036103 estradiol hemihydrate 150 microgram/actuation nasal spray, 60 actuations 23324011000036108 estradiol hemihydrate 150 microgram/actuation nasal spray, actuation 21238011000036103 estradiol +44057011000036103 Xylocaine 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 48362 41544011000036102 Xylocaine 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 40052011000036103 Xylocaine 2% (100 mg/5 mL) injection solution, 5 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 46391011000036105 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, 5 x 5 mL ampoules 45126011000036100 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +21052011000036108 Hepsera 10 mg tablet, 30, bottle 96916 14197011000036103 Hepsera 10 mg tablet, 30 7478011000036104 Hepsera 10 mg tablet 3787011000036107 Hepsera 3787011000036107 Hepsera 28204011000036109 adefovir dipivoxil 10 mg tablet, 30 23516011000036105 adefovir dipivoxil 10 mg tablet 32653011000036109 adefovir +21173011000036108 Pentasa 1 g modified release granules, 100 sachets 99125 14314011000036104 Pentasa 1 g modified release granules, 100 sachets 7600011000036109 Pentasa 1 g modified release granules, sachet 3593011000036100 Pentasa 3593011000036100 Pentasa 28305011000036102 mesalazine 1 g modified release granules, 100 sachets 23619011000036106 mesalazine 1 g modified release granules, sachet 21351011000036101 mesalazine +21173011000036108 Pentasa 1 g modified release granules, 100 sachets 161063 14314011000036104 Pentasa 1 g modified release granules, 100 sachets 7600011000036109 Pentasa 1 g modified release granules, sachet 3593011000036100 Pentasa 3593011000036100 Pentasa 28305011000036102 mesalazine 1 g modified release granules, 100 sachets 23619011000036106 mesalazine 1 g modified release granules, sachet 21351011000036101 mesalazine +933230261000036102 Dexamethasone Phosphate (DBL) 4 mg/mL injection solution, 5 x 1 mL ampoules 16374 933224141000036102 Dexamethasone Phosphate (DBL) 4 mg/mL injection solution, 5 x 1 mL ampoules 4595011000036102 Dexamethasone Phosphate (DBL) 4 mg/mL injection solution, ampoule 3506011000036109 Dexamethasone Phosphate (DBL) 3506011000036109 Dexamethasone Phosphate (DBL) 933224151000036104 dexamethasone phosphate 4 mg/mL injection, 5 x 1 mL ampoules 22299011000036104 dexamethasone phosphate 4 mg/mL injection, ampoule 21511011000036107 dexamethasone phosphate +20954011000036103 Levemir Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 141441 14109011000036107 Levemir Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 7386011000036101 Levemir Penfill 100 units/mL injection solution, 3 mL cartridge 57061000168104 Levemir Penfill 57061000168104 Levemir Penfill 28156011000036107 insulin detemir 100 units/mL injection, 5 x 3 mL cartridges 23465011000036106 insulin detemir 100 units/mL injection, cartridge 21764011000036105 insulin detemir +20954011000036103 Levemir Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 95210 14109011000036107 Levemir Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 7386011000036101 Levemir Penfill 100 units/mL injection solution, 3 mL cartridge 57061000168104 Levemir Penfill 57061000168104 Levemir Penfill 28156011000036107 insulin detemir 100 units/mL injection, 5 x 3 mL cartridges 23465011000036106 insulin detemir 100 units/mL injection, cartridge 21764011000036105 insulin detemir +948391000168102 Lobivon 5 mg tablet, 28, blister pack 148883 948381000168100 Lobivon 5 mg tablet, 28 948371000168103 Lobivon 5 mg tablet 942981000168102 Lobivon 942981000168102 Lobivon 83487011000036107 nebivolol 5 mg tablet, 28 83431011000036105 nebivolol 5 mg tablet 83418011000036105 nebivolol +19675011000036102 Adalat Oros 20 mg modified release tablet, 30, blister pack 60101 12937011000036102 Adalat Oros 20 mg modified release tablet, 30 6227011000036101 Adalat Oros 20 mg modified release tablet 28961000168100 Adalat Oros 28961000168100 Adalat Oros 27452011000036102 nifedipine 20 mg modified release tablet, 30 22799011000036109 nifedipine 20 mg modified release tablet 21241011000036108 nifedipine +43573011000036105 Sevoflurane (Abbott) 1 mL/mL inhalation solution, 250 mL, bottle 123857 41308011000036101 Sevoflurane (Abbott) 1 mL/mL inhalation solution, 250 mL 39882011000036106 Sevoflurane (Abbott) 1 mL/mL inhalation solution 39683011000036106 Sevoflurane (Abbott) 39683011000036106 Sevoflurane (Abbott) 46421011000036109 sevoflurane 1 mL/mL inhalation solution, 250 mL 45144011000036106 sevoflurane 1 mL/mL inhalation solution 44873011000036109 sevoflurane +77173011000036104 Glucosamine (Blackmores) 500 mg film-coated tablet, 200, bottle 124442 76599011000036101 Glucosamine (Blackmores) 500 mg film-coated tablet, 200 76055011000036108 Glucosamine (Blackmores) 500 mg film-coated tablet 75990011000036101 Glucosamine (Blackmores) 75990011000036101 Glucosamine (Blackmores) 78153011000036109 glucosamine 500 mg tablet, 200 77515011000036103 glucosamine 500 mg tablet 69813011000036107 glucosamine +1086471000168107 Hayfever Prevention and Relief (Pharmacy Choice) 50 microgram/actuation nasal spray, 140 actuations, pump pack 280064 1086461000168101 Hayfever Prevention and Relief (Pharmacy Choice) 50 microgram/actuation nasal spray, 140 actuations 1086431000168109 Hayfever Prevention and Relief (Pharmacy Choice) 50 microgram/actuation nasal spray, actuation 1086421000168106 Hayfever Prevention and Relief (Pharmacy Choice) 1086421000168106 Hayfever Prevention and Relief (Pharmacy Choice) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +1094031000168109 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 1.25 L, pump pack 281339 1094021000168106 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 1.25 L 1093961000168103 Antimicrobial Hand Sanitiser (Elyptol) 70% gel 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1094011000168104 ethanol 70% gel, 1.25 L 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +868081000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 16847 868071000168102 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 868051000168106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 10581000168107 Dianeal PD-4 with Glucose 2.5% 10581000168107 Dianeal PD-4 with Glucose 2.5% 868061000168108 glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 868041000168109 glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +807061000168108 Perindopril Arginine/Amlodipine 5/10 (Chemmart) uncoated tablet, 30, blister pack 224302 807041000168109 Perindopril Arginine/Amlodipine 5/10 (Chemmart) uncoated tablet, 30 807031000168100 Perindopril Arginine/Amlodipine 5/10 (Chemmart) uncoated tablet 806991000168100 Perindopril Arginine/Amlodipine 5/10 (Chemmart) 806991000168100 Perindopril Arginine/Amlodipine 5/10 (Chemmart) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +725591000168109 PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches 725581000168106 PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches 725571000168108 PKU Cooler 10 Purple oral liquid solution, 87 mL pouch 3521000168101 PKU Cooler 10 3521000168101 PKU Cooler 10 725541000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL pouches 725521000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +933247541000036100 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet, 100, blister pack 175930 933244401000036106 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet, 100 933241841000036109 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 79202011000036107 bisoprolol fumarate 2.5 mg tablet, 100 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +1076851000168105 Nystatin Drops (Amcal) 100 000 units/mL oral liquid suspension, 24 mL, bottle 211170 1076841000168108 Nystatin Drops (Amcal) 100 000 units/mL oral liquid suspension, 24 mL 1076831000168104 Nystatin Drops (Amcal) 100 000 units/mL oral liquid suspension 1076821000168102 Nystatin Drops (Amcal) 1076821000168102 Nystatin Drops (Amcal) 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +87705011000036100 Carvedilol (Apo) 25 mg film-coated tablet, 60, blister pack 123840 87416011000036101 Carvedilol (Apo) 25 mg film-coated tablet, 60 87298011000036102 Carvedilol (Apo) 25 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +905531000168105 Farydak 20 mg hard capsule, 24, blister pack 230845 905521000168107 Farydak 20 mg hard capsule, 24 905441000168102 Farydak 20 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 905511000168100 panobinostat 20 mg capsule, 24 905431000168106 panobinostat 20 mg capsule 905421000168108 panobinostat +948361000168109 Doxiris 100 mg film-coated tablet, 21, blister pack 148806 948351000168107 Doxiris 100 mg film-coated tablet, 21 948321000168104 Doxiris 100 mg film-coated tablet 946521000168107 Doxiris 946521000168107 Doxiris 33813011000036104 doxycycline 100 mg tablet, 21 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +20689011000036109 Mitozantrone (Mayne Pharma) 20 mg/10 mL concentrated injection, 10 mL vial 82469 13868011000036107 Mitozantrone (Mayne Pharma) 20 mg/10 mL concentrated injection, 10 mL vial 7155011000036106 Mitozantrone (Mayne Pharma) 20 mg/10 mL concentrated injection, 10 mL vial 3845011000036105 Mitozantrone (Mayne Pharma) 3845011000036105 Mitozantrone (Mayne Pharma) 27985011000036103 mitozantrone 20 mg/10 mL injection, 10 mL vial 23309011000036101 mitozantrone 20 mg/10 mL injection, vial 21652011000036102 mitozantrone +1098281000168106 Azolast 5 mg/100 mL injection solution, 100 mL bag 182212 1098271000168108 Azolast 5 mg/100 mL injection solution, 100 mL bag 1098261000168102 Azolast 5 mg/100 mL injection solution, 100 mL bag 1098241000168101 Azolast 1098241000168101 Azolast 731451000168100 zoledronic acid 5 mg/100 mL injection, 100 mL bag 731431000168106 zoledronic acid 5 mg/100 mL injection, bag 21790011000036102 zoledronic acid +52745011000036106 Fexal 60 mg film-coated tablet, 20, blister pack 140283 52557011000036100 Fexal 60 mg film-coated tablet, 20 52418011000036101 Fexal 60 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 27686011000036106 fexofenadine hydrochloride 60 mg tablet, 20 23023011000036105 fexofenadine hydrochloride 60 mg tablet 21394011000036108 fexofenadine +933211551000036104 Ceprotin 1000 IU (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 104538 933200161000036102 Ceprotin 1000 IU (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 645781000168105 Ceprotin (inert substance) diluent, 10 mL vial 59211000168103 Ceprotin 1000 IU 36281000168103 Ceprotin 933200171000036105 protein C 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +933211551000036104 Ceprotin 1000 IU (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 104538 933200161000036102 Ceprotin 1000 IU (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 933194291000036107 Ceprotin 1000 IU (protein C 1000 units) powder for injection, 1000 units vial 59211000168103 Ceprotin 1000 IU 59211000168103 Ceprotin 1000 IU 933200171000036105 protein C 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 933194301000036106 protein C 1000 units injection, vial 933216261000036109 protein C +925193011000036104 Gabacor 800 mg film-coated tablet, 100, blister pack 156104 924730011000036100 Gabacor 800 mg film-coated tablet, 100 924440011000036106 Gabacor 800 mg film-coated tablet 924388011000036109 Gabacor 924388011000036109 Gabacor 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +13061000036107 Quetiapine (Terry White Chemists) 200 mg film-coated tablet, 60, blister pack 166076 8131000036105 Quetiapine (Terry White Chemists) 200 mg film-coated tablet, 60 3581000036109 Quetiapine (Terry White Chemists) 200 mg film-coated tablet 491000036108 Quetiapine (Terry White Chemists) 491000036108 Quetiapine (Terry White Chemists) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +933212761000036104 Sertraline (Auro) 100 mg film-coated tablet, 30, blister pack 149401 933202491000036103 Sertraline (Auro) 100 mg film-coated tablet, 30 933195441000036101 Sertraline (Auro) 100 mg film-coated tablet 30901000168102 Sertraline (Auro) 30901000168102 Sertraline (Auro) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +20810011000036109 Famotidine (Chemmart) 20 mg film-coated tablet, 60, blister pack 91509 13973011000036102 Famotidine (Chemmart) 20 mg film-coated tablet, 60 7259011000036105 Famotidine (Chemmart) 20 mg film-coated tablet 3154011000036102 Famotidine (Chemmart) 3154011000036102 Famotidine (Chemmart) 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +1017961000168105 Valaciclovir 1000 (Apotex) 1 g film-coated tablet, 21, blister pack 158912 1017951000168108 Valaciclovir 1000 (Apotex) 1 g film-coated tablet, 21 1017861000168103 Valaciclovir 1000 (Apotex) 1 g film-coated tablet 1017851000168100 Valaciclovir 1000 (Apotex) 1017851000168100 Valaciclovir 1000 (Apotex) 51811000036105 valaciclovir 1 g tablet, 21 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +14431000036109 Atorvastatin (Pfizer) 80 mg film-coated tablet, 30, blister pack 182952 8201000036108 Atorvastatin (Pfizer) 80 mg film-coated tablet, 30 2061000036103 Atorvastatin (Pfizer) 80 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1026511000168106 Pregabalin (Amneal) 75 mg hard capsule, 60, bottle 235842 1026401000168107 Pregabalin (Amneal) 75 mg hard capsule, 60 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +82854011000036105 Eraxis 100 mg powder for injection, 1 vial 134398 82762011000036109 Eraxis 100 mg powder for injection, 1 vial 82673011000036103 Eraxis 100 mg powder for injection, 100 mg vial 82657011000036105 Eraxis 82657011000036105 Eraxis 82983011000036109 anidulafungin 100 mg injection, 1 vial 82921011000036104 anidulafungin 100 mg injection, vial 82919011000036105 anidulafungin +892691000168105 Idelvion (1 x 500 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 259938 892681000168107 Idelvion (1 x 500 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 887811000168104 Idelvion (inert substance) diluent, 2.5 mL vial 887771000168104 Idelvion 887771000168104 Idelvion 892671000168109 albutrepenonacog alfa 500 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 633571000168100 inert substance diluent, 2.5 mL vial 21220011000036103 inert substance +892691000168105 Idelvion (1 x 500 units vial, 1 x 2.5 mL inert diluent vial), 1 pack, composite pack 259938 892681000168107 Idelvion (1 x 500 units vial, 1 x 2.5 mL inert diluent vial), 1 pack 892661000168103 Idelvion (albutrepenonacog alfa 500 units) powder for injection, 500 units vial 887771000168104 Idelvion 887771000168104 Idelvion 892671000168109 albutrepenonacog alfa 500 units injection [1 vial] (&) inert substance diluent [2.5 mL vial], 1 pack 892651000168100 albutrepenonacog alfa 500 units injection, vial 887781000168101 albutrepenonacog alfa +914111000168109 Fluticasone Inhaler (Cipla) 250 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 270516 914101000168106 Fluticasone Inhaler (Cipla) 250 microgram/actuation pressurised inhalation, 120 actuations 914091000168101 Fluticasone Inhaler (Cipla) 250 microgram/actuation pressurised inhalation, actuation 913971000168100 Fluticasone Inhaler (Cipla) 913971000168100 Fluticasone Inhaler (Cipla) 27531011000036101 fluticasone propionate 250 microgram/actuation pressurised inhalation, 120 actuations 22871011000036101 fluticasone propionate 250 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +1043691000168108 Pryzex 10 mg film-coated tablet, 28, blister pack 178996 1043681000168105 Pryzex 10 mg film-coated tablet, 28 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +948271000168106 Ranitidine (GN) 150 mg film-coated tablet, 20, bottle 148524 933202191000036105 Ranitidine (GN) 150 mg film-coated tablet, 20 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1102551000168108 Rivastigmelon-15 13.3 mg/24 hours patch, 30, sachet 273560 1102541000168106 Rivastigmelon-15 13.3 mg/24 hours patch, 30 1102511000168107 Rivastigmelon-15 13.3 mg/24 hours patch 1102501000168109 Rivastigmelon-15 1102501000168109 Rivastigmelon-15 731071000168100 rivastigmine 13.3 mg/24 hours patch, 30 731051000168109 rivastigmine 13.3 mg/24 hours patch 21413011000036101 rivastigmine +689181000168101 Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll, carton 689171000168104 Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll 689151000168108 Leukoplast (1071) 2.5 cm x 2.5 m tape 32541000168106 Leukoplast (1071) 32541000168106 Leukoplast (1071) 689161000168105 tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll 689141000168106 tape plaster adhesive elastic 2.5 cm x 2.5 m tape 50730011000036106 tape plaster adhesive elastic +44541011000036106 Zomacton (1 x 1.33 mg vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 79589 41994011000036103 Zomacton (1 x 1.33 mg vial, 1 x 1 mL inert diluent vial), 1 pack 644691000168103 Zomacton (inert substance) diluent, 1 mL vial 39565011000036100 Zomacton 39565011000036100 Zomacton 46769011000036106 somatropin 1.33 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44541011000036106 Zomacton (1 x 1.33 mg vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 79589 41994011000036103 Zomacton (1 x 1.33 mg vial, 1 x 1 mL inert diluent vial), 1 pack 40307011000036107 Zomacton (somatropin 1.33 mg) powder for injection, 1.3 mg vial 39565011000036100 Zomacton 39565011000036100 Zomacton 46769011000036106 somatropin 1.33 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 45307011000036101 somatropin 1.33 mg injection, 1.3 mg vial 21295011000036100 somatropin +713851000168105 Levetiracetam (Auro) 250 mg film-coated tablet, 60, blister pack 182821 713841000168108 Levetiracetam (Auro) 250 mg film-coated tablet, 60 713831000168104 Levetiracetam (Auro) 250 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +729841000168102 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices 127116 729831000168106 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 729821000168108 adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL injection devices 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 21584011000036107 adalimumab +729841000168102 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices 199410 729831000168106 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 729821000168108 adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL injection devices 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 21584011000036107 adalimumab +948431000168107 Doxycycline (GA) 100 mg film-coated tablet, 7, bottle 148817 944851000168108 Doxycycline (GA) 100 mg film-coated tablet, 7 944841000168106 Doxycycline (GA) 100 mg film-coated tablet 944441000168108 Doxycycline (GA) 944441000168108 Doxycycline (GA) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +82181000036107 Reedos 100 mg tablet, 56, blister pack 187279 80671000036103 Reedos 100 mg tablet, 56 78841000036102 Reedos 100 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +61675011000036101 Dimetapp Chesty Cough Elixir oral liquid solution, 25 mL, bottle 97496 57597011000036105 Dimetapp Chesty Cough Elixir oral liquid solution, 25 mL 54358011000036108 Dimetapp Chesty Cough Elixir oral liquid solution, 10 mL 38781000168105 Dimetapp Chesty Cough Elixir 38781000168105 Dimetapp Chesty Cough Elixir 63948011000036102 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 25 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +1026591000168102 Esomeprazole (Pharmacor) 40 mg enteric tablet, 7, blister pack 210850 1026581000168100 Esomeprazole (Pharmacor) 40 mg enteric tablet, 7 1026571000168103 Esomeprazole (Pharmacor) 40 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +83384011000036108 Lisinopril (GA) 5 mg uncoated tablet, 30, blister pack 106500 83303011000036107 Lisinopril (GA) 5 mg uncoated tablet, 30 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +43740011000036100 Dacarbazine (Sandoz) 100 mg powder for injection, 10 vials 117567 41195011000036101 Dacarbazine (Sandoz) 100 mg powder for injection, 10 vials 39909011000036106 Dacarbazine (Sandoz) 100 mg powder for injection, 100 mg vial 39591011000036100 Dacarbazine (Sandoz) 39591011000036100 Dacarbazine (Sandoz) 46157011000036101 dacarbazine 100 mg injection, 10 vials 45012011000036101 dacarbazine 100 mg injection, vial 44890011000036108 dacarbazine +30610011000036100 Bgramin Sugar Free 125 mg/5 mL powder for oral liquid, 100 mL, bottle 59876 30588011000036107 Bgramin Sugar Free 125 mg/5 mL powder for oral liquid, 100 mL 6216011000036107 Bgramin Sugar Free 125 mg/5 mL powder for oral liquid, 5 mL 2974011000036106 Bgramin 2974011000036106 Bgramin 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +161391000036106 Prontosan Wound irrigation solution, 6 x 40 mL ampoules 161341000036100 Prontosan Wound irrigation solution, 6 x 40 mL ampoules 161301000036103 Prontosan Wound irrigation solution, 40 mL ampoule 56271000168102 Prontosan Wound 56271000168102 Prontosan Wound 161351000036102 betaine 0.1% + polyaminopropyl biguanide 0.1% solution, 6 x 40 mL ampoules 161311000036101 betaine 0.1% + polyaminopropyl biguanide 0.1% solution, ampoule 111251000036105 betaine + polyaminopropyl biguanide +46171000036104 Kapanol 20 mg modified release capsule, 28, blister pack 48134 43811000036107 Kapanol 20 mg modified release capsule, 28 4575011000036108 Kapanol 20 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 43821000036100 morphine sulfate pentahydrate 20 mg modified release capsule, 28 22553011000036104 morphine sulfate pentahydrate 20 mg modified release capsule 21252011000036100 morphine +1095151000168103 Ibuprofen (Genpar) 200 mg film-coated tablet, 10, blister pack 285310 1095141000168100 Ibuprofen (Genpar) 200 mg film-coated tablet, 10 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +914031000168100 Fluticasone Inhaler (Cipla) 125 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 270515 914021000168103 Fluticasone Inhaler (Cipla) 125 microgram/actuation pressurised inhalation, 120 actuations 914011000168105 Fluticasone Inhaler (Cipla) 125 microgram/actuation pressurised inhalation, actuation 913971000168100 Fluticasone Inhaler (Cipla) 913971000168100 Fluticasone Inhaler (Cipla) 27530011000036108 fluticasone propionate 125 microgram/actuation pressurised inhalation, 120 actuations 22870011000036108 fluticasone propionate 125 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +82021000036107 Cyproterone Acetate (PS) 50 mg uncoated tablet, 20, blister pack 184226 80571000036104 Cyproterone Acetate (PS) 50 mg uncoated tablet, 20 78481000036108 Cyproterone Acetate (PS) 50 mg uncoated tablet 77781000036100 Cyproterone Acetate (PS) 77781000036100 Cyproterone Acetate (PS) 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +60235011000036105 Vicks Cough Syrup honey 6.67 mg/5 mL oral liquid solution, 120 mL, bottle 134301 56194011000036109 Vicks Cough Syrup honey 6.67 mg/5 mL oral liquid solution, 120 mL 53834011000036100 Vicks Cough Syrup honey 6.67 mg/5 mL oral liquid solution, 5 mL 53258011000036103 Vicks Cough Syrup 53258011000036103 Vicks Cough Syrup 63961011000036102 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid, 120 mL 62110011000036100 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid 61744011000036109 dextromethorphan +1121401000168107 Quetiapine XR (Medis) 50 mg modified release tablet, 60, blister pack 241757 1121391000168105 Quetiapine XR (Medis) 50 mg modified release tablet, 60 1121341000168102 Quetiapine XR (Medis) 50 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +755501000168102 Ibavyr 400 mg coated tablet, 28, bottle 222627 755491000168109 Ibavyr 400 mg coated tablet, 28 755471000168108 Ibavyr 400 mg coated tablet 755451000168104 Ibavyr 755451000168104 Ibavyr 755481000168106 ribavirin 400 mg tablet, 28 755461000168102 ribavirin 400 mg tablet 21714011000036106 ribavirin +902481000168103 Candesartan (GPPL) 8 mg uncoated tablet, 30, bottle 195465 902421000168102 Candesartan (GPPL) 8 mg uncoated tablet, 30 902411000168109 Candesartan (GPPL) 8 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +17866011000036104 Simvastatin (GenRx) 80 mg film-coated tablet, 30, blister pack 131589 11299011000036104 Simvastatin (GenRx) 80 mg film-coated tablet, 30 5734011000036102 Simvastatin (GenRx) 80 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +17866011000036104 Simvastatin (GenRx) 80 mg film-coated tablet, 30, blister pack 104524 11299011000036104 Simvastatin (GenRx) 80 mg film-coated tablet, 30 5734011000036102 Simvastatin (GenRx) 80 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +60949011000036109 Claratyne 10 mg effervescent tablet, 30, tube 62135 56892011000036105 Claratyne 10 mg effervescent tablet, 30 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 86571000036101 loratadine 10 mg effervescent tablet, 30 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +1008971000168101 Rivastigmine (Apotex) 1.5 mg hard capsule, 28, blister pack 160563 1008961000168107 Rivastigmine (Apotex) 1.5 mg hard capsule, 28 1008901000168106 Rivastigmine (Apotex) 1.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002651000168101 rivastigmine 1.5 mg capsule, 28 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +931395011000036107 Paracetamol Children's 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 100 mL, bottle 117615 930567011000036105 Paracetamol Children's 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 100 mL 929940011000036108 Paracetamol Children's 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 5 mL 37121000168109 Paracetamol Children's 1 to 5 Years (Chemists' Own) 37121000168109 Paracetamol Children's 1 to 5 Years (Chemists' Own) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +758381000168108 Otocomb Otic ear ointment, 5 g, tube 56460 758371000168105 Otocomb Otic ear ointment, 5 g 758361000168104 Otocomb Otic ear ointment 32951000168102 Otocomb Otic 32951000168102 Otocomb Otic 758281000168104 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g 758261000168108 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment 758201000168107 triamcinolone + neomycin + gramicidin + nystatin +716591000168108 Omepro 20 mg enteric capsule, 30, blister pack 149516 716581000168105 Omepro 20 mg enteric capsule, 30 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +68756011000036108 Nicotinell Fruit 2 mg chewing gum, 168, blister pack 126013 66685011000036106 Nicotinell Fruit 2 mg chewing gum, 168 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71511011000036103 nicotine 2 mg gum, 168 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +69061011000036109 Enalapril Maleate (Generic Health) 5 mg uncoated tablet, 30, blister pack 142949 66863011000036101 Enalapril Maleate (Generic Health) 5 mg uncoated tablet, 30 65285011000036106 Enalapril Maleate (Generic Health) 5 mg uncoated tablet 65000011000036109 Enalapril Maleate (Generic Health) 65000011000036109 Enalapril Maleate (Generic Health) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +81160011000036102 Daktozin ointment, 30 g, tube 47360 80663011000036103 Daktozin ointment, 30 g 80230011000036103 Daktozin ointment 80105011000036104 Daktozin 80105011000036104 Daktozin 81721011000036105 miconazole nitrate 0.25% + zinc oxide 15% ointment, 30 g 81300011000036106 miconazole nitrate 0.25% + zinc oxide 15% ointment 81225011000036104 miconazole + zinc oxide +20827011000036101 Pegasys-RBV (4 x 180 microgram syringes, 112 x 200 mg tablets), 1 pack, composite pack 91843 13990011000036103 Pegasys-RBV (4 x 180 microgram syringes, 112 x 200 mg tablets), 1 pack 7272011000036103 Pegasys 180 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28055011000036106 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [112], 1 pack 23371011000036109 peginterferon alfa-2a 180 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20827011000036101 Pegasys-RBV (4 x 180 microgram syringes, 112 x 200 mg tablets), 1 pack, composite pack 91843 13990011000036103 Pegasys-RBV (4 x 180 microgram syringes, 112 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28055011000036106 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [112], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +833361000168105 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices 235962 833351000168108 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices 833271000168107 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose 137231000036103 Bydureon 137231000036103 Bydureon 833341000168106 exenatide 2 mg/dose + inert substance modified release injection, 4 dual chamber devices 833261000168101 exenatide 2 mg/dose + inert substance modified release injection, dose 833251000168103 exenatide + inert substance +1009011000168102 Rivastigmine (Apotex) 1.5 mg hard capsule, 112, blister pack 160563 1009001000168100 Rivastigmine (Apotex) 1.5 mg hard capsule, 112 1008901000168106 Rivastigmine (Apotex) 1.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002691000168106 rivastigmine 1.5 mg capsule, 112 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +181581000036104 Candesartan Cilexetil (Chemmart) 8 mg uncoated tablet, 30, blister pack 210563 181121000036107 Candesartan Cilexetil (Chemmart) 8 mg uncoated tablet, 30 180481000036109 Candesartan Cilexetil (Chemmart) 8 mg uncoated tablet 180271000036106 Candesartan Cilexetil (Chemmart) 180271000036106 Candesartan Cilexetil (Chemmart) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +962941000168101 Arflox 500 mg film-coated tablet, 14, blister pack 92365 962931000168105 Arflox 500 mg film-coated tablet, 14 962861000168109 Arflox 500 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +43930011000036109 Ozlodip 10 mg uncoated tablet, 30, blister pack 142081 41422011000036101 Ozlodip 10 mg uncoated tablet, 30 39971011000036103 Ozlodip 10 mg uncoated tablet 39615011000036105 Ozlodip 39615011000036105 Ozlodip 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +712341000168107 Oxytocin (GH) 10 units/mL injection solution, 5 x 1 mL ampoules 207986 712331000168103 Oxytocin (GH) 10 units/mL injection solution, 5 x 1 mL ampoules 712321000168101 Oxytocin (GH) 10 units/mL injection solution, ampoule 712101000168107 Oxytocin (GH) 712101000168107 Oxytocin (GH) 38686011000036102 oxytocin 10 units/mL injection, 5 x 1 mL ampoules 37925011000036105 oxytocin 10 units/mL injection, ampoule 37765011000036106 oxytocin +1042171000168105 Nicotine (Amcal) 2 mg lozenge, 108, blister pack 213239 1042161000168104 Nicotine (Amcal) 2 mg lozenge, 108 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 898651000168102 nicotine 2 mg lozenge, 108 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +694961000168109 Sildenafil (Sandoz) 25 mg uncoated tablet, 4, blister pack 148570 694951000168107 Sildenafil (Sandoz) 25 mg uncoated tablet, 4 694941000168105 Sildenafil (Sandoz) 25 mg uncoated tablet 694771000168100 Sildenafil (Sandoz) 694771000168100 Sildenafil (Sandoz) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +1102711000168101 Aspramide 5 mg film-coated tablet, 25, blister pack 196499 1102701000168104 Aspramide 5 mg film-coated tablet, 25 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102691000168104 metoclopramide hydrochloride 5 mg tablet, 25 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +945581000168103 Depocyt 50 mg/5 mL modified release injection, 5 mL vial 99941 945571000168101 Depocyt 50 mg/5 mL modified release injection, 5 mL vial 945551000168105 Depocyt 50 mg/5 mL modified release injection, 5 mL vial 945531000168104 Depocyt 945531000168104 Depocyt 945561000168107 cytarabine 50 mg/5 mL modified release injection, 5 mL vial 945541000168108 cytarabine 50 mg/5 mL modified release injection, vial 21916011000036109 cytarabine +948521000168108 Pantoprazole (HX) 40 mg powder for injection, 10 vials 147379 948511000168101 Pantoprazole (HX) 40 mg powder for injection, 10 vials 948471000168105 Pantoprazole (HX) 40 mg powder for injection, 40 mg vial 948461000168104 Pantoprazole (HX) 948461000168104 Pantoprazole (HX) 948501000168104 pantoprazole 40 mg injection, 10 vials 45023011000036104 pantoprazole 40 mg injection, vial 21563011000036107 pantoprazole +19272011000036107 Diflucan 50 mg hard capsule, 28, blister pack 48399 12562011000036102 Diflucan 50 mg hard capsule, 28 5269011000036101 Diflucan 50 mg hard capsule 11811000168107 Diflucan 11811000168107 Diflucan 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +69119011000036102 Strepsils honey and lemon lozenge, 3, blister pack 14975 66920011000036108 Strepsils honey and lemon lozenge, 3 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71523011000036106 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 3 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1104081000168103 Quetiapine (Pharmacor) 150 mg film-coated tablet, 20, blister pack 204838 1104071000168101 Quetiapine (Pharmacor) 150 mg film-coated tablet, 20 653431000168101 Quetiapine (Pharmacor) 150 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 853211000168100 quetiapine 150 mg tablet, 20 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +863551000168105 Medi Quattro First Aid cream, 50 g, tube 137493 863541000168108 Medi Quattro First Aid cream, 50 g 863531000168104 Medi Quattro First Aid cream 8281000168109 Medi Quattro First Aid 8281000168109 Medi Quattro First Aid 861331000168108 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream, 50 g 861311000168103 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +59826011000036108 Clotrimazole (Your Pharmacy) 1% cream, 50 g, tube 114894 55788011000036108 Clotrimazole (Your Pharmacy) 1% cream, 50 g 53675011000036109 Clotrimazole (Your Pharmacy) 1% cream 53455011000036108 Clotrimazole (Your Pharmacy) 53455011000036108 Clotrimazole (Your Pharmacy) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +18108011000036100 Citalopram (GenRx) 20 mg film-coated tablet, 28, blister pack 101159 11177011000036100 Citalopram (GenRx) 20 mg film-coated tablet, 28 4996011000036104 Citalopram (GenRx) 20 mg film-coated tablet 3295011000036109 Citalopram (GenRx) 3295011000036109 Citalopram (GenRx) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1109841000168104 Nicotinell Tropical Fruit 4 mg chewing gum, 12, blister pack 279618 1109831000168108 Nicotinell Tropical Fruit 4 mg chewing gum, 12 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +50579011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet, 28, blister pack 134853 49625011000036103 Clarithromycin (GenRx) 250 mg film-coated tablet, 28 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 51517011000036109 clarithromycin 250 mg tablet, 28 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +725271000168105 MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches 725261000168104 MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches 725241000168103 MMA/PA Cooler 15 oral liquid solution, 130 mL pouch 50411000168108 MMA/PA Cooler 15 50411000168108 MMA/PA Cooler 15 725251000168101 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 30 x 130 mL pouches 725231000168107 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 130 mL pouch 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +807381000168101 Perindopril Arginine/Amlodipine 10/5 (Chemmart) uncoated tablet, 30, blister pack 224311 807341000168106 Perindopril Arginine/Amlodipine 10/5 (Chemmart) uncoated tablet, 30 807321000168100 Perindopril Arginine/Amlodipine 10/5 (Chemmart) uncoated tablet 807281000168105 Perindopril Arginine/Amlodipine 10/5 (Chemmart) 807281000168105 Perindopril Arginine/Amlodipine 10/5 (Chemmart) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +818901000168109 Quetiapine XR (Apo) 400 mg modified release tablet, 100, blister pack 226800 818891000168105 Quetiapine XR (Apo) 400 mg modified release tablet, 100 818821000168108 Quetiapine XR (Apo) 400 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51539011000036109 quetiapine 400 mg modified release tablet, 100 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +43723011000036105 Sumagran 100 mg film-coated tablet, 2, blister pack 117727 41200011000036105 Sumagran 100 mg film-coated tablet, 2 39787011000036106 Sumagran 100 mg film-coated tablet 32986011000036107 Sumagran 32986011000036107 Sumagran 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +18788011000036106 Gabaran 600 mg film-coated tablet, 50, blister pack 121833 11694011000036102 Gabaran 600 mg film-coated tablet, 50 4826011000036103 Gabaran 600 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 26738011000036105 gabapentin 600 mg tablet, 50 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +68877011000036106 Sodium Chloride (Phebra) 0.9% (450 mg/50 mL) injection solution, 50 mL vial 11975 66649011000036103 Sodium Chloride (Phebra) 0.9% (450 mg/50 mL) injection solution, 50 mL vial 65483011000036106 Sodium Chloride (Phebra) 0.9% (450 mg/50 mL) injection solution, 50 mL vial 64963011000036103 Sodium Chloride (Phebra) 64963011000036103 Sodium Chloride (Phebra) 71359011000036108 sodium chloride 0.9% (450 mg/50 mL) injection, 50 mL vial 69972011000036104 sodium chloride 0.9% (450 mg/50 mL) injection, vial 21308011000036103 sodium chloride +945621000168103 Invast 80 mg film-coated tablet, 30, bottle 100263 945611000168105 Invast 80 mg film-coated tablet, 30 945601000168107 Invast 80 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +1075321000168101 Atenolol (RBX) 25 mg film-coated tablet, 60, blister pack 197757 1075311000168108 Atenolol (RBX) 25 mg film-coated tablet, 60 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029731000168101 atenolol 25 mg tablet, 60 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +1085351000168101 Otrivin Adult menthol 0.1% nasal spray, 10 mL, pump pack 99690 74436011000036101 Otrivin Adult menthol 0.1% nasal spray, 10 mL 73951011000036105 Otrivin Adult menthol 0.1% nasal spray 41971000168104 Otrivin Adult 41971000168104 Otrivin Adult 75532011000036102 xylometazoline hydrochloride 0.1% nasal spray, 10 mL 75123011000036102 xylometazoline hydrochloride 0.1% nasal spray 61748011000036102 xylometazoline +69591011000036108 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 12 x 500 mL bottles 66696 67390011000036108 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 12 x 500 mL bottles 65641011000036100 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71925011000036102 glucose 5% (25 g/500 mL) injection, 12 x 500 mL bottles 70249011000036109 glucose 5% (25 g/500 mL) injection, bottle 21354011000036103 glucose +926949011000036106 Fexotabs 60 mg film-coated tablet, 20, blister pack 98161 926343011000036101 Fexotabs 60 mg film-coated tablet, 20 925774011000036104 Fexotabs 60 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 27686011000036106 fexofenadine hydrochloride 60 mg tablet, 20 23023011000036105 fexofenadine hydrochloride 60 mg tablet 21394011000036108 fexofenadine +965841000168103 Keppra 750 mg film-coated tablet, 60, blister pack 120510 965831000168107 Keppra 750 mg film-coated tablet, 60 965821000168109 Keppra 750 mg film-coated tablet 3677011000036106 Keppra 3677011000036106 Keppra 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +1049381000168101 Paramax Forte 500/30 tablet, 4, blister pack 220979 1049371000168104 Paramax Forte 500/30 tablet, 4 1049341000168106 Paramax Forte 500/30 tablet 1049251000168103 Paramax Forte 500/30 1049251000168103 Paramax Forte 500/30 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +933211231000036105 Roflo 750 mg film-coated tablet, 100, blister pack 125324 933200471000036101 Roflo 750 mg film-coated tablet, 100 933194351000036107 Roflo 750 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 87796011000036109 ciprofloxacin 750 mg tablet, 100 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +971601000168106 Lypralin 150 mg hard capsule, 20, bottle 235852 971591000168104 Lypralin 150 mg hard capsule, 20 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1055091000168100 Pecfent 100 microgram/actuation nasal spray, 4 x 8 actuations, pump packs 185934 1055081000168103 Pecfent 100 microgram/actuation nasal spray, 4 x 8 actuations 154891000036105 Pecfent 100 microgram/actuation nasal spray, actuation 154491000036107 Pecfent 154491000036107 Pecfent 1055071000168101 fentanyl 100 microgram/actuation nasal spray, 4 x 8 actuations 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +1017641000168103 Arcoxia 90 mg film-coated tablet, 10, blister pack 204147 1017631000168107 Arcoxia 90 mg film-coated tablet, 10 1017551000168102 Arcoxia 90 mg film-coated tablet 929823011000036107 Arcoxia 929823011000036107 Arcoxia 1017621000168109 etoricoxib 90 mg tablet, 10 1017541000168104 etoricoxib 90 mg tablet 931796011000036104 etoricoxib +69574011000036103 Agarol Vanilla 4.83 mL/15 mL oral liquid emulsion, 200 mL, bottle 62657 67374011000036106 Agarol Vanilla 4.83 mL/15 mL oral liquid emulsion, 200 mL 65634011000036103 Agarol Vanilla 4.83 mL/15 mL oral liquid emulsion, 15 mL 64959011000036105 Agarol 64959011000036105 Agarol 71914011000036109 liquid paraffin 4.83 mL/15 mL oral liquid, 200 mL 70245011000036107 liquid paraffin 4.83 mL/15 mL oral liquid 33623011000036103 liquid paraffin +798681000168106 Abyraz 10 mg uncoated tablet, 90, blister pack 159503 798671000168108 Abyraz 10 mg uncoated tablet, 90 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 798661000168102 aripiprazole 10 mg tablet, 90 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +752681000168104 Canesten Bifonazole Anti-Fungal 1% cream, 20 g, tube 179473 752671000168102 Canesten Bifonazole Anti-Fungal 1% cream, 20 g 752661000168108 Canesten Bifonazole Anti-Fungal 1% cream 752651000168106 Canesten Bifonazole Anti-Fungal 752651000168106 Canesten Bifonazole Anti-Fungal 63839011000036100 bifonazole 1% cream, 20 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +929700011000036106 MS Contin 60 mg modified release tablet, 28, blister pack 43087 929536011000036102 MS Contin 60 mg modified release tablet, 28 5761011000036108 MS Contin 60 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929757011000036102 morphine sulfate pentahydrate 60 mg modified release tablet, 28 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +84346011000036105 Stalevo 125/31.25/200 film-coated tablet, 10, bottle 160687 84039011000036103 Stalevo 125/31.25/200 film-coated tablet, 10 83665011000036103 Stalevo 125/31.25/200 film-coated tablet 2301000168106 Stalevo 125/31.25/200 2301000168106 Stalevo 125/31.25/200 84651011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 10 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +59797011000036100 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 30 g, tube 114309 55759011000036108 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 30 g 53720011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63128011000036101 bifonazole 1% gel, 30 g 61865011000036102 bifonazole 1% gel 21899011000036106 bifonazole +1043451000168100 Pryzex ODT 5 mg orally disintegrating tablet, 60, blister pack 179079 1043441000168102 Pryzex ODT 5 mg orally disintegrating tablet, 60 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043431000168106 olanzapine 5 mg orally disintegrating tablet, 60 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +73267011000036105 Odrik 4 mg hard capsule, 7, blister pack 134885 73067011000036104 Odrik 4 mg hard capsule, 7 72960011000036102 Odrik 4 mg hard capsule 3036011000036103 Odrik 3036011000036103 Odrik 73465011000036104 trandolapril 4 mg capsule, 7 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +844781000168104 Lovan 20 mg tablet, 7, blister pack 61080 844771000168102 Lovan 20 mg tablet, 7 844351000168105 Lovan 20 mg tablet 2938011000036102 Lovan 2938011000036102 Lovan 844761000168108 fluoxetine 20 mg tablet, 7 844301000168106 fluoxetine 20 mg tablet 21411011000036102 fluoxetine +60494011000036104 Benadryl PE for the Family Dry Cough and Nasal Congestion oral liquid solution, 100 mL, bottle 150510 56452011000036107 Benadryl PE for the Family Dry Cough and Nasal Congestion oral liquid solution, 100 mL 53925011000036109 Benadryl PE for the Family Dry Cough and Nasal Congestion oral liquid solution, 5 mL 20711000168104 Benadryl PE for the Family Dry Cough and Nasal Congestion 20711000168104 Benadryl PE for the Family Dry Cough and Nasal Congestion 63366011000036100 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 61928011000036107 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61803011000036104 dextromethorphan + phenylephrine +896721000168102 Letroz 2.5 mg film-coated tablet, 30, blister pack 203220 896711000168109 Letroz 2.5 mg film-coated tablet, 30 896701000168106 Letroz 2.5 mg film-coated tablet 896691000168106 Letroz 896691000168106 Letroz 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +60252011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 10 sachets 134660 56211011000036108 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 10 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63352011000036109 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 10 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +1095311000168101 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 60, blister pack 287307 1095301000168104 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 60 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1077321000168107 fexofenadine hydrochloride 180 mg tablet, 60 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +911141000168106 Cavstat 10 mg film-coated tablet, 100, blister pack 234485 911131000168102 Cavstat 10 mg film-coated tablet, 100 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911121000168100 rosuvastatin 10 mg tablet, 100 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +30461000036103 Rafen Plus film-coated tablet, 30, blister pack 178744 29031000036107 Rafen Plus film-coated tablet, 30 27111000036106 Rafen Plus film-coated tablet 26031000036103 Rafen Plus 26031000036103 Rafen Plus 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1092661000168102 Quitx Freshmint 4 mg chewing gum, 30, blister pack 192914 1092651000168104 Quitx Freshmint 4 mg chewing gum, 30 920993011000036107 Quitx Freshmint 4 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 927323011000036100 nicotine 4 mg gum, 30 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1040721000168106 Fludarabine (AS) 50 mg powder for injection, 1 vial 177783 1040711000168104 Fludarabine (AS) 50 mg powder for injection, 1 vial 1040701000168102 Fludarabine (AS) 50 mg powder for injection, 50 mg vial 1040691000168102 Fludarabine (AS) 1040691000168102 Fludarabine (AS) 79814011000036105 fludarabine phosphate 50 mg injection, 1 vial 39441011000036101 fludarabine phosphate 50 mg injection, vial 39430011000036109 fludarabine +60039011000036103 Avil Retard 75 mg modified release tablet, 30, blister pack 12394 56001011000036103 Avil Retard 75 mg modified release tablet, 30 53753011000036100 Avil Retard 75 mg modified release tablet 5261000168105 Avil Retard 5261000168105 Avil Retard 63189011000036102 pheniramine maleate 75 mg modified release tablet, 30 61881011000036101 pheniramine maleate 75 mg modified release tablet 61798011000036109 pheniramine +69545011000036100 Brevoxyl 4% cream, 40 g, tube 58220 67345011000036109 Brevoxyl 4% cream, 40 g 65621011000036103 Brevoxyl 4% cream 65066011000036106 Brevoxyl 65066011000036106 Brevoxyl 71890011000036105 benzoyl peroxide 4% cream, 40 g 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +50354011000036103 PKU Gel Raspberry powder for oral liquid, 30 x 20 g sachets 49524011000036105 PKU Gel Raspberry powder for oral liquid, 30 x 20 g sachets 262751000168101 PKU Gel Raspberry powder for oral liquid, 20 g sachet 1281000168104 PKU Gel 1281000168104 PKU Gel 51470011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 20 g sachets 242351000168109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 20 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +923822011000036103 Zolinza 100 mg capsule, 120, bottle 156430 923368011000036109 Zolinza 100 mg capsule, 120 923039011000036106 Zolinza 100 mg capsule 922915011000036104 Zolinza 922915011000036104 Zolinza 924166011000036104 vorinostat 100 mg capsule, 120 923977011000036106 vorinostat 100 mg capsule 923932011000036106 vorinostat +20902011000036101 Nardil 15 mg sugar coated tablet, 100, bottle 93600 14060011000036109 Nardil 15 mg sugar coated tablet, 100 7338011000036109 Nardil 15 mg sugar coated tablet 3801011000036100 Nardil 3801011000036100 Nardil 28115011000036107 phenelzine 15 mg tablet, 100 23424011000036100 phenelzine 15 mg tablet 21399011000036109 phenelzine +60840011000036109 Aspro Clear 300 mg effervescent tablet, 16, strip pack 58566 56796011000036107 Aspro Clear 300 mg effervescent tablet, 16 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 63574011000036100 aspirin 300 mg effervescent tablet, 16 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +1099651000168105 Crestat 5 mg film-coated tablet, 7, blister pack 183270 1099641000168108 Crestat 5 mg film-coated tablet, 7 1099611000168109 Crestat 5 mg film-coated tablet 1099501000168105 Crestat 1099501000168105 Crestat 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +712481000168105 XLYS, Low Try Maxamum powder for oral liquid, 500 g, can 712471000168107 XLYS, Low Try Maxamum powder for oral liquid, 500 g 712461000168101 XLYS, Low Try Maxamum powder for oral liquid 712421000168106 XLYS, Low Try Maxamum 712421000168106 XLYS, Low Try Maxamum 51439011000036103 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 500 g 50955011000036109 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +867761000168107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 16750 867751000168105 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 867731000168104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 867741000168108 glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 867721000168102 glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +794431000168104 Tacrolimus (Sandoz) 2 mg hard capsule, 14, blister pack 229757 794421000168102 Tacrolimus (Sandoz) 2 mg hard capsule, 14 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794411000168109 tacrolimus 2 mg capsule, 14 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +913801000168100 Albumex-5 25 g/500 mL injection solution, 500 mL vial 50620 913791000168101 Albumex-5 25 g/500 mL injection solution, 500 mL vial 913781000168104 Albumex-5 25 g/500 mL injection solution, 500 mL vial 913701000168107 Albumex-5 913701000168107 Albumex-5 877731000168105 albumin human 25 g/500 mL injection, 500 mL vial 877711000168100 albumin human 25 g/500 mL injection, vial 69754011000036102 albumin human +79639011000036109 Gliclazide MR (Apo) 30 mg modified release tablet, 100, bottle 151307 79487011000036109 Gliclazide MR (Apo) 30 mg modified release tablet, 100 79372011000036105 Gliclazide MR (Apo) 30 mg modified release tablet 24721000168102 Gliclazide MR (Apo) 24721000168102 Gliclazide MR (Apo) 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +963101000168109 Arflox 250 mg film-coated tablet, 14, bottle 92367 963091000168104 Arflox 250 mg film-coated tablet, 14 963041000168107 Arflox 250 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +965751000168106 Odomzo 200 mg hard capsule, 10, blister pack 226544 965741000168109 Odomzo 200 mg hard capsule, 10 965721000168103 Odomzo 200 mg hard capsule 965691000168107 Odomzo 965691000168107 Odomzo 965731000168100 sonidegib 200 mg capsule, 10 965711000168105 sonidegib 200 mg capsule 965701000168107 sonidegib +933211391000036102 Roflo 750 mg film-coated tablet, 14, blister pack 125324 933200481000036104 Roflo 750 mg film-coated tablet, 14 933194351000036107 Roflo 750 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +60765011000036105 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 100 mL, bottle 54130 56723011000036106 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 100 mL 54050011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 63625011000036106 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 100 mL 62032011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61715011000036104 bromhexine + pseudoephedrine +1034871000168105 Atelvia EC Once-a-Week 35 mg enteric tablet, 16, blister pack 166841 1034861000168104 Atelvia EC Once-a-Week 35 mg enteric tablet, 16 1034661000168100 Atelvia EC Once-a-Week 35 mg enteric tablet 1034651000168102 Atelvia EC Once-a-Week 1034651000168102 Atelvia EC Once-a-Week 801941000168104 risedronate sodium 35 mg enteric tablet, 16 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +60281011000036102 Panadol Caplet 500 mg film-coated tablet, 48, blister pack 13590 56240011000036105 Panadol Caplet 500 mg film-coated tablet, 48 53849011000036103 Panadol Caplet 500 mg film-coated tablet 29141000168108 Panadol Caplet 29141000168108 Panadol Caplet 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +928885011000036102 Oxycontin 30 mg modified release tablet, 28, blister pack 200025 928247011000036107 Oxycontin 30 mg modified release tablet, 28 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +928885011000036102 Oxycontin 30 mg modified release tablet, 28, blister pack 143173 928247011000036107 Oxycontin 30 mg modified release tablet, 28 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +50596011000036103 Amlodipine (Apo) 10 mg uncoated tablet, 30, bottle 135146 34269011000036109 Amlodipine (Apo) 10 mg uncoated tablet, 30 33997011000036100 Amlodipine (Apo) 10 mg uncoated tablet 30701000168100 Amlodipine (Apo) 30701000168100 Amlodipine (Apo) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +1111371000168104 Clopithromb 75 mg film-coated tablet, 7, blister pack 187040 1111361000168105 Clopithromb 75 mg film-coated tablet, 7 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87805011000036102 clopidogrel 75 mg tablet, 7 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +61203011000036105 Resolve Plus 1% / 2% cream, 15 g, tube 75601 57139011000036101 Resolve Plus 1% / 2% cream, 15 g 54215011000036104 Resolve Plus 1% / 2% cream 48731000168108 Resolve Plus 1% / 2% 48731000168108 Resolve Plus 1% / 2% 63742011000036106 hydrocortisone 1% + miconazole nitrate 2% cream, 15 g 62069011000036100 hydrocortisone 1% + miconazole nitrate 2% cream 61804011000036102 hydrocortisone + miconazole +86011011000036104 Lisinopril (DRLA) 20 mg uncoated tablet, 28, blister pack 152722 85665011000036108 Lisinopril (DRLA) 20 mg uncoated tablet, 28 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 46264011000036101 lisinopril 20 mg tablet, 28 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +936921000168101 Dapa-Tabs 2.5 mg film-coated tablet, 60, blister pack 62367 936911000168108 Dapa-Tabs 2.5 mg film-coated tablet, 60 935671000168101 Dapa-Tabs 2.5 mg film-coated tablet 3166011000036102 Dapa-Tabs 3166011000036102 Dapa-Tabs 46752011000036106 indapamide hemihydrate 2.5 mg tablet, 60 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +893891000168104 Imatinib Adult (Cipla) 400 mg hard capsule, 24, blister pack 231746 893881000168102 Imatinib Adult (Cipla) 400 mg hard capsule, 24 893861000168106 Imatinib Adult (Cipla) 400 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 893871000168100 imatinib 400 mg capsule, 24 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +74834011000036104 Decongestant (Soul Pattinson) Refill 0.05% nasal spray, 20 mL, bottle 24105 74321011000036102 Decongestant (Soul Pattinson) Refill 0.05% nasal spray, 20 mL 73827011000036105 Decongestant (Soul Pattinson) Refill 0.05% nasal spray 53415011000036101 Decongestant (Soul Pattinson) 53415011000036101 Decongestant (Soul Pattinson) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +1120031000168100 Quetiapine XR (Actavis) 50 mg modified release tablet, 100, blister pack 241753 1120021000168103 Quetiapine XR (Actavis) 50 mg modified release tablet, 100 1119951000168108 Quetiapine XR (Actavis) 50 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51530011000036103 quetiapine 50 mg modified release tablet, 100 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +60523011000036100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet, 96, blister pack 151926 56481011000036106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet, 96 53936011000036104 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) uncoated tablet 5051000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) 5051000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Blooms The Chemist) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +66141000036101 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution, 200 mL, bottle 14488 63371000036101 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution, 200 mL 61081000036100 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution 60391000036108 Eucalyptus Oil (True Blue) 60391000036108 Eucalyptus Oil (True Blue) 63381000036104 eucalyptus oil 1 mL/mL inhalation solution, 200 mL 73382011000036103 eucalyptus oil 1 mL/mL inhalation solution 73351011000036104 eucalyptus oil +69499011000036102 Betadine Sore Throat Gargle - Ready to Use 1% mouthwash, 120 mL, bottle 50838 67299011000036108 Betadine Sore Throat Gargle - Ready to Use 1% mouthwash, 120 mL 65596011000036107 Betadine Sore Throat Gargle - Ready to Use 1% mouthwash 58821000168101 Betadine Sore Throat Gargle - Ready to Use 58821000168101 Betadine Sore Throat Gargle - Ready to Use 71845011000036106 povidone-iodine 1% mouthwash, 120 mL 70210011000036107 povidone-iodine 1% mouthwash 21660011000036108 povidone-iodine +20418011000036102 Baclofen (Chemmart) 25 mg tablet, 100, bottle 77572 13625011000036104 Baclofen (Chemmart) 25 mg tablet, 100 6908011000036109 Baclofen (Chemmart) 25 mg tablet 3617011000036101 Baclofen (Chemmart) 3617011000036101 Baclofen (Chemmart) 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +905211000168102 Amisulpride (AJS) 200 mg uncoated tablet, 90, blister pack 234693 905201000168100 Amisulpride (AJS) 200 mg uncoated tablet, 90 905141000168106 Amisulpride (AJS) 200 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +933215661000036104 Olanzapine (Lilly) 5 mg wafer, 7, blister pack 167686 933205171000036104 Olanzapine (Lilly) 5 mg wafer, 7 933196201000036108 Olanzapine (Lilly) 5 mg wafer 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 933205181000036102 olanzapine 5 mg wafer, 7 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +1026191000168108 Neuroccord 150 mg hard capsule, 56, bottle 235841 1026181000168105 Neuroccord 150 mg hard capsule, 56 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +59889011000036106 Demazin Cold Relief Paediatric Oral Drops Blue oral liquid solution, 15 mL, bottle 116393 55851011000036106 Demazin Cold Relief Paediatric Oral Drops Blue oral liquid solution, 15 mL 53653011000036105 Demazin Cold Relief Paediatric Oral Drops Blue oral liquid solution, 5 mL 18051000168108 Demazin Cold Relief Paediatric Oral Drops 18051000168108 Demazin Cold Relief Paediatric Oral Drops 63557011000036109 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 15 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +61249011000036102 Nicotine (Amcal) 7 mg/24 hours patch, 21, sachet 77117 57185011000036108 Nicotine (Amcal) 7 mg/24 hours patch, 21 54229011000036107 Nicotine (Amcal) 7 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63757011000036105 nicotine 7 mg/24 hours patch, 21 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +50625011000036109 Risperidone (Generic Health) 1 mg film-coated tablet, 60, blister pack 139801 49651011000036104 Risperidone (Generic Health) 1 mg film-coated tablet, 60 48799011000036101 Risperidone (Generic Health) 1 mg film-coated tablet 48406011000036100 Risperidone (Generic Health) 48406011000036100 Risperidone (Generic Health) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +792901000168105 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 792891000168106 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5513011000036109 Trifeme (inert substance) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +792901000168105 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 792891000168106 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5327011000036106 Trifeme (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +792901000168105 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 792891000168106 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5543011000036102 Trifeme (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +792901000168105 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 792891000168106 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 792841000168103 Trifeme (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3198011000036100 Trifeme 3198011000036100 Trifeme 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +747461000168106 Junomorph 50 mg/5 mL injection solution, 10 x 5 mL ampoules 224250 747451000168109 Junomorph 50 mg/5 mL injection solution, 10 x 5 mL ampoules 747421000168101 Junomorph 50 mg/5 mL injection solution, 5 mL ampoule 747261000168105 Junomorph 747261000168105 Junomorph 707121000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, 10 x 5 mL ampoules 707071000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, ampoule 21252011000036100 morphine +1085871000168101 Monofer 500 mg/5 mL injection solution, 2 x 5 mL vials 290833 1085861000168107 Monofer 500 mg/5 mL injection solution, 2 x 5 mL vials 1085811000168109 Monofer 500 mg/5 mL injection solution, 5 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1085851000168105 iron (as ferric derisomaltose) 500 mg/5 mL injection, 2 x 5 mL vials 1085801000168106 iron (as ferric derisomaltose) 500 mg/5 mL injection, vial 1085791000168105 ferric derisomaltose +657791000168103 Ramipril (AN) 5 mg uncoated tablet, 30, blister pack 175231 657531000168106 Ramipril (AN) 5 mg uncoated tablet, 30 657521000168108 Ramipril (AN) 5 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +923823011000036105 Oxaliplatin (Kabi) 100 mg/20 mL concentrated injection, 20 mL vial 157761 923369011000036101 Oxaliplatin (Kabi) 100 mg/20 mL concentrated injection, 20 mL vial 923040011000036101 Oxaliplatin (Kabi) 100 mg/20 mL concentrated injection, 20 mL vial 922950011000036102 Oxaliplatin (Kabi) 922950011000036102 Oxaliplatin (Kabi) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +60143011000036108 Tefodine 180 mg film-coated tablet, 20, blister pack 129142 56102011000036102 Tefodine 180 mg film-coated tablet, 20 53790011000036103 Tefodine 180 mg film-coated tablet 53099011000036106 Tefodine 53099011000036106 Tefodine 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1098921000168100 Valaciclovir (Auro) 1 g film-coated tablet, 30, bottle 173281 1098911000168107 Valaciclovir (Auro) 1 g film-coated tablet, 30 1098891000168105 Valaciclovir (Auro) 1 g film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 1098901000168109 valaciclovir 1 g tablet, 30 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +69032011000036107 Cod Liver Oil (David Craig) 20% ointment, 500 g, jar 14067 66834011000036108 Cod Liver Oil (David Craig) 20% ointment, 500 g 65498011000036100 Cod Liver Oil (David Craig) 20% ointment 65138011000036109 Cod Liver Oil (David Craig) 65138011000036109 Cod Liver Oil (David Craig) 71448011000036107 cod-liver oil 20% ointment, 500 g 70011011000036107 cod-liver oil 20% ointment 69868011000036101 cod-liver oil +818421000168106 Afolia 150 units (11 microgram)/0.25 mL injection solution, 10 x 0.25 mL injection devices 262646 818411000168104 Afolia 150 units (11 microgram)/0.25 mL injection solution, 10 x 0.25 mL injection devices 818361000168106 Afolia 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741241000168102 follitropin alfa 150 units (11 microgram)/0.25 mL injection, 10 x 0.25 mL injection devices 741161000168109 follitropin alfa 150 units (11 microgram)/0.25 mL injection, injection device 21352011000036107 follitropin alfa +33496011000036100 Flomaxtra 400 microgram modified release tablet, 30, blister pack 115534 33247011000036106 Flomaxtra 400 microgram modified release tablet, 30 33006011000036108 Flomaxtra 400 microgram modified release tablet 32992011000036109 Flomaxtra 32992011000036109 Flomaxtra 33777011000036101 tamsulosin hydrochloride 400 microgram modified release tablet, 30 33655011000036101 tamsulosin hydrochloride 400 microgram modified release tablet 33648011000036105 tamsulosin +655301000168101 Candesartan Cilexetil (AN) 4 mg uncoated tablet, 30, blister pack 195453 655291000168102 Candesartan Cilexetil (AN) 4 mg uncoated tablet, 30 655281000168100 Candesartan Cilexetil (AN) 4 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +696331000168107 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 200 actuations, pump pack 72345 74384011000036109 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 200 actuations 73909011000036100 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, actuation 73775011000036103 Beconase Allergy and Hayfever 12 Hour 73775011000036103 Beconase Allergy and Hayfever 12 Hour 75483011000036107 beclometasone dipropionate 50 microgram/actuation nasal spray, 200 actuations 75087011000036107 beclometasone dipropionate 50 microgram/actuation nasal spray, actuation 21435011000036108 beclometasone +77288011000036102 Water for Irrigation (Baxter) irrigation solution, 3 L bag 19457 76704011000036104 Water for Irrigation (Baxter) irrigation solution, 3 L bag 76127011000036108 Water for Irrigation (Baxter) irrigation solution, 3 L bag 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78218011000036106 water for irrigation solution, 3 L bag 77549011000036109 water for irrigation solution, 3 L bag 77440011000036107 water for irrigation +1083701000168103 Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL, pump pack 161594 924827011000036104 Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL 924519011000036100 Drixine Metered Pump Decongestant 0.05% nasal spray 44711000168106 Drixine Metered Pump Decongestant 44711000168106 Drixine Metered Pump Decongestant 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +991611000168103 Anti-Fungal (Blooms The Chemist) 1% cream, 50 g, tube 204919 991601000168101 Anti-Fungal (Blooms The Chemist) 1% cream, 50 g 991551000168103 Anti-Fungal (Blooms The Chemist) 1% cream 991541000168100 Anti-Fungal (Blooms The Chemist) 991541000168100 Anti-Fungal (Blooms The Chemist) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +68790011000036100 Strepsils strawberry sugar free lozenge, 6, blister pack 101403 66468011000036100 Strepsils strawberry sugar free lozenge, 6 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +44357011000036104 Reductil 15 mg hard capsule, 28, blister pack 68116 41824011000036104 Reductil 15 mg hard capsule, 28 40215011000036105 Reductil 15 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46630011000036102 sibutramine hydrochloride 15 mg capsule, 28 45246011000036100 sibutramine hydrochloride 15 mg capsule 44877011000036100 sibutramine +1116101000168100 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 30, blister pack 158165 1116091000168105 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 30 1115991000168100 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 922586011000036101 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 30 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +69436011000036101 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL pack, bag 48515 67236011000036109 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL pack 65570011000036102 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71786011000036105 sodium chloride 0.9% (900 mg/100 mL) injection, 100 mL pack 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +84375011000036102 Voltaren 25 mg enteric tablet, 50, blister pack 166496 11416011000036108 Voltaren 25 mg enteric tablet, 50 5367011000036101 Voltaren 25 mg enteric tablet 28551000168108 Voltaren 28551000168108 Voltaren 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +983321000168100 Zavedos 20 mg/20 mL injection solution, 20 mL vial 67399 983311000168107 Zavedos 20 mg/20 mL injection solution, 20 mL vial 983301000168109 Zavedos 20 mg/20 mL injection solution, 20 mL vial 4217011000036101 Zavedos 4217011000036101 Zavedos 52951000036105 idarubicin hydrochloride 20 mg/20 mL injection, 20 mL vial 49651000036109 idarubicin hydrochloride 20 mg/20 mL injection, vial 21720011000036108 idarubicin +910501000168106 Cefepime (AFT) 500 mg powder for injection, 1 vial 196281 910491000168104 Cefepime (AFT) 500 mg powder for injection, 1 vial 910471000168100 Cefepime (AFT) 500 mg powder for injection, 500 mg vial 134151000036105 Cefepime (AFT) 134151000036105 Cefepime (AFT) 910481000168102 cefepime 500 mg injection, 1 vial 910461000168106 cefepime 500 mg injection, vial 21558011000036108 cefepime +18240011000036106 Cartia 100 mg enteric tablet, 84, blister pack 192506 11881011000036109 Cartia 100 mg enteric tablet, 84 4900011000036104 Cartia 100 mg enteric tablet 3338011000036100 Cartia 3338011000036100 Cartia 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +18240011000036106 Cartia 100 mg enteric tablet, 84, blister pack 12976 11881011000036109 Cartia 100 mg enteric tablet, 84 4900011000036104 Cartia 100 mg enteric tablet 3338011000036100 Cartia 3338011000036100 Cartia 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +61422011000036106 Paracetamol (Herron) 500 mg uncoated tablet, 1200, bottle 82690 57347011000036103 Paracetamol (Herron) 500 mg uncoated tablet, 1200 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63847011000036106 paracetamol 500 mg tablet, 1200 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +50533011000036102 MSUD AID III powder for oral liquid, 500 g, can 49280011000036104 MSUD AID III powder for oral liquid, 500 g 48493011000036109 MSUD AID III powder for oral liquid 59001000168106 MSUD AID III 59001000168106 MSUD AID III 51270011000036106 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 500 g 50802011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +1098941000168106 Valaciclovir (Auro) 1 g film-coated tablet, 100, bottle 173281 1098931000168102 Valaciclovir (Auro) 1 g film-coated tablet, 100 1098891000168105 Valaciclovir (Auro) 1 g film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 1001171000168107 valaciclovir 1 g tablet, 100 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +921921011000036107 CoQ10 (Blackmores) 75 mg soft capsule, 60, bottle 163425 921480011000036108 CoQ10 (Blackmores) 75 mg soft capsule, 60 921027011000036107 CoQ10 (Blackmores) 75 mg soft capsule 920941011000036100 CoQ10 (Blackmores) 920941011000036100 CoQ10 (Blackmores) 922607011000036107 ubidecarenone 75 mg capsule, 60 922103011000036104 ubidecarenone 75 mg capsule 77424011000036100 ubidecarenone +949031000168108 Risperidone (WT) 500 microgram film-coated tablet, 20, bottle 127893 949021000168105 Risperidone (WT) 500 microgram film-coated tablet, 20 948991000168101 Risperidone (WT) 500 microgram film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +45851000036105 Quetiapine (Synthon) 25 mg film-coated tablet, 60, blister pack 176713 43151000036103 Quetiapine (Synthon) 25 mg film-coated tablet, 60 40841000036101 Quetiapine (Synthon) 25 mg film-coated tablet 40241000036102 Quetiapine (Synthon) 40241000036102 Quetiapine (Synthon) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +933246351000036106 Ciprofloxacin (PS) 500 mg film-coated tablet, 8, blister pack 148852 933243141000036101 Ciprofloxacin (PS) 500 mg film-coated tablet, 8 933241321000036108 Ciprofloxacin (PS) 500 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 933199841000036101 ciprofloxacin 500 mg tablet, 8 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +928808011000036107 Clindamycin (Hexal) 600 mg/4 mL injection solution, 10 x 4 mL ampoules 107317 928173011000036104 Clindamycin (Hexal) 600 mg/4 mL injection solution, 10 x 4 mL ampoules 927847011000036108 Clindamycin (Hexal) 600 mg/4 mL injection solution, 4 mL ampoule 927815011000036107 Clindamycin (Hexal) 927815011000036107 Clindamycin (Hexal) 46357011000036109 clindamycin 600 mg/4 mL injection, 10 x 4 mL ampoules 45103011000036104 clindamycin 600 mg/4 mL injection, ampoule 21255011000036108 clindamycin +708871000168109 Bisoprolol (Generic Health) 2.5 mg film-coated tablet, 28, blister pack 212063 708861000168103 Bisoprolol (Generic Health) 2.5 mg film-coated tablet, 28 708851000168100 Bisoprolol (Generic Health) 2.5 mg film-coated tablet 708841000168102 Bisoprolol (Generic Health) 708841000168102 Bisoprolol (Generic Health) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +657471000168105 Escitalopram (AN) 20 mg film-coated tablet, 28, blister pack 190288 657461000168104 Escitalopram (AN) 20 mg film-coated tablet, 28 657451000168101 Escitalopram (AN) 20 mg film-coated tablet 657371000168103 Escitalopram (AN) 657371000168103 Escitalopram (AN) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +50371011000036103 Flucloxacillin (Lennon Healthcare) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 49536011000036104 Flucloxacillin (Lennon Healthcare) 250 mg/5 mL powder for oral liquid, 100 mL 48520011000036102 Flucloxacillin (Lennon Healthcare) 250 mg/5 mL powder for oral liquid, 5 mL 48354011000036106 Flucloxacillin (Lennon Healthcare) 48354011000036106 Flucloxacillin (Lennon Healthcare) 27045011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid, 100 mL 22415011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +1109681000168105 Nicotinell Ice Mint 2 mg chewing gum, 192, blister pack 279615 1109671000168107 Nicotinell Ice Mint 2 mg chewing gum, 192 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71513011000036102 nicotine 2 mg gum, 192 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +18724011000036109 Onsetron 4 mg/2 mL injection solution, 2 mL ampoule 124504 11764011000036106 Onsetron 4 mg/2 mL injection solution, 2 mL ampoule 5646011000036101 Onsetron 4 mg/2 mL injection solution, 2 mL ampoule 7751000168109 Onsetron 7751000168109 Onsetron 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +760391000168102 Sildenafil (DRLA) 100 mg film-coated tablet, 1, blister pack 186287 760381000168100 Sildenafil (DRLA) 100 mg film-coated tablet, 1 760361000168109 Sildenafil (DRLA) 100 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760371000168103 sildenafil 100 mg tablet, 1 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +73330011000036105 Lamotrust 25 mg tablet, 56, blister pack 150747 73124011000036109 Lamotrust 25 mg tablet, 56 72965011000036106 Lamotrust 25 mg tablet 72919011000036109 Lamotrust 72919011000036109 Lamotrust 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +116501000036104 Rosuvastatin (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 183068 114791000036108 Rosuvastatin (Terry White Chemists) 10 mg film-coated tablet, 30 112801000036102 Rosuvastatin (Terry White Chemists) 10 mg film-coated tablet 112581000036106 Rosuvastatin (Terry White Chemists) 112581000036106 Rosuvastatin (Terry White Chemists) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +717551000168100 Omeprazole (Apo) 20 mg enteric capsule, 30, blister pack 149518 717541000168102 Omeprazole (Apo) 20 mg enteric capsule, 30 717531000168106 Omeprazole (Apo) 20 mg enteric capsule 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +44241011000036100 Atracurium Besylate (Abbott) 25 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 58933 41713011000036107 Atracurium Besylate (Abbott) 25 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 40159011000036103 Atracurium Besylate (Abbott) 25 mg/2.5 mL injection solution, 2.5 mL ampoule 39572011000036101 Atracurium Besylate (Abbott) 39572011000036101 Atracurium Besylate (Abbott) 38563011000036103 atracurium besilate 25 mg/2.5 mL injection, 5 x 2.5 mL ampoules 37839011000036100 atracurium besilate 25 mg/2.5 mL injection, ampoule 37800011000036104 atracurium +69580011000036102 Acihexal 5% cream, 2 g, tube 63788 67380011000036107 Acihexal 5% cream, 2 g 65637011000036109 Acihexal 5% cream 3239011000036103 Acihexal 3239011000036103 Acihexal 46471011000036108 aciclovir 5% cream, 2 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +893251000168105 Cefepime (Kabi) 2 g powder for injection, 10 vials 227965 893241000168108 Cefepime (Kabi) 2 g powder for injection, 10 vials 893201000168106 Cefepime (Kabi) 2 g powder for injection, 2 g vial 893101000168102 Cefepime (Kabi) 893101000168102 Cefepime (Kabi) 893231000168104 cefepime 2 g injection, 10 vials 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +929665011000036106 Ondansetron (Alphapharm) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 155843 929501011000036100 Ondansetron (Alphapharm) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 929400011000036104 Ondansetron (Alphapharm) 8 mg/4 mL injection solution, 4 mL ampoule 929370011000036100 Ondansetron (Alphapharm) 929370011000036100 Ondansetron (Alphapharm) 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +43757011000036102 Stilnox CR 12.5 mg modified release tablet, 100, blister pack 120713 41242011000036100 Stilnox CR 12.5 mg modified release tablet, 100 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46184011000036101 zolpidem tartrate 12.5 mg modified release tablet, 100 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +18966011000036102 Hysone 4 mg uncoated tablet, 50, bottle 27923 12274011000036109 Hysone 4 mg uncoated tablet, 50 5891011000036108 Hysone 4 mg uncoated tablet 3717011000036109 Hysone 3717011000036109 Hysone 27035011000036102 hydrocortisone 4 mg tablet, 50 22408011000036109 hydrocortisone 4 mg tablet 21681011000036103 hydrocortisone +1103191000168101 Nicotine (NCHA) Freshmint 2 mg chewing gum, 96, blister pack 143431 1103181000168104 Nicotine (NCHA) Freshmint 2 mg chewing gum, 96 1103151000168106 Nicotine (NCHA) Freshmint 2 mg chewing gum 1103091000168102 Nicotine (NCHA) 1103091000168102 Nicotine (NCHA) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +756061000168102 Pramipexole ER (Apo) 2.25 mg modified release tablet, 10, blister pack 225586 756051000168104 Pramipexole ER (Apo) 2.25 mg modified release tablet, 10 756031000168105 Pramipexole ER (Apo) 2.25 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 756041000168101 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet, 10 933220621000036106 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet 37716011000036100 pramipexole +949071000168106 Risperidone (WT) 500 microgram film-coated tablet, 60, bottle 127893 949061000168100 Risperidone (WT) 500 microgram film-coated tablet, 60 948991000168101 Risperidone (WT) 500 microgram film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +713211000168105 Kerron 100 mg/mL oral liquid solution, 300 mL, bottle 225917 713201000168107 Kerron 100 mg/mL oral liquid solution, 300 mL 713191000168109 Kerron 100 mg/mL oral liquid solution 29611000168101 Kerron 29611000168101 Kerron 39462011000036104 levetiracetam 100 mg/mL oral liquid, 300 mL 39434011000036104 levetiracetam 100 mg/mL oral liquid 21766011000036102 levetiracetam +59762011000036100 Tarka 2/180 modified release tablet, 7, blister pack 104663 55704011000036100 Tarka 2/180 modified release tablet, 7 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63100011000036107 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 7 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +59981011000036101 Codral Cold and Flu film-coated tablet, 48, blister pack 121309 55943011000036104 Codral Cold and Flu film-coated tablet, 48 53729011000036103 Codral Cold and Flu film-coated tablet 45721000168100 Codral Cold and Flu 45721000168100 Codral Cold and Flu 63170011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +948711000168107 Ondansetron (Mylan) 8 mg/4 mL injection, 5 x 4 mL vials 148300 948701000168109 Ondansetron (Mylan) 8 mg/4 mL injection, 5 x 4 mL vials 948651000168104 Ondansetron (Mylan) 8 mg/4 mL injection, 4 mL vial 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 948691000168109 ondansetron 8 mg/4 mL injection, 5 x 4 mL vials 948641000168101 ondansetron 8 mg/4 mL injection, vial 21545011000036100 ondansetron +18384011000036103 Simvastatin (Winthrop) 10 mg film-coated tablet, 30, blister pack 129967 11885011000036106 Simvastatin (Winthrop) 10 mg film-coated tablet, 30 5721011000036102 Simvastatin (Winthrop) 10 mg film-coated tablet 3335011000036106 Simvastatin (Winthrop) 3335011000036106 Simvastatin (Winthrop) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +19767011000036106 Vancomycin (DBL) 500 mg powder for injection, 1 vial 62603 13025011000036107 Vancomycin (DBL) 500 mg powder for injection, 1 vial 6312011000036102 Vancomycin (DBL) 500 mg powder for injection, 500 mg vial 4211011000036109 Vancomycin (DBL) 4211011000036109 Vancomycin (DBL) 27499011000036100 vancomycin 500 mg injection, 1 vial 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +1101021000168100 Azonaire 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 201569 1101011000168107 Azonaire 50 microgram/actuation nasal spray, 2 x 140 actuations 1100961000168101 Azonaire 50 microgram/actuation nasal spray, actuation 1100951000168103 Azonaire 1100951000168103 Azonaire 687861000168109 mometasone furoate 50 microgram/actuation nasal spray, 2 x 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +1032621000168104 Atomoxetine (GXP) 40 mg hard capsule, 28, blister pack 234837 1032611000168106 Atomoxetine (GXP) 40 mg hard capsule, 28 1032531000168100 Atomoxetine (GXP) 40 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +43999011000036106 Eryacne 2% gel, 30 g, tube 43979 41490011000036106 Eryacne 2% gel, 30 g 40012011000036107 Eryacne 2% gel 39772011000036100 Eryacne 39772011000036100 Eryacne 46336011000036105 erythromycin 2% gel, 30 g 45088011000036100 erythromycin 2% gel 21889011000036107 erythromycin +30781000036101 Codagesic uncoated tablet, 40, blister pack (Old Formulation 2016) 178333 28951000036109 Codagesic uncoated tablet, 40 (Old Formulation 2016) 27021000036103 Codagesic uncoated tablet (Old Formulation 2016) 26021000036100 Codagesic 26021000036100 Codagesic 28971000036104 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 40 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +18482011000036101 Ondansetron Zydis (RL) 8 mg wafer, 10, blister pack 116439 11526011000036106 Ondansetron Zydis (RL) 8 mg wafer, 10 5541011000036103 Ondansetron Zydis (RL) 8 mg wafer 48431000168103 Ondansetron Zydis (RL) 48431000168103 Ondansetron Zydis (RL) 27518011000036101 ondansetron 8 mg wafer, 10 22859011000036100 ondansetron 8 mg wafer 21545011000036100 ondansetron +43631011000036101 Simvastatin (DP) 80 mg film-coated tablet, 30, bottle 199740 11295011000036101 Simvastatin (DP) 80 mg film-coated tablet, 30 5319011000036109 Simvastatin (DP) 80 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +43631011000036101 Simvastatin (DP) 80 mg film-coated tablet, 30, bottle 125784 11295011000036101 Simvastatin (DP) 80 mg film-coated tablet, 30 5319011000036109 Simvastatin (DP) 80 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +991931000168103 Famciclovir (Apotex) 250 mg film-coated tablet, 30, blister pack 160562 991921000168101 Famciclovir (Apotex) 250 mg film-coated tablet, 30 991811000168102 Famciclovir (Apotex) 250 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 87819011000036103 famciclovir 250 mg tablet, 30 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1081621000168104 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) concentrated injection, 100 mL vial 22261 1081611000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) concentrated injection, 100 mL vial 1081591000168101 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) concentrated injection, 100 mL vial 1081551000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) 1081551000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g (Biological Therapies) 1081601000168108 edetate disodium 3 g/100 mL + sodium ascorbate 15 g/100 mL injection, 100 mL vial 1081581000168104 edetate disodium 3 g/100 mL + sodium ascorbate 15 g/100 mL injection, vial 680831000168100 edetic acid + ascorbic acid +18142011000036107 Neorecormon 5000 units/0.3 mL injection, 6 x 0.3 mL syringes 104265 11277011000036102 Neorecormon 5000 units/0.3 mL injection, 6 x 0.3 mL syringes 4967011000036104 Neorecormon 5000 units/0.3 mL injection, 0.3 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26588011000036102 epoetin beta 5000 units/0.3 mL injection, 6 x 0.3 mL syringes 21996011000036108 epoetin beta 5000 units/0.3 mL injection, syringe 21625011000036109 epoetin beta +83407011000036106 Thalomid 50 mg hard capsule, 28, blister pack 156729 83326011000036106 Thalomid 50 mg hard capsule, 28 83255011000036107 Thalomid 50 mg hard capsule 83232011000036100 Thalomid 83232011000036100 Thalomid 28194011000036109 thalidomide 50 mg capsule, 28 23506011000036107 thalidomide 50 mg capsule 21303011000036108 thalidomide +1017511000168103 Raloxifene (Apotex) 60 mg film-coated tablet, 7, blister pack 184798 1017501000168101 Raloxifene (Apotex) 60 mg film-coated tablet, 7 1017491000168108 Raloxifene (Apotex) 60 mg film-coated tablet 1017481000168105 Raloxifene (Apotex) 1017481000168105 Raloxifene (Apotex) 933203811000036104 raloxifene hydrochloride 60 mg tablet, 7 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +1023941000168106 Mucus Relief Forte (Amcal) 8 mg/5 mL oral liquid, 100 mL, bottle 201921 1023931000168102 Mucus Relief Forte (Amcal) 8 mg/5 mL oral liquid, 100 mL 1023921000168100 Mucus Relief Forte (Amcal) 8 mg/5 mL oral liquid, 5 mL 1023911000168107 Mucus Relief Forte (Amcal) 1023911000168107 Mucus Relief Forte (Amcal) 773711000168108 bromhexine hydrochloride 8 mg/5 mL oral liquid, 100 mL 61902011000036102 bromhexine hydrochloride 8 mg/5 mL oral liquid 61780011000036106 bromhexine +816181000168103 Adin 100 microgram uncoated tablet, 30, bottle 99864 816171000168101 Adin 100 microgram uncoated tablet, 30 816121000168102 Adin 100 microgram uncoated tablet 816101000168106 Adin 816101000168106 Adin 816161000168107 desmopressin acetate 100 microgram tablet, 30 816111000168109 desmopressin acetate 100 microgram tablet 21750011000036107 desmopressin +60310011000036103 Ranoxyl Heartburn Relief 300 mg film-coated tablet, 10, strip pack 138512 56269011000036106 Ranoxyl Heartburn Relief 300 mg film-coated tablet, 10 53856011000036109 Ranoxyl Heartburn Relief 300 mg film-coated tablet 32121000168107 Ranoxyl Heartburn Relief 32121000168107 Ranoxyl Heartburn Relief 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +948681000168106 Ondansetron (Mylan) 8 mg/4 mL injection, 4 mL vial 148300 948671000168108 Ondansetron (Mylan) 8 mg/4 mL injection, 4 mL vial 948651000168104 Ondansetron (Mylan) 8 mg/4 mL injection, 4 mL vial 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 948661000168102 ondansetron 8 mg/4 mL injection, 4 mL vial 948641000168101 ondansetron 8 mg/4 mL injection, vial 21545011000036100 ondansetron +61692011000036104 Cold and Flu Relief (Amcal) film-coated tablet, 24, blister pack 98588 57613011000036106 Cold and Flu Relief (Amcal) film-coated tablet, 24 54364011000036109 Cold and Flu Relief (Amcal) film-coated tablet 53392011000036100 Cold and Flu Relief (Amcal) 53392011000036100 Cold and Flu Relief (Amcal) 63960011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62109011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +933126011000036109 Eligard 1 Month (1 x 7.5 mg syringe, 1 x diluent syringe), 1 pack, composite pack 97449 932926011000036102 Eligard 1 Month (1 x 7.5 mg syringe, 1 x diluent syringe), 1 pack 7499011000036102 Eligard 1 Month (inert substance) diluent, syringe 55961000168105 Eligard 1 Month 55961000168105 Eligard 1 Month 932927011000036104 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +933126011000036109 Eligard 1 Month (1 x 7.5 mg syringe, 1 x diluent syringe), 1 pack, composite pack 97449 932926011000036102 Eligard 1 Month (1 x 7.5 mg syringe, 1 x diluent syringe), 1 pack 7498011000036105 Eligard 1 Month (leuprorelin acetate 7.5 mg) modified release injection, 7.5 mg syringe 55961000168105 Eligard 1 Month 55961000168105 Eligard 1 Month 932927011000036104 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 23532011000036103 leuprorelin acetate 7.5 mg modified release injection, syringe 21320011000036109 leuprorelin +1094511000168107 Amorolfine Anti Fungal Nail Treatment (Amcal) 5% application, 2.5 mL, bottle 233466 1094501000168109 Amorolfine Anti Fungal Nail Treatment (Amcal) 5% application, 2.5 mL 1094471000168103 Amorolfine Anti Fungal Nail Treatment (Amcal) 5% application 1094411000168106 Amorolfine Anti Fungal Nail Treatment (Amcal) 1094411000168106 Amorolfine Anti Fungal Nail Treatment (Amcal) 776941000168102 amorolfine 5% application, 2.5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +933211711000036106 Ciprofloxacin (BL) 750 mg film-coated tablet, 14, blister pack 114048 933199871000036108 Ciprofloxacin (BL) 750 mg film-coated tablet, 14 933194131000036102 Ciprofloxacin (BL) 750 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +69096011000036101 Panoxyl 5% gel, 40 g, tube 14824 66897011000036108 Panoxyl 5% gel, 40 g 65524011000036108 Panoxyl 5% gel 29651000168100 Panoxyl 29651000168100 Panoxyl 63343011000036100 benzoyl peroxide 5% gel, 40 g 61955011000036100 benzoyl peroxide 5% gel 61709011000036104 benzoyl peroxide +161671000036103 Nimbex 10 mg/5 mL injection solution, 5 x 5 mL ampoules 55931 161561000036107 Nimbex 10 mg/5 mL injection solution, 5 x 5 mL ampoules 161461000036108 Nimbex 10 mg/5 mL injection solution, 5 mL ampoule 39720011000036100 Nimbex 39720011000036100 Nimbex 161571000036104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL ampoules 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +19594011000036104 Ceclor CD 375 mg modified release tablet, 10, blister pack 58264 12865011000036109 Ceclor CD 375 mg modified release tablet, 10 6156011000036103 Ceclor CD 375 mg modified release tablet 50291000168103 Ceclor CD 50291000168103 Ceclor CD 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +1083861000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 200 mL, bottle 38572 1083851000168109 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 200 mL 1083781000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 63472011000036104 benzydamine hydrochloride 0.15% mouthwash, 200 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +920773011000036108 Azathioprine (Sandoz) 25 mg film-coated tablet, 100, blister pack 74404 920452011000036105 Azathioprine (Sandoz) 25 mg film-coated tablet, 100 920189011000036109 Azathioprine (Sandoz) 25 mg film-coated tablet 920084011000036104 Azathioprine (Sandoz) 920084011000036104 Azathioprine (Sandoz) 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +37627011000036101 Diazepam (Orion) 10 mg moulded suppository, 20, jar 21149 36893011000036109 Diazepam (Orion) 10 mg moulded suppository, 20 36227011000036103 Diazepam (Orion) 10 mg moulded suppository 35917011000036105 Diazepam (Orion) 35917011000036105 Diazepam (Orion) 38778011000036104 diazepam 10 mg suppository, 20 37992011000036106 diazepam 10 mg suppository 21688011000036107 diazepam +867481000168105 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 40 x 250 mL bags 241252 867471000168107 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 40 x 250 mL bags 867341000168107 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 250 mL bag 867331000168103 Moxifloxacin (Kabi) 867331000168103 Moxifloxacin (Kabi) 867461000168101 moxifloxacin 400 mg/250 mL injection, 40 x 250 mL bags 33684011000036106 moxifloxacin 400 mg/250 mL injection, bag 21765011000036109 moxifloxacin +1034551000168103 Atomoxetine (Actavis) 18 mg hard capsule, 7, blister pack 237252 1034541000168100 Atomoxetine (Actavis) 18 mg hard capsule, 7 1034531000168109 Atomoxetine (Actavis) 18 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +60218011000036108 Sinus with Antihistamine (Pharmacy Choice) uncoated tablet, 24, blister pack 133208 56177011000036107 Sinus with Antihistamine (Pharmacy Choice) uncoated tablet, 24 53825011000036103 Sinus with Antihistamine (Pharmacy Choice) uncoated tablet 53402011000036106 Sinus with Antihistamine (Pharmacy Choice) 53402011000036106 Sinus with Antihistamine (Pharmacy Choice) 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +45771000036106 Simvastatin (DRLA) 20 mg film-coated tablet, 30, blister pack 194754 43781000036109 Simvastatin (DRLA) 20 mg film-coated tablet, 30 41161000036101 Simvastatin (DRLA) 20 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1092341000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night (48 x Day tablets, 24 x Night tablets), 72, blister pack 286003 1092331000168101 Demazin PE Multi-Action Cold and Flu Relief Day and Night (48 x Day tablets, 24 x Night tablets), 72 1092261000168100 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Night) uncoated tablet 1092221000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night 1092241000168104 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Night) 1092321000168104 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [48] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [24], 72 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1092341000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night (48 x Day tablets, 24 x Night tablets), 72, blister pack 286003 1092331000168101 Demazin PE Multi-Action Cold and Flu Relief Day and Night (48 x Day tablets, 24 x Night tablets), 72 1092251000168102 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Day) uncoated tablet 1092221000168105 Demazin PE Multi-Action Cold and Flu Relief Day and Night 1092231000168108 Demazin PE Multi-Action Cold and Flu Relief Day and Night (Day) 1092321000168104 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [48] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [24], 72 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +30741000036105 Zondan 4 mg film-coated tablet, 4, blister pack 116409 28271000036109 Zondan 4 mg film-coated tablet, 4 26461000036103 Zondan 4 mg film-coated tablet 26301000036108 Zondan 26301000036108 Zondan 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +998141000168104 Desloratadine (Apo) 5 mg film-coated tablet, 7, blister pack 202823 998131000168108 Desloratadine (Apo) 5 mg film-coated tablet, 7 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72030011000036101 desloratadine 5 mg tablet, 7 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1109521000168107 Nicotinell Ice Mint 2 mg chewing gum, 24, blister pack 279615 1109511000168100 Nicotinell Ice Mint 2 mg chewing gum, 24 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +37454011000036105 Solu-Medrol (5 x 500 mg vials, 5 x 8 mL inert diluent vials), 1 pack, composite pack 12344 36726011000036107 Solu-Medrol (5 x 500 mg vials, 5 x 8 mL inert diluent vials), 1 pack 633151000168100 Solu-Medrol (inert substance) diluent, 8 mL vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 38636011000036106 methylprednisolone 500 mg injection [5 vials] (&) inert substance diluent [5 x 8 mL vials], 1 pack 633141000168102 inert substance diluent, 8 mL vial 21220011000036103 inert substance +37454011000036105 Solu-Medrol (5 x 500 mg vials, 5 x 8 mL inert diluent vials), 1 pack, composite pack 12344 36726011000036107 Solu-Medrol (5 x 500 mg vials, 5 x 8 mL inert diluent vials), 1 pack 36176011000036103 Solu-Medrol (methylprednisolone 500 mg) powder for injection, 500 mg vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 38636011000036106 methylprednisolone 500 mg injection [5 vials] (&) inert substance diluent [5 x 8 mL vials], 1 pack 37894011000036107 methylprednisolone 500 mg injection, vial 21605011000036100 methylprednisolone +60362011000036103 Nurofen Back Pain 200 mg film-coated tablet, 20, blister pack 142080 56321011000036109 Nurofen Back Pain 200 mg film-coated tablet, 20 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933246491000036107 Ranitidine (PS) 150 mg film-coated tablet, 14, blister pack 148523 933243041000036102 Ranitidine (PS) 150 mg film-coated tablet, 14 933241311000036101 Ranitidine (PS) 150 mg film-coated tablet 933240941000036106 Ranitidine (PS) 933240941000036106 Ranitidine (PS) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +983161000168107 Cetirizine (AN) 10 mg film-coated tablet, 84, blister pack 126249 983151000168105 Cetirizine (AN) 10 mg film-coated tablet, 84 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63290011000036106 cetirizine hydrochloride 10 mg tablet, 84 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1083821000168101 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 50 mL, bottle 38572 1083811000168108 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 50 mL 1083781000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 63474011000036108 benzydamine hydrochloride 0.15% mouthwash, 50 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +828951000168101 Glivec 100 mg hard capsule, 180, blister pack 78442 828941000168103 Glivec 100 mg hard capsule, 180 828801000168105 Glivec 100 mg hard capsule 3084011000036104 Glivec 3084011000036104 Glivec 828931000168107 imatinib 100 mg capsule, 180 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +948871000168107 Invast 5 mg film-coated tablet, 30, blister pack 100254 948761000168105 Invast 5 mg film-coated tablet, 30 948751000168108 Invast 5 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +758301000168100 Kenacomb Otic ear ointment, 5 g, tube 19201 758291000168101 Kenacomb Otic ear ointment, 5 g 758271000168102 Kenacomb Otic ear ointment 47581000168102 Kenacomb Otic 47581000168102 Kenacomb Otic 758281000168104 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g 758261000168108 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment 758201000168107 triamcinolone + neomycin + gramicidin + nystatin +60315011000036107 Donnalix Infant Drops oral liquid solution, 30 mL, bottle 13873 56274011000036104 Donnalix Infant Drops oral liquid solution, 30 mL 53859011000036100 Donnalix Infant Drops oral liquid solution 46991000168105 Donnalix Infant Drops 46991000168105 Donnalix Infant Drops 63281011000036103 atropine sulfate monohydrate 7.8 microgram/mL + hyoscine hydrobromide trihydrate 2.6 microgram/mL + hyoscyamine sulfate dihydrate 41.5 microgram/mL oral liquid, 30 mL 61910011000036103 atropine sulfate monohydrate 7.8 microgram/mL + hyoscine hydrobromide trihydrate 2.6 microgram/mL + hyoscyamine sulfate dihydrate 41.5 microgram/mL oral liquid 61708011000036107 atropine sulfate monohydrate + hyoscine hydrobromide trihydrate + hyoscyamine +20626011000036106 Alprazolam (GenRx) 1 mg tablet, 50, bottle 80935 13806011000036109 Alprazolam (GenRx) 1 mg tablet, 50 7092011000036100 Alprazolam (GenRx) 1 mg tablet 3880011000036108 Alprazolam (GenRx) 3880011000036108 Alprazolam (GenRx) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +961731000168102 Pentothal 500 mg powder for injection, 25 vials 73505 961721000168100 Pentothal 500 mg powder for injection, 25 vials 40254011000036102 Pentothal 500 mg powder for injection, 500 mg vial 39749011000036109 Pentothal 39749011000036109 Pentothal 961711000168107 thiopental sodium 500 mg injection, 25 vials 45273011000036107 thiopental sodium 500 mg injection, vial 44938011000036109 thiopental +1115941000168108 Quetiapine XR (Sandoz) 300 mg modified release tablet, 60, blister pack 199883 1115931000168104 Quetiapine XR (Sandoz) 300 mg modified release tablet, 60 1115921000168102 Quetiapine XR (Sandoz) 300 mg modified release tablet 1115851000168102 Quetiapine XR (Sandoz) 1115851000168102 Quetiapine XR (Sandoz) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +749701000168108 Tacrolimus (Actavis) 5 mg hard capsule, 100, blister pack 224270 749691000168108 Tacrolimus (Actavis) 5 mg hard capsule, 100 749641000168100 Tacrolimus (Actavis) 5 mg hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 652651000168101 tacrolimus 5 mg capsule, 100 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +948911000168105 Diltiazem CD (Sanofi) 360 mg modified release capsule, 28, bottle 139401 948901000168107 Diltiazem CD (Sanofi) 360 mg modified release capsule, 28 948841000168100 Diltiazem CD (Sanofi) 360 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 46720011000036108 diltiazem hydrochloride 360 mg modified release capsule, 28 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +888911000168109 Bosentan (Astron) 62.5 mg film-coated tablet, 14, blister pack 235895 888901000168106 Bosentan (Astron) 62.5 mg film-coated tablet, 14 888831000168108 Bosentan (Astron) 62.5 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884311000168104 bosentan 62.5 mg tablet, 14 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +928903011000036107 Busulfex 60 mg/10 mL injection, 8 x 10 mL vials 150612 928265011000036105 Busulfex 60 mg/10 mL injection, 8 x 10 mL vials 927914011000036100 Busulfex 60 mg/10 mL injection, 10 mL vial 39768011000036105 Busulfex 39768011000036105 Busulfex 929213011000036108 busulfan 60 mg/10 mL injection, 8 x 10 mL vials 929149011000036100 busulfan 60 mg/10 mL injection, vial 21405011000036102 busulfan +82501000036109 Vita-Pos eye ointment, 5 g, tube 180834 80391000036106 Vita-Pos eye ointment, 5 g 78571000036107 Vita-Pos eye ointment 77881000036105 Vita-Pos 77881000036105 Vita-Pos 80401000036109 retinol palmitate 0.0138% + paraffin eye ointment, 5 g 78581000036109 retinol palmitate 0.0138% + paraffin eye ointment 82561000036108 retinol palmitate + paraffin +61041011000036109 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 24, blister pack 67363 56984011000036107 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 24 54147011000036101 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet 53575011000036100 Period Pain Relief (Pharmacist Formula) 53575011000036100 Period Pain Relief (Pharmacist Formula) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +841861000168102 Atorvastatin (Amneal) 80 mg film-coated tablet, 30, blister pack 178525 841851000168104 Atorvastatin (Amneal) 80 mg film-coated tablet, 30 841791000168104 Atorvastatin (Amneal) 80 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +948801000168102 Invast 80 mg film-coated tablet, 30, blister pack 100258 945611000168105 Invast 80 mg film-coated tablet, 30 945601000168107 Invast 80 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +84317011000036102 Sulprix 100 mg tablet, 60, blister pack 156044 84010011000036104 Sulprix 100 mg tablet, 60 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +683241000168101 Sildenafil (Actavis) 50 mg film-coated tablet, 4, blister pack 202924 683231000168105 Sildenafil (Actavis) 50 mg film-coated tablet, 4 683221000168107 Sildenafil (Actavis) 50 mg film-coated tablet 683181000168104 Sildenafil (Actavis) 683181000168104 Sildenafil (Actavis) 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +965911000168108 Eco Krill 333.3 mg soft capsule, 30, bottle 196824 965901000168105 Eco Krill 333.3 mg soft capsule, 30 965881000168108 Eco Krill 333.3 mg soft capsule 23811000168103 Eco Krill 23811000168103 Eco Krill 965891000168106 krill oil 333.3 mg capsule, 30 88131000036105 krill oil 333.3 mg capsule 91931000036100 krill oil +31381000036105 Vermox Choc Chew 100 mg chewable tablet, 6, blister pack 176298 28741000036109 Vermox Choc Chew 100 mg chewable tablet, 6 27091000036100 Vermox Choc Chew 100 mg chewable tablet 8311000168106 Vermox Choc Chew 8311000168106 Vermox Choc Chew 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +44691011000036109 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 93044 42140011000036103 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46901011000036101 follitropin alfa 150 units (10.92 microgram) injection [150 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44691011000036109 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 93044 42140011000036103 Gonal-F (1 x 150 units (10.92 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46901011000036101 follitropin alfa 150 units (10.92 microgram) injection [150 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +68785011000036105 Skin Therapy Lotion (Hamilton) lotion, 250 mL, bottle 11077 66589011000036104 Skin Therapy Lotion (Hamilton) lotion, 250 mL 65465011000036109 Skin Therapy Lotion (Hamilton) lotion 65076011000036101 Skin Therapy Lotion (Hamilton) 65076011000036101 Skin Therapy Lotion (Hamilton) 71312011000036107 glycerol 5% + light liquid paraffin 15% lotion, 250 mL 69944011000036107 glycerol 5% + light liquid paraffin 15% lotion 69753011000036104 glycerol + light liquid paraffin +991791000168101 Amitriptyline (Apo) 10 mg film-coated tablet, 100, bottle 215370 991781000168104 Amitriptyline (Apo) 10 mg film-coated tablet, 100 991771000168102 Amitriptyline (Apo) 10 mg film-coated tablet 991701000168107 Amitriptyline (Apo) 991701000168107 Amitriptyline (Apo) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1034641000168104 Antifungal (Amcal) 1% cream, 50 g, tube 220197 1034631000168108 Antifungal (Amcal) 1% cream, 50 g 1034601000168101 Antifungal (Amcal) 1% cream 1034591000168108 Antifungal (Amcal) 1034591000168108 Antifungal (Amcal) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1073061000168105 Instanyl 100 microgram/actuation nasal spray, 40 actuations, pump pack 197691 1073051000168108 Instanyl 100 microgram/actuation nasal spray, 40 actuations 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1073041000168106 fentanyl 100 microgram/actuation nasal spray, 40 actuations 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +891001000168100 Candesartan HCTZ 32/25 (Genpar) uncoated tablet, 30, blister pack 253614 890901000168107 Candesartan HCTZ 32/25 (Genpar) uncoated tablet, 30 890891000168108 Candesartan HCTZ 32/25 (Genpar) uncoated tablet 890881000168105 Candesartan HCTZ 32/25 (Genpar) 890881000168105 Candesartan HCTZ 32/25 (Genpar) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +74782011000036104 Roxithromycin (Apo) 150 mg film-coated tablet, 10, blister pack 133748 74269011000036100 Roxithromycin (Apo) 150 mg film-coated tablet, 10 73807011000036104 Roxithromycin (Apo) 150 mg film-coated tablet 42311000168101 Roxithromycin (Apo) 42311000168101 Roxithromycin (Apo) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +888991000168100 Bindozef 1 g powder for injection, 1 vial 170374 888981000168103 Bindozef 1 g powder for injection, 1 vial 888971000168101 Bindozef 1 g powder for injection, vial 888961000168107 Bindozef 888961000168107 Bindozef 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +901841000168101 Amisulpride (SCP) 100 mg uncoated tablet, 30, blister pack 234706 901831000168105 Amisulpride (SCP) 100 mg uncoated tablet, 30 901821000168107 Amisulpride (SCP) 100 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +34747011000036103 Dicodin 120 mg modified release tablet, 56, bottle 47720 34329011000036106 Dicodin 120 mg modified release tablet, 56 34046011000036104 Dicodin 120 mg modified release tablet 33938011000036107 Dicodin 33938011000036107 Dicodin 35177011000036102 dihydrocodeine tartrate 120 mg modified release tablet, 56 34891011000036102 dihydrocodeine tartrate 120 mg modified release tablet 34841011000036108 dihydrocodeine +726231000168102 PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets 726221000168100 PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets 726211000168107 PKU Anamix Junior Berry powder for oral liquid, 36 g sachet 30231000168101 PKU Anamix Junior 30231000168101 PKU Anamix Junior 702781000168101 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 30 x 36 g sachets 702761000168105 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 36 g sachet 702751000168108 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine +948961000168108 Risperidone (GA) 6 mg film-coated tablet, 60, blister pack 127875 948951000168106 Risperidone (GA) 6 mg film-coated tablet, 60 948941000168109 Risperidone (GA) 6 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 929205011000036107 risperidone 6 mg tablet, 60 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +20078011000036100 Estalis Continuous 50/140 patch, 8, sachet 70813 13306011000036106 Estalis Continuous 50/140 patch, 8 6590011000036100 Estalis Continuous 50/140 patch 54451000168102 Estalis Continuous 50/140 54451000168102 Estalis Continuous 50/140 27679011000036108 estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch, 8 23017011000036105 estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch 21228011000036101 estradiol + norethisterone acetate +983231000168109 Propofol (HX) 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 79583 983221000168106 Propofol (HX) 200 mg/20 mL injection emulsion, 5 x 20 mL ampoules 983211000168104 Propofol (HX) 200 mg/20 mL injection emulsion, 20 mL ampoule 933193851000036100 Propofol (HX) 933193851000036100 Propofol (HX) 38832011000036102 propofol 200 mg/20 mL injection, 5 x 20 mL ampoules 38037011000036101 propofol 200 mg/20 mL injection, ampoule 37750011000036109 propofol +717641000168101 Harvoni film-coated tablet, 28, bottle 222848 717631000168105 Harvoni film-coated tablet, 28 717611000168100 Harvoni film-coated tablet 717481000168108 Harvoni 717481000168108 Harvoni 717621000168107 ledipasvir 90 mg + sofosbuvir 400 mg tablet, 28 717601000168103 ledipasvir 90 mg + sofosbuvir 400 mg tablet 717591000168105 ledipasvir + sofosbuvir +60073011000036104 Vermox 100 mg uncoated tablet, 6, blister pack 125654 11969011000036102 Vermox 100 mg uncoated tablet, 6 4928011000036105 Vermox 100 mg uncoated tablet 19531000168104 Vermox 19531000168104 Vermox 26822011000036107 mebendazole 100 mg tablet, 6 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +52716011000036109 Simvastatin (Spirit) 20 mg film-coated tablet, 30, blister pack 116702 52528011000036103 Simvastatin (Spirit) 20 mg film-coated tablet, 30 52398011000036106 Simvastatin (Spirit) 20 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +21035011000036104 Glucovance 500/2.5 film-coated tablet, 90, blister pack 96728 14180011000036100 Glucovance 500/2.5 film-coated tablet, 90 7461011000036103 Glucovance 500/2.5 film-coated tablet 62251000168102 Glucovance 500/2.5 62251000168102 Glucovance 500/2.5 28196011000036101 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet, 90 23508011000036106 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet 21813011000036107 metformin + glibenclamide +14111000036108 Trovas 80 mg film-coated tablet, 30, bottle 179821 7781000036109 Trovas 80 mg film-coated tablet, 30 2401000036105 Trovas 80 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +44449011000036102 Doxycycline (Chemmart) 50 mg modified release capsule, 25, blister pack 74012 41905011000036102 Doxycycline (Chemmart) 50 mg modified release capsule, 25 40257011000036108 Doxycycline (Chemmart) 50 mg modified release capsule 3187011000036102 Doxycycline (Chemmart) 3187011000036102 Doxycycline (Chemmart) 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +116821000036106 Zopral ODT 15 mg orally disintegrating tablet, 28, blister pack 187430 115061000036104 Zopral ODT 15 mg orally disintegrating tablet, 28 112881000036108 Zopral ODT 15 mg orally disintegrating tablet 14811000168105 Zopral ODT 14811000168105 Zopral ODT 79818011000036103 lansoprazole 15 mg orally disintegrating tablet, 28 79747011000036107 lansoprazole 15 mg orally disintegrating tablet 21491011000036101 lansoprazole +21018011000036101 Enalapril Maleate (Terry White Chemists) 5 mg uncoated tablet, 30, blister pack 96336 14164011000036107 Enalapril Maleate (Terry White Chemists) 5 mg uncoated tablet, 30 7443011000036108 Enalapril Maleate (Terry White Chemists) 5 mg uncoated tablet 3999011000036105 Enalapril Maleate (Terry White Chemists) 3999011000036105 Enalapril Maleate (Terry White Chemists) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +850261000168109 Aripiprazole (Sandoz) 10 mg uncoated tablet, 30, blister pack 158283 850251000168107 Aripiprazole (Sandoz) 10 mg uncoated tablet, 30 850241000168105 Aripiprazole (Sandoz) 10 mg uncoated tablet 850231000168101 Aripiprazole (Sandoz) 850231000168101 Aripiprazole (Sandoz) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +20988011000036102 Simvar 40 mg film-coated tablet, 30, blister pack 95953 14134011000036103 Simvar 40 mg film-coated tablet, 30 7412011000036108 Simvar 40 mg film-coated tablet 3363011000036100 Simvar 3363011000036100 Simvar 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +20746011000036100 Sigmaxin 250 microgram uncoated tablet, 100, blister pack 90116 13915011000036106 Sigmaxin 250 microgram uncoated tablet, 100 7201011000036100 Sigmaxin 250 microgram uncoated tablet 54781000168102 Sigmaxin 54781000168102 Sigmaxin 28006011000036108 digoxin 250 microgram tablet, 100 23329011000036109 digoxin 250 microgram tablet 21696011000036109 digoxin +884741000168104 Lamitan 200 mg tablet, 56, blister pack 150754 884731000168108 Lamitan 200 mg tablet, 56 884721000168105 Lamitan 200 mg tablet 884551000168105 Lamitan 884551000168105 Lamitan 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +933216301000036103 Sodium Chloride (B Braun) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bottle 98311 933206051000036103 Sodium Chloride (B Braun) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bottle 933196881000036103 Sodium Chloride (B Braun) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bottle 78605011000036104 Sodium Chloride (B Braun) 78605011000036104 Sodium Chloride (B Braun) 933206061000036100 sodium chloride 0.9% (900 mg/100 mL) injection, 100 mL bottle 933196891000036101 sodium chloride 0.9% (900 mg/100 mL) injection, bottle 21308011000036103 sodium chloride +940211000168100 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 150 mL bottle 48500 940201000168103 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 150 mL bottle 940181000168104 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 150 mL bottle 20471000168101 Ultravist-370 20471000168101 Ultravist-370 940191000168101 iopromide 769 mg (iodine 370 mg)/mL injection, 150 mL bottle 940171000168102 iopromide 769 mg (iodine 370 mg)/mL injection, 150 mL bottle 77425011000036101 iopromide +80042011000036109 Oxaliplatin (Alphapharm) 100 mg powder for injection, 10 vials 130854 79963011000036100 Oxaliplatin (Alphapharm) 100 mg powder for injection, 10 vials 79919011000036101 Oxaliplatin (Alphapharm) 100 mg powder for injection, 100 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80059011000036101 oxaliplatin 100 mg injection, 10 vials 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +890601000168103 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet, 30, blister pack 198393 890591000168105 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet, 30 890531000168106 Candesartan HCTZ 32/12.5 (DRLA) uncoated tablet 890521000168108 Candesartan HCTZ 32/12.5 (DRLA) 890521000168108 Candesartan HCTZ 32/12.5 (DRLA) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +59912011000036109 Extra Strong Pain Relief (Terry White Chemists) tablet, 24, blister pack 117611 55874011000036107 Extra Strong Pain Relief (Terry White Chemists) tablet, 24 53607011000036106 Extra Strong Pain Relief (Terry White Chemists) tablet 53143011000036108 Extra Strong Pain Relief (Terry White Chemists) 53143011000036108 Extra Strong Pain Relief (Terry White Chemists) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +925176011000036102 Lercan 20 mg film-coated tablet, 14, blister pack 152708 924713011000036102 Lercan 20 mg film-coated tablet, 14 924429011000036103 Lercan 20 mg film-coated tablet 924368011000036107 Lercan 924368011000036107 Lercan 924197011000036103 lercanidipine hydrochloride 20 mg tablet, 14 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +20504011000036100 Gantin 100 mg hard capsule, 100, blister pack 78623 13704011000036104 Gantin 100 mg hard capsule, 100 6986011000036106 Gantin 100 mg hard capsule 3173011000036101 Gantin 3173011000036101 Gantin 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +764561000168106 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet, 20, blister pack 214488 764551000168109 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet, 20 764541000168107 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +68693011000036101 Skin Therapy Lotion (Hamilton) lotion, 500 mL, bottle 11077 66590011000036106 Skin Therapy Lotion (Hamilton) lotion, 500 mL 65465011000036109 Skin Therapy Lotion (Hamilton) lotion 65076011000036101 Skin Therapy Lotion (Hamilton) 65076011000036101 Skin Therapy Lotion (Hamilton) 71313011000036100 glycerol 5% + light liquid paraffin 15% lotion, 500 mL 69944011000036107 glycerol 5% + light liquid paraffin 15% lotion 69753011000036104 glycerol + light liquid paraffin +773141000168108 Famvir 500 mg film-coated tablet, 4, blister pack 67391 773131000168104 Famvir 500 mg film-coated tablet, 4 6484011000036101 Famvir 500 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 773121000168102 famciclovir 500 mg tablet, 4 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +18615011000036109 Tranalpha 4 mg hard capsule, 28, blister pack 130877 11913011000036104 Tranalpha 4 mg hard capsule, 28 4454011000036104 Tranalpha 4 mg hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +18615011000036109 Tranalpha 4 mg hard capsule, 28, blister pack 198995 11913011000036104 Tranalpha 4 mg hard capsule, 28 4454011000036104 Tranalpha 4 mg hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +933215981000036102 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application, 12 mL, bottle 56433 933205341000036108 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application, 12 mL 933196571000036102 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application 7061000168108 Tea Tree Oil Antiseptic (Coraki) 7061000168108 Tea Tree Oil Antiseptic (Coraki) 933205351000036106 melaleuca oil 1 mL/mL application, 12 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +19566011000036109 Amaryl 1 mg uncoated tablet, 30, blister pack 57186 12837011000036107 Amaryl 1 mg uncoated tablet, 30 6128011000036103 Amaryl 1 mg uncoated tablet 4320011000036103 Amaryl 4320011000036103 Amaryl 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +1120351000168108 Xque XR 400 mg modified release tablet, 100, blister pack 226806 1120341000168106 Xque XR 400 mg modified release tablet, 100 1120271000168107 Xque XR 400 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51539011000036109 quetiapine 400 mg modified release tablet, 100 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +752271000168104 Oxycodone (Actavis) 20 mg hard capsule, 20, blister pack 227837 752231000168102 Oxycodone (Actavis) 20 mg hard capsule, 20 752221000168100 Oxycodone (Actavis) 20 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +959721000168105 Ciram 10 mg film-coated tablet, 100, bottle 158857 959711000168103 Ciram 10 mg film-coated tablet, 100 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202971000036108 citalopram 10 mg tablet, 100 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +662291000168104 Citalopram (AN) 40 mg film-coated tablet, 28, blister pack 171338 662281000168102 Citalopram (AN) 40 mg film-coated tablet, 28 662271000168100 Citalopram (AN) 40 mg film-coated tablet 662261000168106 Citalopram (AN) 662261000168106 Citalopram (AN) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +31101000036101 Terbinafine (Sandoz) 250 mg uncoated tablet, 42, bottle 101686 28251000036104 Terbinafine (Sandoz) 250 mg uncoated tablet, 42 26351000036109 Terbinafine (Sandoz) 250 mg uncoated tablet 26291000036109 Terbinafine (Sandoz) 26291000036109 Terbinafine (Sandoz) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +980581000168101 Lovenox 80 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 80268 980571000168104 Lovenox 80 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 980501000168109 Lovenox 80 mg/0.8 mL injection solution, 0.8 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823621000168105 enoxaparin sodium 80 mg/0.8 mL injection, 15 x 0.8 mL syringes 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +50660011000036108 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30, bottle 193619 49684011000036107 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30 48819011000036104 Omeprazole (Terry White Chemists) 20 mg enteric tablet 48288011000036104 Omeprazole (Terry White Chemists) 48288011000036104 Omeprazole (Terry White Chemists) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +50660011000036108 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30, bottle 147432 49684011000036107 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30 48819011000036104 Omeprazole (Terry White Chemists) 20 mg enteric tablet 48288011000036104 Omeprazole (Terry White Chemists) 48288011000036104 Omeprazole (Terry White Chemists) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +992111000168100 Sitagliptin (Apo) 25 mg coated tablet, 28, blister pack 224395 992101000168103 Sitagliptin (Apo) 25 mg coated tablet, 28 992091000168108 Sitagliptin (Apo) 25 mg coated tablet 992051000168103 Sitagliptin (Apo) 992051000168103 Sitagliptin (Apo) 39485011000036105 sitagliptin 25 mg tablet, 28 39439011000036103 sitagliptin 25 mg tablet 39426011000036109 sitagliptin +931584011000036107 Redichol 40 mg film-coated tablet, 100, bottle 163554 930745011000036107 Redichol 40 mg film-coated tablet, 100 930034011000036105 Redichol 40 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +46091000036104 Atorvastatin (Stada) 80 mg film-coated tablet, 30, blister pack 180318 43371000036106 Atorvastatin (Stada) 80 mg film-coated tablet, 30 40691000036106 Atorvastatin (Stada) 80 mg film-coated tablet 40251000036104 Atorvastatin (Stada) 40251000036104 Atorvastatin (Stada) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +61133011000036103 Combantrin-1 with Mebendazole Chocolate 100 mg/square block, 4 squares, sachet 72602 57076011000036101 Combantrin-1 with Mebendazole Chocolate 100 mg/square block, 4 squares 54186011000036107 Combantrin-1 with Mebendazole Chocolate 100 mg/square block 53266011000036105 Combantrin-1 with Mebendazole 53266011000036105 Combantrin-1 with Mebendazole 63729011000036104 mebendazole 100 mg/square block, 4 squares 62062011000036105 mebendazole 100 mg/square block 21850011000036105 mebendazole +833681000168107 Quick-Eze chewable tablet, 12, wrapping 97501 833671000168109 Quick-Eze chewable tablet, 12 833651000168100 Quick-Eze chewable tablet 60401000036106 Quick-Eze 60401000036106 Quick-Eze 833661000168103 calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet, 12 833641000168102 calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet 871081000168103 calcium carbonate + magnesium carbonate + magnesium trisilicate +974091000168107 Pregabalin (Teva) 300 mg hard capsule, 21, blister pack 229603 974081000168109 Pregabalin (Teva) 300 mg hard capsule, 21 974011000168103 Pregabalin (Teva) 300 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855551000168101 pregabalin 300 mg capsule, 21 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +18932011000036105 Nutraplus 10% cream, 100 g, tube 25360 12240011000036103 Nutraplus 10% cream, 100 g 5047011000036109 Nutraplus 10% cream 3844011000036106 Nutraplus 3844011000036106 Nutraplus 27005011000036108 urea 10% cream, 100 g 22378011000036108 urea 10% cream 21561011000036106 urea +807021000168103 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) uncoated tablet, 30, blister pack 224297 807011000168105 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) uncoated tablet, 30 807001000168107 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) uncoated tablet 806981000168103 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) 806981000168103 Perindopril Arginine/Amlodipine 10/10 (Blooms The Chemist) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +825021000168104 Havrix 1440 ELISA units/mL injection suspension, 1 mL vial 147333 825011000168106 Havrix 1440 ELISA units/mL injection suspension, 1 mL vial 824711000168108 Havrix 1440 ELISA units/mL injection suspension, vial 73776011000036105 Havrix 73776011000036105 Havrix 825001000168108 hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL vial 824701000168105 hepatitis A adult vaccine 1440 ELISA units/mL injection, vial 824641000168102 hepatitis A vaccine +1075641000168103 Aripiprazole (Auro) 30 mg uncoated tablet, 30, bottle 198181 1075531000168108 Aripiprazole (Auro) 30 mg uncoated tablet, 30 1075521000168105 Aripiprazole (Auro) 30 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +61375011000036108 Congested Cough Mixture (Pharmacy Health) oral liquid solution, 100 mL, bottle 81740 57300011000036105 Congested Cough Mixture (Pharmacy Health) oral liquid solution, 100 mL 54265011000036100 Congested Cough Mixture (Pharmacy Health) oral liquid solution, 10 mL 35051000168106 Congested Cough Mixture (Pharmacy Health) 35051000168106 Congested Cough Mixture (Pharmacy Health) 63800011000036104 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62082011000036107 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +926684011000036103 Lisoril 20 mg uncoated tablet, 30, blister pack 106497 926079011000036103 Lisoril 20 mg uncoated tablet, 30 925633011000036105 Lisoril 20 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +44288011000036103 Ethyol 500 mg powder for injection, 5 vials 63789 41759011000036104 Ethyol 500 mg powder for injection, 5 vials 40184011000036105 Ethyol 500 mg powder for injection, 500 mg vial 39627011000036109 Ethyol 39627011000036109 Ethyol 46566011000036101 amifostine 500 mg injection, 5 vials 45220011000036100 amifostine 500 mg injection, vial 44944011000036101 amifostine +1025951000168107 Pregabalin (Amneal) 25 mg hard capsule, 20, bottle 235853 1025941000168105 Pregabalin (Amneal) 25 mg hard capsule, 20 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +60154011000036108 Fefol Spansule modified release capsule, 60, blister pack 12987 56113011000036106 Fefol Spansule modified release capsule, 60 53793011000036106 Fefol Spansule modified release capsule 10751000168108 Fefol Spansule 10751000168108 Fefol Spansule 63220011000036100 ferrous sulfate 270 mg (iron 87.4 mg) + folic acid 300 microgram modified release capsule, 60 61892011000036108 ferrous sulfate 270 mg (iron 87.4 mg) + folic acid 300 microgram modified release capsule 61711011000036101 ferrous sulfate + folic acid +20776011000036101 Abilify 15 mg uncoated tablet, 30, blister pack 90998 13945011000036102 Abilify 15 mg uncoated tablet, 30 7233011000036108 Abilify 15 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1103031000168101 Duoresp Spiromax 400/12 powder for inhalation, 60 actuations, dry powder inhaler 267386 1103021000168104 Duoresp Spiromax 400/12 powder for inhalation, 60 actuations 1103011000168106 Duoresp Spiromax 400/12 powder for inhalation, actuation 1103001000168108 Duoresp Spiromax 400/12 1103001000168108 Duoresp Spiromax 400/12 83500011000036102 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 60 actuations 33685011000036105 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +20262011000036103 Piroxicam (Terry White Chemists) 20 mg capsule, 25, blister pack 75040 13472011000036106 Piroxicam (Terry White Chemists) 20 mg capsule, 25 6755011000036102 Piroxicam (Terry White Chemists) 20 mg capsule 3688011000036102 Piroxicam (Terry White Chemists) 3688011000036102 Piroxicam (Terry White Chemists) 27763011000036106 piroxicam 20 mg capsule, 25 23094011000036103 piroxicam 20 mg capsule 21531011000036103 piroxicam +929691011000036106 Calcium Folinate (Ebewe) 300 mg/30 mL injection, 30 mL vial 166259 929527011000036102 Calcium Folinate (Ebewe) 300 mg/30 mL injection, 30 mL vial 929411011000036108 Calcium Folinate (Ebewe) 300 mg/30 mL injection, 30 mL vial 929362011000036108 Calcium Folinate (Ebewe) 929362011000036108 Calcium Folinate (Ebewe) 26684011000036102 folinic acid 300 mg/30 mL injection, 30 mL vial 22080011000036101 folinic acid 300 mg/30 mL injection, vial 21617011000036108 folinic acid +44046011000036103 Isuprel 1 in 5000 (1 mg/5 mL) concentrated injection, 5 x 5 mL ampoules 48213 41535011000036104 Isuprel 1 in 5000 (1 mg/5 mL) concentrated injection, 5 x 5 mL ampoules 40046011000036101 Isuprel 1 in 5000 (1 mg/5 mL) concentrated injection, 5 mL ampoule 20251000168109 Isuprel 20251000168109 Isuprel 46370011000036105 isoprenaline hydrochloride 1 in 5000 (1 mg/5 mL) injection, 5 x 5 mL ampoules 45112011000036109 isoprenaline hydrochloride 1 in 5000 (1 mg/5 mL) injection, ampoule 37784011000036105 isoprenaline +657951000168106 Candesartan Cilexetil (AN) 4 mg uncoated tablet, 30, bottle 195505 655291000168102 Candesartan Cilexetil (AN) 4 mg uncoated tablet, 30 655281000168100 Candesartan Cilexetil (AN) 4 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +1090051000168109 Mometasone Allergy Relief (Pharmacy Health) 50 microgram/actuation nasal spray, 140 actuations, pump pack 285063 1090041000168107 Mometasone Allergy Relief (Pharmacy Health) 50 microgram/actuation nasal spray, 140 actuations 1090031000168103 Mometasone Allergy Relief (Pharmacy Health) 50 microgram/actuation nasal spray, actuation 1090021000168101 Mometasone Allergy Relief (Pharmacy Health) 1090021000168101 Mometasone Allergy Relief (Pharmacy Health) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +893421000168103 Olmesartan (AN) 40 mg film-coated tablet, 30, blister pack 221054 893411000168105 Olmesartan (AN) 40 mg film-coated tablet, 30 893401000168107 Olmesartan (AN) 40 mg film-coated tablet 893361000168103 Olmesartan (AN) 893361000168103 Olmesartan (AN) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +18298011000036101 Depo-Provera 150 mg/mL injection suspension, 1 mL vial 12300 11729011000036103 Depo-Provera 150 mg/mL injection suspension, 1 mL vial 5091011000036107 Depo-Provera 150 mg/mL injection suspension, vial 3830011000036100 Depo-Provera 3830011000036100 Depo-Provera 27121011000036106 medroxyprogesterone acetate 150 mg/mL injection, 1 mL vial 22487011000036109 medroxyprogesterone acetate 150 mg/mL injection, vial 21378011000036107 medroxyprogesterone +34828011000036101 Actiq 800 microgram lozenge on handle, 3, blister pack 91602 34403011000036106 Actiq 800 microgram lozenge on handle, 3 34078011000036101 Actiq 800 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 35242011000036100 fentanyl 800 microgram lozenge on handle, 3 34913011000036106 fentanyl 800 microgram lozenge on handle 21258011000036102 fentanyl +43804011000036103 Glimepiride (Sandoz) 3 mg uncoated tablet, 30, bottle 121789 11692011000036106 Glimepiride (Sandoz) 3 mg uncoated tablet, 30 5532011000036105 Glimepiride (Sandoz) 3 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +14021000036100 Olanzapine (GA) 10 mg film-coated tablet, 28, blister pack 179003 7681000036100 Olanzapine (GA) 10 mg film-coated tablet, 28 3091000036102 Olanzapine (GA) 10 mg film-coated tablet 31571000168107 Olanzapine (GA) 31571000168107 Olanzapine (GA) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +74799011000036108 Decongestant (Priceline) Refill 0.05% nasal spray, 20 mL, bottle 145371 74286011000036106 Decongestant (Priceline) Refill 0.05% nasal spray, 20 mL 73844011000036101 Decongestant (Priceline) Refill 0.05% nasal spray 73741011000036101 Decongestant (Priceline) 73741011000036101 Decongestant (Priceline) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +933212031000036107 Donpesyn 10 mg film-coated tablet, 56, blister pack 142234 933201441000036104 Donpesyn 10 mg film-coated tablet, 56 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200931000036105 donepezil hydrochloride 10 mg tablet, 56 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1085671000168100 Trumenba injection suspension, 10 x 0.5 mL syringes 276920 1085661000168106 Trumenba injection suspension, 10 x 0.5 mL syringes 1085611000168108 Trumenba injection suspension, 0.5 mL syringe 1085581000168101 Trumenba 1085581000168101 Trumenba 1085651000168109 meningococcal B bivalent vaccine injection, 10 x 0.5 mL syringes 1085601000168105 meningococcal B bivalent vaccine injection, 0.5 mL syringe 1085591000168103 meningococcal B bivalent vaccine +69372011000036109 Colonlytely Original Flavour powder for oral liquid, 68.58 g sachet 30138 67172011000036105 Colonlytely Original Flavour powder for oral liquid, 68.58 g sachet 65215011000036109 Colonlytely Original Flavour powder for oral liquid, 68.58 g sachet 36071000168106 Colonlytely 36071000168106 Colonlytely 71734011000036109 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid, 68.58 g sachet 70159011000036105 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid, 68.58 g sachet 52802011000036109 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + bicarbonate +44725011000036109 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent vials), 1 pack, composite pack 95042 42170011000036104 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent vials), 1 pack 40374011000036106 Luveris (lutropin alfa 75 units) powder for injection, 75 units vial 39654011000036102 Luveris 39654011000036102 Luveris 46931011000036108 lutropin alfa 75 units injection [10 vials] (&) inert substance diluent [10 x 1 mL vials], 1 pack 45349011000036102 lutropin alfa 75 units injection, vial 44973011000036102 lutropin alfa +44725011000036109 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent vials), 1 pack, composite pack 95042 42170011000036104 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent vials), 1 pack 633371000168106 Luveris (inert substance) diluent, 1 mL vial 39654011000036102 Luveris 39654011000036102 Luveris 46931011000036108 lutropin alfa 75 units injection [10 vials] (&) inert substance diluent [10 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +1090011000168108 Mometasone Allergy Relief (Priceline Pharmacy) 50 microgram/actuation nasal spray, 140 actuations, pump pack 285064 1090001000168105 Mometasone Allergy Relief (Priceline Pharmacy) 50 microgram/actuation nasal spray, 140 actuations 1089991000168109 Mometasone Allergy Relief (Priceline Pharmacy) 50 microgram/actuation nasal spray, actuation 1089981000168106 Mometasone Allergy Relief (Priceline Pharmacy) 1089981000168106 Mometasone Allergy Relief (Priceline Pharmacy) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +19883011000036101 Lipex 80 mg film-coated tablet, 30, blister pack 65524 13130011000036105 Lipex 80 mg film-coated tablet, 30 6413011000036100 Lipex 80 mg film-coated tablet 3298011000036103 Lipex 3298011000036103 Lipex 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +931430011000036104 Ranital Forte 300 mg film-coated tablet, 7, blister pack 117184 930565011000036100 Ranital Forte 300 mg film-coated tablet, 7 929931011000036102 Ranital Forte 300 mg film-coated tablet 42291000168100 Ranital Forte 42291000168100 Ranital Forte 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +850081000168106 Vzole 200 mg film-coated tablet, 28, bottle 238241 849811000168101 Vzole 200 mg film-coated tablet, 28 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46807011000036101 voriconazole 200 mg tablet, 28 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +60396011000036101 Febridol Co uncoated tablet, 100, blister pack 144070 56355011000036107 Febridol Co uncoated tablet, 100 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 52903011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 100 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +931567011000036103 Cholpra 20 mg film-coated tablet, 90, bottle 163543 930728011000036103 Cholpra 20 mg film-coated tablet, 90 930029011000036109 Cholpra 20 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932407011000036108 pravastatin sodium 20 mg tablet, 90 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +33560011000036107 Oxaliplan 50 mg powder for injection, 1 vial 141079 33298011000036100 Oxaliplan 50 mg powder for injection, 1 vial 33060011000036109 Oxaliplan 50 mg powder for injection, 50 mg vial 32998011000036107 Oxaliplan 32998011000036107 Oxaliplan 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +43849011000036108 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 100, blister pack 128034 41345011000036100 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 100 39801011000036104 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet 39566011000036107 Paracetamol (Pharmacy Choice) 39566011000036107 Paracetamol (Pharmacy Choice) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18181000036107 Ramipril (Pfizer) 10 mg uncoated tablet, 30, blister pack 175233 16751000036103 Ramipril (Pfizer) 10 mg uncoated tablet, 30 15541000036104 Ramipril (Pfizer) 10 mg uncoated tablet 15091000036101 Ramipril (Pfizer) 15091000036101 Ramipril (Pfizer) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +131971000036100 Montelukast (GH) 5 mg chewable tablet, 28, blister pack 189229 127981000036106 Montelukast (GH) 5 mg chewable tablet, 28 125581000036109 Montelukast (GH) 5 mg chewable tablet 124021000036101 Montelukast (GH) 124021000036101 Montelukast (GH) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +820111000168102 Daktarin 2% oral gel, 40 g, tube 13287 820101000168100 Daktarin 2% oral gel, 40 g 819981000168105 Daktarin 2% oral gel 431000168100 Daktarin 431000168100 Daktarin 818021000168104 miconazole 2% oral gel, 40 g 817971000168100 miconazole 2% oral gel 21454011000036108 miconazole +168381000036103 Dermasoft Sanitising Hand Gel gel, 100 mL, tube 61125 167941000036107 Dermasoft Sanitising Hand Gel gel, 100 mL 167511000036101 Dermasoft Sanitising Hand Gel gel 30361000168100 Dermasoft Sanitising Hand Gel 30361000168100 Dermasoft Sanitising Hand Gel 167971000036100 ethanol 70% + triclosan 0.3% gel, 100 mL 167521000036108 ethanol 70% + triclosan 0.3% gel 931785011000036107 ethanol + triclosan +168341000036107 Dermaveen Soap Free Wash 1% application, 250 mL, bottle 159188 167831000036107 Dermaveen Soap Free Wash 1% application, 250 mL 167591000036106 Dermaveen Soap Free Wash 1% application 23461000168103 Dermaveen Soap Free Wash 23461000168103 Dermaveen Soap Free Wash 167841000036102 colloidal oatmeal 1% application, 250 mL 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +891321000168107 Capecitabine (Sandoz) 500 mg film-coated tablet, 30, bottle 201798 891311000168100 Capecitabine (Sandoz) 500 mg film-coated tablet, 30 651941000168103 Capecitabine (Sandoz) 500 mg film-coated tablet 650871000168108 Capecitabine (Sandoz) 650871000168108 Capecitabine (Sandoz) 667791000168105 capecitabine 500 mg tablet, 30 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +1102871000168101 Aspramide 5 mg film-coated tablet, 100, blister pack 196499 1102861000168107 Aspramide 5 mg film-coated tablet, 100 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102851000168105 metoclopramide hydrochloride 5 mg tablet, 100 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +713531000168102 Capecitabine (MYX) 500 mg film-coated tablet, 120, blister pack 213034 713521000168100 Capecitabine (MYX) 500 mg film-coated tablet, 120 713511000168107 Capecitabine (MYX) 500 mg film-coated tablet 713471000168103 Capecitabine (MYX) 713471000168103 Capecitabine (MYX) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +933211871000036106 Pravastatin Sodium (Lupin) 40 mg film-coated tablet, 30, blister pack 139589 933200691000036100 Pravastatin Sodium (Lupin) 40 mg film-coated tablet, 30 933194641000036104 Pravastatin Sodium (Lupin) 40 mg film-coated tablet 933193951000036106 Pravastatin Sodium (Lupin) 933193951000036106 Pravastatin Sodium (Lupin) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +794911000168101 Instanyl 50 microgram/actuation nasal spray, 1 actuation, pump pack 197680 794901000168104 Instanyl 50 microgram/actuation nasal spray, 1 actuation 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 794891000168103 fentanyl 50 microgram/actuation nasal spray, 1 actuation 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +1075001000168108 Atenolol (RBX) 100 mg film-coated tablet, 84, blister pack 197761 1074991000168102 Atenolol (RBX) 100 mg film-coated tablet, 84 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1032011000168102 atenolol 100 mg tablet, 84 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +86069011000036101 Ezovir 500 mg film-coated tablet, 30, blister pack 157787 85726011000036101 Ezovir 500 mg film-coated tablet, 30 85362011000036105 Ezovir 500 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +752121000168109 Oxycodone (Actavis) 5 mg hard capsule, 60, bottle 227828 752111000168102 Oxycodone (Actavis) 5 mg hard capsule, 60 752081000168107 Oxycodone (Actavis) 5 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +19399011000036101 Aquasun SPF 18 Broad Spectrum Sunscreen lotion, 125 mL, bottle 53035 12684011000036102 Aquasun SPF 18 Broad Spectrum Sunscreen lotion, 125 mL 5906011000036107 Aquasun SPF 18 Broad Spectrum Sunscreen lotion 41811000168101 Aquasun SPF 18 Broad Spectrum Sunscreen 41811000168101 Aquasun SPF 18 Broad Spectrum Sunscreen 27285011000036102 octyl methoxycinnamate 8.5% + butyl methoxydibenzoylmethane 2% lotion, 125 mL 22640011000036104 octyl methoxycinnamate 8.5% + butyl methoxydibenzoylmethane 2% lotion 21793011000036105 octyl methoxycinnamate + butyl methoxydibenzoylmethane +18221000036101 Vascalace 10 mg uncoated tablet, 30, blister pack 175238 16801000036106 Vascalace 10 mg uncoated tablet, 30 15351000036108 Vascalace 10 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +50452011000036104 Atrauman Ag (499572) 10 cm x 10 cm tulle dressing, 3, carton 49461011000036109 Atrauman Ag (499572) 10 cm x 10 cm tulle dressing, 3 48541011000036107 Atrauman Ag (499572) 10 cm x 10 cm tulle dressing 58131000168109 Atrauman Ag (499572) 58131000168109 Atrauman Ag (499572) 51422011000036105 dressing with silver 10 cm x 10 cm tulle dressing, 3 50939011000036107 dressing with silver 10 cm x 10 cm tulle dressing 50760011000036100 dressing with silver +18690011000036101 Carboplatin (Ebewe) 50 mg/5 mL injection, 5 mL vial 104401 11287011000036105 Carboplatin (Ebewe) 50 mg/5 mL injection, 5 mL vial 4972011000036108 Carboplatin (Ebewe) 50 mg/5 mL injection, 5 mL vial 3914011000036108 Carboplatin (Ebewe) 3914011000036108 Carboplatin (Ebewe) 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +980741000168102 Favint 18 microgram powder for inhalation, 10 capsules, blister pack 98765 980731000168106 Favint 18 microgram powder for inhalation, 10 capsules 980711000168101 Favint 18 microgram powder for inhalation, 1 capsule 980671000168100 Favint 980671000168100 Favint 980721000168108 tiotropium 18 microgram powder for inhalation, 10 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +661651000168100 Topiramate (GH) 25 mg film-coated tablet, 60, bottle 135766 661641000168102 Topiramate (GH) 25 mg film-coated tablet, 60 661631000168106 Topiramate (GH) 25 mg film-coated tablet 661591000168106 Topiramate (GH) 661591000168106 Topiramate (GH) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +1083541000168105 Disodium Edetate 3 g plus Sodium Ascorbate 5 g with Ethanol (Biological Therapies) powder for injection, 1 vial 22288 1083531000168101 Disodium Edetate 3 g plus Sodium Ascorbate 5 g with Ethanol (Biological Therapies) powder for injection, 1 vial 1083511000168106 Disodium Edetate 3 g plus Sodium Ascorbate 5 g with Ethanol (Biological Therapies) powder for injection, vial 1080881000168105 Disodium Edetate 3 g plus Sodium Ascorbate 5 g with Ethanol (Biological Therapies) 1080881000168105 Disodium Edetate 3 g plus Sodium Ascorbate 5 g with Ethanol (Biological Therapies) 1083521000168104 edetate disodium 3 g + sodium ascorbate 5 g injection, 1 vial 1083501000168108 edetate disodium 3 g + sodium ascorbate 5 g injection, vial 680831000168100 edetic acid + ascorbic acid +717871000168107 Ciprofloxacin (Auro) 500 mg film-coated tablet, 14, blister pack 175440 717861000168101 Ciprofloxacin (Auro) 500 mg film-coated tablet, 14 717851000168103 Ciprofloxacin (Auro) 500 mg film-coated tablet 717841000168100 Ciprofloxacin (Auro) 717841000168100 Ciprofloxacin (Auro) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1081421000168102 Zertine 10 mg film-coated tablet, 10, blister pack 287545 1081411000168109 Zertine 10 mg film-coated tablet, 10 1081371000168108 Zertine 10 mg film-coated tablet 1081361000168102 Zertine 1081361000168102 Zertine 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1081421000168102 Zertine 10 mg film-coated tablet, 10, blister pack 287404 1081411000168109 Zertine 10 mg film-coated tablet, 10 1081371000168108 Zertine 10 mg film-coated tablet 1081361000168102 Zertine 1081361000168102 Zertine 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +74915011000036102 Brown Snake Antivenom (CSL) 1000 units intravenous infusion injection, 1 vial 74897 74402011000036105 Brown Snake Antivenom (CSL) 1000 units intravenous infusion injection, 1 vial 73925011000036106 Brown Snake Antivenom (CSL) 1000 units intravenous infusion injection, vial 73713011000036107 Brown Snake Antivenom (CSL) 73713011000036107 Brown Snake Antivenom (CSL) 75499011000036109 brown snake antivenom 1000 units injection, 1 vial 75099011000036101 brown snake antivenom 1000 units injection, vial 74978011000036101 brown snake antivenom +18915011000036105 Aquacare/HP 10% cream, 100 g, tube 23199 12223011000036108 Aquacare/HP 10% cream, 100 g 4596011000036109 Aquacare/HP 10% cream 54161000168107 Aquacare/HP 54161000168107 Aquacare/HP 27005011000036108 urea 10% cream, 100 g 22378011000036108 urea 10% cream 21561011000036106 urea +1084181000168107 Salofalk 1 g modified release granules, 100 sachets 80649 1084171000168109 Salofalk 1 g modified release granules, 100 sachets 1084131000168106 Salofalk 1 g modified release granules, sachet 12771000168100 Salofalk 12771000168100 Salofalk 28305011000036102 mesalazine 1 g modified release granules, 100 sachets 23619011000036106 mesalazine 1 g modified release granules, sachet 21351011000036101 mesalazine +1083661000168105 Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL, pump pack 116729 74218011000036107 Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL 73868011000036104 Decongestant (Your Pharmacy) 0.05% nasal spray 73684011000036103 Decongestant (Your Pharmacy) 73684011000036103 Decongestant (Your Pharmacy) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +1098601000168100 Cetirizine (Amcal) 10 mg film-coated tablet, 30, blister pack 230792 1098591000168107 Cetirizine (Amcal) 10 mg film-coated tablet, 30 1098561000168100 Cetirizine (Amcal) 10 mg film-coated tablet 1098551000168102 Cetirizine (Amcal) 1098551000168102 Cetirizine (Amcal) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +44016011000036108 Phenytoin Sodium (DBL) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 46942 41505011000036105 Phenytoin Sodium (DBL) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 40023011000036109 Phenytoin Sodium (DBL) 100 mg/2 mL injection solution, 2 mL ampoule 39613011000036109 Phenytoin Sodium (DBL) 39613011000036109 Phenytoin Sodium (DBL) 46347011000036107 phenytoin sodium 100 mg/2 mL injection, 5 x 2 mL ampoules 45097011000036100 phenytoin sodium 100 mg/2 mL injection, ampoule 21672011000036100 phenytoin +897671000168107 Nicotinell Mint 2 mg chewing gum, 384, blister pack 126043 897661000168101 Nicotinell Mint 2 mg chewing gum, 384 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897651000168103 nicotine 2 mg gum, 384 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +61664011000036106 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 24, blister pack 97350 57586011000036106 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 24 54357011000036107 Paracetamol Tabsule (Herron) 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1077171000168106 Atomoxetine (AS) 18 mg hard capsule, 7, blister pack 238359 1077161000168100 Atomoxetine (AS) 18 mg hard capsule, 7 1077151000168102 Atomoxetine (AS) 18 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +18707011000036109 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10419 11271011000036105 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5104011000036101 Triphasil (inert substance) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +18707011000036109 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10419 11271011000036105 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5079011000036101 Triphasil (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +18707011000036109 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10419 11271011000036105 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5101011000036104 Triphasil (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +18707011000036109 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10419 11271011000036105 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 4527011000036104 Triphasil (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +44530011000036103 Midazolam (Sandoz) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 78974 41983011000036104 Midazolam (Sandoz) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 40302011000036105 Midazolam (Sandoz) 15 mg/3 mL injection solution, 3 mL ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +39390011000036105 Tryzan 5 mg uncoated tablet, 10, blister pack 129918 39274011000036101 Tryzan 5 mg uncoated tablet, 10 39205011000036105 Tryzan 5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39473011000036104 ramipril 5 mg tablet, 10 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +807821000168107 Irbesartan (Apo) 300 mg film-coated tablet, 30, blister pack 169786 807811000168100 Irbesartan (Apo) 300 mg film-coated tablet, 30 807801000168103 Irbesartan (Apo) 300 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +807821000168107 Irbesartan (Apo) 300 mg film-coated tablet, 30, blister pack 213311 807811000168100 Irbesartan (Apo) 300 mg film-coated tablet, 30 807801000168103 Irbesartan (Apo) 300 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +1086351000168109 Monofer 100 mg/mL injection solution, 10 x 1 mL vials 280666 1086341000168107 Monofer 100 mg/mL injection solution, 10 x 1 mL vials 1086261000168102 Monofer 100 mg/mL injection solution, vial 1085781000168107 Monofer 1085781000168107 Monofer 1086331000168103 iron (as ferric derisomaltose) 100 mg/mL injection, 10 x 1 mL vials 1086251000168104 iron (as ferric derisomaltose) 100 mg/mL injection, vial 1085791000168105 ferric derisomaltose +82381011000036104 Duocover 75 mg/100 mg film-coated tablet, 112, blister pack 151075 82170011000036105 Duocover 75 mg/100 mg film-coated tablet, 112 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82544011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 112 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +19992011000036101 Oxycontin 40 mg modified release tablet, 20, blister pack 68191 13231011000036101 Oxycontin 40 mg modified release tablet, 20 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +19992011000036101 Oxycontin 40 mg modified release tablet, 20, blister pack 200024 13231011000036101 Oxycontin 40 mg modified release tablet, 20 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +926958011000036101 Tramadol SR (Sandoz) 200 mg modified release tablet, 20, blister pack 99258 926352011000036105 Tramadol SR (Sandoz) 200 mg modified release tablet, 20 925779011000036103 Tramadol SR (Sandoz) 200 mg modified release tablet 32631000168103 Tramadol SR (Sandoz) 32631000168103 Tramadol SR (Sandoz) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +982841000168107 Ibrance 125 mg hard capsule, 21, bottle 274620 982671000168104 Ibrance 125 mg hard capsule, 21 982651000168108 Ibrance 125 mg hard capsule 982621000168100 Ibrance 982621000168100 Ibrance 982661000168105 palbociclib 125 mg capsule, 21 982641000168106 palbociclib 125 mg capsule 982631000168102 palbociclib +995811000168100 Difflam Lozenge Orange Sugar Free lozenge, 16, blister pack 72151 995801000168103 Difflam Lozenge Orange Sugar Free lozenge, 16 995791000168104 Difflam Lozenge Orange Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +792741000168109 Abisart HCT 150/12.5 film-coated tablet, 90, bottle 215943 792731000168100 Abisart HCT 150/12.5 film-coated tablet, 90 98791000036109 Abisart HCT 150/12.5 film-coated tablet 27881000168102 Abisart HCT 150/12.5 27881000168102 Abisart HCT 150/12.5 792721000168103 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 90 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +82341000036101 Rabeprazole Sodium (Generic Health) 10 mg enteric tablet, 28, blister pack 189747 80311000036101 Rabeprazole Sodium (Generic Health) 10 mg enteric tablet, 28 78511000036101 Rabeprazole Sodium (Generic Health) 10 mg enteric tablet 77851000036103 Rabeprazole Sodium (Generic Health) 77851000036103 Rabeprazole Sodium (Generic Health) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1098621000168109 Cetirizine (Amcal) 10 mg film-coated tablet, 70, blister pack 230792 1098611000168102 Cetirizine (Amcal) 10 mg film-coated tablet, 70 1098561000168100 Cetirizine (Amcal) 10 mg film-coated tablet 1098551000168102 Cetirizine (Amcal) 1098551000168102 Cetirizine (Amcal) 1082121000168102 cetirizine hydrochloride 10 mg tablet, 70 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +655141000168102 Duloxetine (AN) 60 mg enteric capsule, 28, blister pack 199011 655131000168106 Duloxetine (AN) 60 mg enteric capsule, 28 655121000168108 Duloxetine (AN) 60 mg enteric capsule 655081000168106 Duloxetine (AN) 655081000168106 Duloxetine (AN) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +1017231000168105 Famciclovir (Apotex) 500 mg film-coated tablet, 30, blister pack 172444 1017221000168107 Famciclovir (Apotex) 500 mg film-coated tablet, 30 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +751631000168105 Bugesic 100 mg/5 mL oral liquid suspension, 100 mL, bottle 80886 751621000168107 Bugesic 100 mg/5 mL oral liquid suspension, 100 mL 751591000168105 Bugesic 100 mg/5 mL oral liquid suspension, 5 mL 53403011000036104 Bugesic 53403011000036104 Bugesic 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +933246171000036104 Allevyn Ag Non-Adhesive (66800086) 10 cm x 10 cm medicated dressing, 10, carton 155652 933242821000036108 Allevyn Ag Non-Adhesive (66800086) 10 cm x 10 cm medicated dressing, 10 933241121000036105 Allevyn Ag Non-Adhesive (66800086) 10 cm x 10 cm medicated dressing 40841000168108 Allevyn Ag Non-Adhesive (66800086) 40841000168108 Allevyn Ag Non-Adhesive (66800086) 933242791000036102 dressing foam with silver 10 cm x 10 cm dressing, 10 933241111000036103 dressing foam with silver 10 cm x 10 cm dressing 933247641000036101 dressing foam with silver +983391000168103 Sertraline (Apotex) 100 mg film-coated tablet, 30, blister pack 150242 983381000168101 Sertraline (Apotex) 100 mg film-coated tablet, 30 983371000168104 Sertraline (Apotex) 100 mg film-coated tablet 982111000168104 Sertraline (Apotex) 982111000168104 Sertraline (Apotex) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +914441000168104 Amoxyclav 500/125 (Sandoz) film-coated tablet, 10, blister pack 255079 914431000168108 Amoxyclav 500/125 (Sandoz) film-coated tablet, 10 914401000168101 Amoxyclav 500/125 (Sandoz) film-coated tablet 914391000168103 Amoxyclav 500/125 (Sandoz) 914391000168103 Amoxyclav 500/125 (Sandoz) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +19811011000036104 Flixotide CFC-Free 250 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 63448 13068011000036108 Flixotide CFC-Free 250 microgram/actuation pressurised inhalation, 120 actuations 6352011000036106 Flixotide CFC-Free 250 microgram/actuation pressurised inhalation, actuation 29811000168100 Flixotide 29811000168100 Flixotide 27531011000036101 fluticasone propionate 250 microgram/actuation pressurised inhalation, 120 actuations 22871011000036101 fluticasone propionate 250 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +858301000168103 Amichlor 10 mg film-coated tablet, 100, bottle 215366 858291000168104 Amichlor 10 mg film-coated tablet, 100 858281000168102 Amichlor 10 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1007091000168100 Mirtanza 30 mg film-coated tablet, 30, blister pack 127680 1007081000168103 Mirtanza 30 mg film-coated tablet, 30 1007071000168101 Mirtanza 30 mg film-coated tablet 1007031000168104 Mirtanza 1007031000168104 Mirtanza 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +978181000168103 Rexulti 250 microgram film-coated tablet, 30, blister pack 273225 978171000168101 Rexulti 250 microgram film-coated tablet, 30 978151000168105 Rexulti 250 microgram film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978161000168107 brexpiprazole 250 microgram tablet, 30 978141000168108 brexpiprazole 250 microgram tablet 978131000168104 brexpiprazole +176521000036103 Sildenafil (Chemmart) 50 mg film-coated tablet, 4, blister pack 164816 174731000036100 Sildenafil (Chemmart) 50 mg film-coated tablet, 4 173451000036104 Sildenafil (Chemmart) 50 mg film-coated tablet 172551000036108 Sildenafil (Chemmart) 172551000036108 Sildenafil (Chemmart) 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +806901000168106 Perindopril Arginine/Amlodipine 5/5 (Chemmart) uncoated tablet, 30, blister pack 224322 806891000168107 Perindopril Arginine/Amlodipine 5/5 (Chemmart) uncoated tablet, 30 806881000168109 Perindopril Arginine/Amlodipine 5/5 (Chemmart) uncoated tablet 806811000168103 Perindopril Arginine/Amlodipine 5/5 (Chemmart) 806811000168103 Perindopril Arginine/Amlodipine 5/5 (Chemmart) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +837131000168106 Fintast 5 mg film-coated tablet, 28, blister pack 210614 837121000168108 Fintast 5 mg film-coated tablet, 28 837111000168101 Fintast 5 mg film-coated tablet 807461000168100 Fintast 807461000168100 Fintast 933243481000036102 finasteride 5 mg tablet, 28 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +903291000168107 Brillior 200 mg hard capsule, 20, blister pack 224343 903281000168109 Brillior 200 mg hard capsule, 20 903241000168104 Brillior 200 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 903271000168106 pregabalin 200 mg capsule, 20 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +60188011000036109 Diarrhoea Relief (Pharmacy Choice) 2 mg tablet, 20, blister pack 132049 56147011000036108 Diarrhoea Relief (Pharmacy Choice) 2 mg tablet, 20 53807011000036102 Diarrhoea Relief (Pharmacy Choice) 2 mg tablet 53552011000036106 Diarrhoea Relief (Pharmacy Choice) 53552011000036106 Diarrhoea Relief (Pharmacy Choice) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +931671011000036106 Twynsta 80/10 mg multilayer tablet, 98, blister pack 166266 930831011000036106 Twynsta 80/10 mg multilayer tablet, 98 930060011000036106 Twynsta 80/10 mg multilayer tablet 7561000168104 Twynsta 80/10 mg 7561000168104 Twynsta 80/10 mg 932444011000036106 telmisartan 80 mg + amlodipine 10 mg tablet, 98 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +1028601000168108 Hexaxim injection suspension, 0.5 mL syringe 215536 1028591000168101 Hexaxim injection suspension, 0.5 mL syringe 1028571000168102 Hexaxim injection suspension, 0.5 mL syringe 1028541000168109 Hexaxim 1028541000168109 Hexaxim 1028581000168104 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent + Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, 0.5 mL syringe 1028561000168108 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent + Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, 0.5 mL syringe 1028551000168106 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent + Haemophilus influenzae type b conjugate (PRP-T) vaccine +1004121000168109 Midazolam (Apo) 5 mg/mL injection solution, 10 x 1 mL ampoules 217666 1004111000168102 Midazolam (Apo) 5 mg/mL injection solution, 10 x 1 mL ampoules 1004101000168100 Midazolam (Apo) 5 mg/mL injection solution, ampoule 1004091000168105 Midazolam (Apo) 1004091000168105 Midazolam (Apo) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +60152011000036104 Fefol Spansule modified release capsule, 10, blister pack 12987 56111011000036105 Fefol Spansule modified release capsule, 10 53793011000036106 Fefol Spansule modified release capsule 10751000168108 Fefol Spansule 10751000168108 Fefol Spansule 63218011000036109 ferrous sulfate 270 mg (iron 87.4 mg) + folic acid 300 microgram modified release capsule, 10 61892011000036108 ferrous sulfate 270 mg (iron 87.4 mg) + folic acid 300 microgram modified release capsule 61711011000036101 ferrous sulfate + folic acid +754681000168108 Remifentanil (GenRx) 5 mg powder for injection, 5 vials 234714 754671000168105 Remifentanil (GenRx) 5 mg powder for injection, 5 vials 754661000168104 Remifentanil (GenRx) 5 mg powder for injection, 5 mg vial 754591000168107 Remifentanil (GenRx) 754591000168107 Remifentanil (GenRx) 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +81194011000036109 Senna-Col (Amcal) film-coated tablet, 90, bottle 81753 80696011000036107 Senna-Col (Amcal) film-coated tablet, 90 80240011000036104 Senna-Col (Amcal) film-coated tablet 80104011000036103 Senna-Col (Amcal) 80104011000036103 Senna-Col (Amcal) 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +13791000036102 Edurant 25 mg film-coated tablet, 30, bottle 176666 8901000036100 Edurant 25 mg film-coated tablet, 30 2551000036105 Edurant 25 mg film-coated tablet 621000036107 Edurant 621000036107 Edurant 8911000036103 rilpivirine 25 mg tablet, 30 2561000036108 rilpivirine 25 mg tablet 14661000036100 rilpivirine +891741000168100 Bicor 7.5 mg film-coated tablet, 28, blister pack 81607 891731000168109 Bicor 7.5 mg film-coated tablet, 28 891701000168102 Bicor 7.5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 874341000168107 bisoprolol fumarate 7.5 mg tablet, 28 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +926722011000036105 Perindopril Erbumine (Lupin) 2 mg uncoated tablet, 30, blister pack 125447 926127011000036103 Perindopril Erbumine (Lupin) 2 mg uncoated tablet, 30 925625011000036109 Perindopril Erbumine (Lupin) 2 mg uncoated tablet 925563011000036107 Perindopril Erbumine (Lupin) 925563011000036107 Perindopril Erbumine (Lupin) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +807951000168107 Perindopril Arginine (Apo) 5 mg film-coated tablet, 10, bottle 184806 807941000168105 Perindopril Arginine (Apo) 5 mg film-coated tablet, 10 807931000168101 Perindopril Arginine (Apo) 5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 727301000168100 perindopril arginine 5 mg tablet, 10 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +12191000036107 Quipine 100 mg film-coated tablet, 90, blister pack 162386 7351000036101 Quipine 100 mg film-coated tablet, 90 3081000036104 Quipine 100 mg film-coated tablet 961000036106 Quipine 961000036106 Quipine 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +38361000036109 Escitalopram (MPPL) 10 mg film-coated tablet, 100, bottle 165845 34691000036102 Escitalopram (MPPL) 10 mg film-coated tablet, 100 32981000036102 Escitalopram (MPPL) 10 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +18090011000036108 Pravastatin Sodium (GenRx) 20 mg uncoated tablet, 30, blister pack 118650 11587011000036102 Pravastatin Sodium (GenRx) 20 mg uncoated tablet, 30 5112011000036108 Pravastatin Sodium (GenRx) 20 mg uncoated tablet 4139011000036103 Pravastatin Sodium (GenRx) 4139011000036103 Pravastatin Sodium (GenRx) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +140631000036102 Terbinafine (GH) 250 mg uncoated tablet, 42, blister pack 200224 139431000036108 Terbinafine (GH) 250 mg uncoated tablet, 42 137951000036101 Terbinafine (GH) 250 mg uncoated tablet 137401000036109 Terbinafine (GH) 137401000036109 Terbinafine (GH) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +69337011000036108 Menthol and Pine Inhalation (Gold Cross) inhalation solution, 50 mL, bottle 27361 67137011000036109 Menthol and Pine Inhalation (Gold Cross) inhalation solution, 50 mL 65449011000036104 Menthol and Pine Inhalation (Gold Cross) inhalation solution 65033011000036105 Menthol and Pine Inhalation (Gold Cross) 65033011000036105 Menthol and Pine Inhalation (Gold Cross) 71702011000036105 menthol 20 mg/mL + pine oil pumilio 50 mg/mL inhalation solution, 50 mL 70136011000036102 menthol 20 mg/mL + pine oil pumilio 50 mg/mL inhalation solution 69780011000036103 menthol + pine oil pumilio +85032011000036100 Paroxo 20 mg film-coated tablet, 28, blister pack 152489 84897011000036100 Paroxo 20 mg film-coated tablet, 28 84788011000036102 Paroxo 20 mg film-coated tablet 84767011000036100 Paroxo 84767011000036100 Paroxo 51564011000036104 paroxetine 20 mg tablet, 28 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +38371000036101 Escitalopram (MPPL) 10 mg film-coated tablet, 200, bottle 165845 34701000036102 Escitalopram (MPPL) 10 mg film-coated tablet, 200 32981000036102 Escitalopram (MPPL) 10 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +59791000036105 Azathioprine (PS) 50 mg film-coated tablet, 100, blister pack 184936 58881000036109 Azathioprine (PS) 50 mg film-coated tablet, 100 58291000036107 Azathioprine (PS) 50 mg film-coated tablet 58121000036104 Azathioprine (PS) 58121000036104 Azathioprine (PS) 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +681551000168103 Esomeprazole (Actavis) 40 mg enteric tablet, 100, blister pack 210844 681541000168100 Esomeprazole (Actavis) 40 mg enteric tablet, 100 681401000168103 Esomeprazole (Actavis) 40 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1024261000168100 Betadine Sore Throat Lozenges Orange lozenge, 6, blister pack 227169 1024251000168102 Betadine Sore Throat Lozenges Orange lozenge, 6 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +59681011000036102 Panafen IB Mini Cap 200 mg gelatin coated tablet, 48, blister pack 104660 55697011000036102 Panafen IB Mini Cap 200 mg gelatin coated tablet, 48 53654011000036107 Panafen IB Mini Cap 200 mg gelatin coated tablet 41591000168107 Panafen IB Mini Cap 41591000168107 Panafen IB Mini Cap 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1037281000168104 Atorvastatin (RBX) 80 mg film-coated tablet, 100, bottle 173502 1037271000168102 Atorvastatin (RBX) 80 mg film-coated tablet, 100 1037191000168109 Atorvastatin (RBX) 80 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +934681000168104 L-Arginine (RCH) 750 mg hard capsule, 250, jar 54260 934671000168102 L-Arginine (RCH) 750 mg hard capsule, 250 934651000168106 L-Arginine (RCH) 750 mg hard capsule 934621000168103 L-Arginine (RCH) 934621000168103 L-Arginine (RCH) 934661000168108 arginine 750 mg capsule, 250 934641000168109 arginine 750 mg capsule 934631000168100 arginine +658111000168107 Fludarabine Phosphate (Act) 50 mg powder for injection, 1 vial 147831 658101000168109 Fludarabine Phosphate (Act) 50 mg powder for injection, 1 vial 658091000168104 Fludarabine Phosphate (Act) 50 mg powder for injection, 50 mg vial 658081000168102 Fludarabine Phosphate (Act) 658081000168102 Fludarabine Phosphate (Act) 79814011000036105 fludarabine phosphate 50 mg injection, 1 vial 39441011000036101 fludarabine phosphate 50 mg injection, vial 39430011000036109 fludarabine +176601000036107 Levactam 250 mg film-coated tablet, 60, blister pack 177053 174811000036103 Levactam 250 mg film-coated tablet, 60 172981000036107 Levactam 250 mg film-coated tablet 172831000036103 Levactam 172831000036103 Levactam 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +20069011000036100 Antroquoril 0.02% ointment, 100 g, tube 172171 13299011000036105 Antroquoril 0.02% ointment, 100 g 6583011000036109 Antroquoril 0.02% ointment 3647011000036107 Antroquoril 3647011000036107 Antroquoril 27675011000036106 betamethasone (as valerate) 0.02% ointment, 100 g 23012011000036108 betamethasone (as valerate) 0.02% ointment 21366011000036103 betamethasone valerate +20069011000036100 Antroquoril 0.02% ointment, 100 g, tube 70411 13299011000036105 Antroquoril 0.02% ointment, 100 g 6583011000036109 Antroquoril 0.02% ointment 3647011000036107 Antroquoril 3647011000036107 Antroquoril 27675011000036106 betamethasone (as valerate) 0.02% ointment, 100 g 23012011000036108 betamethasone (as valerate) 0.02% ointment 21366011000036103 betamethasone valerate +807911000168106 PKU Go powder for oral liquid, 30 x 20 g sachets 807901000168108 PKU Go powder for oral liquid, 30 x 20 g sachets 807881000168106 PKU Go powder for oral liquid, 20 g sachet 807861000168102 PKU Go 807861000168102 PKU Go 807891000168109 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine powder for oral liquid, 30 x 20 g sachets 807871000168108 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine powder for oral liquid, 20 g sachet 758031000168109 amino acid formula with carbohydrate, vitamins, minerals and trace elements without phenylalanine +926820011000036109 Nicabate P 21 mg/24 hours patch, 14, sachet 171308 926216011000036106 Nicabate P 21 mg/24 hours patch, 14 925681011000036103 Nicabate P 21 mg/24 hours patch 9751000168104 Nicabate P 9751000168104 Nicabate P 71997011000036104 nicotine 21 mg/24 hours patch, 14 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +851131000168101 Lomotil uncoated tablet, 20, blister pack 74475 851121000168104 Lomotil uncoated tablet, 20 851051000168108 Lomotil uncoated tablet 3447011000036105 Lomotil 3447011000036105 Lomotil 851021000168100 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 20 851001000168109 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet 850991000168108 diphenoxylate + atropine sulfate monohydrate +891821000168100 Candesartan HCT 32/12.5 (Alphapharm) tablet, 30, bottle 206488 891681000168100 Candesartan HCT 32/12.5 (Alphapharm) tablet, 30 891651000168107 Candesartan HCT 32/12.5 (Alphapharm) tablet 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +21217011000036106 Roximycin 300 mg film-coated tablet, 5, blister pack 99939 14351011000036105 Roximycin 300 mg film-coated tablet, 5 7633011000036105 Roximycin 300 mg film-coated tablet 4346011000036103 Roximycin 4346011000036103 Roximycin 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +30971000036100 Allerdyne 10 mg uncoated tablet, 30, blister pack 176345 28771000036102 Allerdyne 10 mg uncoated tablet, 30 26941000036107 Allerdyne 10 mg uncoated tablet 26281000036107 Allerdyne 26281000036107 Allerdyne 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +969591000168106 Lypralin 150 mg hard capsule, 14, blister pack 235846 969581000168108 Lypralin 150 mg hard capsule, 14 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +17832011000036107 Sertraline (DP) 50 mg film-coated tablet, 30, blister pack 101485 11205011000036104 Sertraline (DP) 50 mg film-coated tablet, 30 5561011000036107 Sertraline (DP) 50 mg film-coated tablet 3496011000036103 Sertraline (DP) 3496011000036103 Sertraline (DP) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +81074011000036105 Seroquel XR 150 mg modified release tablet, 10, blister pack 153883 80583011000036108 Seroquel XR 150 mg modified release tablet, 10 80201011000036103 Seroquel XR 150 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 81658011000036107 quetiapine 150 mg modified release tablet, 10 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +929113011000036105 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 7, blister pack 166920 928474011000036101 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 7 927992011000036108 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929267011000036103 pioglitazone 15 mg tablet, 7 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +928894011000036102 Valnir 500 mg film-coated tablet, 10, blister pack 147607 928256011000036106 Valnir 500 mg film-coated tablet, 10 927909011000036101 Valnir 500 mg film-coated tablet 927774011000036103 Valnir 927774011000036103 Valnir 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1095951000168101 Ibuprofen (Genpar) 200 mg film-coated tablet, 96, blister pack 285310 1095941000168103 Ibuprofen (Genpar) 200 mg film-coated tablet, 96 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933229461000036107 Dencorub Regular Strength Heat cream, 100 g, tube 10133 933223441000036109 Dencorub Regular Strength Heat cream, 100 g 933219701000036108 Dencorub Regular Strength Heat cream 24821000168108 Dencorub Regular Strength Heat 24821000168108 Dencorub Regular Strength Heat 71200011000036103 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream, 100 g 69899011000036106 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +808271000168106 Pramipexole XR (GP) 375 microgram modified release tablet, 10, blister pack 225591 808261000168100 Pramipexole XR (GP) 375 microgram modified release tablet, 10 808251000168102 Pramipexole XR (GP) 375 microgram modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 87812011000036108 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 10 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +888591000168109 Capecitabine (Teva) 500 mg film-coated tablet, 120, blister pack 229795 888581000168106 Capecitabine (Teva) 500 mg film-coated tablet, 120 888571000168108 Capecitabine (Teva) 500 mg film-coated tablet 888561000168102 Capecitabine (Teva) 888561000168102 Capecitabine (Teva) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +34658011000036105 Concerta 27 mg modified release tablet, 60, bottle 124502 34247011000036109 Concerta 27 mg modified release tablet, 60 4920011000036108 Concerta 27 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35118011000036108 methylphenidate hydrochloride 27 mg modified release tablet, 60 22152011000036104 methylphenidate hydrochloride 27 mg modified release tablet 21277011000036101 methylphenidate +921992011000036105 Magnevist 4.69 g/10 mL injection solution, 5 x 10 mL syringes 54671 921550011000036107 Magnevist 4.69 g/10 mL injection solution, 5 x 10 mL syringes 921082011000036102 Magnevist 4.69 g/10 mL injection solution, 10 mL syringe 920916011000036100 Magnevist 920916011000036100 Magnevist 922666011000036108 gadopentetate dimeglumine 4.69 g/10 mL injection, 5 x 10 mL syringes 922147011000036100 gadopentetate dimeglumine 4.69 g/10 mL injection, syringe 922037011000036106 gadopentetic acid +958031000168102 Ozvir 400 mg tablet, 56, blister pack 117381 958021000168100 Ozvir 400 mg tablet, 56 958011000168107 Ozvir 400 mg tablet 3956011000036107 Ozvir 3956011000036107 Ozvir 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +920690011000036103 Fluconazole (Sandoz) 150 mg hard capsule, 28, blister pack 104290 920352011000036102 Fluconazole (Sandoz) 150 mg hard capsule, 28 920122011000036107 Fluconazole (Sandoz) 150 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 46113011000036100 fluconazole 150 mg capsule, 28 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +929718011000036106 Vaxigrip Junior 2011 injection solution, 1 x 0.25 mL syringe 97971 929554011000036109 Vaxigrip Junior 2011 injection solution, 1 x 0.25 mL syringe 929419011000036107 Vaxigrip Junior 2011 injection solution, 0.25 mL syringe 36301000168104 Vaxigrip Junior 2011 36301000168104 Vaxigrip Junior 2011 929773011000036109 influenza trivalent child vaccine 2011-2012 injection, 1 x 0.25 mL syringe 929728011000036100 influenza trivalent child vaccine 2011-2012 injection, 0.25 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +44827011000036101 Detrusitol 2 mg film-coated tablet, 140, blister pack 99394 42259011000036109 Detrusitol 2 mg film-coated tablet, 140 40408011000036103 Detrusitol 2 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47012011000036100 tolterodine tartrate 2 mg tablet, 140 45374011000036102 tolterodine tartrate 2 mg tablet 44907011000036104 tolterodine +715951000168103 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack, composite pack 158334 715941000168100 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack 715901000168102 Probitor 20 mg enteric capsule 922928011000036104 Probitor Hp7 2966011000036108 Probitor 715931000168109 omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +715951000168103 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack, composite pack 158334 715941000168100 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack 923047011000036100 Clarihexal 500 mg film-coated tablet 922928011000036104 Probitor Hp7 3421011000036100 Clarihexal 715931000168109 omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +715951000168103 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack, composite pack 158334 715941000168100 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack 7277011000036101 Amoxycillin (Sandoz) 500 mg hard capsule 922928011000036104 Probitor Hp7 3323011000036108 Amoxycillin (Sandoz) 715931000168109 omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +17737011000036106 Calcitriol (GenRx) 0.25 microgram soft capsule, 100, bottle 128750 11859011000036100 Calcitriol (GenRx) 0.25 microgram soft capsule, 100 5954011000036106 Calcitriol (GenRx) 0.25 microgram soft capsule 3625011000036100 Calcitriol (GenRx) 3625011000036100 Calcitriol (GenRx) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +712801000168104 Brintellix 15 mg film-coated tablet, 28, blister pack 203981 712791000168100 Brintellix 15 mg film-coated tablet, 28 712771000168101 Brintellix 15 mg film-coated tablet 712621000168109 Brintellix 712621000168109 Brintellix 712781000168103 vortioxetine 15 mg tablet, 28 712761000168107 vortioxetine 15 mg tablet 712651000168101 vortioxetine +724581000168105 PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches 724571000168107 PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches 724561000168101 PKU Lophlex LQ 10 Tropical oral liquid solution, 62.5 mL pouch 35201000168102 PKU Lophlex LQ 10 35201000168102 PKU Lophlex LQ 10 724441000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL pouches 724421000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +19101011000036107 Tegretol CR 400 mg modified release tablet, 200, blister pack 42944 12406011000036106 Tegretol CR 400 mg modified release tablet, 200 4883011000036103 Tegretol CR 400 mg modified release tablet 7571000168105 Tegretol CR 7571000168105 Tegretol CR 27101011000036101 carbamazepine 400 mg modified release tablet, 200 22469011000036100 carbamazepine 400 mg modified release tablet 21319011000036108 carbamazepine +68892011000036104 Difflam 3% cream, 75 g, tube 10545 66507011000036105 Difflam 3% cream, 75 g 65480011000036103 Difflam 3% cream 15911000168103 Difflam 15911000168103 Difflam 71239011000036104 benzydamine hydrochloride 3% cream, 75 g 69914011000036101 benzydamine hydrochloride 3% cream 21819011000036105 benzydamine +685981000168100 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 174773 685971000168103 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 685541000168103 Femazole Duo 150 mg hard capsule 26061000036109 Femazole Duo 26061000036109 Femazole Duo 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +685981000168100 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 174773 685971000168103 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 26861000036101 Femazole Duo 1% cream 26061000036109 Femazole Duo 26061000036109 Femazole Duo 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +796351000168106 Quetiapine (Accord) 25 mg film-coated tablet, 20, blister pack 204152 796341000168109 Quetiapine (Accord) 25 mg film-coated tablet, 20 796331000168100 Quetiapine (Accord) 25 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1050111000168100 Oxycodone (Juno) 10 mg/mL injection solution, 5 x 1 mL ampoules 279321 1050101000168103 Oxycodone (Juno) 10 mg/mL injection solution, 5 x 1 mL ampoules 1050091000168108 Oxycodone (Juno) 10 mg/mL injection solution, ampoule 1049121000168102 Oxycodone (Juno) 1049121000168102 Oxycodone (Juno) 35093011000036105 oxycodone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 34845011000036105 oxycodone hydrochloride 10 mg/mL injection, ampoule 21259011000036105 oxycodone +1071461000168103 Quepine XR 50 mg modified release tablet, 60, blister pack 199878 1071451000168100 Quepine XR 50 mg modified release tablet, 60 1071441000168102 Quepine XR 50 mg modified release tablet 852351000168101 Quepine XR 852351000168101 Quepine XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +1004031000168106 Rivastigmine (Apo) 6 mg hard capsule, 500, bottle 160572 1004021000168108 Rivastigmine (Apo) 6 mg hard capsule, 500 1002981000168101 Rivastigmine (Apo) 6 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1004011000168101 rivastigmine 6 mg capsule, 500 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +20599011000036101 Lumigan 0.03% eye drops solution, 3 mL, bottle 80657 13781011000036103 Lumigan 0.03% eye drops solution, 3 mL 7067011000036101 Lumigan 0.03% eye drops solution 24941000168106 Lumigan 24941000168106 Lumigan 27937011000036103 bimatoprost 0.03% eye drops, 3 mL 23261011000036108 bimatoprost 0.03% eye drops 21297011000036105 bimatoprost +33562011000036106 Fosinopril Sodium/HCT 10/12.5 (Winthrop) uncoated tablet, 30, blister pack 143461 33300011000036106 Fosinopril Sodium/HCT 10/12.5 (Winthrop) uncoated tablet, 30 33062011000036108 Fosinopril Sodium/HCT 10/12.5 (Winthrop) uncoated tablet 46951000168100 Fosinopril Sodium/HCT 10/12.5 (Winthrop) 46951000168100 Fosinopril Sodium/HCT 10/12.5 (Winthrop) 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +754541000168104 Oxycodone (AS) 20 mg hard capsule, 20, bottle 227862 754531000168108 Oxycodone (AS) 20 mg hard capsule, 20 754521000168105 Oxycodone (AS) 20 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +1025461000168100 Baclofen (Apo) 25 mg tablet, 100, bottle 77576 1025451000168102 Baclofen (Apo) 25 mg tablet, 100 1025441000168104 Baclofen (Apo) 25 mg tablet 1025431000168108 Baclofen (Apo) 1025431000168108 Baclofen (Apo) 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +933214931000036102 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 30, bottle 163567 933204521000036106 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 30 933195551000036104 Pravastatin Sodium (RZ) 80 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +60813011000036108 Optrex 0.01% eye drops, 15 mL, bottle 57571 56769011000036100 Optrex 0.01% eye drops, 15 mL 54072011000036108 Optrex 0.01% eye drops 53471011000036109 Optrex 53471011000036109 Optrex 63559011000036102 naphazoline hydrochloride 0.01% eye drops, 15 mL 62016011000036108 naphazoline hydrochloride 0.01% eye drops 21921011000036106 naphazoline +20249011000036101 Augmentin Duo 500/125 film-coated tablet, 10, blister pack 142692 13460011000036103 Augmentin Duo 500/125 film-coated tablet, 10 6742011000036108 Augmentin Duo 500/125 film-coated tablet 37691000168101 Augmentin Duo 500/125 37691000168101 Augmentin Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20249011000036101 Augmentin Duo 500/125 film-coated tablet, 10, blister pack 74571 13460011000036103 Augmentin Duo 500/125 film-coated tablet, 10 6742011000036108 Augmentin Duo 500/125 film-coated tablet 37691000168101 Augmentin Duo 500/125 37691000168101 Augmentin Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20128011000036109 Vasocardol 60 mg film-coated tablet, 90, bottle 73180 13352011000036101 Vasocardol 60 mg film-coated tablet, 90 6637011000036100 Vasocardol 60 mg film-coated tablet 55741000168108 Vasocardol 55741000168108 Vasocardol 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +921848011000036106 Fenezal 10 mg film-coated tablet, 50, blister pack 134531 921402011000036106 Fenezal 10 mg film-coated tablet, 50 920987011000036104 Fenezal 10 mg film-coated tablet 920915011000036107 Fenezal 920915011000036107 Fenezal 27921011000036109 promethazine hydrochloride 10 mg tablet, 50 23245011000036102 promethazine hydrochloride 10 mg tablet 21237011000036104 promethazine +921969011000036102 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles 48244 921527011000036109 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles 921062011000036104 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 100 mL bottle 21931000168100 Omnipaque-300 21931000168100 Omnipaque-300 922649011000036106 iohexol 647 mg (iodine 300 mg)/mL injection, 10 x 100 mL bottles 922134011000036105 iohexol 647 mg (iodine 300 mg)/mL injection, 100 mL bottle 77459011000036103 iohexol +18414011000036108 Vancocin 250 mg capsule, 20, blister pack 14657 12053011000036103 Vancocin 250 mg capsule, 20 5873011000036100 Vancocin 250 mg capsule 28691000168104 Vancocin 28691000168104 Vancocin 26881011000036105 vancomycin 250 mg capsule, 20 22259011000036106 vancomycin 250 mg capsule 21381011000036106 vancomycin +38281000036109 Escitalopram (Lupin) 10 mg film-coated tablet, 100, bottle 165841 34611000036107 Escitalopram (Lupin) 10 mg film-coated tablet, 100 32911000036105 Escitalopram (Lupin) 10 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +61284011000036106 Setacol 10 mg film-coated tablet, 20, blister pack 78380 57220011000036107 Setacol 10 mg film-coated tablet, 20 54243011000036107 Setacol 10 mg film-coated tablet 53468011000036108 Setacol 53468011000036108 Setacol 46373011000036102 hyoscine butylbromide 10 mg tablet, 20 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +657061000168107 Irbesartan (AN) 150 mg film-coated tablet, 30, blister pack 192797 657051000168105 Irbesartan (AN) 150 mg film-coated tablet, 30 657041000168108 Irbesartan (AN) 150 mg film-coated tablet 656971000168100 Irbesartan (AN) 656971000168100 Irbesartan (AN) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1032951000168100 Ramipril (Apotex) 1.25 mg capsule, 30, bottle 179020 1032851000168108 Ramipril (Apotex) 1.25 mg capsule, 30 1032841000168106 Ramipril (Apotex) 1.25 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +865791000168108 Amitriptyline (PN) 10 mg tablet, 100, blister pack 232146 865781000168105 Amitriptyline (PN) 10 mg tablet, 100 865751000168103 Amitriptyline (PN) 10 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +43859011000036106 Lisinotrust 5 mg uncoated tablet, 28, blister pack 128135 41355011000036102 Lisinotrust 5 mg uncoated tablet, 28 39836011000036101 Lisinotrust 5 mg uncoated tablet 39731011000036109 Lisinotrust 39731011000036109 Lisinotrust 46262011000036105 lisinopril 5 mg tablet, 28 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +698891000168104 Ceftazidime (Hospira) 1 g powder for injection, 1 vial 177029 698881000168102 Ceftazidime (Hospira) 1 g powder for injection, 1 vial 698871000168100 Ceftazidime (Hospira) 1 g powder for injection, vial 698861000168106 Ceftazidime (Hospira) 698861000168106 Ceftazidime (Hospira) 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +59871000036100 Cyclosporin (Sandoz) 50 mg soft capsule, 30, blister pack 186359 58981000036101 Cyclosporin (Sandoz) 50 mg soft capsule, 30 58341000036109 Cyclosporin (Sandoz) 50 mg soft capsule 58081000036102 Cyclosporin (Sandoz) 58081000036102 Cyclosporin (Sandoz) 27973011000036109 ciclosporin 50 mg capsule, 30 23297011000036102 ciclosporin 50 mg capsule 21379011000036104 ciclosporin +972011000168108 Pregabalin (Apo) 75 mg hard capsule, 60, bottle 193247 970581000168105 Pregabalin (Apo) 75 mg hard capsule, 60 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +140471000036102 Versatis 5% dermal patch, 25, sachet 175178 139001000036109 Versatis 5% dermal patch, 25 137591000036100 Versatis 5% dermal patch 137391000036106 Versatis 137391000036106 Versatis 139021000036104 lidocaine (lignocaine) 5% patch, 25 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +1090691000168108 Dupixent 300 mg/2 mL injection solution, 2 x 2 mL syringes 282981 1090681000168105 Dupixent 300 mg/2 mL injection solution, 2 x 2 mL syringes 1090651000168103 Dupixent 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090561000168102 dupilumab 300 mg/2 mL injection, 2 x 2 mL syringes 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +1004081000168107 Losartan (Apo) 25 mg film-coated tablet, 30, blister pack 201817 1004071000168109 Losartan (Apo) 25 mg film-coated tablet, 30 1003831000168104 Losartan (Apo) 25 mg film-coated tablet 1003821000168102 Losartan (Apo) 1003821000168102 Losartan (Apo) 933224091000036109 losartan potassium 25 mg tablet, 30 933219981000036104 losartan potassium 25 mg tablet 44887011000036108 losartan +969681000168107 Lypralin 150 mg hard capsule, 84, blister pack 235846 969671000168109 Lypralin 150 mg hard capsule, 84 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 969661000168103 pregabalin 150 mg capsule, 84 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1075891000168105 Quetiapine (Auro) 100 mg film-coated tablet, 20, blister pack 172846 1075881000168107 Quetiapine (Auro) 100 mg film-coated tablet, 20 1075471000168107 Quetiapine (Auro) 100 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +84380011000036100 Indapamide Hemihydrate (GA) 2.5 mg film-coated tablet, 90, blister pack 167015 84072011000036106 Indapamide Hemihydrate (GA) 2.5 mg film-coated tablet, 90 83695011000036101 Indapamide Hemihydrate (GA) 2.5 mg film-coated tablet 83596011000036102 Indapamide Hemihydrate (GA) 83596011000036102 Indapamide Hemihydrate (GA) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +20573011000036108 Advantan 0.1% lotion, 20 g, tube 80272 13763011000036100 Advantan 0.1% lotion, 20 g 7048011000036109 Advantan 0.1% lotion 3513011000036101 Advantan 3513011000036101 Advantan 27926011000036104 methylprednisolone aceponate 0.1% lotion, 20 g 23250011000036108 methylprednisolone aceponate 0.1% lotion 21605011000036100 methylprednisolone +894791000168106 Atomoxetine (Sandoz) 18 mg hard capsule, 28, blister pack 238367 894781000168108 Atomoxetine (Sandoz) 18 mg hard capsule, 28 894661000168107 Atomoxetine (Sandoz) 18 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +130441000036108 Adesan HCT 16/12.5 uncoated tablet, 30, blister pack 163670 127441000036105 Adesan HCT 16/12.5 uncoated tablet, 30 124611000036103 Adesan HCT 16/12.5 uncoated tablet 42751000168104 Adesan HCT 16/12.5 42751000168104 Adesan HCT 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +44458011000036107 Clexane Forte 120 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 74173 41914011000036104 Clexane Forte 120 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 40262011000036101 Clexane Forte 120 mg/0.8 mL injection solution, 0.8 mL syringe 8871000168107 Clexane Forte 8871000168107 Clexane Forte 46703011000036107 enoxaparin sodium 120 mg/0.8 mL injection, 15 x 0.8 mL syringes 45275011000036108 enoxaparin sodium 120 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +824221000168106 Basaglar Kwikpen 100 units/mL injection solution, 5 x 3 mL injection devices 215552 824211000168104 Basaglar Kwikpen 100 units/mL injection solution, 5 x 3 mL injection devices 824131000168104 Basaglar Kwikpen 100 units/mL injection solution, 3 mL injection device 824111000168109 Basaglar Kwikpen 824111000168109 Basaglar Kwikpen 824201000168102 insulin glargine 100 units/mL injection, 5 x 3 mL injection devices 824121000168102 insulin glargine 100 units/mL injection, 3 mL injection device 21815011000036108 insulin glargine +12331000036109 Olanzapine ODT (DRLA) 10 mg orally disintegrating tablet, 28, blister pack 163412 7241000036107 Olanzapine ODT (DRLA) 10 mg orally disintegrating tablet, 28 1671000036107 Olanzapine ODT (DRLA) 10 mg orally disintegrating tablet 721000168107 Olanzapine ODT (DRLA) 721000168107 Olanzapine ODT (DRLA) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +79000011000036102 Janumet 50/1000 film-coated tablet, 14, blister pack 149023 78844011000036102 Janumet 50/1000 film-coated tablet, 14 78652011000036101 Janumet 50/1000 film-coated tablet 50451000168109 Janumet 50/1000 50451000168109 Janumet 50/1000 79235011000036105 sitagliptin 50 mg + metformin hydrochloride 1 g tablet, 14 79112011000036108 sitagliptin 50 mg + metformin hydrochloride 1 g tablet 79094011000036105 sitagliptin + metformin +799571000168103 Abyraz 15 mg uncoated tablet, 28, blister pack 159506 799561000168109 Abyraz 15 mg uncoated tablet, 28 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 788021000168103 aripiprazole 15 mg tablet, 28 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +933239501000036105 Exemestane (Apo) 25 mg sugar coated tablet, 30, blister pack 177312 933236811000036101 Exemestane (Apo) 25 mg sugar coated tablet, 30 933234741000036104 Exemestane (Apo) 25 mg sugar coated tablet 50811000168106 Exemestane (Apo) 50811000168106 Exemestane (Apo) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +1092981000168104 Antiseptic Concentrated Gargle (Chemists' Own) 7.5% mouthwash, 15 mL, bottle 281739 1092971000168102 Antiseptic Concentrated Gargle (Chemists' Own) 7.5% mouthwash, 15 mL 1092961000168108 Antiseptic Concentrated Gargle (Chemists' Own) 7.5% mouthwash 1092951000168106 Antiseptic Concentrated Gargle (Chemists' Own) 1092951000168106 Antiseptic Concentrated Gargle (Chemists' Own) 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +44193011000036109 Accolate 20 mg film-coated tablet, 56, blister pack 55091 41669011000036100 Accolate 20 mg film-coated tablet, 56 40134011000036103 Accolate 20 mg film-coated tablet 39702011000036108 Accolate 39702011000036108 Accolate 46486011000036105 zafirlukast 20 mg tablet, 56 45181011000036101 zafirlukast 20 mg tablet 44861011000036103 zafirlukast +61343011000036106 Panadol Mini Cap 500 mg gelatin coated tablet, 96, blister pack 81007 57268011000036102 Panadol Mini Cap 500 mg gelatin coated tablet, 96 54256011000036104 Panadol Mini Cap 500 mg gelatin coated tablet 25261000168103 Panadol Mini Cap 25261000168103 Panadol Mini Cap 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +933212191000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 30, blister pack 142236 933200881000036101 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 30 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200891000036104 donepezil hydrochloride 10 mg tablet, 30 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +865841000168106 Amitriptyline (PN) 10 mg tablet, 1000, bottle 232147 865831000168102 Amitriptyline (PN) 10 mg tablet, 1000 865751000168103 Amitriptyline (PN) 10 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1038241000168105 Ponstan 250 mg hard capsule, 50, blister pack 225658 12024011000036102 Ponstan 250 mg hard capsule, 50 5143011000036108 Ponstan 250 mg hard capsule 3878011000036100 Ponstan 3878011000036100 Ponstan 26858011000036109 mefenamic acid 250 mg capsule, 50 22239011000036107 mefenamic acid 250 mg capsule 21505011000036107 mefenamic acid +858441000168108 Amichlor 25 mg film-coated tablet, 20, blister pack 215389 858431000168104 Amichlor 25 mg film-coated tablet, 20 858391000168109 Amichlor 25 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692241000168105 amitriptyline hydrochloride 25 mg tablet, 20 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +925299011000036103 Exforge 5/320 film-coated tablet, 7, blister pack 161820 924836011000036104 Exforge 5/320 film-coated tablet, 7 924523011000036107 Exforge 5/320 film-coated tablet 24141000168109 Exforge 5/320 24141000168109 Exforge 5/320 925434011000036109 amlodipine 5 mg + valsartan 320 mg tablet, 7 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +685961000168109 Meropenem (DBL) 1 g powder for injection, 10 vials 161447 685951000168107 Meropenem (DBL) 1 g powder for injection, 10 vials 685941000168105 Meropenem (DBL) 1 g powder for injection, vial 685901000168108 Meropenem (DBL) 685901000168108 Meropenem (DBL) 46462011000036109 meropenem 1 g injection, 10 vials 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +1054281000168108 Jurnista 4 mg modified release tablet, 20, blister pack 155995 1054271000168105 Jurnista 4 mg modified release tablet, 20 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054261000168104 hydromorphone hydrochloride 4 mg modified release tablet, 20 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +1029801000168101 Atomoxetine (Genpar) 60 mg hard capsule, 28, blister pack 234821 1029791000168102 Atomoxetine (Genpar) 60 mg hard capsule, 28 1029651000168103 Atomoxetine (Genpar) 60 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +82872011000036104 Atripla film-coated tablet, 30, bottle 154491 82779011000036107 Atripla film-coated tablet, 30 82689011000036106 Atripla film-coated tablet 82654011000036104 Atripla 82654011000036104 Atripla 82999011000036106 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg + efavirenz 600 mg tablet, 30 82936011000036107 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg + efavirenz 600 mg tablet 851421000168107 tenofovir disoproxil + emtricitabine + efavirenz +825271000168108 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes 123713 825261000168102 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes 825211000168100 Engerix-B Adult 20 microgram/mL injection suspension, syringe 33491000168108 Engerix-B Adult 33491000168108 Engerix-B Adult 825251000168104 hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL syringes 825201000168103 hepatitis B adult vaccine 20 microgram/mL injection, syringe 825191000168101 hepatitis B vaccine +874421000168106 Beprol 7.5 mg film-coated tablet, 100, blister pack 175927 874411000168104 Beprol 7.5 mg film-coated tablet, 100 874331000168103 Beprol 7.5 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 874401000168102 bisoprolol fumarate 7.5 mg tablet, 100 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +19837011000036100 Monodur Durule 120 mg modified release tablet, 30, blister pack 64284 13088011000036105 Monodur Durule 120 mg modified release tablet, 30 6372011000036108 Monodur Durule 120 mg modified release tablet 61051000168100 Monodur Durule 61051000168100 Monodur Durule 27541011000036100 isosorbide mononitrate 120 mg modified release tablet, 30 22881011000036109 isosorbide mononitrate 120 mg modified release tablet 21337011000036108 isosorbide mononitrate +849761000168107 Sildenafil (Amneal) 50 mg film-coated tablet, 12, blister pack 202924 849751000168105 Sildenafil (Amneal) 50 mg film-coated tablet, 12 849621000168109 Sildenafil (Amneal) 50 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 760561000168103 sildenafil 50 mg tablet, 12 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +848391000168107 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 229889 848381000168109 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48 848371000168106 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet 692151000168100 Calcium (Actavis) 692151000168100 Calcium (Actavis) 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +903211000168103 Brillior 75 mg hard capsule, 56, blister pack 224340 903201000168101 Brillior 75 mg hard capsule, 56 903101000168105 Brillior 75 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +920788011000036108 Colofac 135 mg sugar coated tablet, 30, blister pack 79335 920467011000036103 Colofac 135 mg sugar coated tablet, 30 7017011000036102 Colofac 135 mg sugar coated tablet 4179011000036101 Colofac 4179011000036101 Colofac 46527011000036108 mebeverine hydrochloride 135 mg tablet, 30 23230011000036107 mebeverine hydrochloride 135 mg tablet 21801011000036109 mebeverine +946311000168105 Frusemide (Winthrop) 40 mg tablet, 50, bottle 144478 946301000168107 Frusemide (Winthrop) 40 mg tablet, 50 946271000168105 Frusemide (Winthrop) 40 mg tablet 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 928661000168104 furosemide (frusemide) 40 mg tablet, 50 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +17746011000036107 Amlodipine (Sandoz) 5 mg uncoated tablet, 30, blister pack 124578 11768011000036104 Amlodipine (Sandoz) 5 mg uncoated tablet, 30 5549011000036104 Amlodipine (Sandoz) 5 mg uncoated tablet 3220011000036106 Amlodipine (Sandoz) 3220011000036106 Amlodipine (Sandoz) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +35652011000036100 PVA Forte 3% eye drops solution, 15 mL, bottle 35564011000036107 PVA Forte 3% eye drops solution, 15 mL 35486011000036108 PVA Forte 3% eye drops solution 19301000168102 PVA Forte 19301000168102 PVA Forte 35773011000036104 polyvinyl alcohol 3% eye drops, 15 mL 35714011000036109 polyvinyl alcohol 3% eye drops 35687011000036109 polyvinyl alcohol +933229621000036101 Morphine Sulfate MR (Apotex) 10 mg modified release tablet, 20, blister pack 132251 933223541000036108 Morphine Sulfate MR (Apotex) 10 mg modified release tablet, 20 933219661000036101 Morphine Sulfate MR (Apotex) 10 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +170901000036100 Janumet XR 100/1000 modified release tablet, 28, bottle 205318 170131000036105 Janumet XR 100/1000 modified release tablet, 28 169121000036106 Janumet XR 100/1000 modified release tablet 2411000168100 Janumet XR 100/1000 2411000168100 Janumet XR 100/1000 170141000036100 sitagliptin 100 mg + metformin hydrochloride 1 g modified release tablet, 28 169131000036108 sitagliptin 100 mg + metformin hydrochloride 1 g modified release tablet 79094011000036105 sitagliptin + metformin +927707011000036102 Norfloxacin (GA) 400 mg film-coated tablet, 14, blister pack 79112 927641011000036109 Norfloxacin (GA) 400 mg film-coated tablet, 14 927593011000036108 Norfloxacin (GA) 400 mg film-coated tablet 927575011000036103 Norfloxacin (GA) 927575011000036103 Norfloxacin (GA) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +678421000168106 Celaxib 100 mg hard capsule, 60, blister pack 206676 676211000168104 Celaxib 100 mg hard capsule, 60 676201000168102 Celaxib 100 mg hard capsule 675611000168107 Celaxib 675611000168107 Celaxib 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +802291000168105 Nuvigil 150 mg uncoated tablet, 30, blister pack 226559 802281000168107 Nuvigil 150 mg uncoated tablet, 30 802231000168106 Nuvigil 150 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802271000168109 armodafinil 150 mg tablet, 30 802221000168108 armodafinil 150 mg tablet 802061000168105 armodafinil +894471000168104 Entac 1 mg film-coated tablet, 30, blister pack 267113 894461000168105 Entac 1 mg film-coated tablet, 30 894421000168100 Entac 1 mg film-coated tablet 894271000168103 Entac 894271000168103 Entac 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +59551000036107 Fluconazole (Alphapharm) 200 mg/100 mL injection solution, 10 x 100 mL bags 155335 58741000036108 Fluconazole (Alphapharm) 200 mg/100 mL injection solution, 10 x 100 mL bags 58231000036106 Fluconazole (Alphapharm) 200 mg/100 mL injection solution, 100 mL bag 58061000036107 Fluconazole (Alphapharm) 58061000036107 Fluconazole (Alphapharm) 46270011000036102 fluconazole 200 mg/100 mL injection, 10 x 100 mL bags 32691011000036104 fluconazole 200 mg/100 mL injection, bag 21365011000036105 fluconazole +750431000168104 Antenex 2 mg uncoated tablet, 50, blister pack 17604 32369011000036107 Antenex 2 mg uncoated tablet, 50 32247011000036100 Antenex 2 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +928842011000036100 Paclitaxel (GA) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 129574 928204011000036105 Paclitaxel (GA) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 927863011000036105 Paclitaxel (GA) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 927810011000036103 Paclitaxel (GA) 927810011000036103 Paclitaxel (GA) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +756291000168102 Tecfidera 120 mg enteric capsule, 112, blister pack 197118 756281000168100 Tecfidera 120 mg enteric capsule, 112 756231000168101 Tecfidera 120 mg enteric capsule 143361000036109 Tecfidera 143361000036109 Tecfidera 756271000168103 dimethyl fumarate 120 mg enteric capsule, 112 756221000168104 dimethyl fumarate 120 mg enteric capsule 146501000036107 dimethyl fumarate +933212351000036101 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 120, blister pack 142238 933201141000036109 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 120 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200861000036106 donepezil hydrochloride 10 mg tablet, 120 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1089001000168104 Ibupane film-coated tablet, 24, blister pack 267396 1088991000168104 Ibupane film-coated tablet, 24 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +38131000036101 Escital 5 mg film-coated tablet, 250, bottle 165833 34461000036106 Escital 5 mg film-coated tablet, 250 32351000036108 Escital 5 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +20737011000036101 Benztrop 2 mg uncoated tablet, 60, bottle 83130 13906011000036102 Benztrop 2 mg uncoated tablet, 60 7192011000036106 Benztrop 2 mg uncoated tablet 2920011000036102 Benztrop 2920011000036102 Benztrop 27999011000036102 benzatropine mesilate 2 mg tablet, 60 23322011000036104 benzatropine mesilate 2 mg tablet 21334011000036102 benzatropine +19905011000036106 Ursofalk 250 mg hard capsule, 100, blister pack 66042 13150011000036106 Ursofalk 250 mg hard capsule, 100 6433011000036106 Ursofalk 250 mg hard capsule 3056011000036102 Ursofalk 3056011000036102 Ursofalk 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +946351000168106 Frusemide (Winthrop) 40 mg tablet, 100, bottle 144478 946341000168109 Frusemide (Winthrop) 40 mg tablet, 100 946271000168105 Frusemide (Winthrop) 40 mg tablet 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +1029881000168109 Aten 25 mg film-coated tablet, 98, blister pack 197714 1029871000168106 Aten 25 mg film-coated tablet, 98 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029861000168100 atenolol 25 mg tablet, 98 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +991061000168105 Bisoprolol (Apotex) 1.25 mg tablet, 28, blister pack 182109 991051000168108 Bisoprolol (Apotex) 1.25 mg tablet, 28 990981000168105 Bisoprolol (Apotex) 1.25 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 46790011000036102 bisoprolol fumarate 1.25 mg tablet, 28 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +934841000168105 Movicol powder for oral liquid, 2 sachets 60786 934831000168101 Movicol powder for oral liquid, 2 sachets 673961000168103 Movicol powder for oral liquid, sachet 22351000168103 Movicol 22351000168103 Movicol 669021000168104 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 2 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +116251000036101 Water for Injections (Fresenius Kabi) injection solution, 10 x 1 L bags 144814 114621000036103 Water for Injections (Fresenius Kabi) injection solution, 10 x 1 L bags 76156011000036109 Water for Injections (Fresenius Kabi) injection solution, 1 L bag 75991011000036108 Water for Injections (Fresenius Kabi) 75991011000036108 Water for Injections (Fresenius Kabi) 114631000036101 water for injections injection, 10 x 1 L bags 77576011000036101 water for injections injection, 1 L bag 77431011000036101 water for injections +871411000168102 Amitriptyline (AC) 50 mg tablet, 50, blister pack 232110 862941000168108 Amitriptyline (AC) 50 mg tablet, 50 862931000168104 Amitriptyline (AC) 50 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +957871000168106 Dicarz 3.125 mg film-coated tablet, 30, bottle 101741 957861000168100 Dicarz 3.125 mg film-coated tablet, 30 957851000168102 Dicarz 3.125 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +933246901000036106 Pantoprazole (PS) 20 mg enteric tablet, 60, blister pack 158196 933243731000036105 Pantoprazole (PS) 20 mg enteric tablet, 60 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46678011000036102 pantoprazole 20 mg enteric tablet, 60 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +925149011000036105 Simvastatin (Pharmacor) 10 mg film-coated tablet, 30, blister pack 123812 924691011000036107 Simvastatin (Pharmacor) 10 mg film-coated tablet, 30 924416011000036104 Simvastatin (Pharmacor) 10 mg film-coated tablet 924384011000036102 Simvastatin (Pharmacor) 924384011000036102 Simvastatin (Pharmacor) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +146231000036102 Jakavi 5 mg tablet, 56, blister pack 198934 144821000036109 Jakavi 5 mg tablet, 56 143801000036102 Jakavi 5 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 144831000036106 ruxolitinib 5 mg tablet, 56 143811000036100 ruxolitinib 5 mg tablet 146491000036100 ruxolitinib +929084011000036100 Pioglitazone (Apotex) 15 mg uncoated tablet, 50, blister pack 166911 928445011000036103 Pioglitazone (Apotex) 15 mg uncoated tablet, 50 927985011000036104 Pioglitazone (Apotex) 15 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929266011000036101 pioglitazone 15 mg tablet, 50 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +61549011000036106 Pain (Chemists' Own) uncoated tablet, 100, blister pack 93836 57471011000036102 Pain (Chemists' Own) uncoated tablet, 100 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 52903011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 100 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +819631000168104 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 10, blister pack 184820 819621000168102 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet, 10 819611000168109 Perindopril Arginine (Blooms The Chemist) 2.5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 727271000168102 perindopril arginine 2.5 mg tablet, 10 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +963651000168103 Metformin (Apo) 250 mg film-coated tablet, 500, bottle 157206 963641000168100 Metformin (Apo) 250 mg film-coated tablet, 500 963581000168106 Metformin (Apo) 250 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 963631000168109 metformin hydrochloride 250 mg tablet, 500 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +50669011000036102 Carvedilol (Genepharm) 25 mg uncoated tablet, 60, blister pack 152440 49693011000036109 Carvedilol (Genepharm) 25 mg uncoated tablet, 60 48827011000036102 Carvedilol (Genepharm) 25 mg uncoated tablet 48379011000036105 Carvedilol (Genepharm) 48379011000036105 Carvedilol (Genepharm) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +1038561000168106 Ativan 2.5 mg uncoated tablet, 50, bottle 237802 36627011000036100 Ativan 2.5 mg uncoated tablet, 50 36088011000036104 Ativan 2.5 mg uncoated tablet 35865011000036105 Ativan 35865011000036105 Ativan 38547011000036100 lorazepam 2.5 mg tablet, 50 37827011000036109 lorazepam 2.5 mg tablet 37711011000036105 lorazepam +82889011000036103 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30, blister pack 159734 49684011000036107 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30 48819011000036104 Omeprazole (Terry White Chemists) 20 mg enteric tablet 48288011000036104 Omeprazole (Terry White Chemists) 48288011000036104 Omeprazole (Terry White Chemists) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +82889011000036103 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30, blister pack 190948 49684011000036107 Omeprazole (Terry White Chemists) 20 mg enteric tablet, 30 48819011000036104 Omeprazole (Terry White Chemists) 20 mg enteric tablet 48288011000036104 Omeprazole (Terry White Chemists) 48288011000036104 Omeprazole (Terry White Chemists) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +19408011000036102 Mobilis D 20 mg dispersible tablet, 25, blister pack 53284 12692011000036107 Mobilis D 20 mg dispersible tablet, 25 5606011000036108 Mobilis D 20 mg dispersible tablet 57231000168103 Mobilis D 57231000168103 Mobilis D 27882011000036100 piroxicam 20 mg dispersible tablet, 25 23210011000036102 piroxicam 20 mg dispersible tablet 21531011000036103 piroxicam +911791000168102 Cavstat 40 mg film-coated tablet, 14, blister pack 234508 911781000168100 Cavstat 40 mg film-coated tablet, 14 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911771000168103 rosuvastatin 40 mg tablet, 14 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +25351000036103 Cephalexin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 160874 23131000036109 Cephalexin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL 20131000036101 Cephalexin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 5 mL 4078011000036104 Cephalexin (Terry White Chemists) 4078011000036104 Cephalexin (Terry White Chemists) 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +25351000036103 Cephalexin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 98641 23131000036109 Cephalexin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 100 mL 20131000036101 Cephalexin (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 5 mL 4078011000036104 Cephalexin (Terry White Chemists) 4078011000036104 Cephalexin (Terry White Chemists) 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +59845011000036103 Diarrhoea Relief (Your Pharmacy) 2 mg uncoated tablet, 10, blister pack 114971 55807011000036108 Diarrhoea Relief (Your Pharmacy) 2 mg uncoated tablet, 10 53697011000036108 Diarrhoea Relief (Your Pharmacy) 2 mg uncoated tablet 53551011000036100 Diarrhoea Relief (Your Pharmacy) 53551011000036100 Diarrhoea Relief (Your Pharmacy) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +1088961000168106 Ibupane film-coated tablet, 16, blister pack 267396 1088951000168109 Ibupane film-coated tablet, 16 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813171000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 16 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +44356011000036102 Reductil 15 mg hard capsule, 15, blister pack 68116 41823011000036101 Reductil 15 mg hard capsule, 15 40215011000036105 Reductil 15 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46629011000036106 sibutramine hydrochloride 15 mg capsule, 15 45246011000036100 sibutramine hydrochloride 15 mg capsule 44877011000036100 sibutramine +728881000168104 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge 205625 728871000168102 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge 728861000168108 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 28300011000036106 somatropin 15 mg/1.5 mL injection, 1.5 mL cartridge 23614011000036105 somatropin 15 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +1110571000168103 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 280, blister pack 219061 1110561000168109 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 280 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82548011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 280 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +18637011000036106 Ozole 200 mg hard capsule, 28, blister pack 122909 11726011000036107 Ozole 200 mg hard capsule, 28 4842011000036100 Ozole 200 mg hard capsule 3098011000036107 Ozole 3098011000036107 Ozole 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +929067011000036109 Idarubicin Hydrochloride (Ebewe) 5 mg/5 mL concentrated injection, 5 mL vial 162933 928428011000036107 Idarubicin Hydrochloride (Ebewe) 5 mg/5 mL concentrated injection, 5 mL vial 927973011000036105 Idarubicin Hydrochloride (Ebewe) 5 mg/5 mL concentrated injection, 5 mL vial 927760011000036104 Idarubicin Hydrochloride (Ebewe) 927760011000036104 Idarubicin Hydrochloride (Ebewe) 27615011000036101 idarubicin hydrochloride 5 mg/5 mL injection, 5 mL vial 22953011000036109 idarubicin hydrochloride 5 mg/5 mL injection, vial 21720011000036108 idarubicin +87704011000036104 Carvedilol (Apo) 3.125 mg film-coated tablet, 30, bottle 123825 87412011000036100 Carvedilol (Apo) 3.125 mg film-coated tablet, 30 87295011000036108 Carvedilol (Apo) 3.125 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +61352011000036102 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 24, blister pack 81474 57277011000036109 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 24 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +828221000168102 Cosentyx 150 mg powder for injection, 2 vials 218798 828211000168109 Cosentyx 150 mg powder for injection, 2 vials 828161000168101 Cosentyx 150 mg powder for injection, 150 mg vial 707151000168107 Cosentyx 707151000168107 Cosentyx 828201000168106 secukinumab 150 mg injection, 2 vials 828151000168103 secukinumab 150 mg injection, vial 707171000168103 secukinumab +685661000168103 Subutex 8 mg sublingual tablet, 7, blister pack 76663 685651000168100 Subutex 8 mg sublingual tablet, 7 685631000168106 Subutex 8 mg sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685641000168102 buprenorphine 8 mg sublingual tablet, 7 685621000168108 buprenorphine 8 mg sublingual tablet 21232011000036101 buprenorphine +1099011000168100 Valaciclovir (Auro) 1 g film-coated tablet, 30, blister pack 173289 1098911000168107 Valaciclovir (Auro) 1 g film-coated tablet, 30 1098891000168105 Valaciclovir (Auro) 1 g film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 1098901000168109 valaciclovir 1 g tablet, 30 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +825411000168104 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials 123709 825401000168102 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials 825321000168101 Engerix-B Adult 20 microgram/mL injection suspension, vial 33491000168108 Engerix-B Adult 33491000168108 Engerix-B Adult 825391000168104 hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL vials 825311000168108 hepatitis B adult vaccine 20 microgram/mL injection, vial 825191000168101 hepatitis B vaccine +52168011000036101 Aluminium Acetate BP (extemporaneous) ear drops, 15 mL, dropper container 52060011000036105 Aluminium Acetate BP (extemporaneous) ear drops, 15 mL 51961011000036108 Aluminium Acetate BP (extemporaneous) ear drops 48751000168102 Aluminium Acetate BP (extemporaneous) 48751000168102 Aluminium Acetate BP (extemporaneous) 52309011000036101 aluminium acetate solution ear drops, 15 mL 52241011000036104 aluminium acetate solution ear drops 52227011000036105 aluminium acetate solution +933246581000036106 Lisinopril (PS) 5 mg uncoated tablet, 14, blister pack 152712 933243221000036104 Lisinopril (PS) 5 mg uncoated tablet, 14 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 83479011000036106 lisinopril 5 mg tablet, 14 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +34760011000036109 Ultiva 1 mg powder for injection, 5 vials 58688 34341011000036105 Ultiva 1 mg powder for injection, 5 vials 34054011000036105 Ultiva 1 mg powder for injection, vial 33941011000036102 Ultiva 33941011000036102 Ultiva 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +20436011000036107 Quitx Step-1 21 mg/24 hours patch, 7, sachet 77927 13639011000036100 Quitx Step-1 21 mg/24 hours patch, 7 6922011000036104 Quitx Step-1 21 mg/24 hours patch 6501000168103 Quitx Step-1 6501000168103 Quitx Step-1 27923011000036105 nicotine 21 mg/24 hours patch, 7 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +60872011000036107 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet, 30, bottle 59522 56826011000036102 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet, 30 54091011000036109 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet 53178011000036104 Ferro-Gradumet 53178011000036104 Ferro-Gradumet 63595011000036107 ferrous sulfate 325 mg (iron 105 mg) modified release tablet, 30 62023011000036106 ferrous sulfate 325 mg (iron 105 mg) modified release tablet 61721011000036108 ferrous sulfate +923870011000036101 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet, 28, blister pack 163763 923415011000036108 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet, 28 923075011000036106 Lercanidipine Hydrochloride (Chemmart) 10 mg film-coated tablet 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +50489011000036101 Easiphen oral liquid solution, 250 mL, can 49500011000036109 Easiphen oral liquid solution, 250 mL 263531000168109 Easiphen oral liquid solution 48413011000036108 Easiphen 48413011000036108 Easiphen 51453011000036102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 250 mL 263381000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +925316011000036104 Clopidogrel (Actavis) 75 mg film-coated tablet, 28, blister pack 164866 924852011000036102 Clopidogrel (Actavis) 75 mg film-coated tablet, 28 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +21037011000036109 Alimta 500 mg powder for injection, 1 vial 96731 14182011000036101 Alimta 500 mg powder for injection, 1 vial 7463011000036102 Alimta 500 mg powder for injection, 500 mg vial 3307011000036105 Alimta 3307011000036105 Alimta 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +20916011000036104 Minirin 200 microgram uncoated tablet, 30, bottle 93731 14070011000036100 Minirin 200 microgram uncoated tablet, 30 7348011000036108 Minirin 200 microgram uncoated tablet 13491000168101 Minirin 13491000168101 Minirin 28125011000036101 desmopressin acetate 200 microgram tablet, 30 23434011000036103 desmopressin acetate 200 microgram tablet 21750011000036107 desmopressin +69363011000036109 Tham 18 g (150 mEq)/500 mL intravenous infusion injection, 500 mL bottle 29691 67163011000036105 Tham 18 g (150 mEq)/500 mL intravenous infusion injection, 500 mL bottle 65390011000036107 Tham 18 g (150 mEq)/500 mL intravenous infusion injection, 500 mL bottle 65102011000036101 Tham 65102011000036101 Tham 71726011000036104 trometamol 18 g (150 mEq)/500 mL injection, 500 mL bottle 70151011000036106 trometamol 18 g (150 mEq)/500 mL injection, bottle 69864011000036108 trometamol +50490011000036108 Comfeel Purilon (3900) gel, 10 x 15 g tubes 49458011000036106 Comfeel Purilon (3900) gel, 10 x 15 g 168371000168107 Comfeel Purilon (3900) gel 6211000168102 Comfeel Purilon (3900) 6211000168102 Comfeel Purilon (3900) 51420011000036106 dressing hydrogel amorphous gel, 10 x 15 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +59844011000036102 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 96, blister pack 114919 55806011000036105 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 96 53680011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet 29011000168105 Paracetamol Extra Tabsule (Guardian) 29011000168105 Paracetamol Extra Tabsule (Guardian) 63892011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 96 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +59691011000036103 Negastro 2 mg tablet, 20, blister pack 101333 55660011000036101 Negastro 2 mg tablet, 20 53640011000036104 Negastro 2 mg tablet 53199011000036102 Negastro 53199011000036102 Negastro 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +848481000168101 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle 165943 848471000168104 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 85275011000036101 Bonecal 85275011000036101 Bonecal 847931000168108 calcium carbonate 1.25 g (calcium 500 mg) tablet, 24 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +18878011000036103 Capoten 50 mg uncoated tablet, 90, blister pack 19248 12836011000036109 Capoten 50 mg uncoated tablet, 90 6127011000036104 Capoten 50 mg uncoated tablet 3934011000036103 Capoten 3934011000036103 Capoten 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +86873011000036105 Topiramate (GA) 200 mg film-coated tablet, 60, blister pack 155185 86759011000036108 Topiramate (GA) 200 mg film-coated tablet, 60 86635011000036103 Topiramate (GA) 200 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +946511000168100 Ranitidine (GA) 300 mg film-coated tablet, 180, bottle 148521 946501000168103 Ranitidine (GA) 300 mg film-coated tablet, 180 929982011000036102 Ranitidine (GA) 300 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 946491000168105 ranitidine 300 mg tablet, 180 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +19605011000036105 Roferon-A 9 million units/0.5 mL injection solution, 0.5 mL syringe 58597 12875011000036100 Roferon-A 9 million units/0.5 mL injection solution, 0.5 mL syringe 6166011000036106 Roferon-A 9 million units/0.5 mL injection solution, 0.5 mL syringe 3169011000036106 Roferon-A 3169011000036106 Roferon-A 27410011000036107 interferon alfa-2a 9 million units/0.5 mL injection, 0.5 mL syringe 22758011000036105 interferon alfa-2a 9 million units/0.5 mL injection, syringe 21592011000036102 interferon alfa-2a +60358011000036106 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 50 mL, bottle (Old Formulation 2002) 14123 56317011000036105 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 50 mL (Old Formulation 2002) 53873011000036100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 5 mL (Old Formulation 2002) 26351000168102 Benadryl Cough Medicine for Dry Coughs 26351000168102 Benadryl Cough Medicine for Dry Coughs 63306011000036104 dextromethorphan hydrobromide monohydrate 15 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 50 mL 61913011000036106 dextromethorphan hydrobromide monohydrate 15 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61751011000036109 dextromethorphan + pseudoephedrine +681391000168100 Betmiga 25 mg modified release tablet, 30, blister pack 199664 681381000168103 Betmiga 25 mg modified release tablet, 30 681361000168107 Betmiga 25 mg modified release tablet 681211000168101 Betmiga 681211000168101 Betmiga 681371000168101 mirabegron 25 mg modified release tablet, 30 681351000168105 mirabegron 25 mg modified release tablet 681341000168108 mirabegron +33578011000036101 Humulin NPH Isophane 100 units/mL injection suspension, 5 x 3 mL cartridges 39662 33316011000036107 Humulin NPH Isophane 100 units/mL injection suspension, 5 x 3 mL cartridges 4915011000036105 Humulin NPH Isophane 100 units/mL injection suspension, 3 mL cartridge 10931000168100 Humulin NPH Isophane 10931000168100 Humulin NPH Isophane 27769011000036109 insulin isophane human 100 units/mL injection, 5 x 3 mL cartridges 23100011000036102 insulin isophane human 100 units/mL injection, cartridge 33643011000036100 insulin isophane human +857021000168108 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 48 x Calcium (GH) tablets), 1 pack, composite pack 222683 857011000168101 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 48 x Calcium (GH) tablets), 1 pack 856351000168100 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) uncoated tablet 856981000168108 Alendrobell plus D3 and Calcium 856341000168102 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +857021000168108 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 48 x Calcium (GH) tablets), 1 pack, composite pack 222683 857011000168101 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 48 x Calcium (GH) tablets), 1 pack 856391000168105 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet 856981000168108 Alendrobell plus D3 and Calcium 856381000168107 Calcium (GH) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +1093141000168104 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 100, blister pack 282022 1093131000168108 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 100 1093041000168103 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 63927011000036100 ibuprofen 200 mg capsule, 100 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +946471000168109 Pantoprazole (Sandoz) 20 mg enteric tablet, 30, bottle 147364 83980011000036108 Pantoprazole (Sandoz) 20 mg enteric tablet, 30 83616011000036109 Pantoprazole (Sandoz) 20 mg enteric tablet 83562011000036104 Pantoprazole (Sandoz) 83562011000036104 Pantoprazole (Sandoz) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +771941000168106 Clinoleic 20% injection emulsion, 24 x 100 mL bags 97537 771931000168102 Clinoleic 20% injection emulsion, 24 x 100 mL bags 771691000168106 Clinoleic 20% injection emulsion, 100 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 771921000168100 olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 24 x 100 mL bags 771681000168108 olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, bag 926971011000036108 olive oil + soya oil +972171000168104 Doxorubicin (Actavis) 50 mg powder for injection, 1 vial 147609 972161000168105 Doxorubicin (Actavis) 50 mg powder for injection, 1 vial 972141000168106 Doxorubicin (Actavis) 50 mg powder for injection, 50 mg vial 972071000168100 Doxorubicin (Actavis) 972071000168100 Doxorubicin (Actavis) 972151000168108 doxorubicin hydrochloride 50 mg injection, 1 vial 972131000168102 doxorubicin hydrochloride 50 mg injection, vial 21638011000036100 doxorubicin +802451000168104 Abilify ODT 10 mg orally disintegrating tablet, 14, blister pack 128893 802441000168101 Abilify ODT 10 mg orally disintegrating tablet, 14 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802431000168105 aripiprazole 10 mg orally disintegrating tablet, 14 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +1076051000168103 Aripiprazole (Auro) 15 mg uncoated tablet, 30, blister pack 198187 1076041000168100 Aripiprazole (Auro) 15 mg uncoated tablet, 30 1076011000168104 Aripiprazole (Auro) 15 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1019841000168108 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 7, blister pack 175199 1019831000168104 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 7 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 792571000168107 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 7 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +86137011000036107 Panadol Caplet Optizorb 500 mg film-coated tablet, 24, blister pack 160821 85745011000036106 Panadol Caplet Optizorb 500 mg film-coated tablet, 24 85371011000036109 Panadol Caplet Optizorb 500 mg film-coated tablet 55521000168105 Panadol Caplet Optizorb 55521000168105 Panadol Caplet Optizorb 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +13611000036100 Ondansetron Tabs (Pfizer) 8 mg film-coated tablet, 10, blister pack 173187 8751000036101 Ondansetron Tabs (Pfizer) 8 mg film-coated tablet, 10 2261000036105 Ondansetron Tabs (Pfizer) 8 mg film-coated tablet 14841000168109 Ondansetron Tabs (Pfizer) 14841000168109 Ondansetron Tabs (Pfizer) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +894531000168103 Entecavir (GH) 500 microgram film-coated tablet, 30, blister pack 267115 894521000168101 Entecavir (GH) 500 microgram film-coated tablet, 30 894491000168103 Entecavir (GH) 500 microgram film-coated tablet 894481000168101 Entecavir (GH) 894481000168101 Entecavir (GH) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +986631000168101 Frusemide (CA) 20 mg tablet, 100, bottle 186524 986621000168104 Frusemide (CA) 20 mg tablet, 100 986611000168106 Frusemide (CA) 20 mg tablet 983661000168103 Frusemide (CA) 983661000168103 Frusemide (CA) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +33569011000036101 Alimta 100 mg powder for injection, 1 vial 146828 33307011000036107 Alimta 100 mg powder for injection, 1 vial 33068011000036106 Alimta 100 mg powder for injection, 100 mg vial 3307011000036105 Alimta 3307011000036105 Alimta 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +17861000036107 Olanzapine (Synthon) 7.5 mg tablet, 28, blister pack 152180 16621000036102 Olanzapine (Synthon) 7.5 mg tablet, 28 15451000036100 Olanzapine (Synthon) 7.5 mg tablet 15191000036102 Olanzapine (Synthon) 15191000036102 Olanzapine (Synthon) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +38051000036108 Escitalopram (MPPL) 5 mg film-coated tablet, 250, bottle 165829 34381000036107 Escitalopram (MPPL) 5 mg film-coated tablet, 250 33031000036108 Escitalopram (MPPL) 5 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +60659011000036108 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 1 L, bottle 38572 56617011000036103 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 1 L 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 63469011000036101 benzydamine hydrochloride 0.15% mouthwash, 1 L 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +19032011000036103 Zocor 5 mg film-coated tablet, 30, blister pack 39917 12337011000036105 Zocor 5 mg film-coated tablet, 30 5866011000036101 Zocor 5 mg film-coated tablet 3904011000036106 Zocor 3904011000036106 Zocor 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +926739011000036103 Lisinopril (GA) 2.5 mg uncoated tablet, 10, blister pack 106498 926082011000036104 Lisinopril (GA) 2.5 mg uncoated tablet, 10 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927297011000036109 lisinopril 2.5 mg tablet, 10 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +1029981000168103 Atilos 15 mg uncoated tablet, 7, blister pack 173476 1029971000168101 Atilos 15 mg uncoated tablet, 7 1029961000168107 Atilos 15 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929267011000036103 pioglitazone 15 mg tablet, 7 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +18201011000036107 Solone 25 mg uncoated tablet, 30, bottle 13468 11991011000036104 Solone 25 mg uncoated tablet, 30 5597011000036101 Solone 25 mg uncoated tablet 3662011000036102 Solone 3662011000036102 Solone 33798011000036106 prednisolone 25 mg tablet, 30 33670011000036107 prednisolone 25 mg tablet 21273011000036105 prednisolone +1015591000168101 Aripiprazole (ZP) 15 mg uncoated tablet, 100, bottle 217193 1015581000168104 Aripiprazole (ZP) 15 mg uncoated tablet, 100 1015221000168101 Aripiprazole (ZP) 15 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +929021011000036107 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 12, blister pack 160640 928382011000036107 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 12 927963011000036103 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet 927817011000036102 Risedronate Sodium (Terry White Chemists) 927817011000036102 Risedronate Sodium (Terry White Chemists) 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +960841000168106 Ciram 40 mg film-coated tablet, 500, bottle 158861 960831000168102 Ciram 40 mg film-coated tablet, 500 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202891000036100 citalopram 40 mg tablet, 500 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +943381000168109 Omeprazole (Genepharm) 20 mg enteric tablet, 30, bottle 148940 943371000168106 Omeprazole (Genepharm) 20 mg enteric tablet, 30 943361000168100 Omeprazole (Genepharm) 20 mg enteric tablet 943351000168102 Omeprazole (Genepharm) 943351000168102 Omeprazole (Genepharm) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +25071000036106 Atorvastatin (Apo) 40 mg film-coated tablet, 30, blister pack 153738 22261000036103 Atorvastatin (Apo) 40 mg film-coated tablet, 30 20041000036105 Atorvastatin (Apo) 40 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +937811000168104 Famciclovir (FBM) 250 mg film-coated tablet, 56, blister pack 177000 937801000168102 Famciclovir (FBM) 250 mg film-coated tablet, 56 937691000168109 Famciclovir (FBM) 250 mg film-coated tablet 937681000168106 Famciclovir (FBM) 937681000168106 Famciclovir (FBM) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +20282011000036101 Vasocardol CD 360 mg modified release capsule, 30, blister pack 75254 13491011000036107 Vasocardol CD 360 mg modified release capsule, 30 6773011000036100 Vasocardol CD 360 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +1084551000168109 EDTA plus Sodium Ascorbate (Biological Therapies) powder for oral liquid, 250 g, bottle 22417 1084541000168107 EDTA plus Sodium Ascorbate (Biological Therapies) powder for oral liquid, 250 g 1084521000168101 EDTA plus Sodium Ascorbate (Biological Therapies) powder for oral liquid 1084501000168105 EDTA plus Sodium Ascorbate (Biological Therapies) 1084501000168105 EDTA plus Sodium Ascorbate (Biological Therapies) 1084531000168103 edetate disodium 500 mg/g + sodium ascorbate 500 mg/g powder for oral liquid, 250 g 1084511000168108 edetate disodium 500 mg/g + sodium ascorbate 500 mg/g powder for oral liquid 680831000168100 edetic acid + ascorbic acid +933246671000036105 Lisinopril (PS) 10 mg uncoated tablet, 28, blister pack 152713 933243311000036100 Lisinopril (PS) 10 mg uncoated tablet, 28 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 46263011000036103 lisinopril 10 mg tablet, 28 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +960861000168105 Ciram 40 mg film-coated tablet, 1000, bottle 158861 960851000168108 Ciram 40 mg film-coated tablet, 1000 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202821000036103 citalopram 40 mg tablet, 1000 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +12511000036109 Ondansetron ODT (DRLA) 8 mg orally disintegrating tablet, 4, blister pack 163644 7381000036108 Ondansetron ODT (DRLA) 8 mg orally disintegrating tablet, 4 3141000036109 Ondansetron ODT (DRLA) 8 mg orally disintegrating tablet 47061000168102 Ondansetron ODT (DRLA) 47061000168102 Ondansetron ODT (DRLA) 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +38041000036105 Escitalopram (MPPL) 5 mg film-coated tablet, 100, bottle 165829 34371000036105 Escitalopram (MPPL) 5 mg film-coated tablet, 100 33031000036108 Escitalopram (MPPL) 5 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +833931000168101 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs, composite packs 175504 833921000168104 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs 137861000036105 Bydureon (inert substance) diluent, syringe 137231000036103 Bydureon 137231000036103 Bydureon 833911000168106 exenatide 2 mg modified release injection [1 vial] (&) inert substance diluent [1 syringe], 4 x 1 packs 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +833931000168101 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs, composite packs 175504 833921000168104 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs 833871000168108 Bydureon (exenatide 2 mg) modified release injection, 2 mg vial 137231000036103 Bydureon 137231000036103 Bydureon 833911000168106 exenatide 2 mg modified release injection [1 vial] (&) inert substance diluent [1 syringe], 4 x 1 packs 833861000168102 exenatide 2 mg modified release injection, vial 44897011000036109 exenatide +68925011000036106 Bepanthen First Aid Antiseptic 0.55% cream, 30 g, tube 131912 66747011000036101 Bepanthen First Aid Antiseptic 0.55% cream, 30 g 65453011000036104 Bepanthen First Aid Antiseptic 0.55% cream 42871000168100 Bepanthen First Aid Antiseptic 42871000168100 Bepanthen First Aid Antiseptic 71411011000036108 chlorhexidine hydrochloride 0.55% cream, 30 g 70000011000036103 chlorhexidine hydrochloride 0.55% cream 21404011000036101 chlorhexidine +759021000168103 Honey Bee Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack, composite pack 759011000168105 Honey Bee Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack 758991000168107 Honey Bee Venom (Hymenoptera) (honey bee venom 550 microgram) powder for injection, 550 microgram vial 758981000168109 Honey Bee Venom (Hymenoptera) 758981000168109 Honey Bee Venom (Hymenoptera) 759001000168107 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial], 1 pack 758801000168106 honey bee venom 550 microgram injection, vial 758791000168105 honey bee venom +759021000168103 Honey Bee Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack, composite pack 759011000168105 Honey Bee Venom (Hymenoptera) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial), 1 pack 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 758981000168109 Honey Bee Venom (Hymenoptera) 754701000168106 Albumin Saline (Stallergenes) 759001000168107 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial], 1 pack 638491000168106 inert substance diluent, 9 mL vial 21220011000036103 inert substance +60145011000036109 Snuzaid Tab 50 mg tablet, 10, blister pack 129483 56104011000036106 Snuzaid Tab 50 mg tablet, 10 53791011000036105 Snuzaid Tab 50 mg tablet 54011000168105 Snuzaid Tab 54011000168105 Snuzaid Tab 63215011000036103 diphenhydramine hydrochloride 50 mg tablet, 10 61891011000036102 diphenhydramine hydrochloride 50 mg tablet 61716011000036106 diphenhydramine +17900011000036107 Isoptin SR 240 mg modified release tablet, 30, blister pack 12801 11854011000036101 Isoptin SR 240 mg modified release tablet, 30 4933011000036103 Isoptin SR 240 mg modified release tablet 31671000168106 Isoptin SR 31671000168106 Isoptin SR 33790011000036109 verapamil hydrochloride 240 mg modified release tablet, 30 33662011000036104 verapamil hydrochloride 240 mg modified release tablet 21287011000036109 verapamil +1088841000168103 Ibupane film-coated tablet, 4, blister pack 267396 1088831000168107 Ibupane film-coated tablet, 4 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 812961000168108 paracetamol 500 mg + ibuprofen 200 mg tablet, 4 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +83386011000036100 Lisinopril (GA) 5 mg uncoated tablet, 56, blister pack 106500 83305011000036108 Lisinopril (GA) 5 mg uncoated tablet, 56 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 83481011000036104 lisinopril 5 mg tablet, 56 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +170941000036102 Metoclopramide Hydrochloride (Actavis) 10 mg film-coated tablet, 25, blister pack 196508 170181000036109 Metoclopramide Hydrochloride (Actavis) 10 mg film-coated tablet, 25 169181000036107 Metoclopramide Hydrochloride (Actavis) 10 mg film-coated tablet 168851000036100 Metoclopramide Hydrochloride (Actavis) 168851000036100 Metoclopramide Hydrochloride (Actavis) 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +712981000168101 Javlor 50 mg/2 mL concentrated injection, 2 mL vial 166767 712971000168104 Javlor 50 mg/2 mL concentrated injection, 2 mL vial 712951000168108 Javlor 50 mg/2 mL concentrated injection, 2 mL vial 712911000168107 Javlor 712911000168107 Javlor 712961000168105 vinflunine 50 mg/2 mL injection, 2 mL vial 712941000168106 vinflunine 50 mg/2 mL injection, vial 712931000168102 vinflunine +61113011000036109 Lemsip Max Flu Strength Daytime powder for oral liquid, 5 sachets 71939 57056011000036103 Lemsip Max Flu Strength Daytime powder for oral liquid, 5 sachets 54176011000036100 Lemsip Max Flu Strength Daytime powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63719011000036109 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 5 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +17901000036104 Torzole 40 mg enteric tablet, 30, blister pack 155108 16571000036104 Torzole 40 mg enteric tablet, 30 15661000036104 Torzole 40 mg enteric tablet 15281000036106 Torzole 15281000036106 Torzole 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +796511000168100 Acitretin (iNova) 25 mg hard capsule, 60, blister pack 196004 796501000168103 Acitretin (iNova) 25 mg hard capsule, 60 796491000168105 Acitretin (iNova) 25 mg hard capsule 796431000168106 Acitretin (iNova) 796431000168106 Acitretin (iNova) 150361000036104 acitretin 25 mg capsule, 60 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +901601000168104 Amisulpride (CH) 200 mg uncoated tablet, 60, blister pack 234704 901591000168106 Amisulpride (CH) 200 mg uncoated tablet, 60 901551000168101 Amisulpride (CH) 200 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +60025011000036102 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet, 14, blister pack 123662 55987011000036104 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet, 14 53748011000036108 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet 30721000168109 Heartburn Relief Extra Strength (Amcal) 30721000168109 Heartburn Relief Extra Strength (Amcal) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +43722011000036103 Fluorescite 10% 500 mg/5 mL injection solution, 5 mL vial 124267 41311011000036107 Fluorescite 10% 500 mg/5 mL injection solution, 5 mL vial 39960011000036101 Fluorescite 10% 500 mg/5 mL injection solution, 5 mL vial 39629011000036102 Fluorescite 10% 39629011000036102 Fluorescite 10% 46237011000036104 fluorescein 500 mg/5 mL injection, 5 mL vial 45041011000036102 fluorescein 500 mg/5 mL injection, vial 44934011000036102 fluorescein +60976011000036101 Nurofen for Children 100 mg/5 mL oral liquid suspension, 200 mL, bottle 62912 56919011000036106 Nurofen for Children 100 mg/5 mL oral liquid suspension, 200 mL 54120011000036104 Nurofen for Children 100 mg/5 mL oral liquid suspension, 5 mL 471000168102 Nurofen for Children 471000168102 Nurofen for Children 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +44415011000036108 Midazolam (DBL) 5 mg/5 mL injection, 5 x 5 mL ampoules 70924 41874011000036100 Midazolam (DBL) 5 mg/5 mL injection, 5 x 5 mL ampoules 40232011000036105 Midazolam (DBL) 5 mg/5 mL injection, 5 mL ampoule 39659011000036101 Midazolam (DBL) 39659011000036101 Midazolam (DBL) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +69680011000036105 Dencorub Anti-Inflammatory 1% gel, 120 g, tube 82606 67479011000036104 Dencorub Anti-Inflammatory 1% gel, 120 g 65678011000036108 Dencorub Anti-Inflammatory 1% gel 64960011000036106 Dencorub Anti-Inflammatory 64960011000036106 Dencorub Anti-Inflammatory 72013011000036103 diclofenac sodium 1% gel, 120 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +738101000168102 Pemetrexed (MYX) 100 mg powder for injection, 1 vial 222420 738091000168107 Pemetrexed (MYX) 100 mg powder for injection, 1 vial 738081000168109 Pemetrexed (MYX) 100 mg powder for injection, 100 mg vial 736411000168106 Pemetrexed (MYX) 736411000168106 Pemetrexed (MYX) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +17764011000036109 Nolvadex-D 20 mg film-coated tablet, 30, blister pack 11232 11439011000036106 Nolvadex-D 20 mg film-coated tablet, 30 4756011000036102 Nolvadex-D 20 mg film-coated tablet 55911000168107 Nolvadex-D 55911000168107 Nolvadex-D 26647011000036104 tamoxifen 20 mg tablet, 30 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +933215411000036104 C Plus (Nutrition Care) powder for oral liquid, 200 g, bottle 22629 933204851000036102 C Plus (Nutrition Care) powder for oral liquid, 200 g 933196471000036103 C Plus (Nutrition Care) powder for oral liquid 920957011000036105 C Plus (Nutrition Care) 920957011000036105 C Plus (Nutrition Care) 933204861000036104 ascorbic acid 724.2 mg/g + bioflavonoids 50 mg/g + quercetin 30 mg/g + rutoside 50 mg/g powder for oral liquid, 200 g 933196481000036101 ascorbic acid 724.2 mg/g + bioflavonoids 50 mg/g + quercetin 30 mg/g + rutoside 50 mg/g powder for oral liquid 922039011000036104 ascorbic acid + bioflavonoids + quercetin + rutoside +933239181000036108 Fentanyl (Sandoz) 50 microgram/hour patch, 10, sachet 152571 933235881000036104 Fentanyl (Sandoz) 50 microgram/hour patch, 10 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235891000036102 fentanyl 50 microgram/hour patch, 10 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +853691000168106 Alledine 10 mg uncoated tablet, 30, blister pack 121135 853681000168108 Alledine 10 mg uncoated tablet, 30 853651000168101 Alledine 10 mg uncoated tablet 853641000168103 Alledine 853641000168103 Alledine 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +20899011000036102 Celapram 10 mg film-coated tablet, 28, bottle 93544 14057011000036101 Celapram 10 mg film-coated tablet, 28 7335011000036103 Celapram 10 mg film-coated tablet 3143011000036102 Celapram 3143011000036102 Celapram 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +44493011000036108 PV Carpine 3% eye drops solution, 15 mL, bottle 75895 41948011000036103 PV Carpine 3% eye drops solution, 15 mL 40281011000036105 PV Carpine 3% eye drops solution 3091011000036103 PV Carpine 3091011000036103 PV Carpine 38770011000036101 pilocarpine hydrochloride 3% eye drops, 15 mL 37988011000036108 pilocarpine hydrochloride 3% eye drops 21254011000036109 pilocarpine +17901011000036100 Vinblastine (DBL) 10 mg/10 mL injection solution, 5 x 10 mL vials 16309 12101011000036100 Vinblastine (DBL) 10 mg/10 mL injection solution, 5 x 10 mL vials 5150011000036103 Vinblastine (DBL) 10 mg/10 mL injection solution, 10 mL vial 4194011000036105 Vinblastine (DBL) 4194011000036105 Vinblastine (DBL) 26912011000036107 vinblastine sulfate 10 mg/10 mL injection, 5 x 10 mL vials 22289011000036103 vinblastine sulfate 10 mg/10 mL injection, vial 21466011000036108 vinblastine +902971000168109 Brillior 25 mg hard capsule, 14, blister pack 224337 902961000168103 Brillior 25 mg hard capsule, 14 902951000168100 Brillior 25 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +933229781000036109 Ceftriaxone (Max Pharma) 500 mg powder for injection, 5 vials 104488 933223181000036108 Ceftriaxone (Max Pharma) 500 mg powder for injection, 5 vials 933219461000036104 Ceftriaxone (Max Pharma) 500 mg powder for injection, 500 mg vial 933219181000036101 Ceftriaxone (Max Pharma) 933219181000036101 Ceftriaxone (Max Pharma) 933200131000036108 ceftriaxone 500 mg injection, 5 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +921952011000036102 Isovue-200 408 mg (iodine 200 mg)/mL injection solution, 20 mL vial 47064 921510011000036101 Isovue-200 408 mg (iodine 200 mg)/mL injection solution, 20 mL vial 921048011000036105 Isovue-200 408 mg (iodine 200 mg)/mL injection solution, 20 mL vial 18391000168100 Isovue-200 18391000168100 Isovue-200 922632011000036100 iopamidol 408 mg (iodine 200 mg)/mL injection, 20 mL vial 922120011000036103 iopamidol 408 mg (iodine 200 mg)/mL injection, 20 mL vial 77457011000036105 iopamidol +59690011000036105 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 100 mL, bottle 10549 55709011000036104 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 100 mL 53625011000036105 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 63105011000036103 pholcodine 3 mg/mL oral liquid, 100 mL 61858011000036102 pholcodine 3 mg/mL oral liquid 21705011000036108 pholcodine +59708011000036101 Sinus and Pain (Pharmacist Own) uncoated tablet, 12, blister pack 107065 55729011000036107 Sinus and Pain (Pharmacist Own) uncoated tablet, 12 53725011000036100 Sinus and Pain (Pharmacist Own) uncoated tablet 53303011000036109 Sinus and Pain (Pharmacist Own) 53303011000036109 Sinus and Pain (Pharmacist Own) 63119011000036104 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 12 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +823741000168109 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 2 x 1 mL syringes 221721 823731000168100 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 2 x 1 mL syringes 823681000168109 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, syringe 2391000168100 Clexane 2391000168100 Clexane 823721000168103 enoxaparin sodium 100 mg/mL injection, 2 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +703801000168109 Temozolomide (Apo) 140 mg hard capsule, 5, bottle 231528 703791000168108 Temozolomide (Apo) 140 mg hard capsule, 5 703781000168105 Temozolomide (Apo) 140 mg hard capsule 703741000168100 Temozolomide (Apo) 703741000168100 Temozolomide (Apo) 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +690941000168101 Sildenafil PHT (AN) 20 mg film-coated tablet, 90, blister pack 188711 690931000168105 Sildenafil PHT (AN) 20 mg film-coated tablet, 90 690921000168107 Sildenafil PHT (AN) 20 mg film-coated tablet 690911000168100 Sildenafil PHT (AN) 690911000168100 Sildenafil PHT (AN) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +933212511000036109 Ranitidine (GN) 150 mg film-coated tablet, 20, blister pack 148523 933202191000036105 Ranitidine (GN) 150 mg film-coated tablet, 20 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +754921000168100 Torvastat 20 mg film-coated tablet, 30, bottle 194114 22451000036102 Torvastat 20 mg film-coated tablet, 30 20391000036102 Torvastat 20 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +60179011000036107 Painstop for Children Day-Time Pain Reliever oral liquid solution, 200 mL, bottle 131721 56138011000036105 Painstop for Children Day-Time Pain Reliever oral liquid solution, 200 mL 53804011000036108 Painstop for Children Day-Time Pain Reliever oral liquid solution, 5 mL 53721000168103 Painstop for Children Day-Time Pain Reliever 53721000168103 Painstop for Children Day-Time Pain Reliever 63242011000036104 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL oral liquid, 200 mL 61900011000036101 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL oral liquid 21286011000036106 paracetamol + codeine +920817011000036106 Levo/Carbidopa tablet, 100, blister pack 99119 920496011000036103 Levo/Carbidopa tablet, 100 920227011000036107 Levo/Carbidopa tablet 920092011000036109 Levo/Carbidopa 920092011000036109 Levo/Carbidopa 28304011000036101 levodopa 250 mg + carbidopa 25 mg tablet, 100 23618011000036103 levodopa 250 mg + carbidopa 25 mg tablet 21326011000036107 levodopa + carbidopa +733771000168102 Arginaid Extra Wildberry oral liquid solution, 27 x 237 mL cartons 733761000168108 Arginaid Extra Wildberry oral liquid solution, 27 x 237 mL cartons 733751000168106 Arginaid Extra Wildberry oral liquid solution, 237 mL carton 732861000168108 Arginaid Extra 732861000168108 Arginaid Extra 733721000168103 protein formula with arginine, vitamin C, E and zinc oral liquid, 27 x 237 mL cartons 733701000168107 protein formula with arginine, vitamin C, E and zinc oral liquid, 237 mL carton 733691000168107 protein formula with arginine, vitamin C, E and zinc +1027231000168102 Neuroccord 75 mg hard capsule, 20, bottle 235854 1027221000168100 Neuroccord 75 mg hard capsule, 20 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +733811000168102 Ketorolac (Juno) 30 mg/mL injection solution, 5 x 1 mL ampoules 211626 733801000168100 Ketorolac (Juno) 30 mg/mL injection solution, 5 x 1 mL ampoules 733791000168101 Ketorolac (Juno) 30 mg/mL injection solution, ampoule 733781000168104 Ketorolac (Juno) 733781000168104 Ketorolac (Juno) 46295011000036100 ketorolac trometamol 30 mg/mL injection, 5 x 1 mL ampoules 45060011000036104 ketorolac trometamol 30 mg/mL injection, ampoule 44879011000036107 ketorolac +1026831000168103 Pregabalin (Amneal) 150 mg hard capsule, 60, bottle 235880 1026711000168100 Pregabalin (Amneal) 150 mg hard capsule, 60 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +900471000168102 Amoxycillin (Watson) 500 mg hard capsule, 30, blister pack 198126 900461000168108 Amoxycillin (Watson) 500 mg hard capsule, 30 900431000168100 Amoxycillin (Watson) 500 mg hard capsule 900421000168103 Amoxycillin (Watson) 900421000168103 Amoxycillin (Watson) 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +81065011000036100 Iscover 300 mg film-coated tablet, 50, blister pack 151280 80574011000036101 Iscover 300 mg film-coated tablet, 50 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81653011000036102 clopidogrel 300 mg tablet, 50 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +13291000036107 Mycophenolate Mofetil (Apo) 500 mg film-coated tablet, 50, bottle 168105 8451000036108 Mycophenolate Mofetil (Apo) 500 mg film-coated tablet, 50 2541000036107 Mycophenolate Mofetil (Apo) 500 mg film-coated tablet 23401000168104 Mycophenolate Mofetil (Apo) 23401000168104 Mycophenolate Mofetil (Apo) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +1095631000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 80, blister pack 287305 1095621000168100 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 80 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1077371000168108 fexofenadine hydrochloride 180 mg tablet, 80 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +772261000168107 Glycopyrrolate (Hospira) 200 microgram/mL injection solution, 5 x 1 mL ampoules 220016 772251000168105 Glycopyrrolate (Hospira) 200 microgram/mL injection solution, 5 x 1 mL ampoules 772241000168108 Glycopyrrolate (Hospira) 200 microgram/mL injection solution, ampoule 772231000168104 Glycopyrrolate (Hospira) 772231000168104 Glycopyrrolate (Hospira) 86451011000036104 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, 5 x 1 mL ampoules 86229011000036100 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, ampoule 37771011000036104 glycopyrronium bromide (glycopyrrolate) +68960011000036105 Dulcolax SP Drops 7.5 mg/mL oral liquid solution, 30 mL, bottle 133243 66762011000036106 Dulcolax SP Drops 7.5 mg/mL oral liquid solution, 30 mL 65325011000036105 Dulcolax SP Drops 7.5 mg/mL oral liquid solution, drop 56771000168109 Dulcolax SP Drops 56771000168109 Dulcolax SP Drops 71414011000036106 picosulfate sodium monohydrate 7.5 mg/mL oral liquid, 30 mL 70002011000036104 picosulfate sodium monohydrate 7.5 mg/mL oral liquid, drop 69785011000036107 picosulfate +902651000168107 Elevit Women's Multi film-coated tablet, 100, bottle 170908 902641000168105 Elevit Women's Multi film-coated tablet, 100 902621000168104 Elevit Women's Multi film-coated tablet 902591000168101 Elevit Women's Multi 902591000168101 Elevit Women's Multi 902631000168101 thiamine nitrate 4.2 mg + riboflavin 4.8 mg + nicotinamide 54 mg + calcium pantothenate 19.6 mg + pyridoxine hydrochloride 6 mg + cyanocobalamin 3 microgram + biotin 450 microgram + folic acid 500 microgram + ascorbic acid 80 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopheryl acetate 10 mg (10 IU) + calcium 120 mg + chromium 25 microgram + copper 900 microgram + iodine 75 microgram + iron 5 mg + magnesium 45 mg + manganese 1.8 mg + molybdenum 45 microgram + selenium 26 microgram + zinc 8 mg tablet, 100 902611000168106 thiamine nitrate 4.2 mg + riboflavin 4.8 mg + nicotinamide 54 mg + calcium pantothenate 19.6 mg + pyridoxine hydrochloride 6 mg + cyanocobalamin 3 microgram + biotin 450 microgram + folic acid 500 microgram + ascorbic acid 80 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopheryl acetate 10 mg (10 IU) + calcium 120 mg + chromium 25 microgram + copper 900 microgram + iodine 75 microgram + iron 5 mg + magnesium 45 mg + manganese 1.8 mg + molybdenum 45 microgram + selenium 26 microgram + zinc 8 mg tablet 902601000168108 thiamine + riboflavin + nicotinamide + pantothenic acid + pyridoxine + cyanocobalamin + biotin + folic acid + ascorbic acid + colecalciferol + dl-alpha-tocopherol + calcium + chromium + copper + iodine + iron + magnesium + manganese + molybdenum + selenium + zinc +703461000168107 Calamine (Sanofi-Aventis) lotion, 200 mL, bottle 106995 703451000168105 Calamine (Sanofi-Aventis) lotion, 200 mL 703441000168108 Calamine (Sanofi-Aventis) lotion 703431000168104 Calamine (Sanofi-Aventis) 703431000168104 Calamine (Sanofi-Aventis) 63091000036104 calamine 15% + zinc oxide 5% lotion, 200 mL 61061000036105 calamine 15% + zinc oxide 5% lotion 81211011000036108 calamine + zinc oxide +750991000168105 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 14235 750981000168107 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 750831000168102 Laila-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 750821000168100 Laila-35 ED 750821000168100 Laila-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +750991000168105 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 14235 750981000168107 Laila-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 750841000168106 Laila-35 ED (inert substance) sugar coated tablet 750821000168100 Laila-35 ED 750821000168100 Laila-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +1076531000168102 Aripiprazole (Auro) 20 mg uncoated tablet, 56, blister pack 198218 1076521000168100 Aripiprazole (Auro) 20 mg uncoated tablet, 56 1076471000168103 Aripiprazole (Auro) 20 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787721000168102 aripiprazole 20 mg tablet, 56 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +19820011000036104 Diclohexal 25 mg enteric tablet, 50, blister pack 63664 13075011000036106 Diclohexal 25 mg enteric tablet, 50 6359011000036101 Diclohexal 25 mg enteric tablet 3420011000036107 Diclohexal 3420011000036107 Diclohexal 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +69508011000036101 Albalon Relief 0.12% eye drops solution, 5 x 0.4 mL unit doses, ampoule 52293 67308011000036108 Albalon Relief 0.12% eye drops solution, 5 x 0.4 mL unit doses 65601011000036108 Albalon Relief 0.12% eye drops solution, 0.4 mL unit dose 65103011000036108 Albalon Relief 65103011000036108 Albalon Relief 71854011000036105 phenylephrine hydrochloride 0.12% eye drops, 5 x 0.4 mL unit doses 70215011000036103 phenylephrine hydrochloride 0.12% eye drops, unit dose 37732011000036107 phenylephrine +943341000168104 Risperidone (GenRx) 1 mg film-coated tablet, 60, blister pack 127562 943331000168108 Risperidone (GenRx) 1 mg film-coated tablet, 60 943321000168105 Risperidone (GenRx) 1 mg film-coated tablet 943311000168103 Risperidone (GenRx) 943311000168103 Risperidone (GenRx) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1003441000168105 Levetiracetam 1000 (GN) 1 g film-coated tablet, 60, blister pack 161293 1003431000168101 Levetiracetam 1000 (GN) 1 g film-coated tablet, 60 1003421000168104 Levetiracetam 1000 (GN) 1 g film-coated tablet 1003411000168106 Levetiracetam 1000 (GN) 1003411000168106 Levetiracetam 1000 (GN) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +18346011000036103 Cromolux 2% eye drops, 10 mL, bottle 122246 11710011000036102 Cromolux 2% eye drops, 10 mL 5813011000036108 Cromolux 2% eye drops 3119011000036107 Cromolux 3119011000036107 Cromolux 26987011000036107 sodium cromoglycate 2% eye drops, 10 mL 22360011000036102 sodium cromoglycate 2% eye drops 21253011000036107 cromoglycate +933106011000036104 Lamictal 100 mg tablet, 56, blister pack 46266 932913011000036104 Lamictal 100 mg tablet, 56 932764011000036106 Lamictal 100 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +933106011000036104 Lamictal 100 mg tablet, 56, blister pack 51549 932913011000036104 Lamictal 100 mg tablet, 56 932764011000036106 Lamictal 100 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +1089121000168109 Lorstat 10 mg film-coated tablet, 10, bottle 181403 1089111000168102 Lorstat 10 mg film-coated tablet, 10 20801000036102 Lorstat 10 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +911231000168107 Carvedilol (Watson) 6.25 mg uncoated tablet, 60, blister pack 194078 911221000168109 Carvedilol (Watson) 6.25 mg uncoated tablet, 60 911191000168103 Carvedilol (Watson) 6.25 mg uncoated tablet 911151000168108 Carvedilol (Watson) 911151000168108 Carvedilol (Watson) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +900791000168109 Amoxycillin (Actavis) 250 mg hard capsule, 30, blister pack 198125 900781000168106 Amoxycillin (Actavis) 250 mg hard capsule, 30 900751000168104 Amoxycillin (Actavis) 250 mg hard capsule 900721000168107 Amoxycillin (Actavis) 900721000168107 Amoxycillin (Actavis) 900551000168107 amoxicillin 250 mg capsule, 30 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +1110411000168105 Nicotinell Ice Mint 4 mg chewing gum, 168, blister pack 279616 1110401000168107 Nicotinell Ice Mint 4 mg chewing gum, 168 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71516011000036108 nicotine 4 mg gum, 168 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +823421000168107 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 0.6 mL syringe 221719 823411000168100 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 0.6 mL syringe 823391000168100 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 0.6 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823401000168103 enoxaparin sodium 60 mg/0.6 mL injection, 0.6 mL syringe 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +44313011000036103 ClindaTech 1% solution, 30 mL, bottle 66687 41780011000036101 ClindaTech 1% solution, 30 mL 40197011000036103 ClindaTech 1% solution 39609011000036105 ClindaTech 39609011000036105 ClindaTech 46586011000036104 clindamycin hydrochloride 1% solution, 30 mL 45230011000036102 clindamycin hydrochloride 1% solution 21255011000036108 clindamycin +933231871000036103 Microshield Angel Antimicrobial Hand 48.71% gel, 125 mL, bottle 76989 933226231000036108 Microshield Angel Antimicrobial Hand 48.71% gel, 125 mL 933221081000036105 Microshield Angel Antimicrobial Hand 48.71% gel 50001000168104 Microshield Angel Antimicrobial Hand 50001000168104 Microshield Angel Antimicrobial Hand 71960011000036103 ethanol 48.71% gel, 125 mL 70263011000036100 ethanol 48.71% gel 69846011000036106 ethanol +1003481000168100 Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60, blister pack 161290 1003471000168103 Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60 1003461000168109 Levetiracetam 1000 (LAPL) 1 g film-coated tablet 1003451000168107 Levetiracetam 1000 (LAPL) 1003451000168107 Levetiracetam 1000 (LAPL) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +933246991000036103 Pantoprazole (PS) 40 mg enteric tablet, 56, blister pack 158197 933243821000036100 Pantoprazole (PS) 40 mg enteric tablet, 56 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46661011000036101 pantoprazole 40 mg enteric tablet, 56 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +763681000168101 Bleomycin Sulfate (DBL) 15 000 international units powder for injection, 10 vials 42569 763671000168104 Bleomycin Sulfate (DBL) 15 000 international units powder for injection, 10 vials 5394011000036109 Bleomycin Sulfate (DBL) 15 000 international units powder for injection, 15 000 international units vial 3159011000036101 Bleomycin Sulfate (DBL) 3159011000036101 Bleomycin Sulfate (DBL) 27824011000036104 bleomycin sulfate 15 000 international units injection, 10 vials 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +933214771000036103 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 500, bottle 163529 933204371000036102 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 500 933195501000036100 Pravastatin Sodium (DRLA) 80 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 52330011000036100 pravastatin sodium 80 mg tablet, 500 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +763601000168109 Zinnat 250 mg film-coated tablet, 20, blister pack 47621 763591000168102 Zinnat 250 mg film-coated tablet, 20 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 763581000168100 cefuroxime 250 mg tablet, 20 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +866391000168102 Amitriptyline (GPPL) 10 mg tablet, 50, bottle 232135 865421000168102 Amitriptyline (GPPL) 10 mg tablet, 50 865411000168109 Amitriptyline (GPPL) 10 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +797881000168106 Aciclovir (Watson) 200 mg uncoated tablet, 25, blister pack 202881 797871000168108 Aciclovir (Watson) 200 mg uncoated tablet, 25 797861000168102 Aciclovir (Watson) 200 mg uncoated tablet 795831000168101 Aciclovir (Watson) 795831000168101 Aciclovir (Watson) 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +20402011000036103 Captopril (Douglas) 25 mg uncoated tablet, 90, bottle 77285 13610011000036101 Captopril (Douglas) 25 mg uncoated tablet, 90 6893011000036107 Captopril (Douglas) 25 mg uncoated tablet 4305011000036103 Captopril (Douglas) 4305011000036103 Captopril (Douglas) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +808591000168105 Pramipexole XR (GP) 3 mg modified release tablet, 30, blister pack 225631 808581000168107 Pramipexole XR (GP) 3 mg modified release tablet, 30 808551000168100 Pramipexole XR (GP) 3 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 87817011000036105 pramipexole dihydrochloride monohydrate 3 mg modified release tablet, 30 87761011000036101 pramipexole dihydrochloride monohydrate 3 mg modified release tablet 37716011000036100 pramipexole +931412011000036108 Corn Removing Liquid (Scholl) collodion, 10 mL, bottle 13525 930610011000036101 Corn Removing Liquid (Scholl) collodion, 10 mL 929970011000036107 Corn Removing Liquid (Scholl) collodion 929879011000036109 Corn Removing Liquid (Scholl) 929879011000036109 Corn Removing Liquid (Scholl) 932367011000036101 salicylic acid 11.25% + camphor 2.8% collodion, 10 mL 931835011000036100 salicylic acid 11.25% + camphor 2.8% collodion 931805011000036106 salicylic acid + camphor +19666011000036104 Titralac chewable tablet, 100, bottle 59913 12929011000036107 Titralac chewable tablet, 100 6219011000036103 Titralac chewable tablet 3784011000036101 Titralac 3784011000036101 Titralac 27444011000036108 calcium carbonate 420 mg + glycine 180 mg chewable tablet, 100 22791011000036105 calcium carbonate 420 mg + glycine 180 mg chewable tablet 21538011000036107 calcium carbonate + glycine +928859011000036108 Irinotecan Hydrochloride Trihydrate (DP) 100 mg/5 mL concentrated injection, 5 mL vial 137451 928221011000036102 Irinotecan Hydrochloride Trihydrate (DP) 100 mg/5 mL concentrated injection, 5 mL vial 927880011000036100 Irinotecan Hydrochloride Trihydrate (DP) 100 mg/5 mL concentrated injection, 5 mL vial 927830011000036108 Irinotecan Hydrochloride Trihydrate (DP) 927830011000036108 Irinotecan Hydrochloride Trihydrate (DP) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +1106321000168108 Paxam 2 mg uncoated tablet, 200, bottle 54847 1106311000168101 Paxam 2 mg uncoated tablet, 200 6049011000036100 Paxam 2 mg uncoated tablet 3163011000036108 Paxam 3163011000036108 Paxam 1106301000168104 clonazepam 2 mg tablet, 200 22688011000036108 clonazepam 2 mg tablet 21226011000036100 clonazepam +840741000168101 Boostrix-IPV injection suspension, 0.5 mL syringe 96137 840731000168105 Boostrix-IPV injection suspension, 0.5 mL syringe 840711000168100 Boostrix-IPV injection suspension, 0.5 mL syringe 73764011000036108 Boostrix-IPV 73764011000036108 Boostrix-IPV 840721000168107 diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 840701000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 840691000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine +943541000168107 Melox 7.5 mg uncoated tablet, 30, blister pack 149086 943531000168103 Melox 7.5 mg uncoated tablet, 30 943521000168101 Melox 7.5 mg uncoated tablet 40051000036105 Melox 40051000036105 Melox 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +37673011000036109 Tropicamide Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses, tube 32288 36939011000036108 Tropicamide Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses 36270011000036103 Tropicamide Minims (Bausch & Lomb) 0.5% eye drops solution, 0.5 mL unit dose 50981000168106 Tropicamide Minims (Bausch & Lomb) 50981000168106 Tropicamide Minims (Bausch & Lomb) 38820011000036104 tropicamide 0.5% eye drops, 20 x 0.5 mL unit doses 38030011000036102 tropicamide 0.5% eye drops, unit dose 37747011000036108 tropicamide +994941000168109 Cepacaine Oral Solution mouthwash, 200 mL, bottle 10096 994931000168100 Cepacaine Oral Solution mouthwash, 200 mL 994911000168105 Cepacaine Oral Solution mouthwash 61861000168109 Cepacaine Oral Solution 61861000168109 Cepacaine Oral Solution 994921000168103 cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash, 200 mL 994901000168107 cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash 61719011000036102 cetylpyridinium + benzocaine +1093461000168107 Voltaren Emulgel No Mess Applicator 1.16% gel, 300 g, tube 282516 1093451000168105 Voltaren Emulgel No Mess Applicator 1.16% gel, 300 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1093441000168108 diclofenac diethylamine 1.16% gel, 300 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +20873011000036109 Ibimicyn 500 mg powder for injection, 5 vials 92839 14035011000036107 Ibimicyn 500 mg powder for injection, 5 vials 7311011000036109 Ibimicyn 500 mg powder for injection, 500 mg vial 3348011000036101 Ibimicyn 3348011000036101 Ibimicyn 28098011000036109 ampicillin 500 mg injection, 5 vials 23406011000036103 ampicillin 500 mg injection, vial 21671011000036106 ampicillin +692951000168103 Desvenlafaxine XR (GH) 100 mg modified release tablet, 28, blister pack 227806 692941000168100 Desvenlafaxine XR (GH) 100 mg modified release tablet, 28 692931000168109 Desvenlafaxine XR (GH) 100 mg modified release tablet 692891000168101 Desvenlafaxine XR (GH) 692891000168101 Desvenlafaxine XR (GH) 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1054921000168102 Palexia SR 250 mg modified release tablet, 56, blister pack 165357 1054911000168109 Palexia SR 250 mg modified release tablet, 56 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054901000168106 tapentadol 250 mg modified release tablet, 56 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +43876011000036100 Ramipril (Sandoz) 10 mg hard capsule, 28, blister pack 128811 41372011000036107 Ramipril (Sandoz) 10 mg hard capsule, 28 5803011000036106 Ramipril (Sandoz) 10 mg hard capsule 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 46764011000036105 ramipril 10 mg capsule, 28 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +20137011000036106 Eprex 40 000 units/mL injection solution, 1 mL syringe 73487 13361011000036100 Eprex 40 000 units/mL injection solution, 1 mL syringe 6646011000036104 Eprex 40 000 units/mL injection solution, syringe 3309011000036103 Eprex 3309011000036103 Eprex 27717011000036103 epoetin alfa 40 000 units/mL injection, 1 mL syringe 23052011000036104 epoetin alfa 40 000 units/mL injection, syringe 21294011000036104 epoetin alfa +82333011000036106 Duromine 30 mg modified release capsule, 7, blister pack 10940 82116011000036104 Duromine 30 mg modified release capsule, 7 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82520011000036103 phentermine 30 mg modified release capsule, 7 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +82333011000036106 Duromine 30 mg modified release capsule, 7, blister pack 76680 82116011000036104 Duromine 30 mg modified release capsule, 7 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82520011000036103 phentermine 30 mg modified release capsule, 7 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +862141000168106 Cal-600 plus D film-coated tablet, 100, bottle 174625 862131000168102 Cal-600 plus D film-coated tablet, 100 862121000168100 Cal-600 plus D film-coated tablet 681111000168106 Cal-600 plus D 681111000168106 Cal-600 plus D 734011000168105 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +945671000168102 Invast 40 mg film-coated tablet, 30, bottle 100262 945661000168108 Invast 40 mg film-coated tablet, 30 945651000168106 Invast 40 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +960701000168102 Ciram 40 mg film-coated tablet, 7, bottle 158861 960481000168103 Ciram 40 mg film-coated tablet, 7 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202931000036106 citalopram 40 mg tablet, 7 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +931654011000036106 Twynsta 40/10 mg multilayer tablet, 14, blister pack 166264 930814011000036104 Twynsta 40/10 mg multilayer tablet, 14 930058011000036102 Twynsta 40/10 mg multilayer tablet 23641000168100 Twynsta 40/10 mg 23641000168100 Twynsta 40/10 mg 932427011000036102 telmisartan 40 mg + amlodipine 10 mg tablet, 14 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +935001000168103 Centevo 125/31.25/200 mg film-coated tablet, 10, bottle 238856 934991000168109 Centevo 125/31.25/200 mg film-coated tablet, 10 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 84651011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 10 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +926901011000036104 Metrol 100 mg uncoated tablet, 60, blister pack 75834 13660011000036100 Metrol 100 mg uncoated tablet, 60 6943011000036109 Metrol 100 mg uncoated tablet 3236011000036107 Metrol 3236011000036107 Metrol 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +18235011000036103 Sertraline (GenRx) 50 mg film-coated tablet, 30, blister pack 101481 11202011000036107 Sertraline (GenRx) 50 mg film-coated tablet, 30 5814011000036105 Sertraline (GenRx) 50 mg film-coated tablet 3086011000036107 Sertraline (GenRx) 3086011000036107 Sertraline (GenRx) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +81185011000036109 Robitussin Chesty Cough 200 mg soft capsule, 60, blister pack 74414 80687011000036109 Robitussin Chesty Cough 200 mg soft capsule, 60 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81742011000036102 guaifenesin 200 mg capsule, 60 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +660921000168109 Pioglitazone (AN) 45 mg uncoated tablet, 28, blister pack 176387 660911000168102 Pioglitazone (AN) 45 mg uncoated tablet, 28 660901000168100 Pioglitazone (AN) 45 mg uncoated tablet 660861000168106 Pioglitazone (AN) 660861000168106 Pioglitazone (AN) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +868491000168107 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags 33534 868481000168109 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags 868441000168104 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 50381000168105 Dianeal PD-4 with Glucose 2.5% System II 50381000168105 Dianeal PD-4 with Glucose 2.5% System II 868471000168106 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags 868331000168102 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +921877011000036109 Thalomid 100 mg hard capsule, 28, blister pack 156902 921436011000036102 Thalomid 100 mg hard capsule, 28 921008011000036100 Thalomid 100 mg hard capsule 83232011000036100 Thalomid 83232011000036100 Thalomid 922564011000036106 thalidomide 100 mg capsule, 28 922087011000036101 thalidomide 100 mg capsule 21303011000036108 thalidomide +933232011000036106 Idaprex 8 mg uncoated tablet, 10, blister pack 96738 933226481000036108 Idaprex 8 mg uncoated tablet, 10 933221361000036102 Idaprex 8 mg uncoated tablet 933218941000036100 Idaprex 933218941000036100 Idaprex 933226491000036105 perindopril erbumine 8 mg tablet, 10 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +1011981000168105 Irbesartan (Apotex) 150 mg film-coated tablet, 56, blister pack 169789 1011971000168107 Irbesartan (Apotex) 150 mg film-coated tablet, 56 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777671000168101 irbesartan 150 mg tablet, 56 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1071941000168108 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Night tablets, 32 x Day tablets), 48, blister pack 162417 1071931000168104 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Night tablets, 32 x Day tablets), 48 1071861000168100 Day plus Night Cold and Flu Relief PE (Night) (Priceline) uncoated tablet 1071821000168105 Day plus Night Cold and Flu Relief PE (Priceline) 1071841000168104 Day plus Night Cold and Flu Relief PE (Night) (Priceline) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1071941000168108 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Night tablets, 32 x Day tablets), 48, blister pack 162417 1071931000168104 Day plus Night Cold and Flu Relief PE (Priceline) (16 x Night tablets, 32 x Day tablets), 48 1071851000168102 Day plus Night Cold and Flu Relief PE (Day) (Priceline) uncoated tablet 1071821000168105 Day plus Night Cold and Flu Relief PE (Priceline) 1071831000168108 Day plus Night Cold and Flu Relief PE (Day) (Priceline) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +656581000168105 Pravastatin Sodium (AN) 40 mg uncoated tablet, 30, bottle 191702 656571000168107 Pravastatin Sodium (AN) 40 mg uncoated tablet, 30 656561000168101 Pravastatin Sodium (AN) 40 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +1084911000168104 Taltz 80 mg/mL injection solution, 1 mL syringe 253892 1084901000168102 Taltz 80 mg/mL injection solution, 1 mL syringe 1084881000168104 Taltz 80 mg/mL injection solution, syringe 871151000168109 Taltz 871151000168109 Taltz 1084891000168101 ixekizumab 80 mg/mL injection, 1 mL syringe 1084871000168102 ixekizumab 80 mg/mL injection, syringe 871171000168100 ixekizumab +658751000168107 Telmisartan HCTZ 80/12.5 (AN) multilayer tablet, 28, blister pack 221180 658741000168105 Telmisartan HCTZ 80/12.5 (AN) multilayer tablet, 28 658731000168101 Telmisartan HCTZ 80/12.5 (AN) multilayer tablet 658721000168104 Telmisartan HCTZ 80/12.5 (AN) 658721000168104 Telmisartan HCTZ 80/12.5 (AN) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +933212671000036102 Ciprofloxacin (GN) 500 mg film-coated tablet, 20, blister pack 148852 933202411000036108 Ciprofloxacin (GN) 500 mg film-coated tablet, 20 933195371000036101 Ciprofloxacin (GN) 500 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 933199821000036109 ciprofloxacin 500 mg tablet, 20 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +12651000036107 Olanzapine (Apo) 15 mg film-coated tablet, 28, blister pack 158969 6861000036107 Olanzapine (Apo) 15 mg film-coated tablet, 28 2501000036109 Olanzapine (Apo) 15 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 6871000036104 olanzapine 15 mg tablet, 28 1381000036101 olanzapine 15 mg tablet 21485011000036103 olanzapine +902891000168103 Candesartan (Actavis) 16 mg uncoated tablet, 30, blister pack 195507 902881000168101 Candesartan (Actavis) 16 mg uncoated tablet, 30 902871000168104 Candesartan (Actavis) 16 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +923697011000036101 Grandicrit 2000 units/mL injection solution, 1 mL syringe 147857 923315011000036102 Grandicrit 2000 units/mL injection solution, 1 mL syringe 922997011000036108 Grandicrit 2000 units/mL injection solution, syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924128011000036107 epoetin lambda 2000 units/mL injection, 1 mL syringe 923954011000036103 epoetin lambda 2000 units/mL injection, syringe 923930011000036107 epoetin lambda +934911000168100 Mivacron 50 mg/25 mL injection solution, 2 x 25 mL ampoules 42946 934901000168103 Mivacron 50 mg/25 mL injection solution, 2 x 25 mL ampoules 934881000168100 Mivacron 50 mg/25 mL injection solution, 25 mL ampoule 39761011000036101 Mivacron 39761011000036101 Mivacron 934891000168102 mivacurium 50 mg/25 mL injection, 2 x 25 mL ampoules 934871000168103 mivacurium 50 mg/25 mL injection, ampoule 44971011000036103 mivacurium +132931000036106 Camino Pro Complete 3 to 12 Years bar, 7 x 54 g, sachet 132901000036104 Camino Pro Complete 3 to 12 Years bar, 7 x 54 g 132871000036104 Camino Pro Complete 3 to 12 Years bar, 54 g 50691000168101 Camino Pro Complete 3 to 12 Years 50691000168101 Camino Pro Complete 3 to 12 Years 132911000036102 glycomacropeptide and essential amino acids with vitamins and minerals bar, 7 x 54 g 125531000036105 glycomacropeptide and essential amino acids with vitamins and minerals bar, 54 g 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +20214011000036108 Actonel 5 mg film-coated tablet, 28, blister pack 74135 13432011000036108 Actonel 5 mg film-coated tablet, 28 6713011000036108 Actonel 5 mg film-coated tablet 13171000168107 Actonel 13171000168107 Actonel 27740011000036108 risedronate sodium 5 mg tablet, 28 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +145911000036109 PKU Lophlex Sensation 20 oral semi-solid, 36 x 109 g tubs 144541000036104 PKU Lophlex Sensation 20 oral semi-solid, 36 x 109 g tubs 256021000168103 PKU Lophlex Sensation 20 oral semi-solid, 109 g tub 43081000168104 PKU Lophlex Sensation 20 43081000168104 PKU Lophlex Sensation 20 144551000036101 amino acid formula with vitamins and minerals without phenylalanine oral semi-solid, 36 x 109 g tubs 255821000168101 amino acid formula with vitamins and minerals without phenylalanine oral semi-solid, 109 g tub 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +700029891000036107 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 87138011000036107 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 87084011000036103 Estelle-35 ED (inert substance) film-coated tablet 700020231000036104 Estelle-35 ED 700020231000036104 Estelle-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029891000036107 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 87138011000036107 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 87083011000036100 Estelle-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 700020231000036104 Estelle-35 ED 700020231000036104 Estelle-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +892061000168108 Betistavert 16 mg uncoated tablet, 60, blister pack 212087 892051000168106 Betistavert 16 mg uncoated tablet, 60 891981000168107 Betistavert 16 mg uncoated tablet 891971000168109 Betistavert 891971000168109 Betistavert 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +992751000168100 Entecavir (Apo) 1 mg film-coated tablet, 30, blister pack 217585 992741000168102 Entecavir (Apo) 1 mg film-coated tablet, 30 992731000168106 Entecavir (Apo) 1 mg film-coated tablet 991621000168105 Entecavir (Apo) 991621000168105 Entecavir (Apo) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +956341000168107 Aricept-D 10 mg orally disintegrating tablet, 28, blister pack 116854 956331000168103 Aricept-D 10 mg orally disintegrating tablet, 28 956311000168108 Aricept-D 10 mg orally disintegrating tablet 956041000168105 Aricept-D 956041000168105 Aricept-D 956321000168101 donepezil hydrochloride 10 mg orally disintegrating tablet, 28 956301000168105 donepezil hydrochloride 10 mg orally disintegrating tablet 21256011000036101 donepezil +868531000168107 Atomerra 18 mg hard capsule, 7, blister pack 234793 868521000168109 Atomerra 18 mg hard capsule, 7 868511000168102 Atomerra 18 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +38601000036101 Escitalopram (LAPL) 15 mg film-coated tablet, 30, bottle 165859 34961000036101 Escitalopram (LAPL) 15 mg film-coated tablet, 30 33091000036109 Escitalopram (LAPL) 15 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +44655011000036103 Abilify 5 mg uncoated tablet, 10, blister pack 90925 42107011000036105 Abilify 5 mg uncoated tablet, 10 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46869011000036109 aripiprazole 5 mg tablet, 10 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +34675011000036101 Erbitux 500 mg/100 mL injection solution, 100 mL vial 132396 34261011000036105 Erbitux 500 mg/100 mL injection solution, 100 mL vial 33991011000036108 Erbitux 500 mg/100 mL injection solution, 100 mL vial 4257011000036109 Erbitux 4257011000036109 Erbitux 35129011000036105 cetuximab 500 mg/100 mL injection, 100 mL vial 34859011000036105 cetuximab 500 mg/100 mL injection, vial 21547011000036105 cetuximab +761591000168101 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid, 100 mL, bottle 14085 761581000168104 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid, 100 mL 761551000168106 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid 761511000168105 Eucalyptus Oil (David Craig) 761511000168105 Eucalyptus Oil (David Craig) 927353011000036104 eucalyptus oil 1 mL/mL liquid, 100 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +1101591000168108 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 70, blister pack 286356 1101581000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 70 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 1082121000168102 cetirizine hydrochloride 10 mg tablet, 70 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1108011000168102 Midazolam (Intas) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207240 1108001000168100 Midazolam (Intas) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 1107951000168104 Midazolam (Intas) 5 mg/5 mL injection solution, 5 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +891961000168103 Betastine 16 mg uncoated tablet, 100, blister pack 212078 891951000168100 Betastine 16 mg uncoated tablet, 100 891861000168105 Betastine 16 mg uncoated tablet 891851000168108 Betastine 891851000168108 Betastine 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +68720011000036106 Rikoderm bath oil, 10 mL sachet 10939 66578011000036102 Rikoderm bath oil, 10 mL sachet 65411011000036108 Rikoderm bath oil, 10 mL sachet 65134011000036102 Rikoderm 65134011000036102 Rikoderm 71301011000036103 light liquid paraffin 91.7% + wool fat 3% bath oil, 10 mL sachet 69939011000036107 light liquid paraffin 91.7% + wool fat 3% bath oil, sachet 69787011000036102 light liquid paraffin + wool fat +44270011000036106 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 2 x 0.6 mL syringes 61938 41741011000036101 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 2 x 0.6 mL syringes 40177011000036107 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46548011000036106 dalteparin sodium 15 000 anti-Xa units/0.6 mL injection, 2 x 0.6 mL syringes 45213011000036104 dalteparin sodium 15 000 anti-Xa units/0.6 mL injection, syringe 21450011000036103 dalteparin sodium +12971000036105 Olanzapine (Apo) 10 mg film-coated tablet, 28, bottle 159002 7071000036109 Olanzapine (Apo) 10 mg film-coated tablet, 28 2961000036104 Olanzapine (Apo) 10 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +130761000036101 Mifepristone (Linepharma) 200 mg uncoated tablet, 1, blister pack 175671 127811000036106 Mifepristone (Linepharma) 200 mg uncoated tablet, 1 124311000036106 Mifepristone (Linepharma) 200 mg uncoated tablet 123741000036109 Mifepristone (Linepharma) 123741000036109 Mifepristone (Linepharma) 127821000036104 mifepristone 200 mg tablet, 1 124321000036104 mifepristone 200 mg tablet 132121000036107 mifepristone +1099491000168103 Olanzapine (Chemmart) 15 mg film-coated tablet, 28, blister pack 158983 1099481000168101 Olanzapine (Chemmart) 15 mg film-coated tablet, 28 1099471000168104 Olanzapine (Chemmart) 15 mg film-coated tablet 23681000168105 Olanzapine (Chemmart) 23681000168105 Olanzapine (Chemmart) 6871000036104 olanzapine 15 mg tablet, 28 1381000036101 olanzapine 15 mg tablet 21485011000036103 olanzapine +969111000168109 Pregabalin (DRLA) 150 mg hard capsule, 14, blister pack 263055 969101000168106 Pregabalin (DRLA) 150 mg hard capsule, 14 969091000168101 Pregabalin (DRLA) 150 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +19263011000036107 Rimycin 150 mg hard capsule, 10, bottle 48230 12553011000036100 Rimycin 150 mg hard capsule, 10 4450011000036109 Rimycin 150 mg hard capsule 3021011000036106 Rimycin 3021011000036106 Rimycin 27195011000036101 rifampicin 150 mg capsule, 10 22557011000036108 rifampicin 150 mg capsule 21532011000036109 rifampicin +894151000168100 Olmesartan/HCT 20/12.5 (Sandoz) film-coated tablet, 30, blister pack 221119 894141000168102 Olmesartan/HCT 20/12.5 (Sandoz) film-coated tablet, 30 894131000168106 Olmesartan/HCT 20/12.5 (Sandoz) film-coated tablet 894121000168108 Olmesartan/HCT 20/12.5 (Sandoz) 894121000168108 Olmesartan/HCT 20/12.5 (Sandoz) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +66541000036105 Dermo Relief (Michael's) ointment, 100 g, jar 72867 64461000036102 Dermo Relief (Michael's) ointment, 100 g 61401000036103 Dermo Relief (Michael's) ointment 60541000036108 Dermo Relief (Michael's) 60541000036108 Dermo Relief (Michael's) 927312011000036102 salicylic acid 2% + menthol 0.5% + coal tar 0.4% ointment, 100 g 926985011000036103 salicylic acid 2% + menthol 0.5% + coal tar 0.4% ointment 926967011000036106 salicylic acid + menthol + coal tar +1027471000168100 Neuroccord 25 mg hard capsule, 30, bottle 235872 1027461000168106 Neuroccord 25 mg hard capsule, 30 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970371000168101 pregabalin 25 mg capsule, 30 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +18072011000036102 Loniten 10 mg uncoated tablet, 100, bottle 12309 11731011000036100 Loniten 10 mg uncoated tablet, 100 5018011000036102 Loniten 10 mg uncoated tablet 3684011000036109 Loniten 3684011000036109 Loniten 26753011000036101 minoxidil 10 mg tablet, 100 22140011000036100 minoxidil 10 mg tablet 21642011000036104 minoxidil +43893011000036102 Neupro 4 mg/24 hours patch, 7, sachet 131381 41385011000036106 Neupro 4 mg/24 hours patch, 7 39833011000036107 Neupro 4 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46282011000036107 rotigotine 4 mg/24 hours patch, 7 45052011000036105 rotigotine 4 mg/24 hours patch 44880011000036107 rotigotine +35643011000036109 Tears Naturale 0.1% / 0.3% eye drops solution, 15 mL, bottle 35569011000036108 Tears Naturale 0.1% / 0.3% eye drops solution, 15 mL 35456011000036103 Tears Naturale 0.1% / 0.3% eye drops solution 38691000168102 Tears Naturale 0.1% / 0.3% 38691000168102 Tears Naturale 0.1% / 0.3% 35766011000036100 dextran-70 0.1% + hypromellose 0.3% eye drops, 15 mL 35707011000036101 dextran-70 0.1% + hypromellose 0.3% eye drops 35686011000036106 dextran-70 + hypromellose +66461000036107 Monofix-VF (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 66066 64361000036106 Monofix-VF (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 642901000168106 Monofix-VF (inert substance) diluent, 10 mL vial 40801000168106 Monofix-VF 40801000168106 Monofix-VF 64371000036103 factor IX 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +66461000036107 Monofix-VF (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 66066 64361000036106 Monofix-VF (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 65277011000036109 Monofix-VF (factor IX 500 units) powder for injection, 500 units vial 40801000168106 Monofix-VF 40801000168106 Monofix-VF 64371000036103 factor IX 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 69903011000036100 factor IX 500 units injection, vial 69788011000036101 factor IX +733491000168109 Fluorescein (Serb) 500 mg/5 mL injection solution, 5 mL ampoule 124565 733481000168106 Fluorescein (Serb) 500 mg/5 mL injection solution, 5 mL ampoule 733471000168108 Fluorescein (Serb) 500 mg/5 mL injection solution, 5 mL ampoule 733461000168102 Fluorescein (Serb) 733461000168102 Fluorescein (Serb) 46240011000036101 fluorescein sodium 500 mg/5 mL injection, 5 mL ampoule 45043011000036101 fluorescein sodium 500 mg/5 mL injection, ampoule 44934011000036102 fluorescein +933247311000036105 Risperidone (Pfizer) 1 mg film-coated tablet, 60, blister pack 166681 933244041000036100 Risperidone (Pfizer) 1 mg film-coated tablet, 60 933241641000036105 Risperidone (Pfizer) 1 mg film-coated tablet 933240791000036103 Risperidone (Pfizer) 933240791000036103 Risperidone (Pfizer) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +796191000168103 Acihexal 250 mg powder for injection, 5 vials 68791 796181000168101 Acihexal 250 mg powder for injection, 5 vials 796171000168104 Acihexal 250 mg powder for injection, 250 mg vial 3239011000036103 Acihexal 3239011000036103 Acihexal 46732011000036105 aciclovir 250 mg injection, 5 vials 45288011000036107 aciclovir 250 mg injection, vial 21239011000036106 aciclovir +849441000168100 Vzole 50 mg film-coated tablet, 14, bottle 238240 849181000168104 Vzole 50 mg film-coated tablet, 14 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46813011000036107 voriconazole 50 mg tablet, 14 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +60213011000036103 Bisolvon Chesty Forte 8 mg/5 mL oral liquid solution, 250 mL, bottle 133204 56172011000036105 Bisolvon Chesty Forte 8 mg/5 mL oral liquid solution, 250 mL 53820011000036107 Bisolvon Chesty Forte 8 mg/5 mL oral liquid solution, 5 mL 13191000168108 Bisolvon Chesty Forte 13191000168108 Bisolvon Chesty Forte 63251011000036108 bromhexine hydrochloride 8 mg/5 mL oral liquid, 250 mL 61902011000036102 bromhexine hydrochloride 8 mg/5 mL oral liquid 61780011000036106 bromhexine +60787011000036103 Dry Cough (Chemists' Own) oral liquid solution, 100 mL, bottle 55139 56745011000036105 Dry Cough (Chemists' Own) oral liquid solution, 100 mL 54062011000036101 Dry Cough (Chemists' Own) oral liquid solution, 10 mL 53446011000036103 Dry Cough (Chemists' Own) 53446011000036103 Dry Cough (Chemists' Own) 63547011000036107 codeine phosphate hemihydrate 19.2 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62011011000036103 codeine phosphate hemihydrate 19.2 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61752011000036103 codeine + pseudoephedrine +1076371000168105 Aripiprazole (Auro) 10 mg uncoated tablet, 28, blister pack 198205 1076361000168104 Aripiprazole (Auro) 10 mg uncoated tablet, 28 1076351000168101 Aripiprazole (Auro) 10 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787351000168109 aripiprazole 10 mg tablet, 28 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +84363011000036105 Xyntha 1000 IU (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161716 84056011000036108 Xyntha 1000 IU (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 83680011000036109 Xyntha 1000 IU (moroctocog alfa 1000 units) powder for injection, 1000 units vial 1691000168104 Xyntha 1000 IU 1691000168104 Xyntha 1000 IU 46163011000036101 moroctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45015011000036109 moroctocog alfa 1000 units injection, vial 44868011000036107 moroctocog alfa +84363011000036105 Xyntha 1000 IU (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161716 84056011000036108 Xyntha 1000 IU (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 1691000168104 Xyntha 1000 IU 83556011000036108 Xyntha 46163011000036101 moroctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +44347011000036101 Novonorm 2 mg uncoated tablet, 30, blister pack 67271 41814011000036107 Novonorm 2 mg uncoated tablet, 30 40209011000036105 Novonorm 2 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46620011000036100 repaglinide 2 mg tablet, 30 45241011000036105 repaglinide 2 mg tablet 44883011000036104 repaglinide +874701000168106 Beprol 1.25 mg film-coated tablet, 30, blister pack 175924 874691000168106 Beprol 1.25 mg film-coated tablet, 30 874661000168104 Beprol 1.25 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 46791011000036109 bisoprolol fumarate 1.25 mg tablet, 30 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +50678011000036102 Betachek diagnostic strip, 50, bottle 33714 49702011000036107 Betachek diagnostic strip, 50 48830011000036100 Betachek diagnostic strip 48373011000036107 Betachek 48373011000036107 Betachek 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1028841000168106 Asartan 8 mg uncoated tablet, 28, blister pack 195378 1028831000168102 Asartan 8 mg uncoated tablet, 28 1028821000168100 Asartan 8 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 904771000168102 candesartan cilexetil 8 mg tablet, 28 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +82324011000036106 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 144632 82146011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 82018011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 71790011000036108 sodium chloride 0.9% (2.25 g/250 mL) injection, 250 mL bag 70187011000036109 sodium chloride 0.9% (2.25 g/250 mL) injection, bag 21308011000036103 sodium chloride +933229941000036103 Fenpatch 50 microgram/hour patch, 5, sachet 143895 933223741000036103 Fenpatch 50 microgram/hour patch, 5 933219831000036108 Fenpatch 50 microgram/hour patch 933218861000036106 Fenpatch 933218861000036106 Fenpatch 26650011000036103 fentanyl 50 microgram/hour patch, 5 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +848801000168107 Itraconazole (Apo) 100 mg hard capsule, 4, blister pack 244473 848791000168106 Itraconazole (Apo) 100 mg hard capsule, 4 848781000168108 Itraconazole (Apo) 100 mg hard capsule 848771000168105 Itraconazole (Apo) 848771000168105 Itraconazole (Apo) 46362011000036102 itraconazole 100 mg capsule, 4 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +862461000168103 Worm Treatment (Apohealth) 100 mg chewable tablet, 96, blister pack 229073 862451000168100 Worm Treatment (Apohealth) 100 mg chewable tablet, 96 862401000168104 Worm Treatment (Apohealth) 100 mg chewable tablet 862391000168101 Worm Treatment (Apohealth) 862391000168101 Worm Treatment (Apohealth) 63208011000036106 mebendazole 100 mg chewable tablet, 96 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +68703011000036105 Nicotinell Mint 2 mg chewing gum, 144, blister pack 126043 66694011000036106 Nicotinell Mint 2 mg chewing gum, 144 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71510011000036105 nicotine 2 mg gum, 144 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +860311000168109 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60, bottle 133806 860301000168106 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60 860251000168100 Cal-600 1.5 g (calcium 600 mg) film-coated tablet 52387011000036109 Cal-600 52387011000036109 Cal-600 860291000168105 calcium carbonate 1.5 g (calcium 600 mg) tablet, 60 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 745551000168101 calcium +923813011000036101 Sulprix 50 mg tablet, 100, blister pack 156047 923359011000036106 Sulprix 50 mg tablet, 100 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924157011000036105 amisulpride 50 mg tablet, 100 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +716271000168109 Pemzo 20 mg enteric capsule, 100, blister pack 149517 716261000168103 Pemzo 20 mg enteric capsule, 100 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716251000168100 omeprazole 20 mg enteric capsule, 100 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +866071000168101 Nezolid 600 mg/300 mL injection solution, 10 x 300 mL bags 235010 866061000168107 Nezolid 600 mg/300 mL injection solution, 10 x 300 mL bags 866031000168104 Nezolid 600 mg/300 mL injection solution, 300 mL bag 866021000168102 Nezolid 866021000168102 Nezolid 46771011000036102 linezolid 600 mg/300 mL injection, 10 x 300 mL bags 45308011000036100 linezolid 600 mg/300 mL injection, bag 44888011000036109 linezolid +1097961000168106 Aurozapine 15 mg film-coated tablet, 30, blister pack 183395 1097951000168109 Aurozapine 15 mg film-coated tablet, 30 1097941000168107 Aurozapine 15 mg film-coated tablet 15271000036109 Aurozapine 15271000036109 Aurozapine 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +69671011000036106 Nicabate Clear 14 mg/24 hours patch, 7, sachet 81034 67470011000036105 Nicabate Clear 14 mg/24 hours patch, 7 65675011000036102 Nicabate Clear 14 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 27925011000036106 nicotine 14 mg/24 hours patch, 7 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +44647011000036106 Ranoxyl 150 mg film-coated tablet, 60, bottle 90519 13856011000036100 Ranoxyl 150 mg film-coated tablet, 60 7143011000036107 Ranoxyl 150 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +18826011000036103 Resprim uncoated tablet, 10, bottle 17667 12146011000036103 Resprim uncoated tablet, 10 4941011000036103 Resprim uncoated tablet 2681000168109 Resprim 2681000168109 Resprim 26946011000036101 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet, 10 22321011000036103 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +1101571000168107 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 60, blister pack 286356 1101561000168101 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 60 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 63288011000036107 cetirizine hydrochloride 10 mg tablet, 60 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +38681000036107 Escital 15 mg film-coated tablet, 100, bottle 165865 35051000036104 Escital 15 mg film-coated tablet, 100 32381000036101 Escital 15 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +922003011000036106 Primacin 7.5 mg uncoated tablet, 56, tube 63856 921561011000036107 Primacin 7.5 mg uncoated tablet, 56 40185011000036109 Primacin 7.5 mg uncoated tablet 39775011000036108 Primacin 39775011000036108 Primacin 922676011000036103 primaquine 7.5 mg tablet, 56 45221011000036107 primaquine 7.5 mg tablet 44963011000036109 primaquine +798361000168109 Acimax 10 mg enteric tablet, 5, blister pack 67304 798351000168107 Acimax 10 mg enteric tablet, 5 798331000168101 Acimax 10 mg enteric tablet 3241011000036101 Acimax 3241011000036101 Acimax 798341000168105 omeprazole 10 mg enteric tablet, 5 22868011000036102 omeprazole 10 mg enteric tablet 21676011000036101 omeprazole +700029751000036107 Norinyl-1 21 Day uncoated tablet, 21, blister pack 12989011000036100 Norinyl-1 21 Day uncoated tablet, 21 6277011000036100 Norinyl-1 21 Day uncoated tablet 700015271000036100 Norinyl-1 21 Day 700015271000036100 Norinyl-1 21 Day 28351011000036105 norethisterone 1 mg + mestranol 50 microgram tablet, 21 22832011000036109 norethisterone 1 mg + mestranol 50 microgram tablet 21651011000036108 norethisterone + mestranol +1046821000168103 Tramadol (IPCA) 50 mg hard capsule, 20, blister pack 188377 1046811000168105 Tramadol (IPCA) 50 mg hard capsule, 20 1046801000168107 Tramadol (IPCA) 50 mg hard capsule 1046751000168101 Tramadol (IPCA) 1046751000168101 Tramadol (IPCA) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +38691000036109 Escital 15 mg film-coated tablet, 30, bottle 165865 35061000036101 Escital 15 mg film-coated tablet, 30 32381000036101 Escital 15 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +694641000168102 Sildaccord 50 mg film-coated tablet, 4, blister pack 188695 694631000168106 Sildaccord 50 mg film-coated tablet, 4 694621000168108 Sildaccord 50 mg film-coated tablet 694611000168101 Sildaccord 694611000168101 Sildaccord 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +969041000168109 Pregabalin (DRLA) 300 mg hard capsule, 20, blister pack 263074 969031000168100 Pregabalin (DRLA) 300 mg hard capsule, 20 969001000168107 Pregabalin (DRLA) 300 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +34692011000036104 Salbutamol (Sandoz) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 140694 34276011000036105 Salbutamol (Sandoz) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 34004011000036103 Salbutamol (Sandoz) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33947011000036105 Salbutamol (Sandoz) 33947011000036105 Salbutamol (Sandoz) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +19340011000036104 Roaccutane 20 mg soft capsule, 60, blister pack 50839 12628011000036100 Roaccutane 20 mg soft capsule, 60 4492011000036100 Roaccutane 20 mg soft capsule 3266011000036100 Roaccutane 3266011000036100 Roaccutane 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +1029561000168102 Aten 25 mg film-coated tablet, 28, blister pack 197714 1029551000168104 Aten 25 mg film-coated tablet, 28 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029541000168101 atenolol 25 mg tablet, 28 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +20805011000036102 Lisinopril (Hexal) 5 mg uncoated tablet, 30, bottle 91385 13970011000036105 Lisinopril (Hexal) 5 mg uncoated tablet, 30 7256011000036101 Lisinopril (Hexal) 5 mg uncoated tablet 3611011000036109 Lisinopril (Hexal) 3611011000036109 Lisinopril (Hexal) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +60770011000036105 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 200 mL, bottle 54133 56728011000036101 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 200 mL 54051011000036100 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 5 mL 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 63532011000036106 bromhexine hydrochloride 4 mg/5 mL oral liquid, 200 mL 62004011000036102 bromhexine hydrochloride 4 mg/5 mL oral liquid 61780011000036106 bromhexine +85014011000036104 Clopidogrel (Chemmart) 75 mg film-coated tablet, 28, blister pack 129643 84881011000036109 Clopidogrel (Chemmart) 75 mg film-coated tablet, 28 84779011000036104 Clopidogrel (Chemmart) 75 mg film-coated tablet 84752011000036107 Clopidogrel (Chemmart) 84752011000036107 Clopidogrel (Chemmart) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1033171000168100 Ramipril (Apotex) 10 mg capsule, 30, bottle 179023 1033101000168105 Ramipril (Apotex) 10 mg capsule, 30 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +823561000168101 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 0.8 mL syringe 221720 823551000168103 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 0.8 mL syringe 823531000168109 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 0.8 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823541000168100 enoxaparin sodium 80 mg/0.8 mL injection, 0.8 mL syringe 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +933215251000036104 Tronz 8 mg film-coated tablet, 6, blister pack 163437 933204201000036104 Tronz 8 mg film-coated tablet, 6 933196341000036103 Tronz 8 mg film-coated tablet 933193581000036105 Tronz 933193581000036105 Tronz 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +761671000168103 Codapane Xtra uncoated tablet, 10, blister pack 199680 761661000168109 Codapane Xtra uncoated tablet, 10 761641000168105 Codapane Xtra uncoated tablet 761631000168101 Codapane Xtra 761631000168101 Codapane Xtra 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +86882011000036107 Favic 250 mg film-coated tablet, 21, blister pack 159611 86764011000036104 Favic 250 mg film-coated tablet, 21 86639011000036101 Favic 250 mg film-coated tablet 86581011000036100 Favic 86581011000036100 Favic 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +694801000168103 Sildenafil (Sandoz) 50 mg uncoated tablet, 4, blister pack 148567 694791000168104 Sildenafil (Sandoz) 50 mg uncoated tablet, 4 694781000168102 Sildenafil (Sandoz) 50 mg uncoated tablet 694771000168100 Sildenafil (Sandoz) 694771000168100 Sildenafil (Sandoz) 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +960381000168106 Ciram 20 mg film-coated tablet, 500, bottle 158859 960371000168108 Ciram 20 mg film-coated tablet, 500 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203261000036103 citalopram 20 mg tablet, 500 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +60290011000036105 Toothache Drops (Nyal) solution, 6 mL, bottle 13659 56249011000036104 Toothache Drops (Nyal) solution, 6 mL 53850011000036106 Toothache Drops (Nyal) solution 60811000168103 Toothache Drops (Nyal) 60811000168103 Toothache Drops (Nyal) 63263011000036100 ethanol 22.5% + phenol 10% + benzocaine 5% solution, 6 mL 61905011000036105 ethanol 22.5% + phenol 10% + benzocaine 5% solution 61736011000036100 ethanol + phenol + benzocaine +724861000168104 MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 724851000168101 MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 724841000168103 MSUD Cooler 15 Red oral liquid solution, 130 mL pouch 43651000168100 MSUD Cooler 15 43651000168100 MSUD Cooler 15 724021000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL pouches 724001000168109 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL pouch 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +19237011000036106 Mixtard 50/50 injection suspension, 1 x 10 mL vial 47439 12528011000036106 Mixtard 50/50 injection suspension, 1 x 10 mL vial 4554011000036106 Mixtard 50/50 injection suspension, 10 mL vial 57421000168102 Mixtard 50/50 57421000168102 Mixtard 50/50 27175011000036107 insulin neutral human 50 units/mL + insulin isophane human 50 units/mL injection, 1 x 10 mL vial 22537011000036107 insulin neutral human 50 units/mL + insulin isophane human 50 units/mL injection, vial 33639011000036103 insulin isophane human + insulin neutral human +60016011000036101 Codral Nightime Cold and Flu film-coated tablet, 24, blister pack 123363 55978011000036108 Codral Nightime Cold and Flu film-coated tablet, 24 53745011000036102 Codral Nightime Cold and Flu film-coated tablet 60091000168104 Codral Nightime Cold and Flu 60091000168104 Codral Nightime Cold and Flu 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +960361000168102 Ciram 20 mg film-coated tablet, 250, bottle 158859 960351000168104 Ciram 20 mg film-coated tablet, 250 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 46709011000036105 citalopram 20 mg tablet, 250 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +81611000036101 Anastrozole (Pharmacy Choice) 1 mg film-coated tablet, 30, blister pack 168949 80031000036108 Anastrozole (Pharmacy Choice) 1 mg film-coated tablet, 30 78821000036105 Anastrozole (Pharmacy Choice) 1 mg film-coated tablet 77741000036109 Anastrozole (Pharmacy Choice) 77741000036109 Anastrozole (Pharmacy Choice) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +59776011000036106 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 12, blister pack 100402 55634011000036102 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 12 53721011000036102 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet 10731000168102 Paracetamol Minitab (Pharmacy Health) 10731000168102 Paracetamol Minitab (Pharmacy Health) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +866111000168108 Paracetamol Children's 1 to 5 Years (Apohealth) 120 mg/5 mL oral liquid solution, 100 mL, bottle 227874 866101000168105 Paracetamol Children's 1 to 5 Years (Apohealth) 120 mg/5 mL oral liquid solution, 100 mL 866091000168100 Paracetamol Children's 1 to 5 Years (Apohealth) 120 mg/5 mL oral liquid solution, 5 mL 866081000168103 Paracetamol Children's 1 to 5 Years (Apohealth) 866081000168103 Paracetamol Children's 1 to 5 Years (Apohealth) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1093781000168105 Low Dose Aspirin (Coles) 100 mg enteric tablet, 28, blister pack 281316 1093771000168107 Low Dose Aspirin (Coles) 100 mg enteric tablet, 28 1093761000168101 Low Dose Aspirin (Coles) 100 mg enteric tablet 1093751000168103 Low Dose Aspirin (Coles) 1093751000168103 Low Dose Aspirin (Coles) 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +12831000036103 Olanzapine (Terry White Chemists) 7.5 mg film-coated tablet, 28, blister pack 158991 6981000036105 Olanzapine (Terry White Chemists) 7.5 mg film-coated tablet, 28 1711000036108 Olanzapine (Terry White Chemists) 7.5 mg film-coated tablet 15211000168105 Olanzapine (Terry White Chemists) 15211000168105 Olanzapine (Terry White Chemists) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +853871000168109 Telmisartan (Alkem) 40 mg uncoated tablet, 10, blister pack 211904 853861000168103 Telmisartan (Alkem) 40 mg uncoated tablet, 10 853821000168108 Telmisartan (Alkem) 40 mg uncoated tablet 853811000168101 Telmisartan (Alkem) 853811000168101 Telmisartan (Alkem) 853851000168100 telmisartan 40 mg tablet, 10 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +60804011000036108 Imodium Caplet 2 mg uncoated tablet, 6, blister pack 56001 56760011000036106 Imodium Caplet 2 mg uncoated tablet, 6 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63823011000036100 loperamide hydrochloride 2 mg tablet, 6 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +130921000036108 Montelukast (Terry White Chemists) 5 mg chewable tablet, 28, blister pack 179109 127851000036105 Montelukast (Terry White Chemists) 5 mg chewable tablet, 28 124531000036106 Montelukast (Terry White Chemists) 5 mg chewable tablet 123801000036104 Montelukast (Terry White Chemists) 123801000036104 Montelukast (Terry White Chemists) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +18295011000036107 Lipidil 48 mg tablet, 60, blister pack 118642 11585011000036107 Lipidil 48 mg tablet, 60 4631011000036103 Lipidil 48 mg tablet 4138011000036106 Lipidil 4138011000036106 Lipidil 26701011000036108 fenofibrate 48 mg tablet, 60 22096011000036102 fenofibrate 48 mg tablet 21417011000036105 fenofibrate +925265011000036102 Venfax SR 150 mg modified release capsule, 28, blister pack 160295 924802011000036108 Venfax SR 150 mg modified release capsule, 28 924496011000036100 Venfax SR 150 mg modified release capsule 14411000168107 Venfax SR 14411000168107 Venfax SR 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +61181011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 24, bottle 75200 57407011000036103 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 24 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +50301011000036107 Risperidone (Apo) 1 mg film-coated tablet, 60, bottle 127609 49548011000036101 Risperidone (Apo) 1 mg film-coated tablet, 60 48757011000036101 Risperidone (Apo) 1 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1118911000168104 Duratocin 100 microgram/mL injection solution, 5 x 1 mL vials 233671 1118901000168102 Duratocin 100 microgram/mL injection solution, 5 x 1 mL vials 1118881000168104 Duratocin 100 microgram/mL injection solution, vial 39712011000036106 Duratocin 39712011000036106 Duratocin 1118891000168101 carbetocin 100 microgram/mL injection, 5 x 1 mL vials 1118871000168102 carbetocin 100 microgram/mL injection, vial 44965011000036105 carbetocin +858121000168105 Emexlon 10 mg film-coated tablet, 30, blister pack 229659 858111000168103 Emexlon 10 mg film-coated tablet, 30 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 671881000168100 metoclopramide hydrochloride 10 mg tablet, 30 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +891881000168101 Betastine 16 mg uncoated tablet, 10, blister pack 212078 891871000168104 Betastine 16 mg uncoated tablet, 10 891861000168105 Betastine 16 mg uncoated tablet 891851000168108 Betastine 891851000168108 Betastine 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1102391000168106 Tranexamic Acid (SCP) 500 mg film-coated tablet, 100, bottle 272730 1102321000168109 Tranexamic Acid (SCP) 500 mg film-coated tablet, 100 1102311000168102 Tranexamic Acid (SCP) 500 mg film-coated tablet 1102271000168102 Tranexamic Acid (SCP) 1102271000168102 Tranexamic Acid (SCP) 26862011000036101 tranexamic acid 500 mg tablet, 100 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +182081000036104 Bisacodyl (Fresenius Kabi) 10 mg suppository, 1, blister pack 214831000168109 Bisacodyl (Fresenius Kabi) 10 mg suppository, 1 85389011000036102 Bisacodyl (Fresenius Kabi) 10 mg suppository 85273011000036102 Bisacodyl (Fresenius Kabi) 85273011000036102 Bisacodyl (Fresenius Kabi) 214791000168103 bisacodyl 10 mg suppository, 1 22506011000036101 bisacodyl 10 mg suppository 21264011000036101 bisacodyl +43910011000036104 Trandolapril (DP) 500 microgram hard capsule, 28, blister pack 135957 41402011000036108 Trandolapril (DP) 500 microgram hard capsule, 28 39941011000036104 Trandolapril (DP) 500 microgram hard capsule 39661011000036107 Trandolapril (DP) 39661011000036107 Trandolapril (DP) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +737781000168105 Carvedilol (Auro) 12.5 mg film-coated tablet, 30, blister pack 174791 737771000168107 Carvedilol (Auro) 12.5 mg film-coated tablet, 30 737761000168101 Carvedilol (Auro) 12.5 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 81578011000036101 carvedilol 12.5 mg tablet, 30 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +77271000036109 Zatamil 0.1% ointment, 5 g, tube 195416 76961000036109 Zatamil 0.1% ointment, 5 g 76751000036109 Zatamil 0.1% ointment 16071000168103 Zatamil 16071000168103 Zatamil 76971000036101 mometasone furoate 0.1% ointment, 5 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +20762011000036107 Eutroxsig 50 microgram uncoated tablet, 200, bottle 90765 13931011000036100 Eutroxsig 50 microgram uncoated tablet, 200 7219011000036104 Eutroxsig 50 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 28021011000036108 levothyroxine sodium 50 microgram tablet, 200 23344011000036106 levothyroxine sodium 50 microgram tablet 21577011000036109 levothyroxine +759581000168108 Opdivo 40 mg/4 mL concentrated injection, 4 mL vial 231867 759571000168105 Opdivo 40 mg/4 mL concentrated injection, 4 mL vial 759551000168101 Opdivo 40 mg/4 mL concentrated injection, 4 mL vial 759511000168102 Opdivo 759511000168102 Opdivo 759561000168104 nivolumab 40 mg/4 mL injection, 4 mL vial 759541000168103 nivolumab 40 mg/4 mL injection, vial 759531000168107 nivolumab +61558011000036101 Dry Cough Mixture (Chemmart) oral liquid solution, 100 mL, bottle 94135 57480011000036103 Dry Cough Mixture (Chemmart) oral liquid solution, 100 mL 54319011000036106 Dry Cough Mixture (Chemmart) oral liquid solution, 5 mL 56261000168108 Dry Cough Mixture (Chemmart) 56261000168108 Dry Cough Mixture (Chemmart) 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +38451000036103 Escilupin 10 mg film-coated tablet, 200, bottle 165851 34781000036108 Escilupin 10 mg film-coated tablet, 200 33161000036101 Escilupin 10 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +933247221000036106 Escitalopram (GA) 10 mg film-coated tablet, 28, blister pack 165430 933243611000036108 Escitalopram (GA) 10 mg film-coated tablet, 28 933241551000036109 Escitalopram (GA) 10 mg film-coated tablet 933240861000036100 Escitalopram (GA) 933240861000036100 Escitalopram (GA) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1054681000168105 Oxycone 50 mg/mL injection solution, 5 x 1 mL ampoules 279329 1054671000168107 Oxycone 50 mg/mL injection solution, 5 x 1 mL ampoules 1054661000168101 Oxycone 50 mg/mL injection solution, ampoule 1049161000168107 Oxycone 1049161000168107 Oxycone 929214011000036105 oxycodone hydrochloride 50 mg/mL injection, 5 x 1 mL ampoules 929150011000036108 oxycodone hydrochloride 50 mg/mL injection, ampoule 21259011000036105 oxycodone +933215091000036101 Denpax 100 microgram/hour patch, 5, sachet 163067 933204131000036102 Denpax 100 microgram/hour patch, 5 933196301000036101 Denpax 100 microgram/hour patch 933193221000036107 Denpax 933193221000036107 Denpax 26652011000036104 fentanyl 100 microgram/hour patch, 5 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +968951000168102 Pregabalin (DRLA) 25 mg hard capsule, 20, blister pack 263089 968941000168104 Pregabalin (DRLA) 25 mg hard capsule, 20 968911000168103 Pregabalin (DRLA) 25 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +797561000168104 Citalopram (A) 20 mg film-coated tablet, 1000, bottle 158882 797551000168101 Citalopram (A) 20 mg film-coated tablet, 1000 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 933203211000036100 citalopram 20 mg tablet, 1000 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +18269011000036107 Karvezide 300/12.5 film-coated tablet, 30, blister pack 101833 11240011000036102 Karvezide 300/12.5 film-coated tablet, 30 4627011000036108 Karvezide 300/12.5 film-coated tablet 16991000168103 Karvezide 300/12.5 16991000168103 Karvezide 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1028921000168108 Period Pain Relief (Blooms The Chemist) 275 mg film-coated tablet, 24, blister pack 135107 1028911000168101 Period Pain Relief (Blooms The Chemist) 275 mg film-coated tablet, 24 1028881000168101 Period Pain Relief (Blooms The Chemist) 275 mg film-coated tablet 1028871000168104 Period Pain Relief (Blooms The Chemist) 1028871000168104 Period Pain Relief (Blooms The Chemist) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +894071000168108 Methotrexate (Accord) 1 g/10 mL injection solution, 10 mL vial 213737 894061000168102 Methotrexate (Accord) 1 g/10 mL injection solution, 10 mL vial 894051000168104 Methotrexate (Accord) 1 g/10 mL injection solution, 10 mL vial 894041000168101 Methotrexate (Accord) 894041000168101 Methotrexate (Accord) 28266011000036102 methotrexate 1 g/10 mL injection, 10 mL vial 23580011000036105 methotrexate 1 g/10 mL injection, vial 21342011000036105 methotrexate +707731000168100 Copaxone 40 mg/mL injection solution, 12 x 1 mL syringes 218615 707721000168103 Copaxone 40 mg/mL injection solution, 12 x 1 mL syringes 707701000168107 Copaxone 40 mg/mL injection solution, syringe 2936011000036101 Copaxone 2936011000036101 Copaxone 707711000168105 glatiramer acetate 40 mg/mL injection, 12 x 1 mL syringes 707691000168107 glatiramer acetate 40 mg/mL injection, syringe 21783011000036106 glatiramer acetate +19614011000036108 Keflor 125 mg/5 mL powder for oral liquid, 100 mL, bottle 58651 12883011000036106 Keflor 125 mg/5 mL powder for oral liquid, 100 mL 6174011000036109 Keflor 125 mg/5 mL powder for oral liquid, 5 mL 52641000168108 Keflor 52641000168108 Keflor 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +44424011000036101 Agrylin 500 microgram capsule, 100, bottle 71752 41883011000036107 Agrylin 500 microgram capsule, 100 40240011000036105 Agrylin 500 microgram capsule 39581011000036104 Agrylin 39581011000036104 Agrylin 46686011000036108 anagrelide hydrochloride 500 microgram capsule, 100 45265011000036104 anagrelide hydrochloride 500 microgram capsule 44895011000036104 anagrelide +958351000168105 Zostavax 19 400 PFU powder for injection, 1 vial 130225 958341000168108 Zostavax 19 400 PFU powder for injection, 1 vial 831791000168100 Zostavax (varicella-zoster live vaccine) powder for injection, vial 73774011000036102 Zostavax 73774011000036102 Zostavax 958331000168104 varicella-zoster live vaccine 19 400 PFU injection, 1 vial 831781000168103 varicella-zoster live vaccine 19 400 PFU injection, vial 830851000168105 varicella-zoster live vaccine +1046741000168103 Buprenorphine (SZ) 15 microgram/hour patch, 1, sachet 269672 1046731000168107 Buprenorphine (SZ) 15 microgram/hour patch, 1 1046721000168109 Buprenorphine (SZ) 15 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046301000168101 buprenorphine 15 microgram/hour patch, 1 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +44664011000036105 Abilify 5 mg uncoated tablet, 90, blister pack 90925 42116011000036105 Abilify 5 mg uncoated tablet, 90 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46878011000036109 aripiprazole 5 mg tablet, 90 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +933230101000036106 Prezista 400 mg film-coated tablet, 60, bottle 153627 933223881000036102 Prezista 400 mg film-coated tablet, 60 933219791000036100 Prezista 400 mg film-coated tablet 32180011000036106 Prezista 32180011000036106 Prezista 933223891000036100 darunavir 400 mg tablet, 60 933219801000036101 darunavir 400 mg tablet 32622011000036101 darunavir +43713011000036101 Simvabell 10 mg film-coated tablet, 300, bottle 100885 41104011000036103 Simvabell 10 mg film-coated tablet, 300 4684011000036107 Simvabell 10 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46089011000036106 simvastatin 10 mg tablet, 300 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +38771000036100 Escitalup 15 mg film-coated tablet, 100, bottle 165871 35141000036101 Escitalup 15 mg film-coated tablet, 100 33121000036105 Escitalup 15 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +768251000168100 Akynzeo hard capsule, 1, blister pack 222237 768241000168102 Akynzeo hard capsule, 1 768221000168108 Akynzeo hard capsule 768181000168100 Akynzeo 768181000168100 Akynzeo 768231000168106 netupitant 300 mg + palonosetron 500 microgram capsule, 1 768211000168101 netupitant 300 mg + palonosetron 500 microgram capsule 768201000168104 netupitant + palonosetron +1041851000168103 Atorvastatin (AS) 20 mg film-coated tablet, 30, blister pack 178540 1041841000168100 Atorvastatin (AS) 20 mg film-coated tablet, 30 1041791000168103 Atorvastatin (AS) 20 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1085071000168107 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.45% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 228340 1085061000168101 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.45% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 1085041000168100 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.45% and Glucose 5% (Baxter) intravenous infusion injection, bag 1085021000168106 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.45% and Glucose 5% (Baxter) 1085021000168106 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.45% and Glucose 5% (Baxter) 1085051000168103 potassium chloride 1.49 g (potassium 20 mmol)/L + sodium chloride 0.45% (4.5 g/L) + glucose 5% (50 g/L) injection, 1 L bag 1085031000168109 potassium chloride 1.49 g (potassium 20 mmol)/L + sodium chloride 0.45% (4.5 g/L) + glucose 5% (50 g/L) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +18843011000036107 Progout 300 mg tablet, 60, bottle 17708 12155011000036108 Progout 300 mg tablet, 60 5087011000036100 Progout 300 mg tablet 4173011000036104 Progout 4173011000036104 Progout 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +961021000168102 Carduran 2 mg uncoated tablet, 10, blister pack 32637 961011000168109 Carduran 2 mg uncoated tablet, 10 960991000168105 Carduran 2 mg uncoated tablet 960961000168103 Carduran 960961000168103 Carduran 961001000168106 doxazosin 2 mg tablet, 10 960981000168107 doxazosin 2 mg tablet 960971000168109 doxazosin +797721000168101 Citalopram (A) 20 mg film-coated tablet, 84, blister pack 234595 797471000168106 Citalopram (A) 20 mg film-coated tablet, 84 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1106001000168101 Zolpidem (Apo) 10 mg film-coated tablet, 7, blister pack 127174 923571000168102 Zolpidem (Apo) 10 mg film-coated tablet, 7 734971000168103 Zolpidem (Apo) 10 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +130601000036108 Vimovo modified release tablet, 60, bottle 170577 127581000036100 Vimovo modified release tablet, 60 124621000036105 Vimovo modified release tablet 123691000036106 Vimovo 123691000036106 Vimovo 127591000036103 naproxen 500 mg + esomeprazole 20 mg modified release tablet, 60 124631000036107 naproxen 500 mg + esomeprazole 20 mg modified release tablet 132071000036107 naproxen + esomeprazole +809031000168108 Myconail Anti-Fungal Nail Laquer Kit 5% application, 2.5 mL, bottle 237395 809021000168105 Myconail Anti-Fungal Nail Laquer Kit 5% application, 2.5 mL 809011000168103 Myconail Anti-Fungal Nail Laquer Kit 5% application 809001000168101 Myconail Anti-Fungal Nail Laquer Kit 809001000168101 Myconail Anti-Fungal Nail Laquer Kit 776941000168102 amorolfine 5% application, 2.5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +730801000168108 Chloramphenicol (Apo) 0.5% eye drops solution, 10 mL, bottle 222547 730791000168107 Chloramphenicol (Apo) 0.5% eye drops solution, 10 mL 730781000168109 Chloramphenicol (Apo) 0.5% eye drops solution 730771000168106 Chloramphenicol (Apo) 730771000168106 Chloramphenicol (Apo) 27386011000036104 chloramphenicol 0.5% eye drops, 10 mL 22735011000036103 chloramphenicol 0.5% eye drops 21330011000036107 chloramphenicol +920754011000036107 Captopril (Sandoz) 12.5 mg film-coated tablet, 90, bottle 60100 920438011000036107 Captopril (Sandoz) 12.5 mg film-coated tablet, 90 920179011000036103 Captopril (Sandoz) 12.5 mg film-coated tablet 920077011000036102 Captopril (Sandoz) 920077011000036102 Captopril (Sandoz) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +116571000036108 Rosuvastatin (Sandoz) 10 mg film-coated tablet, 30, blister pack 183595 114861000036106 Rosuvastatin (Sandoz) 10 mg film-coated tablet, 30 112901000036106 Rosuvastatin (Sandoz) 10 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +853231000168105 Aliquen 150 mg film-coated tablet, 20, blister pack 204821 853221000168107 Aliquen 150 mg film-coated tablet, 20 853181000168104 Aliquen 150 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 853211000168100 quetiapine 150 mg tablet, 20 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +963171000168104 Arflox 750 mg film-coated tablet, 10, bottle 92369 963001000168105 Arflox 750 mg film-coated tablet, 10 962951000168104 Arflox 750 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +934271000168104 Centevo 175/43.75/200 mg film-coated tablet, 60, bottle 238858 934261000168105 Centevo 175/43.75/200 mg film-coated tablet, 60 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934251000168108 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 60 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +860451000168104 Amisulpride (Winthrop) 50 mg uncoated tablet, 5, blister pack 125164 860441000168101 Amisulpride (Winthrop) 50 mg uncoated tablet, 5 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 860431000168105 amisulpride 50 mg tablet, 5 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +680751000168101 Vedafil 100 mg film-coated tablet, 12, blister pack 162806 680741000168103 Vedafil 100 mg film-coated tablet, 12 680711000168102 Vedafil 100 mg film-coated tablet 680671000168101 Vedafil 680671000168101 Vedafil 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +943981000168105 Medformin-1000 1 g film-coated tablet, 90, bottle 100291 943971000168107 Medformin-1000 1 g film-coated tablet, 90 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +81058011000036100 Iscover 300 mg film-coated tablet, 112, blister pack 151280 80567011000036101 Iscover 300 mg film-coated tablet, 112 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81646011000036106 clopidogrel 300 mg tablet, 112 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +20771011000036106 Diltiazem Hydrochloride CD (Chemmart) 180 mg modified release capsule, 30, bottle 90919 13940011000036106 Diltiazem Hydrochloride CD (Chemmart) 180 mg modified release capsule, 30 7228011000036101 Diltiazem Hydrochloride CD (Chemmart) 180 mg modified release capsule 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +926717011000036103 Perindopril Erbumine (Lupin) 4 mg uncoated tablet, 30, blister pack 125449 926128011000036102 Perindopril Erbumine (Lupin) 4 mg uncoated tablet, 30 925623011000036108 Perindopril Erbumine (Lupin) 4 mg uncoated tablet 925563011000036107 Perindopril Erbumine (Lupin) 925563011000036107 Perindopril Erbumine (Lupin) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +1040571000168102 Alu-Tab 600 mg uncoated tablet, 100, blister pack 213555 1040561000168108 Alu-Tab 600 mg uncoated tablet, 100 1040551000168106 Alu-Tab 600 mg uncoated tablet 65168011000036104 Alu-Tab 65168011000036104 Alu-Tab 71892011000036109 aluminium hydroxide 600 mg tablet, 100 70235011000036106 aluminium hydroxide 600 mg tablet 69849011000036102 aluminium hydroxide +61593011000036100 Decongestant and Expectorant Mixture (Amcal) oral liquid solution, 100 mL, bottle 95758 57515011000036101 Decongestant and Expectorant Mixture (Amcal) oral liquid solution, 100 mL 54333011000036102 Decongestant and Expectorant Mixture (Amcal) oral liquid solution, 10 mL 45541000168102 Decongestant and Expectorant Mixture (Amcal) 45541000168102 Decongestant and Expectorant Mixture (Amcal) 63902011000036109 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 100 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62100011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 100 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61778011000036103 bromhexine + guaifenesin + pseudoephedrine +39386011000036107 Tryzan 2.5 mg uncoated tablet, 10, blister pack 129916 39270011000036106 Tryzan 2.5 mg uncoated tablet, 10 39210011000036103 Tryzan 2.5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39470011000036107 ramipril 2.5 mg tablet, 10 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +20486011000036103 Diclofenac Sodium (GenRx) 50 mg enteric tablet, 50, bottle 78433 13686011000036100 Diclofenac Sodium (GenRx) 50 mg enteric tablet, 50 6969011000036100 Diclofenac Sodium (GenRx) 50 mg enteric tablet 2918011000036106 Diclofenac Sodium (GenRx) 2918011000036106 Diclofenac Sodium (GenRx) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +771541000168104 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 179143 771531000168108 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 771521000168105 Drospirenone/Ethinyloestradiol (Lupin) (inert substance) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771541000168104 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 179143 771531000168108 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 771511000168103 Drospirenone/Ethinyloestradiol (Lupin) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +806061000168106 Uptravi 1 mg film-coated tablet, 60, blister pack 234162 806051000168109 Uptravi 1 mg film-coated tablet, 60 806031000168103 Uptravi 1 mg film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 806041000168107 selexipag 1 mg tablet, 60 806021000168101 selexipag 1 mg tablet 805661000168108 selexipag +18579011000036105 Nupentin 100 mg hard capsule, 100, blister pack 101694 11227011000036103 Nupentin 100 mg hard capsule, 100 5950011000036101 Nupentin 100 mg hard capsule 1181000168106 Nupentin 1181000168106 Nupentin 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +24431000036102 Oxaliccord 100 mg/20 mL concentrated injection, 20 mL vial 169423 22471000036107 Oxaliccord 100 mg/20 mL concentrated injection, 20 mL vial 20451000036103 Oxaliccord 100 mg/20 mL concentrated injection, 20 mL vial 19891000036109 Oxaliccord 19891000036109 Oxaliccord 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +1097071000168104 Binosto 70 mg effervescent tablet, 1, blister pack 177983 1097061000168105 Binosto 70 mg effervescent tablet, 1 1097041000168106 Binosto 70 mg effervescent tablet 1096991000168102 Binosto 1096991000168102 Binosto 1097051000168108 alendronate 70 mg effervescent tablet, 1 1097031000168102 alendronate 70 mg effervescent tablet 21736011000036109 alendronate +693361000168107 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 49293 693351000168105 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 693331000168104 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 mL ampoule 693201000168104 Lignocaine (Pfizer) 693201000168104 Lignocaine (Pfizer) 693341000168108 lidocaine (lignocaine) hydrochloride monohydrate 2% (100 mg/5 mL) injection, 5 x 5 mL ampoules 693321000168102 lidocaine (lignocaine) hydrochloride monohydrate 2% (100 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +18792011000036109 Clarithro 250 mg film-coated tablet, 14, bottle 117202 11563011000036108 Clarithro 250 mg film-coated tablet, 14 4718011000036108 Clarithro 250 mg film-coated tablet 4200011000036100 Clarithro 4200011000036100 Clarithro 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +851861000168104 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 238311 851851000168101 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack 7501011000036105 Eligard 3 Month (inert substance) diluent, syringe 851831000168107 Bi Eligard CP 3 Month 56351000168101 Eligard 3 Month 851841000168103 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [28], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +851861000168104 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 238311 851851000168101 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack 7500011000036103 Eligard 3 Month (leuprorelin acetate 22.5 mg) modified release injection, 22.5 mg syringe 851831000168107 Bi Eligard CP 3 Month 56351000168101 Eligard 3 Month 851841000168103 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [28], 1 pack 23533011000036105 leuprorelin acetate 22.5 mg modified release injection, syringe 21320011000036109 leuprorelin +851861000168104 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 238311 851851000168101 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack 851741000168109 Bicalutamide (Tolmar) 50 mg film-coated tablet 851831000168107 Bi Eligard CP 3 Month 851731000168100 Bicalutamide (Tolmar) 851841000168103 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [28], 1 pack 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +681871000168105 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet, 10, blister pack 214463 681861000168104 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet, 10 681851000168101 Pramipexole Hydrochloride (GH) 125 microgram uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 38828011000036102 pramipexole dihydrochloride monohydrate 125 microgram tablet, 10 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +34725011000036105 Methadone Hydrochloride Syrup (Orion) 3.75 mg/mL oral liquid solution, 20 mL, bottle 21180 34309011000036103 Methadone Hydrochloride Syrup (Orion) 3.75 mg/mL oral liquid solution, 20 mL 34032011000036102 Methadone Hydrochloride Syrup (Orion) 3.75 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35158011000036103 methadone hydrochloride 3.75 mg/mL oral liquid, 20 mL 34880011000036108 methadone hydrochloride 3.75 mg/mL oral liquid 21357011000036109 methadone +61063011000036104 Sinus with Antihistamine (Soul Pattinson) uncoated tablet, 24, blister pack 68208 57006011000036107 Sinus with Antihistamine (Soul Pattinson) uncoated tablet, 24 54156011000036102 Sinus with Antihistamine (Soul Pattinson) uncoated tablet 53122011000036103 Sinus with Antihistamine (Soul Pattinson) 53122011000036103 Sinus with Antihistamine (Soul Pattinson) 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +69293011000036101 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 72 x 50 mL bags 19503 67093011000036104 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 72 x 50 mL bags 65521011000036105 Glucose (Baxter) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71661011000036109 glucose 5% (2.5 g/50 mL) injection, 72 x 50 mL bags 70112011000036109 glucose 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +84278011000036101 Nordip 10 mg uncoated tablet, 14, blister pack 133146 83971011000036109 Nordip 10 mg uncoated tablet, 14 83612011000036105 Nordip 10 mg uncoated tablet 83546011000036106 Nordip 83546011000036106 Nordip 84620011000036101 amlodipine 10 mg tablet, 14 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +1027561000168107 Neuroccord 25 mg hard capsule, 14, blister pack 235847 1027421000168101 Neuroccord 25 mg hard capsule, 14 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +767211000168102 Risperidone (Amneal) 2 mg film-coated tablet, 60, blister pack 159976 767201000168100 Risperidone (Amneal) 2 mg film-coated tablet, 60 767191000168103 Risperidone (Amneal) 2 mg film-coated tablet 767061000168106 Risperidone (Amneal) 767061000168106 Risperidone (Amneal) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +79652011000036103 Epiduo 0.1% / 2.5% gel, 60 g, tube 143869 79476011000036104 Epiduo 0.1% / 2.5% gel, 60 g 79355011000036100 Epiduo 0.1% / 2.5% gel 33721000168102 Epiduo 0.1% / 2.5% 33721000168102 Epiduo 0.1% / 2.5% 79807011000036102 adapalene 0.1% + benzoyl peroxide 2.5% gel, 60 g 79740011000036106 adapalene 0.1% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +131081000036104 Candesartan Cilexetil (GA) 32 mg uncoated tablet, 30, blister pack 195452 128311000036103 Candesartan Cilexetil (GA) 32 mg uncoated tablet, 30 124881000036107 Candesartan Cilexetil (GA) 32 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +13151000036105 Quetiapine (RBX) 25 mg film-coated tablet, 60, blister pack 166434 8251000036109 Quetiapine (RBX) 25 mg film-coated tablet, 60 3481000036108 Quetiapine (RBX) 25 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +933238771000036100 Dobutrex 250 mg powder for injection, 1 vial 14628 933236221000036109 Dobutrex 250 mg powder for injection, 1 vial 933234511000036108 Dobutrex 250 mg powder for injection, 250 mg vial 36000011000036102 Dobutrex 36000011000036102 Dobutrex 933236241000036101 dobutamine 250 mg injection, 1 vial 933234521000036101 dobutamine 250 mg injection, vial 37709011000036107 dobutamine +69028011000036107 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 7 sachets 140597 66830011000036103 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 7 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71444011000036100 paracetamol 1 g powder for oral liquid, 7 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +69535011000036101 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) irrigation solution, 30 x 30 mL ampoules 57011 67335011000036108 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) irrigation solution, 30 x 30 mL ampoules 65616011000036100 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 41531000168108 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) 41531000168108 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) 71880011000036109 chlorhexidine gluconate 0.05% + cetrimide 0.5% solution, 30 x 30 mL ampoules 70229011000036106 chlorhexidine gluconate 0.05% + cetrimide 0.5% solution, ampoule 69756011000036105 chlorhexidine + cetrimide +60170011000036101 Exforge 5/160 film-coated tablet, 30, blister pack 130834 56129011000036104 Exforge 5/160 film-coated tablet, 30 53802011000036104 Exforge 5/160 film-coated tablet 8411000168102 Exforge 5/160 8411000168102 Exforge 5/160 63233011000036105 amlodipine 5 mg + valsartan 160 mg tablet, 30 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +1048101000168103 Bupretec 20 microgram/hour patch, 1, sachet 234733 1048091000168108 Bupretec 20 microgram/hour patch, 1 1048081000168105 Bupretec 20 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1046541000168107 buprenorphine 20 microgram/hour patch, 1 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +944021000168109 Medformin-1000 1 g film-coated tablet, 60, blister pack 100292 943951000168103 Medformin-1000 1 g film-coated tablet, 60 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1018921000168104 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 5 mL vial 190334 1018911000168106 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 5 mL vial 1018901000168108 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 5 mL vial 1018811000168100 Zoledronic Acid (Apotex) 1018811000168100 Zoledronic Acid (Apotex) 28024011000036106 zoledronic acid 4 mg/5 mL injection, 5 mL vial 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +44528011000036104 Midazolam (Sandoz) 5 mg/mL injection solution, 10 x 1 mL ampoules 78972 41981011000036100 Midazolam (Sandoz) 5 mg/mL injection solution, 10 x 1 mL ampoules 40301011000036104 Midazolam (Sandoz) 5 mg/mL injection solution, ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +19956011000036108 Dilaudid-HP 500 mg/50 mL injection solution, 50 mL vial 67359 13199011000036107 Dilaudid-HP 500 mg/50 mL injection solution, 50 mL vial 6482011000036105 Dilaudid-HP 500 mg/50 mL injection solution, 50 mL vial 1601000168105 Dilaudid-HP 1601000168105 Dilaudid-HP 27611011000036103 hydromorphone hydrochloride 500 mg/50 mL injection, 50 mL vial 22950011000036101 hydromorphone hydrochloride 500 mg/50 mL injection, vial 21480011000036107 hydromorphone +805741000168104 Uptravi 200 microgram film-coated tablet, 60, blister pack 234161 805731000168108 Uptravi 200 microgram film-coated tablet, 60 805681000168104 Uptravi 200 microgram film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 805721000168105 selexipag 200 microgram tablet, 60 805671000168102 selexipag 200 microgram tablet 805661000168108 selexipag +59758011000036108 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 96, blister pack 107036 55728011000036104 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 96 53713011000036105 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet 53160011000036105 Ibuprofen (Pharmacist Formula) 53160011000036105 Ibuprofen (Pharmacist Formula) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +37502011000036101 Pevaryl 150 mg moulded pessary, 3, strip pack 12998 36770011000036105 Pevaryl 150 mg moulded pessary, 3 36043011000036100 Pevaryl 150 mg moulded pessary 8501000168104 Pevaryl 8501000168104 Pevaryl 38670011000036106 econazole nitrate 150 mg pessary, 3 37916011000036106 econazole nitrate 150 mg pessary 37773011000036103 econazole +1014951000168101 Valaciclovir (Apotex) 500 mg film-coated tablet, 20, blister pack 158914 1014941000168103 Valaciclovir (Apotex) 500 mg film-coated tablet, 20 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +82251000036107 Rabeprazole Sodium (Pfizer) 20 mg enteric tablet, 30, bottle 189218 80231000036103 Rabeprazole Sodium (Pfizer) 20 mg enteric tablet, 30 78611000036102 Rabeprazole Sodium (Pfizer) 20 mg enteric tablet 77841000036101 Rabeprazole Sodium (Pfizer) 77841000036101 Rabeprazole Sodium (Pfizer) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +727961000168100 Ceclor CD 375 mg modified release tablet, 2, blister pack 58264 727951000168102 Ceclor CD 375 mg modified release tablet, 2 6156011000036103 Ceclor CD 375 mg modified release tablet 50291000168103 Ceclor CD 50291000168103 Ceclor CD 727941000168104 cefaclor 375 mg modified release tablet, 2 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +967441000168109 Humira 40 mg/0.4 mL injection solution, 2 x 0.4 mL injection devices 281509 967431000168100 Humira 40 mg/0.4 mL injection solution, 2 x 0.4 mL injection devices 967411000168105 Humira 40 mg/0.4 mL injection solution, 0.4 mL injection device 4142011000036107 Humira 4142011000036107 Humira 967421000168103 adalimumab 40 mg/0.4 mL injection, 2 x 0.4 mL injection devices 967401000168107 adalimumab 40 mg/0.4 mL injection, injection device 21584011000036107 adalimumab +667861000168107 Xelabine 500 mg film-coated tablet, 120, blister pack 213045 667851000168105 Xelabine 500 mg film-coated tablet, 120 667781000168107 Xelabine 500 mg film-coated tablet 667481000168100 Xelabine 667481000168100 Xelabine 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +44551011000036109 Vaniqa 11.5% cream, 30 g, tube 80167 42004011000036105 Vaniqa 11.5% cream, 30 g 40314011000036104 Vaniqa 11.5% cream 39569011000036103 Vaniqa 39569011000036103 Vaniqa 46779011000036103 eflornithine 11.5% cream, 30 g 45312011000036100 eflornithine 11.5% cream 44937011000036108 eflornithine +864791000168109 Amitriptyline (GXP) 50 mg tablet, 100, blister pack 232132 864781000168106 Amitriptyline (GXP) 50 mg tablet, 100 864731000168105 Amitriptyline (GXP) 50 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1101411000168100 Abacavir/Lamivudine (Mylan) film-coated tablet, 30, bottle 266515 1101391000168100 Abacavir/Lamivudine (Mylan) film-coated tablet, 30 1101381000168103 Abacavir/Lamivudine (Mylan) film-coated tablet 1101331000168104 Abacavir/Lamivudine (Mylan) 1101331000168104 Abacavir/Lamivudine (Mylan) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +20529011000036107 Medroxyhexal 10 mg uncoated tablet, 30, blister pack 79252 13729011000036106 Medroxyhexal 10 mg uncoated tablet, 30 7012011000036104 Medroxyhexal 10 mg uncoated tablet 3584011000036102 Medroxyhexal 3584011000036102 Medroxyhexal 27904011000036101 medroxyprogesterone acetate 10 mg tablet, 30 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +655941000168100 Montelukast (AN) 4 mg chewable tablet, 28, blister pack 184837 655931000168109 Montelukast (AN) 4 mg chewable tablet, 28 655921000168106 Montelukast (AN) 4 mg chewable tablet 655871000168102 Montelukast (AN) 655871000168102 Montelukast (AN) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +43586011000036106 Glimepiride (Sandoz) 4 mg uncoated tablet, 30, bottle 121791 11693011000036104 Glimepiride (Sandoz) 4 mg uncoated tablet, 30 5506011000036101 Glimepiride (Sandoz) 4 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +714991000168109 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g, tube 101964 714981000168106 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g 714931000168105 Anti Fungal V 6 Day (Amcal) 1% vaginal cream 39961000168107 Anti Fungal V 6 Day (Amcal) 39961000168107 Anti Fungal V 6 Day (Amcal) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +1027551000168105 Neuroccord 25 mg hard capsule, 500, bottle 235872 1027541000168108 Neuroccord 25 mg hard capsule, 500 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970451000168104 pregabalin 25 mg capsule, 500 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +834891000168107 Viagra 100 mg film-coated tablet, 12, blister pack 64436 834881000168109 Viagra 100 mg film-coated tablet, 12 6381011000036105 Viagra 100 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +1030841000168107 Atomoxetine (Genpar) 5 mg hard capsule, 56, blister pack 234851 1030831000168103 Atomoxetine (Genpar) 5 mg hard capsule, 56 1030761000168102 Atomoxetine (Genpar) 5 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 976401000168100 atomoxetine 5 mg capsule, 56 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +933043011000036108 Serenace 2 mg/mL oral liquid solution, 100 mL, bottle 10257 932844011000036104 Serenace 2 mg/mL oral liquid solution, 100 mL 932712011000036103 Serenace 2 mg/mL oral liquid solution, drop 3608011000036103 Serenace 3608011000036103 Serenace 26574011000036100 haloperidol 2 mg/mL oral liquid, 100 mL 932713011000036105 haloperidol 2 mg/mL oral liquid, drop 21443011000036108 haloperidol +20967011000036100 Eleva 50 mg film-coated tablet, 30, bottle 95582 14119011000036109 Eleva 50 mg film-coated tablet, 30 7396011000036100 Eleva 50 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +68838011000036109 Sodium Chloride (Pfizer (Perth)) 0.9% (270 mg/30 mL) irrigation solution, 30 x 30 mL ampoules 11290 66601011000036105 Sodium Chloride (Pfizer (Perth)) 0.9% (270 mg/30 mL) irrigation solution, 30 x 30 mL ampoules 65297011000036100 Sodium Chloride (Pfizer (Perth)) 0.9% (270 mg/30 mL) irrigation solution, 30 mL ampoule 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 71323011000036109 sodium chloride 0.9% (270 mg/30 mL) solution, 30 x 30 mL ampoules 69949011000036108 sodium chloride 0.9% (270 mg/30 mL) solution, ampoule 21308011000036103 sodium chloride +165691000036102 Scitropin A 10 mg/1.5 mL injection solution, 1.5 mL cartridge 162529 163801000036105 Scitropin A 10 mg/1.5 mL injection solution, 1.5 mL cartridge 162221000036109 Scitropin A 10 mg/1.5 mL injection solution, 1.5 mL cartridge 924409011000036106 Scitropin A 924409011000036106 Scitropin A 28299011000036108 somatropin 10 mg/1.5 mL injection, 1.5 mL cartridge 23613011000036108 somatropin 10 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +765281000168104 MMA/PA Anamix Junior powder for oral liquid, 30 x 18 g sachets 765271000168102 MMA/PA Anamix Junior powder for oral liquid, 30 x 18 g sachets 765251000168106 MMA/PA Anamix Junior powder for oral liquid, 18 g sachet 765061000168101 MMA/PA Anamix Junior 765061000168101 MMA/PA Anamix Junior 765261000168108 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 30 x 18 g sachets 765241000168109 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 18 g sachet 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +82360011000036109 Simvastatin (GA) 80 mg film-coated tablet, 30, blister pack 199746 82127011000036105 Simvastatin (GA) 80 mg film-coated tablet, 30 82000011000036109 Simvastatin (GA) 80 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +82360011000036109 Simvastatin (GA) 80 mg film-coated tablet, 30, blister pack 131654 82127011000036105 Simvastatin (GA) 80 mg film-coated tablet, 30 82000011000036109 Simvastatin (GA) 80 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +702021000168102 Colaxsen film-coated tablet, 30, bottle 218552 702011000168109 Colaxsen film-coated tablet, 30 702001000168106 Colaxsen film-coated tablet 701961000168102 Colaxsen 701961000168102 Colaxsen 81746011000036103 docusate sodium 50 mg + sennoside B 8 mg tablet, 30 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +60052011000036109 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 100 mL, bottle 12460 56014011000036103 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 100 mL 53758011000036105 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 5 mL 26681000168103 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 26681000168103 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +763041000168104 Oxycodone MR (Chemmart) 15 mg modified release tablet, 28, blister pack 214486 763031000168108 Oxycodone MR (Chemmart) 15 mg modified release tablet, 28 763001000168101 Oxycodone MR (Chemmart) 15 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +909861000168103 Chorit 20 mg film-coated tablet, 100, bottle 179832 909851000168100 Chorit 20 mg film-coated tablet, 100 909501000168101 Chorit 20 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890361000168109 atorvastatin 20 mg tablet, 100 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +663571000168109 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash, 3 L, bottle 11245 663561000168103 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash, 3 L 933194231000036106 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 663551000168100 chlorhexidine gluconate 0.2% mouthwash, 3 L 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +823081000168101 Gardasil injection suspension, 10 x 0.5 mL vials 124408 823071000168104 Gardasil injection suspension, 10 x 0.5 mL vials 822971000168107 Gardasil injection suspension, 0.5 mL vial 73683011000036100 Gardasil 73683011000036100 Gardasil 823061000168105 human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL vials 822961000168101 human papillomavirus quadrivalent vaccine injection, 0.5 mL vial 822951000168103 human papillomavirus quadrivalent vaccine +947311000168107 Risdone 2 mg film-coated tablet, 10, blister pack 144280 947301000168109 Risdone 2 mg film-coated tablet, 10 947221000168106 Risdone 2 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947291000168108 risperidone 2 mg tablet, 10 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +131171000036102 Candesartan Cilexetil (Stada) 4 mg uncoated tablet, 30, blister pack 195481 128271000036103 Candesartan Cilexetil (Stada) 4 mg uncoated tablet, 30 125021000036100 Candesartan Cilexetil (Stada) 4 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +44646011000036108 Ranoxyl 150 mg film-coated tablet, 360, bottle 90519 42099011000036109 Ranoxyl 150 mg film-coated tablet, 360 7143011000036107 Ranoxyl 150 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 46866011000036100 ranitidine 150 mg tablet, 360 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +938771000168103 Celecoxib (Ran) 200 mg hard capsule, 30, blister pack 212787 938761000168109 Celecoxib (Ran) 200 mg hard capsule, 30 938691000168108 Celecoxib (Ran) 200 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +847751000168100 Alfentanil (GH) 5 mg/10 mL injection solution, 10 mL ampoule 199999 847741000168102 Alfentanil (GH) 5 mg/10 mL injection solution, 10 mL ampoule 699801000168102 Alfentanil (GH) 5 mg/10 mL injection solution, 10 mL ampoule 699791000168103 Alfentanil (GH) 699791000168103 Alfentanil (GH) 847731000168106 alfentanil 5 mg/10 mL injection, 10 mL ampoule 34897011000036105 alfentanil 5 mg/10 mL injection, ampoule 34836011000036102 alfentanil +869171000168108 Pacrolim 500 microgram hard capsule, 50, blister pack 224283 869161000168102 Pacrolim 500 microgram hard capsule, 50 869131000168105 Pacrolim 500 microgram hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 749271000168105 tacrolimus 500 microgram capsule, 50 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +972971000168101 Pregabalin (Apotex) 150 mg hard capsule, 60, blister pack 267556 972961000168107 Pregabalin (Apotex) 150 mg hard capsule, 60 972891000168107 Pregabalin (Apotex) 150 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +830551000168108 Atomoxetine (Apo) 80 mg hard capsule, 7, blister pack 234807 830541000168106 Atomoxetine (Apo) 80 mg hard capsule, 7 830531000168102 Atomoxetine (Apo) 80 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +59810011000036103 Strong Pain Relief Plus (Amcal) uncoated tablet, 48, blister pack 114715 55772011000036101 Strong Pain Relief Plus (Amcal) uncoated tablet, 48 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 52867011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 48 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +82855011000036109 Pletal 100 mg uncoated tablet, 56, blister pack 140599 82764011000036100 Pletal 100 mg uncoated tablet, 56 82675011000036102 Pletal 100 mg uncoated tablet 82670011000036106 Pletal 82670011000036106 Pletal 82985011000036105 cilostazol 100 mg tablet, 56 82923011000036103 cilostazol 100 mg tablet 82918011000036102 cilostazol +105151000036103 Abisart HCT 150/12.5 film-coated tablet, 30, blister pack 176862 102171000036101 Abisart HCT 150/12.5 film-coated tablet, 30 98791000036109 Abisart HCT 150/12.5 film-coated tablet 27881000168102 Abisart HCT 150/12.5 27881000168102 Abisart HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +105151000036103 Abisart HCT 150/12.5 film-coated tablet, 30, blister pack 215942 102171000036101 Abisart HCT 150/12.5 film-coated tablet, 30 98791000036109 Abisart HCT 150/12.5 film-coated tablet 27881000168102 Abisart HCT 150/12.5 27881000168102 Abisart HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +955861000168107 Ramipril (Winthrop) 10 mg hard capsule, 14, blister pack 128854 955851000168105 Ramipril (Winthrop) 10 mg hard capsule, 14 933219401000036103 Ramipril (Winthrop) 10 mg hard capsule 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 46763011000036108 ramipril 10 mg capsule, 14 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +20146011000036107 Tilodene 250 mg film-coated tablet, 60, bottle 73686 13370011000036103 Tilodene 250 mg film-coated tablet, 60 6655011000036109 Tilodene 250 mg film-coated tablet 4163011000036106 Tilodene 4163011000036106 Tilodene 27721011000036104 ticlopidine hydrochloride 250 mg tablet, 60 23056011000036100 ticlopidine hydrochloride 250 mg tablet 21382011000036100 ticlopidine +111021000036105 Irbesartan (Stada) 150 mg film-coated tablet, 30, blister pack 192809 109301000036100 Irbesartan (Stada) 150 mg film-coated tablet, 30 107051000036107 Irbesartan (Stada) 150 mg film-coated tablet 106681000036108 Irbesartan (Stada) 106681000036108 Irbesartan (Stada) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +990101000168104 First Aid (Blooms The Chemist) cream, 50 g, tube 260392 990091000168109 First Aid (Blooms The Chemist) cream, 50 g 990081000168106 First Aid (Blooms The Chemist) cream 990071000168108 First Aid (Blooms The Chemist) 990071000168108 First Aid (Blooms The Chemist) 861331000168108 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream, 50 g 861311000168103 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +69201011000036100 Ringer's (Baxter) irrigation solution, 1 L bottle 19444 67001011000036103 Ringer's (Baxter) irrigation solution, 1 L bottle 65516011000036108 Ringer's (Baxter) irrigation solution, 1 L bottle 65107011000036104 Ringer's (Baxter) 65107011000036104 Ringer's (Baxter) 71571011000036109 sodium chloride 8.6 g/L + potassium chloride 300 mg/L + calcium chloride dihydrate 330 mg/L solution, 1 L bottle 70071011000036101 sodium chloride 8.6 g/L + potassium chloride 300 mg/L + calcium chloride dihydrate 330 mg/L solution, bottle 69841011000036101 sodium chloride + potassium chloride + calcium chloride dihydrate +901281000168105 Belsomra 15 mg film-coated tablet, 30, blister pack 207709 901271000168107 Belsomra 15 mg film-coated tablet, 30 901191000168100 Belsomra 15 mg film-coated tablet 901051000168106 Belsomra 901051000168106 Belsomra 901261000168101 suvorexant 15 mg tablet, 30 901181000168103 suvorexant 15 mg tablet 901171000168101 suvorexant +18337011000036104 Lamotrigine (DP) 50 mg tablet, 56, blister pack 101354 11193011000036100 Lamotrigine (DP) 50 mg tablet, 56 5461011000036104 Lamotrigine (DP) 50 mg tablet 3413011000036108 Lamotrigine (DP) 3413011000036108 Lamotrigine (DP) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1118591000168104 Quetin 100 mg film-coated tablet, 90, blister pack 204847 1118581000168102 Quetin 100 mg film-coated tablet, 90 1118531000168103 Quetin 100 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +797401000168101 Citalopram (A) 20 mg film-coated tablet, 7, bottle 158882 797391000168103 Citalopram (A) 20 mg film-coated tablet, 7 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +886341000168108 Carboplatin (Kabi) 50 mg/5 mL injection solution, 5 mL vial 171244 886331000168104 Carboplatin (Kabi) 50 mg/5 mL injection solution, 5 mL vial 886321000168102 Carboplatin (Kabi) 50 mg/5 mL injection solution, 5 mL vial 933234231000036101 Carboplatin (Kabi) 933234231000036101 Carboplatin (Kabi) 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +964451000168103 Normatens 300 microgram film-coated tablet, 98, blister pack 114123 964441000168100 Normatens 300 microgram film-coated tablet, 98 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964431000168109 moxonidine 300 microgram tablet, 98 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +50560011000036104 Durotram XR (once a day) 100 mg modified release tablet, 2, blister pack 134773 49594011000036101 Durotram XR (once a day) 100 mg modified release tablet, 2 48786011000036109 Durotram XR (once a day) 100 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51499011000036106 tramadol hydrochloride 100 mg modified release tablet, 2 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +1073561000168101 Finasteride (Aurobindo) 1 mg film-coated tablet, 28, blister pack 210617 1073551000168103 Finasteride (Aurobindo) 1 mg film-coated tablet, 28 1073541000168100 Finasteride (Aurobindo) 1 mg film-coated tablet 1073461000168102 Finasteride (Aurobindo) 1073461000168102 Finasteride (Aurobindo) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +931480011000036107 Amoxycillin (Generic Health) 500 mg hard capsule, 20, blister pack 152851 930659011000036101 Amoxycillin (Generic Health) 500 mg hard capsule, 20 929992011000036101 Amoxycillin (Generic Health) 500 mg hard capsule 929914011000036109 Amoxycillin (Generic Health) 929914011000036109 Amoxycillin (Generic Health) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +931480011000036107 Amoxycillin (Generic Health) 500 mg hard capsule, 20, blister pack 207005 930659011000036101 Amoxycillin (Generic Health) 500 mg hard capsule, 20 929992011000036101 Amoxycillin (Generic Health) 500 mg hard capsule 929914011000036109 Amoxycillin (Generic Health) 929914011000036109 Amoxycillin (Generic Health) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +80997011000036109 Epirubicin Hydrochloride (Actavis) 10 mg/5 mL injection solution, 5 mL vial 146578 80529011000036104 Epirubicin Hydrochloride (Actavis) 10 mg/5 mL injection solution, 5 mL vial 80177011000036102 Epirubicin Hydrochloride (Actavis) 10 mg/5 mL injection solution, 5 mL vial 933193151000036108 Epirubicin Hydrochloride (Actavis) 933193151000036108 Epirubicin Hydrochloride (Actavis) 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +165731000036109 Temozolomide (Alphapharm) 20 mg hard capsule, 5, bottle 192678 163851000036106 Temozolomide (Alphapharm) 20 mg hard capsule, 5 162351000036107 Temozolomide (Alphapharm) 20 mg hard capsule 161971000036106 Temozolomide (Alphapharm) 161971000036106 Temozolomide (Alphapharm) 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +931509011000036109 Smoflipid 20% intravenous infusion injection, 500 mL, bag 158359 930670011000036109 Smoflipid 20% intravenous infusion injection, 500 mL 930001011000036100 Smoflipid 20% intravenous infusion injection, 500 mL bag 29901000168108 Smoflipid 20% 29901000168108 Smoflipid 20% 932390011000036104 soya oil 30 g/500 mL + medium chain triglycerides 30 g/500 mL + olive oil 25 g/500 mL + fish oil natural 15 g/500 mL injection, 500 mL 931843011000036100 soya oil 30 g/500 mL + medium chain triglycerides 30 g/500 mL + olive oil 25 g/500 mL + fish oil natural 15 g/500 mL injection, bag 931792011000036103 soya oil + medium chain triglycerides + olive oil + fish oil natural +116731000036101 Cavstat 10 mg film-coated tablet, 30, bottle 186379 115021000036108 Cavstat 10 mg film-coated tablet, 30 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +116731000036101 Cavstat 10 mg film-coated tablet, 30, bottle 234548 115021000036108 Cavstat 10 mg film-coated tablet, 30 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +933214291000036109 Tralen 50 mg film-coated tablet, 10, blister pack 160773 933203511000036102 Tralen 50 mg film-coated tablet, 10 933195841000036104 Tralen 50 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 929236011000036108 sertraline 50 mg tablet, 10 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +710561000168104 Strepsils Sore Throat and Blocked Nose lozenge, 36, blister pack 14973 710551000168101 Strepsils Sore Throat and Blocked Nose lozenge, 36 710521000168109 Strepsils Sore Throat and Blocked Nose lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71504011000036102 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge, 36 70040011000036109 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge 69851011000036103 amylmetacresol + dichlorobenzyl alcohol + menthol +18190011000036100 Urex-M 20 mg uncoated tablet, 50, bottle 13475 11994011000036101 Urex-M 20 mg uncoated tablet, 50 4889011000036100 Urex-M 20 mg uncoated tablet 55341000168107 Urex-M 55341000168107 Urex-M 26834011000036101 furosemide (frusemide) 20 mg tablet, 50 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +83397011000036101 Nebilet 10 mg tablet, 7, blister pack 148875 83317011000036100 Nebilet 10 mg tablet, 7 83248011000036103 Nebilet 10 mg tablet 83226011000036104 Nebilet 83226011000036104 Nebilet 83490011000036107 nebivolol 10 mg tablet, 7 83432011000036104 nebivolol 10 mg tablet 83418011000036105 nebivolol +1093941000168102 Tramadol/Paracetamol 37.5/325 (Apo) film-coated tablet, 50, blister pack 280699 1093931000168106 Tramadol/Paracetamol 37.5/325 (Apo) film-coated tablet, 50 1093901000168104 Tramadol/Paracetamol 37.5/325 (Apo) film-coated tablet 1093891000168103 Tramadol/Paracetamol 37.5/325 (Apo) 1093891000168103 Tramadol/Paracetamol 37.5/325 (Apo) 680641000168108 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 50 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +933238951000036107 Fentanyl (Sandoz) 100 microgram/hour patch, 2, sachet 152576 933236201000036104 Fentanyl (Sandoz) 100 microgram/hour patch, 2 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236211000036102 fentanyl 100 microgram/hour patch, 2 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +1049071000168102 Neodol Forte 500/30 tablet, 50, blister pack 220981 1049061000168108 Neodol Forte 500/30 tablet, 50 1048941000168104 Neodol Forte 500/30 tablet 1048931000168108 Neodol Forte 500/30 1048931000168108 Neodol Forte 500/30 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +20437011000036105 Quitx Step-2 14 mg/24 hours patch, 7, sachet 77929 13640011000036105 Quitx Step-2 14 mg/24 hours patch, 7 6923011000036106 Quitx Step-2 14 mg/24 hours patch 39691000168108 Quitx Step-2 39691000168108 Quitx Step-2 27925011000036106 nicotine 14 mg/24 hours patch, 7 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +52202011000036101 Paclitaxel (Baxter) 30 mg/5 mL concentrated injection, 5 mL vial 143027 52090011000036108 Paclitaxel (Baxter) 30 mg/5 mL concentrated injection, 5 mL vial 51986011000036101 Paclitaxel (Baxter) 30 mg/5 mL concentrated injection, 5 mL vial 51948011000036108 Paclitaxel (Baxter) 51948011000036108 Paclitaxel (Baxter) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +34656011000036106 Concerta 27 mg modified release tablet, 28, bottle 124502 34245011000036104 Concerta 27 mg modified release tablet, 28 4920011000036108 Concerta 27 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35116011000036109 methylphenidate hydrochloride 27 mg modified release tablet, 28 22152011000036104 methylphenidate hydrochloride 27 mg modified release tablet 21277011000036101 methylphenidate +1006091000168103 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 195807 1006081000168101 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 1006071000168104 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule 711221000168102 Ropivacaine 0.75% (Kabi) 711221000168102 Ropivacaine 0.75% (Kabi) 1004901000168103 ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules 1004881000168100 ropivacaine hydrochloride 150 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +728191000168105 Imigran 20 mg/actuation nasal spray, 2 x 1 actuation, vials 61566 728181000168107 Imigran 20 mg/actuation nasal spray, 2 x 1 actuation 933221041000036101 Imigran 20 mg/actuation nasal spray, 1 actuation 30771000168105 Imigran 30771000168105 Imigran 728171000168109 sumatriptan 20 mg/actuation nasal spray, 2 x 1 actuation 933221051000036103 sumatriptan 20 mg/actuation nasal spray, 1 actuation 21708011000036102 sumatriptan +19014011000036102 Zantac 150 mg/10 mL oral liquid, 300 mL, bottle 35188 12319011000036105 Zantac 150 mg/10 mL oral liquid, 300 mL 5902011000036108 Zantac 150 mg/10 mL oral liquid, 10 mL 3563011000036102 Zantac 3563011000036102 Zantac 27060011000036100 ranitidine 150 mg/10 mL oral liquid, 300 mL 22429011000036109 ranitidine 150 mg/10 mL oral liquid 21682011000036109 ranitidine +44338011000036104 Novonorm 1 mg uncoated tablet, 15, blister pack 67269 41805011000036109 Novonorm 1 mg uncoated tablet, 15 40207011000036103 Novonorm 1 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46611011000036100 repaglinide 1 mg tablet, 15 45239011000036108 repaglinide 1 mg tablet 44883011000036104 repaglinide +1024821000168106 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 56, blister pack 193298 1024811000168104 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 56 1024761000168105 Pregabalin (Blooms The Chemist) 25 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1053721000168101 Actiq 400 microgram lozenge on handle, 15, blister pack 91600 1053711000168108 Actiq 400 microgram lozenge on handle, 15 34076011000036100 Actiq 400 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053701000168105 fentanyl 400 microgram lozenge on handle, 15 34911011000036105 fentanyl 400 microgram lozenge on handle 21258011000036102 fentanyl +110951000036108 Meloxiauro 15 mg uncoated tablet, 30, blister pack 188878 109221000036102 Meloxiauro 15 mg uncoated tablet, 30 106831000036105 Meloxiauro 15 mg uncoated tablet 106631000036109 Meloxiauro 106631000036109 Meloxiauro 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +77405011000036105 Water for Injections (Phebra) injection solution, 50 x 5 mL ampoules 78927 76821011000036109 Water for Injections (Phebra) injection solution, 50 x 5 mL ampoules 76192011000036102 Water for Injections (Phebra) injection solution, 5 mL ampoule 75970011000036108 Water for Injections (Phebra) 75970011000036108 Water for Injections (Phebra) 78325011000036104 water for injections injection, 50 x 5 mL ampoules 77607011000036102 water for injections injection, 5 mL ampoule 77431011000036101 water for injections +1016271000168106 Aripiprazole (GX) 15 mg uncoated tablet, 100, bottle 217205 1016261000168100 Aripiprazole (GX) 15 mg uncoated tablet, 100 1016251000168102 Aripiprazole (GX) 15 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +20950011000036108 Clamohexal Duo 500/125 film-coated tablet, 10, blister pack 94698 14105011000036105 Clamohexal Duo 500/125 film-coated tablet, 10 7382011000036100 Clamohexal Duo 500/125 film-coated tablet 59961000168108 Clamohexal Duo 500/125 59961000168108 Clamohexal Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +659071000168105 Mizart HCT 80/25 mg multilayer tablet, 28, blister pack 171089 659061000168104 Mizart HCT 80/25 mg multilayer tablet, 28 659051000168101 Mizart HCT 80/25 mg multilayer tablet 659041000168103 Mizart HCT 80/25 mg 659041000168103 Mizart HCT 80/25 mg 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +1013301000168102 Naropin 0.5% 50 mg/10 mL injection solution, 5 x 10 mL ampoules 52402 1013291000168103 Naropin 0.5% 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1013281000168101 Naropin 0.5% 50 mg/10 mL injection solution, 10 mL ampoule 1013221000168100 Naropin 0.5% 1013221000168100 Naropin 0.5% 1005981000168105 ropivacaine hydrochloride 50 mg/10 mL injection, 5 x 10 mL ampoules 1005961000168101 ropivacaine hydrochloride 50 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +60222011000036100 Strepfen Intensive honey and lemon 8.75 mg lozenge, 16, blister pack 133376 56181011000036107 Strepfen Intensive honey and lemon 8.75 mg lozenge, 16 53828011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63907011000036106 flurbiprofen 8.75 mg lozenge, 16 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +971531000168103 Lypralin 75 mg hard capsule, 500, bottle 235866 971521000168101 Lypralin 75 mg hard capsule, 500 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 971511000168108 pregabalin 75 mg capsule, 500 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +656101000168108 Rabeprazole Sodium (AN) 20 mg enteric tablet, 30, blister pack 189226 656081000168101 Rabeprazole Sodium (AN) 20 mg enteric tablet, 30 656071000168104 Rabeprazole Sodium (AN) 20 mg enteric tablet 656061000168105 Rabeprazole Sodium (AN) 656061000168105 Rabeprazole Sodium (AN) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +59980011000036108 Codral Cold and Flu film-coated tablet, 24, blister pack 121309 55942011000036106 Codral Cold and Flu film-coated tablet, 24 53729011000036103 Codral Cold and Flu film-coated tablet 45721000168100 Codral Cold and Flu 45721000168100 Codral Cold and Flu 63169011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +933145011000036104 Elmendos 200 mg tablet, 56, bottle 98080 932942011000036104 Elmendos 200 mg tablet, 56 932775011000036101 Elmendos 200 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +30651000036103 Skinman Soft N application, 1 L, bottle 179681 29041000036102 Skinman Soft N application, 1 L 27071000036104 Skinman Soft N application 9041000168104 Skinman Soft N 9041000168104 Skinman Soft N 29051000036104 isopropyl alcohol 76% + benzalkonium chloride 0.13% application, 1 L 27081000036102 isopropyl alcohol 76% + benzalkonium chloride 0.13% application 31551000036105 isopropyl alcohol + benzalkonium chloride +754141000168109 Xedone 20 mg hard capsule, 20, bottle 227859 754131000168100 Xedone 20 mg hard capsule, 20 754121000168103 Xedone 20 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +766971000168104 Irinotecan (Meditab) 40 mg/2 mL concentrated injection, 2 mL vial 167203 766961000168105 Irinotecan (Meditab) 40 mg/2 mL concentrated injection, 2 mL vial 766951000168108 Irinotecan (Meditab) 40 mg/2 mL concentrated injection, 2 mL vial 766881000168107 Irinotecan (Meditab) 766881000168107 Irinotecan (Meditab) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +725221000168109 PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets 725211000168102 PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets 725201000168100 PKU Lophlex Orange powder for oral liquid, 27.8 g sachet 23211000168102 PKU Lophlex 23211000168102 PKU Lophlex 51447011000036109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 27.8 g sachets 247811000168104 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 27.8 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +17882011000036101 Dymadon P 500 mg uncoated tablet, 100, blister pack 114068 11457011000036103 Dymadon P 500 mg uncoated tablet, 100 5903011000036101 Dymadon P 500 mg uncoated tablet 56721000168108 Dymadon P 56721000168108 Dymadon P 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1109931000168104 Nicotinell Tropical Fruit 4 mg chewing gum, 96, blister pack 279618 1109921000168102 Nicotinell Tropical Fruit 4 mg chewing gum, 96 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1004721000168105 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags 72874 1004711000168103 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags 1004691000168101 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 100 mL bag 52011000168100 Naropin 0.2% with Fentanyl 200 microgram/100 mL 52011000168100 Naropin 0.2% with Fentanyl 200 microgram/100 mL 1004701000168101 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, 5 x 100 mL bags 1004681000168104 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, bag 34842011000036102 ropivacaine + fentanyl +834731000168101 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100, blister pack 276146 834721000168104 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100 834701000168108 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 834711000168106 codeine phosphate hemihydrate 30 mg tablet, 100 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +834731000168101 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100, blister pack 42077 834721000168104 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100 834701000168108 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 834711000168106 codeine phosphate hemihydrate 30 mg tablet, 100 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +852091000168108 Olmesartan HCT 40/25 (Myl) film-coated tablet, 30, blister pack 273578 852081000168105 Olmesartan HCT 40/25 (Myl) film-coated tablet, 30 852051000168103 Olmesartan HCT 40/25 (Myl) film-coated tablet 852041000168100 Olmesartan HCT 40/25 (Myl) 852041000168100 Olmesartan HCT 40/25 (Myl) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +931741011000036103 Superfade (John Plunkett) cream, 60 mL, tube 52376 930901011000036107 Superfade (John Plunkett) cream, 60 mL 930105011000036107 Superfade (John Plunkett) cream 929876011000036100 Superfade (John Plunkett) 929876011000036100 Superfade (John Plunkett) 932481011000036101 hydroquinone 2% + salicylic acid 1.5% + padimate-O 3% cream, 60 mL 931879011000036101 hydroquinone 2% + salicylic acid 1.5% + padimate-O 3% cream 931802011000036103 hydroquinone + salicylic acid + padimate-O +765601000168105 Fraxiparine 1900 anti-Xa units/0.2 mL injection solution, 10 x 0.2 mL syringes 51308 765591000168103 Fraxiparine 1900 anti-Xa units/0.2 mL injection solution, 10 x 0.2 mL syringes 765541000168106 Fraxiparine 1900 anti-Xa units/0.2 mL injection solution, 0.2 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765581000168101 nadroparin calcium 1900 anti-Xa units/0.2 mL injection, 10 x 0.2 mL syringes 765531000168102 nadroparin calcium 1900 anti-Xa units/0.2 mL injection, syringe 765071000168107 nadroparin +82091000036105 Octreotide (Sun) 500 microgram/mL injection solution, 5 x 1 mL ampoules 184893 80621000036102 Octreotide (Sun) 500 microgram/mL injection solution, 5 x 1 mL ampoules 78351000036109 Octreotide (Sun) 500 microgram/mL injection solution, ampoule 78111000036108 Octreotide (Sun) 78111000036108 Octreotide (Sun) 27089011000036109 octreotide 500 microgram/mL injection, 5 x 1 mL ampoules 22458011000036102 octreotide 500 microgram/mL injection, ampoule 21316011000036104 octreotide +18199011000036106 Coumadin 2 mg uncoated tablet, 50, bottle 14937 12065011000036108 Coumadin 2 mg uncoated tablet, 50 5434011000036105 Coumadin 2 mg uncoated tablet 3322011000036101 Coumadin 3322011000036101 Coumadin 26890011000036102 warfarin sodium 2 mg tablet, 50 22268011000036109 warfarin sodium 2 mg tablet 21248011000036104 warfarin +19544011000036106 Clexane 60 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 56709 12816011000036103 Clexane 60 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 6107011000036105 Clexane 60 mg/0.6 mL injection solution, 0.6 mL syringe 2391000168100 Clexane 2391000168100 Clexane 27373011000036100 enoxaparin sodium 60 mg/0.6 mL injection, 10 x 0.6 mL syringes 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +44836011000036101 Enablex 15 mg modified release tablet, 14, blister pack 99439 42268011000036107 Enablex 15 mg modified release tablet, 14 40411011000036109 Enablex 15 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47021011000036104 darifenacin 15 mg modified release tablet, 14 45377011000036108 darifenacin 15 mg modified release tablet 44860011000036105 darifenacin +18063011000036102 Tolerade 25 mg sugar coated tablet, 50, blister pack 117786 11571011000036102 Tolerade 25 mg sugar coated tablet, 50 5259011000036106 Tolerade 25 mg sugar coated tablet 3602011000036101 Tolerade 3602011000036101 Tolerade 27467011000036109 imipramine hydrochloride 25 mg tablet, 50 22814011000036105 imipramine hydrochloride 25 mg tablet 21613011000036104 imipramine +843391000168102 Utrogestan 200 mg shell pessary, 15, blister pack 232824 843381000168100 Utrogestan 200 mg shell pessary, 15 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 26989011000036100 progesterone 200 mg pessary, 15 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +928837011000036102 Paclitaxel (DP) 30 mg/5 mL concentrated injection, 5 mL vial 129565 928199011000036106 Paclitaxel (DP) 30 mg/5 mL concentrated injection, 5 mL vial 927858011000036106 Paclitaxel (DP) 30 mg/5 mL concentrated injection, 5 mL vial 927811011000036105 Paclitaxel (DP) 927811011000036105 Paclitaxel (DP) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +18380011000036108 Moxicam 15 mg uncoated tablet, 30, blister pack 126215 11825011000036103 Moxicam 15 mg uncoated tablet, 30 5456011000036101 Moxicam 15 mg uncoated tablet 4414011000036108 Moxicam 4414011000036108 Moxicam 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +866431000168107 Amitriptyline (GPPL) 10 mg tablet, 1000, bottle 232135 866421000168109 Amitriptyline (GPPL) 10 mg tablet, 1000 865411000168109 Amitriptyline (GPPL) 10 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +44594011000036102 Vfend 50 mg film-coated tablet, 20, blister pack 82507 42047011000036107 Vfend 50 mg film-coated tablet, 20 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46815011000036108 voriconazole 50 mg tablet, 20 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +920783011000036103 Cefotaxime (DBL) 2 g powder for injection, 1 vial 78703 920462011000036100 Cefotaxime (DBL) 2 g powder for injection, 1 vial 920197011000036101 Cefotaxime (DBL) 2 g powder for injection, 2 g vial 920087011000036105 Cefotaxime (DBL) 920087011000036105 Cefotaxime (DBL) 33812011000036106 cefotaxime 2 g injection, 1 vial 33683011000036109 cefotaxime 2 g injection, vial 21327011000036105 cefotaxime +165641000036108 Intanza 2014 injection suspension, 1 x 0.1 mL syringe 150130 163721000036108 Intanza 2014 injection suspension, 1 x 0.1 mL syringe 162131000036102 Intanza 2014 injection suspension, 0.1 mL syringe 36641000168106 Intanza 2014 36641000168106 Intanza 2014 163731000036105 influenza trivalent adult vaccine 2014 injection, 1 x 0.1 mL syringe 162141000036107 influenza trivalent adult vaccine 2014 injection, 0.1 mL syringe 166301000036105 influenza trivalent vaccine 2014 +110861000036104 Citalo 20 mg film-coated tablet, 28, bottle 158874 930675011000036100 Citalo 20 mg film-coated tablet, 28 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +805941000168101 Uptravi 800 microgram film-coated tablet, 60, blister pack 234166 805931000168105 Uptravi 800 microgram film-coated tablet, 60 805911000168100 Uptravi 800 microgram film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 805921000168107 selexipag 800 microgram tablet, 60 805901000168103 selexipag 800 microgram tablet 805661000168108 selexipag +829021000168102 Imatinib (RBX) 100 mg film-coated tablet, 180, blister pack 225484 829011000168109 Imatinib (RBX) 100 mg film-coated tablet, 180 828971000168105 Imatinib (RBX) 100 mg film-coated tablet 828961000168104 Imatinib (RBX) 828961000168104 Imatinib (RBX) 829001000168106 imatinib 100 mg tablet, 180 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +903851000168103 Celocox 200 mg hard capsule, 30, blister pack 212792 903841000168100 Celocox 200 mg hard capsule, 30 903791000168103 Celocox 200 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +886581000168105 Eloctate (1 x 750 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210523 886571000168107 Eloctate (1 x 750 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886451000168104 Eloctate (inert substance) diluent, 3 mL syringe 886371000168101 Eloctate 886371000168101 Eloctate 886561000168101 efmoroctocog alfa 750 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886441000168101 inert substance diluent, 3 mL syringe 21220011000036103 inert substance +886581000168105 Eloctate (1 x 750 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210523 886571000168107 Eloctate (1 x 750 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886551000168103 Eloctate (efmoroctocog alfa 750 units) powder for injection, 750 units vial 886371000168101 Eloctate 886371000168101 Eloctate 886561000168101 efmoroctocog alfa 750 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886541000168100 efmoroctocog alfa 750 units injection, vial 886411000168100 efmoroctocog alfa +131401000036102 Candesartan Cilexetil HCT 16/12.5 (GH) uncoated tablet, 30, bottle 196385 128751000036100 Candesartan Cilexetil HCT 16/12.5 (GH) uncoated tablet, 30 125231000036108 Candesartan Cilexetil HCT 16/12.5 (GH) uncoated tablet 36251000168105 Candesartan Cilexetil HCT 16/12.5 (GH) 36251000168105 Candesartan Cilexetil HCT 16/12.5 (GH) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1053641000168102 Esbriet 801 mg film-coated tablet, 90, bottle 282527 1053631000168106 Esbriet 801 mg film-coated tablet, 90 1053611000168101 Esbriet 801 mg film-coated tablet 763841000168107 Esbriet 763841000168107 Esbriet 1053621000168108 pirfenidone 801 mg tablet, 90 1053601000168104 pirfenidone 801 mg tablet 763861000168106 pirfenidone +19469011000036106 Arimidex 1 mg film-coated tablet, 30, blister pack 54672 12746011000036105 Arimidex 1 mg film-coated tablet, 30 6040011000036106 Arimidex 1 mg film-coated tablet 3522011000036103 Arimidex 3522011000036103 Arimidex 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +947111000168109 Risdone 3 mg film-coated tablet, 28, blister pack 144281 947101000168106 Risdone 3 mg film-coated tablet, 28 946971000168101 Risdone 3 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947091000168101 risperidone 3 mg tablet, 28 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +933214451000036101 Tralen 100 mg film-coated tablet, 10, blister pack 160781 933203751000036109 Tralen 100 mg film-coated tablet, 10 933195881000036108 Tralen 100 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 929238011000036107 sertraline 100 mg tablet, 10 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +18501011000036102 Ramipril (Sandoz) 2.5 mg uncoated tablet, 30, blister pack 128806 11863011000036107 Ramipril (Sandoz) 2.5 mg uncoated tablet, 30 4483011000036108 Ramipril (Sandoz) 2.5 mg uncoated tablet 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +131241000036103 Candesartan Cilexetil (GA) 32 mg uncoated tablet, 30, bottle 195492 128311000036103 Candesartan Cilexetil (GA) 32 mg uncoated tablet, 30 124881000036107 Candesartan Cilexetil (GA) 32 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +849121000168103 Itracap 100 mg hard capsule, 60, blister pack 244472 849111000168105 Itracap 100 mg hard capsule, 60 849021000168104 Itracap 100 mg hard capsule 849011000168106 Itracap 849011000168106 Itracap 27156011000036102 itraconazole 100 mg capsule, 60 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +20814011000036104 Famotidine (GenRx) 20 mg film-coated tablet, 60, blister pack 91513 13977011000036106 Famotidine (GenRx) 20 mg film-coated tablet, 60 7263011000036103 Famotidine (GenRx) 20 mg film-coated tablet 3928011000036107 Famotidine (GenRx) 3928011000036107 Famotidine (GenRx) 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +933240141000036108 Simvastatin (Sandoz) 80 mg film-coated tablet, 30, blister pack 98624 933237331000036102 Simvastatin (Sandoz) 80 mg film-coated tablet, 30 933234951000036104 Simvastatin (Sandoz) 80 mg film-coated tablet 933234211000036105 Simvastatin (Sandoz) 933234211000036105 Simvastatin (Sandoz) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +61685011000036108 Febridol 500 mg uncoated tablet, 500, bottle 213739 57606011000036103 Febridol 500 mg uncoated tablet, 500 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61685011000036108 Febridol 500 mg uncoated tablet, 500, bottle 287227 57606011000036103 Febridol 500 mg uncoated tablet, 500 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61685011000036108 Febridol 500 mg uncoated tablet, 500, bottle 98138 57606011000036103 Febridol 500 mg uncoated tablet, 500 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +736781000168107 Famciclovir (Auro) 125 mg film-coated tablet, 40, blister pack 195180 736771000168109 Famciclovir (Auro) 125 mg film-coated tablet, 40 736761000168103 Famciclovir (Auro) 125 mg film-coated tablet 112681000036107 Famciclovir (Auro) 112681000036107 Famciclovir (Auro) 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +923704011000036104 Grandicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 147836 923298011000036102 Grandicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 922985011000036102 Grandicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924118011000036101 epoetin lambda 6000 units/0.6 mL injection, 0.6 mL syringe 923950011000036108 epoetin lambda 6000 units/0.6 mL injection, syringe 923930011000036107 epoetin lambda +43687011000036104 Zemplar 5 microgram/mL injection solution, 5 x 1 mL ampoules 121759 41255011000036106 Zemplar 5 microgram/mL injection solution, 5 x 1 mL ampoules 39797011000036107 Zemplar 5 microgram/mL injection solution, ampoule 39753011000036109 Zemplar 39753011000036109 Zemplar 46194011000036102 paricalcitol 5 microgram/mL injection, 5 x 1 mL ampoules 45024011000036102 paricalcitol 5 microgram/mL injection, ampoule 44899011000036102 paricalcitol +797311000168107 Nozinan 25 mg/mL injection solution, 10 x 1 mL ampoules 163170 797301000168109 Nozinan 25 mg/mL injection solution, 10 x 1 mL ampoules 797281000168105 Nozinan 25 mg/mL injection solution, ampoule 797151000168105 Nozinan 797151000168105 Nozinan 797291000168108 levomepromazine hydrochloride 25 mg/mL injection, 10 x 1 mL ampoules 797271000168107 levomepromazine hydrochloride 25 mg/mL injection, ampoule 797261000168101 levomepromazine +877991000168106 Valsartan HCTZ 80/12.5 (Blooms The Chemist) film-coated tablet, 28, blister pack 222294 877981000168108 Valsartan HCTZ 80/12.5 (Blooms The Chemist) film-coated tablet, 28 877971000168105 Valsartan HCTZ 80/12.5 (Blooms The Chemist) film-coated tablet 877951000168101 Valsartan HCTZ 80/12.5 (Blooms The Chemist) 877951000168101 Valsartan HCTZ 80/12.5 (Blooms The Chemist) 46957011000036104 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 45358011000036107 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +933231691000036100 Strepsils Dry Cough 5 mg lozenge, 6, blister pack 69834 933226341000036106 Strepsils Dry Cough 5 mg lozenge, 6 933221091000036107 Strepsils Dry Cough 5 mg lozenge 53599011000036108 Strepsils Dry Cough 53599011000036108 Strepsils Dry Cough 933226351000036109 dextromethorphan hydrobromide monohydrate 5 mg lozenge, 6 933221101000036103 dextromethorphan hydrobromide monohydrate 5 mg lozenge 61744011000036109 dextromethorphan +762871000168108 Oxycodone MR (Chemmart) 30 mg modified release tablet, 60, blister pack 214500 762861000168102 Oxycodone MR (Chemmart) 30 mg modified release tablet, 60 762811000168100 Oxycodone MR (Chemmart) 30 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 71474011000036104 oxycodone hydrochloride 30 mg modified release tablet, 60 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +19305011000036101 Methadone Hydrochloride Syrup (Wellcome) 5 mg/mL oral liquid solution, 1 L, bottle 49372 12595011000036107 Methadone Hydrochloride Syrup (Wellcome) 5 mg/mL oral liquid solution, 1 L 5602011000036109 Methadone Hydrochloride Syrup (Wellcome) 5 mg/mL oral liquid solution 36441000168109 Methadone Hydrochloride Syrup (Wellcome) 36441000168109 Methadone Hydrochloride Syrup (Wellcome) 27550011000036109 methadone hydrochloride 5 mg/mL oral liquid, 1 L 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +920724011000036106 Pantoprazole (Generic Health) 20 mg enteric tablet, 100, blister pack 191032 920411011000036107 Pantoprazole (Generic Health) 20 mg enteric tablet, 100 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46670011000036104 pantoprazole 20 mg enteric tablet, 100 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +920724011000036106 Pantoprazole (Generic Health) 20 mg enteric tablet, 100, blister pack 155114 920411011000036107 Pantoprazole (Generic Health) 20 mg enteric tablet, 100 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46670011000036104 pantoprazole 20 mg enteric tablet, 100 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1122681000168108 Fluarix Tetra 2018 without Needle injection suspension, 1 x 0.5 mL syringe 200674 1122671000168105 Fluarix Tetra 2018 without Needle injection suspension, 1 x 0.5 mL syringe 1122661000168104 Fluarix Tetra 2018 without Needle injection suspension, 0.5 mL syringe 1122401000168102 Fluarix Tetra 2018 1122401000168102 Fluarix Tetra 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +152581000036103 Atrovent 21 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 91129 150951000036101 Atrovent 21 microgram/actuation pressurised inhalation, 200 actuations 148541000036106 Atrovent 21 microgram/actuation pressurised inhalation, actuation 3536011000036101 Atrovent 3536011000036101 Atrovent 150961000036103 ipratropium bromide monohydrate 21 microgram/actuation pressurised inhalation, 200 actuations 148551000036109 ipratropium bromide monohydrate 21 microgram/actuation pressurised inhalation, actuation 21512011000036101 ipratropium +895111000168100 Agilocam 15 mg hard capsule, 30, blister pack 232587 895101000168103 Agilocam 15 mg hard capsule, 30 895091000168108 Agilocam 15 mg hard capsule 895051000168103 Agilocam 895051000168103 Agilocam 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +754221000168107 Oxycodone (Medis) 20 mg hard capsule, 60, blister pack 227823 754211000168100 Oxycodone (Medis) 20 mg hard capsule, 60 754181000168104 Oxycodone (Medis) 20 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +1019241000168109 Aripiprazole (Actavis) 15 mg uncoated tablet, 250, bottle 217244 1019231000168100 Aripiprazole (Actavis) 15 mg uncoated tablet, 250 1019181000168106 Aripiprazole (Actavis) 15 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 1015601000168108 aripiprazole 15 mg tablet, 250 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +933214611000036102 Levetiracetam (GN) 250 mg film-coated tablet, 60, blister pack 161291 933203971000036101 Levetiracetam (GN) 250 mg film-coated tablet, 60 933196011000036102 Levetiracetam (GN) 250 mg film-coated tablet 933193821000036106 Levetiracetam (GN) 933193821000036106 Levetiracetam (GN) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +713621000168101 Sutent 37.5 mg hard capsule, 28, bottle 156817 713601000168105 Sutent 37.5 mg hard capsule, 28 713581000168101 Sutent 37.5 mg hard capsule 39776011000036101 Sutent 39776011000036101 Sutent 713591000168103 sunitinib 37.5 mg capsule, 28 713571000168104 sunitinib 37.5 mg capsule 44859011000036109 sunitinib +33596011000036108 Avelox IV 400 mg/250 mL intravenous infusion injection, 250 mL bag 78977 33334011000036109 Avelox IV 400 mg/250 mL intravenous infusion injection, 250 mL bag 33095011000036103 Avelox IV 400 mg/250 mL intravenous infusion injection, 250 mL bag 8531000168106 Avelox IV 8531000168106 Avelox IV 33816011000036105 moxifloxacin 400 mg/250 mL injection, 250 mL bag 33684011000036106 moxifloxacin 400 mg/250 mL injection, bag 21765011000036109 moxifloxacin +988731000168108 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 24, blister pack 135089 988721000168105 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 24 988691000168101 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet 988681000168104 Paracetamol (Blooms The Chemist) 988681000168104 Paracetamol (Blooms The Chemist) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1032211000168108 Aripra 10 mg uncoated tablet, 100, bottle 217223 1032201000168105 Aripra 10 mg uncoated tablet, 100 1031741000168107 Aripra 10 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +156871000036104 Sertraline (Apo) 50 mg film-coated tablet, 30, blister pack 213177 156171000036106 Sertraline (Apo) 50 mg film-coated tablet, 30 155101000036107 Sertraline (Apo) 50 mg film-coated tablet 154611000036104 Sertraline (Apo) 154611000036104 Sertraline (Apo) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +900961000168104 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 150648 900951000168101 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 900931000168107 Biostate (inert substance) diluent, 5 mL vial 62851000168103 Biostate 500 IU FVIII/1000 IU VWF 900871000168100 Biostate 900941000168103 factor VIII 500 units + von Willebrand factor 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +900961000168104 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 150648 900951000168101 Biostate 500 IU FVIII/1000 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 65671011000036104 Biostate 500 IU FVIII/1000 IU VWF (factor VIII 500 units + von Willebrand factor 1000 units) powder for injection, 1 vial 62851000168103 Biostate 500 IU FVIII/1000 IU VWF 62851000168103 Biostate 500 IU FVIII/1000 IU VWF 900941000168103 factor VIII 500 units + von Willebrand factor 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 70271011000036106 factor VIII 500 units + von Willebrand factor 1000 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +81931000036101 Famciclovir (Generic Health) 250 mg film-coated tablet, 56, blister pack 177012 80171000036109 Famciclovir (Generic Health) 250 mg film-coated tablet, 56 78221000036106 Famciclovir (Generic Health) 250 mg film-coated tablet 77971000036104 Famciclovir (Generic Health) 77971000036104 Famciclovir (Generic Health) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +834571000168108 Codral Forte uncoated tablet, 20, strip pack 11090 834561000168102 Codral Forte uncoated tablet, 20 834401000168104 Codral Forte uncoated tablet 25131000168101 Codral Forte 25131000168101 Codral Forte 834551000168104 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 20 834391000168101 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet 21831011000036102 aspirin + codeine +909541000168104 Chorit 20 mg film-coated tablet, 30, blister pack 179836 909531000168108 Chorit 20 mg film-coated tablet, 30 909501000168101 Chorit 20 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +39091000036106 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 50 mL, bottle 167732 35471000036104 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 50 mL 53923011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension 20021000168109 Nurofen for Children Baby 3+ Months 20021000168109 Nurofen for Children Baby 3+ Months 63165011000036102 ibuprofen 40 mg/mL oral liquid, 50 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +920771011000036107 Relpax 80 mg film-coated tablet, 6, blister pack 68358 920450011000036106 Relpax 80 mg film-coated tablet, 6 920187011000036102 Relpax 80 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 920867011000036107 eletriptan 80 mg tablet, 6 920829011000036109 eletriptan 80 mg tablet 920818011000036107 eletriptan +111111000036102 Amoxyclav 500/125 (Pharmacor) film-coated tablet, 10, blister pack 196892 109391000036108 Amoxyclav 500/125 (Pharmacor) film-coated tablet, 10 107351000036105 Amoxyclav 500/125 (Pharmacor) film-coated tablet 841000168107 Amoxyclav 500/125 (Pharmacor) 841000168107 Amoxyclav 500/125 (Pharmacor) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +667541000168106 Lamotrigine (AN) 100 mg tablet, 56, blister pack 147633 667531000168102 Lamotrigine (AN) 100 mg tablet, 56 667521000168100 Lamotrigine (AN) 100 mg tablet 667441000168105 Lamotrigine (AN) 667441000168105 Lamotrigine (AN) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +86001011000036101 Hedrin Spray 4% lotion, 120 mL, pump actuated aerosol 155689 85691011000036108 Hedrin Spray 4% lotion, 120 mL 85336011000036102 Hedrin Spray 4% lotion 52631000168104 Hedrin Spray 52631000168104 Hedrin Spray 86435011000036101 dimeticone-100000 4% lotion, 120 mL 86222011000036105 dimeticone-100000 4% lotion 86195011000036106 dimeticone-100000 +664851000168101 Amlodipine (GH) 10 mg uncoated tablet, 30, blister pack 140140 664841000168103 Amlodipine (GH) 10 mg uncoated tablet, 30 664831000168107 Amlodipine (GH) 10 mg uncoated tablet 664821000168109 Amlodipine (GH) 664821000168109 Amlodipine (GH) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +702341000168105 X-Evess Part-1 250 mg/mL oral liquid solution, 500 mL, bottle 702331000168101 X-Evess Part-1 250 mg/mL oral liquid solution, 500 mL 702311000168106 X-Evess Part-1 250 mg/mL oral liquid solution 702291000168107 X-Evess Part-1 702291000168107 X-Evess Part-1 702321000168104 sodium bicarbonate 250 mg/mL oral liquid, 500 mL 702301000168108 sodium bicarbonate 250 mg/mL oral liquid 21761011000036107 bicarbonate +24391000036106 Gemaccord 1 g powder for injection, 1 vial 159103 22421000036108 Gemaccord 1 g powder for injection, 1 vial 20371000036101 Gemaccord 1 g powder for injection, vial 19911000036107 Gemaccord 19911000036107 Gemaccord 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +43978011000036109 Chloral Hydrate Mixture (Orion) 1 g/10 mL oral liquid solution, 200 mL, bottle 42850 41470011000036104 Chloral Hydrate Mixture (Orion) 1 g/10 mL oral liquid solution, 200 mL 39996011000036100 Chloral Hydrate Mixture (Orion) 1 g/10 mL oral liquid solution, 10 mL 27391000168105 Chloral Hydrate Mixture (Orion) 27391000168105 Chloral Hydrate Mixture (Orion) 46316011000036104 chloral hydrate 1 g/10 mL oral liquid, 200 mL 45072011000036107 chloral hydrate 1 g/10 mL oral liquid 44866011000036108 chloral hydrate +1082581000168108 Relpax 80 mg film-coated tablet, 30, bottle 68359 1082571000168105 Relpax 80 mg film-coated tablet, 30 920187011000036102 Relpax 80 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 1082561000168104 eletriptan 80 mg tablet, 30 920829011000036109 eletriptan 80 mg tablet 920818011000036107 eletriptan +719421000168102 Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack, composite pack 192721 719411000168109 Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack 719251000168109 Lyxumia 20 microgram/dose injection solution, dose 4261000168106 Lyxumia Treatment Initiation Pack 177641000036107 Lyxumia 719401000168106 lixisenatide 10 microgram/dose injection [14 doses] (&) lixisenatide 20 microgram/dose injection [14 doses], 1 pack 719241000168107 lixisenatide 20 microgram/dose injection, dose 177821000036103 lixisenatide +719421000168102 Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack, composite pack 192721 719411000168109 Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack 719301000168103 Lyxumia 10 microgram/dose injection solution, dose 4261000168106 Lyxumia Treatment Initiation Pack 177641000036107 Lyxumia 719401000168106 lixisenatide 10 microgram/dose injection [14 doses] (&) lixisenatide 20 microgram/dose injection [14 doses], 1 pack 719291000168104 lixisenatide 10 microgram/dose injection, dose 177821000036103 lixisenatide +1040811000168107 Astepro 0.15% nasal spray, 30 mL, pump pack 218383 1040801000168109 Astepro 0.15% nasal spray, 30 mL 1040751000168103 Astepro 0.15% nasal spray, actuation 1040731000168109 Astepro 1040731000168109 Astepro 1040791000168108 azelastine hydrochloride 0.15% nasal spray, 30 mL 1040741000168100 azelastine hydrochloride 0.15% nasal spray, actuation 75004011000036100 azelastine +929050011000036101 Galvumet 50/850 film-coated tablet, 180, blister pack 161217 928411011000036105 Galvumet 50/850 film-coated tablet, 180 927969011000036100 Galvumet 50/850 film-coated tablet 9411000168105 Galvumet 50/850 9411000168105 Galvumet 50/850 929248011000036106 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet, 180 929155011000036104 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet 929132011000036106 vildagliptin + metformin +18896011000036105 Pilopt 4% eye drops solution, 15 mL, bottle 19764 12204011000036104 Pilopt 4% eye drops solution, 15 mL 5507011000036103 Pilopt 4% eye drops solution 3693011000036106 Pilopt 3693011000036106 Pilopt 27790011000036100 pilocarpine hydrochloride 4% eye drops, 15 mL 23120011000036106 pilocarpine hydrochloride 4% eye drops 21254011000036109 pilocarpine +1019201000168107 Aripiprazole (Actavis) 15 mg uncoated tablet, 30, blister pack 217237 1019191000168109 Aripiprazole (Actavis) 15 mg uncoated tablet, 30 1019181000168106 Aripiprazole (Actavis) 15 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1030521000168104 Atomoxetine (Genpar) 10 mg hard capsule, 28, blister pack 234846 1030511000168106 Atomoxetine (Genpar) 10 mg hard capsule, 28 1030451000168106 Atomoxetine (Genpar) 10 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +69166011000036107 Sodium Acetate (DBL) 1.64 g/10 mL concentrated injection, 10 x 10 mL ampoules 16262 66966011000036102 Sodium Acetate (DBL) 1.64 g/10 mL concentrated injection, 10 x 10 mL ampoules 65509011000036101 Sodium Acetate (DBL) 1.64 g/10 mL concentrated injection, 10 mL ampoule 65028011000036103 Sodium Acetate (DBL) 65028011000036103 Sodium Acetate (DBL) 71539011000036106 sodium acetate 1.64 g/10 mL injection, 10 x 10 mL ampoules 70049011000036103 sodium acetate 1.64 g/10 mL injection, ampoule 69877011000036108 acetate +17954011000036109 Frusehexal 20 mg/2 mL injection, 5 x 2 mL ampoules 106463 11335011000036104 Frusehexal 20 mg/2 mL injection, 5 x 2 mL ampoules 4973011000036101 Frusehexal 20 mg/2 mL injection, 2 mL ampoule 3831011000036107 Frusehexal 3831011000036107 Frusehexal 26762011000036103 furosemide (frusemide) 20 mg/2 mL injection, 5 x 2 mL ampoules 22149011000036106 furosemide (frusemide) 20 mg/2 mL injection, ampoule 21329011000036103 furosemide (frusemide) +931620011000036100 Pravista 80 mg film-coated tablet, 100, bottle 163563 930781011000036103 Pravista 80 mg film-coated tablet, 100 930043011000036109 Pravista 80 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 52329011000036109 pravastatin sodium 80 mg tablet, 100 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +765521000168100 Fraxiparine 7600 anti-Xa units/0.8 mL injection solution, 10 x 0.8 mL syringes 51312 765511000168107 Fraxiparine 7600 anti-Xa units/0.8 mL injection solution, 10 x 0.8 mL syringes 765461000168109 Fraxiparine 7600 anti-Xa units/0.8 mL injection solution, 0.8 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765501000168109 nadroparin calcium 7600 anti-Xa units/0.8 mL injection, 10 x 0.8 mL syringes 765451000168107 nadroparin calcium 7600 anti-Xa units/0.8 mL injection, syringe 765071000168107 nadroparin +693681000168109 Velphoro 2.5 g (iron 500 mg) chewable tablet, 30, blister pack 216701 693671000168106 Velphoro 2.5 g (iron 500 mg) chewable tablet, 30 693651000168102 Velphoro 2.5 g (iron 500 mg) chewable tablet 693111000168106 Velphoro 693111000168106 Velphoro 693661000168100 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet, 30 693641000168104 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet 693631000168108 iron +840421000168103 Keytruda 100 mg/4 mL concentrated injection, 4 mL vial 263932 840411000168105 Keytruda 100 mg/4 mL concentrated injection, 4 mL vial 840391000168105 Keytruda 100 mg/4 mL concentrated injection, 4 mL vial 706011000168105 Keytruda 706011000168105 Keytruda 840401000168107 pembrolizumab 100 mg/4 mL injection, 4 mL vial 840381000168107 pembrolizumab 100 mg/4 mL injection, vial 706031000168100 pembrolizumab +731121000168100 Momasone 0.1% lotion, 30 mL, bottle 226990 731111000168107 Momasone 0.1% lotion, 30 mL 731101000168109 Momasone 0.1% lotion 671481000168102 Momasone 671481000168102 Momasone 27414011000036102 mometasone furoate 0.1% lotion, 30 mL 22762011000036102 mometasone furoate 0.1% lotion 21409011000036100 mometasone +44220011000036105 Ogen 1.25 mg uncoated tablet, 7, bottle 56973 41696011000036107 Ogen 1.25 mg uncoated tablet, 7 6119011000036101 Ogen 1.25 mg uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46513011000036108 oestrone sulfate sodium 1.25 mg tablet, 7 22745011000036102 oestrone sulfate sodium 1.25 mg tablet 21299011000036103 oestrone sulfate sodium +963031000168103 Arflox 750 mg film-coated tablet, 14, blister pack 92366 963021000168101 Arflox 750 mg film-coated tablet, 14 962951000168104 Arflox 750 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +79070011000036107 Ramipril (Apo) 1.25 mg tablet, 30, blister pack 150878 78849011000036101 Ramipril (Apo) 1.25 mg tablet, 30 78655011000036109 Ramipril (Apo) 1.25 mg tablet 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +19803011000036100 Telfast 120 mg film-coated tablet, 30, blister pack 63339 13060011000036106 Telfast 120 mg film-coated tablet, 30 6344011000036100 Telfast 120 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +69302011000036101 Parachoc 2.5 mL/5 mL oral liquid emulsion, 400 mL, bottle 20865 67102011000036102 Parachoc 2.5 mL/5 mL oral liquid emulsion, 400 mL 65306011000036108 Parachoc 2.5 mL/5 mL oral liquid emulsion, 5 mL 64944011000036106 Parachoc 64944011000036106 Parachoc 71670011000036106 liquid paraffin 2.5 mL/5 mL oral liquid, 400 mL 70118011000036107 liquid paraffin 2.5 mL/5 mL oral liquid 33623011000036103 liquid paraffin +663251000168102 Onsetron 8 mg/4 mL injection solution, 5 x 4 mL ampoules 205589 663241000168104 Onsetron 8 mg/4 mL injection solution, 5 x 4 mL ampoules 5547011000036106 Onsetron 8 mg/4 mL injection solution, 4 mL ampoule 7751000168109 Onsetron 7751000168109 Onsetron 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +18363011000036103 Pulmicort Turbuhaler 400 microgram/actuation powder for inhalation, 200 actuations, dry powder inhaler 10064 11152011000036104 Pulmicort Turbuhaler 400 microgram/actuation powder for inhalation, 200 actuations 5922011000036101 Pulmicort Turbuhaler 400 microgram/actuation powder for inhalation, actuation 53431000168105 Pulmicort Turbuhaler 53431000168105 Pulmicort Turbuhaler 26540011000036106 budesonide 400 microgram/actuation powder for inhalation, 200 actuations 21949011000036108 budesonide 400 microgram/actuation powder for inhalation, actuation 21307011000036104 budesonide +85033011000036107 Paroxo 20 mg film-coated tablet, 30, blister pack 152489 84898011000036104 Paroxo 20 mg film-coated tablet, 30 84788011000036102 Paroxo 20 mg film-coated tablet 84767011000036100 Paroxo 84767011000036100 Paroxo 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +963011000168108 Arflox 750 mg film-coated tablet, 10, blister pack 92366 963001000168105 Arflox 750 mg film-coated tablet, 10 962951000168104 Arflox 750 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +878031000168109 Valsartan HCTZ 160/25 (Blooms The Chemist) film-coated tablet, 28, blister pack 222291 878021000168106 Valsartan HCTZ 160/25 (Blooms The Chemist) film-coated tablet, 28 878011000168104 Valsartan HCTZ 160/25 (Blooms The Chemist) film-coated tablet 878001000168102 Valsartan HCTZ 160/25 (Blooms The Chemist) 878001000168102 Valsartan HCTZ 160/25 (Blooms The Chemist) 46963011000036104 valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 45360011000036103 valsartan 160 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +43825011000036108 Simvastatin (DP) 80 mg film-coated tablet, 100, bottle 125784 41328011000036109 Simvastatin (DP) 80 mg film-coated tablet, 100 5319011000036109 Simvastatin (DP) 80 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46250011000036104 simvastatin 80 mg tablet, 100 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +1001701000168103 Daivonex 0.005% cream, 100 g, tube 57354 1001691000168103 Daivonex 0.005% cream, 100 g 6133011000036105 Daivonex 0.005% cream 30251000168107 Daivonex 30251000168107 Daivonex 1001681000168101 calcipotriol 0.005% cream, 100 g 22738011000036109 calcipotriol 0.005% cream 21829011000036100 calcipotriol +1118431000168102 Quetin 300 mg film-coated tablet, 20, blister pack 204827 1118421000168100 Quetin 300 mg film-coated tablet, 20 1118411000168107 Quetin 300 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +131331000036101 Remifentanil (DBL) 1 mg powder for injection, 5 vials 195553 128391000036108 Remifentanil (DBL) 1 mg powder for injection, 5 vials 124921000036100 Remifentanil (DBL) 1 mg powder for injection, vial 123771000036102 Remifentanil (DBL) 123771000036102 Remifentanil (DBL) 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +19331011000036105 Anzatax 150 mg/25 mL concentrated injection, 25 mL vial 50577 12619011000036103 Anzatax 150 mg/25 mL concentrated injection, 25 mL vial 5281011000036102 Anzatax 150 mg/25 mL concentrated injection, 25 mL vial 3081011000036102 Anzatax 3081011000036102 Anzatax 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +771301000168105 Ibimicyn 500 mg powder for injection, 10 vials 92839 771291000168109 Ibimicyn 500 mg powder for injection, 10 vials 7311011000036109 Ibimicyn 500 mg powder for injection, 500 mg vial 3348011000036101 Ibimicyn 3348011000036101 Ibimicyn 771281000168106 ampicillin 500 mg injection, 10 vials 23406011000036103 ampicillin 500 mg injection, vial 21671011000036106 ampicillin +19561011000036104 Chloromycetin 0.5% ear drops solution, 5 mL, bottle 57082 12832011000036105 Chloromycetin 0.5% ear drops solution, 5 mL 6123011000036108 Chloromycetin 0.5% ear drops solution 3326011000036102 Chloromycetin 3326011000036102 Chloromycetin 27385011000036106 chloramphenicol 0.5% ear drops, 5 mL 22734011000036102 chloramphenicol 0.5% ear drops 21330011000036107 chloramphenicol +110791000036102 Oxytocin (Sandoz) 10 units/mL injection solution, 5 x 1 mL ampoules 162499 109031000036105 Oxytocin (Sandoz) 10 units/mL injection solution, 5 x 1 mL ampoules 106751000036106 Oxytocin (Sandoz) 10 units/mL injection solution, ampoule 106661000036103 Oxytocin (Sandoz) 106661000036103 Oxytocin (Sandoz) 38686011000036102 oxytocin 10 units/mL injection, 5 x 1 mL ampoules 37925011000036105 oxytocin 10 units/mL injection, ampoule 37765011000036106 oxytocin +1039201000168103 Atorvastatin (GA) 40 mg film-coated tablet, 20, blister pack 178532 1039191000168101 Atorvastatin (GA) 40 mg film-coated tablet, 20 1039161000168108 Atorvastatin (GA) 40 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841671000168109 atorvastatin 40 mg tablet, 20 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +61112011000036102 Lemsip Max Flu Strength Daytime powder for oral liquid, 10 sachets 71939 57055011000036105 Lemsip Max Flu Strength Daytime powder for oral liquid, 10 sachets 54176011000036100 Lemsip Max Flu Strength Daytime powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63718011000036101 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 10 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +43583011000036100 Simvastatin (DP) 80 mg film-coated tablet, 180, bottle 125784 41329011000036101 Simvastatin (DP) 80 mg film-coated tablet, 180 5319011000036109 Simvastatin (DP) 80 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46251011000036106 simvastatin 80 mg tablet, 180 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +69544011000036104 Brevoxyl 4% cream, 10 g, tube 58220 67344011000036105 Brevoxyl 4% cream, 10 g 65621011000036103 Brevoxyl 4% cream 65066011000036106 Brevoxyl 65066011000036106 Brevoxyl 71889011000036103 benzoyl peroxide 4% cream, 10 g 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +69593011000036109 Arthro-Aid 750 mg hard capsule, 60, bottle 68083 67392011000036107 Arthro-Aid 750 mg hard capsule, 60 65644011000036102 Arthro-Aid 750 mg hard capsule 65140011000036106 Arthro-Aid 65140011000036106 Arthro-Aid 71927011000036107 glucosamine hydrochloride 750 mg capsule, 60 70251011000036108 glucosamine hydrochloride 750 mg capsule 69813011000036107 glucosamine +131561000036104 Rostor 5 mg film-coated tablet, 30, blister pack 196997 128541000036108 Rostor 5 mg film-coated tablet, 30 124371000036100 Rostor 5 mg film-coated tablet 123991000036100 Rostor 123991000036100 Rostor 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +60668011000036106 Panadol Gel Cap 500 mg gelatin coated tablet, 20, blister pack 40932 56626011000036109 Panadol Gel Cap 500 mg gelatin coated tablet, 20 54014011000036106 Panadol Gel Cap 500 mg gelatin coated tablet 3661000168107 Panadol Gel Cap 3661000168107 Panadol Gel Cap 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +17968011000036108 Metforbell 850 mg film-coated tablet, 60, blister pack 125482 11801011000036105 Metforbell 850 mg film-coated tablet, 60 4860011000036109 Metforbell 850 mg film-coated tablet 2935011000036108 Metforbell 2935011000036108 Metforbell 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +77243011000036103 Ozidal 2 mg film-coated tablet, 60, blister pack 148968 76659011000036101 Ozidal 2 mg film-coated tablet, 60 76095011000036100 Ozidal 2 mg film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +664211000168101 Midazolam (Act) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 207247 664201000168104 Midazolam (Act) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 664161000168109 Midazolam (Act) 5 mg/5 mL injection solution, 5 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +1088001000168109 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet, 100, blister pack 283261 1087991000168100 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet, 100 1087921000168102 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet 1087911000168109 Ferrous Fumarate (GPPL) 1087911000168109 Ferrous Fumarate (GPPL) 1087981000168103 ferrous fumarate 200 mg (iron 65.7 mg) tablet, 100 933220681000036107 ferrous fumarate 200 mg (iron 65.7 mg) tablet 933232111000036107 ferrous fumarate +68875011000036101 Chlorhexidine Gluconate (Pfizer (Perth)) 0.1% irrigation solution, 30 mL ampoule 11175 66592011000036105 Chlorhexidine Gluconate (Pfizer (Perth)) 0.1% irrigation solution, 30 mL ampoule 65204011000036108 Chlorhexidine Gluconate (Pfizer (Perth)) 0.1% irrigation solution, 30 mL ampoule 65148011000036108 Chlorhexidine Gluconate (Pfizer (Perth)) 65148011000036108 Chlorhexidine Gluconate (Pfizer (Perth)) 71315011000036104 chlorhexidine gluconate 0.1% solution, 30 mL ampoule 69946011000036104 chlorhexidine gluconate 0.1% solution, ampoule 21404011000036101 chlorhexidine +926785011000036105 Medipulv dusting powder, 25 g, tube 16129 926181011000036102 Medipulv dusting powder, 25 g 925660011000036108 Medipulv dusting powder 925548011000036106 Medipulv 925548011000036106 Medipulv 927335011000036102 chlorhexidine hydrochloride 1% + hexamidine isetionate 0.15% + allantoin 0.25% dusting powder, 25 g 926993011000036100 chlorhexidine hydrochloride 1% + hexamidine isetionate 0.15% + allantoin 0.25% dusting powder 926969011000036104 chlorhexidine + hexamidine + allantoin +828861000168106 Glivec 100 mg hard capsule, 48, blister pack 78442 828851000168109 Glivec 100 mg hard capsule, 48 828801000168105 Glivec 100 mg hard capsule 3084011000036104 Glivec 3084011000036104 Glivec 828841000168107 imatinib 100 mg capsule, 48 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +923859011000036109 Hydroxo-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 161606 923405011000036106 Hydroxo-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 923069011000036100 Hydroxo-B12 1 mg/mL injection solution, ampoule 922936011000036100 Hydroxo-B12 922936011000036100 Hydroxo-B12 26736011000036106 hydroxocobalamin 1 mg/mL injection, 3 x 1 mL ampoules 22131011000036106 hydroxocobalamin 1 mg/mL injection, ampoule 21828011000036108 hydroxocobalamin +73731000036109 Zinopril 10 mg uncoated tablet, 30, blister pack 152717 71471000036104 Zinopril 10 mg uncoated tablet, 30 70241000036101 Zinopril 10 mg uncoated tablet 69281000036107 Zinopril 69281000036107 Zinopril 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +25031000036109 Atorvastatin (Apo) 10 mg film-coated tablet, 30, bottle 153727 22191000036104 Atorvastatin (Apo) 10 mg film-coated tablet, 30 19931000036103 Atorvastatin (Apo) 10 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1070821000168104 Analgesic Calmative (Trust) uncoated tablet, 12, blister pack 217762 1070811000168106 Analgesic Calmative (Trust) uncoated tablet, 12 1070341000168100 Analgesic Calmative (Trust) uncoated tablet 1070331000168109 Analgesic Calmative (Trust) 1070331000168109 Analgesic Calmative (Trust) 63866011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 12 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +20780011000036105 Cortic-DS 1% cream, 50 g, tube 91051 13949011000036100 Cortic-DS 1% cream, 50 g 7236011000036102 Cortic-DS 1% cream 16801000168104 Cortic-DS 16801000168104 Cortic-DS 28030011000036103 hydrocortisone acetate 1% cream, 50 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +831281000168106 Priorix-Tetra powder for injection, 10 vials 107284 831271000168108 Priorix-Tetra powder for injection, 10 vials 831191000168101 Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831261000168102 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, 10 vials 831181000168104 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +747701000168101 Morphine MR (SCP) 100 mg modified release tablet, 60, blister pack 225424 747691000168101 Morphine MR (SCP) 100 mg modified release tablet, 60 747641000168109 Morphine MR (SCP) 100 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 35168011000036109 morphine sulfate pentahydrate 100 mg modified release tablet, 60 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +946631000168109 Risdone 6 mg film-coated tablet, 10, blister pack 144289 946621000168106 Risdone 6 mg film-coated tablet, 10 946571000168108 Risdone 6 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946611000168104 risperidone 6 mg tablet, 10 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +60426011000036100 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 12 sachets 146071 56385011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 12 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63331011000036102 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 12 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +933231231000036104 Oxaliplatin (Sun) 200 mg/40 mL concentrated injection, 40 mL vial 173350 933225301000036104 Oxaliplatin (Sun) 200 mg/40 mL concentrated injection, 40 mL vial 933220521000036105 Oxaliplatin (Sun) 200 mg/40 mL concentrated injection, 40 mL vial 933219361000036108 Oxaliplatin (Sun) 933219361000036108 Oxaliplatin (Sun) 26784011000036105 oxaliplatin 200 mg/40 mL injection, 40 mL vial 22170011000036101 oxaliplatin 200 mg/40 mL injection, vial 21543011000036101 oxaliplatin +79087011000036100 Sodium Chloride (B Braun) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bottle 98312 78881011000036107 Sodium Chloride (B Braun) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bottle 78684011000036104 Sodium Chloride (B Braun) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bottle 78605011000036104 Sodium Chloride (B Braun) 78605011000036104 Sodium Chloride (B Braun) 79247011000036101 sodium chloride 0.9% (2.25 g/250 mL) injection, 250 mL bottle 79120011000036102 sodium chloride 0.9% (2.25 g/250 mL) injection, bottle 21308011000036103 sodium chloride +19005011000036100 Prinivil 10 mg uncoated tablet, 30, blister pack 34378 12312011000036100 Prinivil 10 mg uncoated tablet, 30 5026011000036109 Prinivil 10 mg uncoated tablet 3191011000036109 Prinivil 3191011000036109 Prinivil 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +1032311000168100 Questran Lite 8 g powder for oral liquid, 50 sachets 11971 1032301000168103 Questran Lite 8 g powder for oral liquid, 50 sachets 1032291000168104 Questran Lite 8 g powder for oral liquid, 9.4 g sachet 35521000168109 Questran Lite 35521000168109 Questran Lite 82982011000036102 colestyramine 8 g powder for oral liquid, 50 sachets 82920011000036106 colestyramine 8 g powder for oral liquid, 9.4 g sachet 21442011000036101 colestyramine +995901000168108 Difflam Lozenge Raspberry Sugar Free lozenge, 16, blister pack 280644 995891000168109 Difflam Lozenge Raspberry Sugar Free lozenge, 16 995881000168106 Difflam Lozenge Raspberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +995901000168108 Difflam Lozenge Raspberry Sugar Free lozenge, 16, blister pack 51468 995891000168109 Difflam Lozenge Raspberry Sugar Free lozenge, 16 995881000168106 Difflam Lozenge Raspberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +938291000168106 Kevtam-1000 1 g film-coated tablet, 10, blister pack 278841 938281000168108 Kevtam-1000 1 g film-coated tablet, 10 938271000168105 Kevtam-1000 1 g film-coated tablet 938261000168104 Kevtam-1000 938261000168104 Kevtam-1000 46173011000036108 levetiracetam 1 g tablet, 10 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +1105361000168105 Quetiapine (CH) 300 mg film-coated tablet, 20, blister pack 172848 1105351000168108 Quetiapine (CH) 300 mg film-coated tablet, 20 1104451000168101 Quetiapine (CH) 300 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +69526011000036105 Sodium Chloride (Baxter) 0.9% (18 g/2 L) irrigation solution, 4 x 2 L bags 54587 67326011000036104 Sodium Chloride (Baxter) 0.9% (18 g/2 L) irrigation solution, 4 x 2 L bags 65612011000036104 Sodium Chloride (Baxter) 0.9% (18 g/2 L) irrigation solution, 2 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71871011000036105 sodium chloride 0.9% (18 g/2 L) solution, 4 x 2 L bags 70225011000036109 sodium chloride 0.9% (18 g/2 L) solution, bag 21308011000036103 sodium chloride +44519011000036102 Napamide 2.5 mg film-coated tablet, 60, bottle 77359 41973011000036109 Napamide 2.5 mg film-coated tablet, 60 6069011000036107 Napamide 2.5 mg film-coated tablet 4110011000036104 Napamide 4110011000036104 Napamide 46752011000036106 indapamide hemihydrate 2.5 mg tablet, 60 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +933213971000036103 Citalopram (Auro) 10 mg film-coated tablet, 30, bottle 153675 933201961000036108 Citalopram (Auro) 10 mg film-coated tablet, 30 933194921000036102 Citalopram (Auro) 10 mg film-coated tablet 12311000168107 Citalopram (Auro) 12311000168107 Citalopram (Auro) 933201971000036100 citalopram 10 mg tablet, 30 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +925362011000036102 Lisinopril (DM) 5 mg uncoated tablet, 30, blister pack 76045 924898011000036108 Lisinopril (DM) 5 mg uncoated tablet, 30 924540011000036102 Lisinopril (DM) 5 mg uncoated tablet 924402011000036101 Lisinopril (DM) 924402011000036101 Lisinopril (DM) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +61216011000036101 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet, 12, blister pack 76460 57152011000036107 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet, 12 54218011000036105 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet 53596011000036104 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 53596011000036104 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +44802011000036105 Vytorin 10/20 uncoated tablet, 10, blister pack 98111 42236011000036101 Vytorin 10/20 uncoated tablet, 10 40399011000036102 Vytorin 10/20 uncoated tablet 36271000168101 Vytorin 10/20 36271000168101 Vytorin 10/20 46992011000036109 ezetimibe 10 mg + simvastatin 20 mg tablet, 10 45368011000036101 ezetimibe 10 mg + simvastatin 20 mg tablet 21565011000036108 ezetimibe + simvastatin +1030441000168109 Atomoxetine (Genpar) 18 mg hard capsule, 56, blister pack 234845 1030431000168100 Atomoxetine (Genpar) 18 mg hard capsule, 56 1030341000168102 Atomoxetine (Genpar) 18 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830391000168106 atomoxetine 18 mg capsule, 56 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +135901000036106 Montelukast (Pharmacor) 5 mg chewable tablet, 28, blister pack 184826 135181000036102 Montelukast (Pharmacor) 5 mg chewable tablet, 28 134361000036105 Montelukast (Pharmacor) 5 mg chewable tablet 134131000036102 Montelukast (Pharmacor) 134131000036102 Montelukast (Pharmacor) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +818351000168109 Advagraf XL 500 microgram modified release capsule, 50, blister pack 269212 818341000168107 Advagraf XL 500 microgram modified release capsule, 50 818261000168102 Advagraf XL 500 microgram modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 818331000168103 tacrolimus 500 microgram modified release capsule, 50 922098011000036104 tacrolimus 500 microgram modified release capsule 21380011000036104 tacrolimus +1015311000168100 Aripiprazole (Medis) 5 mg uncoated tablet, 100, bottle 217194 1015301000168103 Aripiprazole (Medis) 5 mg uncoated tablet, 100 1015291000168104 Aripiprazole (Medis) 5 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +20273011000036103 Zyban SR 150 mg modified release tablet, 90, blister pack 75233 13483011000036109 Zyban SR 150 mg modified release tablet, 90 6765011000036108 Zyban SR 150 mg modified release tablet 58481000168104 Zyban SR 58481000168104 Zyban SR 27772011000036106 bupropion hydrochloride 150 mg modified release tablet, 90 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +44560011000036109 Cervidil 10 mg pessary, 5, sachet 81391 42013011000036105 Cervidil 10 mg pessary, 5 40321011000036109 Cervidil 10 mg pessary 39742011000036104 Cervidil 39742011000036104 Cervidil 46786011000036100 dinoprostone 10 mg pessary, 5 45316011000036101 dinoprostone 10 mg pessary 37724011000036100 dinoprostone +928939011000036100 Topiramate (Generic Health) 200 mg film-coated tablet, 60, bottle 155184 928300011000036107 Topiramate (Generic Health) 200 mg film-coated tablet, 60 927929011000036109 Topiramate (Generic Health) 200 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +926669011000036100 Zelitrex 500 mg film-coated tablet, 100, blister pack 128739 926141011000036109 Zelitrex 500 mg film-coated tablet, 100 925639011000036108 Zelitrex 500 mg film-coated tablet 925537011000036106 Zelitrex 925537011000036106 Zelitrex 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +661721000168101 Topiramate (GH) 50 mg film-coated tablet, 60, bottle 135790 661711000168108 Topiramate (GH) 50 mg film-coated tablet, 60 661701000168105 Topiramate (GH) 50 mg film-coated tablet 661591000168106 Topiramate (GH) 661591000168106 Topiramate (GH) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +61628011000036106 Nurofen Migraine Pain 200 mg film-coated tablet, 6, blister pack 96215 57550011000036104 Nurofen Migraine Pain 200 mg film-coated tablet, 6 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +39377011000036102 Bicalutamide (GA) 50 mg film-coated tablet, 56, blister pack 129115 39261011000036109 Bicalutamide (GA) 50 mg film-coated tablet, 56 39216011000036100 Bicalutamide (GA) 50 mg film-coated tablet 39181011000036109 Bicalutamide (GA) 39181011000036109 Bicalutamide (GA) 39464011000036108 bicalutamide 50 mg tablet, 56 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +869491000168102 Amitriptyline (Mylan) 50 mg film-coated tablet, 10, blister pack 232801 869481000168100 Amitriptyline (Mylan) 50 mg film-coated tablet, 10 866871000168107 Amitriptyline (Mylan) 50 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +685481000168109 Cefoxitin (Hospira) 1 g powder for injection, 5 vials 168090 685471000168106 Cefoxitin (Hospira) 1 g powder for injection, 5 vials 685461000168100 Cefoxitin (Hospira) 1 g powder for injection, vial 685451000168102 Cefoxitin (Hospira) 685451000168102 Cefoxitin (Hospira) 46409011000036100 cefoxitin 1 g injection, 5 vials 45139011000036106 cefoxitin 1 g injection, vial 44864011000036100 cefoxitin +897581000168106 Naloxone (Juno) 400 microgram/mL injection solution, 5 x 1 mL ampoules 236005 897571000168108 Naloxone (Juno) 400 microgram/mL injection solution, 5 x 1 mL ampoules 897491000168105 Naloxone (Juno) 400 microgram/mL injection solution, ampoule 893621000168100 Naloxone (Juno) 893621000168100 Naloxone (Juno) 897561000168102 naloxone hydrochloride dihydrate 400 microgram/mL injection, 5 x 1 mL ampoules 897481000168107 naloxone hydrochloride dihydrate 400 microgram/mL injection, ampoule 33627011000036107 naloxone +985081000168103 Zyvox 400 mg/200 mL injection solution, 200 mL bag 79689 985071000168101 Zyvox 400 mg/200 mL injection solution, 200 mL bag 985051000168105 Zyvox 400 mg/200 mL injection solution, 200 mL bag 39746011000036100 Zyvox 39746011000036100 Zyvox 985061000168107 linezolid 400 mg/200 mL injection, 200 mL bag 985041000168108 linezolid 400 mg/200 mL injection, bag 44888011000036109 linezolid +659551000168106 Candesartan Cilexetil HCTZ 16/12.5 (AN) uncoated tablet, 30, bottle 196419 659541000168109 Candesartan Cilexetil HCTZ 16/12.5 (AN) uncoated tablet, 30 659531000168100 Candesartan Cilexetil HCTZ 16/12.5 (AN) uncoated tablet 659521000168103 Candesartan Cilexetil HCTZ 16/12.5 (AN) 659521000168103 Candesartan Cilexetil HCTZ 16/12.5 (AN) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +936121000168104 Xylocard-1000 10% (1 g/10 mL) concentrated injection, 5 x 10 mL ampoules 12035 936111000168106 Xylocard-1000 10% (1 g/10 mL) concentrated injection, 5 x 10 mL ampoules 936091000168103 Xylocard-1000 10% (1 g/10 mL) concentrated injection, 10 mL ampoule 936071000168104 Xylocard-1000 936071000168104 Xylocard-1000 936101000168108 lidocaine (lignocaine) hydrochloride 10% (1 g/10 mL) injection, 5 x 10 mL ampoules 936081000168101 lidocaine (lignocaine) hydrochloride 10% (1 g/10 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +1083751000168104 Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL, pump pack 73775 74395011000036107 Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL 73918011000036106 Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray 33711000168109 Vicks Sinex 12 Hour Ultra Fine Mist 33711000168109 Vicks Sinex 12 Hour Ultra Fine Mist 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +52767011000036108 Fluvax Junior 2009 injection suspension, 1 x 0.25 mL syringe 149127 52577011000036103 Fluvax Junior 2009 injection suspension, 1 x 0.25 mL syringe 52426011000036108 Fluvax Junior 2009 injection suspension, 0.25 mL syringe 9191000168108 Fluvax Junior 2009 9191000168108 Fluvax Junior 2009 52906011000036101 influenza trivalent child vaccine 2009 injection, 1 x 0.25 mL syringe 52814011000036103 influenza trivalent child vaccine 2009 injection, 0.25 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +60717011000036101 Claratyne Children's Peach 1 mg/mL oral liquid solution, 50 mL, bottle 44453 56675011000036103 Claratyne Children's Peach 1 mg/mL oral liquid solution, 50 mL 54028011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63502011000036101 loratadine 1 mg/mL oral liquid, 50 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +37349011000036102 Cymbalta 60 mg enteric capsule, 28, blister pack 120389 36699011000036101 Cymbalta 60 mg enteric capsule, 28 36155011000036107 Cymbalta 60 mg enteric capsule 35918011000036106 Cymbalta 35918011000036106 Cymbalta 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +37961000036109 Escitalopram (Lupin) 5 mg film-coated tablet, 250, bottle 165825 34271000036104 Escitalopram (Lupin) 5 mg film-coated tablet, 250 32931000036101 Escitalopram (Lupin) 5 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +1088041000168106 Betahistine (Mylan) 16 mg uncoated tablet, 25, blister pack 286806 1088031000168102 Betahistine (Mylan) 16 mg uncoated tablet, 25 1088021000168100 Betahistine (Mylan) 16 mg uncoated tablet 1088011000168107 Betahistine (Mylan) 1088011000168107 Betahistine (Mylan) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +135741000036107 Saflutan 0.0015% eye drops, 30 x 0.3 mL unit doses, ampoule 168803 134981000036101 Saflutan 0.0015% eye drops, 30 x 0.3 mL unit doses 134331000036104 Saflutan 0.0015% eye drops, 0.3 mL unit dose 134111000036106 Saflutan 134111000036106 Saflutan 134991000036104 tafluprost 0.0015% eye drops, 30 x 0.3 mL unit doses 134341000036109 tafluprost 0.0015% eye drops, unit dose 135991000036103 tafluprost +869451000168107 Eplerenone (AN) 50 mg film-coated tablet, 120, blister pack 231455 869441000168105 Eplerenone (AN) 50 mg film-coated tablet, 120 869331000168107 Eplerenone (AN) 50 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 790671000168105 eplerenone 50 mg tablet, 120 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +895431000168101 Olmesartan (Apotex) 40 mg film-coated tablet, 30, blister pack 201835 895421000168104 Olmesartan (Apotex) 40 mg film-coated tablet, 30 895411000168106 Olmesartan (Apotex) 40 mg film-coated tablet 895371000168105 Olmesartan (Apotex) 895371000168105 Olmesartan (Apotex) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +933239911000036102 Simvacor 20 mg film-coated tablet, 30, blister pack 182907 933236481000036106 Simvacor 20 mg film-coated tablet, 30 933234861000036108 Simvacor 20 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +931693011000036103 Soldara 5% cream, 24 x 250 mg sachets 170201 930853011000036106 Soldara 5% cream, 24 x 250 mg sachets 930072011000036103 Soldara 5% cream, 250 mg sachet 929829011000036105 Soldara 929829011000036105 Soldara 932453011000036107 imiquimod 5% cream, 24 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +865151000168102 Amitriptyline (CH) 25 mg tablet, 10, blister pack 232124 865141000168104 Amitriptyline (CH) 25 mg tablet, 10 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +996221000168102 Duro-Tuss Dry Cough Lozenge lemon lozenge, 24, blister pack 53808 996211000168109 Duro-Tuss Dry Cough Lozenge lemon lozenge, 24 996161000168101 Duro-Tuss Dry Cough Lozenge lemon lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 996201000168106 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 996151000168103 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge 61757011000036101 pholcodine + cetylpyridinium +923910011000036102 Stomex 20 mg film-coated tablet, 10, blister pack 167376 923454011000036100 Stomex 20 mg film-coated tablet, 10 923089011000036102 Stomex 20 mg film-coated tablet 922909011000036104 Stomex 922909011000036104 Stomex 924213011000036109 hyoscine butylbromide 20 mg tablet, 10 923994011000036108 hyoscine butylbromide 20 mg tablet 21580011000036102 hyoscine butylbromide +110541000036103 Cutan Alcohol Foam Antiseptic Handrub 60% solution, 400 mL, pump pack 159546 109111000036100 Cutan Alcohol Foam Antiseptic Handrub 60% solution, 400 mL 107471000036107 Cutan Alcohol Foam Antiseptic Handrub 60% solution 46821000168100 Cutan Alcohol Foam Antiseptic Handrub 46821000168100 Cutan Alcohol Foam Antiseptic Handrub 109121000036107 ethanol 60% solution, 400 mL 107481000036109 ethanol 60% solution 69846011000036106 ethanol +753961000168107 Xedone 5 mg hard capsule, 60, blister pack 227836 753951000168105 Xedone 5 mg hard capsule, 60 753891000168107 Xedone 5 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +1030301000168104 Atilos 30 mg uncoated tablet, 50, blister pack 173477 1030291000168100 Atilos 30 mg uncoated tablet, 50 1030211000168109 Atilos 30 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929263011000036107 pioglitazone 30 mg tablet, 50 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +39331000036107 Oxaliplatin (Pharmacor) 100 mg/20 mL concentrated injection, 20 mL vial 169424 35791000036106 Oxaliplatin (Pharmacor) 100 mg/20 mL concentrated injection, 20 mL vial 32841000036101 Oxaliplatin (Pharmacor) 100 mg/20 mL concentrated injection, 20 mL vial 32311000036109 Oxaliplatin (Pharmacor) 32311000036109 Oxaliplatin (Pharmacor) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +87637011000036107 Levetiracetam (Generic Health) 250 mg film-coated tablet, 60, blister pack 159047 87469011000036109 Levetiracetam (Generic Health) 250 mg film-coated tablet, 60 87329011000036105 Levetiracetam (Generic Health) 250 mg film-coated tablet 87283011000036108 Levetiracetam (Generic Health) 87283011000036108 Levetiracetam (Generic Health) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +694071000168102 Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll, carton 694061000168108 Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll 694051000168106 Leukosilk (1021) 1.25 cm x 5 m tape 6171000168104 Leukosilk (1021) 6171000168104 Leukosilk (1021) 689311000168105 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll 689291000168106 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape 50731011000036104 tape plaster adhesive hypoallergenic +176931000036109 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack, blister pack 203687 175141000036108 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack 173251000036103 Rosuvastatin (MSD) 40 mg film-coated tablet 172661000036105 Rosuzet Composite Pack 172631000036104 Rosuvastatin (MSD) 175151000036106 ezetimibe 10 mg tablet [30] (&) rosuvastatin 40 mg tablet [30], 1 pack 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +176931000036109 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack, blister pack 203687 175141000036108 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 172661000036105 Rosuzet Composite Pack 3589011000036101 Ezetrol 175151000036106 ezetimibe 10 mg tablet [30] (&) rosuvastatin 40 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +1032391000168109 Atomoxetine (GXP) 60 mg hard capsule, 28, blister pack 234824 1032381000168106 Atomoxetine (GXP) 60 mg hard capsule, 28 1032331000168105 Atomoxetine (GXP) 60 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +35635011000036109 Poly Visc 1 g/g eye ointment, 3.5 g, tube 35562011000036103 Poly Visc 1 g/g eye ointment, 3.5 g 35479011000036105 Poly Visc 1 g/g eye ointment 35420011000036100 Poly Visc 35420011000036100 Poly Visc 35762011000036104 paraffin 1 g/g eye ointment, 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +961801000168102 Bisoprolol (Apo) 1.25 mg tablet, 30, blister pack 182108 961791000168103 Bisoprolol (Apo) 1.25 mg tablet, 30 961571000168109 Bisoprolol (Apo) 1.25 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 46791011000036109 bisoprolol fumarate 1.25 mg tablet, 30 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1015271000168100 Aripiprazole (ZP) 2 mg uncoated tablet, 30, blister pack 217199 1015261000168106 Aripiprazole (ZP) 2 mg uncoated tablet, 30 1015251000168109 Aripiprazole (ZP) 2 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +754041000168105 Xedone 5 mg hard capsule, 60, bottle 227839 753951000168105 Xedone 5 mg hard capsule, 60 753891000168107 Xedone 5 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +938131000168102 Tevatiapine XR 50 mg modified release tablet, 60, blister pack 249712 938121000168100 Tevatiapine XR 50 mg modified release tablet, 60 938111000168107 Tevatiapine XR 50 mg modified release tablet 938101000168109 Tevatiapine XR 938101000168109 Tevatiapine XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +719741000168100 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 10 x 1.5 mL cartridges 224623 719731000168109 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 10 x 1.5 mL cartridges 719641000168105 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 719721000168106 somatropin 10 mg/1.5 mL injection, 10 x 1.5 mL cartridges 23613011000036108 somatropin 10 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +52193011000036108 Clarithromycin (Apo) 250 mg film-coated tablet, 100, blister pack 134850 52085011000036103 Clarithromycin (Apo) 250 mg film-coated tablet, 100 51983011000036107 Clarithromycin (Apo) 250 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1006731000168100 Ibuprofen (Apo) 400 mg film-coated tablet, 30, blister pack 289218 1006721000168103 Ibuprofen (Apo) 400 mg film-coated tablet, 30 1006671000168106 Ibuprofen (Apo) 400 mg film-coated tablet 1006661000168100 Ibuprofen (Apo) 1006661000168100 Ibuprofen (Apo) 27938011000036102 ibuprofen 400 mg tablet, 30 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +44012011000036109 Cardizem CD 240 mg modified release capsule, 30, bottle 46825 12487011000036105 Cardizem CD 240 mg modified release capsule, 30 5362011000036103 Cardizem CD 240 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +18037011000036103 Provera 250 mg uncoated tablet, 60, blister pack 12334 11735011000036103 Provera 250 mg uncoated tablet, 60 4484011000036105 Provera 250 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 26756011000036107 medroxyprogesterone acetate 250 mg tablet, 60 22143011000036108 medroxyprogesterone acetate 250 mg tablet 21378011000036107 medroxyprogesterone +944621000168104 Risperidone (GenRx) 500 microgram film-coated tablet, 20, blister pack 127556 944611000168106 Risperidone (GenRx) 500 microgram film-coated tablet, 20 944601000168108 Risperidone (GenRx) 500 microgram film-coated tablet 943311000168103 Risperidone (GenRx) 943311000168103 Risperidone (GenRx) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +715451000168108 Clozole (Chemists' Own) 2% vaginal cream, 20 g, tube 115389 715441000168106 Clozole (Chemists' Own) 2% vaginal cream, 20 g 715431000168102 Clozole (Chemists' Own) 2% vaginal cream 53325011000036101 Clozole (Chemists' Own) 53325011000036101 Clozole (Chemists' Own) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +664051000168108 Midazolam (Act) 5 mg/mL injection solution, 5 x 1 mL ampoules 207224 664041000168106 Midazolam (Act) 5 mg/mL injection solution, 5 x 1 mL ampoules 664001000168109 Midazolam (Act) 5 mg/mL injection solution, ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +87686011000036100 Famciclovir (Apo) 125 mg film-coated tablet, 40, bottle 160558 87479011000036101 Famciclovir (Apo) 125 mg film-coated tablet, 40 87335011000036105 Famciclovir (Apo) 125 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +116411000036101 Rosuvastatin (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 183058 114731000036107 Rosuvastatin (Terry White Chemists) 20 mg film-coated tablet, 30 112781000036103 Rosuvastatin (Terry White Chemists) 20 mg film-coated tablet 112581000036106 Rosuvastatin (Terry White Chemists) 112581000036106 Rosuvastatin (Terry White Chemists) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +1075251000168104 Atenolol (RBX) 25 mg film-coated tablet, 50, blister pack 197757 1075231000168105 Atenolol (RBX) 25 mg film-coated tablet, 50 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029611000168104 atenolol 25 mg tablet, 50 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +931441011000036107 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 70 x 50 mL bags 144596 930620011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 70 x 50 mL bags 929976011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932376011000036109 sodium chloride 0.9% (450 mg/50 mL) injection, 70 x 50 mL bags 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +50214011000036100 Phenex-2 powder for oral liquid, 325 g, can 49496011000036101 Phenex-2 powder for oral liquid, 325 g 48705011000036101 Phenex-2 powder for oral liquid 43421000168105 Phenex-2 43421000168105 Phenex-2 51450011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 325 g 50960011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +60959011000036107 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 12, blister pack 62804 56902011000036104 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 12 54116011000036109 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet 53485011000036104 Extra Strength Pain Relief (Pharmacist) 53485011000036104 Extra Strength Pain Relief (Pharmacist) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44125011000036103 Metoclopramide Hydrochloride (AstraZeneca) 10 mg/2 mL injection solution, 50 x 2 mL ampoules 52392 41601011000036100 Metoclopramide Hydrochloride (AstraZeneca) 10 mg/2 mL injection solution, 50 x 2 mL ampoules 40093011000036104 Metoclopramide Hydrochloride (AstraZeneca) 10 mg/2 mL injection solution, 2 mL ampoule 39681011000036105 Metoclopramide Hydrochloride (AstraZeneca) 39681011000036105 Metoclopramide Hydrochloride (AstraZeneca) 46422011000036103 metoclopramide hydrochloride 10 mg/2 mL injection, 50 x 2 mL ampoules 22442011000036102 metoclopramide hydrochloride 10 mg/2 mL injection, ampoule 21569011000036105 metoclopramide +661881000168106 Bisoprolol (AN) 10 mg film-coated tablet, 28, blister pack 175917 661871000168108 Bisoprolol (AN) 10 mg film-coated tablet, 28 661861000168102 Bisoprolol (AN) 10 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +1032451000168105 Atomoxetine (GXP) 100 mg hard capsule, 7, blister pack 234825 1032441000168108 Atomoxetine (GXP) 100 mg hard capsule, 7 1032431000168104 Atomoxetine (GXP) 100 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +1096681000168107 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 70, blister pack 287308 1096671000168109 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 70 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1076321000168109 fexofenadine hydrochloride 180 mg tablet, 70 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +933231371000036108 Ferro-Tab 200 mg (iron 65.7 mg) film-coated tablet, 60, blister pack 175706 933225501000036109 Ferro-Tab 200 mg (iron 65.7 mg) film-coated tablet, 60 933220671000036105 Ferro-Tab 200 mg (iron 65.7 mg) film-coated tablet 933218891000036104 Ferro-Tab 933218891000036104 Ferro-Tab 933225511000036106 ferrous fumarate 200 mg (iron 65.7 mg) tablet, 60 933220681000036107 ferrous fumarate 200 mg (iron 65.7 mg) tablet 933232111000036107 ferrous fumarate +1070981000168106 Paracodeine with Calmative uncoated tablet, 40, blister pack 223883 1070971000168108 Paracodeine with Calmative uncoated tablet, 40 1070941000168101 Paracodeine with Calmative uncoated tablet 1070931000168105 Paracodeine with Calmative 1070931000168105 Paracodeine with Calmative 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +43551011000036106 Simvastatin (DP) 10 mg film-coated tablet, 180, bottle 125780 41323011000036104 Simvastatin (DP) 10 mg film-coated tablet, 180 4629011000036101 Simvastatin (DP) 10 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46245011000036105 simvastatin 10 mg tablet, 180 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +30691000036107 Acetylcysteine (Omegapharm) 800 mg/4 mL inhalation solution, 4 mL vial 172101 28471000036105 Acetylcysteine (Omegapharm) 800 mg/4 mL inhalation solution, 4 mL vial 26511000036101 Acetylcysteine (Omegapharm) 800 mg/4 mL inhalation solution, 4 mL vial 26341000036106 Acetylcysteine (Omegapharm) 26341000036106 Acetylcysteine (Omegapharm) 28481000036107 acetylcysteine 800 mg/4 mL inhalation solution, 4 mL vial 26531000036105 acetylcysteine 800 mg/4 mL inhalation solution, vial 21423011000036105 acetylcysteine +131491000036105 Candesartan Cilexetil HCTZ 32/12.5 (GA) uncoated tablet, 30, bottle 196436 128791000036109 Candesartan Cilexetil HCTZ 32/12.5 (GA) uncoated tablet, 30 125101000036106 Candesartan Cilexetil HCTZ 32/12.5 (GA) uncoated tablet 21311000168106 Candesartan Cilexetil HCTZ 32/12.5 (GA) 21311000168106 Candesartan Cilexetil HCTZ 32/12.5 (GA) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +681071000168104 Xigduo XR 5/1000 modified release tablet, 56, blister pack 211296 681061000168105 Xigduo XR 5/1000 modified release tablet, 56 681041000168106 Xigduo XR 5/1000 modified release tablet 681021000168100 Xigduo XR 5/1000 681021000168100 Xigduo XR 5/1000 681051000168108 dapagliflozin 5 mg + metformin hydrochloride 1 g modified release tablet, 56 681031000168102 dapagliflozin 5 mg + metformin hydrochloride 1 g modified release tablet 680901000168102 dapagliflozin + metformin +81006011000036108 Ventolin Respirator 0.5% (5 mg/mL) inhalation solution, 30 mL, bottle 12529 80488011000036107 Ventolin Respirator 0.5% (5 mg/mL) inhalation solution, 30 mL 80144011000036107 Ventolin Respirator 0.5% (5 mg/mL) inhalation solution 40451000168107 Ventolin Respirator 40451000168107 Ventolin Respirator 26630011000036104 salbutamol 0.5% (5 mg/mL) inhalation solution, 30 mL 22036011000036107 salbutamol 0.5% (5 mg/mL) inhalation solution 21493011000036100 salbutamol +920706011000036108 Ciprofloxacin (DBL) 100 mg/50 mL intravenous infusion injection, 50 x 50 mL bags 123038 920379011000036105 Ciprofloxacin (DBL) 100 mg/50 mL intravenous infusion injection, 50 x 50 mL bags 920144011000036100 Ciprofloxacin (DBL) 100 mg/50 mL intravenous infusion injection, 50 mL bag 920086011000036107 Ciprofloxacin (DBL) 920086011000036107 Ciprofloxacin (DBL) 46209011000036101 ciprofloxacin 100 mg/50 mL injection, 50 x 50 mL bags 45031011000036103 ciprofloxacin 100 mg/50 mL injection, bag 21245011000036105 ciprofloxacin +1028201000168105 Tecentriq 1.2 g/20 mL concentrated injection, 20 mL vial 277120 1028191000168107 Tecentriq 1.2 g/20 mL concentrated injection, 20 mL vial 1028171000168106 Tecentriq 1.2 g/20 mL concentrated injection, 20 mL vial 1028131000168108 Tecentriq 1028131000168108 Tecentriq 1028181000168109 atezolizumab 1.2 g/20 mL injection, 20 mL vial 1028161000168100 atezolizumab 1.2 g/20 mL injection, vial 1028151000168102 atezolizumab +1047461000168108 Buprenorphine (Sandoz) 10 microgram/hour patch, 4, sachet 269671 1047451000168106 Buprenorphine (Sandoz) 10 microgram/hour patch, 4 1047371000168109 Buprenorphine (Sandoz) 10 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046681000168103 buprenorphine 10 microgram/hour patch, 4 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +166051000036108 Peg-Intron Clearclick Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204815 164241000036105 Peg-Intron Clearclick Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162611000036100 Peg-Intron Clearclick Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46941000036109 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +166051000036108 Peg-Intron Clearclick Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204815 164241000036105 Peg-Intron Clearclick Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46941000036109 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +933213811000036101 Ciprofloxacin (IPC) 500 mg film-coated tablet, 10, blister pack 153184 933201831000036107 Ciprofloxacin (IPC) 500 mg film-coated tablet, 10 933194821000036108 Ciprofloxacin (IPC) 500 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 933199771000036102 ciprofloxacin 500 mg tablet, 10 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1006771000168102 Bimatoprost (Sandoz) 0.03% eye drops, 3 mL, bottle 234901 1006761000168108 Bimatoprost (Sandoz) 0.03% eye drops, 3 mL 1006751000168106 Bimatoprost (Sandoz) 0.03% eye drops 1006741000168109 Bimatoprost (Sandoz) 1006741000168109 Bimatoprost (Sandoz) 27937011000036103 bimatoprost 0.03% eye drops, 3 mL 23261011000036108 bimatoprost 0.03% eye drops 21297011000036105 bimatoprost +801171000168108 Midazolam (Accord) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207236 801161000168102 Midazolam (Accord) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 801111000168100 Midazolam (Accord) 5 mg/5 mL injection solution, 5 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +801171000168108 Midazolam (Accord) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207239 801161000168102 Midazolam (Accord) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 801111000168100 Midazolam (Accord) 5 mg/5 mL injection solution, 5 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +912431000168102 Cialis 2.5 mg film-coated tablet, 7, blister pack 128478 912421000168100 Cialis 2.5 mg film-coated tablet, 7 912401000168109 Cialis 2.5 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 912411000168107 tadalafil 2.5 mg tablet, 7 891231000168103 tadalafil 2.5 mg tablet 21725011000036104 tadalafil +19527011000036102 Risperdal 1 mg/mL oral liquid solution, 100 mL, bottle 56444 12799011000036105 Risperdal 1 mg/mL oral liquid solution, 100 mL 6091011000036105 Risperdal 1 mg/mL oral liquid solution 15481000168100 Risperdal 15481000168100 Risperdal 27357011000036107 risperidone 1 mg/mL oral liquid, 100 mL 22710011000036102 risperidone 1 mg/mL oral liquid 21338011000036109 risperidone +1088161000168109 Diclofenac (Catalent) 12.5 mg soft capsule, 12, blister pack 283510 1088151000168107 Diclofenac (Catalent) 12.5 mg soft capsule, 12 1088101000168108 Diclofenac (Catalent) 12.5 mg soft capsule 1088051000168108 Diclofenac (Catalent) 1088051000168108 Diclofenac (Catalent) 1088141000168105 diclofenac potassium 12.5 mg capsule, 12 1088091000168103 diclofenac potassium 12.5 mg capsule 21288011000036105 diclofenac +835371000168103 Esomeprazole (AN) 40 mg enteric tablet, 56, bottle 236437 835361000168109 Esomeprazole (AN) 40 mg enteric tablet, 56 704071000168107 Esomeprazole (AN) 40 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 774891000168107 esomeprazole 40 mg enteric tablet, 56 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1019561000168105 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 3, blister pack 175208 1019551000168108 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 3 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019541000168106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 3 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +946831000168108 Risdone 4 mg film-coated tablet, 20, blister pack 144282 946821000168105 Risdone 4 mg film-coated tablet, 20 946751000168107 Risdone 4 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 81629011000036100 risperidone 4 mg tablet, 20 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +44202011000036102 Uromitexan 400 mg film-coated tablet, 20, blister pack 56481 41678011000036100 Uromitexan 400 mg film-coated tablet, 20 40141011000036100 Uromitexan 400 mg film-coated tablet 4340011000036101 Uromitexan 4340011000036101 Uromitexan 46495011000036104 mesna 400 mg tablet, 20 45188011000036105 mesna 400 mg tablet 21302011000036101 mesna +110631000036109 Risedronate (Apo) 35 mg film-coated tablet, 8, bottle 160644 928390011000036109 Risedronate (Apo) 35 mg film-coated tablet, 8 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 929235011000036101 risedronate sodium 35 mg tablet, 8 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +865431000168104 Amitriptyline (GPPL) 10 mg tablet, 50, blister pack 232134 865421000168102 Amitriptyline (GPPL) 10 mg tablet, 50 865411000168109 Amitriptyline (GPPL) 10 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +60375011000036102 Analgesic and Calmative (Pharmacor) uncoated tablet, 10, blister pack 142715 56334011000036109 Analgesic and Calmative (Pharmacor) uncoated tablet, 10 53881011000036109 Analgesic and Calmative (Pharmacor) uncoated tablet 53305011000036105 Analgesic and Calmative (Pharmacor) 53305011000036105 Analgesic and Calmative (Pharmacor) 63865011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 10 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +79027011000036107 Lucas' Papaw 3.9% ointment, 75 g, jar 13397 78818011000036101 Lucas' Papaw 3.9% ointment, 75 g 78635011000036105 Lucas' Papaw 3.9% ointment 78612011000036105 Lucas' Papaw 78612011000036105 Lucas' Papaw 79220011000036104 pawpaw 3.9% ointment, 75 g 79106011000036109 pawpaw 3.9% ointment 79089011000036107 pawpaw +39403011000036105 Januvia 50 mg film-coated tablet, 28, blister pack 133187 39287011000036104 Januvia 50 mg film-coated tablet, 28 39201011000036108 Januvia 50 mg film-coated tablet 39185011000036106 Januvia 39185011000036106 Januvia 39484011000036106 sitagliptin 50 mg tablet, 28 39438011000036106 sitagliptin 50 mg tablet 39426011000036109 sitagliptin +59749011000036103 Negastro 2 mg tablet, 10, blister pack 101333 55659011000036102 Negastro 2 mg tablet, 10 53640011000036104 Negastro 2 mg tablet 53199011000036102 Negastro 53199011000036102 Negastro 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +68702011000036103 Nicotinell Mint 2 mg chewing gum, 168, blister pack 126043 66695011000036105 Nicotinell Mint 2 mg chewing gum, 168 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71511011000036103 nicotine 2 mg gum, 168 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +762631000168106 Indigo Carmine (DBL) 20 mg/5 mL injection solution, 5 x 5 mL ampoules 16350 762621000168108 Indigo Carmine (DBL) 20 mg/5 mL injection solution, 5 x 5 mL ampoules 762611000168101 Indigo Carmine (DBL) 20 mg/5 mL injection solution, 5 mL ampoule 762601000168104 Indigo Carmine (DBL) 762601000168104 Indigo Carmine (DBL) 78208011000036108 indigo carmine 20 mg/5 mL injection, 5 x 5 mL ampoules 77543011000036106 indigo carmine 20 mg/5 mL injection, ampoule 77462011000036103 indigo carmine +844031000168102 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 28, bottle 218069 843941000168109 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 28 843891000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1030201000168106 Atomoxetine (Genpar) 40 mg hard capsule, 28, blister pack 234833 1030191000168108 Atomoxetine (Genpar) 40 mg hard capsule, 28 1030141000168100 Atomoxetine (Genpar) 40 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1030381000168107 Atilos 30 mg uncoated tablet, 98, blister pack 173477 1030371000168109 Atilos 30 mg uncoated tablet, 98 1030211000168109 Atilos 30 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929265011000036108 pioglitazone 30 mg tablet, 98 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +1096591000168106 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 60, blister pack 287308 1096571000168105 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 60 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1077321000168107 fexofenadine hydrochloride 180 mg tablet, 60 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +19939011000036103 Triasyn 2.5/2.5 modified release tablet, 30, blister pack 67184 13183011000036105 Triasyn 2.5/2.5 modified release tablet, 30 6466011000036107 Triasyn 2.5/2.5 modified release tablet 56431000168101 Triasyn 2.5/2.5 56431000168101 Triasyn 2.5/2.5 27599011000036105 ramipril 2.5 mg + felodipine 2.5 mg modified release tablet, 30 22938011000036100 ramipril 2.5 mg + felodipine 2.5 mg modified release tablet 21249011000036107 ramipril + felodipine +1038801000168107 Oxaliplatin (AS) 100 mg powder for injection, 1 vial 178095 1038791000168106 Oxaliplatin (AS) 100 mg powder for injection, 1 vial 1038781000168108 Oxaliplatin (AS) 100 mg powder for injection, 100 mg vial 87701000036103 Oxaliplatin (AS) 87701000036103 Oxaliplatin (AS) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +19478011000036106 Paxam 2 mg uncoated tablet, 100, bottle 54847 12755011000036100 Paxam 2 mg uncoated tablet, 100 6049011000036100 Paxam 2 mg uncoated tablet 3163011000036108 Paxam 3163011000036108 Paxam 27335011000036101 clonazepam 2 mg tablet, 100 22688011000036108 clonazepam 2 mg tablet 21226011000036100 clonazepam +73891000036101 Pioglitazone (Pfizer) 30 mg uncoated tablet, 28, blister pack 176381 71581000036101 Pioglitazone (Pfizer) 30 mg uncoated tablet, 28 70401000036100 Pioglitazone (Pfizer) 30 mg uncoated tablet 69351000036109 Pioglitazone (Pfizer) 69351000036109 Pioglitazone (Pfizer) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +1049471000168106 Paramax Forte 500/30 tablet, 20, blister pack 220979 1049461000168100 Paramax Forte 500/30 tablet, 20 1049341000168106 Paramax Forte 500/30 tablet 1049251000168103 Paramax Forte 500/30 1049251000168103 Paramax Forte 500/30 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +21192011000036106 Navelbine 20 mg soft capsule, 1, blister pack 99498 14330011000036104 Navelbine 20 mg soft capsule, 1 7614011000036102 Navelbine 20 mg soft capsule 4394011000036104 Navelbine 4394011000036104 Navelbine 28321011000036109 vinorelbine 20 mg capsule, 1 23633011000036102 vinorelbine 20 mg capsule 21269011000036100 vinorelbine +52701011000036101 Simvastatin (Spirit) 20 mg film-coated tablet, 300, bottle 116711 52529011000036106 Simvastatin (Spirit) 20 mg film-coated tablet, 300 52398011000036106 Simvastatin (Spirit) 20 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 46091011000036106 simvastatin 20 mg tablet, 300 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +840101000168102 Advantan 0.1% ointment, 5 g, tube 49381 840091000168107 Advantan 0.1% ointment, 5 g 4588011000036107 Advantan 0.1% ointment 3513011000036101 Advantan 3513011000036101 Advantan 840081000168109 methylprednisolone aceponate 0.1% ointment, 5 g 22587011000036102 methylprednisolone aceponate 0.1% ointment 21605011000036100 methylprednisolone +1004401000168105 Losartan (Apo) 100 mg film-coated tablet, 30, blister pack 201810 1004391000168108 Losartan (Apo) 100 mg film-coated tablet, 30 1004371000168107 Losartan (Apo) 100 mg film-coated tablet 1003821000168102 Losartan (Apo) 1003821000168102 Losartan (Apo) 1004381000168105 losartan potassium 100 mg tablet, 30 1004361000168101 losartan potassium 100 mg tablet 44887011000036108 losartan +796991000168100 Aciclovir (Ascent) 200 mg uncoated tablet, 25, blister pack 202878 796981000168103 Aciclovir (Ascent) 200 mg uncoated tablet, 25 796971000168101 Aciclovir (Ascent) 200 mg uncoated tablet 796651000168103 Aciclovir (Ascent) 796651000168103 Aciclovir (Ascent) 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +736501000168109 Pemetrexed (Sandoz) 500 mg powder for injection, 1 vial 226848 736491000168102 Pemetrexed (Sandoz) 500 mg powder for injection, 1 vial 736481000168100 Pemetrexed (Sandoz) 500 mg powder for injection, 500 mg vial 736461000168109 Pemetrexed (Sandoz) 736461000168109 Pemetrexed (Sandoz) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +659321000168107 Donepezil Hydrochloride (AN) 10 mg film-coated tablet, 28, blister pack 167192 659311000168100 Donepezil Hydrochloride (AN) 10 mg film-coated tablet, 28 659301000168103 Donepezil Hydrochloride (AN) 10 mg film-coated tablet 659291000168104 Donepezil Hydrochloride (AN) 659291000168104 Donepezil Hydrochloride (AN) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +728471000168104 Naloxone Min-I-Jet (UCB Pharma) 400 microgram/mL injection solution, 1 mL syringe 29051 728461000168105 Naloxone Min-I-Jet (UCB Pharma) 400 microgram/mL injection solution, 1 mL syringe 728451000168108 Naloxone Min-I-Jet (UCB Pharma) 400 microgram/mL injection solution, syringe 728441000168106 Naloxone Min-I-Jet (UCB Pharma) 728441000168106 Naloxone Min-I-Jet (UCB Pharma) 80741000036101 naloxone hydrochloride 400 microgram/mL injection, 1 mL syringe 78881000036106 naloxone hydrochloride 400 microgram/mL injection, syringe 33627011000036107 naloxone +667981000168109 Cilopam-S 10 mg film-coated tablet, 98, blister pack 191884 667971000168106 Cilopam-S 10 mg film-coated tablet, 98 667871000168101 Cilopam-S 10 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 667961000168100 escitalopram 10 mg tablet, 98 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +20472011000036106 Trizivir film-coated tablet, 60, blister pack 78349 13672011000036108 Trizivir film-coated tablet, 60 6955011000036108 Trizivir film-coated tablet 4276011000036108 Trizivir 4276011000036108 Trizivir 27875011000036101 abacavir 300 mg + lamivudine 150 mg + zidovudine 300 mg tablet, 60 23203011000036108 abacavir 300 mg + lamivudine 150 mg + zidovudine 300 mg tablet 21556011000036109 abacavir + lamivudine + zidovudine +933214131000036104 Ceftazidime (Alphapharm) 2 g powder for injection, 1 vial 154399 933202091000036106 Ceftazidime (Alphapharm) 2 g powder for injection, 1 vial 933194951000036108 Ceftazidime (Alphapharm) 2 g powder for injection, 2 g vial 933193321000036104 Ceftazidime (Alphapharm) 933193321000036104 Ceftazidime (Alphapharm) 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +24751000036103 Volirop 6.25 mg film-coated tablet, 60, bottle 174806 22601000036100 Volirop 6.25 mg film-coated tablet, 60 20201000036103 Volirop 6.25 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +168251000036101 Dermasoft Sanitising Hand Gel gel, 1 L, pump pack 118961 167671000036108 Dermasoft Sanitising Hand Gel gel, 1 L 167511000036101 Dermasoft Sanitising Hand Gel gel 30361000168100 Dermasoft Sanitising Hand Gel 30361000168100 Dermasoft Sanitising Hand Gel 167681000036105 ethanol 70% + triclosan 0.3% gel, 1 L 167521000036108 ethanol 70% + triclosan 0.3% gel 931785011000036107 ethanol + triclosan +809231000168104 Quetiapine XR (AS) 50 mg modified release tablet, 100, blister pack 241756 809221000168102 Quetiapine XR (AS) 50 mg modified release tablet, 100 809111000168104 Quetiapine XR (AS) 50 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51530011000036103 quetiapine 50 mg modified release tablet, 100 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +20941011000036104 Famohexal 20 mg film-coated tablet, 60, blister pack 94330 14096011000036105 Famohexal 20 mg film-coated tablet, 60 7373011000036102 Famohexal 20 mg film-coated tablet 3772011000036101 Famohexal 3772011000036101 Famohexal 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +20232011000036107 MS Mono 30 mg modified release capsule, 10, bottle 74157 13443011000036100 MS Mono 30 mg modified release capsule, 10 6725011000036103 MS Mono 30 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27750011000036105 morphine sulfate pentahydrate 30 mg modified release capsule, 10 23081011000036100 morphine sulfate pentahydrate 30 mg modified release capsule 21252011000036100 morphine +928999011000036108 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 100, blister pack 158915 928360011000036106 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 100 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +933060011000036105 Vinorelbine (Kabi) 50 mg/5 mL concentrated injection, 5 mL vial 144046 932862011000036100 Vinorelbine (Kabi) 50 mg/5 mL concentrated injection, 5 mL vial 932743011000036103 Vinorelbine (Kabi) 50 mg/5 mL concentrated injection, 5 mL vial 932704011000036105 Vinorelbine (Kabi) 932704011000036105 Vinorelbine (Kabi) 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +24711000036102 Monofix-VF (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 101710 22051000036107 Monofix-VF (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 638821000168106 Monofix-VF (inert substance) diluent, 5 mL vial 40801000168106 Monofix-VF 40801000168106 Monofix-VF 22061000036105 factor IX 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +24711000036102 Monofix-VF (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 101710 22051000036107 Monofix-VF (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 65277011000036109 Monofix-VF (factor IX 500 units) powder for injection, 500 units vial 40801000168106 Monofix-VF 40801000168106 Monofix-VF 22061000036105 factor IX 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 69903011000036100 factor IX 500 units injection, vial 69788011000036101 factor IX +693911000168108 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet, 20, blister pack 215364 693901000168105 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet, 20 693891000168106 Amitriptyline Hydrochloride (Terry White Chemists) 50 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 692331000168108 amitriptyline hydrochloride 50 mg tablet, 20 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +77134011000036104 Mega B (Cenovis) film-coated tablet, 100, bottle 113019 76582011000036105 Mega B (Cenovis) film-coated tablet, 100 76035011000036109 Mega B (Cenovis) film-coated tablet 76019011000036104 Mega B (Cenovis) 76019011000036104 Mega B (Cenovis) 78137011000036101 thiamine nitrate 50 mg + riboflavin 25 mg + nicotinamide 50 mg + calcium pantothenate 50 mg + pyridoxine hydrochloride 50 mg + cyanocobalamin 50 microgram + ascorbic acid 100 mg + biotin 50 microgram + folic acid 200 microgram + inositol 50 microgram + choline bitartrate 50 microgram tablet, 100 77508011000036106 thiamine nitrate 50 mg + riboflavin 25 mg + nicotinamide 50 mg + calcium pantothenate 50 mg + pyridoxine hydrochloride 50 mg + cyanocobalamin 50 microgram + ascorbic acid 100 mg + biotin 50 microgram + folic acid 200 microgram + inositol 50 microgram + choline bitartrate 50 microgram tablet 77473011000036103 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + inositol + choline +860951000168109 Ambotens 75 mg film-coated tablet, 30, blister pack 190230 860941000168107 Ambotens 75 mg film-coated tablet, 30 860931000168103 Ambotens 75 mg film-coated tablet 860851000168101 Ambotens 860851000168101 Ambotens 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +860951000168109 Ambotens 75 mg film-coated tablet, 30, blister pack 223017 860941000168107 Ambotens 75 mg film-coated tablet, 30 860931000168103 Ambotens 75 mg film-coated tablet 860851000168101 Ambotens 860851000168101 Ambotens 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +87695011000036106 Famciclovir (Apo) 250 mg film-coated tablet, 28, blister pack 160556 87484011000036106 Famciclovir (Apo) 250 mg film-coated tablet, 28 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87824011000036107 famciclovir 250 mg tablet, 28 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +998551000168106 Esomeprazole (Apo) 20 mg enteric tablet, 100, blister pack 205827 998541000168109 Esomeprazole (Apo) 20 mg enteric tablet, 100 998441000168108 Esomeprazole (Apo) 20 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +903531000168106 Brillior 100 mg hard capsule, 20, blister pack 224341 903521000168108 Brillior 100 mg hard capsule, 20 903481000168108 Brillior 100 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 903511000168101 pregabalin 100 mg capsule, 20 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +878351000168101 Baltine 30 mg enteric capsule, 10, blister pack 210680 878341000168103 Baltine 30 mg enteric capsule, 10 878301000168100 Baltine 30 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 878331000168107 duloxetine 30 mg enteric capsule, 10 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +732171000168109 Quetiapine (Apotex) 300 mg film-coated tablet, 60, blister pack 166081 732161000168103 Quetiapine (Apotex) 300 mg film-coated tablet, 60 732151000168100 Quetiapine (Apotex) 300 mg film-coated tablet 732141000168102 Quetiapine (Apotex) 732141000168102 Quetiapine (Apotex) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +921820011000036107 Enalapril Maleate (Sandoz) 5 mg uncoated tablet, 30, blister pack 121813 921387011000036104 Enalapril Maleate (Sandoz) 5 mg uncoated tablet, 30 920971011000036104 Enalapril Maleate (Sandoz) 5 mg uncoated tablet 920933011000036100 Enalapril Maleate (Sandoz) 920933011000036100 Enalapril Maleate (Sandoz) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +110381000036100 Arginine2000 containing 2 g arginine powder for oral liquid, 30 x 4 g sachets 108541000036102 Arginine2000 containing 2 g arginine powder for oral liquid, 30 x 4 g sachets 312441000168101 Arginine2000 containing 2 g arginine powder for oral liquid, 4 g sachet 106491000036108 Arginine2000 106491000036108 Arginine2000 929746011000036102 arginine with carbohydrate containing 2 g arginine powder for oral liquid, 30 x 4 g sachets 312201000168104 arginine with carbohydrate containing 2 g arginine powder for oral liquid, 4 g sachet 77468011000036100 arginine with carbohydrate +81092011000036106 Dizole 100 mg hard capsule, 10, blister pack 159620 80600011000036107 Dizole 100 mg hard capsule, 10 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81668011000036101 fluconazole 100 mg capsule, 10 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +822941000168100 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes 146776 822931000168109 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes 822881000168104 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 73722011000036105 Rotarix 73722011000036105 Rotarix 822921000168106 rotavirus live vaccine oral liquid, 10 x 1.5 mL syringes 822871000168102 rotavirus live vaccine oral liquid, 1.5 mL syringe 822861000168108 rotavirus live vaccine +830711000168101 Atomoxetine (Apo) 40 mg hard capsule, 28, blister pack 234810 830701000168104 Atomoxetine (Apo) 40 mg hard capsule, 28 830641000168107 Atomoxetine (Apo) 40 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +131811000036103 Candesartan Cilexetil HCTZ 16/12.5 (GA) uncoated tablet, 30, blister pack 204583 128781000036107 Candesartan Cilexetil HCTZ 16/12.5 (GA) uncoated tablet, 30 125561000036104 Candesartan Cilexetil HCTZ 16/12.5 (GA) uncoated tablet 47001000168103 Candesartan Cilexetil HCTZ 16/12.5 (GA) 47001000168103 Candesartan Cilexetil HCTZ 16/12.5 (GA) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +963991000168100 Normatens 200 microgram film-coated tablet, 7, blister pack 114122 963981000168103 Normatens 200 microgram film-coated tablet, 7 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 963971000168101 moxonidine 200 microgram tablet, 7 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +61420011000036107 Paracetamol (Herron) 500 mg uncoated tablet, 1000, bottle 82690 57345011000036108 Paracetamol (Herron) 500 mg uncoated tablet, 1000 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +50454011000036108 XMTVI Maxamum powder for oral liquid, 500 g, can 49490011000036104 XMTVI Maxamum powder for oral liquid, 500 g 48711011000036101 XMTVI Maxamum powder for oral liquid 17821000168105 XMTVI Maxamum 17821000168105 XMTVI Maxamum 51446011000036106 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 500 g 50959011000036106 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +168291000036105 Dermaveen Shower and Bath Oil 5% bath oil, 250 mL, bottle 130060 167731000036100 Dermaveen Shower and Bath Oil 5% bath oil, 250 mL 167531000036105 Dermaveen Shower and Bath Oil 5% bath oil 9861000168106 Dermaveen Shower and Bath Oil 9861000168106 Dermaveen Shower and Bath Oil 167741000036105 colloidal oatmeal 5% bath oil, 250 mL 167541000036100 colloidal oatmeal 5% bath oil 77444011000036102 colloidal oatmeal +69644011000036108 Goanna Arthritis 10% cream, 125 g, tube 78992 67443011000036103 Goanna Arthritis 10% cream, 125 g 65668011000036100 Goanna Arthritis 10% cream 65065011000036104 Goanna Arthritis 65065011000036104 Goanna Arthritis 71971011000036100 trolamine salicylate 10% cream, 125 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +809191000168108 Quetiapine XR (AS) 50 mg modified release tablet, 30, blister pack 241756 809181000168105 Quetiapine XR (AS) 50 mg modified release tablet, 30 809111000168104 Quetiapine XR (AS) 50 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 809171000168107 quetiapine 50 mg modified release tablet, 30 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +659391000168109 Alendronate (AN) 70 mg uncoated tablet, 4, blister pack 171792 659381000168106 Alendronate (AN) 70 mg uncoated tablet, 4 659371000168108 Alendronate (AN) 70 mg uncoated tablet 659361000168102 Alendronate (AN) 659361000168102 Alendronate (AN) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +1087881000168109 Gesicomb film-coated tablet, 30, blister pack 283035 1087871000168106 Gesicomb film-coated tablet, 30 1087781000168100 Gesicomb film-coated tablet 1087751000168107 Gesicomb 1087751000168107 Gesicomb 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +19204011000036108 Haldol Decanoate 150 mg/3 mL injection solution, 5 x 3 mL ampoules 46901 12494011000036100 Haldol Decanoate 150 mg/3 mL injection solution, 5 x 3 mL ampoules 4833011000036106 Haldol Decanoate (haloperidol (as decanoate) 150 mg/3 mL) injection solution, 3 mL ampoule 3442011000036108 Haldol Decanoate 3442011000036108 Haldol Decanoate 27151011000036107 haloperidol (as decanoate) 150 mg/3 mL injection, 5 x 3 mL ampoules 22514011000036106 haloperidol (as decanoate) 150 mg/3 mL injection, ampoule 21866011000036100 haloperidol decanoate +655781000168108 Venlafaxine SR (AN) 37.5 mg modified release capsule, 28, blister pack 160293 655771000168105 Venlafaxine SR (AN) 37.5 mg modified release capsule, 28 655761000168104 Venlafaxine SR (AN) 37.5 mg modified release capsule 655751000168101 Venlafaxine SR (AN) 655751000168101 Venlafaxine SR (AN) 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +1049711000168108 Panadeine Forte uncoated tablet, 10, blister pack 73507 1049701000168105 Panadeine Forte uncoated tablet, 10 835831000168109 Panadeine Forte uncoated tablet 34821000168106 Panadeine Forte 34821000168106 Panadeine Forte 1047321000168108 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 10 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +50696011000036109 Accu-Chek Go diagnostic strip, 50, bottle 99803 49720011000036104 Accu-Chek Go diagnostic strip, 50 48846011000036103 Accu-Chek Go diagnostic strip 60821000168105 Accu-Chek Go 60821000168105 Accu-Chek Go 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1053321000168100 Actiq 200 microgram lozenge on handle, 15, blister pack 91598 1053311000168107 Actiq 200 microgram lozenge on handle, 15 34075011000036107 Actiq 200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053301000168109 fentanyl 200 microgram lozenge on handle, 15 34910011000036103 fentanyl 200 microgram lozenge on handle 21258011000036102 fentanyl +60034011000036104 Heartburn Relief (Guardian) 150 mg film-coated tablet, 20, blister pack 123671 55996011000036101 Heartburn Relief (Guardian) 150 mg film-coated tablet, 20 53751011000036101 Heartburn Relief (Guardian) 150 mg film-coated tablet 53366011000036104 Heartburn Relief (Guardian) 53366011000036104 Heartburn Relief (Guardian) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +972651000168103 Gamunex 10% 1 g/10 mL injection solution, 10 mL vial 116689 972641000168100 Gamunex 10% 1 g/10 mL injection solution, 10 mL vial 972631000168109 Gamunex 10% 1 g/10 mL injection solution, 10 mL vial 966321000168105 Gamunex 10% 966321000168105 Gamunex 10% 114451000036106 normal immunoglobulin 1 g/10 mL injection, 10 mL vial 112821000036107 normal immunoglobulin 1 g/10 mL injection, vial 74965011000036103 normal immunoglobulin +60634011000036108 Burn and Bite (Amcal) gel, 30 g, tube 23681 56592011000036109 Burn and Bite (Amcal) gel, 30 g 53995011000036102 Burn and Bite (Amcal) gel 53582011000036104 Burn and Bite (Amcal) 53582011000036104 Burn and Bite (Amcal) 63446011000036104 lidocaine (lignocaine) hydrochloride 3% + menthol 0.1% + chlorhexidine gluconate 0.25% + cetrimide 0.5% gel, 30 g 61971011000036104 lidocaine (lignocaine) hydrochloride 3% + menthol 0.1% + chlorhexidine gluconate 0.25% + cetrimide 0.5% gel 61794011000036102 lidocaine (lignocaine) + menthol + chlorhexidine + cetrimide +754461000168101 Oxycodone (AS) 5 mg hard capsule, 60, blister pack 227856 754431000168109 Oxycodone (AS) 5 mg hard capsule, 60 754401000168102 Oxycodone (AS) 5 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +727831000168104 Tritace 2.5 mg uncoated tablet, 7, blister pack 56537 727821000168102 Tritace 2.5 mg uncoated tablet, 7 6098011000036101 Tritace 2.5 mg uncoated tablet 4384011000036103 Tritace 4384011000036103 Tritace 39472011000036106 ramipril 2.5 mg tablet, 7 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +1054041000168107 Norspan 5 microgram/hour patch, 4, sachet 116647 1054031000168103 Norspan 5 microgram/hour patch, 4 5815011000036109 Norspan 5 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 1046501000168105 buprenorphine 5 microgram/hour patch, 4 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +749391000168101 Tacrolimus (AN) 5 mg hard capsule, 100, blister pack 224282 749381000168104 Tacrolimus (AN) 5 mg hard capsule, 100 749321000168103 Tacrolimus (AN) 5 mg hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 652651000168101 tacrolimus 5 mg capsule, 100 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +760221000168105 Elidel 1% cream, 100 g, tube 93680 760211000168103 Elidel 1% cream, 100 g 7344011000036101 Elidel 1% cream 4387011000036109 Elidel 4387011000036109 Elidel 760201000168101 pimecrolimus 1% cream, 100 g 23430011000036108 pimecrolimus 1% cream 21745011000036101 pimecrolimus +1109451000168100 Midalim 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207223 1109441000168102 Midalim 5 mg/5 mL injection solution, 10 x 5 mL ampoules 1109331000168100 Midalim 5 mg/5 mL injection solution, 5 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +21183011000036103 Tramahexal SR 200 mg modified release tablet, 20, blister pack 99258 14322011000036103 Tramahexal SR 200 mg modified release tablet, 20 7608011000036106 Tramahexal SR 200 mg modified release tablet 10981000168104 Tramahexal SR 10981000168104 Tramahexal SR 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +925298011000036106 Exforge 5/320 film-coated tablet, 56, blister pack 161820 924835011000036106 Exforge 5/320 film-coated tablet, 56 924523011000036107 Exforge 5/320 film-coated tablet 24141000168109 Exforge 5/320 24141000168109 Exforge 5/320 925433011000036107 amlodipine 5 mg + valsartan 320 mg tablet, 56 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +928905011000036108 Ibuprofen Blue Period Pain Capseal (Herron) 200 mg gelatin coated tablet, 25, bottle 152956 928267011000036100 Ibuprofen Blue Period Pain Capseal (Herron) 200 mg gelatin coated tablet, 25 927916011000036108 Ibuprofen Blue Period Pain Capseal (Herron) 200 mg gelatin coated tablet 28921000168105 Ibuprofen Blue Period Pain Capseal (Herron) 28921000168105 Ibuprofen Blue Period Pain Capseal (Herron) 63216011000036105 ibuprofen 200 mg tablet, 25 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933231051000036101 Famciclovir (Chemmart) 500 mg film-coated tablet, 3, blister pack 172446 933225121000036106 Famciclovir (Chemmart) 500 mg film-coated tablet, 3 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +39420011000036106 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 5 x 2 mL syringes 147169 39303011000036100 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 5 x 2 mL syringes 39212011000036104 Bicillin L-A 1.2 million units (900 mg)/2 mL injection suspension, 2 mL syringe 4089011000036101 Bicillin L-A 4089011000036101 Bicillin L-A 39492011000036101 benzathine benzylpenicillin 1.2 million units (900 mg)/2 mL injection, 5 x 2 mL syringes 39440011000036108 benzathine benzylpenicillin 1.2 million units (900 mg)/2 mL injection, syringe 39429011000036100 benzathine benzylpenicillin +165961000036101 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204809 164161000036103 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack 162571000036105 Peg-Intron Clearclick Injector (peginterferon alfa-2b 120 microgram) powder for injection, 120 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28081011000036104 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23391011000036102 peginterferon alfa-2b 120 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165961000036101 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204809 164161000036103 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 28081011000036104 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165961000036101 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204809 164161000036103 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 120 microgram packs, 140 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28081011000036104 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +1083591000168102 Decongestant (Chemmart) 0.05% nasal spray, 20 mL, pump pack 134661 930605011000036108 Decongestant (Chemmart) 0.05% nasal spray, 20 mL 929967011000036102 Decongestant (Chemmart) 0.05% nasal spray 929881011000036102 Decongestant (Chemmart) 929881011000036102 Decongestant (Chemmart) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +77252011000036107 Actonel Once-a-Month 150 mg film-coated tablet, 4, blister pack 150618 76668011000036103 Actonel Once-a-Month 150 mg film-coated tablet, 4 76101011000036105 Actonel Once-a-Month 150 mg film-coated tablet 7381000168101 Actonel Once-a-Month 7381000168101 Actonel Once-a-Month 78197011000036107 risedronate sodium 150 mg tablet, 4 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +37721000036103 Respaz 3 mg film-coated tablet, 20, blister pack 165541 34001000036104 Respaz 3 mg film-coated tablet, 20 32531000036109 Respaz 3 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 81626011000036109 risperidone 3 mg tablet, 20 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +685161000168107 Finapen 1 mg film-coated tablet, 28, blister pack 189653 685151000168105 Finapen 1 mg film-coated tablet, 28 685141000168108 Finapen 1 mg film-coated tablet 685131000168104 Finapen 685131000168104 Finapen 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +732811000168105 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 100 x 2.2 mL cartridges 220320 732801000168107 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 100 x 2.2 mL cartridges 36008011000036100 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 2.2 mL cartridge 30271000168103 Citanest 3% with Octapressin 0.066 IU Dental 30271000168103 Citanest 3% with Octapressin 0.066 IU Dental 732791000168106 prilocaine hydrochloride 3% (66 mg/2.2 mL) + felypressin 0.066 units/2.2 mL injection, 100 x 2.2 mL cartridges 37884011000036108 prilocaine hydrochloride 3% (66 mg/2.2 mL) + felypressin 0.066 units/2.2 mL injection, cartridge 37788011000036103 prilocaine + felypressin +80029011000036102 Tamate 25 mg film-coated tablet, 60, blister pack 150447 79975011000036108 Tamate 25 mg film-coated tablet, 60 79925011000036109 Tamate 25 mg film-coated tablet 79904011000036104 Tamate 79904011000036104 Tamate 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +997911000168100 Imatinib (Apo) 100 mg film-coated tablet, 500, bottle 196034 997901000168103 Imatinib (Apo) 100 mg film-coated tablet, 500 997851000168107 Imatinib (Apo) 100 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 829131000168103 imatinib 100 mg tablet, 500 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +68993011000036100 Nicotinell Liquorice 4 mg chewing gum, 180, blister pack 136135 66795011000036101 Nicotinell Liquorice 4 mg chewing gum, 180 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71517011000036106 nicotine 4 mg gum, 180 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +82411000036107 Rabeprazole Sodium (Terry White Chemists) 20 mg enteric tablet, 30, blister pack 189767 80381000036109 Rabeprazole Sodium (Terry White Chemists) 20 mg enteric tablet, 30 78591000036106 Rabeprazole Sodium (Terry White Chemists) 20 mg enteric tablet 77991000036100 Rabeprazole Sodium (Terry White Chemists) 77991000036100 Rabeprazole Sodium (Terry White Chemists) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +68858011000036105 QV Cream, 50 g, tube 10629 66524011000036105 QV Cream, 50 g 65500011000036107 QV Cream 65191011000036105 QV Cream 65191011000036105 QV Cream 71256011000036109 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream, 50 g 69959011000036106 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream 69769011000036106 glycerol + light liquid paraffin + white soft paraffin +131721000036102 Candesartan Cilexetil HCT 16/12.5 (Stada) uncoated tablet, 30, blister pack 204571 128691000036101 Candesartan Cilexetil HCT 16/12.5 (Stada) uncoated tablet, 30 125611000036102 Candesartan Cilexetil HCT 16/12.5 (Stada) uncoated tablet 27101000168102 Candesartan Cilexetil HCT 16/12.5 (Stada) 27101000168102 Candesartan Cilexetil HCT 16/12.5 (Stada) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +912751000168101 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet, 30, blister pack 198387 912741000168103 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet, 30 912691000168100 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet 912651000168105 Candesartan Hydrochlorothiazide 32/25 (RZ) 912651000168105 Candesartan Hydrochlorothiazide 32/25 (RZ) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +979141000168101 Lovenox 60 mg/0.6 mL injection solution, 0.6 mL syringe 80267 979131000168105 Lovenox 60 mg/0.6 mL injection solution, 0.6 mL syringe 979121000168107 Lovenox 60 mg/0.6 mL injection solution, 0.6 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823401000168103 enoxaparin sodium 60 mg/0.6 mL injection, 0.6 mL syringe 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +1094261000168108 Sinus Pain Relief with Antihistamine (Amcal) uncoated tablet, 24, blister pack 234250 1094251000168106 Sinus Pain Relief with Antihistamine (Amcal) uncoated tablet, 24 1094231000168100 Sinus Pain Relief with Antihistamine (Amcal) uncoated tablet 1094211000168105 Sinus Pain Relief with Antihistamine (Amcal) 1094211000168105 Sinus Pain Relief with Antihistamine (Amcal) 1094241000168109 paracetamol 497 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 1094221000168103 paracetamol 497 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +933246261000036104 Allevyn Ag Gentle Border (66800461) 10 cm x 10 cm medicated dressing, 10, carton 169184 933242841000036100 Allevyn Ag Gentle Border (66800461) 10 cm x 10 cm medicated dressing, 10 933241141000036102 Allevyn Ag Gentle Border (66800461) 10 cm x 10 cm medicated dressing 57991000168105 Allevyn Ag Gentle Border (66800461) 57991000168105 Allevyn Ag Gentle Border (66800461) 933242791000036102 dressing foam with silver 10 cm x 10 cm dressing, 10 933241111000036103 dressing foam with silver 10 cm x 10 cm dressing 933247641000036101 dressing foam with silver +37638011000036102 Mydriacyl 1% eye drops solution, 15 mL, bottle 25357 36904011000036104 Mydriacyl 1% eye drops solution, 15 mL 36237011000036100 Mydriacyl 1% eye drops solution 35955011000036107 Mydriacyl 35955011000036107 Mydriacyl 38789011000036101 tropicamide 1% eye drops, 15 mL 38002011000036108 tropicamide 1% eye drops 37747011000036108 tropicamide +933124011000036101 Amiodarone Hydrochloride (Sandoz) 100 mg uncoated tablet, 30, blister pack 77738 932920011000036100 Amiodarone Hydrochloride (Sandoz) 100 mg uncoated tablet, 30 932772011000036109 Amiodarone Hydrochloride (Sandoz) 100 mg uncoated tablet 932705011000036109 Amiodarone Hydrochloride (Sandoz) 932705011000036109 Amiodarone Hydrochloride (Sandoz) 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +17891011000036106 Betaloc 100 mg uncoated tablet, 60, blister pack 12384 11751011000036101 Betaloc 100 mg uncoated tablet, 60 5980011000036105 Betaloc 100 mg uncoated tablet 3906011000036103 Betaloc 3906011000036103 Betaloc 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +732851000168106 Paracetamol Children's 6 to 12 Years (Apohealth) 240 mg/5 mL oral liquid suspension, 200 mL, bottle 227875 732841000168109 Paracetamol Children's 6 to 12 Years (Apohealth) 240 mg/5 mL oral liquid suspension, 200 mL 732831000168100 Paracetamol Children's 6 to 12 Years (Apohealth) 240 mg/5 mL oral liquid suspension, 5 mL 732821000168103 Paracetamol Children's 6 to 12 Years (Apohealth) 732821000168103 Paracetamol Children's 6 to 12 Years (Apohealth) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +1087841000168104 Gesicomb film-coated tablet, 6, blister pack 283035 1087831000168108 Gesicomb film-coated tablet, 6 1087781000168100 Gesicomb film-coated tablet 1087751000168107 Gesicomb 1087751000168107 Gesicomb 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +165921000036105 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 204806 164121000036107 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack 162591000036109 Peg-Intron Clearclick Injector (peginterferon alfa-2b 50 microgram) powder for injection, 50 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28074011000036105 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23388011000036105 peginterferon alfa-2b 50 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165921000036105 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 204806 164121000036107 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 28074011000036105 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165921000036105 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 204806 164121000036107 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28074011000036105 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +923876011000036103 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 30, bottle 163765 923424011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 30 923077011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 27841011000036104 lercanidipine hydrochloride 10 mg tablet, 30 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +925294011000036104 Gemcitabine (Sun) 200 mg powder for injection, 1 vial 161808 924831011000036109 Gemcitabine (Sun) 200 mg powder for injection, 1 vial 924522011000036100 Gemcitabine (Sun) 200 mg powder for injection, 200 mg vial 924410011000036102 Gemcitabine (Sun) 924410011000036102 Gemcitabine (Sun) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +933239821000036103 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 100, blister pack 181204 933237141000036105 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 100 933234821000036104 Meloxicam (Terry White Chemists) 7.5 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 52887011000036107 meloxicam 7.5 mg capsule, 100 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +131651000036103 Curam Duo 500/125 film-coated tablet, 10, blister pack 198108 13888011000036109 Curam Duo 500/125 film-coated tablet, 10 7174011000036105 Curam Duo 500/125 film-coated tablet 3021000168107 Curam Duo 500/125 3021000168107 Curam Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +18210011000036102 Ciprofloxacin (Pharmacor) 750 mg film-coated tablet, 14, blister pack 132830 11942011000036104 Ciprofloxacin (Pharmacor) 750 mg film-coated tablet, 14 4865011000036100 Ciprofloxacin (Pharmacor) 750 mg film-coated tablet 4399011000036103 Ciprofloxacin (Pharmacor) 4399011000036103 Ciprofloxacin (Pharmacor) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +964131000168100 Normatens 200 microgram film-coated tablet, 56, blister pack 114122 964121000168103 Normatens 200 microgram film-coated tablet, 56 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964111000168105 moxonidine 200 microgram tablet, 56 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +766571000168106 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, 6 x 1 mL syringes 67145 766561000168100 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, 6 x 1 mL syringes 766511000168103 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766551000168102 nadroparin calcium 19 000 anti-Xa units/mL injection, 6 x 1 mL syringes 766501000168101 nadroparin calcium 19 000 anti-Xa units/mL injection, syringe 765071000168107 nadroparin +1073401000168103 Melipramine 25 mg film-coated tablet, 50, bottle 10037 1073391000168100 Melipramine 25 mg film-coated tablet, 50 1073381000168103 Melipramine 25 mg film-coated tablet 1073371000168101 Melipramine 1073371000168101 Melipramine 27467011000036109 imipramine hydrochloride 25 mg tablet, 50 22814011000036105 imipramine hydrochloride 25 mg tablet 21613011000036104 imipramine +1002161000168108 Amlodipine/Atorvastatin 5/80 (Apotex) film-coated tablet, 30, blister pack 214370 1002151000168106 Amlodipine/Atorvastatin 5/80 (Apotex) film-coated tablet, 30 1002141000168109 Amlodipine/Atorvastatin 5/80 (Apotex) film-coated tablet 1002131000168100 Amlodipine/Atorvastatin 5/80 (Apotex) 1002131000168100 Amlodipine/Atorvastatin 5/80 (Apotex) 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +901521000168109 Capex 500 mg film-coated tablet, 60, blister pack 213039 901511000168102 Capex 500 mg film-coated tablet, 60 901481000168109 Capex 500 mg film-coated tablet 900971000168105 Capex 900971000168105 Capex 667821000168102 capecitabine 500 mg tablet, 60 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +931475011000036105 Paroxetine (Synthon) 20 mg film-coated tablet, 20, blister pack 152491 930654011000036102 Paroxetine (Synthon) 20 mg film-coated tablet, 20 929991011000036107 Paroxetine (Synthon) 20 mg film-coated tablet 929845011000036106 Paroxetine (Synthon) 929845011000036106 Paroxetine (Synthon) 51563011000036101 paroxetine 20 mg tablet, 20 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +79061011000036105 Curam 125/31.25 powder for oral liquid, 75 mL, bottle 146979 78826011000036108 Curam 125/31.25 powder for oral liquid, 75 mL 78642011000036103 Curam 125/31.25 powder for oral liquid, 5 mL 4311000168100 Curam 125/31.25 4311000168100 Curam 125/31.25 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +995721000168101 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2, blister pack 72150 995711000168108 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2 995681000168107 Difflam Lozenge Honey and Lemon Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995651000168100 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +110471000036109 Phenylalanine50 containing 50 mg phenylalanine powder for oral liquid, 30 x 4 g sachets 108501000036100 Phenylalanine50 containing 50 mg phenylalanine powder for oral liquid, 30 x 4 g sachets 324031000168103 Phenylalanine50 containing 50 mg phenylalanine powder for oral liquid, 4 g sachet 106601000036102 Phenylalanine50 106601000036102 Phenylalanine50 63081011000036109 phenylalanine with carbohydrate containing 50 mg phenylalanine powder for oral liquid, 30 x 4 g sachets 323851000168104 phenylalanine with carbohydrate containing 50 mg phenylalanine powder for oral liquid, 4 g sachet 61760011000036109 phenylalanine with carbohydrate +166281000036109 Vaxigrip Junior 2014 injection suspension, 1 x 0.25 mL syringe 97971 164531000036103 Vaxigrip Junior 2014 injection suspension, 1 x 0.25 mL syringe 162121000036104 Vaxigrip Junior 2014 injection suspension, 0.25 mL syringe 26211000168106 Vaxigrip Junior 2014 26211000168106 Vaxigrip Junior 2014 163791000036106 influenza trivalent child vaccine 2014 injection, 1 x 0.25 mL syringe 162111000036106 influenza trivalent child vaccine 2014 injection, 0.25 mL syringe 166301000036105 influenza trivalent vaccine 2014 +18371011000036109 Renitec 10 mg uncoated tablet, 30, blister pack 10521 11321011000036103 Renitec 10 mg uncoated tablet, 30 5451011000036106 Renitec 10 mg uncoated tablet 41651000168101 Renitec 41651000168101 Renitec 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +732211000168106 Ativan 1 mg uncoated tablet, 50, bottle 237801 36626011000036103 Ativan 1 mg uncoated tablet, 50 36051011000036103 Ativan 1 mg uncoated tablet 35865011000036105 Ativan 35865011000036105 Ativan 38546011000036103 lorazepam 1 mg tablet, 50 37826011000036106 lorazepam 1 mg tablet 37711011000036105 lorazepam +140311000036103 Roxithromycin (SCP) 150 mg film-coated tablet, 10, blister pack 133756 138751000036102 Roxithromycin (SCP) 150 mg film-coated tablet, 10 137561000036107 Roxithromycin (SCP) 150 mg film-coated tablet 137331000036105 Roxithromycin (SCP) 137331000036105 Roxithromycin (SCP) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +754361000168106 Oxycodone (Medis) 10 mg hard capsule, 60, bottle 227846 754351000168109 Oxycodone (Medis) 10 mg hard capsule, 60 754321000168101 Oxycodone (Medis) 10 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +74051000036101 Retrovir 250 mg hard capsule, 40, blister pack 178384 71691000036103 Retrovir 250 mg hard capsule, 40 5138011000036102 Retrovir 250 mg hard capsule 3895011000036100 Retrovir 3895011000036100 Retrovir 71701000036103 zidovudine 250 mg capsule, 40 22040011000036108 zidovudine 250 mg capsule 21429011000036108 zidovudine +933077011000036100 Tramadol Hydrochloride SR (Terry White Chemists) 100 mg modified release tablet, 20, blister pack 154401 932874011000036103 Tramadol Hydrochloride SR (Terry White Chemists) 100 mg modified release tablet, 20 932735011000036103 Tramadol Hydrochloride SR (Terry White Chemists) 100 mg modified release tablet 50711000168103 Tramadol Hydrochloride SR (Terry White Chemists) 50711000168103 Tramadol Hydrochloride SR (Terry White Chemists) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +60591011000036109 Zadine 1 mg uncoated tablet, 20, blister pack 18228 56549011000036108 Zadine 1 mg uncoated tablet, 20 53968011000036105 Zadine 1 mg uncoated tablet 53132011000036100 Zadine 53132011000036100 Zadine 63415011000036102 azatadine maleate 1 mg tablet, 20 61951011000036102 azatadine maleate 1 mg tablet 61785011000036102 azatadine +678741000168108 Anti-Fungal (Pharmacy Action) 1% cream, 20 g, tube 194535 678731000168104 Anti-Fungal (Pharmacy Action) 1% cream, 20 g 678721000168102 Anti-Fungal (Pharmacy Action) 1% cream 678711000168109 Anti-Fungal (Pharmacy Action) 678711000168109 Anti-Fungal (Pharmacy Action) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +74879011000036101 Zoster Immunoglobulin-VF (CSL) 200 units injection solution, 1 vial 61219 74366011000036103 Zoster Immunoglobulin-VF (CSL) 200 units injection solution, 1 vial 73897011000036102 Zoster Immunoglobulin-VF (CSL) 200 units injection solution, vial 51831000168108 Zoster Immunoglobulin-VF (CSL) 51831000168108 Zoster Immunoglobulin-VF (CSL) 75466011000036103 varicella-zoster virus immunoglobulin 200 units injection, 1 vial 75077011000036104 varicella-zoster virus immunoglobulin 200 units injection, vial 74986011000036107 varicella-zoster virus immunoglobulin +17936011000036102 Sinemet 100/25 uncoated tablet, 100, bottle 171665 11320011000036105 Sinemet 100/25 uncoated tablet, 100 5171011000036108 Sinemet 100/25 uncoated tablet 1111000168100 Sinemet 100/25 1111000168100 Sinemet 100/25 27228011000036104 levodopa 100 mg + carbidopa 25 mg tablet, 100 22588011000036101 levodopa 100 mg + carbidopa 25 mg tablet 21326011000036107 levodopa + carbidopa +17936011000036102 Sinemet 100/25 uncoated tablet, 100, bottle 10517 11320011000036105 Sinemet 100/25 uncoated tablet, 100 5171011000036108 Sinemet 100/25 uncoated tablet 1111000168100 Sinemet 100/25 1111000168100 Sinemet 100/25 27228011000036104 levodopa 100 mg + carbidopa 25 mg tablet, 100 22588011000036101 levodopa 100 mg + carbidopa 25 mg tablet 21326011000036107 levodopa + carbidopa +19973011000036104 Stemzine 5 mg uncoated tablet, 25, blister pack 67940 13216011000036100 Stemzine 5 mg uncoated tablet, 25 6498011000036109 Stemzine 5 mg uncoated tablet 4232011000036106 Stemzine 4232011000036106 Stemzine 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +118741000036105 Gynazole-1 2% vaginal cream, 1 application, applicator 107327 118401000036102 Gynazole-1 2% vaginal cream, 1 application 118121000036101 Gynazole-1 2% vaginal cream, application 62841000168100 Gynazole-1 62841000168100 Gynazole-1 118411000036100 butoconazole nitrate 2% vaginal cream, 1 application 118131000036104 butoconazole nitrate 2% vaginal cream, application 44884011000036102 butoconazole +61694011000036108 Vicks Formula 44 for Dry Coughs 6.67 mg/5 mL oral liquid solution, 120 mL, bottle 98840 57615011000036107 Vicks Formula 44 for Dry Coughs 6.67 mg/5 mL oral liquid solution, 120 mL 54366011000036101 Vicks Formula 44 for Dry Coughs 6.67 mg/5 mL oral liquid solution, 5 mL 53384011000036105 Vicks Formula 44 for Dry Coughs 53384011000036105 Vicks Formula 44 for Dry Coughs 63961011000036102 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid, 120 mL 62110011000036100 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid 61744011000036109 dextromethorphan +835051000168105 Montelukast (AN) 10 mg film-coated tablet, 14, blister pack 184828 835041000168108 Montelukast (AN) 10 mg film-coated tablet, 14 835011000168109 Montelukast (AN) 10 mg film-coated tablet 655871000168102 Montelukast (AN) 655871000168102 Montelukast (AN) 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +52750011000036100 Fexal 120 mg film-coated tablet, 50, blister pack 140284 52562011000036107 Fexal 120 mg film-coated tablet, 50 52419011000036109 Fexal 120 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 52885011000036102 fexofenadine hydrochloride 120 mg tablet, 50 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +61619011000036108 Sinus Pain (Guardian) uncoated tablet, 24, blister pack 96211 57541011000036108 Sinus Pain (Guardian) uncoated tablet, 24 54344011000036104 Sinus Pain (Guardian) uncoated tablet 53200011000036108 Sinus Pain (Guardian) 53200011000036108 Sinus Pain (Guardian) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +176691000036104 Cadivast 10/20 film-coated tablet, 30, blister pack 199212 174951000036105 Cadivast 10/20 film-coated tablet, 30 172941000036103 Cadivast 10/20 film-coated tablet 45191000168104 Cadivast 10/20 45191000168104 Cadivast 10/20 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +61317011000036108 Diovan 80 mg film-coated tablet, 7, blister pack 80868 57253011000036103 Diovan 80 mg film-coated tablet, 7 54254011000036107 Diovan 80 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63787011000036104 valsartan 80 mg tablet, 7 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +60651011000036109 Frozol Ice paint, 10 mL, bottle 29481 56609011000036108 Frozol Ice paint, 10 mL 54004011000036109 Frozol Ice paint 53554011000036102 Frozol Ice 53554011000036102 Frozol Ice 63461011000036100 chlorobutanol 0.8% + salicylic acid 10.9% paint, 10 mL 61980011000036100 chlorobutanol 0.8% + salicylic acid 10.9% paint 61791011000036100 chlorobutanol + salicylic acid +897821000168105 Nicotinell Peppermint 4 mg lozenge, 120, blister pack 276926 897811000168103 Nicotinell Peppermint 4 mg lozenge, 120 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897801000168101 nicotine 4 mg lozenge, 120 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +166241000036100 Influvac 2014 injection suspension, 10 x 0.5 mL syringes 81465 164501000036105 Influvac 2014 injection suspension, 10 x 0.5 mL syringes 162081000036102 Influvac 2014 injection suspension, 0.5 mL syringe 39281000168108 Influvac 2014 39281000168108 Influvac 2014 163651000036107 influenza trivalent adult vaccine 2014 injection, 10 x 0.5 mL syringes 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +693841000168103 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 20, blister pack 215358 693831000168107 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 20 693821000168109 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 692961000168101 amitriptyline hydrochloride 10 mg tablet, 20 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +69627011000036104 Laxettes chocolate 12 mg/square block, 18 squares, sachet 76933 67426011000036107 Laxettes chocolate 12 mg/square block, 18 squares 65658011000036106 Laxettes chocolate 12 mg/square block 64991011000036102 Laxettes 64991011000036102 Laxettes 71957011000036106 sennosides A and B 12 mg/square block, 18 squares 70262011000036107 sennosides A and B 12 mg/square block 69834011000036104 sennosides A and B +20215011000036107 Actonel 30 mg film-coated tablet, 28, blister pack 74136 13433011000036101 Actonel 30 mg film-coated tablet, 28 6714011000036105 Actonel 30 mg film-coated tablet 13171000168107 Actonel 13171000168107 Actonel 27741011000036101 risedronate sodium 30 mg tablet, 28 23072011000036102 risedronate sodium 30 mg tablet 21476011000036103 risedronate +937971000168102 Temozolomide (Amneal) 180 mg hard capsule, 5, sachet 206045 937961000168108 Temozolomide (Amneal) 180 mg hard capsule, 5 937951000168106 Temozolomide (Amneal) 180 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +18133011000036101 Risperdal Quicklet 3 mg orally disintegrating tablet, 28, blister pack 115467 11494011000036104 Risperdal Quicklet 3 mg orally disintegrating tablet, 28 4912011000036102 Risperdal Quicklet 3 mg orally disintegrating tablet 10371000168103 Risperdal Quicklet 10371000168103 Risperdal Quicklet 47661000036100 risperidone 3 mg orally disintegrating tablet, 28 47601000036104 risperidone 3 mg orally disintegrating tablet 21338011000036109 risperidone +60349011000036101 Benadryl for the Family Original oral liquid solution, 100 mL, bottle 14114 56308011000036108 Benadryl for the Family Original oral liquid solution, 100 mL 53872011000036107 Benadryl for the Family Original oral liquid solution, 5 mL 3541000168107 Benadryl for the Family Original 3541000168107 Benadryl for the Family Original 63297011000036107 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 100 mL 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +1083631000168102 Decongestant (Priceline) 0.05% nasal spray, 20 mL, pump pack 145371 74287011000036109 Decongestant (Priceline) 0.05% nasal spray, 20 mL 73842011000036105 Decongestant (Priceline) 0.05% nasal spray 73741011000036101 Decongestant (Priceline) 73741011000036101 Decongestant (Priceline) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +19539011000036106 Zyprexa 2.5 mg film-coated tablet, 28, blister pack 56603 12811011000036108 Zyprexa 2.5 mg film-coated tablet, 28 6102011000036108 Zyprexa 2.5 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +1045631000168108 Cobal-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 285067 1045621000168105 Cobal-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 1045611000168103 Cobal-B12 1 mg/mL injection solution, ampoule 1045601000168101 Cobal-B12 1045601000168101 Cobal-B12 26736011000036106 hydroxocobalamin 1 mg/mL injection, 3 x 1 mL ampoules 22131011000036106 hydroxocobalamin 1 mg/mL injection, ampoule 21828011000036108 hydroxocobalamin +45341000036103 Galantamine MR (Apo) 24 mg modified release capsule, 28, blister pack 182034 43491000036100 Galantamine MR (Apo) 24 mg modified release capsule, 28 40711000036108 Galantamine MR (Apo) 24 mg modified release capsule 2801000168100 Galantamine MR (Apo) 2801000168100 Galantamine MR (Apo) 28250011000036107 galantamine 24 mg modified release capsule, 28 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +1087741000168105 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 65 actuations, pump pack 280422 1087731000168101 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 65 actuations 1087701000168108 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, actuation 1087671000168107 Mometasone Allergy Relief (GPPL) 1087671000168107 Mometasone Allergy Relief (GPPL) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +931393011000036106 Medi-Rub Analgesic Balm lotion, 100 g, jar 12355 930577011000036104 Medi-Rub Analgesic Balm lotion, 100 g 929946011000036106 Medi-Rub Analgesic Balm lotion 34171000168100 Medi-Rub Analgesic Balm 34171000168100 Medi-Rub Analgesic Balm 932351011000036102 ethanol 20% + trolamine salicylate 10.6% lotion, 100 g 931824011000036101 ethanol 20% + trolamine salicylate 10.6% lotion 931797011000036101 ethanol + trolamine +30881000036106 Irinotecan Hydrochloride Trihydrate (Alphapharm) 500 mg/25 mL concentrated injection, 25 mL vial 163840 28661000036104 Irinotecan Hydrochloride Trihydrate (Alphapharm) 500 mg/25 mL concentrated injection, 25 mL vial 26471000036106 Irinotecan Hydrochloride Trihydrate (Alphapharm) 500 mg/25 mL concentrated injection, 25 mL vial 81987011000036101 Irinotecan Hydrochloride Trihydrate (Alphapharm) 81987011000036101 Irinotecan Hydrochloride Trihydrate (Alphapharm) 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +97271000036104 Norcuron (10 x 4 mg ampoules, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 18629 96861000036106 Norcuron (10 x 4 mg ampoules, 10 x 1 mL inert diluent ampoules), 1 pack 645451000168105 Norcuron (inert substance) diluent, 1 mL ampoule 35981011000036100 Norcuron 35981011000036100 Norcuron 96871000036103 vecuronium bromide 4 mg injection [10 ampoules] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +97271000036104 Norcuron (10 x 4 mg ampoules, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 18629 96861000036106 Norcuron (10 x 4 mg ampoules, 10 x 1 mL inert diluent ampoules), 1 pack 36196011000036106 Norcuron (vecuronium bromide 4 mg) powder for injection, 4 mg ampoule 35981011000036100 Norcuron 35981011000036100 Norcuron 96871000036103 vecuronium bromide 4 mg injection [10 ampoules] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 37970011000036100 vecuronium bromide 4 mg injection, ampoule 37741011000036100 vecuronium +60031011000036102 Heartburn Relief (Amcal) 150 mg film-coated tablet, 28, blister pack 123664 55993011000036107 Heartburn Relief (Amcal) 150 mg film-coated tablet, 28 53750011000036108 Heartburn Relief (Amcal) 150 mg film-coated tablet 53448011000036104 Heartburn Relief (Amcal) 53448011000036104 Heartburn Relief (Amcal) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1103491000168108 Quetiapine (RBX) 300 mg film-coated tablet, 20, strip pack 166422 1103481000168105 Quetiapine (RBX) 300 mg film-coated tablet, 20 2711000036103 Quetiapine (RBX) 300 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +736181000168106 Afeme Duo 150 mg hard capsule, 1, blister pack 736171000168108 Afeme Duo 150 mg hard capsule, 1 736161000168102 Afeme Duo 150 mg hard capsule 736151000168104 Afeme Duo 736151000168104 Afeme Duo 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +97261000036107 Influvac Junior 2013 injection suspension, 1 x 0.25 mL syringe 164381 96831000036100 Influvac Junior 2013 injection suspension, 1 x 0.25 mL syringe 96361000036100 Influvac Junior 2013 injection suspension, 0.25 mL syringe 23441000168102 Influvac Junior 2013 23441000168102 Influvac Junior 2013 96841000036105 influenza trivalent child vaccine 2013 injection, 1 x 0.25 mL syringe 96331000036106 influenza trivalent child vaccine 2013 injection, 0.25 mL syringe 97351000036100 influenza trivalent vaccine 2013 +849971000168104 Itranox 100 mg hard capsule, 60, blister pack 244432 849961000168105 Itranox 100 mg hard capsule, 60 849721000168102 Itranox 100 mg hard capsule 849661000168104 Itranox 849661000168104 Itranox 27156011000036102 itraconazole 100 mg capsule, 60 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +33516011000036109 Omeprazole (GenRx) 20 mg enteric tablet, 30, bottle 123252 33259011000036101 Omeprazole (GenRx) 20 mg enteric tablet, 30 33025011000036105 Omeprazole (GenRx) 20 mg enteric tablet 32977011000036102 Omeprazole (GenRx) 32977011000036102 Omeprazole (GenRx) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +1079141000168107 Atomoxetine (GPPL) 60 mg hard capsule, 28, blister pack 234849 1079131000168103 Atomoxetine (GPPL) 60 mg hard capsule, 28 1079081000168103 Atomoxetine (GPPL) 60 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +60767011000036100 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 30 mL, bottle 54130 56725011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 30 mL 54050011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 63530011000036107 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 30 mL 62032011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61715011000036104 bromhexine + pseudoephedrine +130471000036101 Stelara 45 mg/0.5 mL injection solution, 0.5 mL syringe 165953 127731000036109 Stelara 45 mg/0.5 mL injection solution, 0.5 mL syringe 125651000036103 Stelara 45 mg/0.5 mL injection solution, 0.5 mL syringe 82656011000036107 Stelara 82656011000036107 Stelara 127741000036104 ustekinumab 45 mg/0.5 mL injection, 0.5 mL syringe 125661000036100 ustekinumab 45 mg/0.5 mL injection, syringe 82917011000036103 ustekinumab +720391000168105 Toujeo Solostar 300 units/mL injection solution, 1.5 mL injection device 223457 720381000168107 Toujeo Solostar 300 units/mL injection solution, 1.5 mL injection device 720361000168103 Toujeo Solostar 300 units/mL injection solution, 1.5 mL injection device 720341000168102 Toujeo Solostar 720341000168102 Toujeo Solostar 720371000168109 insulin glargine 300 units/mL injection, 1.5 mL injection device 720351000168100 insulin glargine 300 units/mL injection, injection device 21815011000036108 insulin glargine +803941000168100 Macrozide 500 mg uncoated tablet, 672, blister pack 803931000168109 Macrozide 500 mg uncoated tablet, 672 803881000168104 Macrozide 500 mg uncoated tablet 803841000168109 Macrozide 803841000168109 Macrozide 803921000168106 pyrazinamide 500 mg tablet, 672 803871000168102 pyrazinamide 500 mg tablet 803861000168108 pyrazinamide +45301000036101 Melox 7.5 mg hard capsule, 30, blister pack 181206 43451000036109 Melox 7.5 mg hard capsule, 30 40501000036102 Melox 7.5 mg hard capsule 40051000036105 Melox 40051000036105 Melox 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +59753011000036103 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 2.5 L, bottle 10549 55710011000036108 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 2.5 L 53625011000036105 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 63106011000036105 pholcodine 3 mg/mL oral liquid, 2.5 L 61858011000036102 pholcodine 3 mg/mL oral liquid 21705011000036108 pholcodine +815411000168105 Perindo Arg 10 mg film-coated tablet, 30, bottle 194893 815401000168107 Perindo Arg 10 mg film-coated tablet, 30 815391000168105 Perindo Arg 10 mg film-coated tablet 815251000168105 Perindo Arg 815251000168105 Perindo Arg 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +1062791000168101 Atorvator 20 mg film-coated tablet, 30, blister pack 179837 1062781000168104 Atorvator 20 mg film-coated tablet, 30 1062731000168100 Atorvator 20 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +959221000168100 Ciram 20 mg film-coated tablet, 14, blister pack 158858 959211000168107 Ciram 20 mg film-coated tablet, 14 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +20589011000036100 Diltiazem Hydrochloride CD (Chemmart) 240 mg modified release capsule, 30, blister pack 80550 13943011000036103 Diltiazem Hydrochloride CD (Chemmart) 240 mg modified release capsule, 30 7231011000036107 Diltiazem Hydrochloride CD (Chemmart) 240 mg modified release capsule 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 20911000168101 Diltiazem Hydrochloride CD (Chemmart) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +60296011000036108 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 10, blister pack 137681 56255011000036103 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 10 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63267011000036109 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 10 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +971011000168100 Pregabalin (Apo) 25 mg hard capsule, 500, bottle 193211 971001000168103 Pregabalin (Apo) 25 mg hard capsule, 500 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 970451000168104 pregabalin 25 mg capsule, 500 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +73292011000036106 Jurnista 32 mg modified release tablet, 10, blister pack 141534 73090011000036102 Jurnista 32 mg modified release tablet, 10 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73488011000036107 hydromorphone hydrochloride 32 mg modified release tablet, 10 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +970691000168107 Pregabalin (Apo) 300 mg hard capsule, 14, bottle 193254 970611000168103 Pregabalin (Apo) 300 mg hard capsule, 14 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +95751000036108 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 15, blister pack 195918 94651000036104 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 15 93431000036108 Azithromycin (Terry White Chemists) 500 mg film-coated tablet 93261000036101 Azithromycin (Terry White Chemists) 93261000036101 Azithromycin (Terry White Chemists) 927345011000036101 azithromycin 500 mg tablet, 15 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +20288011000036103 Indapamide Hemihydrate (Chemmart) 2.5 mg film-coated tablet, 90, blister pack 167028 13497011000036104 Indapamide Hemihydrate (Chemmart) 2.5 mg film-coated tablet, 90 6779011000036102 Indapamide Hemihydrate (Chemmart) 2.5 mg film-coated tablet 4052011000036104 Indapamide Hemihydrate (Chemmart) 4052011000036104 Indapamide Hemihydrate (Chemmart) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +20288011000036103 Indapamide Hemihydrate (Chemmart) 2.5 mg film-coated tablet, 90, blister pack 75573 13497011000036104 Indapamide Hemihydrate (Chemmart) 2.5 mg film-coated tablet, 90 6779011000036102 Indapamide Hemihydrate (Chemmart) 2.5 mg film-coated tablet 4052011000036104 Indapamide Hemihydrate (Chemmart) 4052011000036104 Indapamide Hemihydrate (Chemmart) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +858311000168100 Amichlor 10 mg film-coated tablet, 100, blister pack 215373 858291000168104 Amichlor 10 mg film-coated tablet, 100 858281000168102 Amichlor 10 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1094901000168101 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 12, blister pack 287918 1094891000168100 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule, 12 1094831000168104 Diarrhoea Relief (Chemists' Own) 2 mg hard capsule 53104011000036101 Diarrhoea Relief (Chemists' Own) 53104011000036101 Diarrhoea Relief (Chemists' Own) 27212011000036107 loperamide hydrochloride 2 mg capsule, 12 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +178081000036108 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment, 10 g, tube 178091000036105 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment, 10 g 65547011000036100 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment 49231000168106 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) 49231000168106 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) 178101000036101 liquid paraffin 50% + white soft paraffin 50% ointment, 10 g 70224011000036105 liquid paraffin 50% + white soft paraffin 50% ointment 69750011000036107 liquid paraffin + white soft paraffin +649821000168102 Adesan HCT 32/12.5 tablet, 30, blister pack 206485 649261000168108 Adesan HCT 32/12.5 tablet, 30 649251000168106 Adesan HCT 32/12.5 tablet 649241000168109 Adesan HCT 32/12.5 649241000168109 Adesan HCT 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +44641011000036103 Levitra 20 mg film-coated tablet, 6, blister pack 90500 42094011000036108 Levitra 20 mg film-coated tablet, 6 40350011000036103 Levitra 20 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46861011000036105 vardenafil 20 mg tablet, 6 45334011000036104 vardenafil 20 mg tablet 44856011000036100 vardenafil +878851000168105 Bosentan (Ran) 125 mg film-coated tablet, 56, bottle 257734 878841000168108 Bosentan (Ran) 125 mg film-coated tablet, 56 878821000168102 Bosentan (Ran) 125 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +84262011000036106 Paediatric Seravit powder for oral liquid, 200 g, can 83957011000036103 Paediatric Seravit powder for oral liquid, 200 g 83606011000036106 Paediatric Seravit powder for oral liquid 83584011000036106 Paediatric Seravit 83584011000036106 Paediatric Seravit 84612011000036107 vitamins, minerals and trace elements with carbohydrate powder for oral liquid, 200 g 84425011000036107 vitamins, minerals and trace elements with carbohydrate powder for oral liquid 84417011000036106 vitamins, minerals and trace elements with carbohydrate +923501000168107 Anastrozole (Apotex) 1 mg film-coated tablet, 500, bottle 198271 923491000168100 Anastrozole (Apotex) 1 mg film-coated tablet, 500 923231000168103 Anastrozole (Apotex) 1 mg film-coated tablet 923221000168101 Anastrozole (Apotex) 923221000168101 Anastrozole (Apotex) 52131000036104 anastrozole 1 mg tablet, 500 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +778041000168102 Endone XR 20 mg modified release tablet, 60, blister pack 153599 778031000168106 Endone XR 20 mg modified release tablet, 60 777961000168101 Endone XR 20 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +979321000168109 Paracetamol (CA) 500 mg uncoated tablet, 12, blister pack 197677 979311000168102 Paracetamol (CA) 500 mg uncoated tablet, 12 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +925188011000036108 Claratyne Children's Grape 1 mg/mL oral liquid solution, 120 mL, bottle 155064 924725011000036107 Claratyne Children's Grape 1 mg/mL oral liquid solution, 120 mL 924436011000036105 Claratyne Children's Grape 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63587011000036103 loratadine 1 mg/mL oral liquid, 120 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +1016771000168104 Atomoxetine (Apotex) 18 mg hard capsule, 28, blister pack 199929 1016761000168105 Atomoxetine (Apotex) 18 mg hard capsule, 28 1016751000168108 Atomoxetine (Apotex) 18 mg hard capsule 1013681000168104 Atomoxetine (Apotex) 1013681000168104 Atomoxetine (Apotex) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +60283011000036101 Panadol 500 mg film-coated tablet, 12, blister pack 13591 56242011000036109 Panadol 500 mg film-coated tablet, 12 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +20704011000036104 Alprax 500 microgram uncoated tablet, 50, blister pack 82640 13876011000036103 Alprax 500 microgram uncoated tablet, 50 7163011000036101 Alprax 500 microgram uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +74161000036102 Risedronate Sodium (Chemmart) 150 mg film-coated tablet, 1, blister pack 181979 71811000036107 Risedronate Sodium (Chemmart) 150 mg film-coated tablet, 1 69851000036104 Risedronate Sodium (Chemmart) 150 mg film-coated tablet 927777011000036109 Risedronate Sodium (Chemmart) 927777011000036109 Risedronate Sodium (Chemmart) 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +69674011000036109 Nicabate Clear 21 mg/24 hours patch, 3, sachet 81035 67473011000036102 Nicabate Clear 21 mg/24 hours patch, 3 65676011000036109 Nicabate Clear 21 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71998011000036103 nicotine 21 mg/24 hours patch, 3 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +20825011000036106 Pegasys-RBV (4 x 135 microgram syringes, 168 x 200 mg tablets), 1 pack, composite pack 91842 13988011000036102 Pegasys-RBV (4 x 135 microgram syringes, 168 x 200 mg tablets), 1 pack 7271011000036109 Pegasys 135 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28053011000036105 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [168], 1 pack 23370011000036102 peginterferon alfa-2a 135 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20825011000036106 Pegasys-RBV (4 x 135 microgram syringes, 168 x 200 mg tablets), 1 pack, composite pack 91842 13988011000036102 Pegasys-RBV (4 x 135 microgram syringes, 168 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28053011000036105 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [168], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +945071000168109 Diltiazem CD (Sanofi) 180 mg modified release capsule, 7, blister pack 139398 945061000168103 Diltiazem CD (Sanofi) 180 mg modified release capsule, 7 945051000168100 Diltiazem CD (Sanofi) 180 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 46639011000036108 diltiazem hydrochloride 180 mg modified release capsule, 7 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +875631000168108 Bispro 1.25 mg film-coated tablet, 7, blister pack 130177 875621000168105 Bispro 1.25 mg film-coated tablet, 7 875611000168103 Bispro 1.25 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 46794011000036107 bisoprolol fumarate 1.25 mg tablet, 7 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +803621000168102 Abilify ODT 15 mg orally disintegrating tablet, 20, blister pack 128898 803611000168109 Abilify ODT 15 mg orally disintegrating tablet, 20 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803601000168106 aripiprazole 15 mg orally disintegrating tablet, 20 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +1048831000168104 Bupretec 25 microgram/hour patch, 4, sachet 234734 1048821000168102 Bupretec 25 microgram/hour patch, 4 1048751000168100 Bupretec 25 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1048811000168109 buprenorphine 25 microgram/hour patch, 4 775911000168105 buprenorphine 25 microgram/hour patch 21232011000036101 buprenorphine +140521000036100 Thrombix Low Dose Aspirin 100 mg enteric tablet, 90, blister pack 175831 139101000036105 Thrombix Low Dose Aspirin 100 mg enteric tablet, 90 137691000036104 Thrombix Low Dose Aspirin 100 mg enteric tablet 48281000168101 Thrombix Low Dose Aspirin 48281000168101 Thrombix Low Dose Aspirin 75601000036109 aspirin 100 mg enteric tablet, 90 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +929121000168108 Somac 40 mg enteric tablet, 5, blister pack 69792 41853011000036100 Somac 40 mg enteric tablet, 5 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +19320011000036101 Zoton 30 mg enteric capsule, 30, blister pack 50232 12610011000036109 Zoton 30 mg enteric capsule, 30 5114011000036104 Zoton 30 mg enteric capsule 39911000168109 Zoton 39911000168109 Zoton 27235011000036107 lansoprazole 30 mg enteric capsule, 30 22595011000036106 lansoprazole 30 mg enteric capsule 21491011000036101 lansoprazole +18185011000036105 Diapride 4 mg uncoated tablet, 30, blister pack 107347 11375011000036102 Diapride 4 mg uncoated tablet, 30 4911011000036108 Diapride 4 mg uncoated tablet 3696011000036100 Diapride 3696011000036100 Diapride 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +745931000168101 Celebrex 200 mg hard capsule, 50, blister pack 67902 745921000168104 Celebrex 200 mg hard capsule, 50 6496011000036105 Celebrex 200 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +32548011000036106 Tryzan 1.25 mg hard capsule, 30, blister pack 127085 32340011000036106 Tryzan 1.25 mg hard capsule, 30 32217011000036106 Tryzan 1.25 mg hard capsule 3401011000036105 Tryzan 3401011000036105 Tryzan 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +43702011000036105 Clarithro 250 mg film-coated tablet, 100, blister pack 117197 41188011000036106 Clarithro 250 mg film-coated tablet, 100 4718011000036108 Clarithro 250 mg film-coated tablet 4200011000036100 Clarithro 4200011000036100 Clarithro 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1080111000168108 Bisoprolol (Auro) 1.25 mg film-coated tablet, 30, blister pack 175928 1080101000168105 Bisoprolol (Auro) 1.25 mg film-coated tablet, 30 1080071000168101 Bisoprolol (Auro) 1.25 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 46791011000036109 bisoprolol fumarate 1.25 mg tablet, 30 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +77233011000036104 Escitalopram (Chemmart) 20 mg film-coated tablet, 28, blister pack 146027 76649011000036104 Escitalopram (Chemmart) 20 mg film-coated tablet, 28 76087011000036109 Escitalopram (Chemmart) 20 mg film-coated tablet 75923011000036104 Escitalopram (Chemmart) 75923011000036104 Escitalopram (Chemmart) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +77233011000036104 Escitalopram (Chemmart) 20 mg film-coated tablet, 28, blister pack 213724 76649011000036104 Escitalopram (Chemmart) 20 mg film-coated tablet, 28 76087011000036109 Escitalopram (Chemmart) 20 mg film-coated tablet 75923011000036104 Escitalopram (Chemmart) 75923011000036104 Escitalopram (Chemmart) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +43656011000036107 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 50 mL vial 116879 41177011000036102 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 50 mL vial 39815011000036100 Ciprofloxacin (Sandoz) 100 mg/50 mL intravenous infusion injection, 50 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46325011000036100 ciprofloxacin 100 mg/50 mL injection, 50 mL vial 45080011000036102 ciprofloxacin 100 mg/50 mL injection, vial 21245011000036105 ciprofloxacin +962241000168106 Ciprofloxacin (GA) 250 mg film-coated tablet, 20, blister pack 148854 962231000168102 Ciprofloxacin (GA) 250 mg film-coated tablet, 20 962161000168104 Ciprofloxacin (GA) 250 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 932363011000036105 ciprofloxacin 250 mg tablet, 20 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +1020151000168100 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 30, blister pack 190327 1020141000168102 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 30 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +45461000036106 Hydroxychloroquine Sulfate (Terry White Chemists) 200 mg tablet, 100, bottle 186391 43611000036108 Hydroxychloroquine Sulfate (Terry White Chemists) 200 mg tablet, 100 40541000036104 Hydroxychloroquine Sulfate (Terry White Chemists) 200 mg tablet 40451000036100 Hydroxychloroquine Sulfate (Terry White Chemists) 40451000036100 Hydroxychloroquine Sulfate (Terry White Chemists) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +160601000036103 Kombiglyze XR 5/500 modified release tablet, 28, blister pack 202209 159471000036109 Kombiglyze XR 5/500 modified release tablet, 28 157811000036107 Kombiglyze XR 5/500 modified release tablet 5121000168109 Kombiglyze XR 5/500 5121000168109 Kombiglyze XR 5/500 159481000036106 saxagliptin 5 mg + metformin hydrochloride 500 mg modified release tablet, 28 157821000036100 saxagliptin 5 mg + metformin hydrochloride 500 mg modified release tablet 160681000036109 saxagliptin + metformin +45501000036106 Pradaxa 150 mg hard capsule, 60, blister pack 168211 35661000036105 Pradaxa 150 mg hard capsule, 60 32431000036108 Pradaxa 150 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 35671000036102 dabigatran etexilate 150 mg capsule, 60 32441000036103 dabigatran etexilate 150 mg capsule 79729011000036103 dabigatran +829481000168108 Baraclude 1 mg film-coated tablet, 30, blister pack 116853 829471000168105 Baraclude 1 mg film-coated tablet, 30 829451000168101 Baraclude 1 mg film-coated tablet 4030011000036104 Baraclude 4030011000036104 Baraclude 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +982611000168107 Diazepam (Terry White Chemists) 2 mg uncoated tablet, 50, blister pack 93672 982601000168109 Diazepam (Terry White Chemists) 2 mg uncoated tablet, 50 982591000168102 Diazepam (Terry White Chemists) 2 mg uncoated tablet 982531000168101 Diazepam (Terry White Chemists) 982531000168101 Diazepam (Terry White Chemists) 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +43830011000036101 Fucidin 250 mg film-coated tablet, 24, blister pack 125822 41331011000036103 Fucidin 250 mg film-coated tablet, 24 4644011000036104 Fucidin 250 mg film-coated tablet 20071000168105 Fucidin 20071000168105 Fucidin 46253011000036107 sodium fusidate 250 mg tablet, 24 22434011000036105 sodium fusidate 250 mg tablet 21917011000036107 fusidate +91561000036102 Zometa 4 mg/100 mL injection solution, 100 mL vial 192265 89991000036104 Zometa 4 mg/100 mL injection solution, 100 mL vial 88431000036100 Zometa 4 mg/100 mL injection solution, 100 mL vial 3922011000036109 Zometa 3922011000036109 Zometa 90001000036100 zoledronic acid 4 mg/100 mL injection, 100 mL vial 88441000036105 zoledronic acid 4 mg/100 mL injection, vial 21790011000036102 zoledronic acid +787741000168108 Arizole 20 mg uncoated tablet, 56, blister pack 198193 787731000168104 Arizole 20 mg uncoated tablet, 56 787561000168100 Arizole 20 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787721000168102 aripiprazole 20 mg tablet, 56 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +20007011000036108 Temodal 250 mg hard capsule, 5, bottle 68720 13243011000036104 Temodal 250 mg hard capsule, 5 6525011000036102 Temodal 250 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +945151000168101 Cilopam-S 5 mg film-coated tablet, 56, blister pack 191871 945141000168103 Cilopam-S 5 mg film-coated tablet, 56 944981000168107 Cilopam-S 5 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 945131000168107 escitalopram 5 mg tablet, 56 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +19551000036103 Pravastatin Sodium (Actavis) 20 mg uncoated tablet, 30, blister pack 156359 19091000036103 Pravastatin Sodium (Actavis) 20 mg uncoated tablet, 30 18581000036103 Pravastatin Sodium (Actavis) 20 mg uncoated tablet 18491000036102 Pravastatin Sodium (Actavis) 18491000036102 Pravastatin Sodium (Actavis) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +929025011000036109 Risedronate (Apo) 35 mg film-coated tablet, 1, blister pack 160642 928386011000036106 Risedronate (Apo) 35 mg film-coated tablet, 1 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +78986011000036106 Tinexa 500 microgram uncoated tablet, 8, bottle 132561 78813011000036106 Tinexa 500 microgram uncoated tablet, 8 78632011000036102 Tinexa 500 microgram uncoated tablet 78597011000036104 Tinexa 78597011000036104 Tinexa 27272011000036101 cabergoline 500 microgram tablet, 8 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +121751000036106 Acris Once-a-Month 150 mg film-coated tablet, 1, blister pack 196060 120811000036107 Acris Once-a-Month 150 mg film-coated tablet, 1 119301000036103 Acris Once-a-Month 150 mg film-coated tablet 19281000168101 Acris Once-a-Month 19281000168101 Acris Once-a-Month 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +44464011000036108 Ciazil 20 mg film-coated tablet, 250, bottle 74265 41920011000036102 Ciazil 20 mg film-coated tablet, 250 6727011000036108 Ciazil 20 mg film-coated tablet 3546011000036102 Ciazil 3546011000036102 Ciazil 46709011000036105 citalopram 20 mg tablet, 250 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +79032011000036108 Bispro 2.5 mg film-coated tablet, 56, blister pack 130178 78789011000036108 Bispro 2.5 mg film-coated tablet, 56 78625011000036108 Bispro 2.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79205011000036104 bisoprolol fumarate 2.5 mg tablet, 56 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +931511011000036107 Prochlorperazine Maleate (Genepharm) 5 mg uncoated tablet, 25, blister pack 158413 930672011000036108 Prochlorperazine Maleate (Genepharm) 5 mg uncoated tablet, 25 930003011000036104 Prochlorperazine Maleate (Genepharm) 5 mg uncoated tablet 929920011000036106 Prochlorperazine Maleate (Genepharm) 929920011000036106 Prochlorperazine Maleate (Genepharm) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +946201000168100 Glimepiride (Sanofi) 4 mg uncoated tablet, 30, blister pack 142393 946191000168103 Glimepiride (Sanofi) 4 mg uncoated tablet, 30 946151000168108 Glimepiride (Sanofi) 4 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +970871000168105 Pregabalin (Apo) 25 mg hard capsule, 20, bottle 193211 970001000168109 Pregabalin (Apo) 25 mg hard capsule, 20 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +21142011000036100 Aeron 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 98647 14284011000036108 Aeron 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 7570011000036108 Aeron 250 microgram/mL inhalation solution, ampoule 3743011000036107 Aeron 3743011000036107 Aeron 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +999771000168103 Memantine (Apotex) 10 mg film-coated tablet, 50, bottle 159579 999521000168107 Memantine (Apotex) 10 mg film-coated tablet, 50 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38841011000036109 memantine hydrochloride 10 mg tablet, 50 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +21106011000036108 Reminyl 8 mg modified release capsule, 28, blister pack 97883 14249011000036104 Reminyl 8 mg modified release capsule, 28 7535011000036101 Reminyl 8 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 28248011000036107 galantamine 8 mg modified release capsule, 28 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +37445011000036106 Ativan 1 mg uncoated tablet, 5, blister pack 10387 36625011000036105 Ativan 1 mg uncoated tablet, 5 36051011000036103 Ativan 1 mg uncoated tablet 35865011000036105 Ativan 35865011000036105 Ativan 38545011000036105 lorazepam 1 mg tablet, 5 37826011000036106 lorazepam 1 mg tablet 37711011000036105 lorazepam +923690011000036102 Grandicrit 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 147853 923312011000036105 Grandicrit 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 922995011000036103 Grandicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924132011000036107 epoetin lambda 5000 units/0.5 mL injection, 6 x 0.5 mL syringes 923956011000036106 epoetin lambda 5000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +929002011000036108 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 240, blister pack 158915 928363011000036103 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 240 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929218011000036103 valaciclovir 500 mg tablet, 240 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +916201000168107 Ultravist-150 312 mg (iodine 150 mg)/mL injection solution, 10 x 100 mL bottles 48502 916191000168109 Ultravist-150 312 mg (iodine 150 mg)/mL injection solution, 10 x 100 mL bottles 916171000168108 Ultravist-150 312 mg (iodine 150 mg)/mL injection solution, 100 mL bottle 912981000168105 Ultravist-150 912981000168105 Ultravist-150 916181000168106 iopromide 312 mg (iodine 150 mg)/mL injection, 10 x 100 mL bottles 916161000168102 iopromide 312 mg (iodine 150 mg)/mL injection, 100 mL bottle 77425011000036101 iopromide +1100391000168107 Delucon 150 mg film-coated tablet, 100, bottle 172853 1100381000168109 Delucon 150 mg film-coated tablet, 100 1100371000168106 Delucon 150 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 1075731000168104 quetiapine 150 mg tablet, 100 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +1048921000168105 Oxycodone (WKT) 10 mg/mL injection solution, 5 x 1 mL ampoules 277850 1048911000168103 Oxycodone (WKT) 10 mg/mL injection solution, 5 x 1 mL ampoules 1048901000168101 Oxycodone (WKT) 10 mg/mL injection solution, ampoule 1048891000168100 Oxycodone (WKT) 1048891000168100 Oxycodone (WKT) 35093011000036105 oxycodone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 34845011000036105 oxycodone hydrochloride 10 mg/mL injection, ampoule 21259011000036105 oxycodone +44435011000036100 Midazolam (Pfizer (Perth)) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 72207 41891011000036105 Midazolam (Pfizer (Perth)) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 40246011000036108 Midazolam (Pfizer (Perth)) 50 mg/10 mL injection solution, 10 mL ampoule 39704011000036104 Midazolam (Pfizer (Perth)) 39704011000036104 Midazolam (Pfizer (Perth)) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +43980011000036101 Diazepam (Orion) 1 mg/mL oral liquid solution, 100 mL, bottle 42852 41472011000036100 Diazepam (Orion) 1 mg/mL oral liquid solution, 100 mL 39998011000036101 Diazepam (Orion) 1 mg/mL oral liquid solution 35917011000036105 Diazepam (Orion) 35917011000036105 Diazepam (Orion) 46318011000036100 diazepam 1 mg/mL oral liquid, 100 mL 45074011000036103 diazepam 1 mg/mL oral liquid 21688011000036107 diazepam +931684011000036100 Modavigil 100 mg tablet, 10, blister pack 168497 930844011000036105 Modavigil 100 mg tablet, 10 7144011000036109 Modavigil 100 mg tablet 3390011000036106 Modavigil 3390011000036106 Modavigil 932449011000036107 modafinil 100 mg tablet, 10 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +20743011000036106 Movox 50 mg film-coated tablet, 30, blister pack 90058 13912011000036103 Movox 50 mg film-coated tablet, 30 7198011000036109 Movox 50 mg film-coated tablet 3073011000036106 Movox 3073011000036106 Movox 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +844371000168101 Lovan 20 mg tablet, 28, blister pack 61080 844361000168107 Lovan 20 mg tablet, 28 844351000168105 Lovan 20 mg tablet 2938011000036102 Lovan 2938011000036102 Lovan 844321000168102 fluoxetine 20 mg tablet, 28 844301000168106 fluoxetine 20 mg tablet 21411011000036102 fluoxetine +19402011000036100 Kripton 2.5 mg uncoated tablet, 30, blister pack 53169 12686011000036105 Kripton 2.5 mg uncoated tablet, 30 5427011000036102 Kripton 2.5 mg uncoated tablet 3715011000036104 Kripton 3715011000036104 Kripton 27287011000036107 bromocriptine 2.5 mg tablet, 30 22641011000036106 bromocriptine 2.5 mg tablet 21300011000036100 bromocriptine +931638011000036100 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 100, bottle 166255 930798011000036108 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 100 930053011000036107 Pravastatin Sodium (Apo) 10 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 932414011000036100 pravastatin sodium 10 mg tablet, 100 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +1013801000168108 Valsartan (Apotex) 40 mg film-coated tablet, 30, blister pack 185857 1013791000168107 Valsartan (Apotex) 40 mg film-coated tablet, 30 1013691000168101 Valsartan (Apotex) 40 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63856011000036105 valsartan 40 mg tablet, 30 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +18352011000036100 Gabaran 800 mg film-coated tablet, 50, blister pack 121843 11695011000036103 Gabaran 800 mg film-coated tablet, 50 4651011000036104 Gabaran 800 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 26739011000036102 gabapentin 800 mg tablet, 50 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +1051251000168104 Targin 60/30 mg modified release tablet, 20, blister pack 243252 1051241000168101 Targin 60/30 mg modified release tablet, 20 826591000168103 Targin 60/30 mg modified release tablet 826291000168101 Targin 60/30 mg 826291000168101 Targin 60/30 mg 1051231000168105 oxycodone hydrochloride 60 mg + naloxone hydrochloride 30 mg modified release tablet, 20 826581000168101 oxycodone hydrochloride 60 mg + naloxone hydrochloride 30 mg modified release tablet 923931011000036100 oxycodone + naloxone +18669011000036105 Omeprazole (GA) 20 mg enteric tablet, 30, bottle 123191 11732011000036106 Omeprazole (GA) 20 mg enteric tablet, 30 4956011000036105 Omeprazole (GA) 20 mg enteric tablet 3601011000036107 Omeprazole (GA) 3601011000036107 Omeprazole (GA) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +953651000168108 Gabapentin (AN) 400 mg hard capsule, 300, blister pack 263842 953641000168106 Gabapentin (AN) 400 mg hard capsule, 300 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953631000168102 gabapentin 400 mg capsule, 300 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +79700011000036100 Allerfexo 120 mg film-coated tablet, 10, blister pack 159415 79516011000036103 Allerfexo 120 mg film-coated tablet, 10 79393011000036107 Allerfexo 120 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +988051000168100 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 45 mL, bottle 178433 988041000168102 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 45 mL 988001000168104 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 5 mL 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 988031000168106 ibuprofen 100 mg/5 mL oral liquid, 45 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +74241000036109 Levetiracetam (Pfizer) 250 mg film-coated tablet, 60, bottle 182822 71831000036103 Levetiracetam (Pfizer) 250 mg film-coated tablet, 60 70121000036104 Levetiracetam (Pfizer) 250 mg film-coated tablet 69321000036103 Levetiracetam (Pfizer) 69321000036103 Levetiracetam (Pfizer) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +1054311000168105 Jurnista 4 mg modified release tablet, 28, blister pack 155995 1054301000168107 Jurnista 4 mg modified release tablet, 28 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054291000168106 hydromorphone hydrochloride 4 mg modified release tablet, 28 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +1117471000168103 Donepezil (GH) 10 mg film-coated tablet, 14, blister pack 193667 1117461000168109 Donepezil (GH) 10 mg film-coated tablet, 14 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 1011591000168104 donepezil hydrochloride 10 mg tablet, 14 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +18087011000036108 Avanza 45 mg film-coated tablet, 30, blister pack 121868 11701011000036107 Avanza 45 mg film-coated tablet, 30 5594011000036107 Avanza 45 mg film-coated tablet 43231000168109 Avanza 43231000168109 Avanza 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +61637011000036108 Paralgin Tabsule 500 mg uncoated tablet, 48, blister pack 97039 57559011000036105 Paralgin Tabsule 500 mg uncoated tablet, 48 54350011000036106 Paralgin Tabsule 500 mg uncoated tablet 16671000168105 Paralgin Tabsule 16671000168105 Paralgin Tabsule 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +931442011000036101 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 40 x 100 mL bags 144609 930621011000036101 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 40 x 100 mL bags 929977011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932377011000036107 sodium chloride 0.9% (900 mg/100 mL) injection, 40 x 100 mL bags 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +60957011000036100 Nicotinell Fruit 4 mg chewing gum, 96, blister pack 126017 56900011000036103 Nicotinell Fruit 4 mg chewing gum, 96 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60957011000036100 Nicotinell Fruit 4 mg chewing gum, 96, blister pack 62368 56900011000036103 Nicotinell Fruit 4 mg chewing gum, 96 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +17979011000036108 Mogadon 5 mg uncoated tablet, 25, blister pack 13751 12009011000036109 Mogadon 5 mg uncoated tablet, 25 5371011000036104 Mogadon 5 mg uncoated tablet 3616011000036104 Mogadon 3616011000036104 Mogadon 27314011000036105 nitrazepam 5 mg tablet, 25 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +52714011000036101 Diphereline (1 x 11.25 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 109856 52519011000036101 Diphereline (1 x 11.25 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 52401011000036108 Diphereline (triptorelin 11.25 mg) powder for injection, 11.25 mg vial 52377011000036101 Diphereline 52377011000036101 Diphereline 52864011000036104 triptorelin 11.25 mg injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 52805011000036101 triptorelin 11.25 mg injection, vial 52800011000036105 triptorelin +52714011000036101 Diphereline (1 x 11.25 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 109856 52519011000036101 Diphereline (1 x 11.25 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 638051000168105 Diphereline (inert substance) diluent, 2 mL ampoule 52377011000036101 Diphereline 52377011000036101 Diphereline 52864011000036104 triptorelin 11.25 mg injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 634671000168103 inert substance diluent, 2 mL ampoule 21220011000036103 inert substance +31041000036104 Onsetron ODT 4 mg orally disintegrating tablet, 4, blister pack 176761 28841000036101 Onsetron ODT 4 mg orally disintegrating tablet, 4 26391000036100 Onsetron ODT 4 mg orally disintegrating tablet 26511000168108 Onsetron ODT 26511000168108 Onsetron ODT 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +790881000168107 Quetiapine XR (AS) 400 mg modified release tablet, 60, blister pack 226819 790871000168109 Quetiapine XR (AS) 400 mg modified release tablet, 60 790781000168103 Quetiapine XR (AS) 400 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +829661000168102 Moxicam 15 mg hard capsule, 30, blister pack 232585 829651000168104 Moxicam 15 mg hard capsule, 30 829641000168101 Moxicam 15 mg hard capsule 4414011000036108 Moxicam 4414011000036108 Moxicam 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +1100521000168101 Flucloxacillin (Chemmart) 250 mg capsule, 24, blister pack 226387 1100511000168108 Flucloxacillin (Chemmart) 250 mg capsule, 24 1100501000168105 Flucloxacillin (Chemmart) 250 mg capsule 1100401000168109 Flucloxacillin (Chemmart) 1100401000168109 Flucloxacillin (Chemmart) 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +881521000168104 Esmya 5 mg tablet, 84, blister pack 237700 881511000168106 Esmya 5 mg tablet, 84 881461000168108 Esmya 5 mg tablet 881441000168109 Esmya 881441000168109 Esmya 881501000168108 ulipristal acetate 5 mg tablet, 84 881451000168106 ulipristal acetate 5 mg tablet 838541000168108 ulipristal +77367011000036107 Ostelin-1000 25 microgram soft capsule, 10, bottle 67032 76783011000036102 Ostelin-1000 25 microgram soft capsule, 10 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78287011000036108 ergocalciferol 25 microgram capsule, 10 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +700011000168108 Iclusig 15 mg film-coated tablet, 60, bottle 212583 700001000168105 Iclusig 15 mg film-coated tablet, 60 699981000168104 Iclusig 15 mg film-coated tablet 699941000168109 Iclusig 699941000168109 Iclusig 699991000168101 ponatinib 15 mg tablet, 60 699971000168102 ponatinib 15 mg tablet 699961000168108 ponatinib +1014121000168106 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 4 x 100 mL vials 205927 1014111000168104 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 4 x 100 mL vials 1014081000168109 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 100 mL vial 731221000168109 Zoledronic Acid (Apo) 731221000168109 Zoledronic Acid (Apo) 90031000036107 zoledronic acid 4 mg/100 mL injection, 4 x 100 mL vials 88441000036105 zoledronic acid 4 mg/100 mL injection, vial 21790011000036102 zoledronic acid +789431000168101 Oxycodone (HX) 10 mg modified release tablet, 28, bottle 153603 789421000168104 Oxycodone (HX) 10 mg modified release tablet, 28 789391000168106 Oxycodone (HX) 10 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +924701000168104 Carvedilol (DRLA) 25 mg film-coated tablet, 100, bottle 166015 924691000168104 Carvedilol (DRLA) 25 mg film-coated tablet, 100 924671000168100 Carvedilol (DRLA) 25 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924681000168102 carvedilol 25 mg tablet, 100 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +69317011000036101 Calamine (Orion) 15% lotion, 200 mL, bottle 21235 67117011000036102 Calamine (Orion) 15% lotion, 200 mL 65207011000036102 Calamine (Orion) 15% lotion 65020011000036100 Calamine (Orion) 65020011000036100 Calamine (Orion) 71701011000036104 calamine 15% lotion, 200 mL 70135011000036109 calamine 15% lotion 69791011000036109 calamine +61608011000036103 Strepfen Intensive orange sugar free 8.75 mg lozenge, 8, blister pack 157020 57530011000036100 Strepfen Intensive orange sugar free 8.75 mg lozenge, 8 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63912011000036107 flurbiprofen 8.75 mg lozenge, 8 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +61608011000036103 Strepfen Intensive orange sugar free 8.75 mg lozenge, 8, blister pack 96063 57530011000036100 Strepfen Intensive orange sugar free 8.75 mg lozenge, 8 54341011000036102 Strepfen Intensive orange sugar free 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63912011000036107 flurbiprofen 8.75 mg lozenge, 8 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +844051000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 1000, bottle 218069 844041000168106 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 1000 843891000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 692571000168100 desvenlafaxine 100 mg modified release tablet, 1000 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +91641000036104 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 20, blister pack 192876 90121000036109 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 20 88251000036109 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +91641000036104 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 20, blister pack 202703 90121000036109 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 20 88251000036109 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +925257011000036103 Sumatriptan (MPPL) 100 mg film-coated tablet, 2, blister pack 160193 924794011000036104 Sumatriptan (MPPL) 100 mg film-coated tablet, 2 924489011000036105 Sumatriptan (MPPL) 100 mg film-coated tablet 924380011000036107 Sumatriptan (MPPL) 924380011000036107 Sumatriptan (MPPL) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +779241000168102 Bupradex 8 mg sublingual tablet, 28, blister pack 152477 779231000168106 Bupradex 8 mg sublingual tablet, 28 779201000168104 Bupradex 8 mg sublingual tablet 779151000168107 Bupradex 779151000168107 Bupradex 685731000168103 buprenorphine 8 mg sublingual tablet, 28 685621000168108 buprenorphine 8 mg sublingual tablet 21232011000036101 buprenorphine +700025781000036103 Risedronate EC (Winthrop) 35 mg enteric tablet, 4, blister pack 101000168102 Risedronate EC (Winthrop) 35 mg enteric tablet, 4 69651000036103 Risedronate EC (Winthrop) 35 mg enteric tablet 69381000036102 Risedronate EC (Winthrop) 69381000036102 Risedronate EC (Winthrop) 75621000036104 risedronate sodium 35 mg enteric tablet, 4 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +786541000168102 Olmesartan/Amlodipine 20/5 (GenRx) film-coated tablet, 30, blister pack 218254 786531000168106 Olmesartan/Amlodipine 20/5 (GenRx) film-coated tablet, 30 786521000168108 Olmesartan/Amlodipine 20/5 (GenRx) film-coated tablet 786511000168101 Olmesartan/Amlodipine 20/5 (GenRx) 786511000168101 Olmesartan/Amlodipine 20/5 (GenRx) 922572011000036109 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 30 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +921829011000036101 Phenytoin Sodium (Sandoz) 250 mg/5 mL injection solution, 5 x 5 mL ampoules 117865 921383011000036108 Phenytoin Sodium (Sandoz) 250 mg/5 mL injection solution, 5 x 5 mL ampoules 920978011000036108 Phenytoin Sodium (Sandoz) 250 mg/5 mL injection solution, 5 mL ampoule 920932011000036107 Phenytoin Sodium (Sandoz) 920932011000036107 Phenytoin Sodium (Sandoz) 46348011000036108 phenytoin sodium 250 mg/5 mL injection, 5 x 5 mL ampoules 45098011000036104 phenytoin sodium 250 mg/5 mL injection, ampoule 21672011000036100 phenytoin +1009781000168105 Valvala-1000 1 g film-coated tablet, 50, blister pack 154462 1009771000168107 Valvala-1000 1 g film-coated tablet, 50 1009741000168100 Valvala-1000 1 g film-coated tablet 1009731000168109 Valvala-1000 1009731000168109 Valvala-1000 51831000036101 valaciclovir 1 g tablet, 50 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +999611000168104 Memantine (Apotex) 10 mg film-coated tablet, 100, blister pack 159580 999601000168102 Memantine (Apotex) 10 mg film-coated tablet, 100 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38838011000036104 memantine hydrochloride 10 mg tablet, 100 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +710201000168102 PKU Air 15 Red (Berry Blast) oral liquid solution, 30 x 130 mL pouches 710181000168103 PKU Air 15 Red (Berry Blast) oral liquid solution, 30 x 130 mL pouches 710161000168107 PKU Air 15 Red (Berry Blast) oral liquid solution, 130 mL pouch 709991000168108 PKU Air 15 709991000168108 PKU Air 15 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +18168011000036101 Lipostat 40 mg uncoated tablet, 30, blister pack 118591 11582011000036104 Lipostat 40 mg uncoated tablet, 30 5638011000036101 Lipostat 40 mg uncoated tablet 3757011000036101 Lipostat 3757011000036101 Lipostat 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +780691000168107 Fentanyl (Apo) 12 microgram/hour patch, 10, sachet 152577 780681000168109 Fentanyl (Apo) 12 microgram/hour patch, 10 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236041000036106 fentanyl 12 microgram/hour patch, 10 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +929129011000036103 Norfloxacin (Sandoz) 400 mg film-coated tablet, 14, blister pack 76899 928486011000036102 Norfloxacin (Sandoz) 400 mg film-coated tablet, 14 927996011000036107 Norfloxacin (Sandoz) 400 mg film-coated tablet 927816011000036100 Norfloxacin (Sandoz) 927816011000036100 Norfloxacin (Sandoz) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +1083161000168101 Sorbolene Lotion with 10% Glycerine (David Craig) cream, 500 mL, pump pack 1083151000168103 Sorbolene Lotion with 10% Glycerine (David Craig) cream, 500 mL 1083141000168100 Sorbolene Lotion with 10% Glycerine (David Craig) cream 1083131000168109 Sorbolene Lotion with 10% Glycerine (David Craig) 1083131000168109 Sorbolene Lotion with 10% Glycerine (David Craig) 705881000168102 glycerol 10% + cetomacrogol aqueous cream, 500 mL 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +962151000168101 Loxalate 5 mg film-coated tablet, 30, blister pack 119961 962141000168103 Loxalate 5 mg film-coated tablet, 30 962111000168102 Loxalate 5 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +790801000168104 Quetiapine XR (AS) 400 mg modified release tablet, 10, blister pack 226819 790791000168100 Quetiapine XR (AS) 400 mg modified release tablet, 10 790781000168103 Quetiapine XR (AS) 400 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51538011000036101 quetiapine 400 mg modified release tablet, 10 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +37572011000036109 Gentamicin (DBL) 10 mg/mL injection solution, 5 x 1 mL ampoules 16339 36839011000036104 Gentamicin (DBL) 10 mg/mL injection solution, 5 x 1 mL ampoules 36181011000036100 Gentamicin (DBL) 10 mg/mL injection solution, ampoule 4253011000036100 Gentamicin (DBL) 4253011000036100 Gentamicin (DBL) 38728011000036100 gentamicin 10 mg/mL injection, 5 x 1 mL ampoules 37958011000036100 gentamicin 10 mg/mL injection, ampoule 21397011000036102 gentamicin +18803011000036102 Ozole 100 mg hard capsule, 28, blister pack 122903 11725011000036100 Ozole 100 mg hard capsule, 28 4604011000036108 Ozole 100 mg hard capsule 3098011000036107 Ozole 3098011000036107 Ozole 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +45661000036109 Quetiapine (Stada) 25 mg film-coated tablet, 60, blister pack 170853 42971000036103 Quetiapine (Stada) 25 mg film-coated tablet, 60 41351000036102 Quetiapine (Stada) 25 mg film-coated tablet 40401000036101 Quetiapine (Stada) 40401000036101 Quetiapine (Stada) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +929080011000036105 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 50, blister pack 166910 928441011000036100 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 50 927984011000036103 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929260011000036104 pioglitazone 45 mg tablet, 50 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +68846011000036109 Methylated Spirit (Orion) 1 g/mL application, 500 mL, bottle 10842 66566011000036106 Methylated Spirit (Orion) 1 g/mL application, 500 mL 65286011000036104 Methylated Spirit (Orion) 1 g/mL application 65036011000036104 Methylated Spirit (Orion) 65036011000036104 Methylated Spirit (Orion) 71289011000036108 industrial methylated spirit 1 g/mL application, 500 mL 69932011000036102 industrial methylated spirit 1 g/mL application 69863011000036106 industrial methylated spirit +740471000168104 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet, 4, blister pack 163653 740461000168105 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet, 4 740451000168108 Ondansetron ODT (SZ) 4 mg orally disintegrating tablet 740371000168106 Ondansetron ODT (SZ) 740371000168106 Ondansetron ODT (SZ) 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +806591000168109 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet, 30, blister pack 184811 806581000168106 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet, 30 806551000168104 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +913171000168103 Amlodipine (Alkem) 5 mg tablet, 10, blister pack 215708 913161000168109 Amlodipine (Alkem) 5 mg tablet, 10 913091000168103 Amlodipine (Alkem) 5 mg tablet 913041000168106 Amlodipine (Alkem) 913041000168106 Amlodipine (Alkem) 84619011000036102 amlodipine 5 mg tablet, 10 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +1120621000168108 Xque XR 50 mg modified release tablet, 30, blister pack 241752 1120611000168101 Xque XR 50 mg modified release tablet, 30 1120581000168108 Xque XR 50 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 809171000168107 quetiapine 50 mg modified release tablet, 30 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +74481000036104 Nizoral 1% shampoo, 100 mL, bottle 58176 72431000036106 Nizoral 1% shampoo, 100 mL 69711000036109 Nizoral 1% shampoo 4145011000036104 Nizoral 4145011000036104 Nizoral 72441000036101 ketoconazole 1% shampoo, 100 mL 69721000036102 ketoconazole 1% shampoo 21500011000036103 ketoconazole +996711000168100 Renvela 2.4 g powder for oral liquid, 90 sachets 220890 996701000168103 Renvela 2.4 g powder for oral liquid, 90 sachets 996621000168100 Renvela 2.4 g powder for oral liquid, 2.4 g sachet 996601000168109 Renvela 996601000168109 Renvela 996691000168103 sevelamer carbonate 2.4 g powder for oral liquid, 90 sachets 996611000168107 sevelamer carbonate 2.4 g powder for oral liquid, sachet 32634011000036107 sevelamer +44383011000036101 Arava 20 mg film-coated tablet, 10, bottle 69694 41845011000036102 Arava 20 mg film-coated tablet, 10 6567011000036102 Arava 20 mg film-coated tablet, 1 tablet 3730011000036103 Arava 3730011000036103 Arava 46651011000036108 leflunomide 20 mg tablet, 10 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +931664011000036103 Twynsta 40/5 mg multilayer tablet, 7, blister pack 166265 930824011000036107 Twynsta 40/5 mg multilayer tablet, 7 930059011000036105 Twynsta 40/5 mg multilayer tablet 33031000168101 Twynsta 40/5 mg 33031000168101 Twynsta 40/5 mg 932437011000036104 telmisartan 40 mg + amlodipine 5 mg tablet, 7 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +692841000168109 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet, 50, blister pack 215344 692831000168100 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet, 50 692821000168103 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +43719011000036103 Somidem 10 mg film-coated tablet, 14, bottle 119197 41215011000036104 Somidem 10 mg film-coated tablet, 14 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +37526011000036107 Anagraine uncoated tablet, 24, blister pack 13547 36794011000036108 Anagraine uncoated tablet, 24 36153011000036106 Anagraine uncoated tablet 35953011000036106 Anagraine 35953011000036106 Anagraine 38691011000036106 metoclopramide hydrochloride 5 mg + paracetamol 500 mg tablet, 24 37929011000036107 metoclopramide hydrochloride 5 mg + paracetamol 500 mg tablet 37791011000036106 metoclopramide + paracetamol +928838011000036101 Paclitaxel (DP) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 129570 928200011000036100 Paclitaxel (DP) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 927859011000036103 Paclitaxel (DP) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 927811011000036105 Paclitaxel (DP) 927811011000036105 Paclitaxel (DP) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +1065911000168100 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 12, blister pack 220730 1065901000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 12 1065871000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +992461000168109 Bisoprolol (Apotex) 10 mg tablet, 30, blister pack 182127 992451000168107 Bisoprolol (Apotex) 10 mg tablet, 30 992371000168105 Bisoprolol (Apotex) 10 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79215011000036102 bisoprolol fumarate 10 mg tablet, 30 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +875791000168101 Bispro 3.75 mg film-coated tablet, 7, blister pack 130179 875781000168104 Bispro 3.75 mg film-coated tablet, 7 875761000168108 Bispro 3.75 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 875771000168102 bisoprolol fumarate 3.75 mg tablet, 7 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +947811000168100 Risdone 500 microgram film-coated tablet, 20, blister pack 144200 947801000168103 Risdone 500 microgram film-coated tablet, 20 947741000168107 Risdone 500 microgram film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +37585011000036108 Mefic 250 mg hard capsule, 50, bottle 17653 36852011000036105 Mefic 250 mg hard capsule, 50 36192011000036107 Mefic 250 mg hard capsule 35969011000036104 Mefic 35969011000036104 Mefic 26858011000036109 mefenamic acid 250 mg capsule, 50 22239011000036107 mefenamic acid 250 mg capsule 21505011000036107 mefenamic acid +1014031000168108 Aripiprazole (Generic Health) 5 mg uncoated tablet, 30, blister pack 176793 1014021000168105 Aripiprazole (Generic Health) 5 mg uncoated tablet, 30 1014011000168103 Aripiprazole (Generic Health) 5 mg uncoated tablet 1013811000168106 Aripiprazole (Generic Health) 1013811000168106 Aripiprazole (Generic Health) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +921901011000036102 Exforge HCT 10/160/12.5 film-coated tablet, 7, blister pack 158164 921460011000036106 Exforge HCT 10/160/12.5 film-coated tablet, 7 921017011000036103 Exforge HCT 10/160/12.5 film-coated tablet 25011000168107 Exforge HCT 10/160/12.5 25011000168107 Exforge HCT 10/160/12.5 922588011000036102 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 7 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +858471000168101 Amichlor 50 mg film-coated tablet, 100, blister pack 215391 858371000168108 Amichlor 50 mg film-coated tablet, 100 858361000168102 Amichlor 50 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +35636011000036102 Bion Tears 0.1% / 0.3% eye drops solution, 28 x 0.4 mL unit doses, ampoule 35543011000036104 Bion Tears 0.1% / 0.3% eye drops solution, 28 x 0.4 mL unit doses 35483011000036102 Bion Tears 0.1% / 0.3% eye drops solution, 0.4 mL unit dose 50031000168106 Bion Tears 0.1% / 0.3% 50031000168106 Bion Tears 0.1% / 0.3% 35754011000036100 dextran-70 0.1% + hypromellose 0.3% eye drops, 28 x 0.4 mL unit doses 35696011000036107 dextran-70 0.1% + hypromellose 0.3% eye drops, unit dose 35686011000036106 dextran-70 + hypromellose +920648011000036108 Ramipril (GA) 2.5 mg hard capsule, 30, blister pack 134793 920391011000036104 Ramipril (GA) 2.5 mg hard capsule, 30 920154011000036102 Ramipril (GA) 2.5 mg hard capsule 920107011000036103 Ramipril (GA) 920107011000036103 Ramipril (GA) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +786461000168104 Fentanyl (Sandoz) 37 microgram/hour patch, 7, sachet 152567 786451000168101 Fentanyl (Sandoz) 37 microgram/hour patch, 7 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780871000168105 fentanyl 37 microgram/hour patch, 7 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +985241000168104 Advil Mini Caps 200 mg sugar coated tablet, 10, blister pack 104222 985231000168108 Advil Mini Caps 200 mg sugar coated tablet, 10 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +723131000168103 Esomeprazole (GH) 20 mg enteric tablet, 30, bottle 207591 712441000168100 Esomeprazole (GH) 20 mg enteric tablet, 30 712431000168109 Esomeprazole (GH) 20 mg enteric tablet 712381000168102 Esomeprazole (GH) 712381000168102 Esomeprazole (GH) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +878691000168104 Midazolam (B Braun) 100 mg/100 mL intravenous infusion injection, 10 x 100 mL bottles 225696 878681000168102 Midazolam (B Braun) 100 mg/100 mL intravenous infusion injection, 10 x 100 mL bottles 878661000168106 Midazolam (B Braun) 100 mg/100 mL intravenous infusion injection, 100 mL bottle 873561000168102 Midazolam (B Braun) 873561000168102 Midazolam (B Braun) 878671000168100 midazolam 100 mg/100 mL injection, 10 x 100 mL bottles 878651000168109 midazolam 100 mg/100 mL injection, bottle 37721011000036103 midazolam +1022731000168106 Epiduo Forte gel, 15 g, pump pack 273168 1022721000168108 Epiduo Forte gel, 15 g 1022701000168104 Epiduo Forte gel 1022681000168102 Epiduo Forte 1022681000168102 Epiduo Forte 1022711000168101 adapalene 0.3% + benzoyl peroxide 2.5% gel, 15 g 1022691000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +1087501000168103 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 12, blister pack 283196 1087491000168105 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 12 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 932368011000036100 ibuprofen 400 mg tablet, 12 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +931364011000036106 Arcoxia 30 mg film-coated tablet, 30, blister pack 131797 930590011000036107 Arcoxia 30 mg film-coated tablet, 30 929958011000036107 Arcoxia 30 mg film-coated tablet 929823011000036107 Arcoxia 929823011000036107 Arcoxia 932360011000036102 etoricoxib 30 mg tablet, 30 931832011000036108 etoricoxib 30 mg tablet 931796011000036104 etoricoxib +81191011000036106 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 30 mL, bottle 81747 80693011000036101 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 30 mL 80239011000036109 Actifed CC Chesty Cough 100 mg/5 mL oral liquid solution, 5 mL 25021000168100 Actifed CC Chesty Cough 25021000168100 Actifed CC Chesty Cough 81745011000036105 guaifenesin 100 mg/5 mL oral liquid, 30 mL 62028011000036101 guaifenesin 100 mg/5 mL oral liquid 61763011000036101 guaifenesin +933087011000036108 Escitalopram (Generic Health) 10 mg film-coated tablet, 30, bottle 165847 932890011000036101 Escitalopram (Generic Health) 10 mg film-coated tablet, 30 932749011000036100 Escitalopram (Generic Health) 10 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +929034011000036107 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 8, blister pack 160643 928395011000036100 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 8 927965011000036102 Risedronate Sodium (Chemmart) 35 mg film-coated tablet 927777011000036109 Risedronate Sodium (Chemmart) 927777011000036109 Risedronate Sodium (Chemmart) 929235011000036101 risedronate sodium 35 mg tablet, 8 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +933213511000036104 Lisinopril (IPCA) 20 mg uncoated tablet, 84, blister pack 152718 933201751000036108 Lisinopril (IPCA) 20 mg uncoated tablet, 84 933194801000036103 Lisinopril (IPCA) 20 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 78129011000036106 lisinopril 20 mg tablet, 84 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +60129011000036108 Fenpaed 100 mg/5 mL oral liquid suspension, 200 mL, bottle 127602 56088011000036108 Fenpaed 100 mg/5 mL oral liquid suspension, 200 mL 53784011000036109 Fenpaed 100 mg/5 mL oral liquid suspension, 5 mL 53172011000036102 Fenpaed 53172011000036102 Fenpaed 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +1009621000168104 Letrozole (Apotex) 2.5 mg film-coated tablet, 30, blister pack 163829 1009611000168106 Letrozole (Apotex) 2.5 mg film-coated tablet, 30 1009571000168102 Letrozole (Apotex) 2.5 mg film-coated tablet 1009561000168108 Letrozole (Apotex) 1009561000168108 Letrozole (Apotex) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +87720011000036100 Galantyl 16 mg modified release capsule, 25, bottle 157935 87451011000036103 Galantyl 16 mg modified release capsule, 25 87316011000036109 Galantyl 16 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 87811011000036102 galantamine 16 mg modified release capsule, 25 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +60613011000036100 Aspirin (Bayer) 300 mg uncoated tablet, 100, blister pack 18841 56571011000036105 Aspirin (Bayer) 300 mg uncoated tablet, 100 53979011000036105 Aspirin (Bayer) 300 mg uncoated tablet 53252011000036101 Aspirin (Bayer) 53252011000036101 Aspirin (Bayer) 63432011000036102 aspirin 300 mg tablet, 100 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +44808011000036108 Concorz 50 mg film-coated tablet, 28, bottle 98695 42242011000036101 Concorz 50 mg film-coated tablet, 28 7580011000036102 Concorz 50 mg film-coated tablet 3452011000036105 Concorz 3452011000036105 Concorz 46995011000036101 sertraline 50 mg tablet, 28 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +60930011000036102 Claratyne 10 mg effervescent tablet, 1, blister pack 62125 56884011000036100 Claratyne 10 mg effervescent tablet, 1 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 86551000036106 loratadine 10 mg effervescent tablet, 1 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +1120531000168107 Xque XR 200 mg modified release tablet, 30, blister pack 226811 1120521000168109 Xque XR 200 mg modified release tablet, 30 1120491000168107 Xque XR 200 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 790941000168106 quetiapine 200 mg modified release tablet, 30 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +855501000168100 Algerika 225 mg hard capsule, 60, blister pack 229601 855491000168107 Algerika 225 mg hard capsule, 60 855371000168104 Algerika 225 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +878531000168102 Propranolol (Blooms The Chemist) 40 mg tablet, 100, bottle 222963 878521000168100 Propranolol (Blooms The Chemist) 40 mg tablet, 100 878511000168107 Propranolol (Blooms The Chemist) 40 mg tablet 878501000168109 Propranolol (Blooms The Chemist) 878501000168109 Propranolol (Blooms The Chemist) 26941011000036106 propranolol hydrochloride 40 mg tablet, 100 22317011000036102 propranolol hydrochloride 40 mg tablet 21392011000036104 propranolol +97181000036109 Fluvax 2013 injection suspension, 1 x 0.5 mL syringe 117397 96711000036103 Fluvax 2013 injection suspension, 1 x 0.5 mL syringe 96451000036106 Fluvax 2013 injection suspension, 0.5 mL syringe 51821000168105 Fluvax 2013 51821000168105 Fluvax 2013 96721000036105 influenza trivalent adult vaccine 2013 injection, 1 x 0.5 mL syringe 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +34668011000036104 Invega 6 mg modified release tablet, 28, blister pack 130714 34254011000036100 Invega 6 mg modified release tablet, 28 33988011000036100 Invega 6 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35122011000036100 paliperidone 6 mg modified release tablet, 28 34856011000036101 paliperidone 6 mg modified release tablet 34837011000036104 paliperidone +1022571000168104 Betadine Antiseptic 10% solution, 15 mL, bottle 29562 1022561000168105 Betadine Antiseptic 10% solution, 15 mL 1022551000168108 Betadine Antiseptic 10% solution 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +942181000168100 Sodium Valproate EC (Sanofi) 200 mg enteric tablet, 100, blister pack 140154 942171000168103 Sodium Valproate EC (Sanofi) 200 mg enteric tablet, 100 942101000168108 Sodium Valproate EC (Sanofi) 200 mg enteric tablet 942001000168109 Sodium Valproate EC (Sanofi) 942001000168109 Sodium Valproate EC (Sanofi) 27139011000036107 valproate sodium 200 mg enteric tablet, 100 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +19955011000036101 Dilaudid-HP 50 mg/5 mL injection solution, 5 x 5 mL ampoules 67358 13198011000036104 Dilaudid-HP 50 mg/5 mL injection solution, 5 x 5 mL ampoules 6481011000036104 Dilaudid-HP 50 mg/5 mL injection solution, 5 mL ampoule 1601000168105 Dilaudid-HP 1601000168105 Dilaudid-HP 27610011000036105 hydromorphone hydrochloride 50 mg/5 mL injection, 5 x 5 mL ampoules 22949011000036109 hydromorphone hydrochloride 50 mg/5 mL injection, ampoule 21480011000036107 hydromorphone +44658011000036109 Abilify 5 mg uncoated tablet, 28, blister pack 90925 42110011000036107 Abilify 5 mg uncoated tablet, 28 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46872011000036106 aripiprazole 5 mg tablet, 28 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +50248011000036104 Actisorb Plus (MAC031) 10.5 cm x 10.5 cm dressing, 1, carton 49341011000036108 Actisorb Plus (MAC031) 10.5 cm x 10.5 cm dressing, 1 48694011000036108 Actisorb Plus (MAC031) 10.5 cm x 10.5 cm dressing 62371000168103 Actisorb Plus (MAC031) 62371000168103 Actisorb Plus (MAC031) 51320011000036104 dressing activated charcoal malodorous wound 10.5 cm x 10.5 cm dressing, 1 50848011000036105 dressing activated charcoal malodorous wound 10.5 cm x 10.5 cm dressing 50710011000036101 dressing activated charcoal malodorous wound +20691011000036109 Pamacid 20 mg film-coated tablet, 60, blister pack 82471 13869011000036104 Pamacid 20 mg film-coated tablet, 60 7156011000036104 Pamacid 20 mg film-coated tablet 3448011000036106 Pamacid 3448011000036106 Pamacid 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +919171000168100 Temolide 180 mg hard capsule, 5, bottle 192682 919161000168106 Temolide 180 mg hard capsule, 5 919151000168109 Temolide 180 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +18986011000036100 Erythrocin IV 1 g powder for injection, 1 vial 131444 12294011000036101 Erythrocin IV 1 g powder for injection, 1 vial 5773011000036102 Erythrocin IV 1 g powder for injection, vial 39061000168106 Erythrocin IV 39061000168106 Erythrocin IV 27048011000036107 erythromycin (as lactobionate) 1 g injection, 1 vial 22418011000036107 erythromycin (as lactobionate) 1 g injection, vial 21858011000036107 erythromycin lactobionate +18986011000036100 Erythrocin IV 1 g powder for injection, 1 vial 29614 12294011000036101 Erythrocin IV 1 g powder for injection, 1 vial 5773011000036102 Erythrocin IV 1 g powder for injection, vial 39061000168106 Erythrocin IV 39061000168106 Erythrocin IV 27048011000036107 erythromycin (as lactobionate) 1 g injection, 1 vial 22418011000036107 erythromycin (as lactobionate) 1 g injection, vial 21858011000036107 erythromycin lactobionate +61264011000036108 Harmonise 2 mg film-coated tablet, 20, blister pack 77564 57200011000036103 Harmonise 2 mg film-coated tablet, 20 54233011000036106 Harmonise 2 mg film-coated tablet 53476011000036104 Harmonise 53476011000036104 Harmonise 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +930411000168103 Cavstat 5 mg film-coated tablet, 14, blister pack 234543 930401000168101 Cavstat 5 mg film-coated tablet, 14 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930391000168103 rosuvastatin 5 mg tablet, 14 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +949181000168105 Risperidone (WT) 6 mg film-coated tablet, 60, bottle 127915 949171000168107 Risperidone (WT) 6 mg film-coated tablet, 60 949161000168101 Risperidone (WT) 6 mg film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 929205011000036107 risperidone 6 mg tablet, 60 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +927761000168108 Serenace 20 mg uncoated tablet, 500, bottle 10261 927751000168106 Serenace 20 mg uncoated tablet, 500 927651000168102 Serenace 20 mg uncoated tablet 3608011000036103 Serenace 3608011000036103 Serenace 927741000168109 haloperidol 20 mg tablet, 500 927641000168104 haloperidol 20 mg tablet 21443011000036108 haloperidol +68833011000036104 Nicotinell Mint 2 mg chewing gum, 180, blister pack 126043 66696011000036103 Nicotinell Mint 2 mg chewing gum, 180 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71512011000036109 nicotine 2 mg gum, 180 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +52770011000036103 Amlodipine (Pharmacor) 5 mg uncoated tablet, 30, blister pack 150616 52580011000036105 Amlodipine (Pharmacor) 5 mg uncoated tablet, 30 52428011000036107 Amlodipine (Pharmacor) 5 mg uncoated tablet 52388011000036105 Amlodipine (Pharmacor) 52388011000036105 Amlodipine (Pharmacor) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +52770011000036103 Amlodipine (Pharmacor) 5 mg uncoated tablet, 30, blister pack 215709 52580011000036105 Amlodipine (Pharmacor) 5 mg uncoated tablet, 30 52428011000036107 Amlodipine (Pharmacor) 5 mg uncoated tablet 52388011000036105 Amlodipine (Pharmacor) 52388011000036105 Amlodipine (Pharmacor) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +43767011000036106 Remodulin 50 mg/20 mL injection solution, 20 mL vial 101647 41132011000036102 Remodulin 50 mg/20 mL injection solution, 20 mL vial 39793011000036103 Remodulin 50 mg/20 mL injection solution, 20 mL vial 39717011000036108 Remodulin 39717011000036108 Remodulin 46110011000036108 treprostinil 50 mg/20 mL injection, 20 mL vial 44991011000036105 treprostinil 50 mg/20 mL injection, vial 44874011000036106 treprostinil +884331000168109 Bosentan (Accord) 62.5 mg film-coated tablet, 14, blister pack 235882 884321000168106 Bosentan (Accord) 62.5 mg film-coated tablet, 14 884221000168100 Bosentan (Accord) 62.5 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884311000168104 bosentan 62.5 mg tablet, 14 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1051411000168104 Oxylieve MR 5 mg modified release tablet, 28, blister pack 153598 1051401000168102 Oxylieve MR 5 mg modified release tablet, 28 1051371000168100 Oxylieve MR 5 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 929278011000036105 oxycodone hydrochloride 5 mg modified release tablet, 28 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +20207011000036100 Ipratropium Bromide (Chemmart) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 74020 13426011000036109 Ipratropium Bromide (Chemmart) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 6708011000036101 Ipratropium Bromide (Chemmart) 250 microgram/mL inhalation solution, ampoule 3222011000036105 Ipratropium Bromide (Chemmart) 3222011000036105 Ipratropium Bromide (Chemmart) 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +86186011000036100 Certican 1 mg uncoated tablet, 100, blister pack 97516 85793011000036102 Certican 1 mg uncoated tablet, 100 85407011000036100 Certican 1 mg uncoated tablet 4369011000036100 Certican 4369011000036100 Certican 86475011000036104 everolimus 1 mg tablet, 100 86248011000036105 everolimus 1 mg tablet 21615011000036103 everolimus +988211000168107 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 100 mL, bottle 178432 988201000168109 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 100 mL 988111000168102 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 63363011000036106 ibuprofen 40 mg/mL oral liquid, 100 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +1103451000168103 Quetiapine (RBX) 100 mg film-coated tablet, 20, strip pack 166423 1103431000168109 Quetiapine (RBX) 100 mg film-coated tablet, 20 3401000036102 Quetiapine (RBX) 100 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +944831000168102 Epiramax 25 mg hard capsule, 60, bottle 137711 944821000168100 Epiramax 25 mg hard capsule, 60 944811000168107 Epiramax 25 mg hard capsule 81973011000036100 Epiramax 81973011000036100 Epiramax 27654011000036109 topiramate 25 mg capsule, 60 22991011000036104 topiramate 25 mg capsule 21458011000036101 topiramate +19591011000036102 Ipratrin Uni-Dose 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 58164 12862011000036101 Ipratrin Uni-Dose 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 6153011000036109 Ipratrin Uni-Dose 250 microgram/mL inhalation solution, ampoule 50471000168100 Ipratrin Uni-Dose 50471000168100 Ipratrin Uni-Dose 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +694211000168104 Mefix (310250) 2.5 cm x 10 m tape, 1 roll, carton 694201000168102 Mefix (310250) 2.5 cm x 10 m tape, 1 roll 694191000168100 Mefix (310250) 2.5 cm x 10 m tape 33941000168106 Mefix (310250) 33941000168106 Mefix (310250) 688901000168104 tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll 688881000168101 tape non woven retention polyacrylate 2.5 cm x 10 m tape 50701011000036106 tape non woven retention polyacrylate +69468011000036107 Pinetarsol 1.6% gel, 20 g, tube 49249 67268011000036103 Pinetarsol 1.6% gel, 20 g 65583011000036100 Pinetarsol 1.6% gel 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71816011000036109 tar 1.6% gel, 20 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +963561000168102 Aripiprazole (Apo) 20 mg uncoated tablet, 100, bottle 152932 963551000168104 Aripiprazole (Apo) 20 mg uncoated tablet, 100 869921000168105 Aripiprazole (Apo) 20 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 787591000168107 aripiprazole 20 mg tablet, 100 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1066001000168105 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 36, blister pack 220730 1065991000168109 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 36 1065871000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +675481000168104 Celecoxib (Blooms The Chemist) 200 mg hard capsule, 30, blister pack 226150 675471000168102 Celecoxib (Blooms The Chemist) 200 mg hard capsule, 30 675461000168108 Celecoxib (Blooms The Chemist) 200 mg hard capsule 675421000168103 Celecoxib (Blooms The Chemist) 675421000168103 Celecoxib (Blooms The Chemist) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +788061000168108 Arizole 15 mg uncoated tablet, 30, blister pack 198204 787511000168103 Arizole 15 mg uncoated tablet, 30 787501000168101 Arizole 15 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +931710011000036101 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application, 1.5 L, bottle 176111 930870011000036101 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application, 1.5 L 930083011000036100 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 4% application 76022011000036104 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 76022011000036104 Avagard Antiseptic Surgical Hand Scrub with Chlorhexidine Gluconate 932457011000036103 chlorhexidine gluconate 4% application, 1.5 L 69954011000036105 chlorhexidine gluconate 4% application 21404011000036101 chlorhexidine +775071000168101 Targin 2.5/1.25 mg modified release tablet, 20, blister pack 216260 775061000168107 Targin 2.5/1.25 mg modified release tablet, 20 775041000168108 Targin 2.5/1.25 mg modified release tablet 775021000168102 Targin 2.5/1.25 mg 775021000168102 Targin 2.5/1.25 mg 775051000168105 oxycodone hydrochloride 2.5 mg + naloxone hydrochloride 1.25 mg modified release tablet, 20 775031000168104 oxycodone hydrochloride 2.5 mg + naloxone hydrochloride 1.25 mg modified release tablet 923931011000036100 oxycodone + naloxone +60146011000036102 Zodac 10 mg film-coated tablet, 10, blister pack 129613 56105011000036105 Zodac 10 mg film-coated tablet, 10 53792011000036104 Zodac 10 mg film-coated tablet 53497011000036105 Zodac 53497011000036105 Zodac 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +45621000036100 Azilect 1 mg tablet, 30, blister pack 170172 42921000036102 Azilect 1 mg tablet, 30 40561000036103 Azilect 1 mg tablet 40421000036106 Azilect 40421000036106 Azilect 42931000036100 rasagiline 1 mg tablet, 30 40571000036106 rasagiline 1 mg tablet 46271000036107 rasagiline +1117881000168103 Donepezil (GH) 5 mg film-coated tablet, 98, blister pack 193661 1117871000168101 Donepezil (GH) 5 mg film-coated tablet, 98 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200841000036105 donepezil hydrochloride 5 mg tablet, 98 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +61535011000036108 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 50 mL, bottle 93726 57460011000036100 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 50 mL 54309011000036109 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 5 mL 39631000168109 Cold and Cough Elixir (Pharmacy Health) 39631000168109 Cold and Cough Elixir (Pharmacy Health) 63871011000036102 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 50 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +50397011000036102 Lyofoam Flat (603095) 20 cm x 15 cm dressing, 10, carton 49386011000036106 Lyofoam Flat (603095) 20 cm x 15 cm dressing, 10 48612011000036103 Lyofoam Flat (603095) 20 cm x 15 cm dressing 8001000168106 Lyofoam Flat (603095) 8001000168106 Lyofoam Flat (603095) 51359011000036106 dressing foam moderate exudate 20 cm x 15 cm dressing, 10 50882011000036102 dressing foam moderate exudate 20 cm x 15 cm dressing 50698011000036108 dressing foam moderate exudate +1112581000168104 Clopithromb 75 mg film-coated tablet, 112, bottle 187043 1111591000168106 Clopithromb 75 mg film-coated tablet, 112 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87799011000036100 clopidogrel 75 mg tablet, 112 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +68718011000036102 Mylanta Double Strength reformulation oral liquid suspension, 500 mL, bottle 126090 66704011000036103 Mylanta Double Strength reformulation oral liquid suspension, 500 mL 65356011000036104 Mylanta Double Strength reformulation oral liquid suspension, 5 mL 23731000168101 Mylanta Double Strength 23731000168101 Mylanta Double Strength 71387011000036107 aluminium hydroxide 400 mg/5 mL + magnesium hydroxide 400 mg/5 mL + simethicone 30 mg/5 mL oral liquid, 500 mL 69988011000036106 aluminium hydroxide 400 mg/5 mL + magnesium hydroxide 400 mg/5 mL + simethicone 30 mg/5 mL oral liquid 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +911321000168103 Cavstat 20 mg film-coated tablet, 7, blister pack 234514 911311000168105 Cavstat 20 mg film-coated tablet, 7 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +44251011000036102 Cystagon 150 mg hard capsule, 500, bottle 60452 41722011000036105 Cystagon 150 mg hard capsule, 500 40165011000036106 Cystagon 150 mg hard capsule 39718011000036109 Cystagon 39718011000036109 Cystagon 46529011000036101 cysteamine 150 mg capsule, 500 45204011000036104 cysteamine 150 mg capsule 44906011000036102 cysteamine +931384011000036109 Citanest 3% with Octapressin 0.054 IU Dental injection solution, 100 x 1.8 mL cartridges 220319 930589011000036100 Citanest 3% with Octapressin 0.054 IU Dental injection solution, 100 x 1.8 mL cartridges 929957011000036106 Citanest 3% with Octapressin 0.054 IU Dental injection solution, 1.8 mL cartridge 64041000168100 Citanest 3% with Octapressin 0.054 IU Dental 64041000168100 Citanest 3% with Octapressin 0.054 IU Dental 932359011000036103 prilocaine hydrochloride 3% (54 mg/1.8 mL) + felypressin 0.054 units/1.8 mL injection, 100 x 1.8 mL cartridges 931831011000036102 prilocaine hydrochloride 3% (54 mg/1.8 mL) + felypressin 0.054 units/1.8 mL injection, cartridge 37788011000036103 prilocaine + felypressin +931384011000036109 Citanest 3% with Octapressin 0.054 IU Dental injection solution, 100 x 1.8 mL cartridges 129322 930589011000036100 Citanest 3% with Octapressin 0.054 IU Dental injection solution, 100 x 1.8 mL cartridges 929957011000036106 Citanest 3% with Octapressin 0.054 IU Dental injection solution, 1.8 mL cartridge 64041000168100 Citanest 3% with Octapressin 0.054 IU Dental 64041000168100 Citanest 3% with Octapressin 0.054 IU Dental 932359011000036103 prilocaine hydrochloride 3% (54 mg/1.8 mL) + felypressin 0.054 units/1.8 mL injection, 100 x 1.8 mL cartridges 931831011000036102 prilocaine hydrochloride 3% (54 mg/1.8 mL) + felypressin 0.054 units/1.8 mL injection, cartridge 37788011000036103 prilocaine + felypressin +701381000168105 Lansoprazole ODT (Apo) 15 mg orally disintegrating tablet, 7, blister pack 216788 701371000168107 Lansoprazole ODT (Apo) 15 mg orally disintegrating tablet, 7 701361000168101 Lansoprazole ODT (Apo) 15 mg orally disintegrating tablet 701281000168101 Lansoprazole ODT (Apo) 701281000168101 Lansoprazole ODT (Apo) 683881000168107 lansoprazole 15 mg orally disintegrating tablet, 7 79747011000036107 lansoprazole 15 mg orally disintegrating tablet 21491011000036101 lansoprazole +181891000036100 Duoderm Gel (H7987) gel, 30 g, tube 181901000036104 Duoderm Gel (H7987) gel, 30 g 169021000168100 Duoderm Gel (H7987) gel 8941000168109 Duoderm Gel (H7987) 8941000168109 Duoderm Gel (H7987) 181911000036102 dressing hydrogel amorphous gel, 30 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +1016451000168101 Aripiprazole (GX) 30 mg uncoated tablet, 30, blister pack 217229 1016441000168103 Aripiprazole (GX) 30 mg uncoated tablet, 30 1016431000168107 Aripiprazole (GX) 30 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +988371000168107 Varilrix 1995 PFU powder for injection, 10 vials 79996 988361000168101 Varilrix 1995 PFU powder for injection, 10 vials 830871000168101 Varilrix (varicella-zoster live vaccine) powder for injection, vial 73749011000036102 Varilrix 73749011000036102 Varilrix 988351000168103 varicella-zoster live vaccine 1995 PFU injection, 10 vials 830861000168107 varicella-zoster live vaccine 1995 PFU injection, vial 830851000168105 varicella-zoster live vaccine +60215011000036102 Tirizine 10 mg film-coated tablet, 10, blister pack 133206 56174011000036101 Tirizine 10 mg film-coated tablet, 10 53823011000036104 Tirizine 10 mg film-coated tablet 53333011000036100 Tirizine 53333011000036100 Tirizine 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1117151000168104 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 30, blister pack 158169 1117141000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 30 1117071000168107 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 922596011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 30 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +44233011000036100 Vancomycin (Abbott) 1 g powder for injection, 1 vial 58033 41705011000036106 Vancomycin (Abbott) 1 g powder for injection, 1 vial 40153011000036101 Vancomycin (Abbott) 1 g powder for injection, vial 39585011000036102 Vancomycin (Abbott) 39585011000036102 Vancomycin (Abbott) 27498011000036108 vancomycin 1 g injection, 1 vial 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +924141000168101 Hyqvia (1 x IG 10 g/100 mL vial, 1 x HY 800 units/5 mL vial), 1 pack, composite pack 235178 924131000168105 Hyqvia (1 x IG 10 g/100 mL vial, 1 x HY 800 units/5 mL vial), 1 pack 924091000168108 IG 10 g/100 mL injection solution, 100 mL vial 923831000168102 Hyqvia 923851000168108 IG 924121000168107 normal immunoglobulin 10 g/100 mL injection [100 mL vial] (&) vorhyaluronidase alfa 800 units/5 mL injection [5 mL vial], 1 pack 107121000036102 normal immunoglobulin 10 g/100 mL injection, vial 74965011000036103 normal immunoglobulin +924141000168101 Hyqvia (1 x IG 10 g/100 mL vial, 1 x HY 800 units/5 mL vial), 1 pack, composite pack 235178 924131000168105 Hyqvia (1 x IG 10 g/100 mL vial, 1 x HY 800 units/5 mL vial), 1 pack 924111000168100 HY 800 units/5 mL injection solution, 5 mL vial 923831000168102 Hyqvia 923861000168105 HY 924121000168107 normal immunoglobulin 10 g/100 mL injection [100 mL vial] (&) vorhyaluronidase alfa 800 units/5 mL injection [5 mL vial], 1 pack 924101000168103 vorhyaluronidase alfa 800 units/5 mL injection, vial 923881000168101 vorhyaluronidase alfa +60112011000036108 Nurofen Caplet 200 mg sugar coated tablet, 6, blister pack 127287 56071011000036107 Nurofen Caplet 200 mg sugar coated tablet, 6 53777011000036106 Nurofen Caplet 200 mg sugar coated tablet 17551000168104 Nurofen Caplet 17551000168104 Nurofen Caplet 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +156671000036100 Leflunomide (GH) 20 mg film-coated tablet, 30, bottle 125402 155741000036106 Leflunomide (GH) 20 mg film-coated tablet, 30 154941000036109 Leflunomide (GH) 20 mg film-coated tablet 154471000036108 Leflunomide (GH) 154471000036108 Leflunomide (GH) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +915561000168100 Ampicillin (CH) 1 g powder for injection, 5 vials 203939 915551000168102 Ampicillin (CH) 1 g powder for injection, 5 vials 915541000168104 Ampicillin (CH) 1 g powder for injection, vial 915501000168101 Ampicillin (CH) 915501000168101 Ampicillin (CH) 28099011000036101 ampicillin 1 g injection, 5 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +860161000168109 Calcia plus Vitamin D 400 IU chewable tablet, 120, bottle 153219 860151000168107 Calcia plus Vitamin D 400 IU chewable tablet, 120 860131000168101 Calcia plus Vitamin D 400 IU chewable tablet 12941000168105 Calcia plus Vitamin D 400 IU 12941000168105 Calcia plus Vitamin D 400 IU 860141000168105 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet, 120 860121000168104 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet 733951000168109 calcium + colecalciferol +60686011000036109 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 30 mL, bottle 42870 56644011000036103 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 30 mL 54019011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 63481011000036102 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash, 30 mL 61990011000036104 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash 61818011000036107 benzydamine + chlorhexidine +1080511000168101 Fem-V Plus 1% cream, 10 g, tube 1080501000168104 Fem-V Plus 1% cream, 10 g 1080491000168106 Fem-V Plus 1% cream 1080451000168101 Fem-V Plus 1080451000168101 Fem-V Plus 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1054951000168105 Palexia SR 250 mg modified release tablet, 60, blister pack 165357 1054941000168108 Palexia SR 250 mg modified release tablet, 60 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054931000168104 tapentadol 250 mg modified release tablet, 60 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +80022011000036107 Topiramate (Apo) 50 mg film-coated tablet, 60, blister pack 124730 79953011000036109 Topiramate (Apo) 50 mg film-coated tablet, 60 79917011000036108 Topiramate (Apo) 50 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +694851000168104 Sildenafil (Sandoz) 100 mg uncoated tablet, 12, blister pack 148568 694841000168101 Sildenafil (Sandoz) 100 mg uncoated tablet, 12 694811000168100 Sildenafil (Sandoz) 100 mg uncoated tablet 694771000168100 Sildenafil (Sandoz) 694771000168100 Sildenafil (Sandoz) 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +789191000168109 Abisart 75 mg film-coated tablet, 7, bottle 214578 789181000168106 Abisart 75 mg film-coated tablet, 7 98741000036103 Abisart 75 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 738121000168106 irbesartan 75 mg tablet, 7 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +996961000168104 Benadryl Chesty Forte oral liquid solution, 100 mL, bottle 251912 996951000168101 Benadryl Chesty Forte oral liquid solution, 100 mL 996921000168109 Benadryl Chesty Forte oral liquid solution, 5 mL 679061000168102 Benadryl Chesty Forte 679061000168102 Benadryl Chesty Forte 989931000168103 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +1052781000168106 Palexia SR 200 mg modified release tablet, 50, blister pack 165356 1052771000168108 Palexia SR 200 mg modified release tablet, 50 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052761000168102 tapentadol 200 mg modified release tablet, 50 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +945471000168100 Ondansetron (Mylan) 8 mg/4 mL injection solution, 10 x 4 mL ampoules 138714 945461000168106 Ondansetron (Mylan) 8 mg/4 mL injection solution, 10 x 4 mL ampoules 945411000168108 Ondansetron (Mylan) 8 mg/4 mL injection solution, 4 mL ampoule 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 922639011000036105 ondansetron 8 mg/4 mL injection, 10 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +825921000168100 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 127244 825911000168107 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 825891000168105 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 38281000168102 H-B-Vax II Paediatric 38281000168102 H-B-Vax II Paediatric 825901000168109 hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL syringes 825881000168107 hepatitis B child vaccine 5 microgram/0.5 mL injection, syringe 825191000168101 hepatitis B vaccine +69652011000036102 Nurofen 5% gel, 30 g, tube 79909 67451011000036101 Nurofen 5% gel, 30 g 65669011000036108 Nurofen 5% gel 5641000168109 Nurofen 5641000168109 Nurofen 71979011000036101 ibuprofen 5% gel, 30 g 70270011000036104 ibuprofen 5% gel 21885011000036105 ibuprofen +60699011000036101 Dimetapp DM Elixir oral liquid solution, 25 mL, bottle 43315 56657011000036106 Dimetapp DM Elixir oral liquid solution, 25 mL 54023011000036100 Dimetapp DM Elixir oral liquid solution, 5 mL 11581000168104 Dimetapp DM Elixir 11581000168104 Dimetapp DM Elixir 63615011000036100 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 25 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +697041000168103 Paroxetine (Actavis) 20 mg film-coated tablet, 30, blister pack 154655 697031000168107 Paroxetine (Actavis) 20 mg film-coated tablet, 30 697021000168109 Paroxetine (Actavis) 20 mg film-coated tablet 697011000168102 Paroxetine (Actavis) 697011000168102 Paroxetine (Actavis) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +60099011000036106 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 500 mL, bottle 126542 56060011000036109 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 500 mL 53774011000036100 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid suspension, 5 mL 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 20191000168107 Paracetamol Children's 1 to 5 Years (Pharmacy Choice) 63818011000036104 paracetamol 120 mg/5 mL oral liquid, 500 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +881361000168103 Actonate Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Aventis Pharma) tablets), 112, blister pack 163756 881351000168100 Actonate Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Aventis Pharma) tablets), 112 881231000168104 Calcium Carbonate (Aventis Pharma) 1.25 g (calcium 500 mg) film-coated tablet 881151000168103 Actonate Combi 881221000168102 Calcium Carbonate (Aventis Pharma) 881341000168102 risedronate sodium 35 mg tablet [16] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [96], 112 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +881361000168103 Actonate Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Aventis Pharma) tablets), 112, blister pack 163756 881351000168100 Actonate Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Aventis Pharma) tablets), 112 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 881151000168103 Actonate Combi 700024831000036105 Actonel Once-a-Week 881341000168102 risedronate sodium 35 mg tablet [16] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [96], 112 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +931425011000036106 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 14, blister pack 132824 930597011000036108 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 14 929962011000036104 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet 4399011000036103 Ciprofloxacin (Pharmacor) 4399011000036103 Ciprofloxacin (Pharmacor) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +840671000168104 Quadracel injection suspension, 5 x 0.5 mL vials 91355 840661000168105 Quadracel injection suspension, 5 x 0.5 mL vials 840581000168100 Quadracel injection suspension, 0.5 mL vial 73742011000036107 Quadracel 73742011000036107 Quadracel 840651000168108 diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 5 x 0.5 mL vials 840571000168103 diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial 839601000168101 diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine +44174011000036103 Arima 150 mg film-coated tablet, 60, blister pack 54997 41650011000036104 Arima 150 mg film-coated tablet, 60 40123011000036102 Arima 150 mg film-coated tablet 39674011000036104 Arima 39674011000036104 Arima 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +929060011000036108 Valaciclovir (GA) 500 mg film-coated tablet, 10, blister pack 162728 928421011000036103 Valaciclovir (GA) 500 mg film-coated tablet, 10 927971011000036109 Valaciclovir (GA) 500 mg film-coated tablet 927808011000036104 Valaciclovir (GA) 927808011000036104 Valaciclovir (GA) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +992621000168101 Bisoprolol (Apotex) 5 mg tablet, 28, blister pack 182129 992611000168108 Bisoprolol (Apotex) 5 mg tablet, 28 992561000168105 Bisoprolol (Apotex) 5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +43685011000036109 Sertraline (GA) 100 mg film-coated tablet, 30, blister pack 124854 41318011000036103 Sertraline (GA) 100 mg film-coated tablet, 30 39945011000036102 Sertraline (GA) 100 mg film-coated tablet 39729011000036106 Sertraline (GA) 39729011000036106 Sertraline (GA) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +43685011000036109 Sertraline (GA) 100 mg film-coated tablet, 30, blister pack 195309 41318011000036103 Sertraline (GA) 100 mg film-coated tablet, 30 39945011000036102 Sertraline (GA) 100 mg film-coated tablet 39729011000036106 Sertraline (GA) 39729011000036106 Sertraline (GA) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +18271011000036103 Hyforil 10/12.5 mg uncoated tablet, 30, bottle 124588 11770011000036105 Hyforil 10/12.5 mg uncoated tablet, 30 4622011000036106 Hyforil 10/12.5 mg uncoated tablet 9741000168101 Hyforil 10/12.5 mg 9741000168101 Hyforil 10/12.5 mg 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +19736011000036101 Arthrotec multilayer tablet, 60, bottle 61752 13050011000036104 Arthrotec multilayer tablet, 60 6334011000036101 Arthrotec multilayer tablet 3384011000036100 Arthrotec 3384011000036100 Arthrotec 27520011000036105 diclofenac sodium 50 mg + misoprostol 200 microgram tablet, 60 22860011000036104 diclofenac sodium 50 mg + misoprostol 200 microgram tablet 21809011000036108 diclofenac + misoprostol +61654011000036103 Ibuprofen (Guardian) 200 mg film-coated tablet, 48, blister pack 97232 57576011000036104 Ibuprofen (Guardian) 200 mg film-coated tablet, 48 54353011000036103 Ibuprofen (Guardian) 200 mg film-coated tablet 53129011000036108 Ibuprofen (Guardian) 53129011000036108 Ibuprofen (Guardian) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +778601000168107 Oxycodone MR (Chemmart) 40 mg modified release tablet, 20, blister pack 160095 778591000168100 Oxycodone MR (Chemmart) 40 mg modified release tablet, 20 778581000168103 Oxycodone MR (Chemmart) 40 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +722971000168109 Reandron-1000 1 g/4 mL modified release injection, 4 mL vial 213942 722961000168103 Reandron-1000 1 g/4 mL modified release injection, 4 mL vial 722941000168102 Reandron-1000 1 g/4 mL modified release injection, 4 mL vial 3557011000036102 Reandron-1000 3557011000036102 Reandron-1000 722951000168100 testosterone undecanoate 1 g/4 mL modified release injection, 4 mL vial 722931000168106 testosterone undecanoate 1 g/4 mL modified release injection, vial 21393011000036106 testosterone undecanoate +933211181000036102 Ablavar 3.66 g/15 mL injection solution, 15 mL vial 115546 933199981000036102 Ablavar 3.66 g/15 mL injection solution, 15 mL vial 933194411000036103 Ablavar 3.66 g/15 mL injection solution, 15 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933199991000036100 gadofosveset trisodium 3.66 g/15 mL injection, 15 mL vial 933194421000036105 gadofosveset trisodium 3.66 g/15 mL injection, vial 933216361000036104 gadofosveset +60369011000036108 Iodine Standard Colourless (David Craig) 2.86% solution, 50 mL, bottle 14215 56328011000036100 Iodine Standard Colourless (David Craig) 2.86% solution, 50 mL 53875011000036104 Iodine Standard Colourless (David Craig) 2.86% solution 36091000168107 Iodine Standard Colourless (David Craig) 36091000168107 Iodine Standard Colourless (David Craig) 63310011000036104 iodine 2.86% solution, 50 mL 61914011000036108 iodine 2.86% solution 61782011000036105 iodine +21205011000036103 Imrest 7.5 mg film-coated tablet, 30, bottle 99797 14342011000036101 Imrest 7.5 mg film-coated tablet, 30 7626011000036102 Imrest 7.5 mg film-coated tablet 4237011000036108 Imrest 4237011000036108 Imrest 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +1065591000168100 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 20, blister pack 190420 1065581000168103 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 20 1065551000168105 Analgesic Calmative (Discount Drug Stores) uncoated tablet 1065541000168108 Analgesic Calmative (Discount Drug Stores) 1065541000168108 Analgesic Calmative (Discount Drug Stores) 52897011000036108 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +923699011000036108 Grandicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 147853 923311011000036104 Grandicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 922995011000036103 Grandicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924125011000036101 epoetin lambda 5000 units/0.5 mL injection, 0.5 mL syringe 923956011000036106 epoetin lambda 5000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +79054011000036100 Paracetamol and Codeine Phosphate 500/30 (Apo) uncoated tablet, 20, blister pack 153124 78865011000036106 Paracetamol and Codeine Phosphate 500/30 (Apo) uncoated tablet, 20 78671011000036105 Paracetamol and Codeine Phosphate 500/30 (Apo) uncoated tablet 49891000168106 Paracetamol and Codeine Phosphate 500/30 (Apo) 49891000168106 Paracetamol and Codeine Phosphate 500/30 (Apo) 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +19702011000036105 Efexor-XR 150 mg modified release capsule, 28, blister pack 60859 12959011000036108 Efexor-XR 150 mg modified release capsule, 28 6249011000036106 Efexor-XR 150 mg modified release capsule 45291000168107 Efexor-XR 45291000168107 Efexor-XR 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +17800011000036101 Cyprohexal 50 mg uncoated tablet, 20, bottle 107330 11369011000036108 Cyprohexal 50 mg uncoated tablet, 20 5347011000036108 Cyprohexal 50 mg uncoated tablet 4006011000036109 Cyprohexal 4006011000036109 Cyprohexal 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +705791000168109 Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g, tube 705781000168106 Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g 705761000168102 Sorbolene Cream with Glycerin (Pharmacy Select) cream 49751000168106 Sorbolene Cream with Glycerin (Pharmacy Select) 49751000168106 Sorbolene Cream with Glycerin (Pharmacy Select) 705771000168108 glycerol 10% + cetomacrogol aqueous cream, 50 g 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +1082761000168106 Solian 50 mg uncoated tablet, 5, blister pack 96421 1082751000168109 Solian 50 mg uncoated tablet, 5 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 860431000168105 amisulpride 50 mg tablet, 5 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +823591000168108 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 221720 823581000168105 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 823531000168109 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 0.8 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823571000168107 enoxaparin sodium 80 mg/0.8 mL injection, 6 x 0.8 mL syringes 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +18019011000036103 Terbihexal 250 mg uncoated tablet, 42, blister pack 101685 11225011000036108 Terbihexal 250 mg uncoated tablet, 42 5864011000036109 Terbihexal 250 mg uncoated tablet 3919011000036109 Terbihexal 3919011000036109 Terbihexal 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +954251000168107 Trandolapril (Terry White Chemists) 2 mg capsule, 28, blister pack 135981 954241000168105 Trandolapril (Terry White Chemists) 2 mg capsule, 28 954231000168101 Trandolapril (Terry White Chemists) 2 mg capsule 954161000168103 Trandolapril (Terry White Chemists) 954161000168103 Trandolapril (Terry White Chemists) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +808601000168103 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 10, blister pack 184819 808181000168102 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 10 808171000168100 Perindopril Arginine (Apo) 2.5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 727271000168102 perindopril arginine 2.5 mg tablet, 10 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +18755011000036109 Apidra 100 units/mL injection solution, 5 x 3 mL cartridges 99146 11711011000036109 Apidra 100 units/mL injection solution, 5 x 3 mL cartridges 5661011000036102 Apidra 100 units/mL injection solution, 3 mL cartridge 8371000168103 Apidra 8371000168103 Apidra 26809011000036105 insulin glulisine 100 units/mL injection, 5 x 3 mL cartridges 22193011000036100 insulin glulisine 100 units/mL injection, cartridge 21731011000036104 insulin glulisine +877161000168101 Briviact 75 mg film-coated tablet, 56, blister pack 243798 877151000168103 Briviact 75 mg film-coated tablet, 56 877101000168102 Briviact 75 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877141000168100 brivaracetam 75 mg tablet, 56 877091000168107 brivaracetam 75 mg tablet 876401000168109 brivaracetam +1114911000168108 Quetiapine (Ascent) 25 mg film-coated tablet, 60, blister pack 202258 1114901000168105 Quetiapine (Ascent) 25 mg film-coated tablet, 60 1114891000168106 Quetiapine (Ascent) 25 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +699371000168103 Arixtra 7.5 mg/0.6 mL injection solution, 7 x 0.6 mL syringes 97799 699361000168109 Arixtra 7.5 mg/0.6 mL injection solution, 7 x 0.6 mL syringes 699341000168105 Arixtra 7.5 mg/0.6 mL injection solution, 0.6 mL syringe 3651011000036101 Arixtra 3651011000036101 Arixtra 699351000168107 fondaparinux sodium 7.5 mg/0.6 mL injection, 7 x 0.6 mL syringes 699331000168101 fondaparinux sodium 7.5 mg/0.6 mL injection, syringe 21445011000036109 fondaparinux +1099881000168104 Clarithrom 250 mg film-coated tablet, 14, blister pack 184265 1099871000168102 Clarithrom 250 mg film-coated tablet, 14 1099801000168107 Clarithrom 250 mg film-coated tablet 1099701000168100 Clarithrom 1099701000168100 Clarithrom 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +671511000168109 Momasone 0.1% cream, 15 g, tube 171795 671501000168106 Momasone 0.1% cream, 15 g 671491000168104 Momasone 0.1% cream 671481000168102 Momasone 671481000168102 Momasone 27412011000036106 mometasone furoate 0.1% cream, 15 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +61569011000036104 Topizol Antifungal 1% cream, 20 g, tube 94371 57491011000036109 Topizol Antifungal 1% cream, 20 g 54323011000036104 Topizol Antifungal 1% cream 44961000168107 Topizol Antifungal 44961000168107 Topizol Antifungal 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +50350011000036108 Duoderm Gel (H7987) gel, 3 x 30 g tubes 49460011000036102 Duoderm Gel (H7987) gel, 3 x 30 g 169021000168100 Duoderm Gel (H7987) gel 8941000168109 Duoderm Gel (H7987) 8941000168109 Duoderm Gel (H7987) 51421011000036104 dressing hydrogel amorphous gel, 3 x 30 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +928872011000036101 Carboplatin (Baxter) 150 mg/15 mL injection solution, 15 mL vial 140398 928234011000036102 Carboplatin (Baxter) 150 mg/15 mL injection solution, 15 mL vial 927892011000036100 Carboplatin (Baxter) 150 mg/15 mL injection solution, 15 mL vial 51933011000036104 Carboplatin (Baxter) 51933011000036104 Carboplatin (Baxter) 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +671551000168105 Amlodipine/Atorvastatin 5/40 (Chemmart) film-coated tablet, 30, blister pack 214355 671541000168108 Amlodipine/Atorvastatin 5/40 (Chemmart) film-coated tablet, 30 671531000168104 Amlodipine/Atorvastatin 5/40 (Chemmart) film-coated tablet 671521000168102 Amlodipine/Atorvastatin 5/40 (Chemmart) 671521000168102 Amlodipine/Atorvastatin 5/40 (Chemmart) 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +907141000168101 Celecoxib (GA) 200 mg capsule, 120, blister pack 204619 907131000168105 Celecoxib (GA) 200 mg capsule, 120 906871000168103 Celecoxib (GA) 200 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +933213191000036101 Citalopram (IPCA) 40 mg film-coated tablet, 28, blister pack 158854 933202871000036104 Citalopram (IPCA) 40 mg film-coated tablet, 28 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +35684011000036103 Eprex 30 000 units/0.75 mL injection solution, 6 x 0.75 mL syringes 135069 35588011000036103 Eprex 30 000 units/0.75 mL injection solution, 6 x 0.75 mL syringes 35491011000036104 Eprex 30 000 units/0.75 mL injection solution, 0.75 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 35779011000036101 epoetin alfa 30 000 units/0.75 mL injection, 6 x 0.75 mL syringes 35718011000036102 epoetin alfa 30 000 units/0.75 mL injection, syringe 21294011000036104 epoetin alfa +20173011000036100 Prazosin (GenRx) 2 mg uncoated tablet, 100, blister pack 73862 13396011000036108 Prazosin (GenRx) 2 mg uncoated tablet, 100 6681011000036102 Prazosin (GenRx) 2 mg uncoated tablet 3943011000036104 Prazosin (GenRx) 3943011000036104 Prazosin (GenRx) 27728011000036108 prazosin 2 mg tablet, 100 23063011000036102 prazosin 2 mg tablet 21544011000036104 prazosin +19625011000036101 Zofran 4 mg/5 mL oral liquid solution, 50 mL, bottle 58872 12894011000036107 Zofran 4 mg/5 mL oral liquid solution, 50 mL 6184011000036100 Zofran 4 mg/5 mL oral liquid solution, 5 mL 2471000168108 Zofran 2471000168108 Zofran 27421011000036107 ondansetron 4 mg/5 mL oral liquid, 50 mL 22768011000036104 ondansetron 4 mg/5 mL oral liquid 21545011000036100 ondansetron +1091211000168107 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 4, blister pack 285250 1091201000168109 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 4 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 812961000168108 paracetamol 500 mg + ibuprofen 200 mg tablet, 4 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +933211141000036106 Ablavar 2.44 g/10 mL injection solution, 5 x 10 mL vials 115498 933199961000036107 Ablavar 2.44 g/10 mL injection solution, 5 x 10 mL vials 933194381000036100 Ablavar 2.44 g/10 mL injection solution, 10 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933199971000036104 gadofosveset trisodium 2.44 g/10 mL injection, 5 x 10 mL vials 933194391000036103 gadofosveset trisodium 2.44 g/10 mL injection, vial 933216361000036104 gadofosveset +69313011000036105 Riodine S Surgical Scrub 7.5% solution, 500 mL, bottle 21200 67113011000036106 Riodine S Surgical Scrub 7.5% solution, 500 mL 65301011000036103 Riodine S Surgical Scrub 7.5% solution 35091000168101 Riodine S Surgical Scrub 35091000168101 Riodine S Surgical Scrub 71761011000036103 povidone-iodine 7.5% solution, 500 mL 70175011000036106 povidone-iodine 7.5% solution 21660011000036108 povidone-iodine +19149011000036100 Gopten 1 mg hard capsule, 28, blister pack 45455 12448011000036100 Gopten 1 mg hard capsule, 28 4576011000036101 Gopten 1 mg hard capsule 4026011000036104 Gopten 4026011000036104 Gopten 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +34716011000036106 Methadone Hydrochloride Syrup (Orion) 1.75 mg/mL oral liquid solution, 20 mL, bottle 21168 34300011000036109 Methadone Hydrochloride Syrup (Orion) 1.75 mg/mL oral liquid solution, 20 mL 34023011000036107 Methadone Hydrochloride Syrup (Orion) 1.75 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35149011000036108 methadone hydrochloride 1.75 mg/mL oral liquid, 20 mL 34871011000036109 methadone hydrochloride 1.75 mg/mL oral liquid 21357011000036109 methadone +50410011000036109 Omnitest EZ diagnostic strip, 50, bottle 49251011000036101 Omnitest EZ diagnostic strip, 50 48483011000036105 Omnitest EZ diagnostic strip 28221000168103 Omnitest EZ 28221000168103 Omnitest EZ 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +160281000036106 Montelukast (Sandoz) 10 mg film-coated tablet, 14, blister pack 184830 159041000036106 Montelukast (Sandoz) 10 mg film-coated tablet, 14 158291000036100 Montelukast (Sandoz) 10 mg film-coated tablet 124191000036104 Montelukast (Sandoz) 124191000036104 Montelukast (Sandoz) 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +130791000036108 Candesartan Cilexetil (Apo) 32 mg uncoated tablet, 30, blister pack 191768 128031000036105 Candesartan Cilexetil (Apo) 32 mg uncoated tablet, 30 124501000036104 Candesartan Cilexetil (Apo) 32 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +130791000036108 Candesartan Cilexetil (Apo) 32 mg uncoated tablet, 30, blister pack 210532 128031000036105 Candesartan Cilexetil (Apo) 32 mg uncoated tablet, 30 124501000036104 Candesartan Cilexetil (Apo) 32 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +1065681000168104 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 10, blister pack 220729 1065671000168102 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 10 1065661000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +804261000168106 Disprin Original 300 mg tablet, 24, strip pack 59901 804251000168109 Disprin Original 300 mg tablet, 24 804211000168108 Disprin Original 300 mg tablet 44991000168100 Disprin Original 44991000168100 Disprin Original 63606011000036109 aspirin 300 mg tablet, 24 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +1091251000168108 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 6, blister pack 285250 1091241000168106 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 6 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +923826011000036104 Lisinopril (Sandoz) 20 mg tablet, 30, blister pack 158108 923372011000036104 Lisinopril (Sandoz) 20 mg tablet, 30 923043011000036109 Lisinopril (Sandoz) 20 mg tablet 79351011000036102 Lisinopril (Sandoz) 79351011000036102 Lisinopril (Sandoz) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1016291000168107 Aripiprazole (GX) 15 mg uncoated tablet, 250, bottle 217205 1016281000168109 Aripiprazole (GX) 15 mg uncoated tablet, 250 1016251000168102 Aripiprazole (GX) 15 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 1015601000168108 aripiprazole 15 mg tablet, 250 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +18768011000036109 Oroxine 100 microgram uncoated tablet, 200, bottle 10985 11803011000036106 Oroxine 100 microgram uncoated tablet, 200 4757011000036104 Oroxine 100 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 28022011000036102 levothyroxine sodium 100 microgram tablet, 200 23345011000036105 levothyroxine sodium 100 microgram tablet 21577011000036109 levothyroxine +947891000168109 Risdone 500 microgram film-coated tablet, 60, blister pack 144200 947881000168106 Risdone 500 microgram film-coated tablet, 60 947741000168107 Risdone 500 microgram film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1095541000168105 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 30, blister pack 287305 1095531000168101 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 30 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +20721011000036107 Fluarix 2007 injection suspension, 1 x 0.5 mL syringe 82884 13891011000036101 Fluarix 2007 injection suspension, 1 x 0.5 mL syringe 7177011000036104 Fluarix 2007 injection suspension, 0.5 mL syringe 29411000168103 Fluarix 2007 29411000168103 Fluarix 2007 27994011000036103 influenza trivalent vaccine 2007 injection, 1 x 0.5 mL syringe 23317011000036106 influenza trivalent vaccine 2007 injection, 0.5 mL syringe 32638011000036100 influenza trivalent vaccine 2007 +915641000168103 Xylocard 2% (100 mg/5 mL) injection solution, 5 mL ampoule 12032 915631000168107 Xylocard 2% (100 mg/5 mL) injection solution, 5 mL ampoule 915611000168102 Xylocard 2% (100 mg/5 mL) injection solution, 5 mL ampoule 4153011000036102 Xylocard 4153011000036102 Xylocard 915621000168109 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, 5 mL ampoule 45126011000036100 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +81037011000036102 Zinc (Gold Cross) 32% cream, 100 g, jar 14062 80497011000036107 Zinc (Gold Cross) 32% cream, 100 g 80165011000036103 Zinc (Gold Cross) 32% cream 80119011000036100 Zinc (Gold Cross) 80119011000036100 Zinc (Gold Cross) 81593011000036102 zinc oxide 32% cream, 100 g 81265011000036109 zinc oxide 32% cream 77446011000036105 zinc oxide +684341000168105 Letrozole (FBM) 2.5 mg film-coated tablet, 30, blister pack 167833 684331000168101 Letrozole (FBM) 2.5 mg film-coated tablet, 30 684321000168104 Letrozole (FBM) 2.5 mg film-coated tablet 684311000168106 Letrozole (FBM) 684311000168106 Letrozole (FBM) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +808521000168108 Perindopril Arginine (Apo) 10 mg film-coated tablet, 100, bottle 184812 808151000168109 Perindopril Arginine (Apo) 10 mg film-coated tablet, 100 808101000168105 Perindopril Arginine (Apo) 10 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 806941000168108 perindopril arginine 10 mg tablet, 100 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +746411000168105 Vivachek Ino diagnostic strip, 100, bottle 265754 746401000168107 Vivachek Ino diagnostic strip, 100 746371000168109 Vivachek Ino diagnostic strip 746361000168103 Vivachek Ino 746361000168103 Vivachek Ino 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +778681000168104 Oxycodone MR (Apo) 15 mg modified release tablet, 28, blister pack 214492 778671000168102 Oxycodone MR (Apo) 15 mg modified release tablet, 28 778641000168109 Oxycodone MR (Apo) 15 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +950041000168108 Frusemide (Sanofi) 40 mg tablet, 1000, bottle 144452 950031000168104 Frusemide (Sanofi) 40 mg tablet, 1000 949911000168102 Frusemide (Sanofi) 40 mg tablet 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 928751000168105 furosemide (frusemide) 40 mg tablet, 1000 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +684301000168108 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs 149319 684291000168107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28 85313011000036102 Qlaira (estradiol valerate 2 mg + dienogest 3 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 684281000168109 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28 86213011000036107 estradiol valerate 2 mg + dienogest 3 mg tablet 86193011000036105 estradiol + dienogest +684301000168108 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs 149319 684291000168107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28 85314011000036100 Qlaira (estradiol valerate 3 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 684281000168109 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28 86214011000036109 estradiol valerate 3 mg tablet 21238011000036103 estradiol +684301000168108 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs 149319 684291000168107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28 85316011000036108 Qlaira (inert substance) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 684281000168109 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +684301000168108 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs 149319 684291000168107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28 85317011000036106 Qlaira (estradiol valerate 2 mg + dienogest 2 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 684281000168109 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28 86215011000036108 estradiol valerate 2 mg + dienogest 2 mg tablet 86193011000036105 estradiol + dienogest +684301000168108 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs 149319 684291000168107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28 85315011000036101 Qlaira (estradiol valerate 1 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 684281000168109 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28 22027011000036107 estradiol valerate 1 mg tablet 21238011000036103 estradiol +931502011000036104 Bactol Alcohol 70% gel, 85 mL, bottle 155397 930663011000036108 Bactol Alcohol 70% gel, 85 mL 929994011000036105 Bactol Alcohol 70% gel 19571000168101 Bactol Alcohol 19571000168101 Bactol Alcohol 932384011000036105 ethanol 70% gel, 85 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +720711000168100 Midazolam (Apotex) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 217658 720701000168103 Midazolam (Apotex) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 720691000168103 Midazolam (Apotex) 15 mg/3 mL injection solution, 3 mL ampoule 720651000168108 Midazolam (Apotex) 720651000168108 Midazolam (Apotex) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +1099841000168109 Clarithrom 250 mg film-coated tablet, 10, blister pack 184265 1099831000168100 Clarithrom 250 mg film-coated tablet, 10 1099801000168107 Clarithrom 250 mg film-coated tablet 1099701000168100 Clarithrom 1099701000168100 Clarithrom 58841000036100 clarithromycin 250 mg tablet, 10 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +971331000168108 Glivanib 400 mg hard capsule, 48, blister pack 285900 971321000168105 Glivanib 400 mg hard capsule, 48 971271000168103 Glivanib 400 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 893921000168109 imatinib 400 mg capsule, 48 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +740151000168100 Alendronate D3 70 mg/70 microgram (Amneal) uncoated tablet, 4, blister pack 206932 740141000168102 Alendronate D3 70 mg/70 microgram (Amneal) uncoated tablet, 4 740111000168101 Alendronate D3 70 mg/70 microgram (Amneal) uncoated tablet 740101000168104 Alendronate D3 70 mg/70 microgram (Amneal) 740101000168104 Alendronate D3 70 mg/70 microgram (Amneal) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +913651000168102 Cirofaxin 250 mg film-coated tablet, 8, blister pack 114043 913641000168104 Cirofaxin 250 mg film-coated tablet, 8 913631000168108 Cirofaxin 250 mg film-coated tablet 933240751000036107 Cirofaxin 933240751000036107 Cirofaxin 932364011000036107 ciprofloxacin 250 mg tablet, 8 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +44002011000036106 Clopixol Acuphase 50 mg/mL injection solution, 1 mL ampoule 45080 41493011000036103 Clopixol Acuphase 50 mg/mL injection solution, 1 mL ampoule 40014011000036103 Clopixol Acuphase 50 mg/mL injection solution, ampoule 971000168105 Clopixol Acuphase 971000168105 Clopixol Acuphase 46339011000036101 zuclopenthixol acetate 50 mg/mL injection, 1 mL ampoule 45090011000036101 zuclopenthixol acetate 50 mg/mL injection, ampoule 44905011000036109 zuclopenthixol acetate +884011000168101 Betahistine (Medis) 16 mg tablet, 25, blister pack 231717 884001000168104 Betahistine (Medis) 16 mg tablet, 25 883971000168106 Betahistine (Medis) 16 mg tablet 883891000168100 Betahistine (Medis) 883891000168100 Betahistine (Medis) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +50333011000036104 Locasol powder for oral liquid, 400 g, can 49264011000036106 Locasol powder for oral liquid, 400 g 48666011000036103 Locasol powder for oral liquid 48260011000036103 Locasol 48260011000036103 Locasol 51257011000036105 milk powder synthetic low calcium powder for oral liquid, 400 g 50792011000036103 milk powder synthetic low calcium powder for oral liquid 50769011000036106 milk powder synthetic low calcium +929645011000036103 Tensocrepe (36300501) 5 cm x 2.3 m bandage, 1, wrapping 929475011000036100 Tensocrepe (36300501) 5 cm x 2.3 m bandage, 1 929386011000036109 Tensocrepe (36300501) 5 cm x 2.3 m bandage 52041000168101 Tensocrepe (36300501) 52041000168101 Tensocrepe (36300501) 51462011000036104 bandage retention cotton crepe 5 cm x 2.3 m bandage, 1 50969011000036101 bandage retention cotton crepe 5 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +44319011000036100 Relenza Rotadisk 5 mg powder for inhalation, 28 unit doses, blister pack 66962 41786011000036103 Relenza Rotadisk 5 mg powder for inhalation, 28 unit doses 40200011000036104 Relenza Rotadisk 5 mg powder for inhalation, 5 mg unit dose 19421000168101 Relenza Rotadisk 19421000168101 Relenza Rotadisk 46592011000036102 zanamivir 5 mg powder for inhalation, 28 unit doses 45232011000036103 zanamivir 5 mg powder for inhalation, unit dose 44894011000036103 zanamivir +923920011000036109 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 60, blister pack 170439 923464011000036108 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 60 923095011000036100 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +21154011000036107 Mellihexal 80 mg uncoated tablet, 100, blister pack 98700 14296011000036104 Mellihexal 80 mg uncoated tablet, 100 7582011000036103 Mellihexal 80 mg uncoated tablet 3499011000036107 Mellihexal 3499011000036107 Mellihexal 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +872501000168106 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 48512 872491000168104 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 872471000168100 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 17161000168105 Plasma-Lyte 148 Replacement 17161000168105 Plasma-Lyte 148 Replacement 872481000168102 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, 1 L bag 872461000168106 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, bag 81233011000036103 sodium chloride + sodium gluconate + sodium acetate trihydrate + potassium chloride + magnesium chloride +81123011000036102 Panvax H1N1 Vaccine 2009 15 microgram/0.5 mL injection suspension, 0.5 mL syringe 163900 80628011000036101 Panvax H1N1 Vaccine 2009 15 microgram/0.5 mL injection suspension, 0.5 mL syringe 80212011000036107 Panvax H1N1 Vaccine 2009 15 microgram/0.5 mL injection suspension, 0.5 mL syringe 24411000168104 Panvax H1N1 Vaccine 2009 24411000168104 Panvax H1N1 Vaccine 2009 81687011000036100 influenza adult vaccine pandemic 2009 injection, 1 x 0.5 mL syringe 81283011000036106 influenza adult vaccine pandemic 2009 injection, 0.5 mL syringe 81214011000036106 influenza vaccine pandemic 2009 +963241000168103 Liprace 2.5 mg uncoated tablet, 30, blister pack 91374 963231000168107 Liprace 2.5 mg uncoated tablet, 30 963221000168109 Liprace 2.5 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 927301011000036106 lisinopril 2.5 mg tablet, 30 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +20623011000036100 Alprazolam (Terry White Chemists) 2 mg tablet, 50, bottle 80919 13803011000036103 Alprazolam (Terry White Chemists) 2 mg tablet, 50 7089011000036106 Alprazolam (Terry White Chemists) 2 mg tablet 3439011000036104 Alprazolam (Terry White Chemists) 3439011000036104 Alprazolam (Terry White Chemists) 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +945241000168106 Diltiazem CD (Sanofi) 240 mg modified release capsule, 28, blister pack 139400 945231000168102 Diltiazem CD (Sanofi) 240 mg modified release capsule, 28 945161000168104 Diltiazem CD (Sanofi) 240 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 945221000168100 diltiazem hydrochloride 240 mg modified release capsule, 28 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +19158011000036105 Abbocillin V 125 mg/5 mL oral liquid suspension, 100 mL, bottle 45854 12457011000036104 Abbocillin V 125 mg/5 mL oral liquid suspension, 100 mL 5621011000036108 Abbocillin V 125 mg/5 mL oral liquid suspension, 5 mL 1071000168107 Abbocillin V 1071000168107 Abbocillin V 27211011000036101 phenoxymethylpenicillin 125 mg/5 mL oral liquid, 100 mL 22571011000036102 phenoxymethylpenicillin 125 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +948211000168103 Ranitidine (GA) 150 mg film-coated tablet, 20, bottle 148519 930631011000036104 Ranitidine (GA) 150 mg film-coated tablet, 20 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +18117011000036103 Serenace 1.5 mg uncoated tablet, 100, bottle 10258 11259011000036106 Serenace 1.5 mg uncoated tablet, 100 4633011000036102 Serenace 1.5 mg uncoated tablet 3608011000036103 Serenace 3608011000036103 Serenace 26575011000036101 haloperidol 1.5 mg tablet, 100 21983011000036101 haloperidol 1.5 mg tablet 21443011000036108 haloperidol +933078011000036104 Tramadol Hydrochloride SR (Terry White Chemists) 150 mg modified release tablet, 20, blister pack 154402 932875011000036104 Tramadol Hydrochloride SR (Terry White Chemists) 150 mg modified release tablet, 20 932736011000036105 Tramadol Hydrochloride SR (Terry White Chemists) 150 mg modified release tablet 50711000168103 Tramadol Hydrochloride SR (Terry White Chemists) 50711000168103 Tramadol Hydrochloride SR (Terry White Chemists) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +69052011000036108 Gentian Alkaline Mixture (David Craig) oral liquid solution, 200 mL, bottle 14278 66854011000036107 Gentian Alkaline Mixture (David Craig) oral liquid solution, 200 mL 65409011000036105 Gentian Alkaline Mixture (David Craig) oral liquid solution 65037011000036101 Gentian Alkaline Mixture (David Craig) 65037011000036101 Gentian Alkaline Mixture (David Craig) 71464011000036105 gentian 12.5 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 70020011000036107 gentian 12.5 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 69857011000036106 gentian + bicarbonate +1048351000168101 Tramadol SR (AS) 150 mg modified release tablet, 20, blister pack 190048 1048341000168103 Tramadol SR (AS) 150 mg modified release tablet, 20 1048331000168107 Tramadol SR (AS) 150 mg modified release tablet 1048261000168108 Tramadol SR (AS) 1048261000168108 Tramadol SR (AS) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +73340011000036109 Amoxycillin (Ranbaxy) 500 mg hard capsule, 20, blister pack 152853 73134011000036106 Amoxycillin (Ranbaxy) 500 mg hard capsule, 20 72928011000036107 Amoxycillin (Ranbaxy) 500 mg hard capsule 72924011000036100 Amoxycillin (Ranbaxy) 72924011000036100 Amoxycillin (Ranbaxy) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +73340011000036109 Amoxycillin (Ranbaxy) 500 mg hard capsule, 20, blister pack 207007 73134011000036106 Amoxycillin (Ranbaxy) 500 mg hard capsule, 20 72928011000036107 Amoxycillin (Ranbaxy) 500 mg hard capsule 72924011000036100 Amoxycillin (Ranbaxy) 72924011000036100 Amoxycillin (Ranbaxy) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +933215201000036100 Tronz 4 mg film-coated tablet, 10, blister pack 163436 933204151000036105 Tronz 4 mg film-coated tablet, 10 933196321000036106 Tronz 4 mg film-coated tablet 933193581000036105 Tronz 933193581000036105 Tronz 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +722811000168107 Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL, injection device 66127 722801000168109 Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL 722781000168105 Intron A Redipen 30 million units/1.2 mL injection solution 30001000168103 Intron A Redipen 30001000168103 Intron A Redipen 722791000168108 interferon alfa-2b 30 million units/1.2 mL injection, 1.2 mL 722771000168107 interferon alfa-2b 30 million units/1.2 mL injection 21525011000036103 interferon alfa-2b +20670011000036109 Cicloral 100 mg capsule, 30, blister pack 81962 13850011000036103 Cicloral 100 mg capsule, 30 7137011000036102 Cicloral 100 mg capsule 3483011000036105 Cicloral 3483011000036105 Cicloral 27974011000036106 ciclosporin 100 mg capsule, 30 23298011000036101 ciclosporin 100 mg capsule 21379011000036104 ciclosporin +68752011000036109 Cold Sore (Chemists' Own) 5% cream, 2 g, tube 106588 66543011000036106 Cold Sore (Chemists' Own) 5% cream, 2 g 65428011000036105 Cold Sore (Chemists' Own) 5% cream 65189011000036105 Cold Sore (Chemists' Own) 65189011000036105 Cold Sore (Chemists' Own) 46471011000036108 aciclovir 5% cream, 2 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +20109011000036109 Chlorvescent effervescent tablet, 60, tube 71981 13334011000036106 Chlorvescent effervescent tablet, 60 6619011000036100 Chlorvescent effervescent tablet 3304011000036104 Chlorvescent 3304011000036104 Chlorvescent 28045011000036108 potassium chloride 595 mg + potassium bicarbonate 384 mg + potassium carbonate 152 mg (total potassium 14 mmol) effervescent tablet, 60 23366011000036109 potassium chloride 595 mg + potassium bicarbonate 384 mg + potassium carbonate 152 mg (total potassium 14 mmol) effervescent tablet 21261011000036104 potassium chloride + potassium bicarbonate + potassium carbonate +1080751000168108 Claratyne Children's 5 mg chewable tablet, 2, blister pack 169329 1080741000168106 Claratyne Children's 5 mg chewable tablet, 2 930070011000036102 Claratyne Children's 5 mg chewable tablet 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 1080731000168102 loratadine 5 mg chewable tablet, 2 931862011000036104 loratadine 5 mg chewable tablet 21701011000036106 loratadine +68765011000036107 QV Skin Lotion, 15 mL, bottle 10630 66527011000036104 QV Skin Lotion, 15 mL 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71259011000036100 glycerol 5% + white soft paraffin 5% lotion, 15 mL 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +779001000168109 Fentanyl (Apo) 75 microgram/hour patch, 5, sachet 152570 778991000168109 Fentanyl (Apo) 75 microgram/hour patch, 5 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 26651011000036105 fentanyl 75 microgram/hour patch, 5 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +923785011000036101 Circadin 2 mg modified release tablet, 7, blister pack 153959 923345011000036106 Circadin 2 mg modified release tablet, 7 923021011000036105 Circadin 2 mg modified release tablet 922948011000036102 Circadin 922948011000036102 Circadin 924146011000036105 melatonin 2 mg modified release tablet, 7 923964011000036106 melatonin 2 mg modified release tablet 923927011000036105 melatonin +1087181000168101 Zorvolex 18 mg hard capsule, 10, blister pack 282521 1087171000168104 Zorvolex 18 mg hard capsule, 10 1087081000168102 Zorvolex 18 mg hard capsule 1087021000168101 Zorvolex 1087021000168101 Zorvolex 1087161000168105 diclofenac 18 mg capsule, 10 1087071000168100 diclofenac 18 mg capsule 21288011000036105 diclofenac +855341000168106 Algerika 200 mg hard capsule, 60, blister pack 229598 855331000168102 Algerika 200 mg hard capsule, 60 855211000168104 Algerika 200 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +778921000168107 Fentanyl (Apo) 75 microgram/hour patch, 1, sachet 152570 778911000168100 Fentanyl (Apo) 75 microgram/hour patch, 1 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235571000036103 fentanyl 75 microgram/hour patch, 1 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +931701011000036106 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet, 168, blister pack 172168 930861011000036103 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet, 168 930079011000036108 Aspirin EC (Pharmacy Choice) 100 mg enteric tablet 33171000168102 Aspirin EC (Pharmacy Choice) 33171000168102 Aspirin EC (Pharmacy Choice) 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +1013711000168103 Valsartan (Apotex) 40 mg film-coated tablet, 7, blister pack 185857 1013701000168101 Valsartan (Apotex) 40 mg film-coated tablet, 7 1013691000168101 Valsartan (Apotex) 40 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63858011000036109 valsartan 40 mg tablet, 7 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +43835011000036105 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 7, blister pack 127168 41336011000036108 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 7 39796011000036109 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet 39725011000036109 Zolpidem Tartrate (GenRx) 39725011000036109 Zolpidem Tartrate (GenRx) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +900046011000036101 Levecetam 500 mg film-coated tablet, 60, blister pack 159036 900024011000036106 Levecetam 500 mg film-coated tablet, 60 900008011000036107 Levecetam 500 mg film-coated tablet 900004011000036100 Levecetam 900004011000036100 Levecetam 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +20186011000036104 Valtrex 500 mg film-coated tablet, 10, blister pack 73917 13409011000036108 Valtrex 500 mg film-coated tablet, 10 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1078501000168108 Atomoxetine (GPPL) 25 mg hard capsule, 56, blister pack 234834 1078491000168101 Atomoxetine (GPPL) 25 mg hard capsule, 56 1078421000168103 Atomoxetine (GPPL) 25 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830501000168109 atomoxetine 25 mg capsule, 56 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +19385011000036102 Mobilis 20 mg hard capsule, 25, bottle 52202 12773011000036103 Mobilis 20 mg hard capsule, 25 6067011000036100 Mobilis 20 mg hard capsule 25271000168109 Mobilis 25271000168109 Mobilis 27763011000036106 piroxicam 20 mg capsule, 25 23094011000036103 piroxicam 20 mg capsule 21531011000036103 piroxicam +61299011000036106 Hair A-Gain 5% application, 3 x 60 mL, bottles 79607 57235011000036101 Hair A-Gain 5% application, 3 x 60 mL 54249011000036105 Hair A-Gain 5% application 53423011000036106 Hair A-Gain 53423011000036106 Hair A-Gain 63780011000036100 minoxidil 5% application, 3 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +19355011000036106 Sunsense Ultra SPF 30+ lotion, 125 mL, bottle 51552 12642011000036101 Sunsense Ultra SPF 30+ lotion, 125 mL 5669011000036103 Sunsense Ultra SPF 30+ lotion 59121000168101 Sunsense Ultra SPF 30+ 59121000168101 Sunsense Ultra SPF 30+ 27251011000036109 octyl methoxycinnamate 7.5% + oxybenzone 3% + titanium dioxide 2.8% lotion, 125 mL 22609011000036104 octyl methoxycinnamate 7.5% + oxybenzone 3% + titanium dioxide 2.8% lotion 21560011000036104 octyl methoxycinnamate + oxybenzone + titanium +45141000036100 Tenderwet Active Cavity (609272) 5.5 cm dressing, 10, carton 42651000036101 Tenderwet Active Cavity (609272) 5.5 cm dressing, 10 48615011000036106 Tenderwet Active Cavity (609272) 5.5 cm dressing 39161000168105 Tenderwet Active Cavity (609272) 39161000168105 Tenderwet Active Cavity (609272) 42661000036103 dressing hydroactive debridement 5.5 cm dressing, 10 50892011000036101 dressing hydroactive debridement 5.5 cm dressing 50721011000036101 dressing hydroactive debridement +60151011000036105 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 60, bottle 129739 56110011000036103 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 60 54363011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet 1721000168108 Ibuprofen Blue (Herron) 1721000168108 Ibuprofen Blue (Herron) 63217011000036108 ibuprofen 200 mg tablet, 60 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1082841000168101 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack 72724 74390011000036103 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations 73914011000036104 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, actuation 73700011000036102 Beconase Allergy and Hayfever 24 Hour 73700011000036102 Beconase Allergy and Hayfever 24 Hour 75487011000036103 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, 120 actuations 75089011000036100 fluticasone propionate 0.05% (50 microgram/actuation) nasal spray, actuation 861061000168102 fluticasone propionate +667301000168100 Kaptan 100 mg film-coated tablet, 90, blister pack 202243 667291000168101 Kaptan 100 mg film-coated tablet, 90 667261000168108 Kaptan 100 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +18584011000036100 Rancef 250 mg hard capsule, 20, blister pack 116866 11555011000036103 Rancef 250 mg hard capsule, 20 5317011000036102 Rancef 250 mg hard capsule 3515011000036100 Rancef 3515011000036100 Rancef 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +786861000168101 Oxycodone MR (Apotex) 30 mg modified release tablet, 20, blister pack 214487 786851000168103 Oxycodone MR (Apotex) 30 mg modified release tablet, 20 786841000168100 Oxycodone MR (Apotex) 30 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +705471000168102 Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g, jar 14073 705461000168108 Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g 705441000168109 Salicylic Acid 3% in Aqueous Cream (David Craig) cream 16611000168102 Salicylic Acid 3% in Aqueous Cream (David Craig) 16611000168102 Salicylic Acid 3% in Aqueous Cream (David Craig) 705451000168106 salicylic acid 3% + aqueous cream, 100 g 705431000168100 salicylic acid 3% + aqueous cream 69824011000036101 salicylic acid + aqueous cream +69236011000036102 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 10 x 1 L bottles 19462 67036011000036100 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 10 x 1 L bottles 65302011000036109 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 1 L bottle 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 71606011000036103 chlorhexidine acetate 0.1% (1 g/L) + cetrimide 1% (10 g/L) solution, 10 x 1 L bottles 70088011000036100 chlorhexidine acetate 0.1% (1 g/L) + cetrimide 1% (10 g/L) solution, bottle 69756011000036105 chlorhexidine + cetrimide +923817011000036105 Sulprix 50 mg tablet, 90, blister pack 156047 923363011000036104 Sulprix 50 mg tablet, 90 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +911481000168107 Cavstat 20 mg film-coated tablet, 28, blister pack 234514 911471000168109 Cavstat 20 mg film-coated tablet, 28 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911461000168103 rosuvastatin 20 mg tablet, 28 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +34737011000036102 Pethidine Hydrochloride (DBL) 75 mg/1.5 mL injection solution, 5 x 1.5 mL ampoules 47213 34321011000036107 Pethidine Hydrochloride (DBL) 75 mg/1.5 mL injection solution, 5 x 1.5 mL ampoules 34039011000036107 Pethidine Hydrochloride (DBL) 75 mg/1.5 mL injection solution, 1.5 mL ampoule 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35169011000036101 pethidine hydrochloride 75 mg/1.5 mL injection, 5 x 1.5 mL ampoules 34886011000036106 pethidine hydrochloride 75 mg/1.5 mL injection, ampoule 34839011000036106 pethidine +45181000036109 Diltiazem Hydrochloride CD (Sandoz) 360 mg modified release capsule, 30, bottle 131304 42821000036108 Diltiazem Hydrochloride CD (Sandoz) 360 mg modified release capsule, 30 41101000036100 Diltiazem Hydrochloride CD (Sandoz) 360 mg modified release capsule 14301000168101 Diltiazem Hydrochloride CD (Sandoz) 14301000168101 Diltiazem Hydrochloride CD (Sandoz) 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +1095821000168101 Zertine 10 mg film-coated tablet, 28, blister pack 287404 1095811000168108 Zertine 10 mg film-coated tablet, 28 1081371000168108 Zertine 10 mg film-coated tablet 1081361000168102 Zertine 1081361000168102 Zertine 63285011000036101 cetirizine hydrochloride 10 mg tablet, 28 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +735701000168106 Sildenafil (Apo) 100 mg film-coated tablet, 12, blister pack 164806 735691000168106 Sildenafil (Apo) 100 mg film-coated tablet, 12 173381000036100 Sildenafil (Apo) 100 mg film-coated tablet 172761000036104 Sildenafil (Apo) 172761000036104 Sildenafil (Apo) 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +87749011000036109 Lengout 500 microgram tablet, 30, bottle 97499 87515011000036104 Lengout 500 microgram tablet, 30 7507011000036102 Lengout 500 microgram tablet 3865011000036102 Lengout 3865011000036102 Lengout 87836011000036101 colchicine 500 microgram tablet, 30 23537011000036101 colchicine 500 microgram tablet 21400011000036106 colchicine +849491000168108 Vzole 50 mg film-coated tablet, 50, bottle 238240 849301000168105 Vzole 50 mg film-coated tablet, 50 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46818011000036102 voriconazole 50 mg tablet, 50 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +1014441000168109 Temozolomide (Apotex) 20 mg hard capsule, 5, bottle 206882 1014431000168100 Temozolomide (Apotex) 20 mg hard capsule, 5 1014421000168103 Temozolomide (Apotex) 20 mg hard capsule 1014191000168108 Temozolomide (Apotex) 1014191000168108 Temozolomide (Apotex) 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +925162011000036108 Nicabate Soft Gum Mint 2 mg chewing gum, 24, blister pack 117055 924687011000036100 Nicabate Soft Gum Mint 2 mg chewing gum, 24 924413011000036105 Nicabate Soft Gum Mint 2 mg chewing gum 6191000168103 Nicabate Soft Gum Mint 6191000168103 Nicabate Soft Gum Mint 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +74882011000036102 Amoxycillin (Sandoz) 250 mg hard capsule, 20, blister pack 63332 74369011000036107 Amoxycillin (Sandoz) 250 mg hard capsule, 20 73899011000036109 Amoxycillin (Sandoz) 250 mg hard capsule 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +43651011000036102 Zemplar 2 microgram soft capsule, 7, bottle 121763 41260011000036109 Zemplar 2 microgram soft capsule, 7 39939011000036101 Zemplar 2 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46199011000036101 paricalcitol 2 microgram capsule, 7 45026011000036105 paricalcitol 2 microgram capsule 44899011000036102 paricalcitol +1082991000168102 Avamys 27.5 microgram/actuation nasal spray, 120 actuations, pump pack 131443 927625011000036108 Avamys 27.5 microgram/actuation nasal spray, 120 actuations 927581011000036108 Avamys 27.5 microgram/actuation nasal spray, actuation 927576011000036105 Avamys 927576011000036105 Avamys 927735011000036101 fluticasone furoate 27.5 microgram/actuation nasal spray, 120 actuations 927714011000036105 fluticasone furoate 27.5 microgram/actuation nasal spray, actuation 860171000168103 fluticasone furoate +948131000168103 Lamotran 50 mg tablet, 56, blister pack 147626 948121000168101 Lamotran 50 mg tablet, 56 948111000168108 Lamotran 50 mg tablet 948071000168101 Lamotran 948071000168101 Lamotran 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +18134011000036104 Olmetec 20 mg film-coated tablet, 30, blister pack 102138 11248011000036100 Olmetec 20 mg film-coated tablet, 30 4927011000036109 Olmetec 20 mg film-coated tablet 3066011000036105 Olmetec 3066011000036105 Olmetec 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +787421000168106 Arizole 10 mg uncoated tablet, 56, blister pack 198179 787411000168104 Arizole 10 mg uncoated tablet, 56 787341000168107 Arizole 10 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787401000168102 aripiprazole 10 mg tablet, 56 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +676081000168104 Celecoxib (RBX) 200 mg hard capsule, 30, blister pack 212789 676071000168102 Celecoxib (RBX) 200 mg hard capsule, 30 676061000168108 Celecoxib (RBX) 200 mg hard capsule 676051000168106 Celecoxib (RBX) 676051000168106 Celecoxib (RBX) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +18434011000036103 Dihydergot 1 mg/mL injection solution, 5 x 1 mL ampoules 13349 11970011000036104 Dihydergot 1 mg/mL injection solution, 5 x 1 mL ampoules 5107011000036107 Dihydergot 1 mg/mL injection solution, ampoule 2977011000036100 Dihydergot 2977011000036100 Dihydergot 26823011000036100 dihydroergotamine mesylate 1 mg/mL injection, 5 x 1 mL ampoules 22205011000036104 dihydroergotamine mesylate 1 mg/mL injection, ampoule 21542011000036108 dihydroergotamine +73327011000036108 Simvastatin (Apo) 40 mg film-coated tablet, 30, blister pack 149814 73122011000036100 Simvastatin (Apo) 40 mg film-coated tablet, 30 72927011000036106 Simvastatin (Apo) 40 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +73327011000036108 Simvastatin (Apo) 40 mg film-coated tablet, 30, blister pack 223450 73122011000036100 Simvastatin (Apo) 40 mg film-coated tablet, 30 72927011000036106 Simvastatin (Apo) 40 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +30612011000036101 Ventolin Syrup Sugar Free 2 mg/5 mL oral liquid solution, 150 mL, bottle 92339 30590011000036106 Ventolin Syrup Sugar Free 2 mg/5 mL oral liquid solution, 150 mL 7301011000036107 Ventolin Syrup Sugar Free 2 mg/5 mL oral liquid solution, 5 mL 51371000168102 Ventolin Syrup 51371000168102 Ventolin Syrup 30616011000036102 salbutamol 2 mg/5 mL oral liquid, 150 mL 23396011000036107 salbutamol 2 mg/5 mL oral liquid 21493011000036100 salbutamol +130931000036105 Montelukast (Apo) 5 mg chewable tablet, 28, bottle 179110 127881000036103 Montelukast (Apo) 5 mg chewable tablet, 28 124281000036108 Montelukast (Apo) 5 mg chewable tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +1095861000168106 Ibuprofen (Genpar) 200 mg film-coated tablet, 40, blister pack 285310 1095851000168109 Ibuprofen (Genpar) 200 mg film-coated tablet, 40 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +962561000168107 Cephacor 250 mg hard capsule, 20, blister pack 204541 962551000168105 Cephacor 250 mg hard capsule, 20 962541000168108 Cephacor 250 mg hard capsule 936241000168102 Cephacor 936241000168102 Cephacor 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +958261000168103 Dormizol 5 mg film-coated tablet, 2, blister pack 117952 958251000168100 Dormizol 5 mg film-coated tablet, 2 958241000168102 Dormizol 5 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 926141000168108 zolpidem tartrate 5 mg tablet, 2 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +1018781000168102 Azithromycin (Apotex) 500 mg film-coated tablet, 3, blister pack 195915 1018771000168100 Azithromycin (Apotex) 500 mg film-coated tablet, 3 1018721000168101 Azithromycin (Apotex) 500 mg film-coated tablet 1018681000168107 Azithromycin (Apotex) 1018681000168107 Azithromycin (Apotex) 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +20126011000036105 Desferrioxamine Mesylate (DBL) 2 g powder for injection, 1 vial 73173 13350011000036100 Desferrioxamine Mesylate (DBL) 2 g powder for injection, 1 vial 6635011000036105 Desferrioxamine Mesylate (DBL) 2 g powder for injection, 2 g vial 3118011000036104 Desferrioxamine Mesylate (DBL) 3118011000036104 Desferrioxamine Mesylate (DBL) 27709011000036108 desferrioxamine mesilate 2 g injection, 1 vial 23044011000036105 desferrioxamine mesilate 2 g injection, vial 21587011000036101 desferrioxamine +61089011000036103 Dermaid 1% cream, 30 g, tube 70706 57032011000036103 Dermaid 1% cream, 30 g 54165011000036103 Dermaid 1% cream 30751000168101 Dermaid 30751000168101 Dermaid 63706011000036103 hydrocortisone 1% cream, 30 g 22015011000036108 hydrocortisone 1% cream 21681011000036103 hydrocortisone +18618011000036103 Simvastatin (Genepharm) 10 mg film-coated tablet, 30, blister pack 115407 11487011000036109 Simvastatin (Genepharm) 10 mg film-coated tablet, 30 5045011000036104 Simvastatin (Genepharm) 10 mg film-coated tablet 2992011000036107 Simvastatin (Genepharm) 2992011000036107 Simvastatin (Genepharm) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1100161000168103 Axycillin 500 mg hard capsule, 30, blister pack 198130 1100151000168100 Axycillin 500 mg hard capsule, 30 1100121000168108 Axycillin 500 mg hard capsule 1100111000168101 Axycillin 1100111000168101 Axycillin 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +1121581000168100 Lumigan RC 0.01% eye drops solution, 3 mL, bottle 286206 1121571000168103 Lumigan RC 0.01% eye drops solution, 3 mL 1121551000168107 Lumigan RC 0.01% eye drops solution 1121531000168101 Lumigan RC 1121531000168101 Lumigan RC 1121561000168109 bimatoprost 0.01% eye drops, 3 mL 1121541000168105 bimatoprost 0.01% eye drops 21297011000036105 bimatoprost +81071011000036107 Gemcitabine (Actavis) 200 mg powder for injection, 1 vial 151702 80580011000036100 Gemcitabine (Actavis) 200 mg powder for injection, 1 vial 80198011000036107 Gemcitabine (Actavis) 200 mg powder for injection, 200 mg vial 15691000168104 Gemcitabine (Actavis) 15691000168104 Gemcitabine (Actavis) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +925130011000036103 Aspirin (Coles) 300 mg uncoated tablet, 24, blister pack 145720 924699011000036106 Aspirin (Coles) 300 mg uncoated tablet, 24 924423011000036101 Aspirin (Coles) 300 mg uncoated tablet 924370011000036101 Aspirin (Coles) 924370011000036101 Aspirin (Coles) 63606011000036109 aspirin 300 mg tablet, 24 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +1089431000168103 Paracetamol (Genpar) 500 mg film-coated tablet, 24, blister pack 280973 1089421000168101 Paracetamol (Genpar) 500 mg film-coated tablet, 24 1089371000168107 Paracetamol (Genpar) 500 mg film-coated tablet 1089361000168101 Paracetamol (Genpar) 1089361000168101 Paracetamol (Genpar) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +879011000168105 Bosentan (Ran) 125 mg film-coated tablet, 56, blister pack 257733 878841000168108 Bosentan (Ran) 125 mg film-coated tablet, 56 878821000168102 Bosentan (Ran) 125 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +928801000168104 Zovirax 200 mg uncoated tablet, 25, blister pack 11014 928791000168100 Zovirax 200 mg uncoated tablet, 25 928781000168103 Zovirax 200 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +1114591000168108 Quetiapine (Unichem) 300 mg film-coated tablet, 60, blister pack 212145 1114581000168105 Quetiapine (Unichem) 300 mg film-coated tablet, 60 1114571000168107 Quetiapine (Unichem) 300 mg film-coated tablet 1114531000168109 Quetiapine (Unichem) 1114531000168109 Quetiapine (Unichem) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +945391000168108 Citlam-S 20 mg film-coated tablet, 98, blister pack 191880 945381000168105 Citlam-S 20 mg film-coated tablet, 98 945281000168101 Citlam-S 20 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 945371000168107 escitalopram 20 mg tablet, 98 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +80039011000036100 Oxaliplatin (Alphapharm) 50 mg powder for injection, 10 vials 130848 79957011000036100 Oxaliplatin (Alphapharm) 50 mg powder for injection, 10 vials 79918011000036109 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80054011000036102 oxaliplatin 50 mg injection, 10 vials 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +1100201000168108 Colaptyn 50 mg uncoated tablet, 30, blister pack 186396 1100191000168105 Colaptyn 50 mg uncoated tablet, 30 1100181000168107 Colaptyn 50 mg uncoated tablet 1100171000168109 Colaptyn 1100171000168109 Colaptyn 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +61483011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 25, blister pack 91993 57408011000036102 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 25 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63943011000036107 paracetamol 500 mg tablet, 25 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1123271000168102 Quetiapine XR (ZP) 200 mg modified release tablet, 30, blister pack 226803 1123261000168108 Quetiapine XR (ZP) 200 mg modified release tablet, 30 1123231000168100 Quetiapine XR (ZP) 200 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 790941000168106 quetiapine 200 mg modified release tablet, 30 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +789111000168100 Gemcitabine (Agila) 1 g powder for injection, 5 vials 177645 789101000168103 Gemcitabine (Agila) 1 g powder for injection, 5 vials 788691000168105 Gemcitabine (Agila) 1 g powder for injection, vial 788601000168104 Gemcitabine (Agila) 788601000168104 Gemcitabine (Agila) 789091000168108 gemcitabine 1 g injection, 5 vials 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +18601011000036105 Azol 200 mg hard capsule, 100, bottle 10011 11134011000036109 Azol 200 mg hard capsule, 100 5142011000036101 Azol 200 mg hard capsule 2984011000036102 Azol 2984011000036102 Azol 26532011000036106 danazol 200 mg capsule, 100 21942011000036103 danazol 200 mg capsule 21709011000036105 danazol +709881000168104 Fluarix 2015 injection suspension, 10 x 0.5 mL syringes 154660 709871000168102 Fluarix 2015 injection suspension, 10 x 0.5 mL syringes 709831000168100 Fluarix 2015 injection suspension, 0.5 mL syringe 709821000168103 Fluarix 2015 709821000168103 Fluarix 2015 709391000168107 influenza trivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +1014511000168106 Aridon ODT 10 mg orally disintegrating tablet, 28, blister pack 175985 1014501000168108 Aridon ODT 10 mg orally disintegrating tablet, 28 1014491000168101 Aridon ODT 10 mg orally disintegrating tablet 1014481000168104 Aridon ODT 1014481000168104 Aridon ODT 956321000168101 donepezil hydrochloride 10 mg orally disintegrating tablet, 28 956301000168105 donepezil hydrochloride 10 mg orally disintegrating tablet 21256011000036101 donepezil +69249011000036107 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/L (Baxter) intravenous infusion injection, 1 L bag 19468 67049011000036105 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/L (Baxter) intravenous infusion injection, 1 L bag 65332011000036104 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/L (Baxter) intravenous infusion injection, 1 L bag 16621000168109 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/1 L (Baxter) 16621000168109 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/1 L (Baxter) 71619011000036109 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 2.2 g (potassium 30 mmol)/L + calcium chloride dihydrate 0.027% (270 mg/L) injection, 1 L bag 70095011000036105 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 2.2 g (potassium 30 mmol)/L + calcium chloride dihydrate 0.027% (270 mg/L) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +20139011000036104 Zavedos 5 mg hard capsule, 1, bottle 73516 13363011000036104 Zavedos 5 mg hard capsule, 1 6648011000036100 Zavedos 5 mg hard capsule 4217011000036101 Zavedos 4217011000036101 Zavedos 27718011000036102 idarubicin hydrochloride 5 mg capsule, 1 23053011000036106 idarubicin hydrochloride 5 mg capsule 21720011000036108 idarubicin +50650011000036101 Eutroxsig 75 microgram uncoated tablet, 200, blister pack 144117 49674011000036103 Eutroxsig 75 microgram uncoated tablet, 200 48813011000036102 Eutroxsig 75 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 51552011000036103 levothyroxine sodium 75 microgram tablet, 200 50999011000036104 levothyroxine sodium 75 microgram tablet 21577011000036109 levothyroxine +1103811000168101 Serepax 30 mg uncoated tablet, 5, blister pack 10417 1103801000168104 Serepax 30 mg uncoated tablet, 5 5092011000036101 Serepax 30 mg uncoated tablet 3507011000036107 Serepax 3507011000036107 Serepax 1103791000168100 oxazepam 30 mg tablet, 5 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +20807011000036107 Lisinopril (Hexal) 10 mg uncoated tablet, 30, bottle 91387 13971011000036103 Lisinopril (Hexal) 10 mg uncoated tablet, 30 7257011000036103 Lisinopril (Hexal) 10 mg uncoated tablet 3611011000036109 Lisinopril (Hexal) 3611011000036109 Lisinopril (Hexal) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +926747011000036109 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 5 x 10 mL ampoules 117968 926111011000036104 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 5 x 10 mL ampoules 925586011000036104 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 10 mL ampoule 925569011000036105 Flumazenil (Sandoz) 925569011000036105 Flumazenil (Sandoz) 46191011000036100 flumazenil 1 mg/10 mL injection, 5 x 10 mL ampoules 45022011000036106 flumazenil 1 mg/10 mL injection, ampoule 37762011000036103 flumazenil +962471000168100 Salmol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135470 962461000168106 Salmol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 962451000168109 Salmol 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 962441000168107 Salmol 962441000168107 Salmol 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +77396011000036107 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 mL ampoule 76064 76812011000036108 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 mL ampoule 76188011000036100 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 mL ampoule 21931000168100 Omnipaque-300 21931000168100 Omnipaque-300 78316011000036103 iohexol 647 mg (iodine 300 mg)/mL injection, 10 mL ampoule 77603011000036106 iohexol 647 mg (iodine 300 mg)/mL injection, 10 mL ampoule 77459011000036103 iohexol +61573011000036109 Proven 100 mg/5 mL oral liquid suspension, 60 mL, bottle 94372 57495011000036106 Proven 100 mg/5 mL oral liquid suspension, 60 mL 54324011000036102 Proven 100 mg/5 mL oral liquid suspension, 5 mL 53524011000036103 Proven 53524011000036103 Proven 63888011000036101 ibuprofen 100 mg/5 mL oral liquid, 60 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +872661000168108 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags 19438 872651000168106 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags 872601000168107 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 80123011000036107 Plasma-Lyte 148 Replacement in 5% Glucose 80123011000036107 Plasma-Lyte 148 Replacement in 5% Glucose 872641000168109 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 12 x 1 L bags 872591000168100 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, bag 81221011000036101 sodium chloride + sodium gluconate + sodium acetate trihydrate + potassium chloride + magnesium chloride + glucose +774671000168107 Dimetapp Allergic Rhinitis oral liquid solution, 45 mL, bottle 231997 774661000168101 Dimetapp Allergic Rhinitis oral liquid solution, 45 mL 774601000168102 Dimetapp Allergic Rhinitis oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 774651000168103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 45 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +1065441000168107 Codoxamol uncoated tablet, 96, bottle 161869 1065431000168103 Codoxamol uncoated tablet, 96 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 52869011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 96 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +877481000168104 Bicalutamide (CH) 50 mg film-coated tablet, 56, blister pack 129101 877471000168102 Bicalutamide (CH) 50 mg film-coated tablet, 56 877441000168109 Bicalutamide (CH) 50 mg film-coated tablet 877001000168101 Bicalutamide (CH) 877001000168101 Bicalutamide (CH) 39464011000036108 bicalutamide 50 mg tablet, 56 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +87685011000036107 Famciclovir (Apo) 250 mg film-coated tablet, 40, bottle 160560 87485011000036105 Famciclovir (Apo) 250 mg film-coated tablet, 40 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87825011000036106 famciclovir 250 mg tablet, 40 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +778281000168101 Endone XR 10 mg modified release tablet, 28, blister pack 153604 778271000168104 Endone XR 10 mg modified release tablet, 28 778201000168109 Endone XR 10 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +84378011000036108 Zopral 15 mg enteric capsule, 30, blister pack 166764 84070011000036107 Zopral 15 mg enteric capsule, 30 83693011000036102 Zopral 15 mg enteric capsule 51411000168101 Zopral 51411000168101 Zopral 27464011000036103 lansoprazole 15 mg enteric capsule, 30 22811011000036107 lansoprazole 15 mg enteric capsule 21491011000036101 lansoprazole +20336011000036103 Pariet 10 mg enteric tablet, 28, blister pack 76185 13545011000036108 Pariet 10 mg enteric tablet, 28 125441000036104 Pariet 10 mg enteric tablet 3351011000036108 Pariet 3351011000036108 Pariet 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +38921000036101 Escilupin 20 mg film-coated tablet, 100, bottle 165883 35291000036101 Escilupin 20 mg film-coated tablet, 100 33151000036104 Escilupin 20 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +60664011000036104 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 50 mL, bottle 38572 56622011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 50 mL 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 63474011000036108 benzydamine hydrochloride 0.15% mouthwash, 50 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +1090891000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 60, blister pack 286355 1090881000168109 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 60 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 63288011000036107 cetirizine hydrochloride 10 mg tablet, 60 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1017891000168105 Valaciclovir 1000 (Apotex) 1 g film-coated tablet, 3, blister pack 158912 1017881000168107 Valaciclovir 1000 (Apotex) 1 g film-coated tablet, 3 1017861000168103 Valaciclovir 1000 (Apotex) 1 g film-coated tablet 1017851000168100 Valaciclovir 1000 (Apotex) 1017851000168100 Valaciclovir 1000 (Apotex) 1017871000168109 valaciclovir 1 g tablet, 3 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +44659011000036101 Abilify 5 mg uncoated tablet, 30, blister pack 90925 42111011000036100 Abilify 5 mg uncoated tablet, 30 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +933212871000036101 Zomacton (1 x 10 mg vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 156226 933202501000036105 Zomacton (1 x 10 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 648251000168103 Zomacton (inert substance) diluent, 1 mL syringe 39565011000036100 Zomacton 39565011000036100 Zomacton 933202511000036107 somatropin 10 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +933212871000036101 Zomacton (1 x 10 mg vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 156226 933202501000036105 Zomacton (1 x 10 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 933195141000036106 Zomacton (somatropin 10 mg) powder for injection, 10 mg vial 39565011000036100 Zomacton 39565011000036100 Zomacton 933202511000036107 somatropin 10 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 933195151000036109 somatropin 10 mg injection, vial 21295011000036100 somatropin +926791000168104 Zinnat 125 mg film-coated tablet, 14, strip pack 44091 917891000168103 Zinnat 125 mg film-coated tablet, 14 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917881000168101 cefuroxime 125 mg tablet, 14 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +1069291000168100 Paracetamol plus Codeine and Calmative (Chemists' Own) uncoated tablet, 40, blister pack 277276 1069281000168103 Paracetamol plus Codeine and Calmative (Chemists' Own) uncoated tablet, 40 1069251000168105 Paracetamol plus Codeine and Calmative (Chemists' Own) uncoated tablet 1069241000168108 Paracetamol plus Codeine and Calmative (Chemists' Own) 1069241000168108 Paracetamol plus Codeine and Calmative (Chemists' Own) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +931375011000036101 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 10, blister pack 192334 930608011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 10 929969011000036109 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +931375011000036101 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 10, blister pack 134695 930608011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 10 929969011000036109 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +17863011000036105 Renitec M 5 mg uncoated tablet, 30, blister pack 10514 11317011000036102 Renitec M 5 mg uncoated tablet, 30 5255011000036109 Renitec M 5 mg uncoated tablet 8091000168100 Renitec M 8091000168100 Renitec M 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +86060011000036107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28, blister pack 149319 85643011000036101 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28 85313011000036102 Qlaira (estradiol valerate 2 mg + dienogest 3 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 86414011000036105 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 28 86213011000036107 estradiol valerate 2 mg + dienogest 3 mg tablet 86193011000036105 estradiol + dienogest +86060011000036107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28, blister pack 149319 85643011000036101 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28 85314011000036100 Qlaira (estradiol valerate 3 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 86414011000036105 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 28 86214011000036109 estradiol valerate 3 mg tablet 21238011000036103 estradiol +86060011000036107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28, blister pack 149319 85643011000036101 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28 85316011000036108 Qlaira (inert substance) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 86414011000036105 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +86060011000036107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28, blister pack 149319 85643011000036101 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28 85317011000036106 Qlaira (estradiol valerate 2 mg + dienogest 2 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 86414011000036105 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 28 86215011000036108 estradiol valerate 2 mg + dienogest 2 mg tablet 86193011000036105 estradiol + dienogest +86060011000036107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28, blister pack 149319 85643011000036101 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 28 85315011000036101 Qlaira (estradiol valerate 1 mg) film-coated tablet 85293011000036106 Qlaira 85293011000036106 Qlaira 86414011000036105 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 28 22027011000036107 estradiol valerate 1 mg tablet 21238011000036103 estradiol +56101000036105 Lisinopril (DRLA) 2.5 mg uncoated tablet, 28, blister pack 152719 51631000036102 Lisinopril (DRLA) 2.5 mg uncoated tablet, 28 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927300011000036104 lisinopril 2.5 mg tablet, 28 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +931371000168109 Centevo 75/18.75/200 mg film-coated tablet, 100, bottle 238853 931361000168103 Centevo 75/18.75/200 mg film-coated tablet, 100 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 84649011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 100 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1090931000168104 Zirizine 10 mg film-coated tablet, 5, blister pack 286357 1090921000168102 Zirizine 10 mg film-coated tablet, 5 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 1081381000168106 cetirizine hydrochloride 10 mg tablet, 5 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +18514011000036102 Silic 15 cream, 75 g, tube 10636 11332011000036107 Silic 15 cream, 75 g 5332011000036107 Silic 15 cream 21301000168108 Silic 15 21301000168108 Silic 15 26611011000036102 dimeticone-350 15% + glycerol 2% cream, 75 g 22021011000036104 dimeticone-350 15% + glycerol 2% cream 32614011000036102 dimeticone-350 + glycerol +1064951000168100 Paracode uncoated tablet, 16, blister pack 292799 1064941000168102 Paracode uncoated tablet, 16 1064911000168101 Paracode uncoated tablet 1064901000168104 Paracode 1064901000168104 Paracode 63737011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 16 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +928889011000036100 Lisinopril (Apo) 10 mg tablet, 30, blister pack 213394 928251011000036101 Lisinopril (Apo) 10 mg tablet, 30 927904011000036102 Lisinopril (Apo) 10 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +928889011000036100 Lisinopril (Apo) 10 mg tablet, 30, blister pack 143977 928251011000036101 Lisinopril (Apo) 10 mg tablet, 30 927904011000036102 Lisinopril (Apo) 10 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +651601000168109 Xolair 75 mg/0.5 mL injection solution, 0.5 mL syringe 201124 651591000168102 Xolair 75 mg/0.5 mL injection solution, 0.5 mL syringe 651571000168103 Xolair 75 mg/0.5 mL injection solution, 0.5 mL syringe 39611011000036108 Xolair 39611011000036108 Xolair 651581000168100 omalizumab 75 mg/0.5 mL injection, 0.5 mL syringe 651561000168109 omalizumab 75 mg/0.5 mL injection, syringe 44858011000036101 omalizumab +60785011000036108 Telfast 60 mg hard capsule, 4, blister pack 55127 56743011000036109 Telfast 60 mg hard capsule, 4 54060011000036100 Telfast 60 mg hard capsule 1461000168109 Telfast 1461000168109 Telfast 63546011000036109 fexofenadine hydrochloride 60 mg capsule, 4 62010011000036105 fexofenadine hydrochloride 60 mg capsule 21394011000036108 fexofenadine +850771000168105 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules 12053 850761000168104 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules 850741000168103 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, ampoule 3899011000036103 Atropine Sulfate (AstraZeneca) 3899011000036103 Atropine Sulfate (AstraZeneca) 850751000168101 atropine sulfate monohydrate 600 microgram/mL injection, 10 x 1 mL ampoules 850731000168107 atropine sulfate monohydrate 600 microgram/mL injection, ampoule 933232141000036108 atropine sulfate monohydrate +928161000168108 Depo-Provera 150 mg/mL injection suspension, 1 mL syringe 12279 928151000168106 Depo-Provera 150 mg/mL injection suspension, 1 mL syringe 928131000168100 Depo-Provera 150 mg/mL injection suspension, syringe 3830011000036100 Depo-Provera 3830011000036100 Depo-Provera 928141000168109 medroxyprogesterone acetate 150 mg/mL injection, 1 mL syringe 928121000168103 medroxyprogesterone acetate 150 mg/mL injection, syringe 21378011000036107 medroxyprogesterone +1089841000168105 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 24, blister pack 281501 1089831000168101 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 24 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1017821000168108 Arizole 5 mg uncoated tablet, 56, blister pack 198209 1017811000168101 Arizole 5 mg uncoated tablet, 56 1017651000168101 Arizole 5 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 46875011000036103 aripiprazole 5 mg tablet, 56 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +738351000168100 Rosuvastatin (Auro) 40 mg film-coated tablet, 30, blister pack 197000 738341000168102 Rosuvastatin (Auro) 40 mg film-coated tablet, 30 738331000168106 Rosuvastatin (Auro) 40 mg film-coated tablet 738231000168104 Rosuvastatin (Auro) 738231000168104 Rosuvastatin (Auro) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +919571000168109 Antenex 10 mg uncoated tablet, 30, blister pack 17603 919561000168103 Antenex 10 mg uncoated tablet, 30 919541000168102 Antenex 10 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 919551000168100 diazepam 10 mg tablet, 30 919531000168106 diazepam 10 mg tablet 21688011000036107 diazepam +19557011000036103 Ogen 1.25 mg uncoated tablet, 56, blister pack 56974 12828011000036105 Ogen 1.25 mg uncoated tablet, 56 6119011000036101 Ogen 1.25 mg uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 27396011000036103 oestrone sulfate sodium 1.25 mg tablet, 56 22745011000036102 oestrone sulfate sodium 1.25 mg tablet 21299011000036103 oestrone sulfate sodium +1098511000168103 Risedronate (Auro) 35 mg film-coated tablet, 4, blister pack 190158 1098501000168101 Risedronate (Auro) 35 mg film-coated tablet, 4 1098491000168108 Risedronate (Auro) 35 mg film-coated tablet 1098381000168102 Risedronate (Auro) 1098381000168102 Risedronate (Auro) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +933238761000036108 Moov Head Lice solution, 200 mL, bottle 128237 933235521000036102 Moov Head Lice solution, 200 mL 933234431000036100 Moov Head Lice solution 933219261000036103 Moov Head Lice 933219261000036103 Moov Head Lice 933235531000036100 eucalyptus oil 11% + lemon tea tree oil 1% solution, 200 mL 933234441000036105 eucalyptus oil 11% + lemon tea tree oil 1% solution 69874011000036102 eucalyptus oil + lemon tea tree oil +968861000168107 Pregabalin (DRLA) 75 mg hard capsule, 20, blister pack 263081 968851000168105 Pregabalin (DRLA) 75 mg hard capsule, 20 968821000168102 Pregabalin (DRLA) 75 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1102811000168109 Duoresp Spiromax 200/6 powder for inhalation, 120 actuations, dry powder inhaler 267385 1102801000168106 Duoresp Spiromax 200/6 powder for inhalation, 120 actuations 1102791000168105 Duoresp Spiromax 200/6 powder for inhalation, actuation 1102751000168100 Duoresp Spiromax 200/6 1102751000168100 Duoresp Spiromax 200/6 27942011000036101 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, 120 actuations 23266011000036103 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +77251011000036101 Actonel Once-a-Month 150 mg film-coated tablet, 3, blister pack 150618 76667011000036104 Actonel Once-a-Month 150 mg film-coated tablet, 3 76101011000036105 Actonel Once-a-Month 150 mg film-coated tablet 7381000168101 Actonel Once-a-Month 7381000168101 Actonel Once-a-Month 78196011000036109 risedronate sodium 150 mg tablet, 3 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +1060701000168106 Aripiprazole (Apo) 5 mg uncoated tablet, 30, bottle 152911 963521000168107 Aripiprazole (Apo) 5 mg uncoated tablet, 30 963511000168100 Aripiprazole (Apo) 5 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +739511000168101 Velcade 3 mg powder for injection, 1 vial 238257 739501000168104 Velcade 3 mg powder for injection, 1 vial 739481000168108 Velcade 3 mg powder for injection, 3 mg vial 2994011000036103 Velcade 2994011000036103 Velcade 739491000168106 bortezomib 3 mg injection, 1 vial 739471000168105 bortezomib 3 mg injection, vial 21633011000036105 bortezomib +77159011000036104 Salt (Toppin) 600 mg soluble tablet, 100, jar 10591 76564011000036104 Salt (Toppin) 600 mg soluble tablet, 100 76041011000036108 Salt (Toppin) 600 mg soluble tablet 75944011000036104 Salt (Toppin) 75944011000036104 Salt (Toppin) 78121011000036107 sodium chloride 600 mg soluble tablet, 100 77499011000036105 sodium chloride 600 mg soluble tablet 21308011000036103 sodium chloride +32543011000036101 Dalacin C 150 mg hard capsule, 24, bottle 12296 32336011000036105 Dalacin C 150 mg hard capsule, 24 32213011000036102 Dalacin C 150 mg hard capsule 10481000168108 Dalacin C 10481000168108 Dalacin C 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +177121000036107 Perindopril Erbumine (Actavis) 4 mg uncoated tablet, 30, blister pack 212716 175391000036104 Perindopril Erbumine (Actavis) 4 mg uncoated tablet, 30 173421000036105 Perindopril Erbumine (Actavis) 4 mg uncoated tablet 172801000036105 Perindopril Erbumine (Actavis) 172801000036105 Perindopril Erbumine (Actavis) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +1014601000168109 Aridon ODT 5 mg orally disintegrating tablet, 28, blister pack 175986 1014591000168102 Aridon ODT 5 mg orally disintegrating tablet, 28 1014581000168100 Aridon ODT 5 mg orally disintegrating tablet 1014481000168104 Aridon ODT 1014481000168104 Aridon ODT 956111000168105 donepezil hydrochloride 5 mg orally disintegrating tablet, 28 956051000168107 donepezil hydrochloride 5 mg orally disintegrating tablet 21256011000036101 donepezil +37515011000036106 Cafergot S moulded suppository, 5, blister pack 13339 36783011000036107 Cafergot S moulded suppository, 5 36159011000036109 Cafergot S moulded suppository 43971000168103 Cafergot S 43971000168103 Cafergot S 38680011000036100 ergotamine tartrate 2 mg + caffeine 100 mg suppository, 5 37921011000036108 ergotamine tartrate 2 mg + caffeine 100 mg suppository 37729011000036104 ergotamine + caffeine +717901000168107 Ciprofloxacin (Auro) 250 mg film-coated tablet, 14, blister pack 175437 717891000168108 Ciprofloxacin (Auro) 250 mg film-coated tablet, 14 717881000168105 Ciprofloxacin (Auro) 250 mg film-coated tablet 717841000168100 Ciprofloxacin (Auro) 717841000168100 Ciprofloxacin (Auro) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +177161000036103 Maxigesic film-coated tablet, 10, blister pack 218785 175431000036108 Maxigesic film-coated tablet, 10 173031000036101 Maxigesic film-coated tablet 172741000036100 Maxigesic 172741000036100 Maxigesic 175441000036103 paracetamol 500 mg + ibuprofen 150 mg tablet, 10 173041000036106 paracetamol 500 mg + ibuprofen 150 mg tablet 177241000036105 paracetamol + ibuprofen +43622011000036109 Ciprofloxacin (Aspen) 100 mg/50 mL intravenous infusion injection, 10 x 50 mL bags 114731 41160011000036107 Ciprofloxacin (Aspen) 100 mg/50 mL intravenous infusion injection, 10 x 50 mL bags 39936011000036105 Ciprofloxacin (Aspen) 100 mg/50 mL intravenous infusion injection, 50 mL bag 39632011000036105 Ciprofloxacin (Aspen) 39632011000036105 Ciprofloxacin (Aspen) 46207011000036108 ciprofloxacin 100 mg/50 mL injection, 10 x 50 mL bags 45031011000036103 ciprofloxacin 100 mg/50 mL injection, bag 21245011000036105 ciprofloxacin +50478011000036104 Mepilex Lite (284100) 10 cm x 10 cm dressing, 5, carton 49367011000036107 Mepilex Lite (284100) 10 cm x 10 cm dressing, 5 48559011000036109 Mepilex Lite (284100) 10 cm x 10 cm dressing 43811000168100 Mepilex Lite (284100) 43811000168100 Mepilex Lite (284100) 51341011000036109 dressing foam with silicone light exudate 10 cm x 10 cm dressing, 5 50865011000036107 dressing foam with silicone light exudate 10 cm x 10 cm dressing 50744011000036100 dressing foam with silicone light exudate +38881000036108 Escitalopram (MPPL) 20 mg film-coated tablet, 28, blister pack 165878 35251000036105 Escitalopram (MPPL) 20 mg film-coated tablet, 28 32991000036100 Escitalopram (MPPL) 20 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +18687011000036101 Lasix 40 mg uncoated tablet, 100, bottle 12406 11757011000036109 Lasix 40 mg uncoated tablet, 100 6006011000036102 Lasix 40 mg uncoated tablet 26171000168109 Lasix 26171000168109 Lasix 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +922461000168104 Monace HCT 20/12.5 uncoated tablet, 30, blister pack 131915 922451000168101 Monace HCT 20/12.5 uncoated tablet, 30 922441000168103 Monace HCT 20/12.5 uncoated tablet 922431000168107 Monace HCT 20/12.5 922431000168107 Monace HCT 20/12.5 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +721121000168102 Dysport 300 units powder for injection, 1 vial 170651 721111000168109 Dysport 300 units powder for injection, 1 vial 721091000168101 Dysport 300 units powder for injection, 300 units vial 3355011000036105 Dysport 3355011000036105 Dysport 721101000168106 clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, 1 vial 721081000168104 clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, vial 32611011000036100 clostridium botulinum type A toxin-haemagglutinin complex +17892011000036100 Noriday 28 Day 350 microgram uncoated tablet, 4 x 28, blister packs 10052 11148011000036103 Noriday 28 Day 350 microgram uncoated tablet, 4 x 28 4560011000036108 Noriday 28 Day 350 microgram uncoated tablet 700013841000036109 Noriday 28 Day 700013841000036109 Noriday 28 Day 27171011000036105 norethisterone 350 microgram tablet, 4 x 28 22533011000036103 norethisterone 350 microgram tablet 21579011000036102 norethisterone +1065031000168106 Paracode Extra uncoated tablet, 6, blister pack 292800 1065021000168108 Paracode Extra uncoated tablet, 6 1065011000168101 Paracode Extra uncoated tablet 1065001000168104 Paracode Extra 1065001000168104 Paracode Extra 52862011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 6 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +928830011000036103 Rispernia 2 mg film-coated tablet, 60, bottle 127922 928192011000036101 Rispernia 2 mg film-coated tablet, 60 927851011000036102 Rispernia 2 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +1102491000168102 Docetaxel (Actavis) 80 mg/4 mL concentrated injection, 4 mL vial 167644 1102481000168100 Docetaxel (Actavis) 80 mg/4 mL concentrated injection, 4 mL vial 1102471000168103 Docetaxel (Actavis) 80 mg/4 mL concentrated injection, 4 mL vial 1102401000168108 Docetaxel (Actavis) 1102401000168108 Docetaxel (Actavis) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +920803011000036104 Ceftriaxone (DBL) 2 g powder for injection, 1 vial 92400 920482011000036103 Ceftriaxone (DBL) 2 g powder for injection, 1 vial 920213011000036107 Ceftriaxone (DBL) 2 g powder for injection, 2 g vial 920083011000036101 Ceftriaxone (DBL) 920083011000036101 Ceftriaxone (DBL) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +1102531000168102 Rivastigmelon-15 13.3 mg/24 hours patch, 7, sachet 273560 1102521000168100 Rivastigmelon-15 13.3 mg/24 hours patch, 7 1102511000168107 Rivastigmelon-15 13.3 mg/24 hours patch 1102501000168109 Rivastigmelon-15 1102501000168109 Rivastigmelon-15 1000441000168104 rivastigmine 13.3 mg/24 hours patch, 7 731051000168109 rivastigmine 13.3 mg/24 hours patch 21413011000036101 rivastigmine +69381011000036106 QV Wash 10% solution, 15 mL sachet 32366 67181011000036107 QV Wash 10% solution, 15 mL sachet 65396011000036105 QV Wash 10% solution, 15 mL sachet 65162011000036102 QV Wash 65162011000036102 QV Wash 71743011000036108 glycerol 10% solution, 15 mL sachet 70163011000036103 glycerol 10% solution, sachet 21770011000036109 glycerol +1063991000168108 Mydol 15 uncoated tablet, 40, blister pack 188381 1063981000168105 Mydol 15 uncoated tablet, 40 1063931000168109 Mydol 15 uncoated tablet 1063901000168102 Mydol 15 1063901000168102 Mydol 15 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +60088011000036104 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 100, blister pack 126538 56049011000036105 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 100 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +910841000168105 Cavstat 10 mg film-coated tablet, 15, blister pack 234485 910831000168101 Cavstat 10 mg film-coated tablet, 15 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910821000168104 rosuvastatin 10 mg tablet, 15 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +61102011000036100 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet, 8, blister pack 71661 57045011000036107 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet, 8 54172011000036104 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet 53600011000036105 Diarrhoea Relief (Soul Pattinson) 53600011000036105 Diarrhoea Relief (Soul Pattinson) 63807011000036103 loperamide hydrochloride 2.15 mg tablet, 8 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +68701011000036109 Strepsils orange lozenge, 36, blister pack 115527 66622011000036106 Strepsils orange lozenge, 36 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +81105011000036105 Doloxene 100 mg hard capsule, 10, blister pack 161853 80610011000036105 Doloxene 100 mg hard capsule, 10 80208011000036107 Doloxene 100 mg hard capsule 54391000168103 Doloxene 54391000168103 Doloxene 26879011000036103 dextropropoxyphene napsilate monohydrate 100 mg capsule, 10 22258011000036103 dextropropoxyphene napsilate monohydrate 100 mg capsule 21901011000036101 dextropropoxyphene +60883011000036105 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 50 mL, bottle 59765 56837011000036101 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 50 mL 54094011000036107 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63604011000036101 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 50 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +1017981000168101 Arizole 2 mg uncoated tablet, 56, blister pack 198211 1017971000168104 Arizole 2 mg uncoated tablet, 56 1016031000168104 Arizole 2 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 801671000168100 aripiprazole 2 mg tablet, 56 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +1085411000168106 Spray-Tish menthol 0.118% nasal spray, 10 mL, pump pack 71751 74381011000036106 Spray-Tish menthol 0.118% nasal spray, 10 mL 73908011000036108 Spray-Tish menthol 0.118% nasal spray 73766011000036100 Spray-Tish 73766011000036100 Spray-Tish 75480011000036104 tramazoline hydrochloride monohydrate 0.118% nasal spray, 10 mL 75086011000036109 tramazoline hydrochloride monohydrate 0.118% nasal spray 74955011000036109 tramazoline +20761011000036101 Lactulose (GenRx) 3.34 g/5 mL oral liquid solution, 500 mL, bottle 90749 13930011000036107 Lactulose (GenRx) 3.34 g/5 mL oral liquid solution, 500 mL 7218011000036107 Lactulose (GenRx) 3.34 g/5 mL oral liquid solution, 5 mL 3471011000036101 Lactulose (GenRx) 3471011000036101 Lactulose (GenRx) 27821011000036102 lactulose 3.34 g/5 mL oral liquid, 500 mL 23149011000036102 lactulose 3.34 g/5 mL oral liquid 21591011000036108 lactulose +1069371000168109 Hydromorphone (MPL) 2 mg uncoated tablet, 100, bottle 295423 1069361000168103 Hydromorphone (MPL) 2 mg uncoated tablet, 100 1069311000168101 Hydromorphone (MPL) 2 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35192011000036109 hydromorphone hydrochloride 2 mg tablet, 100 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +86152011000036106 Nurofen Zavance Liquid Capsule 200 mg soft capsule, 40, blister pack 163477 85760011000036107 Nurofen Zavance Liquid Capsule 200 mg soft capsule, 40 85377011000036101 Nurofen Zavance Liquid Capsule 200 mg soft capsule 1251000168106 Nurofen Zavance Liquid Capsule 1251000168106 Nurofen Zavance Liquid Capsule 63932011000036104 ibuprofen 200 mg capsule, 40 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +835921000168103 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20, blister pack 203133 835911000168105 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20 835901000168107 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet 42501000168108 Paracetamol and Codeine Phosphate 500/30 (GH) 42501000168108 Paracetamol and Codeine Phosphate 500/30 (GH) 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +69352011000036107 Betadine Antiseptic 10% ointment, 65 g, tube 29561 67152011000036108 Betadine Antiseptic 10% ointment, 65 g 65472011000036108 Betadine Antiseptic 10% ointment 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71717011000036105 povidone-iodine 10% ointment, 65 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +50524011000036102 Ketonex-2 powder for oral liquid, 325 g, can 49272011000036109 Ketonex-2 powder for oral liquid, 325 g 48703011000036102 Ketonex-2 powder for oral liquid 54561000168104 Ketonex-2 54561000168104 Ketonex-2 51265011000036106 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 325 g 50802011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +74831011000036102 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) injection solution, 18 x 500 mL bags 19499 74318011000036100 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) injection solution, 18 x 500 mL bags 4782011000036108 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) injection solution, 500 mL bag 37191000168106 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 37191000168106 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 75428011000036106 sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, 18 x 500 mL bags 22349011000036101 sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +60059011000036104 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 100 mL, bottle 124631 56021011000036108 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 100 mL 53761011000036108 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 5 mL 35851000168104 Paracetamol 1 to 5 Years (Priceline) 35851000168104 Paracetamol 1 to 5 Years (Priceline) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +20496011000036102 Doxycycline (Chemmart) 100 mg uncoated tablet, 7, blister pack 78602 13696011000036104 Doxycycline (Chemmart) 100 mg uncoated tablet, 7 6978011000036100 Doxycycline (Chemmart) 100 mg uncoated tablet 3187011000036102 Doxycycline (Chemmart) 3187011000036102 Doxycycline (Chemmart) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +933212781000036109 Fluoxetine (GN) 20 mg capsule, 28, blister pack 148137 933202141000036104 Fluoxetine (GN) 20 mg capsule, 28 933195231000036105 Fluoxetine (GN) 20 mg capsule 933193651000036104 Fluoxetine (GN) 933193651000036104 Fluoxetine (GN) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +69594011000036106 Lasonil 0.833% ointment, 14 g, tube 68250 67393011000036100 Lasonil 0.833% ointment, 14 g 65645011000036103 Lasonil 0.833% ointment 65183011000036107 Lasonil 65183011000036107 Lasonil 71928011000036108 heparinoids 0.833% ointment, 14 g 70252011000036102 heparinoids 0.833% ointment 69837011000036105 heparinoids +18203011000036108 Gabaran 600 mg film-coated tablet, 50, bottle 121834 11694011000036102 Gabaran 600 mg film-coated tablet, 50 4826011000036103 Gabaran 600 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 26738011000036105 gabapentin 600 mg tablet, 50 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +933215841000036101 Cephalexin (Pharmacor) 250 mg hard capsule, 20, blister pack 176783 933204061000036107 Cephalexin (Pharmacor) 250 mg hard capsule, 20 933196421000036102 Cephalexin (Pharmacor) 250 mg hard capsule 933193941000036108 Cephalexin (Pharmacor) 933193941000036108 Cephalexin (Pharmacor) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +961191000168104 Carduran 1 mg uncoated tablet, 28, blister pack 32635 961181000168102 Carduran 1 mg uncoated tablet, 28 961161000168106 Carduran 1 mg uncoated tablet 960961000168103 Carduran 960961000168103 Carduran 961171000168100 doxazosin 1 mg tablet, 28 961151000168109 doxazosin 1 mg tablet 960971000168109 doxazosin +850931000168109 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 32256 850921000168106 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 850901000168102 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 38851000168108 Atropine Sulphate Minims (Bausch & Lomb) 38851000168108 Atropine Sulphate Minims (Bausch & Lomb) 850911000168104 atropine sulfate monohydrate 1% eye drops, 20 x 0.5 mL unit doses 850891000168101 atropine sulfate monohydrate 1% eye drops, unit dose 933232141000036108 atropine sulfate monohydrate +73293011000036104 Jurnista 32 mg modified release tablet, 100, blister pack 141534 73091011000036109 Jurnista 32 mg modified release tablet, 100 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73489011000036104 hydromorphone hydrochloride 32 mg modified release tablet, 100 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +789831000168104 Oxycontin 10 mg modified release tablet, 120, bottle 200037 789821000168102 Oxycontin 10 mg modified release tablet, 120 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789811000168109 oxycodone hydrochloride 10 mg modified release tablet, 120 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +923698011000036100 Grandicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 147856 923313011000036103 Grandicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 922996011000036105 Grandicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924126011000036108 epoetin lambda 3000 units/0.3 mL injection, 0.3 mL syringe 923953011000036100 epoetin lambda 3000 units/0.3 mL injection, syringe 923930011000036107 epoetin lambda +965531000168109 Oxytocin (Apo) 10 units/mL injection solution, 5 x 1 mL ampoules 225653 965521000168106 Oxytocin (Apo) 10 units/mL injection solution, 5 x 1 mL ampoules 965511000168104 Oxytocin (Apo) 10 units/mL injection solution, ampoule 965461000168102 Oxytocin (Apo) 965461000168102 Oxytocin (Apo) 38686011000036102 oxytocin 10 units/mL injection, 5 x 1 mL ampoules 37925011000036105 oxytocin 10 units/mL injection, ampoule 37765011000036106 oxytocin +985881000168105 Advil Double Strength Caplets 400 mg film-coated tablet, 6, blister pack 207376 985871000168107 Advil Double Strength Caplets 400 mg film-coated tablet, 6 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 985861000168101 ibuprofen 400 mg tablet, 6 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +56261000036101 Carbaccord 50 mg/5 mL injection solution, 5 mL vial 159105 51661000036108 Carbaccord 50 mg/5 mL injection solution, 5 mL vial 49251000036107 Carbaccord 50 mg/5 mL injection solution, 5 mL vial 48411000036101 Carbaccord 48411000036101 Carbaccord 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +59696011000036108 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 100 mL, bottle 10554 55714011000036103 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 100 mL 53659011000036108 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 63110011000036105 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 100 mL 61859011000036105 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61750011000036102 pholcodine + pseudoephedrine +948451000168101 Tenopt 0.5% eye drops solution, 5 mL, bottle 19795 12213011000036104 Tenopt 0.5% eye drops solution, 5 mL 4841011000036106 Tenopt 0.5% eye drops solution 4366011000036109 Tenopt 4366011000036109 Tenopt 27043011000036102 timolol 0.5% eye drops, 5 mL 22597011000036101 timolol 0.5% eye drops 21318011000036100 timolol +83191011000036104 Bionime Rightest GS100 diagnostic strip, 50, bottle 165770 83137011000036101 Bionime Rightest GS100 diagnostic strip, 50 83079011000036104 Bionime Rightest GS100 diagnostic strip 24381000168102 Bionime Rightest GS100 24381000168102 Bionime Rightest GS100 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1060781000168103 Ramipril (Auro) 5 mg hard capsule, 30, blister pack 203710 1060771000168101 Ramipril (Auro) 5 mg hard capsule, 30 1060731000168104 Ramipril (Auro) 5 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +181571000036101 Candesartan Cilexetil (Chemmart) 32 mg uncoated tablet, 30, blister pack 210549 181111000036100 Candesartan Cilexetil (Chemmart) 32 mg uncoated tablet, 30 180471000036107 Candesartan Cilexetil (Chemmart) 32 mg uncoated tablet 180271000036106 Candesartan Cilexetil (Chemmart) 180271000036106 Candesartan Cilexetil (Chemmart) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +18877011000036104 Capoten 25 mg uncoated tablet, 90, blister pack 19247 12835011000036102 Capoten 25 mg uncoated tablet, 90 6126011000036102 Capoten 25 mg uncoated tablet 3934011000036103 Capoten 3934011000036103 Capoten 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +19315011000036104 Neoral 100 mg/mL oral liquid solution, 50 mL, bottle 49725 12605011000036102 Neoral 100 mg/mL oral liquid solution, 50 mL 4798011000036107 Neoral 100 mg/mL oral liquid solution 4180011000036101 Neoral 4180011000036101 Neoral 27230011000036103 ciclosporin 100 mg/mL oral liquid, 50 mL 22590011000036102 ciclosporin 100 mg/mL oral liquid 21379011000036104 ciclosporin +181531000036103 Candesartan Cilexetil (Terry White Chemists) 16 mg uncoated tablet, 30, blister pack 210535 181071000036107 Candesartan Cilexetil (Terry White Chemists) 16 mg uncoated tablet, 30 180421000036108 Candesartan Cilexetil (Terry White Chemists) 16 mg uncoated tablet 180361000036108 Candesartan Cilexetil (Terry White Chemists) 180361000036108 Candesartan Cilexetil (Terry White Chemists) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +920751011000036109 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 21, blister pack 51689 920434011000036100 Doxycycline (Mayne Pharma) 100 mg modified release capsule, 21 920176011000036107 Doxycycline (Mayne Pharma) 100 mg modified release capsule 920064011000036102 Doxycycline (Mayne Pharma) 920064011000036102 Doxycycline (Mayne Pharma) 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +68868011000036104 Urecare 10% cream, 50 g, tube 10821 66563011000036100 Urecare 10% cream, 50 g 65546011000036103 Urecare 10% cream 65040011000036103 Urecare 65040011000036103 Urecare 71288011000036100 urea 10% cream, 50 g 22378011000036108 urea 10% cream 21561011000036106 urea +86861011000036104 Micolette Micro enema, 12 x 5 mL, tube 142564 86747011000036103 Micolette Micro enema, 12 x 5 mL 86626011000036107 Micolette Micro enema, 5 mL 35381000168101 Micolette Micro 35381000168101 Micolette Micro 26864011000036105 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema, 12 x 5 mL 22244011000036107 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema 21630011000036102 citric acid + lauryl sulfoacetate sodium + sorbitol +60422011000036104 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 6, blister pack 145584 56381011000036100 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 6 53895011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule 53491011000036102 Dimetapp PE Nasal Decongestant 53491011000036102 Dimetapp PE Nasal Decongestant 63328011000036108 phenylephrine hydrochloride 10 mg capsule, 6 61918011000036101 phenylephrine hydrochloride 10 mg capsule 37732011000036107 phenylephrine +50432011000036100 Tubigrip Long Stocking (1480) medium C/D size bandage, 1, carton 49321011000036105 Tubigrip Long Stocking (1480) medium C/D size bandage, 1 48495011000036105 Tubigrip Long Stocking (1480) medium C/D size bandage 47631000168104 Tubigrip Long Stocking (1480) 47631000168104 Tubigrip Long Stocking (1480) 51302011000036107 bandage tubular short stocking medium C/D size bandage, 1 50831011000036102 bandage tubular short stocking medium C/D size bandage 50724011000036103 bandage tubular short stocking +18733011000036109 Prilace 10 mg hard capsule, 30, bottle 133098 11966011000036106 Prilace 10 mg hard capsule, 30 5555011000036103 Prilace 10 mg hard capsule 3737011000036102 Prilace 3737011000036102 Prilace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +933238921000036101 Fentanyl (Sandoz) 12 microgram/hour patch, 8, sachet 152572 933236141000036107 Fentanyl (Sandoz) 12 microgram/hour patch, 8 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236151000036105 fentanyl 12 microgram/hour patch, 8 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +1056451000168105 Riximyo 100 mg/10 mL concentrated injection, 2 x 10 mL vials 281782 1056441000168108 Riximyo 100 mg/10 mL concentrated injection, 2 x 10 mL vials 1056431000168104 Riximyo 100 mg/10 mL concentrated injection, 10 mL vial 1056361000168102 Riximyo 1056361000168102 Riximyo 27457011000036100 rituximab 100 mg/10 mL injection, 2 x 10 mL vials 22804011000036108 rituximab 100 mg/10 mL injection, vial 21460011000036105 rituximab +1052301000168104 Oxylieve MR 10 mg modified release tablet, 60, blister pack 153604 1052291000168100 Oxylieve MR 10 mg modified release tablet, 60 1052241000168108 Oxylieve MR 10 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +951641000168105 Trandolapril (GenRx) 4 mg capsule, 28, blister pack 135987 951631000168101 Trandolapril (GenRx) 4 mg capsule, 28 951621000168104 Trandolapril (GenRx) 4 mg capsule 951491000168100 Trandolapril (GenRx) 951491000168100 Trandolapril (GenRx) 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +700026281000036102 Actonel EC Once-a-Week 35 mg enteric tablet, 1, blister pack 166838 141000168100 Actonel EC Once-a-Week 35 mg enteric tablet, 1 930063011000036103 Actonel EC Once-a-Week 35 mg enteric tablet 700017651000036104 Actonel EC Once-a-Week 700017651000036104 Actonel EC Once-a-Week 700031171000036104 risedronate sodium 35 mg enteric tablet, 1 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +927031000168102 Risperisan 4 mg film-coated tablet, 60, blister pack 126177 927011000168107 Risperisan 4 mg film-coated tablet, 60 927001000168109 Risperisan 4 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +931434011000036109 Nurofen Double Strength 400 mg sugar coated tablet, 24, blister pack 141996 930613011000036109 Nurofen Double Strength 400 mg sugar coated tablet, 24 929972011000036106 Nurofen Double Strength 400 mg sugar coated tablet 17911000168109 Nurofen Double Strength 17911000168109 Nurofen Double Strength 932369011000036108 ibuprofen 400 mg tablet, 24 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +859521000168107 Zovirax Dispersible 800 mg tablet, 120, bottle 51433 859431000168106 Zovirax Dispersible 800 mg tablet, 120 859211000168102 Zovirax Dispersible 800 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +69525011000036103 Sodium Chloride (Baxter) 0.9% (18 g/2 L) irrigation solution, 2 L bag 54587 67325011000036106 Sodium Chloride (Baxter) 0.9% (18 g/2 L) irrigation solution, 2 L bag 65612011000036104 Sodium Chloride (Baxter) 0.9% (18 g/2 L) irrigation solution, 2 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71870011000036103 sodium chloride 0.9% (18 g/2 L) solution, 2 L bag 70225011000036109 sodium chloride 0.9% (18 g/2 L) solution, bag 21308011000036103 sodium chloride +933215931000036101 Allorin 300 mg uncoated tablet, 60, blister pack 50143 933205451000036103 Allorin 300 mg uncoated tablet, 60 933196541000036109 Allorin 300 mg uncoated tablet 933193731000036101 Allorin 933193731000036101 Allorin 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +928071000168103 Dixarit 25 microgram sugar coated tablet, 100, tube 17924 928061000168109 Dixarit 25 microgram sugar coated tablet, 100 928041000168105 Dixarit 25 microgram sugar coated tablet 928011000168106 Dixarit 928011000168106 Dixarit 928051000168107 clonidine hydrochloride 25 microgram tablet, 100 928031000168101 clonidine hydrochloride 25 microgram tablet 21589011000036108 clonidine +43749011000036106 Fluconazole (Hexal) 150 mg hard capsule, 28, bottle 104292 41136011000036103 Fluconazole (Hexal) 150 mg hard capsule, 28 39858011000036101 Fluconazole (Hexal) 150 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 46113011000036100 fluconazole 150 mg capsule, 28 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1095501000168108 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 10, blister pack 287305 1095491000168101 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet, 10 1095481000168104 Fexofenadine Hayfever and Allergy Relief (Apohealth) 180 mg film-coated tablet 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 1095471000168102 Fexofenadine Hayfever and Allergy Relief (Apohealth) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +39201000036107 Bronchitol 40 mg powder for inhalation, 10 capsules, blister pack 168002 35601000036106 Bronchitol 40 mg powder for inhalation, 10 capsules 32891000036107 Bronchitol 40 mg powder for inhalation, 1 capsule 32151000036106 Bronchitol 32151000036106 Bronchitol 35611000036108 mannitol 40 mg powder for inhalation, 10 capsules 81258011000036109 mannitol 40 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +39201000036107 Bronchitol 40 mg powder for inhalation, 10 capsules, blister pack 187575 35601000036106 Bronchitol 40 mg powder for inhalation, 10 capsules 32891000036107 Bronchitol 40 mg powder for inhalation, 1 capsule 32151000036106 Bronchitol 32151000036106 Bronchitol 35611000036108 mannitol 40 mg powder for inhalation, 10 capsules 81258011000036109 mannitol 40 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +19983011000036109 Micardis 40 mg uncoated tablet, 28, blister pack 68052 13224011000036100 Micardis 40 mg uncoated tablet, 28 6506011000036104 Micardis 40 mg uncoated tablet 4415011000036107 Micardis 4415011000036107 Micardis 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +1099791000168106 Ibuprofen (Apohealth) 200 mg soft capsule, 20, blister pack 279997 1099781000168108 Ibuprofen (Apohealth) 200 mg soft capsule, 20 1099771000168105 Ibuprofen (Apohealth) 200 mg soft capsule 1099761000168104 Ibuprofen (Apohealth) 1099761000168104 Ibuprofen (Apohealth) 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +19528011000036101 Risperdal 1 mg/mL oral liquid solution, 30 mL, bottle 56444 12800011000036104 Risperdal 1 mg/mL oral liquid solution, 30 mL 6091011000036105 Risperdal 1 mg/mL oral liquid solution 15481000168100 Risperdal 15481000168100 Risperdal 27358011000036108 risperidone 1 mg/mL oral liquid, 30 mL 22710011000036102 risperidone 1 mg/mL oral liquid 21338011000036109 risperidone +1046431000168102 Buprenorphine (SDZ) 15 microgram/hour patch, 4, sachet 269668 1046421000168100 Buprenorphine (SDZ) 15 microgram/hour patch, 4 1046291000168102 Buprenorphine (SDZ) 15 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046411000168107 buprenorphine 15 microgram/hour patch, 4 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +74814011000036109 Somac 40 mg enteric coated granules, 5 sachets 148005 74301011000036107 Somac 40 mg enteric coated granules, 5 sachets 73826011000036107 Somac 40 mg enteric coated granules, 40 mg sachet 10171000168100 Somac 10171000168100 Somac 75417011000036101 pantoprazole 40 mg enteric coated granules, 5 sachets 75050011000036102 pantoprazole 40 mg enteric coated granules, sachet 21563011000036107 pantoprazole +928401000168102 Cavstat 10 mg film-coated tablet, 90, bottle 234548 911071000168100 Cavstat 10 mg film-coated tablet, 90 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911061000168106 rosuvastatin 10 mg tablet, 90 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +875151000168107 Bosulif 100 mg film-coated tablet, 28, blister pack 208809 875141000168105 Bosulif 100 mg film-coated tablet, 28 875121000168104 Bosulif 100 mg film-coated tablet 875001000168109 Bosulif 875001000168109 Bosulif 875131000168101 bosutinib 100 mg tablet, 28 875111000168106 bosutinib 100 mg tablet 875021000168100 bosutinib +1099751000168101 Crestat 20 mg film-coated tablet, 30, blister pack 183273 1099741000168103 Crestat 20 mg film-coated tablet, 30 1099711000168102 Crestat 20 mg film-coated tablet 1099501000168105 Crestat 1099501000168105 Crestat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +19770011000036101 Deseril 1 mg sugar coated tablet, 50, blister pack 62664 13028011000036101 Deseril 1 mg sugar coated tablet, 50 6315011000036105 Deseril 1 mg sugar coated tablet 4156011000036108 Deseril 4156011000036108 Deseril 27501011000036108 methysergide 1 mg tablet, 50 22844011000036104 methysergide 1 mg tablet 21640011000036103 methysergide +68684011000036103 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch, 28, sachet 129749 66731011000036108 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch, 28 65329011000036107 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch 35301000168109 Nicotine Phase-2 (Chemists' Own) 35301000168109 Nicotine Phase-2 (Chemists' Own) 63760011000036102 nicotine 14 mg/24 hours patch, 28 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +712371000168100 Talam 10 mg film-coated tablet, 28, blister pack 234594 712361000168106 Talam 10 mg film-coated tablet, 28 712351000168109 Talam 10 mg film-coated tablet 3427011000036108 Talam 3427011000036108 Talam 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1055041000168108 Oxycodone (Juno) 50 mg/mL injection solution, 5 x 1 mL ampoules 279328 1055031000168104 Oxycodone (Juno) 50 mg/mL injection solution, 5 x 1 mL ampoules 1055021000168102 Oxycodone (Juno) 50 mg/mL injection solution, ampoule 1049121000168102 Oxycodone (Juno) 1049121000168102 Oxycodone (Juno) 929214011000036105 oxycodone hydrochloride 50 mg/mL injection, 5 x 1 mL ampoules 929150011000036108 oxycodone hydrochloride 50 mg/mL injection, ampoule 21259011000036105 oxycodone +983021000168103 Cetirizine (AN) 10 mg film-coated tablet, 7, blister pack 126249 983011000168105 Cetirizine (AN) 10 mg film-coated tablet, 7 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63289011000036104 cetirizine hydrochloride 10 mg tablet, 7 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +39416011000036101 Cosamide 50 mg film-coated tablet, 30, bottle 135219 39299011000036105 Cosamide 50 mg film-coated tablet, 30 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 39490011000036100 bicalutamide 50 mg tablet, 30 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +830441000168105 Atomoxetine (Apo) 25 mg hard capsule, 7, blister pack 234804 830431000168101 Atomoxetine (Apo) 25 mg hard capsule, 7 830421000168104 Atomoxetine (Apo) 25 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +928391000168104 Leukeran 5 mg uncoated tablet, 25, bottle 11113 928381000168102 Leukeran 5 mg uncoated tablet, 25 928361000168106 Leukeran 5 mg uncoated tablet 4398011000036106 Leukeran 4398011000036106 Leukeran 928371000168100 chlorambucil 5 mg tablet, 25 928351000168109 chlorambucil 5 mg tablet 21773011000036101 chlorambucil +61505011000036102 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 92686 57430011000036106 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 200 mL 54300011000036103 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 5 mL 27401000168107 Ibuprofen for Children (Pharmacist) 27401000168107 Ibuprofen for Children (Pharmacist) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +79642011000036100 Gliclazide MR (Apo) 30 mg modified release tablet, 100, blister pack 151303 79487011000036109 Gliclazide MR (Apo) 30 mg modified release tablet, 100 79372011000036105 Gliclazide MR (Apo) 30 mg modified release tablet 24721000168102 Gliclazide MR (Apo) 24721000168102 Gliclazide MR (Apo) 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +974481000168104 Pregabalin (Apo) 150 mg hard capsule, 100, bottle 193249 974471000168102 Pregabalin (Apo) 150 mg hard capsule, 100 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 974461000168108 pregabalin 150 mg capsule, 100 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +37388011000036104 Ativan 1 mg uncoated tablet, 50, blister pack 10387 36626011000036103 Ativan 1 mg uncoated tablet, 50 36051011000036103 Ativan 1 mg uncoated tablet 35865011000036105 Ativan 35865011000036105 Ativan 38546011000036103 lorazepam 1 mg tablet, 50 37826011000036106 lorazepam 1 mg tablet 37711011000036105 lorazepam +50265011000036102 Biatain Non-Adhesive (3410) 10 cm x 10 cm waterproof pad, 10, carton 49505011000036100 Biatain Non-Adhesive (3410) 10 cm x 10 cm waterproof pad, 10 48486011000036104 Biatain Non-Adhesive (3410) 10 cm x 10 cm waterproof pad 58571000168103 Biatain Non-Adhesive (3410) 58571000168103 Biatain Non-Adhesive (3410) 51455011000036101 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 10 cm x 10 cm waterproof pad, 10 50962011000036106 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 10 cm x 10 cm waterproof pad 50713011000036109 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam +873621000168106 Midazolam (B Braun) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 225698 873611000168104 Midazolam (B Braun) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 873601000168102 Midazolam (B Braun) 15 mg/3 mL injection solution, 3 mL ampoule 873561000168102 Midazolam (B Braun) 873561000168102 Midazolam (B Braun) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +19574011000036107 Cabaser 4 mg uncoated tablet, 30, bottle 57368 12845011000036101 Cabaser 4 mg uncoated tablet, 30 6136011000036104 Cabaser 4 mg uncoated tablet 3578011000036104 Cabaser 3578011000036104 Cabaser 27392011000036102 cabergoline 4 mg tablet, 30 22741011000036104 cabergoline 4 mg tablet 21526011000036105 cabergoline +961511000168101 Pioglitazone (Apo) 45 mg uncoated tablet, 28, blister pack 166912 961501000168104 Pioglitazone (Apo) 45 mg uncoated tablet, 28 961471000168105 Pioglitazone (Apo) 45 mg uncoated tablet 730631000168100 Pioglitazone (Apo) 730631000168100 Pioglitazone (Apo) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +20254011000036104 Singulair 4 mg chewable tablet, 28, blister pack 74890 13464011000036108 Singulair 4 mg chewable tablet, 28 6746011000036107 Singulair 4 mg chewable tablet 4287011000036103 Singulair 4287011000036103 Singulair 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +968681000168102 Simvastatin (Spirit) 5 mg film-coated tablet, 30, bottle 116707 968661000168106 Simvastatin (Spirit) 5 mg film-coated tablet, 30 968651000168109 Simvastatin (Spirit) 5 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +18894011000036102 Pilopt 1% eye drops solution, 15 mL, bottle 19760 12202011000036108 Pilopt 1% eye drops solution, 15 mL 5911011000036100 Pilopt 1% eye drops solution 3693011000036106 Pilopt 3693011000036106 Pilopt 27788011000036104 pilocarpine hydrochloride 1% eye drops, 15 mL 23118011000036102 pilocarpine hydrochloride 1% eye drops 21254011000036109 pilocarpine +816011000168105 Espler 50 mg film-coated tablet, 30, blister pack 231446 816001000168107 Espler 50 mg film-coated tablet, 30 815971000168105 Espler 50 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 26534011000036102 eplerenone 50 mg tablet, 30 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +916841000168108 Amitriptyline (RS) 10 mg tablet, 1000, bottle 232141 916831000168104 Amitriptyline (RS) 10 mg tablet, 1000 866491000168106 Amitriptyline (RS) 10 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +79008011000036100 Momex SR 100 mg modified release tablet, 20, blister pack 132259 78810011000036103 Momex SR 100 mg modified release tablet, 20 78631011000036108 Momex SR 100 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 27109011000036102 morphine sulfate pentahydrate 100 mg modified release tablet, 20 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +86878011000036100 Topiramate (GA) 100 mg film-coated tablet, 60, bottle 155212 86760011000036109 Topiramate (GA) 100 mg film-coated tablet, 60 86636011000036105 Topiramate (GA) 100 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +925275011000036106 Invega Sustenna 50 mg modified release injection, 1 syringe 160856 924812011000036106 Invega Sustenna 50 mg modified release injection, 1 syringe 924506011000036106 Invega Sustenna 50 mg modified release injection, syringe 26461000168105 Invega Sustenna 26461000168105 Invega Sustenna 925418011000036106 paliperidone 50 mg modified release injection, 1 syringe 925376011000036108 paliperidone 50 mg modified release injection, syringe 34837011000036104 paliperidone +79665011000036100 Zoton Fastab 30 mg orally disintegrating tablet, 28, blister pack 153701 79495011000036100 Zoton Fastab 30 mg orally disintegrating tablet, 28 79380011000036100 Zoton Fastab 30 mg orally disintegrating tablet 15461000168109 Zoton Fastab 15461000168109 Zoton Fastab 79819011000036106 lansoprazole 30 mg orally disintegrating tablet, 28 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +1112721000168106 Quetiapine (GH) 150 mg film-coated tablet, 60, blister pack 179903 1112711000168104 Quetiapine (GH) 150 mg film-coated tablet, 60 1112611000168106 Quetiapine (GH) 150 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +929713011000036101 MS Contin 200 mg modified release tablet, 28, blister pack 78209 929549011000036107 MS Contin 200 mg modified release tablet, 28 6946011000036103 MS Contin 200 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929770011000036101 morphine sulfate pentahydrate 200 mg modified release tablet, 28 23197011000036104 morphine sulfate pentahydrate 200 mg modified release tablet 21252011000036100 morphine +19937011000036105 Parahexal 500 mg uncoated tablet, 100, blister pack 68210 14103011000036109 Parahexal 500 mg uncoated tablet, 100 7380011000036104 Parahexal 500 mg uncoated tablet 4111011000036106 Parahexal 4111011000036106 Parahexal 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19937011000036105 Parahexal 500 mg uncoated tablet, 100, blister pack 67140 14103011000036109 Parahexal 500 mg uncoated tablet, 100 7380011000036104 Parahexal 500 mg uncoated tablet 4111011000036106 Parahexal 4111011000036106 Parahexal 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61609011000036106 Nurofen Liquid Capsule 200 mg soft capsule, 10, blister pack 96115 57531011000036107 Nurofen Liquid Capsule 200 mg soft capsule, 10 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63926011000036103 ibuprofen 200 mg capsule, 10 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +666261000168105 Sudafed Sinus Day plus Night Relief (16 x Day tablets, 8 x Night tablets), 24, blister pack 46869 666251000168108 Sudafed Sinus Day plus Night Relief (16 x Day tablets, 8 x Night tablets), 24 665671000168107 Sudafed Sinus Day plus Night Relief (Day) uncoated tablet 665641000168100 Sudafed Sinus Day plus Night Relief 665651000168103 Sudafed Sinus Day plus Night Relief (Day) 666241000168106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [8], 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +666261000168105 Sudafed Sinus Day plus Night Relief (16 x Day tablets, 8 x Night tablets), 24, blister pack 46869 666251000168108 Sudafed Sinus Day plus Night Relief (16 x Day tablets, 8 x Night tablets), 24 665681000168105 Sudafed Sinus Day plus Night Relief (Night) uncoated tablet 665641000168100 Sudafed Sinus Day plus Night Relief 665661000168101 Sudafed Sinus Day plus Night Relief (Night) 666241000168106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [8], 24 664691000168107 pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet 664681000168109 pseudoephedrine + paracetamol + triprolidine +816051000168106 Espler 50 mg film-coated tablet, 60, blister pack 231446 816041000168109 Espler 50 mg film-coated tablet, 60 815971000168105 Espler 50 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 790611000168102 eplerenone 50 mg tablet, 60 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +926756011000036108 Sertracor 100 mg film-coated tablet, 30, blister pack 147078 926155011000036109 Sertracor 100 mg film-coated tablet, 30 925643011000036106 Sertracor 100 mg film-coated tablet 925581011000036109 Sertracor 925581011000036109 Sertracor 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +39241000036105 Lipitor 10 mg film-coated tablet, 10, blister pack 168338 35681000036100 Lipitor 10 mg film-coated tablet, 10 6204011000036101 Lipitor 10 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +37688011000036109 Propofol (Abbott) 200 mg/20 mL injection emulsion, 20 mL vial 77732 36954011000036106 Propofol (Abbott) 200 mg/20 mL injection emulsion, 20 mL vial 36280011000036109 Propofol (Abbott) 200 mg/20 mL injection emulsion, 20 mL vial 35974011000036106 Propofol (Abbott) 35974011000036106 Propofol (Abbott) 38835011000036105 propofol 200 mg/20 mL injection, 20 mL vial 38040011000036103 propofol 200 mg/20 mL injection, vial 37750011000036109 propofol +60975011000036108 Nurofen for Children 100 mg/5 mL oral liquid suspension, 100 mL, bottle 62912 56918011000036103 Nurofen for Children 100 mg/5 mL oral liquid suspension, 100 mL 54120011000036104 Nurofen for Children 100 mg/5 mL oral liquid suspension, 5 mL 471000168102 Nurofen for Children 471000168102 Nurofen for Children 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +20934011000036102 Risperdal Quicklet 1 mg orally disintegrating tablet, 28, blister pack 94193 14088011000036108 Risperdal Quicklet 1 mg orally disintegrating tablet, 28 7366011000036103 Risperdal Quicklet 1 mg orally disintegrating tablet 10371000168103 Risperdal Quicklet 10371000168103 Risperdal Quicklet 47781000036101 risperidone 1 mg orally disintegrating tablet, 28 47631000036106 risperidone 1 mg orally disintegrating tablet 21338011000036109 risperidone +790071000168103 Oxycontin 40 mg modified release tablet, 100, bottle 200036 790061000168109 Oxycontin 40 mg modified release tablet, 100 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 778121000168109 oxycodone hydrochloride 40 mg modified release tablet, 100 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +1020561000168106 Aripiprazole (WT) 20 mg uncoated tablet, 30, blister pack 217232 1020551000168109 Aripiprazole (WT) 20 mg uncoated tablet, 30 1020541000168107 Aripiprazole (WT) 20 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +60042011000036107 Avil Syrup 15 mg/5 mL oral liquid solution, 100 mL, bottle 12395 56004011000036100 Avil Syrup 15 mg/5 mL oral liquid solution, 100 mL 53754011000036103 Avil Syrup 15 mg/5 mL oral liquid solution, 5 mL 36761000168102 Avil Syrup 36761000168102 Avil Syrup 63192011000036108 pheniramine maleate 15 mg/5 mL oral liquid, 100 mL 61882011000036107 pheniramine maleate 15 mg/5 mL oral liquid 61798011000036109 pheniramine +933215521000036107 Olanzapine (LY) 2.5 mg film-coated tablet, 7, blister pack 167679 933205001000036107 Olanzapine (LY) 2.5 mg film-coated tablet, 7 933196131000036105 Olanzapine (LY) 2.5 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 933204981000036101 olanzapine 2.5 mg tablet, 7 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +20980011000036104 Clarac 250 mg film-coated tablet, 14, blister pack 95756 14126011000036108 Clarac 250 mg film-coated tablet, 14 7403011000036103 Clarac 250 mg film-coated tablet 4108011000036100 Clarac 4108011000036100 Clarac 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +837611000168109 Tripacel injection suspension, 5 x 0.5 mL vials 63120 837601000168106 Tripacel injection suspension, 5 x 0.5 mL vials 837551000168109 Tripacel injection suspension, 0.5 mL vial 73745011000036104 Tripacel 73745011000036104 Tripacel 837591000168104 diphtheria + tetanus + pertussis 5 component child vaccine injection, 5 x 0.5 mL vials 837541000168107 diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial 837451000168108 diphtheria + tetanus + pertussis 5 component vaccine +20012011000036109 Clofeme 500 mg compressed pessary, 1, blister pack 68737 13248011000036109 Clofeme 500 mg compressed pessary, 1 6530011000036109 Clofeme 500 mg compressed pessary 46481000168103 Clofeme 46481000168103 Clofeme 28089011000036100 clotrimazole 500 mg pessary, 1 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +140951000036103 Venofer 100 mg/5 mL concentrated injection, 5 x 5 mL ampoules 98236 139521000036107 Venofer 100 mg/5 mL concentrated injection, 5 x 5 mL ampoules 7548011000036106 Venofer 100 mg/5 mL concentrated injection, 5 mL ampoule 3151011000036100 Venofer 3151011000036100 Venofer 139531000036109 iron (as sucrose) 100 mg/5 mL injection, 5 x 5 mL ampoules 23571011000036106 iron (as sucrose) 100 mg/5 mL injection, ampoule 21363011000036109 iron sucrose +933239081000036109 Fentanyl (Sandoz) 75 microgram/hour patch, 8, sachet 152568 933235691000036103 Fentanyl (Sandoz) 75 microgram/hour patch, 8 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235701000036103 fentanyl 75 microgram/hour patch, 8 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +774111000168107 Targin 15/7.5 mg modified release tablet, 28, blister pack 216261 774101000168109 Targin 15/7.5 mg modified release tablet, 28 774001000168105 Targin 15/7.5 mg modified release tablet 773981000168100 Targin 15/7.5 mg 773981000168100 Targin 15/7.5 mg 774091000168104 oxycodone hydrochloride 15 mg + naloxone hydrochloride 7.5 mg modified release tablet, 28 773991000168102 oxycodone hydrochloride 15 mg + naloxone hydrochloride 7.5 mg modified release tablet 923931011000036100 oxycodone + naloxone +77418011000036101 Dermaveen Moisturising 2% cream, 100 g, tube 97021 76834011000036109 Dermaveen Moisturising 2% cream, 100 g 76200011000036101 Dermaveen Moisturising 2% cream 9661000168105 Dermaveen Moisturising 9661000168105 Dermaveen Moisturising 78338011000036108 colloidal oatmeal 2% cream, 100 g 77615011000036109 colloidal oatmeal 2% cream 77444011000036102 colloidal oatmeal +84395011000036108 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 50 mL, bottle 46223 84087011000036100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 50 mL 76150011000036106 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 84670011000036100 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid, 50 mL 77571011000036106 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid 77428011000036107 ascorbic acid + colecalciferol + dexpanthenol + nicotinamide + pyridoxine + retinol palmitate + riboflavin + thiamine +926936011000036101 Multihance 5.29 g/10 mL injection solution, 10 x 10 mL vials 94308 926330011000036105 Multihance 5.29 g/10 mL injection solution, 10 x 10 mL vials 925766011000036102 Multihance 5.29 g/10 mL injection solution, 10 mL vial 19451000168109 Multihance 19451000168109 Multihance 927406011000036108 gadobenate dimeglumine 5.29 g/10 mL injection, 10 x 10 mL vials 927045011000036102 gadobenate dimeglumine 5.29 g/10 mL injection, vial 926973011000036109 gadobenic acid +859271000168105 Allermosone Aqueous 50 microgram/actuation nasal spray, 60 actuations, pump pack 233575 859261000168104 Allermosone Aqueous 50 microgram/actuation nasal spray, 60 actuations 859251000168101 Allermosone Aqueous 50 microgram/actuation nasal spray, actuation 859241000168103 Allermosone Aqueous 859241000168103 Allermosone Aqueous 857681000168104 mometasone furoate 50 microgram/actuation nasal spray, 60 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +807241000168100 Lynparza 50 mg hard capsule, 112, bottle 807231000168109 Lynparza 50 mg hard capsule, 112 807211000168104 Lynparza 50 mg hard capsule 807181000168103 Lynparza 807181000168103 Lynparza 807221000168106 olaparib 50 mg capsule, 112 807201000168102 olaparib 50 mg capsule 807191000168100 olaparib +39081000036109 Brilinta 90 mg film-coated tablet, 56, blister pack 167237 35451000036109 Brilinta 90 mg film-coated tablet, 56 32631000036105 Brilinta 90 mg film-coated tablet 32101000036105 Brilinta 32101000036105 Brilinta 35461000036107 ticagrelor 90 mg tablet, 56 32641000036100 ticagrelor 90 mg tablet 39401000036106 ticagrelor +1082431000168108 Atorvastatin (WT) 80 mg film-coated tablet, 10, blister pack 217170 1082421000168105 Atorvastatin (WT) 80 mg film-coated tablet, 10 1082411000168103 Atorvastatin (WT) 80 mg film-coated tablet 1082401000168101 Atorvastatin (WT) 1082401000168101 Atorvastatin (WT) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1011861000168108 Irbesartan (Apotex) 150 mg film-coated tablet, 3, blister pack 169789 1011851000168106 Irbesartan (Apotex) 150 mg film-coated tablet, 3 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777531000168103 irbesartan 150 mg tablet, 3 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1063751000168101 Pain Relief Plus (Chemplus) uncoated tablet, 10, blister pack 188740 1063741000168103 Pain Relief Plus (Chemplus) uncoated tablet, 10 1063721000168109 Pain Relief Plus (Chemplus) uncoated tablet 1063711000168102 Pain Relief Plus (Chemplus) 1063711000168102 Pain Relief Plus (Chemplus) 1063731000168107 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 10 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +20467011000036102 Clomiphene Citrate (GenRx) 50 mg uncoated tablet, 5, blister pack 78268 13669011000036106 Clomiphene Citrate (GenRx) 50 mg uncoated tablet, 5 6952011000036100 Clomiphene Citrate (GenRx) 50 mg uncoated tablet 3244011000036103 Clomiphene Citrate (GenRx) 3244011000036103 Clomiphene Citrate (GenRx) 28274011000036104 clomifene citrate 50 mg tablet, 5 23588011000036107 clomifene citrate 50 mg tablet 21599011000036107 clomifene +970051000168108 Pregabalin (Apo) 25 mg hard capsule, 56, blister pack 193255 970041000168106 Pregabalin (Apo) 25 mg hard capsule, 56 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +830301000168100 Atomoxetine (Apo) 18 mg hard capsule, 7, blister pack 234806 830291000168101 Atomoxetine (Apo) 18 mg hard capsule, 7 830281000168104 Atomoxetine (Apo) 18 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +942741000168109 Diamet 850 mg film-coated tablet, 60, blister pack 147646 942731000168100 Diamet 850 mg film-coated tablet, 60 942721000168103 Diamet 850 mg film-coated tablet 942191000168102 Diamet 942191000168102 Diamet 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +859201000168100 Zovirax Dispersible 200 mg tablet, 25, bottle 51430 859191000168103 Zovirax Dispersible 200 mg tablet, 25 859181000168101 Zovirax Dispersible 200 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +790161000168108 Oxycontin 80 mg modified release tablet, 100, bottle 200034 790151000168106 Oxycontin 80 mg modified release tablet, 100 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790141000168109 oxycodone hydrochloride 80 mg modified release tablet, 100 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +1078181000168105 Atomoxetine (AN) 80 mg hard capsule, 56, blister pack 234857 1078171000168107 Atomoxetine (AN) 80 mg hard capsule, 56 1078101000168102 Atomoxetine (AN) 80 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830611000168108 atomoxetine 80 mg capsule, 56 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1086781000168103 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet, 7, strip pack 280580 1086771000168101 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet, 7 1086761000168107 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet 1086481000168105 Heartburn Relief Extra Strength (Trust) 1086481000168105 Heartburn Relief Extra Strength (Trust) 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +842041000168103 Gapentin 800 mg film-coated tablet, 100, blister pack 156103 842031000168107 Gapentin 800 mg film-coated tablet, 100 842021000168109 Gapentin 800 mg film-coated tablet 842011000168102 Gapentin 842011000168102 Gapentin 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +916921000168105 Carvedilol (SCP) 6.25 mg uncoated tablet, 30, blister pack 194262 916911000168103 Carvedilol (SCP) 6.25 mg uncoated tablet, 30 916901000168101 Carvedilol (SCP) 6.25 mg uncoated tablet 916891000168100 Carvedilol (SCP) 916891000168100 Carvedilol (SCP) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +30607011000036102 Metamucil Smooth Orange 535 mg/g powder for oral liquid, 283 g, jar 47537 30585011000036101 Metamucil Smooth Orange 535 mg/g powder for oral liquid, 283 g 5265011000036103 Metamucil Smooth Orange 535 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 30614011000036105 psyllium husk powder 535 mg/g powder for oral liquid, 283 g 22545011000036101 psyllium husk powder 535 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +933215611000036101 Olanzapine (Lilly) 10 mg film-coated tablet, 28, blister pack 167684 933205111000036105 Olanzapine (Lilly) 10 mg film-coated tablet, 28 933196181000036109 Olanzapine (Lilly) 10 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +813041000168103 Nuromol film-coated tablet, 6, blister pack 225322 813031000168107 Nuromol film-coated tablet, 6 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +18076011000036103 Adrenaline (AstraZeneca) 1 in 1000 (1 mg/mL) injection solution, 5 x 1 mL ampoules 12048 11640011000036104 Adrenaline (AstraZeneca) 1 in 1000 (1 mg/mL) injection solution, 5 x 1 mL ampoules 5524011000036103 Adrenaline (AstraZeneca) 1 in 1000 (1 mg/mL) injection solution, ampoule 4357011000036103 Adrenaline (AstraZeneca) 4357011000036103 Adrenaline (AstraZeneca) 26720011000036105 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, 5 x 1 mL ampoules 22115011000036100 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +19799011000036102 Nypine 10 mg film-coated tablet, 60, blister pack 63223 13056011000036101 Nypine 10 mg film-coated tablet, 60 6340011000036105 Nypine 10 mg film-coated tablet 3237011000036105 Nypine 3237011000036105 Nypine 28104011000036106 nifedipine 10 mg tablet, 60 23414011000036108 nifedipine 10 mg tablet 21241011000036108 nifedipine +18560011000036108 Fosipril 10 mg uncoated tablet, 30, blister pack 100059 11132011000036100 Fosipril 10 mg uncoated tablet, 30 5308011000036104 Fosipril 10 mg uncoated tablet 4037011000036103 Fosipril 4037011000036103 Fosipril 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +698001000168101 Zilfojim ODT 4 mg orally disintegrating tablet, 20, blister pack 196804 697991000168105 Zilfojim ODT 4 mg orally disintegrating tablet, 20 697931000168106 Zilfojim ODT 4 mg orally disintegrating tablet 697891000168103 Zilfojim ODT 697891000168103 Zilfojim ODT 697981000168107 ondansetron 4 mg orally disintegrating tablet, 20 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +692061000168102 Alendronate D3 70 mg/70 microgram (DRLA) uncoated tablet, 4, blister pack 206932 692051000168104 Alendronate D3 70 mg/70 microgram (DRLA) uncoated tablet, 4 692041000168101 Alendronate D3 70 mg/70 microgram (DRLA) uncoated tablet 692031000168105 Alendronate D3 70 mg/70 microgram (DRLA) 692031000168105 Alendronate D3 70 mg/70 microgram (DRLA) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +931408011000036108 Rispernia 500 microgram film-coated tablet, 60, blister pack 127916 930585011000036102 Rispernia 500 microgram film-coated tablet, 60 929953011000036102 Rispernia 500 microgram film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +804581000168104 Aczicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 147855 804571000168102 Aczicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 804561000168108 Aczicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924133011000036100 epoetin lambda 1000 units/0.5 mL injection, 0.5 mL syringe 923957011000036109 epoetin lambda 1000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +20041011000036108 Norditropin Simplexx 5 mg/1.5 mL injection solution, 1.5 mL cartridge 69360 13273011000036103 Norditropin Simplexx 5 mg/1.5 mL injection solution, 1.5 mL cartridge 6555011000036101 Norditropin Simplexx 5 mg/1.5 mL injection solution, 1.5 mL cartridge 45201000168101 Norditropin Simplexx 45201000168101 Norditropin Simplexx 28298011000036100 somatropin 5 mg/1.5 mL injection, 1.5 mL cartridge 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +19044011000036108 Isordil 10 mg uncoated tablet, 100, blister pack 40257 12353011000036102 Isordil 10 mg uncoated tablet, 100 5678011000036103 Isordil 10 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 27133011000036109 isosorbide dinitrate 10 mg tablet, 100 22498011000036106 isosorbide dinitrate 10 mg tablet 21865011000036107 isosorbide dinitrate +50340011000036106 Accu-Chek Performa diagnostic strip, 50, bottle 49249011000036100 Accu-Chek Performa diagnostic strip, 50 48502011000036105 Accu-Chek Performa diagnostic strip 9471000168102 Accu-Chek Performa 9471000168102 Accu-Chek Performa 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +61021011000036106 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 24, blister pack 66743 56964011000036109 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 24 54142011000036103 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 63662011000036109 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule, 24 62038011000036103 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +20997011000036102 Cefaclor (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 169116 14143011000036104 Cefaclor (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL 7422011000036103 Cefaclor (GenRx) 125 mg/5 mL powder for oral liquid, 5 mL 3265011000036107 Cefaclor (GenRx) 3265011000036107 Cefaclor (GenRx) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +20997011000036102 Cefaclor (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 96313 14143011000036104 Cefaclor (GenRx) 125 mg/5 mL powder for oral liquid, 100 mL 7422011000036103 Cefaclor (GenRx) 125 mg/5 mL powder for oral liquid, 5 mL 3265011000036107 Cefaclor (GenRx) 3265011000036107 Cefaclor (GenRx) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +648861000168102 Azactam 1 g powder for injection, 5 vials 14032 648851000168104 Azactam 1 g powder for injection, 5 vials 36171011000036108 Azactam 1 g powder for injection, vial 35948011000036103 Azactam 35948011000036103 Azactam 648841000168101 aztreonam 1 g injection, 5 vials 37940011000036104 aztreonam 1 g injection, vial 37753011000036101 aztreonam +1021931000168103 Atelvia 35 mg film-coated tablet, 4, blister pack 163753 1021921000168101 Atelvia 35 mg film-coated tablet, 4 1021871000168105 Atelvia 35 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +56421000036106 Amline 10 mg uncoated tablet, 14, blister pack 160812 52321000036103 Amline 10 mg uncoated tablet, 14 48921000036100 Amline 10 mg uncoated tablet 48351000036105 Amline 48351000036105 Amline 84620011000036101 amlodipine 10 mg tablet, 14 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +923852011000036104 Nausetil 5 mg uncoated tablet, 10, blister pack 159537 923398011000036107 Nausetil 5 mg uncoated tablet, 10 923062011000036105 Nausetil 5 mg uncoated tablet 922930011000036103 Nausetil 922930011000036103 Nausetil 924183011000036108 prochlorperazine maleate 5 mg tablet, 10 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +43991011000036107 Nimotop 30 mg film-coated tablet, 100, bottle 43102 41482011000036109 Nimotop 30 mg film-coated tablet, 100 40007011000036106 Nimotop 30 mg film-coated tablet 39664011000036105 Nimotop 39664011000036105 Nimotop 46328011000036106 nimodipine 30 mg tablet, 100 45083011000036105 nimodipine 30 mg tablet 44927011000036105 nimodipine +1049241000168100 Novacodone 15 mg modified release tablet, 28, blister pack 228442 1049231000168109 Novacodone 15 mg modified release tablet, 28 1049201000168102 Novacodone 15 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +931529011000036101 Imiquad 5% cream, 6 x 250 mg sachets 160484 930690011000036102 Imiquad 5% cream, 6 x 250 mg sachets 930013011000036102 Imiquad 5% cream, 250 mg sachet 929828011000036102 Imiquad 929828011000036102 Imiquad 932454011000036109 imiquimod 5% cream, 6 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +920786011000036109 Norfloxacin (Ascent Pharma) 400 mg film-coated tablet, 14, blister pack 79112 920465011000036108 Norfloxacin (Ascent Pharma) 400 mg film-coated tablet, 14 920199011000036108 Norfloxacin (Ascent Pharma) 400 mg film-coated tablet 920099011000036104 Norfloxacin (Ascent Pharma) 920099011000036104 Norfloxacin (Ascent Pharma) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +997441000168107 Meloxicam (Apotex) 7.5 mg hard capsule, 20, blister pack 181196 997431000168103 Meloxicam (Apotex) 7.5 mg hard capsule, 20 997401000168105 Meloxicam (Apotex) 7.5 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 52888011000036108 meloxicam 7.5 mg capsule, 20 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +928898011000036109 Valnir 500 mg film-coated tablet, 42, blister pack 147607 928260011000036101 Valnir 500 mg film-coated tablet, 42 927909011000036101 Valnir 500 mg film-coated tablet 927774011000036103 Valnir 927774011000036103 Valnir 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +104261000036107 Abisart 300 mg film-coated tablet, 30, blister pack 170772 101471000036101 Abisart 300 mg film-coated tablet, 30 98731000036108 Abisart 300 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +104261000036107 Abisart 300 mg film-coated tablet, 30, blister pack 214581 101471000036101 Abisart 300 mg film-coated tablet, 30 98731000036108 Abisart 300 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +43564011000036101 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 5 x 200 mL vials 116892 41185011000036100 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 5 x 200 mL vials 39820011000036102 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 200 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46149011000036105 ciprofloxacin 400 mg/200 mL injection, 5 x 200 mL vials 45009011000036109 ciprofloxacin 400 mg/200 mL injection, vial 21245011000036105 ciprofloxacin +18814011000036103 Glimel 5 mg uncoated tablet, 100, bottle 17624 12136011000036102 Glimel 5 mg uncoated tablet, 100 5481011000036101 Glimel 5 mg uncoated tablet 2996011000036106 Glimel 2996011000036106 Glimel 27720011000036106 glibenclamide 5 mg tablet, 100 23055011000036107 glibenclamide 5 mg tablet 21911011000036104 glibenclamide +957301000168107 Mirtazapine (Sandoz) 15 mg film-coated tablet, 60, bottle 117165 957291000168106 Mirtazapine (Sandoz) 15 mg film-coated tablet, 60 957201000168100 Mirtazapine (Sandoz) 15 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 46481011000036100 mirtazapine 15 mg tablet, 60 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +56581000036108 Idarubicin Hydrochloride (Ebewe) 20 mg/20 mL concentrated injection, 5 x 20 mL vials 162932 52961000036108 Idarubicin Hydrochloride (Ebewe) 20 mg/20 mL concentrated injection, 5 x 20 mL vials 49641000036106 Idarubicin Hydrochloride (Ebewe) 20 mg/20 mL concentrated injection, 20 mL vial 927760011000036104 Idarubicin Hydrochloride (Ebewe) 927760011000036104 Idarubicin Hydrochloride (Ebewe) 52971000036100 idarubicin hydrochloride 20 mg/20 mL injection, 5 x 20 mL vials 49651000036109 idarubicin hydrochloride 20 mg/20 mL injection, vial 21720011000036108 idarubicin +19131011000036100 Actilax 3.34 g/5 mL oral liquid solution, 500 mL, bottle 43582 12434011000036106 Actilax 3.34 g/5 mL oral liquid solution, 500 mL 5192011000036107 Actilax 3.34 g/5 mL oral liquid solution, 5 mL 4437011000036109 Actilax 4437011000036109 Actilax 27821011000036102 lactulose 3.34 g/5 mL oral liquid, 500 mL 23149011000036102 lactulose 3.34 g/5 mL oral liquid 21591011000036108 lactulose +944431000168104 Risperidone (Chemmart) 4 mg film-coated tablet, 60, blister pack 127595 944421000168102 Risperidone (Chemmart) 4 mg film-coated tablet, 60 944411000168109 Risperidone (Chemmart) 4 mg film-coated tablet 944101000168101 Risperidone (Chemmart) 944101000168101 Risperidone (Chemmart) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +1060381000168102 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 7, blister pack 234477 1060371000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 7 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 853431000168109 rosuvastatin 40 mg tablet, 7 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +925223011000036106 Ropaccord 500 microgram film-coated tablet, 28, blister pack 157772 924760011000036106 Ropaccord 500 microgram film-coated tablet, 28 924460011000036101 Ropaccord 500 microgram film-coated tablet 924403011000036108 Ropaccord 924403011000036108 Ropaccord 46970011000036103 ropinirole 500 microgram tablet, 28 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +921916011000036105 Diphereline (1 x 22.5 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 159173 921475011000036106 Diphereline (1 x 22.5 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 921024011000036101 Diphereline (triptorelin 22.5 mg) powder for injection, 22.5 mg vial 52377011000036101 Diphereline 52377011000036101 Diphereline 922603011000036103 triptorelin 22.5 mg injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 922101011000036100 triptorelin 22.5 mg injection, vial 52800011000036105 triptorelin +921916011000036105 Diphereline (1 x 22.5 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 159173 921475011000036106 Diphereline (1 x 22.5 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 638051000168105 Diphereline (inert substance) diluent, 2 mL ampoule 52377011000036101 Diphereline 52377011000036101 Diphereline 922603011000036103 triptorelin 22.5 mg injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 634671000168103 inert substance diluent, 2 mL ampoule 21220011000036103 inert substance +1068971000168102 Ibuprofen plus Codeine (Priceline Pharmacy) film-coated tablet, 30, blister pack 169109 1068961000168108 Ibuprofen plus Codeine (Priceline Pharmacy) film-coated tablet, 30 1068931000168100 Ibuprofen plus Codeine (Priceline Pharmacy) film-coated tablet 1068921000168103 Ibuprofen plus Codeine (Priceline Pharmacy) 1068921000168103 Ibuprofen plus Codeine (Priceline Pharmacy) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +43783011000036104 Zemplar 4 microgram soft capsule, 28, blister pack 121764 41261011000036102 Zemplar 4 microgram soft capsule, 28 39913011000036105 Zemplar 4 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46200011000036107 paricalcitol 4 microgram capsule, 28 45027011000036108 paricalcitol 4 microgram capsule 44899011000036102 paricalcitol +33586011000036107 Naloxone Min-I-Jet (CSL) 2 mg/5 mL injection, 5 mL syringe 48535 33324011000036107 Naloxone Min-I-Jet (CSL) 2 mg/5 mL injection, 5 mL syringe 33085011000036102 Naloxone Min-I-Jet (CSL) 2 mg/5 mL injection, 5 mL syringe 32995011000036101 Naloxone Min-I-Jet (CSL) 32995011000036101 Naloxone Min-I-Jet (CSL) 33805011000036100 naloxone hydrochloride 2 mg/5 mL injection, 5 mL syringe 33677011000036108 naloxone hydrochloride 2 mg/5 mL injection, syringe 33627011000036107 naloxone +18330011000036100 Ramipril (Sandoz) 10 mg hard capsule, 30, blister pack 128842 11866011000036101 Ramipril (Sandoz) 10 mg hard capsule, 30 5803011000036106 Ramipril (Sandoz) 10 mg hard capsule 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +18330011000036100 Ramipril (Sandoz) 10 mg hard capsule, 30, blister pack 128811 11866011000036101 Ramipril (Sandoz) 10 mg hard capsule, 30 5803011000036106 Ramipril (Sandoz) 10 mg hard capsule 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +781971000168107 Pregabalin (SZ) 300 mg hard capsule, 56, blister pack 210041 781961000168101 Pregabalin (SZ) 300 mg hard capsule, 56 781951000168103 Pregabalin (SZ) 300 mg hard capsule 781921000168106 Pregabalin (SZ) 781921000168106 Pregabalin (SZ) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +86037011000036100 Benadryl for the Family Day and Night (1 x 100 mL Day liquid, 1 x 100 mL Night liquid), 1 pack, bottle 126721 85622011000036106 Benadryl for the Family Day and Night (1 x 100 mL Day liquid, 1 x 100 mL Night liquid), 1 pack 85299011000036109 Benadryl for the Family Day and Night (Night) oral liquid solution, 5 mL 49181000168100 Benadryl for the Family Day and Night 49421000168107 Benadryl for the Family Day and Night (Night) 86410011000036100 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid [100 mL] (&) dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid [100 mL], 1 pack 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +86037011000036100 Benadryl for the Family Day and Night (1 x 100 mL Day liquid, 1 x 100 mL Night liquid), 1 pack, bottle 126721 85622011000036106 Benadryl for the Family Day and Night (1 x 100 mL Day liquid, 1 x 100 mL Night liquid), 1 pack 85298011000036101 Benadryl for the Family Day and Night (Day) 15 mg/5 mL oral liquid solution, 5 mL 49181000168100 Benadryl for the Family Day and Night 49301000168106 Benadryl for the Family Day and Night (Day) 86410011000036100 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid [100 mL] (&) dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid [100 mL], 1 pack 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +61229011000036100 Nicotine (Amcal) Mint 2 mg chewing gum, 24, blister pack 76844 57165011000036105 Nicotine (Amcal) Mint 2 mg chewing gum, 24 54222011000036102 Nicotine (Amcal) Mint 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +987571000168100 Zometa (1 x 4 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 76928 987561000168106 Zometa (1 x 4 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 987531000168103 Zometa (zoledronic acid 4 mg) powder for injection, 4 mg vial 3922011000036109 Zometa 3922011000036109 Zometa 987551000168109 zoledronic acid 4 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 987521000168101 zoledronic acid 4 mg injection, vial 21790011000036102 zoledronic acid +987571000168100 Zometa (1 x 4 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 76928 987561000168106 Zometa (1 x 4 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 987541000168107 Zometa (inert substance) diluent, 5 mL ampoule 3922011000036109 Zometa 3922011000036109 Zometa 987551000168109 zoledronic acid 4 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 636941000168108 inert substance diluent, 5 mL ampoule 21220011000036103 inert substance +666341000168100 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 206195 666331000168109 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 666311000168104 Novoseven RT (inert substance) diluent, 2 mL syringe 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666321000168106 eptacog alfa (activated) 2 mg injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +666341000168100 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 206195 666331000168109 Novoseven RT (1 x 2 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 82014011000036102 Novoseven RT (eptacog alfa (activated) 2 mg) powder for injection, 2 mg vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666321000168106 eptacog alfa (activated) 2 mg injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 82443011000036102 eptacog alfa (activated) 2 mg injection, vial 44889011000036101 eptacog alfa (activated) +60197011000036109 Congested Cold and Cough Elixir (Priceline) oral liquid solution, 100 mL, bottle 132871 56156011000036107 Congested Cold and Cough Elixir (Priceline) oral liquid solution, 100 mL 53812011000036101 Congested Cold and Cough Elixir (Priceline) oral liquid solution, 5 mL 23561000168102 Congested Cold and Cough Elixir (Priceline) 23561000168102 Congested Cold and Cough Elixir (Priceline) 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +833091000168101 Centrum film-coated tablet, 14, bottle 75827 833081000168104 Centrum film-coated tablet, 14 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833071000168102 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 14 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +69122011000036102 Strepsils honey and lemon lozenge, 8, blister pack 14975 66923011000036100 Strepsils honey and lemon lozenge, 8 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1042981000168106 Pryzex ODT 10 mg orally disintegrating tablet, 20, blister pack 179076 1042971000168108 Pryzex ODT 10 mg orally disintegrating tablet, 20 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1042961000168102 olanzapine 10 mg orally disintegrating tablet, 20 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +824551000168101 Twinrix Junior injection suspension, 0.5 mL syringe 140576 824541000168103 Twinrix Junior injection suspension, 0.5 mL syringe 824521000168109 Twinrix Junior injection suspension, 0.5 mL syringe 54661000168103 Twinrix Junior 54661000168103 Twinrix Junior 824531000168107 hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe 824511000168102 hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe 824501000168100 hepatitis A + hepatitis B vaccine +948771000168104 Invast 5 mg film-coated tablet, 30, bottle 100259 948761000168105 Invast 5 mg film-coated tablet, 30 948751000168108 Invast 5 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +696311000168102 Midazolam (MYX) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207245 696301000168100 Midazolam (MYX) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 696291000168101 Midazolam (MYX) 15 mg/3 mL injection solution, 3 mL ampoule 696191000168109 Midazolam (MYX) 696191000168109 Midazolam (MYX) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +44048011000036104 Buscopan 10 mg sugar coated tablet, 20, tube 48255 41538011000036105 Buscopan 10 mg sugar coated tablet, 20 40047011000036103 Buscopan 10 mg sugar coated tablet 2401000168103 Buscopan 2401000168103 Buscopan 46373011000036102 hyoscine butylbromide 10 mg tablet, 20 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +1064311000168100 Strong Pain Relief (Trust) uncoated tablet, 24, blister pack 201679 1064301000168103 Strong Pain Relief (Trust) uncoated tablet, 24 1064231000168103 Strong Pain Relief (Trust) uncoated tablet 1064221000168101 Strong Pain Relief (Trust) 1064221000168101 Strong Pain Relief (Trust) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +135771000036100 Eliquis 5 mg film-coated tablet, 60, blister pack 193474 135161000036107 Eliquis 5 mg film-coated tablet, 60 134241000036101 Eliquis 5 mg film-coated tablet 933234191000036106 Eliquis 933234191000036106 Eliquis 135171000036104 apixaban 5 mg tablet, 60 134251000036103 apixaban 5 mg tablet 933240151000036106 apixaban +959501000168106 Levetiracetam (Apo) 750 mg film-coated tablet, 100, bottle 156317 959491000168104 Levetiracetam (Apo) 750 mg film-coated tablet, 100 959411000168108 Levetiracetam (Apo) 750 mg film-coated tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 959481000168102 levetiracetam 750 mg tablet, 100 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +177001000036103 Gabacor 300 mg hard capsule, 100, blister pack 204501 175251000036104 Gabacor 300 mg hard capsule, 100 173621000036107 Gabacor 300 mg hard capsule 924388011000036109 Gabacor 924388011000036109 Gabacor 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +59788011000036100 Dymadon 500 mg uncoated tablet, 4, blister pack 114074 55750011000036102 Dymadon 500 mg uncoated tablet, 4 53700011000036100 Dymadon 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1083721000168107 Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL, pump pack 58736 12887011000036102 Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL 6178011000036102 Logicin Rapid Relief Nasal 0.05% nasal spray 4081011000036100 Logicin Rapid Relief Nasal 4081011000036100 Logicin Rapid Relief Nasal 75486011000036101 oxymetazoline hydrochloride 0.05% nasal spray, 18 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +807551000168101 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) uncoated tablet, 30, blister pack 224296 807541000168103 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) uncoated tablet, 30 807531000168107 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) uncoated tablet 807521000168109 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) 807521000168109 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +69606011000036107 Microshield T 1% solution, 125 mL, bottle 71212 67405011000036109 Microshield T 1% solution, 125 mL 65648011000036109 Microshield T 1% solution 65053011000036109 Microshield T 65053011000036109 Microshield T 71940011000036108 triclosan 1% solution, 125 mL 70255011000036105 triclosan 1% solution 69817011000036103 triclosan +84343011000036104 Stalevo 75/18.75/200 film-coated tablet, 10, bottle 160686 84036011000036107 Stalevo 75/18.75/200 film-coated tablet, 10 83664011000036102 Stalevo 75/18.75/200 film-coated tablet 1981000168109 Stalevo 75/18.75/200 1981000168109 Stalevo 75/18.75/200 84648011000036102 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 10 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +651281000168103 Malean 10 mg tablet, 30, blister pack 196485 651271000168101 Malean 10 mg tablet, 30 651261000168107 Malean 10 mg tablet 651221000168102 Malean 651221000168102 Malean 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +807561000168104 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) uncoated tablet, 30, bottle 224301 807541000168103 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) uncoated tablet, 30 807531000168107 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) uncoated tablet 807521000168109 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) 807521000168109 Perindopril Arginine/Amlodipine 5/5 (Terry White Chemists) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +21164011000036104 Seaze 200 mg tablet, 56, blister pack 99039 14306011000036109 Seaze 200 mg tablet, 56 7592011000036102 Seaze 200 mg tablet 3240011000036108 Seaze 3240011000036108 Seaze 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +700651000168103 Adempas 2 mg film-coated tablet, 84, blister pack 207598 700641000168100 Adempas 2 mg film-coated tablet, 84 700591000168109 Adempas 2 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700631000168109 riociguat 2 mg tablet, 84 700581000168106 riociguat 2 mg tablet 700211000168102 riociguat +95571000036107 Fexorelief 180 mg film-coated tablet, 30, blister pack 186051 94461000036104 Fexorelief 180 mg film-coated tablet, 30 93371000036103 Fexorelief 180 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +81036011000036100 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 60, blister pack 104396 80477011000036103 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 60 80150011000036100 Carvedilol (Sandoz) 12.5 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +1103171000168102 Nicotine (NCHA) Freshmint 2 mg chewing gum, 24, blister pack 143431 1103161000168108 Nicotine (NCHA) Freshmint 2 mg chewing gum, 24 1103151000168106 Nicotine (NCHA) Freshmint 2 mg chewing gum 1103091000168102 Nicotine (NCHA) 1103091000168102 Nicotine (NCHA) 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +998081000168108 Desloratadine (Apo) 5 mg film-coated tablet, 2, blister pack 202823 998071000168105 Desloratadine (Apo) 5 mg film-coated tablet, 2 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72021011000036106 desloratadine 5 mg tablet, 2 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +52731011000036108 Pristiq 50 mg modified release tablet, 14, blister pack 133520 52543011000036106 Pristiq 50 mg modified release tablet, 14 52410011000036103 Pristiq 50 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1021771000168102 Atelvia 5 mg film-coated tablet, 84, blister pack 163751 1021761000168108 Atelvia 5 mg film-coated tablet, 84 1021691000168107 Atelvia 5 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 800851000168100 risedronate sodium 5 mg tablet, 84 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +1064631000168101 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 10, blister pack 199369 1064621000168104 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 10 1064611000168106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 63319011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 10 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +949091000168107 Risperidone (WT) 500 microgram film-coated tablet, 100, bottle 127893 949081000168109 Risperidone (WT) 500 microgram film-coated tablet, 100 948991000168101 Risperidone (WT) 500 microgram film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 51482011000036102 risperidone 500 microgram tablet, 100 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1008821000168105 Rivastigmine (Apotex) 3 mg hard capsule, 28, blister pack 160564 1008811000168103 Rivastigmine (Apotex) 3 mg hard capsule, 28 1008781000168100 Rivastigmine (Apotex) 3 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002871000168109 rivastigmine 3 mg capsule, 28 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +19782011000036106 Imdur Durule 120 mg modified release tablet, 30, blister pack 62795 13040011000036101 Imdur Durule 120 mg modified release tablet, 30 6326011000036106 Imdur Durule 120 mg modified release tablet 55051000168107 Imdur Durule 55051000168107 Imdur Durule 27541011000036100 isosorbide mononitrate 120 mg modified release tablet, 30 22881011000036109 isosorbide mononitrate 120 mg modified release tablet 21337011000036108 isosorbide mononitrate +781651000168105 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 215575 781641000168108 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 781611000168109 Nordette (inert substance) sugar coated tablet 781591000168104 Nordette 781591000168104 Nordette 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +781651000168105 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10408 781641000168108 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 781611000168109 Nordette (inert substance) sugar coated tablet 781591000168104 Nordette 781591000168104 Nordette 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +781651000168105 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 215575 781641000168108 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 781601000168106 Nordette (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 781591000168104 Nordette 781591000168104 Nordette 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +781651000168105 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10408 781641000168108 Nordette (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 781601000168106 Nordette (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 781591000168104 Nordette 781591000168104 Nordette 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +176961000036103 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack, blister pack 203694 175201000036100 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack 173261000036100 Rosuvastatin (MSD) 10 mg film-coated tablet 172661000036105 Rosuzet Composite Pack 172631000036104 Rosuvastatin (MSD) 175211000036103 ezetimibe 10 mg tablet [30] (&) rosuvastatin 10 mg tablet [30], 1 pack 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +176961000036103 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack, blister pack 203694 175201000036100 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 10 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 172661000036105 Rosuzet Composite Pack 3589011000036101 Ezetrol 175211000036103 ezetimibe 10 mg tablet [30] (&) rosuvastatin 10 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +951001000168100 Uricosal oral liquid, 200 mL, bottle 14222 950991000168101 Uricosal oral liquid, 200 mL 950971000168102 Uricosal oral liquid, 10 mL 950941000168109 Uricosal 950941000168109 Uricosal 950981000168104 potassium citrate 2 g/10 mL + citric acid monohydrate 400 mg/10 mL oral liquid, 200 mL 950961000168108 potassium citrate 2 g/10 mL + citric acid monohydrate 400 mg/10 mL oral liquid 950951000168106 potassium citrate + citric acid +1083801000168105 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 30 mL, bottle 38572 1083791000168109 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 30 mL 1083781000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 63473011000036106 benzydamine hydrochloride 0.15% mouthwash, 30 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +20191011000036108 Valtrex 500 mg film-coated tablet, 100, bottle 73918 13410011000036104 Valtrex 500 mg film-coated tablet, 100 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +948861000168101 Diltiazem CD (Sanofi) 360 mg modified release capsule, 7, bottle 139401 948851000168103 Diltiazem CD (Sanofi) 360 mg modified release capsule, 7 948841000168100 Diltiazem CD (Sanofi) 360 mg modified release capsule 945021000168108 Diltiazem CD (Sanofi) 945021000168108 Diltiazem CD (Sanofi) 46721011000036101 diltiazem hydrochloride 360 mg modified release capsule, 7 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +20680011000036103 Ipratropium Bromide (GenRx) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 151093 13859011000036109 Ipratropium Bromide (GenRx) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 7146011000036101 Ipratropium Bromide (GenRx) 500 microgram/mL inhalation solution, ampoule 3090011000036105 Ipratropium Bromide (GenRx) 3090011000036105 Ipratropium Bromide (GenRx) 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +20680011000036103 Ipratropium Bromide (GenRx) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 82354 13859011000036109 Ipratropium Bromide (GenRx) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 7146011000036101 Ipratropium Bromide (GenRx) 500 microgram/mL inhalation solution, ampoule 3090011000036105 Ipratropium Bromide (GenRx) 3090011000036105 Ipratropium Bromide (GenRx) 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +1051731000168104 Palexia SR 50 mg modified release tablet, 90, blister pack 165332 1051721000168102 Palexia SR 50 mg modified release tablet, 90 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051711000168109 tapentadol 50 mg modified release tablet, 90 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +1081711000168104 Sonata 5 mg hard capsule, 14, blister pack 70003 1081701000168102 Sonata 5 mg hard capsule, 14 1081651000168107 Sonata 5 mg hard capsule 1081561000168108 Sonata 1081561000168108 Sonata 1081691000168102 zaleplon 5 mg capsule, 14 1081641000168105 zaleplon 5 mg capsule 1081631000168101 zaleplon +60405011000036103 Nurofen Regular 200 mg sugar coated tablet, 24, blister pack 144202 56364011000036100 Nurofen Regular 200 mg sugar coated tablet, 24 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +717581000168107 Omeprazole (Apo) 20 mg enteric capsule, 30, bottle 167316 717541000168102 Omeprazole (Apo) 20 mg enteric capsule, 30 717531000168106 Omeprazole (Apo) 20 mg enteric capsule 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +920760011000036109 Captopril (Sandoz) 50 mg film-coated tablet, 90, blister pack 61420 920439011000036104 Captopril (Sandoz) 50 mg film-coated tablet, 90 920180011000036103 Captopril (Sandoz) 50 mg film-coated tablet 920077011000036102 Captopril (Sandoz) 920077011000036102 Captopril (Sandoz) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +91241000036101 Letrozole (Pharmacy Choice) 2.5 mg film-coated tablet, 30, blister pack 171785 89571000036105 Letrozole (Pharmacy Choice) 2.5 mg film-coated tablet, 30 87891000036102 Letrozole (Pharmacy Choice) 2.5 mg film-coated tablet 87581000036101 Letrozole (Pharmacy Choice) 87581000036101 Letrozole (Pharmacy Choice) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +1116011000168101 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 7, blister pack 158165 1116001000168104 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 7 1115991000168100 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 922588011000036102 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 7 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +69179011000036106 Dimethicream cream, 500 mL, bottle 17120 66979011000036103 Dimethicream cream, 500 mL 65253011000036103 Dimethicream cream 64986011000036106 Dimethicream 64986011000036106 Dimethicream 71552011000036100 dimeticone-350 10% + cetrimide 0.5% cream, 500 mL 70059011000036100 dimeticone-350 10% + cetrimide 0.5% cream 69804011000036107 dimeticone-350 + cetrimide +86866011000036109 Oxaliplatin (Link Medical Products) 50 mg powder for injection, 1 vial 148405 86752011000036103 Oxaliplatin (Link Medical Products) 50 mg powder for injection, 1 vial 86629011000036103 Oxaliplatin (Link Medical Products) 50 mg powder for injection, 50 mg vial 83235011000036108 Oxaliplatin (Link Medical Products) 83235011000036108 Oxaliplatin (Link Medical Products) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +68937011000036103 Fybogel orange 3.5 g powder for oral liquid, 1 sachet 106708 66551011000036108 Fybogel orange 3.5 g powder for oral liquid, 1 sachet 5748011000036108 Fybogel orange 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 71279011000036102 dry psyllium husk 3.5 g powder for oral liquid, 1 sachet 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +39361000036101 Vapour Rub (Medix) ointment, 100 g, jar 170120 35831000036103 Vapour Rub (Medix) ointment, 100 g 32611000036101 Vapour Rub (Medix) ointment 32171000036101 Vapour Rub (Medix) 32171000036101 Vapour Rub (Medix) 35841000036108 menthol 2.8% + camphor 5.5% + eucalyptus oil 1.4% ointment, 100 g 32621000036108 menthol 2.8% + camphor 5.5% + eucalyptus oil 1.4% ointment 69806011000036104 menthol + camphor + eucalyptus oil +931771000168108 Centevo 100/25/200 mg film-coated tablet, 100, bottle 238855 931761000168102 Centevo 100/25/200 mg film-coated tablet, 100 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 28184011000036105 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 100 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +43875011000036107 Ramipril (Sandoz) 10 mg hard capsule, 14, blister pack 128811 41371011000036101 Ramipril (Sandoz) 10 mg hard capsule, 14 5803011000036106 Ramipril (Sandoz) 10 mg hard capsule 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 46763011000036108 ramipril 10 mg capsule, 14 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +925341000168102 Topiramate (Terry White Chemists) 50 mg film-coated tablet, 60, blister pack 124746 925331000168106 Topiramate (Terry White Chemists) 50 mg film-coated tablet, 60 925321000168108 Topiramate (Terry White Chemists) 50 mg film-coated tablet 925251000168105 Topiramate (Terry White Chemists) 925251000168105 Topiramate (Terry White Chemists) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +928993011000036105 Valaciclovir (Chemmart) 500 mg film-coated tablet, 6, blister pack 158913 928354011000036109 Valaciclovir (Chemmart) 500 mg film-coated tablet, 6 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929221011000036100 valaciclovir 500 mg tablet, 6 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +61540011000036100 Hayfever Sinus Relief (Chemists' Own) film-coated tablet, 24, blister pack 93809 57465011000036109 Hayfever Sinus Relief (Chemists' Own) film-coated tablet, 24 54313011000036108 Hayfever Sinus Relief (Chemists' Own) film-coated tablet 53176011000036103 Hayfever Sinus Relief (Chemists' Own) 53176011000036103 Hayfever Sinus Relief (Chemists' Own) 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +858951000168100 Amidep 10 mg film-coated tablet, 100, blister pack 215399 858941000168102 Amidep 10 mg film-coated tablet, 100 858891000168103 Amidep 10 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1049561000168104 Codapane Forte 500/30 uncoated tablet, 4, blister pack 285558 1049551000168101 Codapane Forte 500/30 uncoated tablet, 4 835931000168100 Codapane Forte 500/30 uncoated tablet 27331000168106 Codapane Forte 500/30 27331000168106 Codapane Forte 500/30 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +1047391000168105 Buprenorphine (Sandoz) 10 microgram/hour patch, 1, sachet 269671 1047381000168107 Buprenorphine (Sandoz) 10 microgram/hour patch, 1 1047371000168109 Buprenorphine (Sandoz) 10 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046631000168104 buprenorphine 10 microgram/hour patch, 1 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +928821011000036108 Epirubicin Hydrochloride (Novotech) 10 mg/5 mL injection solution, 5 mL vial 107348 928174011000036102 Epirubicin Hydrochloride (Novotech) 10 mg/5 mL injection solution, 5 mL vial 927835011000036104 Epirubicin Hydrochloride (Novotech) 10 mg/5 mL injection solution, 5 mL vial 927793011000036109 Epirubicin Hydrochloride (Novotech) 927793011000036109 Epirubicin Hydrochloride (Novotech) 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +44382011000036108 Arava 10 mg film-coated tablet, 30, bottle 69692 13283011000036108 Arava 10 mg film-coated tablet, 30 6566011000036100 Arava 10 mg film-coated tablet 3730011000036103 Arava 3730011000036103 Arava 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +931443011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 50 x 100 mL bags 144609 930622011000036107 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 50 x 100 mL bags 929977011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932378011000036108 sodium chloride 0.9% (900 mg/100 mL) injection, 50 x 100 mL bags 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +19298011000036104 Sodium Chloride (Pfizer (Perth)) 0.9% (90 mg/10 mL) injection solution, 5 x 10 mL ampoules 49278 12588011000036102 Sodium Chloride (Pfizer (Perth)) 0.9% (90 mg/10 mL) injection solution, 5 x 10 mL ampoules 5297011000036106 Sodium Chloride (Pfizer (Perth)) 0.9% (90 mg/10 mL) injection solution, 10 mL ampoule 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 27221011000036108 sodium chloride 0.9% (90 mg/10 mL) injection, 5 x 10 mL ampoules 22582011000036104 sodium chloride 0.9% (90 mg/10 mL) injection, ampoule 21308011000036103 sodium chloride +30721000036102 Zondan 8 mg film-coated tablet, 4, blister pack 116416 28291000036108 Zondan 8 mg film-coated tablet, 4 26581000036109 Zondan 8 mg film-coated tablet 26301000036108 Zondan 26301000036108 Zondan 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +790391000168104 Oxycontin 60 mg modified release tablet, 120, bottle 200029 790381000168102 Oxycontin 60 mg modified release tablet, 120 789681000168102 Oxycontin 60 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790371000168100 oxycodone hydrochloride 60 mg modified release tablet, 120 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +918931000168107 Rosuvastatin (Generic Health) 5 mg film-coated tablet, 30, blister pack 210835 918921000168109 Rosuvastatin (Generic Health) 5 mg film-coated tablet, 30 918891000168104 Rosuvastatin (Generic Health) 5 mg film-coated tablet 918641000168106 Rosuvastatin (Generic Health) 918641000168106 Rosuvastatin (Generic Health) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +73921000036105 Quetiapine (GA) 25 mg film-coated tablet, 60, blister pack 176710 71611000036108 Quetiapine (GA) 25 mg film-coated tablet, 60 69631000036106 Quetiapine (GA) 25 mg film-coated tablet 69421000036107 Quetiapine (GA) 69421000036107 Quetiapine (GA) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +31361000036100 Vermox Choc Chew 100 mg chewable tablet, 4, blister pack 176298 28731000036104 Vermox Choc Chew 100 mg chewable tablet, 4 27091000036100 Vermox Choc Chew 100 mg chewable tablet 8311000168106 Vermox Choc Chew 8311000168106 Vermox Choc Chew 75971000036108 mebendazole 100 mg chewable tablet, 4 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +734741000168107 Paracetamol plus Codeine (Apohealth) uncoated tablet, 40, blister pack 229518 734731000168103 Paracetamol plus Codeine (Apohealth) uncoated tablet, 40 734701000168105 Paracetamol plus Codeine (Apohealth) uncoated tablet 734691000168105 Paracetamol plus Codeine (Apohealth) 734691000168105 Paracetamol plus Codeine (Apohealth) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +44624011000036103 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 90345 42077011000036106 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent ampoules), 1 pack 40374011000036106 Luveris (lutropin alfa 75 units) powder for injection, 75 units vial 39654011000036102 Luveris 39654011000036102 Luveris 46844011000036103 lutropin alfa 75 units injection [3 vials] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 45349011000036102 lutropin alfa 75 units injection, vial 44973011000036102 lutropin alfa +44624011000036103 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 90345 42077011000036106 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent ampoules), 1 pack 631451000168107 Luveris (inert substance) diluent, 1 mL ampoule 39654011000036102 Luveris 39654011000036102 Luveris 46844011000036103 lutropin alfa 75 units injection [3 vials] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +923758011000036104 Oilatum Bath Emollient 63.4% bath oil, 150 mL, bottle 14822 923322011000036100 Oilatum Bath Emollient 63.4% bath oil, 150 mL 923001011000036100 Oilatum Bath Emollient 63.4% bath oil 61821000168104 Oilatum Bath Emollient 61821000168104 Oilatum Bath Emollient 924135011000036104 light liquid paraffin 63.4% bath oil, 150 mL 923958011000036105 light liquid paraffin 63.4% bath oil 33638011000036106 light liquid paraffin +1066721000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 20, blister pack 197884 1066711000168106 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 20 1066591000168109 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +61056011000036102 Sinus (Soul Pattinson) uncoated tablet, 24, blister pack 67988 56999011000036107 Sinus (Soul Pattinson) uncoated tablet, 24 54151011000036107 Sinus (Soul Pattinson) uncoated tablet 53094011000036105 Sinus (Soul Pattinson) 53094011000036105 Sinus (Soul Pattinson) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +691881000168109 Desvenlafaxine (Actavis) 50 mg modified release tablet, 28, blister pack 218064 691871000168106 Desvenlafaxine (Actavis) 50 mg modified release tablet, 28 691861000168100 Desvenlafaxine (Actavis) 50 mg modified release tablet 691851000168102 Desvenlafaxine (Actavis) 691851000168102 Desvenlafaxine (Actavis) 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +19954011000036100 Dilaudid-HP 10 mg/mL injection solution, 5 x 1 mL ampoules 67357 13197011000036100 Dilaudid-HP 10 mg/mL injection solution, 5 x 1 mL ampoules 6480011000036106 Dilaudid-HP 10 mg/mL injection solution, ampoule 1601000168105 Dilaudid-HP 1601000168105 Dilaudid-HP 27609011000036101 hydromorphone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 22948011000036101 hydromorphone hydrochloride 10 mg/mL injection, ampoule 21480011000036107 hydromorphone +19954011000036100 Dilaudid-HP 10 mg/mL injection solution, 5 x 1 mL ampoules 272633 13197011000036100 Dilaudid-HP 10 mg/mL injection solution, 5 x 1 mL ampoules 6480011000036106 Dilaudid-HP 10 mg/mL injection solution, ampoule 1601000168105 Dilaudid-HP 1601000168105 Dilaudid-HP 27609011000036101 hydromorphone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 22948011000036101 hydromorphone hydrochloride 10 mg/mL injection, ampoule 21480011000036107 hydromorphone +44509011000036104 Zyprexa IM 10 mg powder for injection, 1 vial 76867 41964011000036100 Zyprexa IM 10 mg powder for injection, 1 vial 40292011000036103 Zyprexa IM 10 mg powder for injection, 10 mg vial 48951000168104 Zyprexa IM 48951000168104 Zyprexa IM 46745011000036101 olanzapine 10 mg injection, 1 vial 45297011000036107 olanzapine 10 mg injection, vial 21485011000036103 olanzapine +34755011000036106 Marcain 0.125% with Fentanyl 100 microgram/20 mL injection solution, 5 x 20 mL vials 48341 34336011000036104 Marcain 0.125% with Fentanyl 100 microgram/20 mL injection solution, 5 x 20 mL vials 34050011000036100 Marcain 0.125% with Fentanyl 100 microgram/20 mL injection solution, 20 mL vial 52111000168101 Marcain 0.125% with Fentanyl 100 microgram/20 mL 52111000168101 Marcain 0.125% with Fentanyl 100 microgram/20 mL 35184011000036104 bupivacaine hydrochloride 0.125% (25 mg/20 mL) + fentanyl 100 microgram/20 mL injection, 5 x 20 mL vials 34894011000036104 bupivacaine hydrochloride 0.125% (25 mg/20 mL) + fentanyl 100 microgram/20 mL injection, vial 34840011000036101 bupivacaine + fentanyl +700028791000036106 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 500 mg compressed pessary, 1, strip pack 271000168101 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 500 mg compressed pessary, 1 80242011000036100 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 500 mg compressed pessary 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 28089011000036100 clotrimazole 500 mg pessary, 1 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +1015241000168107 Aripiprazole (ZP) 15 mg uncoated tablet, 30, blister pack 217249 1015231000168103 Aripiprazole (ZP) 15 mg uncoated tablet, 30 1015221000168101 Aripiprazole (ZP) 15 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +931691000168103 Centevo 100/25/200 mg film-coated tablet, 60, bottle 238855 931681000168101 Centevo 100/25/200 mg film-coated tablet, 60 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931671000168104 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 60 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +931374011000036100 Cetirizine Hydrochloride (Chemmart) 10 mg film-coated tablet, 10, blister pack 134694 930606011000036101 Cetirizine Hydrochloride (Chemmart) 10 mg film-coated tablet, 10 929968011000036101 Cetirizine Hydrochloride (Chemmart) 10 mg film-coated tablet 929895011000036101 Cetirizine Hydrochloride (Chemmart) 929895011000036101 Cetirizine Hydrochloride (Chemmart) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +926765011000036107 Lercadip 20 mg film-coated tablet, 28, blister pack 152710 926162011000036106 Lercadip 20 mg film-coated tablet, 28 925650011000036101 Lercadip 20 mg film-coated tablet 925544011000036104 Lercadip 925544011000036104 Lercadip 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +20196011000036103 Climara 75 microgram/24 hours patch, 4, sachet 73963 13415011000036108 Climara 75 microgram/24 hours patch, 4 6697011000036106 Climara 75 microgram/24 hours patch 4358011000036102 Climara 4358011000036102 Climara 27736011000036107 estradiol 75 microgram/24 hours patch, 4 23547011000036102 estradiol 75 microgram/24 hours patch 21238011000036103 estradiol +121431000036107 Aspirin Low Dose (Pharmacy Action) 100 mg enteric tablet, 168, blister pack 190572 120321000036107 Aspirin Low Dose (Pharmacy Action) 100 mg enteric tablet, 168 119401000036109 Aspirin Low Dose (Pharmacy Action) 100 mg enteric tablet 34661000168102 Aspirin Low Dose (Pharmacy Action) 34661000168102 Aspirin Low Dose (Pharmacy Action) 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +908261000168109 Celecoxib (Bellwether) 100 mg hard capsule, 10, blister pack 196185 908251000168107 Celecoxib (Bellwether) 100 mg hard capsule, 10 908241000168105 Celecoxib (Bellwether) 100 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +50351011000036101 Caresens diagnostic strip, 50, bottle 155697 49539011000036108 Caresens diagnostic strip, 50 48684011000036109 Caresens diagnostic strip 26781000168108 Caresens 26781000168108 Caresens 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +50351011000036101 Caresens diagnostic strip, 50, bottle 101433 49539011000036108 Caresens diagnostic strip, 50 48684011000036109 Caresens diagnostic strip 26781000168108 Caresens 26781000168108 Caresens 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +95491000036105 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet, 50, blister pack 185976 94381000036103 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet, 50 93661000036104 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet 93211000036103 Fexofenadine Hydrochloride (Pharmacy Choice) 93211000036103 Fexofenadine Hydrochloride (Pharmacy Choice) 52885011000036102 fexofenadine hydrochloride 120 mg tablet, 50 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +747531000168104 Morphine (JN) 100 mg/5 mL injection solution, 5 x 5 mL ampoules 224243 747521000168102 Morphine (JN) 100 mg/5 mL injection solution, 5 x 5 mL ampoules 747511000168109 Morphine (JN) 100 mg/5 mL injection solution, 5 mL ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 706931000168101 morphine hydrochloride trihydrate 100 mg/5 mL injection, 5 x 5 mL ampoules 706911000168106 morphine hydrochloride trihydrate 100 mg/5 mL injection, ampoule 21252011000036100 morphine +850291000168102 Aripiprazole (Sandoz) 15 mg uncoated tablet, 30, blister pack 158281 850281000168100 Aripiprazole (Sandoz) 15 mg uncoated tablet, 30 850271000168103 Aripiprazole (Sandoz) 15 mg uncoated tablet 850231000168101 Aripiprazole (Sandoz) 850231000168101 Aripiprazole (Sandoz) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +37871000036105 Epiccord 200 mg/100 mL concentrated injection, 100 mL vial 165688 34161000036104 Epiccord 200 mg/100 mL concentrated injection, 100 mL vial 33001000036101 Epiccord 200 mg/100 mL concentrated injection, 100 mL vial 32301000036107 Epiccord 32301000036107 Epiccord 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +44532011000036104 Midazolam (Sandoz) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 78976 41985011000036103 Midazolam (Sandoz) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 40303011000036103 Midazolam (Sandoz) 50 mg/10 mL injection solution, 10 mL ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +44164011000036109 Xylocaine 2% with Adrenaline 1 in 80 000 injection solution, 50 x 5 mL ampoules 54520 41640011000036101 Xylocaine 2% with Adrenaline 1 in 80 000 injection solution, 50 x 5 mL ampoules 40118011000036101 Xylocaine 2% with Adrenaline 1 in 80 000 injection solution, 5 mL ampoule 35311000168107 Xylocaine 2% with Adrenaline 1 in 80 000 35311000168107 Xylocaine 2% with Adrenaline 1 in 80 000 46459011000036109 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) + adrenaline (epinephrine) 1 in 80 000 (62.5 microgram/5 mL) injection, 50 x 5 mL ampoules 45167011000036107 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) + adrenaline (epinephrine) 1 in 80 000 (62.5 microgram/5 mL) injection, ampoule 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +60940011000036103 Claratyne 10 mg effervescent tablet, 7, blister pack 62125 56894011000036101 Claratyne 10 mg effervescent tablet, 7 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63637011000036103 loratadine 10 mg effervescent tablet, 7 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +987091000168109 Act-3 200 mg soft capsule, 24, blister pack 77290 987081000168106 Act-3 200 mg soft capsule, 24 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63930011000036103 ibuprofen 200 mg capsule, 24 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +86071011000036105 Ezovir 250 mg film-coated tablet, 20, blister pack 157788 85729011000036105 Ezovir 250 mg film-coated tablet, 20 85363011000036103 Ezovir 250 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1017251000168104 Aripiprazole (AU) 15 mg uncoated tablet, 100, bottle 217242 1017241000168101 Aripiprazole (AU) 15 mg uncoated tablet, 100 1016791000168103 Aripiprazole (AU) 15 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +61465011000036108 Paracetamol (Nyal) 500 mg uncoated tablet, 48, blister pack 90632 57390011000036107 Paracetamol (Nyal) 500 mg uncoated tablet, 48 54292011000036106 Paracetamol (Nyal) 500 mg uncoated tablet 53173011000036109 Paracetamol (Nyal) 53173011000036109 Paracetamol (Nyal) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +176801000036106 Cadivast 10/20 film-coated tablet, 30, bottle 199223 174951000036105 Cadivast 10/20 film-coated tablet, 30 172941000036103 Cadivast 10/20 film-coated tablet 45191000168104 Cadivast 10/20 45191000168104 Cadivast 10/20 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +944511000168105 Doxycycline Acne Pack (GA) 50 mg film-coated tablet, 7, blister pack 148816 944501000168107 Doxycycline Acne Pack (GA) 50 mg film-coated tablet, 7 944491000168100 Doxycycline Acne Pack (GA) 50 mg film-coated tablet 944481000168103 Doxycycline Acne Pack (GA) 944481000168103 Doxycycline Acne Pack (GA) 46827011000036107 doxycycline 50 mg tablet, 7 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +923767011000036109 Magnevist 4.69 g/10 mL injection solution, 10 mL vial 10697 923263011000036105 Magnevist 4.69 g/10 mL injection solution, 10 mL vial 920980011000036100 Magnevist 4.69 g/10 mL injection solution, 10 mL vial 920916011000036100 Magnevist 920916011000036100 Magnevist 924099011000036101 gadopentetate dimeglumine 4.69 g/10 mL injection, 10 mL vial 922070011000036108 gadopentetate dimeglumine 4.69 g/10 mL injection, vial 922037011000036106 gadopentetic acid +841631000168106 Flolan 1.5 mg powder for injection, 1 vial 80341 841621000168108 Flolan 1.5 mg powder for injection, 1 vial 7055011000036100 Flolan (epoprostenol 1.5 mg) powder for injection, 1.5 mg vial 2928011000036100 Flolan 2928011000036100 Flolan 648451000168102 epoprostenol 1.5 mg injection, 1 vial 23255011000036104 epoprostenol 1.5 mg injection, vial 21703011000036107 epoprostenol +1051821000168108 Palexia SR 100 mg modified release tablet, 90, blister pack 165346 1051811000168101 Palexia SR 100 mg modified release tablet, 90 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051801000168104 tapentadol 100 mg modified release tablet, 90 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +991341000168108 Bisoprolol (Apotex) 3.75 mg tablet, 10, blister pack 182112 991331000168104 Bisoprolol (Apotex) 3.75 mg tablet, 10 991231000168106 Bisoprolol (Apotex) 3.75 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 875801000168100 bisoprolol fumarate 3.75 mg tablet, 10 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +95431000036109 Xifaxan 550 mg film-coated tablet, 56, blister pack 183411 94291000036105 Xifaxan 550 mg film-coated tablet, 56 93521000036107 Xifaxan 550 mg film-coated tablet 93311000036109 Xifaxan 93311000036109 Xifaxan 94301000036109 rifaximin 550 mg tablet, 56 93531000036109 rifaximin 550 mg tablet 95821000036105 rifaximin +691741000168105 Dotax 80 mg/4 mL concentrated injection, 4 mL vial 215841 691731000168101 Dotax 80 mg/4 mL concentrated injection, 4 mL vial 691721000168104 Dotax 80 mg/4 mL concentrated injection, 4 mL vial 691681000168105 Dotax 691681000168105 Dotax 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +992141000168101 Bisoprolol (Apotex) 2.5 mg tablet, 7, blister pack 182126 992131000168105 Bisoprolol (Apotex) 2.5 mg tablet, 7 992121000168107 Bisoprolol (Apotex) 2.5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79206011000036106 bisoprolol fumarate 2.5 mg tablet, 7 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +176841000036109 Venlafaxine XR (Actavis) 75 mg modified release capsule, 28, blister pack 200746 175001000036109 Venlafaxine XR (Actavis) 75 mg modified release capsule, 28 173291000036107 Venlafaxine XR (Actavis) 75 mg modified release capsule 32251000168106 Venlafaxine XR (Actavis) 32251000168106 Venlafaxine XR (Actavis) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +69398011000036101 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment, 100 g, tube 42840 67198011000036102 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment, 100 g 65547011000036100 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) ointment 49231000168106 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) 49231000168106 White Soft Paraffin 50% and Liquid Paraffin 50% (Orion) 71867011000036108 liquid paraffin 50% + white soft paraffin 50% ointment, 100 g 70224011000036105 liquid paraffin 50% + white soft paraffin 50% ointment 69750011000036107 liquid paraffin + white soft paraffin +815731000168105 Deflectum 10/10 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200822 815721000168107 Deflectum 10/10 (perindopril arginine/amlodipine) uncoated tablet, 10 815711000168100 Deflectum 10/10 (perindopril arginine/amlodipine) uncoated tablet 815701000168103 Deflectum 10/10 (perindopril arginine/amlodipine) 815701000168103 Deflectum 10/10 (perindopril arginine/amlodipine) 86429011000036101 perindopril arginine 10 mg + amlodipine 10 mg tablet, 10 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +927351000168105 Metrogel 0.75% gel, 40 g, tube 15550 927341000168108 Metrogel 0.75% gel, 40 g 927321000168102 Metrogel 0.75% gel 927301000168106 Metrogel 927301000168106 Metrogel 927331000168104 metronidazole 0.75% gel, 40 g 22277011000036102 metronidazole 0.75% gel 21482011000036106 metronidazole +925266011000036109 Venlafaxine SR (SCP) 37.5 mg modified release capsule, 28, blister pack 160296 924803011000036101 Venlafaxine SR (SCP) 37.5 mg modified release capsule, 28 924497011000036102 Venlafaxine SR (SCP) 37.5 mg modified release capsule 32511000168107 Venlafaxine SR (SCP) 32511000168107 Venlafaxine SR (SCP) 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +1118201000168108 Serapine 200 mg film-coated tablet, 20, blister pack 204163 1118191000168105 Serapine 200 mg film-coated tablet, 20 1118181000168107 Serapine 200 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +815691000168103 Deflectum 10/5 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200821 815681000168101 Deflectum 10/5 (perindopril arginine/amlodipine) uncoated tablet, 30 815651000168108 Deflectum 10/5 (perindopril arginine/amlodipine) uncoated tablet 815641000168106 Deflectum 10/5 (perindopril arginine/amlodipine) 815641000168106 Deflectum 10/5 (perindopril arginine/amlodipine) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +60756011000036106 Codral Original Cold and Flu uncoated tablet, 48, blister pack 51771 56714011000036100 Codral Original Cold and Flu uncoated tablet, 48 54045011000036101 Codral Original Cold and Flu uncoated tablet 16111000168105 Codral Original Cold and Flu 16111000168105 Codral Original Cold and Flu 63523011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 48 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +44365011000036103 Fosamax 5 mg uncoated tablet, 8, blister pack 68428 41832011000036106 Fosamax 5 mg uncoated tablet, 8 40221011000036101 Fosamax 5 mg uncoated tablet 2922011000036103 Fosamax 2922011000036103 Fosamax 46638011000036100 alendronate 5 mg tablet, 8 45251011000036108 alendronate 5 mg tablet 21736011000036109 alendronate +1056131000168108 Erelzi 25 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 281783 1056121000168105 Erelzi 25 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 1056051000168101 Erelzi 25 mg/0.5 mL injection solution, 0.5 mL syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 1056111000168103 etanercept 25 mg/0.5 mL injection, 2 x 0.5 mL syringes 45042011000036108 etanercept 25 mg/0.5 mL injection, syringe 21347011000036107 etanercept +722011000168102 Hydralyte Apple/Blackcurrant powder for oral liquid, 10 x 4.9 g sachets 122622 722001000168100 Hydralyte Apple/Blackcurrant powder for oral liquid, 10 x 4.9 g sachets 721981000168100 Hydralyte Apple/Blackcurrant powder for oral liquid, 4.9 g sachet 721961000168109 Hydralyte 721961000168109 Hydralyte 721991000168102 sodium chloride 530 mg + potassium citrate monohydrate 440 mg (potassium 4 mmol) + glucose 2.91 g + citric acid 880 mg powder for oral liquid, 10 x 4.9 g sachets 721971000168103 sodium chloride 530 mg + potassium citrate monohydrate 440 mg (potassium 4 mmol) + glucose 2.91 g + citric acid 880 mg powder for oral liquid, 4.9 g sachet 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +1077781000168105 Atomoxetine (AN) 100 mg hard capsule, 14, blister pack 234798 1077771000168107 Atomoxetine (AN) 100 mg hard capsule, 14 1077741000168100 Atomoxetine (AN) 100 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830121000168107 atomoxetine 100 mg capsule, 14 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +80978011000036104 Zinc Compound (David Craig) 25% paste, 600 g, jar 14248 80511011000036105 Zinc Compound (David Craig) 25% paste, 600 g 80172011000036104 Zinc Compound (David Craig) 25% paste 80127011000036103 Zinc Compound (David Craig) 80127011000036103 Zinc Compound (David Craig) 81605011000036106 zinc oxide 25% paste, 600 g 81270011000036109 zinc oxide 25% paste 77446011000036105 zinc oxide +674521000168100 Orencia Ultrasafe Passive Needle Guard and Flange Extender 125 mg/mL injection solution, 4 x 1 mL syringes 206764 674511000168107 Orencia Ultrasafe Passive Needle Guard and Flange Extender 125 mg/mL injection solution, 4 x 1 mL syringes 674501000168109 Orencia Ultrasafe Passive Needle Guard and Flange Extender 125 mg/mL injection solution, syringe 32969011000036101 Orencia 32969011000036101 Orencia 7511000036109 abatacept 125 mg/mL injection, 4 x 1 mL syringes 2361000036100 abatacept 125 mg/mL injection, syringe 33635011000036100 abatacept +77164011000036108 Supradyn effervescent tablet, 30, tube 117506 76591011000036100 Supradyn effervescent tablet, 30 76050011000036104 Supradyn effervescent tablet 75924011000036102 Supradyn 75924011000036102 Supradyn 78145011000036107 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 80 mg + biotin 200 microgram + calcium (as carbonate) 100 mg + colecalciferol 7.5 microgram + copper (as gluconate) 500 microgram + cyanocobalamin 4 microgram + ferrous sulfate 5 mg (iron 1.5 mg) + folic acid 200 microgram + magnesium (as phosphate dibasic trihydrate) 9 mg + manganese (as sulfate monohydrate) 500 microgram + nicotinamide 40 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 3 mg + riboflavin sodium phosphate 13 mg + monophosphothiamine 11.1 mg + zinc (as sulfate monohydrate) 1 mg effervescent tablet, 30 77511011000036100 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 80 mg + biotin 200 microgram + calcium (as carbonate) 100 mg + colecalciferol 7.5 microgram + copper (as gluconate) 500 microgram + cyanocobalamin 4 microgram + ferrous sulfate 5 mg (iron 1.5 mg) + folic acid 200 microgram + magnesium (as phosphate dibasic trihydrate) 9 mg + manganese (as sulfate monohydrate) 500 microgram + nicotinamide 40 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 3 mg + riboflavin sodium phosphate 13 mg + monophosphothiamine 11.1 mg + zinc (as sulfate monohydrate) 1 mg effervescent tablet 77439011000036102 dl-alpha-tocopherol + ascorbic acid + biotin + calcium carbonate + colecalciferol + copper gluconate + cyanocobalamin + ferrous sulfate + folic acid + magnesium phosphate dibasic trihydrate + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + monophosphothiamine + zinc sulfate monohydrate +1082111000168109 Zirizine 10 mg film-coated tablet, 60, blister pack 286354 1082101000168106 Zirizine 10 mg film-coated tablet, 60 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 63288011000036107 cetirizine hydrochloride 10 mg tablet, 60 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +50467011000036106 Telfa Non Adherent (1970C) 5 cm x 7.5 cm dressing, 10, carton 49400011000036101 Telfa Non Adherent (1970C) 5 cm x 7.5 cm dressing, 10 48532011000036100 Telfa Non Adherent (1970C) 5 cm x 7.5 cm dressing 51971000168101 Telfa Non Adherent (1970C) 51971000168101 Telfa Non Adherent (1970C) 51385011000036100 dressing non adherent 5 cm x 7.5 cm dressing, 10 50906011000036106 dressing non adherent 5 cm x 7.5 cm dressing 50699011000036100 dressing non adherent +18071011000036108 Tarka 4/240 modified release tablet, 28, blister pack 104664 11310011000036103 Tarka 4/240 modified release tablet, 28 5929011000036106 Tarka 4/240 modified release tablet 22571000168101 Tarka 4/240 22571000168101 Tarka 4/240 26599011000036109 trandolapril 4 mg + verapamil hydrochloride 240 mg modified release tablet, 28 22007011000036101 trandolapril 4 mg + verapamil hydrochloride 240 mg modified release tablet 21883011000036109 trandolapril + verapamil +1086451000168103 Hayfever Prevention and Relief (Pharmacy Choice) 50 microgram/actuation nasal spray, 65 actuations, pump pack 280064 1086441000168100 Hayfever Prevention and Relief (Pharmacy Choice) 50 microgram/actuation nasal spray, 65 actuations 1086431000168109 Hayfever Prevention and Relief (Pharmacy Choice) 50 microgram/actuation nasal spray, actuation 1086421000168106 Hayfever Prevention and Relief (Pharmacy Choice) 1086421000168106 Hayfever Prevention and Relief (Pharmacy Choice) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +966171000168109 Claraderm 0.05% cream, 15 g, tube 18412 966161000168103 Claraderm 0.05% cream, 15 g 966061000168102 Claraderm 0.05% cream 966031000168105 Claraderm 966031000168105 Claraderm 966151000168100 alclometasone dipropionate 0.05% cream, 15 g 966051000168104 alclometasone dipropionate 0.05% cream 966041000168101 alclometasone dipropionate +104021000036109 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet, 28, blister pack 213495 101531000036102 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet, 28 99381000036104 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet 97731000036109 Donepezil Hydrochloride (Apo) 97731000036109 Donepezil Hydrochloride (Apo) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +104021000036109 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet, 28, blister pack 168327 101531000036102 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet, 28 99381000036104 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet 97731000036109 Donepezil Hydrochloride (Apo) 97731000036109 Donepezil Hydrochloride (Apo) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +32577011000036109 Alepam 30 mg uncoated tablet, 90, blister pack 17599 32372011000036109 Alepam 30 mg uncoated tablet, 90 32246011000036103 Alepam 30 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 32772011000036108 oxazepam 30 mg tablet, 90 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +60698011000036109 Dimetapp DM Elixir oral liquid solution, 200 mL, bottle 43315 56656011000036108 Dimetapp DM Elixir oral liquid solution, 200 mL 54023011000036100 Dimetapp DM Elixir oral liquid solution, 5 mL 11581000168104 Dimetapp DM Elixir 11581000168104 Dimetapp DM Elixir 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +1008661000168101 Cefuroxime (AL) 250 mg film-coated tablet, 14, blister pack 273227 1008651000168103 Cefuroxime (AL) 250 mg film-coated tablet, 14 1008581000168106 Cefuroxime (AL) 250 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 27187011000036105 cefuroxime 250 mg tablet, 14 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +60514011000036106 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 30 mL, bottle 151333 56472011000036109 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 30 mL 53932011000036103 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 63641011000036107 ibuprofen 100 mg/5 mL oral liquid, 30 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +858881000168101 PKU Bettermilk Lite powder for oral liquid, 30 x 51 g sachets 858871000168104 PKU Bettermilk Lite powder for oral liquid, 30 x 51 g sachets 858851000168108 PKU Bettermilk Lite powder for oral liquid, 51 g sachet 858751000168103 PKU Bettermilk Lite 858751000168103 PKU Bettermilk Lite 858861000168105 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 30 x 51 g sachets 858841000168106 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 51 g sachet 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +790481000168105 Inpler 25 mg film-coated tablet, 60, blister pack 231447 790471000168107 Inpler 25 mg film-coated tablet, 60 790411000168104 Inpler 25 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 777031000168105 eplerenone 25 mg tablet, 60 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +931674011000036109 Aranesp with Automatic Needle Guard 60 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 166688 930834011000036109 Aranesp with Automatic Needle Guard 60 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 930062011000036105 Aranesp with Automatic Needle Guard 60 microgram/0.3 mL injection solution, 0.3 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27857011000036109 darbepoetin alfa 60 microgram/0.3 mL injection, 4 x 0.3 mL syringes 23185011000036105 darbepoetin alfa 60 microgram/0.3 mL injection, syringe 21234011000036105 darbepoetin alfa +31131000036108 Irbesartan HCT 150/12.5 (Sigma) film-coated tablet, 30, blister pack 171434 28301000036107 Irbesartan HCT 150/12.5 (Sigma) film-coated tablet, 30 26691000036107 Irbesartan HCT 150/12.5 (Sigma) film-coated tablet 53221000168108 Irbesartan HCT 150/12.5 (Sigma) 53221000168108 Irbesartan HCT 150/12.5 (Sigma) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +974801000168105 Xatral SR 10 mg modified release tablet, 20, bottle 90911 974791000168109 Xatral SR 10 mg modified release tablet, 20 925752011000036106 Xatral SR 10 mg modified release tablet 33861000168103 Xatral SR 33861000168103 Xatral SR 974781000168106 alfuzosin hydrochloride 10 mg modified release tablet, 20 927041011000036104 alfuzosin hydrochloride 10 mg modified release tablet 926977011000036100 alfuzosin +926774011000036102 Colgate Total Mint Stripe toothpaste, 110 g, tube 154430 926171011000036105 Colgate Total Mint Stripe toothpaste, 110 g 925655011000036105 Colgate Total Mint Stripe toothpaste 20541000168109 Colgate Total Mint Stripe 20541000168109 Colgate Total Mint Stripe 927331011000036104 sodium fluoride 0.22% + triclosan 0.3% toothpaste, 110 g 926991011000036101 sodium fluoride 0.22% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +961831000168109 Lacosamide (Apo) 50 mg film-coated tablet, 14, blister pack 230187 961821000168106 Lacosamide (Apo) 50 mg film-coated tablet, 14 961811000168104 Lacosamide (Apo) 50 mg film-coated tablet 959641000168109 Lacosamide (Apo) 959641000168109 Lacosamide (Apo) 84632011000036104 lacosamide 50 mg tablet, 14 84431011000036107 lacosamide 50 mg tablet 84408011000036109 lacosamide +168321000036104 Dermaveen Shower and Bath Oil 5% bath oil, 500 mL, pump pack 130060 167791000036104 Dermaveen Shower and Bath Oil 5% bath oil, 500 mL 167531000036105 Dermaveen Shower and Bath Oil 5% bath oil 9861000168106 Dermaveen Shower and Bath Oil 9861000168106 Dermaveen Shower and Bath Oil 167801000036100 colloidal oatmeal 5% bath oil, 500 mL 167541000036100 colloidal oatmeal 5% bath oil 77444011000036102 colloidal oatmeal +824321000168100 Consti-Eze with Senna film-coated tablet, 90, bottle 198928 824311000168107 Consti-Eze with Senna film-coated tablet, 90 824281000168105 Consti-Eze with Senna film-coated tablet 824271000168107 Consti-Eze with Senna 824271000168107 Consti-Eze with Senna 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +50270011000036102 Lyofoam C (603025) 10 cm x 10 cm dressing, 10, carton 49353011000036107 Lyofoam C (603025) 10 cm x 10 cm dressing, 10 48765011000036100 Lyofoam C (603025) 10 cm x 10 cm dressing 38711000168104 Lyofoam C (603025) 38711000168104 Lyofoam C (603025) 51331011000036108 dressing foam with charcoal malodorous wound 10 cm x 10 cm dressing, 10 50858011000036107 dressing foam with charcoal malodorous wound 10 cm x 10 cm dressing 50780011000036103 dressing foam with charcoal malodorous wound +31291000036103 Benadryl Mucus Relief plus Decongestant oral liquid solution, 200 mL, bottle 176045 28681000036109 Benadryl Mucus Relief plus Decongestant oral liquid solution, 200 mL 26491000036105 Benadryl Mucus Relief plus Decongestant oral liquid solution, 5 mL 24211000168100 Benadryl Mucus Relief plus Decongestant 24211000168100 Benadryl Mucus Relief plus Decongestant 63379011000036101 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 61932011000036107 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61724011000036106 guaifenesin + phenylephrine +858721000168106 Amidep 50 mg film-coated tablet, 50, blister pack 215347 858711000168104 Amidep 50 mg film-coated tablet, 50 858681000168100 Amidep 50 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1066401000168104 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 24, blister pack 161544 1066391000168101 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 24 1066211000168102 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +925101000168102 Androgel 1% (50 mg/5 g) gel, 28 x 5 g sachets 96130 925091000168107 Androgel 1% (50 mg/5 g) gel, 28 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 28170011000036106 testosterone 1% (50 mg/5 g) gel, 28 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +37711000036105 Respaz 2 mg film-coated tablet, 60, blister pack 165540 33991000036105 Respaz 2 mg film-coated tablet, 60 32511000036100 Respaz 2 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +123391000036104 Olanzapine ODT (Pharmacy Choice) 10 mg orally disintegrating tablet, 28, blister pack 163427 123131000036103 Olanzapine ODT (Pharmacy Choice) 10 mg orally disintegrating tablet, 28 122701000036104 Olanzapine ODT (Pharmacy Choice) 10 mg orally disintegrating tablet 15181000168106 Olanzapine ODT (Pharmacy Choice) 15181000168106 Olanzapine ODT (Pharmacy Choice) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +60456011000036101 Sleep Aid (Pharmacist) 25 mg tablet, 12, blister pack 149474 56414011000036107 Sleep Aid (Pharmacist) 25 mg tablet, 12 53916011000036105 Sleep Aid (Pharmacist) 25 mg tablet 53353011000036101 Sleep Aid (Pharmacist) 53353011000036101 Sleep Aid (Pharmacist) 63826011000036106 doxylamine succinate 25 mg tablet, 12 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +176681000036101 Cadivast 5/80 film-coated tablet, 30, bottle 199210 174891000036108 Cadivast 5/80 film-coated tablet, 30 172911000036104 Cadivast 5/80 film-coated tablet 61011000168101 Cadivast 5/80 61011000168101 Cadivast 5/80 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +970551000168103 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) film-coated tablet, 30, blister pack 265835 949311000168101 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) film-coated tablet, 30 949291000168100 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) film-coated tablet 949261000168107 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) 949261000168107 Tenofovir Disoproxil Emtricitabine 300/200 (Mylan) 949301000168104 tenofovir disoproxil maleate 300 mg + emtricitabine 200 mg tablet, 30 949281000168103 tenofovir disoproxil maleate 300 mg + emtricitabine 200 mg tablet 851481000168106 tenofovir disoproxil + emtricitabine +86118011000036104 Nurofen Zavance capsule shaped 200 mg sugar coated tablet, 24, blister pack 156294 85698011000036104 Nurofen Zavance capsule shaped 200 mg sugar coated tablet, 24 85339011000036106 Nurofen Zavance capsule shaped 200 mg sugar coated tablet 5481000168102 Nurofen Zavance 5481000168102 Nurofen Zavance 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +914381000168101 Amoxyclav 500/125 (Generic Health) film-coated tablet, 60, blister pack 255077 914371000168104 Amoxyclav 500/125 (Generic Health) film-coated tablet, 60 914321000168100 Amoxyclav 500/125 (Generic Health) film-coated tablet 914281000168105 Amoxyclav 500/125 (Generic Health) 914281000168105 Amoxyclav 500/125 (Generic Health) 51545011000036108 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 60 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +991501000168102 Aripiprazole (Apotex) 20 mg uncoated tablet, 30, blister pack 152902 991491000168109 Aripiprazole (Apotex) 20 mg uncoated tablet, 30 991461000168102 Aripiprazole (Apotex) 20 mg uncoated tablet 990871000168102 Aripiprazole (Apotex) 990871000168102 Aripiprazole (Apotex) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +59880011000036100 Worm Treatment (Amcal) 100 mg chewable tablet, 6, blister pack 116337 55842011000036102 Worm Treatment (Amcal) 100 mg chewable tablet, 6 53624011000036106 Worm Treatment (Amcal) 100 mg chewable tablet 53152011000036104 Worm Treatment (Amcal) 53152011000036104 Worm Treatment (Amcal) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +59880011000036100 Worm Treatment (Amcal) 100 mg chewable tablet, 6, blister pack 222321 55842011000036102 Worm Treatment (Amcal) 100 mg chewable tablet, 6 53624011000036106 Worm Treatment (Amcal) 100 mg chewable tablet 53152011000036104 Worm Treatment (Amcal) 53152011000036104 Worm Treatment (Amcal) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +21014011000036108 Enalapril Maleate (GenRx) 20 mg uncoated tablet, 30, blister pack 96332 14160011000036102 Enalapril Maleate (GenRx) 20 mg uncoated tablet, 30 7439011000036105 Enalapril Maleate (GenRx) 20 mg uncoated tablet 3990011000036104 Enalapril Maleate (GenRx) 3990011000036104 Enalapril Maleate (GenRx) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +925189011000036100 Claratyne Children's Grape 1 mg/mL oral liquid solution, 60 mL, bottle 155064 924726011000036100 Claratyne Children's Grape 1 mg/mL oral liquid solution, 60 mL 924436011000036105 Claratyne Children's Grape 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63591011000036105 loratadine 1 mg/mL oral liquid, 60 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +60681011000036104 Lemsip Pharmacy Flu Strength Nightime powder for oral liquid, 1 sachet 42690 56639011000036103 Lemsip Pharmacy Flu Strength Nightime powder for oral liquid, 1 sachet 54018011000036104 Lemsip Pharmacy Flu Strength Nightime powder for oral liquid, 1 sachet 53462011000036105 Lemsip Pharmacy Flu Strength Nightime 53462011000036105 Lemsip Pharmacy Flu Strength Nightime 63476011000036100 chlorphenamine maleate 4 mg + dextromethorphan hydrobromide monohydrate 15 mg + paracetamol 650 mg + pseudoephedrine hydrochloride 30 mg powder for oral liquid, 1 sachet 61989011000036106 chlorphenamine maleate 4 mg + dextromethorphan hydrobromide monohydrate 15 mg + paracetamol 650 mg + pseudoephedrine hydrochloride 30 mg powder for oral liquid, 1 sachet 61747011000036103 chlorphenamine + dextromethorphan + paracetamol + pseudoephedrine +68719011000036105 Strepsils orange lozenge, 4, blister pack 115527 66623011000036104 Strepsils orange lozenge, 4 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71524011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 4 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +807791000168104 Irbesartan (Apo) 150 mg film-coated tablet, 30, blister pack 213310 807781000168102 Irbesartan (Apo) 150 mg film-coated tablet, 30 807771000168100 Irbesartan (Apo) 150 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +807791000168104 Irbesartan (Apo) 150 mg film-coated tablet, 30, blister pack 169787 807781000168102 Irbesartan (Apo) 150 mg film-coated tablet, 30 807771000168100 Irbesartan (Apo) 150 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1017181000168104 Famciclovir (Apotex) 500 mg film-coated tablet, 28, blister pack 172444 1017171000168102 Famciclovir (Apotex) 500 mg film-coated tablet, 28 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 933225041000036104 famciclovir 500 mg tablet, 28 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +959821000168104 Ciram 10 mg film-coated tablet, 1000, bottle 158857 959811000168106 Ciram 10 mg film-coated tablet, 1000 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202991000036107 citalopram 10 mg tablet, 1000 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +43864011000036102 Lisinotrust 20 mg uncoated tablet, 30, blister pack 128162 41360011000036104 Lisinotrust 20 mg uncoated tablet, 30 39855011000036107 Lisinotrust 20 mg uncoated tablet 39731011000036109 Lisinotrust 39731011000036109 Lisinotrust 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +60169011000036104 Exforge 5/160 film-coated tablet, 28, blister pack 130834 56128011000036107 Exforge 5/160 film-coated tablet, 28 53802011000036104 Exforge 5/160 film-coated tablet 8411000168102 Exforge 5/160 8411000168102 Exforge 5/160 63232011000036103 amlodipine 5 mg + valsartan 160 mg tablet, 28 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +816331000168102 Adronat 5 mg uncoated tablet, 8, blister pack 119097 816321000168100 Adronat 5 mg uncoated tablet, 8 816311000168107 Adronat 5 mg uncoated tablet 816251000168103 Adronat 816251000168103 Adronat 46638011000036100 alendronate 5 mg tablet, 8 45251011000036108 alendronate 5 mg tablet 21736011000036109 alendronate +176641000036105 Mistrom 50 mg film-coated tablet, 100, blister pack 192784 174851000036104 Mistrom 50 mg film-coated tablet, 100 173221000036109 Mistrom 50 mg film-coated tablet 172791000036106 Mistrom 172791000036106 Mistrom 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +34646011000036109 Marcain 0.125% with Fentanyl 100 microgram/20 mL injection solution, 5 x 20 mL ampoules 123384 34235011000036100 Marcain 0.125% with Fentanyl 100 microgram/20 mL injection solution, 5 x 20 mL ampoules 33977011000036109 Marcain 0.125% with Fentanyl 100 microgram/20 mL injection solution, 20 mL ampoule 52111000168101 Marcain 0.125% with Fentanyl 100 microgram/20 mL 52111000168101 Marcain 0.125% with Fentanyl 100 microgram/20 mL 35111011000036104 bupivacaine hydrochloride 0.125% (25 mg/20 mL) + fentanyl 100 microgram/20 mL injection, 5 x 20 mL ampoules 34853011000036107 bupivacaine hydrochloride 0.125% (25 mg/20 mL) + fentanyl 100 microgram/20 mL injection, ampoule 34840011000036101 bupivacaine + fentanyl +907941000168104 Celecoxib (Generic Health) 200 mg hard capsule, 60, blister pack 196183 907931000168108 Celecoxib (Generic Health) 200 mg hard capsule, 60 907781000168107 Celecoxib (Generic Health) 200 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +50225011000036107 Surepress Compression (650947) 10 cm x 3 m high stretch bandage, 1, carton 49311011000036103 Surepress Compression (650947) 10 cm x 3 m high stretch bandage, 1 48674011000036100 Surepress Compression (650947) 10 cm x 3 m high stretch bandage 49571000168107 Surepress Compression (650947) 49571000168107 Surepress Compression (650947) 51294011000036109 bandage compression 10 cm x 3 m high stretch bandage, 1 50823011000036103 bandage compression 10 cm x 3 m high stretch bandage 50716011000036103 bandage compression +995751000168109 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24, blister pack 72150 995741000168107 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24 995681000168107 Difflam Lozenge Honey and Lemon Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995731000168103 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +60214011000036101 Demazin Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 133205 56173011000036103 Demazin Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24 53822011000036106 Demazin Cold and Flu Day and Night (Night) film-coated tablet 13511000168106 Demazin Cold and Flu Day and Night 13771000168108 Demazin Cold and Flu Day and Night (Night) 63252011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +60214011000036101 Demazin Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 133205 56173011000036103 Demazin Cold and Flu Day and Night (16 x Day tablets, 8 x Night tablets), 24 53821011000036100 Demazin Cold and Flu Day and Night (Day) film-coated tablet 13511000168106 Demazin Cold and Flu Day and Night 13631000168102 Demazin Cold and Flu Day and Night (Day) 63252011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62109011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +1021451000168104 Voriconazole (Apo) 50 mg film-coated tablet, 100, blister pack 238281 1021441000168101 Voriconazole (Apo) 50 mg film-coated tablet, 100 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46812011000036100 voriconazole 50 mg tablet, 100 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +56741000036109 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 100, bottle 164952 41426011000036102 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 100 39900011000036100 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +1051981000168101 Oxylieve MR 40 mg modified release tablet, 60, blister pack 153602 1051971000168104 Oxylieve MR 40 mg modified release tablet, 60 1051831000168106 Oxylieve MR 40 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +1084121000168108 Salofalk 500 mg modified release granules, 300 sachets 80648 1084111000168101 Salofalk 500 mg modified release granules, 300 sachets 1084031000168105 Salofalk 500 mg modified release granules, 500 mg sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084101000168104 mesalazine 500 mg modified release granules, 300 sachets 1084021000168107 mesalazine 500 mg modified release granules, sachet 21351011000036101 mesalazine +653051000168103 Panafen Plus film-coated tablet, 30, blister pack 106616 653041000168100 Panafen Plus film-coated tablet, 30 53642011000036100 Panafen Plus film-coated tablet 53591011000036109 Panafen Plus 53591011000036109 Panafen Plus 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +991981000168102 Famciclovir (Apotex) 125 mg film-coated tablet, 10, blister pack 160557 991971000168100 Famciclovir (Apotex) 125 mg film-coated tablet, 10 991961000168106 Famciclovir (Apotex) 125 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 87821011000036109 famciclovir 125 mg tablet, 10 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +923921011000036102 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 90, blister pack 170439 923465011000036107 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet, 90 923095011000036100 Metformin Hydrochloride 1000 (Ranbaxy) 1 g film-coated tablet 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 16271000168108 Metformin Hydrochloride 1000 (Ranbaxy) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1047711000168100 Bupretec 10 microgram/hour patch, 1, sachet 234731 1047701000168103 Bupretec 10 microgram/hour patch, 1 1047691000168103 Bupretec 10 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1046631000168104 buprenorphine 10 microgram/hour patch, 1 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +69507011000036102 Albalon Relief 0.12% eye drops solution, 30 x 0.4 mL unit doses, ampoule 52293 67307011000036107 Albalon Relief 0.12% eye drops solution, 30 x 0.4 mL unit doses 65601011000036108 Albalon Relief 0.12% eye drops solution, 0.4 mL unit dose 65103011000036108 Albalon Relief 65103011000036108 Albalon Relief 71853011000036108 phenylephrine hydrochloride 0.12% eye drops, 30 x 0.4 mL unit doses 70215011000036103 phenylephrine hydrochloride 0.12% eye drops, unit dose 37732011000036107 phenylephrine +87667011000036104 Ciprofloxacin (GA) 750 mg film-coated tablet, 10, blister pack 148856 87424011000036101 Ciprofloxacin (GA) 750 mg film-coated tablet, 10 87303011000036100 Ciprofloxacin (GA) 750 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +651361000168103 Quetia 300 mg film-coated tablet, 20, blister pack 204156 651351000168100 Quetia 300 mg film-coated tablet, 20 651301000168104 Quetia 300 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +44590011000036107 Vfend 50 mg film-coated tablet, 10, blister pack 82507 42043011000036103 Vfend 50 mg film-coated tablet, 10 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46811011000036106 voriconazole 50 mg tablet, 10 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +95351000036109 Lamotrigine (Aspen) 200 mg tablet, 56, blister pack 150754 94171000036103 Lamotrigine (Aspen) 200 mg tablet, 56 93621000036108 Lamotrigine (Aspen) 200 mg tablet 83951000036105 Lamotrigine (Aspen) 83951000036105 Lamotrigine (Aspen) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +976901000168107 Pregabalin (Apotex) 50 mg hard capsule, 14, blister pack 267553 976891000168108 Pregabalin (Apotex) 50 mg hard capsule, 14 976881000168105 Pregabalin (Apotex) 50 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +60848011000036106 Avil 45.3 mg uncoated tablet, 10, bottle 58687 56804011000036104 Avil 45.3 mg uncoated tablet, 10 54085011000036107 Avil 45.3 mg uncoated tablet 4941000168102 Avil 4941000168102 Avil 63580011000036104 pheniramine maleate 45.3 mg tablet, 10 62020011000036103 pheniramine maleate 45.3 mg tablet 61798011000036109 pheniramine +683061000168109 Cisatracurium (AFT) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 191831 683051000168107 Cisatracurium (AFT) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 683011000168106 Cisatracurium (AFT) 10 mg/5 mL injection solution, 5 mL ampoule 682941000168104 Cisatracurium (AFT) 682941000168104 Cisatracurium (AFT) 161571000036104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL ampoules 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +999931000168104 Rivaroxaban (Apo) 20 mg film-coated tablet, 28, blister pack 269600 999921000168102 Rivaroxaban (Apo) 20 mg film-coated tablet, 28 999911000168109 Rivaroxaban (Apo) 20 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 80481000036103 rivaroxaban 20 mg tablet, 28 78911000036106 rivaroxaban 20 mg tablet 79098011000036103 rivaroxaban +44256011000036107 Malarone 250/100 film-coated tablet, 12, blister pack 61100 41727011000036107 Malarone 250/100 film-coated tablet, 12 40169011000036108 Malarone 250/100 film-coated tablet 9841000168107 Malarone 250/100 9841000168107 Malarone 250/100 46534011000036100 atovaquone 250 mg + proguanil hydrochloride 100 mg tablet, 12 45207011000036105 atovaquone 250 mg + proguanil hydrochloride 100 mg tablet 44920011000036109 atovaquone + proguanil +44832011000036100 Enablex 7.5 mg modified release tablet, 28, blister pack 99418 42264011000036100 Enablex 7.5 mg modified release tablet, 28 40410011000036102 Enablex 7.5 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47017011000036103 darifenacin 7.5 mg modified release tablet, 28 45376011000036105 darifenacin 7.5 mg modified release tablet 44860011000036105 darifenacin +69415011000036100 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 200 g, jar 47538 67215011000036105 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 200 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71766011000036108 psyllium husk powder 578 mg/g powder for oral liquid, 200 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +37671000036109 Respaz 500 microgram film-coated tablet, 60, blister pack 165538 33951000036101 Respaz 500 microgram film-coated tablet, 60 32551000036101 Respaz 500 microgram film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +933216161000036101 Polyvalent Snake Antivenom (Australia and Papua New Guinea) (CSL) intravenous infusion injection, 1 vial 74899 933205801000036102 Polyvalent Snake Antivenom (Australia and Papua New Guinea) (CSL) intravenous infusion injection, 1 vial 933196831000036102 Polyvalent Snake Antivenom (Australia and Papua New Guinea) (CSL) intravenous infusion injection, vial 22131000168107 Polyvalent Snake Antivenom (Australia and Papua New Guinea) (CSL) 22131000168107 Polyvalent Snake Antivenom (Australia and Papua New Guinea) (CSL) 933205811000036100 polyvalent Australian snake antivenom injection, 1 vial 933196841000036107 polyvalent Australian snake antivenom injection, vial 74951011000036107 polyvalent Australian snake antivenom +103941000036104 Irbesartan (Sandoz) 150 mg film-coated tablet, 30, bottle 167408 101281000036100 Irbesartan (Sandoz) 150 mg film-coated tablet, 30 99401000036104 Irbesartan (Sandoz) 150 mg film-coated tablet 98031000036105 Irbesartan (Sandoz) 98031000036105 Irbesartan (Sandoz) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1089921000168107 Dymafen film-coated tablet, 6, blister pack 282486 1089911000168100 Dymafen film-coated tablet, 6 1089881000168100 Dymafen film-coated tablet 1089871000168103 Dymafen 1089871000168103 Dymafen 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +928907011000036103 Fluconazole One (Apo) 150 mg hard capsule, 1, blister pack 152959 928269011000036107 Fluconazole One (Apo) 150 mg hard capsule, 1 927918011000036107 Fluconazole One (Apo) 150 mg hard capsule 55731000168104 Fluconazole One (Apo) 55731000168104 Fluconazole One (Apo) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +922861000168101 Amlodipine (Sandoz) 2.5 mg uncoated tablet, 30, blister pack 124576 912961000168101 Amlodipine (Sandoz) 2.5 mg uncoated tablet, 30 912951000168103 Amlodipine (Sandoz) 2.5 mg uncoated tablet 3220011000036106 Amlodipine (Sandoz) 3220011000036106 Amlodipine (Sandoz) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +1060461000168101 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 28, blister pack 234477 1060451000168103 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 28 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911891000168107 rosuvastatin 40 mg tablet, 28 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +31201000036106 Irbesartan (Sigma) 300 mg film-coated tablet, 30, blister pack 171461 28391000036104 Irbesartan (Sigma) 300 mg film-coated tablet, 30 26671000036108 Irbesartan (Sigma) 300 mg film-coated tablet 26081000036104 Irbesartan (Sigma) 26081000036104 Irbesartan (Sigma) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +19009011000036103 Dothep 25 mg capsule, 50, blister pack 34419 12314011000036109 Dothep 25 mg capsule, 50 6003011000036108 Dothep 25 mg capsule 3854011000036109 Dothep 3854011000036109 Dothep 27057011000036108 dosulepin (dothiepin) hydrochloride 25 mg capsule, 50 22426011000036100 dosulepin (dothiepin) hydrochloride 25 mg capsule 21722011000036107 dosulepin (dothiepin) +695991000168103 Gammanorm 1.65 g/10 mL injection solution, 10 mL vial 128703 695981000168101 Gammanorm 1.65 g/10 mL injection solution, 10 mL vial 695961000168105 Gammanorm 1.65 g/10 mL injection solution, 10 mL vial 695941000168106 Gammanorm 695941000168106 Gammanorm 695971000168104 normal immunoglobulin 1.65 g/10 mL injection, 10 mL vial 695951000168108 normal immunoglobulin 1.65 g/10 mL injection, vial 74965011000036103 normal immunoglobulin +1069051000168102 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 20, blister pack 196531 1069041000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 20 1068991000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +59972011000036103 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 25 mL, bottle 120724 55934011000036103 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 25 mL 53666011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63163011000036103 ibuprofen 40 mg/mL oral liquid, 25 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +61482011000036103 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 24, blister pack 91993 57407011000036103 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 24 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61482011000036103 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 24, blister pack 82364 57407011000036103 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 24 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +652971000168104 Amoxil 1 g powder for injection, 10 vials 11137 652961000168105 Amoxil 1 g powder for injection, 10 vials 36117011000036105 Amoxil 1 g powder for injection, vial 3738011000036101 Amoxil 3738011000036101 Amoxil 46896011000036102 amoxicillin 1 g injection, 10 vials 37849011000036104 amoxicillin 1 g injection, vial 21415011000036100 amoxicillin +95671000036108 Azithromycin (Apo) 500 mg film-coated tablet, 15, blister pack 195910 94571000036108 Azithromycin (Apo) 500 mg film-coated tablet, 15 93381000036101 Azithromycin (Apo) 500 mg film-coated tablet 93201000036100 Azithromycin (Apo) 93201000036100 Azithromycin (Apo) 927345011000036101 azithromycin 500 mg tablet, 15 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +44348011000036100 Novonorm 2 mg uncoated tablet, 90, blister pack 67271 41815011000036106 Novonorm 2 mg uncoated tablet, 90 40209011000036105 Novonorm 2 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46621011000036107 repaglinide 2 mg tablet, 90 45241011000036105 repaglinide 2 mg tablet 44883011000036104 repaglinide +37458011000036103 Xanax 1 mg uncoated tablet, 9, blister pack 12353 36728011000036106 Xanax 1 mg uncoated tablet, 9 5976011000036101 Xanax 1 mg uncoated tablet 3527011000036101 Xanax 3527011000036101 Xanax 38638011000036105 alprazolam 1 mg tablet, 9 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +925021000168105 Androgel 1% (50 mg/5 g) gel, 7 x 5 g sachets 96130 925011000168103 Androgel 1% (50 mg/5 g) gel, 7 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925001000168101 testosterone 1% (50 mg/5 g) gel, 7 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +919251000168102 Temolide 100 mg hard capsule, 20, bottle 192688 919241000168104 Temolide 100 mg hard capsule, 20 919211000168103 Temolide 100 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 164321000036105 temozolomide 100 mg capsule, 20 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +170651000036106 Optifresh Plus 1% eye drops solution, 30 x 0.4 mL unit doses, ampoule 169701000036100 Optifresh Plus 1% eye drops solution, 30 x 0.4 mL unit doses 169101000036101 Optifresh Plus 1% eye drops solution, 0.4 mL unit dose 171551000036104 Optifresh Plus 171551000036104 Optifresh Plus 35756011000036108 carmellose sodium 1% eye drops, 30 x 0.4 mL unit doses 35698011000036106 carmellose sodium 1% eye drops, unit dose 35688011000036105 carmellose sodium +82902011000036103 Progesterone (Orion) 200 mg moulded pessary, 15, strip pack 165111 12218011000036109 Progesterone (Orion) 200 mg moulded pessary, 15 5277011000036102 Progesterone (Orion) 200 mg moulded pessary 3508011000036108 Progesterone (Orion) 3508011000036108 Progesterone (Orion) 26989011000036100 progesterone 200 mg pessary, 15 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +933229451000036109 Nucosef Syrup oral liquid solution, 20 mL, bottle 11155 933223341000036102 Nucosef Syrup oral liquid solution, 20 mL 933219391000036101 Nucosef Syrup oral liquid solution, 10 mL 17951000168105 Nucosef Syrup 17951000168105 Nucosef Syrup 63124011000036108 codeine phosphate hemihydrate 14.9 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 20 mL 61864011000036101 codeine phosphate hemihydrate 14.9 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61752011000036103 codeine + pseudoephedrine +1053191000168100 Lamotrigine (SZ) 25 mg tablet, 56, blister pack 143556 1053181000168103 Lamotrigine (SZ) 25 mg tablet, 56 1053171000168101 Lamotrigine (SZ) 25 mg tablet 1053131000168104 Lamotrigine (SZ) 1053131000168104 Lamotrigine (SZ) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +172251000036105 Genteal 0.3% eye drops solution, 15 mL, bottle 172171000036108 Genteal 0.3% eye drops solution, 15 mL 172131000036106 Genteal 0.3% eye drops solution 35434011000036107 Genteal 35434011000036107 Genteal 172181000036105 hypromellose 0.3% eye drops, 15 mL 172121000036109 hypromellose 0.3% eye drops 35690011000036109 hypromellose +933213601000036102 Citalopram (IPCA) 10 mg film-coated tablet, 7, bottle 158869 933203141000036105 Citalopram (IPCA) 10 mg film-coated tablet, 7 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +20612011000036102 Amiodarone Hydrochloride (Terry White Chemists) 200 mg uncoated tablet, 30, blister pack 80772 13794011000036101 Amiodarone Hydrochloride (Terry White Chemists) 200 mg uncoated tablet, 30 7080011000036100 Amiodarone Hydrochloride (Terry White Chemists) 200 mg uncoated tablet 4240011000036106 Amiodarone Hydrochloride (Terry White Chemists) 4240011000036106 Amiodarone Hydrochloride (Terry White Chemists) 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +18882011000036105 Sodium Chloride (Baxter) 0.9% (9 g/L) irrigation solution, 1 L bottle 19476 12190011000036109 Sodium Chloride (Baxter) 0.9% (9 g/L) irrigation solution, 1 L bottle 4655011000036102 Sodium Chloride (Baxter) 0.9% (9 g/L) irrigation solution, 1 L bottle 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 26974011000036105 sodium chloride 0.9% (9 g/L) solution, 1 L bottle 22347011000036108 sodium chloride 0.9% (9 g/L) solution, bottle 21308011000036103 sodium chloride +74833011000036101 Metronidazole (Baxter) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL bags 19703 74320011000036109 Metronidazole (Baxter) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL bags 5682011000036105 Metronidazole (Baxter) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL bag 3894011000036104 Metronidazole (Baxter) 3894011000036104 Metronidazole (Baxter) 35100011000036108 metronidazole 500 mg/100 mL (0.5%) injection, 10 x 100 mL bags 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +44523011000036109 Cefotaxime (Hospira) 500 mg powder for injection, 10 vials 78701 41976011000036103 Cefotaxime (Hospira) 500 mg powder for injection, 10 vials 40298011000036100 Cefotaxime (Hospira) 500 mg powder for injection, 500 mg vial 39599011000036101 Cefotaxime (Hospira) 39599011000036101 Cefotaxime (Hospira) 46755011000036103 cefotaxime 500 mg injection, 10 vials 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +931357011000036109 Biatain Ag Adhesive (9632) 12.5 cm x 12.5 cm hydroactive dressing, 5, carton 930541011000036106 Biatain Ag Adhesive (9632) 12.5 cm x 12.5 cm hydroactive dressing, 5 929943011000036100 Biatain Ag Adhesive (9632) 12.5 cm x 12.5 cm hydroactive dressing 62151000168109 Biatain Ag Adhesive (9632) 62151000168109 Biatain Ag Adhesive (9632) 51390011000036105 dressing with silver 12.5 cm x 12.5 cm hydroactive dressing, 5 50911011000036104 dressing with silver 12.5 cm x 12.5 cm hydroactive dressing 50760011000036100 dressing with silver +18754011000036105 Ondaz 4 mg film-coated tablet, 4, blister pack 116396 11509011000036105 Ondaz 4 mg film-coated tablet, 4 5169011000036104 Ondaz 4 mg film-coated tablet 3761000168104 Ondaz 3761000168104 Ondaz 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +1012751000168107 Valganciclovir (Apotex) 450 mg film-coated tablet, 180, bottle 184312 1012741000168105 Valganciclovir (Apotex) 450 mg film-coated tablet, 180 999421000168108 Valganciclovir (Apotex) 450 mg film-coated tablet 999411000168101 Valganciclovir (Apotex) 999411000168101 Valganciclovir (Apotex) 1012731000168101 valganciclovir 450 mg tablet, 180 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +30602011000036104 Metamucil Granular Natural 491.5 mg/g powder for oral liquid, 336 g, jar 10186 30580011000036105 Metamucil Granular Natural 491.5 mg/g powder for oral liquid, 336 g 5463011000036103 Metamucil Granular Natural 491.5 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 30613011000036108 psyllium husk powder 491.5 mg/g powder for oral liquid, 336 g 21973011000036106 psyllium husk powder 491.5 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +1050221000168103 Bupredermal 30 microgram/hour patch, 2, sachet 234746 1050211000168105 Bupredermal 30 microgram/hour patch, 2 1050201000168107 Bupredermal 30 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 772921000168109 buprenorphine 30 microgram/hour patch, 2 772901000168100 buprenorphine 30 microgram/hour patch 21232011000036101 buprenorphine +32581011000036109 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) injection solution, 500 mL bag 19499 32376011000036108 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) injection solution, 500 mL bag 4782011000036108 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) injection solution, 500 mL bag 37191000168106 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 37191000168106 Sodium Chloride 0.225% and Glucose 3.75% (Baxter) 32776011000036107 sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, 500 mL bag 22349011000036101 sodium chloride 0.225% (1.125 g/500 mL) + glucose 3.75% (18.75 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +179241000036104 Hair Revive Extra Strength 5% application, 60 mL, bottle 179251000036101 Hair Revive Extra Strength 5% application, 60 mL 112751000036105 Hair Revive Extra Strength 5% application 52991000168108 Hair Revive Extra Strength 52991000168108 Hair Revive Extra Strength 63889011000036109 minoxidil 5% application, 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +933239561000036109 Amisulpride (Apo) 200 mg tablet, 100, blister pack 178902 933236881000036109 Amisulpride (Apo) 200 mg tablet, 100 933234761000036103 Amisulpride (Apo) 200 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 84641011000036106 amisulpride 200 mg tablet, 100 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +20046011000036103 Sandostatin LAR (1 x 20 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 69376 13278011000036108 Sandostatin LAR (1 x 20 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 636221000168109 Sandostatin LAR (inert substance) diluent, 2.5 mL syringe 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27662011000036105 octreotide 20 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 636211000168102 inert substance diluent, 2.5 mL syringe 21220011000036103 inert substance +20046011000036103 Sandostatin LAR (1 x 20 mg vial, 1 x 2.5 mL diluent syringe), 1 pack, composite pack 69376 13278011000036108 Sandostatin LAR (1 x 20 mg vial, 1 x 2.5 mL diluent syringe), 1 pack 6560011000036103 Sandostatin LAR (octreotide 20 mg) modified release injection, 20 mg vial 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 27662011000036105 octreotide 20 mg modified release injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 22999011000036100 octreotide 20 mg modified release injection, vial 21316011000036104 octreotide +59789011000036108 Dymadon 500 mg uncoated tablet, 50, blister pack 114074 55751011000036109 Dymadon 500 mg uncoated tablet, 50 53700011000036100 Dymadon 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +21067011000036101 Liprachol 20 mg uncoated tablet, 30, blister pack 97264 14211011000036108 Liprachol 20 mg uncoated tablet, 30 7494011000036103 Liprachol 20 mg uncoated tablet 4223011000036101 Liprachol 4223011000036101 Liprachol 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +687221000168100 Plidogrel 75 mg film-coated tablet, 28, blister pack 218326 687211000168107 Plidogrel 75 mg film-coated tablet, 28 687201000168109 Plidogrel 75 mg film-coated tablet 687191000168106 Plidogrel 687191000168106 Plidogrel 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +61588011000036109 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 24, blister pack 95191 57510011000036105 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 24 54331011000036103 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet 6071000168100 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 6071000168100 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +176551000036109 Sildenafil (Chemmart) 100 mg film-coated tablet, 4, blister pack 164821 174761000036106 Sildenafil (Chemmart) 100 mg film-coated tablet, 4 173491000036108 Sildenafil (Chemmart) 100 mg film-coated tablet 172551000036108 Sildenafil (Chemmart) 172551000036108 Sildenafil (Chemmart) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +34808011000036109 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 78981 34383011000036102 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 100 mL 34065011000036103 Cefalexin (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +1051341000168107 Oxylieve MR 20 mg modified release tablet, 28, blister pack 153599 1051331000168103 Oxylieve MR 20 mg modified release tablet, 28 1051301000168105 Oxylieve MR 20 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +926892011000036104 Pratsiol 5 mg uncoated tablet, 100, blister pack 75046 926288011000036108 Pratsiol 5 mg uncoated tablet, 100 925732011000036105 Pratsiol 5 mg uncoated tablet 925549011000036103 Pratsiol 925549011000036103 Pratsiol 27729011000036100 prazosin 5 mg tablet, 100 23064011000036100 prazosin 5 mg tablet 21544011000036104 prazosin +666751000168102 Pramipexole Hydrochloride (AN) 1 mg tablet, 100, blister pack 172014 666741000168104 Pramipexole Hydrochloride (AN) 1 mg tablet, 100 666731000168108 Pramipexole Hydrochloride (AN) 1 mg tablet 666721000168105 Pramipexole Hydrochloride (AN) 666721000168105 Pramipexole Hydrochloride (AN) 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +55461000036108 Anastrozole (AU) 1 mg film-coated tablet, 20, blister pack 155174 52031000036103 Anastrozole (AU) 1 mg film-coated tablet, 20 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52041000036108 anastrozole 1 mg tablet, 20 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +19850011000036100 Viagra 100 mg film-coated tablet, 4, bottle 64439 13097011000036105 Viagra 100 mg film-coated tablet, 4 6381011000036105 Viagra 100 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +69700011000036104 Imflac Anti-Inflammatory Pain Relief 1% gel, 30 g, tube 91047 67499011000036109 Imflac Anti-Inflammatory Pain Relief 1% gel, 30 g 65684011000036105 Imflac Anti-Inflammatory Pain Relief 1% gel 15971000168106 Imflac Anti-Inflammatory Pain Relief 15971000168106 Imflac Anti-Inflammatory Pain Relief 72014011000036101 diclofenac sodium 1% gel, 30 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +176591000036100 Cilopam-S 20 mg film-coated tablet, 28, blister pack 191878 174801000036100 Cilopam-S 20 mg film-coated tablet, 28 173601000036102 Cilopam-S 20 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1051321000168101 Oxylieve MR 20 mg modified release tablet, 20, blister pack 153599 1051311000168108 Oxylieve MR 20 mg modified release tablet, 20 1051301000168105 Oxylieve MR 20 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +38311000036107 Escitalopram (Lupin) 10 mg film-coated tablet, 28, blister pack 165842 34641000036108 Escitalopram (Lupin) 10 mg film-coated tablet, 28 32911000036105 Escitalopram (Lupin) 10 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +38351000036106 Escitalopram (LAPL) 10 mg film-coated tablet, 28, blister pack 165844 34681000036104 Escitalopram (LAPL) 10 mg film-coated tablet, 28 33061000036102 Escitalopram (LAPL) 10 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1097421000168107 Voltaren Emulgel No Mess Applicator (1 x 180 g gel, 1 x 20 g gel), 1 pack, tubes 282516 1097411000168100 Voltaren Emulgel No Mess Applicator (1 x 180 g gel, 1 x 20 g gel), 1 pack 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1097401000168103 diclofenac diethylamine 11.6 mg / 1 g gel [180 g] (&) diclofenac diethylamine 11.6 mg / 1 g gel [20 g], 1 pack 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +928920011000036108 Vaclovir 500 mg film-coated tablet, 90, blister pack 153822 928282011000036100 Vaclovir 500 mg film-coated tablet, 90 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929224011000036102 valaciclovir 500 mg tablet, 90 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +712851000168100 Brintellix 20 mg film-coated tablet, 28, blister pack 203970 712841000168102 Brintellix 20 mg film-coated tablet, 28 712821000168108 Brintellix 20 mg film-coated tablet 712621000168109 Brintellix 712621000168109 Brintellix 712831000168106 vortioxetine 20 mg tablet, 28 712811000168101 vortioxetine 20 mg tablet 712651000168101 vortioxetine +928966011000036102 Pizaccord 15 mg uncoated tablet, 28, blister pack 156723 928327011000036102 Pizaccord 15 mg uncoated tablet, 28 927953011000036107 Pizaccord 15 mg uncoated tablet 927823011000036102 Pizaccord 927823011000036102 Pizaccord 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +18067011000036106 Ordine 2 mg/mL oral liquid solution, 200 mL, bottle 10781 11385011000036109 Ordine 2 mg/mL oral liquid solution, 200 mL 4838011000036101 Ordine 2 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 26628011000036100 morphine hydrochloride trihydrate 2 mg/mL oral liquid, 200 mL 22034011000036104 morphine hydrochloride trihydrate 2 mg/mL oral liquid 21252011000036100 morphine +18067011000036106 Ordine 2 mg/mL oral liquid solution, 200 mL, bottle 150220 11385011000036109 Ordine 2 mg/mL oral liquid solution, 200 mL 4838011000036101 Ordine 2 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 26628011000036100 morphine hydrochloride trihydrate 2 mg/mL oral liquid, 200 mL 22034011000036104 morphine hydrochloride trihydrate 2 mg/mL oral liquid 21252011000036100 morphine +779091000168103 Dermaid 1% spray solution, 30 mL, pump pack 225475 779081000168101 Dermaid 1% spray solution, 30 mL 779071000168104 Dermaid 1% spray solution 30751000168101 Dermaid 30751000168101 Dermaid 776881000168101 hydrocortisone 1% spray, 30 mL 776861000168105 hydrocortisone 1% spray 21681011000036103 hydrocortisone +55621000036102 Synastrozole 1 mg film-coated tablet, 30, blister pack 155175 52371000036104 Synastrozole 1 mg film-coated tablet, 30 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +176431000036102 Amoxycillin (Apo) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 137882 174631000036106 Amoxycillin (Apo) 125 mg/5 mL powder for oral liquid, 100 mL 173001000036108 Amoxycillin (Apo) 125 mg/5 mL powder for oral liquid, 5 mL 39598011000036109 Amoxycillin (Apo) 39598011000036109 Amoxycillin (Apo) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +721531000168107 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL, bottle 178303 721521000168109 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL 721511000168102 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +721531000168107 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL, bottle 48143 721521000168109 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL 721511000168102 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +931697011000036107 Simvastatin (Pfizer) 40 mg film-coated tablet, 30, blister pack 170527 930857011000036102 Simvastatin (Pfizer) 40 mg film-coated tablet, 30 930075011000036106 Simvastatin (Pfizer) 40 mg film-coated tablet 929838011000036104 Simvastatin (Pfizer) 929838011000036104 Simvastatin (Pfizer) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +50640011000036103 Lamotrigine (GA) 25 mg tablet, 56, blister pack 143571 49666011000036101 Lamotrigine (GA) 25 mg tablet, 56 48807011000036108 Lamotrigine (GA) 25 mg tablet 48414011000036105 Lamotrigine (GA) 48414011000036105 Lamotrigine (GA) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +44111011000036107 Voltaren Ophtha 0.1% eye drops solution, 5 x 0.3 mL unit doses, ampoule 51527 41590011000036104 Voltaren Ophtha 0.1% eye drops solution, 5 x 0.3 mL unit doses 40087011000036107 Voltaren Ophtha 0.1% eye drops solution, 0.3 mL unit dose 39691011000036109 Voltaren Ophtha 39691011000036109 Voltaren Ophtha 46418011000036106 diclofenac sodium 0.1% eye drops, 5 x 0.3 mL unit doses 45142011000036102 diclofenac sodium 0.1% eye drops, unit dose 21288011000036105 diclofenac +913081000168101 Amoxycillin/Clavulanic Acid 500/125 (Spirit) film-coated tablet, 10, blister pack 196894 913071000168104 Amoxycillin/Clavulanic Acid 500/125 (Spirit) film-coated tablet, 10 913061000168105 Amoxycillin/Clavulanic Acid 500/125 (Spirit) film-coated tablet 913051000168108 Amoxycillin/Clavulanic Acid 500/125 (Spirit) 913051000168108 Amoxycillin/Clavulanic Acid 500/125 (Spirit) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +82885011000036100 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30, bottle 157743 11300011000036101 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30 5505011000036108 Simvastatin (Terry White Chemists) 10 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +60286011000036107 Panadol 500 mg film-coated tablet, 20, blister pack 13591 56245011000036101 Panadol 500 mg film-coated tablet, 20 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +665621000168106 BGstar diagnostic strip, 100, bottle 665611000168104 BGstar diagnostic strip, 100 26591000036106 BGstar diagnostic strip 26051000036106 BGstar 26051000036106 BGstar 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +81207011000036103 Vytorin 10/10 uncoated tablet, 30, blister pack 98100 80709011000036108 Vytorin 10/10 uncoated tablet, 30 80247011000036103 Vytorin 10/10 uncoated tablet 38111000168103 Vytorin 10/10 38111000168103 Vytorin 10/10 81758011000036102 ezetimibe 10 mg + simvastatin 10 mg tablet, 30 81309011000036100 ezetimibe 10 mg + simvastatin 10 mg tablet 21565011000036108 ezetimibe + simvastatin +86844011000036106 Vitamin B1 (Baxter) 100 mg/mL injection solution, 10 x 1 mL ampoules 86742011000036100 Vitamin B1 (Baxter) 100 mg/mL injection solution, 10 x 1 mL ampoules 86610011000036102 Vitamin B1 (Baxter) 100 mg/mL injection solution, ampoule 86600011000036100 Vitamin B1 (Baxter) 86600011000036100 Vitamin B1 (Baxter) 87012011000036109 thiamine hydrochloride 100 mg/mL injection, 10 x 1 mL ampoules 86924011000036100 thiamine hydrochloride 100 mg/mL injection, ampoule 21789011000036109 thiamine +804911000168101 Actonel 75 mg film-coated tablet, 8, blister pack 141530 804901000168104 Actonel 75 mg film-coated tablet, 8 804831000168102 Actonel 75 mg film-coated tablet 13171000168107 Actonel 13171000168107 Actonel 801061000168101 risedronate sodium 75 mg tablet, 8 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +82405011000036108 Normacol Plus granules, 200 g, carton 18655 82194011000036108 Normacol Plus granules, 200 g 5791011000036105 Normacol Plus granules 3486011000036104 Normacol Plus 3486011000036104 Normacol Plus 82562011000036105 rhamnus frangula 80 mg/g + sterculia 620 mg/g granules, 200 g 22335011000036104 rhamnus frangula 80 mg/g + sterculia 620 mg/g granules 21778011000036106 rhamnus frangula + sterculia +879831000168105 Briviact 50 mg/5 mL injection solution, 10 x 5 mL vials 243795 879821000168107 Briviact 50 mg/5 mL injection solution, 10 x 5 mL vials 879801000168103 Briviact 50 mg/5 mL injection solution, 5 mL vial 876391000168107 Briviact 876391000168107 Briviact 879811000168100 brivaracetam 50 mg/5 mL injection, 10 x 5 mL vials 879791000168104 brivaracetam 50 mg/5 mL injection, vial 876401000168109 brivaracetam +12261000036108 Olanzapine (DRLA) 7.5 mg film-coated tablet, 28, blister pack 163389 7171000036108 Olanzapine (DRLA) 7.5 mg film-coated tablet, 28 1791000036103 Olanzapine (DRLA) 7.5 mg film-coated tablet 36491000168101 Olanzapine (DRLA) 36491000168101 Olanzapine (DRLA) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +170811000036106 Panadol Extra film-coated tablet, 18, blister pack 166030 169881000036101 Panadol Extra film-coated tablet, 18 169211000036108 Panadol Extra film-coated tablet 25001000168109 Panadol Extra 25001000168109 Panadol Extra 169891000036104 paracetamol 500 mg + caffeine 65 mg tablet, 18 168941000036108 paracetamol 500 mg + caffeine 65 mg tablet 171051000036108 paracetamol + caffeine +921868011000036102 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 50 mL bottles 15474 921427011000036102 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 50 mL bottles 921003011000036105 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 50 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 922558011000036105 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 50 mL bottles 922084011000036107 iohexol 755 mg (iodine 350 mg)/mL injection, 50 mL bottle 77459011000036103 iohexol +130381000036105 Onetouch Select diagnostic strip, 50, bottle 127341000036103 Onetouch Select diagnostic strip, 50 124221000036107 Onetouch Select diagnostic strip 4851000168108 Onetouch Select 4851000168108 Onetouch Select 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +77282011000036100 Synthamin 17 Amino Acid 10% without Electrolytes intravenous infusion injection, 500 mL bottle 19446 76698011000036100 Synthamin 17 Amino Acid 10% without Electrolytes intravenous infusion injection, 500 mL bottle 76124011000036102 Synthamin 17 Amino Acid 10% without Electrolytes intravenous infusion injection, 500 mL bottle 21661000168102 Synthamin 17 Amino Acid 10% without Electrolytes 21661000168102 Synthamin 17 Amino Acid 10% without Electrolytes 78213011000036101 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle 77547011000036102 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle 77452011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +923804011000036101 Sulprix 50 mg tablet, 30, bottle 156045 923360011000036107 Sulprix 50 mg tablet, 30 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +933239401000036106 Eliquis 2.5 mg film-coated tablet, 30, blister pack 172244 933236691000036105 Eliquis 2.5 mg film-coated tablet, 30 933234631000036103 Eliquis 2.5 mg film-coated tablet 933234191000036106 Eliquis 933234191000036106 Eliquis 933236701000036105 apixaban 2.5 mg tablet, 30 933234641000036108 apixaban 2.5 mg tablet 933240151000036106 apixaban +949411000168105 Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90, blister pack 180431 949401000168107 Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90 949391000168105 Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet 949381000168107 Metformin Hydrochloride 1000 (AN) 949381000168107 Metformin Hydrochloride 1000 (AN) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +92921000036107 Physeptone 10 mg/mL injection solution, 5 x 1 mL vials 159750 92791000036107 Physeptone 10 mg/mL injection solution, 5 x 1 mL vials 92711000036102 Physeptone 10 mg/mL injection solution, vial 3289011000036107 Physeptone 3289011000036107 Physeptone 92801000036106 methadone hydrochloride 10 mg/mL injection, 5 x 1 mL vials 49081000036108 methadone hydrochloride 10 mg/mL injection, vial 21357011000036109 methadone +1051181000168104 Fentanyl (GH) 500 microgram/10 mL injection solution, 10 mL ampoule 201871 1051171000168102 Fentanyl (GH) 500 microgram/10 mL injection solution, 10 mL ampoule 701601000168107 Fentanyl (GH) 500 microgram/10 mL injection solution, 10 mL ampoule 701591000168100 Fentanyl (GH) 701591000168100 Fentanyl (GH) 1051161000168108 fentanyl 500 microgram/10 mL injection, 10 mL ampoule 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +83383011000036106 Lisinopril (GA) 5 mg uncoated tablet, 28, blister pack 106500 83302011000036100 Lisinopril (GA) 5 mg uncoated tablet, 28 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 46262011000036105 lisinopril 5 mg tablet, 28 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +1016861000168101 Famciclovir (Apotex) 500 mg film-coated tablet, 12, blister pack 172444 1016851000168103 Famciclovir (Apotex) 500 mg film-coated tablet, 12 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 933224971000036106 famciclovir 500 mg tablet, 12 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +19644011000036102 Monodur Durule 60 mg modified release tablet, 30, blister pack 59600 12913011000036100 Monodur Durule 60 mg modified release tablet, 30 6203011000036103 Monodur Durule 60 mg modified release tablet 61051000168100 Monodur Durule 61051000168100 Monodur Durule 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +68732011000036108 Glucose (Phebra) 5% (5 g/100 mL) intravenous infusion injection, 100 mL vial 12389 66672011000036107 Glucose (Phebra) 5% (5 g/100 mL) intravenous infusion injection, 100 mL vial 65462011000036101 Glucose (Phebra) 5% (5 g/100 mL) intravenous infusion injection, 100 mL vial 65179011000036104 Glucose (Phebra) 65179011000036104 Glucose (Phebra) 71375011000036109 glucose 5% (5 g/100 mL) injection, 100 mL vial 69978011000036101 glucose 5% (5 g/100 mL) injection, vial 21354011000036103 glucose +871221000168105 Taltz 80 mg/mL injection solution, 1 mL injection device 253893 871211000168103 Taltz 80 mg/mL injection solution, 1 mL injection device 871191000168104 Taltz 80 mg/mL injection solution, injection device 871151000168109 Taltz 871151000168109 Taltz 871201000168101 ixekizumab 80 mg/mL injection, 1 mL injection device 871181000168102 ixekizumab 80 mg/mL injection, injection device 871171000168100 ixekizumab +50614011000036102 Seroquel XR 50 mg modified release tablet, 60, blister pack 138917 49640011000036109 Seroquel XR 50 mg modified release tablet, 60 48795011000036103 Seroquel XR 50 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +33575011000036107 Fragmin 5000 anti-Xa units/0.2 mL injection solution, 10 x 0.2 mL syringes 25349 33313011000036101 Fragmin 5000 anti-Xa units/0.2 mL injection solution, 10 x 0.2 mL syringes 33077011000036104 Fragmin 5000 anti-Xa units/0.2 mL injection solution, 0.2 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 33797011000036105 dalteparin sodium 5000 anti-Xa units/0.2 mL injection, 10 x 0.2 mL syringes 33669011000036109 dalteparin sodium 5000 anti-Xa units/0.2 mL injection, syringe 21450011000036103 dalteparin sodium +19935011000036100 Estraderm MX 25 microgram/24 hours patch, 8, sachet 67089 13179011000036102 Estraderm MX 25 microgram/24 hours patch, 8 6462011000036108 Estraderm MX 25 microgram/24 hours patch 9331000168106 Estraderm MX 9331000168106 Estraderm MX 28328011000036100 estradiol 25 microgram/24 hours patch, 8 23640011000036109 estradiol 25 microgram/24 hours patch 21238011000036103 estradiol +1104731000168102 Hemlibra 105 mg/0.7 mL injection solution, 0.7 mL vial 293758 1104721000168100 Hemlibra 105 mg/0.7 mL injection solution, 0.7 mL vial 1104701000168109 Hemlibra 105 mg/0.7 mL injection solution, 0.7 mL vial 1104651000168104 Hemlibra 1104651000168104 Hemlibra 1104711000168107 emicizumab 105 mg/0.7 mL injection, 0.7 mL vial 1104691000168109 emicizumab 105 mg/0.7 mL injection, vial 1104681000168106 emicizumab +19765011000036101 Metohexal 100 mg uncoated tablet, 60, blister pack 62561 13087011000036109 Metohexal 100 mg uncoated tablet, 60 6371011000036102 Metohexal 100 mg uncoated tablet 3356011000036103 Metohexal 3356011000036103 Metohexal 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +741751000168106 Jakavi 15 mg tablet, 60, bottle 198937 741741000168109 Jakavi 15 mg tablet, 60 143771000036100 Jakavi 15 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741731000168100 ruxolitinib 15 mg tablet, 60 143781000036103 ruxolitinib 15 mg tablet 146491000036100 ruxolitinib +871381000168100 Amisulpride (Winthrop) 100 mg/mL oral liquid solution, 60 mL, bottle 125163 871371000168103 Amisulpride (Winthrop) 100 mg/mL oral liquid solution, 60 mL 871361000168109 Amisulpride (Winthrop) 100 mg/mL oral liquid solution 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 28151011000036102 amisulpride 100 mg/mL oral liquid, 60 mL 23460011000036102 amisulpride 100 mg/mL oral liquid 21522011000036106 amisulpride +908831000168100 Celecoxib (BW) 100 mg hard capsule, 60, blister pack 196182 908821000168103 Celecoxib (BW) 100 mg hard capsule, 60 908721000168109 Celecoxib (BW) 100 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +85044011000036105 Lanzopran 30 mg enteric capsule, 28, blister pack 159343 84909011000036103 Lanzopran 30 mg enteric capsule, 28 84794011000036108 Lanzopran 30 mg enteric capsule 84770011000036105 Lanzopran 84770011000036105 Lanzopran 84657011000036101 lansoprazole 30 mg enteric capsule, 28 22595011000036106 lansoprazole 30 mg enteric capsule 21491011000036101 lansoprazole +744811000168104 Abstral 400 microgram sublingual tablet, 10, blister pack 193336 744801000168102 Abstral 400 microgram sublingual tablet, 10 744781000168101 Abstral 400 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744791000168103 fentanyl 400 microgram sublingual tablet, 10 744771000168104 fentanyl 400 microgram sublingual tablet 21258011000036102 fentanyl +927687011000036105 PKU Squeezie oral liquid solution, 30 x 85 g sachets 927622011000036100 PKU Squeezie oral liquid solution, 30 x 85 g sachets 264301000168109 PKU Squeezie oral liquid solution, 85 g sachet 59661000168102 PKU Squeezie 59661000168102 PKU Squeezie 927733011000036102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 85 g sachets 264091000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 85 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +933213741000036108 Citalopram (IPCA) 20 mg film-coated tablet, 7, bottle 158872 933203281000036108 Citalopram (IPCA) 20 mg film-coated tablet, 7 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +17786011000036104 Filpril 5 mg film-coated tablet, 30, blister pack 123434 11740011000036106 Filpril 5 mg film-coated tablet, 30 5166011000036108 Filpril 5 mg film-coated tablet 2908011000036108 Filpril 2908011000036108 Filpril 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +949491000168101 Metformin 1000 (AS) 1 g film-coated tablet, 10, blister pack 147412 949481000168104 Metformin 1000 (AS) 1 g film-coated tablet, 10 949471000168102 Metformin 1000 (AS) 1 g film-coated tablet 949461000168108 Metformin 1000 (AS) 949461000168108 Metformin 1000 (AS) 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +908671000168101 Celecoxib (Lup) 100 mg hard capsule, 120, blister pack 196184 908661000168107 Celecoxib (Lup) 100 mg hard capsule, 120 908551000168109 Celecoxib (Lup) 100 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 907561000168105 celecoxib 100 mg capsule, 120 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +18908011000036102 Opticrom 2% eye drops solution, 10 mL, bottle 20649 12216011000036105 Opticrom 2% eye drops solution, 10 mL 5593011000036105 Opticrom 2% eye drops solution 3103011000036107 Opticrom 3103011000036107 Opticrom 26987011000036107 sodium cromoglycate 2% eye drops, 10 mL 22360011000036102 sodium cromoglycate 2% eye drops 21253011000036107 cromoglycate +20380011000036109 Flixotide Junior Inhaler CFC-Free 50 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 76865 13588011000036108 Flixotide Junior Inhaler CFC-Free 50 microgram/actuation pressurised inhalation, 120 actuations 6871011000036104 Flixotide Junior Inhaler CFC-Free 50 microgram/actuation pressurised inhalation, actuation 441000168109 Flixotide Junior Inhaler 441000168109 Flixotide Junior Inhaler 27823011000036101 fluticasone propionate 50 microgram/actuation pressurised inhalation, 120 actuations 23151011000036103 fluticasone propionate 50 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +146251000036105 Sevikar HCT 20/5/12.5 film-coated tablet, 10, blister pack 198998 144871000036108 Sevikar HCT 20/5/12.5 film-coated tablet, 10 143591000036108 Sevikar HCT 20/5/12.5 film-coated tablet 62081000168103 Sevikar HCT 20/5/12.5 62081000168103 Sevikar HCT 20/5/12.5 144881000036105 olmesartan medoxomil 20 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet, 10 143601000036101 olmesartan medoxomil 20 mg + amlodipine 5 mg + hydrochlorothiazide 12.5 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +767461000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 226240 767451000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767461000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 178481 767451000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767461000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 226240 767451000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +767461000168103 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 178481 767451000168100 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +1080021000168102 Bisoprolol (Auro) 7.5 mg film-coated tablet, 28, blister pack 175920 1080011000168109 Bisoprolol (Auro) 7.5 mg film-coated tablet, 28 1080001000168106 Bisoprolol (Auro) 7.5 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 874341000168107 bisoprolol fumarate 7.5 mg tablet, 28 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +84308011000036104 Cold and Flu Day and Night PE (Guardian) (18 x Day tablets, 6 x Night tablets), 24, blister pack 152077 84001011000036109 Cold and Flu Day and Night PE (Guardian) (18 x Day tablets, 6 x Night tablets), 24 83636011000036103 Cold and Flu Day and Night PE (Day) (Guardian) uncoated tablet 34261000168100 Cold and Flu Day and Night PE (Guardian) 34381000168100 Cold and Flu Day and Night PE (Day) (Guardian) 84635011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +84308011000036104 Cold and Flu Day and Night PE (Guardian) (18 x Day tablets, 6 x Night tablets), 24, blister pack 152077 84001011000036109 Cold and Flu Day and Night PE (Guardian) (18 x Day tablets, 6 x Night tablets), 24 83637011000036100 Cold and Flu Day and Night PE (Night) (Guardian) uncoated tablet 34261000168100 Cold and Flu Day and Night PE (Guardian) 34501000168104 Cold and Flu Day and Night PE (Night) (Guardian) 84635011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +77129011000036100 Water for Injections (AstraZeneca) injection solution, 5 x 2 mL ampoules 11994 76597011000036108 Water for Injections (AstraZeneca) injection solution, 5 x 2 mL ampoules 76054011000036109 Water for Injections (AstraZeneca) injection solution, 2 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78151011000036108 water for injections injection, 5 x 2 mL ampoules 77583011000036102 water for injections injection, 2 mL ampoule 77431011000036101 water for injections +912941000168100 Ninlaro 3 mg capsule, 3, blister pack 260935 912931000168109 Ninlaro 3 mg capsule, 3 912881000168104 Ninlaro 3 mg capsule 902241000168107 Ninlaro 902241000168107 Ninlaro 912921000168106 ixazomib 3 mg capsule, 3 912871000168102 ixazomib 3 mg capsule 902251000168109 ixazomib +1016841000168100 Famciclovir (Apotex) 500 mg film-coated tablet, 3, blister pack 172444 1016831000168109 Famciclovir (Apotex) 500 mg film-coated tablet, 3 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +79081011000036108 Glucose (B Braun) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 49331 78875011000036102 Glucose (B Braun) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 78678011000036101 Glucose (B Braun) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 78600011000036108 Glucose (B Braun) 78600011000036108 Glucose (B Braun) 71924011000036101 glucose 5% (25 g/500 mL) injection, 500 mL bottle 70249011000036109 glucose 5% (25 g/500 mL) injection, bottle 21354011000036103 glucose +741591000168108 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 10 x 0.75 mL injection devices 231053 741581000168105 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 10 x 0.75 mL injection devices 741501000168102 Bemfola 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741571000168107 follitropin alfa 450 units (33 microgram)/0.75 mL injection, 10 x 0.75 mL injection devices 741491000168109 follitropin alfa 450 units (33 microgram)/0.75 mL injection, injection device 21352011000036107 follitropin alfa +933230901000036109 Famciclovir (Apo) 500 mg film-coated tablet, 30, blister pack 172443 933225051000036101 Famciclovir (Apo) 500 mg film-coated tablet, 30 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1045861000168104 Bimtop 0.03% eye drops, 3 mL, bottle 274754 1045851000168101 Bimtop 0.03% eye drops, 3 mL 1045841000168103 Bimtop 0.03% eye drops 1045771000168102 Bimtop 1045771000168102 Bimtop 27937011000036103 bimatoprost 0.03% eye drops, 3 mL 23261011000036108 bimatoprost 0.03% eye drops 21297011000036105 bimatoprost +717101000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 14, blister pack 149417 717091000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 14 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +744971000168102 Abstral 800 microgram sublingual tablet, 10, blister pack 228209 744961000168108 Abstral 800 microgram sublingual tablet, 10 744941000168109 Abstral 800 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744951000168106 fentanyl 800 microgram sublingual tablet, 10 744931000168100 fentanyl 800 microgram sublingual tablet 21258011000036102 fentanyl +37651011000036105 Flopen 125 mg/5 mL powder for oral liquid, 100 mL, bottle 29446 36917011000036108 Flopen 125 mg/5 mL powder for oral liquid, 100 mL 36248011000036100 Flopen 125 mg/5 mL powder for oral liquid, 5 mL 3750011000036102 Flopen 3750011000036102 Flopen 26644011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid, 100 mL 22050011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +81001011000036103 Rectinol ointment, 50 g, tube 119786 80485011000036101 Rectinol ointment, 50 g 80160011000036107 Rectinol ointment 80106011000036106 Rectinol 80106011000036106 Rectinol 81584011000036104 cinchocaine hydrochloride 0.5% + zinc oxide 20% ointment, 50 g 81260011000036100 cinchocaine hydrochloride 0.5% + zinc oxide 20% ointment 81230011000036106 cinchocaine + zinc oxide +68801011000036107 Savlon Antiseptic Powder 14% dusting powder, 20 g, puffer pack 11249 66599011000036100 Savlon Antiseptic Powder 14% dusting powder, 20 g 65513011000036102 Savlon Antiseptic Powder 14% dusting powder 64974011000036107 Savlon Antiseptic Powder 64974011000036107 Savlon Antiseptic Powder 71984011000036106 povidone-iodine 14% dusting powder, 20 g 70272011000036100 povidone-iodine 14% dusting powder 21660011000036108 povidone-iodine +1055891000168108 Erelzi Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 281780 1055881000168105 Erelzi Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 1055821000168106 Erelzi Auto-Injector 50 mg/mL injection solution, injection device 1055811000168104 Erelzi Auto-Injector 1055811000168104 Erelzi Auto-Injector 898001000168109 etanercept 50 mg/mL injection, 4 x 1 mL injection devices 897981000168103 etanercept 50 mg/mL injection, injection device 21347011000036107 etanercept +1017001000168108 Aripiprazole (AU) 10 mg uncoated tablet, 30, blister pack 217241 1016991000168101 Aripiprazole (AU) 10 mg uncoated tablet, 30 1016981000168104 Aripiprazole (AU) 10 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1081791000168108 Sonata 10 mg hard capsule, 14, blister pack 70004 1081781000168105 Sonata 10 mg hard capsule, 14 1081731000168109 Sonata 10 mg hard capsule 1081561000168108 Sonata 1081561000168108 Sonata 1081771000168107 zaleplon 10 mg capsule, 14 1081721000168106 zaleplon 10 mg capsule 1081631000168101 zaleplon +678411000168104 Celaxib 200 mg hard capsule, 30, blister pack 206672 675631000168102 Celaxib 200 mg hard capsule, 30 675621000168100 Celaxib 200 mg hard capsule 675611000168107 Celaxib 675611000168107 Celaxib 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +933213421000036105 Citalopram (IPCA) 40 mg film-coated tablet, 84, bottle 158855 933202941000036101 Citalopram (IPCA) 40 mg film-coated tablet, 84 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202951000036103 citalopram 40 mg tablet, 84 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +12421000036103 Quetiapine (Sandoz) 100 mg film-coated tablet, 90, bottle 158103 6791000036109 Quetiapine (Sandoz) 100 mg film-coated tablet, 90 3161000036105 Quetiapine (Sandoz) 100 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +50296011000036107 Neocate LCP powder for oral liquid, 400 g, can 49469011000036108 Neocate LCP powder for oral liquid, 400 g 48664011000036106 Neocate LCP powder for oral liquid 48269011000036109 Neocate LCP 48269011000036109 Neocate LCP 51427011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids powder for oral liquid, 400 g 50944011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids powder for oral liquid 50726011000036106 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids +717421000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 7, bottle 167313 717401000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 7 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716871000168105 omeprazole 20 mg enteric capsule, 7 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +18153011000036102 Fluconazole (Hexal) 200 mg hard capsule, 28, blister pack 104293 11286011000036107 Fluconazole (Hexal) 200 mg hard capsule, 28 4699011000036107 Fluconazole (Hexal) 200 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +926800011000036100 Gemplan 1 g powder for injection, 1 vial 165620 926196011000036108 Gemplan 1 g powder for injection, 1 vial 925669011000036102 Gemplan 1 g powder for injection, vial 925542011000036108 Gemplan 925542011000036108 Gemplan 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +60388011000036103 Micardis Plus 80/25 multilayer tablet, 98, blister pack 143761 56347011000036104 Micardis Plus 80/25 multilayer tablet, 98 53885011000036106 Micardis Plus 80/25 multilayer tablet 17051000168109 Micardis Plus 80/25 17051000168109 Micardis Plus 80/25 63318011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 98 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +21024011000036100 Genotropin (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 96397 14170011000036106 Genotropin (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 7449011000036106 Genotropin (somatropin 12 mg) powder for injection, 12 mg cartridge 3050011000036100 Genotropin 3050011000036100 Genotropin 28186011000036102 somatropin 12 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 23496011000036101 somatropin 12 mg injection, cartridge 21295011000036100 somatropin +21024011000036100 Genotropin (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 96397 14170011000036106 Genotropin (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 637991000168102 Genotropin (inert substance) diluent, 1 mL cartridge 3050011000036100 Genotropin 3050011000036100 Genotropin 28186011000036102 somatropin 12 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 630901000168109 inert substance diluent, 1 mL cartridge 21220011000036103 inert substance +718791000168102 Alendronate Plus D3 70 mg/70 microgram (Sandoz) uncoated tablet, 4, blister pack 206929 718781000168100 Alendronate Plus D3 70 mg/70 microgram (Sandoz) uncoated tablet, 4 718771000168103 Alendronate Plus D3 70 mg/70 microgram (Sandoz) uncoated tablet 718761000168109 Alendronate Plus D3 70 mg/70 microgram (Sandoz) 718761000168109 Alendronate Plus D3 70 mg/70 microgram (Sandoz) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +1015421000168102 Aripiprazole (Medis) 10 mg uncoated tablet, 30, blister pack 217212 1015411000168109 Aripiprazole (Medis) 10 mg uncoated tablet, 30 1015401000168106 Aripiprazole (Medis) 10 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1017021000168104 Famciclovir (Apotex) 500 mg film-coated tablet, 16, blister pack 172444 1017011000168106 Famciclovir (Apotex) 500 mg film-coated tablet, 16 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 933225001000036102 famciclovir 500 mg tablet, 16 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +734581000168108 Allersoothe Elixir 5 mg/5 mL oral liquid solution, 100 mL, bottle 202453 734571000168105 Allersoothe Elixir 5 mg/5 mL oral liquid solution, 100 mL 734561000168104 Allersoothe Elixir 5 mg/5 mL oral liquid solution, 5 mL 734551000168101 Allersoothe Elixir 734551000168101 Allersoothe Elixir 27484011000036100 promethazine hydrochloride 5 mg/5 mL oral liquid, 100 mL 22830011000036105 promethazine hydrochloride 5 mg/5 mL oral liquid 21237011000036104 promethazine +60011011000036106 Diovan 320 mg film-coated tablet, 14, blister pack 123357 55973011000036103 Diovan 320 mg film-coated tablet, 14 53744011000036101 Diovan 320 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63183011000036100 valsartan 320 mg tablet, 14 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +776351000168104 Diar-Relief 2 mg uncoated tablet, 20, blister pack 98134 776341000168101 Diar-Relief 2 mg uncoated tablet, 20 776311000168100 Diar-Relief 2 mg uncoated tablet 776301000168103 Diar-Relief 776301000168103 Diar-Relief 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +1018371000168104 Amisulpride (Apotex) 100 mg tablet, 90, blister pack 178907 1018361000168105 Amisulpride (Apotex) 100 mg tablet, 90 1018291000168108 Amisulpride (Apotex) 100 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +50673011000036107 Paroxetine (Generic Health) 20 mg film-coated tablet, 28, blister pack 153324 49697011000036100 Paroxetine (Generic Health) 20 mg film-coated tablet, 28 48828011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet 48331011000036109 Paroxetine (Generic Health) 48331011000036109 Paroxetine (Generic Health) 51564011000036104 paroxetine 20 mg tablet, 28 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1021291000168105 Voriconazole (Apo) 50 mg film-coated tablet, 2, blister pack 238281 1021281000168107 Voriconazole (Apo) 50 mg film-coated tablet, 2 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46814011000036109 voriconazole 50 mg tablet, 2 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +86003011000036100 Lisinopril (DRLA) 10 mg uncoated tablet, 56, blister pack 152721 85660011000036104 Lisinopril (DRLA) 10 mg uncoated tablet, 56 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 86421011000036100 lisinopril 10 mg tablet, 56 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +20073011000036105 Floxsig 500 mg capsule, 24, bottle 70642 13303011000036100 Floxsig 500 mg capsule, 24 6587011000036100 Floxsig 500 mg capsule 4443011000036104 Floxsig 4443011000036104 Floxsig 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +55301000036103 Antiseptic (Terry White Chemists) cream, 50 g, tube 136257 51111000036100 Antiseptic (Terry White Chemists) cream, 50 g 48811000036104 Antiseptic (Terry White Chemists) cream 48441000036100 Antiseptic (Terry White Chemists) 48441000036100 Antiseptic (Terry White Chemists) 63520011000036109 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 50 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +923821011000036109 Targin 40/20 mg modified release tablet, 20, blister pack 156194 923367011000036108 Targin 40/20 mg modified release tablet, 20 923038011000036103 Targin 40/20 mg modified release tablet 46091000168106 Targin 40/20 mg 46091000168106 Targin 40/20 mg 924165011000036106 oxycodone hydrochloride 40 mg + naloxone hydrochloride 20 mg modified release tablet, 20 923976011000036108 oxycodone hydrochloride 40 mg + naloxone hydrochloride 20 mg modified release tablet 923931011000036100 oxycodone + naloxone +929093011000036103 Pioglitazone (Apotex) 30 mg uncoated tablet, 7, blister pack 166914 928454011000036104 Pioglitazone (Apotex) 30 mg uncoated tablet, 7 927987011000036109 Pioglitazone (Apotex) 30 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929264011000036109 pioglitazone 30 mg tablet, 7 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +19438011000036108 Aredia (2 x 30 mg vials, 2 x 10 mL inert diluent ampoules), 1 pack, composite pack 53889 12720011000036105 Aredia (2 x 30 mg vials, 2 x 10 mL inert diluent ampoules), 1 pack 5564011000036105 Aredia (pamidronate disodium 30 mg) powder for injection, 30 mg vial 36891000168104 Aredia 36891000168104 Aredia 27311011000036107 pamidronate disodium 30 mg injection [2 vials] (&) inert substance diluent [2 x 10 mL ampoules], 1 pack 22664011000036104 pamidronate disodium 30 mg injection, vial 21339011000036101 pamidronate disodium +19438011000036108 Aredia (2 x 30 mg vials, 2 x 10 mL inert diluent ampoules), 1 pack, composite pack 53889 12720011000036105 Aredia (2 x 30 mg vials, 2 x 10 mL inert diluent ampoules), 1 pack 637261000168101 Aredia (inert substance) diluent, 10 mL ampoule 36891000168104 Aredia 36891000168104 Aredia 27311011000036107 pamidronate disodium 30 mg injection [2 vials] (&) inert substance diluent [2 x 10 mL ampoules], 1 pack 629701000168101 inert substance diluent, 10 mL ampoule 21220011000036103 inert substance +25331000036106 Cephalexin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 98639 23111000036100 Cephalexin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL 19981000036104 Cephalexin (Chemmart) 250 mg/5 mL powder for oral liquid, 5 mL 3701011000036103 Cephalexin (Chemmart) 3701011000036103 Cephalexin (Chemmart) 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +25331000036106 Cephalexin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 160872 23111000036100 Cephalexin (Chemmart) 250 mg/5 mL powder for oral liquid, 100 mL 19981000036104 Cephalexin (Chemmart) 250 mg/5 mL powder for oral liquid, 5 mL 3701011000036103 Cephalexin (Chemmart) 3701011000036103 Cephalexin (Chemmart) 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +52181011000036108 Benzoic Acid Compound APF (extemporaneous) ointment, 100 g, screw cap jar 52073011000036109 Benzoic Acid Compound APF (extemporaneous) ointment, 100 g 51974011000036100 Benzoic Acid Compound APF (extemporaneous) ointment 40851000168105 Benzoic Acid Compound APF (extemporaneous) 40851000168105 Benzoic Acid Compound APF (extemporaneous) 52320011000036103 benzoic acid 6% + salicylic acid 3% ointment, 100 g 52252011000036107 benzoic acid 6% + salicylic acid 3% ointment 52238011000036109 benzoic acid + salicylic acid +104581000036100 Irbesartan/HCTZ 300/25 (GA) film-coated tablet, 30, blister pack 192835 101801000036107 Irbesartan/HCTZ 300/25 (GA) film-coated tablet, 30 98581000036104 Irbesartan/HCTZ 300/25 (GA) film-coated tablet 40791000168105 Irbesartan/HCTZ 300/25 (GA) 40791000168105 Irbesartan/HCTZ 300/25 (GA) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +805231000168102 Aczicrit 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 147845 805221000168100 Aczicrit 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 805191000168106 Aczicrit 5000 units/0.5 mL injection solution, 0.5 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924132011000036107 epoetin lambda 5000 units/0.5 mL injection, 6 x 0.5 mL syringes 923956011000036106 epoetin lambda 5000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +38191000036100 Escilupin 5 mg film-coated tablet, 28, blister pack 165836 34521000036101 Escilupin 5 mg film-coated tablet, 28 33081000036107 Escilupin 5 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +20390011000036105 Auspril 5 mg uncoated tablet, 30, blister pack 77035 13598011000036109 Auspril 5 mg uncoated tablet, 30 6881011000036107 Auspril 5 mg uncoated tablet 3629011000036103 Auspril 3629011000036103 Auspril 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +20390011000036105 Auspril 5 mg uncoated tablet, 30, blister pack 121758 13598011000036109 Auspril 5 mg uncoated tablet, 30 6881011000036107 Auspril 5 mg uncoated tablet 3629011000036103 Auspril 3629011000036103 Auspril 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +44369011000036101 Vasocardol CD 240 mg modified release capsule, 7, bottle 68925 41834011000036102 Vasocardol CD 240 mg modified release capsule, 7 6534011000036104 Vasocardol CD 240 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 46640011000036103 diltiazem hydrochloride 240 mg modified release capsule, 7 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +1050061000168101 Tramal SR 50 mg modified release tablet, 60, blister pack 121845 1050051000168103 Tramal SR 50 mg modified release tablet, 60 5058011000036107 Tramal SR 50 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 46203011000036104 tramadol hydrochloride 50 mg modified release tablet, 60 22133011000036107 tramadol hydrochloride 50 mg modified release tablet 21486011000036105 tramadol +50476011000036103 Rispa 500 microgram film-coated tablet, 60, blister pack 127880 49561011000036101 Rispa 500 microgram film-coated tablet, 60 48600011000036100 Rispa 500 microgram film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +993901000168109 Candesartan (Apotex) 4 mg tablet, 30, blister pack 184881 993891000168105 Candesartan (Apotex) 4 mg tablet, 30 993831000168106 Candesartan (Apotex) 4 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +1018391000168103 Amisulpride (Apotex) 100 mg tablet, 100, blister pack 178907 1018381000168101 Amisulpride (Apotex) 100 mg tablet, 100 1018291000168108 Amisulpride (Apotex) 100 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 84637011000036102 amisulpride 100 mg tablet, 100 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +61356011000036103 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 48, blister pack 81474 57281011000036109 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 48 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19876011000036100 Eprex 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 65445 13123011000036104 Eprex 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 6406011000036108 Eprex 4000 units/0.4 mL injection solution, 0.4 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27564011000036107 epoetin alfa 4000 units/0.4 mL injection, 6 x 0.4 mL syringes 22903011000036101 epoetin alfa 4000 units/0.4 mL injection, syringe 21294011000036104 epoetin alfa +933230741000036105 Nicabate P 2 mg chewing gum, 96, blister pack 171309 933224861000036105 Nicabate P 2 mg chewing gum, 96 933220391000036102 Nicabate P 2 mg chewing gum 9751000168104 Nicabate P 9751000168104 Nicabate P 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +20209011000036107 Neurontin 100 mg hard capsule, 100, blister pack 74067 13428011000036108 Neurontin 100 mg hard capsule, 100 6710011000036100 Neurontin 100 mg hard capsule 4344011000036106 Neurontin 4344011000036106 Neurontin 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +669821000168108 Irbesartan (Actavis) 300 mg film-coated tablet, 30, blister pack 223016 669811000168101 Irbesartan (Actavis) 300 mg film-coated tablet, 30 669801000168104 Irbesartan (Actavis) 300 mg film-coated tablet 669761000168107 Irbesartan (Actavis) 669761000168107 Irbesartan (Actavis) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +913241000168102 Amlodipine (Alkem) 5 mg tablet, 7, blister pack 215708 913231000168106 Amlodipine (Alkem) 5 mg tablet, 7 913091000168103 Amlodipine (Alkem) 5 mg tablet 913041000168106 Amlodipine (Alkem) 913041000168106 Amlodipine (Alkem) 913221000168108 amlodipine 5 mg tablet, 7 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +84325011000036101 Pantoprazole (Apo) 40 mg enteric tablet, 30, blister pack 156334 84018011000036102 Pantoprazole (Apo) 40 mg enteric tablet, 30 83647011000036101 Pantoprazole (Apo) 40 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +84325011000036101 Pantoprazole (Apo) 40 mg enteric tablet, 30, blister pack 213716 84018011000036102 Pantoprazole (Apo) 40 mg enteric tablet, 30 83647011000036101 Pantoprazole (Apo) 40 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +933229681000036100 Morphine Sulfate MR (Apotex) 60 mg modified release tablet, 28, blister pack 132256 933223611000036106 Morphine Sulfate MR (Apotex) 60 mg modified release tablet, 28 933219681000036106 Morphine Sulfate MR (Apotex) 60 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 929757011000036102 morphine sulfate pentahydrate 60 mg modified release tablet, 28 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +880151000168105 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet, 20, blister pack 215374 880141000168108 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet, 20 880131000168104 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 692241000168105 amitriptyline hydrochloride 25 mg tablet, 20 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +86055011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 48, blister pack 158156 85737011000036100 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 48 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +25171000036105 Atorvastatin (Sandoz) 20 mg film-coated tablet, 30, blister pack 156051 22331000036102 Atorvastatin (Sandoz) 20 mg film-coated tablet, 30 20631000036108 Atorvastatin (Sandoz) 20 mg film-coated tablet 19781000036102 Atorvastatin (Sandoz) 19781000036102 Atorvastatin (Sandoz) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +18531011000036109 Clorprax 150 mg modified release tablet, 30, blister pack 119664 11624011000036106 Clorprax 150 mg modified release tablet, 30 4500011000036109 Clorprax 150 mg modified release tablet 3856011000036101 Clorprax 3856011000036101 Clorprax 27771011000036100 bupropion hydrochloride 150 mg modified release tablet, 30 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +669861000168103 Amlodipine/Atorvastatin 10/40 (Blooms The Chemist) film-coated tablet, 30, blister pack 214388 669851000168100 Amlodipine/Atorvastatin 10/40 (Blooms The Chemist) film-coated tablet, 30 669841000168102 Amlodipine/Atorvastatin 10/40 (Blooms The Chemist) film-coated tablet 669831000168106 Amlodipine/Atorvastatin 10/40 (Blooms The Chemist) 669831000168106 Amlodipine/Atorvastatin 10/40 (Blooms The Chemist) 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +38151000036109 Escital 5 mg film-coated tablet, 28, blister pack 165834 34481000036101 Escital 5 mg film-coated tablet, 28 32351000036108 Escital 5 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +17913011000036102 Artane 5 mg uncoated tablet, 200, bottle 15126 12074011000036103 Artane 5 mg uncoated tablet, 200 5845011000036100 Artane 5 mg uncoated tablet 3495011000036105 Artane 3495011000036105 Artane 26896011000036104 trihexyphenidyl (benzhexol) hydrochloride 5 mg tablet, 200 22274011000036108 trihexyphenidyl (benzhexol) hydrochloride 5 mg tablet 21635011000036106 trihexyphenidyl (benzhexol) +710131000168104 PKU Air 15 Gold (Coffee Fusion) oral liquid solution, 30 x 130 mL pouches 710121000168102 PKU Air 15 Gold (Coffee Fusion) oral liquid solution, 30 x 130 mL pouches 710111000168109 PKU Air 15 Gold (Coffee Fusion) oral liquid solution, 130 mL pouch 709991000168108 PKU Air 15 709991000168108 PKU Air 15 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +687131000168107 Venlafaxine XR (Blooms The Chemist) 150 mg modified release capsule, 28, blister pack 177457 687121000168109 Venlafaxine XR (Blooms The Chemist) 150 mg modified release capsule, 28 687111000168102 Venlafaxine XR (Blooms The Chemist) 150 mg modified release capsule 687071000168109 Venlafaxine XR (Blooms The Chemist) 687071000168109 Venlafaxine XR (Blooms The Chemist) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +1050041000168100 Tramal SR 50 mg modified release tablet, 4, blister pack 121845 1050031000168109 Tramal SR 50 mg modified release tablet, 4 5058011000036107 Tramal SR 50 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 1050021000168106 tramadol hydrochloride 50 mg modified release tablet, 4 22133011000036107 tramadol hydrochloride 50 mg modified release tablet 21486011000036105 tramadol +787911000168107 Clopidogrel (Blooms The Chemist) 75 mg film-coated tablet, 28, blister pack 227622 787901000168109 Clopidogrel (Blooms The Chemist) 75 mg film-coated tablet, 28 787891000168105 Clopidogrel (Blooms The Chemist) 75 mg film-coated tablet 787881000168107 Clopidogrel (Blooms The Chemist) 787881000168107 Clopidogrel (Blooms The Chemist) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +998241000168107 Desloratadine (Apo) 5 mg film-coated tablet, 25, blister pack 202823 998231000168103 Desloratadine (Apo) 5 mg film-coated tablet, 25 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72023011000036107 desloratadine 5 mg tablet, 25 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +926846011000036109 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid, 200 mL, bottle 25404 926242011000036100 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid, 200 mL 925694011000036101 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid 925508011000036101 Eucalyptus Oil (Thursday Plantation) 925508011000036101 Eucalyptus Oil (Thursday Plantation) 927354011000036102 eucalyptus oil 1 mL/mL liquid, 200 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +1063021000168107 Strong Pain Extra (Chemists' Own) uncoated tablet, 24, blister pack 208276 1063011000168100 Strong Pain Extra (Chemists' Own) uncoated tablet, 24 1063001000168103 Strong Pain Extra (Chemists' Own) uncoated tablet 1062981000168102 Strong Pain Extra (Chemists' Own) 1062981000168102 Strong Pain Extra (Chemists' Own) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +933068011000036107 Lodam SR 100 mg modified release tablet, 20, blister pack 154390 932865011000036108 Lodam SR 100 mg modified release tablet, 20 932726011000036107 Lodam SR 100 mg modified release tablet 16851000168100 Lodam SR 16851000168100 Lodam SR 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +925227011000036102 Ropicor-0.5 500 microgram film-coated tablet, 28, blister pack 157776 924764011000036101 Ropicor-0.5 500 microgram film-coated tablet, 28 924463011000036109 Ropicor-0.5 500 microgram film-coated tablet 18811000168102 Ropicor-0.5 18811000168102 Ropicor-0.5 46970011000036103 ropinirole 500 microgram tablet, 28 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +37480011000036109 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 5 x 1 mL ampoules 12582 36748011000036108 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 5 x 1 mL ampoules 36095011000036109 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, ampoule 20251000168109 Isuprel 20251000168109 Isuprel 38656011000036107 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, 5 x 1 mL ampoules 37908011000036107 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, ampoule 37784011000036105 isoprenaline +37991000036102 Escitalopram (LAPL) 5 mg film-coated tablet, 100, bottle 165827 34331000036108 Escitalopram (LAPL) 5 mg film-coated tablet, 100 33021000036106 Escitalopram (LAPL) 5 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +146411000036105 Protamine Sulphate (Fisons) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 27971 145171000036100 Protamine Sulphate (Fisons) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 143521000036105 Protamine Sulphate (Fisons) 50 mg/5 mL injection solution, 5 mL ampoule 143391000036102 Protamine Sulphate (Fisons) 143391000036102 Protamine Sulphate (Fisons) 145181000036103 protamine sulfate 50 mg/5 mL injection, 10 x 5 mL ampoules 143531000036107 protamine sulfate 50 mg/5 mL injection, ampoule 146521000036102 protamine sulfate +121521000036106 Rabeprazole Sodium (Actavis) 20 mg enteric tablet, 30, blister pack 191860 120441000036106 Rabeprazole Sodium (Actavis) 20 mg enteric tablet, 30 119431000036102 Rabeprazole Sodium (Actavis) 20 mg enteric tablet 119211000036107 Rabeprazole Sodium (Actavis) 119211000036107 Rabeprazole Sodium (Actavis) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +59857011000036105 Paracetamol Extra (Guardian) uncoated tablet, 50, blister pack 115172 55819011000036104 Paracetamol Extra (Guardian) uncoated tablet, 50 53633011000036106 Paracetamol Extra (Guardian) uncoated tablet 53508011000036102 Paracetamol Extra (Guardian) 53508011000036102 Paracetamol Extra (Guardian) 52904011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 50 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +104661000036109 Donepezil Hydrochloride (Generic Health) 10 mg film-coated tablet, 28, blister pack 172753 101851000036108 Donepezil Hydrochloride (Generic Health) 10 mg film-coated tablet, 28 99221000036108 Donepezil Hydrochloride (Generic Health) 10 mg film-coated tablet 98021000036108 Donepezil Hydrochloride (Generic Health) 98021000036108 Donepezil Hydrochloride (Generic Health) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +60885011000036106 Dimetapp Cold and Allergy Elixir oral liquid solution, 200 mL, bottle 59767 56839011000036108 Dimetapp Cold and Allergy Elixir oral liquid solution, 200 mL 54095011000036106 Dimetapp Cold and Allergy Elixir oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63602011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +37344011000036103 Cymbalta 60 mg enteric capsule, 7, blister pack 120389 36700011000036100 Cymbalta 60 mg enteric capsule, 7 36155011000036107 Cymbalta 60 mg enteric capsule 35918011000036106 Cymbalta 35918011000036106 Cymbalta 38613011000036106 duloxetine 60 mg enteric capsule, 7 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +18470011000036106 Talohexal 20 mg film-coated tablet, 28, blister pack 101691 11226011000036101 Talohexal 20 mg film-coated tablet, 28 5923011000036108 Talohexal 20 mg film-coated tablet 3441011000036102 Talohexal 3441011000036102 Talohexal 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +17940011000036101 Madopar 200/50 hard capsule, 100, bottle 13742 12000011000036103 Madopar 200/50 hard capsule, 100 5221011000036106 Madopar 200/50 hard capsule 50351000168103 Madopar 200/50 50351000168103 Madopar 200/50 26839011000036100 levodopa 200 mg + benserazide 50 mg capsule, 100 22220011000036104 levodopa 200 mg + benserazide 50 mg capsule 21331011000036100 levodopa + benserazide +666991000168109 Ubistesin Forte 4% / 1 in 100 000 injection solution, 50 x 1.7 mL cartridges 165574 666981000168106 Ubistesin Forte 4% / 1 in 100 000 injection solution, 50 x 1.7 mL cartridges 666961000168102 Ubistesin Forte 4% / 1 in 100 000 injection solution, 1.7 mL cartridge 666951000168104 Ubistesin Forte 4% / 1 in 100 000 666951000168104 Ubistesin Forte 4% / 1 in 100 000 666971000168108 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, 50 x 1.7 mL cartridges 44988011000036102 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +1001051000168102 Pregabalin (Apo) 50 mg hard capsule, 60, bottle 193246 1001041000168104 Pregabalin (Apo) 50 mg hard capsule, 60 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1116191000168106 Epirubicin (AN) 200 mg/100 mL concentrated injection, 100 mL vial 146599 1116181000168108 Epirubicin (AN) 200 mg/100 mL concentrated injection, 100 mL vial 1116171000168105 Epirubicin (AN) 200 mg/100 mL concentrated injection, 100 mL vial 1116161000168104 Epirubicin (AN) 1116161000168104 Epirubicin (AN) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +116181000036101 Naltrexone Hydrochloride (GH) 50 mg film-coated tablet, 30, blister pack 128710 114431000036103 Naltrexone Hydrochloride (GH) 50 mg film-coated tablet, 30 113391000036109 Naltrexone Hydrochloride (GH) 50 mg film-coated tablet 112671000036105 Naltrexone Hydrochloride (GH) 112671000036105 Naltrexone Hydrochloride (GH) 27559011000036103 naltrexone hydrochloride 50 mg tablet, 30 22898011000036104 naltrexone hydrochloride 50 mg tablet 21848011000036105 naltrexone +776271000168100 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 100 mL, bottle 231998 776261000168106 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 100 mL 776191000168107 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63601011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +83399011000036108 Zyprexa Relprevv (1 x 405 mg vial, 1 x 3 mL diluent vial), 1 pack, composite pack 143636 83308011000036102 Zyprexa Relprevv (1 x 405 mg vial, 1 x 3 mL diluent vial), 1 pack 83242011000036101 Zyprexa Relprevv (olanzapine 405 mg) modified release injection, 405 mg vial 10631000168105 Zyprexa Relprevv 10631000168105 Zyprexa Relprevv 83484011000036101 olanzapine 405 mg modified release injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 83429011000036107 olanzapine 405 mg modified release injection, vial 21485011000036103 olanzapine +83399011000036108 Zyprexa Relprevv (1 x 405 mg vial, 1 x 3 mL diluent vial), 1 pack, composite pack 143636 83308011000036102 Zyprexa Relprevv (1 x 405 mg vial, 1 x 3 mL diluent vial), 1 pack 631991000168107 Zyprexa Relprevv (inert substance) diluent, 3 mL vial 10631000168105 Zyprexa Relprevv 10631000168105 Zyprexa Relprevv 83484011000036101 olanzapine 405 mg modified release injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 631981000168109 inert substance diluent, 3 mL vial 21220011000036103 inert substance +933239241000036105 Glimepiride (Pharmacor) 1 mg uncoated tablet, 30, blister pack 156402 933236361000036105 Glimepiride (Pharmacor) 1 mg uncoated tablet, 30 933234541000036109 Glimepiride (Pharmacor) 1 mg uncoated tablet 933234221000036103 Glimepiride (Pharmacor) 933234221000036103 Glimepiride (Pharmacor) 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +1122131000168100 Fluquadri Junior 2018 injection suspension, 5 x 0.25 mL syringes 213964 1122121000168103 Fluquadri Junior 2018 injection suspension, 5 x 0.25 mL syringes 1122101000168107 Fluquadri Junior 2018 injection suspension, 0.25 mL syringe 1122081000168100 Fluquadri Junior 2018 1122081000168100 Fluquadri Junior 2018 1122111000168105 influenza quadrivalent child vaccine 2018 injection, 5 x 0.25 mL syringes 1122091000168102 influenza quadrivalent child vaccine 2018 injection, 0.25 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +20844011000036105 Peg-Intron Redipen Injector (1 x 150 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92009 14007011000036106 Peg-Intron Redipen Injector (1 x 150 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 7297011000036105 Peg-Intron Redipen Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28070011000036100 peginterferon alfa-2b 150 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20844011000036105 Peg-Intron Redipen Injector (1 x 150 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92009 14007011000036106 Peg-Intron Redipen Injector (1 x 150 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28070011000036100 peginterferon alfa-2b 150 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20449011000036102 Gelofusine 20 g/500 mL injection solution, 500 mL bag 78102 13652011000036106 Gelofusine 20 g/500 mL injection solution, 500 mL bag 6935011000036109 Gelofusine 20 g/500 mL injection solution, 500 mL bag 4101011000036109 Gelofusine 4101011000036109 Gelofusine 27862011000036102 succinylated gelatin 20 g/500 mL injection, 500 mL bag 23190011000036100 succinylated gelatin 20 g/500 mL injection, bag 32620011000036100 succinylated gelatin +18941011000036103 Flagyl 500 mg suppository, 10, blister pack 27499 12249011000036109 Flagyl 500 mg suppository, 10 5131011000036106 Flagyl 500 mg suppository 6921000168102 Flagyl 6921000168102 Flagyl 27013011000036109 metronidazole 500 mg suppository, 10 22386011000036102 metronidazole 500 mg suppository 21482011000036106 metronidazole +880081000168104 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet, 20, blister pack 215350 880071000168102 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet, 20 880061000168108 Amitriptyline (Blooms The Chemist) 10 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 692961000168101 amitriptyline hydrochloride 10 mg tablet, 20 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +978091000168101 Bio Magnesium film-coated tablet, 100, bottle 164335 978081000168104 Bio Magnesium film-coated tablet, 100 978031000168100 Bio Magnesium film-coated tablet 45051000168105 Bio Magnesium 45051000168105 Bio Magnesium 978071000168102 magnesium oxide heavy 440 mg + magnesium phosphate pentahydrate 175 mg (total magnesium 301.5 mg) + calcium ascorbate dihydrate 50 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet, 100 978021000168103 magnesium oxide heavy 440 mg + magnesium phosphate pentahydrate 175 mg (total magnesium 301.5 mg) + calcium ascorbate dihydrate 50 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet 978011000168105 magnesium + ascorbic acid + pyridoxine + colecalciferol + manganese amino acid chelate +38031000036100 Escitalopram (LAPL) 5 mg film-coated tablet, 28, blister pack 165828 34361000036102 Escitalopram (LAPL) 5 mg film-coated tablet, 28 33021000036106 Escitalopram (LAPL) 5 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +121561000036102 Paracetamol (Pharmacy Action) 500 mg uncoated tablet, 96, blister pack 192004 120481000036102 Paracetamol (Pharmacy Action) 500 mg uncoated tablet, 96 119531000036101 Paracetamol (Pharmacy Action) 500 mg uncoated tablet 119251000036106 Paracetamol (Pharmacy Action) 119251000036106 Paracetamol (Pharmacy Action) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +713011000168104 Javlor 50 mg/2 mL concentrated injection, 10 x 2 mL vials 166767 713001000168102 Javlor 50 mg/2 mL concentrated injection, 10 x 2 mL vials 712951000168108 Javlor 50 mg/2 mL concentrated injection, 2 mL vial 712911000168107 Javlor 712911000168107 Javlor 712991000168103 vinflunine 50 mg/2 mL injection, 10 x 2 mL vials 712941000168106 vinflunine 50 mg/2 mL injection, vial 712931000168102 vinflunine +933230581000036109 Docetaxel (Sandoz) 20 mg/2 mL concentrated injection, 2 mL vial 170108 933224641000036105 Docetaxel (Sandoz) 20 mg/2 mL concentrated injection, 2 mL vial 933220341000036108 Docetaxel (Sandoz) 20 mg/2 mL concentrated injection, 2 mL vial 933219161000036106 Docetaxel (Sandoz) 933219161000036106 Docetaxel (Sandoz) 927738011000036107 docetaxel 20 mg/2 mL injection, 2 mL vial 927716011000036102 docetaxel 20 mg/2 mL injection, vial 21721011000036101 docetaxel +744651000168104 Abstral 200 microgram sublingual tablet, 10, blister pack 193335 744641000168101 Abstral 200 microgram sublingual tablet, 10 744621000168107 Abstral 200 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744631000168105 fentanyl 200 microgram sublingual tablet, 10 744611000168100 fentanyl 200 microgram sublingual tablet 21258011000036102 fentanyl +87648011000036107 Sifrol ER 4.5 mg modified release tablet, 30, blister pack 158764 87468011000036101 Sifrol ER 4.5 mg modified release tablet, 30 87328011000036102 Sifrol ER 4.5 mg modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 87818011000036106 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet, 30 87762011000036107 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet 37716011000036100 pramipexole +908991000168108 Celecoxib (Bellwether) 200 mg hard capsule, 20, blister pack 196186 908981000168105 Celecoxib (Bellwether) 200 mg hard capsule, 20 908951000168103 Celecoxib (Bellwether) 200 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +69589011000036108 Bepanthen Antiseptic 0.05% cream, 50 g, tube 182923 67388011000036109 Bepanthen Antiseptic 0.05% cream, 50 g 65640011000036107 Bepanthen Antiseptic 0.05% cream 25631000168108 Bepanthen Antiseptic 25631000168108 Bepanthen Antiseptic 71923011000036103 benzalkonium chloride 0.05% cream, 50 g 70248011000036101 benzalkonium chloride 0.05% cream 50773011000036101 benzalkonium chloride +69589011000036108 Bepanthen Antiseptic 0.05% cream, 50 g, tube 66657 67388011000036109 Bepanthen Antiseptic 0.05% cream, 50 g 65640011000036107 Bepanthen Antiseptic 0.05% cream 25631000168108 Bepanthen Antiseptic 25631000168108 Bepanthen Antiseptic 71923011000036103 benzalkonium chloride 0.05% cream, 50 g 70248011000036101 benzalkonium chloride 0.05% cream 50773011000036101 benzalkonium chloride +35665011000036102 Visine Professional 1% eye drops solution, 20 x 0.5 mL unit doses, ampoule 35574011000036101 Visine Professional 1% eye drops solution, 20 x 0.5 mL unit doses 35476011000036101 Visine Professional 1% eye drops solution, 0.5 mL unit dose 35447011000036102 Visine Professional 35447011000036102 Visine Professional 35771011000036100 Tamarindus indica seed polysaccharide 1% eye drops, 20 x 0.5 mL unit doses 35712011000036100 Tamarindus indica seed polysaccharide 1% eye drops, unit dose 35695011000036100 Tamarindus indica seed polysaccharide +59798011000036104 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 35 g, tube 114309 55760011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 35 g 53720011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63129011000036109 bifonazole 1% gel, 35 g 61865011000036102 bifonazole 1% gel 21899011000036106 bifonazole +170971000036109 Panadol Extra Optizorb film-coated tablet, 20, blister pack 203990 170041000036101 Panadol Extra Optizorb film-coated tablet, 20 168931000036103 Panadol Extra Optizorb film-coated tablet 7671000168109 Panadol Extra Optizorb 7671000168109 Panadol Extra Optizorb 170051000036103 paracetamol 500 mg + caffeine 65 mg tablet, 20 168941000036108 paracetamol 500 mg + caffeine 65 mg tablet 171051000036108 paracetamol + caffeine +17999011000036103 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30, blister pack 149802 11303011000036109 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30 4793011000036102 Simvastatin (Terry White Chemists) 40 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +17999011000036103 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30, blister pack 131632 11303011000036109 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30 4793011000036102 Simvastatin (Terry White Chemists) 40 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +17999011000036103 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30, blister pack 104530 11303011000036109 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30 4793011000036102 Simvastatin (Terry White Chemists) 40 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +17999011000036103 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30, blister pack 211954 11303011000036109 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30 4793011000036102 Simvastatin (Terry White Chemists) 40 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +116221000036107 Kiovig 10% 10 g/100 mL injection solution, 100 mL vial 131969 114491000036102 Kiovig 10% 10 g/100 mL injection solution, 100 mL vial 112851000036101 Kiovig 10% 10 g/100 mL injection solution, 100 mL vial 17421000168108 Kiovig 10% 17421000168108 Kiovig 10% 108911000036108 normal immunoglobulin 10 g/100 mL injection, 100 mL vial 107121000036102 normal immunoglobulin 10 g/100 mL injection, vial 74965011000036103 normal immunoglobulin +917651000168107 Imigran with Autoinjector 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 38344 917641000168105 Imigran with Autoinjector 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 917631000168101 Imigran with Autoinjector 6 mg/0.5 mL injection solution, 0.5 mL syringe 30771000168105 Imigran 30771000168105 Imigran 78246011000036102 sumatriptan 6 mg/0.5 mL injection, 2 x 0.5 mL syringes 77570011000036104 sumatriptan 6 mg/0.5 mL injection, syringe 21708011000036102 sumatriptan +19421011000036101 Humalog 100 units/mL injection solution, 1 x 10 mL vial 53488 12705011000036105 Humalog 100 units/mL injection solution, 1 x 10 mL vial 5523011000036100 Humalog 100 units/mL injection solution, 10 mL vial 22101000168100 Humalog 22101000168100 Humalog 27298011000036109 insulin lispro 100 units/mL injection, 1 x 10 mL vial 22651011000036109 insulin lispro 100 units/mL injection, vial 21851011000036103 insulin lispro +104341000036103 Irbesartan/HCTZ 300/25 (RBX) film-coated tablet, 30, blister pack 190466 102391000036104 Irbesartan/HCTZ 300/25 (RBX) film-coated tablet, 30 99301000036105 Irbesartan/HCTZ 300/25 (RBX) film-coated tablet 37951000168104 Irbesartan/HCTZ 300/25 (RBX) 37951000168104 Irbesartan/HCTZ 300/25 (RBX) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +715821000168103 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g, tube 132865 715811000168105 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g 715801000168107 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream 47891000168101 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 47891000168101 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +82372011000036101 Coplavix 75 mg/100 mg film-coated tablet, 30, blister pack 150443 82161011000036108 Coplavix 75 mg/100 mg film-coated tablet, 30 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +717261000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 5, bottle 167313 717251000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 5 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716611000168103 omeprazole 20 mg enteric capsule, 5 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +811071000168109 Prodeine uncoated tablet, 12, blister pack 200605 811061000168103 Prodeine uncoated tablet, 12 811031000168106 Prodeine uncoated tablet 811021000168108 Prodeine 811021000168108 Prodeine 63609011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 12 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +925198011000036109 Paclitaxel (Kabi) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 156272 924735011000036109 Paclitaxel (Kabi) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 924444011000036101 Paclitaxel (Kabi) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 924407011000036104 Paclitaxel (Kabi) 924407011000036104 Paclitaxel (Kabi) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +20861011000036103 Stelax 25 mg uncoated tablet, 100, bottle 92252 14024011000036106 Stelax 25 mg uncoated tablet, 100 7300011000036100 Stelax 25 mg uncoated tablet 3204011000036107 Stelax 3204011000036107 Stelax 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +928839011000036109 Paclitaxel (DP) 150 mg/25 mL concentrated injection, 25 mL vial 129571 928201011000036107 Paclitaxel (DP) 150 mg/25 mL concentrated injection, 25 mL vial 927860011000036102 Paclitaxel (DP) 150 mg/25 mL concentrated injection, 25 mL vial 927811011000036105 Paclitaxel (DP) 927811011000036105 Paclitaxel (DP) 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +18650011000036106 Talam 20 mg film-coated tablet, 28, bottle 212220 14031011000036105 Talam 20 mg film-coated tablet, 28 7307011000036104 Talam 20 mg film-coated tablet 3427011000036108 Talam 3427011000036108 Talam 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +18650011000036106 Talam 20 mg film-coated tablet, 28, bottle 101346 14031011000036105 Talam 20 mg film-coated tablet, 28 7307011000036104 Talam 20 mg film-coated tablet 3427011000036108 Talam 3427011000036108 Talam 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +932091000168102 Centevo 50/12.5/200 mg film-coated tablet, 60, bottle 238152 932081000168100 Centevo 50/12.5/200 mg film-coated tablet, 60 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932071000168103 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 60 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +68955011000036107 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 6 sachets 133242 66757011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 6 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71425011000036104 paracetamol 500 mg powder for oral liquid, 6 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +17743011000036101 Gabahexal 400 mg capsule, 100, blister pack 101466 11201011000036101 Gabahexal 400 mg capsule, 100 4672011000036107 Gabahexal 400 mg capsule 3614011000036107 Gabahexal 3614011000036107 Gabahexal 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +146091000036108 Candesartan Cilexetil (Pharmacor) 8 mg uncoated tablet, 30, bottle 195455 145221000036109 Candesartan Cilexetil (Pharmacor) 8 mg uncoated tablet, 30 144041000036107 Candesartan Cilexetil (Pharmacor) 8 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +60826011000036105 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 10, blister pack 58353 56782011000036107 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 10 54080011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 63565011000036105 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule, 10 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +44265011000036106 Singulair 10 mg film-coated tablet, 4, blister pack 61846 41736011000036107 Singulair 10 mg film-coated tablet, 4 40173011000036103 Singulair 10 mg film-coated tablet 4287011000036103 Singulair 4287011000036103 Singulair 46543011000036101 montelukast 10 mg tablet, 4 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +96221000036101 Docetaxel (AS) (1 x 80 mg/2 mL vial, 1 x inert diluent vial), 1 pack, composite pack 181990 94231000036109 Docetaxel (AS) (1 x 80 mg/2 mL vial, 1 x inert diluent vial), 1 pack 93681000036109 Docetaxel (AS) (inert substance) diluent, vial 93301000036107 Docetaxel (AS) 93301000036107 Docetaxel (AS) 94241000036104 docetaxel 80 mg/2 mL injection [2 mL vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +96221000036101 Docetaxel (AS) (1 x 80 mg/2 mL vial, 1 x inert diluent vial), 1 pack, composite pack 181990 94231000036109 Docetaxel (AS) (1 x 80 mg/2 mL vial, 1 x inert diluent vial), 1 pack 93591000036105 Docetaxel (AS) (docetaxel 80 mg/2 mL) concentrated injection, 2 mL vial 93301000036107 Docetaxel (AS) 93301000036107 Docetaxel (AS) 94241000036104 docetaxel 80 mg/2 mL injection [2 mL vial] (&) inert substance diluent [1 vial], 1 pack 33678011000036109 docetaxel 80 mg/2 mL injection, vial 21721011000036101 docetaxel +913721000168103 Cirofaxin 250 mg film-coated tablet, 10, blister pack 114043 913711000168105 Cirofaxin 250 mg film-coated tablet, 10 913631000168108 Cirofaxin 250 mg film-coated tablet 933240751000036107 Cirofaxin 933240751000036107 Cirofaxin 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +44300011000036108 Zeldox 20 mg hard capsule, 60, bottle 65853 13131011000036103 Zeldox 20 mg hard capsule, 60 6414011000036103 Zeldox 20 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27569011000036108 ziprasidone 20 mg capsule, 60 22908011000036106 ziprasidone 20 mg capsule 21267011000036107 ziprasidone +17931011000036107 Aristocort 0.02% ointment, 100 g, tube 15123 12072011000036107 Aristocort 0.02% ointment, 100 g 4749011000036108 Aristocort 0.02% ointment 3359011000036107 Aristocort 3359011000036107 Aristocort 28166011000036104 triamcinolone acetonide 0.02% ointment, 100 g 23476011000036109 triamcinolone acetonide 0.02% ointment 21377011000036106 triamcinolone +20544011000036109 Duro-K 600 mg (potassium 8 mmol) modified release tablet, 100, bottle 79739 13741011000036105 Duro-K 600 mg (potassium 8 mmol) modified release tablet, 100 7025011000036101 Duro-K 600 mg (potassium 8 mmol) modified release tablet 3214011000036109 Duro-K 3214011000036109 Duro-K 27911011000036102 potassium chloride 600 mg (potassium 8 mmol) modified release tablet, 100 23235011000036103 potassium chloride 600 mg (potassium 8 mmol) modified release tablet 21274011000036107 potassium chloride +44591011000036100 Vfend 50 mg film-coated tablet, 100, blister pack 82507 42044011000036101 Vfend 50 mg film-coated tablet, 100 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46812011000036100 voriconazole 50 mg tablet, 100 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +650231000168109 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 98, blister pack 202107 650221000168106 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 98 650111000168109 Pritor/Amlodipine 40 mg/10 mg multilayer tablet 650101000168106 Pritor/Amlodipine 40 mg/10 mg 650101000168106 Pritor/Amlodipine 40 mg/10 mg 932432011000036101 telmisartan 40 mg + amlodipine 10 mg tablet, 98 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +947661000168103 Risdone 1 mg film-coated tablet, 60, blister pack 144262 947651000168100 Risdone 1 mg film-coated tablet, 60 947511000168102 Risdone 1 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +39382011000036108 Tryzan 1.25 mg uncoated tablet, 10, blister pack 129873 39266011000036104 Tryzan 1.25 mg uncoated tablet, 10 39208011000036104 Tryzan 1.25 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39467011000036102 ramipril 1.25 mg tablet, 10 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +81781000036100 Leflunomide (GA) 10 mg film-coated tablet, 30, bottle 164947 80051000036100 Leflunomide (GA) 10 mg film-coated tablet, 30 78701000036107 Leflunomide (GA) 10 mg film-coated tablet 77731000036104 Leflunomide (GA) 77731000036104 Leflunomide (GA) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +83408011000036107 Cephalexin (Apo) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 160864 83327011000036109 Cephalexin (Apo) 125 mg/5 mL powder for oral liquid, 100 mL 83256011000036100 Cephalexin (Apo) 125 mg/5 mL powder for oral liquid, 5 mL 29951000168107 Cephalexin (Apo) 29951000168107 Cephalexin (Apo) 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +960551000168106 Ciram 40 mg film-coated tablet, 56, blister pack 158860 960541000168109 Ciram 40 mg film-coated tablet, 56 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202911000036102 citalopram 40 mg tablet, 56 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +60269011000036101 Cold and Flu (Priceline) uncoated tablet, 24, blister pack 134692 56228011000036105 Cold and Flu (Priceline) uncoated tablet, 24 53846011000036107 Cold and Flu (Priceline) uncoated tablet 53210011000036106 Cold and Flu (Priceline) 53210011000036106 Cold and Flu (Priceline) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +735951000168108 Prochlorperazine Nausea Relief (Apo) 5 mg uncoated tablet, 10, blister pack 186540 735941000168106 Prochlorperazine Nausea Relief (Apo) 5 mg uncoated tablet, 10 735931000168102 Prochlorperazine Nausea Relief (Apo) 5 mg uncoated tablet 735921000168100 Prochlorperazine Nausea Relief (Apo) 735921000168100 Prochlorperazine Nausea Relief (Apo) 924183011000036108 prochlorperazine maleate 5 mg tablet, 10 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +920750011000036102 Methadone Hydrochloride Syrup (Sigma) 5 mg/mL oral liquid solution, 200 mL, bottle 49372 920433011000036102 Methadone Hydrochloride Syrup (Sigma) 5 mg/mL oral liquid solution, 200 mL 920175011000036100 Methadone Hydrochloride Syrup (Sigma) 5 mg/mL oral liquid solution 43691000168105 Methadone Hydrochloride Syrup (Sigma) 43691000168105 Methadone Hydrochloride Syrup (Sigma) 27551011000036102 methadone hydrochloride 5 mg/mL oral liquid, 200 mL 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +69315011000036106 Riotane Concentrate 5% solution, 500 mL, bottle 21201 67115011000036107 Riotane Concentrate 5% solution, 500 mL 65424011000036103 Riotane Concentrate 5% solution 25881000168108 Riotane Concentrate 25881000168108 Riotane Concentrate 71682011000036101 chlorhexidine gluconate 5% solution, 500 mL 70121011000036105 chlorhexidine gluconate 5% solution 21404011000036101 chlorhexidine +1070011000168101 Dilaudid 1 mg/mL oral liquid, 200 mL, bottle 67360 1070001000168104 Dilaudid 1 mg/mL oral liquid, 200 mL 6483011000036103 Dilaudid 1 mg/mL oral liquid 3117011000036100 Dilaudid 3117011000036100 Dilaudid 1069991000168106 hydromorphone hydrochloride 1 mg/mL oral liquid, 200 mL 22951011000036108 hydromorphone hydrochloride 1 mg/mL oral liquid 21480011000036107 hydromorphone +82894011000036100 ProVen Plus film-coated tablet, 96, blister pack 160536 82788011000036109 ProVen Plus film-coated tablet, 96 82696011000036101 ProVen Plus film-coated tablet 82669011000036108 ProVen Plus 82669011000036108 ProVen Plus 83005011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 96 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +785181000168109 Methadone (Phebra) 10 mg/mL injection solution, 10 x 1 mL vials 152792 785171000168106 Methadone (Phebra) 10 mg/mL injection solution, 10 x 1 mL vials 785151000168102 Methadone (Phebra) 10 mg/mL injection solution, vial 785141000168104 Methadone (Phebra) 785141000168104 Methadone (Phebra) 785161000168100 methadone hydrochloride 10 mg/mL injection, 10 x 1 mL vials 49081000036108 methadone hydrochloride 10 mg/mL injection, vial 21357011000036109 methadone +156761000036102 Inlyta 5 mg film-coated tablet, 28, blister pack 184859 155851000036100 Inlyta 5 mg film-coated tablet, 28 155141000036105 Inlyta 5 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 155861000036102 axitinib 5 mg tablet, 28 155151000036108 axitinib 5 mg tablet 157041000036102 axitinib +85471000036107 Fendex ER 5 mg modified release tablet, 7, blister pack 184621 84531000036107 Fendex ER 5 mg modified release tablet, 7 84081000036101 Fendex ER 5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84541000036102 felodipine 5 mg modified release tablet, 7 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +1067601000168104 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 12, blister pack 175119 1067591000168106 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 12 1067531000168107 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +778771000168106 Latanoprost-Timolol 50/5 (Alphapharm) eye drops solution, 2.5 mL, bottle 217133 778761000168100 Latanoprost-Timolol 50/5 (Alphapharm) eye drops solution, 2.5 mL 778751000168102 Latanoprost-Timolol 50/5 (Alphapharm) eye drops solution 778741000168104 Latanoprost-Timolol 50/5 (Alphapharm) 778741000168104 Latanoprost-Timolol 50/5 (Alphapharm) 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +964841000168102 Physiotens 300 microgram film-coated tablet, 84, blister pack 114120 964831000168106 Physiotens 300 microgram film-coated tablet, 84 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964401000168102 moxonidine 300 microgram tablet, 84 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +933229771000036107 MSUD Anamix Junior powder for oral liquid, 30 x 29 g sachets 933223271000036103 MSUD Anamix Junior powder for oral liquid, 30 x 29 g sachets 171681000168100 MSUD Anamix Junior powder for oral liquid, 29 g sachet 39581000168106 MSUD Anamix Junior 39581000168106 MSUD Anamix Junior 51471011000036100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 30 x 29 g sachets 171491000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 29 g sachet 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +20055011000036108 Jezil 600 mg tablet, 60, bottle 69783 13285011000036109 Jezil 600 mg tablet, 60 6568011000036101 Jezil 600 mg tablet 4082011000036106 Jezil 4082011000036106 Jezil 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +61211011000036106 Strepfen Intensive cherry 8.75 mg lozenge, 2, blister pack 76192 57147011000036107 Strepfen Intensive cherry 8.75 mg lozenge, 2 54217011000036109 Strepfen Intensive cherry 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63908011000036107 flurbiprofen 8.75 mg lozenge, 2 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +77197011000036104 Readi-Cat-2 21 mg/mL oral liquid suspension, 450 mL, bottle 129553 76613011000036109 Readi-Cat-2 21 mg/mL oral liquid suspension, 450 mL 76063011000036103 Readi-Cat-2 21 mg/mL oral liquid suspension 28311000168102 Readi-Cat-2 28311000168102 Readi-Cat-2 78166011000036106 barium sulfate 21 mg/mL oral liquid, 450 mL 77522011000036101 barium sulfate 21 mg/mL oral liquid 77454011000036104 barium +1063581000168102 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 15, blister pack 155753 1063571000168100 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 15 1063471000168104 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +181821000036103 Fonatplus 70 mg/140 microgram uncoated tablet, 4, blister pack 206931 181811000036105 Fonatplus 70 mg/140 microgram uncoated tablet, 4 181801000036108 Fonatplus 70 mg/140 microgram uncoated tablet 57131000168108 Fonatplus 70 mg/140 microgram 57131000168108 Fonatplus 70 mg/140 microgram 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +718631000168109 Paclitaxel (Act) 150 mg/25 mL concentrated injection, 25 mL vial 148034 718621000168106 Paclitaxel (Act) 150 mg/25 mL concentrated injection, 25 mL vial 718611000168104 Paclitaxel (Act) 150 mg/25 mL concentrated injection, 25 mL vial 718601000168102 Paclitaxel (Act) 718601000168102 Paclitaxel (Act) 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +59875011000036102 Mylanta Ranitidine 24 Hour Action 300 mg film-coated tablet, 14, blister pack 116268 55837011000036104 Mylanta Ranitidine 24 Hour Action 300 mg film-coated tablet, 14 53660011000036109 Mylanta Ranitidine 24 Hour Action 300 mg film-coated tablet 23171000168104 Mylanta Ranitidine 24 Hour Action 23171000168104 Mylanta Ranitidine 24 Hour Action 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +686581000168100 Azithromycin (Alphapharm) 500 mg powder for injection, 1 vial 191947 686571000168103 Azithromycin (Alphapharm) 500 mg powder for injection, 1 vial 686561000168109 Azithromycin (Alphapharm) 500 mg powder for injection, 500 mg vial 686551000168107 Azithromycin (Alphapharm) 686551000168107 Azithromycin (Alphapharm) 46892011000036101 azithromycin 500 mg injection, 1 vial 45336011000036107 azithromycin 500 mg injection, vial 21518011000036103 azithromycin +861921000168106 Ostelin Vitamin D and Calcium chewable tablet, 60, bottle 175094 861911000168104 Ostelin Vitamin D and Calcium chewable tablet, 60 861891000168101 Ostelin Vitamin D and Calcium chewable tablet 920102011000036100 Ostelin Vitamin D and Calcium 920102011000036100 Ostelin Vitamin D and Calcium 861901000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet, 60 861881000168104 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet 733951000168109 calcium + colecalciferol +947981000168100 Citlam-S 5 mg film-coated tablet, 98, blister pack 191899 947971000168103 Citlam-S 5 mg film-coated tablet, 98 947711000168108 Citlam-S 5 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 945191000168106 escitalopram 5 mg tablet, 98 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +171771000036100 Foradile 12 microgram powder for inhalation, 60 capsules, blister pack 58673 171681000036107 Foradile 12 microgram powder for inhalation, 60 capsules 171591000036108 Foradile 12 microgram powder for inhalation, 1 capsule 3058011000036103 Foradile 3058011000036103 Foradile 171691000036109 formoterol (eformoterol) fumarate dihydrate 12 microgram powder for inhalation, 60 capsules 171601000036101 formoterol (eformoterol) fumarate dihydrate 12 microgram powder for inhalation, 1 capsule 21358011000036105 formoterol (eformoterol) +81701000036106 Epirubicin Hydrochloride (Kabi) 200 mg/100 mL injection solution, 100 mL vial 175840 80141000036102 Epirubicin Hydrochloride (Kabi) 200 mg/100 mL injection solution, 100 mL vial 78891000036108 Epirubicin Hydrochloride (Kabi) 200 mg/100 mL injection solution, 100 mL vial 78081000036104 Epirubicin Hydrochloride (Kabi) 78081000036104 Epirubicin Hydrochloride (Kabi) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +12741000036100 Olanzapine (Apo) 2.5 mg film-coated tablet, 28, bottle 158978 6931000036106 Olanzapine (Apo) 2.5 mg film-coated tablet, 28 2531000036102 Olanzapine (Apo) 2.5 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +913421000168107 Zentel 200 mg tablet, 100, bottle 50815 913411000168100 Zentel 200 mg tablet, 100 844201000168104 Zentel 200 mg tablet 4225011000036100 Zentel 4225011000036100 Zentel 913401000168103 albendazole 200 mg tablet, 100 844191000168102 albendazole 200 mg tablet 21425011000036106 albendazole +181981000036105 Picato 0.015% gel, 470 mg, tube 181991000036107 Picato 0.015% gel, 470 mg 117761000036105 Picato 0.015% gel 106611000036100 Picato 106611000036100 Picato 182001000036105 ingenol mebutate 0.015% gel, 470 mg 117771000036102 ingenol mebutate 0.015% gel 111241000036107 ingenol mebutate +767941000168108 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 233113 767931000168104 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 767891000168107 Lenest 30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) uncoated tablet 767881000168109 Lenest 30 ED 767881000168109 Lenest 30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +767941000168108 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 233113 767931000168104 Lenest 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 767901000168106 Lenest 30 ED (inert substance) uncoated tablet 767881000168109 Lenest 30 ED 767881000168109 Lenest 30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19918011000036102 Anaprox 550 mg film-coated tablet, 50, blister pack 66544 13163011000036107 Anaprox 550 mg film-coated tablet, 50 6446011000036101 Anaprox 550 mg film-coated tablet 3170011000036109 Anaprox 3170011000036109 Anaprox 27625011000036107 naproxen sodium 550 mg tablet, 50 22963011000036100 naproxen sodium 550 mg tablet 21304011000036105 naproxen +709971000168107 Fluquadri 2015 injection suspension, 10 x 0.5 mL syringes 213963 709961000168101 Fluquadri 2015 injection suspension, 10 x 0.5 mL syringes 709951000168103 Fluquadri 2015 injection suspension, 0.5 mL syringe 709941000168100 Fluquadri 2015 709941000168100 Fluquadri 2015 709791000168106 influenza quadrivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 709771000168105 influenza quadrivalent adult vaccine 2015 injection, 0.5 mL syringe 703011000168102 influenza quadrivalent vaccine 2015 +776591000168101 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 30 mL, bottle 174347 776581000168104 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 30 mL 776561000168108 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 15 mL 776531000168100 Duro-Tuss PE Chesty Cough plus Nasal Decongestant 776531000168100 Duro-Tuss PE Chesty Cough plus Nasal Decongestant 776571000168102 bromhexine hydrochloride 12 mg/15 mL + phenylephrine hydrochloride 10 mg/15 mL oral liquid, 30 mL 776551000168106 bromhexine hydrochloride 12 mg/15 mL + phenylephrine hydrochloride 10 mg/15 mL oral liquid 776541000168109 bromhexine + phenylephrine +44488011000036104 Nexium 40 mg enteric tablet, 100, bottle 75727 41943011000036108 Nexium 40 mg enteric tablet, 100 6712011000036101 Nexium 40 mg enteric tablet 2929011000036108 Nexium 2929011000036108 Nexium 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +784861000168106 Ondansetron (GH) 4 mg film-coated tablet, 6, blister pack 231645 784851000168109 Ondansetron (GH) 4 mg film-coated tablet, 6 784781000168106 Ondansetron (GH) 4 mg film-coated tablet 784771000168108 Ondansetron (GH) 784771000168108 Ondansetron (GH) 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +744171000168100 Alacare 8 mg dermal patch, 8, sachet 223468 744161000168106 Alacare 8 mg dermal patch, 8 744111000168108 Alacare 8 mg dermal patch 743961000168105 Alacare 743961000168105 Alacare 744151000168109 aminolevulinic acid 8 mg patch, 8 744101000168105 aminolevulinic acid 8 mg patch 44958011000036105 aminolevulinic acid +1110391000168105 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 84, blister pack 219061 1110381000168107 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 84 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82554011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 84 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +710291000168108 PKU Air 20 White (Caribbean Crush) oral liquid solution, 30 x 174 mL pouches 710281000168105 PKU Air 20 White (Caribbean Crush) oral liquid solution, 30 x 174 mL pouches 710261000168101 PKU Air 20 White (Caribbean Crush) oral liquid solution, 174 mL pouch 710241000168100 PKU Air 20 710241000168100 PKU Air 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +879241000168100 Briviact 10 mg film-coated tablet, 168, blister pack 243794 879231000168109 Briviact 10 mg film-coated tablet, 168 879121000168102 Briviact 10 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 879221000168106 brivaracetam 10 mg tablet, 168 879111000168109 brivaracetam 10 mg tablet 876401000168109 brivaracetam +20878011000036104 Andriol Testocap 40 mg soft capsule, 60, blister pack 92904 14040011000036104 Andriol Testocap 40 mg soft capsule, 60 7318011000036100 Andriol Testocap 40 mg soft capsule 60041000168107 Andriol Testocap 60041000168107 Andriol Testocap 28103011000036109 testosterone undecanoate 40 mg capsule, 60 23413011000036106 testosterone undecanoate 40 mg capsule 21393011000036106 testosterone undecanoate +1102081000168105 Ganciclovir (SXP) 500 mg powder for injection, 5 vials 280238 1102071000168107 Ganciclovir (SXP) 500 mg powder for injection, 5 vials 1102061000168101 Ganciclovir (SXP) 500 mg powder for injection, 500 mg vial 1102051000168103 Ganciclovir (SXP) 1102051000168103 Ganciclovir (SXP) 26536011000036105 ganciclovir 500 mg injection, 5 vials 21945011000036106 ganciclovir 500 mg injection, vial 21698011000036108 ganciclovir +38511000036103 Escitalupin 10 mg film-coated tablet, 28, blister pack 165854 34841000036107 Escitalupin 10 mg film-coated tablet, 28 33071000036105 Escitalupin 10 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +828111000168104 Voriconazole (Apotex) 200 mg film-coated tablet, 56, blister pack 218361 828101000168102 Voriconazole (Apotex) 200 mg film-coated tablet, 56 828091000168107 Voriconazole (Apotex) 200 mg film-coated tablet 828081000168109 Voriconazole (Apotex) 828081000168109 Voriconazole (Apotex) 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +12581000036101 Olanzapine (Apo) 20 mg film-coated tablet, 28, bottle 158961 6921000036109 Olanzapine (Apo) 20 mg film-coated tablet, 28 2511000036106 Olanzapine (Apo) 20 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 6841000036106 olanzapine 20 mg tablet, 28 1361000036106 olanzapine 20 mg tablet 21485011000036103 olanzapine +776441000168108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 215494 776431000168104 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 758741000168102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776441000168108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 61771 776431000168104 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 758741000168102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776441000168108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 215494 776431000168104 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 758741000168102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +776441000168108 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 61771 776431000168104 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 2 x 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 758741000168102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +836421000168102 Acarizax sublingual tablet, 90, blister pack 250392 836411000168109 Acarizax sublingual tablet, 90 836301000168103 Acarizax sublingual tablet 836231000168103 Acarizax 836231000168103 Acarizax 836401000168106 American house dust mite extract + European house dust mite extract (total 12 SQ-HDM) sublingual tablet, 90 836291000168104 American house dust mite extract + European house dust mite extract (total 12 SQ-HDM) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +1087011000168108 Ibuprofamol film-coated tablet, 30, blister pack 283027 1087001000168105 Ibuprofamol film-coated tablet, 30 1086951000168108 Ibuprofamol film-coated tablet 1086941000168106 Ibuprofamol 1086941000168106 Ibuprofamol 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +55941000036104 Multaq 400 mg film-coated tablet, 500, bottle 156356 52701000036107 Multaq 400 mg film-coated tablet, 500 48961000036109 Multaq 400 mg film-coated tablet 48081000036100 Multaq 48081000036100 Multaq 52711000036109 dronedarone 400 mg tablet, 500 48971000036101 dronedarone 400 mg tablet 56861000036100 dronedarone +1012111000168107 Irbesartan (Apotex) 300 mg film-coated tablet, 28, blister pack 169795 1012101000168109 Irbesartan (Apotex) 300 mg film-coated tablet, 28 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777441000168106 irbesartan 300 mg tablet, 28 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +925359011000036102 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 60 mL, bottle 172237 924895011000036102 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 60 mL 924537011000036100 Antimicrobial Hand Gel (Sunnywipes) 70% gel 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 925449011000036106 ethanol 70% gel, 60 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +929099011000036100 Pioglitazone (Chemmart) 45 mg uncoated tablet, 28, blister pack 166916 928460011000036102 Pioglitazone (Chemmart) 45 mg uncoated tablet, 28 927989011000036102 Pioglitazone (Chemmart) 45 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +60611011000036101 Demazin 6 Hour uncoated tablet, 4, blister pack 18815 56569011000036101 Demazin 6 Hour uncoated tablet, 4 53977011000036103 Demazin 6 Hour uncoated tablet 42401000168107 Demazin 6 Hour 42401000168107 Demazin 6 Hour 63430011000036101 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg tablet, 4 61958011000036106 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg tablet 61737011000036102 pseudoephedrine + chlorphenamine +701471000168100 Metoclopramide (RBX) 10 mg film-coated tablet, 25, blister pack 196488 701461000168106 Metoclopramide (RBX) 10 mg film-coated tablet, 25 701451000168109 Metoclopramide (RBX) 10 mg film-coated tablet 701441000168107 Metoclopramide (RBX) 701441000168107 Metoclopramide (RBX) 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +85391000036101 Fendex ER 10 mg modified release tablet, 500, bottle 184618 84821000036107 Fendex ER 10 mg modified release tablet, 500 84091000036104 Fendex ER 10 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84831000036109 felodipine 10 mg modified release tablet, 500 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +700030001000036104 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 170388 101411000036107 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 98961000036100 Femme-Tab ED 30/150 (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 700015541000036105 Femme-Tab ED 30/150 700015541000036105 Femme-Tab ED 30/150 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700030001000036104 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 170388 101411000036107 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 99071000036103 Femme-Tab ED 30/150 (inert substance) film-coated tablet 700015541000036105 Femme-Tab ED 30/150 700015541000036105 Femme-Tab ED 30/150 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +84376011000036109 Paracetamol (Priceline) 500 mg uncoated tablet, 24, blister pack 166697 84068011000036101 Paracetamol (Priceline) 500 mg uncoated tablet, 24 83692011000036109 Paracetamol (Priceline) 500 mg uncoated tablet 53428011000036101 Paracetamol (Priceline) 53428011000036101 Paracetamol (Priceline) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +80992011000036107 Effient 10 mg film-coated tablet, 6, blister pack 150810 80565011000036106 Effient 10 mg film-coated tablet, 6 80194011000036100 Effient 10 mg film-coated tablet 80100011000036108 Effient 80100011000036108 Effient 81644011000036103 prasugrel 10 mg tablet, 6 81277011000036105 prasugrel 10 mg tablet 81216011000036103 prasugrel +43966011000036100 Minirin 4 microgram/mL injection solution, 10 x 1 mL ampoules 40689 41458011000036104 Minirin 4 microgram/mL injection solution, 10 x 1 mL ampoules 39985011000036108 Minirin 4 microgram/mL injection solution, ampoule 13491000168101 Minirin 13491000168101 Minirin 46307011000036104 desmopressin acetate 4 microgram/mL injection, 10 x 1 mL ampoules 45066011000036101 desmopressin acetate 4 microgram/mL injection, ampoule 21750011000036107 desmopressin +923712011000036106 Irinotecan Hydrochloride Trihydrate (Baxter) 100 mg/5 mL concentrated injection, 5 mL vial 144745 923285011000036109 Irinotecan Hydrochloride Trihydrate (Baxter) 100 mg/5 mL concentrated injection, 5 mL vial 922974011000036105 Irinotecan Hydrochloride Trihydrate (Baxter) 100 mg/5 mL concentrated injection, 5 mL vial 922941011000036106 Irinotecan Hydrochloride Trihydrate (Baxter) 922941011000036106 Irinotecan Hydrochloride Trihydrate (Baxter) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +20415011000036108 Baclo 10 mg tablet, 100, bottle 77569 13622011000036107 Baclo 10 mg tablet, 100 6905011000036103 Baclo 10 mg tablet 4403011000036109 Baclo 4403011000036109 Baclo 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +913561000168101 Amlodipine (Alkem) 10 mg tablet, 10, blister pack 215705 913551000168103 Amlodipine (Alkem) 10 mg tablet, 10 913511000168104 Amlodipine (Alkem) 10 mg tablet 913041000168106 Amlodipine (Alkem) 913041000168106 Amlodipine (Alkem) 86413011000036108 amlodipine 10 mg tablet, 10 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +928857011000036101 Irinotecan Hydrochloride Trihydrate (GA) 40 mg/2 mL concentrated injection, 2 mL vial 137446 928219011000036108 Irinotecan Hydrochloride Trihydrate (GA) 40 mg/2 mL concentrated injection, 2 mL vial 927878011000036108 Irinotecan Hydrochloride Trihydrate (GA) 40 mg/2 mL concentrated injection, 2 mL vial 927829011000036104 Irinotecan Hydrochloride Trihydrate (GA) 927829011000036104 Irinotecan Hydrochloride Trihydrate (GA) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +973521000168102 Pregabalin (GH) 150 mg hard capsule, 60, blister pack 215680 973511000168109 Pregabalin (GH) 150 mg hard capsule, 60 973411000168108 Pregabalin (GH) 150 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +810751000168107 Quetiapine XR (Apo) 50 mg modified release tablet, 10, blister pack 241755 810741000168105 Quetiapine XR (Apo) 50 mg modified release tablet, 10 810731000168101 Quetiapine XR (Apo) 50 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51529011000036107 quetiapine 50 mg modified release tablet, 10 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +933230421000036107 Escitalopram (DRLA) 20 mg film-coated tablet, 30, bottle 165132 933224331000036105 Escitalopram (DRLA) 20 mg film-coated tablet, 30 933220151000036109 Escitalopram (DRLA) 20 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +44668011000036103 Liprace 20 mg uncoated tablet, 30, bottle 91381 13969011000036107 Liprace 20 mg uncoated tablet, 30 7255011000036108 Liprace 20 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +913581000168105 Amlodipine (Alkem) 10 mg tablet, 30, blister pack 215705 913571000168107 Amlodipine (Alkem) 10 mg tablet, 30 913511000168104 Amlodipine (Alkem) 10 mg tablet 913041000168106 Amlodipine (Alkem) 913041000168106 Amlodipine (Alkem) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +928955011000036103 Cleviprex 25 mg/50 mL injection emulsion, 10 x 50 mL vials 156137 928316011000036108 Cleviprex 25 mg/50 mL injection emulsion, 10 x 50 mL vials 927945011000036105 Cleviprex 25 mg/50 mL injection emulsion, 50 mL vial 927813011000036106 Cleviprex 927813011000036106 Cleviprex 929215011000036109 clevidipine 25 mg/50 mL injection, 10 x 50 mL vials 929151011000036101 clevidipine 25 mg/50 mL injection, vial 929134011000036102 clevidipine +928955011000036103 Cleviprex 25 mg/50 mL injection emulsion, 10 x 50 mL vials 203313 928316011000036108 Cleviprex 25 mg/50 mL injection emulsion, 10 x 50 mL vials 927945011000036105 Cleviprex 25 mg/50 mL injection emulsion, 50 mL vial 927813011000036106 Cleviprex 927813011000036106 Cleviprex 929215011000036109 clevidipine 25 mg/50 mL injection, 10 x 50 mL vials 929151011000036101 clevidipine 25 mg/50 mL injection, vial 929134011000036102 clevidipine +104901000036100 Duloxetine (Apo) 30 mg enteric capsule, 28, bottle 195350 102091000036101 Duloxetine (Apo) 30 mg enteric capsule, 28 98201000036107 Duloxetine (Apo) 30 mg enteric capsule 97941000036102 Duloxetine (Apo) 97941000036102 Duloxetine (Apo) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +61365011000036104 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 48, blister pack 81524 57290011000036101 Paracetamol (Pharmacy Health) 500 mg uncoated tablet, 48 54294011000036102 Paracetamol (Pharmacy Health) 500 mg uncoated tablet 53164011000036100 Paracetamol (Pharmacy Health) 53164011000036100 Paracetamol (Pharmacy Health) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69487011000036108 Strepsils Plus lozenge, 36, blister pack 50509 67287011000036102 Strepsils Plus lozenge, 36 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71835011000036105 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +34773011000036108 Dilaudid-HP 50 mg/5 mL injection solution, 10 x 5 mL ampoules 67358 34354011000036106 Dilaudid-HP 50 mg/5 mL injection solution, 10 x 5 mL ampoules 6481011000036104 Dilaudid-HP 50 mg/5 mL injection solution, 5 mL ampoule 1601000168105 Dilaudid-HP 1601000168105 Dilaudid-HP 35202011000036109 hydromorphone hydrochloride 50 mg/5 mL injection, 10 x 5 mL ampoules 22949011000036109 hydromorphone hydrochloride 50 mg/5 mL injection, ampoule 21480011000036107 hydromorphone +819341000168104 Spren 100 mg uncoated tablet, 90, blister pack 62261 819331000168108 Spren 100 mg uncoated tablet, 90 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 26903011000036102 aspirin 100 mg tablet, 90 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +819341000168104 Spren 100 mg uncoated tablet, 90, blister pack 178592 819331000168108 Spren 100 mg uncoated tablet, 90 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 26903011000036102 aspirin 100 mg tablet, 90 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +1052871000168100 Palexia SR 200 mg modified release tablet, 20, blister pack 165356 1052861000168106 Palexia SR 200 mg modified release tablet, 20 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052851000168109 tapentadol 200 mg modified release tablet, 20 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +675851000168109 Kudeq 200 mg hard capsule, 30, blister pack 211499 675841000168107 Kudeq 200 mg hard capsule, 30 675831000168103 Kudeq 200 mg hard capsule 675791000168109 Kudeq 675791000168109 Kudeq 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +68973011000036109 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 8 sachets 134408 66775011000036107 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 8 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71427011000036109 paracetamol 500 mg powder for oral liquid, 8 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1050701000168104 Bupannus 40 microgram/hour patch, 4, sachet 234728 1050691000168104 Bupannus 40 microgram/hour patch, 4 1050661000168106 Bupannus 40 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1048721000168108 buprenorphine 40 microgram/hour patch, 4 773931000168101 buprenorphine 40 microgram/hour patch 21232011000036101 buprenorphine +1052691000168103 Palexia SR 200 mg modified release tablet, 90, blister pack 165356 1052681000168101 Palexia SR 200 mg modified release tablet, 90 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052671000168104 tapentadol 200 mg modified release tablet, 90 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +1001371000168109 Pregabalin (Apo) 225 mg hard capsule, 60, bottle 193253 1001361000168103 Pregabalin (Apo) 225 mg hard capsule, 60 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +145931000036100 Octagam 5% 1 g/20 mL injection solution, 20 mL vial 113925 144681000036109 Octagam 5% 1 g/20 mL injection solution, 20 mL vial 143931000036104 Octagam 5% 1 g/20 mL injection solution, 20 mL vial 14211000168106 Octagam 5% 14211000168106 Octagam 5% 929199011000036109 normal immunoglobulin 1 g/20 mL injection, 20 mL vial 929139011000036101 normal immunoglobulin 1 g/20 mL injection, vial 74965011000036103 normal immunoglobulin +874991000168103 Boostrix injection suspension, 10 x 0.5 mL vials 158362 874981000168101 Boostrix injection suspension, 10 x 0.5 mL vials 874931000168102 Boostrix injection suspension, 0.5 mL vial 73699011000036103 Boostrix 73699011000036103 Boostrix 874971000168104 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 10 x 0.5 mL vials 874921000168100 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL vial 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +19867011000036108 Acenorm 12.5 mg uncoated tablet, 90, blister pack 65271 13114011000036105 Acenorm 12.5 mg uncoated tablet, 90 6397011000036101 Acenorm 12.5 mg uncoated tablet 4183011000036109 Acenorm 4183011000036109 Acenorm 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +933213281000036105 Lisinopril (IPCA) 5 mg uncoated tablet, 28, blister pack 152716 933201641000036101 Lisinopril (IPCA) 5 mg uncoated tablet, 28 933194781000036104 Lisinopril (IPCA) 5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 46262011000036105 lisinopril 5 mg tablet, 28 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +59832011000036107 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 96, blister pack 114906 55794011000036102 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 96 53626011000036103 Paracetamol (Your Pharmacy) 500 mg uncoated tablet 53318011000036101 Paracetamol (Your Pharmacy) 53318011000036101 Paracetamol (Your Pharmacy) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +47261000036102 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL syringes 61938 46791000036101 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL syringes 40177011000036107 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46801000036102 dalteparin sodium 15 000 anti-Xa units/0.6 mL injection, 10 x 0.6 mL syringes 45213011000036104 dalteparin sodium 15 000 anti-Xa units/0.6 mL injection, syringe 21450011000036103 dalteparin sodium +18325011000036107 Fibsol 5 mg uncoated tablet, 30, blister pack 101316 11188011000036109 Fibsol 5 mg uncoated tablet, 30 4544011000036108 Fibsol 5 mg uncoated tablet 4290011000036103 Fibsol 4290011000036103 Fibsol 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +80041011000036103 Oxaliplatin (Alphapharm) 50 mg powder for injection, 5 vials 130848 79960011000036108 Oxaliplatin (Alphapharm) 50 mg powder for injection, 5 vials 79918011000036109 Oxaliplatin (Alphapharm) 50 mg powder for injection, 50 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80057011000036108 oxaliplatin 50 mg injection, 5 vials 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +921937011000036101 Amino Acid Complex (Bioglan) capsule, 60, bottle 27238 921496011000036107 Amino Acid Complex (Bioglan) capsule, 60 921038011000036106 Amino Acid Complex (Bioglan) capsule 920939011000036102 Amino Acid Complex (Bioglan) 920939011000036102 Amino Acid Complex (Bioglan) 922620011000036102 alanine 58.3 mg + arginine 51.1 mg + aspartic acid 39.3 mg + glutamic acid 65.4 mg + glycine 140 mg + histidine 5.2 mg + hydroxyproline 77.9 mg + isoleucine 9.8 mg + leucine 21.6 mg + lysine 22.9 mg + methionine 4.6 mg + phenylalanine 15.7 mg + proline 81.2 mg + serine 23.6 mg + threonine 13.7 mg + tyrosine 3.3 mg + valine 14.4 mg capsule, 60 922112011000036109 alanine 58.3 mg + arginine 51.1 mg + aspartic acid 39.3 mg + glutamic acid 65.4 mg + glycine 140 mg + histidine 5.2 mg + hydroxyproline 77.9 mg + isoleucine 9.8 mg + leucine 21.6 mg + lysine 22.9 mg + methionine 4.6 mg + phenylalanine 15.7 mg + proline 81.2 mg + serine 23.6 mg + threonine 13.7 mg + tyrosine 3.3 mg + valine 14.4 mg capsule 922045011000036100 alanine + arginine + aspartic acid + glutamic acid + glycine + histidine + hydroxyproline + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tyrosine + valine +44745011000036107 Dizole 150 mg hard capsule, 1, blister pack 161832 42190011000036106 Dizole 150 mg hard capsule, 1 40379011000036107 Dizole 150 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +44745011000036107 Dizole 150 mg hard capsule, 1, blister pack 96496 42190011000036106 Dizole 150 mg hard capsule, 1 40379011000036107 Dizole 150 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1112811000168107 Allopurinol (TN) 100 mg uncoated tablet, 75, blister pack 269643 1112801000168109 Allopurinol (TN) 100 mg uncoated tablet, 75 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112791000168108 allopurinol 100 mg tablet, 75 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +802261000168103 Nuvigil 150 mg uncoated tablet, 7, blister pack 226559 802251000168100 Nuvigil 150 mg uncoated tablet, 7 802231000168106 Nuvigil 150 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802241000168102 armodafinil 150 mg tablet, 7 802221000168108 armodafinil 150 mg tablet 802061000168105 armodafinil +60920011000036100 Bisolvon Sinus oral liquid solution, 200 mL, bottle 61148 56874011000036109 Bisolvon Sinus oral liquid solution, 200 mL 54109011000036102 Bisolvon Sinus oral liquid solution, 15 mL 53573011000036101 Bisolvon Sinus 53573011000036101 Bisolvon Sinus 63626011000036104 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 200 mL 62032011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61715011000036104 bromhexine + pseudoephedrine +1084941000168100 Taltz 80 mg/mL injection solution, 2 x 1 mL syringes 253892 1084931000168109 Taltz 80 mg/mL injection solution, 2 x 1 mL syringes 1084881000168104 Taltz 80 mg/mL injection solution, syringe 871151000168109 Taltz 871151000168109 Taltz 1084921000168106 ixekizumab 80 mg/mL injection, 2 x 1 mL syringes 1084871000168102 ixekizumab 80 mg/mL injection, syringe 871171000168100 ixekizumab +986451000168105 Advil Double Strength Liquid Capsules 400 mg soft capsule, 40, blister pack 207293 986441000168108 Advil Double Strength Liquid Capsules 400 mg soft capsule, 40 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986431000168104 ibuprofen 400 mg capsule, 40 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +1114821000168109 Rosuvastatin (Sandoz) 20 mg film-coated tablet, 30, bottle 183598 114871000036103 Rosuvastatin (Sandoz) 20 mg film-coated tablet, 30 112921000036101 Rosuvastatin (Sandoz) 20 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +19267011000036103 E-Mycin 200 mg/5 mL powder for oral liquid, 100 mL, bottle 48286 12557011000036109 E-Mycin 200 mg/5 mL powder for oral liquid, 100 mL 5589011000036109 E-Mycin 200 mg/5 mL powder for oral liquid, 5 mL 4167011000036102 E-Mycin 4167011000036102 E-Mycin 27324011000036102 erythromycin (as ethylsuccinate) 200 mg/5 mL powder for oral liquid, 100 mL 22677011000036104 erythromycin (as ethylsuccinate) 200 mg/5 mL powder for oral liquid 21523011000036104 erythromycin ethylsuccinate +17777011000036109 Ovestin 0.1% (1 mg/g) cream, 15 g, tube 14515 12036011000036108 Ovestin 0.1% (1 mg/g) cream, 15 g 5419011000036104 Ovestin 0.1% (1 mg/g) cream 45321000168104 Ovestin 45321000168104 Ovestin 26868011000036103 estriol 0.1% (1 mg/g) cream, 15 g 22247011000036101 estriol 0.1% (1 mg/g) cream 21663011000036100 estriol +1050681000168102 Bupannus 40 microgram/hour patch, 2, sachet 234728 1050671000168100 Bupannus 40 microgram/hour patch, 2 1050661000168106 Bupannus 40 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 773951000168107 buprenorphine 40 microgram/hour patch, 2 773931000168101 buprenorphine 40 microgram/hour patch 21232011000036101 buprenorphine +929047011000036102 Galvumet 50/500 film-coated tablet, 60, blister pack 161216 928408011000036104 Galvumet 50/500 film-coated tablet, 60 927968011000036108 Galvumet 50/500 film-coated tablet 32001000168102 Galvumet 50/500 32001000168102 Galvumet 50/500 929245011000036100 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet, 60 929154011000036103 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet 929132011000036106 vildagliptin + metformin +68810011000036102 QV Intensive Moisturising Cleanser 51.5% lotion, 250 mL, bottle 118263 66631011000036103 QV Intensive Moisturising Cleanser 51.5% lotion, 250 mL 65514011000036100 QV Intensive Moisturising Cleanser 51.5% lotion 65184011000036109 QV Intensive Moisturising Cleanser 65184011000036109 QV Intensive Moisturising Cleanser 71342011000036100 light liquid paraffin 51.5% lotion, 250 mL 69962011000036106 light liquid paraffin 51.5% lotion 33638011000036106 light liquid paraffin +55781000036105 Anastrozole (Synthon) 1 mg film-coated tablet, 500, blister pack 155176 52571000036107 Anastrozole (Synthon) 1 mg film-coated tablet, 500 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52131000036104 anastrozole 1 mg tablet, 500 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +77211000036103 Zatamil 0.1% lotion, 30 mL, bottle 195414 76871000036105 Zatamil 0.1% lotion, 30 mL 76721000036103 Zatamil 0.1% lotion 16071000168103 Zatamil 16071000168103 Zatamil 27414011000036102 mometasone furoate 0.1% lotion, 30 mL 22762011000036102 mometasone furoate 0.1% lotion 21409011000036100 mometasone +1110161000168101 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 14, blister pack 219061 1110151000168103 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 14 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82545011000036105 clopidogrel 75 mg + aspirin 100 mg tablet, 14 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +716941000168107 Pemzo 20 mg enteric capsule, 56, blister pack 149517 716931000168103 Pemzo 20 mg enteric capsule, 56 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716751000168106 omeprazole 20 mg enteric capsule, 56 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +50314011000036107 Tubigrip E (1547) 8.75 cm x 1 m bandage, 1, carton 49308011000036109 Tubigrip E (1547) 8.75 cm x 1 m bandage, 1 48540011000036100 Tubigrip E (1547) 8.75 cm x 1 m bandage 43361000168105 Tubigrip E (1547) 43361000168105 Tubigrip E (1547) 51292011000036100 bandage tubular 8.75 cm x 1 m bandage, 1 50821011000036104 bandage tubular 8.75 cm x 1 m bandage 50697011000036107 bandage tubular +931570011000036108 Cholpra 40 mg film-coated tablet, 500, bottle 163545 930731011000036109 Cholpra 40 mg film-coated tablet, 500 930030011000036100 Cholpra 40 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932419011000036104 pravastatin sodium 40 mg tablet, 500 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +929681011000036107 Vexazone 30 mg uncoated tablet, 7, blister pack 164344 929517011000036106 Vexazone 30 mg uncoated tablet, 7 929405011000036108 Vexazone 30 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929264011000036109 pioglitazone 30 mg tablet, 7 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +947401000168101 Risdone 2 mg film-coated tablet, 28, blister pack 144280 947391000168103 Risdone 2 mg film-coated tablet, 28 947221000168106 Risdone 2 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947381000168101 risperidone 2 mg tablet, 28 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +47221000036106 Tegretol 100 mg uncoated tablet, 100, blister pack 41846 46701000036109 Tegretol 100 mg uncoated tablet, 100 4908011000036102 Tegretol 100 mg uncoated tablet 2231000168106 Tegretol 2231000168106 Tegretol 46711000036106 carbamazepine 100 mg tablet, 100 23199011000036106 carbamazepine 100 mg tablet 21319011000036108 carbamazepine +69555011000036102 Clearasil Pimple Treatment Vanishing cream, 18.5 g, tube 60674 67355011000036107 Clearasil Pimple Treatment Vanishing cream, 18.5 g 65628011000036107 Clearasil Pimple Treatment Vanishing cream 24691000168106 Clearasil Pimple Treatment Vanishing 24691000168106 Clearasil Pimple Treatment Vanishing 71901011000036109 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream, 18.5 g 70241011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream 69816011000036101 bentonite + precipitated sulfur + triclosan +951731000168109 Leflunomide (Terry White Chemists) 10 mg uncoated tablet, 30, blister pack 129549 951721000168106 Leflunomide (Terry White Chemists) 10 mg uncoated tablet, 30 951711000168104 Leflunomide (Terry White Chemists) 10 mg uncoated tablet 951701000168102 Leflunomide (Terry White Chemists) 951701000168102 Leflunomide (Terry White Chemists) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +38671000036105 Escitalopram (Generic Health) 15 mg film-coated tablet, 28, blister pack 165864 35041000036102 Escitalopram (Generic Health) 15 mg film-coated tablet, 28 32811000036102 Escitalopram (Generic Health) 15 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +1067681000168107 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 20, blister pack 175119 1067671000168109 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 20 1067531000168107 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +60594011000036107 Drixine Paediatric 0.025% nasal drops solution, 15 mL, bottle 156246 56552011000036101 Drixine Paediatric 0.025% nasal drops solution, 15 mL 53969011000036102 Drixine Paediatric 0.025% nasal drops solution 52591000168104 Drixine Paediatric 52591000168104 Drixine Paediatric 63418011000036108 oxymetazoline hydrochloride 0.025% nasal drops, 15 mL 61952011000036108 oxymetazoline hydrochloride 0.025% nasal drops 21364011000036106 oxymetazoline +60594011000036107 Drixine Paediatric 0.025% nasal drops solution, 15 mL, bottle 18349 56552011000036101 Drixine Paediatric 0.025% nasal drops solution, 15 mL 53969011000036102 Drixine Paediatric 0.025% nasal drops solution 52591000168104 Drixine Paediatric 52591000168104 Drixine Paediatric 63418011000036108 oxymetazoline hydrochloride 0.025% nasal drops, 15 mL 61952011000036108 oxymetazoline hydrochloride 0.025% nasal drops 21364011000036106 oxymetazoline +933230001000036105 Astromide 250 mg hard capsule, 5, bottle 144785 933223801000036108 Astromide 250 mg hard capsule, 5 933219921000036100 Astromide 250 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +20912011000036103 Elidel 1% cream, 15 g, tube 93680 14066011000036107 Elidel 1% cream, 15 g 7344011000036101 Elidel 1% cream 4387011000036109 Elidel 4387011000036109 Elidel 28121011000036103 pimecrolimus 1% cream, 15 g 23430011000036108 pimecrolimus 1% cream 21745011000036101 pimecrolimus +44437011000036105 Midazolam (Pfizer (Perth)) 5 mg/mL injection solution, 10 x 1 mL ampoules 72213 41893011000036106 Midazolam (Pfizer (Perth)) 5 mg/mL injection solution, 10 x 1 mL ampoules 40248011000036107 Midazolam (Pfizer (Perth)) 5 mg/mL injection solution, ampoule 39704011000036104 Midazolam (Pfizer (Perth)) 39704011000036104 Midazolam (Pfizer (Perth)) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +20535011000036107 Amaryl 3 mg uncoated tablet, 30, blister pack 79334 13733011000036105 Amaryl 3 mg uncoated tablet, 30 7016011000036100 Amaryl 3 mg uncoated tablet 4320011000036103 Amaryl 4320011000036103 Amaryl 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +38631000036108 Escitalopram (MPPL) 15 mg film-coated tablet, 30, bottle 165861 34991000036108 Escitalopram (MPPL) 15 mg film-coated tablet, 30 32971000036104 Escitalopram (MPPL) 15 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +700029841000036101 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12347011000036109 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 5181011000036100 Monofeme (inert substance) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029841000036101 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12347011000036109 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 5110011000036109 Monofeme (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +1063341000168104 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 20, blister pack 144070 1063331000168108 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet, 20 1063281000168100 Pain Relief Paracetamol plus Codeine 10 (Cipla) uncoated tablet 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 1063231000168101 Pain Relief Paracetamol plus Codeine 10 (Cipla) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +43700011000036106 Remodulin 200 mg/20 mL injection solution, 20 mL vial 101649 41134011000036106 Remodulin 200 mg/20 mL injection solution, 20 mL vial 39928011000036106 Remodulin 200 mg/20 mL injection solution, 20 mL vial 39717011000036108 Remodulin 39717011000036108 Remodulin 46112011000036107 treprostinil 200 mg/20 mL injection, 20 mL vial 44993011000036106 treprostinil 200 mg/20 mL injection, vial 44874011000036106 treprostinil +951691000168102 Citanest 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 53721 951681000168100 Citanest 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 951661000168109 Citanest 1% (50 mg/5 mL) injection solution, 5 mL ampoule 45001000168106 Citanest 45001000168106 Citanest 951671000168103 prilocaine hydrochloride 1% (50 mg/5 mL) injection, 10 x 5 mL ampoules 951651000168107 prilocaine hydrochloride 1% (50 mg/5 mL) injection, ampoule 37761011000036109 prilocaine +60020011000036106 Paracetamol (Priceline) 500 mg film-coated tablet, 48, blister pack 123368 55982011000036101 Paracetamol (Priceline) 500 mg film-coated tablet, 48 53746011000036109 Paracetamol (Priceline) 500 mg film-coated tablet 53428011000036101 Paracetamol (Priceline) 53428011000036101 Paracetamol (Priceline) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +649991000168107 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 7, blister pack 202106 649981000168109 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 7 649971000168106 Pritor/Amlodipine 40 mg/5 mg multilayer tablet 649951000168102 Pritor/Amlodipine 40 mg/5 mg 649951000168102 Pritor/Amlodipine 40 mg/5 mg 932437011000036104 telmisartan 40 mg + amlodipine 5 mg tablet, 7 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +948221000168105 Ranitidine (GA) 150 mg film-coated tablet, 28, bottle 148519 930632011000036105 Ranitidine (GA) 150 mg film-coated tablet, 28 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1087191000168103 Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations, pump pack 215798 859091000168104 Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations 859041000168107 Nasonex Allergy 50 microgram/actuation nasal spray, actuation 859031000168103 Nasonex Allergy 859031000168103 Nasonex Allergy 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +1114501000168102 Ketizenol 25 mg film-coated tablet, 60, blister pack 202254 1114491000168109 Ketizenol 25 mg film-coated tablet, 60 1114481000168106 Ketizenol 25 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +920716011000036106 Plavix 300 mg film-coated tablet, 30, blister pack 151257 920403011000036106 Plavix 300 mg film-coated tablet, 30 920165011000036109 Plavix 300 mg film-coated tablet 3475011000036104 Plavix 3475011000036104 Plavix 81651011000036103 clopidogrel 300 mg tablet, 30 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +964801000168104 Physiotens 300 microgram film-coated tablet, 30, blister pack 114120 964791000168100 Physiotens 300 microgram film-coated tablet, 30 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964341000168107 moxonidine 300 microgram tablet, 30 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +18976011000036107 Span K 600 mg (potassium 8 mmol) modified release tablet, 200, bottle 27978 12284011000036100 Span K 600 mg (potassium 8 mmol) modified release tablet, 200 5884011000036107 Span K 600 mg (potassium 8 mmol) modified release tablet 4096011000036106 Span K 4096011000036106 Span K 27042011000036109 potassium chloride 600 mg (potassium 8 mmol) modified release tablet, 200 23235011000036103 potassium chloride 600 mg (potassium 8 mmol) modified release tablet 21274011000036107 potassium chloride +43957011000036106 Stieva-A 0.025% cream, 25 g, tube 39837 41449011000036109 Stieva-A 0.025% cream, 25 g 39980011000036104 Stieva-A 0.025% cream 39639011000036100 Stieva-A 39639011000036100 Stieva-A 46298011000036106 tretinoin 0.025% cream, 25 g 45062011000036100 tretinoin 0.025% cream 37794011000036109 tretinoin +12901000036101 Quetiapine (Apo) 300 mg film-coated tablet, 60, blister pack 166059 8051000036103 Quetiapine (Apo) 300 mg film-coated tablet, 60 1441000036103 Quetiapine (Apo) 300 mg film-coated tablet 6221000168109 Quetiapine (Apo) 6221000168109 Quetiapine (Apo) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +943151000168100 Velbe 10 mg powder for injection, 1 vial 14659 943141000168102 Velbe 10 mg powder for injection, 1 vial 943121000168108 Velbe 10 mg powder for injection, 10 mg vial 943101000168104 Velbe 943101000168104 Velbe 943131000168106 vinblastine sulfate 10 mg injection, 1 vial 943111000168101 vinblastine sulfate 10 mg injection, vial 21466011000036108 vinblastine +698961000168104 Zopiclone (Terry White Chemists) 7.5 mg film-coated tablet, 30, blister pack 213076 698951000168101 Zopiclone (Terry White Chemists) 7.5 mg film-coated tablet, 30 698941000168103 Zopiclone (Terry White Chemists) 7.5 mg film-coated tablet 698931000168107 Zopiclone (Terry White Chemists) 698931000168107 Zopiclone (Terry White Chemists) 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +699781000168101 Sovaldi 400 mg film-coated tablet, 28, bottle 211019 699771000168104 Sovaldi 400 mg film-coated tablet, 28 699751000168108 Sovaldi 400 mg film-coated tablet 699711000168107 Sovaldi 699711000168107 Sovaldi 699761000168105 sofosbuvir 400 mg tablet, 28 699741000168106 sofosbuvir 400 mg tablet 699731000168102 sofosbuvir +707641000168104 Pantoprazole (Apotex) 20 mg enteric tablet, 30, blister pack 156337 707631000168108 Pantoprazole (Apotex) 20 mg enteric tablet, 30 707621000168105 Pantoprazole (Apotex) 20 mg enteric tablet 707611000168103 Pantoprazole (Apotex) 707611000168103 Pantoprazole (Apotex) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +34782011000036105 Ketalar 200 mg/2 mL injection solution, 5 x 2 mL vials 70073 34360011000036108 Ketalar 200 mg/2 mL injection solution, 5 x 2 mL vials 34057011000036104 Ketalar 200 mg/2 mL injection solution, 2 mL vial 33939011000036104 Ketalar 33939011000036104 Ketalar 35208011000036107 ketamine 200 mg/2 mL injection, 5 x 2 mL vials 34901011000036108 ketamine 200 mg/2 mL injection, vial 34843011000036109 ketamine +104981000036106 Aridon 5 mg film-coated tablet, 28, blister pack 175983 102051000036105 Aridon 5 mg film-coated tablet, 28 98511000036107 Aridon 5 mg film-coated tablet 97831000036102 Aridon 97831000036102 Aridon 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +44454011000036100 Doxycycline (Chemmart) 100 mg modified release capsule, 7, blister pack 74016 41910011000036109 Doxycycline (Chemmart) 100 mg modified release capsule, 7 40260011000036100 Doxycycline (Chemmart) 100 mg modified release capsule 3187011000036102 Doxycycline (Chemmart) 3187011000036102 Doxycycline (Chemmart) 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +682421000168104 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 205579 682411000168106 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 682311000168102 Eleanor 150/30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +682421000168104 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 205579 682411000168106 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 682321000168109 Eleanor 150/30 ED (inert substance) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19113011000036105 MS Contin 100 mg modified release tablet, 20, blister pack 43088 12418011000036108 MS Contin 100 mg modified release tablet, 20 4983011000036106 MS Contin 100 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 27109011000036102 morphine sulfate pentahydrate 100 mg modified release tablet, 20 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +86012011000036105 Lisinopril (DRLA) 10 mg uncoated tablet, 30, blister pack 152721 85658011000036108 Lisinopril (DRLA) 10 mg uncoated tablet, 30 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +60423011000036106 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 146071 56382011000036106 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63329011000036100 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +17845011000036103 Panamax 500 mg uncoated tablet, 100, blister pack 15490 12096011000036103 Panamax 500 mg uncoated tablet, 100 4682011000036103 Panamax 500 mg uncoated tablet 10851000168103 Panamax 10851000168103 Panamax 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +718471000168109 Oxycodone IR (Mayne Pharma) 5 mg tablet, 20, blister pack 225335 718461000168103 Oxycodone IR (Mayne Pharma) 5 mg tablet, 20 718451000168100 Oxycodone IR (Mayne Pharma) 5 mg tablet 718441000168102 Oxycodone IR (Mayne Pharma) 718441000168102 Oxycodone IR (Mayne Pharma) 26891011000036109 oxycodone hydrochloride 5 mg tablet, 20 22269011000036101 oxycodone hydrochloride 5 mg tablet 21259011000036105 oxycodone +1015901000168104 Aripiprazole (ZP) 5 mg uncoated tablet, 30, blister pack 217192 1015891000168103 Aripiprazole (ZP) 5 mg uncoated tablet, 30 1015351000168104 Aripiprazole (ZP) 5 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +1018711000168108 Aripiprazole (Actavis) 2 mg uncoated tablet, 30, blister pack 217190 1018701000168105 Aripiprazole (Actavis) 2 mg uncoated tablet, 30 1018691000168105 Aripiprazole (Actavis) 2 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +802661000168100 Abilify ODT 10 mg orally disintegrating tablet, 90, blister pack 128893 802651000168102 Abilify ODT 10 mg orally disintegrating tablet, 90 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802641000168104 aripiprazole 10 mg orally disintegrating tablet, 90 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +59823011000036102 Naproxen Sodium (Your Pharmacy) 275 mg film-coated tablet, 12, blister pack 114893 55785011000036102 Naproxen Sodium (Your Pharmacy) 275 mg film-coated tablet, 12 53689011000036100 Naproxen Sodium (Your Pharmacy) 275 mg film-coated tablet 53345011000036103 Naproxen Sodium (Your Pharmacy) 53345011000036103 Naproxen Sodium (Your Pharmacy) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +60800011000036103 Imodium Caplet 2 mg uncoated tablet, 20, blister pack 56001 56756011000036101 Imodium Caplet 2 mg uncoated tablet, 20 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +59943011000036109 Sudafed PE Sinus and Pain Relief film-coated tablet, 24, blister pack 119994 55905011000036105 Sudafed PE Sinus and Pain Relief film-coated tablet, 24 53711011000036109 Sudafed PE Sinus and Pain Relief film-coated tablet 53525011000036104 Sudafed PE Sinus and Pain Relief 53525011000036104 Sudafed PE Sinus and Pain Relief 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +1012271000168105 Quetiapine (Apotex) 150 mg film-coated tablet, 60, blister pack 166063 1012261000168104 Quetiapine (Apotex) 150 mg film-coated tablet, 60 1012251000168101 Quetiapine (Apotex) 150 mg film-coated tablet 732141000168102 Quetiapine (Apotex) 732141000168102 Quetiapine (Apotex) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +1099431000168102 Lamotrigine (Chemmart) 50 mg uncoated tablet, 56, blister pack 167526 1099421000168100 Lamotrigine (Chemmart) 50 mg uncoated tablet, 56 1099411000168107 Lamotrigine (Chemmart) 50 mg uncoated tablet 1097871000168105 Lamotrigine (Chemmart) 1097871000168105 Lamotrigine (Chemmart) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1015881000168101 Exemestane (Apotex) 25 mg sugar coated tablet, 30, blister pack 177313 1015871000168104 Exemestane (Apotex) 25 mg sugar coated tablet, 30 1015861000168105 Exemestane (Apotex) 25 mg sugar coated tablet 1015851000168108 Exemestane (Apotex) 1015851000168108 Exemestane (Apotex) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +1080661000168102 Terbinafine (Chemmart) 250 mg uncoated tablet, 42, blister pack 100027 1080651000168104 Terbinafine (Chemmart) 250 mg uncoated tablet, 42 1080641000168101 Terbinafine (Chemmart) 250 mg uncoated tablet 1080631000168105 Terbinafine (Chemmart) 1080631000168105 Terbinafine (Chemmart) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +130701000036100 Adesan 4 mg uncoated tablet, 30, bottle 171021 127691000036102 Adesan 4 mg uncoated tablet, 30 124731000036101 Adesan 4 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +933213101000036109 Pravastatin Sodium (Hexal) 40 mg tablet, 30, blister pack 152454 933201531000036105 Pravastatin Sodium (Hexal) 40 mg tablet, 30 933194681000036108 Pravastatin Sodium (Hexal) 40 mg tablet 933193451000036102 Pravastatin Sodium (Hexal) 933193451000036102 Pravastatin Sodium (Hexal) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +716301000168106 Pemzo 20 mg enteric capsule, 14, bottle 167315 716281000168107 Pemzo 20 mg enteric capsule, 14 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +776031000168107 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 217121 776021000168109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776011000168102 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776031000168107 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 47377 776021000168109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28 113241000036106 Minulet (inert substance) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776011000168102 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776031000168107 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 217121 776021000168109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776011000168102 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +776031000168107 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 47377 776021000168109 Minulet (21 x 75 microgram/30 microgram tablets, 7 x inert tablets), 2 x 28 113251000036109 Minulet (gestodene 75 microgram + ethinylestradiol 30 microgram) sugar coated tablet 179271000036106 Minulet 179271000036106 Minulet 776011000168102 gestodene 75 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 113261000036107 gestodene 75 microgram + ethinylestradiol 30 microgram tablet 116991000036102 gestodene + ethinylestradiol +18950011000036107 Orudis SR 200 mg modified release capsule, 28, blister pack 27535 12258011000036104 Orudis SR 200 mg modified release capsule, 28 5209011000036102 Orudis SR 200 mg modified release capsule 30561000168106 Orudis SR 30561000168106 Orudis SR 27096011000036104 ketoprofen 200 mg modified release capsule, 28 22465011000036102 ketoprofen 200 mg modified release capsule 21856011000036108 ketoprofen +699141000168107 Tranexamic Acid (Link) 500 mg/5 mL injection solution, 5 x 5 mL ampoules 214485 699131000168103 Tranexamic Acid (Link) 500 mg/5 mL injection solution, 5 x 5 mL ampoules 699111000168108 Tranexamic Acid (Link) 500 mg/5 mL injection solution, 5 mL ampoule 699091000168100 Tranexamic Acid (Link) 699091000168100 Tranexamic Acid (Link) 699121000168101 tranexamic acid 500 mg/5 mL injection, 5 x 5 mL ampoules 699101000168105 tranexamic acid 500 mg/5 mL injection, ampoule 21746011000036108 tranexamic acid +69538011000036107 Cystadane 1 g/g powder for oral liquid, 180 g, bottle 57379 67338011000036102 Cystadane 1 g/g powder for oral liquid, 180 g 65618011000036101 Cystadane 1 g/g powder for oral liquid 65142011000036105 Cystadane 65142011000036105 Cystadane 71883011000036101 betaine 1 g/g powder for oral liquid, 180 g 70231011000036109 betaine 1 g/g powder for oral liquid 69792011000036103 betaine +38791000036101 Escitalup 15 mg film-coated tablet, 28, blister pack 165872 35161000036100 Escitalup 15 mg film-coated tablet, 28 33121000036105 Escitalup 15 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +18676011000036106 Atenolol (Terry White Chemists) 50 mg film-coated tablet, 30, blister pack 111611 11432011000036101 Atenolol (Terry White Chemists) 50 mg film-coated tablet, 30 5127011000036101 Atenolol (Terry White Chemists) 50 mg film-coated tablet 4204011000036105 Atenolol (Terry White Chemists) 4204011000036105 Atenolol (Terry White Chemists) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +18676011000036106 Atenolol (Terry White Chemists) 50 mg film-coated tablet, 30, blister pack 129866 11432011000036101 Atenolol (Terry White Chemists) 50 mg film-coated tablet, 30 5127011000036101 Atenolol (Terry White Chemists) 50 mg film-coated tablet 4204011000036105 Atenolol (Terry White Chemists) 4204011000036105 Atenolol (Terry White Chemists) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +18676011000036106 Atenolol (Terry White Chemists) 50 mg film-coated tablet, 30, blister pack 214941 11432011000036101 Atenolol (Terry White Chemists) 50 mg film-coated tablet, 30 5127011000036101 Atenolol (Terry White Chemists) 50 mg film-coated tablet 4204011000036105 Atenolol (Terry White Chemists) 4204011000036105 Atenolol (Terry White Chemists) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +949731000168105 Lipistart powder for oral liquid, 400 g, can 949721000168107 Lipistart powder for oral liquid, 400 g 949711000168100 Lipistart powder for oral liquid 40381000036101 Lipistart 40381000036101 Lipistart 949651000168108 protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid, 400 g 949631000168102 protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid 710151000168105 protein formula with carbohydrate, fat, vitamins and minerals +137051000036100 Durafiber (66800561) 15 cm x 15 cm dressing, 5, carton 136971000036109 Durafiber (66800561) 15 cm x 15 cm dressing, 5 136901000036100 Durafiber (66800561) 15 cm x 15 cm dressing 46811000168107 Durafiber (66800561) 46811000168107 Durafiber (66800561) 136981000036106 dressing gelling fibre 15 cm x 15 cm dressing, 5 136911000036103 dressing gelling fibre 15 cm x 15 cm dressing 137081000036107 dressing gelling fibre +949671000168104 Peptamen Junior powder for oral liquid, 400 g, can 949661000168105 Peptamen Junior powder for oral liquid, 400 g 949641000168106 Peptamen Junior powder for oral liquid 670751000168107 Peptamen Junior 670751000168107 Peptamen Junior 949651000168108 protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid, 400 g 949631000168102 protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid 710151000168105 protein formula with carbohydrate, fat, vitamins and minerals +60894011000036106 Mersyndol Daystrength uncoated tablet, 12, blister pack 59985 56848011000036101 Mersyndol Daystrength uncoated tablet, 12 54099011000036108 Mersyndol Daystrength uncoated tablet 44331000168100 Mersyndol Daystrength 44331000168100 Mersyndol Daystrength 63609011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 12 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +925325011000036100 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet, 14, blister pack 165913 924861011000036101 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet, 14 924533011000036109 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924196011000036101 lercanidipine hydrochloride 10 mg tablet, 14 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +44000011000036107 Eryacne 2% gel, 5 g, tube 43979 41491011000036104 Eryacne 2% gel, 5 g 40012011000036107 Eryacne 2% gel 39772011000036100 Eryacne 39772011000036100 Eryacne 46337011000036108 erythromycin 2% gel, 5 g 45088011000036100 erythromycin 2% gel 21889011000036107 erythromycin +810481000168107 Actonel Combi D (1 x Actonel Once-a-Week tablet, 6 x Actonel Combi D sachets), 1 pack, composite pack 138211 810471000168109 Actonel Combi D (1 x Actonel Once-a-Week tablet, 6 x Actonel Combi D sachets), 1 pack 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 35975011000036105 Actonel Combi D 700024831000036105 Actonel Once-a-Week 810461000168103 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [6 sachets], 1 pack 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +810481000168107 Actonel Combi D (1 x Actonel Once-a-Week tablet, 6 x Actonel Combi D sachets), 1 pack, composite pack 138211 810471000168109 Actonel Combi D (1 x Actonel Once-a-Week tablet, 6 x Actonel Combi D sachets), 1 pack 810371000168102 Actonel Combi D effervescent granules, 1 sachet 35975011000036105 Actonel Combi D 35975011000036105 Actonel Combi D 810461000168103 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [6 sachets], 1 pack 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +947581000168108 Risdone 1 mg film-coated tablet, 20, blister pack 144262 947571000168105 Risdone 1 mg film-coated tablet, 20 947511000168102 Risdone 1 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 81620011000036106 risperidone 1 mg tablet, 20 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +34619011000036108 Ordine 1 mg/mL oral liquid solution, 200 mL, bottle 150219 34218011000036102 Ordine 1 mg/mL oral liquid solution, 200 mL 33965011000036108 Ordine 1 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 35099011000036108 morphine hydrochloride trihydrate 1 mg/mL oral liquid, 200 mL 34849011000036107 morphine hydrochloride trihydrate 1 mg/mL oral liquid 21252011000036100 morphine +34619011000036108 Ordine 1 mg/mL oral liquid solution, 200 mL, bottle 10779 34218011000036102 Ordine 1 mg/mL oral liquid solution, 200 mL 33965011000036108 Ordine 1 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 35099011000036108 morphine hydrochloride trihydrate 1 mg/mL oral liquid, 200 mL 34849011000036107 morphine hydrochloride trihydrate 1 mg/mL oral liquid 21252011000036100 morphine +156601000036109 Benztropine Mesylate (Omega) 2 mg/2 mL injection solution, 10 x 2 mL vials 155681000036106 Benztropine Mesylate (Omega) 2 mg/2 mL injection solution, 10 x 2 mL vials 154841000036104 Benztropine Mesylate (Omega) 2 mg/2 mL injection solution, 2 mL vial 154561000036101 Benztropine Mesylate (Omega) 154561000036101 Benztropine Mesylate (Omega) 155691000036108 benzatropine mesilate 2 mg/2 mL injection, 10 x 2 mL vials 154851000036101 benzatropine mesilate 2 mg/2 mL injection, vial 21334011000036102 benzatropine +60817011000036104 Nicotinell Mint 2 mg chewing gum, 96, blister pack 58058 56773011000036105 Nicotinell Mint 2 mg chewing gum, 96 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60817011000036104 Nicotinell Mint 2 mg chewing gum, 96, blister pack 126043 56773011000036105 Nicotinell Mint 2 mg chewing gum, 96 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +966851000168106 Diavance 500/2.5 film-coated tablet, 10, blister pack 120264 966841000168109 Diavance 500/2.5 film-coated tablet, 10 966821000168103 Diavance 500/2.5 film-coated tablet 966811000168105 Diavance 500/2.5 966811000168105 Diavance 500/2.5 966831000168100 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet, 10 23508011000036106 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet 21813011000036107 metformin + glibenclamide +18376011000036104 Sertraline (Pharmacor) 50 mg film-coated tablet, 30, blister pack 130617 11900011000036109 Sertraline (Pharmacor) 50 mg film-coated tablet, 30 5197011000036109 Sertraline (Pharmacor) 50 mg film-coated tablet 3795011000036103 Sertraline (Pharmacor) 3795011000036103 Sertraline (Pharmacor) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +18479011000036100 Aylide 3 mg uncoated tablet, 30, blister pack 116860 11553011000036104 Aylide 3 mg uncoated tablet, 30 5961011000036101 Aylide 3 mg uncoated tablet 4143011000036100 Aylide 4143011000036100 Aylide 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +920733011000036106 Memantine (Apo) 10 mg film-coated tablet, 50, bottle 159576 920421011000036100 Memantine (Apo) 10 mg film-coated tablet, 50 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38841011000036109 memantine hydrochloride 10 mg tablet, 50 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +50331011000036100 Handy Gauze (5672) 5 cm x 5 cm pad, 100, carton 49427011000036106 Handy Gauze (5672) 5 cm x 5 cm pad, 100 48572011000036102 Handy Gauze (5672) 5 cm x 5 cm pad 53041000168106 Handy Gauze (5672) 53041000168106 Handy Gauze (5672) 51395011000036101 dressing gauze absorbent 5 cm x 5 cm pad, 100 50916011000036109 dressing gauze absorbent 5 cm x 5 cm pad 50763011000036108 dressing gauze absorbent +60620011000036101 Hydrocortisone Acetate (Pharmacist) 0.5% cream, 30 g, tube 18946 56578011000036101 Hydrocortisone Acetate (Pharmacist) 0.5% cream, 30 g 53984011000036100 Hydrocortisone Acetate (Pharmacist) 0.5% cream 53570011000036109 Hydrocortisone Acetate (Pharmacist) 53570011000036109 Hydrocortisone Acetate (Pharmacist) 63438011000036104 hydrocortisone acetate 0.5% cream, 30 g 61964011000036107 hydrocortisone acetate 0.5% cream 21231011000036107 hydrocortisone acetate +929709011000036100 MS Mono 90 mg modified release capsule, 14, blister pack 74152 929545011000036105 MS Mono 90 mg modified release capsule, 14 6723011000036104 MS Mono 90 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 929766011000036108 morphine sulfate pentahydrate 90 mg modified release capsule, 14 23079011000036107 morphine sulfate pentahydrate 90 mg modified release capsule 21252011000036100 morphine +38831000036109 Escitalopram (LAPL) 20 mg film-coated tablet, 100, bottle 165875 35201000036109 Escitalopram (LAPL) 20 mg film-coated tablet, 100 32941000036106 Escitalopram (LAPL) 20 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +776761000168101 Lovan 20 mg/5 mL oral liquid solution, 35 mL, bottle 57843 776751000168103 Lovan 20 mg/5 mL oral liquid solution, 35 mL 776731000168109 Lovan 20 mg/5 mL oral liquid solution, 5 mL 2938011000036102 Lovan 2938011000036102 Lovan 776741000168100 fluoxetine 20 mg/5 mL oral liquid, 35 mL 776721000168106 fluoxetine 20 mg/5 mL oral liquid 21411011000036102 fluoxetine +38471000036108 Escilupin 10 mg film-coated tablet, 28, blister pack 165852 34801000036109 Escilupin 10 mg film-coated tablet, 28 33161000036101 Escilupin 10 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +709811000168105 Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes 210806 709801000168107 Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes 709781000168108 Fluarix Tetra 2015 injection suspension, 0.5 mL syringe 702671000168108 Fluarix Tetra 2015 702671000168108 Fluarix Tetra 2015 709791000168106 influenza quadrivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 709771000168105 influenza quadrivalent adult vaccine 2015 injection, 0.5 mL syringe 703011000168102 influenza quadrivalent vaccine 2015 +19901011000036109 Neurontin 400 mg hard capsule, 100, blister pack 66005 13148011000036106 Neurontin 400 mg hard capsule, 100 6431011000036105 Neurontin 400 mg hard capsule 4344011000036106 Neurontin 4344011000036106 Neurontin 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +927698011000036107 Docetaxel (DBL) 20 mg/2 mL concentrated injection, 2 mL vial 163802 927634011000036106 Docetaxel (DBL) 20 mg/2 mL concentrated injection, 2 mL vial 927587011000036100 Docetaxel (DBL) 20 mg/2 mL concentrated injection, 2 mL vial 927570011000036107 Docetaxel (DBL) 927570011000036107 Docetaxel (DBL) 927738011000036107 docetaxel 20 mg/2 mL injection, 2 mL vial 927716011000036102 docetaxel 20 mg/2 mL injection, vial 21721011000036101 docetaxel +18008011000036108 Exjade 250 mg dispersible tablet, 28, blister pack 119231 11613011000036100 Exjade 250 mg dispersible tablet, 28 4532011000036103 Exjade 250 mg dispersible tablet 3267011000036102 Exjade 3267011000036102 Exjade 26708011000036104 deferasirox 250 mg dispersible tablet, 28 22103011000036103 deferasirox 250 mg dispersible tablet 21549011000036103 deferasirox +1087271000168105 Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations, pump pack 215798 859071000168100 Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations 859041000168107 Nasonex Allergy 50 microgram/actuation nasal spray, actuation 859031000168103 Nasonex Allergy 859031000168103 Nasonex Allergy 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +50605011000036100 Celsentri 150 mg film-coated tablet, 60, blister pack 137329 49631011000036103 Celsentri 150 mg film-coated tablet, 60 48792011000036106 Celsentri 150 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51523011000036109 maraviroc 150 mg tablet, 60 50990011000036105 maraviroc 150 mg tablet 50741011000036103 maraviroc +700029681000036109 Yaz Flex tablet, 30, dial dispenser pack 89691000036105 Yaz Flex tablet, 30 88411000036109 Yaz Flex tablet 87551000036108 Yaz Flex 87551000036108 Yaz Flex 89711000036107 drospirenone 3 mg + ethinylestradiol 20 microgram tablet, 30 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +21015011000036107 Enalapril Maleate (Chemmart) 5 mg uncoated tablet, 30, blister pack 96333 14161011000036109 Enalapril Maleate (Chemmart) 5 mg uncoated tablet, 30 7440011000036100 Enalapril Maleate (Chemmart) 5 mg uncoated tablet 3719011000036102 Enalapril Maleate (Chemmart) 3719011000036102 Enalapril Maleate (Chemmart) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +21212011000036109 Zofran 8 mg film-coated tablet, 10, bottle 9982 14347011000036104 Zofran 8 mg film-coated tablet, 10 7629011000036106 Zofran 8 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +18873011000036108 Mycostatin 100 000 units/g cream, 15 g, tube 19216 12184011000036103 Mycostatin 100 000 units/g cream, 15 g 5300011000036101 Mycostatin 100 000 units/g cream 3465011000036108 Mycostatin 3465011000036108 Mycostatin 26970011000036100 nystatin 100 000 units/g cream, 15 g 22343011000036104 nystatin 100 000 units/g cream 21669011000036102 nystatin +878941000168104 Bosentan (Ran) 62.5 mg film-coated tablet, 60, blister pack 257732 878931000168108 Bosentan (Ran) 62.5 mg film-coated tablet, 60 878891000168100 Bosentan (Ran) 62.5 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1119481000168105 Quetiapine XR (Actavis) 200 mg modified release tablet, 10, blister pack 226801 1119471000168107 Quetiapine XR (Actavis) 200 mg modified release tablet, 10 1119461000168101 Quetiapine XR (Actavis) 200 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51532011000036104 quetiapine 200 mg modified release tablet, 10 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +1098061000168109 Valaciclovir (Auro) 500 mg film-coated tablet, 30, blister pack 173282 1098051000168107 Valaciclovir (Auro) 500 mg film-coated tablet, 30 1098001000168108 Valaciclovir (Auro) 500 mg film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1016681000168106 Atomoxetine (Apotex) 40 mg hard capsule, 28, blister pack 199917 1016671000168108 Atomoxetine (Apotex) 40 mg hard capsule, 28 1016661000168102 Atomoxetine (Apotex) 40 mg hard capsule 1013681000168104 Atomoxetine (Apotex) 1013681000168104 Atomoxetine (Apotex) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +87649011000036104 Sifrol ER 375 microgram modified release tablet, 30, blister pack 158754 87463011000036106 Sifrol ER 375 microgram modified release tablet, 30 87324011000036109 Sifrol ER 375 microgram modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 87813011000036101 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 30 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +60320011000036105 Cetrelief (Generic Health) 10 mg film-coated tablet, 28, blister pack 138826 56279011000036103 Cetrelief (Generic Health) 10 mg film-coated tablet, 28 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63285011000036101 cetirizine hydrochloride 10 mg tablet, 28 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +69144011000036109 Strepsils lemon sugar free lozenge, 12, blister pack 153118 66944011000036100 Strepsils lemon sugar free lozenge, 12 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71519011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 12 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +871061000168107 Clopidogrel (AN) 75 mg film-coated tablet, 120, bottle 187037 871051000168105 Clopidogrel (AN) 75 mg film-coated tablet, 120 660371000168109 Clopidogrel (AN) 75 mg film-coated tablet 660361000168103 Clopidogrel (AN) 660361000168103 Clopidogrel (AN) 925440011000036100 clopidogrel 75 mg tablet, 120 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +84342011000036106 Cold and Flu Day and Night Relief PE (Your Pharmacy) (32 x Day tablets, 16 x Night tablets), 48, blister pack 160388 84035011000036100 Cold and Flu Day and Night Relief PE (Your Pharmacy) (32 x Day tablets, 16 x Night tablets), 48 83663011000036104 Cold and Flu Day and Night Relief PE (Night) (Your Pharmacy) uncoated tablet 52421000168100 Cold and Flu Day and Night Relief PE (Your Pharmacy) 52651000168105 Cold and Flu Day and Night Relief PE (Night) (Your Pharmacy) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +84342011000036106 Cold and Flu Day and Night Relief PE (Your Pharmacy) (32 x Day tablets, 16 x Night tablets), 48, blister pack 160388 84035011000036100 Cold and Flu Day and Night Relief PE (Your Pharmacy) (32 x Day tablets, 16 x Night tablets), 48 83662011000036106 Cold and Flu Day and Night Relief PE (Day) (Your Pharmacy) uncoated tablet 52421000168100 Cold and Flu Day and Night Relief PE (Your Pharmacy) 52541000168107 Cold and Flu Day and Night Relief PE (Day) (Your Pharmacy) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +44754011000036106 Co-Diovan 160/12.5 film-coated tablet, 14, blister pack 96741 42199011000036100 Co-Diovan 160/12.5 film-coated tablet, 14 40386011000036105 Co-Diovan 160/12.5 film-coated tablet 44061000168106 Co-Diovan 160/12.5 44061000168106 Co-Diovan 160/12.5 46959011000036106 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 14 45359011000036104 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +1020971000168107 Advil 200 mg effervescent tablet, 20, strip pack 200186 1020961000168101 Advil 200 mg effervescent tablet, 20 1020911000168104 Advil 200 mg effervescent tablet 53215011000036102 Advil 53215011000036102 Advil 1020951000168103 ibuprofen 200 mg effervescent tablet, 20 1020901000168102 ibuprofen 200 mg effervescent tablet 21885011000036105 ibuprofen +699601000168103 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL syringe 699581000168107 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL syringe 699541000168102 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL syringe 686381000168107 Plegridy 686381000168107 Plegridy 699561000168103 peginterferon beta-1a 94 microgram/0.5 mL injection, 0.5 mL syringe 699531000168106 peginterferon beta-1a 94 microgram/0.5 mL injection, syringe 698561000168109 peginterferon beta-1a +878921000168105 Bosentan (Ran) 62.5 mg film-coated tablet, 56, blister pack 257732 878911000168103 Bosentan (Ran) 62.5 mg film-coated tablet, 56 878891000168100 Bosentan (Ran) 62.5 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +879101000168106 Pregnyl (3 x 5000 units vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 273874 879091000168101 Pregnyl (3 x 5000 units vials, 3 x 1 mL inert diluent vials), 1 pack 878971000168106 Pregnyl (inert substance) diluent, 1 mL vial 3127011000036109 Pregnyl 3127011000036109 Pregnyl 879081000168104 human chorionic gonadotrophin 5000 units injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +879101000168106 Pregnyl (3 x 5000 units vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 273874 879091000168101 Pregnyl (3 x 5000 units vials, 3 x 1 mL inert diluent vials), 1 pack 879041000168109 Pregnyl (human chorionic gonadotrophin 5000 units) powder for injection, 5000 units vial 3127011000036109 Pregnyl 3127011000036109 Pregnyl 879081000168104 human chorionic gonadotrophin 5000 units injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 879031000168100 human chorionic gonadotrophin 5000 units injection, vial 33633011000036101 human chorionic gonadotrophin +20381011000036102 Aciclovir (Chemmart) 200 mg tablet, 90, blister pack 76897 13589011000036100 Aciclovir (Chemmart) 200 mg tablet, 90 6872011000036105 Aciclovir (Chemmart) 200 mg tablet 3592011000036107 Aciclovir (Chemmart) 3592011000036107 Aciclovir (Chemmart) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +933212961000036102 Plaqacide (Oral-B) 0.2% mouthwash, 250 mL, bottle 15172 933202751000036100 Plaqacide (Oral-B) 0.2% mouthwash, 250 mL 933194571000036105 Plaqacide (Oral-B) 0.2% mouthwash 3172011000036108 Plaqacide (Oral-B) 3172011000036108 Plaqacide (Oral-B) 933199701000036106 chlorhexidine gluconate 0.2% mouthwash, 250 mL 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +649911000168103 Cefepime (Alphapharm) 1 g powder for injection, 1 vial 161029 649901000168101 Cefepime (Alphapharm) 1 g powder for injection, 1 vial 649891000168100 Cefepime (Alphapharm) 1 g powder for injection, vial 649461000168109 Cefepime (Alphapharm) 649461000168109 Cefepime (Alphapharm) 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +131021000036100 Atorvastatin (SZ) 80 mg film-coated tablet, 30, blister pack 179833 127921000036105 Atorvastatin (SZ) 80 mg film-coated tablet, 30 125461000036103 Atorvastatin (SZ) 80 mg film-coated tablet 124141000036105 Atorvastatin (SZ) 124141000036105 Atorvastatin (SZ) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +964521000168105 Normatens 400 microgram film-coated tablet, 14, blister pack 114124 964511000168103 Normatens 400 microgram film-coated tablet, 14 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964501000168101 moxonidine 400 microgram tablet, 14 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +1051001000168108 Alprax 1 mg uncoated tablet, 10, blister pack 82643 1050991000168107 Alprax 1 mg uncoated tablet, 10 7164011000036104 Alprax 1 mg uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 1042821000168104 alprazolam 1 mg tablet, 10 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +1088471000168108 Mersynofen film-coated tablet, 30, blister pack 283907 1088461000168102 Mersynofen film-coated tablet, 30 1088371000168101 Mersynofen film-coated tablet 1088361000168107 Mersynofen 1088361000168107 Mersynofen 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +20748011000036101 Allosig 300 mg uncoated tablet, 60, blister pack 90173 13917011000036101 Allosig 300 mg uncoated tablet, 60 7203011000036104 Allosig 300 mg uncoated tablet 3682011000036100 Allosig 3682011000036100 Allosig 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +21186011000036109 Lexapro 10 mg/mL oral liquid solution, 28 mL, bottle 99369 14324011000036107 Lexapro 10 mg/mL oral liquid solution, 28 mL 7610011000036107 Lexapro 10 mg/mL oral liquid solution 3210011000036104 Lexapro 3210011000036104 Lexapro 28315011000036100 escitalopram 10 mg/mL oral liquid, 28 mL 23629011000036101 escitalopram 10 mg/mL oral liquid 21534011000036100 escitalopram +165831000036102 Sertraline (Actavis) 50 mg film-coated tablet, 30, blister pack 195322 163971000036105 Sertraline (Actavis) 50 mg film-coated tablet, 30 162091000036100 Sertraline (Actavis) 50 mg film-coated tablet 161981000036108 Sertraline (Actavis) 161981000036108 Sertraline (Actavis) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +177071000036107 Azathioprine (Apo) 50 mg film-coated tablet, 100, blister pack 205762 175321000036102 Azathioprine (Apo) 50 mg film-coated tablet, 100 172891000036102 Azathioprine (Apo) 50 mg film-coated tablet 168711000036105 Azathioprine (Apo) 168711000036105 Azathioprine (Apo) 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +1018871000168108 Aripiprazole (Actavis) 20 mg uncoated tablet, 30, blister pack 217211 1018861000168102 Aripiprazole (Actavis) 20 mg uncoated tablet, 30 1018851000168104 Aripiprazole (Actavis) 20 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +24441000036107 Oxaliccord 50 mg/10 mL concentrated injection, 10 mL vial 169422 22461000036104 Oxaliccord 50 mg/10 mL concentrated injection, 10 mL vial 20601000036101 Oxaliccord 50 mg/10 mL concentrated injection, 10 mL vial 19891000036109 Oxaliccord 19891000036109 Oxaliccord 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +1051021000168104 Alprax 500 microgram uncoated tablet, 10, blister pack 82640 1051011000168106 Alprax 500 microgram uncoated tablet, 10 7163011000036101 Alprax 500 microgram uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 1042791000168107 alprazolam 500 microgram tablet, 10 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +676531000168107 Celecoxib (Actavis) 100 mg hard capsule, 60, blister pack 206838 676521000168109 Celecoxib (Actavis) 100 mg hard capsule, 60 676511000168102 Celecoxib (Actavis) 100 mg hard capsule 676471000168106 Celecoxib (Actavis) 676471000168106 Celecoxib (Actavis) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +972881000168109 Lyzalon 150 mg hard capsule, 60, blister pack 224446 972441000168102 Lyzalon 150 mg hard capsule, 60 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +810391000168101 Actonel Combi D effervescent granules, 6 sachets 810381000168104 Actonel Combi D effervescent granules, 6 sachets 810371000168102 Actonel Combi D effervescent granules, 1 sachet 35975011000036105 Actonel Combi D 35975011000036105 Actonel Combi D 810221000168109 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 6 sachets 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +960271000168100 Dormizol CR 6.25 mg modified release tablet, 100, blister pack 120712 960261000168106 Dormizol CR 6.25 mg modified release tablet, 100 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46176011000036102 zolpidem tartrate 6.25 mg modified release tablet, 100 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +43681011000036107 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 50 x 100 mL bags 123041 41277011000036104 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 50 x 100 mL bags 39914011000036107 Ciprofloxacin (Hospira) 200 mg/100 mL injection solution, 100 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46212011000036109 ciprofloxacin 200 mg/100 mL injection, 50 x 100 mL bags 45032011000036109 ciprofloxacin 200 mg/100 mL injection, bag 21245011000036105 ciprofloxacin +44335011000036105 Combivent pressurised inhalation, 200 actuations, metered dose aerosol can 67268 41802011000036101 Combivent pressurised inhalation, 200 actuations 40206011000036101 Combivent pressurised inhalation, actuation 39570011000036100 Combivent 39570011000036100 Combivent 46608011000036106 ipratropium bromide 20 microgram/actuation + salbutamol 100 microgram/actuation pressurised inhalation, 200 actuations 45238011000036100 ipratropium bromide 20 microgram/actuation + salbutamol 100 microgram/actuation pressurised inhalation, actuation 44956011000036106 ipratropium + salbutamol +923747011000036102 Cayston (84 x 75 mg vials, 88 x 1 mL inert diluent ampoules), 1 pack, composite pack 148384 923323011000036107 Cayston (84 x 75 mg vials, 88 x 1 mL inert diluent ampoules), 1 pack 923002011000036106 Cayston (aztreonam 75 mg) powder for inhalation, 75 mg vial 922908011000036107 Cayston 922908011000036107 Cayston 924136011000036106 aztreonam 75 mg powder for inhalation [84 vials] (&) inert substance diluent [88 x 1 mL ampoules], 1 pack 923959011000036102 aztreonam 75 mg powder for inhalation, vial 37753011000036101 aztreonam +923747011000036102 Cayston (84 x 75 mg vials, 88 x 1 mL inert diluent ampoules), 1 pack, composite pack 148384 923323011000036107 Cayston (84 x 75 mg vials, 88 x 1 mL inert diluent ampoules), 1 pack 639161000168101 Cayston (inert substance) diluent, 1 mL ampoule 922908011000036107 Cayston 922908011000036107 Cayston 924136011000036106 aztreonam 75 mg powder for inhalation [84 vials] (&) inert substance diluent [88 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +929046011000036100 Galvumet 50/500 film-coated tablet, 30, blister pack 161216 928407011000036100 Galvumet 50/500 film-coated tablet, 30 927968011000036108 Galvumet 50/500 film-coated tablet 32001000168102 Galvumet 50/500 32001000168102 Galvumet 50/500 929244011000036104 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet, 30 929154011000036103 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet 929132011000036106 vildagliptin + metformin +33541011000036109 Vaxigrip Junior 2008 needle free injection solution, 1 x 0.25 mL syringe 129875 33281011000036105 Vaxigrip Junior 2008 needle free injection solution, 1 x 0.25 mL syringe 79309011000036107 Vaxigrip Junior 2008 needle free injection solution, 0.25 mL syringe 14461000168105 Vaxigrip Junior 2008 14461000168105 Vaxigrip Junior 2008 33826011000036102 influenza trivalent child vaccine 2008 injection, 1 x 0.25 mL syringe 33692011000036101 influenza trivalent child vaccine 2008 injection, 0.25 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +50537011000036106 Tubigrip Long Stocking (1486) XX/large size bandage, 1, carton 49334011000036105 Tubigrip Long Stocking (1486) XX/large size bandage, 1 48533011000036107 Tubigrip Long Stocking (1486) XX/large size bandage 53921000168101 Tubigrip Long Stocking (1486) 53921000168101 Tubigrip Long Stocking (1486) 51315011000036102 bandage tubular long stocking XX/large size bandage, 1 50844011000036103 bandage tubular long stocking XX/large size bandage 50728011000036105 bandage tubular long stocking +43923011000036103 Pravastatin Sodium (Generic Health) 40 mg film-coated tablet, 30, blister pack 139601 41415011000036103 Pravastatin Sodium (Generic Health) 40 mg film-coated tablet, 30 39804011000036101 Pravastatin Sodium (Generic Health) 40 mg film-coated tablet 39647011000036106 Pravastatin Sodium (Generic Health) 39647011000036106 Pravastatin Sodium (Generic Health) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +1010581000168105 Paroxetine (Amneal) 20 mg film-coated tablet, 30, blister pack 154655 1010571000168107 Paroxetine (Amneal) 20 mg film-coated tablet, 30 1010561000168101 Paroxetine (Amneal) 20 mg film-coated tablet 1010551000168103 Paroxetine (Amneal) 1010551000168103 Paroxetine (Amneal) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1002011000168106 Pregabalin (Apo) 200 mg hard capsule, 100, bottle 193252 1002001000168108 Pregabalin (Apo) 200 mg hard capsule, 100 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1001991000168106 pregabalin 200 mg capsule, 100 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +59807011000036100 Ibuprofen (Your Pharmacy) sugar free 100 mg/5 mL oral liquid suspension, 200 mL, bottle 114672 55769011000036103 Ibuprofen (Your Pharmacy) sugar free 100 mg/5 mL oral liquid suspension, 200 mL 53717011000036101 Ibuprofen (Your Pharmacy) sugar free 100 mg/5 mL oral liquid suspension, 5 mL 53381011000036107 Ibuprofen (Your Pharmacy) 53381011000036107 Ibuprofen (Your Pharmacy) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +69100011000036105 Rubesal spray solution, 100 mL, bottle 14869 66901011000036106 Rubesal spray solution, 100 mL 65313011000036100 Rubesal spray solution 65038011000036100 Rubesal 65038011000036100 Rubesal 71495011000036106 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% spray, 100 mL 70037011000036106 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% spray 69779011000036103 camphor + salicylic acid + menthol +814411000168106 Ranitidine (Sandoz) 50 mg/5 mL concentrated injection, 5 x 5 mL ampoules 75771 814401000168108 Ranitidine (Sandoz) 50 mg/5 mL concentrated injection, 5 x 5 mL ampoules 814391000168106 Ranitidine (Sandoz) 50 mg/5 mL concentrated injection, 5 mL ampoule 920108011000036102 Ranitidine (Sandoz) 920108011000036102 Ranitidine (Sandoz) 46729011000036102 ranitidine 50 mg/5 mL injection, 5 x 5 mL ampoules 45285011000036101 ranitidine 50 mg/5 mL injection, ampoule 21682011000036109 ranitidine +60147011000036104 Zodac 10 mg film-coated tablet, 30, blister pack 129613 56106011000036103 Zodac 10 mg film-coated tablet, 30 53792011000036104 Zodac 10 mg film-coated tablet 53497011000036105 Zodac 53497011000036105 Zodac 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +44600011000036104 Xolair (1 x 150 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack, composite pack 82744 42053011000036100 Xolair (1 x 150 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack 40336011000036101 Xolair (omalizumab 150 mg) powder for injection, 150 mg vial 39611011000036108 Xolair 39611011000036108 Xolair 46820011000036106 omalizumab 150 mg injection [1 vial] (&) inert substance diluent [1.2 mL ampoule], 1 pack 45325011000036102 omalizumab 150 mg injection, vial 44858011000036101 omalizumab +44600011000036104 Xolair (1 x 150 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack, composite pack 82744 42053011000036100 Xolair (1 x 150 mg vial, 1 x 1.2 mL inert diluent ampoule), 1 pack 629941000168101 Xolair (inert substance) diluent, 1.2 mL ampoule 39611011000036108 Xolair 39611011000036108 Xolair 46820011000036106 omalizumab 150 mg injection [1 vial] (&) inert substance diluent [1.2 mL ampoule], 1 pack 629931000168105 inert substance diluent, 1.2 mL ampoule 21220011000036103 inert substance +810071000168100 Entresto 24/26 film-coated tablet, 14, blister pack 234219 810061000168106 Entresto 24/26 film-coated tablet, 14 810041000168107 Entresto 24/26 film-coated tablet 810021000168101 Entresto 24/26 810021000168101 Entresto 24/26 810051000168109 sacubitril 24.3 mg + valsartan 25.7 mg tablet, 14 810031000168103 sacubitril 24.3 mg + valsartan 25.7 mg tablet 809631000168102 sacubitril + valsartan +973201000168109 Lyzalon 300 mg hard capsule, 14, blister pack 224416 972471000168109 Lyzalon 300 mg hard capsule, 14 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +804671000168103 Otezla 30 mg film-coated tablet, 56, blister pack 220423 804661000168109 Otezla 30 mg film-coated tablet, 56 804641000168105 Otezla 30 mg film-coated tablet 804611000168106 Otezla 804611000168106 Otezla 804651000168107 apremilast 30 mg tablet, 56 804631000168101 apremilast 30 mg tablet 804621000168104 apremilast +960231000168103 Dormizol CR 6.25 mg modified release tablet, 21, blister pack 120712 960221000168101 Dormizol CR 6.25 mg modified release tablet, 21 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46180011000036106 zolpidem tartrate 6.25 mg modified release tablet, 21 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +926835011000036103 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 30, blister pack 176511 926231011000036105 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 30 925686011000036108 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +984711000168106 Acidsoothe 150 mg/10 mL oral liquid, 100 mL, bottle 163643 984701000168108 Acidsoothe 150 mg/10 mL oral liquid, 100 mL 984681000168105 Acidsoothe 150 mg/10 mL oral liquid, 10 mL 984671000168107 Acidsoothe 984671000168107 Acidsoothe 984691000168108 ranitidine 150 mg/10 mL oral liquid, 100 mL 22429011000036109 ranitidine 150 mg/10 mL oral liquid 21682011000036109 ranitidine +700029201000036100 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream, 30 g, tube 291000168100 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream, 30 g 80241011000036106 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 1% cream 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 700013871000036102 Antifungal Clotrimazole Women's Combination Treatment (Soul Pattinson) 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +929128011000036106 Zyprexa Zydis 20 mg wafer, 28, blister pack 73391 928485011000036109 Zyprexa Zydis 20 mg wafer, 28 927995011000036100 Zyprexa Zydis 20 mg wafer 15881000168103 Zyprexa Zydis 15881000168103 Zyprexa Zydis 929277011000036109 olanzapine 20 mg wafer, 28 929158011000036105 olanzapine 20 mg wafer 21485011000036103 olanzapine +17879011000036100 Pregnyl (3 x 500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 14517 12037011000036106 Pregnyl (3 x 500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack 4843011000036107 Pregnyl (human chorionic gonadotrophin 500 units) powder for injection, 500 units ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 26869011000036106 human chorionic gonadotrophin 500 units injection [3 ampoules] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 22248011000036100 human chorionic gonadotrophin 500 units injection, ampoule 33633011000036101 human chorionic gonadotrophin +17879011000036100 Pregnyl (3 x 500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 14517 12037011000036106 Pregnyl (3 x 500 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack 632891000168106 Pregnyl (inert substance) diluent, 1 mL ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 26869011000036106 human chorionic gonadotrophin 500 units injection [3 ampoules] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +18308011000036109 Endone 5 mg uncoated tablet, 20, blister pack 14945 12066011000036101 Endone 5 mg uncoated tablet, 20 5776011000036108 Endone 5 mg uncoated tablet 3580011000036107 Endone 3580011000036107 Endone 26891011000036109 oxycodone hydrochloride 5 mg tablet, 20 22269011000036101 oxycodone hydrochloride 5 mg tablet 21259011000036105 oxycodone +1105731000168103 Valpam 5 mg uncoated tablet, 60, bottle 80812 1105681000168107 Valpam 5 mg uncoated tablet, 60 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105671000168109 diazepam 5 mg tablet, 60 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +19276011000036106 Risperdal 2 mg film-coated tablet, 60, blister pack 48486 12566011000036103 Risperdal 2 mg film-coated tablet, 60 4689011000036108 Risperdal 2 mg film-coated tablet 15481000168100 Risperdal 15481000168100 Risperdal 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +44093011000036101 Pharmorubicin 200 mg/100 mL injection solution, 100 mL vial 49746 41579011000036100 Pharmorubicin 200 mg/100 mL injection solution, 100 mL vial 40082011000036105 Pharmorubicin 200 mg/100 mL injection solution, 100 mL vial 24651000168101 Pharmorubicin 24651000168101 Pharmorubicin 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +844671000168106 Kalydeco 50 mg granules, 4 x 14 sachets 267390 844661000168100 Kalydeco 50 mg granules, 4 x 14 sachets 844611000168103 Kalydeco 50 mg granules, 50 mg sachet 154531000036107 Kalydeco 154531000036107 Kalydeco 844651000168102 ivacaftor 50 mg granules, 4 x 14 sachets 844601000168101 ivacaftor 50 mg granules, sachet 157061000036101 ivacaftor +1010261000168103 Aprolan ODT 5 mg orally disintegrating tablet, 28, blister pack 163417 1010251000168100 Aprolan ODT 5 mg orally disintegrating tablet, 28 1010241000168102 Aprolan ODT 5 mg orally disintegrating tablet 1010081000168101 Aprolan ODT 1010081000168101 Aprolan ODT 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +1105691000168105 Valpam 5 mg uncoated tablet, 60, blister pack 80811 1105681000168107 Valpam 5 mg uncoated tablet, 60 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105671000168109 diazepam 5 mg tablet, 60 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +651691000168103 Metrol-XL 23.75 mg modified release tablet, 15, blister pack 172299 651681000168101 Metrol-XL 23.75 mg modified release tablet, 15 651671000168104 Metrol-XL 23.75 mg modified release tablet 651661000168105 Metrol-XL 651661000168105 Metrol-XL 28243011000036102 metoprolol succinate 23.75 mg modified release tablet, 15 23557011000036100 metoprolol succinate 23.75 mg modified release tablet 21662011000036107 metoprolol +681741000168109 Esomeprazole (Apotex) 40 mg enteric tablet, 100, blister pack 210843 681731000168100 Esomeprazole (Apotex) 40 mg enteric tablet, 100 681661000168100 Esomeprazole (Apotex) 40 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +834871000168106 Viagra 100 mg film-coated tablet, 8, blister pack 64436 834861000168100 Viagra 100 mg film-coated tablet, 8 6381011000036105 Viagra 100 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 760421000168109 sildenafil 100 mg tablet, 8 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +73248011000036102 Dalacin C 300 mg/2 mL injection solution, 10 x 2 mL ampoules 12294 73049011000036104 Dalacin C 300 mg/2 mL injection solution, 10 x 2 mL ampoules 72973011000036103 Dalacin C 300 mg/2 mL injection solution, 2 mL ampoule 10481000168108 Dalacin C 10481000168108 Dalacin C 73454011000036106 clindamycin 300 mg/2 mL injection, 10 x 2 mL ampoules 73362011000036100 clindamycin 300 mg/2 mL injection, ampoule 21255011000036108 clindamycin +1085401000168108 Spray-Tish 0.118% nasal spray, 15 mL, pump pack 42391 74336011000036105 Spray-Tish 0.118% nasal spray, 15 mL 73820011000036109 Spray-Tish 0.118% nasal spray 73766011000036100 Spray-Tish 73766011000036100 Spray-Tish 75481011000036106 tramazoline hydrochloride monohydrate 0.118% nasal spray, 15 mL 75086011000036109 tramazoline hydrochloride monohydrate 0.118% nasal spray 74955011000036109 tramazoline +24601000036107 Zithromax 200 mg/5 mL powder for oral liquid, 15 mL, bottle 60049 22981000036104 Zithromax 200 mg/5 mL powder for oral liquid, 15 mL 20311000036107 Zithromax 200 mg/5 mL powder for oral liquid, 5 mL 3528011000036100 Zithromax 3528011000036100 Zithromax 27448011000036101 azithromycin 200 mg/5 mL powder for oral liquid, 15 mL 22795011000036107 azithromycin 200 mg/5 mL powder for oral liquid 21518011000036103 azithromycin +856231000168104 Alprolix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209227 856221000168102 Alprolix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack 856201000168106 Alprolix (eftrenonacog alfa 250 units) powder for injection, 250 units vial 855751000168109 Alprolix 855751000168109 Alprolix 856211000168109 eftrenonacog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 856191000168108 eftrenonacog alfa 250 units injection, vial 855831000168105 eftrenonacog alfa +856231000168104 Alprolix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209227 856221000168102 Alprolix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack 855861000168102 Alprolix (inert substance) diluent, 5 mL syringe 855751000168109 Alprolix 855751000168109 Alprolix 856211000168109 eftrenonacog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +998721000168106 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet, 30, blister pack 184813 998711000168104 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet, 30 998681000168100 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +20725011000036109 Mirtazon 30 mg film-coated tablet, 30, blister pack 82941 13894011000036103 Mirtazon 30 mg film-coated tablet, 30 7180011000036106 Mirtazon 30 mg film-coated tablet 4432011000036107 Mirtazon 4432011000036107 Mirtazon 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +877641000168106 Albunate-25 12.5 g/50 mL intravenous infusion injection, 50 mL vial 223742 877631000168102 Albunate-25 12.5 g/50 mL intravenous infusion injection, 50 mL vial 877611000168107 Albunate-25 12.5 g/50 mL intravenous infusion injection, 50 mL vial 876611000168109 Albunate-25 876611000168109 Albunate-25 877621000168100 albumin human 12.5 g/50 mL injection, 50 mL vial 877601000168109 albumin human 12.5 g/50 mL injection, vial 69754011000036102 albumin human +60458011000036102 Sleep Aid (Pharmacist Formula) 25 mg tablet, 10, blister pack 149475 56416011000036104 Sleep Aid (Pharmacist Formula) 25 mg tablet, 10 53917011000036108 Sleep Aid (Pharmacist Formula) 25 mg tablet 53529011000036102 Sleep Aid (Pharmacist Formula) 53529011000036102 Sleep Aid (Pharmacist Formula) 63825011000036104 doxylamine succinate 25 mg tablet, 10 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +1010421000168107 Risedronate (Apotex) 150 mg film-coated tablet, 1, blister pack 181972 1010411000168100 Risedronate (Apotex) 150 mg film-coated tablet, 1 1010401000168103 Risedronate (Apotex) 150 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +673111000168103 Fycompa 12 mg film-coated tablet, 28, blister pack 207691 673101000168101 Fycompa 12 mg film-coated tablet, 28 673081000168108 Fycompa 12 mg film-coated tablet 672551000168100 Fycompa 672551000168100 Fycompa 673091000168106 perampanel 12 mg tablet, 28 673071000168105 perampanel 12 mg tablet 672561000168103 perampanel +689231000168107 Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll, carton 689221000168109 Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll 689201000168100 Leukoplast (1072) 5 cm x 2.5 m tape 35891000168109 Leukoplast (1072) 35891000168109 Leukoplast (1072) 689211000168102 tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll 689191000168103 tape plaster adhesive elastic 5 cm x 2.5 m tape 50730011000036106 tape plaster adhesive elastic +981561000168100 Pritor 80 mg uncoated tablet, 98, blister pack 68055 981551000168102 Pritor 80 mg uncoated tablet, 98 981411000168104 Pritor 80 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 981541000168104 telmisartan 80 mg tablet, 98 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +68665011000036102 Nicotinell Fruit 4 mg chewing gum, 168, blister pack 126017 66690011000036101 Nicotinell Fruit 4 mg chewing gum, 168 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71516011000036108 nicotine 4 mg gum, 168 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +785581000168104 Endone XR 5 mg modified release tablet, 20, blister pack 153598 785571000168102 Endone XR 5 mg modified release tablet, 20 785561000168108 Endone XR 5 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 28126011000036108 oxycodone hydrochloride 5 mg modified release tablet, 20 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +1019031000168109 Aripiprazole (Actavis) 10 mg uncoated tablet, 250, bottle 217231 1019021000168106 Aripiprazole (Actavis) 10 mg uncoated tablet, 250 1018991000168102 Aripiprazole (Actavis) 10 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 1015711000168104 aripiprazole 10 mg tablet, 250 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +131111000036108 Candesartan Cilexetil (GA) 8 mg uncoated tablet, 30, bottle 195471 128301000036100 Candesartan Cilexetil (GA) 8 mg uncoated tablet, 30 124861000036102 Candesartan Cilexetil (GA) 8 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +775951000168106 Norspan 25 microgram/hour patch, 2, sachet 217508 775941000168109 Norspan 25 microgram/hour patch, 2 775921000168103 Norspan 25 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 775931000168100 buprenorphine 25 microgram/hour patch, 2 775911000168105 buprenorphine 25 microgram/hour patch 21232011000036101 buprenorphine +1111121000168102 Bivalirudin (DBL) 250 mg powder for injection, 10 vials 267957 1111111000168109 Bivalirudin (DBL) 250 mg powder for injection, 10 vials 1111081000168104 Bivalirudin (DBL) 250 mg powder for injection, 250 mg vial 1111071000168102 Bivalirudin (DBL) 1111071000168102 Bivalirudin (DBL) 851291000168105 bivalirudin 250 mg injection, 10 vials 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +1068321000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 24, blister pack 188379 1068311000168106 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 24 1068241000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +18746011000036104 Extine 20 mg film-coated tablet, 30, blister pack 120729 11653011000036105 Extine 20 mg film-coated tablet, 30 5098011000036103 Extine 20 mg film-coated tablet 4015011000036100 Extine 4015011000036100 Extine 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +165671000036101 Fluarix 2014 injection suspension, 10 x 0.5 mL syringes 154660 163771000036107 Fluarix 2014 injection suspension, 10 x 0.5 mL syringes 162181000036103 Fluarix 2014 injection suspension, 0.5 mL syringe 24311000168108 Fluarix 2014 24311000168108 Fluarix 2014 163651000036107 influenza trivalent adult vaccine 2014 injection, 10 x 0.5 mL syringes 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +177191000036105 Cephalexin (Apo) 250 mg hard capsule, 20, blister pack 73870 175491000036109 Cephalexin (Apo) 250 mg hard capsule, 20 173271000036108 Cephalexin (Apo) 250 mg hard capsule 29951000168107 Cephalexin (Apo) 29951000168107 Cephalexin (Apo) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +68982011000036106 Nicotinell Liquorice 2 mg chewing gum, 120, blister pack 136134 66784011000036104 Nicotinell Liquorice 2 mg chewing gum, 120 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71509011000036101 nicotine 2 mg gum, 120 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +933214381000036102 Ralset 100 mg film-coated tablet, 14, blister pack 160779 933203671000036109 Ralset 100 mg film-coated tablet, 14 933195861000036103 Ralset 100 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 929239011000036104 sertraline 100 mg tablet, 14 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +933214241000036103 Ralset 50 mg film-coated tablet, 30, blister pack 160771 933203461000036104 Ralset 50 mg film-coated tablet, 30 933195821000036107 Ralset 50 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +142711000036100 Xylocaine Jelly 2% gel, 30 g, tube 12026 142481000036101 Xylocaine Jelly 2% gel, 30 g 53616011000036106 Xylocaine Jelly 2% gel 18711000168105 Xylocaine Jelly 18711000168105 Xylocaine Jelly 142491000036104 lidocaine (lignocaine) hydrochloride 2% gel, 30 g 61889011000036102 lidocaine (lignocaine) hydrochloride 2% gel 21572011000036107 lidocaine (lignocaine) +20653011000036104 Bicor 10 mg film-coated tablet, 28, blister pack 81608 13833011000036107 Bicor 10 mg film-coated tablet, 28 7120011000036101 Bicor 10 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +24531000036101 Valaciclovir (Pfizer) 500 mg film-coated tablet, 30, bottle 173292 22531000036106 Valaciclovir (Pfizer) 500 mg film-coated tablet, 30 19921000036100 Valaciclovir (Pfizer) 500 mg film-coated tablet 19791000036100 Valaciclovir (Pfizer) 19791000036100 Valaciclovir (Pfizer) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +38991000036103 Escitalup 20 mg film-coated tablet, 30, bottle 165887 35361000036103 Escitalup 20 mg film-coated tablet, 30 33141000036102 Escitalup 20 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +122521000036103 Adaptic (2012) 7.6 cm x 7.6 cm dressing, 50, carton 122331000036105 Adaptic (2012) 7.6 cm x 7.6 cm dressing, 50 122231000036103 Adaptic (2012) 7.6 cm x 7.6 cm dressing 42381000168107 Adaptic (2012) 42381000168107 Adaptic (2012) 122341000036100 dressing tulle non-adherent primary wound contact layer paraffin 7.6 cm x 7.6 cm dressing, 50 122241000036108 dressing tulle non-adherent primary wound contact layer paraffin 7.6 cm x 7.6 cm dressing 122581000036102 dressing tulle non-adherent primary wound contact layer paraffin +1019011000168104 Aripiprazole (Actavis) 10 mg uncoated tablet, 100, bottle 217231 1019001000168102 Aripiprazole (Actavis) 10 mg uncoated tablet, 100 1018991000168102 Aripiprazole (Actavis) 10 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +846521000168102 Progout 100 mg uncoated tablet, 1000, bottle 27969 846511000168109 Progout 100 mg uncoated tablet, 1000 5743011000036103 Progout 100 mg uncoated tablet 4173011000036104 Progout 4173011000036104 Progout 846501000168106 allopurinol 100 mg tablet, 1000 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +18144011000036103 Daktarin 2% dusting powder, 30 g, bottle 13288 11949011000036109 Daktarin 2% dusting powder, 30 g 4744011000036107 Daktarin 2% dusting powder 431000168100 Daktarin 431000168100 Daktarin 26815011000036105 miconazole nitrate 2% dusting powder, 30 g 22197011000036109 miconazole nitrate 2% dusting powder 21454011000036108 miconazole +710611000168101 Strepsils Soothing lozenge, 16, blister pack 14975 710601000168104 Strepsils Soothing lozenge, 16 710491000168107 Strepsils Soothing lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +165741000036104 Temozolomide (Alphapharm) 140 mg hard capsule, 5, bottle 192680 163861000036109 Temozolomide (Alphapharm) 140 mg hard capsule, 5 162321000036101 Temozolomide (Alphapharm) 140 mg hard capsule 161971000036106 Temozolomide (Alphapharm) 161971000036106 Temozolomide (Alphapharm) 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +925751000168104 Zorac 0.05% gel, 10 g, tube 59521 925741000168101 Zorac 0.05% gel, 10 g 925721000168107 Zorac 0.05% gel 39675011000036100 Zorac 39675011000036100 Zorac 925731000168105 tazarotene 0.05% gel, 10 g 925711000168100 tazarotene 0.05% gel 44886011000036105 tazarotene +38951000036107 Escitalupin 20 mg film-coated tablet, 100, bottle 165885 35321000036107 Escitalupin 20 mg film-coated tablet, 100 33041000036103 Escitalupin 20 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +780291000168105 Fentanyl (Apo) 50 microgram/hour patch, 5, sachet 152573 780281000168107 Fentanyl (Apo) 50 microgram/hour patch, 5 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 26650011000036103 fentanyl 50 microgram/hour patch, 5 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +677491000168109 Breo Ellipta 200/25 powder for inhalation, 30 actuations, blister pack 199747 677481000168106 Breo Ellipta 200/25 powder for inhalation, 30 actuations 677461000168102 Breo Ellipta 200/25 powder for inhalation, actuation 677421000168107 Breo Ellipta 200/25 677421000168107 Breo Ellipta 200/25 677471000168108 fluticasone furoate 200 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, 30 actuations 677451000168104 fluticasone furoate 200 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, actuation 861401000168109 fluticasone furoate + vilanterol +906661000168108 Celecoxib (Medis) 200 mg capsule, 60, blister pack 204618 906651000168106 Celecoxib (Medis) 200 mg capsule, 60 906471000168100 Celecoxib (Medis) 200 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +105221000036104 Irbesartan HCT 150/12.5 (Stada) tablet, 30, blister pack 186255 102331000036100 Irbesartan HCT 150/12.5 (Stada) tablet, 30 98451000036107 Irbesartan HCT 150/12.5 (Stada) tablet 52871000168102 Irbesartan HCT 150/12.5 (Stada) 52871000168102 Irbesartan HCT 150/12.5 (Stada) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +77232011000036106 Escitalopram (Chemmart) 10 mg film-coated tablet, 28, blister pack 213723 76648011000036107 Escitalopram (Chemmart) 10 mg film-coated tablet, 28 76086011000036106 Escitalopram (Chemmart) 10 mg film-coated tablet 75923011000036104 Escitalopram (Chemmart) 75923011000036104 Escitalopram (Chemmart) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +77232011000036106 Escitalopram (Chemmart) 10 mg film-coated tablet, 28, blister pack 146023 76648011000036107 Escitalopram (Chemmart) 10 mg film-coated tablet, 28 76086011000036106 Escitalopram (Chemmart) 10 mg film-coated tablet 75923011000036104 Escitalopram (Chemmart) 75923011000036104 Escitalopram (Chemmart) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +80983011000036104 Resdone 2 mg film-coated tablet, 60, blister pack 147673 80543011000036104 Resdone 2 mg film-coated tablet, 60 80184011000036104 Resdone 2 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +86888011000036105 Allersoothe 25 mg film-coated tablet, 50, blister pack 160734 86770011000036100 Allersoothe 25 mg film-coated tablet, 50 86642011000036105 Allersoothe 25 mg film-coated tablet 86586011000036105 Allersoothe 86586011000036105 Allersoothe 27922011000036103 promethazine hydrochloride 25 mg tablet, 50 23246011000036109 promethazine hydrochloride 25 mg tablet 21237011000036104 promethazine +61501011000036104 Proven 200 mg film-coated tablet, 40, blister pack 92447 57426011000036106 Proven 200 mg film-coated tablet, 40 54299011000036101 Proven 200 mg film-coated tablet 53524011000036103 Proven 53524011000036103 Proven 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +931548011000036106 Danset 4 mg film-coated tablet, 10, blister pack 163434 930709011000036103 Danset 4 mg film-coated tablet, 10 930024011000036108 Danset 4 mg film-coated tablet 12931000168101 Danset 12931000168101 Danset 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +60962011000036107 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 96, blister pack 62804 56905011000036107 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 96 54116011000036109 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet 53485011000036104 Extra Strength Pain Relief (Pharmacist) 53485011000036104 Extra Strength Pain Relief (Pharmacist) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18049011000036106 Lisinopril (Pharmacor) 5 mg uncoated tablet, 30, blister pack 132554 11933011000036105 Lisinopril (Pharmacor) 5 mg uncoated tablet, 30 4751011000036107 Lisinopril (Pharmacor) 5 mg uncoated tablet 3046011000036104 Lisinopril (Pharmacor) 3046011000036104 Lisinopril (Pharmacor) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +808781000168101 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet, 30, blister pack 184815 808771000168104 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet, 30 808741000168106 Perindopril Arginine (Terry White Chemists) 5 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +1020491000168103 Aripiprazole (WT) 10 mg uncoated tablet, 100, bottle 217224 1020481000168101 Aripiprazole (WT) 10 mg uncoated tablet, 100 1020471000168104 Aripiprazole (WT) 10 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +860641000168104 Amisulpride (Winthrop) 50 mg uncoated tablet, 90, blister pack 125164 860631000168108 Amisulpride (Winthrop) 50 mg uncoated tablet, 90 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +925431000168100 Androgel 1% (25 mg/2.5 g) gel, 10 x 2.5 g sachets 96122 925421000168103 Androgel 1% (25 mg/2.5 g) gel, 10 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46940011000036102 testosterone 1% (25 mg/2.5 g) gel, 10 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +931754011000036102 Visine Advanced Relief eye drops solution, 15 mL, bottle 72111 930914011000036107 Visine Advanced Relief eye drops solution, 15 mL 930116011000036102 Visine Advanced Relief eye drops solution 53506011000036101 Visine Advanced Relief 53506011000036101 Visine Advanced Relief 63720011000036105 dextran-70 0.1% + macrogol-400 1% + povidone 1% + tetryzoline hydrochloride 0.05% eye drops, 15 mL 62058011000036102 dextran-70 0.1% + macrogol-400 1% + povidone 1% + tetryzoline hydrochloride 0.05% eye drops 61792011000036106 dextran-70 + macrogol-400 + povidone + tetryzoline +160191000036102 Feiba-NF 2500 U (1 x 2500 units vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 172236 158861000036108 Feiba-NF 2500 U (1 x 2500 units vial, 1 x 50 mL inert diluent vial), 1 pack 158121000036108 Feiba-NF 2500 U (factor VIII inhibitor bypassing fraction 2500 units) powder for injection, 2500 units vial 58561000168109 Feiba-NF 2500 U 58561000168109 Feiba-NF 2500 U 158871000036100 factor VIII inhibitor bypassing fraction 2500 units injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 158131000036105 factor VIII inhibitor bypassing fraction 2500 units injection, vial 933216341000036100 factor VIII inhibitor bypassing fraction +160191000036102 Feiba-NF 2500 U (1 x 2500 units vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 172236 158861000036108 Feiba-NF 2500 U (1 x 2500 units vial, 1 x 50 mL inert diluent vial), 1 pack 645541000168109 Feiba-NF (inert substance) diluent, 50 mL vial 58561000168109 Feiba-NF 2500 U 43101000168106 Feiba-NF 158871000036100 factor VIII inhibitor bypassing fraction 2500 units injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +975851000168108 Amoxiclav 2000/200 (Juno) powder for injection, 2.2 g vial 269158 975841000168106 Amoxiclav 2000/200 (Juno) powder for injection, 2.2 g vial 975821000168100 Amoxiclav 2000/200 (Juno) powder for injection, 2.2 g vial 975801000168109 Amoxiclav 2000/200 (Juno) 975801000168109 Amoxiclav 2000/200 (Juno) 975831000168102 amoxicillin 2 g + clavulanic acid 200 mg injection, 2.2 g vial 975811000168107 amoxicillin 2 g + clavulanic acid 200 mg injection, 2.2 g vial 21360011000036101 amoxicillin + clavulanic acid +83178011000036102 Gemcitabine (Ebewe) 200 mg powder for injection, 1 vial 151747 83124011000036105 Gemcitabine (Ebewe) 200 mg powder for injection, 1 vial 83070011000036105 Gemcitabine (Ebewe) 200 mg powder for injection, 200 mg vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +1085321000168109 Otrivin Junior 0.05% nasal spray, 10 mL, pump pack 142227 74285011000036104 Otrivin Junior 0.05% nasal spray, 10 mL 73825011000036100 Otrivin Junior 0.05% nasal spray 34841000168100 Otrivin Junior 34841000168100 Otrivin Junior 75406011000036102 xylometazoline hydrochloride 0.05% nasal spray, 10 mL 75044011000036109 xylometazoline hydrochloride 0.05% nasal spray 61748011000036102 xylometazoline +44387011000036105 Somac 40 mg enteric tablet, 14, bottle 69791 41848011000036108 Somac 40 mg enteric tablet, 14 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46654011000036106 pantoprazole 40 mg enteric tablet, 14 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +780051000168108 Fentanyl (Apo) 25 microgram/hour patch, 3, sachet 152574 780041000168106 Fentanyl (Apo) 25 microgram/hour patch, 3 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235781000036109 fentanyl 25 microgram/hour patch, 3 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +667711000168101 Xelabine 150 mg film-coated tablet, 60, blister pack 213042 667701000168104 Xelabine 150 mg film-coated tablet, 60 667661000168106 Xelabine 150 mg film-coated tablet 667481000168100 Xelabine 667481000168100 Xelabine 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1088291000168105 Lorstat 20 mg film-coated tablet, 30, bottle 181410 22381000036103 Lorstat 20 mg film-coated tablet, 30 20791000036101 Lorstat 20 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +33550011000036100 Quinapril (Apo) 10 mg film-coated tablet, 30, blister pack 133220 33288011000036101 Quinapril (Apo) 10 mg film-coated tablet, 30 33050011000036102 Quinapril (Apo) 10 mg film-coated tablet 17791000168102 Quinapril (Apo) 17791000168102 Quinapril (Apo) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +69420011000036102 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 425 g, jar 47538 67220011000036108 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 425 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71771011000036108 psyllium husk powder 578 mg/g powder for oral liquid, 425 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +20313011000036103 Zumenon 2 mg film-coated tablet, 56, blister pack 75888 13522011000036102 Zumenon 2 mg film-coated tablet, 56 6804011000036106 Zumenon 2 mg film-coated tablet 3030011000036101 Zumenon 3030011000036101 Zumenon 27785011000036105 estradiol 2 mg tablet, 56 23115011000036108 estradiol 2 mg tablet 21238011000036103 estradiol +849171000168102 Vzole 50 mg film-coated tablet, 10, blister pack 238239 849161000168108 Vzole 50 mg film-coated tablet, 10 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46811011000036106 voriconazole 50 mg tablet, 10 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +1088231000168106 Difflam Lozenge Strawberry Sugar Free lozenge, 24, blister pack 280581 1088221000168108 Difflam Lozenge Strawberry Sugar Free lozenge, 24 1088061000168105 Difflam Lozenge Strawberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995731000168103 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +110921000036102 Ostevit-D Children's Drops 5 microgram (200 units)/0.04 mL oral liquid solution, 15 mL, bottle 183801 109191000036105 Ostevit-D Children's Drops 5 microgram (200 units)/0.04 mL oral liquid solution, 15 mL 106971000036103 Ostevit-D Children's Drops 5 microgram (200 units)/0.04 mL oral liquid solution, 0.04 mL 54271000168107 Ostevit-D Children's Drops 54271000168107 Ostevit-D Children's Drops 109201000036107 colecalciferol 5 microgram (200 units)/0.04 mL oral liquid, 15 mL 106981000036101 colecalciferol 5 microgram (200 units)/0.04 mL oral liquid 77447011000036108 colecalciferol +73257011000036101 Xyvion 2.5 mg uncoated tablet, 28, blister pack 132518 73057011000036108 Xyvion 2.5 mg uncoated tablet, 28 72968011000036100 Xyvion 2.5 mg uncoated tablet 72915011000036107 Xyvion 72915011000036107 Xyvion 46483011000036104 tibolone 2.5 mg tablet, 28 45180011000036108 tibolone 2.5 mg tablet 44915011000036106 tibolone +165581000036100 Fluvax 2014 injection suspension, 10 x 0.5 mL syringes 117397 163641000036109 Fluvax 2014 injection suspension, 10 x 0.5 mL syringes 162551000036100 Fluvax 2014 injection suspension, 0.5 mL syringe 23961000168107 Fluvax 2014 23961000168107 Fluvax 2014 163651000036107 influenza trivalent adult vaccine 2014 injection, 10 x 0.5 mL syringes 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +37436011000036103 Xylocaine 1% (20 mg/2 mL) injection solution, 10 x 2 mL ampoules 12013 36687011000036107 Xylocaine 1% (20 mg/2 mL) injection solution, 10 x 2 mL ampoules 36164011000036100 Xylocaine 1% (20 mg/2 mL) injection solution, 2 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 38600011000036101 lidocaine (lignocaine) hydrochloride 1% (20 mg/2 mL) injection, 10 x 2 mL ampoules 37870011000036109 lidocaine (lignocaine) hydrochloride 1% (20 mg/2 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +1016221000168105 Aripiprazole (GX) 5 mg uncoated tablet, 100, bottle 217201 1016211000168103 Aripiprazole (GX) 5 mg uncoated tablet, 100 1016201000168101 Aripiprazole (GX) 5 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +1019171000168108 Candesartan HCTZ 32/25 (Apotex) tablet, 30, blister pack 193115 1019161000168102 Candesartan HCTZ 32/25 (Apotex) tablet, 30 1019131000168105 Candesartan HCTZ 32/25 (Apotex) tablet 1019121000168107 Candesartan HCTZ 32/25 (Apotex) 1019121000168107 Candesartan HCTZ 32/25 (Apotex) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +43975011000036103 Oruvail SR 100 mg modified release capsule, 50, blister pack 42421 41467011000036109 Oruvail SR 100 mg modified release capsule, 50 39993011000036106 Oruvail SR 100 mg modified release capsule 10051000168105 Oruvail SR 10051000168105 Oruvail SR 46315011000036106 ketoprofen 100 mg modified release capsule, 50 45071011000036101 ketoprofen 100 mg modified release capsule 21856011000036108 ketoprofen +929641011000036100 Momex SR 10 mg modified release tablet, 28, blister pack 132253 929486011000036100 Momex SR 10 mg modified release tablet, 28 78628011000036102 Momex SR 10 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +19077011000036103 Egoderm ointment, 50 g, tube 42197 12385011000036105 Egoderm ointment, 50 g 5160011000036105 Egoderm ointment 4182011000036102 Egoderm 4182011000036102 Egoderm 27092011000036103 ichthammol 1% + zinc oxide 15% ointment, 50 g 22461011000036104 ichthammol 1% + zinc oxide 15% ointment 21657011000036100 ichthammol + zinc oxide +1096821000168107 Thrush One Dose plus Cream (Chemmart Pharmacy) (1 x Fluconazole (Chemmart) capsule, 1 x Clotrimazole (Chemmart) cream), 1 pack, composite pack 177905 1096811000168100 Thrush One Dose plus Cream (Chemmart Pharmacy) (1 x Fluconazole (Chemmart) capsule, 1 x Clotrimazole (Chemmart) cream), 1 pack 1096561000168104 Clotrimazole (Chemmart) 1% cream 1096751000168109 Thrush One Dose plus Cream (Chemmart Pharmacy) 1096491000168107 Clotrimazole (Chemmart) 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1096821000168107 Thrush One Dose plus Cream (Chemmart Pharmacy) (1 x Fluconazole (Chemmart) capsule, 1 x Clotrimazole (Chemmart) cream), 1 pack, composite pack 177905 1096811000168100 Thrush One Dose plus Cream (Chemmart Pharmacy) (1 x Fluconazole (Chemmart) capsule, 1 x Clotrimazole (Chemmart) cream), 1 pack 1096621000168108 Fluconazole (Chemmart) 150 mg hard capsule 1096751000168109 Thrush One Dose plus Cream (Chemmart Pharmacy) 1096611000168101 Fluconazole (Chemmart) 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +933069011000036104 Lodam SR 150 mg modified release tablet, 20, blister pack 154391 932866011000036101 Lodam SR 150 mg modified release tablet, 20 932727011000036105 Lodam SR 150 mg modified release tablet 16851000168100 Lodam SR 16851000168100 Lodam SR 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +52199011000036106 Clarithromycin (Apo) 250 mg film-coated tablet, 28, bottle 134865 52087011000036108 Clarithromycin (Apo) 250 mg film-coated tablet, 28 51983011000036107 Clarithromycin (Apo) 250 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 51517011000036109 clarithromycin 250 mg tablet, 28 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +44522011000036102 Cefotaxime (Hospira) 500 mg powder for injection, 1 vial 78701 41975011000036105 Cefotaxime (Hospira) 500 mg powder for injection, 1 vial 40298011000036100 Cefotaxime (Hospira) 500 mg powder for injection, 500 mg vial 39599011000036101 Cefotaxime (Hospira) 39599011000036101 Cefotaxime (Hospira) 46754011000036102 cefotaxime 500 mg injection, 1 vial 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +110881000036109 Citalo 20 mg film-coated tablet, 56, bottle 158874 930676011000036107 Citalo 20 mg film-coated tablet, 56 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +813131000168108 Nuromol film-coated tablet, 10, blister pack 225322 813121000168105 Nuromol film-coated tablet, 10 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813111000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 10 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +970141000168105 Lypralin 300 mg hard capsule, 84, blister pack 235879 970131000168101 Lypralin 300 mg hard capsule, 84 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970121000168104 pregabalin 300 mg capsule, 84 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +44764011000036103 Repreve 250 microgram film-coated tablet, 2, blister pack 96866 42209011000036100 Repreve 250 microgram film-coated tablet, 2 40391011000036101 Repreve 250 microgram film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 46969011000036101 ropinirole 250 microgram tablet, 2 45364011000036108 ropinirole 250 microgram tablet 44882011000036106 ropinirole +61492011000036102 Cold and Cough Elixir (Pharmacist) oral liquid solution, 50 mL, bottle 92445 57417011000036100 Cold and Cough Elixir (Pharmacist) oral liquid solution, 50 mL 54297011000036108 Cold and Cough Elixir (Pharmacist) oral liquid solution, 5 mL 41961000168105 Cold and Cough Elixir (Pharmacist) 41961000168105 Cold and Cough Elixir (Pharmacist) 63871011000036102 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 50 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +947081000168104 Risdone 3 mg film-coated tablet, 20, blister pack 144281 947071000168102 Risdone 3 mg film-coated tablet, 20 946971000168101 Risdone 3 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 81626011000036109 risperidone 3 mg tablet, 20 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +933240131000036103 Dobutamine (Sandoz) 250 mg/20 mL concentrated injection, 10 x 20 mL ampoules 82994 933237311000036106 Dobutamine (Sandoz) 250 mg/20 mL concentrated injection, 10 x 20 mL ampoules 933234911000036103 Dobutamine (Sandoz) 250 mg/20 mL concentrated injection, 20 mL ampoule 933234301000036101 Dobutamine (Sandoz) 933234301000036101 Dobutamine (Sandoz) 933237321000036104 dobutamine 250 mg/20 mL injection, 10 x 20 mL ampoules 933234921000036105 dobutamine 250 mg/20 mL injection, ampoule 37709011000036107 dobutamine +61066011000036105 Travacalm HO 300 microgram uncoated tablet, 2, strip pack 68450 57009011000036103 Travacalm HO 300 microgram uncoated tablet, 2 54158011000036103 Travacalm HO 300 microgram uncoated tablet 53382011000036101 Travacalm HO 53382011000036101 Travacalm HO 63812011000036102 hyoscine hydrobromide trihydrate 300 microgram tablet, 2 62084011000036103 hyoscine hydrobromide trihydrate 300 microgram tablet 61734011000036108 hyoscine hydrobromide trihydrate +920784011000036101 Cefotaxime (DBL) 2 g powder for injection, 10 vials 78703 920463011000036107 Cefotaxime (DBL) 2 g powder for injection, 10 vials 920197011000036101 Cefotaxime (DBL) 2 g powder for injection, 2 g vial 920087011000036105 Cefotaxime (DBL) 920087011000036105 Cefotaxime (DBL) 33815011000036103 cefotaxime 2 g injection, 10 vials 33683011000036109 cefotaxime 2 g injection, vial 21327011000036105 cefotaxime +61518011000036106 Pepzan Relief 20 mg film-coated tablet, 10, blister pack 93495 57443011000036102 Pepzan Relief 20 mg film-coated tablet, 10 54305011000036107 Pepzan Relief 20 mg film-coated tablet 6341000168109 Pepzan Relief 6341000168109 Pepzan Relief 63860011000036100 famotidine 20 mg tablet, 10 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +1108381000168106 Midavel 5 mg/mL injection solution, 5 x 1 mL ampoules 207242 1108371000168108 Midavel 5 mg/mL injection solution, 5 x 1 mL ampoules 1108311000168100 Midavel 5 mg/mL injection solution, ampoule 1108021000168109 Midavel 1108021000168109 Midavel 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +977311000168108 Aripiprazole (AN) 5 mg uncoated tablet, 28, blister pack 198188 977301000168105 Aripiprazole (AN) 5 mg uncoated tablet, 28 977291000168109 Aripiprazole (AN) 5 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 46872011000036106 aripiprazole 5 mg tablet, 28 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +20345011000036106 Salbutamol (Terry White Chemists) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 76224 13554011000036107 Salbutamol (Terry White Chemists) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6836011000036106 Salbutamol (Terry White Chemists) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 3642011000036105 Salbutamol (Terry White Chemists) 3642011000036105 Salbutamol (Terry White Chemists) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +1001851000168109 Amlodipine/Atorvastatin 10/80 (Apotex) film-coated tablet, 30, blister pack 214348 1001841000168107 Amlodipine/Atorvastatin 10/80 (Apotex) film-coated tablet, 30 1001831000168103 Amlodipine/Atorvastatin 10/80 (Apotex) film-coated tablet 1001821000168101 Amlodipine/Atorvastatin 10/80 (Apotex) 1001821000168101 Amlodipine/Atorvastatin 10/80 (Apotex) 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +808841000168100 Perindopril Arginine/Amlodipine 10/10 (Apo) uncoated tablet, 30, bottle 224300 808831000168109 Perindopril Arginine/Amlodipine 10/10 (Apo) uncoated tablet, 30 808821000168106 Perindopril Arginine/Amlodipine 10/10 (Apo) uncoated tablet 808811000168104 Perindopril Arginine/Amlodipine 10/10 (Apo) 808811000168104 Perindopril Arginine/Amlodipine 10/10 (Apo) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +24281000036104 Cadatin 10/20 film-coated tablet, 30, blister pack 179141 22761000036107 Cadatin 10/20 film-coated tablet, 30 20061000036106 Cadatin 10/20 film-coated tablet 34201000168101 Cadatin 10/20 34201000168101 Cadatin 10/20 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +1045061000168105 Pryzex 2.5 mg film-coated tablet, 40, blister pack 178975 1045051000168108 Pryzex 2.5 mg film-coated tablet, 40 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1045041000168106 olanzapine 2.5 mg tablet, 40 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +43554011000036109 Sutent 25 mg capsule, 30, bottle 123146 41287011000036107 Sutent 25 mg capsule, 30 39938011000036109 Sutent 25 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46222011000036104 sunitinib 25 mg capsule, 30 45035011000036101 sunitinib 25 mg capsule 44859011000036109 sunitinib +959911000168100 Azacitidine (Apo) 100 mg powder for injection, 1 vial 231496 959901000168103 Azacitidine (Apo) 100 mg powder for injection, 1 vial 959891000168102 Azacitidine (Apo) 100 mg powder for injection, 100 mg vial 959881000168100 Azacitidine (Apo) 959881000168100 Azacitidine (Apo) 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +933231701000036100 Strepsils Dry Cough 5 mg lozenge, 8, blister pack 69834 933226361000036107 Strepsils Dry Cough 5 mg lozenge, 8 933221091000036107 Strepsils Dry Cough 5 mg lozenge 53599011000036108 Strepsils Dry Cough 53599011000036108 Strepsils Dry Cough 933226371000036104 dextromethorphan hydrobromide monohydrate 5 mg lozenge, 8 933221101000036103 dextromethorphan hydrobromide monohydrate 5 mg lozenge 61744011000036109 dextromethorphan +785821000168100 Oxycodone (Sandoz) 80 mg modified release tablet, 28, bottle 153616 676291000168108 Oxycodone (Sandoz) 80 mg modified release tablet, 28 676281000168105 Oxycodone (Sandoz) 80 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +931771011000036102 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 200 mL, bottle 90104 930931011000036100 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 200 mL 930128011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 5 mL 929892011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 929892011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +43796011000036106 Zydol SR 50 mg modified release tablet, 20, blister pack 121849 41266011000036107 Zydol SR 50 mg modified release tablet, 20 39868011000036107 Zydol SR 50 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 26740011000036107 tramadol hydrochloride 50 mg modified release tablet, 20 22133011000036107 tramadol hydrochloride 50 mg modified release tablet 21486011000036105 tramadol +43932011000036108 Amoxycillin (Apo) 250 mg hard capsule, 20, blister pack 208147 41424011000036105 Amoxycillin (Apo) 250 mg hard capsule, 20 39818011000036106 Amoxycillin (Apo) 250 mg hard capsule 39598011000036109 Amoxycillin (Apo) 39598011000036109 Amoxycillin (Apo) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +43932011000036108 Amoxycillin (Apo) 250 mg hard capsule, 20, blister pack 142491 41424011000036105 Amoxycillin (Apo) 250 mg hard capsule, 20 39818011000036106 Amoxycillin (Apo) 250 mg hard capsule 39598011000036109 Amoxycillin (Apo) 39598011000036109 Amoxycillin (Apo) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +21203011000036104 Predsone 1 mg uncoated tablet, 100, bottle 99792 14341011000036107 Predsone 1 mg uncoated tablet, 100 7625011000036109 Predsone 1 mg uncoated tablet 3648011000036108 Predsone 3648011000036108 Predsone 28331011000036106 prednisone 1 mg tablet, 100 23643011000036101 prednisone 1 mg tablet 21496011000036106 prednisone +925153011000036105 Nicabate Soft Gum Mint 4 mg chewing gum, 96, blister pack 117060 924690011000036100 Nicabate Soft Gum Mint 4 mg chewing gum, 96 924414011000036107 Nicabate Soft Gum Mint 4 mg chewing gum 6191000168103 Nicabate Soft Gum Mint 6191000168103 Nicabate Soft Gum Mint 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +18066011000036108 Karvezide 300/25 film-coated tablet, 30, blister pack 129442 11876011000036106 Karvezide 300/25 film-coated tablet, 30 4828011000036104 Karvezide 300/25 film-coated tablet 38921000168108 Karvezide 300/25 38921000168108 Karvezide 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +673471000168101 Ultibro Breezhaler 110/50 powder for inhalation, 3 x 30 capsules, blister packs 206449 673461000168107 Ultibro Breezhaler 110/50 powder for inhalation, 3 x 30 capsules 672701000168109 Ultibro Breezhaler 110/50 powder for inhalation, capsule 672621000168107 Ultibro Breezhaler 110/50 672621000168107 Ultibro Breezhaler 110/50 673451000168105 indacaterol 110 microgram + glycopyrronium 50 microgram powder for inhalation, 3 x 30 capsules 672681000168106 indacaterol 110 microgram + glycopyrronium 50 microgram powder for inhalation, capsule 672661000168102 indacaterol + glycopyrronium +975941000168102 Amoxiclav 2000/200 (Juno) powder for injection, 20 x 2.2 g vials 269158 975931000168106 Amoxiclav 2000/200 (Juno) powder for injection, 20 x 2.2 g vials 975821000168100 Amoxiclav 2000/200 (Juno) powder for injection, 2.2 g vial 975801000168109 Amoxiclav 2000/200 (Juno) 975801000168109 Amoxiclav 2000/200 (Juno) 975921000168108 amoxicillin 2 g + clavulanic acid 200 mg injection, 20 x 2.2 g vials 975811000168107 amoxicillin 2 g + clavulanic acid 200 mg injection, 2.2 g vial 21360011000036101 amoxicillin + clavulanic acid +60524011000036103 Demazin PE Cold and Flu Relief uncoated tablet, 24, blister pack 152024 56482011000036100 Demazin PE Cold and Flu Relief uncoated tablet, 24 53937011000036101 Demazin PE Cold and Flu Relief uncoated tablet 37041000168102 Demazin PE Cold and Flu Relief 37041000168102 Demazin PE Cold and Flu Relief 63380011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +60766011000036103 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 200 mL, bottle 54130 56724011000036108 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 200 mL 54050011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 63626011000036104 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 200 mL 62032011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61715011000036104 bromhexine + pseudoephedrine +43690011000036104 Sutent 25 mg capsule, 28, bottle 123146 41286011000036109 Sutent 25 mg capsule, 28 39938011000036109 Sutent 25 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46221011000036105 sunitinib 25 mg capsule, 28 45035011000036101 sunitinib 25 mg capsule 44859011000036109 sunitinib +928944011000036100 Topiramate (Generic Health) 25 mg film-coated tablet, 60, bottle 155195 928305011000036103 Topiramate (Generic Health) 25 mg film-coated tablet, 60 927934011000036105 Topiramate (Generic Health) 25 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +68697011000036105 Difflam 3% cream, 30 g, tube 10545 66506011000036107 Difflam 3% cream, 30 g 65480011000036103 Difflam 3% cream 15911000168103 Difflam 15911000168103 Difflam 71238011000036107 benzydamine hydrochloride 3% cream, 30 g 69914011000036101 benzydamine hydrochloride 3% cream 21819011000036105 benzydamine +742481000168100 Pemetrexed (DRLA) 500 mg powder for injection, 1 vial 209348 742471000168103 Pemetrexed (DRLA) 500 mg powder for injection, 1 vial 742461000168109 Pemetrexed (DRLA) 500 mg powder for injection, 500 mg vial 742451000168107 Pemetrexed (DRLA) 742451000168107 Pemetrexed (DRLA) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +802981000168102 Abilify ODT 30 mg orally disintegrating tablet, 60, blister pack 128904 802971000168100 Abilify ODT 30 mg orally disintegrating tablet, 60 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802961000168106 aripiprazole 30 mg orally disintegrating tablet, 60 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +86073011000036106 Ezovir 500 mg film-coated tablet, 56, blister pack 157787 85727011000036103 Ezovir 500 mg film-coated tablet, 56 85362011000036105 Ezovir 500 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +50641011000036105 Lamotrigine (GA) 50 mg tablet, 56, blister pack 143572 49667011000036103 Lamotrigine (GA) 50 mg tablet, 56 48808011000036109 Lamotrigine (GA) 50 mg tablet 48414011000036105 Lamotrigine (GA) 48414011000036105 Lamotrigine (GA) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1011791000168106 Riluzole (Apotex) 50 mg film-coated tablet, 56, blister pack 168092 1011781000168108 Riluzole (Apotex) 50 mg film-coated tablet, 56 1011771000168105 Riluzole (Apotex) 50 mg film-coated tablet 1011761000168104 Riluzole (Apotex) 1011761000168104 Riluzole (Apotex) 27912011000036108 riluzole 50 mg tablet, 56 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +986131000168108 Canesten HC cream, 15 g, tube 251752 986121000168105 Canesten HC cream, 15 g 986111000168103 Canesten HC cream 981841000168102 Canesten HC 981841000168102 Canesten HC 751341000168105 hydrocortisone 1% + clotrimazole 1% cream, 15 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +821711000168106 Valsartan HCTZ 160/25 (Apo) film-coated tablet, 28, blister pack 222295 821701000168108 Valsartan HCTZ 160/25 (Apo) film-coated tablet, 28 821691000168108 Valsartan HCTZ 160/25 (Apo) film-coated tablet 821681000168105 Valsartan HCTZ 160/25 (Apo) 821681000168105 Valsartan HCTZ 160/25 (Apo) 46963011000036104 valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 45360011000036103 valsartan 160 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +923838011000036102 Prochlorperazine Maleate (Apo) 5 mg tablet, 56, blister pack 158416 923384011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet, 56 923050011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet 4811000168107 Prochlorperazine Maleate (Apo) 4811000168107 Prochlorperazine Maleate (Apo) 924174011000036101 prochlorperazine maleate 5 mg tablet, 56 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +20071011000036109 Clavulin Duo Forte 875/125 film-coated tablet, 10, blister pack 70547 13301011000036101 Clavulin Duo Forte 875/125 film-coated tablet, 10 6585011000036105 Clavulin Duo Forte 875/125 film-coated tablet 61091000168105 Clavulin Duo Forte 875/125 61091000168105 Clavulin Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1085261000168108 Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations, pump pack 77112 41969011000036104 Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations 40295011000036106 Nasonex Aqueous 50 microgram/actuation nasal spray, actuation 3481000168101 Nasonex Aqueous 3481000168101 Nasonex Aqueous 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +156921000036109 Enalapril Maleate (Apo) 10 mg tablet, 30, blister pack 196466 155951000036106 Enalapril Maleate (Apo) 10 mg tablet, 30 154701000036109 Enalapril Maleate (Apo) 10 mg tablet 154461000036100 Enalapril Maleate (Apo) 154461000036100 Enalapril Maleate (Apo) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +1068001000168106 Codral Multi Action uncoated tablet, 24, blister pack 170441 1067991000168102 Codral Multi Action uncoated tablet, 24 1067931000168101 Codral Multi Action uncoated tablet 1067901000168108 Codral Multi Action 1067901000168108 Codral Multi Action 1067981000168100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet, 24 1067921000168104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet 1067911000168106 paracetamol + codeine + phenylephrine + chlorphenamine +83175011000036108 Fluvax Junior 2010 injection suspension, 10 x 0.25 mL syringes 149127 83122011000036101 Fluvax Junior 2010 injection suspension, 10 x 0.25 mL syringes 83068011000036104 Fluvax Junior 2010 injection suspension, 0.25 mL syringe 8931000168100 Fluvax Junior 2010 8931000168100 Fluvax Junior 2010 83207011000036107 influenza trivalent child vaccine 2010 injection, 10 x 0.25 mL syringes 83200011000036106 influenza trivalent child vaccine 2010 injection, 0.25 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +78998011000036106 Janumet 50/1000 film-coated tablet, 56, blister pack 149023 78845011000036103 Janumet 50/1000 film-coated tablet, 56 78652011000036101 Janumet 50/1000 film-coated tablet 50451000168109 Janumet 50/1000 50451000168109 Janumet 50/1000 79236011000036103 sitagliptin 50 mg + metformin hydrochloride 1 g tablet, 56 79112011000036108 sitagliptin 50 mg + metformin hydrochloride 1 g tablet 79094011000036105 sitagliptin + metformin +808921000168103 Pramipexole XR (GP) 3.75 mg modified release tablet, 10, blister pack 225599 808911000168105 Pramipexole XR (GP) 3.75 mg modified release tablet, 10 808901000168107 Pramipexole XR (GP) 3.75 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 756411000168107 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet, 10 933220641000036103 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet 37716011000036100 pramipexole +915321000168101 Certican 250 microgram dispersible tablet, 100, blister pack 97527 915311000168108 Certican 250 microgram dispersible tablet, 100 915231000168105 Certican 250 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915301000168105 everolimus 250 microgram dispersible tablet, 100 915221000168107 everolimus 250 microgram dispersible tablet 21615011000036103 everolimus +837701000168100 Boostrix injection suspension, 10 x 0.5 mL syringes 158363 837691000168100 Boostrix injection suspension, 10 x 0.5 mL syringes 837641000168108 Boostrix injection suspension, 0.5 mL syringe 73699011000036103 Boostrix 73699011000036103 Boostrix 837681000168103 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 10 x 0.5 mL syringes 837631000168104 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +837701000168100 Boostrix injection suspension, 10 x 0.5 mL syringes 75230 837691000168100 Boostrix injection suspension, 10 x 0.5 mL syringes 837641000168108 Boostrix injection suspension, 0.5 mL syringe 73699011000036103 Boostrix 73699011000036103 Boostrix 837681000168103 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 10 x 0.5 mL syringes 837631000168104 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +39111000036100 Nurofen for Children 5 to 12 Years orange 200 mg/5 mL oral liquid suspension, 200 mL, bottle 167734 35501000036107 Nurofen for Children 5 to 12 Years orange 200 mg/5 mL oral liquid suspension, 200 mL 32661000036104 Nurofen for Children 5 to 12 Years orange 200 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 35511000036109 ibuprofen 200 mg/5 mL oral liquid, 200 mL 32671000036107 ibuprofen 200 mg/5 mL oral liquid 21885011000036105 ibuprofen +131341000036106 Remifentanil (DBL) 2 mg powder for injection, 5 vials 195554 128401000036106 Remifentanil (DBL) 2 mg powder for injection, 5 vials 124931000036103 Remifentanil (DBL) 2 mg powder for injection, 2 mg vial 123771000036102 Remifentanil (DBL) 123771000036102 Remifentanil (DBL) 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +165511000036108 Docomega containing 200 mg docosahexaenoic acid powder for oral liquid, 30 x 4 g sachets 163581000036101 Docomega containing 200 mg docosahexaenoic acid powder for oral liquid, 30 x 4 g sachets 535671000168109 Docomega containing 200 mg docosahexaenoic acid powder for oral liquid, 4 g sachet 161941000036104 Docomega 161941000036104 Docomega 163591000036104 docosahexaenoic acid with carbohydrate containing 200 mg docosahexaenoic acid powder for oral liquid, 30 x 4 g sachets 535381000168101 docosahexaenoic acid with carbohydrate containing 200 mg docosahexaenoic acid powder for oral liquid, 4 g sachet 166331000036103 docosahexaenoic acid with carbohydrate +33564011000036102 Quinapril (Pharmacor) 5 mg film-coated tablet, 30, blister pack 144084 33302011000036105 Quinapril (Pharmacor) 5 mg film-coated tablet, 30 33064011000036104 Quinapril (Pharmacor) 5 mg film-coated tablet 32961011000036100 Quinapril (Pharmacor) 32961011000036100 Quinapril (Pharmacor) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +981741000168108 Levetiracetam (Apotex) 750 mg film-coated tablet, 60, blister pack 156315 981731000168104 Levetiracetam (Apotex) 750 mg film-coated tablet, 60 981721000168102 Levetiracetam (Apotex) 750 mg film-coated tablet 981711000168109 Levetiracetam (Apotex) 981711000168109 Levetiracetam (Apotex) 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +44718011000036109 Chirocaine 125 mg/200 mL injection solution, 32 x 200 mL bags 94481 42163011000036100 Chirocaine 125 mg/200 mL injection solution, 32 x 200 mL bags 40372011000036102 Chirocaine 125 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46924011000036109 levobupivacaine 125 mg/200 mL injection, 32 x 200 mL bags 45347011000036109 levobupivacaine 125 mg/200 mL injection, bag 44881011000036100 levobupivacaine +959951000168104 Stilnoxium CR 6.25 mg modified release tablet, 2, blister pack 120711 959941000168101 Stilnoxium CR 6.25 mg modified release tablet, 2 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46178011000036103 zolpidem tartrate 6.25 mg modified release tablet, 2 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +69725011000036104 Aerius 5 mg film-coated tablet, 30, blister pack 91116 67524011000036109 Aerius 5 mg film-coated tablet, 30 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72026011000036101 desloratadine 5 mg tablet, 30 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +44505011000036101 Lasix 40 mg/4 mL injection solution, 5 x 4 mL ampoules 76767 41960011000036105 Lasix 40 mg/4 mL injection solution, 5 x 4 mL ampoules 40288011000036101 Lasix 40 mg/4 mL injection solution, 4 mL ampoule 26171000168109 Lasix 26171000168109 Lasix 46741011000036103 furosemide (frusemide) 40 mg/4 mL injection, 5 x 4 mL ampoules 45293011000036103 furosemide (frusemide) 40 mg/4 mL injection, ampoule 21329011000036103 furosemide (frusemide) +933214561000036104 Levetiracetam (MPPL) 500 mg film-coated tablet, 60, blister pack 161286 933203921000036100 Levetiracetam (MPPL) 500 mg film-coated tablet, 60 933195951000036107 Levetiracetam (MPPL) 500 mg film-coated tablet 933193681000036106 Levetiracetam (MPPL) 933193681000036106 Levetiracetam (MPPL) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +739741000168106 Eltroxin 125 microgram tablet, 200, bottle 206974 739731000168102 Eltroxin 125 microgram tablet, 200 739711000168107 Eltroxin 125 microgram tablet 739521000168108 Eltroxin 739521000168108 Eltroxin 739721000168100 levothyroxine sodium 125 microgram tablet, 200 739701000168109 levothyroxine sodium 125 microgram tablet 21577011000036109 levothyroxine +998881000168101 Perindopril Arginine (Apotex) 10 mg film-coated tablet, 100, blister pack 184817 998871000168104 Perindopril Arginine (Apotex) 10 mg film-coated tablet, 100 998821000168100 Perindopril Arginine (Apotex) 10 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 806941000168108 perindopril arginine 10 mg tablet, 100 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +39151000036101 Exatrust 25 mg film-coated tablet, 30, blister pack 167857 35551000036108 Exatrust 25 mg film-coated tablet, 30 32481000036107 Exatrust 25 mg film-coated tablet 32291000036108 Exatrust 32291000036108 Exatrust 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +24371000036107 Torlemo DT 50 mg tablet, 56, blister pack 150764 22301000036109 Torlemo DT 50 mg tablet, 56 20751000036105 Torlemo DT 50 mg tablet 19101000168100 Torlemo DT 19101000168100 Torlemo DT 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +60432011000036101 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 7 sachets 146071 56391011000036101 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 7 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63336011000036107 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 7 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +77212011000036103 Trandolapril (Generic Health) 1 mg hard capsule, 28, blister pack 135966 76628011000036105 Trandolapril (Generic Health) 1 mg hard capsule, 28 76073011000036105 Trandolapril (Generic Health) 1 mg hard capsule 76010011000036105 Trandolapril (Generic Health) 76010011000036105 Trandolapril (Generic Health) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +1121491000168101 Sequase XR 50 mg modified release tablet, 60, blister pack 212503 1121481000168104 Sequase XR 50 mg modified release tablet, 60 1121471000168102 Sequase XR 50 mg modified release tablet 1121431000168100 Sequase XR 1121431000168100 Sequase XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +926708011000036100 Acid and Heartburn Relief (Chemmart) 150 mg film-coated tablet, 28, strip pack 116347 926101011000036101 Acid and Heartburn Relief (Chemmart) 150 mg film-coated tablet, 28 925599011000036107 Acid and Heartburn Relief (Chemmart) 150 mg film-coated tablet 925571011000036101 Acid and Heartburn Relief (Chemmart) 925571011000036101 Acid and Heartburn Relief (Chemmart) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +52712011000036105 Paracetamol Extra Plus (Guardian) uncoated tablet, 50, blister pack 114674 52523011000036108 Paracetamol Extra Plus (Guardian) uncoated tablet, 50 52403011000036109 Paracetamol Extra Plus (Guardian) uncoated tablet 52380011000036108 Paracetamol Extra Plus (Guardian) 52380011000036108 Paracetamol Extra Plus (Guardian) 52868011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 50 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +650311000168107 Neocate Spoon powder for oral liquid, 400 g, can 650301000168109 Neocate Spoon powder for oral liquid, 400 g 650281000168105 Neocate Spoon powder for oral liquid 650251000168103 Neocate Spoon 650251000168103 Neocate Spoon 650291000168108 amino acid formula with vitamins and minerals powder for oral liquid, 400 g 650271000168107 amino acid formula with vitamins and minerals powder for oral liquid 650261000168101 amino acid formula with vitamins and minerals +1050861000168107 Bupredermal 5 microgram/hour patch, 1, sachet 234741 1050851000168105 Bupredermal 5 microgram/hour patch, 1 1050841000168108 Bupredermal 5 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1046451000168108 buprenorphine 5 microgram/hour patch, 1 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +671871000168103 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 25, blister pack 196492 671861000168109 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 25 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +39383011000036101 Tryzan 1.25 mg uncoated tablet, 21, blister pack 129873 39267011000036101 Tryzan 1.25 mg uncoated tablet, 21 39208011000036104 Tryzan 1.25 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39468011000036101 ramipril 1.25 mg tablet, 21 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +61400011000036103 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet, 24, blister pack 82119 57325011000036105 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet, 24 54275011000036109 Paracetamol (Soul Pattinson) capsule shaped 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +777721000168109 Karvea 150 mg film-coated tablet, 98, blister pack 101706 777711000168102 Karvea 150 mg film-coated tablet, 98 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777701000168100 irbesartan 150 mg tablet, 98 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +61193011000036105 Bugesic 200 mg film-coated tablet, 100, blister pack 75376 57129011000036103 Bugesic 200 mg film-coated tablet, 100 54211011000036101 Bugesic 200 mg film-coated tablet 53403011000036104 Bugesic 53403011000036104 Bugesic 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +739101000168105 Bisolvon Dry 10.5 mg pastille, 20, blister pack 191459 739091000168100 Bisolvon Dry 10.5 mg pastille, 20 739071000168101 Bisolvon Dry 10.5 mg pastille 53355011000036100 Bisolvon Dry 53355011000036100 Bisolvon Dry 739081000168103 dextromethorphan hydrobromide monohydrate 10.5 mg pastille, 20 739061000168107 dextromethorphan hydrobromide monohydrate 10.5 mg pastille 61744011000036109 dextromethorphan +882411000168104 Spedra 100 mg uncoated tablet, 4, blister pack 228475 882401000168102 Spedra 100 mg uncoated tablet, 4 882321000168101 Spedra 100 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882391000168104 avanafil 100 mg tablet, 4 882311000168108 avanafil 100 mg tablet 882091000168102 avanafil +880241000168100 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet, 50, blister pack 215369 880231000168109 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet, 50 880201000168102 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +871701000168109 Gastrolyte Blackcurrant effervescent tablet, 20, sachet 52677 871691000168109 Gastrolyte Blackcurrant effervescent tablet, 20 871681000168106 Gastrolyte Blackcurrant effervescent tablet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +110691000036105 Octagam 10% 2 g/20 mL injection solution, 20 mL vial 155601 108861000036103 Octagam 10% 2 g/20 mL injection solution, 20 mL vial 107001000036106 Octagam 10% 2 g/20 mL injection solution, 20 mL vial 17661000168101 Octagam 10% 17661000168101 Octagam 10% 108871000036106 normal immunoglobulin 2 g/20 mL injection, 20 mL vial 107021000036101 normal immunoglobulin 2 g/20 mL injection, vial 74965011000036103 normal immunoglobulin +906181000168108 Amisulpride (AN) 100 mg uncoated tablet, 60, blister pack 234715 906171000168105 Amisulpride (AN) 100 mg uncoated tablet, 60 906141000168103 Amisulpride (AN) 100 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +985491000168106 Advil Mini Caps 200 mg sugar coated tablet, 50, blister pack 104222 985481000168108 Advil Mini Caps 200 mg sugar coated tablet, 50 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60475011000036106 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 11 sachets 150168 56433011000036104 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 11 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63353011000036102 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 11 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +18444011000036102 Lamitrin 100 mg tablet, 56, blister pack 114266 11470011000036102 Lamitrin 100 mg tablet, 56 5161011000036103 Lamitrin 100 mg tablet 4282011000036100 Lamitrin 4282011000036100 Lamitrin 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +788151000168105 Arizole 15 mg uncoated tablet, 60, blister pack 198204 788141000168108 Arizole 15 mg uncoated tablet, 60 787501000168101 Arizole 15 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 788131000168104 aripiprazole 15 mg tablet, 60 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +689871000168106 Nemdyn Otic ear ointment, 10 g, tube 14837 689861000168100 Nemdyn Otic ear ointment, 10 g 689841000168104 Nemdyn Otic ear ointment 46191000168107 Nemdyn Otic 46191000168107 Nemdyn Otic 689851000168102 neomycin 0.35% + bacitracin zinc 400 units/g ear ointment, 10 g 689831000168108 neomycin 0.35% + bacitracin zinc 400 units/g ear ointment 21692011000036105 neomycin + bacitracin zinc +86082011000036108 Fexal 180 mg film-coated tablet, 30, blister pack 140285 85631011000036103 Fexal 180 mg film-coated tablet, 30 85305011000036103 Fexal 180 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +60233011000036109 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution, 200 mL, bottle 133576 56192011000036100 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution, 200 mL 4803011000036102 Pholcodine Linctus (Gold Cross) 1 mg/mL oral liquid solution 3692011000036104 Pholcodine Linctus (Gold Cross) 3692011000036104 Pholcodine Linctus (Gold Cross) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +110651000036101 Finasteride (Pharmacor) 5 mg film-coated tablet, 30, blister pack 155235 108811000036100 Finasteride (Pharmacor) 5 mg film-coated tablet, 30 107031000036104 Finasteride (Pharmacor) 5 mg film-coated tablet 106471000036109 Finasteride (Pharmacor) 106471000036109 Finasteride (Pharmacor) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +933231221000036101 Oxaliplatin (Sun) 100 mg/20 mL concentrated injection, 20 mL vial 173348 933225291000036103 Oxaliplatin (Sun) 100 mg/20 mL concentrated injection, 20 mL vial 933220511000036103 Oxaliplatin (Sun) 100 mg/20 mL concentrated injection, 20 mL vial 933219361000036108 Oxaliplatin (Sun) 933219361000036108 Oxaliplatin (Sun) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +17795011000036105 Fibsol 20 mg uncoated tablet, 30, blister pack 101318 11190011000036108 Fibsol 20 mg uncoated tablet, 30 5618011000036105 Fibsol 20 mg uncoated tablet 4290011000036103 Fibsol 4290011000036103 Fibsol 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +45941000036102 Ramipril (Chemmart) 2.5 mg capsule, 30, blister pack 179016 43221000036104 Ramipril (Chemmart) 2.5 mg capsule, 30 41251000036106 Ramipril (Chemmart) 2.5 mg capsule 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +78995011000036100 Janumet 50/500 film-coated tablet, 14, blister pack 149014 78840011000036107 Janumet 50/500 film-coated tablet, 14 78650011000036100 Janumet 50/500 film-coated tablet 29661000168103 Janumet 50/500 29661000168103 Janumet 50/500 79231011000036108 sitagliptin 50 mg + metformin hydrochloride 500 mg tablet, 14 79110011000036109 sitagliptin 50 mg + metformin hydrochloride 500 mg tablet 79094011000036105 sitagliptin + metformin +73751000036101 Polytar shampoo, 300 mL, bottle 14826 71441000036106 Polytar shampoo, 300 mL 69771000036103 Polytar shampoo 3205011000036106 Polytar 3205011000036106 Polytar 71451000036109 arachis oil extract of coal tar 0.3% + cade oil 0.3% + coal tar solution 0.1% + tar 0.3% shampoo, 300 mL 69781000036101 arachis oil extract of coal tar 0.3% + cade oil 0.3% + coal tar solution 0.1% + tar 0.3% shampoo 74641000036106 arachis oil extract of coal tar + cade oil + coal tar solution + tar +20091011000036102 Avandia 8 mg film-coated tablet, 28, blister pack 70966 13318011000036108 Avandia 8 mg film-coated tablet, 28 6604011000036103 Avandia 8 mg film-coated tablet 3736011000036100 Avandia 3736011000036100 Avandia 27688011000036105 rosiglitazone 8 mg tablet, 28 23025011000036106 rosiglitazone 8 mg tablet 21349011000036100 rosiglitazone +933213921000036102 Levetiracetam (SCP) 500 mg film-coated tablet, 60, blister pack 159254 933203371000036100 Levetiracetam (SCP) 500 mg film-coated tablet, 60 933195491000036107 Levetiracetam (SCP) 500 mg film-coated tablet 933193431000036105 Levetiracetam (SCP) 933193431000036105 Levetiracetam (SCP) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +777321000168105 Karvea 75 mg film-coated tablet, 98, blister pack 101702 777311000168103 Karvea 75 mg film-coated tablet, 98 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777301000168101 irbesartan 75 mg tablet, 98 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +933103011000036105 Lamictal 25 mg tablet, 42, blister pack 51548 932910011000036107 Lamictal 25 mg tablet, 42 932763011000036109 Lamictal 25 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46986011000036107 lamotrigine 25 mg tablet, 42 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +872021000168108 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 29599 872011000168101 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 871991000168101 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 872001000168104 glucose monohydrate 5% (25 g/500 mL) injection, 500 mL bag 871981000168104 glucose monohydrate 5% (25 g/500 mL) injection, bag 21354011000036103 glucose +908031000168105 Celecoxib (LAPL) 100 mg hard capsule, 120, blister pack 196179 908021000168107 Celecoxib (LAPL) 100 mg hard capsule, 120 907731000168106 Celecoxib (LAPL) 100 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 907561000168105 celecoxib 100 mg capsule, 120 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1120121000168102 Tiapine XR 50 mg modified release tablet, 60, blister pack 199884 1120111000168109 Tiapine XR 50 mg modified release tablet, 60 1120101000168106 Tiapine XR 50 mg modified release tablet 1119801000168104 Tiapine XR 1119801000168104 Tiapine XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +822311000168103 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 58571 822301000168101 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 630841000168102 Stamaril (inert substance) diluent, 0.5 mL syringe 73768011000036101 Stamaril 73768011000036101 Stamaril 822291000168102 yellow fever live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +822311000168103 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 58571 822301000168101 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 822201000168108 Stamaril (yellow fever live vaccine) powder for injection, vial 73768011000036101 Stamaril 73768011000036101 Stamaril 822291000168102 yellow fever live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 822191000168105 yellow fever live vaccine injection, vial 822181000168107 yellow fever live vaccine +81173011000036103 Chesty Cough Medicine (Nyal) oral liquid solution, 100 mL, bottle 66942 80675011000036106 Chesty Cough Medicine (Nyal) oral liquid solution, 100 mL 80236011000036100 Chesty Cough Medicine (Nyal) oral liquid solution, 10 mL 80143011000036105 Chesty Cough Medicine (Nyal) 80143011000036105 Chesty Cough Medicine (Nyal) 81730011000036100 guaifenesin 200 mg/10 mL + glucose liquid 6 g/10 mL + treacle 2.7 g/10 mL oral liquid, 100 mL 81304011000036101 guaifenesin 200 mg/10 mL + glucose liquid 6 g/10 mL + treacle 2.7 g/10 mL oral liquid 81219011000036107 guaifenesin + glucose + treacle +917011000168102 Carvedilol (SCP) 12.5 mg uncoated tablet, 60, blister pack 194263 917001000168100 Carvedilol (SCP) 12.5 mg uncoated tablet, 60 916991000168107 Carvedilol (SCP) 12.5 mg uncoated tablet 916891000168100 Carvedilol (SCP) 916891000168100 Carvedilol (SCP) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +835281000168109 Stop-It 2 mg hard capsule, 16, blister pack 199731 835271000168106 Stop-It 2 mg hard capsule, 16 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 835261000168100 loperamide hydrochloride 2 mg capsule, 16 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +44609011000036105 Riamet uncoated tablet, 24, blister pack 90011 42062011000036102 Riamet uncoated tablet, 24 40343011000036108 Riamet uncoated tablet 39595011000036103 Riamet 39595011000036103 Riamet 46829011000036100 artemether 20 mg + lumefantrine 120 mg tablet, 24 45329011000036100 artemether 20 mg + lumefantrine 120 mg tablet 44970011000036105 artemether + lumefantrine +18135011000036100 Risperdal Quicklet 2 mg orally disintegrating tablet, 28, blister pack 115461 11493011000036101 Risperdal Quicklet 2 mg orally disintegrating tablet, 28 4848011000036102 Risperdal Quicklet 2 mg orally disintegrating tablet 10371000168103 Risperdal Quicklet 10371000168103 Risperdal Quicklet 47651000036103 risperidone 2 mg orally disintegrating tablet, 28 47611000036102 risperidone 2 mg orally disintegrating tablet 21338011000036109 risperidone +32596011000036103 Intron A (HSA-free) 25 million units/2.5 mL injection solution, 2.5 mL vial 60024 32391011000036105 Intron A (HSA-free) 25 million units/2.5 mL injection solution, 2.5 mL vial 6222011000036103 Intron A (HSA-free) 25 million units/2.5 mL injection solution, 2.5 mL vial 27831000168103 Intron A 27831000168103 Intron A 32790011000036102 interferon alfa-2b 25 million units/2.5 mL injection, 2.5 mL vial 22794011000036108 interferon alfa-2b 25 million units/2.5 mL injection, vial 21525011000036103 interferon alfa-2b +60835011000036101 Congested Cough Medicine (Soul Pattinson) oral liquid solution, 100 mL, bottle 58499 56791011000036102 Congested Cough Medicine (Soul Pattinson) oral liquid solution, 100 mL 54082011000036104 Congested Cough Medicine (Soul Pattinson) oral liquid solution, 10 mL 60981000168103 Congested Cough Medicine (Soul Pattinson) 60981000168103 Congested Cough Medicine (Soul Pattinson) 63800011000036104 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62082011000036107 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +84298011000036107 Cold and Flu Day and Night PE (Chemists' Own) (18 x Day tablets, 6 x Night tablets), 24, blister pack 151332 83991011000036102 Cold and Flu Day and Night PE (Chemists' Own) (18 x Day tablets, 6 x Night tablets), 24 83626011000036101 Cold and Flu Day and Night PE (Day) (Chemists' Own) uncoated tablet 44771000168103 Cold and Flu Day and Night PE (Chemists' Own) 44891000168107 Cold and Flu Day and Night PE (Day) (Chemists' Own) 84635011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +84298011000036107 Cold and Flu Day and Night PE (Chemists' Own) (18 x Day tablets, 6 x Night tablets), 24, blister pack 151332 83991011000036102 Cold and Flu Day and Night PE (Chemists' Own) (18 x Day tablets, 6 x Night tablets), 24 83627011000036103 Cold and Flu Day and Night PE (Night) (Chemists' Own) uncoated tablet 44771000168103 Cold and Flu Day and Night PE (Chemists' Own) 45011000168109 Cold and Flu Day and Night PE (Night) (Chemists' Own) 84635011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +788471000168106 Cortiment 9 mg modified release tablet, 20, blister pack 225849 788461000168100 Cortiment 9 mg modified release tablet, 20 788411000168103 Cortiment 9 mg modified release tablet 788391000168103 Cortiment 788391000168103 Cortiment 788451000168102 budesonide 9 mg modified release tablet, 20 788401000168101 budesonide 9 mg modified release tablet 21307011000036104 budesonide +998401000168106 Desloratadine (Apo) 5 mg film-coated tablet, 30, bottle 202822 998271000168100 Desloratadine (Apo) 5 mg film-coated tablet, 30 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72026011000036101 desloratadine 5 mg tablet, 30 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1085901000168101 Monofer 500 mg/5 mL injection solution, 5 x 5 mL vials 290833 1085891000168100 Monofer 500 mg/5 mL injection solution, 5 x 5 mL vials 1085811000168109 Monofer 500 mg/5 mL injection solution, 5 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1085881000168103 iron (as ferric derisomaltose) 500 mg/5 mL injection, 5 x 5 mL vials 1085801000168106 iron (as ferric derisomaltose) 500 mg/5 mL injection, vial 1085791000168105 ferric derisomaltose +1079781000168101 Carvedilol (Auro) 12.5 mg film-coated tablet, 30, bottle 174803 737771000168107 Carvedilol (Auro) 12.5 mg film-coated tablet, 30 737761000168101 Carvedilol (Auro) 12.5 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 81578011000036101 carvedilol 12.5 mg tablet, 30 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +963841000168104 Danzetron 4 mg film-coated tablet, 10, blister pack 107049 963831000168108 Danzetron 4 mg film-coated tablet, 10 963801000168101 Danzetron 4 mg film-coated tablet 957881000168109 Danzetron 957881000168109 Danzetron 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +61435011000036101 Imodium Melt 2 mg orally disintegrating tablet, 8, blister pack 83176 57360011000036109 Imodium Melt 2 mg orally disintegrating tablet, 8 54283011000036103 Imodium Melt 2 mg orally disintegrating tablet 7341000168106 Imodium Melt 7341000168106 Imodium Melt 47761000036106 loperamide hydrochloride 2 mg orally disintegrating tablet, 8 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +142231000036101 Xyntha 500 IU (1 x 500 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174838 141651000036104 Xyntha 500 IU (1 x 500 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 141411000036101 Xyntha 500 IU (moroctocog alfa 500 units) powder for injection, 500 units syringe 9291000168100 Xyntha 500 IU 9291000168100 Xyntha 500 IU 141661000036101 moroctocog alfa 500 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 141421000036108 moroctocog alfa 500 units injection, syringe 44868011000036107 moroctocog alfa +142231000036101 Xyntha 500 IU (1 x 500 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174838 141651000036104 Xyntha 500 IU (1 x 500 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 9291000168100 Xyntha 500 IU 83556011000036108 Xyntha 141661000036101 moroctocog alfa 500 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +740951000168103 Fentora 800 microgram orally disintegrating tablet, 28, blister pack 218436 740941000168100 Fentora 800 microgram orally disintegrating tablet, 28 740891000168101 Fentora 800 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740931000168109 fentanyl 800 microgram orally disintegrating tablet, 28 740881000168104 fentanyl 800 microgram orally disintegrating tablet 21258011000036102 fentanyl +59721011000036100 Junior Cough and Cold Elixir (Amcal) oral liquid solution, 100 mL, bottle 109021 55741011000036106 Junior Cough and Cold Elixir (Amcal) oral liquid solution, 100 mL 53681011000036104 Junior Cough and Cold Elixir (Amcal) oral liquid solution, 10 mL 61261000168105 Junior Cough and Cold Elixir (Amcal) 61261000168105 Junior Cough and Cold Elixir (Amcal) 63551011000036101 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62013011000036102 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61761011000036102 chlorphenamine + dextromethorphan + pseudoephedrine +1120441000168104 Xque XR 300 mg modified release tablet, 30, blister pack 226815 1120431000168108 Xque XR 300 mg modified release tablet, 30 1120401000168101 Xque XR 300 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 795801000168108 quetiapine 300 mg modified release tablet, 30 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +1122311000168108 Influvac Tetra 2018 without Needle injection suspension, 10 x 0.5 mL syringes 281035 1122301000168105 Influvac Tetra 2018 without Needle injection suspension, 10 x 0.5 mL syringes 1122261000168102 Influvac Tetra 2018 without Needle injection suspension, 0.5 mL syringe 1120931000168101 Influvac Tetra 2018 1120931000168101 Influvac Tetra 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +43770011000036101 Fluconazole (Hexal) 150 mg hard capsule, 1, bottle 104292 41135011000036105 Fluconazole (Hexal) 150 mg hard capsule, 1 39858011000036101 Fluconazole (Hexal) 150 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1111441000168104 Quetiapine (DP) 300 mg film-coated tablet, 20, blister pack 202271 1111431000168108 Quetiapine (DP) 300 mg film-coated tablet, 20 1111421000168105 Quetiapine (DP) 300 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +933239881000036102 Meloxicam (Terry White Chemists) 15 mg hard capsule, 30, blister pack 181205 933237201000036102 Meloxicam (Terry White Chemists) 15 mg hard capsule, 30 933234831000036102 Meloxicam (Terry White Chemists) 15 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +822351000168102 Glybosay 100 mg tablet, 90, blister pack 226791 822341000168104 Glybosay 100 mg tablet, 90 822331000168108 Glybosay 100 mg tablet 822321000168105 Glybosay 822321000168105 Glybosay 27111011000036104 acarbose 100 mg tablet, 90 22479011000036108 acarbose 100 mg tablet 21888011000036104 acarbose +50572011000036107 Durotram XR (once a day) 300 mg modified release tablet, 20, blister pack 134823 49606011000036100 Durotram XR (once a day) 300 mg modified release tablet, 20 48788011000036108 Durotram XR (once a day) 300 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51509011000036104 tramadol hydrochloride 300 mg modified release tablet, 20 50988011000036106 tramadol hydrochloride 300 mg modified release tablet 21486011000036105 tramadol +981101000168107 Lovenox 100 mg/mL injection solution, 2 x 1 mL syringes 80269 981091000168102 Lovenox 100 mg/mL injection solution, 2 x 1 mL syringes 981061000168109 Lovenox 100 mg/mL injection solution, syringe 112571000036109 Lovenox 112571000036109 Lovenox 823721000168103 enoxaparin sodium 100 mg/mL injection, 2 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +916691000168104 Carvedilol (CH) 3.125 mg uncoated tablet, 30, blister pack 194256 916681000168102 Carvedilol (CH) 3.125 mg uncoated tablet, 30 916671000168100 Carvedilol (CH) 3.125 mg uncoated tablet 916661000168106 Carvedilol (CH) 916661000168106 Carvedilol (CH) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +1068641000168101 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 24, blister pack 194227 1068631000168105 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 24 88451000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +60156011000036100 Pevaryl 1% cream, 5 g, tube 12996 56115011000036107 Pevaryl 1% cream, 5 g 53794011000036108 Pevaryl 1% cream 8501000168104 Pevaryl 8501000168104 Pevaryl 63222011000036101 econazole nitrate 1% cream, 5 g 61893011000036101 econazole nitrate 1% cream 37773011000036103 econazole +959631000168100 Ranitidine (WT) 300 mg film-coated tablet, 30, blister pack 82325 959621000168103 Ranitidine (WT) 300 mg film-coated tablet, 30 959551000168105 Ranitidine (WT) 300 mg film-coated tablet 959541000168108 Ranitidine (WT) 959541000168108 Ranitidine (WT) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +933090011000036108 Escitalopram (Generic Health) 20 mg film-coated tablet, 30, bottle 165879 932893011000036109 Escitalopram (Generic Health) 20 mg film-coated tablet, 30 932750011000036108 Escitalopram (Generic Health) 20 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +931616011000036105 Pravista 40 mg film-coated tablet, 100, bottle 163562 930777011000036103 Pravista 40 mg film-coated tablet, 100 930042011000036102 Pravista 40 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +45781000036108 Simvastatin (DRLA) 80 mg film-coated tablet, 30, blister pack 194758 43791000036106 Simvastatin (DRLA) 80 mg film-coated tablet, 30 41181000036106 Simvastatin (DRLA) 80 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +50546011000036107 Revlimid 25 mg hard capsule, 21, blister pack 132516 49583011000036102 Revlimid 25 mg hard capsule, 21 48782011000036105 Revlimid 25 mg hard capsule 48335011000036106 Revlimid 48335011000036106 Revlimid 51490011000036100 lenalidomide 25 mg capsule, 21 50986011000036107 lenalidomide 25 mg capsule 50719011000036107 lenalidomide +921846011000036107 Adrenaline (AstraZeneca) 1 in 1000 (1 mg/mL) injection solution, 50 x 1 mL ampoules 12048 921386011000036102 Adrenaline (AstraZeneca) 1 in 1000 (1 mg/mL) injection solution, 50 x 1 mL ampoules 5524011000036103 Adrenaline (AstraZeneca) 1 in 1000 (1 mg/mL) injection solution, ampoule 4357011000036103 Adrenaline (AstraZeneca) 4357011000036103 Adrenaline (AstraZeneca) 63243011000036106 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, 50 x 1 mL ampoules 22115011000036100 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +131431000036109 Candesartan Cilexetil HCT 16/12.5 (Stada) uncoated tablet, 30, bottle 196396 128691000036101 Candesartan Cilexetil HCT 16/12.5 (Stada) uncoated tablet, 30 125611000036102 Candesartan Cilexetil HCT 16/12.5 (Stada) uncoated tablet 27101000168102 Candesartan Cilexetil HCT 16/12.5 (Stada) 27101000168102 Candesartan Cilexetil HCT 16/12.5 (Stada) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +24851000036107 Ranmoxy 125 mg/5 mL powder for oral liquid, 100 mL, bottle 137884 22141000036105 Ranmoxy 125 mg/5 mL powder for oral liquid, 100 mL 20771000036100 Ranmoxy 125 mg/5 mL powder for oral liquid, 5 mL 32199011000036101 Ranmoxy 32199011000036101 Ranmoxy 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +60133011000036107 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 24, blister pack 127745 56092011000036106 Naproxen Sodium (Priceline) 275 mg film-coated tablet, 24 53786011000036101 Naproxen Sodium (Priceline) 275 mg film-coated tablet 53286011000036107 Naproxen Sodium (Priceline) 53286011000036107 Naproxen Sodium (Priceline) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +933239971000036108 Simvacor 20 mg film-coated tablet, 100, bottle 182911 933236461000036101 Simvacor 20 mg film-coated tablet, 100 933234861000036108 Simvacor 20 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46246011000036103 simvastatin 20 mg tablet, 100 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1019511000168107 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 98, blister pack 175215 1019501000168109 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 98 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019491000168102 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 98 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +55141000036102 Anticol Max 2.5 mg lozenge, 36, blister pack 142196 51271000036103 Anticol Max 2.5 mg lozenge, 36 49031000036109 Anticol Max 2.5 mg lozenge 48161000036106 Anticol Max 48161000036106 Anticol Max 51281000036101 hexylresorcinol 2.5 mg lozenge, 36 49041000036104 hexylresorcinol 2.5 mg lozenge 69854011000036100 hexylresorcinol +929680011000036100 Vexazone 30 mg uncoated tablet, 50, blister pack 164344 929516011000036108 Vexazone 30 mg uncoated tablet, 50 929405011000036108 Vexazone 30 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929263011000036107 pioglitazone 30 mg tablet, 50 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +1002491000168108 Rivastigmine (Apo) 4.5 mg hard capsule, 112, blister pack 160567 1002481000168105 Rivastigmine (Apo) 4.5 mg hard capsule, 112 1002211000168100 Rivastigmine (Apo) 4.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002471000168107 rivastigmine 4.5 mg capsule, 112 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +843961000168108 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 7, bottle 218077 843831000168109 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 7 843821000168106 Desvenlafaxine (Sandoz) 50 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +923885011000036103 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 28, blister pack 163770 923429011000036100 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 28 923079011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +21048011000036109 Cephalexin (GenRx) 500 mg hard capsule, 20, blister pack 133852 14193011000036107 Cephalexin (GenRx) 500 mg hard capsule, 20 7474011000036106 Cephalexin (GenRx) 500 mg hard capsule 3342011000036104 Cephalexin (GenRx) 3342011000036104 Cephalexin (GenRx) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +21048011000036109 Cephalexin (GenRx) 500 mg hard capsule, 20, blister pack 96881 14193011000036107 Cephalexin (GenRx) 500 mg hard capsule, 20 7474011000036106 Cephalexin (GenRx) 500 mg hard capsule 3342011000036104 Cephalexin (GenRx) 3342011000036104 Cephalexin (GenRx) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +704741000168102 Hequinel 200 mg tablet, 100, bottle 223696 704731000168106 Hequinel 200 mg tablet, 100 704721000168108 Hequinel 200 mg tablet 704711000168101 Hequinel 704711000168101 Hequinel 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +959591000168100 Ranitidine (WT) 300 mg film-coated tablet, 14, blister pack 82325 959581000168103 Ranitidine (WT) 300 mg film-coated tablet, 14 959551000168105 Ranitidine (WT) 300 mg film-coated tablet 959541000168108 Ranitidine (WT) 959541000168108 Ranitidine (WT) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +110561000036102 Midazolam (Alphapharm) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 160206 109141000036104 Midazolam (Alphapharm) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 107131000036100 Midazolam (Alphapharm) 5 mg/5 mL injection solution, 5 mL ampoule 106461000036101 Midazolam (Alphapharm) 106461000036101 Midazolam (Alphapharm) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +91231000036106 Exemestane (GA) 25 mg film-coated tablet, 30, blister pack 167857 89561000036102 Exemestane (GA) 25 mg film-coated tablet, 30 88001000036104 Exemestane (GA) 25 mg film-coated tablet 87811000036107 Exemestane (GA) 87811000036107 Exemestane (GA) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +21151011000036109 Erbitux 100 mg/50 mL injection solution, 50 mL vial 98668 14293011000036105 Erbitux 100 mg/50 mL injection solution, 50 mL vial 7579011000036102 Erbitux 100 mg/50 mL injection solution, 50 mL vial 4257011000036109 Erbitux 4257011000036109 Erbitux 28284011000036108 cetuximab 100 mg/50 mL injection, 50 mL vial 23598011000036108 cetuximab 100 mg/50 mL injection, vial 21547011000036105 cetuximab +39271000036103 Lipitor 80 mg film-coated tablet, 10, blister pack 168344 35741000036100 Lipitor 80 mg film-coated tablet, 10 6896011000036101 Lipitor 80 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +176911000036100 Tramadol Hydrochloride (Act) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 202840 175121000036100 Tramadol Hydrochloride (Act) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 173301000036106 Tramadol Hydrochloride (Act) 100 mg/2 mL injection solution, 2 mL ampoule 35271000168107 Tramadol Hydrochloride (Act) 35271000168107 Tramadol Hydrochloride (Act) 27537011000036109 tramadol hydrochloride 100 mg/2 mL injection, 5 x 2 mL ampoules 22877011000036109 tramadol hydrochloride 100 mg/2 mL injection, ampoule 21486011000036105 tramadol +1103081000168100 Duoresp Spiromax 400/12 powder for inhalation, 3 x 60 actuations, dry powder inhalers 267386 1103071000168103 Duoresp Spiromax 400/12 powder for inhalation, 3 x 60 actuations 1103011000168106 Duoresp Spiromax 400/12 powder for inhalation, actuation 1103001000168108 Duoresp Spiromax 400/12 1103001000168108 Duoresp Spiromax 400/12 1103061000168109 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, 3 x 60 actuations 33685011000036105 budesonide 400 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 12 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +19455011000036103 Zerit 30 mg hard capsule, 60, bottle 54300 12732011000036107 Zerit 30 mg hard capsule, 60 6027011000036105 Zerit 30 mg hard capsule 4053011000036106 Zerit 4053011000036106 Zerit 27319011000036106 stavudine 30 mg capsule, 60 22672011000036101 stavudine 30 mg capsule 21314011000036107 stavudine +18737011000036100 Methotrexate (DBL) 2.5 mg uncoated tablet, 30, bottle 16287 12099011000036107 Methotrexate (DBL) 2.5 mg uncoated tablet, 30 5279011000036109 Methotrexate (DBL) 2.5 mg uncoated tablet 3375011000036108 Methotrexate (DBL) 3375011000036108 Methotrexate (DBL) 26910011000036108 methotrexate 2.5 mg tablet, 30 22287011000036105 methotrexate 2.5 mg tablet 21342011000036105 methotrexate +1062381000168103 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 12, blister pack 196533 1062371000168101 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 12 1062341000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +110601000036102 Risedronate (Apo) 35 mg film-coated tablet, 12, bottle 160644 928387011000036109 Risedronate (Apo) 35 mg film-coated tablet, 12 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +972561000168102 Lyzalon 25 mg hard capsule, 20, blister pack 224435 972221000168109 Lyzalon 25 mg hard capsule, 20 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +11941000036109 Olanzapine (Generic Health) 5 mg tablet, 28, blister pack 152167 6661000036108 Olanzapine (Generic Health) 5 mg tablet, 28 3251000036100 Olanzapine (Generic Health) 5 mg tablet 711000168100 Olanzapine (Generic Health) 711000168100 Olanzapine (Generic Health) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +942511000168104 Kefzol 500 mg powder for injection, 1 vial 14648 942501000168102 Kefzol 500 mg powder for injection, 1 vial 942481000168106 Kefzol 500 mg powder for injection, 500 mg vial 4076011000036103 Kefzol 4076011000036103 Kefzol 942491000168109 cefazolin 500 mg injection, 1 vial 32930011000036101 cefazolin 500 mg injection, vial 21621011000036107 cefazolin +933231381000036105 Dexmethsone 8 mg/2 mL injection solution, 5 x 2 mL vials 163199 933225541000036107 Dexmethsone 8 mg/2 mL injection solution, 5 x 2 mL vials 933220081000036101 Dexmethsone 8 mg/2 mL injection solution, 2 mL vial 2956011000036100 Dexmethsone 2956011000036100 Dexmethsone 26923011000036109 dexamethasone phosphate 8 mg/2 mL injection, 5 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +811801000168108 Dobutamine (Claris) 250 mg/20 mL concentrated injection, 5 x 20 mL ampoules 212837 811791000168107 Dobutamine (Claris) 250 mg/20 mL concentrated injection, 5 x 20 mL ampoules 811771000168106 Dobutamine (Claris) 250 mg/20 mL concentrated injection, 20 mL ampoule 811761000168100 Dobutamine (Claris) 811761000168100 Dobutamine (Claris) 811781000168109 dobutamine 250 mg/20 mL injection, 5 x 20 mL ampoules 933234921000036105 dobutamine 250 mg/20 mL injection, ampoule 37709011000036107 dobutamine +779731000168100 Bupradex 400 microgram sublingual tablet, 7, blister pack 152475 779721000168103 Bupradex 400 microgram sublingual tablet, 7 779711000168105 Bupradex 400 microgram sublingual tablet 779151000168107 Bupradex 779151000168107 Bupradex 685871000168108 buprenorphine 400 microgram sublingual tablet, 7 685791000168104 buprenorphine 400 microgram sublingual tablet 21232011000036101 buprenorphine +933150011000036105 Elmendos 200 mg tablet, 56, blister pack 98084 932942011000036104 Elmendos 200 mg tablet, 56 932775011000036101 Elmendos 200 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +933150011000036105 Elmendos 200 mg tablet, 56, blister pack 98076 932942011000036104 Elmendos 200 mg tablet, 56 932775011000036101 Elmendos 200 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +45821000036104 Jevtana (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack, composite pack 175500 43121000036109 Jevtana (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack 637691000168105 Jevtana (inert substance) diluent, 4.5 mL vial 40141000036108 Jevtana 40141000036108 Jevtana 43131000036106 cabazitaxel 60 mg/1.5 mL injection [1.5 mL vial] (&) inert substance diluent [4.5 mL vial], 1 pack 637681000168107 inert substance diluent, 4.5 mL vial 21220011000036103 inert substance +45821000036104 Jevtana (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack, composite pack 175500 43121000036109 Jevtana (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack 41501000036108 Jevtana (cabazitaxel 60 mg/1.5 mL) concentrated injection, 1.5 mL vial 40141000036108 Jevtana 40141000036108 Jevtana 43131000036106 cabazitaxel 60 mg/1.5 mL injection [1.5 mL vial] (&) inert substance diluent [4.5 mL vial], 1 pack 41511000036105 cabazitaxel 60 mg/1.5 mL injection, vial 46261000036104 cabazitaxel +61124011000036103 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 120 mg/5 mL oral liquid solution, 200 mL, bottle 72389 57067011000036109 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 120 mg/5 mL oral liquid solution, 200 mL 54180011000036109 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 120 mg/5 mL oral liquid solution, 5 mL 31791000168101 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 31791000168101 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +33584011000036104 Glucagen Hypokit (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 47105 33322011000036103 Glucagen Hypokit (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 33083011000036103 Glucagen Hypokit (glucagon hydrochloride 1 mg) powder for injection, vial 36881000168102 Glucagen Hypokit 36881000168102 Glucagen Hypokit 33803011000036101 glucagon hydrochloride 1 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 33675011000036103 glucagon hydrochloride 1 mg injection, vial 33634011000036104 glucagon hydrochloride +33584011000036104 Glucagen Hypokit (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 47105 33322011000036103 Glucagen Hypokit (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 637171000168101 Glucagen Hypokit (inert substance) diluent, 1 mL syringe 36881000168102 Glucagen Hypokit 36881000168102 Glucagen Hypokit 33803011000036101 glucagon hydrochloride 1 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +69691011000036104 Paracetamol (Herron) vanilla 500 mg film-coated tablet, 24, blister pack 90127 67490011000036103 Paracetamol (Herron) vanilla 500 mg film-coated tablet, 24 65681011000036107 Paracetamol (Herron) vanilla 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69109011000036104 Strepsils eucalyptus and menthol lozenge, 36, blister pack 14973 66910011000036101 Strepsils eucalyptus and menthol lozenge, 36 65345011000036108 Strepsils eucalyptus and menthol lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71504011000036102 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge, 36 70040011000036109 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge 69851011000036103 amylmetacresol + dichlorobenzyl alcohol + menthol +928828011000036104 Finasteride (HX) 5 mg film-coated tablet, 30, blister pack 127410 928190011000036100 Finasteride (HX) 5 mg film-coated tablet, 30 927849011000036101 Finasteride (HX) 5 mg film-coated tablet 927818011000036101 Finasteride (HX) 927818011000036101 Finasteride (HX) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +933240041000036107 Simvacor 80 mg film-coated tablet, 180, bottle 182913 933236531000036108 Simvacor 80 mg film-coated tablet, 180 933234881000036103 Simvacor 80 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46251011000036106 simvastatin 80 mg tablet, 180 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +805311000168104 Aczicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 147840 805301000168102 Aczicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 805291000168103 Aczicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924130011000036108 epoetin lambda 8000 units/0.8 mL injection, 0.8 mL syringe 923955011000036104 epoetin lambda 8000 units/0.8 mL injection, syringe 923930011000036107 epoetin lambda +166061000036106 Temaccord 5 mg hard capsule, 20, sachet 206030 164251000036108 Temaccord 5 mg hard capsule, 20 162281000036105 Temaccord 5 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 164261000036106 temozolomide 5 mg capsule, 20 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +1011061000168102 Risedronate (Apotex) 75 mg film-coated tablet, 6, blister pack 181976 1011051000168104 Risedronate (Apotex) 75 mg film-coated tablet, 6 1011001000168103 Risedronate (Apotex) 75 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 801031000168109 risedronate sodium 75 mg tablet, 6 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +687541000168108 Gluneo diagnostic strip, 50, bottle 223366 687531000168104 Gluneo diagnostic strip, 50 687521000168102 Gluneo diagnostic strip 687511000168109 Gluneo 687511000168109 Gluneo 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1111761000168106 Midalim 50 mg/10 mL injection solution, 5 x 10 mL ampoules 207234 1111751000168109 Midalim 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1111711000168108 Midalim 50 mg/10 mL injection solution, 10 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +923872011000036102 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet, 14, blister pack 163764 923417011000036103 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet, 14 923076011000036104 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 924197011000036103 lercanidipine hydrochloride 20 mg tablet, 14 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +19285011000036106 Cilicaine V 125 mg/5 mL oral liquid suspension, 100 mL, bottle 48896 12575011000036101 Cilicaine V 125 mg/5 mL oral liquid suspension, 100 mL 4789011000036103 Cilicaine V 125 mg/5 mL oral liquid suspension, 5 mL 17711000168106 Cilicaine V 17711000168106 Cilicaine V 27211011000036101 phenoxymethylpenicillin 125 mg/5 mL oral liquid, 100 mL 22571011000036102 phenoxymethylpenicillin 125 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +39311000036103 Levi 500 mg film-coated tablet, 60, blister pack 168792 35771000036107 Levi 500 mg film-coated tablet, 60 32471000036105 Levi 500 mg film-coated tablet 56201000168107 Levi 56201000168107 Levi 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +83195011000036102 Fluvax 2010 injection suspension, 1 x 0.5 mL syringe 91583 83141011000036105 Fluvax 2010 injection suspension, 1 x 0.5 mL syringe 83082011000036100 Fluvax 2010 injection suspension, 0.5 mL syringe 16231000168105 Fluvax 2010 16231000168105 Fluvax 2010 83211011000036102 influenza trivalent adult vaccine 2010 injection, 1 x 0.5 mL syringe 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +83195011000036102 Fluvax 2010 injection suspension, 1 x 0.5 mL syringe 117397 83141011000036105 Fluvax 2010 injection suspension, 1 x 0.5 mL syringe 83082011000036100 Fluvax 2010 injection suspension, 0.5 mL syringe 16231000168105 Fluvax 2010 16231000168105 Fluvax 2010 83211011000036102 influenza trivalent adult vaccine 2010 injection, 1 x 0.5 mL syringe 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +176871000036102 Signifor 600 microgram/mL injection solution, 60 x 1 mL ampoules 201484 175051000036105 Signifor 600 microgram/mL injection solution, 60 x 1 mL ampoules 173691000036105 Signifor 600 microgram/mL injection solution, ampoule 172571000036103 Signifor 172571000036103 Signifor 175061000036108 pasireotide 600 microgram/mL injection, 60 x 1 mL ampoules 173701000036105 pasireotide 600 microgram/mL injection, ampoule 177231000036100 pasireotide +24921000036107 Lorstat 40 mg film-coated tablet, 30, blister pack 181405 22391000036101 Lorstat 40 mg film-coated tablet, 30 20781000036103 Lorstat 40 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +24921000036107 Lorstat 40 mg film-coated tablet, 30, blister pack 151298 22391000036101 Lorstat 40 mg film-coated tablet, 30 20781000036103 Lorstat 40 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +60550011000036107 Disprin Regular 300 mg dispersible tablet, 12, strip pack 15366 56508011000036105 Disprin Regular 300 mg dispersible tablet, 12 53946011000036100 Disprin Regular 300 mg dispersible tablet 17321000168103 Disprin Regular 17321000168103 Disprin Regular 83671000036108 aspirin 300 mg dispersible tablet, 12 83601000036104 aspirin 300 mg dispersible tablet 21719011000036107 aspirin +803301000168101 Abilify ODT 20 mg orally disintegrating tablet, 30, blister pack 128903 803291000168102 Abilify ODT 20 mg orally disintegrating tablet, 30 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803281000168100 aripiprazole 20 mg orally disintegrating tablet, 30 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +60953011000036109 Nicotinell Mint 4 mg chewing gum, 24, blister pack 62366 56896011000036109 Nicotinell Mint 4 mg chewing gum, 24 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60953011000036109 Nicotinell Mint 4 mg chewing gum, 24, blister pack 126044 56896011000036109 Nicotinell Mint 4 mg chewing gum, 24 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1088551000168103 Esmeron 25 mg/2.5 mL injection solution, 10 x 2.5 mL vials 80338 1088541000168100 Esmeron 25 mg/2.5 mL injection solution, 10 x 2.5 mL vials 1088521000168106 Esmeron 25 mg/2.5 mL injection solution, 2.5 mL vial 39588011000036108 Esmeron 39588011000036108 Esmeron 1088531000168109 rocuronium bromide 25 mg/2.5 mL injection, 10 x 2.5 mL vials 1088511000168104 rocuronium bromide 25 mg/2.5 mL injection, vial 44919011000036108 rocuronium +933231061000036103 Famciclovir (Chemmart) 500 mg film-coated tablet, 30, blister pack 172446 933225131000036108 Famciclovir (Chemmart) 500 mg film-coated tablet, 30 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1109431000168106 Cloap 75/100 uncoated tablet, 84, blister pack 219058 1109421000168108 Cloap 75/100 uncoated tablet, 84 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82554011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 84 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +994311000168106 Bortezomib (Apo) 3.5 mg powder for injection, 1 vial 215827 994301000168108 Bortezomib (Apo) 3.5 mg powder for injection, 1 vial 994291000168107 Bortezomib (Apo) 3.5 mg powder for injection, 3.5 mg vial 994281000168109 Bortezomib (Apo) 994281000168109 Bortezomib (Apo) 26598011000036101 bortezomib 3.5 mg injection, 1 vial 22006011000036104 bortezomib 3.5 mg injection, vial 21633011000036105 bortezomib +18812011000036107 Deralin 160 mg film-coated tablet, 50, bottle 17613 12133011000036108 Deralin 160 mg film-coated tablet, 50 5553011000036104 Deralin 160 mg film-coated tablet 3863011000036103 Deralin 3863011000036103 Deralin 26940011000036104 propranolol hydrochloride 160 mg tablet, 50 22316011000036100 propranolol hydrochloride 160 mg tablet 21392011000036104 propranolol +933239721000036106 Meloxicam (Apo) 15 mg hard capsule, 30, blister pack 181194 933237041000036109 Meloxicam (Apo) 15 mg hard capsule, 30 933234791000036105 Meloxicam (Apo) 15 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +921833011000036102 Naltrexone Hydrochloride (Generic Health) 50 mg film-coated tablet, 30, blister pack 128710 921393011000036107 Naltrexone Hydrochloride (Generic Health) 50 mg film-coated tablet, 30 920982011000036101 Naltrexone Hydrochloride (Generic Health) 50 mg film-coated tablet 920920011000036105 Naltrexone Hydrochloride (Generic Health) 920920011000036105 Naltrexone Hydrochloride (Generic Health) 27559011000036103 naltrexone hydrochloride 50 mg tablet, 30 22898011000036104 naltrexone hydrochloride 50 mg tablet 21848011000036105 naltrexone +685351000168108 Flovir 125 mg film-coated tablet, 40, blister pack 195177 685341000168106 Flovir 125 mg film-coated tablet, 40 685311000168107 Flovir 125 mg film-coated tablet 685301000168109 Flovir 685301000168109 Flovir 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +46141000036106 Atorvastatin (SCP) 10 mg film-coated tablet, 30, blister pack 180329 43421000036103 Atorvastatin (SCP) 10 mg film-coated tablet, 30 41131000036107 Atorvastatin (SCP) 10 mg film-coated tablet 40271000036109 Atorvastatin (SCP) 40271000036109 Atorvastatin (SCP) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +24761000036100 Volirop 12.5 mg film-coated tablet, 60, bottle 174800 22581000036105 Volirop 12.5 mg film-coated tablet, 60 20211000036101 Volirop 12.5 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +86879011000036108 Topiramate (GA) 25 mg film-coated tablet, 60, bottle 155217 86761011000036102 Topiramate (GA) 25 mg film-coated tablet, 60 86637011000036108 Topiramate (GA) 25 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +110371000036102 Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets 108551000036104 Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets 266091000168108 Citrulline 1000 containing 1 g citrulline powder for oral liquid, 4 g sachet 106531000036108 Citrulline 1000 106531000036108 Citrulline 1000 927734011000036100 citrulline with carbohydrate containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets 265931000168102 citrulline with carbohydrate containing 1 g citrulline powder for oral liquid, 4 g sachet 927711011000036107 citrulline with carbohydrate +69734011000036101 Resolve Itch Cleansing 1.6% gel, 100 g, tube 92662 67533011000036109 Resolve Itch Cleansing 1.6% gel, 100 g 65689011000036106 Resolve Itch Cleansing 1.6% gel 65058011000036104 Resolve Itch Cleansing 65058011000036104 Resolve Itch Cleansing 72034011000036106 tar 1.6% gel, 100 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +931732011000036105 Tixylix Chest Rub Essential Oils Children's 1Yr+ ointment, 50 g, tube 27821 930892011000036107 Tixylix Chest Rub Essential Oils Children's 1Yr+ ointment, 50 g 930096011000036107 Tixylix Chest Rub Essential Oils Children's 1Yr+ ointment 33771000168101 Tixylix Chest Rub Essential Oils Children's 1Yr+ 33771000168101 Tixylix Chest Rub Essential Oils Children's 1Yr+ 932473011000036105 cineole 5% + pine oil pumilio 1% + rosemary oil 1% + terpineol 0.5% + thyme oil 1% ointment, 50 g 931872011000036106 cineole 5% + pine oil pumilio 1% + rosemary oil 1% + terpineol 0.5% + thyme oil 1% ointment 931800011000036102 cineole + pine oil pumilio + rosemary oil + terpineol + thyme oil +44059011000036105 Xylocaine 2% (400 mg/20 mL) injection solution, 5 x 20 mL ampoules 48364 41546011000036105 Xylocaine 2% (400 mg/20 mL) injection solution, 5 x 20 mL ampoules 40053011000036105 Xylocaine 2% (400 mg/20 mL) injection solution, 20 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 46378011000036107 lidocaine (lignocaine) hydrochloride 2% (400 mg/20 mL) injection, 5 x 20 mL ampoules 45127011000036102 lidocaine (lignocaine) hydrochloride 2% (400 mg/20 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +24691000036104 Torvastat 40 mg film-coated tablet, 30, blister pack 194115 22441000036100 Torvastat 40 mg film-coated tablet, 30 20401000036104 Torvastat 40 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +24691000036104 Torvastat 40 mg film-coated tablet, 30, blister pack 167788 22441000036100 Torvastat 40 mg film-coated tablet, 30 20401000036104 Torvastat 40 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1061981000168109 Allevyn Life Non-Bordered (66801748) 10.5 cm x 10.5 cm dressing, 10, carton 92774 1061971000168106 Allevyn Life Non-Bordered (66801748) 10.5 cm x 10.5 cm dressing, 10 1061951000168102 Allevyn Life Non-Bordered (66801748) 10.5 cm x 10.5 cm dressing 1061931000168108 Allevyn Life Non-Bordered (66801748) 1061931000168108 Allevyn Life Non-Bordered (66801748) 1061961000168100 dressing foam with silicone 10.5 cm x 10.5 cm dressing, 10 1061941000168104 dressing foam with silicone 10.5 cm x 10.5 cm dressing 157031000036107 dressing foam with silicone +17844011000036102 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 12533 11798011000036101 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 5106011000036109 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 34231000168108 Ventolin Nebules 34231000168108 Ventolin Nebules 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +18478011000036108 Physeptone 10 mg/mL injection solution, 5 x 1 mL ampoules 10988 11397011000036103 Physeptone 10 mg/mL injection solution, 5 x 1 mL ampoules 5430011000036100 Physeptone 10 mg/mL injection solution, ampoule 3289011000036107 Physeptone 3289011000036107 Physeptone 26632011000036100 methadone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 22038011000036106 methadone hydrochloride 10 mg/mL injection, ampoule 21357011000036109 methadone +20082011000036107 Somac 20 mg enteric tablet, 30, bottle 70830 13310011000036106 Somac 20 mg enteric tablet, 30 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +110331000036104 Arginine500 containing 500 mg arginine powder for oral liquid, 30 x 4 g sachets 108531000036107 Arginine500 containing 500 mg arginine powder for oral liquid, 30 x 4 g sachets 314811000168107 Arginine500 containing 500 mg arginine powder for oral liquid, 4 g sachet 106501000036101 Arginine500 106501000036101 Arginine500 78119011000036101 arginine with carbohydrate containing 500 mg arginine powder for oral liquid, 30 x 4 g sachets 313031000168105 arginine with carbohydrate containing 500 mg arginine powder for oral liquid, 4 g sachet 77468011000036100 arginine with carbohydrate +52208011000036103 Fosetic 20/12.5 uncoated tablet, 30, blister pack 143587 52095011000036104 Fosetic 20/12.5 uncoated tablet, 30 51990011000036103 Fosetic 20/12.5 uncoated tablet 37491000168104 Fosetic 20/12.5 37491000168104 Fosetic 20/12.5 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +166151000036109 Temaccord 180 mg hard capsule, 5, sachet 206034 164391000036108 Temaccord 180 mg hard capsule, 5 162271000036108 Temaccord 180 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +931565011000036108 Cholpra 20 mg film-coated tablet, 30, bottle 163543 930726011000036102 Cholpra 20 mg film-coated tablet, 30 930029011000036109 Cholpra 20 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +20322011000036100 Tramal SR 200 mg modified release tablet, 20, blister pack 75949 13531011000036105 Tramal SR 200 mg modified release tablet, 20 6814011000036108 Tramal SR 200 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +1045381000168103 Amisulpride (Pharmacor) 400 mg uncoated tablet, 30, blister pack 234694 1045371000168101 Amisulpride (Pharmacor) 400 mg uncoated tablet, 30 1045361000168107 Amisulpride (Pharmacor) 400 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 901641000168102 amisulpride 400 mg tablet, 30 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +1085721000168108 Ridaura 3 mg capsule, 60, bottle 1085711000168101 Ridaura 3 mg capsule, 60 1085691000168104 Ridaura 3 mg capsule 4425011000036101 Ridaura 4425011000036101 Ridaura 1085701000168104 auranofin 3 mg capsule, 60 1085681000168102 auranofin 3 mg capsule 21797011000036101 auranofin +60559011000036101 Polaramine Repetab Colour Free 6 mg modified release tablet, 20, blister pack 154654 56517011000036107 Polaramine Repetab Colour Free 6 mg modified release tablet, 20 53949011000036109 Polaramine Repetab Colour Free 6 mg modified release tablet 34221000168105 Polaramine Repetab 34221000168105 Polaramine Repetab 63408011000036105 dexchlorpheniramine maleate 6 mg modified release tablet, 20 61947011000036108 dexchlorpheniramine maleate 6 mg modified release tablet 61749011000036105 dexchlorpheniramine +131751000036108 Candesartan Cilexetil Combi 16/12.5 (Aspen) uncoated tablet, 30, blister pack 204577 128721000036106 Candesartan Cilexetil Combi 16/12.5 (Aspen) uncoated tablet, 30 125501000036103 Candesartan Cilexetil Combi 16/12.5 (Aspen) uncoated tablet 32091000168108 Candesartan Cilexetil Combi 16/12.5 (Aspen) 32091000168108 Candesartan Cilexetil Combi 16/12.5 (Aspen) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +670181000168101 Amlodipine/Atorvastatin 10/10 (Apo) film-coated tablet, 30, blister pack 214409 670171000168104 Amlodipine/Atorvastatin 10/10 (Apo) film-coated tablet, 30 670161000168105 Amlodipine/Atorvastatin 10/10 (Apo) film-coated tablet 670151000168108 Amlodipine/Atorvastatin 10/10 (Apo) 670151000168108 Amlodipine/Atorvastatin 10/10 (Apo) 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +18720011000036104 Prexaton 150 mg modified release tablet, 30, blister pack 119661 11622011000036102 Prexaton 150 mg modified release tablet, 30 5100011000036106 Prexaton 150 mg modified release tablet 3293011000036108 Prexaton 3293011000036108 Prexaton 27771011000036100 bupropion hydrochloride 150 mg modified release tablet, 30 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +933239651000036105 Meloxicam (Apo) 7.5 mg hard capsule, 10, blister pack 181191 933236971000036103 Meloxicam (Apo) 7.5 mg hard capsule, 10 933234781000036108 Meloxicam (Apo) 7.5 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 52886011000036109 meloxicam 7.5 mg capsule, 10 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +176751000036103 Cadivast 5/20 film-coated tablet, 30, blister pack 199218 174941000036107 Cadivast 5/20 film-coated tablet, 30 172901000036101 Cadivast 5/20 film-coated tablet 17881000168109 Cadivast 5/20 17881000168109 Cadivast 5/20 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +18343011000036109 Minidiab 5 mg uncoated tablet, 100, blister pack 15421 12094011000036106 Minidiab 5 mg uncoated tablet, 100 5992011000036105 Minidiab 5 mg uncoated tablet 3366011000036106 Minidiab 3366011000036106 Minidiab 27152011000036101 glipizide 5 mg tablet, 100 22515011000036105 glipizide 5 mg tablet 21747011000036106 glipizide +46101000036108 Atorvastatin (Stada) 40 mg film-coated tablet, 30, blister pack 180319 43381000036108 Atorvastatin (Stada) 40 mg film-coated tablet, 30 41021000036106 Atorvastatin (Stada) 40 mg film-coated tablet 40251000036104 Atorvastatin (Stada) 40251000036104 Atorvastatin (Stada) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +931629011000036106 Kuvan 100 mg soluble tablet, 120, bottle 165738 930789011000036104 Kuvan 100 mg soluble tablet, 120 930045011000036105 Kuvan 100 mg soluble tablet 929907011000036101 Kuvan 929907011000036101 Kuvan 932412011000036109 sapropterin dihydrochloride 100 mg soluble tablet, 120 931854011000036100 sapropterin dihydrochloride 100 mg soluble tablet 931808011000036100 sapropterin +1122451000168103 Fluarix Tetra 2018 with Needle injection suspension, 10 x 0.5 mL syringes 210806 1122441000168100 Fluarix Tetra 2018 with Needle injection suspension, 10 x 0.5 mL syringes 1122411000168104 Fluarix Tetra 2018 with Needle injection suspension, 0.5 mL syringe 1122401000168102 Fluarix Tetra 2018 1122401000168102 Fluarix Tetra 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +20080011000036108 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8, sachet 131549 13308011000036105 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8 6592011000036101 Estalis Sequi 50/140 (estradiol 50 microgram/24 hours) patch 52061000168102 Estalis Sequi 50/140 52061000168102 Estalis Sequi 50/140 27681011000036101 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch [4], 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +20080011000036108 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8, sachet 70818 13308011000036105 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8 6592011000036101 Estalis Sequi 50/140 (estradiol 50 microgram/24 hours) patch 52061000168102 Estalis Sequi 50/140 52061000168102 Estalis Sequi 50/140 27681011000036101 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch [4], 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +20080011000036108 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8, sachet 131549 13308011000036105 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8 6593011000036108 Estalis Sequi 50/140 (estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours) patch 52061000168102 Estalis Sequi 50/140 52061000168102 Estalis Sequi 50/140 27681011000036101 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch [4], 8 23017011000036105 estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch 21228011000036101 estradiol + norethisterone acetate +20080011000036108 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8, sachet 70818 13308011000036105 Estalis Sequi 50/140 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/140 microgram/24 hours patches), 8 6593011000036108 Estalis Sequi 50/140 (estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours) patch 52061000168102 Estalis Sequi 50/140 52061000168102 Estalis Sequi 50/140 27681011000036101 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch [4], 8 23017011000036105 estradiol 50 microgram/24 hours + norethisterone acetate 140 microgram/24 hours patch 21228011000036101 estradiol + norethisterone acetate +925324011000036104 Xalox 100 mg powder for injection, 1 vial 165493 924860011000036108 Xalox 100 mg powder for injection, 1 vial 924532011000036102 Xalox 100 mg powder for injection, 100 mg vial 924389011000036101 Xalox 924389011000036101 Xalox 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +123301000036107 Tielle (MTL101E) 11 cm x 11 cm island dressing, 10, carton 122981000036108 Tielle (MTL101E) 11 cm x 11 cm island dressing, 10 122771000036108 Tielle (MTL101E) 11 cm x 11 cm island dressing 38401000168106 Tielle (MTL101E) 38401000168106 Tielle (MTL101E) 122991000036105 dressing hydropolymer high exudate semi-permeable non-adherent adhesive absorbent foam 11 cm x 11 cm island dressing, 10 122781000036105 dressing hydropolymer high exudate semi-permeable non-adherent adhesive absorbent foam 11 cm x 11 cm island dressing 123411000036104 dressing hydropolymer high exudate semi-permeable non-adherent adhesive absorbent foam +878281000168104 Carvedilol (Blooms The Chemist) 12.5 mg film-coated tablet, 60, blister pack 210738 878271000168102 Carvedilol (Blooms The Chemist) 12.5 mg film-coated tablet, 60 878261000168108 Carvedilol (Blooms The Chemist) 12.5 mg film-coated tablet 878221000168103 Carvedilol (Blooms The Chemist) 878221000168103 Carvedilol (Blooms The Chemist) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +985651000168104 Afstyla (1 x 1000 units vial, 1 x inert diluent vial), 1 pack, composite pack 271634 985641000168101 Afstyla (1 x 1000 units vial, 1 x inert diluent vial), 1 pack 984581000168106 Afstyla (inert substance) diluent, vial 984051000168109 Afstyla 984051000168109 Afstyla 985631000168105 lonoctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +985651000168104 Afstyla (1 x 1000 units vial, 1 x inert diluent vial), 1 pack, composite pack 271634 985641000168101 Afstyla (1 x 1000 units vial, 1 x inert diluent vial), 1 pack 985621000168107 Afstyla (lonoctocog alfa 1000 units) powder for injection, 1000 units vial 984051000168109 Afstyla 984051000168109 Afstyla 985631000168105 lonoctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 985611000168100 lonoctocog alfa 1000 units injection, vial 984551000168104 lonoctocog alfa +165991000036108 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack, composite pack 204810 164191000036105 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 51572011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [196 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165991000036108 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack, composite pack 204810 164191000036105 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack 162611000036100 Peg-Intron Clearclick Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 51572011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [196 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165991000036108 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack, composite pack 204810 164191000036105 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 51572011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [196 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +813491000168100 Adin Melt 60 microgram sublingual wafer, 100, blister pack 121723 813481000168103 Adin Melt 60 microgram sublingual wafer, 100 813401000168106 Adin Melt 60 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 813471000168101 desmopressin 60 microgram sublingual wafer, 100 813391000168109 desmopressin 60 microgram sublingual wafer 21750011000036107 desmopressin +82867011000036108 Mircera 200 microgram/0.3 mL injection solution, 0.3 mL syringe 153805 82774011000036106 Mircera 200 microgram/0.3 mL injection solution, 0.3 mL syringe 82684011000036105 Mircera 200 microgram/0.3 mL injection solution, 0.3 mL syringe 82658011000036106 Mircera 82658011000036106 Mircera 82994011000036105 epoetin beta 200 microgram/0.3 mL injection, 0.3 mL syringe 82931011000036102 epoetin beta 200 microgram/0.3 mL injection, syringe 21625011000036109 epoetin beta +59925011000036107 Haemorrhoid and Pruritis Relief (Your Pharmacy) 3.48% ointment, 50 g, tube 119063 55887011000036109 Haemorrhoid and Pruritis Relief (Your Pharmacy) 3.48% ointment, 50 g 53684011000036101 Haemorrhoid and Pruritis Relief (Your Pharmacy) 3.48% ointment 53490011000036109 Haemorrhoid and Pruritis Relief (Your Pharmacy) 53490011000036109 Haemorrhoid and Pruritis Relief (Your Pharmacy) 63152011000036100 lidocaine (lignocaine) hydrochloride 3.48% ointment, 50 g 61872011000036103 lidocaine (lignocaine) hydrochloride 3.48% ointment 21572011000036107 lidocaine (lignocaine) +740791000168106 Fentora 600 microgram orally disintegrating tablet, 28, blister pack 218434 740781000168108 Fentora 600 microgram orally disintegrating tablet, 28 740731000168107 Fentora 600 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740771000168105 fentanyl 600 microgram orally disintegrating tablet, 28 740721000168109 fentanyl 600 microgram orally disintegrating tablet 21258011000036102 fentanyl +166221000036108 Vaxigrip 2014 injection suspension, 10 x 0.5 mL syringes 80198 164481000036100 Vaxigrip 2014 injection suspension, 10 x 0.5 mL syringes 162671000036106 Vaxigrip 2014 injection suspension, 0.5 mL syringe 4661000168109 Vaxigrip 2014 4661000168109 Vaxigrip 2014 163651000036107 influenza trivalent adult vaccine 2014 injection, 10 x 0.5 mL syringes 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +745131000168104 Aquacel (177904) 2 cm x 45 cm ribbon, 5, carton 745121000168102 Aquacel (177904) 2 cm x 45 cm ribbon, 5 745111000168109 Aquacel (177904) 2 cm x 45 cm ribbon 50091000168105 Aquacel (177904) 50091000168105 Aquacel (177904) 745031000168100 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5 745011000168105 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon 50717011000036100 dressing hydrofibre alternate to alginates +981241000168101 Pritor 40 mg uncoated tablet, 7, blister pack 68054 981231000168105 Pritor 40 mg uncoated tablet, 7 981211000168100 Pritor 40 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 981221000168107 telmisartan 40 mg tablet, 7 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +933214061000036109 Nivestim 120 microgram/0.2 mL injection solution, 5 x 0.2 mL syringes 160106 933203121000036102 Nivestim 120 microgram/0.2 mL injection solution, 5 x 0.2 mL syringes 933195671000036105 Nivestim 120 microgram/0.2 mL injection solution, 0.2 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 933203151000036108 filgrastim 120 microgram/0.2 mL injection, 5 x 0.2 mL syringes 933195681000036107 filgrastim 120 microgram/0.2 mL injection, syringe 21265011000036102 filgrastim +131981000036103 Respikast 5 mg chewable tablet, 28, blister pack 189230 127991000036108 Respikast 5 mg chewable tablet, 28 124301000036109 Respikast 5 mg chewable tablet 124031000036104 Respikast 124031000036104 Respikast 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +985031000168104 Sandrena 0.1% (1 mg/g) gel, 91 x 500 mg sachets 93608 985021000168102 Sandrena 0.1% (1 mg/g) gel, 91 x 500 mg sachets 984971000168101 Sandrena 0.1% (1 mg/g) gel, 500 mg sachet 3739011000036109 Sandrena 3739011000036109 Sandrena 985011000168109 estradiol 0.1% (1 mg/g) gel, 91 x 500 mg sachets 984961000168107 estradiol 0.1% (1 mg/g) gel, 500 mg sachet 21238011000036103 estradiol +60167011000036106 Exforge 5/80 film-coated tablet, 7, blister pack 130787 56126011000036108 Exforge 5/80 film-coated tablet, 7 53801011000036105 Exforge 5/80 film-coated tablet 29171000168101 Exforge 5/80 29171000168101 Exforge 5/80 63230011000036102 amlodipine 5 mg + valsartan 80 mg tablet, 7 61897011000036105 amlodipine 5 mg + valsartan 80 mg tablet 61712011000036107 amlodipine + valsartan +670141000168106 Amlodipine/Atorvastatin 10/40 (Terry White Chemists) film-coated tablet, 30, blister pack 214391 670131000168102 Amlodipine/Atorvastatin 10/40 (Terry White Chemists) film-coated tablet, 30 670121000168100 Amlodipine/Atorvastatin 10/40 (Terry White Chemists) film-coated tablet 670081000168102 Amlodipine/Atorvastatin 10/40 (Terry White Chemists) 670081000168102 Amlodipine/Atorvastatin 10/40 (Terry White Chemists) 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +1019331000168107 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 3, blister pack 175215 1019321000168109 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 3 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019311000168102 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 3 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +19112011000036103 MS Contin 60 mg modified release tablet, 20, blister pack 43087 12417011000036107 MS Contin 60 mg modified release tablet, 20 5761011000036108 MS Contin 60 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 27108011000036105 morphine sulfate pentahydrate 60 mg modified release tablet, 20 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +131661000036100 Curam Duo Forte 875/125 film-coated tablet, 10, blister pack 198109 13887011000036108 Curam Duo Forte 875/125 film-coated tablet, 10 7173011000036108 Curam Duo Forte 875/125 film-coated tablet 54101000168106 Curam Duo Forte 875/125 54101000168106 Curam Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +19403011000036107 Kripton 5 mg hard capsule, 60, bottle 53170 12687011000036108 Kripton 5 mg hard capsule, 60 5591011000036109 Kripton 5 mg hard capsule 3715011000036104 Kripton 3715011000036104 Kripton 27288011000036108 bromocriptine 5 mg capsule, 60 22642011000036100 bromocriptine 5 mg capsule 21300011000036100 bromocriptine +921897011000036100 Exforge HCT 10/160/12.5 film-coated tablet, 14, blister pack 158164 921456011000036101 Exforge HCT 10/160/12.5 film-coated tablet, 14 921017011000036103 Exforge HCT 10/160/12.5 film-coated tablet 25011000168107 Exforge HCT 10/160/12.5 25011000168107 Exforge HCT 10/160/12.5 922584011000036109 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 14 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +736591000168103 Clarithromycin (Apo) 500 mg film-coated tablet, 100, blister pack 134856 736581000168101 Clarithromycin (Apo) 500 mg film-coated tablet, 100 736571000168104 Clarithromycin (Apo) 500 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +964161000168108 Normatens 200 microgram film-coated tablet, 84, blister pack 114122 964151000168106 Normatens 200 microgram film-coated tablet, 84 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964141000168109 moxonidine 200 microgram tablet, 84 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +18461011000036109 Arthrexin 25 mg hard capsule, 50, bottle 17586 12131011000036107 Arthrexin 25 mg hard capsule, 50 4794011000036100 Arthrexin 25 mg hard capsule 3726011000036103 Arthrexin 3726011000036103 Arthrexin 27794011000036105 indometacin 25 mg capsule, 50 23123011000036103 indometacin 25 mg capsule 21301011000036107 indometacin +929029011000036106 Risedronate (Apo) 35 mg film-coated tablet, 8, blister pack 160642 928390011000036109 Risedronate (Apo) 35 mg film-coated tablet, 8 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 929235011000036101 risedronate sodium 35 mg tablet, 8 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1068561000168103 Paracetamol plus Codeine (Sandoz) uncoated tablet, 24, blister pack 212684 1068551000168100 Paracetamol plus Codeine (Sandoz) uncoated tablet, 24 1068521000168108 Paracetamol plus Codeine (Sandoz) uncoated tablet 1068511000168101 Paracetamol plus Codeine (Sandoz) 1068511000168101 Paracetamol plus Codeine (Sandoz) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +68706011000036104 Triclosan Pre-Op Wash (Orion) 1% application, 20 x 40 mL tubes 10851 66569011000036102 Triclosan Pre-Op Wash (Orion) 1% application, 20 x 40 mL tubes 65199011000036109 Triclosan Pre-Op Wash (Orion) 1% application, 40 mL tube 12531000168107 Triclosan Pre-Op Wash (Orion) 12531000168107 Triclosan Pre-Op Wash (Orion) 71292011000036102 triclosan 1% application, 20 x 40 mL tubes 69934011000036106 triclosan 1% application, tube 69817011000036103 triclosan +68674011000036107 Pinetarsol 2.3% bath oil, 5 L, bottle 10632 66539011000036108 Pinetarsol 2.3% bath oil, 5 L 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71271011000036101 tar 2.3% bath oil, 5 L 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +854381000168100 Cerumol ear drops, 10 mL, bottle 33565 854371000168103 Cerumol ear drops, 10 mL 854351000168107 Cerumol ear drops 3397011000036107 Cerumol 3397011000036107 Cerumol 854361000168109 ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops, 10 mL 854341000168105 ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops 21712011000036102 ortho-dichlorobenzene + para-dichlorobenzene + chlorobutanol + arachis oil +739261000168100 Bisolvon Chesty Forte On-the-Go 8 mg/5 mL oral liquid solution, 20 x 5 mL sachets 207798 739251000168102 Bisolvon Chesty Forte On-the-Go 8 mg/5 mL oral liquid solution, 20 x 5 mL sachets 739231000168108 Bisolvon Chesty Forte On-the-Go 8 mg/5 mL oral liquid solution, 5 mL sachet 739211000168103 Bisolvon Chesty Forte On-the-Go 739211000168103 Bisolvon Chesty Forte On-the-Go 739241000168104 bromhexine hydrochloride 8 mg/5 mL oral liquid, 20 x 5 mL sachets 739221000168105 bromhexine hydrochloride 8 mg/5 mL oral liquid, sachet 61780011000036106 bromhexine +21050011000036109 Cephalexin (Terry White Chemists) 500 mg hard capsule, 20, blister pack 133855 14195011000036108 Cephalexin (Terry White Chemists) 500 mg hard capsule, 20 7476011000036103 Cephalexin (Terry White Chemists) 500 mg hard capsule 4078011000036104 Cephalexin (Terry White Chemists) 4078011000036104 Cephalexin (Terry White Chemists) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +21050011000036109 Cephalexin (Terry White Chemists) 500 mg hard capsule, 20, blister pack 96883 14195011000036108 Cephalexin (Terry White Chemists) 500 mg hard capsule, 20 7476011000036103 Cephalexin (Terry White Chemists) 500 mg hard capsule 4078011000036104 Cephalexin (Terry White Chemists) 4078011000036104 Cephalexin (Terry White Chemists) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +906341000168100 Amisulpride (AN) 400 mg uncoated tablet, 90, blister pack 234705 906331000168109 Amisulpride (AN) 400 mg uncoated tablet, 90 906251000168108 Amisulpride (AN) 400 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +976991000168101 Pregabalin (Apotex) 100 mg hard capsule, 14, blister pack 267555 976981000168104 Pregabalin (Apotex) 100 mg hard capsule, 14 976971000168102 Pregabalin (Apotex) 100 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +18977011000036105 Timoptol 0.5% eye drops solution, 5 mL, bottle 28775 12285011000036101 Timoptol 0.5% eye drops solution, 5 mL 5769011000036107 Timoptol 0.5% eye drops solution 25031000168102 Timoptol 25031000168102 Timoptol 27043011000036102 timolol 0.5% eye drops, 5 mL 22597011000036101 timolol 0.5% eye drops 21318011000036100 timolol +933239811000036105 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 10, blister pack 181204 933237131000036100 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 10 933234821000036104 Meloxicam (Terry White Chemists) 7.5 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 52886011000036109 meloxicam 7.5 mg capsule, 10 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +812081000168103 Affora 20 mg film-coated tablet, 30, blister pack 198057 812071000168101 Affora 20 mg film-coated tablet, 30 812031000168104 Affora 20 mg film-coated tablet 811911000168100 Affora 811911000168100 Affora 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +933137011000036105 Elmendos 25 mg tablet, 42, bottle 98077 932933011000036105 Elmendos 25 mg tablet, 42 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46986011000036107 lamotrigine 25 mg tablet, 42 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +931582011000036103 Redichol 20 mg film-coated tablet, 500, bottle 163553 930743011000036106 Redichol 20 mg film-coated tablet, 500 930033011000036108 Redichol 20 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932417011000036106 pravastatin sodium 20 mg tablet, 500 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +19489011000036109 Anzemet 200 mg film-coated tablet, 2, blister pack 55068 12765011000036106 Anzemet 200 mg film-coated tablet, 2 6059011000036102 Anzemet 200 mg film-coated tablet 4210011000036102 Anzemet 4210011000036102 Anzemet 27342011000036108 dolasetron mesilate monohydrate 200 mg tablet, 2 22695011000036103 dolasetron mesilate monohydrate 200 mg tablet 21471011000036108 dolasetron +912781000168108 Cisero 10 mg film-coated tablet, 30, blister pack 183641 912771000168105 Cisero 10 mg film-coated tablet, 30 912761000168104 Cisero 10 mg film-coated tablet 912361000168100 Cisero 912361000168100 Cisero 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +19731011000036106 Phenergan Elixir 5 mg/5 mL oral liquid solution, 100 mL, bottle 61576 12984011000036101 Phenergan Elixir 5 mg/5 mL oral liquid solution, 100 mL 6273011000036109 Phenergan Elixir 5 mg/5 mL oral liquid solution, 5 mL 61301000168102 Phenergan Elixir 61301000168102 Phenergan Elixir 27484011000036100 promethazine hydrochloride 5 mg/5 mL oral liquid, 100 mL 22830011000036105 promethazine hydrochloride 5 mg/5 mL oral liquid 21237011000036104 promethazine +20037011000036104 Humalog Mix50 injection suspension, 5 x 3 mL cartridges 69166 13269011000036108 Humalog Mix50 injection suspension, 5 x 3 mL cartridges 6551011000036103 Humalog Mix50 injection suspension, 3 mL cartridge 33661000168104 Humalog Mix50 33661000168104 Humalog Mix50 27657011000036103 insulin lispro 50 units/mL + insulin lispro protamine 50 units/mL injection, 5 x 3 mL cartridges 22994011000036101 insulin lispro 50 units/mL + insulin lispro protamine 50 units/mL injection, cartridge 21622011000036101 insulin lispro + insulin lispro protamine +69008011000036104 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 2 sachets 138697 66810011000036108 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 2 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71440011000036105 paracetamol 1 g powder for oral liquid, 2 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +12101000036104 Zypine 5 mg film-coated tablet, 28, blister pack 154624 7151000036103 Zypine 5 mg film-coated tablet, 28 3271000036105 Zypine 5 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +44301011000036101 Zeldox 40 mg hard capsule, 60, bottle 65854 13132011000036109 Zeldox 40 mg hard capsule, 60 6415011000036104 Zeldox 40 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27570011000036106 ziprasidone 40 mg capsule, 60 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +165901000036100 Paracetamol (Kabi) 1 g/100 mL injection solution, 20 x 100 mL vials 203624 164081000036109 Paracetamol (Kabi) 1 g/100 mL injection solution, 20 x 100 mL vials 162161000036108 Paracetamol (Kabi) 1 g/100 mL injection solution, 100 mL vial 161851000036107 Paracetamol (Kabi) 161851000036107 Paracetamol (Kabi) 164091000036106 paracetamol 1 g/100 mL injection, 20 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +667951000168102 Cilopam-S 10 mg film-coated tablet, 56, blister pack 191884 667941000168104 Cilopam-S 10 mg film-coated tablet, 56 667871000168101 Cilopam-S 10 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 667931000168108 escitalopram 10 mg tablet, 56 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +882731000168104 Zopiclone (Blooms The Chemist) 7.5 mg film-coated tablet, 30, blister pack 213073 882721000168102 Zopiclone (Blooms The Chemist) 7.5 mg film-coated tablet, 30 882711000168109 Zopiclone (Blooms The Chemist) 7.5 mg film-coated tablet 882701000168106 Zopiclone (Blooms The Chemist) 882701000168106 Zopiclone (Blooms The Chemist) 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +140341000036102 Astromide 180 mg hard capsule, 5, bottle 163679 76841000036103 Astromide 180 mg hard capsule, 5 76691000036108 Astromide 180 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +69385011000036108 Deep Heat Arthritis cream, 120 g, tube 35098 67185011000036109 Deep Heat Arthritis cream, 120 g 65523011000036106 Deep Heat Arthritis cream 8011000168109 Deep Heat Arthritis 8011000168109 Deep Heat Arthritis 71747011000036104 methyl salicylate 30% + menthol 8% cream, 120 g 70166011000036109 methyl salicylate 30% + menthol 8% cream 69751011000036100 methyl salicylate + menthol +176711000036102 Cadivast 5/40 film-coated tablet, 30, bottle 199214 174901000036109 Cadivast 5/40 film-coated tablet, 30 173351000036107 Cadivast 5/40 film-coated tablet 56381000168108 Cadivast 5/40 56381000168108 Cadivast 5/40 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +777401000168109 Karvea 300 mg film-coated tablet, 7, blister pack 101708 777391000168107 Karvea 300 mg film-coated tablet, 7 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 738181000168105 irbesartan 300 mg tablet, 7 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +177031000036105 Quetiapine (Pharmacor) 300 mg film-coated tablet, 60, blister pack 204824 175271000036109 Quetiapine (Pharmacor) 300 mg film-coated tablet, 60 172881000036104 Quetiapine (Pharmacor) 300 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +929012011000036106 Nivestim 480 microgram/0.5 mL injection solution, 0.5 mL syringe 160107 928373011000036105 Nivestim 480 microgram/0.5 mL injection solution, 0.5 mL syringe 927959011000036105 Nivestim 480 microgram/0.5 mL injection solution, 0.5 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 929225011000036103 filgrastim 480 microgram/0.5 mL injection, 0.5 mL syringe 22655011000036106 filgrastim 480 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +770911000168103 Hiprex 1 g uncoated tablet, 20, bottle 10558 770901000168101 Hiprex 1 g uncoated tablet, 20 5692011000036106 Hiprex 1 g uncoated tablet 2978011000036104 Hiprex 2978011000036104 Hiprex 770891000168100 methenamine hippurate 1 g tablet, 20 22011011000036106 methenamine hippurate 1 g tablet 21742011000036109 methenamine hippurate +1087971000168101 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet, 60, blister pack 283261 1087961000168107 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet, 60 1087921000168102 Ferrous Fumarate (GPPL) 200 mg (iron 65.7 mg) film-coated tablet 1087911000168109 Ferrous Fumarate (GPPL) 1087911000168109 Ferrous Fumarate (GPPL) 933225511000036106 ferrous fumarate 200 mg (iron 65.7 mg) tablet, 60 933220681000036107 ferrous fumarate 200 mg (iron 65.7 mg) tablet 933232111000036107 ferrous fumarate +20517011000036109 Metoprolol Tartrate (GenRx) 50 mg uncoated tablet, 100, blister pack 78855 13717011000036108 Metoprolol Tartrate (GenRx) 50 mg uncoated tablet, 100 6999011000036103 Metoprolol Tartrate (GenRx) 50 mg uncoated tablet 3328011000036103 Metoprolol Tartrate (GenRx) 3328011000036103 Metoprolol Tartrate (GenRx) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +670821000168105 Metoprolol Tartrate (AN) 50 mg film-coated tablet, 10, blister pack 192767 670811000168103 Metoprolol Tartrate (AN) 50 mg film-coated tablet, 10 670791000168102 Metoprolol Tartrate (AN) 50 mg film-coated tablet 670681000168105 Metoprolol Tartrate (AN) 670681000168105 Metoprolol Tartrate (AN) 670801000168101 metoprolol tartrate 50 mg tablet, 10 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +17752011000036105 Avapro HCT 300/25 film-coated tablet, 30, blister pack 129436 11875011000036104 Avapro HCT 300/25 film-coated tablet, 30 4545011000036107 Avapro HCT 300/25 film-coated tablet 64201000168107 Avapro HCT 300/25 64201000168107 Avapro HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1085641000168107 Trumenba injection suspension, 0.5 mL syringe 276920 1085631000168103 Trumenba injection suspension, 0.5 mL syringe 1085611000168108 Trumenba injection suspension, 0.5 mL syringe 1085581000168101 Trumenba 1085581000168101 Trumenba 1085621000168101 meningococcal B bivalent vaccine injection, 0.5 mL syringe 1085601000168105 meningococcal B bivalent vaccine injection, 0.5 mL syringe 1085591000168103 meningococcal B bivalent vaccine +912281000168100 Caveroz 20 mg film-coated tablet, 90, blister pack 186286 912271000168103 Caveroz 20 mg film-coated tablet, 90 912261000168109 Caveroz 20 mg film-coated tablet 912251000168107 Caveroz 912251000168107 Caveroz 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +1070651000168106 Zinnat 250 mg film-coated tablet, 50, strip pack 44092 763621000168100 Zinnat 250 mg film-coated tablet, 50 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 763611000168107 cefuroxime 250 mg tablet, 50 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +11781000036103 Mycophenolate (Sandoz) 500 mg film-coated tablet, 50, blister pack 148225 6521000036100 Mycophenolate (Sandoz) 500 mg film-coated tablet, 50 1411000036104 Mycophenolate (Sandoz) 500 mg film-coated tablet 1041000036107 Mycophenolate (Sandoz) 1041000036107 Mycophenolate (Sandoz) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +689551000168104 Kaletra oral liquid solution, 5 x 60 mL, bottles 78627 689541000168101 Kaletra oral liquid solution, 5 x 60 mL 689461000168103 Kaletra oral liquid solution, 5 mL 689441000168102 Kaletra 689441000168102 Kaletra 689531000168105 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 5 x 60 mL 689451000168100 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid 21345011000036102 lopinavir + ritonavir +20279011000036100 Isosorbide Mononitrate (GenRx) 60 mg modified release tablet, 30, blister pack 75240 13489011000036107 Isosorbide Mononitrate (GenRx) 60 mg modified release tablet, 30 6771011000036101 Isosorbide Mononitrate (GenRx) 60 mg modified release tablet 3451011000036104 Isosorbide Mononitrate (GenRx) 3451011000036104 Isosorbide Mononitrate (GenRx) 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +20399011000036104 Prograf 500 microgram hard capsule, 100, blister pack 77280 13607011000036103 Prograf 500 microgram hard capsule, 100 6890011000036104 Prograf 500 microgram hard capsule 4131011000036102 Prograf 4131011000036102 Prograf 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +44727011000036104 Emend 80 mg hard capsule, 1, blister pack 95773 42172011000036100 Emend 80 mg hard capsule, 1 7404011000036101 Emend 80 mg hard capsule 3261011000036105 Emend 3261011000036105 Emend 46933011000036109 aprepitant 80 mg capsule, 1 23472011000036105 aprepitant 80 mg capsule 21632011000036103 aprepitant +69642011000036104 Panadol Rapid 500 mg film-coated tablet, 20, blister pack 123657 67441011000036104 Panadol Rapid 500 mg film-coated tablet, 20 65667011000036101 Panadol Rapid 500 mg film-coated tablet 4501000168107 Panadol Rapid 4501000168107 Panadol Rapid 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69642011000036104 Panadol Rapid 500 mg film-coated tablet, 20, blister pack 78692 67441011000036104 Panadol Rapid 500 mg film-coated tablet, 20 65667011000036101 Panadol Rapid 500 mg film-coated tablet 4501000168107 Panadol Rapid 4501000168107 Panadol Rapid 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +39392011000036109 Tryzan 5 mg uncoated tablet, 30, blister pack 129918 39276011000036109 Tryzan 5 mg uncoated tablet, 30 39205011000036105 Tryzan 5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1105051000168106 Midazolam (AN) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207222 1105041000168109 Midazolam (AN) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 1104991000168101 Midazolam (AN) 15 mg/3 mL injection solution, 3 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +74071000036106 Iodine Weak (Gold Cross) solution, 50 mL, bottle 27268 72061000036106 Iodine Weak (Gold Cross) solution, 50 mL 69751000036108 Iodine Weak (Gold Cross) solution 41141000168109 Iodine Weak (Gold Cross) 41141000168109 Iodine Weak (Gold Cross) 72071000036103 iodine 2.5% + potassium iodide 2.5% solution, 50 mL 931836011000036107 iodine 2.5% + potassium iodide 2.5% solution 61782011000036105 iodine +43787011000036108 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 20 x 200 mL bags 123042 41279011000036106 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 20 x 200 mL bags 39898011000036105 Ciprofloxacin (Hospira) 400 mg/200 mL injection solution, 200 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46214011000036100 ciprofloxacin 400 mg/200 mL injection, 20 x 200 mL bags 45033011000036102 ciprofloxacin 400 mg/200 mL injection, bag 21245011000036105 ciprofloxacin +1054151000168108 Actiq 1600 microgram lozenge on handle, 6, blister pack 91604 1054141000168106 Actiq 1600 microgram lozenge on handle, 6 34080011000036109 Actiq 1600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1054131000168102 fentanyl 1600 microgram lozenge on handle, 6 34915011000036107 fentanyl 1600 microgram lozenge on handle 21258011000036102 fentanyl +45981000036106 Ramipril (Terry White Chemists) 2.5 mg capsule, 30, blister pack 179030 43261000036108 Ramipril (Terry White Chemists) 2.5 mg capsule, 30 41071000036105 Ramipril (Terry White Chemists) 2.5 mg capsule 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +20759011000036107 Avanza Soltab 30 mg orally disintegrating tablet, 30, blister pack 90598 13928011000036106 Avanza Soltab 30 mg orally disintegrating tablet, 30 7216011000036108 Avanza Soltab 30 mg orally disintegrating tablet 20511000168105 Avanza Soltab 20511000168105 Avanza Soltab 47691000036107 mirtazapine 30 mg orally disintegrating tablet, 30 47561000036104 mirtazapine 30 mg orally disintegrating tablet 21463011000036102 mirtazapine +933107011000036101 Lamictal 100 mg tablet, 60, blister pack 51549 932914011000036102 Lamictal 100 mg tablet, 60 932764011000036106 Lamictal 100 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46990011000036105 lamotrigine 100 mg tablet, 60 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +1100251000168107 Axycillin 250 mg hard capsule, 30, blister pack 198132 1100241000168105 Axycillin 250 mg hard capsule, 30 1100211000168106 Axycillin 250 mg hard capsule 1100111000168101 Axycillin 1100111000168101 Axycillin 900551000168107 amoxicillin 250 mg capsule, 30 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +61346011000036100 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 100, blister pack 81474 57271011000036101 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 100 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +91411000036103 Topotecan (Agila) 4 mg powder for injection, 1 vial 178006 89971000036103 Topotecan (Agila) 4 mg powder for injection, 1 vial 88201000036108 Topotecan (Agila) 4 mg powder for injection, 4 mg vial 87671000036102 Topotecan (Agila) 87671000036102 Topotecan (Agila) 35861000036109 topotecan 4 mg injection, 1 vial 22759011000036102 topotecan 4 mg injection, vial 21571011000036101 topotecan +1008431000168106 Cefuroxime (AL) 500 mg film-coated tablet, 14, blister pack 273226 1008421000168108 Cefuroxime (AL) 500 mg film-coated tablet, 14 1008271000168105 Cefuroxime (AL) 500 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 1008411000168101 cefuroxime 500 mg tablet, 14 1008261000168104 cefuroxime 500 mg tablet 21474011000036106 cefuroxime +875651000168102 Bispro 1.25 mg film-coated tablet, 10, blister pack 130177 875641000168104 Bispro 1.25 mg film-coated tablet, 10 875611000168103 Bispro 1.25 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 46788011000036101 bisoprolol fumarate 1.25 mg tablet, 10 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +19641000036102 Vaxigrip 2012 injection suspension, 1 x 0.5 mL syringe 80198 19201000036102 Vaxigrip 2012 injection suspension, 1 x 0.5 mL syringe 18671000036104 Vaxigrip 2012 injection suspension, 0.5 mL syringe 58191000168108 Vaxigrip 2012 58191000168108 Vaxigrip 2012 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +1091981000168106 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray, 2 x 150 actuations, aerosol cans 284867 1091971000168108 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray, 2 x 150 actuations 1091861000168109 Nicorette Quickmist Cool Berry 1 mg/actuation oral spray 39021000168101 Nicorette Quickmist 39021000168101 Nicorette Quickmist 150541000036106 nicotine 1 mg/actuation oral spray, 2 x 150 actuations 148801000036106 nicotine 1 mg/actuation oral spray, 1 actuation 21432011000036100 nicotine +140661000036108 Candesartan Cilexetil HCTZ 16/12.5 (RBX) uncoated tablet, 30, blister pack 204574 139461000036102 Candesartan Cilexetil HCTZ 16/12.5 (RBX) uncoated tablet, 30 137551000036109 Candesartan Cilexetil HCTZ 16/12.5 (RBX) uncoated tablet 14681000168103 Candesartan Cilexetil HCTZ 16/12.5 (RBX) 14681000168103 Candesartan Cilexetil HCTZ 16/12.5 (RBX) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19209011000036109 Sporanox 100 mg hard capsule, 60, blister pack 47012 12499011000036104 Sporanox 100 mg hard capsule, 60 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 27156011000036102 itraconazole 100 mg capsule, 60 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +829571000168109 Tixol 60 mg enteric capsule, 28, blister pack 199265 829561000168103 Tixol 60 mg enteric capsule, 28 829551000168100 Tixol 60 mg enteric capsule 829541000168102 Tixol 829541000168102 Tixol 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +1094951000168102 Ibuprofen (Genpar) 200 mg film-coated tablet, 6, blister pack 285310 1094941000168104 Ibuprofen (Genpar) 200 mg film-coated tablet, 6 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +59781000036108 Clarithromycin (PS) 250 mg film-coated tablet, 2, blister pack 184263 58871000036107 Clarithromycin (PS) 250 mg film-coated tablet, 2 58381000036100 Clarithromycin (PS) 250 mg film-coated tablet 58111000036106 Clarithromycin (PS) 58111000036106 Clarithromycin (PS) 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1100341000168104 Axagon 20 mg enteric tablet, 30, blister pack 202457 1100331000168108 Axagon 20 mg enteric tablet, 30 1100321000168105 Axagon 20 mg enteric tablet 1100261000168109 Axagon 1100261000168109 Axagon 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +800661000168104 Actonate 35 mg film-coated tablet, 4, blister pack 163748 800651000168101 Actonate 35 mg film-coated tablet, 4 800601000168100 Actonate 35 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +77341011000036108 Water for Injections (Pfizer (Perth)) injection solution, 50 x 10 mL ampoules 49287 76757011000036100 Water for Injections (Pfizer (Perth)) injection solution, 50 x 10 mL ampoules 76167011000036103 Water for Injections (Pfizer (Perth)) injection solution, 10 mL ampoule 75983011000036105 Water for Injections (Pfizer (Perth)) 75983011000036105 Water for Injections (Pfizer (Perth)) 78264011000036100 water for injections injection, 50 x 10 mL ampoules 77584011000036100 water for injections injection, 10 mL ampoule 77431011000036101 water for injections +60103011000036103 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 500 mL, bottle 126543 56064011000036104 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 500 mL 53775011000036101 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 5 mL 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 63815011000036105 paracetamol 240 mg/5 mL oral liquid, 500 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +61238011000036106 Tri-Profen 200 mg film-coated tablet, 48, blister pack 76986 57174011000036100 Tri-Profen 200 mg film-coated tablet, 48 54224011000036106 Tri-Profen 200 mg film-coated tablet 53358011000036106 Tri-Profen 53358011000036106 Tri-Profen 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +18610011000036100 Neorecormon 4000 units/0.3 mL injection, 6 x 0.3 mL syringes 104264 11276011000036100 Neorecormon 4000 units/0.3 mL injection, 6 x 0.3 mL syringes 5793011000036106 Neorecormon 4000 units/0.3 mL injection, 0.3 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26587011000036103 epoetin beta 4000 units/0.3 mL injection, 6 x 0.3 mL syringes 21995011000036101 epoetin beta 4000 units/0.3 mL injection, syringe 21625011000036109 epoetin beta +18597011000036107 Simvastatin (Winthrop) 40 mg film-coated tablet, 30, blister pack 129985 11887011000036101 Simvastatin (Winthrop) 40 mg film-coated tablet, 30 4966011000036102 Simvastatin (Winthrop) 40 mg film-coated tablet 3335011000036106 Simvastatin (Winthrop) 3335011000036106 Simvastatin (Winthrop) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +972061000168106 Pregabalin (Apo) 75 mg hard capsule, 500, bottle 193247 972051000168109 Pregabalin (Apo) 75 mg hard capsule, 500 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 971511000168108 pregabalin 75 mg capsule, 500 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +69481011000036100 Strepsils Plus lozenge, 12, blister pack 50509 67281011000036105 Strepsils Plus lozenge, 12 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71829011000036105 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 12 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +838201000168109 Pneumovax-23 injection solution, 10 x 0.5 mL syringes 222235 838191000168106 Pneumovax-23 injection solution, 10 x 0.5 mL syringes 838141000168103 Pneumovax-23 injection solution, 0.5 mL syringe 57241000168107 Pneumovax-23 57241000168107 Pneumovax-23 838181000168108 pneumococcal 23 valent vaccine injection, 10 x 0.5 mL syringes 838131000168107 pneumococcal 23 valent vaccine injection, 0.5 mL syringe 838041000168102 pneumococcal 23 valent vaccine +805001000168104 Aczicrit 7000 units/0.7 mL injection solution, 6 x 0.7 mL syringes 147839 804991000168105 Aczicrit 7000 units/0.7 mL injection solution, 6 x 0.7 mL syringes 804951000168100 Aczicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924117011000036102 epoetin lambda 7000 units/0.7 mL injection, 6 x 0.7 mL syringes 923948011000036108 epoetin lambda 7000 units/0.7 mL injection, syringe 923930011000036107 epoetin lambda +45321000036106 Gamine XR 8 mg modified release capsule, 28, blister pack 182028 43471000036104 Gamine XR 8 mg modified release capsule, 28 40851000036103 Gamine XR 8 mg modified release capsule 12551000168101 Gamine XR 12551000168101 Gamine XR 28248011000036107 galantamine 8 mg modified release capsule, 28 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +671141000168103 Zolmitriptan (Apo) 2.5 mg film-coated tablet, 6, blister pack 200878 671131000168107 Zolmitriptan (Apo) 2.5 mg film-coated tablet, 6 671091000168105 Zolmitriptan (Apo) 2.5 mg film-coated tablet 671081000168107 Zolmitriptan (Apo) 671081000168107 Zolmitriptan (Apo) 671121000168109 zolmitriptan 2.5 mg tablet, 6 22826011000036105 zolmitriptan 2.5 mg tablet 21516011000036102 zolmitriptan +777951000168103 Oxycodone MR (Apo) 40 mg modified release tablet, 20, blister pack 160090 777941000168100 Oxycodone MR (Apo) 40 mg modified release tablet, 20 777931000168109 Oxycodone MR (Apo) 40 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +717191000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 28, bottle 167313 717171000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 28 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716411000168100 omeprazole 20 mg enteric capsule, 28 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +20717011000036108 Curam Duo Forte 875/125 film-coated tablet, 10, strip pack 82829 13887011000036108 Curam Duo Forte 875/125 film-coated tablet, 10 7173011000036108 Curam Duo Forte 875/125 film-coated tablet 54101000168106 Curam Duo Forte 875/125 54101000168106 Curam Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +967771000168108 Prolastin-C (1 x 1 g vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 234553 967761000168102 Prolastin-C (1 x 1 g vial, 1 x 20 mL inert diluent vial), 1 pack 967731000168105 Prolastin-C (alpha-1-proteinase inhibitor 1 g) powder for injection, vial 967701000168103 Prolastin-C 967701000168103 Prolastin-C 967751000168104 alpha-1-proteinase inhibitor 1 g injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 967721000168107 alpha-1-proteinase inhibitor 1 g injection, vial 967711000168100 alpha-1-proteinase inhibitor +967771000168108 Prolastin-C (1 x 1 g vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 234553 967761000168102 Prolastin-C (1 x 1 g vial, 1 x 20 mL inert diluent vial), 1 pack 967741000168101 Prolastin-C (inert substance) diluent, 20 mL vial 967701000168103 Prolastin-C 967701000168103 Prolastin-C 967751000168104 alpha-1-proteinase inhibitor 1 g injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 639231000168104 inert substance diluent, 20 mL vial 21220011000036103 inert substance +1042751000168102 Aspecillin V 150 mg/5 mL oral liquid suspension, 100 mL, bottle 151597 1042741000168104 Aspecillin V 150 mg/5 mL oral liquid suspension, 100 mL 1042731000168108 Aspecillin V 150 mg/5 mL oral liquid suspension, 5 mL 1042661000168108 Aspecillin V 1042661000168108 Aspecillin V 35774011000036102 phenoxymethylpenicillin 150 mg/5 mL oral liquid, 100 mL 35715011000036108 phenoxymethylpenicillin 150 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +50401011000036104 Cavi-Care (4563) cavity conforming foam, 20 g sachet 49347011000036100 Cavi-Care (4563) cavity conforming foam, 20 g sachet 334451000168103 Cavi-Care (4563) cavity conforming foam, 20 g sachet 45841000168100 Cavi-Care (4563) 45841000168100 Cavi-Care (4563) 51326011000036101 dressing foam moderate exudate cavity conforming foam, 20 g sachet 334241000168101 dressing foam moderate exudate cavity conforming foam, 20 g sachet 50698011000036108 dressing foam moderate exudate +32587011000036101 Sodium Chloride (Baxter) 0.9% (9 g/L) intravenous infusion injection, 1 L bag 48520 32382011000036100 Sodium Chloride (Baxter) 0.9% (9 g/L) intravenous infusion injection, 1 L bag 4949011000036104 Sodium Chloride (Baxter) 0.9% (9 g/L) intravenous infusion injection, 1 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 32782011000036104 sodium chloride 0.9% (9 g/L) injection, 1 L bag 22566011000036102 sodium chloride 0.9% (9 g/L) injection, bag 21308011000036103 sodium chloride +160531000036109 Giotrif 50 mg film-coated tablet, 28, blister pack 201320 159331000036104 Giotrif 50 mg film-coated tablet, 28 157941000036103 Giotrif 50 mg film-coated tablet 157731000036105 Giotrif 157731000036105 Giotrif 159341000036109 afatinib 50 mg tablet, 28 157951000036100 afatinib 50 mg tablet 160671000036107 afatinib +666841000168105 Pramipexole Hydrochloride (AN) 125 microgram tablet, 30, blister pack 172009 666831000168101 Pramipexole Hydrochloride (AN) 125 microgram tablet, 30 666821000168104 Pramipexole Hydrochloride (AN) 125 microgram tablet 666721000168105 Pramipexole Hydrochloride (AN) 666721000168105 Pramipexole Hydrochloride (AN) 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +924961000168100 Ramipril (Hexal) 10 mg uncoated tablet, 30, bottle 122025 924951000168102 Ramipril (Hexal) 10 mg uncoated tablet, 30 924941000168104 Ramipril (Hexal) 10 mg uncoated tablet 924461000168109 Ramipril (Hexal) 924461000168109 Ramipril (Hexal) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +1059971000168100 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 30, blister pack 234479 1058871000168103 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 30 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +770841000168108 Emulsifying Ointment BP (David Craig) ointment, 500 g, jar 770831000168104 Emulsifying Ointment BP (David Craig) ointment, 500 g 770821000168102 Emulsifying Ointment BP (David Craig) ointment 770811000168109 Emulsifying Ointment BP (David Craig) 770811000168109 Emulsifying Ointment BP (David Craig) 87002011000036106 white soft paraffin + emulsifying wax + liquid paraffin ointment, 500 g 86915011000036107 white soft paraffin + emulsifying wax + liquid paraffin ointment 77445011000036103 white soft paraffin + emulsifying wax + liquid paraffin +50568011000036102 Durotram XR (once a day) 200 mg modified release tablet, 30, blister pack 134822 49602011000036104 Durotram XR (once a day) 200 mg modified release tablet, 30 48787011000036107 Durotram XR (once a day) 200 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51505011000036101 tramadol hydrochloride 200 mg modified release tablet, 30 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +829531000168106 Baraclude 500 microgram film-coated tablet, 30, blister pack 116852 829521000168108 Baraclude 500 microgram film-coated tablet, 30 829501000168104 Baraclude 500 microgram film-coated tablet 4030011000036104 Baraclude 4030011000036104 Baraclude 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +855431000168108 Algerika 225 mg hard capsule, 21, blister pack 229601 855421000168105 Algerika 225 mg hard capsule, 21 855371000168104 Algerika 225 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855411000168103 pregabalin 225 mg capsule, 21 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +74331000036106 Diltiazem Hydrochloride (PS) 60 mg film-coated tablet, 90, bottle 184098 71911000036104 Diltiazem Hydrochloride (PS) 60 mg film-coated tablet, 90 69551000036102 Diltiazem Hydrochloride (PS) 60 mg film-coated tablet 57361000168102 Diltiazem Hydrochloride (PS) 57361000168102 Diltiazem Hydrochloride (PS) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +172321000036107 Alendronate Plus D3 70 mg/140 microgram (DRLA) uncoated tablet, 4, blister pack 206936 172311000036100 Alendronate Plus D3 70 mg/140 microgram (DRLA) uncoated tablet, 4 172301000036102 Alendronate Plus D3 70 mg/140 microgram (DRLA) uncoated tablet 39451000168100 Alendronate Plus D3 70 mg/140 microgram (DRLA) 39451000168100 Alendronate Plus D3 70 mg/140 microgram (DRLA) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +688361000168102 Xalkori 250 mg hard capsule, 60, blister pack 190965 688351000168104 Xalkori 250 mg hard capsule, 60 688331000168105 Xalkori 250 mg hard capsule 688241000168107 Xalkori 688241000168107 Xalkori 688341000168101 crizotinib 250 mg capsule, 60 688321000168107 crizotinib 250 mg capsule 688261000168106 crizotinib +953741000168101 Prozac 20 mg/5 mL oral liquid solution, 35 mL, bottle 43298 953731000168105 Prozac 20 mg/5 mL oral liquid solution, 35 mL 953721000168107 Prozac 20 mg/5 mL oral liquid solution, 5 mL 2954011000036108 Prozac 2954011000036108 Prozac 776741000168100 fluoxetine 20 mg/5 mL oral liquid, 35 mL 776721000168106 fluoxetine 20 mg/5 mL oral liquid 21411011000036102 fluoxetine +1091661000168108 Antiseptic Ointment (Terry White Chemists) 10% ointment, 25 g, tube 281467 1091651000168106 Antiseptic Ointment (Terry White Chemists) 10% ointment, 25 g 1091641000168109 Antiseptic Ointment (Terry White Chemists) 10% ointment 1091631000168100 Antiseptic Ointment (Terry White Chemists) 1091631000168100 Antiseptic Ointment (Terry White Chemists) 71716011000036107 povidone-iodine 10% ointment, 25 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +81119011000036109 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution, 200 mL, bottle 163526 80624011000036108 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution, 200 mL 80211011000036101 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 27010011000036101 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 200 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +858331000168105 Amichlor 10 mg film-coated tablet, 20, blister pack 215373 858321000168107 Amichlor 10 mg film-coated tablet, 20 858281000168102 Amichlor 10 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692961000168101 amitriptyline hydrochloride 10 mg tablet, 20 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +19140011000036106 Depo-Ralovera 150 mg/mL injection suspension, 1 mL vial 44464 12439011000036107 Depo-Ralovera 150 mg/mL injection suspension, 1 mL vial 5657011000036101 Depo-Ralovera 150 mg/mL injection suspension, vial 4226011000036107 Depo-Ralovera 4226011000036107 Depo-Ralovera 27121011000036106 medroxyprogesterone acetate 150 mg/mL injection, 1 mL vial 22487011000036109 medroxyprogesterone acetate 150 mg/mL injection, vial 21378011000036107 medroxyprogesterone +87677011000036105 Diabex XR-1000 1 g modified release tablet, 60, blister pack 153699 87444011000036103 Diabex XR-1000 1 g modified release tablet, 60 87311011000036104 Diabex XR-1000 1 g modified release tablet 55331000168103 Diabex XR-1000 55331000168103 Diabex XR-1000 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +987961000168101 Orcantas 20/8.19 film-coated tablet, 20, blister pack 273240 987951000168103 Orcantas 20/8.19 film-coated tablet, 20 987941000168100 Orcantas 20/8.19 film-coated tablet 987931000168109 Orcantas 20/8.19 987931000168109 Orcantas 20/8.19 984351000168106 trifluridine 20 mg + tipiracil 8.19 mg tablet, 20 984331000168100 trifluridine 20 mg + tipiracil 8.19 mg tablet 984151000168108 trifluridine + tipiracil +19094011000036101 Norvasc 5 mg uncoated tablet, 30, blister pack 42902 12400011000036108 Norvasc 5 mg uncoated tablet, 30 4852011000036103 Norvasc 5 mg uncoated tablet 4216011000036104 Norvasc 4216011000036104 Norvasc 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +1013891000168102 Valsartan (Apotex) 80 mg film-coated tablet, 7, blister pack 185858 1013881000168100 Valsartan (Apotex) 80 mg film-coated tablet, 7 1013871000168103 Valsartan (Apotex) 80 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63787011000036104 valsartan 80 mg tablet, 7 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +954841000168109 Gabapentin (Apo) 800 mg film-coated tablet, 100, bottle 131505 954831000168100 Gabapentin (Apo) 800 mg film-coated tablet, 100 954821000168103 Gabapentin (Apo) 800 mg film-coated tablet 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +52740011000036102 Vedilol 6.25 mg uncoated tablet, 30, blister pack 136873 52552011000036102 Vedilol 6.25 mg uncoated tablet, 30 52415011000036107 Vedilol 6.25 mg uncoated tablet 52393011000036101 Vedilol 52393011000036101 Vedilol 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +18512011000036106 Avapro HCT 300/12.5 film-coated tablet, 30, bottle 102087 11247011000036101 Avapro HCT 300/12.5 film-coated tablet, 30 4975011000036100 Avapro HCT 300/12.5 film-coated tablet 31701000168107 Avapro HCT 300/12.5 31701000168107 Avapro HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +44726011000036102 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 95042 42171011000036106 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent vials), 1 pack 40374011000036106 Luveris (lutropin alfa 75 units) powder for injection, 75 units vial 39654011000036102 Luveris 39654011000036102 Luveris 46932011000036102 lutropin alfa 75 units injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 45349011000036102 lutropin alfa 75 units injection, vial 44973011000036102 lutropin alfa +44726011000036102 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 95042 42171011000036106 Luveris (3 x 75 units vials, 3 x 1 mL inert diluent vials), 1 pack 633371000168106 Luveris (inert substance) diluent, 1 mL vial 39654011000036102 Luveris 39654011000036102 Luveris 46932011000036102 lutropin alfa 75 units injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +1117611000168108 Donepezil (GH) 10 mg film-coated tablet, 98, blister pack 193667 1117601000168105 Donepezil (GH) 10 mg film-coated tablet, 98 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933201011000036107 donepezil hydrochloride 10 mg tablet, 98 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +80982011000036106 Resdone 1 mg film-coated tablet, 60, blister pack 147672 80539011000036102 Resdone 1 mg film-coated tablet, 60 80183011000036101 Resdone 1 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +45481000036101 Plavicor 75 mg film-coated tablet, 28, blister pack 187039 43631000036104 Plavicor 75 mg film-coated tablet, 28 40771000036102 Plavicor 75 mg film-coated tablet 40291000036108 Plavicor 40291000036108 Plavicor 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +783491000168104 Palexia IR 100 mg film-coated tablet, 10, blister pack 165318 783481000168102 Palexia IR 100 mg film-coated tablet, 10 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783471000168100 tapentadol 100 mg tablet, 10 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +970821000168109 Lypralin 300 mg hard capsule, 20, bottle 235848 970811000168102 Lypralin 300 mg hard capsule, 20 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +60921011000036107 Bisolvon Sinus oral liquid solution, 50 mL, bottle 61148 56875011000036108 Bisolvon Sinus oral liquid solution, 50 mL 54109011000036102 Bisolvon Sinus oral liquid solution, 15 mL 53573011000036101 Bisolvon Sinus 53573011000036101 Bisolvon Sinus 63627011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 50 mL 62032011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61715011000036104 bromhexine + pseudoephedrine +717031000168104 Omepro 20 mg enteric capsule, 98, blister pack 149516 717021000168102 Omepro 20 mg enteric capsule, 98 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 717011000168109 omeprazole 20 mg enteric capsule, 98 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +69262011000036105 Chlorhexidine Acetate (Baxter) 0.5% (2.5 g/500 mL) irrigation solution, 15 x 500 mL bottles 19474 67062011000036108 Chlorhexidine Acetate (Baxter) 0.5% (2.5 g/500 mL) irrigation solution, 15 x 500 mL bottles 65522011000036104 Chlorhexidine Acetate (Baxter) 0.5% (2.5 g/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71632011000036107 chlorhexidine acetate 0.5% (2.5 g/500 mL) solution, 15 x 500 mL bottles 70101011000036100 chlorhexidine acetate 0.5% (2.5 g/500 mL) solution, bottle 21404011000036101 chlorhexidine +670961000168107 Citalopram (Actavis) 10 mg film-coated tablet, 28, blister pack 158879 670951000168105 Citalopram (Actavis) 10 mg film-coated tablet, 28 670901000168106 Citalopram (Actavis) 10 mg film-coated tablet 670891000168107 Citalopram (Actavis) 670891000168107 Citalopram (Actavis) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +79062011000036104 Bio C-1000 film-coated tablet, 31, bottle 158507 78873011000036103 Bio C-1000 film-coated tablet, 31 78677011000036102 Bio C-1000 film-coated tablet 32191000168109 Bio C-1000 32191000168109 Bio C-1000 79243011000036105 ascorbic acid 400 mg + calcium ascorbate dihydrate 400 mg + sodium ascorbate 350 mg + citrus bioflavonoids extract 25 mg + rutoside 50 mg + hesperidin 50 mg + dog rose 250 mg + acerola 50 mg tablet, 31 79117011000036105 ascorbic acid 400 mg + calcium ascorbate dihydrate 400 mg + sodium ascorbate 350 mg + citrus bioflavonoids extract 25 mg + rutoside 50 mg + hesperidin 50 mg + dog rose 250 mg + acerola 50 mg tablet 79096011000036102 ascorbic acid + citrus bioflavonoids extract + rutoside + hesperidin + dog rose + acerola +18028011000036100 Lamotrigine (DP) 200 mg tablet, 56, blister pack 101368 11197011000036109 Lamotrigine (DP) 200 mg tablet, 56 5465011000036102 Lamotrigine (DP) 200 mg tablet 3413011000036108 Lamotrigine (DP) 3413011000036108 Lamotrigine (DP) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +80969011000036104 Resdone 4 mg film-coated tablet, 30, blister pack 147676 80549011000036101 Resdone 4 mg film-coated tablet, 30 80186011000036107 Resdone 4 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81630011000036109 risperidone 4 mg tablet, 30 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +907711000168101 Celecoxib (Ascent) 100 mg capsule, 50, blister pack 204616 907701000168104 Celecoxib (Ascent) 100 mg capsule, 50 907651000168109 Celecoxib (Ascent) 100 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +991251000168100 Bisoprolol (Apotex) 3.75 mg tablet, 7, blister pack 182112 991241000168102 Bisoprolol (Apotex) 3.75 mg tablet, 7 991231000168106 Bisoprolol (Apotex) 3.75 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 875771000168102 bisoprolol fumarate 3.75 mg tablet, 7 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +816601000168104 Atomoxetine (Amneal) 40 mg hard capsule, 28, blister pack 238338 816591000168106 Atomoxetine (Amneal) 40 mg hard capsule, 28 816531000168107 Atomoxetine (Amneal) 40 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +86892011000036108 Plaxel 150 mg/25 mL concentrated injection, 25 mL vial 165440 86774011000036105 Plaxel 150 mg/25 mL concentrated injection, 25 mL vial 86646011000036109 Plaxel 150 mg/25 mL concentrated injection, 25 mL vial 86588011000036109 Plaxel 86588011000036109 Plaxel 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +68791011000036107 Minirin Melt 120 microgram sublingual wafer, 30, blister pack 121721 66663011000036107 Minirin Melt 120 microgram sublingual wafer, 30 65342011000036100 Minirin Melt 120 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 71372011000036101 desmopressin 120 microgram sublingual wafer, 30 69977011000036102 desmopressin 120 microgram sublingual wafer 21750011000036107 desmopressin +50342011000036105 Tensogrip (36361259) 8.75 cm x 1 m lightweight bandage, 1, carton 49320011000036103 Tensogrip (36361259) 8.75 cm x 1 m lightweight bandage, 1 48521011000036109 Tensogrip (36361259) 8.75 cm x 1 m lightweight bandage 62231000168108 Tensogrip (36361259) 62231000168108 Tensogrip (36361259) 51301011000036101 bandage tubular 8.75 cm x 1 m lightweight bandage, 1 50830011000036109 bandage tubular 8.75 cm x 1 m lightweight bandage 50697011000036107 bandage tubular +21214011000036100 Eulexin 250 mg uncoated tablet, 100, bottle 9988 14349011000036106 Eulexin 250 mg uncoated tablet, 100 7631011000036109 Eulexin 250 mg uncoated tablet 3654011000036103 Eulexin 3654011000036103 Eulexin 28339011000036105 flutamide 250 mg tablet, 100 23649011000036103 flutamide 250 mg tablet 21762011000036101 flutamide +920697011000036102 Charcotabs 250 mg uncoated tablet, 60, bottle 113887 920358011000036104 Charcotabs 250 mg uncoated tablet, 60 920128011000036105 Charcotabs 250 mg uncoated tablet 920069011000036101 Charcotabs 920069011000036101 Charcotabs 920848011000036104 activated charcoal 250 mg tablet, 60 920823011000036106 activated charcoal 250 mg tablet 77437011000036109 activated charcoal +79696011000036105 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent ampoules), 1 pack, composite pack 157781 79512011000036102 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent ampoules), 1 pack 36204011000036103 Bicnu (carmustine 100 mg) powder for injection, vial 47991000168108 Bicnu 47991000168108 Bicnu 79827011000036108 carmustine 100 mg injection [10 vials] (&) inert substance diluent [10 x 3 mL ampoules], 1 pack 37976011000036102 carmustine 100 mg injection, vial 21824011000036101 carmustine +79696011000036105 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent ampoules), 1 pack, composite pack 157781 79512011000036102 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent ampoules), 1 pack 641161000168103 Bicnu (inert substance) diluent, 3 mL ampoule 47991000168108 Bicnu 47991000168108 Bicnu 79827011000036108 carmustine 100 mg injection [10 vials] (&) inert substance diluent [10 x 3 mL ampoules], 1 pack 632311000168109 inert substance diluent, 3 mL ampoule 21220011000036103 inert substance +19481000036109 Influvac Junior 2012 injection suspension, 1 x 0.25 mL syringe 164381 19191000036104 Influvac Junior 2012 injection suspension, 1 x 0.25 mL syringe 18551000036105 Influvac Junior 2012 injection suspension, 0.25 mL syringe 56411000168106 Influvac Junior 2012 56411000168106 Influvac Junior 2012 929773011000036109 influenza trivalent child vaccine 2011-2012 injection, 1 x 0.25 mL syringe 929728011000036100 influenza trivalent child vaccine 2011-2012 injection, 0.25 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +979411000168106 Paracetamol (CA) 500 mg uncoated tablet, 30, blister pack 197677 979401000168108 Paracetamol (CA) 500 mg uncoated tablet, 30 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 979391000168106 paracetamol 500 mg tablet, 30 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1103631000168107 Quetiapine (GH) 25 mg film-coated tablet, 30, blister pack 179902 1103621000168109 Quetiapine (GH) 25 mg film-coated tablet, 30 2321000036109 Quetiapine (GH) 25 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103611000168102 quetiapine 25 mg tablet, 30 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +20671011000036102 Endoxan 500 mg powder for injection, 1 vial 82127 13851011000036105 Endoxan 500 mg powder for injection, 1 vial 7138011000036101 Endoxan 500 mg powder for injection, 500 mg vial 3255011000036101 Endoxan 3255011000036101 Endoxan 27975011000036105 cyclophosphamide 500 mg injection, 1 vial 23299011000036109 cyclophosphamide 500 mg injection, vial 21733011000036103 cyclophosphamide +61192011000036103 Bugesic 200 mg film-coated tablet, 10, blister pack 75376 57128011000036106 Bugesic 200 mg film-coated tablet, 10 54211011000036101 Bugesic 200 mg film-coated tablet 53403011000036104 Bugesic 53403011000036104 Bugesic 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +50244011000036106 Risperidone (GA) 500 microgram film-coated tablet, 60, bottle 127769 49552011000036102 Risperidone (GA) 500 microgram film-coated tablet, 60 48480011000036102 Risperidone (GA) 500 microgram film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +907641000168107 Ceftriaxone (Alphapharm) 500 mg powder for injection, 1 vial 164919 907631000168103 Ceftriaxone (Alphapharm) 500 mg powder for injection, 1 vial 907621000168101 Ceftriaxone (Alphapharm) 500 mg powder for injection, 500 mg vial 69311000036105 Ceftriaxone (Alphapharm) 69311000036105 Ceftriaxone (Alphapharm) 26661011000036103 ceftriaxone 500 mg injection, 1 vial 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +803801000168107 Abilify ODT 15 mg orally disintegrating tablet, 90, blister pack 128898 803791000168106 Abilify ODT 15 mg orally disintegrating tablet, 90 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803781000168108 aripiprazole 15 mg orally disintegrating tablet, 90 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +812351000168107 Iptam 100 mg film-coated tablet, 20, blister pack 124087 812341000168105 Iptam 100 mg film-coated tablet, 20 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 812331000168101 sumatriptan 100 mg tablet, 20 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +737411000168109 Elelyso 200 units powder for injection, 1 vial 207695 737401000168106 Elelyso 200 units powder for injection, 1 vial 737381000168106 Elelyso 200 units powder for injection, 200 units vial 737341000168101 Elelyso 737341000168101 Elelyso 737391000168109 taliglucerase alfa 200 units injection, 1 vial 737371000168108 taliglucerase alfa 200 units injection, vial 737361000168102 taliglucerase alfa +924791000168105 Ramipril (SZ) 2.5 mg uncoated tablet, 30, blister pack 122018 924781000168107 Ramipril (SZ) 2.5 mg uncoated tablet, 30 924771000168109 Ramipril (SZ) 2.5 mg uncoated tablet 924371000168105 Ramipril (SZ) 924371000168105 Ramipril (SZ) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +974071000168106 Valganciclovir (Mylan) 450 mg film-coated tablet, 60, bottle 218477 974061000168100 Valganciclovir (Mylan) 450 mg film-coated tablet, 60 974051000168102 Valganciclovir (Mylan) 450 mg film-coated tablet 974041000168104 Valganciclovir (Mylan) 974041000168104 Valganciclovir (Mylan) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +870191000168107 Latanoprost/Timolol 50/5 (AN) eye drops solution, 2.5 mL, bottle 253693 870181000168109 Latanoprost/Timolol 50/5 (AN) eye drops solution, 2.5 mL 870171000168106 Latanoprost/Timolol 50/5 (AN) eye drops solution 870161000168100 Latanoprost/Timolol 50/5 (AN) 870161000168100 Latanoprost/Timolol 50/5 (AN) 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +987981000168105 Orcantas 20/8.19 film-coated tablet, 60, blister pack 273240 987971000168107 Orcantas 20/8.19 film-coated tablet, 60 987941000168100 Orcantas 20/8.19 film-coated tablet 987931000168109 Orcantas 20/8.19 987931000168109 Orcantas 20/8.19 984411000168101 trifluridine 20 mg + tipiracil 8.19 mg tablet, 60 984331000168100 trifluridine 20 mg + tipiracil 8.19 mg tablet 984151000168108 trifluridine + tipiracil +92931000036109 Tamiflu 6 mg/mL powder for oral liquid, 65 mL, bottle 188016 92811000036108 Tamiflu 6 mg/mL powder for oral liquid, 65 mL 92691000036104 Tamiflu 6 mg/mL powder for oral liquid 39602011000036100 Tamiflu 39602011000036100 Tamiflu 92821000036101 oseltamivir 6 mg/mL powder for oral liquid, 65 mL 92701000036104 oseltamivir 6 mg/mL powder for oral liquid 44916011000036104 oseltamivir +921591000168100 Caspofungin (Panpharma) 70 mg powder for injection, 1 vial 250572 921581000168103 Caspofungin (Panpharma) 70 mg powder for injection, 1 vial 921571000168101 Caspofungin (Panpharma) 70 mg powder for injection, 70 mg vial 921561000168107 Caspofungin (Panpharma) 921561000168107 Caspofungin (Panpharma) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +60142011000036101 Tefodine 180 mg film-coated tablet, 10, blister pack 129142 56101011000036108 Tefodine 180 mg film-coated tablet, 10 53790011000036103 Tefodine 180 mg film-coated tablet 53099011000036106 Tefodine 53099011000036106 Tefodine 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +926660011000036106 Risperidone (Sandoz) 1 mg film-coated tablet, 60, blister pack 126148 926136011000036103 Risperidone (Sandoz) 1 mg film-coated tablet, 60 925594011000036106 Risperidone (Sandoz) 1 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +44615011000036105 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 50, blister pack 90128 42068011000036104 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 50 40345011000036109 Sinutab Sinus, Allergy and Pain Relief uncoated tablet 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 46835011000036100 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 50 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +45411000036109 Indapamide Hemihydrate (PS) 2.5 mg sugar coated tablet, 90, blister pack 184244 43571000036103 Indapamide Hemihydrate (PS) 2.5 mg sugar coated tablet, 90 41431000036102 Indapamide Hemihydrate (PS) 2.5 mg sugar coated tablet 40431000036108 Indapamide Hemihydrate (PS) 40431000036108 Indapamide Hemihydrate (PS) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +19693011000036107 Zoton 15 mg enteric capsule, 30, blister pack 60602 12951011000036109 Zoton 15 mg enteric capsule, 30 6241011000036107 Zoton 15 mg enteric capsule 39911000168109 Zoton 39911000168109 Zoton 27464011000036103 lansoprazole 15 mg enteric capsule, 30 22811011000036107 lansoprazole 15 mg enteric capsule 21491011000036101 lansoprazole +69275011000036106 Glycine (Baxter) 1.5% (45 g/3 L) irrigation solution, 4 x 3 L bags 19478 67075011000036109 Glycine (Baxter) 1.5% (45 g/3 L) irrigation solution, 4 x 3 L bags 65446011000036108 Glycine (Baxter) 1.5% (45 g/3 L) irrigation solution, 3 L bag 65018011000036109 Glycine (Baxter) 65018011000036109 Glycine (Baxter) 71645011000036103 glycine 1.5% (45 g/3 L) solution, 4 x 3 L bags 70106011000036105 glycine 1.5% (45 g/3 L) solution, bag 69852011000036109 glycine +920541000168101 Cilopam 10 mg film-coated tablet, 28, blister pack 158862 920531000168105 Cilopam 10 mg film-coated tablet, 28 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +59779011000036102 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 24, blister pack 107036 55726011000036103 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 24 53713011000036105 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet 53160011000036105 Ibuprofen (Pharmacist Formula) 53160011000036105 Ibuprofen (Pharmacist Formula) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +966441000168106 Gamunex 10% 10 g/100 mL injection solution, 100 mL vial 117239 966431000168102 Gamunex 10% 10 g/100 mL injection solution, 100 mL vial 966421000168100 Gamunex 10% 10 g/100 mL injection solution, 100 mL vial 966321000168105 Gamunex 10% 966321000168105 Gamunex 10% 108911000036108 normal immunoglobulin 10 g/100 mL injection, 100 mL vial 107121000036102 normal immunoglobulin 10 g/100 mL injection, vial 74965011000036103 normal immunoglobulin +963381000168104 Norfloxacin (Apo) 400 mg film-coated tablet, 14, blister pack 151454 963371000168102 Norfloxacin (Apo) 400 mg film-coated tablet, 14 963361000168108 Norfloxacin (Apo) 400 mg film-coated tablet 963351000168106 Norfloxacin (Apo) 963351000168106 Norfloxacin (Apo) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +1116601000168107 Telmisartan/Amlodipine 40/5 (Apo) uncoated tablet, 28, blister pack 276429 1116591000168100 Telmisartan/Amlodipine 40/5 (Apo) uncoated tablet, 28 1116581000168103 Telmisartan/Amlodipine 40/5 (Apo) uncoated tablet 1116571000168101 Telmisartan/Amlodipine 40/5 (Apo) 1116571000168101 Telmisartan/Amlodipine 40/5 (Apo) 932434011000036105 telmisartan 40 mg + amlodipine 5 mg tablet, 28 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +60708011000036103 Dimetapp DM Cough and Cold Drops oral liquid solution, 50 mL, bottle 43578 56666011000036100 Dimetapp DM Cough and Cold Drops oral liquid solution, 50 mL 54025011000036104 Dimetapp DM Cough and Cold Drops oral liquid solution 21281000168109 Dimetapp DM Cough and Cold Drops 21281000168109 Dimetapp DM Cough and Cold Drops 63884011000036108 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 50 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +1116561000168107 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 56, blister pack 158167 1116551000168105 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 56 1116341000168100 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 922592011000036104 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 56 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +20177011000036109 Cephalexin (Terry White Chemists) 250 mg hard capsule, 20, blister pack 73867 13400011000036102 Cephalexin (Terry White Chemists) 250 mg hard capsule, 20 6685011000036100 Cephalexin (Terry White Chemists) 250 mg hard capsule 4078011000036104 Cephalexin (Terry White Chemists) 4078011000036104 Cephalexin (Terry White Chemists) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +786721000168100 Oxycodone MR (Apotex) 10 mg modified release tablet, 20, blister pack 214503 786711000168107 Oxycodone MR (Apotex) 10 mg modified release tablet, 20 786701000168109 Oxycodone MR (Apotex) 10 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +1074661000168103 Cefazolin (Auro) 500 mg powder for injection, 5 vials 174066 1074651000168100 Cefazolin (Auro) 500 mg powder for injection, 5 vials 1074621000168108 Cefazolin (Auro) 500 mg powder for injection, 500 mg vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 32937011000036100 cefazolin 500 mg injection, 5 vials 32930011000036101 cefazolin 500 mg injection, vial 21621011000036107 cefazolin +18159011000036104 Eulexin 250 mg uncoated tablet, 100, blister pack 15471 14349011000036106 Eulexin 250 mg uncoated tablet, 100 7631011000036109 Eulexin 250 mg uncoated tablet 3654011000036103 Eulexin 3654011000036103 Eulexin 28339011000036105 flutamide 250 mg tablet, 100 23649011000036103 flutamide 250 mg tablet 21762011000036101 flutamide +770521000168100 Actair 300 IR sublingual tablet, 28, blister pack 770511000168107 Actair 300 IR sublingual tablet, 28 770381000168108 Actair 300 IR sublingual tablet 768771000168102 Actair 300 IR 768771000168102 Actair 300 IR 770501000168109 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet, 28 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +104491000036104 Irbesartan (GA) 150 mg film-coated tablet, 30, blister pack 192794 101701000036100 Irbesartan (GA) 150 mg film-coated tablet, 30 98271000036103 Irbesartan (GA) 150 mg film-coated tablet 97991000036108 Irbesartan (GA) 97991000036108 Irbesartan (GA) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +924881000168103 Ramipril (SZ) 10 mg uncoated tablet, 30, blister pack 122024 924871000168101 Ramipril (SZ) 10 mg uncoated tablet, 30 924861000168107 Ramipril (SZ) 10 mg uncoated tablet 924371000168105 Ramipril (SZ) 924371000168105 Ramipril (SZ) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +921982011000036109 Flucloxacillin (DBL) 1 g powder for injection, 5 vials 50579 921540011000036105 Flucloxacillin (DBL) 1 g powder for injection, 5 vials 921072011000036106 Flucloxacillin (DBL) 1 g powder for injection, vial 920930011000036108 Flucloxacillin (DBL) 920930011000036108 Flucloxacillin (DBL) 28101011000036108 flucloxacillin 1 g injection, 5 vials 23409011000036107 flucloxacillin 1 g injection, vial 21623011000036108 flucloxacillin +19248011000036106 Sevredol 10 mg film-coated tablet, 20, blister pack 47543 12539011000036101 Sevredol 10 mg film-coated tablet, 20 6023011000036101 Sevredol 10 mg film-coated tablet 3885011000036104 Sevredol 3885011000036104 Sevredol 27185011000036100 morphine sulfate pentahydrate 10 mg tablet, 20 22547011000036106 morphine sulfate pentahydrate 10 mg tablet 21252011000036100 morphine +926931011000036106 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel, 20 g, tube 91701 926325011000036103 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel, 20 g 925762011000036101 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 900058011000036100 diclofenac sodium 1% gel, 20 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +1109061000168106 Nicotinell Tropical Fruit 2 mg chewing gum, 24, blister pack 279617 1109051000168109 Nicotinell Tropical Fruit 2 mg chewing gum, 24 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +803711000168102 Abilify ODT 15 mg orally disintegrating tablet, 56, blister pack 128898 803701000168100 Abilify ODT 15 mg orally disintegrating tablet, 56 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803691000168100 aripiprazole 15 mg orally disintegrating tablet, 56 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +74251000036107 Levetiracetam (Pfizer) 250 mg film-coated tablet, 60, blister pack 182825 71831000036103 Levetiracetam (Pfizer) 250 mg film-coated tablet, 60 70121000036104 Levetiracetam (Pfizer) 250 mg film-coated tablet 69321000036103 Levetiracetam (Pfizer) 69321000036103 Levetiracetam (Pfizer) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +991271000168109 Lyrica 100 mg hard capsule, 56, bottle 99527 991261000168103 Lyrica 100 mg hard capsule, 56 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +79045011000036104 Bispro 10 mg film-coated tablet, 10, blister pack 130182 78798011000036104 Bispro 10 mg film-coated tablet, 10 78627011000036103 Bispro 10 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79213011000036103 bisoprolol fumarate 10 mg tablet, 10 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +933239471000036102 Paclitaxel (Pfizer) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 176333 933236771000036101 Paclitaxel (Pfizer) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 933234691000036102 Paclitaxel (Pfizer) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 933234201000036108 Paclitaxel (Pfizer) 933234201000036108 Paclitaxel (Pfizer) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +933291000168101 Centevo 150/37.5/200 mg film-coated tablet, 100, bottle 238857 933281000168104 Centevo 150/37.5/200 mg film-coated tablet, 100 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 28185011000036109 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 100 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +21155011000036106 Salofalk 500 mg enteric tablet, 100, blister pack 98747 14297011000036101 Salofalk 500 mg enteric tablet, 100 7583011000036105 Salofalk 500 mg enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 28288011000036101 mesalazine 500 mg enteric tablet, 100 23602011000036104 mesalazine 500 mg enteric tablet 21351011000036101 mesalazine +21155011000036106 Salofalk 500 mg enteric tablet, 100, blister pack 133472 14297011000036101 Salofalk 500 mg enteric tablet, 100 7583011000036105 Salofalk 500 mg enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 28288011000036101 mesalazine 500 mg enteric tablet, 100 23602011000036104 mesalazine 500 mg enteric tablet 21351011000036101 mesalazine +43647011000036108 Zemplar 2 microgram soft capsule, 30, bottle 121763 41259011000036108 Zemplar 2 microgram soft capsule, 30 39939011000036101 Zemplar 2 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46198011000036109 paricalcitol 2 microgram capsule, 30 45026011000036105 paricalcitol 2 microgram capsule 44899011000036102 paricalcitol +852691000168104 Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack 166853 852681000168102 Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 26281000168100 Actonel EC Combi 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 852671000168100 risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +852691000168104 Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack 166853 852681000168102 Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7 930063011000036103 Actonel EC Once-a-Week 35 mg enteric tablet 26281000168100 Actonel EC Combi 700017651000036104 Actonel EC Once-a-Week 852671000168100 risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +770681000168102 Actair Continuation Treatment 300 IR sublingual tablet, 30, blister pack 233471 770671000168100 Actair Continuation Treatment 300 IR sublingual tablet, 30 770651000168109 Actair Continuation Treatment 300 IR sublingual tablet 769331000168109 Actair Continuation Treatment 300 IR 769331000168109 Actair Continuation Treatment 300 IR 770661000168106 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet, 30 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +925306011000036102 Gemcitabine (Kabi) 1 g powder for injection, 1 vial 162337 924843011000036106 Gemcitabine (Kabi) 1 g powder for injection, 1 vial 924526011000036101 Gemcitabine (Kabi) 1 g powder for injection, vial 924404011000036105 Gemcitabine (Kabi) 924404011000036105 Gemcitabine (Kabi) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +782201000168100 Pregabalin (SZ) 25 mg hard capsule, 56, blister pack 210047 782191000168103 Pregabalin (SZ) 25 mg hard capsule, 56 782181000168101 Pregabalin (SZ) 25 mg hard capsule 781921000168106 Pregabalin (SZ) 781921000168106 Pregabalin (SZ) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +50261011000036104 Phlexy-10 1 g tablet, 75, bottle 49476011000036109 Phlexy-10 1 g tablet, 75 48750011000036102 Phlexy-10 1 g tablet 48301011000036102 Phlexy-10 48301011000036102 Phlexy-10 51434011000036104 amino acid formula without phenylalanine 1 g tablet, 75 50950011000036100 amino acid formula without phenylalanine 1 g tablet 50722011000036107 amino acid formula without phenylalanine +91651000036101 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 30, blister pack 192876 90141000036101 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 30 88251000036109 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +91651000036101 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 30, blister pack 202703 90141000036101 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet, 30 88251000036109 Ibuprofen and Codeine (Discount Drug Stores) film-coated tablet 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 87781000036109 Ibuprofen and Codeine (Discount Drug Stores) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +68837011000036108 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 770 g, jar 10184 66488011000036103 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 770 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71221011000036100 psyllium husk powder 312.8 mg/g powder for oral liquid, 770 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +772051000168102 Claratyne 10 mg uncoated tablet, 1, blister pack 34698 772041000168104 Claratyne 10 mg uncoated tablet, 1 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 63629011000036108 loratadine 10 mg tablet, 1 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +60747011000036107 Codapane uncoated tablet, 48, blister pack 50763 56705011000036103 Codapane uncoated tablet, 48 54041011000036103 Codapane uncoated tablet 4392011000036108 Codapane 4392011000036108 Codapane 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +21116011000036106 Vytorin 10/80 uncoated tablet, 30, blister pack 98117 14259011000036101 Vytorin 10/80 uncoated tablet, 30 7545011000036100 Vytorin 10/80 uncoated tablet 59821000168106 Vytorin 10/80 59821000168106 Vytorin 10/80 28254011000036102 ezetimibe 10 mg + simvastatin 80 mg tablet, 30 23568011000036105 ezetimibe 10 mg + simvastatin 80 mg tablet 21565011000036108 ezetimibe + simvastatin +25261000036105 Amoxycillin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 97626 23041000036100 Amoxycillin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL 20501000036100 Amoxycillin (Chemmart) 125 mg/5 mL powder for oral liquid, 5 mL 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +25261000036105 Amoxycillin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 76234 23041000036100 Amoxycillin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL 20501000036100 Amoxycillin (Chemmart) 125 mg/5 mL powder for oral liquid, 5 mL 4323011000036106 Amoxycillin (Chemmart) 4323011000036106 Amoxycillin (Chemmart) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +73272011000036101 Jurnista 8 mg modified release tablet, 14, blister pack 141508 73070011000036109 Jurnista 8 mg modified release tablet, 14 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73468011000036105 hydromorphone hydrochloride 8 mg modified release tablet, 14 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +19180011000036104 Ralovera 10 mg uncoated tablet, 100, blister pack 46532 12477011000036102 Ralovera 10 mg uncoated tablet, 100 5334011000036103 Ralovera 10 mg uncoated tablet 4418011000036101 Ralovera 4418011000036101 Ralovera 27144011000036107 medroxyprogesterone acetate 10 mg tablet, 100 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +945011000168101 Cilopam-S 5 mg film-coated tablet, 14, blister pack 191871 945001000168104 Cilopam-S 5 mg film-coated tablet, 14 944981000168107 Cilopam-S 5 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 944991000168105 escitalopram 5 mg tablet, 14 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +783581000168103 Palexia IR 100 mg film-coated tablet, 28, blister pack 165318 783571000168101 Palexia IR 100 mg film-coated tablet, 28 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783561000168107 tapentadol 100 mg tablet, 28 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +931592011000036102 Pratin 10 mg film-coated tablet, 100, bottle 163556 930753011000036109 Pratin 10 mg film-coated tablet, 100 930036011000036102 Pratin 10 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932414011000036100 pravastatin sodium 10 mg tablet, 100 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +33507011000036109 Allereze 10 mg film-coated tablet, 10, blister pack 117492 33250011000036107 Allereze 10 mg film-coated tablet, 10 33019011000036102 Allereze 10 mg film-coated tablet 32966011000036105 Allereze 32966011000036105 Allereze 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +855591000168106 Algerika 300 mg hard capsule, 56, blister pack 229605 855581000168108 Algerika 300 mg hard capsule, 56 855511000168102 Algerika 300 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1074581000168108 Cefazolin (Auro) 2 g powder for injection, 5 vials 174073 1074571000168105 Cefazolin (Auro) 2 g powder for injection, 5 vials 1074531000168107 Cefazolin (Auro) 2 g powder for injection, 2 g vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 1074561000168104 cefazolin 2 g injection, 5 vials 923967011000036100 cefazolin 2 g injection, vial 21621011000036107 cefazolin +45571000036102 Meloxicam (PS) 15 mg uncoated tablet, 30, blister pack 189818 43701000036103 Meloxicam (PS) 15 mg uncoated tablet, 30 41141000036102 Meloxicam (PS) 15 mg uncoated tablet 40151000036106 Meloxicam (PS) 40151000036106 Meloxicam (PS) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +68680011000036108 Sodium Chloride (AstraZeneca) 20% (2 g/10 mL) concentrated injection, 50 x 10 mL ampoules 11983 66651011000036104 Sodium Chloride (AstraZeneca) 20% (2 g/10 mL) concentrated injection, 50 x 10 mL ampoules 65208011000036101 Sodium Chloride (AstraZeneca) 20% (2 g/10 mL) concentrated injection, 10 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71361011000036102 sodium chloride 20% (2 g/10 mL) injection, 50 x 10 mL ampoules 69973011000036106 sodium chloride 20% (2 g/10 mL) injection, ampoule 21308011000036103 sodium chloride +965071000168104 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 3, blister pack 134861 965061000168105 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 3 965051000168108 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 51515011000036104 clarithromycin 500 mg tablet, 3 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +668451000168108 Advate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack 100384 668441000168106 Advate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack 929934011000036104 Advate (octocog alfa 250 units) powder for injection, 250 units vial 65054011000036106 Advate 65054011000036106 Advate 668431000168102 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 922151011000036106 octocog alfa 250 units injection, vial 69843011000036100 octocog alfa +668451000168108 Advate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack 100384 668441000168106 Advate (1 x 250 units vial, 1 x 2 mL inert diluent vial), 1 pack 668391000168107 Advate (inert substance) diluent, 2 mL vial 65054011000036106 Advate 65054011000036106 Advate 668431000168102 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +925315011000036106 Clopidogrel (Actavis) 75 mg film-coated tablet, 20, blister pack 164866 924851011000036108 Clopidogrel (Actavis) 75 mg film-coated tablet, 20 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 925442011000036101 clopidogrel 75 mg tablet, 20 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +919021000168102 Temolide 20 mg hard capsule, 5, bottle 192679 919011000168109 Temolide 20 mg hard capsule, 5 919001000168106 Temolide 20 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +907551000168108 Celecoxib (GA) 100 mg capsule, 50, blister pack 204620 907541000168106 Celecoxib (GA) 100 mg capsule, 50 907461000168109 Celecoxib (GA) 100 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +19710011000036109 Felodur ER 5 mg modified release tablet, 30, blister pack 60981 12966011000036107 Felodur ER 5 mg modified release tablet, 30 6255011000036107 Felodur ER 5 mg modified release tablet 12641000168102 Felodur ER 12641000168102 Felodur ER 27475011000036108 felodipine 5 mg modified release tablet, 30 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +926873011000036102 Resolve Balm cream, 25 g, tube 53487 926269011000036103 Resolve Balm cream, 25 g 925715011000036105 Resolve Balm cream 925555011000036102 Resolve Balm 925555011000036102 Resolve Balm 927373011000036101 miconazole nitrate 2% + bufexamac 5% cream, 25 g 927017011000036101 miconazole nitrate 2% + bufexamac 5% cream 926975011000036105 miconazole + bufexamac +146341000036104 Sevikar HCT 40/5/25 film-coated tablet, 30, blister pack 199007 145071000036104 Sevikar HCT 40/5/25 film-coated tablet, 30 143651000036100 Sevikar HCT 40/5/25 film-coated tablet 58551000168107 Sevikar HCT 40/5/25 58551000168107 Sevikar HCT 40/5/25 145081000036102 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 25 mg tablet, 30 143661000036102 olmesartan medoxomil 40 mg + amlodipine 5 mg + hydrochlorothiazide 25 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +953561000168109 Airflusal Forspiro 500/50 powder for inhalation, 60 actuations, blister pack 220718 953551000168107 Airflusal Forspiro 500/50 powder for inhalation, 60 actuations 953541000168105 Airflusal Forspiro 500/50 powder for inhalation, actuation 953531000168101 Airflusal Forspiro 500/50 953531000168101 Airflusal Forspiro 500/50 27673011000036105 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 23010011000036109 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +766341000168107 GA1 Anamix Junior powder for oral liquid, 30 x 18 g sachets 766331000168103 GA1 Anamix Junior powder for oral liquid, 30 x 18 g sachets 766311000168108 GA1 Anamix Junior powder for oral liquid, 18 g sachet 766181000168104 GA1 Anamix Junior 766181000168104 GA1 Anamix Junior 766321000168101 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 30 x 18 g sachets 766301000168105 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 18 g sachet 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +20118011000036103 Rozex 0.75% cream, 30 g, tube 72393 13342011000036103 Rozex 0.75% cream, 30 g 6627011000036103 Rozex 0.75% cream 3009011000036102 Rozex 3009011000036102 Rozex 27704011000036107 metronidazole 0.75% cream, 30 g 23039011000036105 metronidazole 0.75% cream 21482011000036106 metronidazole +774981000168103 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 100 mL, bottle 90104 774971000168101 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 100 mL 930128011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 100 mg/5 mL oral liquid suspension, 5 mL 929892011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 929892011000036109 Dimetapp Children's Ibuprofen Pain and Fever Relief 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +942041000168106 Sodium Valproate EC (Sanofi) 500 mg enteric tablet, 10, blister pack 140155 942031000168102 Sodium Valproate EC (Sanofi) 500 mg enteric tablet, 10 942011000168107 Sodium Valproate EC (Sanofi) 500 mg enteric tablet 942001000168109 Sodium Valproate EC (Sanofi) 942001000168109 Sodium Valproate EC (Sanofi) 942021000168100 valproate sodium 500 mg enteric tablet, 10 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +717351000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 56, bottle 167313 717331000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 56 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716751000168106 omeprazole 20 mg enteric capsule, 56 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +740401000168109 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet, 4, blister pack 163654 740391000168107 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet, 4 740381000168109 Ondansetron ODT (SZ) 8 mg orally disintegrating tablet 740371000168106 Ondansetron ODT (SZ) 740371000168106 Ondansetron ODT (SZ) 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +104571000036102 Irbesatzide 300/25 film-coated tablet, 30, blister pack 192830 101781000036106 Irbesatzide 300/25 film-coated tablet, 30 99121000036103 Irbesatzide 300/25 film-coated tablet 42361000168103 Irbesatzide 300/25 42361000168103 Irbesatzide 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +870031000168107 Atomerra 100 mg hard capsule, 56, blister pack 234811 870021000168109 Atomerra 100 mg hard capsule, 56 869951000168102 Atomerra 100 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830171000168108 atomoxetine 100 mg capsule, 56 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +933239311000036103 Prozine (Pharmacor) 5 mg uncoated tablet, 14, blister pack 172127 933236561000036102 Prozine (Pharmacor) 5 mg uncoated tablet, 14 933234621000036100 Prozine (Pharmacor) 5 mg uncoated tablet 933234271000036104 Prozine (Pharmacor) 933234271000036104 Prozine (Pharmacor) 924171011000036104 prochlorperazine maleate 5 mg tablet, 14 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +799461000168108 Abyraz 15 mg uncoated tablet, 7, blister pack 159506 799451000168106 Abyraz 15 mg uncoated tablet, 7 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799441000168109 aripiprazole 15 mg tablet, 7 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +37598011000036101 Diprosone OV 0.05% modified cream, 5 g, tube 18825 36865011000036108 Diprosone OV 0.05% modified cream, 5 g 36200011000036108 Diprosone OV 0.05% modified cream 8541000168102 Diprosone OV 8541000168102 Diprosone OV 38752011000036104 betamethasone (as dipropionate) 0.05% modified cream, 5 g 125341000036106 betamethasone (as dipropionate) 0.05% modified cream 21372011000036109 betamethasone dipropionate +872911000168100 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 19447 872901000168103 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 872851000168107 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 929875011000036107 Synthamin 13 Amino Acid 8% with Electrolytes 929875011000036107 Synthamin 13 Amino Acid 8% with Electrolytes 872891000168102 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle 872841000168105 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle 77430011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +20632011000036105 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) film-coated tablet, 10, blister pack 81166 13812011000036108 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) film-coated tablet, 10 7098011000036102 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) film-coated tablet 12601000168104 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) 12601000168104 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20632011000036105 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) film-coated tablet, 10, blister pack 163701 13812011000036108 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) film-coated tablet, 10 7098011000036102 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) film-coated tablet 12601000168104 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) 12601000168104 Amoxycillin and Clavulanic Acid 875/125 (Terry White Chemists) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +69043011000036104 QV Flare Up Bath Oil, 200 mL, bottle 142064 66845011000036108 QV Flare Up Bath Oil, 200 mL 65315011000036104 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 71457011000036108 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil, 200 mL 70017011000036104 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +920441000168102 Montelukast (APL) 5 mg chewable tablet, 28, blister pack 193240 920431000168106 Montelukast (APL) 5 mg chewable tablet, 28 920391000168101 Montelukast (APL) 5 mg chewable tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +1060151000168106 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 14, blister pack 234539 1060141000168109 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 14 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911341000168109 rosuvastatin 20 mg tablet, 14 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +84289011000036103 Pantoprazole (Sandoz) 40 mg enteric tablet, 5, blister pack 147367 83982011000036107 Pantoprazole (Sandoz) 40 mg enteric tablet, 5 83617011000036107 Pantoprazole (Sandoz) 40 mg enteric tablet 83562011000036104 Pantoprazole (Sandoz) 83562011000036104 Pantoprazole (Sandoz) 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +77397011000036105 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL ampoules 76064 76813011000036101 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL ampoules 76188011000036100 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 mL ampoule 21931000168100 Omnipaque-300 21931000168100 Omnipaque-300 78317011000036100 iohexol 647 mg (iodine 300 mg)/mL injection, 10 x 10 mL ampoules 77603011000036106 iohexol 647 mg (iodine 300 mg)/mL injection, 10 mL ampoule 77459011000036103 iohexol +61582011000036106 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 48, blister pack 94969 57504011000036102 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 48 54329011000036101 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet 53225011000036108 Ibuprofen (Soul Pattinson) 53225011000036108 Ibuprofen (Soul Pattinson) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1057261000168109 Atorvastatin (Medis) 80 mg film-coated tablet, 10, blister pack 217181 1057251000168107 Atorvastatin (Medis) 80 mg film-coated tablet, 10 1057241000168105 Atorvastatin (Medis) 80 mg film-coated tablet 1057221000168104 Atorvastatin (Medis) 1057221000168104 Atorvastatin (Medis) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +60541011000036103 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet, 96, blister pack 152039 56499011000036109 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet, 96 53942011000036104 Sinus Allergy and Pain Relief PE (Amcal) uncoated tablet 53346011000036105 Sinus Allergy and Pain Relief PE (Amcal) 53346011000036105 Sinus Allergy and Pain Relief PE (Amcal) 63384011000036106 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 96 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +146181000036105 Erivedge 150 mg hard capsule, 28, blister pack 196234 145261000036100 Erivedge 150 mg hard capsule, 28 143631000036108 Erivedge 150 mg hard capsule 143251000036102 Erivedge 143251000036102 Erivedge 145271000036108 vismodegib 150 mg capsule, 28 143641000036103 vismodegib 150 mg capsule 146511000036109 vismodegib +1112031000168107 Syquet XR 400 mg modified release tablet, 60, blister pack 199869 1112021000168109 Syquet XR 400 mg modified release tablet, 60 1112011000168102 Syquet XR 400 mg modified release tablet 1111931000168101 Syquet XR 1111931000168101 Syquet XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +20602011000036100 Norfloxacin (GenRx) 400 mg film-coated tablet, 14, blister pack 80662 13784011000036100 Norfloxacin (GenRx) 400 mg film-coated tablet, 14 7070011000036106 Norfloxacin (GenRx) 400 mg film-coated tablet 3282011000036102 Norfloxacin (GenRx) 3282011000036102 Norfloxacin (GenRx) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +714451000168109 Metformin (Auro) 850 mg film-coated tablet, 60, blister pack 180435 714441000168107 Metformin (Auro) 850 mg film-coated tablet, 60 714381000168105 Metformin (Auro) 850 mg film-coated tablet 714361000168101 Metformin (Auro) 714361000168101 Metformin (Auro) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +858491000168100 Amichlor 50 mg film-coated tablet, 20, blister pack 215391 858481000168103 Amichlor 50 mg film-coated tablet, 20 858361000168102 Amichlor 50 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692331000168108 amitriptyline hydrochloride 50 mg tablet, 20 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +18032011000036100 Diltahexal CD 240 mg modified release capsule, 30, blister pack 131301 11919011000036101 Diltahexal CD 240 mg modified release capsule, 30 5120011000036102 Diltahexal CD 240 mg modified release capsule 26391000168107 Diltahexal CD 26391000168107 Diltahexal CD 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +649681000168102 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 200 mL, bottle 178301 649671000168100 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 200 mL 649641000168107 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +705861000168106 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, jar 705851000168109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 705841000168107 glycerol 10% + cetomacrogol aqueous cream, 100 mL 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +82866011000036105 Mircera 360 microgram/0.6 mL injection solution, 0.6 mL syringe 153804 82773011000036109 Mircera 360 microgram/0.6 mL injection solution, 0.6 mL syringe 82683011000036108 Mircera 360 microgram/0.6 mL injection solution, 0.6 mL syringe 82658011000036106 Mircera 82658011000036106 Mircera 82993011000036108 epoetin beta 360 microgram/0.6 mL injection, 0.6 mL syringe 82930011000036109 epoetin beta 360 microgram/0.6 mL injection, syringe 21625011000036109 epoetin beta +851161000168109 Lomotil uncoated tablet, 100, blister pack 74475 851151000168107 Lomotil uncoated tablet, 100 851051000168108 Lomotil uncoated tablet 3447011000036105 Lomotil 3447011000036105 Lomotil 851141000168105 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 100 851001000168109 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet 850991000168108 diphenoxylate + atropine sulfate monohydrate +858651000168107 Amiodarone (Winthrop) 150 mg/3 mL injection solution, 10 x 3 mL ampoules 125876 858641000168105 Amiodarone (Winthrop) 150 mg/3 mL injection solution, 10 x 3 mL ampoules 858631000168101 Amiodarone (Winthrop) 150 mg/3 mL injection solution, 3 mL ampoule 858551000168106 Amiodarone (Winthrop) 858551000168106 Amiodarone (Winthrop) 38715011000036100 amiodarone hydrochloride 150 mg/3 mL injection, 10 x 3 mL ampoules 37946011000036101 amiodarone hydrochloride 150 mg/3 mL injection, ampoule 21535011000036101 amiodarone +806691000168108 Irbesartan (Blooms The Chemist) 150 mg film-coated tablet, 30, blister pack 259884 806681000168105 Irbesartan (Blooms The Chemist) 150 mg film-coated tablet, 30 806671000168107 Irbesartan (Blooms The Chemist) 150 mg film-coated tablet 806631000168109 Irbesartan (Blooms The Chemist) 806631000168109 Irbesartan (Blooms The Chemist) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1103401000168102 Quetiapine (RBX) 200 mg film-coated tablet, 20, blister pack 166435 1103361000168106 Quetiapine (RBX) 200 mg film-coated tablet, 20 2721000036105 Quetiapine (RBX) 200 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +73331011000036103 Lamotrust 50 mg tablet, 56, blister pack 150748 73125011000036108 Lamotrust 50 mg tablet, 56 72967011000036101 Lamotrust 50 mg tablet 72919011000036109 Lamotrust 72919011000036109 Lamotrust 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +806771000168103 Perindopril Arginine (Chemmart) 5 mg film-coated tablet, 30, blister pack 184810 806761000168109 Perindopril Arginine (Chemmart) 5 mg film-coated tablet, 30 806701000168108 Perindopril Arginine (Chemmart) 5 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +59963011000036103 Nurofen Tension Headache 200 mg tablet, 6, blister pack 120354 55925011000036101 Nurofen Tension Headache 200 mg tablet, 6 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63923011000036109 ibuprofen 200 mg tablet, 6 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44310011000036106 Heparinised Saline (Pfizer (Perth)) 50 units/5 mL injection solution, 50 x 5 mL ampoules 66684 41777011000036108 Heparinised Saline (Pfizer (Perth)) 50 units/5 mL injection solution, 50 x 5 mL ampoules 40196011000036101 Heparinised Saline (Pfizer (Perth)) 50 units/5 mL injection solution, 5 mL ampoule 39732011000036103 Heparinised Saline (Pfizer (Perth)) 39732011000036103 Heparinised Saline (Pfizer (Perth)) 46583011000036105 heparin sodium 50 units/5 mL injection, 50 x 5 mL ampoules 45229011000036106 heparin sodium 50 units/5 mL injection, ampoule 858661000168109 heparin +809381000168107 PKU Baby oral liquid solution, 20 x 500 mL bottles 809371000168109 PKU Baby oral liquid solution, 20 x 500 mL bottles 809321000168108 PKU Baby oral liquid solution, 500 mL bottle 807071000168102 PKU Baby 807071000168102 PKU Baby 809361000168103 amino acid formula with fat, carbohydrate, vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine and supplemented with docosahexaenoic acid oral liquid, 20 x 500 mL bottles 809311000168101 amino acid formula with fat, carbohydrate, vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine and supplemented with docosahexaenoic acid oral liquid, 500 mL bottle 809301000168104 amino acid formula with fat, carbohydrate, vitamins, minerals and long chain polyunsaturated fatty acids without phenylalanine and supplemented with docosahexaenoic acid +60447011000036100 Travacalm Original uncoated tablet, 10, strip pack 14864 57218011000036103 Travacalm Original uncoated tablet, 10 54241011000036106 Travacalm Original uncoated tablet 53202011000036107 Travacalm Original 53202011000036107 Travacalm Original 63770011000036106 dimenhydrinate 50 mg + hyoscine hydrobromide trihydrate 200 microgram + caffeine 20 mg tablet, 10 62076011000036104 dimenhydrinate 50 mg + hyoscine hydrobromide trihydrate 200 microgram + caffeine 20 mg tablet 61790011000036107 dimenhydrinate + hyoscine hydrobromide trihydrate + caffeine +19964011000036108 Predmix 5 mg/mL oral liquid solution, 30 mL, bottle 67496 13207011000036100 Predmix 5 mg/mL oral liquid solution, 30 mL 6489011000036100 Predmix 5 mg/mL oral liquid solution 3224011000036101 Predmix 3224011000036101 Predmix 27619011000036104 prednisolone (as sodium phosphate) 5 mg/mL oral liquid, 30 mL 22957011000036100 prednisolone (as sodium phosphate) 5 mg/mL oral liquid 21374011000036100 prednisolone sodium phosphate +782121000168100 Voriconazole (Alphapharm) 50 mg film-coated tablet, 56, blister pack 206984 782111000168107 Voriconazole (Alphapharm) 50 mg film-coated tablet, 56 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +61565011000036101 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 60 mL, bottle 94150 57487011000036102 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 60 mL 54321011000036100 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 63885011000036107 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 60 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +69742011000036109 Cold and Flu Relief (Chemists' Own) film-coated tablet, 24, blister pack 93802 67541011000036109 Cold and Flu Relief (Chemists' Own) film-coated tablet, 24 65692011000036100 Cold and Flu Relief (Chemists' Own) film-coated tablet 64988011000036105 Cold and Flu Relief (Chemists' Own) 64988011000036105 Cold and Flu Relief (Chemists' Own) 63960011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62109011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +87694011000036107 Famciclovir (Apo) 250 mg film-coated tablet, 30, blister pack 160556 87475011000036103 Famciclovir (Apo) 250 mg film-coated tablet, 30 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87819011000036103 famciclovir 250 mg tablet, 30 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +43660011000036102 Dormizol 10 mg film-coated tablet, 7, blister pack 117953 41205011000036101 Dormizol 10 mg film-coated tablet, 7 39940011000036106 Dormizol 10 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +938991000168100 Levitam 750 mg film-coated tablet, 60, blister pack 143696 938981000168103 Levitam 750 mg film-coated tablet, 60 938971000168101 Levitam 750 mg film-coated tablet 6571000168108 Levitam 6571000168108 Levitam 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +973791000168107 Pregabalin (GH) 25 mg hard capsule, 56, blister pack 215685 973781000168109 Pregabalin (GH) 25 mg hard capsule, 56 973701000168101 Pregabalin (GH) 25 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1057321000168105 Atorvastatin (Medis) 80 mg film-coated tablet, 100, bottle 217183 1057311000168103 Atorvastatin (Medis) 80 mg film-coated tablet, 100 1057241000168105 Atorvastatin (Medis) 80 mg film-coated tablet 1057221000168104 Atorvastatin (Medis) 1057221000168104 Atorvastatin (Medis) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +69498011000036105 Dulcolax 5 mg enteric tablet, 80, blister pack 50792 67298011000036100 Dulcolax 5 mg enteric tablet, 80 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 71844011000036107 bisacodyl 5 mg enteric tablet, 80 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +69498011000036105 Dulcolax 5 mg enteric tablet, 80, blister pack 155405 67298011000036100 Dulcolax 5 mg enteric tablet, 80 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 71844011000036107 bisacodyl 5 mg enteric tablet, 80 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +723201000168101 Tacrolimus (Apotex) 1 mg hard capsule, 100, blister pack 209275 723191000168104 Tacrolimus (Apotex) 1 mg hard capsule, 100 723181000168102 Tacrolimus (Apotex) 1 mg hard capsule 723141000168107 Tacrolimus (Apotex) 723141000168107 Tacrolimus (Apotex) 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +44144011000036104 Paludrine 100 mg uncoated tablet, 100, bottle 53296 41620011000036103 Paludrine 100 mg uncoated tablet, 100 40108011000036104 Paludrine 100 mg uncoated tablet 39576011000036102 Paludrine 39576011000036102 Paludrine 46439011000036105 proguanil hydrochloride 100 mg tablet, 100 45157011000036103 proguanil hydrochloride 100 mg tablet 44948011000036108 proguanil +19013011000036104 Condyline Paint 0.5% solution, 3.5 mL, bottle 35097 12318011000036102 Condyline Paint 0.5% solution, 3.5 mL 5781011000036106 Condyline Paint 0.5% solution 44491000168105 Condyline Paint 44491000168105 Condyline Paint 27059011000036101 podophyllotoxin 0.5% solution, 3.5 mL 22428011000036101 podophyllotoxin 0.5% solution 21864011000036108 podophyllotoxin +43993011000036108 Penthrox 999.9 mg/g inhalation solution, 10 x 3 mL, bottles 43144 41484011000036100 Penthrox 999.9 mg/g inhalation solution, 10 x 3 mL 40008011000036107 Penthrox 999.9 mg/g inhalation solution 39767011000036109 Penthrox 39767011000036109 Penthrox 46330011000036107 methoxyflurane 999.9 mg/g inhalation solution, 10 x 3 mL 45084011000036107 methoxyflurane 999.9 mg/g inhalation solution 44935011000036103 methoxyflurane +59621000036100 Lamivudine (Alphapharm) 300 mg film-coated tablet, 30, blister pack 167593 59101000036103 Lamivudine (Alphapharm) 300 mg film-coated tablet, 30 58191000036101 Lamivudine (Alphapharm) 300 mg film-coated tablet 58071000036104 Lamivudine (Alphapharm) 58071000036104 Lamivudine (Alphapharm) 27947011000036104 lamivudine 300 mg tablet, 30 23271011000036103 lamivudine 300 mg tablet 21665011000036104 lamivudine +69258011000036102 Sodium Chloride (Baxter) 0.45% (2.25 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 19472 67058011000036100 Sodium Chloride (Baxter) 0.45% (2.25 g/500 mL) intravenous infusion injection, 18 x 500 mL bags 65341011000036106 Sodium Chloride (Baxter) 0.45% (2.25 g/500 mL) intravenous infusion injection, 500 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71628011000036107 sodium chloride 0.45% (2.25 g/500 mL) injection, 18 x 500 mL bags 70099011000036107 sodium chloride 0.45% (2.25 g/500 mL) injection, bag 21308011000036103 sodium chloride +33520011000036104 Simvastatin (Generic Health) 40 mg film-coated tablet, 30, blister pack 123817 33263011000036108 Simvastatin (Generic Health) 40 mg film-coated tablet, 30 33029011000036107 Simvastatin (Generic Health) 40 mg film-coated tablet 32971011000036105 Simvastatin (Generic Health) 32971011000036105 Simvastatin (Generic Health) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +990951000168103 Lyrica 50 mg hard capsule, 60, bottle 99480 990591000168104 Lyrica 50 mg hard capsule, 60 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +665391000168101 Remifentanil (Sandoz) 1 mg powder for injection, 5 vials 195285 665381000168104 Remifentanil (Sandoz) 1 mg powder for injection, 5 vials 665371000168102 Remifentanil (Sandoz) 1 mg powder for injection, vial 665361000168108 Remifentanil (Sandoz) 665361000168108 Remifentanil (Sandoz) 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +926905011000036102 Optimark 6.62 g/20 mL injection solution, 20 mL vial 76655 926299011000036101 Optimark 6.62 g/20 mL injection solution, 20 mL vial 925743011000036102 Optimark 6.62 g/20 mL injection solution, 20 mL vial 6001000168105 Optimark 6001000168105 Optimark 927393011000036105 gadoversetamide 6.62 g/20 mL injection, 20 mL vial 927034011000036102 gadoversetamide 6.62 g/20 mL injection, vial 926966011000036108 gadoversetamide +91731000036103 Tramadol Hydrochloride SR (Generic Health) 100 mg modified release tablet, 20, blister pack 194539 90251000036105 Tramadol Hydrochloride SR (Generic Health) 100 mg modified release tablet, 20 88331000036108 Tramadol Hydrochloride SR (Generic Health) 100 mg modified release tablet 19731000168108 Tramadol Hydrochloride SR (Generic Health) 19731000168108 Tramadol Hydrochloride SR (Generic Health) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +60931011000036109 Claratyne 10 mg effervescent tablet, 10, blister pack 62125 56885011000036101 Claratyne 10 mg effervescent tablet, 10 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 86561000036109 loratadine 10 mg effervescent tablet, 10 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +920755011000036106 Captopril (Sandoz) 25 mg film-coated tablet, 90, bottle 60108 920437011000036106 Captopril (Sandoz) 25 mg film-coated tablet, 90 920178011000036106 Captopril (Sandoz) 25 mg film-coated tablet 920077011000036102 Captopril (Sandoz) 920077011000036102 Captopril (Sandoz) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +841131000168104 Bansep 40 mg film-coated tablet, 30, blister pack 173483 841121000168102 Bansep 40 mg film-coated tablet, 30 841051000168106 Bansep 40 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +990931000168109 Metformin (Apotex) 250 mg film-coated tablet, 120, blister pack 157226 990921000168106 Metformin (Apotex) 250 mg film-coated tablet, 120 990911000168104 Metformin (Apotex) 250 mg film-coated tablet 990741000168103 Metformin (Apotex) 990741000168103 Metformin (Apotex) 963591000168109 metformin hydrochloride 250 mg tablet, 120 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +81165011000036106 Egozite Baby cream, 100 g, tube 56807 80667011000036107 Egozite Baby cream, 100 g 80232011000036104 Egozite Baby cream 80120011000036104 Egozite Baby 80120011000036104 Egozite Baby 81725011000036107 zinc oxide 15% + dimeticone-350 15% + light liquid paraffin 10% cream, 100 g 81302011000036105 zinc oxide 15% + dimeticone-350 15% + light liquid paraffin 10% cream 81228011000036105 zinc oxide + dimeticone-350 + light liquid paraffin +20498011000036103 Metformin Hydrochloride (Chemmart) 500 mg tablet, 100, blister pack 78616 13698011000036100 Metformin Hydrochloride (Chemmart) 500 mg tablet, 100 6980011000036108 Metformin Hydrochloride (Chemmart) 500 mg tablet 18621000168105 Metformin Hydrochloride (Chemmart) 18621000168105 Metformin Hydrochloride (Chemmart) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +786401000168100 Fentanyl (Sandoz) 37 microgram/hour patch, 3, sachet 152567 786391000168102 Fentanyl (Sandoz) 37 microgram/hour patch, 3 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780781000168104 fentanyl 37 microgram/hour patch, 3 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +792161000168109 Articadent Dental 4% with Adrenaline 1 in 100 000 injection solution, 50 x 2.2 mL cartridges 231745 792151000168107 Articadent Dental 4% with Adrenaline 1 in 100 000 injection solution, 50 x 2.2 mL cartridges 792131000168101 Articadent Dental 4% with Adrenaline 1 in 100 000 injection solution, 2.2 mL cartridge 792121000168104 Articadent Dental 4% with Adrenaline 1 in 100 000 792121000168104 Articadent Dental 4% with Adrenaline 1 in 100 000 792141000168105 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, 50 x 2.2 mL cartridges 44989011000036105 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +43630011000036108 Zemplar 4 microgram soft capsule, 7, blister pack 121764 41263011000036101 Zemplar 4 microgram soft capsule, 7 39913011000036105 Zemplar 4 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46202011000036106 paricalcitol 4 microgram capsule, 7 45027011000036108 paricalcitol 4 microgram capsule 44899011000036102 paricalcitol +25101000036101 Diltiazem Hydrochloride CD (Sandoz) 180 mg modified release capsule, 30, bottle 131298 22161000036106 Diltiazem Hydrochloride CD (Sandoz) 180 mg modified release capsule, 30 20471000036108 Diltiazem Hydrochloride CD (Sandoz) 180 mg modified release capsule 14301000168101 Diltiazem Hydrochloride CD (Sandoz) 14301000168101 Diltiazem Hydrochloride CD (Sandoz) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +1103311000168108 Quetiapine (AN) 200 mg film-coated tablet, 20, blister pack 170854 1103301000168105 Quetiapine (AN) 200 mg film-coated tablet, 20 655221000168104 Quetiapine (AN) 200 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +61444011000036104 Imflac 25 mg enteric tablet, 10, blister pack 90103 57369011000036103 Imflac 25 mg enteric tablet, 10 54287011000036107 Imflac 25 mg enteric tablet 14421000168100 Imflac 14421000168100 Imflac 63832011000036105 diclofenac sodium 25 mg enteric tablet, 10 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +121611000036100 Caprelsa 100 mg film-coated tablet, 30, blister pack 192496 120551000036108 Caprelsa 100 mg film-coated tablet, 30 119581000036102 Caprelsa 100 mg film-coated tablet 119171000036109 Caprelsa 119171000036109 Caprelsa 120561000036106 vandetanib 100 mg tablet, 30 119591000036100 vandetanib 100 mg tablet 121841000036100 vandetanib +996891000168104 TYR Tylactin Complete containing 15 g of protein equivalent bar, 14 x 81 g, sachet 996881000168102 TYR Tylactin Complete containing 15 g of protein equivalent bar, 14 x 81 g 996861000168106 TYR Tylactin Complete containing 15 g of protein equivalent bar, 81 g 996841000168107 TYR Tylactin Complete 996841000168107 TYR Tylactin Complete 996871000168100 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent bar, 14 x 81 g 996851000168109 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent bar, 81 g 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +782061000168106 Voriconazole (Alphapharm) 50 mg film-coated tablet, 28, blister pack 206984 782051000168109 Voriconazole (Alphapharm) 50 mg film-coated tablet, 28 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46816011000036101 voriconazole 50 mg tablet, 28 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +1065851000168107 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 40, blister pack 220729 1065841000168105 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 40 1065661000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +81080011000036106 Paracetamol (Apo) 500 mg uncoated tablet, 100, bottle 156815 78868011000036100 Paracetamol (Apo) 500 mg uncoated tablet, 100 78674011000036108 Paracetamol (Apo) 500 mg uncoated tablet 25791000168101 Paracetamol (Apo) 25791000168101 Paracetamol (Apo) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +962101000168100 Zinnat 125 mg powder for oral liquid, 10 sachets 81296 962091000168105 Zinnat 125 mg powder for oral liquid, 10 sachets 962071000168109 Zinnat 125 mg powder for oral liquid, 125 mg sachet 4288011000036102 Zinnat 4288011000036102 Zinnat 962081000168107 cefuroxime 125 mg powder for oral liquid, 10 sachets 962061000168103 cefuroxime 125 mg powder for oral liquid, sachet 21474011000036106 cefuroxime +1060051000168107 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 60, blister pack 234479 1060041000168105 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 60 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911001000168105 rosuvastatin 10 mg tablet, 60 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +708831000168106 Atozet 10 mg/20 mg tablet, 30, blister pack 216956 708821000168108 Atozet 10 mg/20 mg tablet, 30 708801000168104 Atozet 10 mg/20 mg tablet 708781000168103 Atozet 10 mg/20 mg 708781000168103 Atozet 10 mg/20 mg 708811000168101 ezetimibe 10 mg + atorvastatin 20 mg tablet, 30 708791000168100 ezetimibe 10 mg + atorvastatin 20 mg tablet 708601000168100 ezetimibe + atorvastatin +921811000168106 Dexafet 5 mg uncoated tablet, 100, bottle 270975 921791000168107 Dexafet 5 mg uncoated tablet, 100 921781000168109 Dexafet 5 mg uncoated tablet 921771000168106 Dexafet 921771000168106 Dexafet 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +20327011000036103 Adalat Oros 60 mg modified release tablet, 30, blister pack 76040 13536011000036100 Adalat Oros 60 mg modified release tablet, 30 6819011000036109 Adalat Oros 60 mg modified release tablet 28961000168100 Adalat Oros 28961000168100 Adalat Oros 28290011000036102 nifedipine 60 mg modified release tablet, 30 23604011000036108 nifedipine 60 mg modified release tablet 21241011000036108 nifedipine +18678011000036105 Suboxone 8/2 sublingual tablet, 28, blister pack 120160 11634011000036108 Suboxone 8/2 sublingual tablet, 28 5640011000036104 Suboxone 8/2 sublingual tablet 7031000168100 Suboxone 8/2 7031000168100 Suboxone 8/2 26714011000036108 buprenorphine 8 mg + naloxone 2 mg sublingual tablet, 28 22109011000036100 buprenorphine 8 mg + naloxone 2 mg sublingual tablet 21739011000036100 buprenorphine + naloxone +988621000168103 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 24, blister pack 277252 988611000168105 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 24 988581000168103 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +667161000168102 Duloxetine (Pharmacor) 60 mg enteric capsule, 28, blister pack 209157 667151000168104 Duloxetine (Pharmacor) 60 mg enteric capsule, 28 667141000168101 Duloxetine (Pharmacor) 60 mg enteric capsule 667101000168103 Duloxetine (Pharmacor) 667101000168103 Duloxetine (Pharmacor) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +146021000036105 Famciclovir (SCP) 250 mg film-coated tablet, 21, blister pack 176988 144781000036100 Famciclovir (SCP) 250 mg film-coated tablet, 21 143721000036104 Famciclovir (SCP) 250 mg film-coated tablet 143321000036100 Famciclovir (SCP) 143321000036100 Famciclovir (SCP) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +954061000168102 Tenofovir EMT (GH) film-coated tablet, 30, bottle 269196 954051000168104 Tenofovir EMT (GH) film-coated tablet, 30 954031000168105 Tenofovir EMT (GH) film-coated tablet 954011000168100 Tenofovir EMT (GH) 954011000168100 Tenofovir EMT (GH) 954041000168101 tenofovir disoproxil phosphate 291 mg + emtricitabine 200 mg tablet, 30 954021000168107 tenofovir disoproxil phosphate 291 mg + emtricitabine 200 mg tablet 851481000168106 tenofovir disoproxil + emtricitabine +1065771000168106 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 20, blister pack 220729 1065761000168100 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 20 1065661000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +823451000168104 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 6 x 0.6 mL syringes 221719 823441000168101 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 6 x 0.6 mL syringes 823391000168100 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 0.6 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823431000168105 enoxaparin sodium 60 mg/0.6 mL injection, 6 x 0.6 mL syringes 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +654481000168102 Dermatane 40 mg soft capsule, 30, blister pack 186345 654471000168100 Dermatane 40 mg soft capsule, 30 654461000168106 Dermatane 40 mg soft capsule 654421000168101 Dermatane 654421000168101 Dermatane 26690011000036108 isotretinoin 40 mg capsule, 30 22086011000036103 isotretinoin 40 mg capsule 21546011000036107 isotretinoin +782761000168109 Palexia IR 50 mg film-coated tablet, 14, blister pack 165310 782751000168107 Palexia IR 50 mg film-coated tablet, 14 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782741000168105 tapentadol 50 mg tablet, 14 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +705701000168103 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g, jar 14235 705691000168103 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g 705671000168104 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream 54461000168100 Salicylic Acid 5% in Sorbolene Cream (David Craig) 54461000168100 Salicylic Acid 5% in Sorbolene Cream (David Craig) 705681000168101 salicylic acid 5% + cetomacrogol aqueous cream, 100 g 705661000168105 salicylic acid 5% + cetomacrogol aqueous cream 69782011000036104 salicylic acid + cetomacrogol aqueous cream +86143011000036102 Gabatine 800 mg film-coated tablet, 500, blister pack 161571 85751011000036107 Gabatine 800 mg film-coated tablet, 500 85374011000036107 Gabatine 800 mg film-coated tablet 39179011000036102 Gabatine 39179011000036102 Gabatine 35777011000036108 gabapentin 800 mg tablet, 500 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +925295011000036100 Exforge 5/320 film-coated tablet, 14, blister pack 161820 924832011000036103 Exforge 5/320 film-coated tablet, 14 924523011000036107 Exforge 5/320 film-coated tablet 24141000168109 Exforge 5/320 24141000168109 Exforge 5/320 925430011000036104 amlodipine 5 mg + valsartan 320 mg tablet, 14 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +1100021000168107 Clarant 250 mg film-coated tablet, 100, blister pack 184264 1100011000168100 Clarant 250 mg film-coated tablet, 100 1099941000168100 Clarant 250 mg film-coated tablet 1099931000168109 Clarant 1099931000168109 Clarant 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +19162011000036102 Nicorette 10 mg/16 hours patch, 7, sachet 46059 12461011000036100 Nicorette 10 mg/16 hours patch, 7 5134011000036109 Nicorette 10 mg/16 hours patch 15261000168108 Nicorette 15261000168108 Nicorette 27135011000036105 nicotine 10 mg/16 hours patch, 7 22500011000036104 nicotine 10 mg/16 hours patch 21432011000036100 nicotine +60776011000036108 Vermox 100 mg/5 mL oral liquid solution, 15 mL, bottle 54703 56734011000036105 Vermox 100 mg/5 mL oral liquid solution, 15 mL 54055011000036103 Vermox 100 mg/5 mL oral liquid solution, 5 mL 19531000168104 Vermox 19531000168104 Vermox 63538011000036109 mebendazole 100 mg/5 mL oral liquid, 15 mL 62006011000036105 mebendazole 100 mg/5 mL oral liquid 21850011000036105 mebendazole +662821000168100 Irbesartan (GH) 75 mg film-coated tablet, 30, blister pack 191408 662811000168107 Irbesartan (GH) 75 mg film-coated tablet, 30 662801000168109 Irbesartan (GH) 75 mg film-coated tablet 662791000168108 Irbesartan (GH) 662791000168108 Irbesartan (GH) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +714221000168100 Rixubis (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204767 714211000168107 Rixubis (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 714111000168102 Rixubis (inert substance) diluent, 5 mL vial 714001000168104 Rixubis 714001000168104 Rixubis 714201000168109 nonacog gamma 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +714221000168100 Rixubis (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204767 714211000168107 Rixubis (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 714191000168106 Rixubis (nonacog gamma 250 units) powder for injection, 250 units vial 714001000168104 Rixubis 714001000168104 Rixubis 714201000168109 nonacog gamma 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 714181000168108 nonacog gamma 250 units injection, vial 714081000168107 nonacog gamma +104811000036106 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet, 30, bottle 175206 101981000036109 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet, 30 99081000036101 Irbesartan HCTZ 150/12.5 (Apo) film-coated tablet 33111000168105 Irbesartan HCTZ 150/12.5 (Apo) 33111000168105 Irbesartan HCTZ 150/12.5 (Apo) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +990771000168105 Metformin (Apotex) 500 mg film-coated tablet, 100, blister pack 157212 990761000168104 Metformin (Apotex) 500 mg film-coated tablet, 100 990751000168101 Metformin (Apotex) 500 mg film-coated tablet 990741000168103 Metformin (Apotex) 990741000168103 Metformin (Apotex) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +834181000168101 Eye Stream eye solution, 120 mL, bottle 19322 834171000168104 Eye Stream eye solution, 120 mL 834151000168108 Eye Stream eye solution 80097011000036101 Eye Stream 80097011000036101 Eye Stream 834161000168105 sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution, 120 mL 834141000168106 sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution 834131000168102 sodium chloride + potassium chloride + calcium chloride dihydrate + magnesium chloride + acetate + citric acid +699511000168101 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL syringe 699501000168104 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL syringe 699481000168108 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL syringe 686381000168107 Plegridy 686381000168107 Plegridy 699491000168106 peginterferon beta-1a 63 microgram/0.5 mL injection, 0.5 mL syringe 699471000168105 peginterferon beta-1a 63 microgram/0.5 mL injection, syringe 698561000168109 peginterferon beta-1a +60040011000036108 Avil Retard 75 mg modified release tablet, 5, blister pack 12394 56002011000036109 Avil Retard 75 mg modified release tablet, 5 53753011000036100 Avil Retard 75 mg modified release tablet 5261000168105 Avil Retard 5261000168105 Avil Retard 63190011000036109 pheniramine maleate 75 mg modified release tablet, 5 61881011000036101 pheniramine maleate 75 mg modified release tablet 61798011000036109 pheniramine +19916011000036101 LPV 250 mg hard capsule, 50, blister pack 66510 13161011000036106 LPV 250 mg hard capsule, 50 6444011000036109 LPV 250 mg hard capsule 4373011000036105 LPV 4373011000036105 LPV 27620011000036103 phenoxymethylpenicillin 250 mg capsule, 50 22958011000036104 phenoxymethylpenicillin 250 mg capsule 21370011000036105 phenoxymethylpenicillin +933239151000036101 Fentanyl (Sandoz) 25 microgram/hour patch, 7, sachet 152569 933235821000036100 Fentanyl (Sandoz) 25 microgram/hour patch, 7 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235831000036103 fentanyl 25 microgram/hour patch, 7 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +1005621000168102 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 162851 1005611000168109 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 1005601000168106 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 20 mL ampoule 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1005051000168104 ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules 1005031000168105 ropivacaine hydrochloride 200 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +20152011000036105 Remicade 100 mg powder for injection, 1 vial 73827 13375011000036107 Remicade 100 mg powder for injection, 1 vial 6660011000036107 Remicade 100 mg powder for injection, 100 mg vial 4252011000036107 Remicade 4252011000036107 Remicade 27724011000036101 infliximab 100 mg injection, 1 vial 23059011000036109 infliximab 100 mg injection, vial 21926011000036101 infliximab +823771000168102 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 6 x 1 mL syringes 221721 823761000168108 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 6 x 1 mL syringes 823681000168109 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, syringe 2391000168100 Clexane 2391000168100 Clexane 823751000168106 enoxaparin sodium 100 mg/mL injection, 6 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +980051000168103 Octanate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 98211 980041000168100 Octanate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 980021000168106 Octanate (inert substance) diluent, 10 mL vial 979921000168105 Octanate 979921000168105 Octanate 980031000168109 factor VIII 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +980051000168103 Octanate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 98211 980041000168100 Octanate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 980011000168104 Octanate (factor VIII 500 units) powder for injection, 500 units vial 979921000168105 Octanate 979921000168105 Octanate 980031000168109 factor VIII 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 980001000168102 factor VIII 500 units injection, vial 979931000168108 factor VIII +926914011000036104 Regaine Women's Regular Strength 2% application, 60 mL, bottle 81852 926308011000036101 Regaine Women's Regular Strength 2% application, 60 mL 925751011000036100 Regaine Women's Regular Strength 2% application 39761000168109 Regaine Women's Regular Strength 39761000168109 Regaine Women's Regular Strength 63964011000036104 minoxidil 2% application, 60 mL 62111011000036107 minoxidil 2% application 21642011000036104 minoxidil +77242011000036105 Ozidal 1 mg film-coated tablet, 60, blister pack 148967 76658011000036109 Ozidal 1 mg film-coated tablet, 60 76094011000036104 Ozidal 1 mg film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +816921000168104 Espler 25 mg film-coated tablet, 30, blister pack 231454 816911000168106 Espler 25 mg film-coated tablet, 30 816881000168106 Espler 25 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 26533011000036104 eplerenone 25 mg tablet, 30 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +20734011000036107 Paroxetine (GenRx) 20 mg film-coated tablet, 30, blister pack 83103 13903011000036108 Paroxetine (GenRx) 20 mg film-coated tablet, 30 7189011000036100 Paroxetine (GenRx) 20 mg film-coated tablet 3409011000036109 Paroxetine (GenRx) 3409011000036109 Paroxetine (GenRx) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +787041000168105 Palladone XL 16 mg modified release capsule, 30, bottle 116607 787031000168101 Palladone XL 16 mg modified release capsule, 30 786981000168104 Palladone XL 16 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 787021000168104 hydromorphone hydrochloride 16 mg modified release capsule, 30 786971000168102 hydromorphone hydrochloride 16 mg modified release capsule 21480011000036107 hydromorphone +931474011000036106 Paroxetine (Synthon) 20 mg film-coated tablet, 14, blister pack 152491 930653011000036104 Paroxetine (Synthon) 20 mg film-coated tablet, 14 929991011000036107 Paroxetine (Synthon) 20 mg film-coated tablet 929845011000036106 Paroxetine (Synthon) 929845011000036106 Paroxetine (Synthon) 51562011000036108 paroxetine 20 mg tablet, 14 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +81097011000036108 Dizole 100 mg hard capsule, 7, blister pack 159620 80605011000036103 Dizole 100 mg hard capsule, 7 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81673011000036104 fluconazole 100 mg capsule, 7 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +20961011000036108 Amoxycillin (DP) 500 mg hard capsule, 20, blister pack 95457 14116011000036100 Amoxycillin (DP) 500 mg hard capsule, 20 7393011000036106 Amoxycillin (DP) 500 mg hard capsule 3998011000036102 Amoxycillin (DP) 3998011000036102 Amoxycillin (DP) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +59924011000036108 Haemorrhoid and Pruritis Relief (Your Pharmacy) 3.48% ointment, 100 g, tube 119063 55886011000036106 Haemorrhoid and Pruritis Relief (Your Pharmacy) 3.48% ointment, 100 g 53684011000036101 Haemorrhoid and Pruritis Relief (Your Pharmacy) 3.48% ointment 53490011000036109 Haemorrhoid and Pruritis Relief (Your Pharmacy) 53490011000036109 Haemorrhoid and Pruritis Relief (Your Pharmacy) 63151011000036106 lidocaine (lignocaine) hydrochloride 3.48% ointment, 100 g 61872011000036103 lidocaine (lignocaine) hydrochloride 3.48% ointment 21572011000036107 lidocaine (lignocaine) +782701000168108 Palexia IR 50 mg film-coated tablet, 5, blister pack 165310 782691000168108 Palexia IR 50 mg film-coated tablet, 5 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782681000168105 tapentadol 50 mg tablet, 5 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +84404011000036102 Qpril 5 mg film-coated tablet, 30, blister pack 96915 84095011000036109 Qpril 5 mg film-coated tablet, 30 83709011000036109 Qpril 5 mg film-coated tablet 83545011000036104 Qpril 83545011000036104 Qpril 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +921965011000036104 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 10 x 15 mL vials 48215 921523011000036100 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 10 x 15 mL vials 921058011000036107 Omnipaque-180 388 mg (iodine 180 mg)/mL injection solution, 15 mL vial 35991000168102 Omnipaque-180 35991000168102 Omnipaque-180 922645011000036109 iohexol 388 mg (iodine 180 mg)/mL injection, 10 x 15 mL vials 922130011000036100 iohexol 388 mg (iodine 180 mg)/mL injection, 15 mL vial 77459011000036103 iohexol +928867011000036105 Risperidone (Pharmacor) 3 mg film-coated tablet, 60, blister pack 139815 928229011000036103 Risperidone (Pharmacor) 3 mg film-coated tablet, 60 927887011000036104 Risperidone (Pharmacor) 3 mg film-coated tablet 927799011000036107 Risperidone (Pharmacor) 927799011000036107 Risperidone (Pharmacor) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +33555011000036109 Ozcef 125 mg/5 mL powder for oral liquid, 100 mL, bottle 169127 33293011000036105 Ozcef 125 mg/5 mL powder for oral liquid, 100 mL 33055011000036106 Ozcef 125 mg/5 mL powder for oral liquid, 5 mL 3555011000036107 Ozcef 3555011000036107 Ozcef 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +33555011000036109 Ozcef 125 mg/5 mL powder for oral liquid, 100 mL, bottle 137888 33293011000036105 Ozcef 125 mg/5 mL powder for oral liquid, 100 mL 33055011000036106 Ozcef 125 mg/5 mL powder for oral liquid, 5 mL 3555011000036107 Ozcef 3555011000036107 Ozcef 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +60125011000036106 Loratadine (Guardian) 10 mg tablet, 10, blister pack 127577 56084011000036101 Loratadine (Guardian) 10 mg tablet, 10 53783011000036107 Loratadine (Guardian) 10 mg tablet 53375011000036102 Loratadine (Guardian) 53375011000036102 Loratadine (Guardian) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +69459011000036109 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) intravenous infusion injection, 18 x 500 mL bags 48568 67259011000036101 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) intravenous infusion injection, 18 x 500 mL bags 65579011000036108 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) intravenous infusion injection, 500 mL bag 20771000168107 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 20771000168107 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 71809011000036102 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, 18 x 500 mL bags 70195011000036100 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +671461000168106 Amlodipine/Atorvastatin 5/80 (Chemmart) film-coated tablet, 30, blister pack 214351 671451000168109 Amlodipine/Atorvastatin 5/80 (Chemmart) film-coated tablet, 30 671441000168107 Amlodipine/Atorvastatin 5/80 (Chemmart) film-coated tablet 671431000168103 Amlodipine/Atorvastatin 5/80 (Chemmart) 671431000168103 Amlodipine/Atorvastatin 5/80 (Chemmart) 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +907161000168102 Amisulpride (AN) 50 mg uncoated tablet, 90, blister pack 234697 907151000168104 Amisulpride (AN) 50 mg uncoated tablet, 90 907001000168102 Amisulpride (AN) 50 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +971421000168100 Lypralin 75 mg hard capsule, 20, bottle 235866 971411000168107 Lypralin 75 mg hard capsule, 20 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +44208011000036104 Klacid 250 mg/5 mL powder for oral liquid, 100 mL, bottle 56729 41684011000036103 Klacid 250 mg/5 mL powder for oral liquid, 100 mL 40143011000036104 Klacid 250 mg/5 mL powder for oral liquid, 5 mL 3147011000036106 Klacid 3147011000036106 Klacid 46501011000036105 clarithromycin 250 mg/5 mL powder for oral liquid, 100 mL 45190011000036109 clarithromycin 250 mg/5 mL powder for oral liquid 21836011000036107 clarithromycin +44812011000036108 Stemgen 1.875 mg powder for injection, 3 vials 98715 42244011000036105 Stemgen 1.875 mg powder for injection, 3 vials 40403011000036108 Stemgen 1.875 mg powder for injection, 1.875 mg vial 39690011000036102 Stemgen 39690011000036102 Stemgen 46997011000036106 ancestim 1.875 mg injection, 3 vials 45369011000036109 ancestim 1.875 mg injection, vial 44911011000036109 ancestim +782941000168108 Palexia IR 50 mg film-coated tablet, 56, blister pack 165310 782931000168104 Palexia IR 50 mg film-coated tablet, 56 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782921000168102 tapentadol 50 mg tablet, 56 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +990631000168104 Momasone 0.1% ointment, 15 g, tube 266268 990621000168102 Momasone 0.1% ointment, 15 g 990611000168109 Momasone 0.1% ointment 671481000168102 Momasone 671481000168102 Momasone 27413011000036104 mometasone furoate 0.1% ointment, 15 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +929673011000036103 Acris Once-a-Week 35 mg film-coated tablet, 4, blister pack 163785 929509011000036101 Acris Once-a-Week 35 mg film-coated tablet, 4 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 22031000168106 Acris Once-a-Week 22031000168106 Acris Once-a-Week 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +160371000036103 Montelukast (Auro) 10 mg film-coated tablet, 30, bottle 197207 159131000036102 Montelukast (Auro) 10 mg film-coated tablet, 30 158271000036104 Montelukast (Auro) 10 mg film-coated tablet 137341000036100 Montelukast (Auro) 137341000036100 Montelukast (Auro) 159141000036107 montelukast 10 mg tablet, 30 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +1014211000168109 Valsartan (Apotex) 80 mg film-coated tablet, 56, blister pack 185858 1014201000168106 Valsartan (Apotex) 80 mg film-coated tablet, 56 1013871000168103 Valsartan (Apotex) 80 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63786011000036102 valsartan 80 mg tablet, 56 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +701521000168102 Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations, cartridge 199568 701511000168109 Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations 701491000168104 Striverdi Respimat 2.5 microgram/actuation inhalation solution, actuation 26721000168109 Striverdi Respimat 26721000168109 Striverdi Respimat 701501000168106 olodaterol 2.5 microgram/actuation inhalation solution, 60 actuations 701481000168102 olodaterol 2.5 microgram/actuation inhalation solution, actuation 177261000036106 olodaterol +956391000168104 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 150 mL bottles 49598 956381000168102 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 150 mL bottles 956361000168106 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 150 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 956371000168100 iodixanol 652 mg (iodine 320 mg)/mL injection, 10 x 150 mL bottles 956351000168109 iodixanol 652 mg (iodine 320 mg)/mL injection, 150 mL bottle 922032011000036109 iodixanol +21133011000036106 Paclitaxel (Ebewe) 300 mg/50 mL concentrated injection, 50 mL vial 98551 14276011000036107 Paclitaxel (Ebewe) 300 mg/50 mL concentrated injection, 50 mL vial 7562011000036100 Paclitaxel (Ebewe) 300 mg/50 mL concentrated injection, 50 mL vial 3092011000036109 Paclitaxel (Ebewe) 3092011000036109 Paclitaxel (Ebewe) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +104891000036101 Duloxetine (Apo) 30 mg enteric capsule, 28, blister pack 217985 102091000036101 Duloxetine (Apo) 30 mg enteric capsule, 28 98201000036107 Duloxetine (Apo) 30 mg enteric capsule 97941000036102 Duloxetine (Apo) 97941000036102 Duloxetine (Apo) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +104891000036101 Duloxetine (Apo) 30 mg enteric capsule, 28, blister pack 195343 102091000036101 Duloxetine (Apo) 30 mg enteric capsule, 28 98201000036107 Duloxetine (Apo) 30 mg enteric capsule 97941000036102 Duloxetine (Apo) 97941000036102 Duloxetine (Apo) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +44465011000036107 Cerezyme 400 units powder for injection, 1 vial 74277 41921011000036109 Cerezyme 400 units powder for injection, 1 vial 40264011000036105 Cerezyme 400 units powder for injection, 400 units vial 39723011000036108 Cerezyme 39723011000036108 Cerezyme 46710011000036101 imiglucerase 400 units injection, 1 vial 45277011000036103 imiglucerase 400 units injection, vial 44921011000036102 imiglucerase +800021000168104 Abyraz 20 mg uncoated tablet, 98, blister pack 159505 800011000168106 Abyraz 20 mg uncoated tablet, 98 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800001000168108 aripiprazole 20 mg tablet, 98 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +18580011000036105 Bricanyl 500 microgram/mL injection solution, 5 x 1 mL ampoules 12068 11652011000036103 Bricanyl 500 microgram/mL injection solution, 5 x 1 mL ampoules 5572011000036108 Bricanyl 500 microgram/mL injection solution, ampoule 48681000168104 Bricanyl 48681000168104 Bricanyl 26726011000036108 terbutaline sulfate 500 microgram/mL injection, 5 x 1 mL ampoules 22121011000036109 terbutaline sulfate 500 microgram/mL injection, ampoule 21514011000036105 terbutaline +806451000168100 Irbesartan HCTZ 300/12.5 (Blooms The Chemist) film-coated tablet, 30, blister pack 259592 806441000168102 Irbesartan HCTZ 300/12.5 (Blooms The Chemist) film-coated tablet, 30 806431000168106 Irbesartan HCTZ 300/12.5 (Blooms The Chemist) film-coated tablet 806421000168108 Irbesartan HCTZ 300/12.5 (Blooms The Chemist) 806421000168108 Irbesartan HCTZ 300/12.5 (Blooms The Chemist) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +69343011000036103 Hyalase 1500 units powder for injection, 10 ampoules 27749 67143011000036104 Hyalase 1500 units powder for injection, 10 ampoules 65260011000036104 Hyalase 1500 units powder for injection, 1500 units ampoule 65023011000036108 Hyalase 65023011000036108 Hyalase 71708011000036108 hyaluronidase 1500 units injection, 10 ampoules 70141011000036108 hyaluronidase 1500 units injection, ampoule 69795011000036106 hyaluronidase +770041000168100 Oralair 100 IR sublingual tablet, 3, blister pack 770031000168109 Oralair 100 IR sublingual tablet, 3 770011000168104 Oralair 100 IR sublingual tablet 769981000168106 Oralair 100 IR 769981000168106 Oralair 100 IR 770021000168106 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet, 3 770001000168102 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +902821000168100 Candesartan (Actavis) 4 mg uncoated tablet, 30, bottle 195502 902801000168109 Candesartan (Actavis) 4 mg uncoated tablet, 30 902791000168108 Candesartan (Actavis) 4 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +922131000168103 Topiramate (GenRx) 50 mg film-coated tablet, 60, blister pack 124646 922121000168101 Topiramate (GenRx) 50 mg film-coated tablet, 60 922111000168108 Topiramate (GenRx) 50 mg film-coated tablet 922041000168108 Topiramate (GenRx) 922041000168108 Topiramate (GenRx) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +857851000168107 Doxorubicin (ACC) 10 mg/5 mL concentrated injection, 5 mL vial 174249 857841000168105 Doxorubicin (ACC) 10 mg/5 mL concentrated injection, 5 mL vial 857831000168101 Doxorubicin (ACC) 10 mg/5 mL concentrated injection, 5 mL vial 857791000168107 Doxorubicin (ACC) 857791000168107 Doxorubicin (ACC) 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +86156011000036105 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 60, bottle 163795 85764011000036102 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 60 85379011000036108 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 86454011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 60 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +663061000168107 Risedronate Sodium (AN) 35 mg film-coated tablet, 4, blister pack 190157 663051000168105 Risedronate Sodium (AN) 35 mg film-coated tablet, 4 663041000168108 Risedronate Sodium (AN) 35 mg film-coated tablet 663031000168104 Risedronate Sodium (AN) 663031000168104 Risedronate Sodium (AN) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +997051000168100 Celecoxib (Apotex) 100 mg hard capsule, 60, blister pack 203430 997041000168102 Celecoxib (Apotex) 100 mg hard capsule, 60 997031000168106 Celecoxib (Apotex) 100 mg hard capsule 996991000168106 Celecoxib (Apotex) 996991000168106 Celecoxib (Apotex) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +44328011000036102 Novoseven 2.4 mg powder for injection, 1 vial 67086 41795011000036109 Novoseven 2.4 mg powder for injection, 1 vial 40203011000036107 Novoseven 2.4 mg powder for injection, 2.4 mg vial 55601000168100 Novoseven 55601000168100 Novoseven 46601011000036102 eptacog alfa (activated) 2.4 mg injection, 1 vial 45235011000036106 eptacog alfa (activated) 2.4 mg injection, vial 44889011000036101 eptacog alfa (activated) +723041000168108 Amlodipine (Blooms The Chemist) 5 mg uncoated tablet, 30, blister pack 135127 723031000168104 Amlodipine (Blooms The Chemist) 5 mg uncoated tablet, 30 723021000168102 Amlodipine (Blooms The Chemist) 5 mg uncoated tablet 723011000168109 Amlodipine (Blooms The Chemist) 723011000168109 Amlodipine (Blooms The Chemist) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +973471000168100 Pregabalin (GH) 150 mg hard capsule, 56, blister pack 215680 973461000168106 Pregabalin (GH) 150 mg hard capsule, 56 973411000168108 Pregabalin (GH) 150 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +765701000168104 Azilect 1 mg tablet, 30, bottle 172457 42921000036102 Azilect 1 mg tablet, 30 40561000036103 Azilect 1 mg tablet 40421000036106 Azilect 40421000036106 Azilect 42931000036100 rasagiline 1 mg tablet, 30 40571000036106 rasagiline 1 mg tablet 46271000036107 rasagiline +1057181000168107 Raloxifene (Auro) 60 mg tablet, 100, bottle 203700 1057171000168109 Raloxifene (Auro) 60 mg tablet, 100 1057011000168100 Raloxifene (Auro) 60 mg tablet 1056951000168100 Raloxifene (Auro) 1056951000168100 Raloxifene (Auro) 1057161000168103 raloxifene hydrochloride 60 mg tablet, 100 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +870671000168103 Atomerra 80 mg hard capsule, 56, blister pack 234815 870661000168109 Atomerra 80 mg hard capsule, 56 870571000168102 Atomerra 80 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830611000168108 atomoxetine 80 mg capsule, 56 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1057001000168103 Atorvastatin (ZAZ) 80 mg film-coated tablet, 30, blister pack 217172 1056991000168105 Atorvastatin (ZAZ) 80 mg film-coated tablet, 30 1056961000168103 Atorvastatin (ZAZ) 80 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +52209011000036106 Fosetic 20/12.5 uncoated tablet, 30, bottle 143610 52095011000036104 Fosetic 20/12.5 uncoated tablet, 30 51990011000036103 Fosetic 20/12.5 uncoated tablet 37491000168104 Fosetic 20/12.5 37491000168104 Fosetic 20/12.5 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +87745011000036107 Accu-Chek Advantage/Sensor Comfort diagnostic strip, 100, bottle 170505 87511011000036101 Accu-Chek Advantage/Sensor Comfort diagnostic strip, 100 87348011000036100 Accu-Chek Advantage/Sensor Comfort diagnostic strip 29131000168104 Accu-Chek Advantage/Sensor Comfort 29131000168104 Accu-Chek Advantage/Sensor Comfort 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1074261000168101 Clopidogrel (Auro) 75 mg film-coated tablet, 30, bottle 171361 1074251000168103 Clopidogrel (Auro) 75 mg film-coated tablet, 30 1074241000168100 Clopidogrel (Auro) 75 mg film-coated tablet 1074231000168109 Clopidogrel (Auro) 1074231000168109 Clopidogrel (Auro) 87801011000036104 clopidogrel 75 mg tablet, 30 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +988441000168107 Cafex 100 mg uncoated tablet, 12, blister pack 174161 988431000168103 Cafex 100 mg uncoated tablet, 12 988391000168108 Cafex 100 mg uncoated tablet 988381000168105 Cafex 988381000168105 Cafex 988421000168101 caffeine 100 mg tablet, 12 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +1112671000168103 Quetiapine (GH) 150 mg film-coated tablet, 30, blister pack 179903 1112661000168109 Quetiapine (GH) 150 mg film-coated tablet, 30 1112611000168106 Quetiapine (GH) 150 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1112651000168107 quetiapine 150 mg tablet, 30 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +61509011000036100 Extra Strength Mini-Tab (Pharmacist) tablet, 48, blister pack 92776 57434011000036101 Extra Strength Mini-Tab (Pharmacist) tablet, 48 54301011000036105 Extra Strength Mini-Tab (Pharmacist) tablet 16431000168109 Extra Strength Mini-Tab (Pharmacist) 16431000168109 Extra Strength Mini-Tab (Pharmacist) 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +1106371000168109 Temtabs 10 mg uncoated tablet, 10, blister pack 91058 1106361000168103 Temtabs 10 mg uncoated tablet, 10 7241011000036108 Temtabs 10 mg uncoated tablet 3039011000036107 Temtabs 3039011000036107 Temtabs 1106351000168100 temazepam 10 mg tablet, 10 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +920729011000036107 Prograf-XL 5 mg modified release capsule, 30, blister pack 158444 920416011000036102 Prograf-XL 5 mg modified release capsule, 30 920170011000036109 Prograf-XL 5 mg modified release capsule 6831000168108 Prograf-XL 6831000168108 Prograf-XL 920857011000036103 tacrolimus 5 mg modified release capsule, 30 920827011000036102 tacrolimus 5 mg modified release capsule 21380011000036104 tacrolimus +61260011000036103 Panadol Gel Tab 500 mg gelatin coated tablet, 24, blister pack 77188 57196011000036100 Panadol Gel Tab 500 mg gelatin coated tablet, 24 54232011000036104 Panadol Gel Tab 500 mg gelatin coated tablet 28731000168106 Panadol Gel Tab 28731000168106 Panadol Gel Tab 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61093011000036102 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 100 mL, bottle 71041 57036011000036104 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 100 mL 54168011000036109 Cold and Allergy Children's Mixture (Chemists' Own) oral liquid solution, 5 mL 55471000168107 Cold and Allergy Children's Mixture (Chemists' Own) 55471000168107 Cold and Allergy Children's Mixture (Chemists' Own) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +17826011000036108 Salazopyrin EN 500 mg enteric tablet, 100, bottle 14485 12032011000036109 Salazopyrin EN 500 mg enteric tablet, 100 5796011000036100 Salazopyrin EN 500 mg enteric tablet 38361000168102 Salazopyrin EN 38361000168102 Salazopyrin EN 75581000036104 sulfasalazine 500 mg enteric tablet, 100 75571000036101 sulfasalazine 500 mg enteric tablet 21923011000036107 sulfasalazine +18096011000036106 Floxapen 250 mg hard capsule, 24, blister pack 11149 11428011000036101 Floxapen 250 mg hard capsule, 24 5519011000036107 Floxapen 250 mg hard capsule 28271000168102 Floxapen 28271000168102 Floxapen 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +787281000168106 Palladone XL 24 mg modified release capsule, 30, bottle 116608 787271000168108 Palladone XL 24 mg modified release capsule, 30 787221000168107 Palladone XL 24 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 787261000168102 hydromorphone hydrochloride 24 mg modified release capsule, 30 787211000168100 hydromorphone hydrochloride 24 mg modified release capsule 21480011000036107 hydromorphone +868661000168103 Atomerra 10 mg hard capsule, 28, blister pack 234799 868651000168100 Atomerra 10 mg hard capsule, 28 868601000168104 Atomerra 10 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +971461000168105 Lypralin 75 mg hard capsule, 56, bottle 235866 969801000168103 Lypralin 75 mg hard capsule, 56 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +988601000168107 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 20, blister pack 277252 988591000168100 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 20 988581000168103 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +765861000168107 Desvenlafaxine MR (Apo) 50 mg modified release tablet, 28, blister pack 218307 765851000168105 Desvenlafaxine MR (Apo) 50 mg modified release tablet, 28 765801000168106 Desvenlafaxine MR (Apo) 50 mg modified release tablet 765791000168105 Desvenlafaxine MR (Apo) 765791000168105 Desvenlafaxine MR (Apo) 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +769631000168100 Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g, aerosol can 18221 769621000168103 Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g 769601000168107 Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray 38501000168107 Tinaderm Powder Spray 38501000168107 Tinaderm Powder Spray 769611000168105 tolnaftate 0.09% (900 microgram/g) spray, 100 g 769591000168100 tolnaftate 0.09% (900 microgram/g) spray 21680011000036105 tolnaftate +60078011000036109 Voltaren Rapid 12.5 mg film-coated tablet, 10, blister pack 125889 56039011000036109 Voltaren Rapid 12.5 mg film-coated tablet, 10 53766011000036103 Voltaren Rapid 12.5 mg film-coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63206011000036107 diclofenac potassium 12.5 mg tablet, 10 61887011000036109 diclofenac potassium 12.5 mg tablet 21288011000036105 diclofenac +60078011000036109 Voltaren Rapid 12.5 mg film-coated tablet, 10, blister pack 168061 56039011000036109 Voltaren Rapid 12.5 mg film-coated tablet, 10 53766011000036103 Voltaren Rapid 12.5 mg film-coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63206011000036107 diclofenac potassium 12.5 mg tablet, 10 61887011000036109 diclofenac potassium 12.5 mg tablet 21288011000036105 diclofenac +45091000036107 Proquin 250 mg film-coated tablet, 14, blister pack 119535 42801000036103 Proquin 250 mg film-coated tablet, 14 40461000036102 Proquin 250 mg film-coated tablet 3862011000036105 Proquin 3862011000036105 Proquin 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +69326011000036107 Potassium Phosphate (Phebra) concentrated injection, 10 x 10 mL vials 23196 67126011000036108 Potassium Phosphate (Phebra) concentrated injection, 10 x 10 mL vials 65274011000036103 Potassium Phosphate (Phebra) concentrated injection, 10 mL vial 65145011000036102 Potassium Phosphate (Phebra) 65145011000036102 Potassium Phosphate (Phebra) 71691011000036106 dibasic potassium phosphate 1.053 g/10 mL + monobasic potassium phosphate 1.093 g/10 mL (total potassium 20 mmol/10 mL) injection, 10 x 10 mL vials 70130011000036100 dibasic potassium phosphate 1.053 g/10 mL + monobasic potassium phosphate 1.093 g/10 mL (total potassium 20 mmol/10 mL) injection, vial 21894011000036105 phosphorus +61106011000036101 Dermaid Soft 1% modified cream, 30 g, tube 71684 57049011000036109 Dermaid Soft 1% modified cream, 30 g 54174011000036108 Dermaid Soft 1% modified cream 44871000168106 Dermaid Soft 44871000168106 Dermaid Soft 63717011000036102 hydrocortisone 1% modified cream, 30 g 62056011000036101 hydrocortisone 1% modified cream 21681011000036103 hydrocortisone +791841000168108 Trexject 25 mg/0.5 mL injection solution, 0.5 mL syringe 233721 791831000168104 Trexject 25 mg/0.5 mL injection solution, 0.5 mL syringe 791811000168109 Trexject 25 mg/0.5 mL injection solution, 0.5 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791821000168102 methotrexate 25 mg/0.5 mL injection, 0.5 mL syringe 791801000168106 methotrexate 25 mg/0.5 mL injection, syringe 21342011000036105 methotrexate +973431000168103 Pregabalin (GH) 150 mg hard capsule, 14, blister pack 215680 973421000168101 Pregabalin (GH) 150 mg hard capsule, 14 973411000168108 Pregabalin (GH) 150 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +87711011000036100 Galantyl 24 mg modified release capsule, 30, blister pack 157933 87456011000036108 Galantyl 24 mg modified release capsule, 30 87318011000036108 Galantyl 24 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 46982011000036108 galantamine 24 mg modified release capsule, 30 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +956851000168100 Antizol 1.5 g/1.5 mL injection solution, 4 x 1.5 mL vials 263913 956831000168106 Antizol 1.5 g/1.5 mL injection solution, 4 x 1.5 mL vials 956711000168109 Antizol 1.5 g/1.5 mL injection solution, 1.5 mL vial 956661000168104 Antizol 956661000168104 Antizol 956811000168101 fomepizole 1.5 g/1.5 mL injection, 4 x 1.5 mL vials 956701000168106 fomepizole 1.5 g/1.5 mL injection, vial 956691000168106 fomepizole +921999011000036100 Magnevist 14.07 g/30 mL injection solution, 10 x 30 mL vials 59542 921557011000036108 Magnevist 14.07 g/30 mL injection solution, 10 x 30 mL vials 921085011000036105 Magnevist 14.07 g/30 mL injection solution, 30 mL vial 920916011000036100 Magnevist 920916011000036100 Magnevist 922673011000036109 gadopentetate dimeglumine 14.07 g/30 mL injection, 10 x 30 mL vials 922150011000036104 gadopentetate dimeglumine 14.07 g/30 mL injection, vial 922037011000036106 gadopentetic acid +60558011000036109 Polaramine colour free 2 mg uncoated tablet, 50, blister pack 154653 56516011000036109 Polaramine colour free 2 mg uncoated tablet, 50 53948011000036101 Polaramine colour free 2 mg uncoated tablet 9101000168102 Polaramine 9101000168102 Polaramine 63412011000036105 dexchlorpheniramine maleate 2 mg tablet, 50 61949011000036101 dexchlorpheniramine maleate 2 mg tablet 61749011000036105 dexchlorpheniramine +945331000168109 Citlam-S 20 mg film-coated tablet, 28, blister pack 191880 945321000168106 Citlam-S 20 mg film-coated tablet, 28 945281000168101 Citlam-S 20 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +84288011000036106 Pantoprazole (Sandoz) 40 mg enteric tablet, 30, blister pack 147367 83981011000036101 Pantoprazole (Sandoz) 40 mg enteric tablet, 30 83617011000036107 Pantoprazole (Sandoz) 40 mg enteric tablet 83562011000036104 Pantoprazole (Sandoz) 83562011000036104 Pantoprazole (Sandoz) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +44409011000036108 Somac 20 mg enteric tablet, 28, blister pack 70829 41869011000036107 Somac 20 mg enteric tablet, 28 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46674011000036109 pantoprazole 20 mg enteric tablet, 28 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +68859011000036102 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch, 21, sachet 129750 66733011000036109 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch, 21 65482011000036104 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch 22501000168106 Nicotine Phase-3 (Chemists' Own) 22501000168106 Nicotine Phase-3 (Chemists' Own) 63757011000036105 nicotine 7 mg/24 hours patch, 21 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +929690011000036104 Escicor 20 mg film-coated tablet, 28, blister pack 166140 929526011000036100 Escicor 20 mg film-coated tablet, 28 929410011000036101 Escicor 20 mg film-coated tablet 929378011000036103 Escicor 929378011000036103 Escicor 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1056941000168102 Atorvastatin (ZAZ) 40 mg film-coated tablet, 30, blister pack 185035 1056931000168106 Atorvastatin (ZAZ) 40 mg film-coated tablet, 30 1056901000168104 Atorvastatin (ZAZ) 40 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +997211000168107 Pramipexole (Apotex) 1 mg uncoated tablet, 100, blister pack 168563 997201000168109 Pramipexole (Apotex) 1 mg uncoated tablet, 100 997191000168106 Pramipexole (Apotex) 1 mg uncoated tablet 997101000168100 Pramipexole (Apotex) 997101000168100 Pramipexole (Apotex) 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +50620011000036100 Seroquel XR 300 mg modified release tablet, 60, blister pack 138921 49646011000036107 Seroquel XR 300 mg modified release tablet, 60 48797011000036108 Seroquel XR 300 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +17980011000036108 Amisulpride (Sandoz) 400 mg film-coated tablet, 60, blister pack 128994 11873011000036100 Amisulpride (Sandoz) 400 mg film-coated tablet, 60 5324011000036100 Amisulpride (Sandoz) 400 mg film-coated tablet 3432011000036109 Amisulpride (Sandoz) 3432011000036109 Amisulpride (Sandoz) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +696861000168107 Pravastatin (Auro) 80 mg uncoated tablet, 30, blister pack 191701 696851000168105 Pravastatin (Auro) 80 mg uncoated tablet, 30 696841000168108 Pravastatin (Auro) 80 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +840851000168109 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 80847 840841000168107 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 840791000168109 Infanrix-IPV injection suspension, 0.5 mL syringe 73704011000036107 Infanrix-IPV 73704011000036107 Infanrix-IPV 840831000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 10 x 0.5 mL syringes 840781000168106 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 840691000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine +840851000168109 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 159563 840841000168107 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 840791000168109 Infanrix-IPV injection suspension, 0.5 mL syringe 73704011000036107 Infanrix-IPV 73704011000036107 Infanrix-IPV 840831000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 10 x 0.5 mL syringes 840781000168106 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 840691000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine +931583011000036105 Redichol 20 mg film-coated tablet, 90, bottle 163553 930744011000036108 Redichol 20 mg film-coated tablet, 90 930033011000036108 Redichol 20 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932407011000036108 pravastatin sodium 20 mg tablet, 90 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +922231000168108 Topiramate (GenRx) 200 mg film-coated tablet, 60, blister pack 124648 922221000168105 Topiramate (GenRx) 200 mg film-coated tablet, 60 922211000168103 Topiramate (GenRx) 200 mg film-coated tablet 922041000168108 Topiramate (GenRx) 922041000168108 Topiramate (GenRx) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +45161000036104 Clopidogrel (Stada) 75 mg film-coated tablet, 28, blister pack 162325 42871000036107 Clopidogrel (Stada) 75 mg film-coated tablet, 28 40671000036107 Clopidogrel (Stada) 75 mg film-coated tablet 40301000036107 Clopidogrel (Stada) 40301000036107 Clopidogrel (Stada) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +20700011000036109 Oxetine 20 mg film-coated tablet, 30, blister pack 82551 13874011000036106 Oxetine 20 mg film-coated tablet, 30 7161011000036102 Oxetine 20 mg film-coated tablet 3108011000036102 Oxetine 3108011000036102 Oxetine 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +43831011000036108 Marcain 0.25% with Adrenaline 1 in 400 000 injection solution, 5 x 20 mL vials 125878 41332011000036109 Marcain 0.25% with Adrenaline 1 in 400 000 injection solution, 5 x 20 mL vials 39822011000036103 Marcain 0.25% with Adrenaline 1 in 400 000 injection solution, 20 mL vial 38801000168109 Marcain 0.25% with Adrenaline 1 in 400 000 38801000168109 Marcain 0.25% with Adrenaline 1 in 400 000 46254011000036109 bupivacaine hydrochloride monohydrate 0.25% (50 mg/20 mL) + adrenaline (epinephrine) 1 in 400 000 (50 microgram/20 mL) injection, 5 x 20 mL vials 45045011000036100 bupivacaine hydrochloride monohydrate 0.25% (50 mg/20 mL) + adrenaline (epinephrine) 1 in 400 000 (50 microgram/20 mL) injection, vial 37718011000036101 bupivacaine + adrenaline (epinephrine) +778191000168106 Oxycodone MR (Apo) 30 mg modified release tablet, 20, blister pack 214490 778181000168108 Oxycodone MR (Apo) 30 mg modified release tablet, 20 778171000168105 Oxycodone MR (Apo) 30 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +35675011000036106 Gabapentin (Pharmacor) 600 mg film-coated tablet, 100, blister pack 156107 35583011000036108 Gabapentin (Pharmacor) 600 mg film-coated tablet, 100 35488011000036107 Gabapentin (Pharmacor) 600 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +35675011000036106 Gabapentin (Pharmacor) 600 mg film-coated tablet, 100, blister pack 131502 35583011000036108 Gabapentin (Pharmacor) 600 mg film-coated tablet, 100 35488011000036107 Gabapentin (Pharmacor) 600 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +769561000168107 Esomeprazole Hp7 (Sandoz) (14 x Esomeprazole tablets, 28 x Amoxycillin capsules, 14 x Clarithromycin tablets), 1 pack, composite pack 227607 769551000168105 Esomeprazole Hp7 (Sandoz) (14 x Esomeprazole tablets, 28 x Amoxycillin capsules, 14 x Clarithromycin tablets), 1 pack 704641000168107 Esomeprazole (Sandoz) 20 mg enteric tablet 769101000168100 Esomeprazole Hp7 (Sandoz) 704101000168103 Esomeprazole (Sandoz) 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +769561000168107 Esomeprazole Hp7 (Sandoz) (14 x Esomeprazole tablets, 28 x Amoxycillin capsules, 14 x Clarithromycin tablets), 1 pack, composite pack 227607 769551000168105 Esomeprazole Hp7 (Sandoz) (14 x Esomeprazole tablets, 28 x Amoxycillin capsules, 14 x Clarithromycin tablets), 1 pack 769211000168107 Clarithromycin (Sandoz) 500 mg film-coated tablet 769101000168100 Esomeprazole Hp7 (Sandoz) 147831000036100 Clarithromycin (Sandoz) 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +769561000168107 Esomeprazole Hp7 (Sandoz) (14 x Esomeprazole tablets, 28 x Amoxycillin capsules, 14 x Clarithromycin tablets), 1 pack, composite pack 227607 769551000168105 Esomeprazole Hp7 (Sandoz) (14 x Esomeprazole tablets, 28 x Amoxycillin capsules, 14 x Clarithromycin tablets), 1 pack 7277011000036101 Amoxycillin (Sandoz) 500 mg hard capsule 769101000168100 Esomeprazole Hp7 (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +697541000168109 Clindamycin (Link) 150 mg hard capsule, 100, blister pack 214526 697531000168100 Clindamycin (Link) 150 mg hard capsule, 100 697441000168108 Clindamycin (Link) 150 mg hard capsule 697431000168104 Clindamycin (Link) 697431000168104 Clindamycin (Link) 922536011000036105 clindamycin 150 mg capsule, 100 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +881931000168107 Bicalide 50 mg film-coated tablet, 28, blister pack 273904 881921000168109 Bicalide 50 mg film-coated tablet, 28 881721000168107 Bicalide 50 mg film-coated tablet 881711000168100 Bicalide 881711000168100 Bicalide 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +37594011000036108 Demazin 12 hour Repetab modified release tablet, 6, blister pack 18810 36861011000036106 Demazin 12 hour Repetab modified release tablet, 6 36198011000036105 Demazin 12 hour Repetab modified release tablet 48631000168100 Demazin 12 hour Repetab 48631000168100 Demazin 12 hour Repetab 38748011000036103 dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg modified release tablet, 6 37972011000036101 dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg modified release tablet 37723011000036102 dexchlorpheniramine + pseudoephedrine +855271000168107 Algerika 200 mg hard capsule, 21, blister pack 229598 855261000168101 Algerika 200 mg hard capsule, 21 855211000168104 Algerika 200 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855251000168103 pregabalin 200 mg capsule, 21 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +18841011000036106 Megafol 5 mg uncoated tablet, 100, bottle 17706 12153011000036107 Megafol 5 mg uncoated tablet, 100 5006011000036104 Megafol 5 mg uncoated tablet 2925011000036106 Megafol 2925011000036106 Megafol 26951011000036109 folic acid 5 mg tablet, 100 22326011000036108 folic acid 5 mg tablet 21654011000036106 folic acid +783261000168105 Palexia IR 75 mg film-coated tablet, 40, blister pack 165317 783251000168108 Palexia IR 75 mg film-coated tablet, 40 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783241000168106 tapentadol 75 mg tablet, 40 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +1095091000168107 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 90, blister pack 287306 1095081000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 90 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 1077401000168106 fexofenadine hydrochloride 180 mg tablet, 90 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +25901000036103 Aqueous Cream (Orion) cream, 10 kg, jar 25891000036104 Aqueous Cream (Orion) cream, 10 kg 86615011000036106 Aqueous Cream (Orion) cream 76014011000036100 Aqueous Cream (Orion) 76014011000036100 Aqueous Cream (Orion) 25871000036103 liquid paraffin + white soft paraffin + water purified + emulsifying wax cream, 10 kg 86910011000036103 liquid paraffin + white soft paraffin + water purified + emulsifying wax cream 86899011000036103 liquid paraffin + white soft paraffin + water purified + emulsifying wax +804121000168105 Cardiprin 100 mg tablet, 180, blister pack 15357 804111000168103 Cardiprin 100 mg tablet, 180 803961000168101 Cardiprin 100 mg tablet 4114011000036109 Cardiprin 4114011000036109 Cardiprin 804101000168101 aspirin 100 mg tablet, 180 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +21184011000036101 Tramahexal SR 200 mg modified release tablet, 20, bottle 99264 14322011000036103 Tramahexal SR 200 mg modified release tablet, 20 7608011000036106 Tramahexal SR 200 mg modified release tablet 10981000168104 Tramahexal SR 10981000168104 Tramahexal SR 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +941721000168108 Metformin (AS) 850 mg film-coated tablet, 60, blister pack 147648 941711000168101 Metformin (AS) 850 mg film-coated tablet, 60 941701000168104 Metformin (AS) 850 mg film-coated tablet 941571000168104 Metformin (AS) 941571000168104 Metformin (AS) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +988461000168106 Cafex 100 mg uncoated tablet, 24, blister pack 174161 988451000168109 Cafex 100 mg uncoated tablet, 24 988391000168108 Cafex 100 mg uncoated tablet 988381000168105 Cafex 988381000168105 Cafex 71751011000036105 caffeine 100 mg tablet, 24 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +44396011000036108 Somac 40 mg enteric tablet, 60, bottle 69791 41856011000036106 Somac 40 mg enteric tablet, 60 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46662011000036107 pantoprazole 40 mg enteric tablet, 60 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1065531000168104 Strong Pain Relief (Terry White Chemists) uncoated tablet, 40, blister pack 171010 1065521000168102 Strong Pain Relief (Terry White Chemists) uncoated tablet, 40 1065491000168104 Strong Pain Relief (Terry White Chemists) uncoated tablet 1065481000168102 Strong Pain Relief (Terry White Chemists) 1065481000168102 Strong Pain Relief (Terry White Chemists) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +851641000168104 Enteclude 1 mg film-coated tablet, 30, blister pack 234759 851631000168108 Enteclude 1 mg film-coated tablet, 30 851621000168105 Enteclude 1 mg film-coated tablet 851581000168105 Enteclude 851581000168105 Enteclude 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +18207011000036104 Anusol ointment, 50 g, tube 14662 12055011000036102 Anusol ointment, 50 g 5573011000036101 Anusol ointment 3778011000036103 Anusol 3778011000036103 Anusol 26882011000036104 zinc oxide 10.75% + peru balsam 1.88% + benzyl benzoate 1.25% ointment, 50 g 22260011000036107 zinc oxide 10.75% + peru balsam 1.88% + benzyl benzoate 1.25% ointment 21666011000036106 zinc oxide + peru balsam + benzyl benzoate +671601000168107 Momasone 0.1% cream, 45 g, tube 171795 671591000168100 Momasone 0.1% cream, 45 g 671491000168104 Momasone 0.1% cream 671481000168102 Momasone 671481000168102 Momasone 27112011000036105 mometasone furoate 0.1% cream, 45 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +77221000036105 Zatamil Hydrogel 0.1% gel, 15 g, tube 195415 76881000036107 Zatamil Hydrogel 0.1% gel, 15 g 76731000036101 Zatamil Hydrogel 0.1% gel 40831000168104 Zatamil Hydrogel 40831000168104 Zatamil Hydrogel 76891000036109 mometasone furoate 0.1% gel, 15 g 76741000036106 mometasone furoate 0.1% gel 21409011000036100 mometasone +44212011000036104 Aciclovir Intravenous (DBL) 500 mg/20 mL injection solution, 5 x 20 mL vials 56810 41688011000036105 Aciclovir Intravenous (DBL) 500 mg/20 mL injection solution, 5 x 20 mL vials 40145011000036103 Aciclovir Intravenous (DBL) 500 mg/20 mL injection solution, 20 mL vial 13761000168102 Aciclovir Intravenous (DBL) 13761000168102 Aciclovir Intravenous (DBL) 46505011000036107 aciclovir 500 mg/20 mL injection, 5 x 20 mL vials 45192011000036108 aciclovir 500 mg/20 mL injection, vial 21239011000036106 aciclovir +921973011000036107 Sodium Chloride (Phebra) 0.9% (900 mg/100 mL) injection solution, 10 x 100 mL vials 48349 921531011000036104 Sodium Chloride (Phebra) 0.9% (900 mg/100 mL) injection solution, 10 x 100 mL vials 921064011000036108 Sodium Chloride (Phebra) 0.9% (900 mg/100 mL) injection solution, 100 mL vial 64963011000036103 Sodium Chloride (Phebra) 64963011000036103 Sodium Chloride (Phebra) 71819011000036100 sodium chloride 0.9% (900 mg/100 mL) injection, 10 x 100 mL vials 70201011000036102 sodium chloride 0.9% (900 mg/100 mL) injection, vial 21308011000036103 sodium chloride +863931000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags 144671 863921000168107 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags 863841000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863911000168100 glucose monohydrate 5% (5 g/100 mL) injection, 50 x 100 mL bags 863831000168101 glucose monohydrate 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +34707011000036106 Morphine Tartrate (DBL) 120 mg/1.5 mL injection solution, 50 x 1.5 mL ampoules 16324 34291011000036107 Morphine Tartrate (DBL) 120 mg/1.5 mL injection solution, 50 x 1.5 mL ampoules 5071011000036100 Morphine Tartrate (DBL) 120 mg/1.5 mL injection solution, 1.5 mL ampoule 3133011000036103 Morphine Tartrate (DBL) 3133011000036103 Morphine Tartrate (DBL) 35140011000036102 morphine tartrate 120 mg/1.5 mL injection, 50 x 1.5 mL ampoules 22292011000036109 morphine tartrate 120 mg/1.5 mL injection, ampoule 21252011000036100 morphine +714861000168109 Pioglitazone (Auro) 15 mg uncoated tablet, 28, blister pack 176380 714851000168107 Pioglitazone (Auro) 15 mg uncoated tablet, 28 714841000168105 Pioglitazone (Auro) 15 mg uncoated tablet 713631000168103 Pioglitazone (Auro) 713631000168103 Pioglitazone (Auro) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +1013731000168108 Valsartan (Apotex) 40 mg film-coated tablet, 14, blister pack 185857 1013721000168105 Valsartan (Apotex) 40 mg film-coated tablet, 14 1013691000168101 Valsartan (Apotex) 40 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63854011000036102 valsartan 40 mg tablet, 14 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +105131000036106 Abisart HCT 300/25 film-coated tablet, 30, blister pack 215946 102151000036106 Abisart HCT 300/25 film-coated tablet, 30 98831000036101 Abisart HCT 300/25 film-coated tablet 13081000168109 Abisart HCT 300/25 13081000168109 Abisart HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +105131000036106 Abisart HCT 300/25 film-coated tablet, 30, blister pack 176860 102151000036106 Abisart HCT 300/25 film-coated tablet, 30 98831000036101 Abisart HCT 300/25 film-coated tablet 13081000168109 Abisart HCT 300/25 13081000168109 Abisart HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +37427011000036103 Hydroform cream, 60 g, tube 10317 36619011000036102 Hydroform cream, 60 g 36163011000036102 Hydroform cream 27611000168107 Hydroform 27611000168107 Hydroform 38539011000036106 hydrocortisone 1% + clioquinol 1% cream, 60 g 37822011000036107 hydrocortisone 1% + clioquinol 1% cream 37775011000036102 hydrocortisone + clioquinol +59941000036102 Amoxycillin (PS) 500 mg hard capsule, 30, blister pack 188960 59071000036108 Amoxycillin (PS) 500 mg hard capsule, 30 58221000036109 Amoxycillin (PS) 500 mg hard capsule 58141000036107 Amoxycillin (PS) 58141000036107 Amoxycillin (PS) 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +44242011000036106 Atracurium Besylate (Abbott) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 58934 41714011000036109 Atracurium Besylate (Abbott) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 40160011000036102 Atracurium Besylate (Abbott) 50 mg/5 mL injection solution, 5 mL ampoule 39572011000036101 Atracurium Besylate (Abbott) 39572011000036101 Atracurium Besylate (Abbott) 46525011000036103 atracurium besilate 50 mg/5 mL injection, 5 x 5 mL ampoules 45201011000036102 atracurium besilate 50 mg/5 mL injection, ampoule 37800011000036104 atracurium +60622011000036102 Cough Suppressant (Amcal) 1 mg/mL oral liquid solution, 100 mL, bottle 19644 56580011000036109 Cough Suppressant (Amcal) 1 mg/mL oral liquid solution, 100 mL 53986011000036108 Cough Suppressant (Amcal) 1 mg/mL oral liquid solution 53434011000036105 Cough Suppressant (Amcal) 53434011000036105 Cough Suppressant (Amcal) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +868821000168107 Simipex XR 3.75 mg modified release tablet, 10, blister pack 225578 868811000168100 Simipex XR 3.75 mg modified release tablet, 10 868801000168103 Simipex XR 3.75 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 756411000168107 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet, 10 933220641000036103 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet 37716011000036100 pramipexole +18614011000036105 Morphine Tartrate (DBL) 120 mg/1.5 mL injection solution, 5 x 1.5 mL ampoules 16324 12105011000036103 Morphine Tartrate (DBL) 120 mg/1.5 mL injection solution, 5 x 1.5 mL ampoules 5071011000036100 Morphine Tartrate (DBL) 120 mg/1.5 mL injection solution, 1.5 mL ampoule 3133011000036103 Morphine Tartrate (DBL) 3133011000036103 Morphine Tartrate (DBL) 26915011000036104 morphine tartrate 120 mg/1.5 mL injection, 5 x 1.5 mL ampoules 22292011000036109 morphine tartrate 120 mg/1.5 mL injection, ampoule 21252011000036100 morphine +789051000168103 Diabex XR 750 mg modified release tablet, 100, blister pack 142230 789041000168100 Diabex XR 750 mg modified release tablet, 100 788901000168108 Diabex XR 750 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 789031000168109 metformin hydrochloride 750 mg modified release tablet, 100 788891000168109 metformin hydrochloride 750 mg modified release tablet 21614011000036102 metformin +791761000168103 Trexject 20 mg/0.4 mL injection solution, 12 x 0.4 mL syringes 233719 791751000168100 Trexject 20 mg/0.4 mL injection solution, 12 x 0.4 mL syringes 791641000168107 Trexject 20 mg/0.4 mL injection solution, 0.4 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791741000168102 methotrexate 20 mg/0.4 mL injection, 12 x 0.4 mL syringes 791631000168103 methotrexate 20 mg/0.4 mL injection, syringe 21342011000036105 methotrexate +673931000168106 Contour Next diagnostic strip, 100, bottle 673921000168108 Contour Next diagnostic strip, 100 673871000168104 Contour Next diagnostic strip 673861000168105 Contour Next 673861000168105 Contour Next 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +77203011000036108 Co-Enzyme Q10 (Bioglan) 100 mg soft capsule, 30, bottle 130275 76619011000036107 Co-Enzyme Q10 (Bioglan) 100 mg soft capsule, 30 76065011000036102 Co-Enzyme Q10 (Bioglan) 100 mg soft capsule 75985011000036106 Co-Enzyme Q10 (Bioglan) 75985011000036106 Co-Enzyme Q10 (Bioglan) 78172011000036100 ubidecarenone 100 mg capsule, 30 77524011000036105 ubidecarenone 100 mg capsule 77424011000036100 ubidecarenone +43728011000036100 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 10, blister pack 119091 41206011000036108 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 10 39842011000036101 Zolpidem Tartrate (DP) 10 mg film-coated tablet 39735011000036106 Zolpidem Tartrate (DP) 39735011000036106 Zolpidem Tartrate (DP) 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +783171000168105 Palexia IR 75 mg film-coated tablet, 20, blister pack 165317 783161000168104 Palexia IR 75 mg film-coated tablet, 20 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783151000168101 tapentadol 75 mg tablet, 20 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +954521000168101 Norprolac 150 microgram uncoated tablet, 30, blister pack 48992 954511000168108 Norprolac 150 microgram uncoated tablet, 30 954491000168103 Norprolac 150 microgram uncoated tablet 2964011000036100 Norprolac 2964011000036100 Norprolac 954501000168105 quinagolide 150 microgram tablet, 30 954481000168101 quinagolide 150 microgram tablet 21459011000036109 quinagolide +799781000168106 Abyraz 20 mg uncoated tablet, 7, blister pack 159505 799771000168108 Abyraz 20 mg uncoated tablet, 7 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799761000168102 aripiprazole 20 mg tablet, 7 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +937381000168100 Xelocitabine 150 mg film-coated tablet, 60, blister pack 282532 937371000168103 Xelocitabine 150 mg film-coated tablet, 60 937361000168109 Xelocitabine 150 mg film-coated tablet 937161000168106 Xelocitabine 937161000168106 Xelocitabine 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +44649011000036104 Ceftazidime (Sandoz) 1 g powder for injection, 1 vial 90915 42101011000036102 Ceftazidime (Sandoz) 1 g powder for injection, 1 vial 40352011000036104 Ceftazidime (Sandoz) 1 g powder for injection, vial 39747011000036102 Ceftazidime (Sandoz) 39747011000036102 Ceftazidime (Sandoz) 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +19565011000036102 Capoten 50 mg uncoated tablet, 90, bottle 57154 12836011000036109 Capoten 50 mg uncoated tablet, 90 6127011000036104 Capoten 50 mg uncoated tablet 3934011000036103 Capoten 3934011000036103 Capoten 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +20516011000036106 Metoprolol Tartrate (Chemmart) 100 mg uncoated tablet, 60, blister pack 78854 13716011000036105 Metoprolol Tartrate (Chemmart) 100 mg uncoated tablet, 60 6998011000036106 Metoprolol Tartrate (Chemmart) 100 mg uncoated tablet 4406011000036103 Metoprolol Tartrate (Chemmart) 4406011000036103 Metoprolol Tartrate (Chemmart) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +1048211000168105 Lamotrigine (Sandoz) Dispersible 100 mg uncoated tablet, 56, blister pack 291471 1048201000168107 Lamotrigine (Sandoz) Dispersible 100 mg uncoated tablet, 56 1048191000168109 Lamotrigine (Sandoz) Dispersible 100 mg uncoated tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +69643011000036106 Goanna Arthritis 10% cream, 100 g, tube 78992 67442011000036105 Goanna Arthritis 10% cream, 100 g 65668011000036100 Goanna Arthritis 10% cream 65065011000036104 Goanna Arthritis 65065011000036104 Goanna Arthritis 71970011000036107 trolamine salicylate 10% cream, 100 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +37517011000036101 Exelon-5 4.6 mg/24 hours patch, 30, sachet 133422 36785011000036108 Exelon-5 4.6 mg/24 hours patch, 30 36167011000036106 Exelon-5 4.6 mg/24 hours patch 53691000168107 Exelon-5 53691000168107 Exelon-5 38682011000036101 rivastigmine 4.6 mg/24 hours patch, 30 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +924561000168105 Carvedilol (DRLA) 3.125 mg film-coated tablet, 100, bottle 166009 924551000168108 Carvedilol (DRLA) 3.125 mg film-coated tablet, 100 924531000168102 Carvedilol (DRLA) 3.125 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924541000168106 carvedilol 3.125 mg tablet, 100 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +69309011000036106 Riodine 10% solution, 5 L, bottle 21199 67109011000036107 Riodine 10% solution, 5 L 65224011000036102 Riodine 10% solution 65019011000036101 Riodine 65019011000036101 Riodine 71677011000036107 povidone-iodine 10% solution, 5 L 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +671781000168109 Amlodipine/Atorvastatin 5/80 (Blooms The Chemist) film-coated tablet, 30, blister pack 214390 671771000168106 Amlodipine/Atorvastatin 5/80 (Blooms The Chemist) film-coated tablet, 30 671761000168100 Amlodipine/Atorvastatin 5/80 (Blooms The Chemist) film-coated tablet 670851000168102 Amlodipine/Atorvastatin 5/80 (Blooms The Chemist) 670851000168102 Amlodipine/Atorvastatin 5/80 (Blooms The Chemist) 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +78994011000036104 Bergoline 2 mg uncoated tablet, 30, bottle 132563 78815011000036107 Bergoline 2 mg uncoated tablet, 30 78634011000036106 Bergoline 2 mg uncoated tablet 78599011000036106 Bergoline 78599011000036106 Bergoline 27391011000036108 cabergoline 2 mg tablet, 30 22740011000036106 cabergoline 2 mg tablet 21526011000036105 cabergoline +81200011000036104 Natural Laxative with Softener (Chemists' Own) film-coated tablet, 100, blister pack 90442 80702011000036103 Natural Laxative with Softener (Chemists' Own) film-coated tablet, 100 80244011000036109 Natural Laxative with Softener (Chemists' Own) film-coated tablet 80142011000036103 Natural Laxative with Softener (Chemists' Own) 80142011000036103 Natural Laxative with Softener (Chemists' Own) 81751011000036106 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 100 81306011000036109 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet 81227011000036109 sennoside B + senna leaf powder + docusate +1056761000168101 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet, 10, blister pack 196808 1056751000168103 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet, 10 1056721000168106 Ondansetron ODT (Auro) 4 mg orally disintegrating tablet 1056641000168105 Ondansetron ODT (Auro) 1056641000168105 Ondansetron ODT (Auro) 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +786951000168106 Physeptone 5 mg uncoated tablet, 20, bottle 10990 786941000168109 Physeptone 5 mg uncoated tablet, 20 786921000168103 Physeptone 5 mg uncoated tablet 3289011000036107 Physeptone 3289011000036107 Physeptone 786931000168100 methadone hydrochloride 5 mg tablet, 20 786911000168105 methadone hydrochloride 5 mg tablet 21357011000036109 methadone +81084011000036101 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet, 48, blister pack 158210 80592011000036100 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet, 48 80204011000036100 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet 80141011000036109 Ibuprofen plus Codeine (Chemists' Own) 80141011000036109 Ibuprofen plus Codeine (Chemists' Own) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +772371000168109 Combantrin 50 mg/mL oral liquid suspension, 30 mL, bottle 10747 772361000168103 Combantrin 50 mg/mL oral liquid suspension, 30 mL 772281000168103 Combantrin 50 mg/mL oral liquid suspension 53233011000036109 Combantrin 53233011000036109 Combantrin 772351000168100 pyrantel 50 mg/mL oral liquid, 30 mL 772271000168101 pyrantel 50 mg/mL oral liquid 21475011000036105 pyrantel +926882011000036100 Wart Removal Gel (Scholl) 12.5% collodion, 5 g, tube 66820 926278011000036103 Wart Removal Gel (Scholl) 12.5% collodion, 5 g 925723011000036100 Wart Removal Gel (Scholl) 12.5% collodion 41111000168105 Wart Removal Gel (Scholl) 41111000168105 Wart Removal Gel (Scholl) 927380011000036103 salicylic acid 12.5% collodion, 5 g 927023011000036101 salicylic acid 12.5% collodion 52232011000036106 salicylic acid +86177011000036105 Dotarem 5.59 g/20 mL injection solution, 20 mL vial 76923 85784011000036104 Dotarem 5.59 g/20 mL injection solution, 20 mL vial 85398011000036106 Dotarem 5.59 g/20 mL injection solution, 20 mL vial 85269011000036107 Dotarem 85269011000036107 Dotarem 86467011000036103 gadoteric acid 5.59 g/20 mL injection, 20 mL vial 86240011000036108 gadoteric acid 5.59 g/20 mL injection, vial 86191011000036109 gadoteric acid +1042431000168103 Nicotine (Amcal) 4 mg lozenge, 72, blister pack 213240 1042421000168101 Nicotine (Amcal) 4 mg lozenge, 72 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 87242011000036106 nicotine 4 mg lozenge, 72 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +770361000168104 Actair 100 IR sublingual tablet, 3, blister pack 770351000168101 Actair 100 IR sublingual tablet, 3 770331000168107 Actair 100 IR sublingual tablet 768701000168107 Actair 100 IR 768701000168107 Actair 100 IR 770341000168103 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet, 3 770321000168109 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +60712011000036103 Claratyne Children's Peach 1 mg/mL oral liquid solution, 100 mL, bottle 44453 56670011000036107 Claratyne Children's Peach 1 mg/mL oral liquid solution, 100 mL 54028011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63586011000036101 loratadine 1 mg/mL oral liquid, 100 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +19946011000036106 Acimax 20 mg enteric tablet, 30, blister pack 67306 13189011000036108 Acimax 20 mg enteric tablet, 30 6472011000036101 Acimax 20 mg enteric tablet 3241011000036101 Acimax 3241011000036101 Acimax 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +770201000168107 Oralair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack, composite pack 167565 770191000168109 Oralair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack 770071000168107 Oralair 300 IR sublingual tablet 770141000168101 Oralair Initiation Treatment 770051000168103 Oralair 300 IR 770181000168106 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet [3] (&) Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet [28], 1 pack 770061000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +770201000168107 Oralair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack, composite pack 167565 770191000168109 Oralair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack 770011000168104 Oralair 100 IR sublingual tablet 770141000168101 Oralair Initiation Treatment 769981000168106 Oralair 100 IR 770181000168106 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet [3] (&) Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet [28], 1 pack 770001000168102 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 100 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +804041000168103 Cardiprin 100 mg tablet, 90, blister pack 15357 804031000168107 Cardiprin 100 mg tablet, 90 803961000168101 Cardiprin 100 mg tablet 4114011000036109 Cardiprin 4114011000036109 Cardiprin 26903011000036102 aspirin 100 mg tablet, 90 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +936741000168109 Alendronate Plus D3 and Calcium (Blooms The Chemist) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 246774 936731000168100 Alendronate Plus D3 and Calcium (Blooms The Chemist) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 885951000168103 Alendronate Plus D3 70 mg/140 microgram (Blooms The Chemist) tablet 936721000168103 Alendronate Plus D3 and Calcium (Blooms The Chemist) 885941000168100 Alendronate Plus D3 70 mg/140 microgram (Blooms The Chemist) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +936741000168109 Alendronate Plus D3 and Calcium (Blooms The Chemist) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 246774 936731000168100 Alendronate Plus D3 and Calcium (Blooms The Chemist) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 936691000168107 Calcium (Blooms The Chemist) 1.25 g (calcium 500 mg) film-coated tablet 936721000168103 Alendronate Plus D3 and Calcium (Blooms The Chemist) 936681000168109 Calcium (Blooms The Chemist) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +928938011000036108 Topira-Lax 50 mg film-coated tablet, 60, bottle 155182 928299011000036109 Topira-Lax 50 mg film-coated tablet, 60 927928011000036101 Topira-Lax 50 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +667401000168108 Kaptan 300 mg film-coated tablet, 60, blister pack 202245 667391000168106 Kaptan 300 mg film-coated tablet, 60 667361000168104 Kaptan 300 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1082931000168101 Solian 50 mg uncoated tablet, 100, blister pack 96421 1082921000168104 Solian 50 mg uncoated tablet, 100 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 924157011000036105 amisulpride 50 mg tablet, 100 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +18057011000036102 Angiomax 250 mg powder for injection, 1 vial 102155 11250011000036100 Angiomax 250 mg powder for injection, 1 vial 5672011000036101 Angiomax 250 mg powder for injection, 250 mg vial 3849011000036107 Angiomax 3849011000036107 Angiomax 26568011000036104 bivalirudin 250 mg injection, 1 vial 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +77301000036107 Astromide 5 mg hard capsule, 5, sachet 197463 933223781000036107 Astromide 5 mg hard capsule, 5 933219901000036105 Astromide 5 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +856071000168106 Algerika 50 mg hard capsule, 21, blister pack 229557 856061000168100 Algerika 50 mg hard capsule, 21 856011000168103 Algerika 50 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 856051000168102 pregabalin 50 mg capsule, 21 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +45251000036109 Simvastatin (DRLA) 40 mg film-coated tablet, 30, bottle 164088 43801000036105 Simvastatin (DRLA) 40 mg film-coated tablet, 30 41171000036109 Simvastatin (DRLA) 40 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +870511000168105 Desven 100 mg modified release tablet, 28, bottle 218072 870501000168107 Desven 100 mg modified release tablet, 28 870451000168105 Desven 100 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +50423011000036105 Glucocard 01 Sensor diagnostic strip, 50, bottle 127232 49546011000036100 Glucocard 01 Sensor diagnostic strip, 50 48461011000036106 Glucocard 01 Sensor diagnostic strip 61541000168108 Glucocard 01 Sensor 61541000168108 Glucocard 01 Sensor 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +691011000168108 Perindopril Erbumine (Blooms The Chemist) 2 mg uncoated tablet, 30, blister pack 151914 691001000168105 Perindopril Erbumine (Blooms The Chemist) 2 mg uncoated tablet, 30 690991000168109 Perindopril Erbumine (Blooms The Chemist) 2 mg uncoated tablet 690951000168104 Perindopril Erbumine (Blooms The Chemist) 690951000168104 Perindopril Erbumine (Blooms The Chemist) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +44709011000036103 Chirocaine 62.5 mg/100 mL injection solution, 24 x 100 mL bags 94479 42154011000036106 Chirocaine 62.5 mg/100 mL injection solution, 24 x 100 mL bags 40370011000036101 Chirocaine 62.5 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46915011000036102 levobupivacaine 62.5 mg/100 mL injection, 24 x 100 mL bags 45345011000036104 levobupivacaine 62.5 mg/100 mL injection, bag 44881011000036100 levobupivacaine +20143011000036101 Ibilex 250 mg hard capsule, 20, blister pack 73524 13367011000036108 Ibilex 250 mg hard capsule, 20 6652011000036101 Ibilex 250 mg hard capsule 3667011000036100 Ibilex 3667011000036100 Ibilex 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +931491011000036101 Topiramate (LAPL) 200 mg film-coated tablet, 60, blister pack 155196 928307011000036108 Topiramate (LAPL) 200 mg film-coated tablet, 60 927936011000036102 Topiramate (LAPL) 200 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +19175011000036101 Bisacodyl (Petrus) 10 mg moulded suppository, 10, strip pack 46400 12473011000036106 Bisacodyl (Petrus) 10 mg moulded suppository, 10 5675011000036109 Bisacodyl (Petrus) 10 mg moulded suppository 4362011000036105 Bisacodyl (Petrus) 4362011000036105 Bisacodyl (Petrus) 27141011000036109 bisacodyl 10 mg suppository, 10 22506011000036101 bisacodyl 10 mg suppository 21264011000036101 bisacodyl +68675011000036106 Diaformin XR 500 mg modified release tablet, 60, blister pack 120868 66657011000036107 Diaformin XR 500 mg modified release tablet, 60 65316011000036106 Diaformin XR 500 mg modified release tablet 35531000168107 Diaformin XR 35531000168107 Diaformin XR 71367011000036105 metformin hydrochloride 500 mg modified release tablet, 60 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +834501000168103 Rocuronium (Mylan) 50 mg/5 mL injection solution, 10 x 5 mL vials 169872 834491000168105 Rocuronium (Mylan) 50 mg/5 mL injection solution, 10 x 5 mL vials 834451000168100 Rocuronium (Mylan) 50 mg/5 mL injection solution, 5 mL vial 834441000168102 Rocuronium (Mylan) 834441000168102 Rocuronium (Mylan) 82570011000036102 rocuronium bromide 50 mg/5 mL injection, 10 x 5 mL vials 45193011000036101 rocuronium bromide 50 mg/5 mL injection, vial 44919011000036108 rocuronium +1014531000168101 Valsartan (Apotex) 160 mg film-coated tablet, 14, blister pack 185859 1014521000168104 Valsartan (Apotex) 160 mg film-coated tablet, 14 1014451000168106 Valsartan (Apotex) 160 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63788011000036103 valsartan 160 mg tablet, 14 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +87698011000036100 Carvedilol (Apo) 3.125 mg film-coated tablet, 30, blister pack 123823 87412011000036100 Carvedilol (Apo) 3.125 mg film-coated tablet, 30 87295011000036108 Carvedilol (Apo) 3.125 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +696901000168101 Pravastatin (Auro) 40 mg uncoated tablet, 30, bottle 191717 696881000168103 Pravastatin (Auro) 40 mg uncoated tablet, 30 696871000168101 Pravastatin (Auro) 40 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +60108011000036108 Nurofen Caplet 200 mg sugar coated tablet, 12, blister pack 127287 56067011000036105 Nurofen Caplet 200 mg sugar coated tablet, 12 53777011000036106 Nurofen Caplet 200 mg sugar coated tablet 17551000168104 Nurofen Caplet 17551000168104 Nurofen Caplet 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +799701000168103 Abyraz 15 mg uncoated tablet, 98, blister pack 159506 799691000168103 Abyraz 15 mg uncoated tablet, 98 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799681000168101 aripiprazole 15 mg tablet, 98 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +60350011000036109 Benadryl for the Family Original oral liquid solution, 15 mL, bottle 14114 56309011000036100 Benadryl for the Family Original oral liquid solution, 15 mL 53872011000036107 Benadryl for the Family Original oral liquid solution, 5 mL 3541000168107 Benadryl for the Family Original 3541000168107 Benadryl for the Family Original 63298011000036108 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 15 mL 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +60834011000036100 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 60 mg uncoated tablet, 12, blister pack 58497 56790011000036109 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 60 mg uncoated tablet, 12 54081011000036105 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 60 mg uncoated tablet 52181000168107 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 52181000168107 Sinus and Nasal Decongestant Non Drowsy (Pharmacist) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +1009231000168103 Ezetimibe (Apo) 10 mg tablet, 30, bottle 250254 1009221000168101 Ezetimibe (Apo) 10 mg tablet, 30 1009211000168108 Ezetimibe (Apo) 10 mg tablet 1009201000168105 Ezetimibe (Apo) 1009201000168105 Ezetimibe (Apo) 28041011000036106 ezetimibe 10 mg tablet, 30 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +768351000168105 Aqueous Cream APF (David Craig) cream, 100 g, jar 768341000168108 Aqueous Cream APF (David Craig) cream, 100 g 768301000168106 Aqueous Cream APF (David Craig) cream 768291000168105 Aqueous Cream APF (David Craig) 768291000168105 Aqueous Cream APF (David Craig) 768331000168104 emulsifying wax 9% + white soft paraffin + glycerol + liquid paraffin + water purified cream, 100 g 86911011000036105 emulsifying wax 9% + white soft paraffin + glycerol + liquid paraffin + water purified cream 86905011000036105 emulsifying wax + white soft paraffin + glycerol + liquid paraffin + water purified +933215751000036107 Exaccord 25 mg film-coated tablet, 90, blister pack 167856 933205291000036106 Exaccord 25 mg film-coated tablet, 90 933196241000036106 Exaccord 25 mg film-coated tablet 933193861000036102 Exaccord 933193861000036102 Exaccord 933205301000036105 exemestane 25 mg tablet, 90 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +69113011000036100 Strepsils original flavour lozenge, 24, blister pack 14974 66914011000036106 Strepsils original flavour lozenge, 24 65227011000036108 Strepsils original flavour lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +87676011000036107 Clopidogrel (Winthrop) 75 mg film-coated tablet, 50, blister pack 148947 87434011000036104 Clopidogrel (Winthrop) 75 mg film-coated tablet, 50 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87803011000036103 clopidogrel 75 mg tablet, 50 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1013571000168101 Ziprasidone (Apo) 20 mg hard capsule, 300, bottle 201046 1013561000168107 Ziprasidone (Apo) 20 mg hard capsule, 300 148251000036106 Ziprasidone (Apo) 20 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 1013551000168105 ziprasidone 20 mg capsule, 300 22908011000036106 ziprasidone 20 mg capsule 21267011000036107 ziprasidone +925304011000036105 Exforge 10/320 film-coated tablet, 7, blister pack 161824 924841011000036105 Exforge 10/320 film-coated tablet, 7 924524011000036109 Exforge 10/320 film-coated tablet 20141000168104 Exforge 10/320 20141000168104 Exforge 10/320 925439011000036105 amlodipine 10 mg + valsartan 320 mg tablet, 7 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +836061000168104 Panamax Co uncoated tablet, 40, blister pack 62661 836051000168101 Panamax Co uncoated tablet, 40 836041000168103 Panamax Co uncoated tablet 20881000168101 Panamax Co 20881000168101 Panamax Co 652931000168102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +33577011000036102 Humulin 30/70 injection suspension, 5 x 3 mL cartridges 39659 33315011000036100 Humulin 30/70 injection suspension, 5 x 3 mL cartridges 4663011000036107 Humulin 30/70 injection suspension, 3 mL cartridge 29311000168107 Humulin 30/70 29311000168107 Humulin 30/70 27770011000036107 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, 5 x 3 mL cartridges 23101011000036109 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +971781000168108 Renflexis 100 mg powder for injection, 1 vial 260410 971771000168105 Renflexis 100 mg powder for injection, 1 vial 971761000168104 Renflexis 100 mg powder for injection, 100 mg vial 971751000168101 Renflexis 971751000168101 Renflexis 27724011000036101 infliximab 100 mg injection, 1 vial 23059011000036109 infliximab 100 mg injection, vial 21926011000036101 infliximab +933247421000036107 Fibre Health Smooth Orange Sugar Free 576.3 mg/g powder for oral liquid, 283 g, jar 171145 933244251000036108 Fibre Health Smooth Orange Sugar Free 576.3 mg/g powder for oral liquid, 283 g 933241761000036100 Fibre Health Smooth Orange Sugar Free 576.3 mg/g powder for oral liquid 56421000168104 Fibre Health Smooth 56421000168104 Fibre Health Smooth 933244261000036106 psyllium husk powder 576.3 mg/g powder for oral liquid, 283 g 933241771000036108 psyllium husk powder 576.3 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +84352011000036108 Loratadine (Pharmacy Choice) 10 mg uncoated tablet, 10, blister pack 160831 84045011000036104 Loratadine (Pharmacy Choice) 10 mg uncoated tablet, 10 83668011000036109 Loratadine (Pharmacy Choice) 10 mg uncoated tablet 83597011000036104 Loratadine (Pharmacy Choice) 83597011000036104 Loratadine (Pharmacy Choice) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +69090011000036104 Fluvoxamine Maleate (Apo) 100 mg film-coated tablet, 30, blister pack 147389 66891011000036100 Fluvoxamine Maleate (Apo) 100 mg film-coated tablet, 30 65261011000036106 Fluvoxamine Maleate (Apo) 100 mg film-coated tablet 45821000168106 Fluvoxamine Maleate (Apo) 45821000168106 Fluvoxamine Maleate (Apo) 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +60592011000036103 Zadine 1 mg uncoated tablet, 4, blister pack 18228 56550011000036100 Zadine 1 mg uncoated tablet, 4 53968011000036105 Zadine 1 mg uncoated tablet 53132011000036100 Zadine 53132011000036100 Zadine 63416011000036109 azatadine maleate 1 mg tablet, 4 61951011000036102 azatadine maleate 1 mg tablet 61785011000036102 azatadine +718241000168103 Meropenem (Ranbaxy) 500 mg powder for injection, 1 vial 167025 718231000168107 Meropenem (Ranbaxy) 500 mg powder for injection, 1 vial 718221000168109 Meropenem (Ranbaxy) 500 mg powder for injection, 500 mg vial 718151000168108 Meropenem (Ranbaxy) 718151000168108 Meropenem (Ranbaxy) 128491000036103 meropenem 500 mg injection, 1 vial 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +21150011000036102 Zamhexal 2 mg uncoated tablet, 50, bottle 98666 14292011000036103 Zamhexal 2 mg uncoated tablet, 50 7578011000036105 Zamhexal 2 mg uncoated tablet 3157011000036108 Zamhexal 3157011000036108 Zamhexal 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +933247441000036104 Exemestane (Sandoz) 25 mg film-coated tablet, 15, blister pack 174337 933244291000036104 Exemestane (Sandoz) 25 mg film-coated tablet, 15 933241791000036107 Exemestane (Sandoz) 25 mg film-coated tablet 933241011000036104 Exemestane (Sandoz) 933241011000036104 Exemestane (Sandoz) 933205271000036107 exemestane 25 mg tablet, 15 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +734031000168100 Caltrate Bone Health film-coated tablet, 100, bottle 214784 734021000168103 Caltrate Bone Health film-coated tablet, 100 733971000168100 Caltrate Bone Health film-coated tablet 730111000168102 Caltrate Bone Health 730111000168102 Caltrate Bone Health 734011000168105 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +931447011000036104 Fexofenadine Hydrochloride (Pharmacor) 180 mg film-coated tablet, 30, blister pack 144692 930626011000036106 Fexofenadine Hydrochloride (Pharmacor) 180 mg film-coated tablet, 30 929978011000036109 Fexofenadine Hydrochloride (Pharmacor) 180 mg film-coated tablet 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +33554011000036105 Quinapril (DP) 20 mg film-coated tablet, 30, blister pack 133235 33292011000036103 Quinapril (DP) 20 mg film-coated tablet, 30 33054011000036107 Quinapril (DP) 20 mg film-coated tablet 32962011000036106 Quinapril (DP) 32962011000036106 Quinapril (DP) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +20545011000036108 Clavulin Duo 500/125 film-coated tablet, 10, blister pack 79741 13742011000036104 Clavulin Duo 500/125 film-coated tablet, 10 7026011000036108 Clavulin Duo 500/125 film-coated tablet 39301000168107 Clavulin Duo 500/125 39301000168107 Clavulin Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20545011000036108 Clavulin Duo 500/125 film-coated tablet, 10, blister pack 142690 13742011000036104 Clavulin Duo 500/125 film-coated tablet, 10 7026011000036108 Clavulin Duo 500/125 film-coated tablet 39301000168107 Clavulin Duo 500/125 39301000168107 Clavulin Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20424011000036101 Mobic 15 mg uncoated tablet, 30, blister pack 77695 13631011000036104 Mobic 15 mg uncoated tablet, 30 6914011000036100 Mobic 15 mg uncoated tablet 3572011000036102 Mobic 3572011000036102 Mobic 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +50550011000036106 Novorapid Flexpen 100 units/mL injection solution, 10 x 3 mL cartridges 133445 49586011000036108 Novorapid Flexpen 100 units/mL injection solution, 10 x 3 mL cartridges 6869011000036108 Novorapid Flexpen 100 units/mL injection solution, 3 mL cartridge 47811000168105 Novorapid Flexpen 47811000168105 Novorapid Flexpen 51491011000036107 insulin aspart 100 units/mL injection, 10 x 3 mL cartridges 23150011000036105 insulin aspart 100 units/mL injection, cartridge 21699011000036100 insulin aspart +742731000168106 Actaze 15 mg uncoated tablet, 28, blister pack 254272 742721000168108 Actaze 15 mg uncoated tablet, 28 742691000168104 Actaze 15 mg uncoated tablet 742601000168105 Actaze 742601000168105 Actaze 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +19986011000036103 Nifehexal 20 mg film-coated tablet, 60, blister pack 68084 13227011000036106 Nifehexal 20 mg film-coated tablet, 60 6509011000036108 Nifehexal 20 mg film-coated tablet 4328011000036101 Nifehexal 4328011000036101 Nifehexal 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +1092761000168105 Difflam Lozenge Raspberry Sugar Free lozenge, 8, blister pack 280644 1092751000168108 Difflam Lozenge Raspberry Sugar Free lozenge, 8 995881000168106 Difflam Lozenge Raspberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995761000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 8 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +1110021000168105 Midalim 5 mg/mL injection solution, 1 mL ampoule 207221 1110011000168103 Midalim 5 mg/mL injection solution, 1 mL ampoule 1110001000168101 Midalim 5 mg/mL injection solution, ampoule 1107761000168100 Midalim 1107761000168100 Midalim 664011000168107 midazolam 5 mg/mL injection, 1 mL ampoule 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +971741000168103 Lypralin 150 mg hard capsule, 500, bottle 235852 971731000168107 Lypralin 150 mg hard capsule, 500 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 971721000168109 pregabalin 150 mg capsule, 500 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1060691000168106 Aripiprazole (Apo) 2 mg uncoated tablet, 100, bottle 152917 1060681000168108 Aripiprazole (Apo) 2 mg uncoated tablet, 100 963481000168107 Aripiprazole (Apo) 2 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 1014051000168102 aripiprazole 2 mg tablet, 100 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +933246071000036103 Mestinon Timespan 180 mg modified release tablet, 50, bottle 13749 933243081000036106 Mestinon Timespan 180 mg modified release tablet, 50 4938011000036108 Mestinon Timespan 180 mg modified release tablet 52401000168109 Mestinon Timespan 52401000168109 Mestinon Timespan 933243091000036108 pyridostigmine bromide 180 mg modified release tablet, 50 22226011000036101 pyridostigmine bromide 180 mg modified release tablet 21240011000036101 pyridostigmine +61220011000036106 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 24, blister pack 76461 57156011000036106 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 24 54219011000036102 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet 16981000168101 Paracetamol Capseal (Chemists' Own) 16981000168101 Paracetamol Capseal (Chemists' Own) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +20568011000036106 Phenergan 10 mg film-coated tablet, 50, blister pack 80159 13758011000036104 Phenergan 10 mg film-coated tablet, 50 7043011000036104 Phenergan 10 mg film-coated tablet 22661000168108 Phenergan 22661000168108 Phenergan 27921011000036109 promethazine hydrochloride 10 mg tablet, 50 23245011000036102 promethazine hydrochloride 10 mg tablet 21237011000036104 promethazine +928902011000036100 Mepivacaine Hydrochloride (ATO) 3% (66 mg/2.2 mL) injection solution, 50 x 2.2 mL cartridges 150494 928264011000036106 Mepivacaine Hydrochloride (ATO) 3% (66 mg/2.2 mL) injection solution, 50 x 2.2 mL cartridges 927913011000036102 Mepivacaine Hydrochloride (ATO) 3% (66 mg/2.2 mL) injection solution, 2.2 mL cartridge 927762011000036100 Mepivacaine Hydrochloride (ATO) 927762011000036100 Mepivacaine Hydrochloride (ATO) 46399011000036109 mepivacaine hydrochloride 3% (66 mg/2.2 mL) injection, 50 x 2.2 mL cartridges 45133011000036108 mepivacaine hydrochloride 3% (66 mg/2.2 mL) injection, cartridge 44901011000036107 mepivacaine +73336011000036108 Ondansetron (Apo) 4 mg film-coated tablet, 4, blister pack 152187 73130011000036101 Ondansetron (Apo) 4 mg film-coated tablet, 4 72944011000036102 Ondansetron (Apo) 4 mg film-coated tablet 33231000168105 Ondansetron (Apo) 33231000168105 Ondansetron (Apo) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +1047731000168105 Paracetamol/Codeine 500/30 (Apo) tablet, 4, blister pack 220980 1047721000168107 Paracetamol/Codeine 500/30 (Apo) tablet, 4 1047661000168105 Paracetamol/Codeine 500/30 (Apo) tablet 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +34718011000036105 Methadone Hydrochloride Syrup (Orion) 2.25 mg/mL oral liquid solution, 20 mL, bottle 21171 34302011000036108 Methadone Hydrochloride Syrup (Orion) 2.25 mg/mL oral liquid solution, 20 mL 34025011000036108 Methadone Hydrochloride Syrup (Orion) 2.25 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35151011000036107 methadone hydrochloride 2.25 mg/mL oral liquid, 20 mL 34873011000036105 methadone hydrochloride 2.25 mg/mL oral liquid 21357011000036109 methadone +715021000168107 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g, tube 101964 715011000168100 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g 714931000168105 Anti Fungal V 6 Day (Amcal) 1% vaginal cream 39961000168107 Anti Fungal V 6 Day (Amcal) 39961000168107 Anti Fungal V 6 Day (Amcal) 715001000168103 clotrimazole 1% vaginal cream, 50 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +933151011000036103 Tramal Drops 100 mg/mL oral liquid solution, 10 mL, bottle 99001 932943011000036106 Tramal Drops 100 mg/mL oral liquid solution, 10 mL 932776011000036108 Tramal Drops 100 mg/mL oral liquid solution, 1 drop 59331000168101 Tramal Drops 59331000168101 Tramal Drops 28292011000036103 tramadol hydrochloride 100 mg/mL oral liquid, 10 mL 932777011000036106 tramadol hydrochloride 100 mg/mL oral liquid, 1 drop 21486011000036105 tramadol +1059651000168102 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 14, blister pack 234468 1059641000168104 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 14 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930391000168103 rosuvastatin 5 mg tablet, 14 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1106781000168106 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 14, blister pack 119095 1106771000168108 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 14 1106721000168107 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet 1106711000168100 Zolpidem (Dr. Reddy's) 1106711000168100 Zolpidem (Dr. Reddy's) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +39373011000036106 Gabatine 300 mg capsule, 100, blister pack 107494 39254011000036104 Gabatine 300 mg capsule, 100 39211011000036105 Gabatine 300 mg capsule 39179011000036102 Gabatine 39179011000036102 Gabatine 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +20326011000036101 Indocid 25 mg hard capsule, 50, blister pack 76021 13535011000036107 Indocid 25 mg hard capsule, 50 6818011000036101 Indocid 25 mg hard capsule 3869011000036100 Indocid 3869011000036100 Indocid 27794011000036105 indometacin 25 mg capsule, 50 23123011000036103 indometacin 25 mg capsule 21301011000036107 indometacin +1081241000168107 Alpha Keri Bath and Body Oil application, 375 mL, bottle 24618 1081231000168103 Alpha Keri Bath and Body Oil application, 375 mL 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 1081221000168101 liquid paraffin 80.7% + lanolin oil 2.64% application, 375 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +181461000036105 Diltiazem Hydrochloride (Actavis) 60 mg film-coated tablet, 90, blister pack 184097 180991000036102 Diltiazem Hydrochloride (Actavis) 60 mg film-coated tablet, 90 180551000036103 Diltiazem Hydrochloride (Actavis) 60 mg film-coated tablet 180341000036107 Diltiazem Hydrochloride (Actavis) 180341000036107 Diltiazem Hydrochloride (Actavis) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +933215791000036103 Raloxifene Hydrochloride (LY) 60 mg film-coated tablet, 7, blister pack 172551 933203831000036108 Raloxifene Hydrochloride (LY) 60 mg film-coated tablet, 7 933196351000036100 Raloxifene Hydrochloride (LY) 60 mg film-coated tablet 933193441000036100 Raloxifene Hydrochloride (LY) 933193441000036100 Raloxifene Hydrochloride (LY) 933203811000036104 raloxifene hydrochloride 60 mg tablet, 7 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +723681000168106 Ozin ODT 5 mg orally disintegrating tablet, 28, blister pack 212898 723671000168108 Ozin ODT 5 mg orally disintegrating tablet, 28 723661000168102 Ozin ODT 5 mg orally disintegrating tablet 723501000168104 Ozin ODT 723501000168104 Ozin ODT 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +20787011000036106 Formet 500 mg film-coated tablet, 100, bottle 192236 13956011000036106 Formet 500 mg film-coated tablet, 100 7242011000036102 Formet 500 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20787011000036106 Formet 500 mg film-coated tablet, 100, bottle 91107 13956011000036106 Formet 500 mg film-coated tablet, 100 7242011000036102 Formet 500 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +789931000168108 Oxycontin 15 mg modified release tablet, 120, bottle 200027 789921000168105 Oxycontin 15 mg modified release tablet, 120 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789911000168103 oxycodone hydrochloride 15 mg modified release tablet, 120 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +83401011000036103 Diamicron MR 60 mg modified release tablet, 60, blister pack 154042 83320011000036108 Diamicron MR 60 mg modified release tablet, 60 83251011000036105 Diamicron MR 60 mg modified release tablet 15271000168102 Diamicron MR 15271000168102 Diamicron MR 83491011000036100 gliclazide 60 mg modified release tablet, 60 83433011000036106 gliclazide 60 mg modified release tablet 21867011000036102 gliclazide +818701000168106 Quetiapine XR (Apo) 200 mg modified release tablet, 60, blister pack 226821 818691000168106 Quetiapine XR (Apo) 200 mg modified release tablet, 60 818641000168103 Quetiapine XR (Apo) 200 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +910931000168105 Cavstat 10 mg film-coated tablet, 42, blister pack 234485 910921000168107 Cavstat 10 mg film-coated tablet, 42 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910911000168100 rosuvastatin 10 mg tablet, 42 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +905471000168109 Farydak 20 mg hard capsule, 6, blister pack 230845 905461000168103 Farydak 20 mg hard capsule, 6 905441000168102 Farydak 20 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 905451000168100 panobinostat 20 mg capsule, 6 905431000168106 panobinostat 20 mg capsule 905421000168108 panobinostat +853261000168102 Aliquen 25 mg film-coated tablet, 60, blister pack 204837 853251000168104 Aliquen 25 mg film-coated tablet, 60 853241000168101 Aliquen 25 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +855111000168109 Algerika 150 mg hard capsule, 14, blister pack 229595 855101000168106 Algerika 150 mg hard capsule, 14 855081000168104 Algerika 150 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +873481000168107 Airzate MDI 125/25 pressurised inhalation, 120 actuations, metered dose aerosol can 208192 873471000168109 Airzate MDI 125/25 pressurised inhalation, 120 actuations 873461000168103 Airzate MDI 125/25 pressurised inhalation, actuation 873451000168100 Airzate MDI 125/25 873451000168100 Airzate MDI 125/25 26724011000036100 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22119011000036103 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +873481000168107 Airzate MDI 125/25 pressurised inhalation, 120 actuations, metered dose aerosol can 208664 873471000168109 Airzate MDI 125/25 pressurised inhalation, 120 actuations 873461000168103 Airzate MDI 125/25 pressurised inhalation, actuation 873451000168100 Airzate MDI 125/25 873451000168100 Airzate MDI 125/25 26724011000036100 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22119011000036103 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +929056011000036103 Galvumet 50/1000 film-coated tablet, 180, blister pack 161218 928417011000036102 Galvumet 50/1000 film-coated tablet, 180 927970011000036102 Galvumet 50/1000 film-coated tablet 14481000168101 Galvumet 50/1000 14481000168101 Galvumet 50/1000 929254011000036101 vildagliptin 50 mg + metformin hydrochloride 1 g tablet, 180 929156011000036106 vildagliptin 50 mg + metformin hydrochloride 1 g tablet 929132011000036106 vildagliptin + metformin +19819011000036100 Diclohexal 50 mg enteric tablet, 50, blister pack 63661 13074011000036107 Diclohexal 50 mg enteric tablet, 50 6358011000036109 Diclohexal 50 mg enteric tablet 3420011000036107 Diclohexal 3420011000036107 Diclohexal 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +1089741000168104 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 8, blister pack 281501 1089731000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 8 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813051000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 8 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +181481000036100 Enalapril Maleate (Actavis) 5 mg tablet, 30, blister pack 196470 181021000036108 Enalapril Maleate (Actavis) 5 mg tablet, 30 180451000036102 Enalapril Maleate (Actavis) 5 mg tablet 172841000036108 Enalapril Maleate (Actavis) 172841000036108 Enalapril Maleate (Actavis) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +784541000168105 Remifentanil (AFT) 2 mg powder for injection, 5 vials 194069 784531000168101 Remifentanil (AFT) 2 mg powder for injection, 5 vials 784521000168104 Remifentanil (AFT) 2 mg powder for injection, 2 mg vial 784451000168106 Remifentanil (AFT) 784451000168106 Remifentanil (AFT) 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +18540011000036103 Fluconazole (Baxter) 400 mg/200 mL injection solution, 200 mL bag 126432 11828011000036109 Fluconazole (Baxter) 400 mg/200 mL injection solution, 200 mL bag 5599011000036108 Fluconazole (Baxter) 400 mg/200 mL injection solution, 200 mL bag 3609011000036106 Fluconazole (Baxter) 3609011000036106 Fluconazole (Baxter) 26788011000036103 fluconazole 400 mg/200 mL injection, 200 mL bag 22174011000036106 fluconazole 400 mg/200 mL injection, bag 21365011000036105 fluconazole +43936011000036107 Lamotrigine (Sandoz) Dispersible/Chewable 25 mg tablet, 56, blister pack 187261 41428011000036103 Lamotrigine (Sandoz) Dispersible/Chewable 25 mg tablet, 56 39866011000036108 Lamotrigine (Sandoz) Dispersible/Chewable 25 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +43936011000036107 Lamotrigine (Sandoz) Dispersible/Chewable 25 mg tablet, 56, blister pack 143556 41428011000036103 Lamotrigine (Sandoz) Dispersible/Chewable 25 mg tablet, 56 39866011000036108 Lamotrigine (Sandoz) Dispersible/Chewable 25 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +18759011000036106 Glycerol for Adults (Petrus) 2.8 g moulded suppository, 12, strip pack 12789 11851011000036104 Glycerol for Adults (Petrus) 2.8 g moulded suppository, 12 5496011000036107 Glycerol for Adults (Petrus) 2.8 g moulded suppository 35211000168104 Glycerol for Adults (Petrus) 35211000168104 Glycerol for Adults (Petrus) 26792011000036100 glycerol 2.8 g suppository, 12 22178011000036104 glycerol 2.8 g suppository 21770011000036109 glycerol +103851000036107 Donepezil Hydrochloride (Sandoz) 5 mg film-coated tablet, 28, blister pack 157842 101211000036108 Donepezil Hydrochloride (Sandoz) 5 mg film-coated tablet, 28 98631000036102 Donepezil Hydrochloride (Sandoz) 5 mg film-coated tablet 97931000036107 Donepezil Hydrochloride (Sandoz) 97931000036107 Donepezil Hydrochloride (Sandoz) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +776991000168105 Inspra 25 mg film-coated tablet, 10, blister pack 100162 776981000168107 Inspra 25 mg film-coated tablet, 10 4780011000036109 Inspra 25 mg film-coated tablet 3018011000036108 Inspra 3018011000036108 Inspra 776971000168109 eplerenone 25 mg tablet, 10 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +44155011000036102 Lioresal 50 microgram/mL intrathecal injection, 1 mL ampoule 53837 41631011000036107 Lioresal 50 microgram/mL intrathecal injection, 1 mL ampoule 40112011000036104 Lioresal 50 microgram/mL intrathecal injection, ampoule 3860011000036106 Lioresal 3860011000036106 Lioresal 46450011000036103 baclofen 50 microgram/mL intrathecal injection, 1 mL ampoule 45161011000036104 baclofen 50 microgram/mL intrathecal injection, ampoule 21227011000036102 baclofen +919401000168100 Naltrexone (Apo) 50 mg film-coated tablet, 30, bottle 271013 919391000168102 Naltrexone (Apo) 50 mg film-coated tablet, 30 919381000168100 Naltrexone (Apo) 50 mg film-coated tablet 919371000168103 Naltrexone (Apo) 919371000168103 Naltrexone (Apo) 27559011000036103 naltrexone hydrochloride 50 mg tablet, 30 22898011000036104 naltrexone hydrochloride 50 mg tablet 21848011000036105 naltrexone +929108011000036103 Pioglitazone (Chemmart) 15 mg uncoated tablet, 50, blister pack 166918 928469011000036108 Pioglitazone (Chemmart) 15 mg uncoated tablet, 50 927991011000036102 Pioglitazone (Chemmart) 15 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929266011000036101 pioglitazone 15 mg tablet, 50 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +43694011000036109 Sutent 50 mg capsule, 30, bottle 123147 41291011000036100 Sutent 50 mg capsule, 30 39864011000036100 Sutent 50 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46226011000036100 sunitinib 50 mg capsule, 30 45036011000036108 sunitinib 50 mg capsule 44859011000036109 sunitinib +103841000036109 Donepezil Hydrochloride (Sandoz) 10 mg film-coated tablet, 28, blister pack 157837 101201000036106 Donepezil Hydrochloride (Sandoz) 10 mg film-coated tablet, 28 98601000036109 Donepezil Hydrochloride (Sandoz) 10 mg film-coated tablet 97931000036107 Donepezil Hydrochloride (Sandoz) 97931000036107 Donepezil Hydrochloride (Sandoz) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +735311000168108 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, 10 x 1 mL ampoules 12048 735301000168105 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, 10 x 1 mL ampoules 929933011000036101 Adrenaline (Link) 1 in 1000 (1 mg/mL) injection solution, ampoule 929922011000036105 Adrenaline (Link) 929922011000036105 Adrenaline (Link) 735291000168109 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, 10 x 1 mL ampoules 22115011000036100 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +61289011000036107 Paracetamol Children 5 to 12 Years (Terry White Chemists) colour free 240 mg/5 mL oral liquid suspension, 200 mL, bottle 78613 57225011000036103 Paracetamol Children 5 to 12 Years (Terry White Chemists) colour free 240 mg/5 mL oral liquid suspension, 200 mL 54245011000036108 Paracetamol Children 5 to 12 Years (Terry White Chemists) colour free 240 mg/5 mL oral liquid suspension, 5 mL 59681000168106 Paracetamol Children 5 to 12 Years (Terry White Chemists) 59681000168106 Paracetamol Children 5 to 12 Years (Terry White Chemists) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +44760011000036108 Voltaren 12.5 mg moulded suppository, 10, blister pack 96797 42205011000036102 Voltaren 12.5 mg moulded suppository, 10 40388011000036109 Voltaren 12.5 mg moulded suppository 28551000168108 Voltaren 28551000168108 Voltaren 46965011000036103 diclofenac sodium 12.5 mg suppository, 10 45361011000036105 diclofenac sodium 12.5 mg suppository 21288011000036105 diclofenac +61531011000036106 Amoxycillin (Sandoz) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 93720 57456011000036105 Amoxycillin (Sandoz) 250 mg/5 mL powder for oral liquid, 100 mL 54308011000036101 Amoxycillin (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +906591000168100 Celecoxib (Medis) 200 mg capsule, 30, blister pack 204618 906581000168103 Celecoxib (Medis) 200 mg capsule, 30 906471000168100 Celecoxib (Medis) 200 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +909811000168101 Dexamfettabs 5 mg uncoated tablet, 100, blister pack 270952 909801000168104 Dexamfettabs 5 mg uncoated tablet, 100 909791000168100 Dexamfettabs 5 mg uncoated tablet 909781000168103 Dexamfettabs 909781000168103 Dexamfettabs 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +19289011000036108 Norprolac 75 microgram uncoated tablet, 30, blister pack 48991 12579011000036104 Norprolac 75 microgram uncoated tablet, 30 4732011000036102 Norprolac 75 microgram uncoated tablet 2964011000036100 Norprolac 2964011000036100 Norprolac 27215011000036104 quinagolide 75 microgram tablet, 30 22575011000036100 quinagolide 75 microgram tablet 21459011000036109 quinagolide +683841000168102 Lansoprazole ODT (GH) 30 mg orally disintegrating tablet, 7, blister pack 216792 683831000168106 Lansoprazole ODT (GH) 30 mg orally disintegrating tablet, 7 683821000168108 Lansoprazole ODT (GH) 30 mg orally disintegrating tablet 683811000168101 Lansoprazole ODT (GH) 683811000168101 Lansoprazole ODT (GH) 79820011000036107 lansoprazole 30 mg orally disintegrating tablet, 7 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +1081161000168100 Alpha Keri Bath and Body Oil application, 50 mL, bottle 24618 1081151000168102 Alpha Keri Bath and Body Oil application, 50 mL 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 1081141000168104 liquid paraffin 80.7% + lanolin oil 2.64% application, 50 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +79080011000036101 Ramipril (Apo) 10 mg tablet, 30, blister pack 150902 78858011000036106 Ramipril (Apo) 10 mg tablet, 30 78664011000036102 Ramipril (Apo) 10 mg tablet 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +79080011000036101 Ramipril (Apo) 10 mg tablet, 30, blister pack 231162 78858011000036106 Ramipril (Apo) 10 mg tablet, 30 78664011000036102 Ramipril (Apo) 10 mg tablet 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +915151000168106 Certican 100 microgram dispersible tablet, 60, blister pack 97520 915141000168109 Certican 100 microgram dispersible tablet, 60 915091000168102 Certican 100 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915131000168100 everolimus 100 microgram dispersible tablet, 60 915081000168100 everolimus 100 microgram dispersible tablet 21615011000036103 everolimus +1011561000168106 Montelukast (Apo) 10 mg film-coated tablet, 100, bottle 170246 1011551000168109 Montelukast (Apo) 10 mg film-coated tablet, 100 158061000036100 Montelukast (Apo) 10 mg film-coated tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 1011541000168107 montelukast 10 mg tablet, 100 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +1115321000168103 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 14, blister pack 158163 1115311000168105 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 14 1115241000168103 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 922579011000036104 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 14 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +839161000168109 Joncia 50 mg hard capsule, 56, blister pack 176513 839151000168107 Joncia 50 mg hard capsule, 56 839071000168104 Joncia 50 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839141000168105 milnacipran hydrochloride 50 mg capsule, 56 839061000168105 milnacipran hydrochloride 50 mg capsule 838911000168100 milnacipran +922691000168109 Topiramate (Chemmart) 25 mg film-coated tablet, 60, blister pack 124737 922681000168106 Topiramate (Chemmart) 25 mg film-coated tablet, 60 922671000168108 Topiramate (Chemmart) 25 mg film-coated tablet 922471000168105 Topiramate (Chemmart) 922471000168105 Topiramate (Chemmart) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +1076991000168107 Atomoxetine (AS) 80 mg hard capsule, 28, blister pack 238364 1076981000168109 Atomoxetine (AS) 80 mg hard capsule, 28 1076951000168102 Atomoxetine (AS) 80 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +74805011000036106 Esitalo 20 mg film-coated tablet, 28, blister pack 146908 74292011000036108 Esitalo 20 mg film-coated tablet, 28 73791011000036107 Esitalo 20 mg film-coated tablet 73698011000036106 Esitalo 73698011000036106 Esitalo 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +933211591000036108 Gaviscon Cool Mint oral liquid suspension, 300 mL, bottle 127289 933200551000036105 Gaviscon Cool Mint oral liquid suspension, 300 mL 933194071000036104 Gaviscon Cool Mint oral liquid suspension, 10 mL 21391000168102 Gaviscon Cool 21391000168102 Gaviscon Cool 933200561000036108 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid, 300 mL 933194081000036102 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +785671000168103 Oxycodone (Sandoz) 10 mg modified release tablet, 60, bottle 153592 785661000168109 Oxycodone (Sandoz) 10 mg modified release tablet, 60 676311000168107 Oxycodone (Sandoz) 10 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +81010011000036108 Salicylic Acid (Gold Cross) 2% ointment, 100 g, jar 14244 80506011000036103 Salicylic Acid (Gold Cross) 2% ointment, 100 g 80170011000036103 Salicylic Acid (Gold Cross) 2% ointment 65087011000036106 Salicylic Acid (Gold Cross) 65087011000036106 Salicylic Acid (Gold Cross) 52322011000036104 salicylic acid 2% ointment, 100 g 52254011000036103 salicylic acid 2% ointment 52232011000036106 salicylic acid +103761000036100 Kogenate FS (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 153830 101101000036101 Kogenate FS (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 638261000168100 Kogenate FS (inert substance) diluent, 5 mL syringe 39981000168103 Kogenate FS 39981000168103 Kogenate FS 101111000036104 octocog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +103761000036100 Kogenate FS (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 153830 101101000036101 Kogenate FS (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 99151000036109 Kogenate FS (octocog alfa 2000 units) powder for injection, 2000 units vial 39981000168103 Kogenate FS 39981000168103 Kogenate FS 101111000036104 octocog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 70006011000036100 octocog alfa 2000 units injection, vial 69843011000036100 octocog alfa +700881000168109 Plegridy Titration Pack (1 x 63 microgram/0.5 mL injection device, 1 x 94 microgram/0.5 mL injection device), 1 pack 214200 700871000168106 Plegridy Titration Pack (1 x 63 microgram/0.5 mL injection device, 1 x 94 microgram/0.5 mL injection device), 1 pack 700771000168103 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL injection device 699641000168101 Plegridy Titration Pack 686381000168107 Plegridy 700861000168100 peginterferon beta-1a 63 microgram/0.5 mL injection [0.5 mL injection device] (&) peginterferon beta-1a 94 microgram/0.5 mL injection [0.5 mL injection device], 1 pack 700761000168109 peginterferon beta-1a 63 microgram/0.5 mL injection, injection device 698561000168109 peginterferon beta-1a +700881000168109 Plegridy Titration Pack (1 x 63 microgram/0.5 mL injection device, 1 x 94 microgram/0.5 mL injection device), 1 pack 214200 700871000168106 Plegridy Titration Pack (1 x 63 microgram/0.5 mL injection device, 1 x 94 microgram/0.5 mL injection device), 1 pack 700821000168105 Plegridy 94 microgram/0.5 mL injection solution, 0.5 mL injection device 699641000168101 Plegridy Titration Pack 686381000168107 Plegridy 700861000168100 peginterferon beta-1a 63 microgram/0.5 mL injection [0.5 mL injection device] (&) peginterferon beta-1a 94 microgram/0.5 mL injection [0.5 mL injection device], 1 pack 700811000168103 peginterferon beta-1a 94 microgram/0.5 mL injection, injection device 698561000168109 peginterferon beta-1a +697821000168100 Pramipexole (Apo) 250 microgram uncoated tablet, 100, blister pack 229627 697251000168109 Pramipexole (Apo) 250 microgram uncoated tablet, 100 697241000168107 Pramipexole (Apo) 250 microgram uncoated tablet 697171000168106 Pramipexole (Apo) 697171000168106 Pramipexole (Apo) 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +734191000168100 Soflax (AN) film-coated tablet, 100, bottle 214692 734181000168103 Soflax (AN) film-coated tablet, 100 734161000168107 Soflax (AN) film-coated tablet 734081000168104 Soflax (AN) 734081000168104 Soflax (AN) 734171000168101 docusate sodium 50 mg + sennosides A and B 13.3 mg tablet, 100 734151000168105 docusate sodium 50 mg + sennosides A and B 13.3 mg tablet 734141000168108 docusate + sennosides A and B +810161000168105 Entresto 24/26 film-coated tablet, 56, blister pack 234219 810151000168108 Entresto 24/26 film-coated tablet, 56 810041000168107 Entresto 24/26 film-coated tablet 810021000168101 Entresto 24/26 810021000168101 Entresto 24/26 810141000168106 sacubitril 24.3 mg + valsartan 25.7 mg tablet, 56 810031000168103 sacubitril 24.3 mg + valsartan 25.7 mg tablet 809631000168102 sacubitril + valsartan +764101000168104 Fenofibrate (RBX) 48 mg film-coated tablet, 30, bottle 233489 764091000168109 Fenofibrate (RBX) 48 mg film-coated tablet, 30 763771000168108 Fenofibrate (RBX) 48 mg film-coated tablet 763691000168103 Fenofibrate (RBX) 763691000168103 Fenofibrate (RBX) 764081000168106 fenofibrate 48 mg tablet, 30 22096011000036102 fenofibrate 48 mg tablet 21417011000036105 fenofibrate +925134011000036108 Scitropin A 5 mg/1.5 mL injection, 2 x 1.5 mL cartridges 140322 924696011000036102 Scitropin A 5 mg/1.5 mL injection, 2 x 1.5 mL cartridges 924420011000036109 Scitropin A 5 mg/1.5 mL injection, 1.5 mL cartridge 924409011000036106 Scitropin A 924409011000036106 Scitropin A 925407011000036107 somatropin 5 mg/1.5 mL injection, 2 x 1.5 mL cartridges 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +1077871000168104 Atomoxetine (AN) 60 mg hard capsule, 14, blister pack 234830 1077861000168105 Atomoxetine (AN) 60 mg hard capsule, 14 1077831000168102 Atomoxetine (AN) 60 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830231000168100 atomoxetine 60 mg capsule, 14 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +18805011000036101 Rozex 0.75% gel, 50 g, tube 15211 12077011000036109 Rozex 0.75% gel, 50 g 4727011000036103 Rozex 0.75% gel 3009011000036102 Rozex 3009011000036102 Rozex 26899011000036108 metronidazole 0.75% gel, 50 g 22277011000036102 metronidazole 0.75% gel 21482011000036106 metronidazole +19266011000036101 Rimycin 300 mg hard capsule, 100, bottle 48231 12556011000036106 Rimycin 300 mg hard capsule, 100 5666011000036107 Rimycin 300 mg hard capsule 3021011000036106 Rimycin 3021011000036106 Rimycin 27198011000036107 rifampicin 300 mg capsule, 100 22558011000036109 rifampicin 300 mg capsule 21532011000036109 rifampicin +772691000168103 Fluarix Tetra 2016 without Needle injection suspension, 10 x 0.5 mL syringes 200674 772681000168101 Fluarix Tetra 2016 without Needle injection suspension, 10 x 0.5 mL syringes 772641000168106 Fluarix Tetra 2016 without Needle injection suspension, 0.5 mL syringe 772631000168102 Fluarix Tetra 2016 772631000168102 Fluarix Tetra 2016 768511000168104 influenza quadrivalent adult vaccine 2016 injection, 10 x 0.5 mL syringes 768461000168102 influenza quadrivalent adult vaccine 2016 injection, 0.5 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +1065131000168107 Paracode Extra uncoated tablet, 32, blister pack 292800 1065121000168109 Paracode Extra uncoated tablet, 32 1065011000168101 Paracode Extra uncoated tablet 1065001000168104 Paracode Extra 1065001000168104 Paracode Extra 1065111000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 32 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +926864011000036106 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 50 mL vial 47996 926260011000036109 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 50 mL vial 925708011000036102 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 50 mL vial 14501000168105 Optiray-350 14501000168105 Optiray-350 927364011000036105 ioversol 741 mg (iodine 350 mg)/mL injection, 50 mL vial 927011011000036109 ioversol 741 mg (iodine 350 mg)/mL injection, 50 mL vial 77421011000036103 ioversol +767301000168107 Risperidone (Amneal) 500 microgram film-coated tablet, 60, blister pack 159974 767291000168106 Risperidone (Amneal) 500 microgram film-coated tablet, 60 767261000168104 Risperidone (Amneal) 500 microgram film-coated tablet 767061000168106 Risperidone (Amneal) 767061000168106 Risperidone (Amneal) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1043711000168106 Pryzex 10 mg film-coated tablet, 30, blister pack 178996 1043701000168108 Pryzex 10 mg film-coated tablet, 30 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 89791000036102 olanzapine 10 mg tablet, 30 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +18321011000036105 Dapsone (Link Medical Products) 100 mg uncoated tablet, 100, bottle 104483 11291011000036103 Dapsone (Link Medical Products) 100 mg uncoated tablet, 100 4740011000036102 Dapsone (Link Medical Products) 100 mg uncoated tablet 3965011000036106 Dapsone (Link Medical Products) 3965011000036106 Dapsone (Link Medical Products) 26596011000036100 dapsone 100 mg tablet, 100 22004011000036107 dapsone 100 mg tablet 21608011000036106 dapsone +876451000168108 Briviact 100 mg film-coated tablet, 14, blister pack 243792 876441000168106 Briviact 100 mg film-coated tablet, 14 876421000168100 Briviact 100 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876431000168102 brivaracetam 100 mg tablet, 14 876411000168107 brivaracetam 100 mg tablet 876401000168109 brivaracetam +932651000168101 Fluoride (Laclede) Koala Berry Flavour foam, 165 mL, aerosol can 73428 932641000168103 Fluoride (Laclede) Koala Berry Flavour foam, 165 mL 932631000168107 Fluoride (Laclede) Koala Berry Flavour foam 932331000168103 Fluoride (Laclede) 932331000168103 Fluoride (Laclede) 932361000168106 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL 932341000168107 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam 61768011000036106 fluoride +925261011000036104 Sumatriptan (Chemmart) 100 mg film-coated tablet, 2, blister pack 160198 924798011000036106 Sumatriptan (Chemmart) 100 mg film-coated tablet, 2 924493011000036106 Sumatriptan (Chemmart) 100 mg film-coated tablet 924383011000036104 Sumatriptan (Chemmart) 924383011000036104 Sumatriptan (Chemmart) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +922551000168100 PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets 922541000168102 PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets 922531000168106 PKU Sphere20 Red Berry powder for oral liquid, 35 g sachet 922511000168101 PKU Sphere20 922511000168101 PKU Sphere20 900831000168103 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 30 x 35 g sachets 900811000168108 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 35 g sachet 900801000168105 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine +1104041000168108 Quetiaccord 300 mg film-coated tablet, 100, blister pack 170857 1104031000168104 Quetiaccord 300 mg film-coated tablet, 100 3691000036107 Quetiaccord 300 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1058041000168102 Atorvastatin (Ran) 20 mg film-coated tablet, 30, blister pack 179856 1056561000168108 Atorvastatin (Ran) 20 mg film-coated tablet, 30 1056551000168106 Atorvastatin (Ran) 20 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +181621000036104 Candesartan Cilexetil HCTZ 16/12.5 (Terry White Chemists) uncoated tablet, 30, blister pack 210571 181161000036103 Candesartan Cilexetil HCTZ 16/12.5 (Terry White Chemists) uncoated tablet, 30 180561000036100 Candesartan Cilexetil HCTZ 16/12.5 (Terry White Chemists) uncoated tablet 55131000168100 Candesartan Cilexetil HCTZ 16/12.5 (Terry White Chemists) 55131000168100 Candesartan Cilexetil HCTZ 16/12.5 (Terry White Chemists) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +86109011000036105 Prezista 150 mg film-coated tablet, 240, bottle 156281 85693011000036109 Prezista 150 mg film-coated tablet, 240 85338011000036103 Prezista 150 mg film-coated tablet 32180011000036106 Prezista 32180011000036106 Prezista 86436011000036108 darunavir 150 mg tablet, 240 86223011000036103 darunavir 150 mg tablet 32622011000036101 darunavir +929717011000036105 Fluvax 2011 injection suspension, 10 x 0.5 mL syringes 91583 929553011000036107 Fluvax 2011 injection suspension, 10 x 0.5 mL syringes 929418011000036104 Fluvax 2011 injection suspension, 0.5 mL syringe 34771000168104 Fluvax 2011 34771000168104 Fluvax 2011 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +929717011000036105 Fluvax 2011 injection suspension, 10 x 0.5 mL syringes 117397 929553011000036107 Fluvax 2011 injection suspension, 10 x 0.5 mL syringes 929418011000036104 Fluvax 2011 injection suspension, 0.5 mL syringe 34771000168104 Fluvax 2011 34771000168104 Fluvax 2011 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +925521000168104 Androgel 1% (25 mg/2.5 g) gel, 30 x 2.5 g sachets 96122 925511000168106 Androgel 1% (25 mg/2.5 g) gel, 30 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46945011000036106 testosterone 1% (25 mg/2.5 g) gel, 30 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +1107011000168101 Eye Formula (Health Plus Vitamins) film-coated tablet, 180, jar 194216 1107001000168104 Eye Formula (Health Plus Vitamins) film-coated tablet, 180 1106981000168108 Eye Formula (Health Plus Vitamins) film-coated tablet 1106951000168101 Eye Formula (Health Plus Vitamins) 1106951000168101 Eye Formula (Health Plus Vitamins) 1106991000168106 ascorbic acid 250 mg + dl-alpha-tocopheryl acetate 200 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.3 mg (copper 1 mg) tablet, 180 1106971000168105 ascorbic acid 250 mg + dl-alpha-tocopheryl acetate 200 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.3 mg (copper 1 mg) tablet 1106961000168104 ascorbic acid + dl-alpha-tocopheryl acetate + zinc + copper +81114011000036108 Dizole 50 mg hard capsule, 30, blister pack 162640 80619011000036104 Dizole 50 mg hard capsule, 30 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81679011000036101 fluconazole 50 mg capsule, 30 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +978731000168103 Brevoxyl Creamy Wash 4% cream, 250 mL, tube 117862 978721000168101 Brevoxyl Creamy Wash 4% cream, 250 mL 978551000168101 Brevoxyl Creamy Wash 4% cream 978541000168103 Brevoxyl Creamy Wash 978541000168103 Brevoxyl Creamy Wash 978711000168108 benzoyl peroxide 4% cream, 250 mL 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +1043551000168104 Pryzex 10 mg film-coated tablet, 7, blister pack 178996 1043541000168101 Pryzex 10 mg film-coated tablet, 7 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 933205131000036101 olanzapine 10 mg tablet, 7 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +17837011000036109 Atenolol (GenRx) 50 mg film-coated tablet, 30, blister pack 129863 11430011000036100 Atenolol (GenRx) 50 mg film-coated tablet, 30 4851011000036109 Atenolol (GenRx) 50 mg film-coated tablet 3319011000036101 Atenolol (GenRx) 3319011000036101 Atenolol (GenRx) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +17837011000036109 Atenolol (GenRx) 50 mg film-coated tablet, 30, blister pack 111607 11430011000036100 Atenolol (GenRx) 50 mg film-coated tablet, 30 4851011000036109 Atenolol (GenRx) 50 mg film-coated tablet 3319011000036101 Atenolol (GenRx) 3319011000036101 Atenolol (GenRx) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1055061000168107 Pecfent 400 microgram/actuation nasal spray, 8 actuations, pump pack 185935 155931000036103 Pecfent 400 microgram/actuation nasal spray, 8 actuations 154871000036106 Pecfent 400 microgram/actuation nasal spray, actuation 154491000036107 Pecfent 154491000036107 Pecfent 155941000036108 fentanyl 400 microgram/actuation nasal spray, 8 actuations 154881000036108 fentanyl 400 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +19122011000036108 Elocon 0.1% ointment, 15 g, tube 43344 12425011000036108 Elocon 0.1% ointment, 15 g 5017011000036103 Elocon 0.1% ointment 4301011000036100 Elocon 4301011000036100 Elocon 27413011000036104 mometasone furoate 0.1% ointment, 15 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +1046521000168101 Buprenorphine (SDZ) 5 microgram/hour patch, 4, sachet 269669 1046511000168108 Buprenorphine (SDZ) 5 microgram/hour patch, 4 1046441000168106 Buprenorphine (SDZ) 5 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046501000168105 buprenorphine 5 microgram/hour patch, 4 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +43884011000036104 Invega 12 mg modified release tablet, 28, blister pack 130732 41376011000036106 Invega 12 mg modified release tablet, 28 39789011000036104 Invega 12 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 46273011000036105 paliperidone 12 mg modified release tablet, 28 45049011000036103 paliperidone 12 mg modified release tablet 34837011000036104 paliperidone +19364011000036104 Doxycycline (DBL) 100 mg modified release capsule, 21, blister pack 51689 12651011000036105 Doxycycline (DBL) 100 mg modified release capsule, 21 4656011000036109 Doxycycline (DBL) 100 mg modified release capsule 3565011000036101 Doxycycline (DBL) 3565011000036101 Doxycycline (DBL) 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +44777011000036103 Reminyl 24 mg modified release capsule, 30, bottle 97886 42222011000036103 Reminyl 24 mg modified release capsule, 30 7537011000036106 Reminyl 24 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46982011000036108 galantamine 24 mg modified release capsule, 30 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +926769011000036109 ZepAllergy 10 mg film-coated tablet, 10, blister pack 153579 926166011000036105 ZepAllergy 10 mg film-coated tablet, 10 925653011000036109 ZepAllergy 10 mg film-coated tablet 925523011000036104 ZepAllergy 925523011000036104 ZepAllergy 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +926796011000036102 Ondansetron (DRLA) 8 mg film-coated tablet, 4, blister pack 163429 926192011000036109 Ondansetron (DRLA) 8 mg film-coated tablet, 4 925666011000036106 Ondansetron (DRLA) 8 mg film-coated tablet 20111000168103 Ondansetron (DRLA) 20111000168103 Ondansetron (DRLA) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +923839011000036105 Prochlorperazine Maleate (Apo) 5 mg tablet, 84, blister pack 158416 923385011000036100 Prochlorperazine Maleate (Apo) 5 mg tablet, 84 923050011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet 4811000168107 Prochlorperazine Maleate (Apo) 4811000168107 Prochlorperazine Maleate (Apo) 924175011000036102 prochlorperazine maleate 5 mg tablet, 84 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +778511000168109 Oxycodone MR (Apo) 10 mg modified release tablet, 60, blister pack 214501 778501000168106 Oxycodone MR (Apo) 10 mg modified release tablet, 60 778451000168109 Oxycodone MR (Apo) 10 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +17791011000036108 Minirin 100 microgram/mL nasal drops solution, 2.5 mL, bottle 16828 12115011000036101 Minirin 100 microgram/mL nasal drops solution, 2.5 mL 5993011000036103 Minirin 100 microgram/mL nasal drops solution 13491000168101 Minirin 13491000168101 Minirin 26925011000036105 desmopressin acetate 100 microgram/mL nasal drops, 2.5 mL 22302011000036102 desmopressin acetate 100 microgram/mL nasal drops 21750011000036107 desmopressin +906751000168102 Celecoxib (LAPL) 200 mg hard capsule, 10, blister pack 196187 906741000168104 Celecoxib (LAPL) 200 mg hard capsule, 10 906731000168108 Celecoxib (LAPL) 200 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +798741000168106 Abipra 5 mg uncoated tablet, 30, blister pack 173807 798731000168102 Abipra 5 mg uncoated tablet, 30 798721000168100 Abipra 5 mg uncoated tablet 798151000168109 Abipra 798151000168109 Abipra 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +925271011000036109 Elaxine SR 150 mg modified release capsule, 28, blister pack 160301 924808011000036106 Elaxine SR 150 mg modified release capsule, 28 924502011000036107 Elaxine SR 150 mg modified release capsule 8331000168101 Elaxine SR 8331000168101 Elaxine SR 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +19393011000036104 Maxipime 1 g powder for injection, 1 vial 52805 12678011000036104 Maxipime 1 g powder for injection, 1 vial 5870011000036108 Maxipime 1 g powder for injection, vial 3139011000036100 Maxipime 3139011000036100 Maxipime 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +905311000168105 Ceftriaxone (Kabi) 1 g powder for injection, 1 vial 223322 905301000168107 Ceftriaxone (Kabi) 1 g powder for injection, 1 vial 905291000168106 Ceftriaxone (Kabi) 1 g powder for injection, vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +689281000168108 Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll, carton 689271000168105 Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll 689251000168101 Leukoplast (1073) 7.5 cm x 2.5 m tape 60591000168109 Leukoplast (1073) 60591000168109 Leukoplast (1073) 689261000168104 tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll 689241000168103 tape plaster adhesive elastic 7.5 cm x 2.5 m tape 50730011000036106 tape plaster adhesive elastic +862081000168102 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120, bottle 167282 862071000168100 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120 862021000168101 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet 19091000168105 Caltrate 600 mg with Vitamin D 400 IU 19091000168105 Caltrate 600 mg with Vitamin D 400 IU 862061000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 120 862011000168108 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet 733951000168109 calcium + colecalciferol +44293011000036107 Humalog KwikPen 100 units/mL injection solution, 5 x 3 mL syringes 64214 41764011000036108 Humalog KwikPen 100 units/mL injection solution, 5 x 3 mL syringes 40186011000036102 Humalog KwikPen 100 units/mL injection solution, 3 mL syringe 59991000168101 Humalog Kwikpen 59991000168101 Humalog Kwikpen 46571011000036101 insulin lispro 100 units/mL injection, 5 x 3 mL syringes 45222011000036101 insulin lispro 100 units/mL injection, syringe 21851011000036103 insulin lispro +18667011000036103 Exjade 500 mg dispersible tablet, 28, blister pack 119232 11614011000036103 Exjade 500 mg dispersible tablet, 28 4905011000036108 Exjade 500 mg dispersible tablet 3267011000036102 Exjade 3267011000036102 Exjade 26709011000036107 deferasirox 500 mg dispersible tablet, 28 22104011000036101 deferasirox 500 mg dispersible tablet 21549011000036103 deferasirox +920712011000036107 Ciprofloxacin (DBL) 400 mg/200 mL intravenous infusion injection, 10 x 200 mL bags 123042 920382011000036109 Ciprofloxacin (DBL) 400 mg/200 mL intravenous infusion injection, 10 x 200 mL bags 920146011000036108 Ciprofloxacin (DBL) 400 mg/200 mL intravenous infusion injection, 200 mL bag 920086011000036107 Ciprofloxacin (DBL) 920086011000036107 Ciprofloxacin (DBL) 46213011000036102 ciprofloxacin 400 mg/200 mL injection, 10 x 200 mL bags 45033011000036102 ciprofloxacin 400 mg/200 mL injection, bag 21245011000036105 ciprofloxacin +19635011000036104 Premia 5 Continuous sugar coated tablet, 28, blister pack 59299 12904011000036100 Premia 5 Continuous sugar coated tablet, 28 6194011000036101 Premia 5 Continuous sugar coated tablet 41261000168102 Premia 5 Continuous 41261000168102 Premia 5 Continuous 27427011000036104 conjugated estrogens 625 microgram + medroxyprogesterone acetate 5 mg tablet, 28 22774011000036100 conjugated estrogens 625 microgram + medroxyprogesterone acetate 5 mg tablet 33637011000036105 conjugated estrogens + medroxyprogesterone +181641000036107 Candesartan Cilexetil HCTZ 32/25 (Terry White Chemists) uncoated tablet, 30, blister pack 210573 181181000036108 Candesartan Cilexetil HCTZ 32/25 (Terry White Chemists) uncoated tablet, 30 180541000036101 Candesartan Cilexetil HCTZ 32/25 (Terry White Chemists) uncoated tablet 8431000168107 Candesartan Cilexetil HCTZ 32/25 (Terry White Chemists) 8431000168107 Candesartan Cilexetil HCTZ 32/25 (Terry White Chemists) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +81016011000036106 Co-Diovan 320/25 film-coated tablet, 56, blister pack 135812 80496011000036109 Co-Diovan 320/25 film-coated tablet, 56 80164011000036102 Co-Diovan 320/25 film-coated tablet 54411000168103 Co-Diovan 320/25 54411000168103 Co-Diovan 320/25 81592011000036109 valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 56 81264011000036105 valsartan 320 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +1075301000168105 Atenolol (RBX) 25 mg film-coated tablet, 56, blister pack 197757 1075291000168109 Atenolol (RBX) 25 mg film-coated tablet, 56 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029681000168105 atenolol 25 mg tablet, 56 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +1011881000168104 Irbesartan (Apotex) 150 mg film-coated tablet, 5, blister pack 169789 1011871000168102 Irbesartan (Apotex) 150 mg film-coated tablet, 5 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777561000168106 irbesartan 150 mg tablet, 5 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +37679011000036107 Sifrol 1 mg uncoated tablet, 10, blister pack 66485 36945011000036107 Sifrol 1 mg uncoated tablet, 10 36274011000036108 Sifrol 1 mg uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 38826011000036101 pramipexole dihydrochloride monohydrate 1 mg tablet, 10 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +926710011000036104 Aminoven 10% intravenous infusion injection, 500 mL bottle 117659 926103011000036100 Aminoven 10% intravenous infusion injection, 500 mL bottle 925611011000036100 Aminoven 10% intravenous infusion injection, 500 mL bottle 22021000168108 Aminoven 10% 22021000168108 Aminoven 10% 927305011000036108 alanine 7 g/500 mL + arginine 6 g/500 mL + glycine 5.5 g/500 mL + histidine 1.5 g/500 mL + isoleucine 2.5 g/500 mL + leucine 3.7 g/500 mL + lysine acetate 4.66 g/500 mL + methionine 2.15 g/500 mL + phenylalanine 2.55 g/500 mL + proline 5.6 g/500 mL + serine 3.25 g/500 mL + taurine 500 mg/500 mL + threonine 2.2 g/500 mL + tryptophan 1 g/500 mL + tyrosine 200 mg/500 mL + valine 3.1 g/500 mL injection, 500 mL bottle 926983011000036104 alanine 7 g/500 mL + arginine 6 g/500 mL + glycine 5.5 g/500 mL + histidine 1.5 g/500 mL + isoleucine 2.5 g/500 mL + leucine 3.7 g/500 mL + lysine acetate 4.66 g/500 mL + methionine 2.15 g/500 mL + phenylalanine 2.55 g/500 mL + proline 5.6 g/500 mL + serine 3.25 g/500 mL + taurine 500 mg/500 mL + threonine 2.2 g/500 mL + tryptophan 1 g/500 mL + tyrosine 200 mg/500 mL + valine 3.1 g/500 mL injection, bottle 926970011000036101 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + taurine + threonine + tryptophan + tyrosine + valine +803071000168108 Abilify ODT 30 mg orally disintegrating tablet, 98, blister pack 128904 803061000168102 Abilify ODT 30 mg orally disintegrating tablet, 98 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803051000168104 aripiprazole 30 mg orally disintegrating tablet, 98 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +963061000168106 Arflox 250 mg film-coated tablet, 2, bottle 92367 963051000168109 Arflox 250 mg film-coated tablet, 2 963041000168107 Arflox 250 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 27061011000036107 ciprofloxacin 250 mg tablet, 2 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +82341011000036106 Epiramax 25 mg film-coated tablet, 60, bottle 135591 82131011000036100 Epiramax 25 mg film-coated tablet, 60 82001011000036102 Epiramax 25 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +61174011000036104 Telfast 30 mg film-coated tablet, 2, blister pack 75139 57117011000036101 Telfast 30 mg film-coated tablet, 2 54204011000036100 Telfast 30 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 63735011000036104 fexofenadine hydrochloride 30 mg tablet, 2 62066011000036109 fexofenadine hydrochloride 30 mg tablet 21394011000036108 fexofenadine +940031000168101 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 144123 940021000168104 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 940001000168108 Katie-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 939981000168107 Katie-35 ED 939981000168107 Katie-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +940031000168101 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 144123 940021000168104 Katie-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 940011000168106 Katie-35 ED (inert substance) film-coated tablet 939981000168107 Katie-35 ED 939981000168107 Katie-35 ED 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +60010011000036104 Lorapaed 1 mg/mL oral liquid solution, 60 mL, bottle 123270 55972011000036105 Lorapaed 1 mg/mL oral liquid solution, 60 mL 53743011000036103 Lorapaed 1 mg/mL oral liquid solution 53259011000036106 Lorapaed 53259011000036106 Lorapaed 63591011000036105 loratadine 1 mg/mL oral liquid, 60 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +837751000168101 Airzate Accuhaler 250/50 powder for inhalation, 28 actuations, blister pack 208189 837741000168103 Airzate Accuhaler 250/50 powder for inhalation, 28 actuations 837721000168109 Airzate Accuhaler 250/50 powder for inhalation, actuation 837711000168102 Airzate Accuhaler 250/50 837711000168102 Airzate Accuhaler 250/50 837731000168107 fluticasone propionate 250 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 28 actuations 23009011000036100 fluticasone propionate 250 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +1103951000168108 Quetiapine (CH) 25 mg film-coated tablet, 20, blister pack 172841 1103941000168106 Quetiapine (CH) 25 mg film-coated tablet, 20 1103851000168100 Quetiapine (CH) 25 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +18425011000036101 Prilace 5 mg uncoated tablet, 30, blister pack 121856 11699011000036101 Prilace 5 mg uncoated tablet, 30 4878011000036103 Prilace 5 mg uncoated tablet 3737011000036102 Prilace 3737011000036102 Prilace 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1061011000168104 Olanzapine ODT (Auro) 10 mg orally disintegrating tablet, 7, blister pack 212903 1061001000168102 Olanzapine ODT (Auro) 10 mg orally disintegrating tablet, 7 1060991000168103 Olanzapine ODT (Auro) 10 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 1042871000168103 olanzapine 10 mg orally disintegrating tablet, 7 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +18062011000036109 Lamidus 25 mg tablet, 56, blister pack 116720 11538011000036108 Lamidus 25 mg tablet, 56 5566011000036102 Lamidus 25 mg tablet 3897011000036105 Lamidus 3897011000036105 Lamidus 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +20453011000036102 Xigris 5 mg powder for injection, 1 vial 78116 13656011000036105 Xigris 5 mg powder for injection, 1 vial 6939011000036106 Xigris 5 mg powder for injection, 5 mg vial 4315011000036101 Xigris 4315011000036101 Xigris 27864011000036106 drotrecogin alfa (activated) 5 mg injection, 1 vial 23192011000036101 drotrecogin alfa (activated) 5 mg injection, vial 21346011000036109 drotrecogin alfa (activated) +37616011000036107 Mitomycin-C Kyowa 2 mg powder for injection, 10 vials 19717 36883011000036105 Mitomycin-C Kyowa 2 mg powder for injection, 10 vials 36217011000036107 Mitomycin-C Kyowa 2 mg powder for injection, 2 mg vial 39521000168107 Mitomycin-C Kyowa 39521000168107 Mitomycin-C Kyowa 38768011000036107 mitomycin 2 mg injection, 10 vials 37986011000036109 mitomycin 2 mg injection, vial 37757011000036105 mitomycin +17883011000036108 Monace 20 mg uncoated tablet, 30, blister pack 101901 11243011000036105 Monace 20 mg uncoated tablet, 30 4910011000036101 Monace 20 mg uncoated tablet 3242011000036107 Monace 3242011000036107 Monace 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +807331000168102 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet, 10, blister pack 184821 807311000168107 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet, 10 807301000168109 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 727331000168107 perindopril arginine 10 mg tablet, 10 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +1082531000168107 Atorvastatin (ZP) 80 mg film-coated tablet, 90, bottle 217173 1082521000168109 Atorvastatin (ZP) 80 mg film-coated tablet, 90 1082511000168102 Atorvastatin (ZP) 80 mg film-coated tablet 1082501000168100 Atorvastatin (ZP) 1082501000168100 Atorvastatin (ZP) 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +19502011000036106 Betoquin 0.5% eye drops solution, 5 mL, bottle 55618 12778011000036108 Betoquin 0.5% eye drops solution, 5 mL 6072011000036109 Betoquin 0.5% eye drops solution 3716011000036106 Betoquin 3716011000036106 Betoquin 27347011000036105 betaxolol 0.5% eye drops, 5 mL 22700011000036100 betaxolol 0.5% eye drops 21729011000036102 betaxolol +925601000168109 Topiramate (Terry White Chemists) 200 mg film-coated tablet, 60, blister pack 124749 925591000168102 Topiramate (Terry White Chemists) 200 mg film-coated tablet, 60 925581000168100 Topiramate (Terry White Chemists) 200 mg film-coated tablet 925251000168105 Topiramate (Terry White Chemists) 925251000168105 Topiramate (Terry White Chemists) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +1111391000168103 Antiseptic Solution (Pharmacy Care) 10% solution, 100 mL, bottle 269424 1111381000168101 Antiseptic Solution (Pharmacy Care) 10% solution, 100 mL 1111331000168102 Antiseptic Solution (Pharmacy Care) 10% solution 1111291000168108 Antiseptic Solution (Pharmacy Care) 1111291000168108 Antiseptic Solution (Pharmacy Care) 71675011000036102 povidone-iodine 10% solution, 100 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +729621000168109 Daklinza 60 mg film-coated tablet, 28, blister pack 222742 729611000168102 Daklinza 60 mg film-coated tablet, 28 729551000168102 Daklinza 60 mg film-coated tablet 729431000168109 Daklinza 729431000168109 Daklinza 729601000168100 daclatasvir 60 mg tablet, 28 729541000168104 daclatasvir 60 mg tablet 729451000168103 daclatasvir +68986011000036105 Nicotinell Liquorice 2 mg chewing gum, 192, blister pack 136134 66788011000036106 Nicotinell Liquorice 2 mg chewing gum, 192 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71513011000036102 nicotine 2 mg gum, 192 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +18488011000036103 Heparin Sodium (DBL) 5000 units/0.2 mL injection solution, 5 x 0.2 mL ampoules 16349 12108011000036109 Heparin Sodium (DBL) 5000 units/0.2 mL injection solution, 5 x 0.2 mL ampoules 4806011000036108 Heparin Sodium (DBL) 5000 units/0.2 mL injection solution, 0.2 mL ampoule 4435011000036104 Heparin Sodium (DBL) 4435011000036104 Heparin Sodium (DBL) 26918011000036105 heparin sodium 5000 units/0.2 mL injection, 5 x 0.2 mL ampoules 22295011000036101 heparin sodium 5000 units/0.2 mL injection, ampoule 858661000168109 heparin +1055181000168102 Tramadol SR (Sandoz) 200 mg modified release tablet, 20, bottle 99264 926352011000036105 Tramadol SR (Sandoz) 200 mg modified release tablet, 20 925779011000036103 Tramadol SR (Sandoz) 200 mg modified release tablet 32631000168103 Tramadol SR (Sandoz) 32631000168103 Tramadol SR (Sandoz) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +60160011000036105 Ecotrin 650 mg enteric tablet, 100, blister pack 13013 56119011000036109 Ecotrin 650 mg enteric tablet, 100 53798011000036101 Ecotrin 650 mg enteric tablet 53398011000036102 Ecotrin 53398011000036102 Ecotrin 63223011000036108 aspirin 650 mg enteric tablet, 100 61894011000036104 aspirin 650 mg enteric tablet 21719011000036107 aspirin +18304011000036102 Cisplatin (Pfizer (Perth)) 10 mg/10 mL injection solution, 10 mL vial 11349 11448011000036104 Cisplatin (Pfizer (Perth)) 10 mg/10 mL injection solution, 10 mL vial 5288011000036106 Cisplatin (Pfizer (Perth)) 10 mg/10 mL injection solution, 10 mL vial 3306011000036107 Cisplatin (Pfizer (Perth)) 3306011000036107 Cisplatin (Pfizer (Perth)) 26920011000036101 cisplatin 10 mg/10 mL injection, 10 mL vial 22297011000036106 cisplatin 10 mg/10 mL injection, vial 21771011000036102 cisplatin +677721000168103 Simpral 1 mg tablet, 100, blister pack 173137 677711000168105 Simpral 1 mg tablet, 100 677701000168107 Simpral 1 mg tablet 677661000168100 Simpral 677661000168100 Simpral 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +37662011000036109 Amethocaine Hydrochloride Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 32254 36928011000036103 Amethocaine Hydrochloride Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 36259011000036106 Amethocaine Hydrochloride Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 15151000168104 Amethocaine Hydrochloride Minims (Bausch & Lomb) 15151000168104 Amethocaine Hydrochloride Minims (Bausch & Lomb) 38809011000036102 tetracaine (amethocaine) hydrochloride 1% eye drops, 20 x 0.5 mL unit doses 38019011000036101 tetracaine (amethocaine) hydrochloride 1% eye drops, unit dose 37707011000036100 tetracaine (amethocaine) +77225011000036100 Intelence 100 mg tablet, 120, bottle 145797 76641011000036103 Intelence 100 mg tablet, 120 76083011000036100 Intelence 100 mg tablet 75936011000036108 Intelence 75936011000036108 Intelence 78187011000036106 etravirine 100 mg tablet, 120 77535011000036106 etravirine 100 mg tablet 77467011000036101 etravirine +44581011000036104 Vfend 200 mg film-coated tablet, 10, blister pack 82505 42034011000036102 Vfend 200 mg film-coated tablet, 10 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46802011000036103 voriconazole 200 mg tablet, 10 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +18367011000036107 Sprycel 20 mg film-coated tablet, 60, blister pack 125558 11805011000036107 Sprycel 20 mg film-coated tablet, 60 5414011000036100 Sprycel 20 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 26775011000036102 dasatinib 20 mg tablet, 60 22162011000036109 dasatinib 20 mg tablet 21627011000036104 dasatinib +919801000168102 Fluoxetine (Apo) 20 mg hard capsule, 28, blister pack 160765 919791000168103 Fluoxetine (Apo) 20 mg hard capsule, 28 919781000168101 Fluoxetine (Apo) 20 mg hard capsule 919771000168104 Fluoxetine (Apo) 919771000168104 Fluoxetine (Apo) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +52198011000036103 Clarithromycin (Apo) 250 mg film-coated tablet, 14, bottle 134865 52086011000036105 Clarithromycin (Apo) 250 mg film-coated tablet, 14 51983011000036107 Clarithromycin (Apo) 250 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1057901000168102 Valpro EC 500 mg enteric tablet, 100, blister pack 286316 1057891000168101 Valpro EC 500 mg enteric tablet, 100 1057821000168103 Valpro EC 500 mg enteric tablet 1057811000168105 Valpro EC 1057811000168105 Valpro EC 27140011000036102 valproate sodium 500 mg enteric tablet, 100 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +859131000168102 Amisulpride (Sanofi) 200 mg uncoated tablet, 60, blister pack 143104 859121000168100 Amisulpride (Sanofi) 200 mg uncoated tablet, 60 859111000168107 Amisulpride (Sanofi) 200 mg uncoated tablet 858991000168105 Amisulpride (Sanofi) 858991000168105 Amisulpride (Sanofi) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +44339011000036107 Novonorm 1 mg uncoated tablet, 30, blister pack 67269 41806011000036102 Novonorm 1 mg uncoated tablet, 30 40207011000036103 Novonorm 1 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46612011000036106 repaglinide 1 mg tablet, 30 45239011000036108 repaglinide 1 mg tablet 44883011000036104 repaglinide +19485011000036107 Mycobutin 150 mg hard capsule, 30, blister pack 55038 12762011000036103 Mycobutin 150 mg hard capsule, 30 6056011000036106 Mycobutin 150 mg hard capsule 4421011000036103 Mycobutin 4421011000036103 Mycobutin 27339011000036104 rifabutin 150 mg capsule, 30 22692011000036106 rifabutin 150 mg capsule 21892011000036101 rifabutin +725371000168102 MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches 725361000168108 MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches 725341000168109 MSUD Cooler 20 oral liquid solution, 174 mL pouch 38721000168106 MSUD Cooler 20 38721000168106 MSUD Cooler 20 725351000168106 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 174 mL pouches 725331000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 174 mL pouch 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +721051000168106 Dysport 500 units powder for injection, 1 vial 74124 721041000168109 Dysport 500 units powder for injection, 1 vial 721021000168103 Dysport 500 units powder for injection, 500 units vial 3355011000036105 Dysport 3355011000036105 Dysport 721031000168100 clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, 1 vial 721011000168105 clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, vial 32611011000036100 clostridium botulinum type A toxin-haemagglutinin complex +944291000168104 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 175 mL bottles 48238 944281000168102 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 175 mL bottles 944261000168106 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 175 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 944271000168100 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 175 mL bottles 944251000168109 iohexol 755 mg (iodine 350 mg)/mL injection, 175 mL bottle 77459011000036103 iohexol +933211411000036102 Minirin Melt 240 microgram sublingual wafer, 10, blister pack 121722 933200281000036100 Minirin Melt 240 microgram sublingual wafer, 10 933194031000036101 Minirin Melt 240 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 933200291000036103 desmopressin 240 microgram sublingual wafer, 10 933194041000036106 desmopressin 240 microgram sublingual wafer 21750011000036107 desmopressin +794491000168100 Tacrolimus (Sandoz) 2 mg hard capsule, 28, blister pack 229757 794481000168103 Tacrolimus (Sandoz) 2 mg hard capsule, 28 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794471000168101 tacrolimus 2 mg capsule, 28 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +34637011000036108 Adronat Once Weekly 70 mg uncoated tablet, 4, blister pack 119100 34227011000036107 Adronat Once Weekly 70 mg uncoated tablet, 4 33972011000036107 Adronat Once Weekly 70 mg uncoated tablet 31881000168108 Adronat Once Weekly 31881000168108 Adronat Once Weekly 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +18125011000036102 Barbloc 15 mg uncoated tablet, 50, bottle 17588 12122011000036104 Barbloc 15 mg uncoated tablet, 50 4754011000036105 Barbloc 15 mg uncoated tablet 4187011000036100 Barbloc 4187011000036100 Barbloc 26932011000036104 pindolol 15 mg tablet, 50 22309011000036107 pindolol 15 mg tablet 21768011000036103 pindolol +60690011000036107 Voltaren Rapid 25 mg sugar coated tablet, 20, blister pack 42942 56648011000036105 Voltaren Rapid 25 mg sugar coated tablet, 20 54020011000036108 Voltaren Rapid 25 mg sugar coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63485011000036100 diclofenac potassium 25 mg tablet, 20 61991011000036106 diclofenac potassium 25 mg tablet 21288011000036105 diclofenac +974391000168105 Pregabalin (Apo) 150 mg hard capsule, 20, bottle 193249 970301000168106 Pregabalin (Apo) 150 mg hard capsule, 20 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +735471000168107 Carbosorb X 200 mg/mL oral liquid suspension, 10 x 250 mL, bottles 106470 735461000168101 Carbosorb X 200 mg/mL oral liquid suspension, 10 x 250 mL 76033011000036108 Carbosorb X 200 mg/mL oral liquid suspension 75959011000036100 Carbosorb X 75959011000036100 Carbosorb X 735451000168103 activated charcoal 200 mg/mL oral liquid, 10 x 250 mL 77501011000036102 activated charcoal 200 mg/mL oral liquid 77437011000036109 activated charcoal +921964011000036103 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 10 mL ampoule 47927 921522011000036107 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 10 mL ampoule 921057011000036106 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 10 mL ampoule 5231000168102 Isovue-300 5231000168102 Isovue-300 922644011000036105 iopamidol 612 mg (iodine 300 mg)/mL injection, 10 mL ampoule 922129011000036109 iopamidol 612 mg (iodine 300 mg)/mL injection, 10 mL ampoule 77457011000036105 iopamidol +1059511000168104 Metformin (Auro) 500 mg film-coated tablet, 100, bottle 180429 717751000168108 Metformin (Auro) 500 mg film-coated tablet, 100 717741000168106 Metformin (Auro) 500 mg film-coated tablet 714361000168101 Metformin (Auro) 714361000168101 Metformin (Auro) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +18851011000036109 Mexitil M 50 mg hard capsule, 100, blister pack 17933 12162011000036105 Mexitil M 50 mg hard capsule, 100 4831011000036105 Mexitil M 50 mg hard capsule 37271000168104 Mexitil M 37271000168104 Mexitil M 26957011000036101 mexiletine hydrochloride 50 mg capsule, 100 22332011000036107 mexiletine hydrochloride 50 mg capsule 21453011000036106 mexiletine +19727011000036101 Combivir film-coated tablet, 60, bottle 61488 12981011000036104 Combivir film-coated tablet, 60 6270011000036101 Combivir film-coated tablet 3520011000036102 Combivir 3520011000036102 Combivir 27482011000036109 lamivudine 150 mg + zidovudine 300 mg tablet, 60 22828011000036109 lamivudine 150 mg + zidovudine 300 mg tablet 21904011000036103 lamivudine + zidovudine +37449011000036108 Halcion 125 microgram uncoated tablet, 50, bottle 12304 36721011000036102 Halcion 125 microgram uncoated tablet, 50 36190011000036108 Halcion 125 microgram uncoated tablet 35989011000036101 Halcion 35989011000036101 Halcion 38631011000036101 triazolam 125 microgram tablet, 50 37890011000036102 triazolam 125 microgram tablet 37768011000036100 triazolam +1111351000168108 Antiseptic Solution (Pharmacy Care) 10% solution, 15 mL, bottle 269424 1111341000168106 Antiseptic Solution (Pharmacy Care) 10% solution, 15 mL 1111331000168102 Antiseptic Solution (Pharmacy Care) 10% solution 1111291000168108 Antiseptic Solution (Pharmacy Care) 1111291000168108 Antiseptic Solution (Pharmacy Care) 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +850701000168100 Temozolomide (Amneal) 250 mg hard capsule, 5, sachet 206046 850691000168100 Temozolomide (Amneal) 250 mg hard capsule, 5 850681000168103 Temozolomide (Amneal) 250 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +902501000168107 Candesartan (GPPL) 4 mg uncoated tablet, 30, bottle 195457 902461000168107 Candesartan (GPPL) 4 mg uncoated tablet, 30 902451000168105 Candesartan (GPPL) 4 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +20695011000036106 Ciprol 750 mg film-coated tablet, 14, bottle 82476 13871011000036108 Ciprol 750 mg film-coated tablet, 14 7158011000036100 Ciprol 750 mg film-coated tablet 3369011000036102 Ciprol 3369011000036102 Ciprol 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +1109701000168108 Nicotinell Ice Mint 2 mg chewing gum, 204, blister pack 279615 1109691000168108 Nicotinell Ice Mint 2 mg chewing gum, 204 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897531000168105 nicotine 2 mg gum, 204 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +50204011000036102 Rispa 500 microgram film-coated tablet, 30, blister pack 127880 49560011000036108 Rispa 500 microgram film-coated tablet, 30 48600011000036100 Rispa 500 microgram film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 51484011000036106 risperidone 500 microgram tablet, 30 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +104251000036109 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 170389 101421000036100 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 98691000036101 Femme-Tab ED 20/100 (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 700015531000036100 Femme-Tab ED 20/100 700015531000036100 Femme-Tab ED 20/100 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +104251000036109 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 170389 101421000036100 Femme-Tab ED 20/100 (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 98841000036106 Femme-Tab ED 20/100 (inert substance) film-coated tablet 700015531000036100 Femme-Tab ED 20/100 700015531000036100 Femme-Tab ED 20/100 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +991891000168106 Famciclovir (Apotex) 250 mg film-coated tablet, 21, blister pack 160562 991881000168108 Famciclovir (Apotex) 250 mg film-coated tablet, 21 991811000168102 Famciclovir (Apotex) 250 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1077311000168100 Fexo (Amcal) 180 mg film-coated tablet, 50, blister pack 223782 1077301000168103 Fexo (Amcal) 180 mg film-coated tablet, 50 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +116541000036101 Rosuvastatin (Apo) 40 mg film-coated tablet, 30, blister pack 183074 114831000036100 Rosuvastatin (Apo) 40 mg film-coated tablet, 30 113311000036104 Rosuvastatin (Apo) 40 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +901861000168102 Amisulpride (SCP) 100 mg uncoated tablet, 60, blister pack 234706 901851000168104 Amisulpride (SCP) 100 mg uncoated tablet, 60 901821000168107 Amisulpride (SCP) 100 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +19692011000036100 Deptran 25 mg hard capsule, 50, blister pack 60448 12950011000036102 Deptran 25 mg hard capsule, 50 6240011000036100 Deptran 25 mg hard capsule 4412011000036104 Deptran 4412011000036104 Deptran 27463011000036100 doxepin 25 mg capsule, 50 22810011000036100 doxepin 25 mg capsule 21583011000036105 doxepin +61036011000036103 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution, 100 mL, bottle 67301 56979011000036102 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution, 100 mL 54146011000036104 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution 34191000168104 Dry Tickly Cough Medicine (Pharmacist) 34191000168104 Dry Tickly Cough Medicine (Pharmacist) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +920696011000036100 Enalapril Maleate (GA) 20 mg uncoated tablet, 30, blister pack 121955 920377011000036103 Enalapril Maleate (GA) 20 mg uncoated tablet, 30 920143011000036102 Enalapril Maleate (GA) 20 mg uncoated tablet 920068011000036109 Enalapril Maleate (GA) 920068011000036109 Enalapril Maleate (GA) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +1109661000168101 Nicotinell Ice Mint 2 mg chewing gum, 180, blister pack 279615 1109651000168103 Nicotinell Ice Mint 2 mg chewing gum, 180 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71512011000036109 nicotine 2 mg gum, 180 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +920678011000036107 Citalopram (Sandoz) 40 mg film-coated tablet, 28, blister pack 107061 920357011000036100 Citalopram (Sandoz) 40 mg film-coated tablet, 28 920127011000036109 Citalopram (Sandoz) 40 mg film-coated tablet 920080011000036109 Citalopram (Sandoz) 920080011000036109 Citalopram (Sandoz) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +19519011000036104 Cilamox 250 mg hard capsule, 20, blister pack 56300 12791011000036106 Cilamox 250 mg hard capsule, 20 6085011000036108 Cilamox 250 mg hard capsule 4046011000036102 Cilamox 4046011000036102 Cilamox 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +991591000168108 Anti-Fungal (Blooms The Chemist) 1% cream, 30 g, tube 204919 991581000168105 Anti-Fungal (Blooms The Chemist) 1% cream, 30 g 991551000168103 Anti-Fungal (Blooms The Chemist) 1% cream 991541000168100 Anti-Fungal (Blooms The Chemist) 991541000168100 Anti-Fungal (Blooms The Chemist) 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +50469011000036104 XMET Maxamaid powder for oral liquid, 500 g, can 49277011000036106 XMET Maxamaid powder for oral liquid, 500 g 48709011000036104 XMET Maxamaid powder for oral liquid 57121000168105 XMET Maxamaid 57121000168105 XMET Maxamaid 51443011000036100 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 500 g 50957011000036104 amino acid formula with vitamins and minerals without methionine powder for oral liquid 50753011000036104 amino acid formula with vitamins and minerals without methionine +933246391000036102 Ciprofloxacin (PS) 750 mg film-coated tablet, 20, blister pack 148853 933243181000036105 Ciprofloxacin (PS) 750 mg film-coated tablet, 20 933241331000036105 Ciprofloxacin (PS) 750 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 87797011000036107 ciprofloxacin 750 mg tablet, 20 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +931456011000036100 Ranitidine (GA) 300 mg film-coated tablet, 14, blister pack 148520 930635011000036102 Ranitidine (GA) 300 mg film-coated tablet, 14 929982011000036102 Ranitidine (GA) 300 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +942601000168101 Clarithromycin (Sandoz) 500 mg film-coated tablet, 42, blister pack 101271 942591000168108 Clarithromycin (Sandoz) 500 mg film-coated tablet, 42 769211000168107 Clarithromycin (Sandoz) 500 mg film-coated tablet 147831000036100 Clarithromycin (Sandoz) 147831000036100 Clarithromycin (Sandoz) 51516011000036106 clarithromycin 500 mg tablet, 42 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +785991000168105 Fentanyl (Watson) 75 microgram/hour patch, 5, sachet 190797 785981000168107 Fentanyl (Watson) 75 microgram/hour patch, 5 785971000168109 Fentanyl (Watson) 75 microgram/hour patch 785901000168104 Fentanyl (Watson) 785901000168104 Fentanyl (Watson) 26651011000036105 fentanyl 75 microgram/hour patch, 5 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +60794011000036108 Chesty Mucus Cough (Chemists' Own) oral liquid solution, 200 mL, bottle 55541 56750011000036104 Chesty Mucus Cough (Chemists' Own) oral liquid solution, 200 mL 54065011000036109 Chesty Mucus Cough (Chemists' Own) oral liquid solution, 10 mL 53453011000036107 Chesty Mucus Cough (Chemists' Own) 53453011000036107 Chesty Mucus Cough (Chemists' Own) 63947011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 200 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +933246371000036101 Ciprofloxacin (PS) 750 mg film-coated tablet, 100, blister pack 148853 933243161000036100 Ciprofloxacin (PS) 750 mg film-coated tablet, 100 933241331000036105 Ciprofloxacin (PS) 750 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 87796011000036109 ciprofloxacin 750 mg tablet, 100 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +43855011000036109 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 2, blister pack 128095 41351011000036104 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 2 39907011000036104 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet 39781011000036103 Zolpidem Tartrate (Sandoz) 39781011000036103 Zolpidem Tartrate (Sandoz) 46646011000036100 zolpidem tartrate 10 mg tablet, 2 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1077551000168106 Atomoxetine (AN) 18 mg hard capsule, 56, blister pack 234790 1077541000168109 Atomoxetine (AN) 18 mg hard capsule, 56 1077471000168101 Atomoxetine (AN) 18 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830391000168106 atomoxetine 18 mg capsule, 56 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +44097011000036105 Dilzem 60 mg film-coated tablet, 90, bottle 50591 12623011000036105 Dilzem 60 mg film-coated tablet, 90 4539011000036108 Dilzem 60 mg film-coated tablet 3731000168107 Dilzem 3731000168107 Dilzem 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +18045011000036109 Doxorubicin Hydrochloride (DBL) 10 mg/5 mL injection solution, 5 mL vial 16382 12114011000036100 Doxorubicin Hydrochloride (DBL) 10 mg/5 mL injection solution, 5 mL vial 5137011000036103 Doxorubicin Hydrochloride (DBL) 10 mg/5 mL injection solution, 5 mL vial 3549011000036106 Doxorubicin Hydrochloride (DBL) 3549011000036106 Doxorubicin Hydrochloride (DBL) 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +818381000168102 Afolia 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 262646 818371000168100 Afolia 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 818361000168106 Afolia 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741181000168100 follitropin alfa 150 units (11 microgram)/0.25 mL injection, 0.25 mL injection device 741161000168109 follitropin alfa 150 units (11 microgram)/0.25 mL injection, injection device 21352011000036107 follitropin alfa +933216111000036103 Neurolite (5 x 900 microgram vials, 5 x inert diluent vials), 1 pack, composite pack 73014 933205731000036102 Neurolite (5 x 900 microgram vials, 5 x inert diluent vials), 1 pack 933196791000036105 Neurolite (bicisate dihydrochloride 900 microgram) powder for injection, vial 933193101000036107 Neurolite 933193101000036107 Neurolite 933205741000036107 bicisate dihydrochloride 900 microgram injection [5 vials] (&) inert substance diluent [5 vials], 1 pack 933196801000036109 bicisate dihydrochloride 900 microgram injection, vial 933216271000036101 bicisate dihydrochloride +933216111000036103 Neurolite (5 x 900 microgram vials, 5 x inert diluent vials), 1 pack, composite pack 73014 933205731000036102 Neurolite (5 x 900 microgram vials, 5 x inert diluent vials), 1 pack 933196811000036106 Neurolite (inert substance) diluent, vial 933193101000036107 Neurolite 933193101000036107 Neurolite 933205741000036107 bicisate dihydrochloride 900 microgram injection [5 vials] (&) inert substance diluent [5 vials], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +991571000168107 Anti-Fungal (Blooms The Chemist) 1% cream, 20 g, tube 204919 991561000168101 Anti-Fungal (Blooms The Chemist) 1% cream, 20 g 991551000168103 Anti-Fungal (Blooms The Chemist) 1% cream 991541000168100 Anti-Fungal (Blooms The Chemist) 991541000168100 Anti-Fungal (Blooms The Chemist) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +44282011000036101 Acular 0.5% eye drops solution, 10 mL, bottle 63539 41753011000036102 Acular 0.5% eye drops solution, 10 mL 40182011000036101 Acular 0.5% eye drops solution 39700011000036109 Acular 39700011000036109 Acular 46560011000036104 ketorolac trometamol 0.5% eye drops, 10 mL 45218011000036109 ketorolac trometamol 0.5% eye drops 44879011000036107 ketorolac +841771000168100 Atorvastatin (Amneal) 40 mg film-coated tablet, 50, blister pack 178542 841761000168106 Atorvastatin (Amneal) 40 mg film-coated tablet, 50 841641000168102 Atorvastatin (Amneal) 40 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841751000168109 atorvastatin 40 mg tablet, 50 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +37426011000036101 Zan-Extra 10/20 film-coated tablet, 30, blister pack 120961 36715011000036106 Zan-Extra 10/20 film-coated tablet, 30 36072011000036106 Zan-Extra 10/20 film-coated tablet 30331000168108 Zan-Extra 10/20 30331000168108 Zan-Extra 10/20 38628011000036107 lercanidipine hydrochloride 10 mg + enalapril maleate 20 mg tablet, 30 37888011000036101 lercanidipine hydrochloride 10 mg + enalapril maleate 20 mg tablet 37713011000036106 lercanidipine + enalapril +996251000168105 Duro-Tuss Dry Cough Lozenge lemon lozenge, 4, blister pack 53808 996241000168108 Duro-Tuss Dry Cough Lozenge lemon lozenge, 4 996161000168101 Duro-Tuss Dry Cough Lozenge lemon lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 996231000168104 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 4 996151000168103 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge 61757011000036101 pholcodine + cetylpyridinium +933216071000036105 PYtest 37 kBq hard capsule, 100, blister pack 67146 933205551000036104 PYtest 37 kBq hard capsule, 100 933196681000036104 PYtest 37 kBq hard capsule 933193421000036108 PYtest 933193421000036108 PYtest 933205561000036101 urea (14C) 37 kBq capsule, 100 923984011000036109 urea (14C) 37 kBq capsule 923935011000036103 urea (14C) +60287011000036105 Panadol 500 mg film-coated tablet, 24, blister pack 13591 56246011000036108 Panadol 500 mg film-coated tablet, 24 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +792801000168100 Abisart HCT 300/12.5 film-coated tablet, 14, bottle 215945 792791000168101 Abisart HCT 300/12.5 film-coated tablet, 14 98801000036108 Abisart HCT 300/12.5 film-coated tablet 24981000168101 Abisart HCT 300/12.5 24981000168101 Abisart HCT 300/12.5 792781000168104 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 14 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +649121000168107 Lorastyne (Pharmacy Action) 10 mg uncoated tablet, 50, blister pack 191959 649111000168100 Lorastyne (Pharmacy Action) 10 mg uncoated tablet, 50 649061000168101 Lorastyne (Pharmacy Action) 10 mg uncoated tablet 649051000168103 Lorastyne (Pharmacy Action) 649051000168103 Lorastyne (Pharmacy Action) 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +69516011000036102 Intralipid 30% (75 g/250 mL) intravenous infusion injection, 10 x 250 mL bottles 53538 67316011000036107 Intralipid 30% (75 g/250 mL) intravenous infusion injection, 10 x 250 mL bottles 65606011000036103 Intralipid 30% (75 g/250 mL) intravenous infusion injection, 250 mL bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71862011000036106 soya oil 30% (75 g/250 mL) injection, 10 x 250 mL bottles 70220011000036100 soya oil 30% (75 g/250 mL) injection, bottle 69767011000036104 soya oil +37524011000036104 Capadex hard capsule, 20, blister pack 13437 36792011000036104 Capadex hard capsule, 20 36062011000036104 Capadex hard capsule 35983011000036104 Capadex 35983011000036104 Capadex 38689011000036106 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg capsule, 20 37928011000036104 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg capsule 37703011000036109 dextropropoxyphene + paracetamol +726171000168105 PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets 726161000168104 PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets 726151000168101 PKU Anamix Junior Vanilla powder for oral liquid, 36 g sachet 30231000168101 PKU Anamix Junior 30231000168101 PKU Anamix Junior 702781000168101 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 30 x 36 g sachets 702761000168105 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 36 g sachet 702751000168108 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine +875971000168100 Olmesartan (AKM) 40 mg film-coated tablet, 30, blister pack 235831 875961000168106 Olmesartan (AKM) 40 mg film-coated tablet, 30 875951000168109 Olmesartan (AKM) 40 mg film-coated tablet 873701000168108 Olmesartan (AKM) 873701000168108 Olmesartan (AKM) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +991911000168108 Famciclovir (Apotex) 250 mg film-coated tablet, 28, blister pack 160562 991901000168105 Famciclovir (Apotex) 250 mg film-coated tablet, 28 991811000168102 Famciclovir (Apotex) 250 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 87824011000036107 famciclovir 250 mg tablet, 28 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +17872011000036105 Perindopril Erbumine (DP) 2 mg uncoated tablet, 30, blister pack 121634 11681011000036104 Perindopril Erbumine (DP) 2 mg uncoated tablet, 30 5735011000036103 Perindopril Erbumine (DP) 2 mg uncoated tablet 3280011000036101 Perindopril Erbumine (DP) 3280011000036101 Perindopril Erbumine (DP) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +44138011000036107 Di-Gesic film-coated tablet, 50, blister pack 52509 41614011000036100 Di-Gesic film-coated tablet, 50 40102011000036102 Di-Gesic film-coated tablet 39754011000036106 Di-Gesic 39754011000036106 Di-Gesic 46434011000036109 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet, 50 45260011000036108 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet 37703011000036109 dextropropoxyphene + paracetamol +777631000168104 Karvea 150 mg film-coated tablet, 14, blister pack 101706 777621000168102 Karvea 150 mg film-coated tablet, 14 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777611000168109 irbesartan 150 mg tablet, 14 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +43613011000036106 Dacarbazine (Sandoz) 100 mg powder for injection, 1 vial 117567 41194011000036100 Dacarbazine (Sandoz) 100 mg powder for injection, 1 vial 39909011000036106 Dacarbazine (Sandoz) 100 mg powder for injection, 100 mg vial 39591011000036100 Dacarbazine (Sandoz) 39591011000036100 Dacarbazine (Sandoz) 46156011000036104 dacarbazine 100 mg injection, 1 vial 45012011000036101 dacarbazine 100 mg injection, vial 44890011000036108 dacarbazine +914831000168105 Carvedilol (AS) 12.5 mg uncoated tablet, 60, blister pack 194254 914821000168107 Carvedilol (AS) 12.5 mg uncoated tablet, 60 914811000168100 Carvedilol (AS) 12.5 mg uncoated tablet 914721000168101 Carvedilol (AS) 914721000168101 Carvedilol (AS) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +931644011000036108 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 100, bottle 166257 930804011000036101 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 100 930055011000036108 Pravastatin Sodium (Apo) 40 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +95581000036109 Panadol Optizorb 500 mg film-coated tablet, 100, blister pack 186245 94471000036107 Panadol Optizorb 500 mg film-coated tablet, 100 93671000036107 Panadol Optizorb 500 mg film-coated tablet 18201000168104 Panadol Optizorb 18201000168104 Panadol Optizorb 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +20960011000036101 Amoxycillin (DP) 250 mg hard capsule, 20, blister pack 95456 14115011000036107 Amoxycillin (DP) 250 mg hard capsule, 20 7392011000036104 Amoxycillin (DP) 250 mg hard capsule 3998011000036102 Amoxycillin (DP) 3998011000036102 Amoxycillin (DP) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +1098881000168107 Ibuprofen for Children (Amcal) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 231276 1098871000168109 Ibuprofen for Children (Amcal) 100 mg/5 mL oral liquid suspension, 200 mL 1098861000168103 Ibuprofen for Children (Amcal) 100 mg/5 mL oral liquid suspension, 5 mL 1098851000168100 Ibuprofen for Children (Amcal) 1098851000168100 Ibuprofen for Children (Amcal) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +135911000036108 Montelukast (Pharmacor) 4 mg chewable tablet, 28, blister pack 184838 135191000036100 Montelukast (Pharmacor) 4 mg chewable tablet, 28 134321000036101 Montelukast (Pharmacor) 4 mg chewable tablet 134131000036102 Montelukast (Pharmacor) 134131000036102 Montelukast (Pharmacor) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +52780011000036109 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet, 12, blister pack 80163 52590011000036106 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet, 12 52434011000036103 Sudafed Sinus plus Anti-Inflammatory Pain Relief film-coated tablet 52389011000036102 Sudafed Sinus plus Anti-Inflammatory Pain Relief 52389011000036102 Sudafed Sinus plus Anti-Inflammatory Pain Relief 52898011000036109 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 12 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +45891000036101 Zinnat 125 mg/5 mL powder for oral liquid, 70 mL, bottle 81297 43191000036107 Zinnat 125 mg/5 mL powder for oral liquid, 70 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 43201000036109 cefuroxime 125 mg/5 mL powder for oral liquid, 70 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +45891000036101 Zinnat 125 mg/5 mL powder for oral liquid, 70 mL, bottle 178687 43191000036107 Zinnat 125 mg/5 mL powder for oral liquid, 70 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 43201000036109 cefuroxime 125 mg/5 mL powder for oral liquid, 70 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +925281000168103 Topiramate (Terry White Chemists) 100 mg film-coated tablet, 60, blister pack 124748 925271000168101 Topiramate (Terry White Chemists) 100 mg film-coated tablet, 60 925261000168107 Topiramate (Terry White Chemists) 100 mg film-coated tablet 925251000168105 Topiramate (Terry White Chemists) 925251000168105 Topiramate (Terry White Chemists) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +79674011000036105 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 30, blister pack 118735 930799011000036100 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 30 930053011000036107 Pravastatin Sodium (Apo) 10 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +773331000168102 Claratyne Liquid Capsule 10 mg soft capsule, 10, blister pack 175273 773321000168100 Claratyne Liquid Capsule 10 mg soft capsule, 10 773241000168100 Claratyne Liquid Capsule 10 mg soft capsule 773221000168106 Claratyne Liquid Capsule 773221000168106 Claratyne Liquid Capsule 773311000168107 loratadine 10 mg capsule, 10 773231000168109 loratadine 10 mg capsule 21701011000036106 loratadine +59906011000036105 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet, 96, blister pack 117528 55868011000036108 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet, 96 53651011000036109 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet 51701000168108 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) 51701000168108 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +17998011000036106 Nifedipine (GenRx) 20 mg film-coated tablet, 60, blister pack 127284 11839011000036104 Nifedipine (GenRx) 20 mg film-coated tablet, 60 5148011000036103 Nifedipine (GenRx) 20 mg film-coated tablet 3741011000036106 Nifedipine (GenRx) 3741011000036106 Nifedipine (GenRx) 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +59687011000036105 Paracetamol (Guardian) 500 mg uncoated tablet, 24, blister pack 100679 55649011000036100 Paracetamol (Guardian) 500 mg uncoated tablet, 24 53656011000036104 Paracetamol (Guardian) 500 mg uncoated tablet 53128011000036100 Paracetamol (Guardian) 53128011000036100 Paracetamol (Guardian) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1075221000168107 Atenolol (RBX) 25 mg film-coated tablet, 30, blister pack 197757 1075211000168100 Atenolol (RBX) 25 mg film-coated tablet, 30 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029571000168108 atenolol 25 mg tablet, 30 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +764741000168103 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet, 60, blister pack 214505 764731000168107 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet, 60 764681000168103 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +69004011000036106 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 138697 66806011000036108 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71931011000036102 paracetamol 1 g powder for oral liquid, 1 sachet 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +20119011000036106 Bisalax 5 mg enteric tablet, 200, bottle 231318 13343011000036105 Bisalax 5 mg enteric tablet, 200 6628011000036102 Bisalax 5 mg enteric tablet 1091000168108 Bisalax 1091000168108 Bisalax 27705011000036106 bisacodyl 5 mg enteric tablet, 200 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +20119011000036106 Bisalax 5 mg enteric tablet, 200, bottle 72491 13343011000036105 Bisalax 5 mg enteric tablet, 200 6628011000036102 Bisalax 5 mg enteric tablet 1091000168108 Bisalax 1091000168108 Bisalax 27705011000036106 bisacodyl 5 mg enteric tablet, 200 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +60966011000036106 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 96, blister pack 62806 56909011000036109 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 96 54117011000036107 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 63853011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 96 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +933211731000036102 Ciprofloxacin (BL) 500 mg film-coated tablet, 8, blister pack 114047 933199831000036106 Ciprofloxacin (BL) 500 mg film-coated tablet, 8 933194151000036105 Ciprofloxacin (BL) 500 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 933199841000036101 ciprofloxacin 500 mg tablet, 8 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1100981000168105 Azonaire 50 microgram/actuation nasal spray, 65 actuations, pump pack 201569 1100971000168107 Azonaire 50 microgram/actuation nasal spray, 65 actuations 1100961000168101 Azonaire 50 microgram/actuation nasal spray, actuation 1100951000168103 Azonaire 1100951000168103 Azonaire 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +45731000036109 Simipex 125 microgram tablet, 30, blister pack 172017 43051000036104 Simipex 125 microgram tablet, 30 41311000036101 Simipex 125 microgram tablet 40201000036100 Simipex 40201000036100 Simipex 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +850361000168100 Temozolomide (Amneal) 100 mg hard capsule, 5, sachet 206044 850351000168102 Temozolomide (Amneal) 100 mg hard capsule, 5 850341000168104 Temozolomide (Amneal) 100 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +841811000168100 Atorvastatin (Amneal) 80 mg film-coated tablet, 10, blister pack 178525 841801000168103 Atorvastatin (Amneal) 80 mg film-coated tablet, 10 841791000168104 Atorvastatin (Amneal) 80 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +20729011000036106 Allopurinol (GenRx) 300 mg uncoated tablet, 60, blister pack 83096 13898011000036105 Allopurinol (GenRx) 300 mg uncoated tablet, 60 7184011000036101 Allopurinol (GenRx) 300 mg uncoated tablet 3620011000036109 Allopurinol (GenRx) 3620011000036109 Allopurinol (GenRx) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +60730011000036107 Combantrin Chocolate 100 mg/square block, 24 squares, strip pack 49028 56688011000036104 Combantrin Chocolate 100 mg/square block, 24 squares 54034011000036101 Combantrin Chocolate 100 mg/square block 53233011000036109 Combantrin 53233011000036109 Combantrin 63511011000036109 pyrantel 100 mg/square block, 24 squares 61998011000036102 pyrantel 100 mg/square block 21475011000036105 pyrantel +20752011000036102 Cialis 10 mg film-coated tablet, 4, blister pack 90590 13921011000036102 Cialis 10 mg film-coated tablet, 4 7209011000036101 Cialis 10 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 28012011000036107 tadalafil 10 mg tablet, 4 23335011000036109 tadalafil 10 mg tablet 21725011000036104 tadalafil +991731000168100 Amitriptyline (Apo) 25 mg film-coated tablet, 100, bottle 215363 991721000168103 Amitriptyline (Apo) 25 mg film-coated tablet, 100 991711000168105 Amitriptyline (Apo) 25 mg film-coated tablet 991701000168107 Amitriptyline (Apo) 991701000168107 Amitriptyline (Apo) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +104081000036105 Donepezil Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 28, blister pack 168336 101541000036107 Donepezil Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 28 99191000036100 Donepezil Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +104081000036105 Donepezil Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 28, blister pack 213500 101541000036107 Donepezil Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 28 99191000036100 Donepezil Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +649041000168100 Cocaine Hydrochloride 10% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) paste, 100 g, jar 649031000168109 Cocaine Hydrochloride 10% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) paste, 100 g 649011000168104 Cocaine Hydrochloride 10% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) paste 648741000168107 Cocaine Hydrochloride 10% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) 648741000168107 Cocaine Hydrochloride 10% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) 649021000168106 cocaine hydrochloride 10% + adrenaline (epinephrine) acid tartrate 0.18% paste, 100 g 649001000168102 cocaine hydrochloride 10% + adrenaline (epinephrine) acid tartrate 0.18% paste 648911000168106 cocaine + adrenaline (epinephrine) +777551000168109 Karvea 150 mg film-coated tablet, 3, blister pack 101706 777541000168107 Karvea 150 mg film-coated tablet, 3 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777531000168103 irbesartan 150 mg tablet, 3 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +19105011000036109 Dantrium 25 mg capsule, 100, bottle 42975 12410011000036106 Dantrium 25 mg capsule, 100 4514011000036102 Dantrium 25 mg capsule 4175011000036103 Dantrium 4175011000036103 Dantrium 27103011000036100 dantrolene sodium hemiheptahydrate 25 mg capsule, 100 22471011000036109 dantrolene sodium hemiheptahydrate 25 mg capsule 21439011000036105 dantrolene +666201000168109 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 28, blister pack 196561 666191000168106 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 28 137741000036101 Rabeprazole Sodium (DRLA) 10 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1111671000168109 Allopurinol (TW) 300 mg uncoated tablet, 60, blister pack 269645 1111661000168103 Allopurinol (TW) 300 mg uncoated tablet, 60 1111651000168100 Allopurinol (TW) 300 mg uncoated tablet 1111641000168102 Allopurinol (TW) 1111641000168102 Allopurinol (TW) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +68710011000036104 Cold Sore (Chemists' Own) 5% cream, 5 g, tube 106588 66545011000036107 Cold Sore (Chemists' Own) 5% cream, 5 g 65428011000036105 Cold Sore (Chemists' Own) 5% cream 65189011000036105 Cold Sore (Chemists' Own) 65189011000036105 Cold Sore (Chemists' Own) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +59976011000036104 Paracetamol Infant's Drops (Pharmacist Formula) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 120943 55938011000036105 Paracetamol Infant's Drops (Pharmacist Formula) Colour Free 100 mg/mL oral liquid solution, 20 mL 53726011000036107 Paracetamol Infant's Drops (Pharmacist Formula) Colour Free 100 mg/mL oral liquid solution 35741000168107 Paracetamol Infant's Drops (Pharmacist Formula) 35741000168107 Paracetamol Infant's Drops (Pharmacist Formula) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +850381000168109 Temozolomide (Amneal) 100 mg hard capsule, 20, sachet 206044 850371000168106 Temozolomide (Amneal) 100 mg hard capsule, 20 850341000168104 Temozolomide (Amneal) 100 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 164321000036105 temozolomide 100 mg capsule, 20 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +20487011000036100 Diclofenac Sodium (Terry White Chemists) 25 mg enteric tablet, 50, bottle 78436 13687011000036102 Diclofenac Sodium (Terry White Chemists) 25 mg enteric tablet, 50 6970011000036102 Diclofenac Sodium (Terry White Chemists) 25 mg enteric tablet 3969011000036108 Diclofenac Sodium (Terry White Chemists) 3969011000036108 Diclofenac Sodium (Terry White Chemists) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +59734011000036100 Paracetamol (Guardian) 500 mg uncoated tablet, 50, blister pack 100679 55651011000036101 Paracetamol (Guardian) 500 mg uncoated tablet, 50 53656011000036104 Paracetamol (Guardian) 500 mg uncoated tablet 53128011000036100 Paracetamol (Guardian) 53128011000036100 Paracetamol (Guardian) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +85026011000036104 Venlafaxine XR (Generic Health) 150 mg modified release capsule, 28, blister pack 151876 84891011000036108 Venlafaxine XR (Generic Health) 150 mg modified release capsule, 28 84785011000036108 Venlafaxine XR (Generic Health) 150 mg modified release capsule 58601000168109 Venlafaxine XR (Generic Health) 58601000168109 Venlafaxine XR (Generic Health) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +858971000168109 Amidep 50 mg film-coated tablet, 100, bottle 215387 858731000168109 Amidep 50 mg film-coated tablet, 100 858681000168100 Amidep 50 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1107421000168101 Delucon 100 mg film-coated tablet, 20, blister pack 172843 1107411000168108 Delucon 100 mg film-coated tablet, 20 1631000036105 Delucon 100 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +19761011000036103 Redipred 5 mg/mL oral liquid solution, 30 mL, bottle 62506 13022011000036104 Redipred 5 mg/mL oral liquid solution, 30 mL 6309011000036105 Redipred 5 mg/mL oral liquid solution 4177011000036108 Redipred 4177011000036108 Redipred 27619011000036104 prednisolone (as sodium phosphate) 5 mg/mL oral liquid, 30 mL 22957011000036100 prednisolone (as sodium phosphate) 5 mg/mL oral liquid 21374011000036100 prednisolone sodium phosphate +1094631000168103 Metformin XR (Chemmart) 500 mg modified release tablet, 120, blister pack 278178 1094621000168101 Metformin XR (Chemmart) 500 mg modified release tablet, 120 1094611000168108 Metformin XR (Chemmart) 500 mg modified release tablet 1094601000168105 Metformin XR (Chemmart) 1094601000168105 Metformin XR (Chemmart) 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +781741000168103 Rosuvastatin (Amneal) 5 mg film-coated tablet, 30, blister pack 183634 781731000168107 Rosuvastatin (Amneal) 5 mg film-coated tablet, 30 781721000168109 Rosuvastatin (Amneal) 5 mg film-coated tablet 781711000168102 Rosuvastatin (Amneal) 781711000168102 Rosuvastatin (Amneal) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +81154011000036104 Hemocane ointment, 30 g, tube 41514 80657011000036103 Hemocane ointment, 30 g 80228011000036104 Hemocane ointment 80099011000036108 Hemocane 80099011000036108 Hemocane 81715011000036101 zinc oxide 7.5% + lidocaine (lignocaine) 1.5% ointment, 30 g 81298011000036100 zinc oxide 7.5% + lidocaine (lignocaine) 1.5% ointment 81229011000036102 zinc oxide + lidocaine (lignocaine) +854631000168105 Agpen 500 mg powder for injection, 5 vials 203938 854621000168107 Agpen 500 mg powder for injection, 5 vials 854611000168100 Agpen 500 mg powder for injection, 500 mg vial 854601000168103 Agpen 854601000168103 Agpen 28098011000036109 ampicillin 500 mg injection, 5 vials 23406011000036103 ampicillin 500 mg injection, vial 21671011000036106 ampicillin +79633011000036106 Clexane 40 mg/0.4 mL injection solution, 100 x 0.4 mL ampoules 147005 79480011000036108 Clexane 40 mg/0.4 mL injection solution, 100 x 0.4 mL ampoules 79366011000036104 Clexane 40 mg/0.4 mL injection solution, 0.4 mL ampoule 2391000168100 Clexane 2391000168100 Clexane 79811011000036107 enoxaparin sodium 40 mg/0.4 mL injection, 100 x 0.4 mL ampoules 79742011000036105 enoxaparin sodium 40 mg/0.4 mL injection, ampoule 21553011000036103 enoxaparin sodium +1064571000168102 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 30, blister pack 202702 1064561000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 30 1064451000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064551000168106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 30 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +910451000168109 Dexamfetamine (Kinedexe) 5 mg uncoated tablet, 100, blister pack 270972 910441000168107 Dexamfetamine (Kinedexe) 5 mg uncoated tablet, 100 910431000168103 Dexamfetamine (Kinedexe) 5 mg uncoated tablet 910421000168101 Dexamfetamine (Kinedexe) 910421000168101 Dexamfetamine (Kinedexe) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +706821000168107 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 219146 706811000168100 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 706781000168102 Lenest 20 ED (inert substance) uncoated tablet 706751000168109 Lenest 20 ED 706751000168109 Lenest 20 ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +706821000168107 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 219146 706811000168100 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 706771000168100 Lenest 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) uncoated tablet 706751000168109 Lenest 20 ED 706751000168109 Lenest 20 ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +18356011000036101 Caduet 5/80 film-coated tablet, 30, blister pack 100698 11159011000036109 Caduet 5/80 film-coated tablet, 30 5085011000036105 Caduet 5/80 film-coated tablet 40041000168100 Caduet 5/80 40041000168100 Caduet 5/80 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +20770011000036104 Diltiazem Hydrochloride CD (GenRx) 180 mg modified release capsule, 30, bottle 90918 13939011000036101 Diltiazem Hydrochloride CD (GenRx) 180 mg modified release capsule, 30 7227011000036102 Diltiazem Hydrochloride CD (GenRx) 180 mg modified release capsule 37971000168108 Diltiazem Hydrochloride CD (GenRx) 37971000168108 Diltiazem Hydrochloride CD (GenRx) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +928911011000036108 Vaclovir 500 mg film-coated tablet, 20, blister pack 153822 928273011000036102 Vaclovir 500 mg film-coated tablet, 20 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +104161000036104 Irbesartan (Terry White Chemists) 150 mg tablet, 30, blister pack 169792 101341000036101 Irbesartan (Terry White Chemists) 150 mg tablet, 30 98651000036105 Irbesartan (Terry White Chemists) 150 mg tablet 97711000036100 Irbesartan (Terry White Chemists) 97711000036100 Irbesartan (Terry White Chemists) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +104161000036104 Irbesartan (Terry White Chemists) 150 mg tablet, 30, blister pack 216060 101341000036101 Irbesartan (Terry White Chemists) 150 mg tablet, 30 98651000036105 Irbesartan (Terry White Chemists) 150 mg tablet 97711000036100 Irbesartan (Terry White Chemists) 97711000036100 Irbesartan (Terry White Chemists) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +679091000168109 Benadryl Chesty Forte oral liquid solution, 100 mL, bottle (Old Formulation 2017) 73178 679081000168106 Benadryl Chesty Forte oral liquid solution, 100 mL (Old Formulation 2017) 679071000168108 Benadryl Chesty Forte oral liquid solution, 5 mL (Old Formulation 2017) 679061000168102 Benadryl Chesty Forte 679061000168102 Benadryl Chesty Forte 63966011000036107 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +1098741000168108 Cetirizine (Amcal) 5 mg/5 mL oral liquid solution, 200 mL, bottle 233215 1098731000168104 Cetirizine (Amcal) 5 mg/5 mL oral liquid solution, 200 mL 1098721000168102 Cetirizine (Amcal) 5 mg/5 mL oral liquid solution, 5 mL 1098551000168102 Cetirizine (Amcal) 1098551000168102 Cetirizine (Amcal) 142571000036102 cetirizine hydrochloride 5 mg/5 mL oral liquid, 200 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +79691011000036100 Androcur 50 mg uncoated tablet, 50, blister pack 156920 11342011000036106 Androcur 50 mg uncoated tablet, 50 5484011000036103 Androcur 50 mg uncoated tablet 3109011000036105 Androcur 3109011000036105 Androcur 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +20603011000036107 Norfloxacin (Chemmart) 400 mg film-coated tablet, 14, blister pack 80665 13785011000036101 Norfloxacin (Chemmart) 400 mg film-coated tablet, 14 7071011000036104 Norfloxacin (Chemmart) 400 mg film-coated tablet 2937011000036103 Norfloxacin (Chemmart) 2937011000036103 Norfloxacin (Chemmart) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +715501000168105 Femcream (Pharmacy Action) 1% vaginal cream, 35 g, tube 194406 715491000168103 Femcream (Pharmacy Action) 1% vaginal cream, 35 g 715481000168101 Femcream (Pharmacy Action) 1% vaginal cream 87851000036106 Femcream (Pharmacy Action) 87851000036106 Femcream (Pharmacy Action) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +741201000168104 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 231046 741191000168102 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 741171000168103 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741181000168100 follitropin alfa 150 units (11 microgram)/0.25 mL injection, 0.25 mL injection device 741161000168109 follitropin alfa 150 units (11 microgram)/0.25 mL injection, injection device 21352011000036107 follitropin alfa +1090301000168107 Eleva 50 mg film-coated tablet, 500, bottle 95582 1090291000168106 Eleva 50 mg film-coated tablet, 500 7396011000036100 Eleva 50 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 1090281000168108 sertraline 50 mg tablet, 500 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +792481000168106 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 12, blister pack 194033 792471000168108 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 12 792431000168105 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +828891000168104 Glivec 100 mg hard capsule, 96, blister pack 78442 828881000168102 Glivec 100 mg hard capsule, 96 828801000168105 Glivec 100 mg hard capsule 3084011000036104 Glivec 3084011000036104 Glivec 828871000168100 imatinib 100 mg capsule, 96 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +908281000168100 Celecoxib (Generic Health) 100 mg hard capsule, 60, blister pack 196180 908271000168103 Celecoxib (Generic Health) 100 mg hard capsule, 60 908121000168108 Celecoxib (Generic Health) 100 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +44063011000036103 Dalacin V 2% cream, 40 g, tube 48431 41550011000036109 Dalacin V 2% cream, 40 g 40057011000036101 Dalacin V 2% cream 41641000168103 Dalacin V 41641000168103 Dalacin V 46382011000036100 clindamycin 2% cream, 40 g 45119011000036104 clindamycin 2% cream 21255011000036108 clindamycin +931404011000036101 Rispernia 4 mg film-coated tablet, 60, blister pack 127925 928194011000036105 Rispernia 4 mg film-coated tablet, 60 927853011000036101 Rispernia 4 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +790331000168103 Oxycontin 60 mg modified release tablet, 28, bottle 200029 789731000168106 Oxycontin 60 mg modified release tablet, 28 789681000168102 Oxycontin 60 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789721000168108 oxycodone hydrochloride 60 mg modified release tablet, 28 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +833181000168103 Centrum film-coated tablet, 100, bottle 75827 833171000168101 Centrum film-coated tablet, 100 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833161000168107 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 100 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +681101000168108 Vedafil 25 mg film-coated tablet, 4, blister pack 162807 681091000168103 Vedafil 25 mg film-coated tablet, 4 681081000168101 Vedafil 25 mg film-coated tablet 680671000168101 Vedafil 680671000168101 Vedafil 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +59953011000036107 Xyloproct 5% / 0.25% ointment, 15 g, tube 12033 55915011000036107 Xyloproct 5% / 0.25% ointment, 15 g 53623011000036109 Xyloproct 5% / 0.25% ointment 32471000168103 Xyloproct 5% / 0.25% 32471000168103 Xyloproct 5% / 0.25% 63158011000036102 lidocaine (lignocaine) 5% + hydrocortisone acetate 0.25% ointment, 15 g 61875011000036106 lidocaine (lignocaine) 5% + hydrocortisone acetate 0.25% ointment 61836011000036102 lidocaine (lignocaine) + hydrocortisone +927531000168109 Risperisan 2 mg film-coated tablet, 60, blister pack 126175 927391000168100 Risperisan 2 mg film-coated tablet, 60 927381000168103 Risperisan 2 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +18696011000036103 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 131611 11300011000036101 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30 5505011000036108 Simvastatin (Terry White Chemists) 10 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +18696011000036103 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 149800 11300011000036101 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30 5505011000036108 Simvastatin (Terry White Chemists) 10 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +18696011000036103 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 104525 11300011000036101 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30 5505011000036108 Simvastatin (Terry White Chemists) 10 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +18696011000036103 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 211952 11300011000036101 Simvastatin (Terry White Chemists) 10 mg film-coated tablet, 30 5505011000036108 Simvastatin (Terry White Chemists) 10 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +20003011000036104 Flecatab 100 mg uncoated tablet, 60, blister pack 68651 13240011000036107 Flecatab 100 mg uncoated tablet, 60 6522011000036105 Flecatab 100 mg uncoated tablet 3116011000036103 Flecatab 3116011000036103 Flecatab 27642011000036102 flecainide acetate 100 mg tablet, 60 22979011000036105 flecainide acetate 100 mg tablet 21457011000036102 flecainide +60413011000036102 Strong Pain Plus (Priceline) uncoated tablet, 48, blister pack 144423 56372011000036102 Strong Pain Plus (Priceline) uncoated tablet, 48 53893011000036109 Strong Pain Plus (Priceline) uncoated tablet 53244011000036107 Strong Pain Plus (Priceline) 53244011000036107 Strong Pain Plus (Priceline) 63803011000036107 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 48 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +825051000168107 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 194815 825041000168105 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 825031000168101 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 73716011000036101 Avaxim 73716011000036101 Avaxim 824671000168109 hepatitis A child/adult vaccine injection, 0.5 mL syringe 824651000168100 hepatitis A child/adult vaccine injection, 0.5 mL syringe 824641000168102 hepatitis A vaccine +906431000168103 Amisulpride (AN) 200 mg uncoated tablet, 30, blister pack 234701 906421000168101 Amisulpride (AN) 200 mg uncoated tablet, 30 906411000168108 Amisulpride (AN) 200 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 901561000168104 amisulpride 200 mg tablet, 30 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +1059831000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 90, blister pack 234468 1059041000168106 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 90 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 928531000168108 rosuvastatin 5 mg tablet, 90 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +50360011000036101 Tubigrip F (1548) 10 cm x 1 m bandage, 1, carton 49294011000036108 Tubigrip F (1548) 10 cm x 1 m bandage, 1 48618011000036100 Tubigrip F (1548) 10 cm x 1 m bandage 28851000168105 Tubigrip F (1548) 28851000168105 Tubigrip F (1548) 51281011000036107 bandage tubular 10 cm x 1 m bandage, 1 50810011000036104 bandage tubular 10 cm x 1 m bandage 50697011000036107 bandage tubular +905631000168109 Ceftriaxone (Kabi) 2 g powder for injection, 5 vials 223324 905621000168106 Ceftriaxone (Kabi) 2 g powder for injection, 5 vials 905591000168109 Ceftriaxone (Kabi) 2 g powder for injection, 2 g vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 746281000168103 ceftriaxone 2 g injection, 5 vials 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +929708011000036108 MS Mono 120 mg modified release capsule, 14, blister pack 74150 929544011000036106 MS Mono 120 mg modified release capsule, 14 6722011000036106 MS Mono 120 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 929765011000036101 morphine sulfate pentahydrate 120 mg modified release capsule, 14 23078011000036104 morphine sulfate pentahydrate 120 mg modified release capsule 21252011000036100 morphine +717761000168105 Metformin (Auro) 500 mg film-coated tablet, 100, blister pack 180441 717751000168108 Metformin (Auro) 500 mg film-coated tablet, 100 717741000168106 Metformin (Auro) 500 mg film-coated tablet 714361000168101 Metformin (Auro) 714361000168101 Metformin (Auro) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +845951000168105 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 134363 845941000168108 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 845891000168107 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 73695011000036100 Meningitec 73695011000036100 Meningitec 845931000168104 meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes 845881000168109 meningococcal C conjugate vaccine injection, 0.5 mL syringe 826391000168106 meningococcal C conjugate vaccine +801301000168100 Abbapram 20 mg film-coated tablet, 98, blister pack 151310 801291000168101 Abbapram 20 mg film-coated tablet, 98 801211000168105 Abbapram 20 mg film-coated tablet 801201000168107 Abbapram 801201000168107 Abbapram 801281000168104 citalopram 20 mg tablet, 98 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +82422011000036107 Promit 3 g/20 mL injection solution, 20 x 20 mL ampoules 80038 82211011000036107 Promit 3 g/20 mL injection solution, 20 x 20 mL ampoules 82043011000036106 Promit 3 g/20 mL injection solution, 20 mL ampoule 81974011000036103 Promit 81974011000036103 Promit 82575011000036106 dextran-1 3 g/20 mL injection, 20 x 20 mL ampoules 82458011000036109 dextran-1 3 g/20 mL injection, ampoule 82427011000036109 dextran-1 +60137011000036103 Emla 5% cream, 30 g, tube 12886 56096011000036105 Emla 5% cream, 30 g 53788011000036102 Emla 5% cream 9941000168103 Emla 5% 9941000168103 Emla 5% 63213011000036104 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream, 30 g 61890011000036109 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream 61738011000036101 lidocaine (lignocaine) + prilocaine +717671000168108 Pemzo 20 mg enteric capsule, 90, blister pack 149517 717661000168102 Pemzo 20 mg enteric capsule, 90 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716961000168106 omeprazole 20 mg enteric capsule, 90 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +44455011000036101 Doxycycline (GenRx) 100 mg modified release capsule, 21, blister pack 74018 41911011000036102 Doxycycline (GenRx) 100 mg modified release capsule, 21 40261011000036107 Doxycycline (GenRx) 100 mg modified release capsule 3262011000036104 Doxycycline (GenRx) 3262011000036104 Doxycycline (GenRx) 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +50677011000036103 Keto-Diabur-Test 5000 diagnostic strips, 50, bottle 22136 49701011000036101 Keto-Diabur-Test 5000 diagnostic strips, 50 48829011000036109 Keto-Diabur-Test 5000 diagnostic strips 12321000168100 Keto-Diabur-Test 5000 12321000168100 Keto-Diabur-Test 5000 51568011000036106 glucose and ketone indicator urine diagnostic strip, 50 51005011000036103 glucose and ketone indicator urine diagnostic strip 50745011000036101 glucose and ketone indicator urine +61514011000036104 Diovan 40 mg film-coated tablet, 56, blister pack 93165 57439011000036100 Diovan 40 mg film-coated tablet, 56 54302011000036104 Diovan 40 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63857011000036108 valsartan 40 mg tablet, 56 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +858811000168107 Amidep 25 mg film-coated tablet, 50, blister pack 215378 858801000168109 Amidep 25 mg film-coated tablet, 50 858761000168101 Amidep 25 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +803391000168107 Abilify ODT 20 mg orally disintegrating tablet, 84, blister pack 128903 803381000168109 Abilify ODT 20 mg orally disintegrating tablet, 84 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803371000168106 aripiprazole 20 mg orally disintegrating tablet, 84 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +116861000036102 Marvelon 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 42894 115191000036105 Marvelon 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 113061000036100 Marvelon 28 (inert substance) tablet 40171000168108 Marvelon 28 40171000168108 Marvelon 28 115201000036107 desogestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +116861000036102 Marvelon 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 42894 115191000036105 Marvelon 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 112991000036103 Marvelon 28 (desogestrel 150 microgram + ethinylestradiol 30 microgram) tablet 40171000168108 Marvelon 28 40171000168108 Marvelon 28 115201000036107 desogestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 113001000036104 desogestrel 150 microgram + ethinylestradiol 30 microgram tablet 117021000036104 desogestrel + ethinylestradiol +926778011000036109 Colgate Total toothpaste, 80 g, tube 154432 926175011000036107 Colgate Total toothpaste, 80 g 925656011000036103 Colgate Total toothpaste 23851000168102 Colgate Total 23851000168102 Colgate Total 927330011000036106 sodium fluoride 0.22% + triclosan 0.3% toothpaste, 80 g 926991011000036101 sodium fluoride 0.22% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +907801000168106 Celecoxib (Generic Health) 200 mg hard capsule, 10, blister pack 196183 907791000168105 Celecoxib (Generic Health) 200 mg hard capsule, 10 907781000168107 Celecoxib (Generic Health) 200 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +933246211000036101 Allevyn Gentle Border (66800270) 10 cm x 10 cm dressing, 10, carton 92774 933242711000036107 Allevyn Gentle Border (66800270) 10 cm x 10 cm dressing, 10 933241041000036103 Allevyn Gentle Border (66800270) 10 cm x 10 cm dressing 23111000168107 Allevyn Gentle Border (66800270) 23111000168107 Allevyn Gentle Border (66800270) 933242681000036108 dressing foam with silicone heavy exudate 10 cm x 10 cm dressing, 10 50864011000036108 dressing foam with silicone heavy exudate 10 cm x 10 cm dressing 50761011000036107 dressing foam with silicone heavy exudate +764581000168102 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet, 28, blister pack 214488 764571000168100 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet, 28 764541000168107 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +43821011000036106 Kepivance 6.25 mg powder for injection, 6 vials 107304 41155011000036109 Kepivance 6.25 mg powder for injection, 6 vials 39944011000036101 Kepivance 6.25 mg powder for injection, 6.25 mg vial 39782011000036109 Kepivance 39782011000036109 Kepivance 46126011000036103 palifermin 6.25 mg injection, 6 vials 45000011000036103 palifermin 6.25 mg injection, vial 44953011000036100 palifermin +77329011000036109 Water for Injections (AstraZeneca) injection solution, 10 x 10 mL ampoules 48351 76745011000036107 Water for Injections (AstraZeneca) injection solution, 10 x 10 mL ampoules 76158011000036108 Water for Injections (AstraZeneca) injection solution, 10 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78254011000036108 water for injections injection, 10 x 10 mL ampoules 77584011000036100 water for injections injection, 10 mL ampoule 77431011000036101 water for injections +37379011000036101 Benpen 1.2 g powder for injection, 1 vial 10326 36623011000036109 Benpen 1.2 g powder for injection, 1 vial 36121011000036109 Benpen 1.2 g powder for injection, 1.2 g vial 3539011000036105 Benpen 3539011000036105 Benpen 38543011000036109 benzylpenicillin 1.2 g injection, 1 vial 37824011000036103 benzylpenicillin 1.2 g injection, vial 21332011000036106 benzylpenicillin +706981000168100 Morphine (Juno) 100 mg/5 mL injection solution, 10 x 5 mL ampoules 224245 706971000168103 Morphine (Juno) 100 mg/5 mL injection solution, 10 x 5 mL ampoules 706921000168104 Morphine (Juno) 100 mg/5 mL injection solution, 5 mL ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 706961000168109 morphine hydrochloride trihydrate 100 mg/5 mL injection, 10 x 5 mL ampoules 706911000168106 morphine hydrochloride trihydrate 100 mg/5 mL injection, ampoule 21252011000036100 morphine +79725011000036100 Rectogesic 0.2% ointment, 5 g, tube 66382 79536011000036109 Rectogesic 0.2% ointment, 5 g 79401011000036100 Rectogesic 0.2% ointment 76016011000036108 Rectogesic 76016011000036108 Rectogesic 79842011000036108 glyceryl trinitrate 0.2% ointment, 5 g 79757011000036109 glyceryl trinitrate 0.2% ointment 21388011000036102 glyceryl trinitrate +60379011000036100 Paracetamol (Pharmacist Own) 500 mg uncoated tablet, 24, blister pack 143014 56338011000036102 Paracetamol (Pharmacist Own) 500 mg uncoated tablet, 24 53883011000036105 Paracetamol (Pharmacist Own) 500 mg uncoated tablet 53397011000036103 Paracetamol (Pharmacist Own) 53397011000036103 Paracetamol (Pharmacist Own) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +827201000168105 Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe 45073 827191000168107 Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe 827181000168109 Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe 73701011000036109 Typhim Vi 73701011000036109 Typhim Vi 827151000168102 typhoid inactivated vaccine injection, 0.5 mL syringe 827101000168101 typhoid inactivated vaccine injection, 0.5 mL syringe 827091000168106 typhoid inactivated vaccine +73302011000036104 Jurnista 32 mg modified release tablet, 7, blister pack 141534 73100011000036108 Jurnista 32 mg modified release tablet, 7 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73498011000036108 hydromorphone hydrochloride 32 mg modified release tablet, 7 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +60195011000036104 Head Cold and Allergy Elixir (Pharmacy Choice) oral liquid solution, 200 mL, bottle 132710 56154011000036104 Head Cold and Allergy Elixir (Pharmacy Choice) oral liquid solution, 200 mL 53810011000036100 Head Cold and Allergy Elixir (Pharmacy Choice) oral liquid solution, 5 mL 8701000168109 Head Cold and Allergy Elixir (Pharmacy Choice) 8701000168109 Head Cold and Allergy Elixir (Pharmacy Choice) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +1102991000168107 Duoresp Spiromax 200/6 powder for inhalation, 3 x 120 actuations, dry powder inhalers 267385 1102981000168109 Duoresp Spiromax 200/6 powder for inhalation, 3 x 120 actuations 1102791000168105 Duoresp Spiromax 200/6 powder for inhalation, actuation 1102751000168100 Duoresp Spiromax 200/6 1102751000168100 Duoresp Spiromax 200/6 1102971000168106 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, 3 x 120 actuations 23266011000036103 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation powder for inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +773171000168101 Famvir 500 mg film-coated tablet, 12, blister pack 67391 773161000168107 Famvir 500 mg film-coated tablet, 12 6484011000036101 Famvir 500 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 933224971000036106 famciclovir 500 mg tablet, 12 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +60079011000036101 Voltaren Rapid 12.5 mg film-coated tablet, 20, blister pack 125889 56040011000036104 Voltaren Rapid 12.5 mg film-coated tablet, 20 53766011000036103 Voltaren Rapid 12.5 mg film-coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63207011000036105 diclofenac potassium 12.5 mg tablet, 20 61887011000036109 diclofenac potassium 12.5 mg tablet 21288011000036105 diclofenac +60079011000036101 Voltaren Rapid 12.5 mg film-coated tablet, 20, blister pack 168061 56040011000036104 Voltaren Rapid 12.5 mg film-coated tablet, 20 53766011000036103 Voltaren Rapid 12.5 mg film-coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63207011000036105 diclofenac potassium 12.5 mg tablet, 20 61887011000036109 diclofenac potassium 12.5 mg tablet 21288011000036105 diclofenac +60563011000036108 Panadeine uncoated tablet, 24, blister pack 15478 56521011000036106 Panadeine uncoated tablet, 24 53950011000036101 Panadeine uncoated tablet 13481000168104 Panadeine 13481000168104 Panadeine 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +20050011000036104 Sandomigran 500 microgram sugar coated tablet, 100, bottle 69608 13281011000036107 Sandomigran 500 microgram sugar coated tablet, 100 6564011000036108 Sandomigran 500 microgram sugar coated tablet 3858011000036102 Sandomigran 3858011000036102 Sandomigran 27665011000036102 pizotifen 500 microgram tablet, 100 23002011000036105 pizotifen 500 microgram tablet 21528011000036109 pizotifen +925841000168107 Zorac 0.05% gel, 100 g, tube 59521 925831000168103 Zorac 0.05% gel, 100 g 925721000168107 Zorac 0.05% gel 39675011000036100 Zorac 39675011000036100 Zorac 925821000168101 tazarotene 0.05% gel, 100 g 925711000168100 tazarotene 0.05% gel 44886011000036105 tazarotene +87641011000036103 Calcitriol (Sandoz) 0.25 microgram soft capsule, 100, bottle 149506 87438011000036106 Calcitriol (Sandoz) 0.25 microgram soft capsule, 100 87305011000036104 Calcitriol (Sandoz) 0.25 microgram soft capsule 87275011000036102 Calcitriol (Sandoz) 87275011000036102 Calcitriol (Sandoz) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +18361000036100 Glucobete-1000 1 g film-coated tablet, 90, blister pack 180444 16941000036104 Glucobete-1000 1 g film-coated tablet, 90 15751000036107 Glucobete-1000 1 g film-coated tablet 1701000168104 Glucobete-1000 1701000168104 Glucobete-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +19808011000036105 Lamisil Dermgel 1% gel, 15 g, tube 63434 13065011000036102 Lamisil Dermgel 1% gel, 15 g 6349011000036104 Lamisil Dermgel 1% gel 39931000168104 Lamisil Dermgel 39931000168104 Lamisil Dermgel 27529011000036104 terbinafine 1% gel, 15 g 22869011000036105 terbinafine 1% gel 21575011000036104 terbinafine +19808011000036105 Lamisil Dermgel 1% gel, 15 g, tube 121514 13065011000036102 Lamisil Dermgel 1% gel, 15 g 6349011000036104 Lamisil Dermgel 1% gel 39931000168104 Lamisil Dermgel 39931000168104 Lamisil Dermgel 27529011000036104 terbinafine 1% gel, 15 g 22869011000036105 terbinafine 1% gel 21575011000036104 terbinafine +31111000036104 Irbesartan HCT 300/12.5 (Sigma) film-coated tablet, 30, blister pack 171435 28311000036109 Irbesartan HCT 300/12.5 (Sigma) film-coated tablet, 30 26681000036105 Irbesartan HCT 300/12.5 (Sigma) film-coated tablet 22421000168101 Irbesartan HCT 300/12.5 (Sigma) 22421000168101 Irbesartan HCT 300/12.5 (Sigma) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +20292011000036100 Frusemide (GenRx) 20 mg uncoated tablet, 100, bottle 75578 13501011000036103 Frusemide (GenRx) 20 mg uncoated tablet, 100 6783011000036105 Frusemide (GenRx) 20 mg uncoated tablet 3501011000036104 Frusemide (GenRx) 3501011000036104 Frusemide (GenRx) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +50274011000036107 XPHEN, TYR Maxamum powder for oral liquid, 500 g, can 49279011000036104 XPHEN, TYR Maxamum powder for oral liquid, 500 g 48661011000036108 XPHEN, TYR Maxamum powder for oral liquid 40521000168100 XPHEN, TYR Maxamum 40521000168100 XPHEN, TYR Maxamum 51269011000036108 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 500 g 50801011000036109 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +850221000168104 Metformin XR 1000 (Blooms The Chemist) 1 g modified release tablet, 60, blister pack 218276 850211000168106 Metformin XR 1000 (Blooms The Chemist) 1 g modified release tablet, 60 850201000168108 Metformin XR 1000 (Blooms The Chemist) 1 g modified release tablet 850181000168107 Metformin XR 1000 (Blooms The Chemist) 850181000168107 Metformin XR 1000 (Blooms The Chemist) 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +927291000168105 Zovirax 800 mg uncoated tablet, 120, blister pack 45083 927281000168107 Zovirax 800 mg uncoated tablet, 120 927141000168105 Zovirax 800 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +84334011000036103 Cold and Flu PE (Pharmacy Health) uncoated tablet, 24, blister pack 158530 84027011000036107 Cold and Flu PE (Pharmacy Health) uncoated tablet, 24 83655011000036109 Cold and Flu PE (Pharmacy Health) uncoated tablet 83564011000036108 Cold and Flu PE (Pharmacy Health) 83564011000036108 Cold and Flu PE (Pharmacy Health) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +959681000168104 Ciram 10 mg film-coated tablet, 84, bottle 158857 959381000168105 Ciram 10 mg film-coated tablet, 84 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +933212051000036104 Donpesyn 10 mg film-coated tablet, 7, blister pack 142234 933201461000036103 Donpesyn 10 mg film-coated tablet, 7 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200971000036107 donepezil hydrochloride 10 mg tablet, 7 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +61047011000036101 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 30, blister pack 67365 56990011000036101 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 30 54148011000036100 Period Pain Relief (Pharmacist) 275 mg film-coated tablet 53313011000036106 Period Pain Relief (Pharmacist) 53313011000036106 Period Pain Relief (Pharmacist) 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +78999011000036103 Janumet 50/500 film-coated tablet, 56, blister pack 149014 78841011000036100 Janumet 50/500 film-coated tablet, 56 78650011000036100 Janumet 50/500 film-coated tablet 29661000168103 Janumet 50/500 29661000168103 Janumet 50/500 79232011000036102 sitagliptin 50 mg + metformin hydrochloride 500 mg tablet, 56 79110011000036109 sitagliptin 50 mg + metformin hydrochloride 500 mg tablet 79094011000036105 sitagliptin + metformin +20971011000036103 Zimstat 10 mg film-coated tablet, 30, blister pack 95673 14122011000036109 Zimstat 10 mg film-coated tablet, 30 7399011000036109 Zimstat 10 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +991411000168100 Bisoprolol (Apotex) 3.75 mg tablet, 30, blister pack 182112 991401000168103 Bisoprolol (Apotex) 3.75 mg tablet, 30 991231000168106 Bisoprolol (Apotex) 3.75 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 874861000168103 bisoprolol fumarate 3.75 mg tablet, 30 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +649271000168102 Adesan HCT 32/12.5 tablet, 30, bottle 206482 649261000168108 Adesan HCT 32/12.5 tablet, 30 649251000168106 Adesan HCT 32/12.5 tablet 649241000168109 Adesan HCT 32/12.5 649241000168109 Adesan HCT 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +876131000168106 Aggrastat 25 mg/500 mL injection solution, 500 mL bag 65161 876121000168108 Aggrastat 25 mg/500 mL injection solution, 500 mL bag 876101000168104 Aggrastat 25 mg/500 mL injection solution, 500 mL bag 3644011000036101 Aggrastat 3644011000036101 Aggrastat 876111000168101 tirofiban 25 mg/500 mL injection, 500 mL bag 876091000168109 tirofiban 25 mg/500 mL injection, bag 21609011000036103 tirofiban +35674011000036107 Lisinopril (Generic Health) 20 mg uncoated tablet, 30, blister pack 128163 35582011000036101 Lisinopril (Generic Health) 20 mg uncoated tablet, 30 35487011000036106 Lisinopril (Generic Health) 20 mg uncoated tablet 35443011000036106 Lisinopril (Generic Health) 35443011000036106 Lisinopril (Generic Health) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1074901000168108 Atenolol (RBX) 100 mg film-coated tablet, 28, blister pack 197761 1074891000168109 Atenolol (RBX) 100 mg film-coated tablet, 28 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1031801000168103 atenolol 100 mg tablet, 28 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +1055501000168104 Sorbact Foam Gentle Border (98532) 10 cm x 10 cm dressing, 10, carton 173776 1055491000168106 Sorbact Foam Gentle Border (98532) 10 cm x 10 cm dressing, 10 1055471000168105 Sorbact Foam Gentle Border (98532) 10 cm x 10 cm dressing 1055451000168101 Sorbact Foam Gentle Border (98532) 1055451000168101 Sorbact Foam Gentle Border (98532) 1055481000168108 dressing hydrophobic 10 cm x 10 cm dressing, 10 1055461000168104 dressing hydrophobic 10 cm x 10 cm dressing 1055281000168109 dressing hydrophobic +649351000168101 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 7, blister pack 202109 649341000168103 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 7 649331000168107 Pritor/Amlodipine 80 mg/10 mg multilayer tablet 649321000168109 Pritor/Amlodipine 80 mg/10 mg 649321000168109 Pritor/Amlodipine 80 mg/10 mg 932443011000036109 telmisartan 80 mg + amlodipine 10 mg tablet, 7 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +20476011000036105 Videx EC 400 mg enteric capsule, 30, bottle 78357 13676011000036107 Videx EC 400 mg enteric capsule, 30 6959011000036105 Videx EC 400 mg enteric capsule 30871000168102 Videx EC 30871000168102 Videx EC 27879011000036104 didanosine 400 mg enteric capsule, 30 23207011000036104 didanosine 400 mg enteric capsule 21467011000036106 didanosine +17756011000036109 Pravastatin (DP) 20 mg uncoated tablet, 30, blister pack 118731 11596011000036104 Pravastatin (DP) 20 mg uncoated tablet, 30 4764011000036102 Pravastatin (DP) 20 mg uncoated tablet 3957011000036105 Pravastatin (DP) 3957011000036105 Pravastatin (DP) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +69280011000036108 Glucose (Baxter) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 19480 67080011000036106 Glucose (Baxter) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 65247011000036105 Glucose (Baxter) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71730011000036104 glucose 10% (50 g/500 mL) injection, 500 mL bag 70155011000036108 glucose 10% (50 g/500 mL) injection, bag 21354011000036103 glucose +19035011000036106 Genox 10 mg uncoated tablet, 60, blister pack 40063 12340011000036108 Genox 10 mg uncoated tablet, 60 4877011000036104 Genox 10 mg uncoated tablet 3564011000036100 Genox 3564011000036100 Genox 27309011000036109 tamoxifen 10 mg tablet, 60 22662011000036108 tamoxifen 10 mg tablet 21494011000036103 tamoxifen +69188011000036108 Paralax 2.5 mL/5 mL oral liquid emulsion, 200 mL, bottle 19336 66988011000036101 Paralax 2.5 mL/5 mL oral liquid emulsion, 200 mL 65539011000036106 Paralax 2.5 mL/5 mL oral liquid emulsion, 5 mL 65002011000036108 Paralax 65002011000036108 Paralax 71669011000036108 liquid paraffin 2.5 mL/5 mL oral liquid, 200 mL 70118011000036107 liquid paraffin 2.5 mL/5 mL oral liquid 33623011000036103 liquid paraffin +908441000168106 Celecoxib (Lup) 200 mg hard capsule, 10, blister pack 196189 908431000168102 Celecoxib (Lup) 200 mg hard capsule, 10 908421000168100 Celecoxib (Lup) 200 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +991431000168105 Bisoprolol (Apotex) 3.75 mg tablet, 42, blister pack 182112 991421000168107 Bisoprolol (Apotex) 3.75 mg tablet, 42 991231000168106 Bisoprolol (Apotex) 3.75 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 875871000168105 bisoprolol fumarate 3.75 mg tablet, 42 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +1094311000168102 Loratadine (Amcal) 10 mg uncoated tablet, 30, blister pack 226844 1094301000168100 Loratadine (Amcal) 10 mg uncoated tablet, 30 1094271000168102 Loratadine (Amcal) 10 mg uncoated tablet 53343011000036104 Loratadine (Amcal) 53343011000036104 Loratadine (Amcal) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +59895011000036108 Nurofen Plus film-coated tablet, 6, blister pack 116620 55857011000036103 Nurofen Plus film-coated tablet, 6 53658011000036100 Nurofen Plus film-coated tablet 28771000168109 Nurofen Plus 28771000168109 Nurofen Plus 63147011000036100 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 6 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +46051000036108 Temozolomide (Orion) 20 mg hard capsule, 5, bottle 179872 43321000036107 Temozolomide (Orion) 20 mg hard capsule, 5 40991000036100 Temozolomide (Orion) 20 mg hard capsule 40411000036104 Temozolomide (Orion) 40411000036104 Temozolomide (Orion) 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +957671000168107 Amlodipine (Chemmart) 2.5 mg uncoated tablet, 30, blister pack 135129 957661000168101 Amlodipine (Chemmart) 2.5 mg uncoated tablet, 30 957651000168103 Amlodipine (Chemmart) 2.5 mg uncoated tablet 33922011000036106 Amlodipine (Chemmart) 33922011000036106 Amlodipine (Chemmart) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +1060551000168102 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 60, blister pack 234477 1060541000168104 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 60 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 912041000168101 rosuvastatin 40 mg tablet, 60 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1060471000168107 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 30, blister pack 234477 1058641000168109 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 30 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +61255011000036101 Nicotine (Amcal) 21 mg/24 hours patch, 1, sachet 77120 57191011000036105 Nicotine (Amcal) 21 mg/24 hours patch, 1 54231011000036105 Nicotine (Amcal) 21 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63761011000036109 nicotine 21 mg/24 hours patch, 1 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +906271000168104 Amisulpride (AN) 400 mg uncoated tablet, 30, blister pack 234705 906261000168105 Amisulpride (AN) 400 mg uncoated tablet, 30 906251000168108 Amisulpride (AN) 400 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 901641000168102 amisulpride 400 mg tablet, 30 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +666441000168107 Novoseven RT (1 x 8 mg vial, 1 x 8 mL inert diluent syringe), 1 pack 206197 666431000168103 Novoseven RT (1 x 8 mg vial, 1 x 8 mL inert diluent syringe), 1 pack 666411000168108 Novoseven RT (inert substance) diluent, 8 mL syringe 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666421000168101 eptacog alfa (activated) 8 mg injection [1 vial] (&) inert substance diluent [8 mL syringe], 1 pack 644311000168101 inert substance diluent, 8 mL syringe 21220011000036103 inert substance +666441000168107 Novoseven RT (1 x 8 mg vial, 1 x 8 mL inert diluent syringe), 1 pack 206197 666431000168103 Novoseven RT (1 x 8 mg vial, 1 x 8 mL inert diluent syringe), 1 pack 666401000168105 Novoseven RT (eptacog alfa (activated) 8 mg) powder for injection, 8 mg vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666421000168101 eptacog alfa (activated) 8 mg injection [1 vial] (&) inert substance diluent [8 mL syringe], 1 pack 666391000168108 eptacog alfa (activated) 8 mg injection, vial 44889011000036101 eptacog alfa (activated) +734991000168102 Zolpidem (Apo) 10 mg film-coated tablet, 14, blister pack 127174 734981000168100 Zolpidem (Apo) 10 mg film-coated tablet, 14 734971000168103 Zolpidem (Apo) 10 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +18551011000036108 Simvastatin (GenRx) 10 mg film-coated tablet, 30, blister pack 104521 11296011000036108 Simvastatin (GenRx) 10 mg film-coated tablet, 30 4473011000036103 Simvastatin (GenRx) 10 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +18551011000036108 Simvastatin (GenRx) 10 mg film-coated tablet, 30, blister pack 131586 11296011000036108 Simvastatin (GenRx) 10 mg film-coated tablet, 30 4473011000036103 Simvastatin (GenRx) 10 mg film-coated tablet 3015011000036102 Simvastatin (GenRx) 3015011000036102 Simvastatin (GenRx) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +61347011000036102 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 1000, blister pack 81474 57272011000036107 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 1000 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +920764011000036104 Allopurinol (Sandoz) 100 mg uncoated tablet, 200, bottle 65905 920443011000036101 Allopurinol (Sandoz) 100 mg uncoated tablet, 200 920184011000036108 Allopurinol (Sandoz) 100 mg uncoated tablet 920082011000036108 Allopurinol (Sandoz) 920082011000036108 Allopurinol (Sandoz) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +801381000168108 Actonate Once-a-Month 150 mg film-coated tablet, 2, blister pack 163750 801371000168105 Actonate Once-a-Month 150 mg film-coated tablet, 2 801341000168103 Actonate Once-a-Month 150 mg film-coated tablet 801331000168107 Actonate Once-a-Month 801331000168107 Actonate Once-a-Month 78195011000036102 risedronate sodium 150 mg tablet, 2 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +20534011000036108 Enahexal 5 mg uncoated tablet, 30, bottle 79277 13732011000036103 Enahexal 5 mg uncoated tablet, 30 7015011000036107 Enahexal 5 mg uncoated tablet 4073011000036109 Enahexal 4073011000036109 Enahexal 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +31271000036102 Ceftriaxone (AFT) 2 g powder for injection, 1 vial 185101 28821000036109 Ceftriaxone (AFT) 2 g powder for injection, 1 vial 26951000036105 Ceftriaxone (AFT) 2 g powder for injection, 2 g vial 26001000036105 Ceftriaxone (AFT) 26001000036105 Ceftriaxone (AFT) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +39407011000036101 Quinapril (Generic Health) 20 mg film-coated tablet, 30, blister pack 133201 39291011000036106 Quinapril (Generic Health) 20 mg film-coated tablet, 30 39213011000036106 Quinapril (Generic Health) 20 mg film-coated tablet 39184011000036107 Quinapril (Generic Health) 39184011000036107 Quinapril (Generic Health) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +1074981000168100 Atenolol (RBX) 100 mg film-coated tablet, 60, blister pack 197761 1074971000168103 Atenolol (RBX) 100 mg film-coated tablet, 60 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1031981000168100 atenolol 100 mg tablet, 60 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +1064811000168107 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 36, blister pack 199369 1064801000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 36 1064611000168106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 86453011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 36 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +717831000168109 Milrinone (GH) 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules 204795 717821000168106 Milrinone (GH) 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules 717811000168104 Milrinone (GH) 10 mg/10 mL concentrated injection, 10 mL ampoule 717801000168102 Milrinone (GH) 717801000168102 Milrinone (GH) 38544011000036106 milrinone lactate 10 mg/10 mL injection, 10 x 10 mL ampoules 37825011000036104 milrinone lactate 10 mg/10 mL injection, ampoule 37754011000036104 milrinone +824411000168103 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 500, bottle 230262 824401000168101 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 500 824371000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet 824361000168105 Paracetamol Pain Relief (Apohealth) 824361000168105 Paracetamol Pain Relief (Apohealth) 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1081971000168109 Zirizine 10 mg film-coated tablet, 2, blister pack 286354 1081961000168103 Zirizine 10 mg film-coated tablet, 2 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 1081951000168100 cetirizine hydrochloride 10 mg tablet, 2 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +135951000036107 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) uncoated tablet, 30, blister pack 204569 135311000036107 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) uncoated tablet, 30 134371000036102 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) uncoated tablet 16351000168109 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) 16351000168109 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1043391000168101 Pryzex ODT 5 mg orally disintegrating tablet, 40, blister pack 179079 1043381000168104 Pryzex ODT 5 mg orally disintegrating tablet, 40 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043371000168102 olanzapine 5 mg orally disintegrating tablet, 40 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +933246231000036105 Allevyn Gentle (66800248) 10 cm x 10 cm dressing, 10, carton 92774 933242671000036106 Allevyn Gentle (66800248) 10 cm x 10 cm dressing, 10 933241211000036107 Allevyn Gentle (66800248) 10 cm x 10 cm dressing 49401000168103 Allevyn Gentle (66800248) 49401000168103 Allevyn Gentle (66800248) 933242681000036108 dressing foam with silicone heavy exudate 10 cm x 10 cm dressing, 10 50864011000036108 dressing foam with silicone heavy exudate 10 cm x 10 cm dressing 50761011000036107 dressing foam with silicone heavy exudate +816281000168105 Adronat 10 mg uncoated tablet, 30, blister pack 119098 816271000168107 Adronat 10 mg uncoated tablet, 30 816261000168101 Adronat 10 mg uncoated tablet 816251000168103 Adronat 816251000168103 Adronat 46700011000036104 alendronate 10 mg tablet, 30 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +87716011000036105 Galantyl 16 mg modified release capsule, 30, bottle 157935 87452011000036109 Galantyl 16 mg modified release capsule, 30 87316011000036109 Galantyl 16 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 46980011000036109 galantamine 16 mg modified release capsule, 30 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +657851000168103 Teltartan HCT 80/12.5mg multilayer tablet, 28, blister pack 208067 657841000168100 Teltartan HCT 80/12.5mg multilayer tablet, 28 657831000168109 Teltartan HCT 80/12.5mg multilayer tablet 657821000168106 Teltartan HCT 80/12.5mg 657821000168106 Teltartan HCT 80/12.5mg 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +923694011000036107 Grandicrit 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 147836 923299011000036105 Grandicrit 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 922985011000036102 Grandicrit 6000 units/0.6 mL injection solution, 0.6 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924120011000036105 epoetin lambda 6000 units/0.6 mL injection, 6 x 0.6 mL syringes 923950011000036108 epoetin lambda 6000 units/0.6 mL injection, syringe 923930011000036107 epoetin lambda +95341000036106 Lamotrigine (Aspen) 50 mg tablet, 56, blister pack 150752 94161000036106 Lamotrigine (Aspen) 50 mg tablet, 56 93611000036101 Lamotrigine (Aspen) 50 mg tablet 83951000036105 Lamotrigine (Aspen) 83951000036105 Lamotrigine (Aspen) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +920687011000036103 Metformin Hydrochloride (Sandoz) 850 mg film-coated tablet, 60, bottle 148270 920401011000036105 Metformin Hydrochloride (Sandoz) 850 mg film-coated tablet, 60 920163011000036108 Metformin Hydrochloride (Sandoz) 850 mg film-coated tablet 920094011000036100 Metformin Hydrochloride (Sandoz) 920094011000036100 Metformin Hydrochloride (Sandoz) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1060611000168102 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 100, blister pack 234477 1058681000168104 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 100 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910611000168105 rosuvastatin 40 mg tablet, 100 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1075541000168104 Aripiprazole (Auro) 30 mg uncoated tablet, 30, blister pack 198177 1075531000168108 Aripiprazole (Auro) 30 mg uncoated tablet, 30 1075521000168105 Aripiprazole (Auro) 30 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +103931000036109 Irbesartan (Sandoz) 300 mg film-coated tablet, 30, blister pack 167407 101271000036102 Irbesartan (Sandoz) 300 mg film-coated tablet, 30 99391000036102 Irbesartan (Sandoz) 300 mg film-coated tablet 98031000036105 Irbesartan (Sandoz) 98031000036105 Irbesartan (Sandoz) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +926701011000036109 Neocate LCP plus MCT powder for oral liquid, 400 g, can 926055011000036103 Neocate LCP plus MCT powder for oral liquid, 400 g 925615011000036103 Neocate LCP plus MCT powder for oral liquid 925560011000036104 Neocate LCP plus MCT 925560011000036104 Neocate LCP plus MCT 927290011000036108 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides powder for oral liquid, 400 g 926979011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides powder for oral liquid 926972011000036102 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides +925236011000036102 Rispericor 1 mg film-coated tablet, 60, blister pack 159972 924773011000036105 Rispericor 1 mg film-coated tablet, 60 924472011000036109 Rispericor 1 mg film-coated tablet 45561000168103 Rispericor 45561000168103 Rispericor 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +18632011000036109 Gabitril 10 mg film-coated tablet, 100, bottle 120272 11636011000036100 Gabitril 10 mg film-coated tablet, 100 5289011000036103 Gabitril 10 mg film-coated tablet 3197011000036101 Gabitril 3197011000036101 Gabitril 26716011000036100 tiagabine 10 mg tablet, 100 22111011000036102 tiagabine 10 mg tablet 21707011000036103 tiagabine +933211911000036108 Donpesyn 5 mg film-coated tablet, 28, blister pack 142231 933201241000036103 Donpesyn 5 mg film-coated tablet, 28 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1081481000168103 Astrix 100 mg enteric capsule, 140, blister pack 29551 1081471000168101 Astrix 100 mg enteric capsule, 140 54009011000036105 Astrix 100 mg enteric capsule 3721011000036108 Astrix 3721011000036108 Astrix 1081461000168107 aspirin 100 mg enteric capsule, 140 61985011000036109 aspirin 100 mg enteric capsule 21719011000036107 aspirin +672421000168109 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet, 10, blister pack 208006 672411000168102 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet, 10 672401000168100 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet 672391000168102 Indapamide Hemihydrate SR (Chemmart) 672391000168102 Indapamide Hemihydrate SR (Chemmart) 672231000168108 indapamide hemihydrate 1.5 mg modified release tablet, 10 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +734921000168104 Imodium Zapid 2 mg orally disintegrating tablet, 6, blister pack 83176 734911000168106 Imodium Zapid 2 mg orally disintegrating tablet, 6 734901000168108 Imodium Zapid 2 mg orally disintegrating tablet 734891000168109 Imodium Zapid 734891000168109 Imodium Zapid 47751000036108 loperamide hydrochloride 2 mg orally disintegrating tablet, 6 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +854471000168105 Alkeran 5 mg tablet, 25, bottle 11083 854461000168104 Alkeran 5 mg tablet, 25 854441000168103 Alkeran 5 mg tablet 35281000168105 Alkeran 35281000168105 Alkeran 854451000168101 melphalan 5 mg tablet, 25 854431000168107 melphalan 5 mg tablet 21679011000036105 melphalan +95661000036100 Azithromycin (Apo) 500 mg film-coated tablet, 1, blister pack 195910 94561000036100 Azithromycin (Apo) 500 mg film-coated tablet, 1 93381000036101 Azithromycin (Apo) 500 mg film-coated tablet 93201000036100 Azithromycin (Apo) 93201000036100 Azithromycin (Apo) 46128011000036104 azithromycin 500 mg tablet, 1 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +43971011000036100 Saizen (1 x 3 mg vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 42232 41463011000036100 Saizen (1 x 3 mg vial, 1 x 5 mL inert diluent vial), 1 pack 39990011000036103 Saizen (somatropin 3 mg) powder for injection, 3 mg vial 35491000168107 Saizen 35491000168107 Saizen 46311011000036109 somatropin 3 mg injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 45069011000036105 somatropin 3 mg injection, vial 21295011000036100 somatropin +43971011000036100 Saizen (1 x 3 mg vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 42232 41463011000036100 Saizen (1 x 3 mg vial, 1 x 5 mL inert diluent vial), 1 pack 640441000168101 Saizen (inert substance) diluent, 5 mL vial 35491000168107 Saizen 35491000168107 Saizen 46311011000036109 somatropin 3 mg injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +1064891000168103 Paracetamol plus Codeine (Discount Drug Stores) uncoated tablet, 40, blister pack 273798 1064881000168101 Paracetamol plus Codeine (Discount Drug Stores) uncoated tablet, 40 1064851000168108 Paracetamol plus Codeine (Discount Drug Stores) uncoated tablet 1064841000168106 Paracetamol plus Codeine (Discount Drug Stores) 1064841000168106 Paracetamol plus Codeine (Discount Drug Stores) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +32609011000036103 Aldazine 50 mg film-coated tablet, 90, blister pack 93658 32407011000036107 Aldazine 50 mg film-coated tablet, 90 32256011000036101 Aldazine 50 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32805011000036106 thioridazine hydrochloride 50 mg tablet, 90 32707011000036103 thioridazine hydrochloride 50 mg tablet 21637011000036101 thioridazine +977081000168100 Pregabalin (Apotex) 200 mg hard capsule, 14, blister pack 267557 977071000168103 Pregabalin (Apotex) 200 mg hard capsule, 14 977061000168109 Pregabalin (Apotex) 200 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +20879011000036107 Rocaltrol 0.25 microgram soft capsule, 100, blister pack 92969 14041011000036106 Rocaltrol 0.25 microgram soft capsule, 100 7319011000036108 Rocaltrol 0.25 microgram soft capsule 3149011000036104 Rocaltrol 3149011000036104 Rocaltrol 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +674431000168101 Telmisartan (Apo) 80 mg uncoated tablet, 28, blister pack 209334 662561000168108 Telmisartan (Apo) 80 mg uncoated tablet, 28 662551000168106 Telmisartan (Apo) 80 mg uncoated tablet 662541000168109 Telmisartan (Apo) 662541000168109 Telmisartan (Apo) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +69597011000036100 Lemsip Max 1 g powder for oral liquid, 1 sachet 69865 67396011000036106 Lemsip Max 1 g powder for oral liquid, 1 sachet 65646011000036105 Lemsip Max 1 g powder for oral liquid, 1 sachet 1561000168105 Lemsip Max 1561000168105 Lemsip Max 71931011000036102 paracetamol 1 g powder for oral liquid, 1 sachet 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +678681000168108 Cetrelief (Pharmacy Action) 10 mg film-coated tablet, 10, blister pack 190243 678671000168105 Cetrelief (Pharmacy Action) 10 mg film-coated tablet, 10 678661000168104 Cetrelief (Pharmacy Action) 10 mg film-coated tablet 678651000168101 Cetrelief (Pharmacy Action) 678651000168101 Cetrelief (Pharmacy Action) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +55531000036101 Anastrozole (AU) 1 mg film-coated tablet, 60, blister pack 155174 52171000036102 Anastrozole (AU) 1 mg film-coated tablet, 60 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52201000036101 anastrozole 1 mg tablet, 60 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +819751000168101 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 100, blister pack 184823 819741000168103 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 100 819691000168100 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 806781000168100 perindopril arginine 5 mg tablet, 100 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +842451000168105 Aspecillin VK 250 mg film-coated tablet, 25, bottle 200136 842441000168108 Aspecillin VK 250 mg film-coated tablet, 25 842431000168104 Aspecillin VK 250 mg film-coated tablet 842161000168100 Aspecillin VK 842161000168100 Aspecillin VK 27495011000036102 phenoxymethylpenicillin 250 mg tablet, 25 22838011000036107 phenoxymethylpenicillin 250 mg tablet 21370011000036105 phenoxymethylpenicillin +721441000168104 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL, bottle 83363 721431000168108 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL 721401000168101 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution 52851000168106 Panadol Children's Drops 1 Month to 2 Years 52851000168106 Panadol Children's Drops 1 Month to 2 Years 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +1015651000168107 Aripiprazole (ZP) 20 mg uncoated tablet, 30, blister pack 217208 1015641000168105 Aripiprazole (ZP) 20 mg uncoated tablet, 30 1015631000168101 Aripiprazole (ZP) 20 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +700027381000036109 Canesten Clotrimazole 1% cream, 10 g, tube 201000168106 Canesten Clotrimazole 1% cream, 10 g 53975011000036108 Canesten Clotrimazole 1% cream 4270011000036105 Canesten Clotrimazole 4270011000036105 Canesten Clotrimazole 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1054541000168101 Oxycodone (Sandoz) 40 mg modified release tablet, 20, blister pack 153611 785681000168100 Oxycodone (Sandoz) 40 mg modified release tablet, 20 676341000168106 Oxycodone (Sandoz) 40 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +20831011000036106 Dilzem CD 180 mg modified release capsule, 30, bottle 91870 13994011000036108 Dilzem CD 180 mg modified release capsule, 30 7274011000036107 Dilzem CD 180 mg modified release capsule 30711000168102 Dilzem CD 30711000168102 Dilzem CD 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +807971000168103 Perindopril Arginine (Apo) 5 mg film-coated tablet, 30, bottle 184806 807961000168109 Perindopril Arginine (Apo) 5 mg film-coated tablet, 30 807931000168101 Perindopril Arginine (Apo) 5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +975031000168107 Bimatoprost (Apo) 0.03% eye drops solution, 3 mL, bottle 204398 975021000168109 Bimatoprost (Apo) 0.03% eye drops solution, 3 mL 975011000168102 Bimatoprost (Apo) 0.03% eye drops solution 975001000168100 Bimatoprost (Apo) 975001000168100 Bimatoprost (Apo) 27937011000036103 bimatoprost 0.03% eye drops, 3 mL 23261011000036108 bimatoprost 0.03% eye drops 21297011000036105 bimatoprost +1107831000168101 Midalim 15 mg/3 mL injection solution, 5 x 3 mL ampoules 207238 1107821000168104 Midalim 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1107811000168106 Midalim 15 mg/3 mL injection solution, 3 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +61395011000036102 Strong Pain Relief (Pharmacy Health) uncoated tablet, 24, blister pack 82020 57320011000036101 Strong Pain Relief (Pharmacy Health) uncoated tablet, 24 54272011000036101 Strong Pain Relief (Pharmacy Health) uncoated tablet 52395011000036100 Strong Pain Relief (Pharmacy Health) 52395011000036100 Strong Pain Relief (Pharmacy Health) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +59897011000036103 Dizole One 150 mg hard capsule, 1, blister pack 162766 55859011000036105 Dizole One 150 mg hard capsule, 1 53682011000036105 Dizole One 150 mg hard capsule 52931000168109 Dizole One 52931000168109 Dizole One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +59897011000036103 Dizole One 150 mg hard capsule, 1, blister pack 116926 55859011000036105 Dizole One 150 mg hard capsule, 1 53682011000036105 Dizole One 150 mg hard capsule 52931000168109 Dizole One 52931000168109 Dizole One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +38401000036104 Escital 10 mg film-coated tablet, 100, bottle 165849 34731000036109 Escital 10 mg film-coated tablet, 100 32411000036104 Escital 10 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +708581000168109 Aciclovir (Sandoz) 800 mg uncoated tablet, 120, blister pack 99421 708571000168106 Aciclovir (Sandoz) 800 mg uncoated tablet, 120 708541000168104 Aciclovir (Sandoz) 800 mg uncoated tablet 708531000168108 Aciclovir (Sandoz) 708531000168108 Aciclovir (Sandoz) 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +60273011000036106 Fexo (Chemists' Own) 120 mg film-coated tablet, 10, blister pack 134786 56232011000036105 Fexo (Chemists' Own) 120 mg film-coated tablet, 10 53848011000036106 Fexo (Chemists' Own) 120 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +19683011000036108 Aricept 10 mg film-coated tablet, 28, bottle 60177 12942011000036100 Aricept 10 mg film-coated tablet, 28 6232011000036100 Aricept 10 mg film-coated tablet 2960011000036105 Aricept 2960011000036105 Aricept 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +69687011000036106 Strepsils Extra 2.4 mg lozenge, 8, blister pack 82802 67486011000036101 Strepsils Extra 2.4 mg lozenge, 8 65679011000036100 Strepsils Extra 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72005011000036104 hexylresorcinol 2.4 mg lozenge, 8 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +841361000168105 Atorvastatin (Amneal) 20 mg film-coated tablet, 10, blister pack 178524 841351000168108 Atorvastatin (Amneal) 20 mg film-coated tablet, 10 841341000168106 Atorvastatin (Amneal) 20 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +853971000168104 Quetiapine (Alkem) 200 mg film-coated tablet, 20, blister pack 204817 853961000168105 Quetiapine (Alkem) 200 mg film-coated tablet, 20 853951000168108 Quetiapine (Alkem) 200 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +176571000036104 Acitretin (Actavis) 25 mg hard capsule, 100, blister pack 171572 174781000036101 Acitretin (Actavis) 25 mg hard capsule, 100 173061000036107 Acitretin (Actavis) 25 mg hard capsule 172731000036105 Acitretin (Actavis) 172731000036105 Acitretin (Actavis) 27278011000036103 acitretin 25 mg capsule, 100 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +853991000168103 Quetiapine (Alkem) 200 mg film-coated tablet, 60, blister pack 204817 853981000168101 Quetiapine (Alkem) 200 mg film-coated tablet, 60 853951000168108 Quetiapine (Alkem) 200 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +69517011000036104 Intralipid 30% (99.9 g/333 mL) intravenous infusion injection, 10 x 333 mL bottles 53539 67317011000036105 Intralipid 30% (99.9 g/333 mL) intravenous infusion injection, 10 x 333 mL bottles 65607011000036100 Intralipid 30% (99.9 g/333 mL) intravenous infusion injection, 333 mL bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71863011000036104 soya oil 30% (99.9 g/333 mL) injection, 10 x 333 mL bottles 70221011000036107 soya oil 30% (99.9 g/333 mL) injection, bottle 69767011000036104 soya oil +61310011000036107 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 30 g, tube 80846 57246011000036107 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 30 g 54253011000036105 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 63781011000036107 bifonazole 1% cream, 30 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +73321011000036100 Gemcitabine (DBL) 2 g powder for injection, 1 vial 147589 73119011000036100 Gemcitabine (DBL) 2 g powder for injection, 1 vial 72963011000036105 Gemcitabine (DBL) 2 g powder for injection, 2 g vial 72908011000036104 Gemcitabine (DBL) 72908011000036104 Gemcitabine (DBL) 73514011000036108 gemcitabine 2 g injection, 1 vial 73378011000036105 gemcitabine 2 g injection, vial 21644011000036108 gemcitabine +1008181000168101 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, 14 actuations, dry powder inhaler 73726 1008171000168104 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, 14 actuations 1008151000168108 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, actuation 1007991000168101 Asmanex Twisthaler 1007991000168101 Asmanex Twisthaler 1008161000168105 mometasone furoate 400 microgram/actuation powder for inhalation, 14 actuations 1008141000168106 mometasone furoate 400 microgram/actuation powder for inhalation, actuation 21409011000036100 mometasone +678361000168106 Clopidogrel (GH) 75 mg film-coated tablet, 112, bottle 164869 678351000168109 Clopidogrel (GH) 75 mg film-coated tablet, 112 3221000036106 Clopidogrel (GH) 75 mg film-coated tablet 1011000036106 Clopidogrel (GH) 1011000036106 Clopidogrel (GH) 87799011000036100 clopidogrel 75 mg tablet, 112 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +60839011000036104 Aspro Clear 300 mg effervescent tablet, 12, strip pack 58566 56795011000036100 Aspro Clear 300 mg effervescent tablet, 12 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 63573011000036102 aspirin 300 mg effervescent tablet, 12 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +1009551000168106 Latanoprost (Apotex) 0.005% eye drops solution, 2.5 mL, bottle 164490 1009541000168109 Latanoprost (Apotex) 0.005% eye drops solution, 2.5 mL 1009531000168100 Latanoprost (Apotex) 0.005% eye drops solution 1009521000168103 Latanoprost (Apotex) 1009521000168103 Latanoprost (Apotex) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +837151000168100 Fintast 5 mg film-coated tablet, 30, blister pack 210614 837141000168102 Fintast 5 mg film-coated tablet, 30 837111000168101 Fintast 5 mg film-coated tablet 807461000168100 Fintast 807461000168100 Fintast 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +1061751000168100 Atorvastatin (GX) 80 mg film-coated tablet, 10, blister pack 217178 1061741000168102 Atorvastatin (GX) 80 mg film-coated tablet, 10 1061691000168104 Atorvastatin (GX) 80 mg film-coated tablet 1061681000168102 Atorvastatin (GX) 1061681000168102 Atorvastatin (GX) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +43748011000036103 Zindaclin 1% gel, 15 g, tube 101427 41123011000036107 Zindaclin 1% gel, 15 g 39903011000036108 Zindaclin 1% gel 39593011000036104 Zindaclin 39593011000036104 Zindaclin 46105011000036101 clindamycin 1% gel, 15 g 44987011000036103 clindamycin 1% gel 21255011000036108 clindamycin +17917011000036106 Carboplatin (Ebewe) 150 mg/15 mL injection, 15 mL vial 104402 11288011000036106 Carboplatin (Ebewe) 150 mg/15 mL injection, 15 mL vial 5031011000036102 Carboplatin (Ebewe) 150 mg/15 mL injection, 15 mL vial 3914011000036108 Carboplatin (Ebewe) 3914011000036108 Carboplatin (Ebewe) 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +55601000036107 Synastrozole 1 mg film-coated tablet, 20, blister pack 155175 52351000036109 Synastrozole 1 mg film-coated tablet, 20 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52041000036108 anastrozole 1 mg tablet, 20 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +928848011000036102 Acid and Heartburn Relief Extra Strength (Chemmart) 300 mg film-coated tablet, 14, strip pack 133707 928210011000036102 Acid and Heartburn Relief Extra Strength (Chemmart) 300 mg film-coated tablet, 14 927869011000036108 Acid and Heartburn Relief Extra Strength (Chemmart) 300 mg film-coated tablet 63371000168108 Acid and Heartburn Relief Extra Strength (Chemmart) 63371000168108 Acid and Heartburn Relief Extra Strength (Chemmart) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +44039011000036106 Sporanox 100 mg hard capsule, 6, bottle 47862 41528011000036107 Sporanox 100 mg hard capsule, 6 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 46363011000036109 itraconazole 100 mg capsule, 6 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +1008501000168103 Risedronate (Apotex) 35 mg film-coated tablet, 1, blister pack 160636 1008491000168105 Risedronate (Apotex) 35 mg film-coated tablet, 1 1008481000168107 Risedronate (Apotex) 35 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +926699011000036103 Primovist 1.36 g/7.5 mL injection solution, 5 x 7.5 mL syringes 104380 926065011000036109 Primovist 1.36 g/7.5 mL injection solution, 5 x 7.5 mL syringes 925597011000036100 Primovist 1.36 g/7.5 mL injection solution, 7.5 mL syringe 920914011000036108 Primovist 920914011000036108 Primovist 927296011000036106 gadoxetate disodium 1.36 g/7.5 mL injection, 5 x 7.5 mL syringes 926981011000036100 gadoxetate disodium 1.36 g/7.5 mL injection, syringe 922038011000036107 gadoxetic acid +17953011000036107 Perindopril Erbumine (GenRx) 4 mg uncoated tablet, 30, blister pack 121618 11673011000036108 Perindopril Erbumine (GenRx) 4 mg uncoated tablet, 30 4462011000036103 Perindopril Erbumine (GenRx) 4 mg uncoated tablet 4349011000036107 Perindopril Erbumine (GenRx) 4349011000036107 Perindopril Erbumine (GenRx) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +707461000168102 Azran 25 mg film-coated tablet, 100, blister pack 117792 707451000168104 Azran 25 mg film-coated tablet, 100 707441000168101 Azran 25 mg film-coated tablet 707431000168105 Azran 707431000168105 Azran 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +118781000036101 Handygauze Cohesive (8631) 2.5 cm x 2 m bandage, 2, carton 118371000036104 Handygauze Cohesive (8631) 2.5 cm x 2 m bandage, 2 118141000036109 Handygauze Cohesive (8631) 2.5 cm x 2 m bandage 21821000168106 Handygauze Cohesive (8631) 21821000168106 Handygauze Cohesive (8631) 118381000036102 bandage retention cohesive light 2.5 cm x 2 m bandage, 2 118151000036107 bandage retention cohesive light 2.5 cm x 2 m bandage 50748011000036107 bandage retention cohesive light +19366011000036107 Doxycycline (DBL) 50 mg modified release capsule, 25, blister pack 51691 12653011000036106 Doxycycline (DBL) 50 mg modified release capsule, 25 4565011000036104 Doxycycline (DBL) 50 mg modified release capsule 3565011000036101 Doxycycline (DBL) 3565011000036101 Doxycycline (DBL) 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +715731000168107 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g, tube 77754 715721000168109 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g 715711000168102 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream 63391000168109 Clotrimazole 3 Day Treatment (Pharmacist Formula) 63391000168109 Clotrimazole 3 Day Treatment (Pharmacist Formula) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +20651011000036100 Bicor 2.5 mg film-coated tablet, 28, blister pack 81604 13831011000036106 Bicor 2.5 mg film-coated tablet, 28 7118011000036105 Bicor 2.5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +140571000036101 Montelukast (Auro) 4 mg chewable tablet, 28, blister pack 193217 139161000036109 Montelukast (Auro) 4 mg chewable tablet, 28 137801000036106 Montelukast (Auro) 4 mg chewable tablet 137341000036100 Montelukast (Auro) 137341000036100 Montelukast (Auro) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +862651000168103 Amitriptyline (GPPL) 25 mg tablet, 10, blister pack 232136 862641000168100 Amitriptyline (GPPL) 25 mg tablet, 10 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1054221000168109 Codeine Linctus (Gold Cross) 5 mg/mL oral liquid, 100 mL, bottle 27219 1054211000168102 Codeine Linctus (Gold Cross) 5 mg/mL oral liquid, 100 mL 1054201000168100 Codeine Linctus (Gold Cross) 5 mg/mL oral liquid 1054191000168103 Codeine Linctus (Gold Cross) 1054191000168103 Codeine Linctus (Gold Cross) 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +20462011000036104 Carbamazepine (Sandoz) 200 mg uncoated tablet, 200, blister pack 78211 13664011000036105 Carbamazepine (Sandoz) 200 mg uncoated tablet, 200 6947011000036100 Carbamazepine (Sandoz) 200 mg uncoated tablet 3827011000036102 Carbamazepine (Sandoz) 3827011000036102 Carbamazepine (Sandoz) 27870011000036105 carbamazepine 200 mg tablet, 200 23198011000036103 carbamazepine 200 mg tablet 21319011000036108 carbamazepine +963471000168109 Aripiprazole (Apo) 30 mg uncoated tablet, 100, bottle 152929 963461000168103 Aripiprazole (Apo) 30 mg uncoated tablet, 100 870131000168108 Aripiprazole (Apo) 30 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 787651000168101 aripiprazole 30 mg tablet, 100 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +140611000036106 Meloxicam (Sandoz) 7.5 mg hard capsule, 30, blister pack 199661 139411000036104 Meloxicam (Sandoz) 7.5 mg hard capsule, 30 137661000036106 Meloxicam (Sandoz) 7.5 mg hard capsule 32204011000036102 Meloxicam (Sandoz) 32204011000036102 Meloxicam (Sandoz) 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +917391000168109 Amikacin (AJS) 500 mg/2 mL injection solution, 10 x 2 mL ampoules 262736 917381000168106 Amikacin (AJS) 500 mg/2 mL injection solution, 10 x 2 mL ampoules 917331000168105 Amikacin (AJS) 500 mg/2 mL injection solution, 2 mL ampoule 917311000168100 Amikacin (AJS) 917311000168100 Amikacin (AJS) 917371000168108 amikacin 500 mg/2 mL injection, 10 x 2 mL ampoules 917321000168107 amikacin 500 mg/2 mL injection, ampoule 37805011000036108 amikacin +730101000168100 Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations, pump packs 75658 730091000168105 Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations 40275011000036100 Rhinocort Aqueous 64 microgram/actuation nasal spray, actuation 31911000168108 Rhinocort Aqueous 31911000168108 Rhinocort Aqueous 730081000168107 budesonide 64 microgram/actuation nasal spray, 2 x 120 actuations 23109011000036108 budesonide 64 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +841081000168104 Bansep 40 mg film-coated tablet, 6, blister pack 173483 841071000168102 Bansep 40 mg film-coated tablet, 6 841051000168106 Bansep 40 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 841061000168108 atorvastatin 40 mg tablet, 6 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +850041000168101 Vzole 200 mg film-coated tablet, 2, bottle 238241 849601000168100 Vzole 200 mg film-coated tablet, 2 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46805011000036106 voriconazole 200 mg tablet, 2 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +928891000168105 Zovirax 400 mg uncoated tablet, 100, blister pack 11015 928881000168107 Zovirax 400 mg uncoated tablet, 100 928851000168100 Zovirax 400 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +695581000168109 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials 47384 695571000168106 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials 695551000168102 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 30 mL vial 20471000168101 Ultravist-370 20471000168101 Ultravist-370 695561000168100 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 30 mL vials 695541000168104 iopromide 769 mg (iodine 370 mg)/mL injection, 30 mL vial 77425011000036101 iopromide +1050291000168101 Bupredermal 25 microgram/hour patch, 4, sachet 234745 1050281000168104 Bupredermal 25 microgram/hour patch, 4 1050251000168106 Bupredermal 25 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1048811000168109 buprenorphine 25 microgram/hour patch, 4 775911000168105 buprenorphine 25 microgram/hour patch 21232011000036101 buprenorphine +44690011000036102 Carboplatin (Hospira) 600 mg/60 mL injection solution, 60 mL vial 92875 42139011000036108 Carboplatin (Hospira) 600 mg/60 mL injection solution, 60 mL vial 40361011000036103 Carboplatin (Hospira) 600 mg/60 mL injection solution, 60 mL vial 39680011000036103 Carboplatin (Hospira) 39680011000036103 Carboplatin (Hospira) 46900011000036108 carboplatin 600 mg/60 mL injection, 60 mL vial 45339011000036103 carboplatin 600 mg/60 mL injection, vial 21451011000036105 carboplatin +61601011000036107 Cold and Flu Day and Night (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24, blister pack 95858 57523011000036106 Cold and Flu Day and Night (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24 54340011000036109 Cold and Flu Day and Night (Night) (Terry White Chemists) uncoated tablet 36981000168108 Cold and Flu Day and Night (Terry White Chemists) 37221000168100 Cold and Flu Day and Night (Night) (Terry White Chemists) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +61601011000036107 Cold and Flu Day and Night (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24, blister pack 95858 57523011000036106 Cold and Flu Day and Night (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24 54339011000036104 Cold and Flu Day and Night (Day) (Terry White Chemists) uncoated tablet 36981000168108 Cold and Flu Day and Night (Terry White Chemists) 37101000168100 Cold and Flu Day and Night (Day) (Terry White Chemists) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +1007061000168107 Mirtanza 15 mg film-coated tablet, 30, blister pack 127669 1007051000168105 Mirtanza 15 mg film-coated tablet, 30 1007041000168108 Mirtanza 15 mg film-coated tablet 1007031000168104 Mirtanza 1007031000168104 Mirtanza 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +84321011000036103 Sulprix 200 mg tablet, 60, blister pack 156048 84014011000036109 Sulprix 200 mg tablet, 60 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +681511000168104 Esomeprazole (Actavis) 40 mg enteric tablet, 15, blister pack 210844 681501000168102 Esomeprazole (Actavis) 40 mg enteric tablet, 15 681401000168103 Esomeprazole (Actavis) 40 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 681491000168109 esomeprazole 40 mg enteric tablet, 15 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +30951000036105 Olanzapine (Pharmacor) 7.5 mg film-coated tablet, 28, blister pack 177125 28891000036107 Olanzapine (Pharmacor) 7.5 mg film-coated tablet, 28 26881000036106 Olanzapine (Pharmacor) 7.5 mg film-coated tablet 26111000036108 Olanzapine (Pharmacor) 26111000036108 Olanzapine (Pharmacor) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +737321000168107 Calcitriol (Apo) 0.25 microgram soft capsule, 100, blister pack 240872 737311000168100 Calcitriol (Apo) 0.25 microgram soft capsule, 100 737301000168103 Calcitriol (Apo) 0.25 microgram soft capsule 737291000168104 Calcitriol (Apo) 737291000168104 Calcitriol (Apo) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +18483011000036108 Gabapentin (DBL) 300 mg hard capsule, 100, blister pack 120987 11659011000036108 Gabapentin (DBL) 300 mg hard capsule, 100 4673011000036100 Gabapentin (DBL) 300 mg hard capsule 2909011000036100 Gabapentin (DBL) 2909011000036100 Gabapentin (DBL) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +928992011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet, 480, blister pack 158913 928353011000036107 Valaciclovir (Chemmart) 500 mg film-coated tablet, 480 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929220011000036107 valaciclovir 500 mg tablet, 480 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +55441000036107 Anastrozole (AU) 1 mg film-coated tablet, 100, blister pack 155174 51981000036105 Anastrozole (AU) 1 mg film-coated tablet, 100 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 51991000036107 anastrozole 1 mg tablet, 100 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +808291000168107 Pramipexole XR (GP) 375 microgram modified release tablet, 30, blister pack 225591 808281000168109 Pramipexole XR (GP) 375 microgram modified release tablet, 30 808251000168102 Pramipexole XR (GP) 375 microgram modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 87813011000036101 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet, 30 87758011000036104 pramipexole dihydrochloride monohydrate 375 microgram modified release tablet 37716011000036100 pramipexole +871311000168106 Indapamide SR (AN) 1.5 mg modified release tablet, 10, blister pack 208008 871301000168108 Indapamide SR (AN) 1.5 mg modified release tablet, 10 871291000168107 Indapamide SR (AN) 1.5 mg modified release tablet 871091000168100 Indapamide SR (AN) 871091000168100 Indapamide SR (AN) 672231000168108 indapamide hemihydrate 1.5 mg modified release tablet, 10 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +35678011000036100 Gabapentin (Pharmacor) 600 mg film-coated tablet, 500, bottle 131503 35584011000036105 Gabapentin (Pharmacor) 600 mg film-coated tablet, 500 35488011000036107 Gabapentin (Pharmacor) 600 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 35776011000036105 gabapentin 600 mg tablet, 500 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +38331000036103 Escitalopram (LAPL) 10 mg film-coated tablet, 200, bottle 165843 34661000036109 Escitalopram (LAPL) 10 mg film-coated tablet, 200 33061000036102 Escitalopram (LAPL) 10 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +18270011000036105 Pravastatin (DP) 10 mg uncoated tablet, 30, blister pack 118730 11595011000036106 Pravastatin (DP) 10 mg uncoated tablet, 30 5140011000036100 Pravastatin (DP) 10 mg uncoated tablet 3957011000036105 Pravastatin (DP) 3957011000036105 Pravastatin (DP) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +703161000168100 Salicylic Acid APF (extemporaneous) 10% paint, 25 mL, poison bottle 703151000168102 Salicylic Acid APF (extemporaneous) 10% paint, 25 mL 703141000168104 Salicylic Acid APF (extemporaneous) 10% paint 63591000168101 Salicylic Acid APF (extemporaneous) 63591000168101 Salicylic Acid APF (extemporaneous) 52321011000036105 salicylic acid 10% paint, 25 mL 52253011000036100 salicylic acid 10% paint 52232011000036106 salicylic acid +59871011000036104 Period Pain (Chemists' Own) 275 mg film-coated tablet, 24, blister pack 115773 55833011000036108 Period Pain (Chemists' Own) 275 mg film-coated tablet, 24 53662011000036108 Period Pain (Chemists' Own) 275 mg film-coated tablet 53350011000036109 Period Pain (Chemists' Own) 53350011000036109 Period Pain (Chemists' Own) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +1061831000168104 Ramipril (Auro) 10 mg capsule, 28, blister pack 203707 1061821000168102 Ramipril (Auro) 10 mg capsule, 28 1061131000168105 Ramipril (Auro) 10 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 46764011000036105 ramipril 10 mg capsule, 28 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +1058691000168101 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 100, bottle 234464 1058681000168104 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 100 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910611000168105 rosuvastatin 40 mg tablet, 100 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +18234011000036102 Sebitar solution, 250 mL, bottle 10633 11331011000036101 Sebitar solution, 250 mL 5732011000036106 Sebitar solution 4279011000036104 Sebitar 4279011000036104 Sebitar 26610011000036109 coal tar solution 1% + tar 1% + salicylic acid 2% + undecylenamide dea 1% solution, 250 mL 22018011000036102 coal tar solution 1% + tar 1% + salicylic acid 2% + undecylenamide dea 1% solution 21456011000036100 coal tar solution + tar + salicylic acid + undecylenamide dea +940911000168107 Frusemide (Sanofi) 20 mg tablet, 50, bottle 144445 940901000168109 Frusemide (Sanofi) 20 mg tablet, 50 940891000168105 Frusemide (Sanofi) 20 mg tablet 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 26834011000036101 furosemide (frusemide) 20 mg tablet, 50 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +811301000168102 Afinitor 2 mg dispersible tablet, 120, blister pack 200203 811291000168103 Afinitor 2 mg dispersible tablet, 120 811151000168101 Afinitor 2 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811281000168101 everolimus 2 mg dispersible tablet, 120 811141000168103 everolimus 2 mg dispersible tablet 21615011000036103 everolimus +37340011000036108 Sulphadiazine (Orion) 500 mg tablet, 500, jar 10813 36638011000036101 Sulphadiazine (Orion) 500 mg tablet, 500 36059011000036104 Sulphadiazine (Orion) 500 mg tablet 35982011000036106 Sulphadiazine (Orion) 35982011000036106 Sulphadiazine (Orion) 38556011000036101 sulfadiazine 500 mg tablet, 500 37835011000036102 sulfadiazine 500 mg tablet 37795011000036108 sulfadiazine +929131000168106 Somac 40 mg enteric tablet, 14, blister pack 69792 41848011000036108 Somac 40 mg enteric tablet, 14 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46654011000036106 pantoprazole 40 mg enteric tablet, 14 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +816691000168105 Atomoxetine (Amneal) 60 mg hard capsule, 28, blister pack 238339 816681000168107 Atomoxetine (Amneal) 60 mg hard capsule, 28 816611000168101 Atomoxetine (Amneal) 60 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +978361000168105 Rexulti 2 mg film-coated tablet, 10, blister pack 273223 978351000168108 Rexulti 2 mg film-coated tablet, 10 978331000168102 Rexulti 2 mg film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978341000168106 brexpiprazole 2 mg tablet, 10 978321000168100 brexpiprazole 2 mg tablet 978131000168104 brexpiprazole +43558011000036102 Somidem 10 mg film-coated tablet, 14, blister pack 119196 41215011000036104 Somidem 10 mg film-coated tablet, 14 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +60427011000036102 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 2 sachets 146071 56386011000036105 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 2 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63332011000036108 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 2 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +1015811000168107 Aripiprazole (Medis) 15 mg uncoated tablet, 250, bottle 217240 1015801000168109 Aripiprazole (Medis) 15 mg uncoated tablet, 250 1015771000168107 Aripiprazole (Medis) 15 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 1015601000168108 aripiprazole 15 mg tablet, 250 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +986911000168101 Diprivan 500 mg/50 mL injection emulsion, 50 mL vial 75565 986901000168104 Diprivan 500 mg/50 mL injection emulsion, 50 mL vial 986891000168103 Diprivan 500 mg/50 mL injection emulsion, 50 mL vial 39630011000036106 Diprivan 39630011000036106 Diprivan 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +1009391000168109 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet, 30, blister pack 287704 1009381000168106 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet, 30 1009331000168105 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet 1009321000168107 Anti-Inflammatory Pain Relief (Apohealth) 1009321000168107 Anti-Inflammatory Pain Relief (Apohealth) 63879011000036103 diclofenac sodium 25 mg enteric tablet, 30 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +1113271000168106 Quetiapine (CH) 100 mg film-coated tablet, 100, bottle 172835 1113261000168100 Quetiapine (CH) 100 mg film-coated tablet, 100 1105271000168107 Quetiapine (CH) 100 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 1075481000168105 quetiapine 100 mg tablet, 100 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +957991000168100 Clarithro 500 mg film-coated tablet, 42, bottle 117204 957951000168105 Clarithro 500 mg film-coated tablet, 42 957941000168108 Clarithro 500 mg film-coated tablet 4200011000036100 Clarithro 4200011000036100 Clarithro 51516011000036106 clarithromycin 500 mg tablet, 42 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +933212231000036102 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 7, blister pack 142236 933200961000036104 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 7 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200971000036107 donepezil hydrochloride 10 mg tablet, 7 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +848761000168104 Rivastigmelon-10 9.5 mg/24 hours patch, 30, sachet 233735 848751000168101 Rivastigmelon-10 9.5 mg/24 hours patch, 30 848721000168109 Rivastigmelon-10 9.5 mg/24 hours patch 848711000168102 Rivastigmelon-10 848711000168102 Rivastigmelon-10 38683011000036108 rivastigmine 9.5 mg/24 hours patch, 30 37923011000036109 rivastigmine 9.5 mg/24 hours patch 21413011000036101 rivastigmine +908761000168104 Celecoxib (BW) 100 mg hard capsule, 20, blister pack 196182 908751000168101 Celecoxib (BW) 100 mg hard capsule, 20 908721000168109 Celecoxib (BW) 100 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +61163011000036108 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 100 mL, bottle 74682 57106011000036102 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 100 mL 54199011000036104 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +929038011000036100 Sertraline (DRLA) 50 mg film-coated tablet, 30, blister pack 160766 928399011000036103 Sertraline (DRLA) 50 mg film-coated tablet, 30 927966011000036109 Sertraline (DRLA) 50 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +60178011000036104 Painstop for Children Day-Time Pain Reliever oral liquid solution, 100 mL, bottle 131721 56137011000036109 Painstop for Children Day-Time Pain Reliever oral liquid solution, 100 mL 53804011000036108 Painstop for Children Day-Time Pain Reliever oral liquid solution, 5 mL 53721000168103 Painstop for Children Day-Time Pain Reliever 53721000168103 Painstop for Children Day-Time Pain Reliever 63241011000036105 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL oral liquid, 100 mL 61900011000036101 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL oral liquid 21286011000036106 paracetamol + codeine +1092941000168109 Zinplava 1 g/40 mL concentrated injection, 40 mL vial 281878 1092931000168100 Zinplava 1 g/40 mL concentrated injection, 40 mL vial 1092911000168105 Zinplava 1 g/40 mL concentrated injection, 40 mL vial 1092881000168105 Zinplava 1092881000168105 Zinplava 1092921000168103 bezlotoxumab 1 g/40 mL injection, 40 mL vial 1092901000168107 bezlotoxumab 1 g/40 mL injection, vial 1092891000168108 bezlotoxumab +19657011000036105 Fareston 60 mg uncoated tablet, 30, blister pack 59743 12921011000036108 Fareston 60 mg uncoated tablet, 30 6211011000036102 Fareston 60 mg uncoated tablet 3874011000036107 Fareston 3874011000036107 Fareston 27440011000036103 toremifene 60 mg tablet, 30 22787011000036103 toremifene 60 mg tablet 21918011000036108 toremifene +1012521000168107 Metformin (Apo) 500 mg film-coated tablet, 100, bottle 157224 929529011000036109 Metformin (Apo) 500 mg film-coated tablet, 100 929413011000036109 Metformin (Apo) 500 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +60368011000036100 Iodine Standard Colourless (David Craig) 2.86% solution, 200 mL, bottle 14215 56327011000036101 Iodine Standard Colourless (David Craig) 2.86% solution, 200 mL 53875011000036104 Iodine Standard Colourless (David Craig) 2.86% solution 36091000168107 Iodine Standard Colourless (David Craig) 36091000168107 Iodine Standard Colourless (David Craig) 63309011000036108 iodine 2.86% solution, 200 mL 61914011000036108 iodine 2.86% solution 61782011000036105 iodine +69072011000036105 Mylanta 2go Antacid Dual Action chewable tablet, 6, blister pack 14378 66874011000036105 Mylanta 2go Antacid Dual Action chewable tablet, 6 65467011000036104 Mylanta 2go Antacid Dual Action chewable tablet 64987011000036109 Mylanta 2go Antacid Dual Action 64987011000036109 Mylanta 2go Antacid Dual Action 71479011000036103 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet, 6 70025011000036103 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet 69870011000036107 alginic acid + magaldrate + bicarbonate +19863011000036104 Gemhexal 600 mg film-coated tablet, 60, blister pack 64873 13110011000036100 Gemhexal 600 mg film-coated tablet, 60 6393011000036105 Gemhexal 600 mg film-coated tablet 3866011000036109 Gemhexal 3866011000036109 Gemhexal 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +176481000036103 Sildenafil (Apo) 50 mg film-coated tablet, 4, blister pack 164813 174691000036107 Sildenafil (Apo) 50 mg film-coated tablet, 4 173331000036104 Sildenafil (Apo) 50 mg film-coated tablet 172761000036104 Sildenafil (Apo) 172761000036104 Sildenafil (Apo) 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +44373011000036106 Flixotide Nebules 500 microgram/2 mL inhalation solution, 10 x 2 mL ampoules 69004 41836011000036105 Flixotide Nebules 500 microgram/2 mL inhalation solution, 10 x 2 mL ampoules 40223011000036100 Flixotide Nebules 500 microgram/2 mL inhalation solution, 2 mL ampoule 26881000168104 Flixotide Nebules 26881000168104 Flixotide Nebules 46642011000036104 fluticasone propionate 500 microgram/2 mL inhalation solution, 10 x 2 mL ampoules 45253011000036109 fluticasone propionate 500 microgram/2 mL inhalation solution, ampoule 861061000168102 fluticasone propionate +170721000036107 Panadol Back and Neck Pain Relief 500 mg film-coated tablet, 24, blister pack 141412 169771000036109 Panadol Back and Neck Pain Relief 500 mg film-coated tablet, 24 65331011000036105 Panadol Back and Neck Pain Relief 500 mg film-coated tablet 5221000168100 Panadol Back and Neck Pain Relief 5221000168100 Panadol Back and Neck Pain Relief 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1090711000168106 Dupixent 300 mg/2 mL injection solution, 3 x 2 mL syringes 282981 1090701000168108 Dupixent 300 mg/2 mL injection solution, 3 x 2 mL syringes 1090651000168103 Dupixent 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090591000168109 dupilumab 300 mg/2 mL injection, 3 x 2 mL syringes 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +811211000168107 Afinitor 2 mg dispersible tablet, 50, blister pack 200203 811201000168109 Afinitor 2 mg dispersible tablet, 50 811151000168101 Afinitor 2 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811191000168106 everolimus 2 mg dispersible tablet, 50 811141000168103 everolimus 2 mg dispersible tablet 21615011000036103 everolimus +1012681000168105 Amoxycillin (GN) 250 mg hard capsule, 20, blister pack 95456 1012671000168107 Amoxycillin (GN) 250 mg hard capsule, 20 1012661000168101 Amoxycillin (GN) 250 mg hard capsule 1010361000168107 Amoxycillin (GN) 1010361000168107 Amoxycillin (GN) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +946291000168106 Frusemide (Winthrop) 40 mg tablet, 30, bottle 144478 946281000168108 Frusemide (Winthrop) 40 mg tablet, 30 946271000168105 Frusemide (Winthrop) 40 mg tablet 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 928621000168109 furosemide (frusemide) 40 mg tablet, 30 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +44072011000036103 Cytarabine (Pfizer (Perth)) 500 mg/25 mL injection solution, 25 mL vial 49283 41559011000036103 Cytarabine (Pfizer (Perth)) 500 mg/25 mL injection solution, 25 mL vial 40063011000036101 Cytarabine (Pfizer (Perth)) 500 mg/25 mL injection solution, 25 mL vial 3540011000036100 Cytarabine (Pfizer (Perth)) 3540011000036100 Cytarabine (Pfizer (Perth)) 46389011000036105 cytarabine 500 mg/25 mL injection, 25 mL vial 45124011000036108 cytarabine 500 mg/25 mL injection, vial 21916011000036109 cytarabine +20419011000036105 Baclofen (Chemmart) 10 mg tablet, 100, bottle 77573 13626011000036106 Baclofen (Chemmart) 10 mg tablet, 100 6909011000036101 Baclofen (Chemmart) 10 mg tablet 3617011000036101 Baclofen (Chemmart) 3617011000036101 Baclofen (Chemmart) 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +933212141000036101 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 7, blister pack 142235 933200791000036108 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 7 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200801000036107 donepezil hydrochloride 5 mg tablet, 7 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +43594011000036104 Vesicare 5 mg film-coated tablet, 30, blister pack 117217 41190011000036105 Vesicare 5 mg film-coated tablet, 30 39923011000036101 Vesicare 5 mg film-coated tablet 39622011000036107 Vesicare 39622011000036107 Vesicare 46153011000036105 solifenacin succinate 5 mg tablet, 30 45010011000036100 solifenacin succinate 5 mg tablet 44891011000036101 solifenacin +60384011000036105 Micardis Plus 80/25 multilayer tablet, 14, blister pack 143761 56343011000036108 Micardis Plus 80/25 multilayer tablet, 14 53885011000036106 Micardis Plus 80/25 multilayer tablet 17051000168109 Micardis Plus 80/25 17051000168109 Micardis Plus 80/25 63314011000036109 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 14 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +60505011000036108 Xyzal 5 mg film-coated tablet, 7, blister pack 150854 56463011000036109 Xyzal 5 mg film-coated tablet, 7 53929011000036106 Xyzal 5 mg film-coated tablet 53093011000036108 Xyzal 53093011000036108 Xyzal 63377011000036108 levocetirizine dihydrochloride 5 mg tablet, 7 61931011000036101 levocetirizine dihydrochloride 5 mg tablet 61816011000036108 levocetirizine +18715011000036102 Carvedilol (GenRx) 6.25 mg film-coated tablet, 60, blister pack 123834 11748011000036108 Carvedilol (GenRx) 6.25 mg film-coated tablet, 60 4830011000036103 Carvedilol (GenRx) 6.25 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +77295011000036107 Pyroxin 100 mg uncoated tablet, 50, bottle 27527 76711011000036100 Pyroxin 100 mg uncoated tablet, 50 76131011000036103 Pyroxin 100 mg uncoated tablet 75926011000036105 Pyroxin 75926011000036105 Pyroxin 78225011000036106 pyridoxine hydrochloride 100 mg tablet, 50 77553011000036109 pyridoxine hydrochloride 100 mg tablet 77422011000036109 pyridoxine +1096231000168109 Aleve 24 Hour 660 mg modified release tablet, 12, blister pack 263421 1096221000168106 Aleve 24 Hour 660 mg modified release tablet, 12 1096141000168108 Aleve 24 Hour 660 mg modified release tablet 1096101000168106 Aleve 24 Hour 1096101000168106 Aleve 24 Hour 1096211000168104 naproxen sodium 660 mg modified release tablet, 12 1096131000168104 naproxen sodium 660 mg modified release tablet 21304011000036105 naproxen +50215011000036101 Rixadone 2 mg film-coated tablet, 60, blister pack 199180 49568011000036105 Rixadone 2 mg film-coated tablet, 60 48475011000036104 Rixadone 2 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +50215011000036101 Rixadone 2 mg film-coated tablet, 60, blister pack 127896 49568011000036105 Rixadone 2 mg film-coated tablet, 60 48475011000036104 Rixadone 2 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +973981000168106 Amlodipine (Amneal) 5 mg tablet, 30, blister pack 212154 973971000168108 Amlodipine (Amneal) 5 mg tablet, 30 973961000168102 Amlodipine (Amneal) 5 mg tablet 973861000168109 Amlodipine (Amneal) 973861000168109 Amlodipine (Amneal) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +69389011000036105 Vitalipid N Adult concentrated injection, 10 x 10 mL ampoules 40252 67189011000036106 Vitalipid N Adult concentrated injection, 10 x 10 mL ampoules 65195011000036107 Vitalipid N Adult concentrated injection, 10 mL ampoule 63541000168109 Vitalipid N Adult 63541000168109 Vitalipid N Adult 71748011000036103 retinol palmitate 990 microgram (3300 units)/10 mL + ergocalciferol 5 microgram (200 units)/10 mL + dl-alpha-tocopherol 9.1 mg (10 units)/10 mL + phytomenadione 150 microgram/10 mL injection, 10 x 10 mL ampoules 70167011000036107 retinol palmitate 990 microgram (3300 units)/10 mL + ergocalciferol 5 microgram (200 units)/10 mL + dl-alpha-tocopherol 9.1 mg (10 units)/10 mL + phytomenadione 150 microgram/10 mL injection, ampoule 69807011000036101 retinol palmitate + ergocalciferol + dl-alpha-tocopherol + phytomenadione +782291000168106 Voriconazole (Alphapharm) 200 mg film-coated tablet, 20, blister pack 206993 782281000168108 Voriconazole (Alphapharm) 200 mg film-coated tablet, 20 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46806011000036104 voriconazole 200 mg tablet, 20 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +38241000036100 Escitalup 5 mg film-coated tablet, 100, bottle 165839 34571000036102 Escitalup 5 mg film-coated tablet, 100 32881000036105 Escitalup 5 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +19451011000036100 Alphamox 250 mg/5 mL powder for oral liquid, 100 mL, bottle 54150 12728011000036107 Alphamox 250 mg/5 mL powder for oral liquid, 100 mL 5309011000036107 Alphamox 250 mg/5 mL powder for oral liquid, 5 mL 4042011000036101 Alphamox 4042011000036101 Alphamox 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +1107971000168108 Midazolam (Intas) 5 mg/5 mL injection solution, 5 mL ampoule 207240 1107961000168102 Midazolam (Intas) 5 mg/5 mL injection solution, 5 mL ampoule 1107951000168104 Midazolam (Intas) 5 mg/5 mL injection solution, 5 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 664171000168103 midazolam 5 mg/5 mL injection, 5 mL ampoule 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +925921000168109 Zorac 0.1% gel, 10 g, tube 59520 925911000168102 Zorac 0.1% gel, 10 g 925891000168104 Zorac 0.1% gel 39675011000036100 Zorac 39675011000036100 Zorac 925901000168100 tazarotene 0.1% gel, 10 g 925881000168102 tazarotene 0.1% gel 44886011000036105 tazarotene +18895011000036103 Pilopt 2% eye drops solution, 15 mL, bottle 19762 12203011000036101 Pilopt 2% eye drops solution, 15 mL 5975011000036108 Pilopt 2% eye drops solution 3693011000036106 Pilopt 3693011000036106 Pilopt 27789011000036107 pilocarpine hydrochloride 2% eye drops, 15 mL 23119011000036105 pilocarpine hydrochloride 2% eye drops 21254011000036109 pilocarpine +730261000168105 Sodium Bicarbonate Min-I-Jet (UCB Pharma) 4.2 g/50 mL injection solution, 50 mL syringe 29057 730251000168108 Sodium Bicarbonate Min-I-Jet (UCB Pharma) 4.2 g/50 mL injection solution, 50 mL syringe 730241000168106 Sodium Bicarbonate Min-I-Jet (UCB Pharma) 4.2 g/50 mL injection solution, 50 mL syringe 728511000168108 Sodium Bicarbonate Min-I-Jet (UCB Pharma) 728511000168108 Sodium Bicarbonate Min-I-Jet (UCB Pharma) 78230011000036104 sodium bicarbonate 4.2 g/50 mL injection, 50 mL syringe 77558011000036104 sodium bicarbonate 4.2 g/50 mL injection, syringe 21761011000036107 bicarbonate +1089021000168108 Ibupane film-coated tablet, 30, blister pack 267396 1089011000168101 Ibupane film-coated tablet, 30 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +933246551000036104 Sunscreen SPF 30+ Sensitive (Sunsense) 8.5% cream, 75 g, tube 156376 933243501000036107 Sunscreen SPF 30+ Sensitive (Sunsense) 8.5% cream, 75 g 933241441000036107 Sunscreen SPF 30+ Sensitive (Sunsense) 8.5% cream 14401000168109 Sunscreen SPF 30+ Sensitive (Sunsense) 14401000168109 Sunscreen SPF 30+ Sensitive (Sunsense) 933243511000036109 titanium dioxide 8.5% cream, 75 g 933241451000036105 titanium dioxide 8.5% cream 933247631000036106 titanium +925270011000036102 Elaxine SR 75 mg modified release capsule, 28, blister pack 160300 924807011000036105 Elaxine SR 75 mg modified release capsule, 28 924501011000036101 Elaxine SR 75 mg modified release capsule 8331000168101 Elaxine SR 8331000168101 Elaxine SR 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +1045721000168103 Docetaxel (Accord) 160 mg/8 mL concentrated injection, 8 mL vial 209465 1045711000168105 Docetaxel (Accord) 160 mg/8 mL concentrated injection, 8 mL vial 1045701000168107 Docetaxel (Accord) 160 mg/8 mL concentrated injection, 8 mL vial 797961000168109 Docetaxel (Accord) 797961000168109 Docetaxel (Accord) 748241000168107 docetaxel 160 mg/8 mL injection, 8 mL vial 748221000168101 docetaxel 160 mg/8 mL injection, vial 21721011000036101 docetaxel +1055801000168102 Sorbact Superabsorbent (98503) 20 cm x 20 cm dressing, 10, carton 173776 1055791000168103 Sorbact Superabsorbent (98503) 20 cm x 20 cm dressing, 10 1055771000168104 Sorbact Superabsorbent (98503) 20 cm x 20 cm dressing 1055751000168108 Sorbact Superabsorbent (98503) 1055751000168108 Sorbact Superabsorbent (98503) 1055781000168101 dressing hydrophobic 20 cm x 20 cm dressing, 10 1055761000168105 dressing hydrophobic 20 cm x 20 cm dressing 1055281000168109 dressing hydrophobic +60401011000036100 Febridol Co uncoated tablet, 50, blister pack 144070 56360011000036105 Febridol Co uncoated tablet, 50 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 52904011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 50 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +55281000036104 Pantoprazole (Sandoz) 40 mg enteric tablet, 5, bottle 147368 83982011000036107 Pantoprazole (Sandoz) 40 mg enteric tablet, 5 83617011000036107 Pantoprazole (Sandoz) 40 mg enteric tablet 83562011000036104 Pantoprazole (Sandoz) 83562011000036104 Pantoprazole (Sandoz) 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1041381000168100 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device 96230 1041371000168103 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device 1041351000168107 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device 47151000168100 Gonal-F Pen 47151000168100 Gonal-F Pen 1041361000168109 follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, 0.5 mL injection device 1041341000168105 follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, injection device 21352011000036107 follitropin alfa +18440011000036107 Monistat 7 Vaginal 100 mg moulded pessary, 7, blister pack 13308 11965011000036104 Monistat 7 Vaginal 100 mg moulded pessary, 7 4734011000036106 Monistat 7 Vaginal 100 mg moulded pessary 45391000168102 Monistat 7 Vaginal 45391000168102 Monistat 7 Vaginal 26819011000036107 miconazole nitrate 100 mg pessary, 7 22201011000036101 miconazole nitrate 100 mg pessary 21454011000036108 miconazole +960821000168100 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet, 2, blister pack 255078 960811000168107 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet, 2 960801000168109 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet 960771000168107 Amoxicillin Clavulanic Acid 500/125 (Mylan) 960771000168107 Amoxicillin Clavulanic Acid 500/125 (Mylan) 51544011000036109 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 2 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +116311000036106 Lovenox 40 mg/0.4 mL injection solution, 10 x 0.4 mL ampoules 147006 114561000036108 Lovenox 40 mg/0.4 mL injection solution, 10 x 0.4 mL ampoules 113371000036105 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL ampoule 112571000036109 Lovenox 112571000036109 Lovenox 79810011000036100 enoxaparin sodium 40 mg/0.4 mL injection, 10 x 0.4 mL ampoules 79742011000036105 enoxaparin sodium 40 mg/0.4 mL injection, ampoule 21553011000036103 enoxaparin sodium +69380011000036104 Albumex-20 2 g/10 mL intravenous infusion injection, 10 mL vial 31820 67180011000036100 Albumex-20 2 g/10 mL intravenous infusion injection, 10 mL vial 65238011000036107 Albumex-20 2 g/10 mL intravenous infusion injection, 10 mL vial 41171000168102 Albumex-20 41171000168102 Albumex-20 71742011000036101 albumin human 2 g/10 mL injection, 10 mL vial 70162011000036105 albumin human 2 g/10 mL injection, vial 69754011000036102 albumin human +1078831000168103 Atomoxetine (GPPL) 10 mg hard capsule, 7, blister pack 234847 1078821000168101 Atomoxetine (GPPL) 10 mg hard capsule, 7 1078811000168108 Atomoxetine (GPPL) 10 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1119251000168104 Zopiclone (Apotex) 7.5 mg film-coated tablet, 30, blister pack 213075 1119241000168101 Zopiclone (Apotex) 7.5 mg film-coated tablet, 30 1119231000168105 Zopiclone (Apotex) 7.5 mg film-coated tablet 1119221000168107 Zopiclone (Apotex) 1119221000168107 Zopiclone (Apotex) 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +17791000036109 Alendronate (Sandoz) 70 mg uncoated tablet, 4, blister pack 134981 16511000036105 Alendronate (Sandoz) 70 mg uncoated tablet, 4 15481000036107 Alendronate (Sandoz) 70 mg uncoated tablet 39580011000036106 Alendronate (Sandoz) 39580011000036106 Alendronate (Sandoz) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +170881000036103 Tivicay 50 mg film-coated tablet, 30, bottle 205212 170091000036107 Tivicay 50 mg film-coated tablet, 30 168981000036104 Tivicay 50 mg film-coated tablet 168861000036102 Tivicay 168861000036102 Tivicay 170101000036103 dolutegravir 50 mg tablet, 30 168991000036102 dolutegravir 50 mg tablet 171081000036101 dolutegravir +954931000168109 Topiramate (Sandoz) 50 mg film-coated tablet, 60, blister pack 135768 79949011000036109 Topiramate (Sandoz) 50 mg film-coated tablet, 60 79912011000036106 Topiramate (Sandoz) 50 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +37553011000036100 Fluvax Junior 2008 injection suspension, 1 x 0.25 mL syringe 149127 36821011000036100 Fluvax Junior 2008 injection suspension, 1 x 0.25 mL syringe 36081011000036108 Fluvax Junior 2008 injection suspension, 0.25 mL syringe 11841000168106 Fluvax Junior 2008 11841000168106 Fluvax Junior 2008 33826011000036102 influenza trivalent child vaccine 2008 injection, 1 x 0.25 mL syringe 33692011000036101 influenza trivalent child vaccine 2008 injection, 0.25 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +18424011000036100 Diamox 250 mg uncoated tablet, 100, bottle 15204 12076011000036106 Diamox 250 mg uncoated tablet, 100 4879011000036106 Diamox 250 mg uncoated tablet 3590011000036108 Diamox 3590011000036108 Diamox 26898011000036100 acetazolamide 250 mg tablet, 100 22276011000036100 acetazolamide 250 mg tablet 21502011000036104 acetazolamide +1058781000168109 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 100, bottle 234496 1058771000168106 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 100 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910711000168103 rosuvastatin 20 mg tablet, 100 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +18561011000036101 Vermox 100 mg uncoated tablet, 6, strip pack 13330 11969011000036102 Vermox 100 mg uncoated tablet, 6 4928011000036105 Vermox 100 mg uncoated tablet 19531000168104 Vermox 19531000168104 Vermox 26822011000036107 mebendazole 100 mg tablet, 6 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +17927011000036102 Truvada film-coated tablet, 30, bottle 107072 11356011000036107 Truvada film-coated tablet, 30 4674011000036103 Truvada film-coated tablet 4419011000036109 Truvada 4419011000036109 Truvada 26620011000036102 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg tablet, 30 22026011000036109 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg tablet 851481000168106 tenofovir disoproxil + emtricitabine +920707011000036106 Ciprofloxacin (DBL) 200 mg/100 mL intravenous infusion injection, 50 x 100 mL bags 123041 920381011000036103 Ciprofloxacin (DBL) 200 mg/100 mL intravenous infusion injection, 50 x 100 mL bags 920145011000036101 Ciprofloxacin (DBL) 200 mg/100 mL intravenous infusion injection, 100 mL bag 920086011000036107 Ciprofloxacin (DBL) 920086011000036107 Ciprofloxacin (DBL) 46212011000036109 ciprofloxacin 200 mg/100 mL injection, 50 x 100 mL bags 45032011000036109 ciprofloxacin 200 mg/100 mL injection, bag 21245011000036105 ciprofloxacin +55211000036107 Endure 402 2% application, 750 mL, bag 134598 50991000036102 Endure 402 2% application, 750 mL 49141000036103 Endure 402 2% application 47421000168100 Endure 402 47421000168100 Endure 402 51001000036103 chlorhexidine gluconate 2% application, 750 mL 49151000036100 chlorhexidine gluconate 2% application 21404011000036101 chlorhexidine +793771000168105 Actemra 80 mg/4 mL concentrated injection, 4 x 4 mL vials 149403 793761000168104 Actemra 80 mg/4 mL concentrated injection, 4 x 4 mL vials 82678011000036108 Actemra 80 mg/4 mL concentrated injection, 4 mL vial 82659011000036103 Actemra 82659011000036103 Actemra 793751000168101 tocilizumab 80 mg/4 mL injection, 4 x 4 mL vials 82926011000036109 tocilizumab 80 mg/4 mL injection, vial 82914011000036109 tocilizumab +1098971000168104 Valaciclovir (Auro) 1 g film-coated tablet, 500, bottle 173281 1098961000168105 Valaciclovir (Auro) 1 g film-coated tablet, 500 1098891000168105 Valaciclovir (Auro) 1 g film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 1098951000168108 valaciclovir 1 g tablet, 500 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +933229631000036104 Morphine Sulfate MR (Apotex) 30 mg modified release tablet, 20, blister pack 132254 933223571000036101 Morphine Sulfate MR (Apotex) 30 mg modified release tablet, 20 933219671000036109 Morphine Sulfate MR (Apotex) 30 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 27107011000036109 morphine sulfate pentahydrate 30 mg modified release tablet, 20 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +20874011000036106 Ibimicyn 1 g powder for injection, 5 vials 92840 14036011000036100 Ibimicyn 1 g powder for injection, 5 vials 7312011000036103 Ibimicyn 1 g powder for injection, vial 3348011000036101 Ibimicyn 3348011000036101 Ibimicyn 28099011000036101 ampicillin 1 g injection, 5 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +681331000168104 Esomeprazole (Actavis) 20 mg enteric tablet, 100, blister pack 210854 681321000168102 Esomeprazole (Actavis) 20 mg enteric tablet, 100 681221000168108 Esomeprazole (Actavis) 20 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +20616011000036103 Valpam 5 mg uncoated tablet, 50, bottle 80812 13796011000036109 Valpam 5 mg uncoated tablet, 50 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +80020011000036108 Topiramate (Apo) 200 mg film-coated tablet, 60, blister pack 124732 79955011000036105 Topiramate (Apo) 200 mg film-coated tablet, 60 79914011000036102 Topiramate (Apo) 200 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +17926011000036100 Neorecormon 10 000 units/0.6 mL injection, 6 x 0.6 mL syringes 104267 11279011000036109 Neorecormon 10 000 units/0.6 mL injection, 6 x 0.6 mL syringes 4597011000036107 Neorecormon 10 000 units/0.6 mL injection, 0.6 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26590011000036103 epoetin beta 10 000 units/0.6 mL injection, 6 x 0.6 mL syringes 21998011000036107 epoetin beta 10 000 units/0.6 mL injection, syringe 21625011000036109 epoetin beta +52760011000036107 Metformin Hydrochloride (Ranbaxy) 850 mg film-coated tablet, 60, blister pack 142884 52572011000036100 Metformin Hydrochloride (Ranbaxy) 850 mg film-coated tablet, 60 52423011000036102 Metformin Hydrochloride (Ranbaxy) 850 mg film-coated tablet 23791000168102 Metformin Hydrochloride (Ranbaxy) 23791000168102 Metformin Hydrochloride (Ranbaxy) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +926918011000036106 Minoxidil (Southern Cross Pharma) 5% application, 60 mL, bottle 82363 926312011000036101 Minoxidil (Southern Cross Pharma) 5% application, 60 mL 925754011000036102 Minoxidil (Southern Cross Pharma) 5% application 925503011000036106 Minoxidil (Southern Cross Pharma) 925503011000036106 Minoxidil (Southern Cross Pharma) 63889011000036109 minoxidil 5% application, 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +849881000168107 Vzole 200 mg film-coated tablet, 50, blister pack 238242 849871000168109 Vzole 200 mg film-coated tablet, 50 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46809011000036108 voriconazole 200 mg tablet, 50 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +986681000168100 Advil Childrens Pain and Fever 7 to 12 Years 100 mg chewable tablet, 20, bottle 178662 986671000168103 Advil Childrens Pain and Fever 7 to 12 Years 100 mg chewable tablet, 20 986661000168109 Advil Childrens Pain and Fever 7 to 12 Years 100 mg chewable tablet 986651000168107 Advil Childrens Pain and Fever 7 to 12 Years 986651000168107 Advil Childrens Pain and Fever 7 to 12 Years 986551000168106 ibuprofen 100 mg chewable tablet, 20 986531000168100 ibuprofen 100 mg chewable tablet 21885011000036105 ibuprofen +19846011000036104 Viagra 50 mg film-coated tablet, 4, blister pack 64435 13096011000036107 Viagra 50 mg film-coated tablet, 4 6380011000036103 Viagra 50 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +86840011000036101 Sinus Rinse (NeilMed) powder for nasal drops, 15 x 2.16 g sachets 86741011000036106 Sinus Rinse (NeilMed) powder for nasal drops, 15 x 2.16 g sachets 86621011000036102 Sinus Rinse (NeilMed) powder for nasal drops, 2.16 g sachet 86602011000036101 Sinus Rinse (NeilMed) 86602011000036101 Sinus Rinse (NeilMed) 87011011000036103 sodium chloride + bicarbonate nasal drops, 15 x 2.16 g sachets 86923011000036102 sodium chloride + bicarbonate nasal drops, 2.16 g sachet 86904011000036106 sodium chloride + bicarbonate +43961011000036105 Stieva-A 0.05% cream, 25 g, tube 39839 41453011000036109 Stieva-A 0.05% cream, 25 g 39982011000036100 Stieva-A 0.05% cream 39639011000036100 Stieva-A 39639011000036100 Stieva-A 46302011000036101 tretinoin 0.05% cream, 25 g 37948011000036102 tretinoin 0.05% cream 37794011000036109 tretinoin +1123541000168106 Quetiapine XR (ZP) 50 mg modified release tablet, 10, blister pack 241754 1123531000168102 Quetiapine XR (ZP) 50 mg modified release tablet, 10 1123501000168109 Quetiapine XR (ZP) 50 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51529011000036107 quetiapine 50 mg modified release tablet, 10 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +61473011000036100 Paracetamol (Herron) 500 mg film-coated tablet, 48, blister pack 91501 57398011000036109 Paracetamol (Herron) 500 mg film-coated tablet, 48 54295011000036103 Paracetamol (Herron) 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +835461000168104 Prolistat 120 mg hard capsule, 42, blister pack 268252 835451000168101 Prolistat 120 mg hard capsule, 42 835441000168103 Prolistat 120 mg hard capsule 835431000168107 Prolistat 835431000168107 Prolistat 759361000168105 orlistat 120 mg capsule, 42 22831011000036103 orlistat 120 mg capsule 21581011000036109 orlistat +917561000168108 Amikacin (SXP) 500 mg/2 mL injection solution, 5 x 2 mL ampoules 262734 917551000168106 Amikacin (SXP) 500 mg/2 mL injection solution, 5 x 2 mL ampoules 917541000168109 Amikacin (SXP) 500 mg/2 mL injection solution, 2 mL ampoule 917531000168100 Amikacin (SXP) 917531000168100 Amikacin (SXP) 917341000168101 amikacin 500 mg/2 mL injection, 5 x 2 mL ampoules 917321000168107 amikacin 500 mg/2 mL injection, ampoule 37805011000036108 amikacin +20360011000036107 Actos 30 mg uncoated tablet, 28, blister pack 76463 13568011000036106 Actos 30 mg uncoated tablet, 28 6850011000036109 Actos 30 mg uncoated tablet 4390011000036109 Actos 4390011000036109 Actos 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +38171000036104 Escilupin 5 mg film-coated tablet, 250, bottle 165835 34501000036106 Escilupin 5 mg film-coated tablet, 250 33081000036107 Escilupin 5 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +991021000168100 Aripiprazole (Apotex) 2 mg uncoated tablet, 30, blister pack 152916 991001000168109 Aripiprazole (Apotex) 2 mg uncoated tablet, 30 990971000168107 Aripiprazole (Apotex) 2 mg uncoated tablet 990871000168102 Aripiprazole (Apotex) 990871000168102 Aripiprazole (Apotex) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +933246871000036106 Pantoprazole (PS) 20 mg enteric tablet, 5, blister pack 158196 933243701000036103 Pantoprazole (PS) 20 mg enteric tablet, 5 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46675011000036108 pantoprazole 20 mg enteric tablet, 5 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +60495011000036100 Benadryl PE for the Family Dry Cough and Nasal Congestion oral liquid solution, 200 mL, bottle 150510 56453011000036100 Benadryl PE for the Family Dry Cough and Nasal Congestion oral liquid solution, 200 mL 53925011000036109 Benadryl PE for the Family Dry Cough and Nasal Congestion oral liquid solution, 5 mL 20711000168104 Benadryl PE for the Family Dry Cough and Nasal Congestion 20711000168104 Benadryl PE for the Family Dry Cough and Nasal Congestion 63367011000036102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 61928011000036107 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61803011000036104 dextromethorphan + phenylephrine +980971000168106 Eloxatin 100 mg powder for injection, 1 vial 75454 980961000168100 Eloxatin 100 mg powder for injection, 1 vial 980951000168102 Eloxatin 100 mg powder for injection, 100 mg vial 3353011000036109 Eloxatin 3353011000036109 Eloxatin 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +721671000168109 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL, bottle 10859 721661000168103 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL 721631000168106 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 5 mL 9371000168109 Panadol Children's Elixir 1 to 5 Years 9371000168109 Panadol Children's Elixir 1 to 5 Years 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +921946011000036100 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 20 mL vials 39868 921505011000036108 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 20 mL vials 921044011000036103 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 20 mL vial 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 922627011000036101 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 20 mL vials 922117011000036106 iohexol 755 mg (iodine 350 mg)/mL injection, 20 mL vial 77459011000036103 iohexol +1093261000168106 Voltaren Emulgel No Mess Applicator 1.16% gel, 30 g, tube 282516 1093251000168109 Voltaren Emulgel No Mess Applicator 1.16% gel, 30 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1093241000168107 diclofenac diethylamine 1.16% gel, 30 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +85005011000036102 Dibenyline 10 mg hard capsule, 30, jar 12980 84883011000036105 Dibenyline 10 mg hard capsule, 30 4640011000036109 Dibenyline 10 mg hard capsule 3941011000036100 Dibenyline 3941011000036100 Dibenyline 85177011000036108 phenoxybenzamine hydrochloride 10 mg capsule, 30 22184011000036102 phenoxybenzamine hydrochloride 10 mg capsule 21893011000036108 phenoxybenzamine +715891000168101 Canesten Plus cream, 30 g, tube 192113 715881000168104 Canesten Plus cream, 30 g 715871000168102 Canesten Plus cream 119221000036100 Canesten Plus 119221000036100 Canesten Plus 38541011000036108 hydrocortisone 1% + clotrimazole 1% cream, 30 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +44536011000036100 Ramace 10 mg hard capsule, 28, blister pack 79098 41989011000036101 Ramace 10 mg hard capsule, 28 6972011000036103 Ramace 10 mg hard capsule 3038011000036104 Ramace 3038011000036104 Ramace 46764011000036105 ramipril 10 mg capsule, 28 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +86016011000036109 Lisinopril (DRLA) 5 mg uncoated tablet, 14, blister pack 152720 85648011000036106 Lisinopril (DRLA) 5 mg uncoated tablet, 14 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 83479011000036106 lisinopril 5 mg tablet, 14 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +17747011000036105 Citalopram (RL) 20 mg film-coated tablet, 28, blister pack 100788 11166011000036108 Citalopram (RL) 20 mg film-coated tablet, 28 5756011000036106 Citalopram (RL) 20 mg film-coated tablet 3291011000036107 Citalopram (RL) 3291011000036107 Citalopram (RL) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1009711000168104 Valtrex-1000 1 g film-coated tablet, 4, bottle 73919 1009691000168102 Valtrex-1000 1 g film-coated tablet, 4 1009681000168100 Valtrex-1000 1 g film-coated tablet 1009671000168103 Valtrex-1000 1009671000168103 Valtrex-1000 927387011000036102 valaciclovir 1 g tablet, 4 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +176411000036106 Mirtazapine (Apo) 30 mg film-coated tablet, 30, blister pack 127678 174611000036102 Mirtazapine (Apo) 30 mg film-coated tablet, 30 172961000036102 Mirtazapine (Apo) 30 mg film-coated tablet 11681000168100 Mirtazapine (Apo) 11681000168100 Mirtazapine (Apo) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +74793011000036105 Irinotecan Hydrochloride Trihydrate (Omegapharm) 100 mg/5 mL concentrated injection, 5 mL vial 137452 74280011000036108 Irinotecan Hydrochloride Trihydrate (Omegapharm) 100 mg/5 mL concentrated injection, 5 mL vial 73785011000036105 Irinotecan Hydrochloride Trihydrate (Omegapharm) 100 mg/5 mL concentrated injection, 5 mL vial 73705011000036106 Irinotecan Hydrochloride Trihydrate (Omegapharm) 73705011000036106 Irinotecan Hydrochloride Trihydrate (Omegapharm) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +707141000168105 Morphine (Juno) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 224251 707131000168101 Morphine (Juno) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 707081000168101 Morphine (Juno) 50 mg/5 mL injection solution, 5 mL ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 707121000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, 10 x 5 mL ampoules 707071000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, ampoule 21252011000036100 morphine +61172011000036108 Rapideine Day (Soul Pattinson) uncoated tablet, 96, blister pack 74726 57115011000036106 Rapideine Day (Soul Pattinson) uncoated tablet, 96 54201011000036103 Rapideine Day (Soul Pattinson) uncoated tablet 52385011000036104 Rapideine Day (Soul Pattinson) 52385011000036104 Rapideine Day (Soul Pattinson) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +661141000168108 Risperidone (AN) 3 mg film-coated tablet, 60, blister pack 166683 661131000168104 Risperidone (AN) 3 mg film-coated tablet, 60 661121000168102 Risperidone (AN) 3 mg film-coated tablet 661081000168104 Risperidone (AN) 661081000168104 Risperidone (AN) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +926161000168107 Stilnox 5 mg film-coated tablet, 2, blister pack 58709 926151000168105 Stilnox 5 mg film-coated tablet, 2 926131000168104 Stilnox 5 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 926141000168108 zolpidem tartrate 5 mg tablet, 2 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +30791000036104 Kerron 250 mg film-coated tablet, 60, blister pack 182824 29211000036106 Kerron 250 mg film-coated tablet, 60 26551000036102 Kerron 250 mg film-coated tablet 29611000168101 Kerron 29611000168101 Kerron 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +773491000168107 Claratyne Reditab 10 mg orally disintegrating tablet, 10, blister pack 217147 773481000168109 Claratyne Reditab 10 mg orally disintegrating tablet, 10 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773471000168106 loratadine 10 mg orally disintegrating tablet, 10 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +773491000168107 Claratyne Reditab 10 mg orally disintegrating tablet, 10, blister pack 279809 773481000168109 Claratyne Reditab 10 mg orally disintegrating tablet, 10 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773471000168106 loratadine 10 mg orally disintegrating tablet, 10 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +904741000168109 Ceftriaxone (Kabi) 500 mg powder for injection, 5 vials 223323 904731000168100 Ceftriaxone (Kabi) 500 mg powder for injection, 5 vials 904661000168100 Ceftriaxone (Kabi) 500 mg powder for injection, 500 mg vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 933200131000036108 ceftriaxone 500 mg injection, 5 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +1113591000168105 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 21, blister pack 179092 1113581000168107 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 21 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043291000168106 olanzapine 5 mg orally disintegrating tablet, 21 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +69740011000036105 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 9, blister pack 92684 67539011000036107 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 9 65690011000036104 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 72040011000036102 paracetamol 500 mg capsule, 9 70282011000036109 paracetamol 500 mg capsule 21433011000036107 paracetamol +669681000168108 Amlodipine/Atorvastatin 5/80 (Terry White Chemists) film-coated tablet, 30, blister pack 214382 669671000168105 Amlodipine/Atorvastatin 5/80 (Terry White Chemists) film-coated tablet, 30 669661000168104 Amlodipine/Atorvastatin 5/80 (Terry White Chemists) film-coated tablet 669651000168101 Amlodipine/Atorvastatin 5/80 (Terry White Chemists) 669651000168101 Amlodipine/Atorvastatin 5/80 (Terry White Chemists) 26545011000036102 amlodipine 5 mg + atorvastatin 80 mg tablet, 30 21954011000036105 amlodipine 5 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +857121000168109 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Reddycal tablets), 1 pack, composite pack 222685 857111000168102 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Reddycal tablets), 1 pack 172301000036102 Alendronate Plus D3 70 mg/140 microgram (DRLA) uncoated tablet 857051000168100 Alendronate plus D3 Cal (DRLA) 39451000168100 Alendronate Plus D3 70 mg/140 microgram (DRLA) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +857121000168109 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Reddycal tablets), 1 pack, composite pack 222685 857111000168102 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 48 x Reddycal tablets), 1 pack 848121000168108 Reddycal 1.25 g (calcium 500 mg) film-coated tablet 857051000168100 Alendronate plus D3 Cal (DRLA) 691531000168105 Reddycal 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +995201000168102 Cepacol Antibacterial Orange Citrus lozenge, 16, blister pack 76287 995191000168100 Cepacol Antibacterial Orange Citrus lozenge, 16 995171000168101 Cepacol Antibacterial Orange Citrus lozenge 37601000168107 Cepacol Antibacterial 37601000168107 Cepacol Antibacterial 995181000168103 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 16 995161000168107 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge 69797011000036101 benzyl alcohol + cetylpyridinium +55371000036107 Mydol uncoated tablet, 40, blister pack 147714 51181000036108 Mydol uncoated tablet, 40 48951000036106 Mydol uncoated tablet 48521000036109 Mydol 48521000036109 Mydol 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +69226011000036100 Chlorhexidine Acetate (Baxter) 0.05% (250 mg/500 mL) irrigation solution, 15 x 500 mL bottles 19461 67026011000036103 Chlorhexidine Acetate (Baxter) 0.05% (250 mg/500 mL) irrigation solution, 15 x 500 mL bottles 65499011000036108 Chlorhexidine Acetate (Baxter) 0.05% (250 mg/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71596011000036107 chlorhexidine acetate 0.05% (250 mg/500 mL) solution, 15 x 500 mL bottles 70083011000036105 chlorhexidine acetate 0.05% (250 mg/500 mL) solution, bottle 21404011000036101 chlorhexidine +20857011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92120 14020011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack 7297011000036105 Peg-Intron Redipen Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28083011000036103 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20857011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92120 14020011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28083011000036103 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20857011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 92120 14020011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28083011000036103 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +852781000168107 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack 46852 852771000168109 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104 5083011000036109 Didronel 200 mg uncoated tablet 4241011000036104 Didrocal 3484011000036107 Didronel 852761000168103 etidronate disodium 200 mg tablet [28] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [76], 104 22513011000036109 etidronate disodium 200 mg tablet 21656011000036103 etidronate disodium +852781000168107 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack 46852 852771000168109 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 4241011000036104 Didrocal 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 852761000168103 etidronate disodium 200 mg tablet [28] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [76], 104 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +933246621000036106 Lisinopril (PS) 5 mg uncoated tablet, 56, blister pack 152712 933243261000036108 Lisinopril (PS) 5 mg uncoated tablet, 56 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 83481011000036104 lisinopril 5 mg tablet, 56 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +721601000168104 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16, strip pack 49816 721591000168106 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16 721541000168103 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet 30461000168105 Panadol Children's 7+ Years 30461000168105 Panadol Children's 7+ Years 71823011000036107 paracetamol 250 mg soluble tablet, 16 70204011000036104 paracetamol 250 mg soluble tablet 21433011000036107 paracetamol +43902011000036103 Ramipril (Generic Health) 2.5 mg hard capsule, 30, blister pack 134792 41394011000036106 Ramipril (Generic Health) 2.5 mg hard capsule, 30 39905011000036109 Ramipril (Generic Health) 2.5 mg hard capsule 39759011000036107 Ramipril (Generic Health) 39759011000036107 Ramipril (Generic Health) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +50686011000036108 Diastix diagnostic strip, 50, bottle 72550 49710011000036106 Diastix diagnostic strip, 50 48838011000036103 Diastix diagnostic strip 48341011000036105 Diastix 48341011000036105 Diastix 51569011000036103 glucose indicator urine diagnostic strip, 50 51006011000036105 glucose indicator urine diagnostic strip 50762011000036101 glucose indicator urine +695901000168109 Sodium Nitroprusside (DBL) 50 mg/2 mL concentrated injection, 2 mL vial 177111 695891000168105 Sodium Nitroprusside (DBL) 50 mg/2 mL concentrated injection, 2 mL vial 695871000168109 Sodium Nitroprusside (DBL) 50 mg/2 mL concentrated injection, 2 mL vial 35919011000036103 Sodium Nitroprusside (DBL) 35919011000036103 Sodium Nitroprusside (DBL) 695881000168107 sodium nitroprusside 50 mg/2 mL injection, 2 mL vial 695861000168103 sodium nitroprusside 50 mg/2 mL injection, vial 37746011000036105 nitroprusside +17951000036103 Syquet 300 mg film-coated tablet, 60, blister pack 162405 16691000036104 Syquet 300 mg film-coated tablet, 60 15321000036102 Syquet 300 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +34727011000036100 Methadone Hydrochloride Syrup (Orion) 4.25 mg/mL oral liquid solution, 20 mL, bottle 21183 34311011000036100 Methadone Hydrochloride Syrup (Orion) 4.25 mg/mL oral liquid solution, 20 mL 34034011000036106 Methadone Hydrochloride Syrup (Orion) 4.25 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35160011000036107 methadone hydrochloride 4.25 mg/mL oral liquid, 20 mL 34882011000036107 methadone hydrochloride 4.25 mg/mL oral liquid 21357011000036109 methadone +931452011000036104 Ranitidine (GA) 150 mg film-coated tablet, 20, blister pack 148518 930631011000036104 Ranitidine (GA) 150 mg film-coated tablet, 20 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1093171000168106 Cold and Flu Pain Relief plus PE Decongestant (Coles) uncoated tablet, 20, blister pack 281738 1093161000168100 Cold and Flu Pain Relief plus PE Decongestant (Coles) uncoated tablet, 20 1093151000168102 Cold and Flu Pain Relief plus PE Decongestant (Coles) uncoated tablet 1092811000168104 Cold and Flu Pain Relief plus PE Decongestant (Coles) 1092811000168104 Cold and Flu Pain Relief plus PE Decongestant (Coles) 71490011000036102 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 20 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +923703011000036101 Grandicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 147858 923317011000036107 Grandicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 922998011000036109 Grandicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924130011000036108 epoetin lambda 8000 units/0.8 mL injection, 0.8 mL syringe 923955011000036104 epoetin lambda 8000 units/0.8 mL injection, syringe 923930011000036107 epoetin lambda +933246781000036103 Lisinopril (PS) 20 mg uncoated tablet, 56, blister pack 152714 933243421000036103 Lisinopril (PS) 20 mg uncoated tablet, 56 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 78128011000036103 lisinopril 20 mg tablet, 56 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1019741000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 98, blister pack 175208 1019731000168106 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 98 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019721000168108 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 98 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +81201011000036106 Natural Laxative with Softener (Chemists' Own) film-coated tablet, 4, blister pack 90442 80703011000036105 Natural Laxative with Softener (Chemists' Own) film-coated tablet, 4 80244011000036109 Natural Laxative with Softener (Chemists' Own) film-coated tablet 80142011000036103 Natural Laxative with Softener (Chemists' Own) 80142011000036103 Natural Laxative with Softener (Chemists' Own) 81752011000036100 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 4 81306011000036109 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet 81227011000036109 sennoside B + senna leaf powder + docusate +854291000168107 Aliquen 100 mg film-coated tablet, 60, blister pack 204856 854281000168109 Aliquen 100 mg film-coated tablet, 60 854241000168104 Aliquen 100 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +61369011000036102 Anti-Fungal (Pharmacy Health) 1% cream, 50 g, tube 81526 57294011000036106 Anti-Fungal (Pharmacy Health) 1% cream, 50 g 54261011000036102 Anti-Fungal (Pharmacy Health) 1% cream 53488011000036105 Anti-Fungal (Pharmacy Health) 53488011000036105 Anti-Fungal (Pharmacy Health) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +21087011000036104 Estradot 50 microgram/24 hours patch, 8, sachet 97564 14230011000036106 Estradot 50 microgram/24 hours patch, 8 7516011000036102 Estradot 50 microgram/24 hours patch 4248011000036108 Estradot 4248011000036108 Estradot 28326011000036104 estradiol 50 microgram/24 hours patch, 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +652641000168103 Irprestan 150 mg film-coated tablet, 30, blister pack 190233 652631000168107 Irprestan 150 mg film-coated tablet, 30 652621000168109 Irprestan 150 mg film-coated tablet 650741000168107 Irprestan 650741000168107 Irprestan 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1061511000168107 Atorvator 40 mg film-coated tablet, 100, bottle 179857 1061501000168109 Atorvator 40 mg film-coated tablet, 100 1061451000168107 Atorvator 40 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890291000168107 atorvastatin 40 mg tablet, 100 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +931665011000036104 Twynsta 40/5 mg multilayer tablet, 98, blister pack 166265 930825011000036106 Twynsta 40/5 mg multilayer tablet, 98 930059011000036105 Twynsta 40/5 mg multilayer tablet 33031000168101 Twynsta 40/5 mg 33031000168101 Twynsta 40/5 mg 932438011000036103 telmisartan 40 mg + amlodipine 5 mg tablet, 98 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +933229591000036104 Aptamil De-Lact powder for oral liquid, 900 g, can 933223311000036103 Aptamil De-Lact powder for oral liquid, 900 g 933219381000036103 Aptamil De-Lact powder for oral liquid 42551000168107 Aptamil De-Lact 42551000168107 Aptamil De-Lact 51255011000036100 milk powder lactose free formula predigested powder for oral liquid, 900 g 50790011000036102 milk powder lactose free formula predigested powder for oral liquid 50737011000036107 milk powder lactose free formula predigested +869941000168104 Aripiprazole (Apo) 20 mg uncoated tablet, 30, blister pack 152899 869931000168108 Aripiprazole (Apo) 20 mg uncoated tablet, 30 869921000168105 Aripiprazole (Apo) 20 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +18080011000036107 Metformin Hydrochloride (Pharmacor) 850 mg film-coated tablet, 60, blister pack 130320 11893011000036109 Metformin Hydrochloride (Pharmacor) 850 mg film-coated tablet, 60 5794011000036108 Metformin Hydrochloride (Pharmacor) 850 mg film-coated tablet 22901000168103 Metformin Hydrochloride (Pharmacor) 22901000168103 Metformin Hydrochloride (Pharmacor) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +19425011000036104 Neupogen 300 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 53580 12709011000036107 Neupogen 300 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 4461011000036109 Neupogen 300 microgram/0.5 mL injection solution, 0.5 mL syringe 4267011000036100 Neupogen 4267011000036100 Neupogen 929229011000036101 filgrastim 300 microgram/0.5 mL injection, 10 x 0.5 mL syringes 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +1063121000168108 Caplets (Winthrop) uncoated tablet, 20, blister pack 138544 1063111000168101 Caplets (Winthrop) uncoated tablet, 20 1063041000168101 Caplets (Winthrop) uncoated tablet 1062991000168104 Caplets (Winthrop) 1062991000168104 Caplets (Winthrop) 1063101000168104 paracetamol 448 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 1063031000168105 paracetamol 448 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +38081000036101 Escitalopram (Generic Health) 5 mg film-coated tablet, 100, bottle 165831 34411000036109 Escitalopram (Generic Health) 5 mg film-coated tablet, 100 32791000036103 Escitalopram (Generic Health) 5 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +992551000168108 Irinotecan (Apo) 40 mg/2 mL concentrated injection, 2 mL vial 246737 992541000168106 Irinotecan (Apo) 40 mg/2 mL concentrated injection, 2 mL vial 992531000168102 Irinotecan (Apo) 40 mg/2 mL concentrated injection, 2 mL vial 992151000168104 Irinotecan (Apo) 992151000168104 Irinotecan (Apo) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +880011000168105 Brinzolamide (Sandoz) 1% eye drops, 5 mL, bottle 218986 880001000168107 Brinzolamide (Sandoz) 1% eye drops, 5 mL 879991000168102 Brinzolamide (Sandoz) 1% eye drops 879881000168106 Brinzolamide (Sandoz) 879881000168106 Brinzolamide (Sandoz) 28309011000036100 brinzolamide 1% eye drops, 5 mL 23623011000036104 brinzolamide 1% eye drops 21710011000036101 brinzolamide +851251000168100 Bivalirudin (Apotex) 250 mg powder for injection, 1 vial 241714 851231000168106 Bivalirudin (Apotex) 250 mg powder for injection, 1 vial 851211000168101 Bivalirudin (Apotex) 250 mg powder for injection, 250 mg vial 851181000168100 Bivalirudin (Apotex) 851181000168100 Bivalirudin (Apotex) 26568011000036104 bivalirudin 250 mg injection, 1 vial 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +880171000168101 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet, 50, blister pack 215374 880161000168107 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet, 50 880131000168104 Amitriptyline (Blooms The Chemist) 25 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +19228011000036109 Sandimmun 250 mg/5 mL concentrated injection, 10 x 5 mL ampoules 47290 12518011000036100 Sandimmun 250 mg/5 mL concentrated injection, 10 x 5 mL ampoules 5239011000036107 Sandimmun 250 mg/5 mL concentrated injection, 5 mL ampoule 3779011000036106 Sandimmun 3779011000036106 Sandimmun 27167011000036108 ciclosporin 250 mg/5 mL injection, 10 x 5 mL ampoules 22529011000036102 ciclosporin 250 mg/5 mL injection, ampoule 21379011000036104 ciclosporin +998331000168105 Desloratadine (Apo) 5 mg film-coated tablet, 50, blister pack 202823 998321000168107 Desloratadine (Apo) 5 mg film-coated tablet, 50 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72028011000036102 desloratadine 5 mg tablet, 50 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1090471000168109 Eleva 100 mg film-coated tablet, 500, bottle 95584 1090461000168103 Eleva 100 mg film-coated tablet, 500 7397011000036102 Eleva 100 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 1090451000168100 sertraline 100 mg tablet, 500 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +60024011000036101 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet, 10, blister pack 123662 55986011000036102 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet, 10 53748011000036108 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet 30721000168109 Heartburn Relief Extra Strength (Amcal) 30721000168109 Heartburn Relief Extra Strength (Amcal) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +59904011000036102 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet, 24, blister pack 117528 55866011000036109 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet, 24 53651011000036109 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet 51701000168108 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) 51701000168108 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +19349011000036105 Famvir 250 mg film-coated tablet, 56, blister pack 51389 12637011000036103 Famvir 250 mg film-coated tablet, 56 5598011000036100 Famvir 250 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +933246711000036106 Lisinopril (PS) 10 mg uncoated tablet, 84, blister pack 152713 933243351000036101 Lisinopril (PS) 10 mg uncoated tablet, 84 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 86422011000036106 lisinopril 10 mg tablet, 84 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +68728011000036108 Metsal cream, 125 g, tube 10569 66508011000036106 Metsal cream, 125 g 65330011000036103 Metsal cream 65146011000036109 Metsal 65146011000036109 Metsal 71240011000036109 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream, 125 g 69915011000036102 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream 69781011000036105 eucalyptus oil + menthol liquid + methyl salicylate +931544011000036104 Ostran 4 mg film-coated tablet, 6, blister pack 163432 930705011000036100 Ostran 4 mg film-coated tablet, 6 930022011000036104 Ostran 4 mg film-coated tablet 29491000168107 Ostran 29491000168107 Ostran 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +79026011000036109 Apo-Go 50 mg/5 mL injection solution, 5 x 5 mL ampoules 78781011000036109 Apo-Go 50 mg/5 mL injection solution, 5 x 5 mL ampoules 78620011000036104 Apo-Go 50 mg/5 mL injection solution, 5 mL ampoule 78615011000036102 Apo-Go 78615011000036102 Apo-Go 51543011000036107 apomorphine hydrochloride hemihydrate 50 mg/5 mL injection, 5 x 5 mL ampoules 50997011000036106 apomorphine hydrochloride hemihydrate 50 mg/5 mL injection, ampoule 21732011000036105 apomorphine +780601000168101 Fentanyl (Apo) 12 microgram/hour patch, 4, sachet 152577 780591000168108 Fentanyl (Apo) 12 microgram/hour patch, 4 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236101000036109 fentanyl 12 microgram/hour patch, 4 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +675711000168100 Celexi 200 mg hard capsule, 30, blister pack 206831 675701000168103 Celexi 200 mg hard capsule, 30 675691000168103 Celexi 200 mg hard capsule 675651000168108 Celexi 675651000168108 Celexi 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +943641000168108 Meloxicam (Spirit) 15 mg uncoated tablet, 30, blister pack 149084 943631000168104 Meloxicam (Spirit) 15 mg uncoated tablet, 30 943621000168102 Meloxicam (Spirit) 15 mg uncoated tablet 943551000168109 Meloxicam (Spirit) 943551000168109 Meloxicam (Spirit) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +802111000168106 Nuvigil 50 mg uncoated tablet, 30, blister pack 272052 802101000168108 Nuvigil 50 mg uncoated tablet, 30 802081000168101 Nuvigil 50 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802091000168103 armodafinil 50 mg tablet, 30 802071000168104 armodafinil 50 mg tablet 802061000168105 armodafinil +1089101000168100 Lorstat 40 mg film-coated tablet, 500, bottle 181409 1089091000168105 Lorstat 40 mg film-coated tablet, 500 20781000036103 Lorstat 40 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1089081000168107 atorvastatin 40 mg tablet, 500 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +60830011000036105 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 2, blister pack 58353 56786011000036106 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 2 54080011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 63569011000036107 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule, 2 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +825871000168109 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes 127245 825861000168103 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes 825631000168107 H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe 27541000168105 H-B-Vax II 27541000168105 H-B-Vax II 825851000168100 hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL syringes 825621000168109 hepatitis B adult vaccine 10 microgram/mL injection, syringe 825191000168101 hepatitis B vaccine +911571000168108 Caspofungin (CW) 70 mg powder for injection, 1 vial 269936 911561000168102 Caspofungin (CW) 70 mg powder for injection, 1 vial 911551000168104 Caspofungin (CW) 70 mg powder for injection, 70 mg vial 910041000168102 Caspofungin (CW) 910041000168102 Caspofungin (CW) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +1084771000168105 Nervoderm 5% dermal patch, 5, sachet 280081 1084761000168104 Nervoderm 5% dermal patch, 5 1084751000168101 Nervoderm 5% dermal patch 1084741000168103 Nervoderm 1084741000168103 Nervoderm 139061000036108 lidocaine (lignocaine) 5% patch, 5 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +851571000168107 Glycoprep powder for oral liquid, 200 g sachet 20538 851561000168101 Glycoprep powder for oral liquid, 200 g sachet 851541000168100 Glycoprep powder for oral liquid, 200 g sachet 52384011000036103 Glycoprep 52384011000036103 Glycoprep 851551000168103 macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet 851531000168109 macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet 52802011000036109 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + bicarbonate +18415011000036107 Allegron 10 mg film-coated tablet, 50, blister pack 14619 12044011000036104 Allegron 10 mg film-coated tablet, 50 5957011000036100 Allegron 10 mg film-coated tablet 4402011000036102 Allegron 4402011000036102 Allegron 26876011000036107 nortriptyline 10 mg tablet, 50 22255011000036109 nortriptyline 10 mg tablet 21689011000036104 nortriptyline +917711000168104 Imigran 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 38347 917701000168102 Imigran 6 mg/0.5 mL injection solution, 2 x 0.5 mL syringes 917661000168109 Imigran 6 mg/0.5 mL injection solution, 0.5 mL syringe 30771000168105 Imigran 30771000168105 Imigran 78246011000036102 sumatriptan 6 mg/0.5 mL injection, 2 x 0.5 mL syringes 77570011000036104 sumatriptan 6 mg/0.5 mL injection, syringe 21708011000036102 sumatriptan +61301011000036102 Hair A-Gain 5% application, 5 x 60 mL, bottles 79607 57237011000036106 Hair A-Gain 5% application, 5 x 60 mL 54249011000036105 Hair A-Gain 5% application 53423011000036106 Hair A-Gain 53423011000036106 Hair A-Gain 63775011000036102 minoxidil 5% application, 5 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +82350011000036102 Maxolon 10 mg uncoated tablet, 100, blister pack 11153 82118011000036100 Maxolon 10 mg uncoated tablet, 100 5187011000036108 Maxolon 10 mg uncoated tablet 3971011000036104 Maxolon 3971011000036104 Maxolon 82561011000036104 metoclopramide hydrochloride 10 mg tablet, 100 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +1115001000168105 Stilnoxium CR 12.5 mg modified release tablet, 10, blister pack 120714 1114991000168104 Stilnoxium CR 12.5 mg modified release tablet, 10 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46183011000036103 zolpidem tartrate 12.5 mg modified release tablet, 10 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +20634011000036101 Ciprofloxacin (Sandoz) 500 mg film-coated tablet, 14, blister pack 81461 13814011000036104 Ciprofloxacin (Sandoz) 500 mg film-coated tablet, 14 7100011000036105 Ciprofloxacin (Sandoz) 500 mg film-coated tablet 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +20634011000036101 Ciprofloxacin (Sandoz) 500 mg film-coated tablet, 14, blister pack 81218 13814011000036104 Ciprofloxacin (Sandoz) 500 mg film-coated tablet, 14 7100011000036105 Ciprofloxacin (Sandoz) 500 mg film-coated tablet 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +44501011000036103 Cefotaxime (Sandoz) 500 mg powder for injection, 10 vials 76431 41956011000036100 Cefotaxime (Sandoz) 500 mg powder for injection, 10 vials 40285011000036107 Cefotaxime (Sandoz) 500 mg powder for injection, 500 mg vial 4148011000036105 Cefotaxime (Sandoz) 4148011000036105 Cefotaxime (Sandoz) 46755011000036103 cefotaxime 500 mg injection, 10 vials 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +716391000168100 Pemzo 20 mg enteric capsule, 15, bottle 167315 716351000168105 Pemzo 20 mg enteric capsule, 15 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716341000168108 omeprazole 20 mg enteric capsule, 15 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +990541000168107 Lyrica 50 mg hard capsule, 14, blister pack 99479 990531000168103 Lyrica 50 mg hard capsule, 14 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +919891000168108 Nutrini Peptisorb Energy oral liquid solution, 8 x 500 mL pouches 919881000168105 Nutrini Peptisorb Energy oral liquid solution, 8 x 500 mL pouches 919871000168107 Nutrini Peptisorb Energy oral liquid solution, 500 mL pouch 919861000168101 Nutrini Peptisorb Energy 919861000168101 Nutrini Peptisorb Energy 710211000168104 protein formula with carbohydrate, fat, vitamins and minerals oral liquid, 8 x 500 mL pouches 710171000168101 protein formula with carbohydrate, fat, vitamins and minerals oral liquid, 500 mL pouch 710151000168105 protein formula with carbohydrate, fat, vitamins and minerals +50541011000036102 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 30, blister pack 131918 49578011000036102 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 30 48778011000036103 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet 48261011000036105 Zolpidem Tartrate (Pharmacor) 48261011000036105 Zolpidem Tartrate (Pharmacor) 51486011000036103 zolpidem tartrate 10 mg tablet, 30 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +83378011000036106 Oxaliplatin (Link Medical Products) 100 mg powder for injection, 1 vial 148407 83310011000036101 Oxaliplatin (Link Medical Products) 100 mg powder for injection, 1 vial 83244011000036105 Oxaliplatin (Link Medical Products) 100 mg powder for injection, 100 mg vial 83235011000036108 Oxaliplatin (Link Medical Products) 83235011000036108 Oxaliplatin (Link Medical Products) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +43927011000036107 Pravastatin Sodium (GA) 40 mg film-coated tablet, 30, blister pack 139605 41419011000036101 Pravastatin Sodium (GA) 40 mg film-coated tablet, 30 39876011000036103 Pravastatin Sodium (GA) 40 mg film-coated tablet 39737011000036101 Pravastatin Sodium (GA) 39737011000036101 Pravastatin Sodium (GA) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +43927011000036107 Pravastatin Sodium (GA) 40 mg film-coated tablet, 30, blister pack 207993 41419011000036101 Pravastatin Sodium (GA) 40 mg film-coated tablet, 30 39876011000036103 Pravastatin Sodium (GA) 40 mg film-coated tablet 39737011000036101 Pravastatin Sodium (GA) 39737011000036101 Pravastatin Sodium (GA) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +44416011000036101 Midazolam (DBL) 15 mg/3 mL injection, 5 x 3 mL ampoules 70944 41875011000036101 Midazolam (DBL) 15 mg/3 mL injection, 5 x 3 mL ampoules 40233011000036103 Midazolam (DBL) 15 mg/3 mL injection, 3 mL ampoule 39659011000036101 Midazolam (DBL) 39659011000036101 Midazolam (DBL) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +780921000168101 Fentanyl (Apo) 37 microgram/hour patch, 8, sachet 152566 780911000168108 Fentanyl (Apo) 37 microgram/hour patch, 8 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780901000168105 fentanyl 37 microgram/hour patch, 8 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +1061431000168101 Olanzapine (Auro) 2.5 mg uncoated tablet, 30, bottle 179936 1061421000168104 Olanzapine (Auro) 2.5 mg uncoated tablet, 30 713801000168106 Olanzapine (Auro) 2.5 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 89731000036103 olanzapine 2.5 mg tablet, 30 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +44107011000036102 Voltaren Ophtha 0.1% eye drops solution, 100 x 0.3 mL unit doses, ampoule 51527 41586011000036102 Voltaren Ophtha 0.1% eye drops solution, 100 x 0.3 mL unit doses 40087011000036107 Voltaren Ophtha 0.1% eye drops solution, 0.3 mL unit dose 39691011000036109 Voltaren Ophtha 39691011000036109 Voltaren Ophtha 46414011000036104 diclofenac sodium 0.1% eye drops, 100 x 0.3 mL unit doses 45142011000036102 diclofenac sodium 0.1% eye drops, unit dose 21288011000036105 diclofenac +69534011000036100 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 57011 67334011000036109 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 65616011000036100 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) irrigation solution, 30 mL ampoule 41531000168108 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) 41531000168108 Chlorhexidine Gluconate 0.05% and Cetrimide 0.5% (Pfizer (Perth)) 71879011000036109 chlorhexidine gluconate 0.05% + cetrimide 0.5% solution, 30 mL ampoule 70229011000036106 chlorhexidine gluconate 0.05% + cetrimide 0.5% solution, ampoule 69756011000036105 chlorhexidine + cetrimide +700029931000036101 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13004011000036102 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6291011000036101 Brevinor-1 28 Day (inert substance) uncoated tablet 700011851000036108 Brevinor-1 28 Day 700011851000036108 Brevinor-1 28 Day 28354011000036108 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029931000036101 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13004011000036102 Brevinor-1 28 Day (21 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6290011000036108 Brevinor-1 28 Day (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 700011851000036108 Brevinor-1 28 Day 700011851000036108 Brevinor-1 28 Day 28354011000036108 norethisterone 1 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +19434011000036101 Lioresal 10 mg/5 mL intrathecal injection, 5 mL ampoule 53836 12716011000036100 Lioresal 10 mg/5 mL intrathecal injection, 5 mL ampoule 5118011000036106 Lioresal 10 mg/5 mL intrathecal injection, 5 mL ampoule 3860011000036106 Lioresal 3860011000036106 Lioresal 27308011000036101 baclofen 10 mg/5 mL intrathecal injection, 5 mL ampoule 22661011000036102 baclofen 10 mg/5 mL intrathecal injection, ampoule 21227011000036102 baclofen +44475011000036103 Orgalutran 250 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 74931 41931011000036106 Orgalutran 250 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 40271011000036102 Orgalutran 250 microgram/0.5 mL injection solution, 0.5 mL syringe 39579011000036106 Orgalutran 39579011000036106 Orgalutran 46718011000036104 ganirelix 250 microgram/0.5 mL injection, 5 x 0.5 mL syringes 45281011000036103 ganirelix 250 microgram/0.5 mL injection, syringe 44862011000036109 ganirelix +859771000168103 Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60, bottle 208475 859761000168109 Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60 859751000168107 Cal-500 1.25 g (calcium 500 mg) chewable tablet 652251000168104 Cal-500 652251000168104 Cal-500 859721000168104 calcium carbonate 1.25 g (calcium 500 mg) chewable tablet, 60 859701000168108 calcium carbonate 1.25 g (calcium 500 mg) chewable tablet 745551000168101 calcium +986521000168103 Advil Double Strength Liquid Capsules 400 mg soft capsule, 50, blister pack 207293 986511000168105 Advil Double Strength Liquid Capsules 400 mg soft capsule, 50 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986501000168107 ibuprofen 400 mg capsule, 50 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +21028011000036107 Emtriva 200 mg hard capsule, 30, blister pack 96427 14173011000036103 Emtriva 200 mg hard capsule, 30 7453011000036106 Emtriva 200 mg hard capsule 4191011000036107 Emtriva 4191011000036107 Emtriva 28189011000036106 emtricitabine 200 mg capsule, 30 23500011000036109 emtricitabine 200 mg capsule 21873011000036104 emtricitabine +742411000168106 Voriconazole (Sandoz) 200 mg film-coated tablet, 56, blister pack 207785 742401000168108 Voriconazole (Sandoz) 200 mg film-coated tablet, 56 742391000168106 Voriconazole (Sandoz) 200 mg film-coated tablet 742381000168108 Voriconazole (Sandoz) 742381000168108 Voriconazole (Sandoz) 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +84406011000036105 Qpril 20 mg film-coated tablet, 30, blister pack 96924 84097011000036104 Qpril 20 mg film-coated tablet, 30 83711011000036107 Qpril 20 mg film-coated tablet 83545011000036104 Qpril 83545011000036104 Qpril 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +18089011000036101 Neorecormon 3000 units/0.3 mL injection, 6 x 0.3 mL syringes 104263 11275011000036107 Neorecormon 3000 units/0.3 mL injection, 6 x 0.3 mL syringes 4555011000036105 Neorecormon 3000 units/0.3 mL injection, 0.3 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26586011000036101 epoetin beta 3000 units/0.3 mL injection, 6 x 0.3 mL syringes 21994011000036100 epoetin beta 3000 units/0.3 mL injection, syringe 21625011000036109 epoetin beta +38491000036107 Escitalupin 10 mg film-coated tablet, 200, bottle 165853 34821000036104 Escitalupin 10 mg film-coated tablet, 200 33071000036105 Escitalupin 10 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +933212551000036108 Ranitidine (GN) 300 mg film-coated tablet, 14, blister pack 148526 933202231000036100 Ranitidine (GN) 300 mg film-coated tablet, 14 933195281000036109 Ranitidine (GN) 300 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +825551000168102 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 123710 825541000168104 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 825521000168105 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 31101000168108 Engerix-B Paediatric 31101000168108 Engerix-B Paediatric 825531000168108 hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL vials 825511000168103 hepatitis B child vaccine 10 microgram/0.5 mL injection, vial 825191000168101 hepatitis B vaccine +69217011000036106 Chlorhexidine Acetate (Baxter) 0.02% (200 mg/L) irrigation solution, 1 L bottle 19459 67017011000036109 Chlorhexidine Acetate (Baxter) 0.02% (200 mg/L) irrigation solution, 1 L bottle 65343011000036107 Chlorhexidine Acetate (Baxter) 0.02% (200 mg/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71587011000036109 chlorhexidine acetate 0.02% (200 mg/L) solution, 1 L bottle 70079011000036102 chlorhexidine acetate 0.02% (200 mg/L) solution, bottle 21404011000036101 chlorhexidine +990861000168108 Lyrica 50 mg hard capsule, 20, bottle 99480 990551000168109 Lyrica 50 mg hard capsule, 20 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 902701000168102 pregabalin 50 mg capsule, 20 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +793531000168103 Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial 77219 793521000168101 Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial 793501000168105 Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 567.8 mg vial 4332011000036101 Etopophos 4332011000036101 Etopophos 793511000168108 etoposide phosphate 567.8 mg (etoposide 500 mg) injection, 1 vial 793491000168103 etoposide phosphate 567.8 mg (etoposide 500 mg) injection, vial 21469011000036104 etoposide +933247101000036106 Omeprazole (PS) 20 mg enteric tablet, 10, blister pack 159688 933244091000036106 Omeprazole (PS) 20 mg enteric tablet, 10 933241511000036105 Omeprazole (PS) 20 mg enteric tablet 933240931000036101 Omeprazole (PS) 933240931000036101 Omeprazole (PS) 79830011000036105 omeprazole 20 mg enteric tablet, 10 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +789521000168100 Oxycodone (HX) 20 mg modified release tablet, 60, bottle 153589 789511000168107 Oxycodone (HX) 20 mg modified release tablet, 60 789461000168109 Oxycodone (HX) 20 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +19828011000036102 Cytotec 200 microgram uncoated tablet, 120, blister pack 63983 13079011000036108 Cytotec 200 microgram uncoated tablet, 120 6363011000036108 Cytotec 200 microgram uncoated tablet 4067011000036106 Cytotec 4067011000036106 Cytotec 27536011000036106 misoprostol 200 microgram tablet, 120 22876011000036106 misoprostol 200 microgram tablet 21520011000036107 misoprostol +853671000168105 Alledine 10 mg uncoated tablet, 10, blister pack 121135 853661000168104 Alledine 10 mg uncoated tablet, 10 853651000168101 Alledine 10 mg uncoated tablet 853641000168103 Alledine 853641000168103 Alledine 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +1080841000168100 Claratyne Children's 5 mg chewable tablet, 30, blister pack 169329 1080831000168109 Claratyne Children's 5 mg chewable tablet, 30 930070011000036102 Claratyne Children's 5 mg chewable tablet 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 1080821000168106 loratadine 5 mg chewable tablet, 30 931862011000036104 loratadine 5 mg chewable tablet 21701011000036106 loratadine +1093491000168100 Voltaren Emulgel No Mess Applicator 1.16% gel, 2 x 100 g, tubes 282516 1093481000168103 Voltaren Emulgel No Mess Applicator 1.16% gel, 2 x 100 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1093471000168101 diclofenac diethylamine 1.16% gel, 2 x 100 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +55921000036107 Cold and Flu Day and Night Relief (Trust) (16 x Day tablets, 8 x Night tablets), 24, blister pack 151639 51421000036101 Cold and Flu Day and Night Relief (Trust) (16 x Day tablets, 8 x Night tablets), 24 48631000036107 Cold and Flu Day and Night Relief (Day) (Trust) uncoated tablet 48231000036109 Cold and Flu Day and Night Relief (Trust) 18951000168109 Cold and Flu Day and Night Relief (Day) (Trust) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +55921000036107 Cold and Flu Day and Night Relief (Trust) (16 x Day tablets, 8 x Night tablets), 24, blister pack 151639 51421000036101 Cold and Flu Day and Night Relief (Trust) (16 x Day tablets, 8 x Night tablets), 24 48571000036108 Cold and Flu Day and Night Relief (Night) (Trust) uncoated tablet 48231000036109 Cold and Flu Day and Night Relief (Trust) 19071000168109 Cold and Flu Day and Night Relief (Night) (Trust) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +1106281000168103 Alodorm 5 mg uncoated tablet, 50, bottle 54009 1106271000168101 Alodorm 5 mg uncoated tablet, 50 5420011000036103 Alodorm 5 mg uncoated tablet 4413011000036106 Alodorm 4413011000036106 Alodorm 1106261000168107 nitrazepam 5 mg tablet, 50 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +712281000168106 Emend IV 150 mg powder for injection, 1 vial 167061 712271000168108 Emend IV 150 mg powder for injection, 1 vial 712251000168104 Emend IV 150 mg powder for injection, 150 mg vial 920921011000036103 Emend IV 920921011000036103 Emend IV 712261000168102 fosaprepitant 150 mg injection, 1 vial 712241000168101 fosaprepitant 150 mg injection, vial 922053011000036103 fosaprepitant +37408011000036105 Etoposide (Pfizer (Perth)) 100 mg/5 mL concentrated injection, 5 mL vial 11365 36666011000036107 Etoposide (Pfizer (Perth)) 100 mg/5 mL concentrated injection, 5 mL vial 36067011000036102 Etoposide (Pfizer (Perth)) 100 mg/5 mL concentrated injection, 5 mL vial 35872011000036109 Etoposide (Pfizer (Perth)) 35872011000036109 Etoposide (Pfizer (Perth)) 28192011000036100 etoposide 100 mg/5 mL injection, 5 mL vial 23503011000036101 etoposide 100 mg/5 mL injection, vial 21469011000036104 etoposide +845061000168106 Asacol 800 mg enteric tablet, 90, blister pack 261420 845051000168109 Asacol 800 mg enteric tablet, 90 845001000168105 Asacol 800 mg enteric tablet 844981000168102 Asacol 844981000168102 Asacol 845041000168107 mesalazine 800 mg enteric tablet, 90 844991000168104 mesalazine 800 mg enteric tablet 21351011000036101 mesalazine +1042021000168108 Atorvastatin (AS) 40 mg film-coated tablet, 20, blister pack 178541 1042011000168101 Atorvastatin (AS) 40 mg film-coated tablet, 20 1041981000168104 Atorvastatin (AS) 40 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841671000168109 atorvastatin 40 mg tablet, 20 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +960641000168105 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet, 2, blister pack 255073 960631000168101 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet, 2 960621000168104 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet 960611000168106 Amoxicillin Clavulanic Acid 875/125 (Mylan) 960611000168106 Amoxicillin Clavulanic Acid 875/125 (Mylan) 913921000168101 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 2 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1110621000168100 Dormizol CR 12.5 mg modified release tablet, 7, blister pack 120715 1110611000168107 Dormizol CR 12.5 mg modified release tablet, 7 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46190011000036107 zolpidem tartrate 12.5 mg modified release tablet, 7 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +652241000168101 Quetia 100 mg film-coated tablet, 20, blister pack 204154 652231000168105 Quetia 100 mg film-coated tablet, 20 652191000168101 Quetia 100 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +43739011000036105 Fosrenol 500 mg chewable tablet, 45, bottle 106960 41146011000036104 Fosrenol 500 mg chewable tablet, 45 39926011000036107 Fosrenol 500 mg chewable tablet 39719011000036101 Fosrenol 39719011000036101 Fosrenol 46118011000036105 lanthanum 500 mg chewable tablet, 45 44995011000036107 lanthanum 500 mg chewable tablet 44962011000036102 lanthanum +782851000168102 Palexia IR 50 mg film-coated tablet, 30, blister pack 165310 782841000168104 Palexia IR 50 mg film-coated tablet, 30 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782831000168108 tapentadol 50 mg tablet, 30 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +917791000168108 Isordil 30 mg uncoated tablet, 100, bottle 40249 917781000168105 Isordil 30 mg uncoated tablet, 100 917731000168109 Isordil 30 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 917771000168107 isosorbide dinitrate 30 mg tablet, 100 917721000168106 isosorbide dinitrate 30 mg tablet 21865011000036107 isosorbide dinitrate +939301000168103 Celecoxib (Pfizer) 200 mg hard capsule, 30, blister pack 211501 939291000168104 Celecoxib (Pfizer) 200 mg hard capsule, 30 939241000168107 Celecoxib (Pfizer) 200 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +18338011000036103 Clorprax 150 mg modified release tablet, 90, blister pack 119664 11625011000036105 Clorprax 150 mg modified release tablet, 90 4500011000036109 Clorprax 150 mg modified release tablet 3856011000036101 Clorprax 3856011000036101 Clorprax 27772011000036106 bupropion hydrochloride 150 mg modified release tablet, 90 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +1117011000168104 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 28, blister pack 161826 1117001000168102 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 28 1116951000168104 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 925436011000036101 amlodipine 10 mg + valsartan 320 mg tablet, 28 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +933214791000036104 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 100, bottle 163564 933204391000036103 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 100 933195521000036105 Pravastatin Sodium (RZ) 10 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932414011000036100 pravastatin sodium 10 mg tablet, 100 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +20976011000036108 Zimstat 10 mg film-coated tablet, 30, bottle 95678 14122011000036109 Zimstat 10 mg film-coated tablet, 30 7399011000036109 Zimstat 10 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +38561000036101 Escitalopram (Lupin) 15 mg film-coated tablet, 100, bottle 165857 34891000036101 Escitalopram (Lupin) 15 mg film-coated tablet, 100 32901000036108 Escitalopram (Lupin) 15 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +808611000168100 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 30, blister pack 184819 808211000168103 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 30 808171000168100 Perindopril Arginine (Apo) 2.5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +933215471000036105 Olanzapine IM (LY) 10 mg powder for injection, 1 vial 167677 933204921000036102 Olanzapine IM (LY) 10 mg powder for injection, 1 vial 933196111000036101 Olanzapine IM (LY) 10 mg powder for injection, 10 mg vial 52601000168106 Olanzapine IM (LY) 52601000168106 Olanzapine IM (LY) 46745011000036101 olanzapine 10 mg injection, 1 vial 45297011000036107 olanzapine 10 mg injection, vial 21485011000036103 olanzapine +19383011000036103 Pexsig 100 mg uncoated tablet, 100, bottle 52182 12670011000036101 Pexsig 100 mg uncoated tablet, 100 4829011000036107 Pexsig 100 mg uncoated tablet 4304011000036102 Pexsig 4304011000036102 Pexsig 27273011000036108 perhexiline maleate 100 mg tablet, 100 22628011000036104 perhexiline maleate 100 mg tablet 21517011000036104 perhexiline +720801000168105 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials 22868 720791000168109 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials 720781000168106 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 2 mL vial 53361000168107 Sodium Selenate Decahydrate (Phebra) 53361000168107 Sodium Selenate Decahydrate (Phebra) 38784011000036102 sodium selenate decahydrate 467 microgram/2 mL injection, 5 x 2 mL vials 37997011000036108 sodium selenate decahydrate 467 microgram/2 mL injection, vial 32671011000036106 selenium +1080601000168103 Sorbolene Cream with 10% Glycerine (David Craig) cream, 500 g, jar 1080591000168105 Sorbolene Cream with 10% Glycerine (David Craig) cream, 500 g 1080581000168107 Sorbolene Cream with 10% Glycerine (David Craig) cream 1080561000168103 Sorbolene Cream with 10% Glycerine (David Craig) 1080561000168103 Sorbolene Cream with 10% Glycerine (David Craig) 705801000168105 glycerol 10% + cetomacrogol aqueous cream, 500 g 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +923766011000036106 Azith 500 mg powder for injection, 1 vial 146755 923288011000036103 Azith 500 mg powder for injection, 1 vial 922977011000036104 Azith 500 mg powder for injection, 500 mg vial 922932011000036104 Azith 922932011000036104 Azith 46892011000036101 azithromycin 500 mg injection, 1 vial 45336011000036107 azithromycin 500 mg injection, vial 21518011000036103 azithromycin +929660011000036102 Fluoxetine (RBX) 20 mg hard capsule, 28, blister pack 146606 929496011000036104 Fluoxetine (RBX) 20 mg hard capsule, 28 929396011000036105 Fluoxetine (RBX) 20 mg hard capsule 929374011000036105 Fluoxetine (RBX) 929374011000036105 Fluoxetine (RBX) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +1059181000168100 Diclofenac (Pharmacor) 50 mg enteric tablet, 10, blister pack 272887 1059171000168103 Diclofenac (Pharmacor) 50 mg enteric tablet, 10 1059161000168109 Diclofenac (Pharmacor) 50 mg enteric tablet 1059151000168107 Diclofenac (Pharmacor) 1059151000168107 Diclofenac (Pharmacor) 46590011000036101 diclofenac sodium 50 mg enteric tablet, 10 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +785031000168107 Ondansetron (GH) 8 mg film-coated tablet, 6, blister pack 231646 785001000168100 Ondansetron (GH) 8 mg film-coated tablet, 6 784951000168101 Ondansetron (GH) 8 mg film-coated tablet 784771000168108 Ondansetron (GH) 784771000168108 Ondansetron (GH) 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +986361000168102 Advil Double Strength Liquid Capsules 400 mg soft capsule, 20, blister pack 207293 986351000168104 Advil Double Strength Liquid Capsules 400 mg soft capsule, 20 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986341000168101 ibuprofen 400 mg capsule, 20 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +933229911000036104 Clopidogrel 75 mg plus Aspirin 100 mg (Winthrop) film-coated tablet, 30, blister pack 150470 933223711000036104 Clopidogrel 75 mg plus Aspirin 100 mg (Winthrop) film-coated tablet, 30 933219741000036106 Clopidogrel 75 mg plus Aspirin 100 mg (Winthrop) film-coated tablet 50701000168101 Clopidogrel 75 mg plus Aspirin 100 mg (Winthrop) 50701000168101 Clopidogrel 75 mg plus Aspirin 100 mg (Winthrop) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +933247031000036103 Prezista 600 mg film-coated tablet, 60, bottle 153628 933243441000036106 Prezista 600 mg film-coated tablet, 60 933241371000036107 Prezista 600 mg film-coated tablet 32180011000036106 Prezista 32180011000036106 Prezista 933243451000036109 darunavir 600 mg tablet, 60 933241381000036109 darunavir 600 mg tablet 32622011000036101 darunavir +842771000168107 Invite E High Potency Vitamin E 96% oil, 30 mL, bottle 18863 842761000168101 Invite E High Potency Vitamin E 96% oil, 30 mL 842741000168100 Invite E High Potency Vitamin E 96% oil 76013011000036102 Invite E High Potency Vitamin E 76013011000036102 Invite E High Potency Vitamin E 842751000168103 dl-alpha-tocopheryl acetate 96% oil, 30 mL 842731000168109 dl-alpha-tocopheryl acetate 96% oil 77461011000036109 dl-alpha-tocopherol +1010031000168102 Sildenafil (Apotex) 25 mg film-coated tablet, 4, blister pack 164804 1010021000168100 Sildenafil (Apotex) 25 mg film-coated tablet, 4 1009991000168105 Sildenafil (Apotex) 25 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +716551000168103 Omepro 20 mg enteric capsule, 28, bottle 167314 716531000168109 Omepro 20 mg enteric capsule, 28 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716411000168100 omeprazole 20 mg enteric capsule, 28 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +55851000036107 Tortrigine DT 25 mg tablet, 56, blister pack 150767 51311000036103 Tortrigine DT 25 mg tablet, 56 49351000036103 Tortrigine DT 25 mg tablet 36451000168106 Tortrigine DT 36451000168106 Tortrigine DT 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +851411000168100 Entecavir (Amneal) 500 microgram film-coated tablet, 30, blister pack 259912 851401000168103 Entecavir (Amneal) 500 microgram film-coated tablet, 30 851391000168100 Entecavir (Amneal) 500 microgram film-coated tablet 851331000168104 Entecavir (Amneal) 851331000168104 Entecavir (Amneal) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +19357011000036101 Largactil 100 mg film-coated tablet, 100, blister pack 51619 12644011000036105 Largactil 100 mg film-coated tablet, 100 5783011000036107 Largactil 100 mg film-coated tablet 36041000168104 Largactil 36041000168104 Largactil 27253011000036105 chlorpromazine hydrochloride 100 mg tablet, 100 22611011000036101 chlorpromazine hydrochloride 100 mg tablet 21310011000036102 chlorpromazine +30606011000036100 Amoxil Sugar Free 125 mg/5 mL powder for oral liquid, 100 mL, bottle 56820 30582011000036109 Amoxil Sugar Free 125 mg/5 mL powder for oral liquid, 100 mL 5157011000036102 Amoxil Sugar Free 125 mg/5 mL powder for oral liquid, 5 mL 3738011000036101 Amoxil 3738011000036101 Amoxil 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +30606011000036100 Amoxil Sugar Free 125 mg/5 mL powder for oral liquid, 100 mL, bottle 11133 30582011000036109 Amoxil Sugar Free 125 mg/5 mL powder for oral liquid, 100 mL 5157011000036102 Amoxil Sugar Free 125 mg/5 mL powder for oral liquid, 5 mL 3738011000036101 Amoxil 3738011000036101 Amoxil 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +928957011000036108 Demazin Decongestant Paediatric 0.025% nasal drops solution, 15 mL, bottle 156245 928318011000036107 Demazin Decongestant Paediatric 0.025% nasal drops solution, 15 mL 927947011000036100 Demazin Decongestant Paediatric 0.025% nasal drops solution 60491000168105 Demazin Decongestant Paediatric 60491000168105 Demazin Decongestant Paediatric 63418011000036108 oxymetazoline hydrochloride 0.025% nasal drops, 15 mL 61952011000036108 oxymetazoline hydrochloride 0.025% nasal drops 21364011000036106 oxymetazoline +789281000168104 Abisart 150 mg film-coated tablet, 14, bottle 214580 789271000168102 Abisart 150 mg film-coated tablet, 14 98721000036106 Abisart 150 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 777611000168109 irbesartan 150 mg tablet, 14 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +933246941000036109 Pantoprazole (PS) 40 mg enteric tablet, 15, blister pack 158197 933243771000036107 Pantoprazole (PS) 40 mg enteric tablet, 15 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46656011000036103 pantoprazole 40 mg enteric tablet, 15 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +19674011000036101 Captohexal 12.5 mg film-coated tablet, 90, bottle 60100 12978011000036103 Captohexal 12.5 mg film-coated tablet, 90 6267011000036106 Captohexal 12.5 mg film-coated tablet 4103011000036105 Captohexal 4103011000036105 Captohexal 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +992871000168101 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 2, blister pack 201680 992861000168107 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 2 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992851000168105 clopidogrel 75 mg + aspirin 75 mg tablet, 2 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +931510011000036100 Smoflipid 20% intravenous infusion injection, 100 mL, bag 158359 930671011000036102 Smoflipid 20% intravenous infusion injection, 100 mL 930002011000036106 Smoflipid 20% intravenous infusion injection, 100 mL bag 29901000168108 Smoflipid 20% 29901000168108 Smoflipid 20% 932391011000036106 soya oil 6 g/100 mL + medium chain triglycerides 6 g/100 mL + olive oil 5 g/100 mL + fish oil natural 3 g/100 mL injection, 100 mL 931844011000036103 soya oil 6 g/100 mL + medium chain triglycerides 6 g/100 mL + olive oil 5 g/100 mL + fish oil natural 3 g/100 mL injection, bag 931792011000036103 soya oil + medium chain triglycerides + olive oil + fish oil natural +18261011000036108 Filpril 10 mg film-coated tablet, 30, blister pack 123435 11741011000036104 Filpril 10 mg film-coated tablet, 30 5771011000036103 Filpril 10 mg film-coated tablet 2908011000036108 Filpril 2908011000036108 Filpril 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +808691000168109 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet, 100, blister pack 184807 808681000168106 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet, 100 808631000168105 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 806601000168102 perindopril arginine 2.5 mg tablet, 100 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +849241000168101 Vzole 50 mg film-coated tablet, 28, blister pack 238239 849231000168105 Vzole 50 mg film-coated tablet, 28 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46816011000036101 voriconazole 50 mg tablet, 28 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +905061000168106 Amisulpride (AJS) 100 mg uncoated tablet, 30, blister pack 234695 905051000168109 Amisulpride (AJS) 100 mg uncoated tablet, 30 905041000168107 Amisulpride (AJS) 100 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +50515011000036109 Handy Gauze (5674) 10 cm x 10 cm pad, 100, carton 49425011000036101 Handy Gauze (5674) 10 cm x 10 cm pad, 100 48756011000036104 Handy Gauze (5674) 10 cm x 10 cm pad 42811000168108 Handy Gauze (5674) 42811000168108 Handy Gauze (5674) 51393011000036102 dressing gauze absorbent 10 cm x 10 cm pad, 100 50914011000036101 dressing gauze absorbent 10 cm x 10 cm pad 50763011000036108 dressing gauze absorbent +933059011000036109 Vinorelbine (Kabi) 10 mg/mL concentrated injection, 10 x 1 mL vials 144030 932861011000036106 Vinorelbine (Kabi) 10 mg/mL concentrated injection, 10 x 1 mL vials 932742011000036105 Vinorelbine (Kabi) 10 mg/mL concentrated injection, vial 932704011000036105 Vinorelbine (Kabi) 932704011000036105 Vinorelbine (Kabi) 46712011000036102 vinorelbine 10 mg/mL injection, 10 x 1 mL vials 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +928491000168108 Cavstat 10 mg film-coated tablet, 500, bottle 234548 928481000168105 Cavstat 10 mg film-coated tablet, 500 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 928471000168107 rosuvastatin 10 mg tablet, 500 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1007861000168101 Zetin 10 mg hard capsule, 100, blister pack 196005 1007851000168103 Zetin 10 mg hard capsule, 100 1007841000168100 Zetin 10 mg hard capsule 1007831000168109 Zetin 1007831000168109 Zetin 27277011000036104 acitretin 10 mg capsule, 100 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +1110661000168105 Dormizol CR 12.5 mg modified release tablet, 14, blister pack 120715 1110651000168108 Dormizol CR 12.5 mg modified release tablet, 14 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46185011000036102 zolpidem tartrate 12.5 mg modified release tablet, 14 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +926728011000036108 Provive 1% 200 mg/20 mL injection emulsion, 5 x 20 mL vials 118938 926112011000036105 Provive 1% 200 mg/20 mL injection emulsion, 5 x 20 mL vials 925629011000036106 Provive 1% 200 mg/20 mL injection emulsion, 20 mL vial 7831000168105 Provive 1% 7831000168105 Provive 1% 927311011000036108 propofol 200 mg/20 mL injection, 5 x 20 mL vials 38040011000036103 propofol 200 mg/20 mL injection, vial 37750011000036109 propofol +69140011000036104 Nicotinell Classic 4 mg chewing gum, 180, blister pack 152894 66940011000036105 Nicotinell Classic 4 mg chewing gum, 180 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71517011000036106 nicotine 4 mg gum, 180 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1009871000168104 Topiramate (AN) 50 mg film-coated tablet, 60, blister pack 157968 686071000168106 Topiramate (AN) 50 mg film-coated tablet, 60 686061000168100 Topiramate (AN) 50 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +933214831000036107 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 100, bottle 163565 933204431000036107 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 100 933195531000036107 Pravastatin Sodium (RZ) 20 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +19092011000036105 Ciloxan 0.3% eye drops solution, 5 mL, bottle 42899 12398011000036103 Ciloxan 0.3% eye drops solution, 5 mL 5774011000036100 Ciloxan 0.3% eye drops solution 3615011000036106 Ciloxan 3615011000036106 Ciloxan 27583011000036108 ciprofloxacin 0.3% eye drops, 5 mL 22922011000036101 ciprofloxacin 0.3% eye drops 21245011000036105 ciprofloxacin +73252011000036103 Zemplar 10 microgram/2 mL injection solution, 5 x 2 mL ampoules 131743 73055011000036103 Zemplar 10 microgram/2 mL injection solution, 5 x 2 mL ampoules 72941011000036100 Zemplar 10 microgram/2 mL injection solution, 2 mL ampoule 39753011000036109 Zemplar 39753011000036109 Zemplar 73460011000036108 paricalcitol 10 microgram/2 mL injection, 5 x 2 mL ampoules 73367011000036103 paricalcitol 10 microgram/2 mL injection, ampoule 44899011000036102 paricalcitol +59870011000036106 Period Pain (Chemists' Own) 275 mg film-coated tablet, 12, blister pack 115773 55832011000036101 Period Pain (Chemists' Own) 275 mg film-coated tablet, 12 53662011000036108 Period Pain (Chemists' Own) 275 mg film-coated tablet 53350011000036109 Period Pain (Chemists' Own) 53350011000036109 Period Pain (Chemists' Own) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +1007701000168109 Novacodone 40 mg modified release tablet, 28, blister pack 227944 1007691000168109 Novacodone 40 mg modified release tablet, 28 1007661000168102 Novacodone 40 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +1054861000168100 Palexia SR 250 mg modified release tablet, 40, blister pack 165357 1054851000168102 Palexia SR 250 mg modified release tablet, 40 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054841000168104 tapentadol 250 mg modified release tablet, 40 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +20317011000036107 PV Carpine 2% eye drops solution, 15 mL, bottle 75894 13526011000036103 PV Carpine 2% eye drops solution, 15 mL 6809011000036107 PV Carpine 2% eye drops solution 3091011000036103 PV Carpine 3091011000036103 PV Carpine 27789011000036107 pilocarpine hydrochloride 2% eye drops, 15 mL 23119011000036105 pilocarpine hydrochloride 2% eye drops 21254011000036109 pilocarpine +992711000168101 Lyrica 100 mg hard capsule, 14, blister pack 99524 991191000168102 Lyrica 100 mg hard capsule, 14 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +44707011000036105 Famohexal 40 mg film-coated tablet, 30, bottle 94333 14097011000036108 Famohexal 40 mg film-coated tablet, 30 7374011000036100 Famohexal 40 mg film-coated tablet 3772011000036101 Famohexal 3772011000036101 Famohexal 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +1114961000168106 Quetiapine (Ascent) 25 mg film-coated tablet, 20, blister pack 202258 1114951000168109 Quetiapine (Ascent) 25 mg film-coated tablet, 20 1114891000168106 Quetiapine (Ascent) 25 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1116971000168108 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 7, blister pack 161826 1116961000168102 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 7 1116951000168104 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 925439011000036105 amlodipine 10 mg + valsartan 320 mg tablet, 7 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +38651000036100 Escitalopram (Generic Health) 15 mg film-coated tablet, 100, bottle 165863 35021000036105 Escitalopram (Generic Health) 15 mg film-coated tablet, 100 32811000036102 Escitalopram (Generic Health) 15 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +80979011000036107 Resdone 4 mg film-coated tablet, 60, blister pack 147676 80551011000036102 Resdone 4 mg film-coated tablet, 60 80186011000036107 Resdone 4 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +933247261000036102 Saizen 12 mg/1.5 mL injection solution, 1.5 mL cartridge 166478 933243951000036100 Saizen 12 mg/1.5 mL injection solution, 1.5 mL cartridge 933241591000036100 Saizen 12 mg/1.5 mL injection solution, 1.5 mL cartridge 35491000168107 Saizen 35491000168107 Saizen 933243961000036102 somatropin 12 mg/1.5 mL injection, 1.5 mL cartridge 933241601000036107 somatropin 12 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +788961000168109 Diabex XR 750 mg modified release tablet, 30, blister pack 142230 788951000168107 Diabex XR 750 mg modified release tablet, 30 788901000168108 Diabex XR 750 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 788941000168105 metformin hydrochloride 750 mg modified release tablet, 30 788891000168109 metformin hydrochloride 750 mg modified release tablet 21614011000036102 metformin +1119531000168108 Quetiapine XR (Actavis) 200 mg modified release tablet, 30, blister pack 226801 1119521000168105 Quetiapine XR (Actavis) 200 mg modified release tablet, 30 1119461000168101 Quetiapine XR (Actavis) 200 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 790941000168106 quetiapine 200 mg modified release tablet, 30 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +20051011000036106 Glucohexal 850 mg film-coated tablet, 60, blister pack 69658 13282011000036101 Glucohexal 850 mg film-coated tablet, 60 6565011000036107 Glucohexal 850 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +20051011000036106 Glucohexal 850 mg film-coated tablet, 60, blister pack 125662 13282011000036101 Glucohexal 850 mg film-coated tablet, 60 6565011000036107 Glucohexal 850 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +18115011000036108 Symmetrel 100 mg soft capsule, 100, bottle 11057 11413011000036102 Symmetrel 100 mg soft capsule, 100 5949011000036109 Symmetrel 100 mg soft capsule 4295011000036107 Symmetrel 4295011000036107 Symmetrel 26639011000036105 amantadine hydrochloride 100 mg capsule, 100 22045011000036104 amantadine hydrochloride 100 mg capsule 21730011000036106 amantadine +60033011000036101 Heartburn Relief (Guardian) 150 mg film-coated tablet, 14, blister pack 123671 55995011000036108 Heartburn Relief (Guardian) 150 mg film-coated tablet, 14 53751011000036101 Heartburn Relief (Guardian) 150 mg film-coated tablet 53366011000036104 Heartburn Relief (Guardian) 53366011000036104 Heartburn Relief (Guardian) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +720641000168106 Ketamine (Apotex) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 219040 720631000168102 Ketamine (Apotex) 200 mg/2 mL injection solution, 5 x 2 mL ampoules 720611000168107 Ketamine (Apotex) 200 mg/2 mL injection solution, 2 mL ampoule 720591000168102 Ketamine (Apotex) 720591000168102 Ketamine (Apotex) 720621000168100 ketamine 200 mg/2 mL injection, 5 x 2 mL ampoules 720601000168109 ketamine 200 mg/2 mL injection, ampoule 34843011000036109 ketamine +1061191000168109 Atorvator 10 mg film-coated tablet, 28, bottle 179854 1061181000168106 Atorvator 10 mg film-coated tablet, 28 1061171000168108 Atorvator 10 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890061000168107 atorvastatin 10 mg tablet, 28 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +50378011000036107 Rixadone 1 mg film-coated tablet, 60, blister pack 127894 49567011000036109 Rixadone 1 mg film-coated tablet, 60 48596011000036106 Rixadone 1 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +50378011000036107 Rixadone 1 mg film-coated tablet, 60, blister pack 199178 49567011000036109 Rixadone 1 mg film-coated tablet, 60 48596011000036106 Rixadone 1 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +920131000168102 Cilopam 40 mg film-coated tablet, 1000, bottle 158867 920121000168100 Cilopam 40 mg film-coated tablet, 1000 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202821000036103 citalopram 40 mg tablet, 1000 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +20351011000036107 Clamoxyl Duo 500/125 film-coated tablet, 10, blister pack 76286 13559011000036108 Clamoxyl Duo 500/125 film-coated tablet, 10 6841011000036100 Clamoxyl Duo 500/125 film-coated tablet 58901000168100 Clamoxyl Duo 500/125 58901000168100 Clamoxyl Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +20351011000036107 Clamoxyl Duo 500/125 film-coated tablet, 10, blister pack 146783 13559011000036108 Clamoxyl Duo 500/125 film-coated tablet, 10 6841011000036100 Clamoxyl Duo 500/125 film-coated tablet 58901000168100 Clamoxyl Duo 500/125 58901000168100 Clamoxyl Duo 500/125 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +686081000168109 Topiramate (AN) 50 mg film-coated tablet, 60, bottle 157960 686071000168106 Topiramate (AN) 50 mg film-coated tablet, 60 686061000168100 Topiramate (AN) 50 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +810661000168101 Calvid effervescent granules, 30 x 7.3 g sachets 151743 810651000168103 Calvid effervescent granules, 30 x 7.3 g sachets 810631000168109 Calvid effervescent granules, 7.3 g sachet 920937011000036109 Calvid 920937011000036109 Calvid 810641000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 30 x 7.3 g sachets 810621000168106 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 7.3 g sachet 733951000168109 calcium + colecalciferol +952511000168102 Lucrin Depot (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 48892 952501000168100 Lucrin Depot (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 952471000168106 Lucrin Depot (leuprorelin acetate 3.75 mg) modified release injection, 3.75 mg vial 6141000168106 Lucrin Depot 6141000168106 Lucrin Depot 952491000168107 leuprorelin acetate 3.75 mg modified release injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 952461000168100 leuprorelin acetate 3.75 mg modified release injection, vial 21320011000036109 leuprorelin +952511000168102 Lucrin Depot (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack, composite pack 48892 952501000168100 Lucrin Depot (1 x 3.75 mg vial, 1 x 2 mL inert diluent ampoule), 1 pack 952481000168109 Lucrin Depot (inert substance) diluent, 2 mL ampoule 6141000168106 Lucrin Depot 6141000168106 Lucrin Depot 952491000168107 leuprorelin acetate 3.75 mg modified release injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 634671000168103 inert substance diluent, 2 mL ampoule 21220011000036103 inert substance +55761000036100 Anastrozole (Synthon) 1 mg film-coated tablet, 300, blister pack 155176 52551000036102 Anastrozole (Synthon) 1 mg film-coated tablet, 300 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52091000036102 anastrozole 1 mg tablet, 300 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +859611000168104 Zovirax Dispersible 200 mg tablet, 90, blister pack 51385 859451000168100 Zovirax Dispersible 200 mg tablet, 90 859181000168101 Zovirax Dispersible 200 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +1078591000168102 Atomoxetine (GPPL) 18 mg hard capsule, 56, blister pack 234841 1078581000168100 Atomoxetine (GPPL) 18 mg hard capsule, 56 1078511000168106 Atomoxetine (GPPL) 18 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830391000168106 atomoxetine 18 mg capsule, 56 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +784631000168102 Pregabalin (Sandoz) 150 mg hard capsule, 56, blister pack 210046 784621000168100 Pregabalin (Sandoz) 150 mg hard capsule, 56 784611000168107 Pregabalin (Sandoz) 150 mg hard capsule 784381000168107 Pregabalin (Sandoz) 784381000168107 Pregabalin (Sandoz) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +20625011000036104 Alprazolam (GenRx) 2 mg tablet, 50, bottle 80934 13805011000036102 Alprazolam (GenRx) 2 mg tablet, 50 7091011000036106 Alprazolam (GenRx) 2 mg tablet 3880011000036108 Alprazolam (GenRx) 3880011000036108 Alprazolam (GenRx) 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +20865011000036101 Canesten Clotrimazole Thrush Treatment 6 Day 100 mg compressed pessary, 6, blister pack 92391 14027011000036100 Canesten Clotrimazole Thrush Treatment 6 Day 100 mg compressed pessary, 6 7303011000036108 Canesten Clotrimazole Thrush Treatment 6 Day 100 mg compressed pessary 53401000168103 Canesten Clotrimazole Thrush Treatment 6 Day 53401000168103 Canesten Clotrimazole Thrush Treatment 6 Day 28090011000036107 clotrimazole 100 mg pessary, 6 23398011000036106 clotrimazole 100 mg pessary 21684011000036100 clotrimazole +59836011000036106 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 48, blister pack 114915 55798011000036109 Strong Pain Relief Tabsule (Amcal) uncoated tablet, 48 53630011000036103 Strong Pain Relief Tabsule (Amcal) uncoated tablet 29541000168103 Strong Pain Relief Tabsule (Amcal) 29541000168103 Strong Pain Relief Tabsule (Amcal) 63891011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 48 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +652151000168106 Quetia 200 mg film-coated tablet, 60, blister pack 204155 652141000168109 Quetia 200 mg film-coated tablet, 60 652131000168100 Quetia 200 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1012201000168100 Irbesartan (Apotex) 75 mg film-coated tablet, 3, blister pack 169798 1012191000168103 Irbesartan (Apotex) 75 mg film-coated tablet, 3 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777141000168102 irbesartan 75 mg tablet, 3 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +52751011000036107 Movalis 7.5 mg hard capsule, 10, blister pack 142228 52563011000036100 Movalis 7.5 mg hard capsule, 10 52420011000036105 Movalis 7.5 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 52886011000036109 meloxicam 7.5 mg capsule, 10 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +37562011000036102 Papaverine Hydrochloride (DBL) 30 mg/mL injection solution, 5 x 1 mL ampoules 16258 36829011000036101 Papaverine Hydrochloride (DBL) 30 mg/mL injection solution, 5 x 1 mL ampoules 36127011000036101 Papaverine Hydrochloride (DBL) 30 mg/mL injection solution, ampoule 35936011000036101 Papaverine Hydrochloride (DBL) 35936011000036101 Papaverine Hydrochloride (DBL) 38718011000036106 papaverine hydrochloride 30 mg/mL injection, 5 x 1 mL ampoules 37949011000036105 papaverine hydrochloride 30 mg/mL injection, ampoule 37766011000036104 papaverine +857441000168107 Beconase Aq 50 microgram/actuation nasal spray, 200 actuations, pump pack 12483 857431000168103 Beconase Aq 50 microgram/actuation nasal spray, 200 actuations 857391000168108 Beconase Aq 50 microgram/actuation nasal spray, actuation 857381000168105 Beconase Aq 857381000168105 Beconase Aq 75483011000036107 beclometasone dipropionate 50 microgram/actuation nasal spray, 200 actuations 75087011000036107 beclometasone dipropionate 50 microgram/actuation nasal spray, actuation 21435011000036108 beclometasone +19083011000036102 Rivotril 2 mg uncoated tablet, 100, bottle 42373 12389011000036107 Rivotril 2 mg uncoated tablet, 100 5405011000036103 Rivotril 2 mg uncoated tablet 19081000168107 Rivotril 19081000168107 Rivotril 27335011000036101 clonazepam 2 mg tablet, 100 22688011000036108 clonazepam 2 mg tablet 21226011000036100 clonazepam +733551000168103 Rizatriptan (MSD) 10 mg wafer, 2, blister pack 225969 733541000168100 Rizatriptan (MSD) 10 mg wafer, 2 733531000168109 Rizatriptan (MSD) 10 mg wafer 733521000168106 Rizatriptan (MSD) 733521000168106 Rizatriptan (MSD) 83498011000036109 rizatriptan 10 mg wafer, 2 83438011000036101 rizatriptan 10 mg wafer 83422011000036102 rizatriptan +1054741000168105 Palexia SR 250 mg modified release tablet, 10, blister pack 165357 1054731000168101 Palexia SR 250 mg modified release tablet, 10 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054721000168104 tapentadol 250 mg modified release tablet, 10 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +700029771000036102 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 28, blister pack 12987011000036107 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 28 6276011000036103 Norinyl-1 28 Day (inert substance) uncoated tablet 700015261000036108 Norinyl-1 28 Day 700015261000036108 Norinyl-1 28 Day 28350011000036103 norethisterone 1 mg + mestranol 50 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029771000036102 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 28, blister pack 12987011000036107 Norinyl-1 28 Day (21 x 1 mg/50 microgram tablets, 7 x inert tablets), 28 6275011000036105 Norinyl-1 28 Day (norethisterone 1 mg + mestranol 50 microgram) uncoated tablet 700015261000036108 Norinyl-1 28 Day 700015261000036108 Norinyl-1 28 Day 28350011000036103 norethisterone 1 mg + mestranol 50 microgram tablet [21] (&) inert substance tablet [7], 28 22832011000036109 norethisterone 1 mg + mestranol 50 microgram tablet 21651011000036108 norethisterone + mestranol +38721000036104 Escilupin 15 mg film-coated tablet, 30, bottle 165867 35091000036108 Escilupin 15 mg film-coated tablet, 30 33131000036107 Escilupin 15 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +19914011000036109 Clomhexal 50 mg uncoated tablet, 5, blister pack 66173 13159011000036100 Clomhexal 50 mg uncoated tablet, 5 6442011000036100 Clomhexal 50 mg uncoated tablet 3888011000036105 Clomhexal 3888011000036105 Clomhexal 28274011000036104 clomifene citrate 50 mg tablet, 5 23588011000036107 clomifene citrate 50 mg tablet 21599011000036107 clomifene +47171000036102 PKU Express 20 powder for oral liquid, 30 x 34 g sachets 46631000036108 PKU Express 20 powder for oral liquid, 30 x 34 g sachets 250421000168108 PKU Express 20 powder for oral liquid, 34 g sachet 26761000168104 PKU Express 20 26761000168104 PKU Express 20 46641000036103 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 34 g sachets 250251000168101 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 34 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +933229951000036100 Fenpatch 75 microgram/hour patch, 5, sachet 143904 933223751000036100 Fenpatch 75 microgram/hour patch, 5 933219841000036103 Fenpatch 75 microgram/hour patch 933218861000036106 Fenpatch 933218861000036106 Fenpatch 26651011000036105 fentanyl 75 microgram/hour patch, 5 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +660821000168101 Gabapentin (AN) 800 mg film-coated tablet, 100, blister pack 156104 660811000168108 Gabapentin (AN) 800 mg film-coated tablet, 100 660801000168105 Gabapentin (AN) 800 mg film-coated tablet 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +82898011000036107 Metsal Heat Rub cream, 125 g, tube 163791 82792011000036107 Metsal Heat Rub cream, 125 g 82701011000036104 Metsal Heat Rub cream 82661011000036109 Metsal Heat Rub 82661011000036109 Metsal Heat Rub 83009011000036106 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% cream, 125 g 82942011000036107 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +853101000168107 Gabapen 300 mg hard capsule, 20, blister pack 204499 853091000168102 Gabapen 300 mg hard capsule, 20 853051000168107 Gabapen 300 mg hard capsule 853011000168106 Gabapen 853011000168106 Gabapen 853081000168100 gabapentin 300 mg capsule, 20 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +931780011000036103 Concerta 54 mg modified release tablet, 60, bottle 93864 930940011000036106 Concerta 54 mg modified release tablet, 60 7355011000036104 Concerta 54 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932509011000036105 methylphenidate hydrochloride 54 mg modified release tablet, 60 23439011000036102 methylphenidate hydrochloride 54 mg modified release tablet 21277011000036101 methylphenidate +943881000168104 Medformin 850 mg film-coated tablet, 10, bottle 100289 943871000168102 Medformin 850 mg film-coated tablet, 10 943781000168108 Medformin 850 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943861000168108 metformin hydrochloride 850 mg tablet, 10 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +931538011000036107 Reditron 4 mg film-coated tablet, 6, blister pack 163430 930699011000036108 Reditron 4 mg film-coated tablet, 6 930020011000036103 Reditron 4 mg film-coated tablet 28261000168108 Reditron 28261000168108 Reditron 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +961141000168107 Bisoprolol (Apo) 3.75 mg tablet, 10, blister pack 182117 961131000168103 Bisoprolol (Apo) 3.75 mg tablet, 10 961101000168105 Bisoprolol (Apo) 3.75 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 875801000168100 bisoprolol fumarate 3.75 mg tablet, 10 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +20942011000036105 Famohexal 40 mg film-coated tablet, 30, blister pack 94332 14097011000036108 Famohexal 40 mg film-coated tablet, 30 7374011000036100 Famohexal 40 mg film-coated tablet 3772011000036101 Famohexal 3772011000036101 Famohexal 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +77193011000036108 Cranberry 15 000 (Blackmores) hard capsule, 60, bottle 128354 76609011000036105 Cranberry 15 000 (Blackmores) hard capsule, 60 76061011000036104 Cranberry 15 000 (Blackmores) hard capsule 61341000168100 Cranberry 15 000 (Blackmores) 61341000168100 Cranberry 15 000 (Blackmores) 78163011000036100 cranberry 442 mg + ascorbic acid 50 mg capsule, 60 77521011000036107 cranberry 442 mg + ascorbic acid 50 mg capsule 77453011000036101 cranberry + ascorbic acid +20428011000036108 Mobic 15 mg hard capsule, 30, blister pack 77699 13633011000036103 Mobic 15 mg hard capsule, 30 6916011000036108 Mobic 15 mg hard capsule 3572011000036102 Mobic 3572011000036102 Mobic 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +77278011000036107 Ascorbic Acid (Phebra) 500 mg/5 mL injection solution, 50 x 5 mL ampoules 16354 76694011000036107 Ascorbic Acid (Phebra) 500 mg/5 mL injection solution, 50 x 5 mL ampoules 76121011000036100 Ascorbic Acid (Phebra) 500 mg/5 mL injection solution, 5 mL ampoule 75955011000036102 Ascorbic Acid (Phebra) 75955011000036102 Ascorbic Acid (Phebra) 78209011000036100 ascorbic acid 500 mg/5 mL injection, 50 x 5 mL ampoules 77544011000036108 ascorbic acid 500 mg/5 mL injection, ampoule 77435011000036104 ascorbic acid +1059101000168108 Atomoxetine (Medis) 18 mg hard capsule, 7, blister pack 238329 1059091000168103 Atomoxetine (Medis) 18 mg hard capsule, 7 1059081000168101 Atomoxetine (Medis) 18 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +931493011000036100 Topiramate (Generic Health) 50 mg film-coated tablet, 60, blister pack 155199 928303011000036104 Topiramate (Generic Health) 50 mg film-coated tablet, 60 927932011000036101 Topiramate (Generic Health) 50 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +47331000036101 Peg-Intron Redipen Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92009 46931000036104 Peg-Intron Redipen Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 7297011000036105 Peg-Intron Redipen Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46941000036109 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +47331000036101 Peg-Intron Redipen Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92009 46931000036104 Peg-Intron Redipen Injector (4 x 150 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46941000036109 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +33604011000036107 Caverject Impulse (2 x 10 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack, dual chamber composite pack 90196 33342011000036101 Caverject Impulse (2 x 10 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack 33101011000036108 Caverject Impulse (alprostadil 10 microgram) powder for injection, 10 microgram syringe 51811000168103 Caverject Impulse 51811000168103 Caverject Impulse 33821011000036107 alprostadil 10 microgram injection [2] (&) inert substance diluent [2 x 0.6 mL syringes], 1 pack 33688011000036104 alprostadil 10 microgram injection, syringe 21478011000036104 alprostadil +33604011000036107 Caverject Impulse (2 x 10 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack, dual chamber composite pack 90196 33342011000036101 Caverject Impulse (2 x 10 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack 642161000168105 Caverject Impulse (inert substance) diluent, 0.6 mL syringe 51811000168103 Caverject Impulse 51811000168103 Caverject Impulse 33821011000036107 alprostadil 10 microgram injection [2] (&) inert substance diluent [2 x 0.6 mL syringes], 1 pack 642151000168108 inert substance diluent, 0.6 mL syringe 21220011000036103 inert substance +43970011000036107 Toradol 10 mg film-coated tablet, 20, blister pack 42060 41462011000036107 Toradol 10 mg film-coated tablet, 20 39989011000036105 Toradol 10 mg film-coated tablet 39688011000036101 Toradol 39688011000036101 Toradol 46310011000036102 ketorolac trometamol 10 mg tablet, 20 45068011000036102 ketorolac trometamol 10 mg tablet 44879011000036107 ketorolac +61378011000036102 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution, 500 mL, bottle 81746 57303011000036102 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution, 500 mL 54266011000036107 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution 31111000168106 Dry Tickly Cough Mixture (Pharmacy Health) 31111000168106 Dry Tickly Cough Mixture (Pharmacy Health) 63801011000036106 pholcodine 1 mg/mL oral liquid, 500 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +776181000168109 Norspan 15 microgram/hour patch, 2, sachet 217507 776171000168106 Norspan 15 microgram/hour patch, 2 776151000168102 Norspan 15 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 776161000168100 buprenorphine 15 microgram/hour patch, 2 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +79643011000036107 Gliclazide MR (Terry White Chemists) 30 mg modified release tablet, 100, blister pack 151309 79488011000036105 Gliclazide MR (Terry White Chemists) 30 mg modified release tablet, 100 79373011000036103 Gliclazide MR (Terry White Chemists) 30 mg modified release tablet 62641000168101 Gliclazide MR (Terry White Chemists) 62641000168101 Gliclazide MR (Terry White Chemists) 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +785351000168104 Ordine 20 mg/mL oral liquid solution, 200 mL, bottle 10782 785341000168101 Ordine 20 mg/mL oral liquid solution, 200 mL 785321000168107 Ordine 20 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 785331000168105 morphine hydrochloride trihydrate 20 mg/mL oral liquid, 200 mL 785311000168100 morphine hydrochloride trihydrate 20 mg/mL oral liquid 21252011000036100 morphine +79043011000036100 Bispro 2.5 mg film-coated tablet, 10, blister pack 130178 78784011000036107 Bispro 2.5 mg film-coated tablet, 10 78625011000036108 Bispro 2.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79201011000036101 bisoprolol fumarate 2.5 mg tablet, 10 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +785271000168100 Dipyridamole/Aspirin 200/25 (Chemmart) modified release capsule, 60, bottle 210810 785261000168106 Dipyridamole/Aspirin 200/25 (Chemmart) modified release capsule, 60 785251000168109 Dipyridamole/Aspirin 200/25 (Chemmart) modified release capsule 785191000168107 Dipyridamole/Aspirin 200/25 (Chemmart) 785191000168107 Dipyridamole/Aspirin 200/25 (Chemmart) 27629011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule, 60 22967011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule 21386011000036101 dipyridamole + aspirin +933247351000036109 Risperidone (Pfizer) 4 mg film-coated tablet, 60, blister pack 166685 933244081000036109 Risperidone (Pfizer) 4 mg film-coated tablet, 60 933241671000036103 Risperidone (Pfizer) 4 mg film-coated tablet 933240791000036103 Risperidone (Pfizer) 933240791000036103 Risperidone (Pfizer) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +38811000036100 Escitalopram (Lupin) 20 mg film-coated tablet, 30, bottle 165873 35181000036105 Escitalopram (Lupin) 20 mg film-coated tablet, 30 32921000036103 Escitalopram (Lupin) 20 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +716231000168106 Omepro 20 mg enteric capsule, 100, blister pack 149516 716221000168108 Omepro 20 mg enteric capsule, 100 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716251000168100 omeprazole 20 mg enteric capsule, 100 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +928906011000036101 Ibuprofen Blue Period Pain (Herron) 200 mg film-coated tablet, 25, bottle 152957 928268011000036104 Ibuprofen Blue Period Pain (Herron) 200 mg film-coated tablet, 25 927917011000036106 Ibuprofen Blue Period Pain (Herron) 200 mg film-coated tablet 59461000168104 Ibuprofen Blue Period Pain (Herron) 59461000168104 Ibuprofen Blue Period Pain (Herron) 63216011000036105 ibuprofen 200 mg tablet, 25 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +59759011000036100 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 48, blister pack 107036 55727011000036100 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 48 53713011000036105 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet 53160011000036105 Ibuprofen (Pharmacist Formula) 53160011000036105 Ibuprofen (Pharmacist Formula) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +945971000168108 Glimepiride (Sanofi) 2 mg uncoated tablet, 100, blister pack 142391 945961000168102 Glimepiride (Sanofi) 2 mg uncoated tablet, 100 945871000168103 Glimepiride (Sanofi) 2 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 945951000168104 glimepiride 2 mg tablet, 100 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +931596011000036103 Pratin 20 mg film-coated tablet, 100, bottle 163557 930757011000036100 Pratin 20 mg film-coated tablet, 100 930037011000036104 Pratin 20 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +68977011000036100 Nurofen Period Pain 200 mg film-coated tablet, 20, blister pack 134618 66779011000036109 Nurofen Period Pain 200 mg film-coated tablet, 20 65504011000036102 Nurofen Period Pain 200 mg film-coated tablet 24371000168100 Nurofen Period Pain 24371000168100 Nurofen Period Pain 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933215151000036106 Danset ODT 8 mg orally disintegrating tablet, 4, blister pack 163650 933204681000036108 Danset ODT 8 mg orally disintegrating tablet, 4 933195641000036103 Danset ODT 8 mg orally disintegrating tablet 32131000168105 Danset ODT 32131000168105 Danset ODT 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +18389011000036102 Dibenyline 10 mg hard capsule, 100, jar 12980 11882011000036103 Dibenyline 10 mg hard capsule, 100 4640011000036109 Dibenyline 10 mg hard capsule 3941011000036100 Dibenyline 3941011000036100 Dibenyline 26799011000036105 phenoxybenzamine hydrochloride 10 mg capsule, 100 22184011000036102 phenoxybenzamine hydrochloride 10 mg capsule 21893011000036108 phenoxybenzamine +19040011000036103 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 215574 12346011000036106 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5181011000036100 Monofeme (inert substance) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19040011000036103 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40134 12346011000036106 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5181011000036100 Monofeme (inert substance) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19040011000036103 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 153764 12346011000036106 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5181011000036100 Monofeme (inert substance) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19040011000036103 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 215574 12346011000036106 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5110011000036109 Monofeme (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +19040011000036103 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 40134 12346011000036106 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5110011000036109 Monofeme (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +19040011000036103 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 153764 12346011000036106 Monofeme (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5110011000036109 Monofeme (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3130011000036106 Monofeme 3130011000036106 Monofeme 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +933247191000036103 Tevagrastim 480 microgram/0.8 mL injection solution, 5 x 0.8 mL syringes 163677 933243591000036104 Tevagrastim 480 microgram/0.8 mL injection solution, 5 x 0.8 mL syringes 933241531000036101 Tevagrastim 480 microgram/0.8 mL injection solution, 0.8 mL syringe 933240801000036104 Tevagrastim 933240801000036104 Tevagrastim 933243601000036106 filgrastim 480 microgram/0.8 mL injection, 5 x 0.8 mL syringes 933241541000036106 filgrastim 480 microgram/0.8 mL injection, syringe 21265011000036102 filgrastim +1123181000168106 Gardasil 9 injection suspension, 0.5 mL vial 224093 1123171000168108 Gardasil 9 injection suspension, 0.5 mL vial 1123151000168104 Gardasil 9 injection suspension, 0.5 mL vial 1122871000168109 Gardasil 9 1122871000168109 Gardasil 9 1123161000168102 human papillomavirus 9 valent vaccine injection, 0.5 mL vial 1123141000168101 human papillomavirus 9 valent vaccine injection, 0.5 mL vial 1122881000168107 human papillomavirus 9 valent vaccine +975391000168109 Ilaris (4 x 150 mg vials, 4 x inert diluent vials), 1 pack, composite pack 187078 975381000168106 Ilaris (4 x 150 mg vials, 4 x inert diluent vials), 1 pack 930008011000036109 Ilaris (canakinumab 150 mg) powder for injection, 150 mg vial 929824011000036109 Ilaris 929824011000036109 Ilaris 975371000168108 canakinumab 150 mg injection [4 vials] (&) inert substance diluent [4 vials], 1 pack 931847011000036109 canakinumab 150 mg injection, vial 931784011000036108 canakinumab +975391000168109 Ilaris (4 x 150 mg vials, 4 x inert diluent vials), 1 pack, composite pack 187078 975381000168106 Ilaris (4 x 150 mg vials, 4 x inert diluent vials), 1 pack 975331000168105 Ilaris (inert substance) diluent, vial 929824011000036109 Ilaris 929824011000036109 Ilaris 975371000168108 canakinumab 150 mg injection [4 vials] (&) inert substance diluent [4 vials], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +1042341000168100 Atorvastatin (AS) 80 mg film-coated tablet, 30, blister pack 178526 1042331000168109 Atorvastatin (AS) 80 mg film-coated tablet, 30 1042201000168109 Atorvastatin (AS) 80 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +849561000168100 Sildenafil (Amneal) 25 mg film-coated tablet, 8, blister pack 202925 849551000168102 Sildenafil (Amneal) 25 mg film-coated tablet, 8 849511000168103 Sildenafil (Amneal) 25 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 760301000168108 sildenafil 25 mg tablet, 8 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +68780011000036101 Difflam 3% gel, 30 g, tube 10930 66574011000036109 Difflam 3% gel, 30 g 65426011000036106 Difflam 3% gel 15911000168103 Difflam 15911000168103 Difflam 71297011000036100 benzydamine hydrochloride 3% gel, 30 g 69936011000036103 benzydamine hydrochloride 3% gel 21819011000036105 benzydamine +1114641000168104 Ketizenol 100 mg film-coated tablet, 20, blister pack 202255 1114631000168108 Ketizenol 100 mg film-coated tablet, 20 1114601000168101 Ketizenol 100 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +939541000168109 Prometax-10 9.5 mg/24 hours patch, 30, sachet 133434 939531000168100 Prometax-10 9.5 mg/24 hours patch, 30 939521000168103 Prometax-10 9.5 mg/24 hours patch 939441000168108 Prometax-10 939441000168108 Prometax-10 38683011000036108 rivastigmine 9.5 mg/24 hours patch, 30 37923011000036109 rivastigmine 9.5 mg/24 hours patch 21413011000036101 rivastigmine +773971000168103 Norspan 40 microgram/hour patch, 2, sachet 217510 773961000168109 Norspan 40 microgram/hour patch, 2 773941000168105 Norspan 40 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 773951000168107 buprenorphine 40 microgram/hour patch, 2 773931000168101 buprenorphine 40 microgram/hour patch 21232011000036101 buprenorphine +876771000168105 Briviact 50 mg film-coated tablet, 100, blister pack 243797 876761000168104 Briviact 50 mg film-coated tablet, 100 876631000168104 Briviact 50 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876751000168101 brivaracetam 50 mg tablet, 100 876621000168102 brivaracetam 50 mg tablet 876401000168109 brivaracetam +782611000168104 Eumovate 0.05% cream, 15 g, tube 178288 782601000168102 Eumovate 0.05% cream, 15 g 782561000168102 Eumovate 0.05% cream 782551000168104 Eumovate 782551000168104 Eumovate 63149011000036107 clobetasone butyrate 0.05% cream, 15 g 61871011000036109 clobetasone butyrate 0.05% cream 61820011000036103 clobetasone +1046041000168101 Dermaveen Daily Nourish Soap Free Wash 1% application, 250 mL, bottle 1046031000168105 Dermaveen Daily Nourish Soap Free Wash 1% application, 250 mL 1046021000168107 Dermaveen Daily Nourish Soap Free Wash 1% application 1046011000168100 Dermaveen Daily Nourish Soap Free Wash 1046011000168100 Dermaveen Daily Nourish Soap Free Wash 167841000036102 colloidal oatmeal 1% application, 250 mL 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +21019011000036109 Enalapril Maleate (Terry White Chemists) 10 mg uncoated tablet, 30, blister pack 96337 14165011000036106 Enalapril Maleate (Terry White Chemists) 10 mg uncoated tablet, 30 7444011000036105 Enalapril Maleate (Terry White Chemists) 10 mg uncoated tablet 3999011000036105 Enalapril Maleate (Terry White Chemists) 3999011000036105 Enalapril Maleate (Terry White Chemists) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +951871000168104 Trasylol 500 000 KI units/50 mL intravenous infusion injection, 50 mL vial 43530 951861000168105 Trasylol 500 000 KI units/50 mL intravenous infusion injection, 50 mL vial 951841000168106 Trasylol 500 000 KI units/50 mL intravenous infusion injection, 50 mL vial 926521000168109 Trasylol 926521000168109 Trasylol 951851000168108 aprotinin 500 000 KI units/50 mL injection, 50 mL vial 951831000168102 aprotinin 500 000 KI units/50 mL injection, vial 926591000168106 aprotinin +933048011000036103 Vycin IV 500 mg powder for injection, 5 vials 118999 932854011000036101 Vycin IV 500 mg powder for injection, 5 vials 932719011000036108 Vycin IV 500 mg powder for injection, 500 mg vial 40201000168107 Vycin IV 40201000168107 Vycin IV 932855011000036102 vancomycin 500 mg injection, 5 vials 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +817011000168107 Levetiracetam (Apo) 100 mg/mL oral liquid solution, 300 mL, bottle 237435 817001000168109 Levetiracetam (Apo) 100 mg/mL oral liquid solution, 300 mL 816991000168102 Levetiracetam (Apo) 100 mg/mL oral liquid solution 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 39462011000036104 levetiracetam 100 mg/mL oral liquid, 300 mL 39434011000036104 levetiracetam 100 mg/mL oral liquid 21766011000036102 levetiracetam +19897011000036106 Allohexal 300 mg uncoated tablet, 60, bottle 65906 13144011000036104 Allohexal 300 mg uncoated tablet, 60 6427011000036100 Allohexal 300 mg uncoated tablet 3468011000036102 Allohexal 3468011000036102 Allohexal 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +17815011000036107 Dapsone (Link Medical Products) 25 mg uncoated tablet, 100, bottle 104482 11290011000036105 Dapsone (Link Medical Products) 25 mg uncoated tablet, 100 4574011000036109 Dapsone (Link Medical Products) 25 mg uncoated tablet 3965011000036106 Dapsone (Link Medical Products) 3965011000036106 Dapsone (Link Medical Products) 26595011000036107 dapsone 25 mg tablet, 100 22003011000036105 dapsone 25 mg tablet 21608011000036106 dapsone +69551011000036104 Regaine Women's Extra Strength 5% application, 3 x 60 mL, bottles 59445 67351011000036105 Regaine Women's Extra Strength 5% application, 3 x 60 mL 65625011000036101 Regaine Women's Extra Strength 5% application 51531000168105 Regaine Women's Extra Strength 51531000168105 Regaine Women's Extra Strength 63780011000036100 minoxidil 5% application, 3 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +960321000168107 Ciram 20 mg film-coated tablet, 84, bottle 158859 959271000168104 Ciram 20 mg film-coated tablet, 84 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1041701000168109 Atorvastatin (AS) 10 mg film-coated tablet, 20, blister pack 178545 1041691000168109 Atorvastatin (AS) 10 mg film-coated tablet, 20 1041631000168105 Atorvastatin (AS) 10 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841511000168102 atorvastatin 10 mg tablet, 20 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +60984011000036100 Promethazine Hydrochloride Elixir (Pharmacist) 1 mg/mL oral liquid solution, 100 mL, bottle 63254 56927011000036108 Promethazine Hydrochloride Elixir (Pharmacist) 1 mg/mL oral liquid solution, 100 mL 54124011000036109 Promethazine Hydrochloride Elixir (Pharmacist) 1 mg/mL oral liquid solution 41401000168102 Promethazine Hydrochloride Elixir (Pharmacist) 41401000168102 Promethazine Hydrochloride Elixir (Pharmacist) 63682011000036106 promethazine hydrochloride 1 mg/mL oral liquid, 100 mL 62044011000036106 promethazine hydrochloride 1 mg/mL oral liquid 21237011000036104 promethazine +926837011000036108 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 90, blister pack 176511 926233011000036106 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 90 925686011000036108 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +676031000168100 Galantamine SR (AN) 24 mg modified release capsule, 28, blister pack 182036 676021000168103 Galantamine SR (AN) 24 mg modified release capsule, 28 676011000168105 Galantamine SR (AN) 24 mg modified release capsule 675861000168106 Galantamine SR (AN) 675861000168106 Galantamine SR (AN) 28250011000036107 galantamine 24 mg modified release capsule, 28 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +776821000168100 Lovan 20 mg/5 mL oral liquid solution, 70 mL, bottle 57843 776811000168107 Lovan 20 mg/5 mL oral liquid solution, 70 mL 776731000168109 Lovan 20 mg/5 mL oral liquid solution, 5 mL 2938011000036102 Lovan 2938011000036102 Lovan 776801000168109 fluoxetine 20 mg/5 mL oral liquid, 70 mL 776721000168106 fluoxetine 20 mg/5 mL oral liquid 21411011000036102 fluoxetine +945891000168102 Glimepiride (Sanofi) 2 mg uncoated tablet, 10, blister pack 142391 945881000168100 Glimepiride (Sanofi) 2 mg uncoated tablet, 10 945871000168103 Glimepiride (Sanofi) 2 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 925414011000036104 glimepiride 2 mg tablet, 10 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +933215111000036107 Denpax 25 microgram/hour patch, 5, sachet 163068 933204141000036107 Denpax 25 microgram/hour patch, 5 933196311000036104 Denpax 25 microgram/hour patch 933193221000036107 Denpax 933193221000036107 Denpax 26649011000036106 fentanyl 25 microgram/hour patch, 5 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +55691000036104 Synastrozole 1 mg film-coated tablet, 90, blister pack 155175 52441000036104 Synastrozole 1 mg film-coated tablet, 90 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52251000036100 anastrozole 1 mg tablet, 90 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +858081000168108 Emexlon 10 mg film-coated tablet, 20, blister pack 229659 858071000168105 Emexlon 10 mg film-coated tablet, 20 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 671831000168101 metoclopramide hydrochloride 10 mg tablet, 20 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +18492011000036100 Sertraline (Terry White Chemists) 50 mg film-coated tablet, 30, blister pack 213179 11204011000036103 Sertraline (Terry White Chemists) 50 mg film-coated tablet, 30 5801011000036105 Sertraline (Terry White Chemists) 50 mg film-coated tablet 3824011000036108 Sertraline (Terry White Chemists) 3824011000036108 Sertraline (Terry White Chemists) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +18492011000036100 Sertraline (Terry White Chemists) 50 mg film-coated tablet, 30, blister pack 101484 11204011000036103 Sertraline (Terry White Chemists) 50 mg film-coated tablet, 30 5801011000036105 Sertraline (Terry White Chemists) 50 mg film-coated tablet 3824011000036108 Sertraline (Terry White Chemists) 3824011000036108 Sertraline (Terry White Chemists) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +34709011000036104 Methadone Hydrochloride Syrup (Orion) 500 microgram/mL oral liquid solution, 20 mL, bottle 21159 34293011000036108 Methadone Hydrochloride Syrup (Orion) 500 microgram/mL oral liquid solution, 20 mL 34016011000036109 Methadone Hydrochloride Syrup (Orion) 500 microgram/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35142011000036103 methadone hydrochloride 500 microgram/mL oral liquid, 20 mL 34865011000036102 methadone hydrochloride 500 microgram/mL oral liquid 21357011000036109 methadone +61618011000036100 Sinus Pain (Amcal) uncoated tablet, 24, blister pack 96208 57540011000036101 Sinus Pain (Amcal) uncoated tablet, 24 54343011000036101 Sinus Pain (Amcal) uncoated tablet 53520011000036108 Sinus Pain (Amcal) 53520011000036108 Sinus Pain (Amcal) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +20925011000036100 Intal CFC-Free 1 mg/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 93909 14079011000036106 Intal CFC-Free 1 mg/actuation pressurised inhalation, 200 actuations 7357011000036109 Intal CFC-Free 1 mg/actuation pressurised inhalation, actuation 52301000168101 Intal 52301000168101 Intal 28131011000036101 sodium cromoglycate 1 mg/actuation pressurised inhalation, 200 actuations 23440011000036107 sodium cromoglycate 1 mg/actuation pressurised inhalation, actuation 21253011000036107 cromoglycate +918031000168108 Angiomax 100 mg powder for injection, 1 vial 102154 918021000168105 Angiomax 100 mg powder for injection, 1 vial 918001000168101 Angiomax 100 mg powder for injection, 100 mg vial 3849011000036107 Angiomax 3849011000036107 Angiomax 918011000168103 bivalirudin 100 mg injection, 1 vial 917991000168105 bivalirudin 100 mg injection, vial 21763011000036108 bivalirudin +60677011000036104 Rapideine uncoated tablet, 96, blister pack 42397 56635011000036100 Rapideine uncoated tablet, 96 54016011000036103 Rapideine uncoated tablet 53593011000036105 Rapideine 53593011000036105 Rapideine 63853011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 96 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +719361000168102 Lyxumia 20 microgram/dose injection solution, 2 x 14 doses, injection devices 192719 719351000168104 Lyxumia 20 microgram/dose injection solution, 2 x 14 doses 719251000168109 Lyxumia 20 microgram/dose injection solution, dose 177641000036107 Lyxumia 177641000036107 Lyxumia 719341000168101 lixisenatide 20 microgram/dose injection, 2 x 14 doses 719241000168107 lixisenatide 20 microgram/dose injection, dose 177821000036103 lixisenatide +43730011000036104 Simvabell 40 mg film-coated tablet, 300, bottle 100888 41110011000036106 Simvabell 40 mg film-coated tablet, 300 5411011000036103 Simvabell 40 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46093011000036107 simvastatin 40 mg tablet, 300 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +18406011000036103 Perindopril Erbumine (GenRx) 8 mg uncoated tablet, 30, blister pack 121621 11674011000036105 Perindopril Erbumine (GenRx) 8 mg uncoated tablet, 30 5787011000036103 Perindopril Erbumine (GenRx) 8 mg uncoated tablet 4349011000036107 Perindopril Erbumine (GenRx) 4349011000036107 Perindopril Erbumine (GenRx) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +984661000168101 Intragam P 30 g/500 mL injection solution, 500 mL vial 68634 984651000168103 Intragam P 30 g/500 mL injection solution, 500 mL vial 984631000168109 Intragam P 30 g/500 mL injection solution, 500 mL vial 46781000168105 Intragam P 46781000168105 Intragam P 984641000168100 normal immunoglobulin 30 g/500 mL injection, 500 mL vial 984621000168106 normal immunoglobulin 30 g/500 mL injection, vial 74965011000036103 normal immunoglobulin +77160011000036103 Hydrogen Peroxide (Orion) 3% solution, 30 mL, bottle 11383 76585011000036102 Hydrogen Peroxide (Orion) 3% solution, 30 mL 65538011000036103 Hydrogen Peroxide (Orion) 3% solution 65016011000036105 Hydrogen Peroxide (Orion) 65016011000036105 Hydrogen Peroxide (Orion) 78140011000036103 hydrogen peroxide 3% solution, 30 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +851891000168106 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 84 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 237652 851881000168108 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 84 x Bicalutamide (Tolmar) tablets), 1 pack 7501011000036105 Eligard 3 Month (inert substance) diluent, syringe 851831000168107 Bi Eligard CP 3 Month 56351000168101 Eligard 3 Month 851871000168105 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [84], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +851891000168106 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 84 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 237652 851881000168108 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 84 x Bicalutamide (Tolmar) tablets), 1 pack 7500011000036103 Eligard 3 Month (leuprorelin acetate 22.5 mg) modified release injection, 22.5 mg syringe 851831000168107 Bi Eligard CP 3 Month 56351000168101 Eligard 3 Month 851871000168105 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [84], 1 pack 23533011000036105 leuprorelin acetate 22.5 mg modified release injection, syringe 21320011000036109 leuprorelin +851891000168106 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 84 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 237652 851881000168108 Bi Eligard CP 3 Month (1 x Eligard 3 Month pack, 84 x Bicalutamide (Tolmar) tablets), 1 pack 851741000168109 Bicalutamide (Tolmar) 50 mg film-coated tablet 851831000168107 Bi Eligard CP 3 Month 851731000168100 Bicalutamide (Tolmar) 851871000168105 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [84], 1 pack 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +938581000168106 Celecoxib (Pfizer) 100 mg hard capsule, 10, blister pack 211500 938571000168108 Celecoxib (Pfizer) 100 mg hard capsule, 10 938561000168102 Celecoxib (Pfizer) 100 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +920741011000036106 Terbinafine (DRLA) 250 mg tablet, 14, blister pack 167575 920424011000036102 Terbinafine (DRLA) 250 mg tablet, 14 920173011000036101 Terbinafine (DRLA) 250 mg tablet 920112011000036102 Terbinafine (DRLA) 920112011000036102 Terbinafine (DRLA) 75419011000036108 terbinafine 250 mg tablet, 14 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +776901000168104 Cortef 1% spray solution, 30 mL, bottle 109757 776891000168103 Cortef 1% spray solution, 30 mL 776871000168104 Cortef 1% spray solution 3032011000036102 Cortef 3032011000036102 Cortef 776881000168101 hydrocortisone 1% spray, 30 mL 776861000168105 hydrocortisone 1% spray 21681011000036103 hydrocortisone +998811000168107 Perindopril Arginine (Apotex) 5 mg film-coated tablet, 100, blister pack 184816 998801000168109 Perindopril Arginine (Apotex) 5 mg film-coated tablet, 100 998751000168103 Perindopril Arginine (Apotex) 5 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 806781000168100 perindopril arginine 5 mg tablet, 100 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +710751000168109 Strepsils original flavour lozenge, 36, blister pack 14974 710741000168107 Strepsils original flavour lozenge, 36 65227011000036108 Strepsils original flavour lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1057731000168107 Atorvastatin (Ran) 40 mg film-coated tablet, 28, bottle 179839 1057721000168109 Atorvastatin (Ran) 40 mg film-coated tablet, 28 1057081000168106 Atorvastatin (Ran) 40 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890251000168102 atorvastatin 40 mg tablet, 28 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +20892011000036107 Roxin 400 mg film-coated tablet, 14, blister pack 93210 14054011000036107 Roxin 400 mg film-coated tablet, 14 7332011000036106 Roxin 400 mg film-coated tablet 3155011000036103 Roxin 3155011000036103 Roxin 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +780111000168106 Fentanyl (Apo) 25 microgram/hour patch, 7, sachet 152574 780101000168108 Fentanyl (Apo) 25 microgram/hour patch, 7 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235831000036103 fentanyl 25 microgram/hour patch, 7 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +1105641000168102 Valpam 2 mg uncoated tablet, 90, blister pack 80809 1105541000168103 Valpam 2 mg uncoated tablet, 90 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 750441000168108 diazepam 2 mg tablet, 90 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +928974011000036104 Valaciclovir (Apo) 500 mg film-coated tablet, 240, blister pack 158911 928335011000036109 Valaciclovir (Apo) 500 mg film-coated tablet, 240 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929218011000036103 valaciclovir 500 mg tablet, 240 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +926801000168103 Zinnat 125 mg film-coated tablet, 50, strip pack 44091 917921000168108 Zinnat 125 mg film-coated tablet, 50 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917911000168101 cefuroxime 125 mg tablet, 50 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +684801000168102 Sunsense Ultra SPF 50+ lotion, 125 mL, bottle (Old Formulation 2017) 194260 684791000168103 Sunsense Ultra SPF 50+ lotion, 125 mL (Old Formulation 2017) 684771000168104 Sunsense Ultra SPF 50+ lotion (Old Formulation 2017) 683971000168104 Sunsense Ultra SPF 50+ 683971000168104 Sunsense Ultra SPF 50+ 684781000168101 bemotrizinol 1% + diethylamino hydroxybenzoyl hexyl benzoate 2.5% + octyl methoxycinnamate 3% + ethylhexyl triazone 0.5% + titanium dioxide 2.9% lotion, 125 mL 684761000168105 bemotrizinol 1% + diethylamino hydroxybenzoyl hexyl benzoate 2.5% + octyl methoxycinnamate 3% + ethylhexyl triazone 0.5% + titanium dioxide 2.9% lotion 684751000168108 bemotrizinol + diethylamino hydroxybenzoyl hexyl benzoate + octyl methoxycinnamate + ethylhexyl triazone + titanium dioxide +61328011000036103 Paracetamol (Herron) 500 mg uncoated tablet, 20, blister pack 80924 57348011000036102 Paracetamol (Herron) 500 mg uncoated tablet, 20 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +59735011000036101 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 20, blister pack 100678 55642011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 20 53667011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet 53194011000036103 Paracetamol Pain Relief (Amcal) 53194011000036103 Paracetamol Pain Relief (Amcal) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +851821000168109 Bi Eligard CP 1 Month (1 x Eligard 1 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 237653 851811000168102 Bi Eligard CP 1 Month (1 x Eligard 1 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack 7499011000036102 Eligard 1 Month (inert substance) diluent, syringe 851791000168101 Bi Eligard CP 1 Month 55961000168105 Eligard 1 Month 851801000168100 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [28], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +851821000168109 Bi Eligard CP 1 Month (1 x Eligard 1 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 237653 851811000168102 Bi Eligard CP 1 Month (1 x Eligard 1 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack 7498011000036105 Eligard 1 Month (leuprorelin acetate 7.5 mg) modified release injection, 7.5 mg syringe 851791000168101 Bi Eligard CP 1 Month 55961000168105 Eligard 1 Month 851801000168100 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [28], 1 pack 23532011000036103 leuprorelin acetate 7.5 mg modified release injection, syringe 21320011000036109 leuprorelin +851821000168109 Bi Eligard CP 1 Month (1 x Eligard 1 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack, composite pack 237653 851811000168102 Bi Eligard CP 1 Month (1 x Eligard 1 Month pack, 28 x Bicalutamide (Tolmar) tablets), 1 pack 851741000168109 Bicalutamide (Tolmar) 50 mg film-coated tablet 851791000168101 Bi Eligard CP 1 Month 851731000168100 Bicalutamide (Tolmar) 851801000168100 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe] (&) bicalutamide 50 mg tablet [28], 1 pack 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1010351000168105 Aprolan 5 mg film-coated tablet, 28, blister pack 163400 1010341000168108 Aprolan 5 mg film-coated tablet, 28 1010331000168104 Aprolan 5 mg film-coated tablet 1010231000168106 Aprolan 1010231000168106 Aprolan 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +955981000168109 Genexol 150 mg/25 mL concentrated injection, 25 mL vial 129579 955971000168106 Genexol 150 mg/25 mL concentrated injection, 25 mL vial 955961000168100 Genexol 150 mg/25 mL concentrated injection, 25 mL vial 955891000168100 Genexol 955891000168100 Genexol 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +980371000168105 Murelax 15 mg uncoated tablet, 50, blister pack 75122 980361000168104 Murelax 15 mg uncoated tablet, 50 980261000168108 Murelax 15 mg uncoated tablet 3531011000036106 Murelax 3531011000036106 Murelax 980351000168101 oxazepam 15 mg tablet, 50 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +681831000168107 Esomeprazole (Apotex) 20 mg enteric tablet, 100, blister pack 210849 681821000168109 Esomeprazole (Apotex) 20 mg enteric tablet, 100 681751000168106 Esomeprazole (Apotex) 20 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +943961000168101 Medformin-1000 1 g film-coated tablet, 60, bottle 100291 943951000168103 Medformin-1000 1 g film-coated tablet, 60 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1007381000168100 Modafinil (Mylan) 100 mg uncoated tablet, 60, blister pack 269913 1007371000168103 Modafinil (Mylan) 100 mg uncoated tablet, 60 1007301000168108 Modafinil (Mylan) 100 mg uncoated tablet 1007271000168106 Modafinil (Mylan) 1007271000168106 Modafinil (Mylan) 27978011000036104 modafinil 100 mg tablet, 60 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +60314011000036108 Donnalix oral liquid solution, 100 mL, bottle 13872 56273011000036101 Donnalix oral liquid solution, 100 mL 53858011000036108 Donnalix oral liquid solution, 5 mL 58751000168104 Donnalix 58751000168104 Donnalix 63280011000036105 atropine sulfate monohydrate 19.4 microgram/5 mL + hyoscine hydrobromide trihydrate 6.5 microgram/5 mL + hyoscyamine sulfate dihydrate 103.7 microgram/5 mL oral liquid, 100 mL 61909011000036107 atropine sulfate monohydrate 19.4 microgram/5 mL + hyoscine hydrobromide trihydrate 6.5 microgram/5 mL + hyoscyamine sulfate dihydrate 103.7 microgram/5 mL oral liquid 61708011000036107 atropine sulfate monohydrate + hyoscine hydrobromide trihydrate + hyoscyamine +852141000168101 Olmesartan HCT 40/12.5 (Myl) film-coated tablet, 10, blister pack 273577 852131000168105 Olmesartan HCT 40/12.5 (Myl) film-coated tablet, 10 852111000168100 Olmesartan HCT 40/12.5 (Myl) film-coated tablet 852101000168103 Olmesartan HCT 40/12.5 (Myl) 852101000168103 Olmesartan HCT 40/12.5 (Myl) 852121000168107 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 10 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +68907011000036107 Aciclovir Cold Sore (Your Pharmacy) 5% cream, 5 g, bottle 114657 66613011000036108 Aciclovir Cold Sore (Your Pharmacy) 5% cream, 5 g 65344011000036109 Aciclovir Cold Sore (Your Pharmacy) 5% cream 55651000168101 Aciclovir Cold Sore (Your Pharmacy) 55651000168101 Aciclovir Cold Sore (Your Pharmacy) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +947251000168103 Risdone 2 mg film-coated tablet, 6, blister pack 144280 947241000168100 Risdone 2 mg film-coated tablet, 6 947221000168106 Risdone 2 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947231000168109 risperidone 2 mg tablet, 6 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +69054011000036104 Ipecacuanha Syrup (David Craig) 12 mg/mL oral liquid solution, 30 mL, bottle 14281 66856011000036104 Ipecacuanha Syrup (David Craig) 12 mg/mL oral liquid solution, 30 mL 65443011000036102 Ipecacuanha Syrup (David Craig) 12 mg/mL oral liquid solution 64969011000036100 Ipecacuanha Syrup (David Craig) 64969011000036100 Ipecacuanha Syrup (David Craig) 71466011000036102 prepared ipecacuanha 12 mg/mL oral liquid, 30 mL 70021011000036100 prepared ipecacuanha 12 mg/mL oral liquid 69761011000036107 prepared ipecacuanha +81029011000036107 Zinc and Castor Oil (David Craig) cream, 100 g, jar 14246 80508011000036104 Zinc and Castor Oil (David Craig) cream, 100 g 80171011000036105 Zinc and Castor Oil (David Craig) cream 80140011000036102 Zinc and Castor Oil (David Craig) 80140011000036102 Zinc and Castor Oil (David Craig) 81602011000036103 zinc oxide 7.5% + castor oil 50% cream, 100 g 81269011000036106 zinc oxide 7.5% + castor oil 50% cream 81222011000036107 zinc oxide + castor oil +116631000036107 Rosuvastatin (Actavis) 40 mg film-coated tablet, 30, blister pack 183647 114921000036108 Rosuvastatin (Actavis) 40 mg film-coated tablet, 30 113421000036102 Rosuvastatin (Actavis) 40 mg film-coated tablet 112551000036104 Rosuvastatin (Actavis) 112551000036104 Rosuvastatin (Actavis) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +780201000168104 Fentanyl (Apo) 50 microgram/hour patch, 2, sachet 152573 780191000168102 Fentanyl (Apo) 50 microgram/hour patch, 2 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235911000036104 fentanyl 50 microgram/hour patch, 2 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +142731000036109 Benzac AC Wash 5% application, 200 mL, bottle 52350 142521000036101 Benzac AC Wash 5% application, 200 mL 142391000036109 Benzac AC Wash 5% application 6011000168108 Benzac AC Wash 6011000168108 Benzac AC Wash 142531000036104 benzoyl peroxide 5% application, 200 mL 70283011000036102 benzoyl peroxide 5% application 61709011000036104 benzoyl peroxide +50514011000036105 Bactigras (7457) 10 cm x 10 cm medicated dressing, 10, carton 49358011000036102 Bactigras (7457) 10 cm x 10 cm medicated dressing, 10 48637011000036108 Bactigras (7457) 10 cm x 10 cm medicated dressing 7171000168101 Bactigras (7457) 7171000168101 Bactigras (7457) 51335011000036105 dressing gauze paraffin with chlorhexidine acetate 10 cm x 10 cm dressing, 10 50862011000036104 dressing gauze paraffin with chlorhexidine acetate 10 cm x 10 cm dressing 50734011000036101 dressing gauze paraffin with chlorhexidine acetate +44237011000036109 Navoban 2 mg/2 mL injection solution, 10 x 2 mL ampoules 58550 41709011000036108 Navoban 2 mg/2 mL injection solution, 10 x 2 mL ampoules 40155011000036100 Navoban 2 mg/2 mL injection solution, 2 mL ampoule 3216011000036101 Navoban 3216011000036101 Navoban 46521011000036100 tropisetron 2 mg/2 mL injection, 10 x 2 mL ampoules 45197011000036105 tropisetron 2 mg/2 mL injection, ampoule 21700011000036104 tropisetron +44407011000036101 Somac 20 mg enteric tablet, 140, blister pack 70829 41867011000036100 Somac 20 mg enteric tablet, 140 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46672011000036100 pantoprazole 20 mg enteric tablet, 140 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +767231000168107 Bleomycin 15K (Cipla) 15 000 international units powder for injection, 10 vials 220440 767221000168109 Bleomycin 15K (Cipla) 15 000 international units powder for injection, 10 vials 767161000168105 Bleomycin 15K (Cipla) 15 000 international units powder for injection, 15 000 international units vial 765691000168104 Bleomycin 15K (Cipla) 765691000168104 Bleomycin 15K (Cipla) 27824011000036104 bleomycin sulfate 15 000 international units injection, 10 vials 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +37381011000036108 Proviron 25 mg uncoated tablet, 50, bottle 10712 36635011000036107 Proviron 25 mg uncoated tablet, 50 36188011000036109 Proviron 25 mg uncoated tablet 35984011000036102 Proviron 35984011000036102 Proviron 38555011000036108 mesterolone 25 mg tablet, 50 37834011000036101 mesterolone 25 mg tablet 37717011000036102 mesterolone +993351000168109 Clarithromycin (Apotex) 250 mg film-coated tablet, 28, blister pack 174943 993341000168107 Clarithromycin (Apotex) 250 mg film-coated tablet, 28 993291000168109 Clarithromycin (Apotex) 250 mg film-coated tablet 993281000168106 Clarithromycin (Apotex) 993281000168106 Clarithromycin (Apotex) 51517011000036109 clarithromycin 250 mg tablet, 28 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +933238831000036109 Fentanyl (Sandoz) 50 microgram/hour patch, 7, sachet 152571 933235971000036105 Fentanyl (Sandoz) 50 microgram/hour patch, 7 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235981000036107 fentanyl 50 microgram/hour patch, 7 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +18648011000036106 Xylocard 10% (500 mg/5 mL) concentrated injection, 10 x 5 mL ampoules 12036 11638011000036101 Xylocard 10% (500 mg/5 mL) concentrated injection, 10 x 5 mL ampoules 5311011000036105 Xylocard 10% (500 mg/5 mL) concentrated injection, 5 mL ampoule 4153011000036102 Xylocard 4153011000036102 Xylocard 26718011000036101 lidocaine (lignocaine) hydrochloride 10% (500 mg/5 mL) injection, 10 x 5 mL ampoules 22113011000036101 lidocaine (lignocaine) hydrochloride 10% (500 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +961281000168109 Bisoprolol (Apo) 3.75 mg tablet, 42, blister pack 182117 961271000168106 Bisoprolol (Apo) 3.75 mg tablet, 42 961101000168105 Bisoprolol (Apo) 3.75 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 875871000168105 bisoprolol fumarate 3.75 mg tablet, 42 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +933230231000036108 Suboxone 2/0.5 sublingual film, 28, sachet 163443 933225551000036105 Suboxone 2/0.5 sublingual film, 28 933220091000036104 Suboxone 2/0.5 sublingual film 39741000168105 Suboxone 2/0.5 39741000168105 Suboxone 2/0.5 933225561000036108 buprenorphine 2 mg + naloxone 500 microgram sublingual film, 28 933220101000036108 buprenorphine 2 mg + naloxone 500 microgram sublingual film 21739011000036100 buprenorphine + naloxone +710681000168107 Strepsils Children 6+ Sugar Free Strawberry lozenge, 16, blister pack 190586 710671000168109 Strepsils Children 6+ Sugar Free Strawberry lozenge, 16 710661000168103 Strepsils Children 6+ Sugar Free Strawberry lozenge 710571000168105 Strepsils Children 6+ 710571000168105 Strepsils Children 6+ 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +44672011000036108 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack, composite pack 91562 42121011000036107 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46883011000036109 follitropin alfa 37.5 units (2.73 microgram) injection [50 x 37.5 units vials] (&) inert substance diluent [50 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44672011000036108 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack, composite pack 91562 42121011000036107 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46883011000036109 follitropin alfa 37.5 units (2.73 microgram) injection [50 x 37.5 units vials] (&) inert substance diluent [50 x 1 mL vials], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +817651000168102 Dynoval 5/10 (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 200816 817641000168104 Dynoval 5/10 (perindopril arginine/amlodipine) uncoated tablet, 30 817611000168103 Dynoval 5/10 (perindopril arginine/amlodipine) uncoated tablet 817601000168101 Dynoval 5/10 (perindopril arginine/amlodipine) 817601000168101 Dynoval 5/10 (perindopril arginine/amlodipine) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +34650011000036108 Alendronate Once Weekly (Terry White Chemists) 70 mg uncoated tablet, 4, blister pack 123866 34239011000036103 Alendronate Once Weekly (Terry White Chemists) 70 mg uncoated tablet, 4 33981011000036109 Alendronate Once Weekly (Terry White Chemists) 70 mg uncoated tablet 38941000168102 Alendronate Once Weekly (Terry White Chemists) 38941000168102 Alendronate Once Weekly (Terry White Chemists) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +938661000168101 Celecoxib (Pfizer) 100 mg hard capsule, 20, blister pack 211500 938651000168103 Celecoxib (Pfizer) 100 mg hard capsule, 20 938561000168102 Celecoxib (Pfizer) 100 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +60265011000036103 Fexo (Amcal) 120 mg film-coated tablet, 30, blister pack 134667 56224011000036103 Fexo (Amcal) 120 mg film-coated tablet, 30 53844011000036104 Fexo (Amcal) 120 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +963151000168108 Arflox 500 mg film-coated tablet, 14, bottle 92368 962931000168105 Arflox 500 mg film-coated tablet, 14 962861000168109 Arflox 500 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +44165011000036108 Dobutamine (Abbott) 250 mg/20 mL injection solution, 20 mL vial 54640 41641011000036108 Dobutamine (Abbott) 250 mg/20 mL injection solution, 20 mL vial 40119011000036109 Dobutamine (Abbott) 250 mg/20 mL injection solution, 20 mL vial 39558011000036100 Dobutamine (Abbott) 39558011000036100 Dobutamine (Abbott) 46460011000036105 dobutamine 250 mg/20 mL injection, 20 mL vial 45168011000036108 dobutamine 250 mg/20 mL injection, vial 37709011000036107 dobutamine +1044831000168106 Darunavir (Mylan) 800 mg film-coated tablet, 30, bottle 271133 1044821000168108 Darunavir (Mylan) 800 mg film-coated tablet, 30 1044811000168101 Darunavir (Mylan) 800 mg film-coated tablet 1044771000168101 Darunavir (Mylan) 1044771000168101 Darunavir (Mylan) 120761000036104 darunavir 800 mg tablet, 30 119721000036109 darunavir 800 mg tablet 32622011000036101 darunavir +848991000168108 Imatinib (Apotex) 400 mg hard capsule, 30, blister pack 261060 848981000168105 Imatinib (Apotex) 400 mg hard capsule, 30 848971000168107 Imatinib (Apotex) 400 mg hard capsule 848961000168101 Imatinib (Apotex) 848961000168101 Imatinib (Apotex) 830781000168107 imatinib 400 mg capsule, 30 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +19230011000036105 Adriamycin 50 mg/25 mL injection solution, 25 mL vial 47345 12520011000036109 Adriamycin 50 mg/25 mL injection solution, 25 mL vial 5706011000036102 Adriamycin 50 mg/25 mL injection solution, 25 mL vial 3524011000036107 Adriamycin 3524011000036107 Adriamycin 27169011000036101 doxorubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 22531011000036104 doxorubicin hydrochloride 50 mg/25 mL injection, vial 21638011000036100 doxorubicin +933211501000036100 Meloxicam (DP) 7.5 mg uncoated tablet, 30, blister pack 124382 933200341000036101 Meloxicam (DP) 7.5 mg uncoated tablet, 30 933194311000036108 Meloxicam (DP) 7.5 mg uncoated tablet 933193671000036109 Meloxicam (DP) 933193671000036109 Meloxicam (DP) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +793131000168106 Prodeinextra film-coated tablet, 24, blister pack 205550 793121000168108 Prodeinextra film-coated tablet, 24 793051000168104 Prodeinextra film-coated tablet 793041000168101 Prodeinextra 793041000168101 Prodeinextra 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +19570011000036102 Betnovate-1/2 0.05% ointment, 15 g, tube 57336 12841011000036103 Betnovate-1/2 0.05% ointment, 15 g 6132011000036103 Betnovate-1/2 0.05% ointment 36901000168100 Betnovate-1/2 36901000168100 Betnovate-1/2 28035011000036107 betamethasone (as valerate) 0.05% ointment, 15 g 23356011000036101 betamethasone (as valerate) 0.05% ointment 21366011000036103 betamethasone valerate +1101531000168109 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 40, blister pack 286356 1101521000168106 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 40 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 1082051000168106 cetirizine hydrochloride 10 mg tablet, 40 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +69345011000036102 Citravescent powder for oral liquid, 25 x 4 g sachets 27908 67145011000036103 Citravescent powder for oral liquid, 25 x 4 g sachets 65254011000036101 Citravescent powder for oral liquid, 4 g sachet 65161011000036108 Citravescent 65161011000036108 Citravescent 71710011000036109 sodium bicarbonate 1.45 g + citric acid 1.23 g + tartaric acid 400 mg powder for oral liquid, 25 x 4 g sachets 70142011000036102 sodium bicarbonate 1.45 g + citric acid 1.23 g + tartaric acid 400 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +20797011000036107 Isotretinoin (GenRx) 10 mg soft capsule, 60, blister pack 91347 13963011000036109 Isotretinoin (GenRx) 10 mg soft capsule, 60 7249011000036107 Isotretinoin (GenRx) 10 mg soft capsule 4134011000036104 Isotretinoin (GenRx) 4134011000036104 Isotretinoin (GenRx) 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +663471000168105 Priligy 30 mg film-coated tablet, 6, blister pack 147946 663461000168104 Priligy 30 mg film-coated tablet, 6 663411000168102 Priligy 30 mg film-coated tablet 663371000168103 Priligy 663371000168103 Priligy 663451000168101 dapoxetine 30 mg tablet, 6 663401000168100 dapoxetine 30 mg tablet 663391000168102 dapoxetine +86874011000036107 Topiramate (GA) 50 mg film-coated tablet, 60, bottle 155191 86758011000036100 Topiramate (GA) 50 mg film-coated tablet, 60 86634011000036102 Topiramate (GA) 50 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +1010511000168104 Aprolan 7.5 mg film-coated tablet, 28, blister pack 163401 1010501000168102 Aprolan 7.5 mg film-coated tablet, 28 1010491000168109 Aprolan 7.5 mg film-coated tablet 1010231000168106 Aprolan 1010231000168106 Aprolan 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +24621000036102 Biso 5 mg tablet, 28, blister pack 164255 22681000036106 Biso 5 mg tablet, 28 20321000036100 Biso 5 mg tablet 19861000036102 Biso 19861000036102 Biso 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +177211000036109 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28, blister pack 78652 175511000036100 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28 173471000036109 Femoston 1/10 (estradiol 1 mg) film-coated tablet 1681000168102 Femoston 1/10 1681000168102 Femoston 1/10 175521000036107 estradiol 1 mg tablet [14] (&) estradiol 1 mg + dydrogesterone 10 mg tablet [14], 28 22491011000036102 estradiol 1 mg tablet 21238011000036103 estradiol +177211000036109 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28, blister pack 219882 175511000036100 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28 173471000036109 Femoston 1/10 (estradiol 1 mg) film-coated tablet 1681000168102 Femoston 1/10 1681000168102 Femoston 1/10 175521000036107 estradiol 1 mg tablet [14] (&) estradiol 1 mg + dydrogesterone 10 mg tablet [14], 28 22491011000036102 estradiol 1 mg tablet 21238011000036103 estradiol +177211000036109 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28, blister pack 78652 175511000036100 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28 173191000036101 Femoston 1/10 (dydrogesterone 10 mg + estradiol 1 mg) film-coated tablet 1681000168102 Femoston 1/10 1681000168102 Femoston 1/10 175521000036107 estradiol 1 mg tablet [14] (&) estradiol 1 mg + dydrogesterone 10 mg tablet [14], 28 177691000036101 estradiol 1 mg + dydrogesterone 10 mg tablet 21906011000036106 estradiol + dydrogesterone +177211000036109 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28, blister pack 219882 175511000036100 Femoston 1/10 (14 x 1 mg tablets, 14 x 1 mg/10 mg tablets), 28 173191000036101 Femoston 1/10 (dydrogesterone 10 mg + estradiol 1 mg) film-coated tablet 1681000168102 Femoston 1/10 1681000168102 Femoston 1/10 175521000036107 estradiol 1 mg tablet [14] (&) estradiol 1 mg + dydrogesterone 10 mg tablet [14], 28 177691000036101 estradiol 1 mg + dydrogesterone 10 mg tablet 21906011000036106 estradiol + dydrogesterone +60239011000036107 Femazole One (Chemists' Own) 150 mg hard capsule, 1, blister pack 134317 56198011000036102 Femazole One (Chemists' Own) 150 mg hard capsule, 1 53837011000036106 Femazole One (Chemists' Own) 150 mg hard capsule 15841000168108 Femazole One (Chemists' Own) 15841000168108 Femazole One (Chemists' Own) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1097191000168102 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 40, blister pack 286508 1097181000168100 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 40 1097001000168109 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet 1096981000168100 Ibuprofen Double Strength (Medreich) 1096981000168100 Ibuprofen Double Strength (Medreich) 986081000168108 ibuprofen 400 mg tablet, 40 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +77339011000036106 Water for Injections (Pfizer (Perth)) injection solution, 200 x 2 mL ampoules 49284 76755011000036105 Water for Injections (Pfizer (Perth)) injection solution, 200 x 2 mL ampoules 76165011000036108 Water for Injections (Pfizer (Perth)) injection solution, 2 mL ampoule 75983011000036105 Water for Injections (Pfizer (Perth)) 75983011000036105 Water for Injections (Pfizer (Perth)) 78263011000036102 water for injections injection, 200 x 2 mL ampoules 77583011000036102 water for injections injection, 2 mL ampoule 77431011000036101 water for injections +951551000168106 Trandolapril (Chemmart) 2 mg capsule, 28, blister pack 135979 951541000168109 Trandolapril (Chemmart) 2 mg capsule, 28 951531000168100 Trandolapril (Chemmart) 2 mg capsule 951451000168105 Trandolapril (Chemmart) 951451000168105 Trandolapril (Chemmart) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +931578011000036105 Redichol 10 mg film-coated tablet, 500, bottle 163552 930739011000036108 Redichol 10 mg film-coated tablet, 500 930032011000036101 Redichol 10 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932415011000036101 pravastatin sodium 10 mg tablet, 500 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +933230271000036105 Revolade 50 mg film-coated tablet, 28, blister pack 158356 933224181000036106 Revolade 50 mg film-coated tablet, 28 933220031000036100 Revolade 50 mg film-coated tablet 933219071000036102 Revolade 933219071000036102 Revolade 933224191000036108 eltrombopag 50 mg tablet, 28 933220041000036105 eltrombopag 50 mg tablet 933232121000036100 eltrombopag +1059741000168109 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 42, blister pack 234468 1059731000168100 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 42 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930511000168102 rosuvastatin 5 mg tablet, 42 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +931728011000036105 Chlorofluor oral gel, 30 mL, bottle 21505 930888011000036109 Chlorofluor oral gel, 30 mL 930092011000036108 Chlorofluor oral gel 929858011000036103 Chlorofluor 929858011000036103 Chlorofluor 932469011000036100 chlorhexidine gluconate 0.2% + sodium fluoride 0.003% oral gel, 30 mL 931868011000036101 chlorhexidine gluconate 0.2% + sodium fluoride 0.003% oral gel 931801011000036109 chlorhexidine + fluoride +767391000168101 Bacthecal 10 mg/5 mL intrathecal injection, 5 mL ampoule 227898 767381000168104 Bacthecal 10 mg/5 mL intrathecal injection, 5 mL ampoule 767371000168102 Bacthecal 10 mg/5 mL intrathecal injection, 5 mL ampoule 767341000168109 Bacthecal 767341000168109 Bacthecal 27308011000036101 baclofen 10 mg/5 mL intrathecal injection, 5 mL ampoule 22661011000036102 baclofen 10 mg/5 mL intrathecal injection, ampoule 21227011000036102 baclofen +82420011000036108 Nu-Lax Fruit Laxative block, 250 g, wrapping 65510 82209011000036109 Nu-Lax Fruit Laxative block, 250 g 82042011000036104 Nu-Lax Fruit Laxative block 10061000168107 Nu-Lax Fruit Laxative 10061000168107 Nu-Lax Fruit Laxative 82573011000036105 senna leaf powder 800 mg/10 g + fig 3 g/10 g + date 3 g/10 g block, 250 g 82457011000036108 senna leaf powder 800 mg/10 g + fig 3 g/10 g + date 3 g/10 g block 82425011000036104 senna leaf powder + fig + date +73320011000036107 Gemcitabine (DBL) 1 g powder for injection, 1 vial 147588 73118011000036108 Gemcitabine (DBL) 1 g powder for injection, 1 vial 72970011000036106 Gemcitabine (DBL) 1 g powder for injection, vial 72908011000036104 Gemcitabine (DBL) 72908011000036104 Gemcitabine (DBL) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +85004011000036101 Resdone 500 microgram film-coated tablet, 60, blister pack 147652 84888011000036100 Resdone 500 microgram film-coated tablet, 60 80182011000036108 Resdone 500 microgram film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1010441000168101 Risedronate (Apotex) 150 mg film-coated tablet, 2, blister pack 181972 1010431000168105 Risedronate (Apotex) 150 mg film-coated tablet, 2 1010401000168103 Risedronate (Apotex) 150 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 78195011000036102 risedronate sodium 150 mg tablet, 2 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +818791000168100 Quetiapine XR (Apo) 300 mg modified release tablet, 60, blister pack 226818 818781000168103 Quetiapine XR (Apo) 300 mg modified release tablet, 60 818731000168104 Quetiapine XR (Apo) 300 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +1049011000168105 Oxycodone (WKT) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 277851 1049001000168107 Oxycodone (WKT) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 1048991000168107 Oxycodone (WKT) 20 mg/2 mL injection solution, 2 mL ampoule 1048891000168100 Oxycodone (WKT) 1048891000168100 Oxycodone (WKT) 35094011000036107 oxycodone hydrochloride 20 mg/2 mL injection, 5 x 2 mL ampoules 34846011000036103 oxycodone hydrochloride 20 mg/2 mL injection, ampoule 21259011000036105 oxycodone +69653011000036109 Nurofen 5% gel, 35 g, tube 79909 67452011000036107 Nurofen 5% gel, 35 g 65669011000036108 Nurofen 5% gel 5641000168109 Nurofen 5641000168109 Nurofen 71980011000036101 ibuprofen 5% gel, 35 g 70270011000036104 ibuprofen 5% gel 21885011000036105 ibuprofen +116771000036104 Cavstat 20 mg film-coated tablet, 30, blister pack 186383 115031000036105 Cavstat 20 mg film-coated tablet, 30 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +116771000036104 Cavstat 20 mg film-coated tablet, 30, blister pack 234514 115031000036105 Cavstat 20 mg film-coated tablet, 30 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +52761011000036100 Lisinopril (Apo) 5 mg tablet, 30, blister pack 213393 52574011000036109 Lisinopril (Apo) 5 mg tablet, 30 52424011000036100 Lisinopril (Apo) 5 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +52761011000036100 Lisinopril (Apo) 5 mg tablet, 30, blister pack 143976 52574011000036109 Lisinopril (Apo) 5 mg tablet, 30 52424011000036100 Lisinopril (Apo) 5 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +61645011000036102 Advil 200 mg soft capsule, 40, blister pack 97229 57567011000036107 Advil 200 mg soft capsule, 40 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63932011000036104 ibuprofen 200 mg capsule, 40 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +680551000168109 Temodal 140 mg hard capsule, 5, sachet 164213 52089011000036101 Temodal 140 mg hard capsule, 5 51985011000036108 Temodal 140 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +81118011000036101 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution, 100 mL, bottle 163526 80623011000036106 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution, 100 mL 80211011000036101 Senega and Ammonia Mixture (Gold Cross) Cherry oral liquid solution 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 81683011000036109 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 100 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +928866011000036107 Risperibell 2 mg film-coated tablet, 60, blister pack 139814 928228011000036106 Risperibell 2 mg film-coated tablet, 60 927886011000036102 Risperibell 2 mg film-coated tablet 927801011000036108 Risperibell 927801011000036108 Risperibell 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +909721000168102 Chorit 40 mg film-coated tablet, 30, blister pack 179835 909711000168109 Chorit 40 mg film-coated tablet, 30 909681000168108 Chorit 40 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +710591000168106 Strepsils Soothing lozenge, 8, blister pack 14975 710581000168108 Strepsils Soothing lozenge, 8 710491000168107 Strepsils Soothing lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +993441000168100 Lyrica 200 mg hard capsule, 20, bottle 99534 993191000168101 Lyrica 200 mg hard capsule, 20 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 903271000168106 pregabalin 200 mg capsule, 20 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +44260011000036102 Persantin 100 mg sugar coated tablet, 100, blister pack 61589 41731011000036102 Persantin 100 mg sugar coated tablet, 100 40171011000036104 Persantin 100 mg sugar coated tablet 17331000168100 Persantin 17331000168100 Persantin 46538011000036107 dipyridamole 100 mg tablet, 100 45209011000036103 dipyridamole 100 mg tablet 21674011000036109 dipyridamole +44554011000036107 Zyclir 800 mg dispersible tablet, 35, blister pack 80826 42007011000036104 Zyclir 800 mg dispersible tablet, 35 40317011000036105 Zyclir 800 mg dispersible tablet 24351000168109 Zyclir 24351000168109 Zyclir 77571000036106 aciclovir 800 mg dispersible tablet, 35 77531000036109 aciclovir 800 mg dispersible tablet 21239011000036106 aciclovir +18288011000036102 Caduet 5/20 film-coated tablet, 30, blister pack 100696 11157011000036102 Caduet 5/20 film-coated tablet, 30 5218011000036108 Caduet 5/20 film-coated tablet 54701000168105 Caduet 5/20 54701000168105 Caduet 5/20 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +1082201000168102 Neutrafluor 5000 Gel 1.105% toothpaste, 122 g, bottle 201976 1082191000168100 Neutrafluor 5000 Gel 1.105% toothpaste, 122 g 1082171000168101 Neutrafluor 5000 Gel 1.105% toothpaste 1082151000168105 Neutrafluor 5000 Gel 1082151000168105 Neutrafluor 5000 Gel 1082181000168103 sodium fluoride 1.105% toothpaste, 122 g 1082161000168107 sodium fluoride 1.105% toothpaste 61768011000036106 fluoride +79669011000036103 Zoton Fastab 15 mg orally disintegrating tablet, 28, blister pack 153575 79494011000036104 Zoton Fastab 15 mg orally disintegrating tablet, 28 79379011000036100 Zoton Fastab 15 mg orally disintegrating tablet 15461000168109 Zoton Fastab 15461000168109 Zoton Fastab 79818011000036103 lansoprazole 15 mg orally disintegrating tablet, 28 79747011000036107 lansoprazole 15 mg orally disintegrating tablet 21491011000036101 lansoprazole +20581011000036104 Flolan (1 x 1.5 mg vial, 2 x 50 mL inert diluent vials), 1 pack, composite pack 80343 13770011000036104 Flolan (1 x 1.5 mg vial, 2 x 50 mL inert diluent vials), 1 pack 638621000168107 Flolan (inert substance) diluent, 50 mL vial 2928011000036100 Flolan 2928011000036100 Flolan 27931011000036106 epoprostenol 1.5 mg injection [1 vial] (&) inert substance diluent [2 x 50 mL vials], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +20581011000036104 Flolan (1 x 1.5 mg vial, 2 x 50 mL inert diluent vials), 1 pack, composite pack 80343 13770011000036104 Flolan (1 x 1.5 mg vial, 2 x 50 mL inert diluent vials), 1 pack 7055011000036100 Flolan (epoprostenol 1.5 mg) powder for injection, 1.5 mg vial 2928011000036100 Flolan 2928011000036100 Flolan 27931011000036106 epoprostenol 1.5 mg injection [1 vial] (&) inert substance diluent [2 x 50 mL vials], 1 pack 23255011000036104 epoprostenol 1.5 mg injection, vial 21703011000036107 epoprostenol +947171000168101 Risdone 3 mg film-coated tablet, 56, blister pack 144281 947161000168107 Risdone 3 mg film-coated tablet, 56 946971000168101 Risdone 3 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 947151000168105 risperidone 3 mg tablet, 56 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +1044761000168107 Terbinafine (Apo) 250 mg uncoated tablet, 42, blister pack 100025 1044751000168105 Terbinafine (Apo) 250 mg uncoated tablet, 42 1044741000168108 Terbinafine (Apo) 250 mg uncoated tablet 1044731000168104 Terbinafine (Apo) 1044731000168104 Terbinafine (Apo) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +84304011000036106 Vimpat 50 mg film-coated tablet, 14, blister pack 196449 83997011000036105 Vimpat 50 mg film-coated tablet, 14 83631011000036108 Vimpat 50 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84632011000036104 lacosamide 50 mg tablet, 14 84431011000036107 lacosamide 50 mg tablet 84408011000036109 lacosamide +84304011000036106 Vimpat 50 mg film-coated tablet, 14, blister pack 151818 83997011000036105 Vimpat 50 mg film-coated tablet, 14 83631011000036108 Vimpat 50 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84632011000036104 lacosamide 50 mg tablet, 14 84431011000036107 lacosamide 50 mg tablet 84408011000036109 lacosamide +930091000168101 Zantac 300 mg effervescent tablet, 15, tube 45995 930081000168104 Zantac 300 mg effervescent tablet, 15 930031000168100 Zantac 300 mg effervescent tablet 3563011000036102 Zantac 3563011000036102 Zantac 930071000168102 ranitidine 300 mg effervescent tablet, 15 930021000168103 ranitidine 300 mg effervescent tablet 21682011000036109 ranitidine +17781011000036109 Simvastatin (RL) 10 mg film-coated tablet, 30, blister pack 116799 11543011000036102 Simvastatin (RL) 10 mg film-coated tablet, 30 4606011000036100 Simvastatin (RL) 10 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +38971000036102 Escitalupin 20 mg film-coated tablet, 28, blister pack 165886 35341000036104 Escitalupin 20 mg film-coated tablet, 28 33041000036103 Escitalupin 20 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1118571000168100 Quetin 100 mg film-coated tablet, 60, blister pack 204847 1118561000168106 Quetin 100 mg film-coated tablet, 60 1118531000168103 Quetin 100 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +60504011000036109 Xyzal 5 mg film-coated tablet, 30, blister pack 150854 56462011000036102 Xyzal 5 mg film-coated tablet, 30 53929011000036106 Xyzal 5 mg film-coated tablet 53093011000036108 Xyzal 53093011000036108 Xyzal 63376011000036105 levocetirizine dihydrochloride 5 mg tablet, 30 61931011000036101 levocetirizine dihydrochloride 5 mg tablet 61816011000036108 levocetirizine +20555011000036106 Solavert 80 mg uncoated tablet, 60, blister pack 79916 13747011000036102 Solavert 80 mg uncoated tablet, 60 7032011000036107 Solavert 80 mg uncoated tablet 3758011000036100 Solavert 3758011000036100 Solavert 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +43612011000036104 Zedd 500 mg film-coated tablet, 3, blister pack 107602 41159011000036106 Zedd 500 mg film-coated tablet, 3 39959011000036102 Zedd 500 mg film-coated tablet 39708011000036106 Zedd 39708011000036106 Zedd 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +739601000168103 Eltroxin 25 microgram tablet, 200, bottle 206944 739591000168105 Eltroxin 25 microgram tablet, 200 739571000168109 Eltroxin 25 microgram tablet 739521000168108 Eltroxin 739521000168108 Eltroxin 739581000168107 levothyroxine sodium 25 microgram tablet, 200 739561000168103 levothyroxine sodium 25 microgram tablet 21577011000036109 levothyroxine +933247511000036101 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet, 100, blister pack 175922 933244371000036109 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet, 100 933241831000036104 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 79208011000036105 bisoprolol fumarate 5 mg tablet, 100 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +105211000036106 Ksart HCT 300/12.5 tablet, 30, blister pack 186254 102321000036102 Ksart HCT 300/12.5 tablet, 30 98771000036105 Ksart HCT 300/12.5 tablet 12291000168108 Ksart HCT 300/12.5 12291000168108 Ksart HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +18216011000036104 Sertraline (Winthrop) 50 mg film-coated tablet, 30, blister pack 119204 11607011000036106 Sertraline (Winthrop) 50 mg film-coated tablet, 30 4950011000036107 Sertraline (Winthrop) 50 mg film-coated tablet 4013011000036101 Sertraline (Winthrop) 4013011000036101 Sertraline (Winthrop) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +37476011000036100 Ventolin 500 microgram/mL injection solution, 5 x 1 mL ampoules 12527 36744011000036101 Ventolin 500 microgram/mL injection solution, 5 x 1 mL ampoules 36133011000036107 Ventolin 500 microgram/mL injection solution, ampoule 34481000168108 Ventolin 34481000168108 Ventolin 38652011000036108 salbutamol 500 microgram/mL injection, 5 x 1 mL ampoules 37905011000036101 salbutamol 500 microgram/mL injection, ampoule 21493011000036100 salbutamol +1092851000168103 Ibuprofen (Medix) Capsule Shaped 200 mg sugar coated tablet, 12, blister pack 286620 1092841000168100 Ibuprofen (Medix) Capsule Shaped 200 mg sugar coated tablet, 12 1092831000168109 Ibuprofen (Medix) Capsule Shaped 200 mg sugar coated tablet 1092521000168108 Ibuprofen (Medix) 1092521000168108 Ibuprofen (Medix) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +68936011000036101 QV Intensive Moisturising Cleanser 51.5% lotion, 500 mL, bottle 118263 66632011000036109 QV Intensive Moisturising Cleanser 51.5% lotion, 500 mL 65514011000036100 QV Intensive Moisturising Cleanser 51.5% lotion 65184011000036109 QV Intensive Moisturising Cleanser 65184011000036109 QV Intensive Moisturising Cleanser 71343011000036107 light liquid paraffin 51.5% lotion, 500 mL 69962011000036106 light liquid paraffin 51.5% lotion 33638011000036106 light liquid paraffin +56331000036100 Maxiclear Cold and Flu Relief uncoated tablet, 24, blister pack 159399 51771000036105 Maxiclear Cold and Flu Relief uncoated tablet, 24 48711000036105 Maxiclear Cold and Flu Relief uncoated tablet 48481000036109 Maxiclear Cold and Flu Relief 48481000036109 Maxiclear Cold and Flu Relief 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +60069011000036109 Bisolvon Chesty 8 mg uncoated tablet, 30, blister pack 125375 56031011000036105 Bisolvon Chesty 8 mg uncoated tablet, 30 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63199011000036103 bromhexine hydrochloride 8 mg tablet, 30 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +60069011000036109 Bisolvon Chesty 8 mg uncoated tablet, 30, blister pack 17915 56031011000036105 Bisolvon Chesty 8 mg uncoated tablet, 30 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63199011000036103 bromhexine hydrochloride 8 mg tablet, 30 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +69362011000036102 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) intravenous infusion injection, 500 mL bag 29685 67162011000036103 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) intravenous infusion injection, 500 mL bag 65284011000036107 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) intravenous infusion injection, 500 mL bag 14541000168107 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) 14541000168107 Sodium Chloride 0.18% and Glucose 4% (Fresenius Kabi) 71725011000036106 sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, 500 mL bag 70150011000036104 sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +39412011000036100 Cosamide 50 mg film-coated tablet, 40, blister pack 135207 39295011000036108 Cosamide 50 mg film-coated tablet, 40 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 39487011000036100 bicalutamide 50 mg tablet, 40 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +697951000168100 Zilfojim ODT 4 mg orally disintegrating tablet, 4, blister pack 196804 697941000168102 Zilfojim ODT 4 mg orally disintegrating tablet, 4 697931000168106 Zilfojim ODT 4 mg orally disintegrating tablet 697891000168103 Zilfojim ODT 697891000168103 Zilfojim ODT 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +933238991000036103 Fentanyl (Sandoz) 100 microgram/hour patch, 7, sachet 152576 933236291000036107 Fentanyl (Sandoz) 100 microgram/hour patch, 7 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236301000036106 fentanyl 100 microgram/hour patch, 7 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +61599011000036102 Sinus (Terry White Chemists) uncoated tablet, 24, blister pack 95857 57521011000036105 Sinus (Terry White Chemists) uncoated tablet, 24 54338011000036107 Sinus (Terry White Chemists) uncoated tablet 53348011000036109 Sinus (Terry White Chemists) 53348011000036109 Sinus (Terry White Chemists) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +156991000036107 Kalydeco 150 mg film-coated tablet, 56, blister pack 198655 156041000036100 Kalydeco 150 mg film-coated tablet, 56 154781000036103 Kalydeco 150 mg film-coated tablet 154531000036107 Kalydeco 154531000036107 Kalydeco 156051000036102 ivacaftor 150 mg tablet, 56 154791000036101 ivacaftor 150 mg tablet 157061000036101 ivacaftor +61429011000036101 Paracetamol (Herron) 500 mg uncoated tablet, 96, bottle 82690 57354011000036107 Paracetamol (Herron) 500 mg uncoated tablet, 96 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +656171000168103 Levetiracetam (AN) 250 mg film-coated tablet, 60, blister pack 189879 656161000168109 Levetiracetam (AN) 250 mg film-coated tablet, 60 656151000168107 Levetiracetam (AN) 250 mg film-coated tablet 656141000168105 Levetiracetam (AN) 656141000168105 Levetiracetam (AN) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +160211000036103 Temozolomide (Orion) 180 mg hard capsule, 5, bottle 179871 158951000036104 Temozolomide (Orion) 180 mg hard capsule, 5 158281000036102 Temozolomide (Orion) 180 mg hard capsule 40411000036104 Temozolomide (Orion) 40411000036104 Temozolomide (Orion) 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +18850011000036102 Mexitil 200 mg hard capsule, 100, blister pack 17931 12161011000036104 Mexitil 200 mg hard capsule, 100 4962011000036101 Mexitil 200 mg hard capsule 3044011000036107 Mexitil 3044011000036107 Mexitil 26956011000036104 mexiletine hydrochloride 200 mg capsule, 100 22331011000036101 mexiletine hydrochloride 200 mg capsule 21453011000036106 mexiletine +59997011000036105 Nizaction 150 mg soft capsule, 28, blister pack 122537 55959011000036103 Nizaction 150 mg soft capsule, 28 53738011000036109 Nizaction 150 mg soft capsule 53530011000036106 Nizaction 53530011000036106 Nizaction 63178011000036100 nizatidine 150 mg capsule, 28 23518011000036109 nizatidine 150 mg capsule 21421011000036109 nizatidine +61308011000036106 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 15 g, tube 80846 57244011000036104 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 15 g 54253011000036105 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 27085011000036107 bifonazole 1% cream, 15 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +973061000168103 Pregabalin (Apotex) 300 mg hard capsule, 60, blister pack 267559 973051000168100 Pregabalin (Apotex) 300 mg hard capsule, 60 972981000168103 Pregabalin (Apotex) 300 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +69604011000036104 Bisalax 5 mg enteric tablet, 250, blister pack 70516 67403011000036108 Bisalax 5 mg enteric tablet, 250 6628011000036102 Bisalax 5 mg enteric tablet 1091000168108 Bisalax 1091000168108 Bisalax 71938011000036106 bisacodyl 5 mg enteric tablet, 250 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +771321000168101 Genox 10 mg uncoated tablet, 30, blister pack 40063 771311000168108 Genox 10 mg uncoated tablet, 30 4877011000036104 Genox 10 mg uncoated tablet 3564011000036100 Genox 3564011000036100 Genox 26648011000036103 tamoxifen 10 mg tablet, 30 22662011000036108 tamoxifen 10 mg tablet 21494011000036103 tamoxifen +853511000168103 Alphastat 5 mg film-coated tablet, 30, blister pack 187391 853381000168102 Alphastat 5 mg film-coated tablet, 30 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +853511000168103 Alphastat 5 mg film-coated tablet, 30, blister pack 212157 853381000168102 Alphastat 5 mg film-coated tablet, 30 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +944201000168105 Risperidone (Chemmart) 2 mg film-coated tablet, 60, blister pack 127593 944191000168107 Risperidone (Chemmart) 2 mg film-coated tablet, 60 944181000168109 Risperidone (Chemmart) 2 mg film-coated tablet 944101000168101 Risperidone (Chemmart) 944101000168101 Risperidone (Chemmart) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +43903011000036105 Ramipril (DP) 2.5 mg hard capsule, 30, blister pack 134793 41395011000036105 Ramipril (DP) 2.5 mg hard capsule, 30 39805011000036102 Ramipril (DP) 2.5 mg hard capsule 39698011000036100 Ramipril (DP) 39698011000036100 Ramipril (DP) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +68927011000036101 Junior Cold and Flu Medicine (Nyal) 5 mg/5 mL oral liquid solution, 200 mL, bottle 122784 66668011000036102 Junior Cold and Flu Medicine (Nyal) 5 mg/5 mL oral liquid solution, 200 mL 65311011000036101 Junior Cold and Flu Medicine (Nyal) 5 mg/5 mL oral liquid solution, 5 mL 65119011000036108 Junior Cold and Flu Medicine (Nyal) 65119011000036108 Junior Cold and Flu Medicine (Nyal) 72001011000036101 phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 70274011000036109 phenylephrine hydrochloride 5 mg/5 mL oral liquid 37732011000036107 phenylephrine +653201000168107 Epirubicin Hydrochloride (Act) 200 mg/100 mL concentrated injection, 100 mL vial 146599 653191000168109 Epirubicin Hydrochloride (Act) 200 mg/100 mL concentrated injection, 100 mL vial 653181000168106 Epirubicin Hydrochloride (Act) 200 mg/100 mL concentrated injection, 100 mL vial 47661000168107 Epirubicin Hydrochloride (Act) 47661000168107 Epirubicin Hydrochloride (Act) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +921181000168108 Cilopam 20 mg film-coated tablet, 500, bottle 158865 921171000168105 Cilopam 20 mg film-coated tablet, 500 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203261000036103 citalopram 20 mg tablet, 500 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +84356011000036107 Cold and Flu Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24, blister pack 161086 84049011000036102 Cold and Flu Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24 83670011000036103 Cold and Flu Day and Night PE (Night) (Chemmart) uncoated tablet 44201000168100 Cold and Flu Day and Night PE (Chemmart) 44321000168103 Cold and Flu Day and Night PE (Night) (Chemmart) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +84356011000036107 Cold and Flu Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24, blister pack 161086 84049011000036102 Cold and Flu Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24 83671011000036105 Cold and Flu Day and Night PE (Day) (Chemmart) uncoated tablet 44201000168100 Cold and Flu Day and Night PE (Chemmart) 44441000168102 Cold and Flu Day and Night PE (Day) (Chemmart) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +18956011000036105 Intal Spincap 20 mg powder for inhalation, 100 capsules, blister pack 27760 12264011000036103 Intal Spincap 20 mg powder for inhalation, 100 capsules 5887011000036101 Intal Spincap 20 mg powder for inhalation, 1 capsule 30631000168104 Intal Spincap 30631000168104 Intal Spincap 27026011000036106 sodium cromoglycate 20 mg powder for inhalation, 100 capsules 22399011000036105 sodium cromoglycate 20 mg powder for inhalation, 1 capsule 21253011000036107 cromoglycate +30631000036106 Metformin Hydrochloride (Pfizer) 500 mg film-coated tablet, 100, blister pack 180434 29141000036101 Metformin Hydrochloride (Pfizer) 500 mg film-coated tablet, 100 26381000036102 Metformin Hydrochloride (Pfizer) 500 mg film-coated tablet 40351000168101 Metformin Hydrochloride (Pfizer) 40351000168101 Metformin Hydrochloride (Pfizer) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +61671011000036103 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 36, bottle 97357 57593011000036101 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 36 54357011000036107 Paracetamol Tabsule (Herron) 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 63944011000036109 paracetamol 500 mg tablet, 36 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +933214511000036101 Sodium Chloride (B Braun) 0.9% (450 mg/50 mL) intravenous infusion injection, 20 x 50 mL bottles 154967 933202311000036103 Sodium Chloride (B Braun) 0.9% (450 mg/50 mL) intravenous infusion injection, 20 x 50 mL bottles 933195091000036104 Sodium Chloride (B Braun) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bottle 78605011000036104 Sodium Chloride (B Braun) 78605011000036104 Sodium Chloride (B Braun) 933202331000036107 sodium chloride 0.9% (450 mg/50 mL) injection, 20 x 50 mL bottles 933195101000036108 sodium chloride 0.9% (450 mg/50 mL) injection, bottle 21308011000036103 sodium chloride +85013011000036101 Clopidogrel (Terry White Chemists) 75 mg film-coated tablet, 28, blister pack 129644 84882011000036103 Clopidogrel (Terry White Chemists) 75 mg film-coated tablet, 28 84780011000036104 Clopidogrel (Terry White Chemists) 75 mg film-coated tablet 84756011000036106 Clopidogrel (Terry White Chemists) 84756011000036106 Clopidogrel (Terry White Chemists) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1059421000168107 Atomoxetine (Medis) 80 mg hard capsule, 28, blister pack 238333 1059411000168100 Atomoxetine (Medis) 80 mg hard capsule, 28 1059381000168103 Atomoxetine (Medis) 80 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +651831000168103 Tacrolimus (Pharmacor) 500 microgram hard capsule, 100, blister pack 209272 650971000168103 Tacrolimus (Pharmacor) 500 microgram hard capsule, 100 650961000168109 Tacrolimus (Pharmacor) 500 microgram hard capsule 650951000168107 Tacrolimus (Pharmacor) 650951000168107 Tacrolimus (Pharmacor) 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +19982011000036102 Asasantin SR modified release capsule, 60, bottle 68051 13223011000036102 Asasantin SR modified release capsule, 60 6505011000036106 Asasantin SR modified release capsule 62131000168103 Asasantin SR 62131000168103 Asasantin SR 27629011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule, 60 22967011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule 21386011000036101 dipyridamole + aspirin +973021000168108 Pregabalin (Apotex) 300 mg hard capsule, 20, blister pack 267559 973011000168101 Pregabalin (Apotex) 300 mg hard capsule, 20 972981000168103 Pregabalin (Apotex) 300 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +814591000168103 Levetiracetam IV (Apo) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 222090 814581000168101 Levetiracetam IV (Apo) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 814571000168104 Levetiracetam IV (Apo) 500 mg/5 mL concentrated injection, 5 mL vial 814561000168105 Levetiracetam IV (Apo) 814561000168105 Levetiracetam IV (Apo) 120611000036108 levetiracetam 500 mg/5 mL injection, 10 x 5 mL vials 45019011000036106 levetiracetam 500 mg/5 mL injection, vial 21766011000036102 levetiracetam +60631011000036105 Sodium Nitrite (Phebra) 300 mg/10 mL injection solution, 10 x 10 mL vials 23074 56589011000036103 Sodium Nitrite (Phebra) 300 mg/10 mL injection solution, 10 x 10 mL vials 53992011000036105 Sodium Nitrite (Phebra) 300 mg/10 mL injection solution, 10 mL vial 53401011000036100 Sodium Nitrite (Phebra) 53401011000036100 Sodium Nitrite (Phebra) 63443011000036105 sodium nitrite 300 mg/10 mL injection, 10 x 10 mL vials 61968011000036100 sodium nitrite 300 mg/10 mL injection, vial 61730011000036103 sodium nitrite +923911011000036109 Paracetamol Tabsule (Herron) Gold 500 mg film-coated tablet, 25, bottle 167567 923455011000036101 Paracetamol Tabsule (Herron) Gold 500 mg film-coated tablet, 25 923090011000036109 Paracetamol Tabsule (Herron) Gold 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 63943011000036107 paracetamol 500 mg tablet, 25 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +843371000168103 Utrogestan 200 mg shell pessary, 14, blister pack 232824 843361000168109 Utrogestan 200 mg shell pessary, 14 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843351000168107 progesterone 200 mg pessary, 14 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +21010011000036103 Lisinopril (Terry White Chemists) 10 mg tablet, 30, blister pack 96328 14156011000036107 Lisinopril (Terry White Chemists) 10 mg tablet, 30 7435011000036108 Lisinopril (Terry White Chemists) 10 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +21010011000036103 Lisinopril (Terry White Chemists) 10 mg tablet, 30, blister pack 213397 14156011000036107 Lisinopril (Terry White Chemists) 10 mg tablet, 30 7435011000036108 Lisinopril (Terry White Chemists) 10 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +21010011000036103 Lisinopril (Terry White Chemists) 10 mg tablet, 30, blister pack 143987 14156011000036107 Lisinopril (Terry White Chemists) 10 mg tablet, 30 7435011000036108 Lisinopril (Terry White Chemists) 10 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +933214471000036106 Tralen 100 mg film-coated tablet, 28, blister pack 160781 933203771000036104 Tralen 100 mg film-coated tablet, 28 933195881000036108 Tralen 100 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 46996011000036108 sertraline 100 mg tablet, 28 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +791531000168102 Trexject 7.5 mg/0.15 mL injection solution, 4 x 0.15 mL syringes 233714 791521000168100 Trexject 7.5 mg/0.15 mL injection solution, 4 x 0.15 mL syringes 791471000168103 Trexject 7.5 mg/0.15 mL injection solution, 0.15 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791511000168107 methotrexate 7.5 mg/0.15 mL injection, 4 x 0.15 mL syringes 791461000168109 methotrexate 7.5 mg/0.15 mL injection, syringe 21342011000036105 methotrexate +929003011000036101 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 30, blister pack 158915 928364011000036101 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 30 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +719521000168103 Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules 10372 719511000168105 Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules 719501000168107 Primacor 10 mg/10 mL concentrated injection, 10 mL ampoule 35858011000036105 Primacor 35858011000036105 Primacor 38544011000036106 milrinone lactate 10 mg/10 mL injection, 10 x 10 mL ampoules 37825011000036104 milrinone lactate 10 mg/10 mL injection, ampoule 37754011000036104 milrinone +849151000168106 Vzole 50 mg film-coated tablet, 2, blister pack 238239 849141000168109 Vzole 50 mg film-coated tablet, 2 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46814011000036109 voriconazole 50 mg tablet, 2 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +50292011000036108 Valine Amino Acid Supplement containing 50 mg valine powder for oral liquid, 30 x 4 g sachets 49290011000036103 Valine Amino Acid Supplement containing 50 mg valine powder for oral liquid, 30 x 4 g sachets 289091000168102 Valine Amino Acid Supplement containing 50 mg valine powder for oral liquid, 4 g sachet 48277011000036108 Valine Amino Acid Supplement 48277011000036108 Valine Amino Acid Supplement 51277011000036107 valine with carbohydrate containing 50 mg valine powder for oral liquid, 30 x 4 g sachets 288321000168105 valine with carbohydrate containing 50 mg valine powder for oral liquid, 4 g sachet 50774011000036104 valine with carbohydrate +1096871000168108 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 4, blister pack 287475 1096861000168102 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 4 1096831000168105 Strepsils Extra Honey and Lemon 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72004011000036103 hexylresorcinol 2.4 mg lozenge, 4 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +24301000036103 Cadatin 10/80 film-coated tablet, 30, blister pack 179144 22781000036102 Cadatin 10/80 film-coated tablet, 30 20081000036101 Cadatin 10/80 film-coated tablet 60701000168108 Cadatin 10/80 60701000168108 Cadatin 10/80 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +931561011000036106 Cholpra 10 mg film-coated tablet, 30, bottle 163542 930722011000036101 Cholpra 10 mg film-coated tablet, 30 930028011000036101 Cholpra 10 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +710841000168101 Fludara IV 50 mg powder for injection, 5 vials 52666 710831000168105 Fludara IV 50 mg powder for injection, 5 vials 710821000168107 Fludara IV 50 mg powder for injection, 50 mg vial 710811000168100 Fludara IV 710811000168100 Fludara IV 39493011000036108 fludarabine phosphate 50 mg injection, 5 vials 39441011000036101 fludarabine phosphate 50 mg injection, vial 39430011000036109 fludarabine +988851000168107 Strong Pain Relief (Blooms The Chemist) uncoated tablet, 24, blister pack 150020 988841000168105 Strong Pain Relief (Blooms The Chemist) uncoated tablet, 24 988831000168101 Strong Pain Relief (Blooms The Chemist) uncoated tablet 988821000168104 Strong Pain Relief (Blooms The Chemist) 988821000168104 Strong Pain Relief (Blooms The Chemist) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +672011000168109 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 125, blister pack 196492 672001000168106 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 125 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 671991000168109 metoclopramide hydrochloride 10 mg tablet, 125 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +74873011000036104 Hepatitis B Immunoglobulin-VF (CSL) 100 units injection solution, 1 vial 61213 74360011000036101 Hepatitis B Immunoglobulin-VF (CSL) 100 units injection solution, 1 vial 73891011000036105 Hepatitis B Immunoglobulin-VF (CSL) 100 units injection solution, vial 10641000168101 Hepatitis B Immunoglobulin-VF (CSL) 10641000168101 Hepatitis B Immunoglobulin-VF (CSL) 75460011000036101 hepatitis B virus immunoglobulin 100 units injection, 1 vial 75071011000036107 hepatitis B virus immunoglobulin 100 units injection, vial 74971011000036105 hepatitis B virus immunoglobulin +111061000036101 Doxorubicin Hydrochloride (SZ) 10 mg/5 mL concentrated injection, 5 mL vial 174246 109341000036102 Doxorubicin Hydrochloride (SZ) 10 mg/5 mL concentrated injection, 5 mL vial 106841000036100 Doxorubicin Hydrochloride (SZ) 10 mg/5 mL concentrated injection, 5 mL vial 106551000036100 Doxorubicin Hydrochloride (SZ) 106551000036100 Doxorubicin Hydrochloride (SZ) 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +853491000168108 Alphastat 40 mg film-coated tablet, 7, bottle 212164 853441000168100 Alphastat 40 mg film-coated tablet, 7 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 853431000168109 rosuvastatin 40 mg tablet, 7 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +853491000168108 Alphastat 40 mg film-coated tablet, 7, bottle 187392 853441000168100 Alphastat 40 mg film-coated tablet, 7 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 853431000168109 rosuvastatin 40 mg tablet, 7 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +20224011000036100 Oxynorm 5 mg hard capsule, 20, bottle 74146 13439011000036103 Oxynorm 5 mg hard capsule, 20 6721011000036100 Oxynorm 5 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +1049331000168102 Novacodone 30 mg modified release tablet, 28, blister pack 227943 1049321000168100 Novacodone 30 mg modified release tablet, 28 1049291000168108 Novacodone 30 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +915461000168101 Amvas 10 mg uncoated tablet, 30, blister pack 127376 915451000168103 Amvas 10 mg uncoated tablet, 30 915441000168100 Amvas 10 mg uncoated tablet 915361000168106 Amvas 915361000168106 Amvas 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +135721000036104 Lorazepam (Apo) 1 mg uncoated tablet, 50, blister pack 173222 135111000036105 Lorazepam (Apo) 1 mg uncoated tablet, 50 134191000036101 Lorazepam (Apo) 1 mg uncoated tablet 134101000036109 Lorazepam (Apo) 134101000036109 Lorazepam (Apo) 38546011000036103 lorazepam 1 mg tablet, 50 37826011000036106 lorazepam 1 mg tablet 37711011000036105 lorazepam +61446011000036107 Imflac 25 mg enteric tablet, 20, blister pack 90103 57371011000036107 Imflac 25 mg enteric tablet, 20 54287011000036107 Imflac 25 mg enteric tablet 14421000168100 Imflac 14421000168100 Imflac 63834011000036101 diclofenac sodium 25 mg enteric tablet, 20 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +44038011000036103 Sporanox 100 mg hard capsule, 4, bottle 47862 41527011000036106 Sporanox 100 mg hard capsule, 4 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 46362011000036102 itraconazole 100 mg capsule, 4 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +921859011000036100 Levonelle-1 1.5 mg tablet, 1, blister pack 149270 921418011000036107 Levonelle-1 1.5 mg tablet, 1 920997011000036103 Levonelle-1 1.5 mg tablet 59701000168109 Levonelle-1 59701000168109 Levonelle-1 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +853351000168109 Amoxiclav 875 mg/125 mg (Alkem) film-coated tablet, 10, blister pack 202580 853341000168107 Amoxiclav 875 mg/125 mg (Alkem) film-coated tablet, 10 853301000168105 Amoxiclav 875 mg/125 mg (Alkem) film-coated tablet 853291000168109 Amoxiclav 875 mg/125 mg (Alkem) 853291000168109 Amoxiclav 875 mg/125 mg (Alkem) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1076581000168101 Aripiprazole (Auro) 20 mg uncoated tablet, 100, bottle 198191 1076571000168104 Aripiprazole (Auro) 20 mg uncoated tablet, 100 1076471000168103 Aripiprazole (Auro) 20 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787591000168107 aripiprazole 20 mg tablet, 100 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +60660011000036109 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 100 mL, bottle 38572 56618011000036102 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 100 mL 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 63470011000036103 benzydamine hydrochloride 0.15% mouthwash, 100 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +1044991000168103 Pryzex 2.5 mg film-coated tablet, 21, blister pack 178975 1044981000168101 Pryzex 2.5 mg film-coated tablet, 21 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044971000168104 olanzapine 2.5 mg tablet, 21 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +929671011000036104 Acris Once-a-Week 35 mg film-coated tablet, 16, blister pack 163785 929507011000036108 Acris Once-a-Week 35 mg film-coated tablet, 16 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 22031000168106 Acris Once-a-Week 22031000168106 Acris Once-a-Week 929234011000036100 risedronate sodium 35 mg tablet, 16 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +929851000168106 Ninlaro 2.3 mg capsule, 3, blister pack 260936 929841000168109 Ninlaro 2.3 mg capsule, 3 929751000168101 Ninlaro 2.3 mg capsule 902241000168107 Ninlaro 902241000168107 Ninlaro 929831000168100 ixazomib 2.3 mg capsule, 3 929741000168103 ixazomib 2.3 mg capsule 902251000168109 ixazomib +853331000168103 Amoxiclav 875 mg/125 mg (Alkem) film-coated tablet, 20, bottle 202578 853321000168101 Amoxiclav 875 mg/125 mg (Alkem) film-coated tablet, 20 853301000168105 Amoxiclav 875 mg/125 mg (Alkem) film-coated tablet 853291000168109 Amoxiclav 875 mg/125 mg (Alkem) 853291000168109 Amoxiclav 875 mg/125 mg (Alkem) 853311000168108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 20 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +978641000168102 Brevoxyl Creamy Wash 4% cream, 100 mL, tube 117862 978631000168106 Brevoxyl Creamy Wash 4% cream, 100 mL 978551000168101 Brevoxyl Creamy Wash 4% cream 978541000168103 Brevoxyl Creamy Wash 978541000168103 Brevoxyl Creamy Wash 978621000168108 benzoyl peroxide 4% cream, 100 mL 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +679321000168105 Benadryl PE Chesty Cough and Nasal Congestion oral liquid solution, 100 mL, bottle 151717 679311000168103 Benadryl PE Chesty Cough and Nasal Congestion oral liquid solution, 100 mL 679301000168101 Benadryl PE Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 679291000168102 Benadryl PE Chesty Cough and Nasal Congestion 679291000168102 Benadryl PE Chesty Cough and Nasal Congestion 63378011000036109 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 61932011000036107 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61724011000036106 guaifenesin + phenylephrine +30471000036106 BGstar diagnostic strip, 50, bottle 28241000036102 BGstar diagnostic strip, 50 26591000036106 BGstar diagnostic strip 26051000036106 BGstar 26051000036106 BGstar 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +654651000168106 Glimepiride (AN) 3 mg uncoated tablet, 30, blister pack 156401 654641000168109 Glimepiride (AN) 3 mg uncoated tablet, 30 654631000168100 Glimepiride (AN) 3 mg uncoated tablet 654591000168100 Glimepiride (AN) 654591000168100 Glimepiride (AN) 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +135681000036107 Palexia SR 150 mg modified release tablet, 28, blister pack 165347 135051000036108 Palexia SR 150 mg modified release tablet, 28 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 135061000036106 tapentadol 150 mg modified release tablet, 28 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +60795011000036107 Eulactol Antifungal 2% spray, 50 mL, pump actuated aerosol 55567 56751011000036106 Eulactol Antifungal 2% spray, 50 mL 54066011000036102 Eulactol Antifungal 2% spray 53228011000036102 Eulactol Antifungal 53228011000036102 Eulactol Antifungal 63552011000036107 miconazole 2% spray, 50 mL 62014011000036100 miconazole 2% spray 21454011000036108 miconazole +110831000036105 Citalo 20 mg film-coated tablet, 1000, bottle 158874 109051000036102 Citalo 20 mg film-coated tablet, 1000 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 933203211000036100 citalopram 20 mg tablet, 1000 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +156831000036101 Cephalex 250 mg capsule, 20, blister pack 204535 156121000036107 Cephalex 250 mg capsule, 20 155081000036100 Cephalex 250 mg capsule 154591000036108 Cephalex 154591000036108 Cephalex 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +779961000168106 Kefzol 1 g powder for injection, 1 vial 14647 779951000168109 Kefzol 1 g powder for injection, 1 vial 5804011000036108 Kefzol 1 g powder for injection, vial 4076011000036103 Kefzol 4076011000036103 Kefzol 27792011000036101 cefazolin 1 g injection, 1 vial 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +1065361000168101 Codoxamol uncoated tablet, 24, bottle 161869 1065351000168103 Codoxamol uncoated tablet, 24 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 52866011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 24 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +681971000168100 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet, 30, blister pack 214456 681961000168106 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet, 30 681921000168101 Pramipexole Hydrochloride (GH) 250 microgram uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 681951000168109 pramipexole dihydrochloride monohydrate 250 microgram tablet, 30 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +60418011000036107 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 20, blister pack 145584 56377011000036100 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 20 53895011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule 53491011000036102 Dimetapp PE Nasal Decongestant 53491011000036102 Dimetapp PE Nasal Decongestant 63324011000036101 phenylephrine hydrochloride 10 mg capsule, 20 61918011000036101 phenylephrine hydrochloride 10 mg capsule 37732011000036107 phenylephrine +952921000168104 Clindamycin (DBL) 300 mg/2 mL injection solution, 10 x 2 mL ampoules 121773 952911000168106 Clindamycin (DBL) 300 mg/2 mL injection solution, 10 x 2 mL ampoules 952901000168108 Clindamycin (DBL) 300 mg/2 mL injection solution, 2 mL ampoule 952631000168106 Clindamycin (DBL) 952631000168106 Clindamycin (DBL) 73454011000036106 clindamycin 300 mg/2 mL injection, 10 x 2 mL ampoules 73362011000036100 clindamycin 300 mg/2 mL injection, ampoule 21255011000036108 clindamycin +663231000168108 Onsetron 4 mg/2 mL injection solution, 10 x 2 mL ampoules 205593 663221000168105 Onsetron 4 mg/2 mL injection solution, 10 x 2 mL ampoules 5646011000036101 Onsetron 4 mg/2 mL injection solution, 2 mL ampoule 7751000168109 Onsetron 7751000168109 Onsetron 922698011000036105 ondansetron 4 mg/2 mL injection, 10 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +926844011000036101 Sodium Chloride (Phebra) 23.4% (2.34 g/10 mL) concentrated injection, 10 x 10 mL vials 23119 926240011000036104 Sodium Chloride (Phebra) 23.4% (2.34 g/10 mL) concentrated injection, 10 x 10 mL vials 925693011000036103 Sodium Chloride (Phebra) 23.4% (2.34 g/10 mL) concentrated injection, 10 mL vial 64963011000036103 Sodium Chloride (Phebra) 64963011000036103 Sodium Chloride (Phebra) 927352011000036106 sodium chloride 23.4% (2.34 g/10 mL) injection, 10 x 10 mL vials 927002011000036101 sodium chloride 23.4% (2.34 g/10 mL) injection, vial 21308011000036103 sodium chloride +81075011000036109 Seroquel XR 150 mg modified release tablet, 100, blister pack 153883 80584011000036105 Seroquel XR 150 mg modified release tablet, 100 80201011000036103 Seroquel XR 150 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 81659011000036104 quetiapine 150 mg modified release tablet, 100 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +44280011000036100 Entocort 3 mg modified release capsule, 50, bottle 62812 41751011000036103 Entocort 3 mg modified release capsule, 50 40181011000036107 Entocort 3 mg modified release capsule 39744011000036108 Entocort 39744011000036108 Entocort 46558011000036108 budesonide 3 mg modified release capsule, 50 45217011000036108 budesonide 3 mg modified release capsule 21307011000036104 budesonide +43857011000036104 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 28, blister pack 128095 41353011000036103 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 28 39907011000036104 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet 39781011000036103 Zolpidem Tartrate (Sandoz) 39781011000036103 Zolpidem Tartrate (Sandoz) 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +50505011000036107 Duoderm CGF (H7660) 10 cm x 10 cm dressing, 5, carton 157332 49373011000036105 Duoderm CGF (H7660) 10 cm x 10 cm dressing, 5 48629011000036103 Duoderm CGF (H7660) 10 cm x 10 cm dressing 61271000168104 Duoderm CGF (H7660) 61271000168104 Duoderm CGF (H7660) 51347011000036101 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing, 5 50871011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +998971000168109 Dutasteride (Apo) 500 microgram soft capsule, 30, blister pack 212047 998961000168103 Dutasteride (Apo) 500 microgram soft capsule, 30 998951000168100 Dutasteride (Apo) 500 microgram soft capsule 998921000168108 Dutasteride (Apo) 998921000168108 Dutasteride (Apo) 920870011000036102 dutasteride 500 microgram capsule, 30 920831011000036107 dutasteride 500 microgram capsule 920821011000036105 dutasteride +961461000168104 Lansoprazole (Apo) 15 mg enteric capsule, 30, blister pack 159350 961451000168101 Lansoprazole (Apo) 15 mg enteric capsule, 30 961411000168102 Lansoprazole (Apo) 15 mg enteric capsule 52481000168101 Lansoprazole (Apo) 52481000168101 Lansoprazole (Apo) 27464011000036103 lansoprazole 15 mg enteric capsule, 30 22811011000036107 lansoprazole 15 mg enteric capsule 21491011000036101 lansoprazole +1105501000168100 Valpam 2 mg uncoated tablet, 30, bottle 80810 1105491000168107 Valpam 2 mg uncoated tablet, 30 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 32773011000036101 diazepam 2 mg tablet, 30 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +650401000168101 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 30, blister pack 202108 650391000168103 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 30 650321000168100 Pritor/Amlodipine 80 mg/5 mg multilayer tablet 650241000168100 Pritor/Amlodipine 80 mg/5 mg 650241000168100 Pritor/Amlodipine 80 mg/5 mg 932423011000036106 telmisartan 80 mg + amlodipine 5 mg tablet, 30 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +60703011000036108 Dimetapp PE Sinus Cold uncoated tablet, 18, blister pack 43458 56661011000036105 Dimetapp PE Sinus Cold uncoated tablet, 18 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63493011000036102 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 18 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +39131000036109 Nurofen for Children 5 to 12 Years strawberry 200 mg/5 mL oral liquid suspension, 200 mL, bottle 167735 35531000036100 Nurofen for Children 5 to 12 Years strawberry 200 mg/5 mL oral liquid suspension, 200 mL 32711000036108 Nurofen for Children 5 to 12 Years strawberry 200 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 35511000036109 ibuprofen 200 mg/5 mL oral liquid, 200 mL 32671000036107 ibuprofen 200 mg/5 mL oral liquid 21885011000036105 ibuprofen +670641000168100 Diclofenac Sodium (AN) 25 mg enteric tablet, 50, blister pack 188546 670631000168109 Diclofenac Sodium (AN) 25 mg enteric tablet, 50 670621000168106 Diclofenac Sodium (AN) 25 mg enteric tablet 670611000168104 Diclofenac Sodium (AN) 670611000168104 Diclofenac Sodium (AN) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +19829011000036105 Kalma 2 mg uncoated tablet, 50, bottle 63993 13080011000036108 Kalma 2 mg uncoated tablet, 50 6364011000036105 Kalma 2 mg uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +69045011000036103 QV Flare Up Bath Oil, 500 mL, bottle 142064 66847011000036103 QV Flare Up Bath Oil, 500 mL 65315011000036104 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 71459011000036101 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil, 500 mL 70017011000036104 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +17824011000036100 Trandate 100 mg film-coated tablet, 100, bottle 12521 11795011000036107 Trandate 100 mg film-coated tablet, 100 5033011000036101 Trandate 100 mg film-coated tablet 4428011000036107 Trandate 4428011000036107 Trandate 27360011000036104 labetalol hydrochloride 100 mg tablet, 100 22712011000036103 labetalol hydrochloride 100 mg tablet 21315011000036106 labetalol +715271000168103 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g, tube 101999 715261000168109 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g 715181000168107 Clotrimazole 6 Day (Guardian) 1% vaginal cream 28141000168101 Clotrimazole 6 Day (Guardian) 28141000168101 Clotrimazole 6 Day (Guardian) 715001000168103 clotrimazole 1% vaginal cream, 50 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +111151000036103 Metformin Hydrochloride XR (Terry White Chemists) 500 mg modified release tablet, 120, blister pack 197406 109421000036101 Metformin Hydrochloride XR (Terry White Chemists) 500 mg modified release tablet, 120 106811000036101 Metformin Hydrochloride XR (Terry White Chemists) 500 mg modified release tablet 63631000168101 Metformin Hydrochloride XR (Terry White Chemists) 63631000168101 Metformin Hydrochloride XR (Terry White Chemists) 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +87689011000036109 Famciclovir (Apo) 250 mg film-coated tablet, 5, blister pack 160556 87476011000036105 Famciclovir (Apo) 250 mg film-coated tablet, 5 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87820011000036102 famciclovir 250 mg tablet, 5 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +788561000168104 Cortiment 9 mg modified release tablet, 60, blister pack 225849 788551000168101 Cortiment 9 mg modified release tablet, 60 788411000168103 Cortiment 9 mg modified release tablet 788391000168103 Cortiment 788391000168103 Cortiment 788541000168103 budesonide 9 mg modified release tablet, 60 788401000168101 budesonide 9 mg modified release tablet 21307011000036104 budesonide +33613011000036107 Bondronat 6 mg/6 mL concentrated injection, 10 x 6 mL vials 98008 33351011000036105 Bondronat 6 mg/6 mL concentrated injection, 10 x 6 mL vials 33110011000036103 Bondronat 6 mg/6 mL concentrated injection, 6 mL vial 32976011000036100 Bondronat 32976011000036100 Bondronat 33828011000036103 ibandronate 6 mg/6 mL injection, 10 x 6 mL vials 33693011000036108 ibandronate 6 mg/6 mL injection, vial 33641011000036101 ibandronate +69181011000036104 Stingose 20% spray solution, 100 mL, bottle 17127 66981011000036105 Stingose 20% spray solution, 100 mL 65234011000036100 Stingose 20% spray solution 64947011000036100 Stingose 64947011000036100 Stingose 71554011000036109 aluminium sulfate 20% spray, 100 mL 70061011000036106 aluminium sulfate 20% spray 69836011000036107 aluminium sulfate +86119011000036107 Nurofen Zavance 200 mg sugar coated tablet, 24, blister pack 156293 85695011000036105 Nurofen Zavance 200 mg sugar coated tablet, 24 85350011000036104 Nurofen Zavance 200 mg sugar coated tablet 5481000168102 Nurofen Zavance 5481000168102 Nurofen Zavance 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +921261000168105 Ceftriaxone (Pfizer) 1 g powder for injection, 1 vial 174446 921251000168108 Ceftriaxone (Pfizer) 1 g powder for injection, 1 vial 921241000168106 Ceftriaxone (Pfizer) 1 g powder for injection, vial 920781000168100 Ceftriaxone (Pfizer) 920781000168100 Ceftriaxone (Pfizer) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +715111000168101 Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube 76368 715101000168104 Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g 715091000168109 Clofeme Thrush Treatment 3 Day 2% vaginal cream 881000168102 Clofeme Thrush Treatment 3 Day 881000168102 Clofeme Thrush Treatment 3 Day 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +715251000168107 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g, tube 101999 715241000168105 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g 715181000168107 Clotrimazole 6 Day (Guardian) 1% vaginal cream 28141000168101 Clotrimazole 6 Day (Guardian) 28141000168101 Clotrimazole 6 Day (Guardian) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +925363011000036109 Lisinopril (DM) 10 mg uncoated tablet, 30, blister pack 76046 924899011000036100 Lisinopril (DM) 10 mg uncoated tablet, 30 924541011000036109 Lisinopril (DM) 10 mg uncoated tablet 924402011000036101 Lisinopril (DM) 924402011000036101 Lisinopril (DM) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +61233011000036101 Nicotine (Amcal) Fruit 2 mg chewing gum, 24, blister pack 76845 57169011000036107 Nicotine (Amcal) Fruit 2 mg chewing gum, 24 54223011000036109 Nicotine (Amcal) Fruit 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +777221000168104 Karvea 75 mg film-coated tablet, 14, blister pack 101702 777211000168106 Karvea 75 mg film-coated tablet, 14 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777201000168108 irbesartan 75 mg tablet, 14 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +931574011000036103 Cholpra 80 mg film-coated tablet, 500, bottle 163546 930735011000036106 Cholpra 80 mg film-coated tablet, 500 930031011000036107 Cholpra 80 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 52330011000036100 pravastatin sodium 80 mg tablet, 500 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +69227011000036102 Chlorhexidine Acetate (Baxter) 0.05% (500 mg/L) irrigation solution, 1 L bottle 19461 67027011000036100 Chlorhexidine Acetate (Baxter) 0.05% (500 mg/L) irrigation solution, 1 L bottle 65494011000036107 Chlorhexidine Acetate (Baxter) 0.05% (500 mg/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71597011000036105 chlorhexidine acetate 0.05% (500 mg/L) solution, 1 L bottle 70084011000036107 chlorhexidine acetate 0.05% (500 mg/L) solution, bottle 21404011000036101 chlorhexidine +60282011000036108 Panadol 500 mg film-coated tablet, 100, blister pack 13591 56241011000036103 Panadol 500 mg film-coated tablet, 100 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +20463011000036106 Carbamazepine (Sandoz) 100 mg uncoated tablet, 200, blister pack 78217 13665011000036109 Carbamazepine (Sandoz) 100 mg uncoated tablet, 200 6948011000036104 Carbamazepine (Sandoz) 100 mg uncoated tablet 3827011000036102 Carbamazepine (Sandoz) 3827011000036102 Carbamazepine (Sandoz) 27871011000036103 carbamazepine 100 mg tablet, 200 23199011000036106 carbamazepine 100 mg tablet 21319011000036108 carbamazepine +34777011000036104 Oxycontin 20 mg modified release tablet, 60, blister pack 68190 34356011000036103 Oxycontin 20 mg modified release tablet, 60 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +1044921000168100 Pryzex 2.5 mg film-coated tablet, 10, blister pack 178975 1044911000168107 Pryzex 2.5 mg film-coated tablet, 10 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044901000168109 olanzapine 2.5 mg tablet, 10 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +1059501000168102 Metformin (Auro) 850 mg film-coated tablet, 100, bottle 180432 1059491000168109 Metformin (Auro) 850 mg film-coated tablet, 100 714381000168105 Metformin (Auro) 850 mg film-coated tablet 714361000168101 Metformin (Auro) 714361000168101 Metformin (Auro) 16901000036102 metformin hydrochloride 850 mg tablet, 100 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +68864011000036106 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 7, sachet 129748 66729011000036105 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 7 65263011000036107 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch 32721000168108 Nicotine Phase-1 (Chemists' Own) 32721000168108 Nicotine Phase-1 (Chemists' Own) 27923011000036105 nicotine 21 mg/24 hours patch, 7 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +849081000168100 Itracap 100 mg hard capsule, 15, blister pack 244472 849071000168103 Itracap 100 mg hard capsule, 15 849021000168104 Itracap 100 mg hard capsule 849011000168106 Itracap 849011000168106 Itracap 46361011000036108 itraconazole 100 mg capsule, 15 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +50379011000036104 Rixadone 4 mg film-coated tablet, 60, blister pack 199181 49570011000036104 Rixadone 4 mg film-coated tablet, 60 48546011000036102 Rixadone 4 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +50379011000036104 Rixadone 4 mg film-coated tablet, 60, blister pack 127909 49570011000036104 Rixadone 4 mg film-coated tablet, 60 48546011000036102 Rixadone 4 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +933116011000036101 Lamictal 200 mg tablet, 56, bottle 59995 932916011000036105 Lamictal 200 mg tablet, 56 932765011000036105 Lamictal 200 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +852621000168101 Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28, blister pack 166197 852611000168108 Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 37751000168102 Acris Combi 22031000168106 Acris Once-a-Week 852601000168105 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +852621000168101 Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28, blister pack 166197 852611000168108 Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28 852561000168105 Calcium (Alphapharm) 1.25 g (calcium 500 mg) film-coated tablet 37751000168102 Acris Combi 933193301000036109 Calcium (Alphapharm) 852601000168105 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +963791000168102 Olmetec 10 mg film-coated tablet, 30, blister pack 102134 963781000168100 Olmetec 10 mg film-coated tablet, 30 963741000168105 Olmetec 10 mg film-coated tablet 3066011000036105 Olmetec 3066011000036105 Olmetec 845331000168100 olmesartan medoxomil 10 mg tablet, 30 845311000168105 olmesartan medoxomil 10 mg tablet 32674011000036109 olmesartan +35661011000036104 Geltears 0.2% eye gel, 10 g, tube 35547011000036108 Geltears 0.2% eye gel, 10 g 35482011000036109 Geltears 0.2% eye gel 35427011000036104 Geltears 35427011000036104 Geltears 35770011000036107 carbomer-980 0.2% eye gel, 10 g 35711011000036106 carbomer-980 0.2% eye gel 35685011000036104 carbomer-980 +985471000168105 Advil Mini Caps 200 mg sugar coated tablet, 48, blister pack 104222 985461000168104 Advil Mini Caps 200 mg sugar coated tablet, 48 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +86007011000036109 Lisinopril (DRLA) 5 mg uncoated tablet, 50, blister pack 152720 85651011000036104 Lisinopril (DRLA) 5 mg uncoated tablet, 50 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 83480011000036106 lisinopril 5 mg tablet, 50 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +69207011000036108 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 100 mL bottle 19458 67007011000036106 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 100 mL bottle 65451011000036100 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 100 mL bottle 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 71577011000036101 chlorhexidine acetate 0.015% (15 mg/100 mL) + cetrimide 0.15% (150 mg/100 mL) solution, 100 mL bottle 70074011000036103 chlorhexidine acetate 0.015% (15 mg/100 mL) + cetrimide 0.15% (150 mg/100 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +664191000168102 Midazolam (Act) 5 mg/5 mL injection solution, 5 mL ampoule 207247 664181000168100 Midazolam (Act) 5 mg/5 mL injection solution, 5 mL ampoule 664161000168109 Midazolam (Act) 5 mg/5 mL injection solution, 5 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 664171000168103 midazolam 5 mg/5 mL injection, 5 mL ampoule 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +993761000168107 Bivalirudin (Apo) 250 mg powder for injection, 1 vial 241713 993751000168105 Bivalirudin (Apo) 250 mg powder for injection, 1 vial 993741000168108 Bivalirudin (Apo) 250 mg powder for injection, 250 mg vial 993671000168105 Bivalirudin (Apo) 993671000168105 Bivalirudin (Apo) 26568011000036104 bivalirudin 250 mg injection, 1 vial 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +1077221000168101 Atomoxetine (AS) 25 mg hard capsule, 7, blister pack 238360 1077211000168108 Atomoxetine (AS) 25 mg hard capsule, 7 1077201000168105 Atomoxetine (AS) 25 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +920941000168108 Cilopam 10 mg film-coated tablet, 7, bottle 158863 920491000168105 Cilopam 10 mg film-coated tablet, 7 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +85039011000036105 Pantoprazole (GA) 20 mg enteric tablet, 30, blister pack 158175 84904011000036104 Pantoprazole (GA) 20 mg enteric tablet, 30 84791011000036105 Pantoprazole (GA) 20 mg enteric tablet 84765011000036105 Pantoprazole (GA) 84765011000036105 Pantoprazole (GA) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +18619011000036106 Caduet 10/80 film-coated tablet, 30, blister pack 100703 11163011000036102 Caduet 10/80 film-coated tablet, 30 4965011000036109 Caduet 10/80 film-coated tablet 58981000168108 Caduet 10/80 58981000168108 Caduet 10/80 26549011000036100 amlodipine 10 mg + atorvastatin 80 mg tablet, 30 21958011000036103 amlodipine 10 mg + atorvastatin 80 mg tablet 21361011000036108 amlodipine + atorvastatin +987641000168108 Codral Original Day and Night Cold and Flu (16 x Day tablets, 8 x Night tablets), 24, blister pack 51772 987631000168104 Codral Original Day and Night Cold and Flu (16 x Day tablets, 8 x Night tablets), 24 987611000168109 Codral Original Day and Night Cold and Flu (Day) uncoated tablet 987581000168102 Codral Original Day and Night Cold and Flu 987591000168104 Codral Original Day and Night Cold and Flu (Day) 664711000168105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +987641000168108 Codral Original Day and Night Cold and Flu (16 x Day tablets, 8 x Night tablets), 24, blister pack 51772 987631000168104 Codral Original Day and Night Cold and Flu (16 x Day tablets, 8 x Night tablets), 24 987621000168102 Codral Original Day and Night Cold and Flu (Night) uncoated tablet 987581000168102 Codral Original Day and Night Cold and Flu 987601000168106 Codral Original Day and Night Cold and Flu (Night) 664711000168105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [8], 24 664691000168107 pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet 664681000168109 pseudoephedrine + paracetamol + triprolidine +44663011000036108 Abilify 5 mg uncoated tablet, 7, blister pack 90925 42115011000036103 Abilify 5 mg uncoated tablet, 7 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46877011000036108 aripiprazole 5 mg tablet, 7 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +979001000168102 Piperacillin (Douglas) 1 g powder for injection, 5 vials 63780 978991000168102 Piperacillin (Douglas) 1 g powder for injection, 5 vials 978971000168103 Piperacillin (Douglas) 1 g powder for injection, vial 978861000168102 Piperacillin (Douglas) 978861000168102 Piperacillin (Douglas) 978981000168100 piperacillin 1 g injection, 5 vials 978961000168109 piperacillin 1 g injection, vial 978871000168108 piperacillin +1113951000168106 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 21, blister pack 179086 1113941000168109 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 21 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1042991000168109 olanzapine 10 mg orally disintegrating tablet, 21 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +661781000168102 Lisinopril (AN) 5 mg uncoated tablet, 30, blister pack 152712 661771000168100 Lisinopril (AN) 5 mg uncoated tablet, 30 661761000168106 Lisinopril (AN) 5 mg uncoated tablet 661661000168103 Lisinopril (AN) 661661000168103 Lisinopril (AN) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +676761000168106 Gliclazide MR (Ardix) 60 mg modified release tablet, 60, blister pack 154049 676751000168109 Gliclazide MR (Ardix) 60 mg modified release tablet, 60 676741000168107 Gliclazide MR (Ardix) 60 mg modified release tablet 676731000168103 Gliclazide MR (Ardix) 676731000168103 Gliclazide MR (Ardix) 83491011000036100 gliclazide 60 mg modified release tablet, 60 83433011000036106 gliclazide 60 mg modified release tablet 21867011000036102 gliclazide +933211821000036107 Gemcitabine (Sandoz) 1 g powder for injection, 1 vial 129349 933200611000036105 Gemcitabine (Sandoz) 1 g powder for injection, 1 vial 933194101000036109 Gemcitabine (Sandoz) 1 g powder for injection, vial 933193721000036103 Gemcitabine (Sandoz) 933193721000036103 Gemcitabine (Sandoz) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +869781000168107 Atomerra 40 mg hard capsule, 28, blister pack 234814 869771000168109 Atomerra 40 mg hard capsule, 28 869711000168101 Atomerra 40 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +998011000168102 Imatinib (Apo) 100 mg film-coated tablet, 180, blister pack 196032 998001000168100 Imatinib (Apo) 100 mg film-coated tablet, 180 997851000168107 Imatinib (Apo) 100 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 829001000168106 imatinib 100 mg tablet, 180 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +20598011000036109 Salofalk 2 g/60 mL enema, 7 x 60 mL, bottle 80653 13780011000036105 Salofalk 2 g/60 mL enema, 7 x 60 mL 7066011000036104 Salofalk 2 g/60 mL enema, 60 mL 12771000168100 Salofalk 12771000168100 Salofalk 27936011000036101 mesalazine 2 g/60 mL enema, 7 x 60 mL 23260011000036101 mesalazine 2 g/60 mL enema 21351011000036101 mesalazine +918761000168102 Furosemide (AN) 20 mg tablet, 100, bottle 283339 918751000168104 Furosemide (AN) 20 mg tablet, 100 918741000168101 Furosemide (AN) 20 mg tablet 918701000168103 Furosemide (AN) 918701000168103 Furosemide (AN) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +910201000168109 Cisatracurium (Apotex) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 237311 910191000168106 Cisatracurium (Apotex) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 910181000168108 Cisatracurium (Apotex) 10 mg/5 mL injection solution, 5 mL ampoule 910171000168105 Cisatracurium (Apotex) 910171000168105 Cisatracurium (Apotex) 161571000036104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL ampoules 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +811941000168101 Affora 5 mg film-coated tablet, 7, blister pack 198055 811931000168105 Affora 5 mg film-coated tablet, 7 811921000168107 Affora 5 mg film-coated tablet 811911000168100 Affora 811911000168100 Affora 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +989741000168109 Benadryl Dry Tickly Cough Forte 4 mg/mL oral liquid solution, 200 mL, bottle 203499 989731000168100 Benadryl Dry Tickly Cough Forte 4 mg/mL oral liquid solution, 200 mL 989691000168107 Benadryl Dry Tickly Cough Forte 4 mg/mL oral liquid solution 989681000168109 Benadryl Dry Tickly Cough Forte 989681000168109 Benadryl Dry Tickly Cough Forte 156151000036101 pholcodine 4 mg/mL oral liquid, 200 mL 154971000036102 pholcodine 4 mg/mL oral liquid 21705011000036108 pholcodine +687721000168105 Allopurinol (Apo) 300 mg uncoated tablet, 60, blister pack 218875 687711000168103 Allopurinol (Apo) 300 mg uncoated tablet, 60 687701000168101 Allopurinol (Apo) 300 mg uncoated tablet 687691000168101 Allopurinol (Apo) 687691000168101 Allopurinol (Apo) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +56651000036102 Lanez 10 mg film-coated tablet, 28, blister pack 163410 53081000036108 Lanez 10 mg film-coated tablet, 28 48621000036105 Lanez 10 mg film-coated tablet 47331000168108 Lanez 47331000168108 Lanez 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +61705011000036101 Codral Chesty Cough oral liquid solution, 30 mL, bottle 99964 57626011000036108 Codral Chesty Cough oral liquid solution, 30 mL 54370011000036108 Codral Chesty Cough oral liquid solution, 5 mL 20161000168100 Codral Chesty Cough 20161000168100 Codral Chesty Cough 63968011000036106 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 30 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +77348011000036104 Microshield PVP 7.5% solution, 1.5 L, bag 53604 76764011000036103 Microshield PVP 7.5% solution, 1.5 L 65552011000036100 Microshield PVP 7.5% solution 65073011000036107 Microshield PVP 65073011000036107 Microshield PVP 78271011000036108 povidone-iodine 7.5% solution, 1.5 L 70175011000036106 povidone-iodine 7.5% solution 21660011000036108 povidone-iodine +18202011000036101 Apidra Solostar 100 units/mL injection solution, 5 x 3 mL cartridges 132816 11939011000036108 Apidra Solostar 100 units/mL injection solution, 5 x 3 mL cartridges 5149011000036106 Apidra Solostar 100 units/mL injection solution, 3 mL cartridge 40541000168106 Apidra Solostar 40541000168106 Apidra Solostar 26809011000036105 insulin glulisine 100 units/mL injection, 5 x 3 mL cartridges 22193011000036100 insulin glulisine 100 units/mL injection, cartridge 21731011000036104 insulin glulisine +142251000036109 Xyntha 2000 IU (1 x 2000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174840 141691000036108 Xyntha 2000 IU (1 x 2000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 141451000036102 Xyntha 2000 IU (moroctocog alfa 2000 units) powder for injection, 2000 units syringe 54911000168106 Xyntha 2000 IU 54911000168106 Xyntha 2000 IU 141701000036108 moroctocog alfa 2000 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 141461000036104 moroctocog alfa 2000 units injection, syringe 44868011000036107 moroctocog alfa +142251000036109 Xyntha 2000 IU (1 x 2000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack, dual chamber syringe 174840 141691000036108 Xyntha 2000 IU (1 x 2000 units syringe, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 54911000168106 Xyntha 2000 IU 83556011000036108 Xyntha 141701000036108 moroctocog alfa 2000 units injection [1] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +86883011000036100 Favic 250 mg film-coated tablet, 56, blister pack 159611 86765011000036100 Favic 250 mg film-coated tablet, 56 86639011000036101 Favic 250 mg film-coated tablet 86581011000036100 Favic 86581011000036100 Favic 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +37681011000036100 Sifrol 125 microgram uncoated tablet, 10, blister pack 67238 36947011000036102 Sifrol 125 microgram uncoated tablet, 10 36275011000036107 Sifrol 125 microgram uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 38828011000036102 pramipexole dihydrochloride monohydrate 125 microgram tablet, 10 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +110741000036108 Azithromycin (DBL) 500 mg powder for injection, 10 vials 161682 108951000036107 Azithromycin (DBL) 500 mg powder for injection, 10 vials 106961000036106 Azithromycin (DBL) 500 mg powder for injection, 500 mg vial 106391000036103 Azithromycin (DBL) 106391000036103 Azithromycin (DBL) 108961000036105 azithromycin 500 mg injection, 10 vials 45336011000036107 azithromycin 500 mg injection, vial 21518011000036103 azithromycin +20016011000036108 Vasocardol CD 240 mg modified release capsule, 30, blister pack 68926 13252011000036108 Vasocardol CD 240 mg modified release capsule, 30 6534011000036104 Vasocardol CD 240 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +1117931000168108 Donepezil (GH) 5 mg film-coated tablet, 120, blister pack 193661 1117921000168105 Donepezil (GH) 5 mg film-coated tablet, 120 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933201031000036103 donepezil hydrochloride 5 mg tablet, 120 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +37390011000036100 Xylocaine 1% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 12015 36689011000036100 Xylocaine 1% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 36055011000036101 Xylocaine 1% with Adrenaline 1 in 200 000 injection solution, 20 mL vial 26691000168100 Xylocaine 1% with Adrenaline 1 in 200 000 26691000168100 Xylocaine 1% with Adrenaline 1 in 200 000 38602011000036102 lidocaine (lignocaine) hydrochloride 1% (200 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, 5 x 20 mL vials 37871011000036102 lidocaine (lignocaine) hydrochloride 1% (200 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, vial 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +1113631000168105 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 40, blister pack 179092 1113621000168107 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 40 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043371000168102 olanzapine 5 mg orally disintegrating tablet, 40 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +73285011000036102 Jurnista 16 mg modified release tablet, 28, blister pack 141533 73083011000036106 Jurnista 16 mg modified release tablet, 28 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73481011000036103 hydromorphone hydrochloride 16 mg modified release tablet, 28 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +69670011000036104 Nicabate Clear 14 mg/24 hours patch, 3, sachet 81034 67469011000036107 Nicabate Clear 14 mg/24 hours patch, 3 65675011000036102 Nicabate Clear 14 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71996011000036102 nicotine 14 mg/24 hours patch, 3 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +1013161000168104 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 200 mL vial 49612 1013151000168101 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 200 mL vial 1013131000168107 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 200 mL vial 14501000168105 Optiray-350 14501000168105 Optiray-350 1013141000168103 ioversol 741 mg (iodine 350 mg)/mL injection, 200 mL vial 1013121000168109 ioversol 741 mg (iodine 350 mg)/mL injection, 200 mL vial 77421011000036103 ioversol +687681000168104 Vaclovir 500 mg film-coated tablet, 42, bottle 153823 928277011000036106 Vaclovir 500 mg film-coated tablet, 42 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +662101000168101 Temozolomide (AN) 5 mg hard capsule, 5, bottle 192693 662091000168106 Temozolomide (AN) 5 mg hard capsule, 5 662071000168105 Temozolomide (AN) 5 mg hard capsule 662021000168109 Temozolomide (AN) 662021000168109 Temozolomide (AN) 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +1062481000168106 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 40, blister pack 196533 1062471000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 40 1062341000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +61242011000036107 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 100 mL, bottle 77012 57178011000036107 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 100 mL 54226011000036103 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 5 mL 36171000168107 Benadryl for the Family Dry Forte 36171000168107 Benadryl for the Family Dry Forte 63750011000036109 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 100 mL 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +933246301000036105 Oestradiol (Schering-Plough) 50 mg implant, 1, tube 14510 933242911000036109 Oestradiol (Schering-Plough) 50 mg implant, 1 933241411000036106 Oestradiol (Schering-Plough) 50 mg implant 933240831000036106 Oestradiol (Schering-Plough) 933240831000036106 Oestradiol (Schering-Plough) 26867011000036104 estradiol 50 mg implant, 1 22246011000036104 estradiol 50 mg implant 21238011000036103 estradiol +20840011000036100 Peg-Intron Redipen Injector (1 x 50 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92005 14003011000036102 Peg-Intron Redipen Injector (1 x 50 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28066011000036107 peginterferon alfa-2b 50 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20840011000036100 Peg-Intron Redipen Injector (1 x 50 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92005 14003011000036102 Peg-Intron Redipen Injector (1 x 50 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 7293011000036101 Peg-Intron Redipen Injector (peginterferon alfa-2b 50 microgram) powder for injection, 50 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28066011000036107 peginterferon alfa-2b 50 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 23388011000036105 peginterferon alfa-2b 50 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +1049491000168107 Paramax Forte 500/30 tablet, 50, blister pack 220979 1049481000168109 Paramax Forte 500/30 tablet, 50 1049341000168106 Paramax Forte 500/30 tablet 1049251000168103 Paramax Forte 500/30 1049251000168103 Paramax Forte 500/30 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +17960011000036106 Procur 50 mg uncoated tablet, 20, blister pack 101530 11211011000036104 Procur 50 mg uncoated tablet, 20 5040011000036108 Procur 50 mg uncoated tablet 4023011000036105 Procur 4023011000036105 Procur 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +827011000168102 Targin 80/40 mg modified release tablet, 20, blister pack 243272 827001000168100 Targin 80/40 mg modified release tablet, 20 826981000168109 Targin 80/40 mg modified release tablet 826961000168100 Targin 80/40 mg 826961000168100 Targin 80/40 mg 826991000168107 oxycodone hydrochloride 80 mg + naloxone hydrochloride 40 mg modified release tablet, 20 826971000168106 oxycodone hydrochloride 80 mg + naloxone hydrochloride 40 mg modified release tablet 923931011000036100 oxycodone + naloxone +82411011000036108 Fluorets 1 mg eye strip, 100 x 1 strip diagnostic strips, sachet 32231 82200011000036103 Fluorets 1 mg eye strip, 100 x 1 strip diagnostic strips 82037011000036101 Fluorets 1 mg eye strip, 1 strip 81967011000036103 Fluorets 81967011000036103 Fluorets 82565011000036102 fluorescein sodium 1 mg eye strip, 100 x 1 strip diagnostic strips 82452011000036106 fluorescein sodium 1 mg eye strip, 1 strip 44934011000036102 fluorescein +946931000168104 Ondansetron (Mylan) 4 mg/2 mL injection solution, 10 x 2 mL ampoules 138699 946921000168102 Ondansetron (Mylan) 4 mg/2 mL injection solution, 10 x 2 mL ampoules 945481000168102 Ondansetron (Mylan) 4 mg/2 mL injection solution, 2 mL ampoule 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 922698011000036105 ondansetron 4 mg/2 mL injection, 10 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +17962011000036105 Sertraline (Chemmart) 50 mg film-coated tablet, 30, blister pack 213178 11203011000036100 Sertraline (Chemmart) 50 mg film-coated tablet, 30 5994011000036101 Sertraline (Chemmart) 50 mg film-coated tablet 3903011000036109 Sertraline (Chemmart) 3903011000036109 Sertraline (Chemmart) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +17962011000036105 Sertraline (Chemmart) 50 mg film-coated tablet, 30, blister pack 101483 11203011000036100 Sertraline (Chemmart) 50 mg film-coated tablet, 30 5994011000036101 Sertraline (Chemmart) 50 mg film-coated tablet 3903011000036109 Sertraline (Chemmart) 3903011000036109 Sertraline (Chemmart) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1056041000168103 Erelzi 50 mg/mL injection solution, 12 x 1 mL syringes 281784 1056031000168107 Erelzi 50 mg/mL injection solution, 12 x 1 mL syringes 1055941000168109 Erelzi 50 mg/mL injection solution, syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 1056021000168109 etanercept 50 mg/mL injection, 12 x 1 mL syringes 79116011000036107 etanercept 50 mg/mL injection, syringe 21347011000036107 etanercept +987481000168101 Urorec 8 mg hard capsule, 10, blister pack 275265 987471000168104 Urorec 8 mg hard capsule, 10 987451000168108 Urorec 8 mg hard capsule 987341000168104 Urorec 987341000168104 Urorec 987461000168105 silodosin 8 mg capsule, 10 987441000168106 silodosin 8 mg capsule 987351000168102 silodosin +1096641000168102 Fluconazole (Chemmart) 150 mg hard capsule, 1, blister pack 1096631000168106 Fluconazole (Chemmart) 150 mg hard capsule, 1 1096621000168108 Fluconazole (Chemmart) 150 mg hard capsule 1096611000168101 Fluconazole (Chemmart) 1096611000168101 Fluconazole (Chemmart) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +933213871000036107 Ciprofloxacin (IPC) 750 mg film-coated tablet, 100, blister pack 153185 933201901000036109 Ciprofloxacin (IPC) 750 mg film-coated tablet, 100 933194831000036105 Ciprofloxacin (IPC) 750 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 87796011000036109 ciprofloxacin 750 mg tablet, 100 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +927521000168106 Lithicarb SR 400 mg modified release tablet, 100, bottle 53260 927511000168104 Lithicarb SR 400 mg modified release tablet, 100 927491000168109 Lithicarb SR 400 mg modified release tablet 927411000168100 Lithicarb SR 927411000168100 Lithicarb SR 927501000168102 lithium carbonate 400 mg modified release tablet, 100 927481000168106 lithium carbonate 400 mg modified release tablet 21570011000036108 lithium carbonate +85022011000036103 Gabitril 10 mg film-coated tablet, 50, bottle 120272 84877011000036109 Gabitril 10 mg film-coated tablet, 50 5289011000036103 Gabitril 10 mg film-coated tablet 3197011000036101 Gabitril 3197011000036101 Gabitril 85175011000036103 tiagabine 10 mg tablet, 50 22111011000036102 tiagabine 10 mg tablet 21707011000036103 tiagabine +55121000036105 Nurofen Double Strength 400 mg soft capsule, 10, blister pack 141995 51231000036100 Nurofen Double Strength 400 mg soft capsule, 10 49601000036108 Nurofen Double Strength 400 mg soft capsule 17911000168109 Nurofen Double Strength 17911000168109 Nurofen Double Strength 51241000036105 ibuprofen 400 mg capsule, 10 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +771161000168108 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 180561 771151000168106 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 771071000168103 Isabelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +771161000168108 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 180561 771151000168106 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 771081000168100 Isabelle (inert substance) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +83379011000036103 Calcitriol (GA) 0.25 microgram soft capsule, 100, bottle 149504 83318011000036104 Calcitriol (GA) 0.25 microgram soft capsule, 100 83249011000036106 Calcitriol (GA) 0.25 microgram soft capsule 83234011000036109 Calcitriol (GA) 83234011000036109 Calcitriol (GA) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +933246461000036100 Fluoxetine (PS) 20 mg capsule, 28, blister pack 148137 933243011000036103 Fluoxetine (PS) 20 mg capsule, 28 933241281000036104 Fluoxetine (PS) 20 mg capsule 933240911000036105 Fluoxetine (PS) 933240911000036105 Fluoxetine (PS) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +1058131000168107 Atorvastatin (Ran) 10 mg film-coated tablet, 30, bottle 179853 1056511000168105 Atorvastatin (Ran) 10 mg film-coated tablet, 30 1056501000168107 Atorvastatin (Ran) 10 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +116451000036102 Rosuvastatin (Terry White Chemists) 40 mg film-coated tablet, 30, blister pack 183062 114751000036104 Rosuvastatin (Terry White Chemists) 40 mg film-coated tablet, 30 112791000036101 Rosuvastatin (Terry White Chemists) 40 mg film-coated tablet 112581000036106 Rosuvastatin (Terry White Chemists) 112581000036106 Rosuvastatin (Terry White Chemists) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1079561000168103 Cold and Flu Relief PE Day and Night (Amcal) (18 x Day tablets, 6 x Night tablets), 24, blister pack 223837 1079551000168100 Cold and Flu Relief PE Day and Night (Amcal) (18 x Day tablets, 6 x Night tablets), 24 1079531000168106 Cold and Flu Relief PE Day and Night (Day) (Amcal) film-coated tablet 1079501000168104 Cold and Flu Relief PE Day and Night (Amcal) 1079511000168101 Cold and Flu Relief PE Day and Night (Day) (Amcal) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1079561000168103 Cold and Flu Relief PE Day and Night (Amcal) (18 x Day tablets, 6 x Night tablets), 24, blister pack 223837 1079551000168100 Cold and Flu Relief PE Day and Night (Amcal) (18 x Day tablets, 6 x Night tablets), 24 1079541000168102 Cold and Flu Relief PE Day and Night (Night) (Amcal) film-coated tablet 1079501000168104 Cold and Flu Relief PE Day and Night (Amcal) 1079521000168108 Cold and Flu Relief PE Day and Night (Night) (Amcal) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +923795011000036102 Ondansetron (Claris) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 155610 923355011000036109 Ondansetron (Claris) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 923031011000036107 Ondansetron (Claris) 8 mg/4 mL injection solution, 4 mL ampoule 922929011000036107 Ondansetron (Claris) 922929011000036107 Ondansetron (Claris) 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +835421000168109 Esomeprazole (AN) 20 mg enteric tablet, 56, bottle 236436 835411000168102 Esomeprazole (AN) 20 mg enteric tablet, 56 704611000168108 Esomeprazole (AN) 20 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 774741000168105 esomeprazole 20 mg enteric tablet, 56 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +60694011000036102 Voltaren Rapid 25 mg sugar coated tablet, 6, blister pack 42942 56652011000036109 Voltaren Rapid 25 mg sugar coated tablet, 6 54020011000036108 Voltaren Rapid 25 mg sugar coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63489011000036103 diclofenac potassium 25 mg tablet, 6 61991011000036106 diclofenac potassium 25 mg tablet 21288011000036105 diclofenac +852531000168102 Descovy 200/25 mg film-coated tablet, 30, bottle 246092 852521000168100 Descovy 200/25 mg film-coated tablet, 30 852501000168109 Descovy 200/25 mg film-coated tablet 852481000168100 Descovy 200/25 mg 852481000168100 Descovy 200/25 mg 852511000168107 emtricitabine 200 mg + tenofovir alafenamide 25 mg tablet, 30 852491000168102 emtricitabine 200 mg + tenofovir alafenamide 25 mg tablet 852421000168104 emtricitabine + tenofovir alafenamide +685441000168104 Dolased Forte uncoated tablet, 40, blister pack 203987 685431000168108 Dolased Forte uncoated tablet, 40 685391000168103 Dolased Forte uncoated tablet 685381000168101 Dolased Forte 685381000168101 Dolased Forte 685421000168105 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet, 40 933219641000036102 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +921893011000036109 Exforge HCT 5/160/25 film-coated tablet, 28, blister pack 158162 921452011000036100 Exforge HCT 5/160/25 film-coated tablet, 28 921016011000036101 Exforge HCT 5/160/25 film-coated tablet 4531000168100 Exforge HCT 5/160/25 4531000168100 Exforge HCT 5/160/25 922580011000036104 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +50206011000036105 Telfa Non Adherent (6020C) 5 cm x 7.5 cm dressing, 10, carton 49417011000036102 Telfa Non Adherent (6020C) 5 cm x 7.5 cm dressing, 10 48455011000036102 Telfa Non Adherent (6020C) 5 cm x 7.5 cm dressing 34641000168101 Telfa Non Adherent (6020C) 34641000168101 Telfa Non Adherent (6020C) 51385011000036100 dressing non adherent 5 cm x 7.5 cm dressing, 10 50906011000036106 dressing non adherent 5 cm x 7.5 cm dressing 50699011000036100 dressing non adherent +81109011000036107 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 200 mL, bottle 162436 80614011000036100 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 200 mL 80209011000036104 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 10 mL 80122011000036100 Duro-Tuss Chesty Cough Liquid Forte 80122011000036100 Duro-Tuss Chesty Cough Liquid Forte 63947011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 200 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +878211000168105 Alsioz 20 mg film-coated tablet, 90, blister pack 186289 878201000168107 Alsioz 20 mg film-coated tablet, 90 878191000168109 Alsioz 20 mg film-coated tablet 878181000168106 Alsioz 878181000168106 Alsioz 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +21097011000036103 Vinorelbine (Mayne Pharma) 10 mg/mL concentrated injection, 1 mL vial 97647 14240011000036105 Vinorelbine (Mayne Pharma) 10 mg/mL concentrated injection, 1 mL vial 7526011000036105 Vinorelbine (Mayne Pharma) 10 mg/mL concentrated injection, vial 3889011000036102 Vinorelbine (Mayne Pharma) 3889011000036102 Vinorelbine (Mayne Pharma) 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +39291000036104 Paracetamol Children's Infant Drops 1 Month to 2 Years (Pharmacy Choice) 100 mg/mL oral liquid solution, 20 mL, bottle 171354 35911000036104 Paracetamol Children's Infant Drops 1 Month to 2 Years (Pharmacy Choice) 100 mg/mL oral liquid solution, 20 mL 32421000036106 Paracetamol Children's Infant Drops 1 Month to 2 Years (Pharmacy Choice) 100 mg/mL oral liquid solution 62501000168104 Paracetamol Children's Infant Drops 1 Month to 2 Years (Pharmacy Choice) 62501000168104 Paracetamol Children's Infant Drops 1 Month to 2 Years (Pharmacy Choice) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +805401000168105 Caelyx 50 mg/25 mL concentrated injection, 3 x 25 mL vials 79921 805391000168108 Caelyx 50 mg/25 mL concentrated injection, 3 x 25 mL vials 113181000036109 Caelyx 50 mg/25 mL concentrated injection, 25 mL vial 3909011000036107 Caelyx 3909011000036107 Caelyx 805381000168105 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, 3 x 25 mL vials 113171000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +955341000168103 Ceftriaxone (Mylan) 2 g powder for injection, 5 vials 148223 955331000168107 Ceftriaxone (Mylan) 2 g powder for injection, 5 vials 955301000168100 Ceftriaxone (Mylan) 2 g powder for injection, 2 g vial 955231000168100 Ceftriaxone (Mylan) 955231000168100 Ceftriaxone (Mylan) 746281000168103 ceftriaxone 2 g injection, 5 vials 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +933239951000036103 Simvacor 10 mg film-coated tablet, 180, bottle 182910 933236441000036102 Simvacor 10 mg film-coated tablet, 180 933234851000036105 Simvacor 10 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46245011000036105 simvastatin 10 mg tablet, 180 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +79678011000036103 Loxalate 10 mg film-coated tablet, 30, bottle 119965 79459011000036105 Loxalate 10 mg film-coated tablet, 30 79364011000036107 Loxalate 10 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +730421000168101 Trajentamet 2.5 mg/500 mg film-coated tablet, 60, bottle 195100 163901000036101 Trajentamet 2.5 mg/500 mg film-coated tablet, 60 162411000036103 Trajentamet 2.5 mg/500 mg film-coated tablet 13261000168107 Trajentamet 2.5 mg/500 mg 13261000168107 Trajentamet 2.5 mg/500 mg 163911000036104 linagliptin 2.5 mg + metformin hydrochloride 500 mg tablet, 60 162421000036105 linagliptin 2.5 mg + metformin hydrochloride 500 mg tablet 166311000036107 linagliptin + metformin +681191000168102 Claratyne 10 mg uncoated tablet, 5, blister pack 200430 681181000168100 Claratyne 10 mg uncoated tablet, 5 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 681171000168103 loratadine 10 mg tablet, 5 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +681191000168102 Claratyne 10 mg uncoated tablet, 5, blister pack 34698 681181000168100 Claratyne 10 mg uncoated tablet, 5 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 681171000168103 loratadine 10 mg tablet, 5 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +1010991000168104 Adynovate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 278729 1010981000168102 Adynovate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010721000168103 Adynovate (inert substance) diluent, 5 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010971000168100 rurioctocog alfa pegol 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +1010991000168104 Adynovate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 278729 1010981000168102 Adynovate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010931000168103 Adynovate (rurioctocog alfa pegol 2000 units) powder for injection, 2000 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010971000168100 rurioctocog alfa pegol 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 1010921000168101 rurioctocog alfa pegol 2000 units injection, vial 1010651000168102 rurioctocog alfa pegol +60300011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 2, blister pack 137681 56259011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 2 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63271011000036106 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 2 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +1045311000168109 Amisulpride (Pharmacor) 100 mg uncoated tablet, 90, blister pack 234695 1045301000168106 Amisulpride (Pharmacor) 100 mg uncoated tablet, 90 1045211000168101 Amisulpride (Pharmacor) 100 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +37921000036100 Epicin 200 mg/100 mL concentrated injection, 100 mL vial 165693 34211000036105 Epicin 200 mg/100 mL concentrated injection, 100 mL vial 32821000036109 Epicin 200 mg/100 mL concentrated injection, 100 mL vial 32261000036101 Epicin 32261000036101 Epicin 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +961781000168101 Dexamfetamine (Apo) 5 mg uncoated tablet, 100, bottle 270932 961771000168104 Dexamfetamine (Apo) 5 mg uncoated tablet, 100 961761000168105 Dexamfetamine (Apo) 5 mg uncoated tablet 961601000168103 Dexamfetamine (Apo) 961601000168103 Dexamfetamine (Apo) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +73931000036107 Quetiapine (GA) 100 mg film-coated tablet, 90, blister pack 176716 71621000036101 Quetiapine (GA) 100 mg film-coated tablet, 90 69621000036109 Quetiapine (GA) 100 mg film-coated tablet 69421000036107 Quetiapine (GA) 69421000036107 Quetiapine (GA) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +801151000168104 Midazolam (Accord) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 207236 801141000168101 Midazolam (Accord) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 801111000168100 Midazolam (Accord) 5 mg/5 mL injection solution, 5 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +19221011000036100 Methotrexate (DBL) 500 mg/20 mL injection solution, 20 mL vial 47252 12511011000036109 Methotrexate (DBL) 500 mg/20 mL injection solution, 20 mL vial 5154011000036108 Methotrexate (DBL) 500 mg/20 mL injection solution, 20 mL vial 3375011000036108 Methotrexate (DBL) 3375011000036108 Methotrexate (DBL) 27163011000036104 methotrexate 500 mg/20 mL injection, 20 mL vial 22525011000036104 methotrexate 500 mg/20 mL injection, vial 21342011000036105 methotrexate +1113911000168105 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 14, blister pack 179086 1113901000168107 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 14 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1042931000168105 olanzapine 10 mg orally disintegrating tablet, 14 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +44637011000036107 Levitra 20 mg film-coated tablet, 1, blister pack 90500 42090011000036103 Levitra 20 mg film-coated tablet, 1 40350011000036103 Levitra 20 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46857011000036106 vardenafil 20 mg tablet, 1 45334011000036104 vardenafil 20 mg tablet 44856011000036100 vardenafil +60640011000036104 Benzac AC 10% modified gel, 50 g, tube 25268 56598011000036107 Benzac AC 10% modified gel, 50 g 53996011000036109 Benzac AC 10% modified gel 17681000168105 Benzac AC 17681000168105 Benzac AC 63450011000036100 benzoyl peroxide 10% modified gel, 50 g 61972011000036105 benzoyl peroxide 10% modified gel 61709011000036104 benzoyl peroxide +783891000168102 Remeron Soltab 45 mg orally disintegrating tablet, 30, blister pack 90438 783881000168100 Remeron Soltab 45 mg orally disintegrating tablet, 30 783871000168103 Remeron Soltab 45 mg orally disintegrating tablet 783801000168108 Remeron Soltab 783801000168108 Remeron Soltab 47701000036107 mirtazapine 45 mg orally disintegrating tablet, 30 47571000036107 mirtazapine 45 mg orally disintegrating tablet 21463011000036102 mirtazapine +921091000168105 Cilopam 20 mg film-coated tablet, 28, bottle 158865 920641000168100 Cilopam 20 mg film-coated tablet, 28 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +933213831000036105 Ciprofloxacin (IPC) 500 mg film-coated tablet, 14, blister pack 153184 933201861000036101 Ciprofloxacin (IPC) 500 mg film-coated tablet, 14 933194821000036108 Ciprofloxacin (IPC) 500 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +140881000036102 Candesartan Cilexetil HCTZ 32/12.5 (RBX) uncoated tablet, 30, bottle 196410 139471000036105 Candesartan Cilexetil HCTZ 32/12.5 (RBX) uncoated tablet, 30 137541000036106 Candesartan Cilexetil HCTZ 32/12.5 (RBX) uncoated tablet 30651000168105 Candesartan Cilexetil HCTZ 32/12.5 (RBX) 30651000168105 Candesartan Cilexetil HCTZ 32/12.5 (RBX) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +723931000168100 Fixta 60 mg film-coated tablet, 28, blister pack 203699 723921000168103 Fixta 60 mg film-coated tablet, 28 723911000168105 Fixta 60 mg film-coated tablet 723901000168107 Fixta 723901000168107 Fixta 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +69449011000036106 Glucose (Baxter) 5% (12.5 g/250 mL) intravenous infusion injection, 24 x 250 mL bags 48524 67249011000036104 Glucose (Baxter) 5% (12.5 g/250 mL) intravenous infusion injection, 24 x 250 mL bags 65575011000036106 Glucose (Baxter) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71799011000036102 glucose 5% (12.5 g/250 mL) injection, 24 x 250 mL bags 70191011000036102 glucose 5% (12.5 g/250 mL) injection, bag 21354011000036103 glucose +24941000036104 Atorvastatin (Apo) 20 mg film-coated tablet, 30, bottle 153731 22211000036100 Atorvastatin (Apo) 20 mg film-coated tablet, 30 20031000036100 Atorvastatin (Apo) 20 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +846181000168108 Styptic Pencil (Covidien) 98.6% stick, 5 g, tube 113622 846171000168105 Styptic Pencil (Covidien) 98.6% stick, 5 g 846151000168101 Styptic Pencil (Covidien) 98.6% stick 59901000168107 Styptic Pencil (Covidien) 59901000168107 Styptic Pencil (Covidien) 846161000168104 aluminium sulfate 98.6% stick, 5 g 846141000168103 aluminium sulfate 98.6% stick 69836011000036107 aluminium sulfate +176891000036103 Signifor 900 microgram/mL injection solution, 60 x 1 mL ampoules 201486 175091000036101 Signifor 900 microgram/mL injection solution, 60 x 1 mL ampoules 173641000036104 Signifor 900 microgram/mL injection solution, ampoule 172571000036103 Signifor 172571000036103 Signifor 175101000036105 pasireotide 900 microgram/mL injection, 60 x 1 mL ampoules 173651000036101 pasireotide 900 microgram/mL injection, ampoule 177231000036100 pasireotide +989651000168102 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 50, blister pack 199859 989641000168104 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 50 989571000168107 Loratadine (Blooms The Chemist) 10 mg uncoated tablet 989561000168101 Loratadine (Blooms The Chemist) 989561000168101 Loratadine (Blooms The Chemist) 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +1011081000168106 Risedronate (Apotex) 75 mg film-coated tablet, 8, blister pack 181976 1011071000168108 Risedronate (Apotex) 75 mg film-coated tablet, 8 1011001000168103 Risedronate (Apotex) 75 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 801061000168101 risedronate sodium 75 mg tablet, 8 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +61463011000036107 Paracetamol (Nyal) 500 mg uncoated tablet, 100, blister pack 90632 57388011000036108 Paracetamol (Nyal) 500 mg uncoated tablet, 100 54292011000036106 Paracetamol (Nyal) 500 mg uncoated tablet 53173011000036109 Paracetamol (Nyal) 53173011000036109 Paracetamol (Nyal) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1053781000168102 Actiq 600 microgram lozenge on handle, 6, blister pack 91601 1053771000168100 Actiq 600 microgram lozenge on handle, 6 34077011000036102 Actiq 600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053761000168106 fentanyl 600 microgram lozenge on handle, 6 34912011000036104 fentanyl 600 microgram lozenge on handle 21258011000036102 fentanyl +17790011000036101 Septrin uncoated tablet, 10, blister pack 15336 12082011000036103 Septrin uncoated tablet, 10 5234011000036106 Septrin uncoated tablet 19341000168100 Septrin 19341000168100 Septrin 26946011000036101 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet, 10 22321011000036103 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +81064011000036104 Iscover 300 mg film-coated tablet, 4, blister pack 151280 80573011000036103 Iscover 300 mg film-coated tablet, 4 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81652011000036109 clopidogrel 300 mg tablet, 4 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +664111000168106 Midazolam (Act) 50 mg/10 mL injection solution, 10 mL ampoule 207244 664101000168108 Midazolam (Act) 50 mg/10 mL injection solution, 10 mL ampoule 664081000168101 Midazolam (Act) 50 mg/10 mL injection solution, 10 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 664091000168103 midazolam 50 mg/10 mL injection, 10 mL ampoule 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +43603011000036109 Gabaran 600 mg film-coated tablet, 100, blister pack 121833 41264011000036104 Gabaran 600 mg film-coated tablet, 100 4826011000036103 Gabaran 600 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +43695011000036108 Oruvail SR 100 mg modified release capsule, 10, bottle 124323 41466011000036106 Oruvail SR 100 mg modified release capsule, 10 39993011000036106 Oruvail SR 100 mg modified release capsule 10051000168105 Oruvail SR 10051000168105 Oruvail SR 46314011000036107 ketoprofen 100 mg modified release capsule, 10 45071011000036101 ketoprofen 100 mg modified release capsule 21856011000036108 ketoprofen +844011000168107 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 7, bottle 218069 843901000168107 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 7 843891000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +60006011000036104 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 123258 55968011000036100 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 200 mL 53742011000036105 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 5 mL 11351000168104 Ibuprofen for Children (Priceline) 11351000168104 Ibuprofen for Children (Priceline) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +18431000036103 Scitropin (1 x 4 mg vial, 1 x inert diluent vial), 1 pack, composite pack 79590 17061000036104 Scitropin (1 x 4 mg vial, 1 x inert diluent vial), 1 pack 7021011000036103 Scitropin (somatropin 4 mg) powder for injection, 4 mg vial 3333011000036105 Scitropin 3333011000036105 Scitropin 17071000036107 somatropin 4 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23233011000036104 somatropin 4 mg injection, vial 21295011000036100 somatropin +18431000036103 Scitropin (1 x 4 mg vial, 1 x inert diluent vial), 1 pack, composite pack 79590 17061000036104 Scitropin (1 x 4 mg vial, 1 x inert diluent vial), 1 pack 7022011000036109 Scitropin (inert substance) diluent, vial 3333011000036105 Scitropin 3333011000036105 Scitropin 17071000036107 somatropin 4 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +1111581000168108 Clopithromb 75 mg film-coated tablet, 84, blister pack 187040 1111571000168105 Clopithromb 75 mg film-coated tablet, 84 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87806011000036109 clopidogrel 75 mg tablet, 84 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +724091000168103 HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 724081000168101 HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 724061000168105 HCU Cooler 15 Orange oral liquid solution, 130 mL pouch 21751000168108 HCU Cooler 15 21751000168108 HCU Cooler 15 724071000168104 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL pouches 724051000168108 amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL pouch 50753011000036104 amino acid formula with vitamins and minerals without methionine +18714011000036101 Oestradiol (Organon) 100 mg implant, 1, tube 14509 12034011000036100 Oestradiol (Organon) 100 mg implant, 1 4693011000036109 Oestradiol (Organon) 100 mg implant 3678011000036107 Oestradiol (Organon) 3678011000036107 Oestradiol (Organon) 26866011000036102 estradiol 100 mg implant, 1 22245011000036106 estradiol 100 mg implant 21238011000036103 estradiol +696221000168103 Midazolam (MYX) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207225 696211000168105 Midazolam (MYX) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 696201000168107 Midazolam (MYX) 50 mg/10 mL injection solution, 10 mL ampoule 696191000168109 Midazolam (MYX) 696191000168109 Midazolam (MYX) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +60248011000036100 Fexo (Amcal) 180 mg film-coated tablet, 10, blister pack 134657 56207011000036103 Fexo (Amcal) 180 mg film-coated tablet, 10 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +60248011000036100 Fexo (Amcal) 180 mg film-coated tablet, 10, blister pack 223782 56207011000036103 Fexo (Amcal) 180 mg film-coated tablet, 10 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +18253011000036100 Microlut 30 microgram sugar coated tablet, 4 x 28, blister packs 10696 11352011000036108 Microlut 30 microgram sugar coated tablet, 4 x 28 5704011000036105 Microlut 30 microgram sugar coated tablet 4235011000036103 Microlut 4235011000036103 Microlut 28144011000036102 levonorgestrel 30 microgram tablet, 112 tablets [4 x 28] 23453011000036101 levonorgestrel 30 microgram tablet 21391011000036105 levonorgestrel +1049651000168100 Mersyndol Forte uncoated tablet, 40, blister pack 10109 1049641000168102 Mersyndol Forte uncoated tablet, 40 933219631000036107 Mersyndol Forte uncoated tablet 32431000168101 Mersyndol Forte 32431000168101 Mersyndol Forte 685421000168105 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet, 40 933219641000036102 paracetamol 450 mg + codeine phosphate hemihydrate 30 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1067051000168106 Cold and Flu PE (Priceline) uncoated tablet, 24, blister pack 158531 1067041000168109 Cold and Flu PE (Priceline) uncoated tablet, 24 1067031000168100 Cold and Flu PE (Priceline) uncoated tablet 1067021000168103 Cold and Flu PE (Priceline) 1067021000168103 Cold and Flu PE (Priceline) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +69353011000036100 Betadine Cold Sore 10% ointment, 7.5 g, tube 29563 67153011000036101 Betadine Cold Sore 10% ointment, 7.5 g 65407011000036103 Betadine Cold Sore 10% ointment 52141000168102 Betadine Cold Sore 52141000168102 Betadine Cold Sore 71718011000036106 povidone-iodine 10% ointment, 7.5 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +20187011000036101 Valtrex 500 mg film-coated tablet, 100, blister pack 73917 13410011000036104 Valtrex 500 mg film-coated tablet, 100 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +18251011000036101 Amira 150 mg film-coated tablet, 60, blister pack 126317 11826011000036105 Amira 150 mg film-coated tablet, 60 5610011000036108 Amira 150 mg film-coated tablet 3762011000036108 Amira 3762011000036108 Amira 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +878371000168105 Baltine 30 mg enteric capsule, 14, blister pack 210680 878361000168104 Baltine 30 mg enteric capsule, 14 878301000168100 Baltine 30 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 756881000168104 duloxetine 30 mg enteric capsule, 14 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +681011000168107 Xigduo XR 10/1000 modified release tablet, 28, blister pack 211295 681001000168109 Xigduo XR 10/1000 modified release tablet, 28 680981000168105 Xigduo XR 10/1000 modified release tablet 680961000168101 Xigduo XR 10/1000 680961000168101 Xigduo XR 10/1000 680991000168108 dapagliflozin 10 mg + metformin hydrochloride 1 g modified release tablet, 28 680971000168107 dapagliflozin 10 mg + metformin hydrochloride 1 g modified release tablet 680901000168102 dapagliflozin + metformin +921910011000036107 Exforge HCT 10/320/25 film-coated tablet, 56, blister pack 158168 921469011000036100 Exforge HCT 10/320/25 film-coated tablet, 56 921019011000036105 Exforge HCT 10/320/25 film-coated tablet 21211000168103 Exforge HCT 10/320/25 21211000168103 Exforge HCT 10/320/25 922597011000036102 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 56 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +777461000168105 Karvea 300 mg film-coated tablet, 28, blister pack 101708 777451000168108 Karvea 300 mg film-coated tablet, 28 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777441000168106 irbesartan 300 mg tablet, 28 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +87628011000036105 Levetiracetam (Sandoz) 500 mg film-coated tablet, 60, blister pack 159051 87473011000036104 Levetiracetam (Sandoz) 500 mg film-coated tablet, 60 87333011000036109 Levetiracetam (Sandoz) 500 mg film-coated tablet 87284011000036105 Levetiracetam (Sandoz) 87284011000036105 Levetiracetam (Sandoz) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +766751000168105 Lenvima 4 mg hard capsule, 30, blister pack 233425 766741000168108 Lenvima 4 mg hard capsule, 30 766721000168102 Lenvima 4 mg hard capsule 766621000168109 Lenvima 766621000168109 Lenvima 766731000168104 lenvatinib 4 mg capsule, 30 766711000168109 lenvatinib 4 mg capsule 766651000168101 lenvatinib +933214151000036107 Tramadol Hydrochloride SR (GenRx) 150 mg modified release tablet, 20, blister pack 154405 933202111000036100 Tramadol Hydrochloride SR (GenRx) 150 mg modified release tablet, 20 933195051000036108 Tramadol Hydrochloride SR (GenRx) 150 mg modified release tablet 50941000168101 Tramadol Hydrochloride SR (GenRx) 50941000168101 Tramadol Hydrochloride SR (GenRx) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +989171000168103 Aspirin (Blooms The Chemist) 100 mg enteric tablet, 28, blister pack 258433 989161000168109 Aspirin (Blooms The Chemist) 100 mg enteric tablet, 28 989151000168107 Aspirin (Blooms The Chemist) 100 mg enteric tablet 989141000168105 Aspirin (Blooms The Chemist) 989141000168105 Aspirin (Blooms The Chemist) 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +68918011000036106 Nurofen for Children Meltlet 100 mg orally disintegrating tablet, 12, blister pack 124586 66678011000036105 Nurofen for Children Meltlet 100 mg orally disintegrating tablet, 12 65519011000036104 Nurofen for Children Meltlet 100 mg orally disintegrating tablet 36191000168108 Nurofen for Children Meltlet 36191000168108 Nurofen for Children Meltlet 71381011000036104 ibuprofen 100 mg orally disintegrating tablet, 12 69983011000036101 ibuprofen 100 mg orally disintegrating tablet 21885011000036105 ibuprofen +44271011000036104 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 5 x 0.6 mL syringes 61938 41742011000036107 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 5 x 0.6 mL syringes 40177011000036107 Fragmin 15 000 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46549011000036103 dalteparin sodium 15 000 anti-Xa units/0.6 mL injection, 5 x 0.6 mL syringes 45213011000036104 dalteparin sodium 15 000 anti-Xa units/0.6 mL injection, syringe 21450011000036103 dalteparin sodium +43866011000036105 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128375 41362011000036100 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack 630131000168100 Benefix (inert substance) diluent, 5 mL syringe 2121000168104 Benefix 2121000168104 Benefix 46266011000036109 nonacog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +43866011000036105 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128375 41362011000036100 Benefix (1 x 500 units vial, 1 x 5 mL inert diluent syringe), 1 pack 40211011000036108 Benefix (nonacog alfa 500 units) powder for injection, 500 units vial 2121000168104 Benefix 2121000168104 Benefix 46266011000036109 nonacog alfa 500 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 45243011000036106 nonacog alfa 500 units injection, vial 44863011000036102 nonacog alfa +86041011000036109 Berinert (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 157279 85718011000036108 Berinert (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 85353011000036107 Berinert (C1 esterase inhibitor 500 units) powder for injection, 500 units vial 85263011000036109 Berinert 85263011000036109 Berinert 86442011000036108 C1 esterase inhibitor 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 86225011000036102 C1 esterase inhibitor 500 units injection, vial 86199011000036108 C1 esterase inhibitor +86041011000036109 Berinert (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 157279 85718011000036108 Berinert (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 636371000168102 Berinert (inert substance) diluent, 10 mL vial 85263011000036109 Berinert 85263011000036109 Berinert 86442011000036108 C1 esterase inhibitor 500 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +18193011000036108 Inspra 25 mg film-coated tablet, 30, blister pack 100162 11142011000036101 Inspra 25 mg film-coated tablet, 30 4780011000036109 Inspra 25 mg film-coated tablet 3018011000036108 Inspra 3018011000036108 Inspra 26533011000036104 eplerenone 25 mg tablet, 30 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +24781000036105 Volirop 6.25 mg film-coated tablet, 60, blister pack 174796 22601000036100 Volirop 6.25 mg film-coated tablet, 60 20201000036103 Volirop 6.25 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +933141011000036101 Elmendos 50 mg tablet, 56, bottle 98078 932940011000036103 Elmendos 50 mg tablet, 56 932779011000036104 Elmendos 50 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1084211000168106 Salofalk 1 g modified release granules, 150 sachets 80649 1084201000168108 Salofalk 1 g modified release granules, 150 sachets 1084131000168106 Salofalk 1 g modified release granules, sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084191000168105 mesalazine 1 g modified release granules, 150 sachets 23619011000036106 mesalazine 1 g modified release granules, sachet 21351011000036101 mesalazine +1015171000168106 Valaciclovir (Apotex) 500 mg film-coated tablet, 480, blister pack 158914 1015161000168100 Valaciclovir (Apotex) 500 mg film-coated tablet, 480 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929220011000036107 valaciclovir 500 mg tablet, 480 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +931539011000036104 Reditron 8 mg film-coated tablet, 10, blister pack 163431 930700011000036109 Reditron 8 mg film-coated tablet, 10 930021011000036105 Reditron 8 mg film-coated tablet 28261000168108 Reditron 28261000168108 Reditron 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +1096551000168101 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 50, blister pack 287308 1096541000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 50 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +933214191000036103 Seralin 50 mg film-coated tablet, 28, blister pack 160770 933203411000036101 Seralin 50 mg film-coated tablet, 28 933195811000036100 Seralin 50 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 46995011000036101 sertraline 50 mg tablet, 28 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1010831000168107 Adynovate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 278727 1010821000168109 Adynovate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010771000168102 Adynovate (rurioctocog alfa pegol 500 units) powder for injection, 500 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010811000168102 rurioctocog alfa pegol 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 1010761000168108 rurioctocog alfa pegol 500 units injection, vial 1010651000168102 rurioctocog alfa pegol +1010831000168107 Adynovate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 278727 1010821000168109 Adynovate (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 1010721000168103 Adynovate (inert substance) diluent, 5 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010811000168102 rurioctocog alfa pegol 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +1079231000168108 Carvedilol (Auro) 3.125 mg film-coated tablet, 1000, bottle 174798 1079221000168105 Carvedilol (Auro) 3.125 mg film-coated tablet, 1000 737731000168109 Carvedilol (Auro) 3.125 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 1079211000168103 carvedilol 3.125 mg tablet, 1000 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +44845011000036109 Avastin 100 mg/4 mL concentrated injection, 4 mL vial 99755 42277011000036100 Avastin 100 mg/4 mL concentrated injection, 4 mL vial 40416011000036104 Avastin 100 mg/4 mL concentrated injection, 4 mL vial 39714011000036102 Avastin 39714011000036102 Avastin 47028011000036108 bevacizumab 100 mg/4 mL injection, 4 mL vial 45380011000036101 bevacizumab 100 mg/4 mL injection, vial 44904011000036105 bevacizumab +1007221000168105 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 133448 1007211000168103 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 1007191000168104 Novomix 30 Flexpen injection suspension, 3 mL injection device 2541000168100 Novomix 30 Flexpen 2541000168100 Novomix 30 Flexpen 1007201000168101 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL injection devices 1007181000168102 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection device 21276011000036104 insulin aspart + insulin aspart protamine +1007221000168105 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 143166 1007211000168103 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 1007191000168104 Novomix 30 Flexpen injection suspension, 3 mL injection device 2541000168100 Novomix 30 Flexpen 2541000168100 Novomix 30 Flexpen 1007201000168101 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL injection devices 1007181000168102 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection device 21276011000036104 insulin aspart + insulin aspart protamine +1007221000168105 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 81760 1007211000168103 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 1007191000168104 Novomix 30 Flexpen injection suspension, 3 mL injection device 2541000168100 Novomix 30 Flexpen 2541000168100 Novomix 30 Flexpen 1007201000168101 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL injection devices 1007181000168102 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection device 21276011000036104 insulin aspart + insulin aspart protamine +1079241000168104 Carvedilol (Auro) 25 mg film-coated tablet, 30, bottle 174799 737711000168104 Carvedilol (Auro) 25 mg film-coated tablet, 30 737701000168102 Carvedilol (Auro) 25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 84613011000036100 carvedilol 25 mg tablet, 30 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +20564011000036104 Gliclazide (Chemmart) 80 mg uncoated tablet, 100, blister pack 80085 13755011000036105 Gliclazide (Chemmart) 80 mg uncoated tablet, 100 7040011000036107 Gliclazide (Chemmart) 80 mg uncoated tablet 3415011000036109 Gliclazide (Chemmart) 3415011000036109 Gliclazide (Chemmart) 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +60060011000036103 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 200 mL, bottle 124631 56022011000036102 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 200 mL 53761011000036108 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 5 mL 35851000168104 Paracetamol 1 to 5 Years (Priceline) 35851000168104 Paracetamol 1 to 5 Years (Priceline) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +19219011000036106 Mixtard 30/70 Penfill injection suspension, 5 x 3 mL cartridges 169629 12509011000036106 Mixtard 30/70 Penfill injection suspension, 5 x 3 mL cartridges 4898011000036109 Mixtard 30/70 Penfill injection suspension, 3 mL cartridge 51341000168109 Mixtard 30/70 Penfill 51341000168109 Mixtard 30/70 Penfill 27770011000036107 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, 5 x 3 mL cartridges 23101011000036109 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +19219011000036106 Mixtard 30/70 Penfill injection suspension, 5 x 3 mL cartridges 47222 12509011000036106 Mixtard 30/70 Penfill injection suspension, 5 x 3 mL cartridges 4898011000036109 Mixtard 30/70 Penfill injection suspension, 3 mL cartridge 51341000168109 Mixtard 30/70 Penfill 51341000168109 Mixtard 30/70 Penfill 27770011000036107 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, 5 x 3 mL cartridges 23101011000036109 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +928819011000036102 Charcotrace 120 mg/3 mL injection suspension, 10 x 3 mL vials 100313 928170011000036107 Charcotrace 120 mg/3 mL injection suspension, 10 x 3 mL vials 927843011000036104 Charcotrace 120 mg/3 mL injection suspension, 3 mL vial 927780011000036102 Charcotrace 927780011000036102 Charcotrace 929197011000036102 activated charcoal 120 mg/3 mL injection, 10 x 3 mL vials 929137011000036108 activated charcoal 120 mg/3 mL injection, vial 77437011000036109 activated charcoal +921837011000036106 Nurofen Plus film-coated tablet, 30, blister pack 116620 921382011000036101 Nurofen Plus film-coated tablet, 30 53658011000036100 Nurofen Plus film-coated tablet 28771000168109 Nurofen Plus 28771000168109 Nurofen Plus 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1092211000168103 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 3 x 150 actuations, aerosol cans 197127 1092201000168101 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 3 x 150 actuations 1091941000168101 Nicorette Quickmist Freshmint 1 mg/actuation oral spray 39021000168101 Nicorette Quickmist 39021000168101 Nicorette Quickmist 1091991000168109 nicotine 1 mg/actuation oral spray, 3 x 150 actuations 148801000036106 nicotine 1 mg/actuation oral spray, 1 actuation 21432011000036100 nicotine +737161000168100 Asartan HCT 16/12.5 uncoated tablet, 30, blister pack 199103 737151000168102 Asartan HCT 16/12.5 uncoated tablet, 30 737141000168104 Asartan HCT 16/12.5 uncoated tablet 737131000168108 Asartan HCT 16/12.5 737131000168108 Asartan HCT 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +676671000168109 Silaran 100 mg film-coated tablet, 4, blister pack 196242 676661000168103 Silaran 100 mg film-coated tablet, 4 676651000168100 Silaran 100 mg film-coated tablet 676641000168102 Silaran 676641000168102 Silaran 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +673061000168104 Pomalyst 3 mg capsule, 21, blister pack 212656 673051000168101 Pomalyst 3 mg capsule, 21 673031000168107 Pomalyst 3 mg capsule 672631000168105 Pomalyst 672631000168105 Pomalyst 673041000168103 pomalidomide 3 mg capsule, 21 673021000168109 pomalidomide 3 mg capsule 672761000168105 pomalidomide +44571011000036107 Gabapentin (Terry White Chemists) 300 mg hard capsule, 100, blister pack 81782 42024011000036104 Gabapentin (Terry White Chemists) 300 mg hard capsule, 100 40326011000036104 Gabapentin (Terry White Chemists) 300 mg hard capsule 39628011000036105 Gabapentin (Terry White Chemists) 39628011000036105 Gabapentin (Terry White Chemists) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +20806011000036109 Lisinopril (Hexal) 10 mg uncoated tablet, 30, blister pack 91386 13971011000036103 Lisinopril (Hexal) 10 mg uncoated tablet, 30 7257011000036103 Lisinopril (Hexal) 10 mg uncoated tablet 3611011000036109 Lisinopril (Hexal) 3611011000036109 Lisinopril (Hexal) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +953241000168108 Gabapentin (AN) 300 mg hard capsule, 500, blister pack 263841 953231000168104 Gabapentin (AN) 300 mg hard capsule, 500 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953221000168102 gabapentin 300 mg capsule, 500 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +110511000036104 Valine50 containing 50 mg valine powder for oral liquid, 30 x 4 g sachets 108461000036100 Valine50 containing 50 mg valine powder for oral liquid, 30 x 4 g sachets 288501000168105 Valine50 containing 50 mg valine powder for oral liquid, 4 g sachet 106581000036107 Valine50 106581000036107 Valine50 51277011000036107 valine with carbohydrate containing 50 mg valine powder for oral liquid, 30 x 4 g sachets 288321000168105 valine with carbohydrate containing 50 mg valine powder for oral liquid, 4 g sachet 50774011000036104 valine with carbohydrate +931655011000036105 Twynsta 40/10 mg multilayer tablet, 28, blister pack 166264 930815011000036100 Twynsta 40/10 mg multilayer tablet, 28 930058011000036102 Twynsta 40/10 mg multilayer tablet 23641000168100 Twynsta 40/10 mg 23641000168100 Twynsta 40/10 mg 932428011000036101 telmisartan 40 mg + amlodipine 10 mg tablet, 28 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +44329011000036105 Novoseven 4.8 mg powder for injection, 1 vial 67087 41796011000036102 Novoseven 4.8 mg powder for injection, 1 vial 40204011000036109 Novoseven 4.8 mg powder for injection, 4.8 mg vial 55601000168100 Novoseven 55601000168100 Novoseven 46602011000036108 eptacog alfa (activated) 4.8 mg injection, 1 vial 45236011000036104 eptacog alfa (activated) 4.8 mg injection, vial 44889011000036101 eptacog alfa (activated) +50283011000036100 Rispa 3 mg film-coated tablet, 60, blister pack 127886 49564011000036103 Rispa 3 mg film-coated tablet, 60 48690011000036103 Rispa 3 mg film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +61636011000036105 Paralgin Tabsule 500 mg uncoated tablet, 24, blister pack 97039 57558011000036102 Paralgin Tabsule 500 mg uncoated tablet, 24 54350011000036106 Paralgin Tabsule 500 mg uncoated tablet 16671000168105 Paralgin Tabsule 16671000168105 Paralgin Tabsule 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1059821000168109 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 84, blister pack 234468 1059811000168102 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 84 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930631000168106 rosuvastatin 5 mg tablet, 84 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +59989011000036102 SM-33 oral gel, 10 g, tube 12182 55951011000036102 SM-33 oral gel, 10 g 53735011000036103 SM-33 oral gel 53292011000036109 SM-33 53292011000036109 SM-33 63176011000036104 ethanol 40% + glycerol 20% + lidocaine (lignocaine) 0.5% + menthol 0.05% + salicylic acid 2% + tannic acid 0.5% + thymol 0.05% oral gel, 10 g 61878011000036100 ethanol 40% + glycerol 20% + lidocaine (lignocaine) 0.5% + menthol 0.05% + salicylic acid 2% + tannic acid 0.5% + thymol 0.05% oral gel 61735011000036107 ethanol + glycerol + lidocaine (lignocaine) + menthol + salicylic acid + tannic acid + thymol +987801000168107 Zyprexa 15 mg film-coated tablet, 100, bottle 77389 987791000168106 Zyprexa 15 mg film-coated tablet, 100 987751000168101 Zyprexa 15 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 987781000168108 olanzapine 15 mg tablet, 100 1381000036101 olanzapine 15 mg tablet 21485011000036103 olanzapine +904261000168103 Amoxyclav Duo 500/125 (SCP) film-coated tablet, 10, blister pack 231940 904251000168100 Amoxyclav Duo 500/125 (SCP) film-coated tablet, 10 904241000168102 Amoxyclav Duo 500/125 (SCP) film-coated tablet 904231000168106 Amoxyclav Duo 500/125 (SCP) 904231000168106 Amoxyclav Duo 500/125 (SCP) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1054061000168106 Norspan 10 microgram/hour patch, 1, sachet 116648 1054051000168109 Norspan 10 microgram/hour patch, 1 5476011000036104 Norspan 10 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 1046631000168104 buprenorphine 10 microgram/hour patch, 1 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +69595011000036105 Lasonil 0.833% ointment, 40 g, tube 68250 67394011000036103 Lasonil 0.833% ointment, 40 g 65645011000036103 Lasonil 0.833% ointment 65183011000036107 Lasonil 65183011000036107 Lasonil 71929011000036100 heparinoids 0.833% ointment, 40 g 70252011000036102 heparinoids 0.833% ointment 69837011000036105 heparinoids +60469011000036100 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 6 sachets 150167 56427011000036105 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 6 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63359011000036104 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 6 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +1012841000168104 Valganciclovir (Apo) 450 mg film-coated tablet, 60, blister pack 184310 1012781000168100 Valganciclovir (Apo) 450 mg film-coated tablet, 60 1012771000168103 Valganciclovir (Apo) 450 mg film-coated tablet 1012761000168109 Valganciclovir (Apo) 1012761000168109 Valganciclovir (Apo) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +18542011000036104 Enalabell 10 mg uncoated tablet, 30, blister pack 107306 11362011000036103 Enalabell 10 mg uncoated tablet, 30 5156011000036100 Enalabell 10 mg uncoated tablet 3129011000036102 Enalabell 3129011000036102 Enalabell 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +929119011000036108 Oxycontin 10 mg modified release tablet, 28, blister pack 200031 928480011000036100 Oxycontin 10 mg modified release tablet, 28 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +929119011000036108 Oxycontin 10 mg modified release tablet, 28, blister pack 68187 928480011000036100 Oxycontin 10 mg modified release tablet, 28 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +937941000168109 Zonisamide (Apo) 100 mg hard capsule, 56, blister pack 265577 937931000168100 Zonisamide (Apo) 100 mg hard capsule, 56 937921000168103 Zonisamide (Apo) 100 mg hard capsule 937851000168103 Zonisamide (Apo) 937851000168103 Zonisamide (Apo) 71385011000036102 zonisamide 100 mg capsule, 56 69987011000036105 zonisamide 100 mg capsule 69755011000036103 zonisamide +1062711000168105 Atorvator 10 mg film-coated tablet, 6, blister pack 179831 1062701000168107 Atorvator 10 mg film-coated tablet, 6 1061171000168108 Atorvator 10 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 841221000168106 atorvastatin 10 mg tablet, 6 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +741451000168104 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 5 x 0.5 mL injection devices 231052 741441000168101 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 5 x 0.5 mL injection devices 741391000168100 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741431000168105 follitropin alfa 300 units (22 microgram)/0.5 mL injection, 5 x 0.5 mL injection devices 741381000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, injection device 21352011000036107 follitropin alfa +933239791000036109 Meloxicam (Chemmart) 15 mg hard capsule, 20, blister pack 181201 933237111000036109 Meloxicam (Chemmart) 15 mg hard capsule, 20 933234811000036106 Meloxicam (Chemmart) 15 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 52891011000036100 meloxicam 15 mg capsule, 20 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +84347011000036108 Stalevo 125/31.25/200 film-coated tablet, 100, bottle 160687 84040011000036108 Stalevo 125/31.25/200 film-coated tablet, 100 83665011000036103 Stalevo 125/31.25/200 film-coated tablet 2301000168106 Stalevo 125/31.25/200 2301000168106 Stalevo 125/31.25/200 84652011000036103 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 100 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +917071000168105 Carvedilol (CH) 25 mg uncoated tablet, 60, blister pack 194259 917061000168104 Carvedilol (CH) 25 mg uncoated tablet, 60 917051000168101 Carvedilol (CH) 25 mg uncoated tablet 916661000168106 Carvedilol (CH) 916661000168106 Carvedilol (CH) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +140251000036108 Aquacel Extra (420673) 15 cm x 15 cm dressing, 5, sachet 138681000036100 Aquacel Extra (420673) 15 cm x 15 cm dressing, 5 137431000036102 Aquacel Extra (420673) 15 cm x 15 cm dressing 48891000168102 Aquacel Extra (420673) 48891000168102 Aquacel Extra (420673) 51354011000036105 dressing hydrofibre alternate to alginates 15 cm x 15 cm dressing, 5 50877011000036108 dressing hydrofibre alternate to alginates 15 cm x 15 cm dressing 50717011000036100 dressing hydrofibre alternate to alginates +981331000168103 Pritor 40 mg uncoated tablet, 98, blister pack 68054 981321000168101 Pritor 40 mg uncoated tablet, 98 981211000168100 Pritor 40 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 981311000168108 telmisartan 40 mg tablet, 98 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +37563011000036109 Pentamidine Isethionate (DBL) 300 mg powder for injection, 1 vial 16260 36830011000036105 Pentamidine Isethionate (DBL) 300 mg powder for injection, 1 vial 36016011000036101 Pentamidine Isethionate (DBL) 300 mg powder for injection, 300 mg vial 35859011000036102 Pentamidine Isethionate (DBL) 35859011000036102 Pentamidine Isethionate (DBL) 38719011000036103 pentamidine isetionate 300 mg injection, 1 vial 37950011000036102 pentamidine isetionate 300 mg injection, vial 37734011000036103 pentamidine +20489011000036107 Ramace 10 mg hard capsule, 30, blister pack 78576 13689011000036109 Ramace 10 mg hard capsule, 30 6972011000036103 Ramace 10 mg hard capsule 3038011000036104 Ramace 3038011000036104 Ramace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +20489011000036107 Ramace 10 mg hard capsule, 30, blister pack 79098 13689011000036109 Ramace 10 mg hard capsule, 30 6972011000036103 Ramace 10 mg hard capsule 3038011000036104 Ramace 3038011000036104 Ramace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +43592011000036108 Bucanest 4% / 1 in 100 000 injection solution, 10 x 1.7 mL cartridges 101547 41127011000036103 Bucanest 4% / 1 in 100 000 injection solution, 10 x 1.7 mL cartridges 39824011000036107 Bucanest 4% / 1 in 100 000 injection solution, 1.7 mL cartridge 44081000168102 Bucanest 4% / 1 in 100 000 44081000168102 Bucanest 4% / 1 in 100 000 46107011000036106 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, 10 x 1.7 mL cartridges 44988011000036102 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 100 000 (17 microgram/1.7 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +43577011000036101 Angeliq 1/2 film-coated tablet, 84, blister pack 114816 41165011000036103 Angeliq 1/2 film-coated tablet, 84 39892011000036107 Angeliq 1/2 film-coated tablet 16131000168100 Angeliq 1/2 16131000168100 Angeliq 1/2 46132011000036104 estradiol 1 mg + drospirenone 2 mg tablet, 84 45002011000036104 estradiol 1 mg + drospirenone 2 mg tablet 44878011000036104 estradiol + drospirenone +933239631000036102 Amisulpride (Apo) 100 mg tablet, 60, blister pack 178904 933236951000036108 Amisulpride (Apo) 100 mg tablet, 60 933234771000036106 Amisulpride (Apo) 100 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +168391000036101 Dermasoft Sanitising Hand Gel gel, 20 mL, tube 61125 167981000036103 Dermasoft Sanitising Hand Gel gel, 20 mL 167511000036101 Dermasoft Sanitising Hand Gel gel 30361000168100 Dermasoft Sanitising Hand Gel 30361000168100 Dermasoft Sanitising Hand Gel 168021000036101 ethanol 70% + triclosan 0.3% gel, 20 mL 167521000036108 ethanol 70% + triclosan 0.3% gel 931785011000036107 ethanol + triclosan +713561000168105 Talam 40 mg film-coated tablet, 28, blister pack 234596 713551000168108 Talam 40 mg film-coated tablet, 28 713541000168106 Talam 40 mg film-coated tablet 3427011000036108 Talam 3427011000036108 Talam 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +993601000168100 Lyrica 225 mg hard capsule, 14, blister pack 99535 993521000168105 Lyrica 225 mg hard capsule, 14 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +140291000036104 Gabapentin (Aspen) 300 mg capsule, 100, blister pack 107494 138721000036108 Gabapentin (Aspen) 300 mg capsule, 100 137761000036100 Gabapentin (Aspen) 300 mg capsule 112611000036104 Gabapentin (Aspen) 112611000036104 Gabapentin (Aspen) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +981291000168109 Pritor 40 mg uncoated tablet, 56, blister pack 68054 981281000168106 Pritor 40 mg uncoated tablet, 56 981211000168100 Pritor 40 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 981271000168108 telmisartan 40 mg tablet, 56 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +1083571000168103 Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL, pump pack 117459 74221011000036105 Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL 73839011000036101 Decongestant (Chemists' Own) 0.05% nasal spray 73767011000036102 Decongestant (Chemists' Own) 73767011000036102 Decongestant (Chemists' Own) 75486011000036101 oxymetazoline hydrochloride 0.05% nasal spray, 18 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +920771000168103 Aciclovir (Apo) 200 mg tablet, 90, blister pack 159140 920761000168109 Aciclovir (Apo) 200 mg tablet, 90 920671000168107 Aciclovir (Apo) 200 mg tablet 920661000168101 Aciclovir (Apo) 920661000168101 Aciclovir (Apo) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +655211000168106 Quetiapine (AN) 25 mg film-coated tablet, 60, blister pack 170853 655201000168108 Quetiapine (AN) 25 mg film-coated tablet, 60 655191000168105 Quetiapine (AN) 25 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +912211000168106 Caspofungin (MYX) 70 mg powder for injection, 1 vial 266807 912201000168108 Caspofungin (MYX) 70 mg powder for injection, 1 vial 912191000168105 Caspofungin (MYX) 70 mg powder for injection, 70 mg vial 912181000168107 Caspofungin (MYX) 912181000168107 Caspofungin (MYX) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +1054101000168109 Norspan 20 microgram/hour patch, 1, sachet 116650 1054091000168104 Norspan 20 microgram/hour patch, 1 5223011000036107 Norspan 20 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 1046541000168107 buprenorphine 20 microgram/hour patch, 1 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +19538011000036103 Chloromycetin 1% eye ointment, 4 g, tube 56589 12810011000036101 Chloromycetin 1% eye ointment, 4 g 6101011000036102 Chloromycetin 1% eye ointment 3326011000036102 Chloromycetin 3326011000036102 Chloromycetin 27367011000036103 chloramphenicol 1% eye ointment, 4 g 22717011000036101 chloramphenicol 1% eye ointment 21330011000036107 chloramphenicol +59700011000036103 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 30 mL, bottle 10554 55716011000036106 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 30 mL 53659011000036108 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 63112011000036109 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 30 mL 61859011000036105 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61750011000036102 pholcodine + pseudoephedrine +74812011000036100 Somac 40 mg enteric coated granules, 28 sachets 148005 74299011000036103 Somac 40 mg enteric coated granules, 28 sachets 73826011000036107 Somac 40 mg enteric coated granules, 40 mg sachet 10171000168100 Somac 10171000168100 Somac 75415011000036106 pantoprazole 40 mg enteric coated granules, 28 sachets 75050011000036102 pantoprazole 40 mg enteric coated granules, sachet 21563011000036107 pantoprazole +1077141000168104 Atomoxetine (AS) 40 mg hard capsule, 28, blister pack 238362 1077131000168108 Atomoxetine (AS) 40 mg hard capsule, 28 1077101000168101 Atomoxetine (AS) 40 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +44620011000036108 Sinutab Sinus and Pain Relief uncoated tablet, 30, blister pack 90131 42073011000036102 Sinutab Sinus and Pain Relief uncoated tablet, 30 40346011000036102 Sinutab Sinus and Pain Relief uncoated tablet 39567011000036105 Sinutab Sinus and Pain Relief 39567011000036105 Sinutab Sinus and Pain Relief 46840011000036108 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 30 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +34659011000036102 Irinotecan Hydrochloride Trihydrate (Sandoz) 40 mg/2 mL concentrated injection, 2 mL vial 125140 34248011000036105 Irinotecan Hydrochloride Trihydrate (Sandoz) 40 mg/2 mL concentrated injection, 2 mL vial 33984011000036107 Irinotecan Hydrochloride Trihydrate (Sandoz) 40 mg/2 mL concentrated injection, 2 mL vial 33921011000036100 Irinotecan Hydrochloride Trihydrate (Sandoz) 33921011000036100 Irinotecan Hydrochloride Trihydrate (Sandoz) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +1087821000168105 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 140 actuations, pump pack 280422 1087811000168103 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, 140 actuations 1087701000168108 Mometasone Allergy Relief (GPPL) 50 microgram/actuation nasal spray, actuation 1087671000168107 Mometasone Allergy Relief (GPPL) 1087671000168107 Mometasone Allergy Relief (GPPL) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +19022011000036101 Feldene-D 20 mg dispersible tablet, 25, blister pack 37312 12327011000036107 Feldene-D 20 mg dispersible tablet, 25 5364011000036107 Feldene-D 20 mg dispersible tablet 1671000168100 Feldene-D 1671000168100 Feldene-D 27882011000036100 piroxicam 20 mg dispersible tablet, 25 23210011000036102 piroxicam 20 mg dispersible tablet 21531011000036103 piroxicam +996321000168108 Duro-Tuss Dry Cough Lozenge orange lozenge, 4, blister pack 51466 996311000168101 Duro-Tuss Dry Cough Lozenge orange lozenge, 4 996261000168107 Duro-Tuss Dry Cough Lozenge orange lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 996231000168104 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 4 996151000168103 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge 61757011000036101 pholcodine + cetylpyridinium +91331000036104 Vinorelbine (AS) 10 mg/mL concentrated injection, 1 mL vial 177541 89891000036106 Vinorelbine (AS) 10 mg/mL concentrated injection, 1 mL vial 87881000036104 Vinorelbine (AS) 10 mg/mL concentrated injection, vial 87691000036103 Vinorelbine (AS) 87691000036103 Vinorelbine (AS) 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +61437011000036106 Sleep Right (Pharmacy Health) 25 mg uncoated tablet, 12, blister pack 83231 57362011000036108 Sleep Right (Pharmacy Health) 25 mg uncoated tablet, 12 54284011000036101 Sleep Right (Pharmacy Health) 25 mg uncoated tablet 53425011000036107 Sleep Right (Pharmacy Health) 53425011000036107 Sleep Right (Pharmacy Health) 63826011000036106 doxylamine succinate 25 mg tablet, 12 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +176731000036106 Cadivast 5/40 film-coated tablet, 30, blister pack 199216 174901000036109 Cadivast 5/40 film-coated tablet, 30 173351000036107 Cadivast 5/40 film-coated tablet 56381000168108 Cadivast 5/40 56381000168108 Cadivast 5/40 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +37698011000036105 Sensipar 90 mg film-coated tablet, 28, blister pack 98407 36964011000036103 Sensipar 90 mg film-coated tablet, 28 36285011000036100 Sensipar 90 mg film-coated tablet 35979011000036107 Sensipar 35979011000036107 Sensipar 38845011000036106 cinacalcet 90 mg tablet, 28 38045011000036107 cinacalcet 90 mg tablet 37755011000036100 cinacalcet +44545011000036108 Zyvox 600 mg film-coated tablet, 30, blister pack 79694 41998011000036105 Zyvox 600 mg film-coated tablet, 30 40310011000036109 Zyvox 600 mg film-coated tablet 39746011000036100 Zyvox 39746011000036100 Zyvox 46773011000036101 linezolid 600 mg tablet, 30 45309011000036108 linezolid 600 mg tablet 44888011000036109 linezolid +44029011000036109 Cytarabine (DBL) 500 mg/5 mL injection solution, 5 mL vial 47283 41518011000036101 Cytarabine (DBL) 500 mg/5 mL injection solution, 5 mL vial 40032011000036104 Cytarabine (DBL) 500 mg/5 mL injection solution, 5 mL vial 35924011000036107 Cytarabine (DBL) 35924011000036107 Cytarabine (DBL) 46356011000036106 cytarabine 500 mg/5 mL injection, 5 mL vial 45102011000036106 cytarabine 500 mg/5 mL injection, vial 21916011000036109 cytarabine +779561000168101 Fentanyl (Apo) 100 microgram/hour patch, 3, sachet 152575 779551000168103 Fentanyl (Apo) 100 microgram/hour patch, 3 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236251000036103 fentanyl 100 microgram/hour patch, 3 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +998491000168100 Esomeprazole (Apo) 20 mg enteric tablet, 15, blister pack 205827 998481000168103 Esomeprazole (Apo) 20 mg enteric tablet, 15 998441000168108 Esomeprazole (Apo) 20 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 681261000168103 esomeprazole 20 mg enteric tablet, 15 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +34736011000036100 MS Contin 100 mg modified release tablet, 60, blister pack 43088 34320011000036100 MS Contin 100 mg modified release tablet, 60 4983011000036106 MS Contin 100 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35168011000036109 morphine sulfate pentahydrate 100 mg modified release tablet, 60 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +18628011000036109 Oxaliplatin (DBL) 100 mg powder for injection, 1 vial 126112 11821011000036100 Oxaliplatin (DBL) 100 mg powder for injection, 1 vial 5478011000036100 Oxaliplatin (DBL) 100 mg powder for injection, 100 mg vial 3002011000036107 Oxaliplatin (DBL) 3002011000036107 Oxaliplatin (DBL) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +732751000168101 Benadryl Original oral liquid solution, 100 mL, bottle 199371 732741000168103 Benadryl Original oral liquid solution, 100 mL 732721000168109 Benadryl Original oral liquid solution 732691000168100 Benadryl Original 732691000168100 Benadryl Original 732731000168107 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL oral liquid, 100 mL 732711000168102 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL oral liquid 732701000168100 diphenhydramine + ammonium chloride +20789011000036104 Formet 850 mg film-coated tablet, 60, bottle 91110 13957011000036109 Formet 850 mg film-coated tablet, 60 7243011000036109 Formet 850 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +672971000168102 Pomalyst 4 mg capsule, 21, blister pack 212655 672951000168106 Pomalyst 4 mg capsule, 21 672931000168100 Pomalyst 4 mg capsule 672631000168105 Pomalyst 672631000168105 Pomalyst 672941000168109 pomalidomide 4 mg capsule, 21 672921000168103 pomalidomide 4 mg capsule 672761000168105 pomalidomide +933246141000036106 Coban 2 two layer bandage, 1, carton 933242651000036101 Coban 2 two layer bandage, 1 933241191000036108 Coban 2 two layer bandage 933240891000036107 Coban 2 933240891000036107 Coban 2 933242661000036103 bandage compression two layer bandage, 1 933241201000036105 bandage compression two layer bandage 50716011000036103 bandage compression +43834011000036106 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 20, blister pack 127168 41335011000036101 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 20 39796011000036109 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet 39725011000036109 Zolpidem Tartrate (GenRx) 39725011000036109 Zolpidem Tartrate (GenRx) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1083491000168101 Ostelin Specialist Range Vitamin D 175 microgram (7000 units) soft capsule, 24, blister pack 280039 1083481000168104 Ostelin Specialist Range Vitamin D 175 microgram (7000 units) soft capsule, 24 1083461000168108 Ostelin Specialist Range Vitamin D 175 microgram (7000 units) soft capsule 1083441000168109 Ostelin Specialist Range Vitamin D 1083441000168109 Ostelin Specialist Range Vitamin D 1083471000168102 colecalciferol 175 microgram (7000 units) capsule, 24 1083451000168106 colecalciferol 175 microgram (7000 units) capsule 77447011000036108 colecalciferol +920851000168102 Ceftriaxone (Pfizer) 500 mg powder for injection, 1 vial 174448 920841000168104 Ceftriaxone (Pfizer) 500 mg powder for injection, 1 vial 920831000168108 Ceftriaxone (Pfizer) 500 mg powder for injection, 500 mg vial 920781000168100 Ceftriaxone (Pfizer) 920781000168100 Ceftriaxone (Pfizer) 26661011000036103 ceftriaxone 500 mg injection, 1 vial 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +926883011000036107 Hyzaar 50/12.5 film-coated tablet, 30, blister pack 73218 926279011000036106 Hyzaar 50/12.5 film-coated tablet, 30 925724011000036103 Hyzaar 50/12.5 film-coated tablet 33191000168101 Hyzaar 50/12.5 33191000168101 Hyzaar 50/12.5 927381011000036105 losartan potassium 50 mg + hydrochlorothiazide 12.5 mg tablet, 30 927024011000036104 losartan potassium 50 mg + hydrochlorothiazide 12.5 mg tablet 926978011000036104 losartan + hydrochlorothiazide +813631000168101 Adin Melt 120 microgram sublingual wafer, 10, blister pack 121724 813621000168104 Adin Melt 120 microgram sublingual wafer, 10 813611000168106 Adin Melt 120 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 71370011000036100 desmopressin 120 microgram sublingual wafer, 10 69977011000036102 desmopressin 120 microgram sublingual wafer 21750011000036107 desmopressin +82368011000036106 Coplavix 75 mg/100 mg film-coated tablet, 14, blister pack 150443 82157011000036109 Coplavix 75 mg/100 mg film-coated tablet, 14 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82545011000036105 clopidogrel 75 mg + aspirin 100 mg tablet, 14 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1122581000168109 Humira 80 mg/0.8 mL injection solution, 0.8 mL syringe 292934 1122571000168106 Humira 80 mg/0.8 mL injection solution, 0.8 mL syringe 1122551000168102 Humira 80 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 1122561000168100 adalimumab 80 mg/0.8 mL injection, 0.8 mL syringe 1122541000168104 adalimumab 80 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +926746011000036106 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 117967 926108011000036105 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 925585011000036106 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 5 mL ampoule 925569011000036105 Flumazenil (Sandoz) 925569011000036105 Flumazenil (Sandoz) 38694011000036109 flumazenil 500 microgram/5 mL injection, 5 x 5 mL ampoules 37931011000036105 flumazenil 500 microgram/5 mL injection, ampoule 37762011000036103 flumazenil +920861000168100 Cilopam 40 mg film-coated tablet, 14, blister pack 158866 919941000168109 Cilopam 40 mg film-coated tablet, 14 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202841000036106 citalopram 40 mg tablet, 14 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +18271000036102 Beprol 5 mg film-coated tablet, 28, blister pack 175926 16831000036104 Beprol 5 mg film-coated tablet, 28 15721000036101 Beprol 5 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +921411000168108 Ciaxone 250 mg film-coated tablet, 14, blister pack 90908 921401000168105 Ciaxone 250 mg film-coated tablet, 14 921371000168107 Ciaxone 250 mg film-coated tablet 921121000168109 Ciaxone 921121000168109 Ciaxone 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +818471000168107 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 5 x 0.375 mL injection devices 262647 818461000168101 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 5 x 0.375 mL injection devices 818431000168109 Afolia 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741321000168102 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, 5 x 0.375 mL injection devices 741271000168109 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, injection device 21352011000036107 follitropin alfa +177051000036102 Quetiapine (Pharmacor) 25 mg film-coated tablet, 60, blister pack 204843 175291000036108 Quetiapine (Pharmacor) 25 mg film-coated tablet, 60 172861000036109 Quetiapine (Pharmacor) 25 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +77414011000036108 Bio Zinc film-coated tablet, 168, bottle 91611 76830011000036104 Bio Zinc film-coated tablet, 168 76197011000036100 Bio Zinc film-coated tablet 13091000168107 Bio Zinc 13091000168107 Bio Zinc 78334011000036101 zinc amino acid chelate 125 mg (zinc 25 mg) + magnesium (as phosphate pentahydrate) 25 mg + manganese amino acid chelate 20 mg (manganese 2 mg) + retinol acetate 860 microgram (2500 units) + pyridoxine hydrochloride 50 mg tablet, 168 77612011000036101 zinc amino acid chelate 125 mg (zinc 25 mg) + magnesium (as phosphate pentahydrate) 25 mg + manganese amino acid chelate 20 mg (manganese 2 mg) + retinol acetate 860 microgram (2500 units) + pyridoxine hydrochloride 50 mg tablet 77432011000036107 zinc amino acid chelate + magnesium phosphate pentahydrate + manganese amino acid chelate + retinol acetate + pyridoxine +961921000168103 Natrilix SR 1.5 mg modified release tablet, 10, blister pack 66849 961911000168105 Natrilix SR 1.5 mg modified release tablet, 10 6455011000036106 Natrilix SR 1.5 mg modified release tablet 47361000168100 Natrilix SR 47361000168100 Natrilix SR 672231000168108 indapamide hemihydrate 1.5 mg modified release tablet, 10 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +818611000168102 Afolia 450 units (33 microgram)/0.75 mL injection solution, 5 x 0.75 mL injection devices 262649 818601000168100 Afolia 450 units (33 microgram)/0.75 mL injection solution, 5 x 0.75 mL injection devices 818571000168106 Afolia 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741541000168100 follitropin alfa 450 units (33 microgram)/0.75 mL injection, 5 x 0.75 mL injection devices 741491000168109 follitropin alfa 450 units (33 microgram)/0.75 mL injection, injection device 21352011000036107 follitropin alfa +1045971000168100 Immucyst 81 mg powder for injection, 1 vial 168005 1045961000168106 Immucyst 81 mg powder for injection, 1 vial 1045941000168107 Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial 28281000168104 Immucyst 28281000168104 Immucyst 1045951000168109 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, 1 vial 1045931000168103 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial 32617011000036108 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain +44157011000036107 Aredia (1 x 60 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 53890 41633011000036108 Aredia (1 x 60 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 637261000168101 Aredia (inert substance) diluent, 10 mL ampoule 36891000168104 Aredia 36891000168104 Aredia 46452011000036104 pamidronate disodium 60 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 629701000168101 inert substance diluent, 10 mL ampoule 21220011000036103 inert substance +44157011000036107 Aredia (1 x 60 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack, composite pack 53890 41633011000036108 Aredia (1 x 60 mg vial, 1 x 10 mL inert diluent ampoule), 1 pack 40113011000036106 Aredia (pamidronate disodium 60 mg) powder for injection, 60 mg vial 36891000168104 Aredia 36891000168104 Aredia 46452011000036104 pamidronate disodium 60 mg injection [1 vial] (&) inert substance diluent [10 mL ampoule], 1 pack 45162011000036105 pamidronate disodium 60 mg injection, vial 21339011000036101 pamidronate disodium +808241000168104 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 100, bottle 184808 808231000168108 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 100 808171000168100 Perindopril Arginine (Apo) 2.5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 806601000168102 perindopril arginine 2.5 mg tablet, 100 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +1079101000168105 Atomoxetine (GPPL) 60 mg hard capsule, 7, blister pack 234849 1079091000168100 Atomoxetine (GPPL) 60 mg hard capsule, 7 1079081000168103 Atomoxetine (GPPL) 60 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1013841000168105 Aripiprazole (Generic Health) 10 mg uncoated tablet, 30, blister pack 176795 1013831000168101 Aripiprazole (Generic Health) 10 mg uncoated tablet, 30 1013821000168104 Aripiprazole (Generic Health) 10 mg uncoated tablet 1013811000168106 Aripiprazole (Generic Health) 1013811000168106 Aripiprazole (Generic Health) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1016811000168104 Aripiprazole (AU) 15 mg uncoated tablet, 30, blister pack 217187 1016801000168102 Aripiprazole (AU) 15 mg uncoated tablet, 30 1016791000168103 Aripiprazole (AU) 15 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +91421000036105 Victrelis 200 mg capsule, 336, blister pack 179059 89631000036109 Victrelis 200 mg capsule, 336 88361000036102 Victrelis 200 mg capsule 87651000036107 Victrelis 87651000036107 Victrelis 89641000036104 boceprevir 200 mg capsule, 336 88371000036105 boceprevir 200 mg capsule 91881000036109 boceprevir +79003011000036105 Momex SR 100 mg modified release tablet, 60, blister pack 132259 78811011000036105 Momex SR 100 mg modified release tablet, 60 78631011000036108 Momex SR 100 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 35168011000036109 morphine sulfate pentahydrate 100 mg modified release tablet, 60 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +898981000168102 Strensiq 28 mg/0.7 mL injection solution, 0.7 mL vial 266986 898971000168100 Strensiq 28 mg/0.7 mL injection solution, 0.7 mL vial 898951000168109 Strensiq 28 mg/0.7 mL injection solution, 0.7 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 898961000168106 asfotase alfa 28 mg/0.7 mL injection, 0.7 mL vial 898941000168107 asfotase alfa 28 mg/0.7 mL injection, vial 898041000168106 asfotase alfa +44255011000036100 Suprane 1 mL/mL inhalation solution, 240 mL, bottle 60909 41726011000036109 Suprane 1 mL/mL inhalation solution, 240 mL 40168011000036100 Suprane 1 mL/mL inhalation solution 39575011000036109 Suprane 39575011000036109 Suprane 46533011000036102 desflurane 1 mL/mL inhalation solution, 240 mL 45206011000036107 desflurane 1 mL/mL inhalation solution 44900011000036100 desflurane +79653011000036105 Doribax 500 mg powder for injection, 10 vials 148517 79485011000036104 Doribax 500 mg powder for injection, 10 vials 79370011000036106 Doribax 500 mg powder for injection, 500 mg vial 79336011000036106 Doribax 79336011000036106 Doribax 79816011000036102 doripenem 500 mg injection, 10 vials 79745011000036102 doripenem 500 mg injection, vial 79734011000036102 doripenem +97311000036104 Vaxigrip 2013 injection suspension, 1 x 0.5 mL syringe 80198 96921000036108 Vaxigrip 2013 injection suspension, 1 x 0.5 mL syringe 96431000036103 Vaxigrip 2013 injection suspension, 0.5 mL syringe 10151000168109 Vaxigrip 2013 10151000168109 Vaxigrip 2013 96721000036105 influenza trivalent adult vaccine 2013 injection, 1 x 0.5 mL syringe 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +69651011000036108 Nurofen 5% gel, 25 g, tube 79909 67450011000036108 Nurofen 5% gel, 25 g 65669011000036108 Nurofen 5% gel 5641000168109 Nurofen 5641000168109 Nurofen 71978011000036109 ibuprofen 5% gel, 25 g 70270011000036104 ibuprofen 5% gel 21885011000036105 ibuprofen +875671000168106 Bispro 1.25 mg film-coated tablet, 28, blister pack 130177 875661000168100 Bispro 1.25 mg film-coated tablet, 28 875611000168103 Bispro 1.25 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 46790011000036102 bisoprolol fumarate 1.25 mg tablet, 28 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +806871000168106 Perindopril Arginine (Chemmart) 10 mg film-coated tablet, 30, blister pack 184822 806861000168100 Perindopril Arginine (Chemmart) 10 mg film-coated tablet, 30 806821000168105 Perindopril Arginine (Chemmart) 10 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +95711000036109 Azithromycin (Chemmart) 500 mg film-coated tablet, 15, blister pack 195916 94611000036103 Azithromycin (Chemmart) 500 mg film-coated tablet, 15 93411000036104 Azithromycin (Chemmart) 500 mg film-coated tablet 93221000036105 Azithromycin (Chemmart) 93221000036105 Azithromycin (Chemmart) 927345011000036101 azithromycin 500 mg tablet, 15 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +890411000168102 Bansep 80 mg film-coated tablet, 28, bottle 173495 890401000168100 Bansep 80 mg film-coated tablet, 28 840951000168101 Bansep 80 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890391000168102 atorvastatin 80 mg tablet, 28 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +45391000036109 Latanocom eye drops solution, 2.5 mL, bottle 183346 43541000036105 Latanocom eye drops solution, 2.5 mL 40881000036105 Latanocom eye drops solution 40231000036107 Latanocom 40231000036107 Latanocom 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +979281000168104 Paracetamol (CA) 500 mg uncoated tablet, 8, blister pack 197677 979271000168102 Paracetamol (CA) 500 mg uncoated tablet, 8 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 63846011000036108 paracetamol 500 mg tablet, 8 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +694431000168108 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll, carton 694421000168105 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll 694401000168101 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape 45301000168108 Nexcare Gentle Paper First Aid Tape (789) 45301000168108 Nexcare Gentle Paper First Aid Tape (789) 694411000168103 tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll 694391000168103 tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape 50731011000036104 tape plaster adhesive hypoallergenic +925214011000036100 Panadol Cold and Flu plus Decongestant uncoated tablet, 20, blister pack 156874 924751011000036106 Panadol Cold and Flu plus Decongestant uncoated tablet, 20 924456011000036106 Panadol Cold and Flu plus Decongestant uncoated tablet 60501000168103 Panadol Cold and Flu plus Decongestant 60501000168103 Panadol Cold and Flu plus Decongestant 71490011000036102 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 20 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +69445011000036109 Glucose (Baxter) 25% (250 g/L) intravenous infusion injection, 12 x 1 L bags 48521 67245011000036101 Glucose (Baxter) 25% (250 g/L) intravenous infusion injection, 12 x 1 L bags 65573011000036105 Glucose (Baxter) 25% (250 g/L) intravenous infusion injection, 1 L bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71795011000036104 glucose 25% (250 g/L) injection, 12 x 1 L bags 70189011000036102 glucose 25% (250 g/L) injection, bag 21354011000036103 glucose +69288011000036105 Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 19502 67088011000036108 Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 65416011000036103 Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 4991000168105 Sodium Chloride 0.9% and Glucose 5% (Baxter) 4991000168105 Sodium Chloride 0.9% and Glucose 5% (Baxter) 71656011000036107 sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, 1 L bag 70111011000036103 sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, bag 21257011000036103 sodium chloride + glucose +20524011000036106 Nidem 80 mg uncoated tablet, 100, blister pack 79023 13723011000036108 Nidem 80 mg uncoated tablet, 100 7005011000036105 Nidem 80 mg uncoated tablet 3835011000036109 Nidem 3835011000036109 Nidem 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +766431000168109 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 6 x 0.8 mL syringes 67148 766421000168106 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 6 x 0.8 mL syringes 766361000168106 Fraxiparine Forte 15 200 anti-Xa units/0.8 mL injection solution, 0.8 mL syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766411000168104 nadroparin calcium 15 200 anti-Xa units/0.8 mL injection, 6 x 0.8 mL syringes 766351000168109 nadroparin calcium 15 200 anti-Xa units/0.8 mL injection, syringe 765071000168107 nadroparin +97221000036103 Fluarix 2013 injection suspension, 1 x 0.5 mL syringe 154660 96811000036109 Fluarix 2013 injection suspension, 1 x 0.5 mL syringe 96371000036108 Fluarix 2013 injection suspension, 0.5 mL syringe 36501000168108 Fluarix 2013 36501000168108 Fluarix 2013 96721000036105 influenza trivalent adult vaccine 2013 injection, 1 x 0.5 mL syringe 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +731951000168105 Lercanidipine (Blooms the Chemist) 20 mg film-coated tablet, 28, blister pack 163766 731941000168108 Lercanidipine (Blooms the Chemist) 20 mg film-coated tablet, 28 731931000168104 Lercanidipine (Blooms the Chemist) 20 mg film-coated tablet 731871000168106 Lercanidipine (Blooms the Chemist) 731871000168106 Lercanidipine (Blooms the Chemist) 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +118771000036103 Handygauze Cohesive (8633) 6 cm x 2 m bandage, 1, carton 118351000036109 Handygauze Cohesive (8633) 6 cm x 2 m bandage, 1 118181000036100 Handygauze Cohesive (8633) 6 cm x 2 m bandage 60001000168105 Handygauze Cohesive (8633) 60001000168105 Handygauze Cohesive (8633) 118361000036107 bandage retention cohesive light 6 cm x 2 m bandage, 1 118191000036103 bandage retention cohesive light 6 cm x 2 m bandage 50748011000036107 bandage retention cohesive light +1048801000168106 Zaldiar film-coated tablet, 2, blister pack 179677 1048791000168105 Zaldiar film-coated tablet, 2 1027821000168104 Zaldiar film-coated tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 1048781000168107 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 2 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +1107881000168100 Midazolam (Intas) 5 mg/mL injection solution, 1 mL ampoule 207233 1107861000168109 Midazolam (Intas) 5 mg/mL injection solution, 1 mL ampoule 1107841000168105 Midazolam (Intas) 5 mg/mL injection solution, ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 664011000168107 midazolam 5 mg/mL injection, 1 mL ampoule 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +841031000168100 Bansep 80 mg film-coated tablet, 30, blister pack 173492 841021000168103 Bansep 80 mg film-coated tablet, 30 840951000168101 Bansep 80 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +69082011000036101 Oilatum Plus bath oil, 150 mL, bottle 14540 66883011000036103 Oilatum Plus bath oil, 150 mL 65371011000036107 Oilatum Plus bath oil 65096011000036109 Oilatum Plus 65096011000036109 Oilatum Plus 71484011000036108 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil, 150 mL 70030011000036105 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +792071000168104 Co-Phenylcaine Forte nasal spray, 25 mL, pump pack 35208 792061000168105 Co-Phenylcaine Forte nasal spray, 25 mL 791921000168105 Co-Phenylcaine Forte nasal spray 9271000168101 Co-Phenylcaine Forte 9271000168101 Co-Phenylcaine Forte 792051000168108 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 25 mL 791911000168103 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray 74988011000036106 lidocaine (lignocaine) + phenylephrine +19827011000036103 Nucolox powder for oral liquid, 440 g, jar 63979 13078011000036100 Nucolox powder for oral liquid, 440 g 6362011000036101 Nucolox powder for oral liquid 4222011000036108 Nucolox 4222011000036108 Nucolox 27535011000036104 psyllium husk powder 375 mg/g + high amylose maize starch 375 mg/g powder for oral liquid, 440 g 22875011000036104 psyllium husk powder 375 mg/g + high amylose maize starch 375 mg/g powder for oral liquid 32635011000036106 psyllium husk powder + high amylose maize starch +771911000168107 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 179143 771901000168109 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 771521000168105 Drospirenone/Ethinyloestradiol (Lupin) (inert substance) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771911000168107 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 179143 771901000168109 Drospirenone/Ethinyloestradiol (Lupin) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 771511000168103 Drospirenone/Ethinyloestradiol (Lupin) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 771501000168101 Drospirenone/Ethinyloestradiol (Lupin) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +958081000168101 Ozvir 800 mg tablet, 35, blister pack 117382 958071000168104 Ozvir 800 mg tablet, 35 958061000168105 Ozvir 800 mg tablet 3956011000036107 Ozvir 3956011000036107 Ozvir 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +20923011000036101 Concerta 54 mg modified release tablet, 30, bottle 93864 14077011000036104 Concerta 54 mg modified release tablet, 30 7355011000036104 Concerta 54 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 28130011000036108 methylphenidate hydrochloride 54 mg modified release tablet, 30 23439011000036102 methylphenidate hydrochloride 54 mg modified release tablet 21277011000036101 methylphenidate +59743011000036101 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension, 100 mL, bottle 108772 55738011000036101 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension, 100 mL 53643011000036107 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension 7531000168107 Nurofen for Children Infant Drops 7531000168107 Nurofen for Children Infant Drops 63363011000036106 ibuprofen 40 mg/mL oral liquid, 100 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +866971000168102 Amitriptyline (AN) 25 mg tablet, 50, bottle 232119 863211000168107 Amitriptyline (AN) 25 mg tablet, 50 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +992281000168104 Bisoprolol (Apotex) 2.5 mg tablet, 56, blister pack 182126 992271000168102 Bisoprolol (Apotex) 2.5 mg tablet, 56 992121000168107 Bisoprolol (Apotex) 2.5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79205011000036104 bisoprolol fumarate 2.5 mg tablet, 56 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +682971000168106 Cisatracurium (AFT) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 191832 682961000168100 Cisatracurium (AFT) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 682951000168102 Cisatracurium (AFT) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 682941000168104 Cisatracurium (AFT) 682941000168104 Cisatracurium (AFT) 157601000036106 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL ampoules 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +77204011000036105 Zincaps 50 mg soft capsule, 100, bottle 131347 76620011000036108 Zincaps 50 mg soft capsule, 100 76066011000036109 Zincaps 50 mg soft capsule 75967011000036103 Zincaps 75967011000036103 Zincaps 78173011000036107 zinc (as sulfate monohydrate) 50 mg capsule, 100 77525011000036109 zinc (as sulfate monohydrate) 50 mg capsule 77481011000036107 zinc sulfate monohydrate +52753011000036108 Movalis 7.5 mg hard capsule, 20, blister pack 142228 52565011000036104 Movalis 7.5 mg hard capsule, 20 52420011000036105 Movalis 7.5 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 52888011000036108 meloxicam 7.5 mg capsule, 20 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +37641011000036107 Cervagem 1 mg pessary, 5, strip pack 27491 36907011000036105 Cervagem 1 mg pessary, 5 36239011000036107 Cervagem 1 mg pessary 35944011000036105 Cervagem 35944011000036105 Cervagem 38792011000036107 gemeprost 1 mg pessary, 5 38004011000036104 gemeprost 1 mg pessary 37710011000036103 gemeprost +1062891000168106 Strong Pain Relief (Amcal) uncoated tablet, 40, blister pack 226288 1062881000168108 Strong Pain Relief (Amcal) uncoated tablet, 40 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +20318011000036108 PV Carpine 4% eye drops solution, 15 mL, bottle 75896 13527011000036100 PV Carpine 4% eye drops solution, 15 mL 6810011000036103 PV Carpine 4% eye drops solution 3091011000036103 PV Carpine 3091011000036103 PV Carpine 27790011000036100 pilocarpine hydrochloride 4% eye drops, 15 mL 23120011000036106 pilocarpine hydrochloride 4% eye drops 21254011000036109 pilocarpine +61454011000036101 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 96, blister pack 90120 57379011000036106 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 96 54288011000036108 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61251011000036103 Nicotine (Amcal) 7 mg/24 hours patch, 7, sachet 77117 57187011000036103 Nicotine (Amcal) 7 mg/24 hours patch, 7 54229011000036107 Nicotine (Amcal) 7 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 27924011000036107 nicotine 7 mg/24 hours patch, 7 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +920795011000036103 Mitoxantrone (DBL) 20 mg/10 mL concentrated injection, 10 mL vial 82469 920474011000036103 Mitoxantrone (DBL) 20 mg/10 mL concentrated injection, 10 mL vial 920206011000036104 Mitoxantrone (DBL) 20 mg/10 mL concentrated injection, 10 mL vial 920096011000036108 Mitoxantrone (DBL) 920096011000036108 Mitoxantrone (DBL) 27985011000036103 mitozantrone 20 mg/10 mL injection, 10 mL vial 23309011000036101 mitozantrone 20 mg/10 mL injection, vial 21652011000036102 mitozantrone +959131000168107 Proquad (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 126157 959121000168109 Proquad (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 959031000168106 Proquad (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 958931000168103 Proquad 958931000168103 Proquad 959111000168102 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 959021000168108 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +959131000168107 Proquad (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 126157 959121000168109 Proquad (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 959101000168100 Proquad (inert substance) diluent, syringe 958931000168103 Proquad 958931000168103 Proquad 959111000168102 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +19994011000036105 Oxycontin 80 mg modified release tablet, 20, blister pack 200030 13232011000036107 Oxycontin 80 mg modified release tablet, 20 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +19994011000036105 Oxycontin 80 mg modified release tablet, 20, blister pack 68193 13232011000036107 Oxycontin 80 mg modified release tablet, 20 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +912001000168103 Cavstat 40 mg film-coated tablet, 50, blister pack 234508 911991000168100 Cavstat 40 mg film-coated tablet, 50 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911981000168103 rosuvastatin 40 mg tablet, 50 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1096321000168100 Freeway Forte Double Strength Anti-Inflammatory Throat Spray 0.3% oral spray, 15 mL, pump pack 286507 1096311000168107 Freeway Forte Double Strength Anti-Inflammatory Throat Spray 0.3% oral spray, 15 mL 1096301000168109 Freeway Forte Double Strength Anti-Inflammatory Throat Spray 0.3% oral spray 1096291000168108 Freeway Forte Double Strength Anti-Inflammatory Throat Spray 1096291000168108 Freeway Forte Double Strength Anti-Inflammatory Throat Spray 721321000168100 benzydamine hydrochloride 0.3% oral spray, 15 mL 721301000168109 benzydamine hydrochloride 0.3% oral spray 21819011000036105 benzydamine +44654011000036102 Ceftazidime (Sandoz) 2 g powder for injection, 5 vials 90916 42106011000036107 Ceftazidime (Sandoz) 2 g powder for injection, 5 vials 40353011000036106 Ceftazidime (Sandoz) 2 g powder for injection, 2 g vial 39747011000036102 Ceftazidime (Sandoz) 39747011000036102 Ceftazidime (Sandoz) 38651011000036102 ceftazidime 2 g injection, 5 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +1013911000168100 Valsartan (Apotex) 80 mg film-coated tablet, 14, blister pack 185858 1013901000168103 Valsartan (Apotex) 80 mg film-coated tablet, 14 1013871000168103 Valsartan (Apotex) 80 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63783011000036108 valsartan 80 mg tablet, 14 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +74341000036101 Diltiazem Hydrochloride (PS) 60 mg film-coated tablet, 90, blister pack 184100 71911000036104 Diltiazem Hydrochloride (PS) 60 mg film-coated tablet, 90 69551000036102 Diltiazem Hydrochloride (PS) 60 mg film-coated tablet 57361000168102 Diltiazem Hydrochloride (PS) 57361000168102 Diltiazem Hydrochloride (PS) 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +33585011000036100 Naloxone Min-I-Jet (CSL) 800 microgram/2 mL injection, 2 mL syringe 48534 33323011000036105 Naloxone Min-I-Jet (CSL) 800 microgram/2 mL injection, 2 mL syringe 33084011000036101 Naloxone Min-I-Jet (CSL) 800 microgram/2 mL injection, 2 mL syringe 32995011000036101 Naloxone Min-I-Jet (CSL) 32995011000036101 Naloxone Min-I-Jet (CSL) 33804011000036104 naloxone hydrochloride 800 microgram/2 mL injection, 2 mL syringe 33676011000036105 naloxone hydrochloride 800 microgram/2 mL injection, syringe 33627011000036107 naloxone +1011511000168108 Montelukast (Apo) 10 mg film-coated tablet, 14, bottle 170246 1011501000168105 Montelukast (Apo) 10 mg film-coated tablet, 14 158061000036100 Montelukast (Apo) 10 mg film-coated tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +774851000168102 Nexazole 40 mg enteric tablet, 15, blister pack 205824 774841000168104 Nexazole 40 mg enteric tablet, 15 774811000168103 Nexazole 40 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 681491000168109 esomeprazole 40 mg enteric tablet, 15 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +131941000036107 Fexorelief 120 mg film-coated tablet, 10, blister pack 233591 128211000036109 Fexorelief 120 mg film-coated tablet, 10 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +131941000036107 Fexorelief 120 mg film-coated tablet, 10, blister pack 186664 128211000036109 Fexorelief 120 mg film-coated tablet, 10 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +679601000168106 B-Dose IV injection solution, 6 x 2 mL vials 22429 679581000168102 B-Dose IV injection solution, 6 x 2 mL vials 679541000168107 B-Dose IV injection solution, 2 mL vial 679441000168106 B-Dose IV 679441000168106 B-Dose IV 679561000168106 thiamine hydrochloride 10 mg/2 mL + riboflavin sodium phosphate 5 mg/2 mL + nicotinamide 100 mg/2 mL + dexpanthenol 20 mg/2 mL + pyridoxine hydrochloride 50 mg/2 mL injection, 6 x 2 mL vials 679521000168101 thiamine hydrochloride 10 mg/2 mL + riboflavin sodium phosphate 5 mg/2 mL + nicotinamide 100 mg/2 mL + dexpanthenol 20 mg/2 mL + pyridoxine hydrochloride 50 mg/2 mL injection, vial 679501000168105 thiamine + riboflavin + nicotinamide + dexpanthenol + pyridoxine +933230791000036104 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 250, blister pack 172126 933224911000036100 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 250 933220411000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet 933219291000036105 Prochlorperazine Maleate (GH) 933219291000036105 Prochlorperazine Maleate (GH) 924172011000036105 prochlorperazine maleate 5 mg tablet, 250 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +1061841000168108 Ramipril (Auro) 10 mg hard capsule, 30, blister pack 203707 1061141000168101 Ramipril (Auro) 10 mg hard capsule, 30 1061131000168105 Ramipril (Auro) 10 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +37589011000036105 Norcuron 4 mg powder for injection, 10 ampoules 177718 36856011000036109 Norcuron 4 mg powder for injection, 10 ampoules 36196011000036106 Norcuron (vecuronium bromide 4 mg) powder for injection, 4 mg ampoule 35981011000036100 Norcuron 35981011000036100 Norcuron 38743011000036108 vecuronium bromide 4 mg injection, 10 ampoules 37970011000036100 vecuronium bromide 4 mg injection, ampoule 37741011000036100 vecuronium +1000781000168102 Olanzapine (Apotex) 5 mg film-coated tablet, 28, blister pack 158960 1000771000168100 Olanzapine (Apotex) 5 mg film-coated tablet, 28 1000761000168106 Olanzapine (Apotex) 5 mg film-coated tablet 1000751000168109 Olanzapine (Apotex) 1000751000168109 Olanzapine (Apotex) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +979361000168104 Paracetamol (CA) 500 mg uncoated tablet, 20, blister pack 197677 979351000168101 Paracetamol (CA) 500 mg uncoated tablet, 20 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1113321000168104 Quetiapine (CH) 200 mg film-coated tablet, 100, bottle 172856 1113311000168106 Quetiapine (CH) 200 mg film-coated tablet, 100 1113301000168108 Quetiapine (CH) 200 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 1075261000168102 quetiapine 200 mg tablet, 100 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +929653011000036101 Tinasil 250 mg uncoated tablet, 42, blister pack 104493 929483011000036106 Tinasil 250 mg uncoated tablet, 42 929390011000036107 Tinasil 250 mg uncoated tablet 929363011000036101 Tinasil 929363011000036101 Tinasil 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +78990011000036109 Bisoprolol Fumarate (Sandoz) 10 mg film-coated tablet, 28, blister pack 144888 78823011000036102 Bisoprolol Fumarate (Sandoz) 10 mg film-coated tablet, 28 78640011000036102 Bisoprolol Fumarate (Sandoz) 10 mg film-coated tablet 78616011000036109 Bisoprolol Fumarate (Sandoz) 78616011000036109 Bisoprolol Fumarate (Sandoz) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +44049011000036107 Buscopan 10 mg sugar coated tablet, 10, blister pack 48256 41536011000036106 Buscopan 10 mg sugar coated tablet, 10 40047011000036103 Buscopan 10 mg sugar coated tablet 2401000168103 Buscopan 2401000168103 Buscopan 46371011000036103 hyoscine butylbromide 10 mg tablet, 10 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +773761000168106 Duro-Tuss Chesty Cough Double Strength 8 mg/5 mL oral liquid solution, 200 mL, bottle 215996 773751000168109 Duro-Tuss Chesty Cough Double Strength 8 mg/5 mL oral liquid solution, 200 mL 773701000168105 Duro-Tuss Chesty Cough Double Strength 8 mg/5 mL oral liquid solution, 5 mL 773681000168107 Duro-Tuss Chesty Cough Double Strength 773681000168107 Duro-Tuss Chesty Cough Double Strength 63250011000036101 bromhexine hydrochloride 8 mg/5 mL oral liquid, 200 mL 61902011000036102 bromhexine hydrochloride 8 mg/5 mL oral liquid 61780011000036106 bromhexine +933230951000036105 Cold and Flu Day and Night Relief PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24, blister pack 162416 933225471000036101 Cold and Flu Day and Night Relief PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24 83684011000036104 Cold and Flu Day and Night Relief PE (Night) (Pharmacy Health) uncoated tablet 63991000168105 Cold and Flu Day and Night Relief PE (Pharmacy Health) 64121000168107 Cold and Flu Day and Night Relief PE (Night) (Pharmacy Health) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +933230951000036105 Cold and Flu Day and Night Relief PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24, blister pack 162416 933225471000036101 Cold and Flu Day and Night Relief PE (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24 83685011000036100 Cold and Flu Day and Night Relief PE (Day) (Pharmacy Health) uncoated tablet 63991000168105 Cold and Flu Day and Night Relief PE (Pharmacy Health) 64221000168103 Cold and Flu Day and Night Relief PE (Day) (Pharmacy Health) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +933230991000036101 Famciclovir (Apo) 500 mg film-coated tablet, 56, bottle 172445 933225061000036103 Famciclovir (Apo) 500 mg film-coated tablet, 56 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +936571000168107 Quinapril (GenRx) 5 mg film-coated tablet, 30, blister pack 133227 936561000168101 Quinapril (GenRx) 5 mg film-coated tablet, 30 936551000168103 Quinapril (GenRx) 5 mg film-coated tablet 936451000168104 Quinapril (GenRx) 936451000168104 Quinapril (GenRx) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +732041000168101 Cranberry 10 000+ (Bio-Organics) hard capsule, 150, bottle 91302 732031000168105 Cranberry 10 000+ (Bio-Organics) hard capsule, 150 731891000168107 Cranberry 10 000+ (Bio-Organics) hard capsule 731861000168100 Cranberry 10 000+ (Bio-Organics) 731861000168100 Cranberry 10 000+ (Bio-Organics) 732021000168107 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule, 150 731881000168109 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule 77453011000036101 cranberry + ascorbic acid +20756011000036103 Strattera 40 mg hard capsule, 28, blister pack 90595 13925011000036100 Strattera 40 mg hard capsule, 28 7213011000036102 Strattera 40 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +958001000168109 Clarithro 500 mg film-coated tablet, 100, bottle 117204 957971000168101 Clarithro 500 mg film-coated tablet, 100 957941000168108 Clarithro 500 mg film-coated tablet 4200011000036100 Clarithro 4200011000036100 Clarithro 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +31001000036102 Allerdyne 10 mg uncoated tablet, 10, blister pack 176345 28761000036105 Allerdyne 10 mg uncoated tablet, 10 26941000036107 Allerdyne 10 mg uncoated tablet 26281000036107 Allerdyne 26281000036107 Allerdyne 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +933230831000036107 Daivobet 50/500 gel, 30 g, bottle 161936 933225361000036100 Daivobet 50/500 gel, 30 g 933220011000036109 Daivobet 50/500 gel 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 933225381000036105 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% gel, 30 g 933220021000036102 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% gel 44974011000036100 calcipotriol + betamethasone dipropionate +866991000168101 Amitriptyline (AN) 25 mg tablet, 250, bottle 232119 866981000168104 Amitriptyline (AN) 25 mg tablet, 250 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 863131000168107 amitriptyline hydrochloride 25 mg tablet, 250 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +749201000168100 Tacrolimus (AN) 1 mg hard capsule, 50, blister pack 224267 749191000168103 Tacrolimus (AN) 1 mg hard capsule, 50 749161000168105 Tacrolimus (AN) 1 mg hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 749101000168109 tacrolimus 1 mg capsule, 50 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +19621011000036103 Zithromax 500 mg film-coated tablet, 3, blister pack 58797 12890011000036102 Zithromax 500 mg film-coated tablet, 3 6180011000036105 Zithromax 500 mg film-coated tablet 3528011000036100 Zithromax 3528011000036100 Zithromax 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +20478011000036109 Piroxicam (GenRx) 10 mg dispersible tablet, 50, blister pack 78363 13678011000036106 Piroxicam (GenRx) 10 mg dispersible tablet, 50 6961011000036104 Piroxicam (GenRx) 10 mg dispersible tablet 3472011000036107 Piroxicam (GenRx) 3472011000036107 Piroxicam (GenRx) 27881011000036106 piroxicam 10 mg dispersible tablet, 50 23209011000036106 piroxicam 10 mg dispersible tablet 21531011000036103 piroxicam +779141000168105 Clinoleic 20% injection emulsion, 350 mL bag 97537 779131000168101 Clinoleic 20% injection emulsion, 350 mL bag 779111000168106 Clinoleic 20% injection emulsion, 350 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 779121000168104 olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 350 mL bag 779101000168108 olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, bag 926971011000036108 olive oil + soya oil +1117511000168107 Donepezil (GH) 10 mg film-coated tablet, 30, blister pack 193667 1117501000168109 Donepezil (GH) 10 mg film-coated tablet, 30 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200891000036104 donepezil hydrochloride 10 mg tablet, 30 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +52171011000036100 Kaolin and Opium Mixture APF (extemporaneous) with Chloroform Water oral liquid solution, 200 mL, dispensing bottle 52070011000036101 Kaolin and Opium Mixture APF (extemporaneous) with Chloroform Water oral liquid solution, 200 mL 51971011000036103 Kaolin and Opium Mixture APF (extemporaneous) with Chloroform Water oral liquid solution 51942011000036105 Kaolin and Opium Mixture APF (extemporaneous) 51942011000036105 Kaolin and Opium Mixture APF (extemporaneous) 52318011000036107 light kaolin 250 mg/mL + opium tincture 0.05 mL/mL oral liquid, 200 mL 52250011000036108 light kaolin 250 mg/mL + opium tincture 0.05 mL/mL oral liquid 52235011000036103 light kaolin + opium tincture +1045831000168107 Atorvastatin (Pharmacor) 20 mg film-coated tablet, 30, blister pack 198851 1045821000168109 Atorvastatin (Pharmacor) 20 mg film-coated tablet, 30 1045811000168102 Atorvastatin (Pharmacor) 20 mg film-coated tablet 1045731000168100 Atorvastatin (Pharmacor) 1045731000168100 Atorvastatin (Pharmacor) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +783351000168103 Palexia IR 75 mg film-coated tablet, 60, blister pack 165317 783341000168100 Palexia IR 75 mg film-coated tablet, 60 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783331000168109 tapentadol 75 mg tablet, 60 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +61101011000036106 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet, 20, blister pack 71661 57044011000036108 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet, 20 54172011000036104 Diarrhoea Relief (Soul Pattinson) 2.15 mg uncoated tablet 53600011000036105 Diarrhoea Relief (Soul Pattinson) 53600011000036105 Diarrhoea Relief (Soul Pattinson) 63806011000036101 loperamide hydrochloride 2.15 mg tablet, 20 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +796321000168103 Quetiapine (Accord) 100 mg film-coated tablet, 90, blister pack 203592 796311000168105 Quetiapine (Accord) 100 mg film-coated tablet, 90 796281000168108 Quetiapine (Accord) 100 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +884151000168101 Bosentan (Accord) 125 mg film-coated tablet, 60, bottle 235883 884141000168103 Bosentan (Accord) 125 mg film-coated tablet, 60 884051000168100 Bosentan (Accord) 125 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +17835011000036104 Perindopril Erbumine (Chemmart) 8 mg uncoated tablet, 30, blister pack 121630 11677011000036104 Perindopril Erbumine (Chemmart) 8 mg uncoated tablet, 30 5819011000036106 Perindopril Erbumine (Chemmart) 8 mg uncoated tablet 3709011000036104 Perindopril Erbumine (Chemmart) 3709011000036104 Perindopril Erbumine (Chemmart) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +849951000168108 Vzole 200 mg film-coated tablet, 56, blister pack 238242 849941000168106 Vzole 200 mg film-coated tablet, 56 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +37543011000036103 Amlodipine (Generic Health) 10 mg uncoated tablet, 30, blister pack 140140 36811011000036107 Amlodipine (Generic Health) 10 mg uncoated tablet, 30 36041011000036101 Amlodipine (Generic Health) 10 mg uncoated tablet 35947011000036104 Amlodipine (Generic Health) 35947011000036104 Amlodipine (Generic Health) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +37543011000036103 Amlodipine (Generic Health) 10 mg uncoated tablet, 30, blister pack 225375 36811011000036107 Amlodipine (Generic Health) 10 mg uncoated tablet, 30 36041011000036101 Amlodipine (Generic Health) 10 mg uncoated tablet 35947011000036104 Amlodipine (Generic Health) 35947011000036104 Amlodipine (Generic Health) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +1113181000168102 Ibuprofen plus Paracetamol (Apohealth) film-coated tablet, 12, blister pack 277635 1113171000168100 Ibuprofen plus Paracetamol (Apohealth) film-coated tablet, 12 1113161000168106 Ibuprofen plus Paracetamol (Apohealth) film-coated tablet 1113151000168109 Ibuprofen plus Paracetamol (Apohealth) 1113151000168109 Ibuprofen plus Paracetamol (Apohealth) 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +975081000168108 Coversyl Plus LD 2/0.625 uncoated tablet, 10, blister pack 116473 975071000168105 Coversyl Plus LD 2/0.625 uncoated tablet, 10 975051000168101 Coversyl Plus LD 2/0.625 uncoated tablet 975041000168103 Coversyl Plus LD 2/0.625 975041000168103 Coversyl Plus LD 2/0.625 975061000168104 perindopril erbumine 2 mg + indapamide hemihydrate 625 microgram tablet, 10 923731000168109 perindopril erbumine 2 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +43686011000036102 Tygacil 50 mg powder for injection, 10 vials 116321 41169011000036101 Tygacil 50 mg powder for injection, 10 vials 39880011000036107 Tygacil 50 mg powder for injection, 50 mg vial 39733011000036105 Tygacil 39733011000036105 Tygacil 46136011000036100 tigecycline 50 mg injection, 10 vials 45005011000036107 tigecycline 50 mg injection, vial 44964011000036106 tigecycline +43686011000036102 Tygacil 50 mg powder for injection, 10 vials 147450 41169011000036101 Tygacil 50 mg powder for injection, 10 vials 39880011000036107 Tygacil 50 mg powder for injection, 50 mg vial 39733011000036105 Tygacil 39733011000036105 Tygacil 46136011000036100 tigecycline 50 mg injection, 10 vials 45005011000036107 tigecycline 50 mg injection, vial 44964011000036106 tigecycline +970911000168108 Lypralin 300 mg hard capsule, 200, bottle 235848 970901000168105 Lypralin 300 mg hard capsule, 200 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970891000168106 pregabalin 300 mg capsule, 200 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +86134011000036101 Galvus 50 mg uncoated tablet, 60, blister pack 159561 85742011000036103 Galvus 50 mg uncoated tablet, 60 85369011000036100 Galvus 50 mg uncoated tablet 85259011000036102 Galvus 85259011000036102 Galvus 86446011000036107 vildagliptin 50 mg tablet, 60 86227011000036107 vildagliptin 50 mg tablet 86202011000036103 vildagliptin +923834011000036109 Prochlorperazine Maleate (Apo) 5 mg tablet, 14, blister pack 158416 923380011000036109 Prochlorperazine Maleate (Apo) 5 mg tablet, 14 923050011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet 4811000168107 Prochlorperazine Maleate (Apo) 4811000168107 Prochlorperazine Maleate (Apo) 924171011000036104 prochlorperazine maleate 5 mg tablet, 14 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +19719011000036103 Cipramil 20 mg film-coated tablet, 28, blister pack 61164 12975011000036109 Cipramil 20 mg film-coated tablet, 28 6264011000036100 Cipramil 20 mg film-coated tablet 4169011000036109 Cipramil 4169011000036109 Cipramil 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +727681000168102 Vytorin 10/40 uncoated tablet, 10, blister pack 98115 727671000168100 Vytorin 10/40 uncoated tablet, 10 7544011000036104 Vytorin 10/40 uncoated tablet 44141000168106 Vytorin 10/40 44141000168106 Vytorin 10/40 727661000168106 ezetimibe 10 mg + simvastatin 40 mg tablet, 10 23567011000036109 ezetimibe 10 mg + simvastatin 40 mg tablet 21565011000036108 ezetimibe + simvastatin +778141000168103 Oxycodone MR (Apo) 40 mg modified release tablet, 100, bottle 160097 778131000168107 Oxycodone MR (Apo) 40 mg modified release tablet, 100 777931000168109 Oxycodone MR (Apo) 40 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 778121000168109 oxycodone hydrochloride 40 mg modified release tablet, 100 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +20962011000036102 Clopine 50 mg tablet, 100, blister pack 95557 14117011000036102 Clopine 50 mg tablet, 100 7394011000036108 Clopine 50 mg tablet 3146011000036108 Clopine 3146011000036108 Clopine 28161011000036109 clozapine 50 mg tablet, 100 23470011000036106 clozapine 50 mg tablet 21222011000036104 clozapine +675341000168102 Celecoxib (Apo) 200 mg hard capsule, 30, blister pack 226146 675331000168106 Celecoxib (Apo) 200 mg hard capsule, 30 675321000168108 Celecoxib (Apo) 200 mg hard capsule 675281000168103 Celecoxib (Apo) 675281000168103 Celecoxib (Apo) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +812301000168108 Iptam 100 mg film-coated tablet, 12, blister pack 124087 812291000168107 Iptam 100 mg film-coated tablet, 12 812131000168103 Iptam 100 mg film-coated tablet 690681000168104 Iptam 690681000168104 Iptam 46114011000036103 sumatriptan 100 mg tablet, 12 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +1071431000168106 Quepine XR 200 mg modified release tablet, 60, blister pack 199872 1071421000168108 Quepine XR 200 mg modified release tablet, 60 1071411000168101 Quepine XR 200 mg modified release tablet 852351000168101 Quepine XR 852351000168101 Quepine XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +18198011000036103 Serenace 5 mg uncoated tablet, 50, bottle 10262 11261011000036100 Serenace 5 mg uncoated tablet, 50 5001011000036109 Serenace 5 mg uncoated tablet 3608011000036103 Serenace 3608011000036103 Serenace 26577011000036106 haloperidol 5 mg tablet, 50 21985011000036100 haloperidol 5 mg tablet 21443011000036108 haloperidol +19120011000036109 Elocon 0.1% cream, 15 g, tube 43342 12423011000036107 Elocon 0.1% cream, 15 g 4813011000036100 Elocon 0.1% cream 4301011000036100 Elocon 4301011000036100 Elocon 27412011000036106 mometasone furoate 0.1% cream, 15 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +18215011000036106 Ialex 250 mg hard capsule, 20, blister pack 100143 11136011000036101 Ialex 250 mg hard capsule, 20 5825011000036103 Ialex 250 mg hard capsule 3841011000036108 Ialex 3841011000036108 Ialex 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +855571000168105 Algerika 300 mg hard capsule, 21, blister pack 229605 855561000168104 Algerika 300 mg hard capsule, 21 855511000168102 Algerika 300 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855551000168101 pregabalin 300 mg capsule, 21 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +727381000168108 Caduet 5/40 film-coated tablet, 10, blister pack 100697 727371000168105 Caduet 5/40 film-coated tablet, 10 5895011000036105 Caduet 5/40 film-coated tablet 64171000168108 Caduet 5/40 64171000168108 Caduet 5/40 727361000168104 amlodipine 5 mg + atorvastatin 40 mg tablet, 10 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +77413011000036106 Multivitamin and Minerals (Cenovis) film-coated tablet, 200, bottle 90801 76829011000036108 Multivitamin and Minerals (Cenovis) film-coated tablet, 200 76196011000036103 Multivitamin and Minerals (Cenovis) film-coated tablet 76005011000036103 Multivitamin and Minerals (Cenovis) 76005011000036103 Multivitamin and Minerals (Cenovis) 78333011000036103 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 75 mg + calcium (as hydrogen phosphate dihydrate) 10 mg (phosphorus 7.7 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 2 microgram + iron (as ferrous fumarate) 5 mg + iodine 145 microgram + magnesium (as oxide) 36 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 25 mg + calcium pantothenate 8 mg + potassium (as sulfate) 5 mg + pyridoxine hydrochloride 2 mg + retinol acetate 430 microgram (1250 units) + riboflavin 10 mg + thiamine nitrate 10 mg + zinc (as oxide) 1.5 mg tablet, 200 77611011000036107 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 75 mg + calcium (as hydrogen phosphate dihydrate) 10 mg (phosphorus 7.7 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 2 microgram + iron (as ferrous fumarate) 5 mg + iodine 145 microgram + magnesium (as oxide) 36 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 25 mg + calcium pantothenate 8 mg + potassium (as sulfate) 5 mg + pyridoxine hydrochloride 2 mg + retinol acetate 430 microgram (1250 units) + riboflavin 10 mg + thiamine nitrate 10 mg + zinc (as oxide) 1.5 mg tablet 77471011000036104 dl-alpha-tocopherol + ascorbic acid + calcium hydrogen phosphate dihydrate + colecalciferol + cupric sulfate + cyanocobalamin + ferrous fumarate + iodine + magnesium oxide + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + potassium sulfate + pyridoxine + retinol acetate + riboflavin + thiamine + zinc oxide +842721000168106 Dytrex 30 mg enteric capsule, 28, blister pack 199262 842711000168104 Dytrex 30 mg enteric capsule, 28 842701000168102 Dytrex 30 mg enteric capsule 842661000168109 Dytrex 842661000168109 Dytrex 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +20134011000036100 Zyprexa Zydis 10 mg wafer, 28, blister pack 73389 13358011000036103 Zyprexa Zydis 10 mg wafer, 28 6643011000036105 Zyprexa Zydis 10 mg wafer 15881000168103 Zyprexa Zydis 15881000168103 Zyprexa Zydis 27714011000036109 olanzapine 10 mg wafer, 28 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +884471000168100 Bosentan (Sun) 62.5 mg film-coated tablet, 60, bottle 257760 884431000168103 Bosentan (Sun) 62.5 mg film-coated tablet, 60 884401000168105 Bosentan (Sun) 62.5 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +658261000168104 Ramipril (CH) 10 mg hard capsule, 30, blister pack 153847 658251000168101 Ramipril (CH) 10 mg hard capsule, 30 658241000168103 Ramipril (CH) 10 mg hard capsule 658221000168109 Ramipril (CH) 658221000168109 Ramipril (CH) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +50427011000036101 Tubigrip Long Stocking (1479) small B/C size bandage, 1, carton 49325011000036107 Tubigrip Long Stocking (1479) small B/C size bandage, 1 48722011000036102 Tubigrip Long Stocking (1479) small B/C size bandage 25321000168102 Tubigrip Long Stocking (1479) 25321000168102 Tubigrip Long Stocking (1479) 51306011000036106 bandage tubular short stocking small B/C size bandage, 1 50835011000036100 bandage tubular short stocking small B/C size bandage 50724011000036103 bandage tubular short stocking +1037151000168104 Voltaren Osteo 1.16% gel, 150 g, tube 175889 1037141000168101 Voltaren Osteo 1.16% gel, 150 g 1037091000168108 Voltaren Osteo 1.16% gel 43041000168109 Voltaren Osteo 43041000168109 Voltaren Osteo 1037131000168105 diclofenac diethylamine 1.16% gel, 150 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +985221000168105 Zyvox 200 mg/100 mL injection solution, 100 mL bag 79688 985211000168103 Zyvox 200 mg/100 mL injection solution, 100 mL bag 985191000168104 Zyvox 200 mg/100 mL injection solution, 100 mL bag 39746011000036100 Zyvox 39746011000036100 Zyvox 985201000168101 linezolid 200 mg/100 mL injection, 100 mL bag 985181000168102 linezolid 200 mg/100 mL injection, bag 44888011000036109 linezolid +61038011000036104 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution, 500 mL, bottle 67301 56981011000036109 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution, 500 mL 54146011000036104 Dry Tickly Cough Medicine (Pharmacist) 1 mg/mL oral liquid solution 34191000168104 Dry Tickly Cough Medicine (Pharmacist) 34191000168104 Dry Tickly Cough Medicine (Pharmacist) 63801011000036106 pholcodine 1 mg/mL oral liquid, 500 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +926738011000036106 Lisinopril (GA) 2.5 mg uncoated tablet, 14, blister pack 106498 926084011000036108 Lisinopril (GA) 2.5 mg uncoated tablet, 14 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927299011000036102 lisinopril 2.5 mg tablet, 14 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +43813011000036103 Fluconazole (Hexal) 50 mg hard capsule, 28, bottle 104287 11284011000036104 Fluconazole (Hexal) 50 mg hard capsule, 28 4930011000036106 Fluconazole (Hexal) 50 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +1040031000168107 Atorvastatin (Ascent) 20 mg film-coated tablet, 20, blister pack 178544 1040021000168109 Atorvastatin (Ascent) 20 mg film-coated tablet, 20 1039991000168103 Atorvastatin (Ascent) 20 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841371000168104 atorvastatin 20 mg tablet, 20 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +81145011000036103 Doryx 100 mg modified release capsule, 21, bottle 30100 12295011000036102 Doryx 100 mg modified release capsule, 21 4456011000036107 Doryx 100 mg modified release capsule 4100011000036102 Doryx 4100011000036102 Doryx 27259011000036108 doxycycline 100 mg modified release capsule, 21 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +677031000168102 Raloxifene Hydrochloride (Apo) 60 mg film-coated tablet, 28, blister pack 184797 677001000168109 Raloxifene Hydrochloride (Apo) 60 mg film-coated tablet, 28 676981000168100 Raloxifene Hydrochloride (Apo) 60 mg film-coated tablet 676961000168109 Raloxifene Hydrochloride (Apo) 676961000168109 Raloxifene Hydrochloride (Apo) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +18532011000036103 Cisplatin (Ebewe) 100 mg/100 mL concentrated injection, 100 mL vial 106461 11334011000036103 Cisplatin (Ebewe) 100 mg/100 mL concentrated injection, 100 mL vial 5660011000036109 Cisplatin (Ebewe) 100 mg/100 mL concentrated injection, 100 mL vial 3414011000036105 Cisplatin (Ebewe) 3414011000036105 Cisplatin (Ebewe) 27166011000036105 cisplatin 100 mg/100 mL injection, 100 mL vial 22528011000036105 cisplatin 100 mg/100 mL injection, vial 21771011000036102 cisplatin +19604011000036106 Roferon-A 6 million units/0.5 mL injection solution, 0.5 mL syringe 58596 12874011000036104 Roferon-A 6 million units/0.5 mL injection solution, 0.5 mL syringe 6165011000036104 Roferon-A 6 million units/0.5 mL injection solution, 0.5 mL syringe 3169011000036106 Roferon-A 3169011000036106 Roferon-A 27409011000036103 interferon alfa-2a 6 million units/0.5 mL injection, 0.5 mL syringe 22757011000036109 interferon alfa-2a 6 million units/0.5 mL injection, syringe 21592011000036102 interferon alfa-2a +1045671000168106 Noxicid Tabs Heartburn Relief 20 mg enteric tablet, 7, blister pack 252680 1045661000168100 Noxicid Tabs Heartburn Relief 20 mg enteric tablet, 7 1045651000168102 Noxicid Tabs Heartburn Relief 20 mg enteric tablet 1045641000168104 Noxicid Tabs Heartburn Relief 1045641000168104 Noxicid Tabs Heartburn Relief 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +86101011000036106 Lisinopril (GA) 10 mg uncoated tablet, 30, blister pack 106501 85616011000036102 Lisinopril (GA) 10 mg uncoated tablet, 30 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +37602011000036105 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack 19243 36869011000036105 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent vial), 1 pack 36204011000036103 Bicnu (carmustine 100 mg) powder for injection, vial 47991000168108 Bicnu 47991000168108 Bicnu 38756011000036100 carmustine 100 mg injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 37976011000036102 carmustine 100 mg injection, vial 21824011000036101 carmustine +37602011000036105 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack 19243 36869011000036105 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent vial), 1 pack 646601000168103 Bicnu (inert substance) diluent, 3 mL vial 47991000168108 Bicnu 47991000168108 Bicnu 38756011000036100 carmustine 100 mg injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 631981000168109 inert substance diluent, 3 mL vial 21220011000036103 inert substance +749041000168107 Cisatracurium (Accord) 50 mg/25 mL injection solution, 25 mL vial 222410 749031000168103 Cisatracurium (Accord) 50 mg/25 mL injection solution, 25 mL vial 749011000168108 Cisatracurium (Accord) 50 mg/25 mL injection solution, 25 mL vial 747971000168108 Cisatracurium (Accord) 747971000168108 Cisatracurium (Accord) 749021000168101 cisatracurium 50 mg/25 mL injection, 25 mL vial 749001000168105 cisatracurium 50 mg/25 mL injection, vial 44902011000036101 cisatracurium +980881000168103 Favint 18 microgram powder for inhalation, 300 capsules, blister pack 98765 980871000168101 Favint 18 microgram powder for inhalation, 300 capsules 980711000168101 Favint 18 microgram powder for inhalation, 1 capsule 980671000168100 Favint 980671000168100 Favint 980861000168107 tiotropium 18 microgram powder for inhalation, 300 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +1086091000168102 Monofer 200 mg/2 mL injection solution, 10 x 2 mL vials 290832 1086081000168100 Monofer 200 mg/2 mL injection solution, 10 x 2 mL vials 1086031000168101 Monofer 200 mg/2 mL injection solution, 2 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1086071000168103 iron (as ferric derisomaltose) 200 mg/2 mL injection, 10 x 2 mL vials 1086021000168104 iron (as ferric derisomaltose) 200 mg/2 mL injection, vial 1085791000168105 ferric derisomaltose +43673011000036103 Procur 50 mg uncoated tablet, 20, bottle 101531 11211011000036104 Procur 50 mg uncoated tablet, 20 5040011000036108 Procur 50 mg uncoated tablet 4023011000036105 Procur 4023011000036105 Procur 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +68850011000036108 QV Cream, 15 g, tube 10629 66523011000036108 QV Cream, 15 g 65500011000036107 QV Cream 65191011000036105 QV Cream 65191011000036105 QV Cream 71255011000036102 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream, 15 g 69959011000036106 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream 69769011000036106 glycerol + light liquid paraffin + white soft paraffin +1087461000168103 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 4, blister pack 283196 1087451000168100 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 4 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087441000168102 ibuprofen 400 mg tablet, 4 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1026961000168104 Pregabalin (Amneal) 300 mg hard capsule, 60, blister pack 235840 1026951000168101 Pregabalin (Amneal) 300 mg hard capsule, 60 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +919071000168101 Temolide 140 mg hard capsule, 5, bottle 192695 919061000168107 Temolide 140 mg hard capsule, 5 919051000168105 Temolide 140 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +60738011000036109 Panadol Cold and Flu film-coated tablet, 48, blister pack 49566 56696011000036102 Panadol Cold and Flu film-coated tablet, 48 54037011000036107 Panadol Cold and Flu film-coated tablet 3791000168106 Panadol Cold and Flu 3791000168106 Panadol Cold and Flu 63514011000036107 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet, 48 62103011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +60554011000036102 Polaramine colour free 2 mg uncoated tablet, 100, blister pack 154653 56512011000036105 Polaramine colour free 2 mg uncoated tablet, 100 53948011000036101 Polaramine colour free 2 mg uncoated tablet 9101000168102 Polaramine 9101000168102 Polaramine 63389011000036107 dexchlorpheniramine maleate 2 mg tablet, 100 61949011000036101 dexchlorpheniramine maleate 2 mg tablet 61749011000036105 dexchlorpheniramine +760581000168107 Sildenafil (DRLA) 50 mg film-coated tablet, 12, blister pack 186293 760571000168109 Sildenafil (DRLA) 50 mg film-coated tablet, 12 760471000168105 Sildenafil (DRLA) 50 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760561000168103 sildenafil 50 mg tablet, 12 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +60087011000036100 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 10, blister pack 126538 56048011000036102 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 10 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +86896011000036107 Gastro-Stop 2 mg hard capsule, 20, blister pack 48935 86778011000036103 Gastro-Stop 2 mg hard capsule, 20 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 87019011000036104 loperamide hydrochloride 2 mg capsule, 20 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +86896011000036107 Gastro-Stop 2 mg hard capsule, 20, blister pack 264972 86778011000036103 Gastro-Stop 2 mg hard capsule, 20 5715011000036106 Gastro-Stop 2 mg hard capsule 3292011000036101 Gastro-Stop 3292011000036101 Gastro-Stop 87019011000036104 loperamide hydrochloride 2 mg capsule, 20 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +723111000168108 Mycophenolate (AN) 500 mg film-coated tablet, 50, blister pack 164416 723101000168105 Mycophenolate (AN) 500 mg film-coated tablet, 50 723091000168100 Mycophenolate (AN) 500 mg film-coated tablet 723081000168103 Mycophenolate (AN) 723081000168103 Mycophenolate (AN) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +35666011000036109 Theratears Liquid 1% eye gel, 28 x 0.6 mL unit doses, ampoule 35571011000036104 Theratears Liquid 1% eye gel, 28 x 0.6 mL unit doses 35472011000036100 Theratears Liquid 1% eye gel, 0.6 mL unit dose 35421011000036107 Theratears Liquid 35421011000036107 Theratears Liquid 35768011000036101 carmellose sodium 1% eye gel, 28 x 0.6 mL unit doses 35709011000036108 carmellose sodium 1% eye gel, unit dose 35688011000036105 carmellose sodium +19166011000036103 Noten 50 mg uncoated tablet, 30, bottle 46251 12464011000036102 Noten 50 mg uncoated tablet, 30 4724011000036109 Noten 50 mg uncoated tablet 4422011000036109 Noten 4422011000036109 Noten 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +45551000036107 Enalapril Maleate (PS) 20 mg uncoated tablet, 30, blister pack 188554 43681000036100 Enalapril Maleate (PS) 20 mg uncoated tablet, 30 40741000036109 Enalapril Maleate (PS) 20 mg uncoated tablet 40281000036106 Enalapril Maleate (PS) 40281000036106 Enalapril Maleate (PS) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +17852011000036108 Sertraline (Chemmart) 100 mg film-coated tablet, 30, blister pack 101487 11207011000036109 Sertraline (Chemmart) 100 mg film-coated tablet, 30 5136011000036101 Sertraline (Chemmart) 100 mg film-coated tablet 3903011000036109 Sertraline (Chemmart) 3903011000036109 Sertraline (Chemmart) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +17852011000036108 Sertraline (Chemmart) 100 mg film-coated tablet, 30, blister pack 213181 11207011000036109 Sertraline (Chemmart) 100 mg film-coated tablet, 30 5136011000036101 Sertraline (Chemmart) 100 mg film-coated tablet 3903011000036109 Sertraline (Chemmart) 3903011000036109 Sertraline (Chemmart) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +34835011000036109 Concerta 36 mg modified release tablet, 60, bottle 93863 34410011000036100 Concerta 36 mg modified release tablet, 60 7354011000036103 Concerta 36 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35249011000036105 methylphenidate hydrochloride 36 mg modified release tablet, 60 23438011000036105 methylphenidate hydrochloride 36 mg modified release tablet 21277011000036101 methylphenidate +666941000168101 Tramadol Hydrochloride SR (AN) 200 mg modified release tablet, 20, blister pack 190053 666931000168105 Tramadol Hydrochloride SR (AN) 200 mg modified release tablet, 20 666921000168107 Tramadol Hydrochloride SR (AN) 200 mg modified release tablet 666851000168107 Tramadol Hydrochloride SR (AN) 666851000168107 Tramadol Hydrochloride SR (AN) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +91601000036102 Cold and Flu Relief PE Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24, blister pack 192616 90071000036109 Cold and Flu Relief PE Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24 88041000036101 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Action) uncoated tablet 9081000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) 9201000168106 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Action) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +91601000036102 Cold and Flu Relief PE Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24, blister pack 192616 90071000036109 Cold and Flu Relief PE Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24 87981000036107 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Action) uncoated tablet 9081000168109 Cold and Flu Relief PE Day and Night (Pharmacy Action) 9321000168108 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Action) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1048641000168107 Lamotrigine (Sandoz) Dispersible 25 mg uncoated tablet, 56, blister pack 291469 1048631000168103 Lamotrigine (Sandoz) Dispersible 25 mg uncoated tablet, 56 1048621000168101 Lamotrigine (Sandoz) Dispersible 25 mg uncoated tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +1014071000168106 Aripiprazole (AN) 2 mg uncoated tablet, 100, bottle 198183 1014061000168100 Aripiprazole (AN) 2 mg uncoated tablet, 100 977531000168108 Aripiprazole (AN) 2 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 1014051000168102 aripiprazole 2 mg tablet, 100 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +926755011000036101 Sertracor 50 mg film-coated tablet, 30, blister pack 147077 926154011000036105 Sertracor 50 mg film-coated tablet, 30 925642011000036104 Sertracor 50 mg film-coated tablet 925581011000036109 Sertracor 925581011000036109 Sertracor 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +792211000168101 Profeme-10 10% (100 mg/mL) cream, 50 mL, tube 95335 792201000168104 Profeme-10 10% (100 mg/mL) cream, 50 mL 792181000168100 Profeme-10 10% (100 mg/mL) cream 792111000168106 Profeme-10 792111000168106 Profeme-10 792191000168102 progesterone 10% (100 mg/mL) cream, 50 mL 792171000168103 progesterone 10% (100 mg/mL) cream 21412011000036108 progesterone +913211000168101 Amoklavin Duo 400/57 powder for oral liquid, 60 mL, bottle 216347 913201000168104 Amoklavin Duo 400/57 powder for oral liquid, 60 mL 913191000168102 Amoklavin Duo 400/57 powder for oral liquid, 5 mL 913181000168100 Amoklavin Duo 400/57 913181000168100 Amoklavin Duo 400/57 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +68666011000036109 Fybogel regular 3.5 g powder for oral liquid, 1 sachet 106707 66549011000036109 Fybogel regular 3.5 g powder for oral liquid, 1 sachet 5784011000036109 Fybogel regular 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 71279011000036102 dry psyllium husk 3.5 g powder for oral liquid, 1 sachet 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +949221000168102 Risperidone (WT) 3 mg film-coated tablet, 60, bottle 127908 949211000168109 Risperidone (WT) 3 mg film-coated tablet, 60 949201000168106 Risperidone (WT) 3 mg film-coated tablet 948981000168104 Risperidone (WT) 948981000168104 Risperidone (WT) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +931727011000036109 Phenobarbitone (Aspen) 30 mg uncoated tablet, 200, bottle 19758 930887011000036108 Phenobarbitone (Aspen) 30 mg uncoated tablet, 200 930091011000036102 Phenobarbitone (Aspen) 30 mg uncoated tablet 929843011000036105 Phenobarbitone (Aspen) 929843011000036105 Phenobarbitone (Aspen) 26982011000036105 phenobarbital (phenobarbitone) 30 mg tablet, 200 22355011000036100 phenobarbital (phenobarbitone) 30 mg tablet 21578011000036105 phenobarbital (phenobarbitone) +926827011000036105 Metformin 1000 (Apo) 1 g film-coated tablet, 30, blister pack 176509 926223011000036109 Metformin 1000 (Apo) 1 g film-coated tablet, 30 925684011000036100 Metformin 1000 (Apo) 1 g film-coated tablet 22791000168107 Metformin 1000 (Apo) 22791000168107 Metformin 1000 (Apo) 87829011000036108 metformin hydrochloride 1 g tablet, 30 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +992441000168105 Bisoprolol (Apotex) 10 mg tablet, 28, blister pack 182127 992431000168101 Bisoprolol (Apotex) 10 mg tablet, 28 992371000168105 Bisoprolol (Apotex) 10 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +21146011000036101 Rithmik 200 mg uncoated tablet, 30, blister pack 98655 14288011000036101 Rithmik 200 mg uncoated tablet, 30 7574011000036103 Rithmik 200 mg uncoated tablet 3881011000036101 Rithmik 3881011000036101 Rithmik 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +130331000036106 HCU Cooler 10 oral liquid solution, 30 x 87 mL sachets 127251000036109 HCU Cooler 10 oral liquid solution, 30 x 87 mL sachets 474591000168100 HCU Cooler 10 oral liquid solution, 87 mL sachet 29391000168103 HCU Cooler 10 29391000168103 HCU Cooler 10 127261000036107 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 87 mL sachets 474311000168104 amino acid formula with vitamins and minerals without methionine oral liquid, 87 mL sachet 50753011000036104 amino acid formula with vitamins and minerals without methionine +50368011000036104 XMTVI Analog powder for oral liquid, 400 g, can 49488011000036103 XMTVI Analog powder for oral liquid, 400 g 48593011000036100 XMTVI Analog powder for oral liquid 9651000168108 XMTVI Analog 9651000168108 XMTVI Analog 51445011000036104 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 400 g 50959011000036106 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +679921000168106 Rixadone 500 microgram film-coated tablet, 20, blister pack 199179 679911000168104 Rixadone 500 microgram film-coated tablet, 20 48681011000036106 Rixadone 500 microgram film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +60567011000036104 Panadol Children's 5 Years to 12 Years 250 mg moulded suppository, 20, bottle 15487 56525011000036108 Panadol Children's 5 Years to 12 Years 250 mg moulded suppository, 20 53952011000036102 Panadol Children's 5 Years to 12 Years 250 mg moulded suppository 1351000168101 Panadol Children's 5 Years to 12 Years 1351000168101 Panadol Children's 5 Years to 12 Years 63395011000036109 paracetamol 250 mg suppository, 20 61937011000036109 paracetamol 250 mg suppository 21433011000036107 paracetamol +45711000036100 Cefepime (Sandoz) 2 g powder for injection, 1 vial 171734 43031000036107 Cefepime (Sandoz) 2 g powder for injection, 1 vial 40591000036105 Cefepime (Sandoz) 2 g powder for injection, 2 g vial 40391000036104 Cefepime (Sandoz) 40391000036104 Cefepime (Sandoz) 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +1016971000168102 Famciclovir (Apotex) 500 mg film-coated tablet, 14, blister pack 172444 1016961000168108 Famciclovir (Apotex) 500 mg film-coated tablet, 14 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 86443011000036101 famciclovir 500 mg tablet, 14 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1117751000168100 Donepezil (GH) 5 mg film-coated tablet, 28, blister pack 193661 1117741000168102 Donepezil (GH) 5 mg film-coated tablet, 28 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +18623011000036104 Gabaran 800 mg film-coated tablet, 50, bottle 121844 11695011000036103 Gabaran 800 mg film-coated tablet, 50 4651011000036104 Gabaran 800 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 26739011000036102 gabapentin 800 mg tablet, 50 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +763391000168105 Imlygic 100 million PFU/mL injection solution, 1 mL vial 232297 763381000168107 Imlygic 100 million PFU/mL injection solution, 1 mL vial 763361000168103 Imlygic 100 million PFU/mL injection solution, vial 762021000168103 Imlygic 762021000168103 Imlygic 763371000168109 talimogene laherparepvec 100 million PFU/mL injection, 1 mL vial 763351000168100 talimogene laherparepvec 100 million PFU/mL injection, vial 762221000168106 talimogene laherparepvec +104391000036109 Irbesartan (DRLA) 75 mg film-coated tablet, 30, blister pack 190487 101601000036108 Irbesartan (DRLA) 75 mg film-coated tablet, 30 99001000036107 Irbesartan (DRLA) 75 mg film-coated tablet 97871000036100 Irbesartan (DRLA) 97871000036100 Irbesartan (DRLA) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +69271011000036109 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 36 x 50 mL packs, bag 19477 67071011000036107 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 36 x 50 mL packs 65544011000036106 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71641011000036100 sodium chloride 0.9% (450 mg/50 mL) injection, 36 x 50 mL packs 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +33533011000036109 Stocrin 200 mg film-coated tablet, 90, bottle 125199 33273011000036101 Stocrin 200 mg film-coated tablet, 90 33038011000036101 Stocrin 200 mg film-coated tablet 4246011000036109 Stocrin 4246011000036109 Stocrin 33789011000036102 efavirenz 200 mg tablet, 90 33661011000036105 efavirenz 200 mg tablet 21616011000036105 efavirenz +957761000168109 Amlodipine (Apo) 2.5 mg uncoated tablet, 30, bottle 135144 914981000168100 Amlodipine (Apo) 2.5 mg uncoated tablet, 30 914971000168103 Amlodipine (Apo) 2.5 mg uncoated tablet 30701000168100 Amlodipine (Apo) 30701000168100 Amlodipine (Apo) 903001000168106 amlodipine 2.5 mg tablet, 30 902981000168107 amlodipine 2.5 mg tablet 21322011000036108 amlodipine +1002671000168105 Rivastigmine (Apo) 1.5 mg hard capsule, 28, blister pack 160581 1002661000168104 Rivastigmine (Apo) 1.5 mg hard capsule, 28 1002531000168108 Rivastigmine (Apo) 1.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002651000168101 rivastigmine 1.5 mg capsule, 28 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +959371000168107 Ciram 10 mg film-coated tablet, 56, blister pack 158856 959361000168101 Ciram 10 mg film-coated tablet, 56 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +783671000168102 Palexia IR 100 mg film-coated tablet, 50, blister pack 165318 783661000168108 Palexia IR 100 mg film-coated tablet, 50 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783651000168106 tapentadol 100 mg tablet, 50 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +1107641000168109 Cabometyx 20 mg film-coated tablet, 30, bottle 283800 1107631000168100 Cabometyx 20 mg film-coated tablet, 30 1107611000168105 Cabometyx 20 mg film-coated tablet 1107321000168106 Cabometyx 1107321000168106 Cabometyx 1107621000168103 cabozantinib 20 mg tablet, 30 1107601000168107 cabozantinib 20 mg tablet 1107331000168109 cabozantinib +877361000168103 Briviact 25 mg film-coated tablet, 168, blister pack 243796 877351000168100 Briviact 25 mg film-coated tablet, 168 877241000168108 Briviact 25 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877341000168102 brivaracetam 25 mg tablet, 168 877231000168104 brivaracetam 25 mg tablet 876401000168109 brivaracetam +953431000168100 Gabapentin (AN) 400 mg hard capsule, 100, blister pack 263842 953421000168103 Gabapentin (AN) 400 mg hard capsule, 100 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +982331000168106 Maxalt 5 mg wafer, 2, blister pack 69077 982321000168108 Maxalt 5 mg wafer, 2 982301000168104 Maxalt 5 mg wafer 83225011000036106 Maxalt 83225011000036106 Maxalt 982311000168101 rizatriptan 5 mg wafer, 2 982291000168100 rizatriptan 5 mg wafer 83422011000036102 rizatriptan +69334011000036102 Camphor Linctus Compound (Gold Cross) 3 mg/5 mL oral liquid solution, 500 mL, bottle 27216 67134011000036103 Camphor Linctus Compound (Gold Cross) 3 mg/5 mL oral liquid solution, 500 mL 65503011000036104 Camphor Linctus Compound (Gold Cross) 3 mg/5 mL oral liquid solution, 5 mL 65011011000036100 Camphor Linctus Compound (Gold Cross) 65011011000036100 Camphor Linctus Compound (Gold Cross) 71699011000036105 camphor 3 mg/5 mL oral liquid, 500 mL 70134011000036105 camphor 3 mg/5 mL oral liquid 69833011000036101 camphor +33614011000036109 Bondronat 6 mg/6 mL concentrated injection, 5 x 6 mL vials 98008 33352011000036104 Bondronat 6 mg/6 mL concentrated injection, 5 x 6 mL vials 33110011000036103 Bondronat 6 mg/6 mL concentrated injection, 6 mL vial 32976011000036100 Bondronat 32976011000036100 Bondronat 33829011000036106 ibandronate 6 mg/6 mL injection, 5 x 6 mL vials 33693011000036108 ibandronate 6 mg/6 mL injection, vial 33641011000036101 ibandronate +907341000168103 Celecoxib (Lupin) 100 mg hard capsule, 10, blister pack 196181 907331000168107 Celecoxib (Lupin) 100 mg hard capsule, 10 907321000168109 Celecoxib (Lupin) 100 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +805181000168108 Aczicrit 9000 units/0.9 mL injection solution, 6 x 0.9 mL syringes 147841 805171000168105 Aczicrit 9000 units/0.9 mL injection solution, 6 x 0.9 mL syringes 805141000168103 Aczicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924124011000036100 epoetin lambda 9000 units/0.9 mL injection, 6 x 0.9 mL syringes 923952011000036107 epoetin lambda 9000 units/0.9 mL injection, syringe 923930011000036107 epoetin lambda +50414011000036104 Rispa 1 mg film-coated tablet, 60, blister pack 127882 49562011000036107 Rispa 1 mg film-coated tablet, 60 48460011000036104 Rispa 1 mg film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1009661000168109 Valaciclovir 1000 (GA) 1 g film-coated tablet, 4, blister pack 162729 1009651000168107 Valaciclovir 1000 (GA) 1 g film-coated tablet, 4 1009641000168105 Valaciclovir 1000 (GA) 1 g film-coated tablet 1009631000168101 Valaciclovir 1000 (GA) 1009631000168101 Valaciclovir 1000 (GA) 927387011000036102 valaciclovir 1 g tablet, 4 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +61522011000036103 Pepzan Relief 20 mg film-coated tablet, 7, blister pack 93495 57447011000036106 Pepzan Relief 20 mg film-coated tablet, 7 54305011000036107 Pepzan Relief 20 mg film-coated tablet 6341000168109 Pepzan Relief 6341000168109 Pepzan Relief 63864011000036105 famotidine 20 mg tablet, 7 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +654151000168101 Gazyva 1 g/40 mL concentrated injection, 40 mL vial 210562 654141000168103 Gazyva 1 g/40 mL concentrated injection, 40 mL vial 654121000168109 Gazyva 1 g/40 mL concentrated injection, 40 mL vial 654091000168105 Gazyva 654091000168105 Gazyva 654131000168107 obinutuzumab 1 g/40 mL injection, 40 mL vial 654111000168102 obinutuzumab 1 g/40 mL injection, vial 654101000168100 obinutuzumab +37435011000036105 Hydrozole cream, 2 g, tube 10319 36620011000036101 Hydrozole cream, 2 g 36024011000036101 Hydrozole cream 23501000168103 Hydrozole 23501000168103 Hydrozole 38540011000036101 hydrocortisone 1% + clotrimazole 1% cream, 2 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +1044461000168101 Ziprox 60 mg hard capsule, 60, blister pack 201083 1044451000168103 Ziprox 60 mg hard capsule, 60 1044441000168100 Ziprox 60 mg hard capsule 1044151000168106 Ziprox 1044151000168106 Ziprox 27571011000036104 ziprasidone 60 mg capsule, 60 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +800841000168102 Actonate 5 mg film-coated tablet, 28, blister pack 163746 800831000168106 Actonate 5 mg film-coated tablet, 28 800751000168105 Actonate 5 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 27740011000036108 risedronate sodium 5 mg tablet, 28 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +775131000168103 Targin 2.5/1.25 mg modified release tablet, 60, blister pack 216260 775121000168101 Targin 2.5/1.25 mg modified release tablet, 60 775041000168108 Targin 2.5/1.25 mg modified release tablet 775021000168102 Targin 2.5/1.25 mg 775021000168102 Targin 2.5/1.25 mg 775111000168108 oxycodone hydrochloride 2.5 mg + naloxone hydrochloride 1.25 mg modified release tablet, 60 775031000168104 oxycodone hydrochloride 2.5 mg + naloxone hydrochloride 1.25 mg modified release tablet 923931011000036100 oxycodone + naloxone +946481000168107 Ranitidine (GA) 300 mg film-coated tablet, 30, bottle 148521 930636011000036109 Ranitidine (GA) 300 mg film-coated tablet, 30 929982011000036102 Ranitidine (GA) 300 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +19556011000036101 Ogen 625 microgram uncoated tablet, 56, blister pack 56966 12827011000036109 Ogen 625 microgram uncoated tablet, 56 6118011000036109 Ogen 625 microgram uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 27395011000036105 oestrone sulfate sodium 625 microgram tablet, 56 22744011000036101 oestrone sulfate sodium 625 microgram tablet 21299011000036103 oestrone sulfate sodium +898821000168109 Nicotinell Peppermint 2 mg lozenge, 168, blister pack 276925 898811000168102 Nicotinell Peppermint 2 mg lozenge, 168 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 898801000168100 nicotine 2 mg lozenge, 168 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +74381000036105 Frusemide (Apo) 40 mg tablet, 100, bottle 186516 71951000036100 Frusemide (Apo) 40 mg tablet, 100 69951000036105 Frusemide (Apo) 40 mg tablet 69451000036101 Frusemide (Apo) 69451000036101 Frusemide (Apo) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +18636011000036108 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10693 11347011000036108 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 4989011000036109 Microgynon 30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700016071000036104 Microgynon 30 ED 700016071000036104 Microgynon 30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +18636011000036108 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10693 11347011000036108 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5810011000036100 Microgynon 30 ED (inert substance) sugar coated tablet 700016071000036104 Microgynon 30 ED 700016071000036104 Microgynon 30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +37389011000036107 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 5 x 10 mL vials 11939 36674011000036105 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 5 x 10 mL vials 36070011000036107 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 10 mL vial 3151000168100 Marcain 0.5% with Adrenaline 1 in 200 000 3151000168100 Marcain 0.5% with Adrenaline 1 in 200 000 38587011000036109 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) + adrenaline (epinephrine) 1 in 200 000 (50 microgram/10 mL) injection, 5 x 10 mL vials 37858011000036109 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) + adrenaline (epinephrine) 1 in 200 000 (50 microgram/10 mL) injection, vial 37718011000036101 bupivacaine + adrenaline (epinephrine) +1117841000168108 Donepezil (GH) 5 mg film-coated tablet, 60, blister pack 193661 1117831000168104 Donepezil (GH) 5 mg film-coated tablet, 60 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200781000036106 donepezil hydrochloride 5 mg tablet, 60 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +61097011000036106 Daktagold 2% cream, 30 g, tube 71115 57040011000036103 Daktagold 2% cream, 30 g 54169011000036101 Daktagold 2% cream 53512011000036102 Daktagold 53512011000036102 Daktagold 26820011000036108 ketoconazole 2% cream, 30 g 22202011000036107 ketoconazole 2% cream 21500011000036103 ketoconazole +87707011000036105 Carvedilol (Apo) 25 mg film-coated tablet, 60, bottle 123841 87416011000036101 Carvedilol (Apo) 25 mg film-coated tablet, 60 87298011000036102 Carvedilol (Apo) 25 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +19153011000036100 Odrik 1 mg hard capsule, 28, blister pack 45487 12452011000036101 Odrik 1 mg hard capsule, 28 5936011000036104 Odrik 1 mg hard capsule 3036011000036103 Odrik 3036011000036103 Odrik 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +1111901000168108 Terbinafine (Pharmacy Health) 1% cream, 15 g, tube 273900 1111891000168109 Terbinafine (Pharmacy Health) 1% cream, 15 g 1111881000168106 Terbinafine (Pharmacy Health) 1% cream 1111871000168108 Terbinafine (Pharmacy Health) 1111871000168108 Terbinafine (Pharmacy Health) 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +104711000036100 Irbesartan/HCT 150/12.5 (Sandoz) film-coated tablet, 30, blister pack 174729 101921000036108 Irbesartan/HCT 150/12.5 (Sandoz) film-coated tablet, 30 99281000036109 Irbesartan/HCT 150/12.5 (Sandoz) film-coated tablet 17731000168101 Irbesartan/HCT 150/12.5 (Sandoz) 17731000168101 Irbesartan/HCT 150/12.5 (Sandoz) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1048711000168101 Bupretec 40 microgram/hour patch, 2, sachet 234736 1048701000168104 Bupretec 40 microgram/hour patch, 2 1048691000168104 Bupretec 40 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 773951000168107 buprenorphine 40 microgram/hour patch, 2 773931000168101 buprenorphine 40 microgram/hour patch 21232011000036101 buprenorphine +60070011000036107 Bisolvon Chesty 8 mg uncoated tablet, 50, blister pack 17915 56032011000036104 Bisolvon Chesty 8 mg uncoated tablet, 50 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63200011000036109 bromhexine hydrochloride 8 mg tablet, 50 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +60070011000036107 Bisolvon Chesty 8 mg uncoated tablet, 50, blister pack 125375 56032011000036104 Bisolvon Chesty 8 mg uncoated tablet, 50 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63200011000036109 bromhexine hydrochloride 8 mg tablet, 50 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +91741000036108 Tramadol Hydrochloride SR (Generic Health) 150 mg modified release tablet, 20, blister pack 194540 90261000036108 Tramadol Hydrochloride SR (Generic Health) 150 mg modified release tablet, 20 88301000036101 Tramadol Hydrochloride SR (Generic Health) 150 mg modified release tablet 19731000168108 Tramadol Hydrochloride SR (Generic Health) 19731000168108 Tramadol Hydrochloride SR (Generic Health) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +881661000168105 Candesartan HCTZ 32/12.5 (GPPL) uncoated tablet, 30, blister pack 253493 881631000168102 Candesartan HCTZ 32/12.5 (GPPL) uncoated tablet, 30 881621000168100 Candesartan HCTZ 32/12.5 (GPPL) uncoated tablet 881611000168107 Candesartan HCTZ 32/12.5 (GPPL) 881611000168107 Candesartan HCTZ 32/12.5 (GPPL) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +69634011000036107 Intralipid 10% (50 g/500 mL) intravenous infusion injection, 10 x 500 mL bags 77744 67433011000036104 Intralipid 10% (50 g/500 mL) intravenous infusion injection, 10 x 500 mL bags 65661011000036109 Intralipid 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 65008011000036106 Intralipid 65008011000036106 Intralipid 71963011000036106 soya oil 10% (50 g/500 mL) injection, 10 x 500 mL bags 70264011000036103 soya oil 10% (50 g/500 mL) injection, bag 69767011000036104 soya oil +929051011000036108 Galvumet 50/850 film-coated tablet, 30, blister pack 161217 928412011000036104 Galvumet 50/850 film-coated tablet, 30 927969011000036100 Galvumet 50/850 film-coated tablet 9411000168105 Galvumet 50/850 9411000168105 Galvumet 50/850 929249011000036103 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet, 30 929155011000036104 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet 929132011000036106 vildagliptin + metformin +30841000036102 Kerron 500 mg film-coated tablet, 60, blister pack 182815 29201000036109 Kerron 500 mg film-coated tablet, 60 26501000036103 Kerron 500 mg film-coated tablet 29611000168101 Kerron 29611000168101 Kerron 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +81008011000036107 Hydralyte Ice Block orange oral liquid for freezing, 16 x 62.5 mL sachets 117637 80484011000036100 Hydralyte Ice Block orange oral liquid for freezing, 16 x 62.5 mL sachets 80153011000036108 Hydralyte Ice Block orange oral liquid for freezing, 62.5 mL sachet 21131000168103 Hydralyte Ice Block 21131000168103 Hydralyte Ice Block 81583011000036101 sodium chloride 156.2 mg/62.5 mL + potassium citrate monohydrate 137.5 mg (potassium 3.4 mmol)/62.5 mL + glucose monohydrate 1 g/62.5 mL + citrate monohydrate 300 mg/62.5 mL oral liquid for freezing, 16 x 62.5 mL sachets 81259011000036101 sodium chloride 156.2 mg/62.5 mL + potassium citrate monohydrate 137.5 mg (potassium 3.4 mmol)/62.5 mL + glucose monohydrate 1 g/62.5 mL + citrate monohydrate 300 mg/62.5 mL oral liquid for freezing, sachet 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +933230671000036108 Valaciclovir (Generic Health) 500 mg film-coated tablet, 40, blister pack 170178 933224761000036100 Valaciclovir (Generic Health) 500 mg film-coated tablet, 40 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 933224771000036108 valaciclovir 500 mg tablet, 40 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +795041000168102 Instanyl 50 microgram/actuation nasal spray, 8 x 1 actuation, pump packs 197680 795031000168106 Instanyl 50 microgram/actuation nasal spray, 8 x 1 actuation 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795021000168108 fentanyl 50 microgram/actuation nasal spray, 8 x 1 actuation 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +61581011000036100 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 24, blister pack 94969 57503011000036104 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 24 54329011000036101 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet 53225011000036108 Ibuprofen (Soul Pattinson) 53225011000036108 Ibuprofen (Soul Pattinson) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +84279011000036109 Nordip 10 mg uncoated tablet, 28, blister pack 133146 83972011000036103 Nordip 10 mg uncoated tablet, 28 83612011000036105 Nordip 10 mg uncoated tablet 83546011000036106 Nordip 83546011000036106 Nordip 84621011000036108 amlodipine 10 mg tablet, 28 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +821131000168102 Signifor LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 225272 821121000168100 Signifor LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 821101000168109 Signifor LAR (inert substance) diluent, 2 mL syringe 821061000168106 Signifor LAR 821061000168106 Signifor LAR 821111000168107 pasireotide 20 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +821131000168102 Signifor LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 225272 821121000168100 Signifor LAR (1 x 20 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 821091000168104 Signifor LAR (pasireotide 20 mg) modified release injection, 20 mg vial 821061000168106 Signifor LAR 821061000168106 Signifor LAR 821111000168107 pasireotide 20 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 821081000168102 pasireotide 20 mg modified release injection, vial 177231000036100 pasireotide +77194011000036105 Piperacillin and Tazobactam 4 g/0.5 g (DBL) powder for injection, 4.5 g vial 128753 76610011000036101 Piperacillin and Tazobactam 4 g/0.5 g (DBL) powder for injection, 4.5 g vial 76062011000036105 Piperacillin and Tazobactam 4 g/0.5 g (DBL) powder for injection, 4.5 g vial 64071000168107 Piperacillin and Tazobactam 4 g/0.5 g (DBL) 64071000168107 Piperacillin and Tazobactam 4 g/0.5 g (DBL) 46368011000036104 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +988191000168106 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 50 mL, bottle 178432 988181000168108 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 50 mL 988111000168102 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 63165011000036102 ibuprofen 40 mg/mL oral liquid, 50 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +1120571000168105 Xque XR 200 mg modified release tablet, 100, blister pack 226811 1120561000168104 Xque XR 200 mg modified release tablet, 100 1120491000168107 Xque XR 200 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51533011000036106 quetiapine 200 mg modified release tablet, 100 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +69121011000036108 Strepsils honey and lemon lozenge, 6, blister pack 14975 66922011000036107 Strepsils honey and lemon lozenge, 6 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +933230631000036106 Valaciclovir (Generic Health) 500 mg film-coated tablet, 14, blister pack 170178 933224701000036104 Valaciclovir (Generic Health) 500 mg film-coated tablet, 14 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 933224711000036102 valaciclovir 500 mg tablet, 14 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +773601000168104 Claratyne Reditab 10 mg orally disintegrating tablet, 50, blister pack 217147 773591000168106 Claratyne Reditab 10 mg orally disintegrating tablet, 50 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773581000168108 loratadine 10 mg orally disintegrating tablet, 50 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +923716011000036105 Novicrit 7000 units/0.7 mL injection solution, 6 x 0.7 mL syringes 147835 923297011000036103 Novicrit 7000 units/0.7 mL injection solution, 6 x 0.7 mL syringes 922984011000036101 Novicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924117011000036102 epoetin lambda 7000 units/0.7 mL injection, 6 x 0.7 mL syringes 923948011000036108 epoetin lambda 7000 units/0.7 mL injection, syringe 923930011000036107 epoetin lambda +740291000168102 Ondansetron (SZ) 4 mg film-coated tablet, 10, blister pack 163438 740281000168100 Ondansetron (SZ) 4 mg film-coated tablet, 10 740231000168101 Ondansetron (SZ) 4 mg film-coated tablet 740221000168104 Ondansetron (SZ) 740221000168104 Ondansetron (SZ) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +1014001000168101 Aripiprazole (Generic Health) 15 mg uncoated tablet, 30, blister pack 176797 1013991000168109 Aripiprazole (Generic Health) 15 mg uncoated tablet, 30 1013981000168106 Aripiprazole (Generic Health) 15 mg uncoated tablet 1013811000168106 Aripiprazole (Generic Health) 1013811000168106 Aripiprazole (Generic Health) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +940541000168104 Escitalopram (GenRx) 15 mg film-coated tablet, 28, blister pack 145643 940531000168108 Escitalopram (GenRx) 15 mg film-coated tablet, 28 940521000168105 Escitalopram (GenRx) 15 mg film-coated tablet 940221000168107 Escitalopram (GenRx) 940221000168107 Escitalopram (GenRx) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +18152011000036109 Daktarin 2% cream, 30 g, tube 13284 11944011000036108 Daktarin 2% cream, 30 g 5037011000036105 Daktarin 2% cream 431000168100 Daktarin 431000168100 Daktarin 26812011000036102 miconazole nitrate 2% cream, 30 g 22195011000036104 miconazole nitrate 2% cream 21454011000036108 miconazole +796641000168100 Acitretin (iNova) 10 mg hard capsule, 100, blister pack 196005 796631000168109 Acitretin (iNova) 10 mg hard capsule, 100 796601000168102 Acitretin (iNova) 10 mg hard capsule 796431000168106 Acitretin (iNova) 796431000168106 Acitretin (iNova) 27277011000036104 acitretin 10 mg capsule, 100 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +979601000168105 Advil Plus film-coated tablet, 30, blister pack 184751 979591000168103 Advil Plus film-coated tablet, 30 979541000168106 Advil Plus film-coated tablet 979531000168102 Advil Plus 979531000168102 Advil Plus 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +44671011000036102 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent vials), 1 pack, composite pack 91562 42120011000036100 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent vials), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46882011000036102 follitropin alfa 37.5 units (2.73 microgram) injection [5 x 37.5 units vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44671011000036102 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent vials), 1 pack, composite pack 91562 42120011000036100 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent vials), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46882011000036102 follitropin alfa 37.5 units (2.73 microgram) injection [5 x 37.5 units vials] (&) inert substance diluent [5 x 1 mL vials], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +737591000168101 Bisoprolol (Auro) 2.5 mg film-coated tablet, 28, blister pack 175929 737581000168104 Bisoprolol (Auro) 2.5 mg film-coated tablet, 28 737571000168102 Bisoprolol (Auro) 2.5 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +945521000168102 Ondansetron (Mylan) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 138699 945511000168109 Ondansetron (Mylan) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 945481000168102 Ondansetron (Mylan) 4 mg/2 mL injection solution, 2 mL ampoule 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +954151000168100 Azithromycin (Mylan) 500 mg film-coated tablet, 3, blister pack 158290 954141000168102 Azithromycin (Mylan) 500 mg film-coated tablet, 3 954111000168101 Azithromycin (Mylan) 500 mg film-coated tablet 954101000168104 Azithromycin (Mylan) 954101000168104 Azithromycin (Mylan) 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +982251000168105 Avandia 2 mg film-coated tablet, 56, blister pack 70964 982241000168108 Avandia 2 mg film-coated tablet, 56 982161000168101 Avandia 2 mg film-coated tablet 3736011000036100 Avandia 3736011000036100 Avandia 982231000168104 rosiglitazone 2 mg tablet, 56 982151000168103 rosiglitazone 2 mg tablet 21349011000036100 rosiglitazone +829941000168109 Atomoxetine (Apo) 10 mg hard capsule, 14, blister pack 234800 829931000168100 Atomoxetine (Apo) 10 mg hard capsule, 14 829891000168108 Atomoxetine (Apo) 10 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 829921000168103 atomoxetine 10 mg capsule, 14 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1035461000168103 Actonel Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Sanofi-Aventis) tablets), 84, blister pack 117667 1035451000168100 Actonel Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Sanofi-Aventis) tablets), 84 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 56751000168100 Actonel Combi 700024831000036105 Actonel Once-a-Week 881311000168101 risedronate sodium 35 mg tablet [12] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [72], 84 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1035461000168103 Actonel Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Sanofi-Aventis) tablets), 84, blister pack 117667 1035451000168100 Actonel Combi (12 x Actonel Once-a-Week tablets, 72 x Calcium Carbonate (Sanofi-Aventis) tablets), 84 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 56751000168100 Actonel Combi 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 881311000168101 risedronate sodium 35 mg tablet [12] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [72], 84 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +929037011000036101 Sertraline (DRLA) 50 mg film-coated tablet, 28, blister pack 160766 928398011000036106 Sertraline (DRLA) 50 mg film-coated tablet, 28 927966011000036109 Sertraline (DRLA) 50 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 46995011000036101 sertraline 50 mg tablet, 28 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +61355011000036105 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 4, blister pack 81474 57280011000036102 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 4 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +79071011000036100 Ramipril (Apo) 5 mg tablet, 30, blister pack 150897 78855011000036100 Ramipril (Apo) 5 mg tablet, 30 78661011000036100 Ramipril (Apo) 5 mg tablet 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +79071011000036100 Ramipril (Apo) 5 mg tablet, 30, blister pack 231163 78855011000036100 Ramipril (Apo) 5 mg tablet, 30 78661011000036100 Ramipril (Apo) 5 mg tablet 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +787091000168102 Palladone XL 12 mg modified release capsule, 10, bottle 116606 787081000168100 Palladone XL 12 mg modified release capsule, 10 787061000168109 Palladone XL 12 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 787071000168103 hydromorphone hydrochloride 12 mg modified release capsule, 10 787051000168107 hydromorphone hydrochloride 12 mg modified release capsule 21480011000036107 hydromorphone +1074351000168108 Clopidogrel (Auro) 75 mg film-coated tablet, 112, blister pack 171363 1074341000168106 Clopidogrel (Auro) 75 mg film-coated tablet, 112 1074241000168100 Clopidogrel (Auro) 75 mg film-coated tablet 1074231000168109 Clopidogrel (Auro) 1074231000168109 Clopidogrel (Auro) 87799011000036100 clopidogrel 75 mg tablet, 112 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1108281000168102 Midazolam (Claris) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 216026 1108271000168100 Midazolam (Claris) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1108261000168106 Midazolam (Claris) 15 mg/3 mL injection solution, 3 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +746391000168105 Vivachek Ino diagnostic strip, 50, bottle 265754 746381000168107 Vivachek Ino diagnostic strip, 50 746371000168109 Vivachek Ino diagnostic strip 746361000168103 Vivachek Ino 746361000168103 Vivachek Ino 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +737751000168103 Carvedilol (Auro) 3.125 mg film-coated tablet, 30, blister pack 174793 737741000168100 Carvedilol (Auro) 3.125 mg film-coated tablet, 30 737731000168109 Carvedilol (Auro) 3.125 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +832351000168100 Comvax injection suspension, 10 x 0.5 mL vials 70943 832341000168102 Comvax injection suspension, 10 x 0.5 mL vials 832291000168100 Comvax injection suspension, 0.5 mL vial 73724011000036101 Comvax 73724011000036101 Comvax 832331000168106 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 10 x 0.5 mL vials 832281000168103 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial 832271000168101 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine +69382011000036100 Finalgon ointment, 20 g, tube 33492 67182011000036101 Finalgon ointment, 20 g 65246011000036107 Finalgon ointment 64971011000036109 Finalgon 64971011000036109 Finalgon 71744011000036105 nonivamide 0.4% + nicoboxil 2.5% ointment, 20 g 70164011000036101 nonivamide 0.4% + nicoboxil 2.5% ointment 69748011000036107 nonivamide + nicoboxil +1112861000168105 Allopurinol (TN) 100 mg uncoated tablet, 100, blister pack 269643 1112851000168108 Allopurinol (TN) 100 mg uncoated tablet, 100 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 27040011000036105 allopurinol 100 mg tablet, 100 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +1069741000168101 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 20, blister pack 211368 1069731000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 20 1069671000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 836091000168106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 20 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +83196011000036109 Fluvax 2010 injection suspension, 10 x 0.5 mL syringes 91583 83142011000036104 Fluvax 2010 injection suspension, 10 x 0.5 mL syringes 83082011000036100 Fluvax 2010 injection suspension, 0.5 mL syringe 16231000168105 Fluvax 2010 16231000168105 Fluvax 2010 83212011000036108 influenza trivalent adult vaccine 2010 injection, 10 x 0.5 mL syringes 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +83196011000036109 Fluvax 2010 injection suspension, 10 x 0.5 mL syringes 117397 83142011000036104 Fluvax 2010 injection suspension, 10 x 0.5 mL syringes 83082011000036100 Fluvax 2010 injection suspension, 0.5 mL syringe 16231000168105 Fluvax 2010 16231000168105 Fluvax 2010 83212011000036108 influenza trivalent adult vaccine 2010 injection, 10 x 0.5 mL syringes 83199011000036100 influenza trivalent adult vaccine 2010 injection, 0.5 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +907251000168106 Celecoxib (Medis) 100 mg capsule, 10, blister pack 204621 907241000168109 Celecoxib (Medis) 100 mg capsule, 10 907231000168100 Celecoxib (Medis) 100 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +783031000168106 Palexia IR 50 mg film-coated tablet, 100, blister pack 165310 783021000168108 Palexia IR 50 mg film-coated tablet, 100 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783011000168101 tapentadol 50 mg tablet, 100 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +697321000168107 Vascalace 5 mg capsule, 30, bottle 203716 697311000168100 Vascalace 5 mg capsule, 30 697301000168103 Vascalace 5 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +33563011000036104 Fosinopril Sodium/HCT 20/12.5 (Winthrop) uncoated tablet, 30, blister pack 143463 33301011000036104 Fosinopril Sodium/HCT 20/12.5 (Winthrop) uncoated tablet, 30 33063011000036101 Fosinopril Sodium/HCT 20/12.5 (Winthrop) uncoated tablet 37301000168102 Fosinopril Sodium/HCT 20/12.5 (Winthrop) 37301000168102 Fosinopril Sodium/HCT 20/12.5 (Winthrop) 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +832031000168108 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack 90140 832021000168105 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack 638331000168101 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines (inert substance) diluent, 0.7 mL vial 40011000168104 Varivax Refrigerated 73763011000036106 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines 832011000168103 varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack 638321000168104 inert substance diluent, 0.7 mL vial 21220011000036103 inert substance +832031000168108 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack 90140 832021000168105 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack 831711000168109 Varivax Refrigerated (varicella-zoster live vaccine) powder for injection, vial 40011000168104 Varivax Refrigerated 40011000168104 Varivax Refrigerated 832011000168103 varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack 831701000168106 varicella-zoster live vaccine 1350 PFU injection, vial 830851000168105 varicella-zoster live vaccine +19972011000036106 Crysanal 550 mg film-coated tablet, 50, blister pack 67927 13215011000036107 Crysanal 550 mg film-coated tablet, 50 6497011000036108 Crysanal 550 mg film-coated tablet 3396011000036109 Crysanal 3396011000036109 Crysanal 27625011000036107 naproxen sodium 550 mg tablet, 50 22963011000036100 naproxen sodium 550 mg tablet 21304011000036105 naproxen +929688011000036103 Escitalopram (Pharmacor) 20 mg film-coated tablet, 28, blister pack 166138 929524011000036108 Escitalopram (Pharmacor) 20 mg film-coated tablet, 28 929408011000036102 Escitalopram (Pharmacor) 20 mg film-coated tablet 929380011000036106 Escitalopram (Pharmacor) 929380011000036106 Escitalopram (Pharmacor) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +69099011000036105 Dencorub Dual Action cream, 100 g, tube 148691 66900011000036104 Dencorub Dual Action cream, 100 g 65392011000036106 Dencorub Dual Action cream 48641000168109 Dencorub Dual Action 48641000168109 Dencorub Dual Action 71494011000036107 methyl salicylate 15% + camphor 3% + menthol 3% + eucalyptus oil 1.5% cream, 100 g 70036011000036108 methyl salicylate 15% + camphor 3% + menthol 3% + eucalyptus oil 1.5% cream 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +1005531000168103 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 162859 1005521000168101 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 1005511000168108 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 20 mL ampoule 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1004901000168103 ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules 1004881000168100 ropivacaine hydrochloride 150 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +1001261000168107 Pregabalin (Apo) 225 mg hard capsule, 14, bottle 193253 1001251000168105 Pregabalin (Apo) 225 mg hard capsule, 14 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +19723011000036105 Captohexal 25 mg film-coated tablet, 90, blister pack 61416 12977011000036104 Captohexal 25 mg film-coated tablet, 90 6266011000036108 Captohexal 25 mg film-coated tablet 4103011000036105 Captohexal 4103011000036105 Captohexal 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +748791000168108 Docetaxel (Astron) 80 mg/4 mL concentrated injection, 4 mL vial 209464 748781000168105 Docetaxel (Astron) 80 mg/4 mL concentrated injection, 4 mL vial 748771000168107 Docetaxel (Astron) 80 mg/4 mL concentrated injection, 4 mL vial 747931000168105 Docetaxel (Astron) 747931000168105 Docetaxel (Astron) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +52188011000036104 Bondronat 50 mg film-coated tablet, 28, blister pack 119673 52080011000036107 Bondronat 50 mg film-coated tablet, 28 51981011000036106 Bondronat 50 mg film-coated tablet 32976011000036100 Bondronat 32976011000036100 Bondronat 52324011000036108 ibandronate 50 mg tablet, 28 52256011000036106 ibandronate 50 mg tablet 33641011000036101 ibandronate +37573011000036102 Gentamicin (DBL) 40 mg/mL injection solution, 5 x 1 mL ampoules 16340 36840011000036109 Gentamicin (DBL) 40 mg/mL injection solution, 5 x 1 mL ampoules 36076011000036105 Gentamicin (DBL) 40 mg/mL injection solution, ampoule 4253011000036100 Gentamicin (DBL) 4253011000036100 Gentamicin (DBL) 38729011000036108 gentamicin 40 mg/mL injection, 5 x 1 mL ampoules 37959011000036108 gentamicin 40 mg/mL injection, ampoule 21397011000036102 gentamicin +21141011000036106 Fermil 50 mg uncoated tablet, 5, blister pack 98646 14283011000036106 Fermil 50 mg uncoated tablet, 5 7569011000036105 Fermil 50 mg uncoated tablet 4291011000036105 Fermil 4291011000036105 Fermil 28274011000036104 clomifene citrate 50 mg tablet, 5 23588011000036107 clomifene citrate 50 mg tablet 21599011000036107 clomifene +44825011000036106 Detrusitol 1 mg film-coated tablet, 56, blister pack 99393 42257011000036102 Detrusitol 1 mg film-coated tablet, 56 40407011000036104 Detrusitol 1 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47010011000036104 tolterodine tartrate 1 mg tablet, 56 45373011000036104 tolterodine tartrate 1 mg tablet 44907011000036104 tolterodine +931433011000036107 Nurofen Double Strength 400 mg sugar coated tablet, 12, blister pack 141996 930612011000036102 Nurofen Double Strength 400 mg sugar coated tablet, 12 929972011000036106 Nurofen Double Strength 400 mg sugar coated tablet 17911000168109 Nurofen Double Strength 17911000168109 Nurofen Double Strength 932368011000036100 ibuprofen 400 mg tablet, 12 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +69266011000036109 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) irrigation solution, 24 x 100 mL bottles 19476 67066011000036107 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) irrigation solution, 24 x 100 mL bottles 65378011000036103 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) irrigation solution, 100 mL bottle 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71636011000036106 sodium chloride 0.9% (900 mg/100 mL) solution, 24 x 100 mL bottles 70103011000036104 sodium chloride 0.9% (900 mg/100 mL) solution, bottle 21308011000036103 sodium chloride +945841000168105 Invast 10 mg film-coated tablet, 30, bottle 100260 945831000168101 Invast 10 mg film-coated tablet, 30 945821000168104 Invast 10 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +697001000168100 Atorvastatin (Blooms The Chemist) 20 mg film-coated tablet, 30, blister pack 153736 696991000168107 Atorvastatin (Blooms The Chemist) 20 mg film-coated tablet, 30 696981000168109 Atorvastatin (Blooms The Chemist) 20 mg film-coated tablet 692851000168106 Atorvastatin (Blooms The Chemist) 692851000168106 Atorvastatin (Blooms The Chemist) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +20507011000036106 Gantin 800 mg film-coated tablet, 100, blister pack 78626 13707011000036105 Gantin 800 mg film-coated tablet, 100 6989011000036102 Gantin 800 mg film-coated tablet 3173011000036101 Gantin 3173011000036101 Gantin 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +1074031000168100 Ceftazidime (Auro) 1 g powder for injection, 1 vial 158791 1074021000168103 Ceftazidime (Auro) 1 g powder for injection, 1 vial 1074011000168105 Ceftazidime (Auro) 1 g powder for injection, vial 1074001000168107 Ceftazidime (Auro) 1074001000168107 Ceftazidime (Auro) 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +18233011000036104 Cytadren 250 mg uncoated tablet, 100, blister pack 121684 11684011000036101 Cytadren 250 mg uncoated tablet, 100 4742011000036103 Cytadren 250 mg uncoated tablet 3321011000036107 Cytadren 3321011000036107 Cytadren 26735011000036104 aminoglutethimide 250 mg tablet, 100 22130011000036104 aminoglutethimide 250 mg tablet 21641011000036105 aminoglutethimide +1089151000168101 Lorstat 10 mg film-coated tablet, 90, bottle 181403 1089141000168103 Lorstat 10 mg film-coated tablet, 90 20801000036102 Lorstat 10 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 1041211000168103 atorvastatin 10 mg tablet, 90 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +879211000168104 Briviact 10 mg film-coated tablet, 100, blister pack 243794 879201000168102 Briviact 10 mg film-coated tablet, 100 879121000168102 Briviact 10 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 879191000168100 brivaracetam 10 mg tablet, 100 879111000168109 brivaracetam 10 mg tablet 876401000168109 brivaracetam +1104261000168100 Alepam 15 mg uncoated tablet, 1000, bottle 17572 1104251000168102 Alepam 15 mg uncoated tablet, 1000 32245011000036105 Alepam 15 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 1104241000168104 oxazepam 15 mg tablet, 1000 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +873091000168104 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 19609 873081000168102 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 873061000168106 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 49861000168104 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% 49861000168104 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% 873071000168100 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag 873051000168109 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 84407011000036108 alanine + arginine + glucose + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +921898011000036104 Exforge HCT 10/160/12.5 film-coated tablet, 28, blister pack 158164 921457011000036103 Exforge HCT 10/160/12.5 film-coated tablet, 28 921017011000036103 Exforge HCT 10/160/12.5 film-coated tablet 25011000168107 Exforge HCT 10/160/12.5 25011000168107 Exforge HCT 10/160/12.5 922585011000036108 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 28 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +933230471000036106 Saphris 5 mg sublingual wafer, 20, blister pack 166562 933224471000036100 Saphris 5 mg sublingual wafer, 20 933220181000036102 Saphris 5 mg sublingual wafer 933218931000036105 Saphris 933218931000036105 Saphris 933224481000036103 asenapine 5 mg sublingual wafer, 20 933220191000036100 asenapine 5 mg sublingual wafer 933232091000036101 asenapine +701341000168100 Depreta 60 mg enteric capsule, 28, blister pack 199012 701321000168106 Depreta 60 mg enteric capsule, 28 701051000168100 Depreta 60 mg enteric capsule 701041000168102 Depreta 701041000168102 Depreta 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +59932011000036101 Junior Decongestant Mixture (Amcal) oral liquid solution, 100 mL, bottle 119362 55894011000036104 Junior Decongestant Mixture (Amcal) oral liquid solution, 100 mL 53620011000036101 Junior Decongestant Mixture (Amcal) oral liquid solution, 5 mL 36781000168106 Junior Decongestant Mixture (Amcal) 36781000168106 Junior Decongestant Mixture (Amcal) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +975721000168106 Amoxiclav 1000/200 (Juno) powder for injection, 20 x 1.2 g vials 269159 975711000168104 Amoxiclav 1000/200 (Juno) powder for injection, 20 x 1.2 g vials 975601000168108 Amoxiclav 1000/200 (Juno) powder for injection, 1.2 g vial 975581000168104 Amoxiclav 1000/200 (Juno) 975581000168104 Amoxiclav 1000/200 (Juno) 975701000168102 amoxicillin 1 g + clavulanic acid 200 mg injection, 20 x 1.2 g vials 975591000168101 amoxicillin 1 g + clavulanic acid 200 mg injection, 1.2 g vial 21360011000036101 amoxicillin + clavulanic acid +795681000168104 Mekinist 1 mg film-coated tablet, 7, bottle 205918 795671000168102 Mekinist 1 mg film-coated tablet, 7 795651000168106 Mekinist 1 mg film-coated tablet 674811000168109 Mekinist 674811000168109 Mekinist 795661000168108 trametinib 1 mg tablet, 7 795641000168109 trametinib 1 mg tablet 674821000168102 trametinib +44717011000036108 Chirocaine 125 mg/200 mL injection solution, 12 x 200 mL bags 94481 42162011000036107 Chirocaine 125 mg/200 mL injection solution, 12 x 200 mL bags 40372011000036102 Chirocaine 125 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46923011000036107 levobupivacaine 125 mg/200 mL injection, 12 x 200 mL bags 45347011000036109 levobupivacaine 125 mg/200 mL injection, bag 44881011000036100 levobupivacaine +1044141000168109 Pryzex 5 mg film-coated tablet, 14, blister pack 178991 1044131000168100 Pryzex 5 mg film-coated tablet, 14 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044121000168103 olanzapine 5 mg tablet, 14 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +61149011000036104 Clotreme Anti-Fungal (Hexal) 1% cream, 50 g, tube 74158 57092011000036105 Clotreme Anti-Fungal (Hexal) 1% cream, 50 g 54194011000036100 Clotreme Anti-Fungal (Hexal) 1% cream 1821000168102 Clotreme Anti-Fungal (Hexal) 1821000168102 Clotreme Anti-Fungal (Hexal) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +81110011000036103 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 30 mL, bottle 162436 80615011000036101 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 30 mL 80209011000036104 Duro-Tuss Chesty Cough Liquid Forte oral liquid solution, 10 mL 80122011000036100 Duro-Tuss Chesty Cough Liquid Forte 80122011000036100 Duro-Tuss Chesty Cough Liquid Forte 81675011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 30 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +20824011000036107 Pegasys-RBV (4 x 135 microgram syringes, 140 x 200 mg tablets), 1 pack, composite pack 91842 13987011000036103 Pegasys-RBV (4 x 135 microgram syringes, 140 x 200 mg tablets), 1 pack 7271011000036109 Pegasys 135 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28052011000036103 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [140], 1 pack 23370011000036102 peginterferon alfa-2a 135 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20824011000036107 Pegasys-RBV (4 x 135 microgram syringes, 140 x 200 mg tablets), 1 pack, composite pack 91842 13987011000036103 Pegasys-RBV (4 x 135 microgram syringes, 140 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28052011000036103 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [140], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +1112541000168109 Allopurinol (TN) 100 mg uncoated tablet, 60, blister pack 269643 1112531000168100 Allopurinol (TN) 100 mg uncoated tablet, 60 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112521000168103 allopurinol 100 mg tablet, 60 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +1112941000168102 Allopurinol (TN) 100 mg uncoated tablet, 1000, bottle 269656 1112931000168106 Allopurinol (TN) 100 mg uncoated tablet, 1000 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 846501000168106 allopurinol 100 mg tablet, 1000 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +1001301000168104 Valaciclovir (Apo) 500 mg film-coated tablet, 480, bottle 158910 928339011000036106 Valaciclovir (Apo) 500 mg film-coated tablet, 480 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929220011000036107 valaciclovir 500 mg tablet, 480 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +992601000168105 Bisoprolol (Apotex) 5 mg tablet, 10, blister pack 182129 992591000168103 Bisoprolol (Apotex) 5 mg tablet, 10 992561000168105 Bisoprolol (Apotex) 5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79207011000036109 bisoprolol fumarate 5 mg tablet, 10 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +43788011000036109 Glimepiride (Sandoz) 2 mg uncoated tablet, 30, bottle 121787 11691011000036100 Glimepiride (Sandoz) 2 mg uncoated tablet, 30 5900011000036109 Glimepiride (Sandoz) 2 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +933230511000036101 Docetaxel (Sun) (1 x 80 mg vial, 1 x 4 mL inert diluent vial), 1 pack, composite pack 166974 933224541000036106 Docetaxel (Sun) (1 x 80 mg vial, 1 x 4 mL inert diluent vial), 1 pack 933220231000036105 Docetaxel (Sun) (docetaxel 80 mg) powder for injection, 80 mg vial 933219341000036107 Docetaxel (Sun) 933219341000036107 Docetaxel (Sun) 933224551000036109 docetaxel 80 mg injection [1 vial] (&) inert substance diluent [4 mL vial], 1 pack 933220241000036100 docetaxel 80 mg injection, vial 21721011000036101 docetaxel +933230511000036101 Docetaxel (Sun) (1 x 80 mg vial, 1 x 4 mL inert diluent vial), 1 pack, composite pack 166974 933224541000036106 Docetaxel (Sun) (1 x 80 mg vial, 1 x 4 mL inert diluent vial), 1 pack 633701000168100 Docetaxel (Sun) (inert substance) diluent, 4 mL vial 933219341000036107 Docetaxel (Sun) 933219341000036107 Docetaxel (Sun) 933224551000036109 docetaxel 80 mg injection [1 vial] (&) inert substance diluent [4 mL vial], 1 pack 633691000168100 inert substance diluent, 4 mL vial 21220011000036103 inert substance +864481000168104 Amitriptyline (AN) 10 mg tablet, 250, bottle 232117 864471000168102 Amitriptyline (AN) 10 mg tablet, 250 864441000168109 Amitriptyline (AN) 10 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +44735011000036106 Testogel 1% (25 mg/2.5 g) gel, 100 x 2.5 g sachets 96129 42180011000036105 Testogel 1% (25 mg/2.5 g) gel, 100 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46941011000036109 testosterone 1% (25 mg/2.5 g) gel, 100 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +812941000168109 Citalopram (Amneal) 20 mg film-coated tablet, 84, blister pack 158881 812931000168100 Citalopram (Amneal) 20 mg film-coated tablet, 84 812841000168100 Citalopram (Amneal) 20 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +37457011000036104 Xanax 1 mg uncoated tablet, 50, blister pack 12353 11746011000036109 Xanax 1 mg uncoated tablet, 50 5976011000036101 Xanax 1 mg uncoated tablet 3527011000036101 Xanax 3527011000036101 Xanax 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +1091351000168103 Double Anti-Bacterial Lozenges (Coles) lozenge, 16, blister pack 280980 1091341000168100 Double Anti-Bacterial Lozenges (Coles) lozenge, 16 1091331000168109 Double Anti-Bacterial Lozenges (Coles) lozenge 1091261000168105 Double Anti-Bacterial Lozenges (Coles) 1091261000168105 Double Anti-Bacterial Lozenges (Coles) 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +69253011000036107 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 19470 67053011000036105 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 65281011000036109 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) intravenous infusion injection, 1 L bag 33821000168108 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 33821000168108 Potassium Chloride 30 mmol/1000 mL and Sodium Chloride 0.9% (Baxter) 71623011000036102 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.9% (9 g/L) injection, 1 L bag 70097011000036100 potassium chloride 2.24 g (potassium 30 mmol)/L + sodium chloride 0.9% (9 g/L) injection, bag 69799011000036108 potassium chloride + sodium chloride +18387011000036109 Meloxicam (Terry White Chemists) 7.5 mg uncoated tablet, 30, blister pack 127501 11842011000036108 Meloxicam (Terry White Chemists) 7.5 mg uncoated tablet, 30 5874011000036103 Meloxicam (Terry White Chemists) 7.5 mg uncoated tablet 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +979911000168103 Humulin R Kwikpen 100 units/mL injection solution, 5 x 3 mL syringes 64229 979901000168101 Humulin R Kwikpen 100 units/mL injection solution, 5 x 3 mL syringes 979881000168103 Humulin R Kwikpen 100 units/mL injection solution, 3 mL syringe 979811000168109 Humulin R Kwikpen 979811000168109 Humulin R Kwikpen 979891000168100 insulin neutral human 100 units/mL injection, 5 x 3 mL syringes 979871000168101 insulin neutral human 100 units/mL injection, syringe 33644011000036103 insulin neutral human +992761000168103 Lyrica 100 mg hard capsule, 56, blister pack 99524 991261000168103 Lyrica 100 mg hard capsule, 56 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +1009961000168103 Topiramate (AN) 200 mg film-coated tablet, 60, blister pack 157970 686131000168109 Topiramate (AN) 200 mg film-coated tablet, 60 686121000168106 Topiramate (AN) 200 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +44238011000036105 Chloromycetin Succinate 1 g powder for injection, 1 vial 58794 41710011000036104 Chloromycetin Succinate 1 g powder for injection, 1 vial 40156011000036107 Chloromycetin Succinate 1 g powder for injection, vial 39658011000036109 Chloromycetin Succinate 39658011000036109 Chloromycetin Succinate 46522011000036106 chloramphenicol 1 g injection, 1 vial 45198011000036106 chloramphenicol 1 g injection, vial 21330011000036107 chloramphenicol +697231000168103 Pramipexole (Apo) 125 microgram uncoated tablet, 30, bottle 168514 697221000168101 Pramipexole (Apo) 125 microgram uncoated tablet, 30 697211000168108 Pramipexole (Apo) 125 microgram uncoated tablet 697171000168106 Pramipexole (Apo) 697171000168106 Pramipexole (Apo) 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +933231881000036101 Microshield Angel Antimicrobial Hand 48.71% gel, 500 mL, pump pack 76989 933226241000036103 Microshield Angel Antimicrobial Hand 48.71% gel, 500 mL 933221081000036105 Microshield Angel Antimicrobial Hand 48.71% gel 50001000168104 Microshield Angel Antimicrobial Hand 50001000168104 Microshield Angel Antimicrobial Hand 71961011000036105 ethanol 48.71% gel, 500 mL 70263011000036100 ethanol 48.71% gel 69846011000036106 ethanol +1082711000168108 Atorvastatin (ZP) 80 mg film-coated tablet, 30, blister pack 217182 1082701000168105 Atorvastatin (ZP) 80 mg film-coated tablet, 30 1082511000168102 Atorvastatin (ZP) 80 mg film-coated tablet 1082501000168100 Atorvastatin (ZP) 1082501000168100 Atorvastatin (ZP) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1063531000168103 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 12, blister pack 155753 1063521000168101 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 12 1063471000168104 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +714431000168103 Metformin (Auro) 850 mg film-coated tablet, 20, blister pack 180435 714411000168108 Metformin (Auro) 850 mg film-coated tablet, 20 714381000168105 Metformin (Auro) 850 mg film-coated tablet 714361000168101 Metformin (Auro) 714361000168101 Metformin (Auro) 714391000168108 metformin hydrochloride 850 mg tablet, 20 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1037791000168105 Darzalex 100 mg/5 mL concentrated injection, 5 mL vial 281842 1037781000168107 Darzalex 100 mg/5 mL concentrated injection, 5 mL vial 1037761000168103 Darzalex 100 mg/5 mL concentrated injection, 5 mL vial 1037731000168106 Darzalex 1037731000168106 Darzalex 1037771000168109 daratumumab 100 mg/5 mL injection, 5 mL vial 1037751000168100 daratumumab 100 mg/5 mL injection, vial 1037741000168102 daratumumab +44019011000036104 Vincristine Sulfate (DBL) 2 mg/2 mL injection solution, 2 mL vial 47249 41508011000036104 Vincristine Sulfate (DBL) 2 mg/2 mL injection solution, 2 mL vial 40026011000036103 Vincristine Sulfate (DBL) 2 mg/2 mL injection solution, 2 mL vial 3672011000036109 Vincristine Sulfate (DBL) 3672011000036109 Vincristine Sulfate (DBL) 46350011000036108 vincristine sulfate 2 mg/2 mL injection, 2 mL vial 45109011000036101 vincristine sulfate 2 mg/2 mL injection, vial 21749011000036104 vincristine +19316011000036106 Gemzar 1 g powder for injection, 1 vial 49727 12606011000036109 Gemzar 1 g powder for injection, 1 vial 5586011000036100 Gemzar 1 g powder for injection, vial 4296011000036100 Gemzar 4296011000036100 Gemzar 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +975661000168109 Amoxiclav 1000/200 (Juno) powder for injection, 5 x 1.2 g vials 269159 975651000168107 Amoxiclav 1000/200 (Juno) powder for injection, 5 x 1.2 g vials 975601000168108 Amoxiclav 1000/200 (Juno) powder for injection, 1.2 g vial 975581000168104 Amoxiclav 1000/200 (Juno) 975581000168104 Amoxiclav 1000/200 (Juno) 975641000168105 amoxicillin 1 g + clavulanic acid 200 mg injection, 5 x 1.2 g vials 975591000168101 amoxicillin 1 g + clavulanic acid 200 mg injection, 1.2 g vial 21360011000036101 amoxicillin + clavulanic acid +1078461000168108 Atomoxetine (GPPL) 25 mg hard capsule, 14, blister pack 234834 1078451000168106 Atomoxetine (GPPL) 25 mg hard capsule, 14 1078421000168103 Atomoxetine (GPPL) 25 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830451000168107 atomoxetine 25 mg capsule, 14 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +849311000168108 Vzole 50 mg film-coated tablet, 50, blister pack 238239 849301000168105 Vzole 50 mg film-coated tablet, 50 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46818011000036102 voriconazole 50 mg tablet, 50 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +20940011000036106 Microval 30 microgram film-coated tablet, 112 tablets [4 x 28], blister pack 94249 14094011000036102 Microval 30 microgram film-coated tablet, 112 tablets [4 x 28] 7372011000036109 Microval 30 microgram film-coated tablet, 1 tablet 3148011000036107 Microval 3148011000036107 Microval 28144011000036102 levonorgestrel 30 microgram tablet, 112 tablets [4 x 28] 23453011000036101 levonorgestrel 30 microgram tablet 21391011000036105 levonorgestrel +60104011000036101 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL vial 12724 56065011000036100 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL vial 53776011000036108 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL vial 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 27088011000036101 folinic acid 50 mg/5 mL injection, 5 mL vial 22457011000036103 folinic acid 50 mg/5 mL injection, vial 21617011000036108 folinic acid +33499011000036109 Primoteston Depot 250 mg/mL injection, 3 x 1 mL syringes 10707 33243011000036102 Primoteston Depot 250 mg/mL injection, 3 x 1 mL syringes 33007011000036106 Primoteston Depot 250 mg/mL injection, syringe 64111000168100 Primoteston Depot 64111000168100 Primoteston Depot 33773011000036105 testosterone enantate 250 mg/mL injection, 3 x 1 mL syringes 33654011000036100 testosterone enantate 250 mg/mL injection, syringe 33622011000036105 testosterone enantate +933232041000036107 Fluorouracil (Ebewe) 500 mg/10 mL injection solution, 5 x 10 mL vials 98544 933226541000036100 Fluorouracil (Ebewe) 500 mg/10 mL injection solution, 5 x 10 mL vials 7555011000036102 Fluorouracil (Ebewe) 500 mg/10 mL injection solution, 10 mL vial 932710011000036102 Fluorouracil (Ebewe) 932710011000036102 Fluorouracil (Ebewe) 933225911000036101 fluorouracil 500 mg/10 mL injection, 5 x 10 mL vials 23577011000036103 fluorouracil 500 mg/10 mL injection, vial 21481011000036100 fluorouracil +692981000168105 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet, 20, blister pack 215344 692971000168107 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet, 20 692821000168103 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692961000168101 amitriptyline hydrochloride 10 mg tablet, 20 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1108431000168104 Midavel 5 mg/mL injection solution, 10 x 1 mL ampoules 207242 1108421000168102 Midavel 5 mg/mL injection solution, 10 x 1 mL ampoules 1108311000168100 Midavel 5 mg/mL injection solution, ampoule 1108021000168109 Midavel 1108021000168109 Midavel 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +59770011000036108 Paracetamol (Guardian) 500 mg uncoated tablet, 96, blister pack 100679 55652011000036107 Paracetamol (Guardian) 500 mg uncoated tablet, 96 53656011000036104 Paracetamol (Guardian) 500 mg uncoated tablet 53128011000036100 Paracetamol (Guardian) 53128011000036100 Paracetamol (Guardian) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1114871000168105 Ketizenol 200 mg film-coated tablet, 60, blister pack 202256 1114861000168104 Ketizenol 200 mg film-coated tablet, 60 1114831000168107 Ketizenol 200 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +69305011000036109 Hirudoid 0.3% cream, 40 g, tube 21033 67105011000036105 Hirudoid 0.3% cream, 40 g 65437011000036107 Hirudoid 0.3% cream 64958011000036102 Hirudoid 64958011000036102 Hirudoid 71673011000036103 heparinoids 0.3% cream, 40 g 70119011000036104 heparinoids 0.3% cream 69837011000036105 heparinoids +61183011000036106 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 250, bottle 75200 57409011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 250 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63848011000036107 paracetamol 500 mg tablet, 250 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69035011000036104 Whitfield's Half Strength (David Craig) ointment, 500 g, jar 14076 66837011000036102 Whitfield's Half Strength (David Craig) ointment, 500 g 65495011000036106 Whitfield's Half Strength (David Craig) ointment 65047011000036102 Whitfield's Half Strength (David Craig) 65047011000036102 Whitfield's Half Strength (David Craig) 71451011000036100 benzoic acid 3% + salicylic acid 1.5% ointment, 500 g 70013011000036108 benzoic acid 3% + salicylic acid 1.5% ointment 52238011000036109 benzoic acid + salicylic acid +1016331000168101 Aripiprazole (GX) 5 mg uncoated tablet, 30, blister pack 217214 1016321000168104 Aripiprazole (GX) 5 mg uncoated tablet, 30 1016201000168101 Aripiprazole (GX) 5 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +907021000168106 Amisulpride (AN) 50 mg uncoated tablet, 30, blister pack 234697 907011000168104 Amisulpride (AN) 50 mg uncoated tablet, 30 907001000168102 Amisulpride (AN) 50 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +34698011000036101 Dilasig 25 mg film-coated tablet, 60, blister pack 141462 34282011000036102 Dilasig 25 mg film-coated tablet, 60 34009011000036102 Dilasig 25 mg film-coated tablet 33959011000036100 Dilasig 33959011000036100 Dilasig 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +812861000168101 Citalopram (Amneal) 20 mg film-coated tablet, 7, blister pack 158881 812851000168103 Citalopram (Amneal) 20 mg film-coated tablet, 7 812841000168100 Citalopram (Amneal) 20 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1009821000168100 Azacitidine (Dr. Reddy's) 100 mg powder for injection, 1 vial 231947 1009811000168107 Azacitidine (Dr. Reddy's) 100 mg powder for injection, 1 vial 1009801000168109 Azacitidine (Dr. Reddy's) 100 mg powder for injection, 100 mg vial 1009791000168108 Azacitidine (Dr. Reddy's) 1009791000168108 Azacitidine (Dr. Reddy's) 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +731471000168109 Ostira 5 mg/100 mL injection solution, 100 mL bag 188019 731461000168103 Ostira 5 mg/100 mL injection solution, 100 mL bag 731441000168102 Ostira 5 mg/100 mL injection solution, 100 mL bag 731421000168108 Ostira 731421000168108 Ostira 731451000168100 zoledronic acid 5 mg/100 mL injection, 100 mL bag 731431000168106 zoledronic acid 5 mg/100 mL injection, bag 21790011000036102 zoledronic acid +949861000168106 Frusemide (Sanofi) 40 mg/4 mL injection solution, 5 x 4 mL ampoules 144455 949851000168109 Frusemide (Sanofi) 40 mg/4 mL injection solution, 5 x 4 mL ampoules 949841000168107 Frusemide (Sanofi) 40 mg/4 mL injection solution, 4 mL ampoule 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 46741011000036103 furosemide (frusemide) 40 mg/4 mL injection, 5 x 4 mL ampoules 45293011000036103 furosemide (frusemide) 40 mg/4 mL injection, ampoule 21329011000036103 furosemide (frusemide) +1014321000168108 Temozolomide (Apotex) 100 mg hard capsule, 5, bottle 206883 1014311000168101 Temozolomide (Apotex) 100 mg hard capsule, 5 1014301000168104 Temozolomide (Apotex) 100 mg hard capsule 1014191000168108 Temozolomide (Apotex) 1014191000168108 Temozolomide (Apotex) 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +890091000168100 Bicalutamide (CH) 50 mg film-coated tablet, 28, bottle 129114 877451000168106 Bicalutamide (CH) 50 mg film-coated tablet, 28 877441000168109 Bicalutamide (CH) 50 mg film-coated tablet 877001000168101 Bicalutamide (CH) 877001000168101 Bicalutamide (CH) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1014161000168101 Valsartan (Apotex) 80 mg film-coated tablet, 28, blister pack 185858 1014151000168103 Valsartan (Apotex) 80 mg film-coated tablet, 28 1013871000168103 Valsartan (Apotex) 80 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63784011000036105 valsartan 80 mg tablet, 28 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +933232001000036109 Epirubicin Hydrochloride (DBL) 50 mg/25 mL injection solution, 25 mL vial 83023 933226511000036101 Epirubicin Hydrochloride (DBL) 50 mg/25 mL injection solution, 25 mL vial 933221311000036104 Epirubicin Hydrochloride (DBL) 50 mg/25 mL injection solution, 25 mL vial 4322011000036104 Epirubicin Hydrochloride (DBL) 4322011000036104 Epirubicin Hydrochloride (DBL) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +740131000168106 Alendronate D3 70 mg/70 microgram (Amneal) uncoated tablet, 1, blister pack 206932 740121000168108 Alendronate D3 70 mg/70 microgram (Amneal) uncoated tablet, 1 740111000168101 Alendronate D3 70 mg/70 microgram (Amneal) uncoated tablet 740101000168104 Alendronate D3 70 mg/70 microgram (Amneal) 740101000168104 Alendronate D3 70 mg/70 microgram (Amneal) 668111000168101 alendronate 70 mg + colecalciferol 70 microgram tablet, 1 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +32544011000036104 Glucohexal-1000 1 g film-coated tablet, 90, blister pack 123665 32337011000036108 Glucohexal-1000 1 g film-coated tablet, 90 32214011000036100 Glucohexal-1000 1 g film-coated tablet 61101000168100 Glucohexal-1000 61101000168100 Glucohexal-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1027121000168109 Esomeprazole (Pharmacor) 20 mg enteric tablet, 7, blister pack 210855 1027111000168102 Esomeprazole (Pharmacor) 20 mg enteric tablet, 7 1027101000168100 Esomeprazole (Pharmacor) 20 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +1072111000168101 Codagesic uncoated tablet, 20, blister pack 235410 1072101000168104 Codagesic uncoated tablet, 20 1072091000168109 Codagesic uncoated tablet 26021000036100 Codagesic 26021000036100 Codagesic 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +911361000168108 Cavstat 20 mg film-coated tablet, 14, blister pack 234514 911351000168106 Cavstat 20 mg film-coated tablet, 14 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911341000168109 rosuvastatin 20 mg tablet, 14 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +60164011000036100 Exforge 5/80 film-coated tablet, 28, blister pack 130787 56123011000036102 Exforge 5/80 film-coated tablet, 28 53801011000036105 Exforge 5/80 film-coated tablet 29171000168101 Exforge 5/80 29171000168101 Exforge 5/80 63227011000036104 amlodipine 5 mg + valsartan 80 mg tablet, 28 61897011000036105 amlodipine 5 mg + valsartan 80 mg tablet 61712011000036107 amlodipine + valsartan +780831000168107 Fentanyl (Apo) 37 microgram/hour patch, 4, sachet 152566 780821000168109 Fentanyl (Apo) 37 microgram/hour patch, 4 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780811000168102 fentanyl 37 microgram/hour patch, 4 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +889931000168106 Gastrolyte Ready to Drink Orange oral liquid solution, 4 x 250 mL, bottles 198536 889921000168108 Gastrolyte Ready to Drink Orange oral liquid solution, 4 x 250 mL 889841000168106 Gastrolyte Ready to Drink Orange oral liquid solution 889821000168100 Gastrolyte Ready to Drink 889821000168100 Gastrolyte Ready to Drink 889911000168101 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid, 4 x 250 mL 889831000168102 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +866511000168101 Amitriptyline (RS) 10 mg tablet, 50, blister pack 232140 866501000168104 Amitriptyline (RS) 10 mg tablet, 50 866491000168106 Amitriptyline (RS) 10 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +926893011000036106 Optimark 1.65 g/5 mL injection solution, 5 mL vial 75485 926289011000036100 Optimark 1.65 g/5 mL injection solution, 5 mL vial 925733011000036103 Optimark 1.65 g/5 mL injection solution, 5 mL vial 6001000168105 Optimark 6001000168105 Optimark 927388011000036101 gadoversetamide 1.65 g/5 mL injection, 5 mL vial 927029011000036103 gadoversetamide 1.65 g/5 mL injection, vial 926966011000036108 gadoversetamide +1048551000168108 Bupretec 30 microgram/hour patch, 4, sachet 234735 1048541000168106 Bupretec 30 microgram/hour patch, 4 1048481000168100 Bupretec 30 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1048531000168102 buprenorphine 30 microgram/hour patch, 4 772901000168100 buprenorphine 30 microgram/hour patch 21232011000036101 buprenorphine +1117111000168100 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 14, blister pack 158169 1117101000168103 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 14 1117071000168107 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 922594011000036108 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 14 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +68898011000036101 Fybogel orange 3.5 g powder for oral liquid, 10 sachets 106708 66552011000036102 Fybogel orange 3.5 g powder for oral liquid, 10 sachets 5748011000036108 Fybogel orange 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 71280011000036102 dry psyllium husk 3.5 g powder for oral liquid, 10 sachets 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +920804011000036102 Diazepam (GA) 5 mg uncoated tablet, 50, blister pack 93550 920483011000036105 Diazepam (GA) 5 mg uncoated tablet, 50 920214011000036109 Diazepam (GA) 5 mg uncoated tablet 920062011000036106 Diazepam (GA) 920062011000036106 Diazepam (GA) 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +60549011000036104 Disprin Regular 300 mg dispersible tablet, 100, strip pack 15366 56507011000036109 Disprin Regular 300 mg dispersible tablet, 100 53946011000036100 Disprin Regular 300 mg dispersible tablet 17321000168103 Disprin Regular 17321000168103 Disprin Regular 83661000036100 aspirin 300 mg dispersible tablet, 100 83601000036104 aspirin 300 mg dispersible tablet 21719011000036107 aspirin +60331011000036101 Robitussin Chesty Cough and Nasal Congestion PS oral liquid solution, 25 mL, bottle 13885 56290011000036102 Robitussin Chesty Cough and Nasal Congestion PS oral liquid solution, 25 mL 53862011000036100 Robitussin Chesty Cough and Nasal Congestion PS oral liquid solution, 10 mL 53589011000036109 Robitussin Chesty Cough and Nasal Congestion PS 53589011000036109 Robitussin Chesty Cough and Nasal Congestion PS 63294011000036101 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 25 mL 62082011000036107 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +19239011000036104 Diflucan 100 mg/50 mL injection solution, 50 mL vial 47461 12530011000036107 Diflucan 100 mg/50 mL injection solution, 50 mL vial 6009011000036106 Diflucan 100 mg/50 mL injection solution, 50 mL vial 11811000168107 Diflucan 11811000168107 Diflucan 27177011000036102 fluconazole 100 mg/50 mL injection, 50 mL vial 22539011000036100 fluconazole 100 mg/50 mL injection, vial 21365011000036105 fluconazole +662921000168108 Irbesartan HCT 300/12.5 (GH) film-coated tablet, 30, blister pack 190124 662911000168101 Irbesartan HCT 300/12.5 (GH) film-coated tablet, 30 662901000168104 Irbesartan HCT 300/12.5 (GH) film-coated tablet 662891000168103 Irbesartan HCT 300/12.5 (GH) 662891000168103 Irbesartan HCT 300/12.5 (GH) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +971471000168104 Lypralin 75 mg hard capsule, 60, bottle 235866 969821000168107 Lypralin 75 mg hard capsule, 60 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +925179011000036106 Lercan 20 mg film-coated tablet, 7, blister pack 152708 924716011000036108 Lercan 20 mg film-coated tablet, 7 924429011000036103 Lercan 20 mg film-coated tablet 924368011000036107 Lercan 924368011000036107 Lercan 925445011000036109 lercanidipine hydrochloride 20 mg tablet, 7 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +907181000168106 Celecoxib (BW) 200 mg hard capsule, 50, blister pack 196177 907171000168108 Celecoxib (BW) 200 mg hard capsule, 50 906951000168104 Celecoxib (BW) 200 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1005711000168102 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 162852 1005701000168100 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 1005691000168100 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 10 mL ampoule 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1004951000168104 ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules 1004931000168105 ropivacaine hydrochloride 75 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +1039871000168109 Aspramide 10 mg film-coated tablet, 50, blister pack 196460 1039861000168103 Aspramide 10 mg film-coated tablet, 50 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 671911000168100 metoclopramide hydrochloride 10 mg tablet, 50 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +761541000168109 Cyramza 100 mg/10 mL concentrated injection, 2 x 10 mL vials 227351 761531000168100 Cyramza 100 mg/10 mL concentrated injection, 2 x 10 mL vials 731821000168105 Cyramza 100 mg/10 mL concentrated injection, 10 mL vial 731771000168103 Cyramza 731771000168103 Cyramza 761521000168103 ramucirumab 100 mg/10 mL injection, 2 x 10 mL vials 731811000168103 ramucirumab 100 mg/10 mL injection, vial 731801000168101 ramucirumab +920812011000036109 Irinotecan Hydrochloride Trihydrate (DBL) 100 mg/5 mL concentrated injection, 5 mL vial 98118 920491011000036108 Irinotecan Hydrochloride Trihydrate (DBL) 100 mg/5 mL concentrated injection, 5 mL vial 920222011000036105 Irinotecan Hydrochloride Trihydrate (DBL) 100 mg/5 mL concentrated injection, 5 mL vial 32197011000036108 Irinotecan Hydrochloride Trihydrate (DBL) 32197011000036108 Irinotecan Hydrochloride Trihydrate (DBL) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +864341000168102 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 144669 864331000168106 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 864231000168104 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 864321000168108 glucose monohydrate 5% (2.5 g/50 mL) injection, 50 mL bag 864221000168102 glucose monohydrate 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +675981000168108 Vasafil 100 mg film-coated tablet, 12, blister pack 172068 675971000168105 Vasafil 100 mg film-coated tablet, 12 675931000168107 Vasafil 100 mg film-coated tablet 675921000168109 Vasafil 675921000168109 Vasafil 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +74912011000036105 Black Snake Antivenom (CSL) 18 000 units intravenous infusion injection, 1 vial 74894 74399011000036109 Black Snake Antivenom (CSL) 18 000 units intravenous infusion injection, 1 vial 73922011000036103 Black Snake Antivenom (CSL) 18 000 units intravenous infusion injection, vial 73780011000036101 Black Snake Antivenom (CSL) 73780011000036101 Black Snake Antivenom (CSL) 75496011000036100 king brown snake antivenom 18 000 units injection, 1 vial 75096011000036105 king brown snake antivenom 18 000 units injection, vial 74950011000036100 king brown snake antivenom +45071000036108 Olanzapine (Stada) 5 mg tablet, 28, blister pack 152171 42841000036100 Olanzapine (Stada) 5 mg tablet, 28 40631000036105 Olanzapine (Stada) 5 mg tablet 20741000168100 Olanzapine (Stada) 20741000168100 Olanzapine (Stada) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +19205011000036107 Melizide 5 mg uncoated tablet, 100, blister pack 46946 12495011000036101 Melizide 5 mg uncoated tablet, 100 5909011000036103 Melizide 5 mg uncoated tablet 3977011000036107 Melizide 3977011000036107 Melizide 27152011000036101 glipizide 5 mg tablet, 100 22515011000036105 glipizide 5 mg tablet 21747011000036106 glipizide +79007011000036101 Momex SR 10 mg modified release tablet, 20, blister pack 132253 78804011000036106 Momex SR 10 mg modified release tablet, 20 78628011000036102 Momex SR 10 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +849471000168107 Vzole 50 mg film-coated tablet, 28, bottle 238240 849231000168105 Vzole 50 mg film-coated tablet, 28 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46816011000036101 voriconazole 50 mg tablet, 28 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +933230351000036109 Escitalopram (DRLA) 10 mg film-coated tablet, 10, blister pack 165129 933224221000036100 Escitalopram (DRLA) 10 mg film-coated tablet, 10 933220141000036106 Escitalopram (DRLA) 10 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 933224231000036103 escitalopram 10 mg tablet, 10 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +864661000168105 Amitriptyline (AN) 50 mg tablet, 1000, bottle 232121 864611000168107 Amitriptyline (AN) 50 mg tablet, 1000 864541000168105 Amitriptyline (AN) 50 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +61667011000036100 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet, 100, bottle 97353 57589011000036102 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet, 100 54356011000036109 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1048321000168109 Lamotrigine (Sandoz) Dispersible 50 mg uncoated tablet, 56, blister pack 291470 1048311000168102 Lamotrigine (Sandoz) Dispersible 50 mg uncoated tablet, 56 1048301000168100 Lamotrigine (Sandoz) Dispersible 50 mg uncoated tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1091431000168103 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 30, blister pack 285250 1091421000168101 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 30 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +44572011000036101 Gabapentin (Terry White Chemists) 400 mg hard capsule, 100, blister pack 81783 42025011000036100 Gabapentin (Terry White Chemists) 400 mg hard capsule, 100 40327011000036101 Gabapentin (Terry White Chemists) 400 mg hard capsule 39628011000036105 Gabapentin (Terry White Chemists) 39628011000036105 Gabapentin (Terry White Chemists) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +18417011000036102 Parlodel 2.5 mg uncoated tablet, 60, blister pack 13367 11976011000036101 Parlodel 2.5 mg uncoated tablet, 60 4620011000036107 Parlodel 2.5 mg uncoated tablet 3938011000036105 Parlodel 3938011000036105 Parlodel 27286011000036109 bromocriptine 2.5 mg tablet, 60 22641011000036106 bromocriptine 2.5 mg tablet 21300011000036100 bromocriptine +701101000168100 Depreta 30 mg enteric capsule, 28, blister pack 198999 701091000168105 Depreta 30 mg enteric capsule, 28 701081000168107 Depreta 30 mg enteric capsule 701041000168102 Depreta 701041000168102 Depreta 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +975481000168103 Amoxiclav 500/100 (Juno) powder for injection, 5 x 600 mg vials 269162 975471000168101 Amoxiclav 500/100 (Juno) powder for injection, 5 x 600 mg vials 975421000168102 Amoxiclav 500/100 (Juno) powder for injection, 600 mg vial 975401000168106 Amoxiclav 500/100 (Juno) 975401000168106 Amoxiclav 500/100 (Juno) 975461000168107 amoxicillin 500 mg + clavulanic acid 100 mg injection, 5 x 600 mg vials 975411000168109 amoxicillin 500 mg + clavulanic acid 100 mg injection, 600 mg vial 21360011000036101 amoxicillin + clavulanic acid +727041000168100 Ofev 100 mg soft capsule, 60, blister pack 226065 727031000168109 Ofev 100 mg soft capsule, 60 727011000168104 Ofev 100 mg soft capsule 726971000168108 Ofev 726971000168108 Ofev 727021000168106 nintedanib 100 mg capsule, 60 727001000168102 nintedanib 100 mg capsule 726991000168109 nintedanib +866831000168109 Amitriptyline (Mylan) 25 mg film-coated tablet, 1000, blister pack 232800 866821000168106 Amitriptyline (Mylan) 25 mg film-coated tablet, 1000 866751000168108 Amitriptyline (Mylan) 25 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +82875011000036107 Jurnista 4 mg modified release tablet, 10, blister pack 155995 82782011000036106 Jurnista 4 mg modified release tablet, 10 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 83002011000036101 hydromorphone hydrochloride 4 mg modified release tablet, 10 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +19021011000036107 Feldene-D 10 mg dispersible tablet, 50, blister pack 37311 12326011000036109 Feldene-D 10 mg dispersible tablet, 50 5817011000036104 Feldene-D 10 mg dispersible tablet 1671000168100 Feldene-D 1671000168100 Feldene-D 27881011000036106 piroxicam 10 mg dispersible tablet, 50 23209011000036106 piroxicam 10 mg dispersible tablet 21531011000036103 piroxicam +60648011000036102 Tixylix Night Cough and Cold 2 Years+ oral liquid solution, 100 mL, bottle 27565 56606011000036104 Tixylix Night Cough and Cold 2 Years+ oral liquid solution, 100 mL 54002011000036100 Tixylix Night Cough and Cold 2 Years+ oral liquid solution, 5 mL 34151000168109 Tixylix Night Cough and Cold 2 Years+ 34151000168109 Tixylix Night Cough and Cold 2 Years+ 63458011000036103 pholcodine 1.5 mg/5 mL + promethazine hydrochloride 1.5 mg/5 mL oral liquid, 100 mL 61978011000036108 pholcodine 1.5 mg/5 mL + promethazine hydrochloride 1.5 mg/5 mL oral liquid 61740011000036104 pholcodine + promethazine +913691000168107 Cirofaxin 250 mg film-coated tablet, 20, blister pack 114043 913681000168109 Cirofaxin 250 mg film-coated tablet, 20 913631000168108 Cirofaxin 250 mg film-coated tablet 933240751000036107 Cirofaxin 933240751000036107 Cirofaxin 932363011000036105 ciprofloxacin 250 mg tablet, 20 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +697631000168101 Vascalace 2.5 mg capsule, 30, blister pack 203712 697281000168102 Vascalace 2.5 mg capsule, 30 697271000168100 Vascalace 2.5 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +729231000168105 Aspirin EC (Trust) 100 mg enteric tablet, 168, blister pack 177615 729221000168107 Aspirin EC (Trust) 100 mg enteric tablet, 168 729171000168102 Aspirin EC (Trust) 100 mg enteric tablet 729161000168108 Aspirin EC (Trust) 729161000168108 Aspirin EC (Trust) 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +680241000168105 Clindamycin (Apo) 150 mg hard capsule, 100, blister pack 214377 680231000168101 Clindamycin (Apo) 150 mg hard capsule, 100 678951000168108 Clindamycin (Apo) 150 mg hard capsule 678941000168106 Clindamycin (Apo) 678941000168106 Clindamycin (Apo) 922536011000036105 clindamycin 150 mg capsule, 100 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +729211000168100 Aspirin EC (Trust) 100 mg enteric tablet, 84, blister pack 177615 729201000168103 Aspirin EC (Trust) 100 mg enteric tablet, 84 729171000168102 Aspirin EC (Trust) 100 mg enteric tablet 729161000168108 Aspirin EC (Trust) 729161000168108 Aspirin EC (Trust) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +52732011000036102 Pristiq 50 mg modified release tablet, 28, blister pack 170674 52544011000036108 Pristiq 50 mg modified release tablet, 28 52410011000036103 Pristiq 50 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +52732011000036102 Pristiq 50 mg modified release tablet, 28, blister pack 133520 52544011000036108 Pristiq 50 mg modified release tablet, 28 52410011000036103 Pristiq 50 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1087141000168106 Zorvolex 18 mg hard capsule, 3, blister pack 282521 1087131000168102 Zorvolex 18 mg hard capsule, 3 1087081000168102 Zorvolex 18 mg hard capsule 1087021000168101 Zorvolex 1087021000168101 Zorvolex 1087121000168100 diclofenac 18 mg capsule, 3 1087071000168100 diclofenac 18 mg capsule 21288011000036105 diclofenac +933230311000036105 Citalopram (GA) 20 mg film-coated tablet, 28, blister pack 158852 933224351000036102 Citalopram (GA) 20 mg film-coated tablet, 28 933220071000036103 Citalopram (GA) 20 mg film-coated tablet 933219141000036105 Citalopram (GA) 933219141000036105 Citalopram (GA) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +866811000168104 Amitriptyline (Mylan) 25 mg film-coated tablet, 90, blister pack 232800 866801000168102 Amitriptyline (Mylan) 25 mg film-coated tablet, 90 866751000168108 Amitriptyline (Mylan) 25 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +18220011000036109 Revatio 20 mg film-coated tablet, 90, blister pack 119102 11601011000036103 Revatio 20 mg film-coated tablet, 90 5318011000036101 Revatio 20 mg film-coated tablet 3853011000036107 Revatio 3853011000036107 Revatio 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +1108751000168103 Midazolam (GenRx) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 217661 1108741000168100 Midazolam (GenRx) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1108731000168109 Midazolam (GenRx) 5 mg/5 mL injection solution, 5 mL ampoule 1108721000168106 Midazolam (GenRx) 1108721000168106 Midazolam (GenRx) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +43638011000036105 Zedd 500 mg film-coated tablet, 1, blister pack 107602 41157011000036104 Zedd 500 mg film-coated tablet, 1 39959011000036102 Zedd 500 mg film-coated tablet 39708011000036106 Zedd 39708011000036106 Zedd 46128011000036104 azithromycin 500 mg tablet, 1 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +928829011000036107 Rispernia 1 mg film-coated tablet, 60, bottle 127920 928191011000036107 Rispernia 1 mg film-coated tablet, 60 927850011000036109 Rispernia 1 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1105871000168108 Zolpidem (AN) 10 mg film-coated tablet, 10, blister pack 131917 1105861000168102 Zolpidem (AN) 10 mg film-coated tablet, 10 698831000168103 Zolpidem (AN) 10 mg film-coated tablet 698821000168101 Zolpidem (AN) 698821000168101 Zolpidem (AN) 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +60922011000036101 Paracetamol Drops (Soul Pattinson) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 61741 56876011000036101 Paracetamol Drops (Soul Pattinson) Colour Free 100 mg/mL oral liquid solution, 20 mL 54110011000036106 Paracetamol Drops (Soul Pattinson) Colour Free 100 mg/mL oral liquid solution 61661000168108 Paracetamol Drops (Soul Pattinson) 61661000168108 Paracetamol Drops (Soul Pattinson) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +928985011000036107 Valaciclovir (Chemmart) 500 mg film-coated tablet, 100, blister pack 158913 928346011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet, 100 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +694671000168109 Sildaccord 100 mg film-coated tablet, 4, blister pack 188710 694661000168103 Sildaccord 100 mg film-coated tablet, 4 694651000168100 Sildaccord 100 mg film-coated tablet 694611000168101 Sildaccord 694611000168101 Sildaccord 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +87724011000036105 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 10, blister pack 164469 87490011000036100 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 10 87339011000036107 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +37607011000036107 Pronestyl 1 g/10 mL injection solution, 10 mL vial 19276 36874011000036103 Pronestyl 1 g/10 mL injection solution, 10 mL vial 36209011000036102 Pronestyl 1 g/10 mL injection solution, 10 mL vial 35997011000036109 Pronestyl 35997011000036109 Pronestyl 38761011000036103 procainamide hydrochloride 1 g/10 mL injection, 10 mL vial 37980011000036106 procainamide hydrochloride 1 g/10 mL injection, vial 37799011000036105 procainamide +1037471000168103 Rotarix (5 x vaccine vials, 5 x inert diluent syringes), 1 pack, composite pack 116532 1037461000168109 Rotarix (5 x vaccine vials, 5 x inert diluent syringes), 1 pack 1037401000168108 Rotarix 1 million CCID50 units powder for oral liquid, 1 million CCID50 units vial 73722011000036105 Rotarix 73722011000036105 Rotarix 1037451000168107 rotavirus live vaccine powder for oral liquid [5 vials] (&) inert substance diluent [5 syringes], 1 pack 1037391000168106 rotavirus live vaccine powder for oral liquid, vial 822861000168108 rotavirus live vaccine +1037471000168103 Rotarix (5 x vaccine vials, 5 x inert diluent syringes), 1 pack, composite pack 116532 1037461000168109 Rotarix (5 x vaccine vials, 5 x inert diluent syringes), 1 pack 1037411000168106 Rotarix (inert substance) diluent, syringe 73722011000036105 Rotarix 73722011000036105 Rotarix 1037451000168107 rotavirus live vaccine powder for oral liquid [5 vials] (&) inert substance diluent [5 syringes], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +933095011000036104 Oncotaxel 20 mg/mL concentrated injection, 1 mL vial 167642 932902011000036108 Oncotaxel 20 mg/mL concentrated injection, 1 mL vial 932756011000036106 Oncotaxel 20 mg/mL concentrated injection, vial 932702011000036101 Oncotaxel 932702011000036101 Oncotaxel 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +50633011000036105 Clavulin Duo 500/125 film-coated tablet, 2, blister pack 142690 49659011000036100 Clavulin Duo 500/125 film-coated tablet, 2 7026011000036108 Clavulin Duo 500/125 film-coated tablet 39301000168107 Clavulin Duo 500/125 39301000168107 Clavulin Duo 500/125 51544011000036109 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 2 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +797691000168105 Citalopram (A) 20 mg film-coated tablet, 14, blister pack 234595 797411000168103 Citalopram (A) 20 mg film-coated tablet, 14 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1010141000168105 Sildenafil (Apotex) 100 mg film-coated tablet, 4, blister pack 164809 1010131000168101 Sildenafil (Apotex) 100 mg film-coated tablet, 4 1010101000168108 Sildenafil (Apotex) 100 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +81076011000036102 Seroquel XR 150 mg modified release tablet, 30, blister pack 153883 80585011000036109 Seroquel XR 150 mg modified release tablet, 30 80201011000036103 Seroquel XR 150 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 81660011000036103 quetiapine 150 mg modified release tablet, 30 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +60348011000036109 Codoxamol uncoated tablet, 20, blister pack 140610 56307011000036107 Codoxamol uncoated tablet, 20 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +61500011000036106 Proven 200 mg film-coated tablet, 30, blister pack 92447 57425011000036104 Proven 200 mg film-coated tablet, 30 54299011000036101 Proven 200 mg film-coated tablet 53524011000036103 Proven 53524011000036103 Proven 63849011000036104 ibuprofen 200 mg tablet, 30 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1097931000168103 Sinus and Nasal Relief (Amcal) 60 mg uncoated tablet, 12, blister pack 226431 1097921000168101 Sinus and Nasal Relief (Amcal) 60 mg uncoated tablet, 12 1097911000168108 Sinus and Nasal Relief (Amcal) 60 mg uncoated tablet 53426011000036100 Sinus and Nasal Relief (Amcal) 53426011000036100 Sinus and Nasal Relief (Amcal) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +1113081000168103 Allopurinol (TN) 300 mg uncoated tablet, 75, blister pack 269655 1113071000168101 Allopurinol (TN) 300 mg uncoated tablet, 75 1112951000168100 Allopurinol (TN) 300 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1113061000168107 allopurinol 300 mg tablet, 75 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +1048961000168100 Neodol Forte 500/30 tablet, 2, blister pack 220981 1048951000168102 Neodol Forte 500/30 tablet, 2 1048941000168104 Neodol Forte 500/30 tablet 1048931000168108 Neodol Forte 500/30 1048931000168108 Neodol Forte 500/30 1047211000168109 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 2 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +923843011000036108 Tramadol Hydrochloride (Apo) 50 mg hard capsule, 20, blister pack 158470 923389011000036103 Tramadol Hydrochloride (Apo) 50 mg hard capsule, 20 923053011000036107 Tramadol Hydrochloride (Apo) 50 mg hard capsule 53881000168108 Tramadol Hydrochloride (Apo) 53881000168108 Tramadol Hydrochloride (Apo) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +769581000168103 Dexamethasone (Mylan) 4 mg/mL injection solution, 10 x 1 mL vials 163200 769571000168101 Dexamethasone (Mylan) 4 mg/mL injection solution, 10 x 1 mL vials 769511000168109 Dexamethasone (Mylan) 4 mg/mL injection solution, vial 769451000168109 Dexamethasone (Mylan) 769451000168109 Dexamethasone (Mylan) 769541000168108 dexamethasone phosphate 4 mg/mL injection, 10 x 1 mL vials 676681000168107 dexamethasone phosphate 4 mg/mL injection, vial 21511011000036107 dexamethasone phosphate +921864011000036109 Perindopril Erbumine (Apo) 2 mg uncoated tablet, 30, blister pack 151911 921423011000036106 Perindopril Erbumine (Apo) 2 mg uncoated tablet, 30 921001011000036109 Perindopril Erbumine (Apo) 2 mg uncoated tablet 10411000168102 Perindopril Erbumine (Apo) 10411000168102 Perindopril Erbumine (Apo) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +19672011000036105 Macrodantin 50 mg hard capsule, 30, bottle 60064 12935011000036107 Macrodantin 50 mg hard capsule, 30 6225011000036106 Macrodantin 50 mg hard capsule 3510011000036109 Macrodantin 3510011000036109 Macrodantin 27450011000036101 nitrofurantoin 50 mg capsule, 30 22797011000036102 nitrofurantoin 50 mg capsule 21498011000036105 nitrofurantoin +915741000168108 Cervarix injection suspension, 0.5 mL vial 126115 915731000168104 Cervarix injection suspension, 0.5 mL vial 915711000168109 Cervarix injection suspension, 0.5 mL vial 73753011000036102 Cervarix 73753011000036102 Cervarix 915721000168102 human papillomavirus bivalent vaccine injection, 0.5 mL vial 915701000168106 human papillomavirus bivalent vaccine injection, 0.5 mL vial 823121000168104 human papillomavirus bivalent vaccine +39393011000036102 Tryzan 5 mg uncoated tablet, 7, blister pack 129918 39277011000036107 Tryzan 5 mg uncoated tablet, 7 39205011000036105 Tryzan 5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39475011000036103 ramipril 5 mg tablet, 7 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +1010121000168104 Sildenafil (Apotex) 100 mg film-coated tablet, 1, blister pack 164809 1010111000168106 Sildenafil (Apotex) 100 mg film-coated tablet, 1 1010101000168108 Sildenafil (Apotex) 100 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 760371000168103 sildenafil 100 mg tablet, 1 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +735741000168108 Fluconazole One (Apohealth) 150 mg hard capsule, 1, blister pack 735731000168104 Fluconazole One (Apohealth) 150 mg hard capsule, 1 735721000168102 Fluconazole One (Apohealth) 150 mg hard capsule 735711000168109 Fluconazole One (Apohealth) 735711000168109 Fluconazole One (Apohealth) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +86182011000036104 Glamin intravenous infusion injection, 500 mL bottle 77750 85789011000036103 Glamin intravenous infusion injection, 500 mL bottle 85403011000036109 Glamin intravenous infusion injection, 500 mL bottle 85245011000036102 Glamin 85245011000036102 Glamin 86472011000036107 alanine 8 g/500 mL + arginine 5.65 g/500 mL + aspartic acid 1.7 g/500 mL + glutamic acid 2.8 g/500 mL + glycylglutamine monohydrate 15.14 g/500 mL (equivalent to 5.14 g of glycine and 10 g of glutamine ) + glycyltyrosine dihydrate 1.73 g/500 mL (equivalent to 470 mg of glycine and 1.14 g of tyrosine ) + histidine 3.4 g/500 mL + isoleucine 2.8 g/500 mL + leucine 3.95 g/500 mL + lysine 4.5 g/500 mL + methionine 2.8 g/500 mL + phenylalanine 2.93 g/500 mL + proline 3.4 g/500 mL + serine 2.25 g/500 mL + threonine 2.8 g/500 mL + tryptophan 950 mg/500 mL + valine 3.65 g/500 mL injection, 500 mL bottle 86245011000036104 alanine 8 g/500 mL + arginine 5.65 g/500 mL + aspartic acid 1.7 g/500 mL + glutamic acid 2.8 g/500 mL + glycylglutamine monohydrate 15.14 g/500 mL (equivalent to 5.14 g of glycine and 10 g of glutamine ) + glycyltyrosine dihydrate 1.73 g/500 mL (equivalent to 470 mg of glycine and 1.14 g of tyrosine ) + histidine 3.4 g/500 mL + isoleucine 2.8 g/500 mL + leucine 3.95 g/500 mL + lysine 4.5 g/500 mL + methionine 2.8 g/500 mL + phenylalanine 2.93 g/500 mL + proline 3.4 g/500 mL + serine 2.25 g/500 mL + threonine 2.8 g/500 mL + tryptophan 950 mg/500 mL + valine 3.65 g/500 mL injection, bottle 86194011000036107 alanine + arginine + aspartic acid + glutamic acid + glycylglutamine monohydrate + glycyltyrosine dihydrate + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + valine +82412011000036102 Fluorescein Sodium Minims (Bausch & Lomb) 2% eye drops solution, 20 x 0.5 mL unit doses, tube 32268 82201011000036105 Fluorescein Sodium Minims (Bausch & Lomb) 2% eye drops solution, 20 x 0.5 mL unit doses 82038011000036100 Fluorescein Sodium Minims (Bausch & Lomb) 2% eye drops solution, 0.5 mL unit dose 53601000168101 Fluorescein Sodium Minims (Bausch & Lomb) 53601000168101 Fluorescein Sodium Minims (Bausch & Lomb) 82566011000036109 fluorescein sodium 2% eye drops, 20 x 0.5 mL unit doses 82453011000036104 fluorescein sodium 2% eye drops, unit dose 44934011000036102 fluorescein +1028971000168109 Asartan 16 mg uncoated tablet, 30, blister pack 195375 1028961000168103 Asartan 16 mg uncoated tablet, 30 1028931000168106 Asartan 16 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1089471000168100 Paracetamol (Genpar) 500 mg film-coated tablet, 100, blister pack 280973 1089461000168106 Paracetamol (Genpar) 500 mg film-coated tablet, 100 1089371000168107 Paracetamol (Genpar) 500 mg film-coated tablet 1089361000168101 Paracetamol (Genpar) 1089361000168101 Paracetamol (Genpar) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +130891000036104 Famlo 250 mg film-coated tablet, 21, blister pack 176994 127841000036107 Famlo 250 mg film-coated tablet, 21 124791000036100 Famlo 250 mg film-coated tablet 123871000036108 Famlo 123871000036108 Famlo 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +692661000168107 Desfax 50 mg modified release tablet, 28, blister pack 218075 692651000168105 Desfax 50 mg modified release tablet, 28 692601000168106 Desfax 50 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1115191000168103 Stilnoxium CR 12.5 mg modified release tablet, 100, blister pack 120714 1115181000168101 Stilnoxium CR 12.5 mg modified release tablet, 100 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46184011000036101 zolpidem tartrate 12.5 mg modified release tablet, 100 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +866671000168108 Amitriptyline (RS) 50 mg tablet, 10, blister pack 232144 866661000168102 Amitriptyline (RS) 50 mg tablet, 10 866651000168104 Amitriptyline (RS) 50 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +44816011000036107 Daivobet 50/500 ointment, 3 g, tube 98773 42248011000036103 Daivobet 50/500 ointment, 3 g 40404011000036105 Daivobet 50/500 ointment 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 47001011000036109 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment, 3 g 45370011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment 44974011000036100 calcipotriol + betamethasone dipropionate +182031000036103 Comfeel Purilon (3900) gel, 15 g, tube 182041000036108 Comfeel Purilon (3900) gel, 15 g 168371000168107 Comfeel Purilon (3900) gel 6211000168102 Comfeel Purilon (3900) 6211000168102 Comfeel Purilon (3900) 181881000036102 dressing hydrogel amorphous gel, 15 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +933061011000036103 Vinorelbine (Kabi) 50 mg/5 mL concentrated injection, 10 x 5 mL vials 144046 932863011000036107 Vinorelbine (Kabi) 50 mg/5 mL concentrated injection, 10 x 5 mL vials 932743011000036103 Vinorelbine (Kabi) 50 mg/5 mL concentrated injection, 5 mL vial 932704011000036105 Vinorelbine (Kabi) 932704011000036105 Vinorelbine (Kabi) 46713011000036109 vinorelbine 50 mg/5 mL injection, 10 x 5 mL vials 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +945431000168103 Ondansetron (Mylan) 8 mg/4 mL injection solution, 4 mL ampoule 138714 945421000168101 Ondansetron (Mylan) 8 mg/4 mL injection solution, 4 mL ampoule 945411000168108 Ondansetron (Mylan) 8 mg/4 mL injection solution, 4 mL ampoule 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +45231000036101 Simvastatin (DRLA) 10 mg film-coated tablet, 30, bottle 164082 43771000036107 Simvastatin (DRLA) 10 mg film-coated tablet, 30 41151000036104 Simvastatin (DRLA) 10 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +85661000036101 Dutran 12 microgram/hour patch, 5, sachet 192231 84791000036101 Dutran 12 microgram/hour patch, 5 84041000036105 Dutran 12 microgram/hour patch 83931000036102 Dutran 83931000036102 Dutran 26685011000036103 fentanyl 12 microgram/hour patch, 5 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +929662011000036103 Fluvax Junior 2011 injection suspension, 10 x 0.25 mL syringes 149127 929498011000036100 Fluvax Junior 2011 injection suspension, 10 x 0.25 mL syringes 929397011000036108 Fluvax Junior 2011 injection suspension, 0.25 mL syringe 55831000168106 Fluvax Junior 2011 55831000168106 Fluvax Junior 2011 929750011000036103 influenza trivalent child vaccine 2011-2012 injection, 10 x 0.25 mL syringes 929728011000036100 influenza trivalent child vaccine 2011-2012 injection, 0.25 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +44272011000036105 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 2 x 0.5 mL syringes 61939 41743011000036100 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 2 x 0.5 mL syringes 40178011000036108 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 0.5 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46550011000036106 dalteparin sodium 12 500 anti-Xa units/0.5 mL injection, 2 x 0.5 mL syringes 45214011000036102 dalteparin sodium 12 500 anti-Xa units/0.5 mL injection, syringe 21450011000036103 dalteparin sodium +85621000036105 Dutran 25 microgram/hour patch, 5, sachet 190790 84751000036105 Dutran 25 microgram/hour patch, 5 84111000036105 Dutran 25 microgram/hour patch 83931000036102 Dutran 83931000036102 Dutran 26649011000036106 fentanyl 25 microgram/hour patch, 5 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +979681000168102 Zomig 5 mg film-coated tablet, 3, blister pack 61326 979671000168100 Zomig 5 mg film-coated tablet, 3 979621000168101 Zomig 5 mg film-coated tablet 3430011000036105 Zomig 3430011000036105 Zomig 979661000168106 zolmitriptan 5 mg tablet, 3 979611000168108 zolmitriptan 5 mg tablet 21516011000036102 zolmitriptan +931356011000036106 Biatain Ag Non-Adhesive (9622) 10 cm x 10 cm hydroactive dressing, 5, carton 930542011000036100 Biatain Ag Non-Adhesive (9622) 10 cm x 10 cm hydroactive dressing, 5 929927011000036107 Biatain Ag Non-Adhesive (9622) 10 cm x 10 cm hydroactive dressing 13061000168100 Biatain Ag Non-Adhesive (9622) 13061000168100 Biatain Ag Non-Adhesive (9622) 51391011000036103 dressing with silver 10 cm x 10 cm hydroactive dressing, 5 50912011000036105 dressing with silver 10 cm x 10 cm hydroactive dressing 50760011000036100 dressing with silver +130651000036109 Adesan 16 mg uncoated tablet, 30, blister pack 171016 127681000036104 Adesan 16 mg uncoated tablet, 30 124691000036108 Adesan 16 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1106591000168102 Quetiapine (GH) 100 mg film-coated tablet, 100, blister pack 179895 1106581000168100 Quetiapine (GH) 100 mg film-coated tablet, 100 2221000036101 Quetiapine (GH) 100 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1075481000168105 quetiapine 100 mg tablet, 100 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1016651000168104 Atomoxetine (Apotex) 60 mg hard capsule, 28, blister pack 199918 1016641000168101 Atomoxetine (Apotex) 60 mg hard capsule, 28 1016631000168105 Atomoxetine (Apotex) 60 mg hard capsule 1013681000168104 Atomoxetine (Apotex) 1013681000168104 Atomoxetine (Apotex) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1040191000168107 Asartan 32 mg uncoated tablet, 30, blister pack 195369 1040181000168109 Asartan 32 mg uncoated tablet, 30 1040151000168102 Asartan 32 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +68782011000036102 Ivelip 20% (50 g/250 mL) intravenous infusion injection, 250 mL bag 101424 66471011000036104 Ivelip 20% (50 g/250 mL) intravenous infusion injection, 250 mL bag 65387011000036107 Ivelip 20% (50 g/250 mL) intravenous infusion injection, 250 mL bag 65097011000036107 Ivelip 65097011000036107 Ivelip 71205011000036107 soya oil 20% (50 g/250 mL) injection, 250 mL bag 69901011000036101 soya oil 20% (50 g/250 mL) injection, bag 69767011000036104 soya oil +812621000168107 Citalopram (Amneal) 10 mg film-coated tablet, 28, blister pack 158879 812611000168100 Citalopram (Amneal) 10 mg film-coated tablet, 28 812561000168103 Citalopram (Amneal) 10 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +881181000168105 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device 42978 881171000168107 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose 881161000168101 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, dose 59781000168101 Epipen Auto-Injector 59781000168101 Epipen Auto-Injector 726721000168105 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose 726701000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +921821011000036100 Primovist 1.81 g/10 mL injection solution, 10 mL syringe 104381 921372011000036105 Primovist 1.81 g/10 mL injection solution, 10 mL syringe 920970011000036106 Primovist 1.81 g/10 mL injection solution, 10 mL syringe 920914011000036108 Primovist 920914011000036108 Primovist 922524011000036104 gadoxetate disodium 1.81 g/10 mL injection, 10 mL syringe 922069011000036105 gadoxetate disodium 1.81 g/10 mL injection, syringe 922038011000036107 gadoxetic acid +19188011000036102 Spiractin 100 mg uncoated tablet, 100, bottle 46691 12482011000036108 Spiractin 100 mg uncoated tablet, 100 4652011000036105 Spiractin 100 mg uncoated tablet 3212011000036100 Spiractin 3212011000036100 Spiractin 27648011000036104 spironolactone 100 mg tablet, 100 22985011000036101 spironolactone 100 mg tablet 21403011000036103 spironolactone +19085011000036101 Rulide 300 mg film-coated tablet, 5, blister pack 42565 12391011000036107 Rulide 300 mg film-coated tablet, 5 4840011000036104 Rulide 300 mg film-coated tablet 27081000168109 Rulide 27081000168109 Rulide 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +947531000168107 Risdone 1 mg film-coated tablet, 6, blister pack 144262 947521000168109 Risdone 1 mg film-coated tablet, 6 947511000168102 Risdone 1 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 78193011000036103 risperidone 1 mg tablet, 6 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1039551000168102 Atorvastatin (Ascent) 40 mg film-coated tablet, 30, blister pack 178527 1039541000168104 Atorvastatin (Ascent) 40 mg film-coated tablet, 30 1039441000168100 Atorvastatin (Ascent) 40 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +855891000168109 Alprolix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209226 855881000168106 Alprolix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 855851000168104 Alprolix (eftrenonacog alfa 3000 units) powder for injection, 3000 units vial 855751000168109 Alprolix 855751000168109 Alprolix 855871000168108 eftrenonacog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 855841000168101 eftrenonacog alfa 3000 units injection, vial 855831000168105 eftrenonacog alfa +855891000168109 Alprolix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209226 855881000168106 Alprolix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 855861000168102 Alprolix (inert substance) diluent, 5 mL syringe 855751000168109 Alprolix 855751000168109 Alprolix 855871000168108 eftrenonacog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +1113001000168106 Allopurinol (TN) 300 mg uncoated tablet, 45, blister pack 269655 1112991000168105 Allopurinol (TN) 300 mg uncoated tablet, 45 1112951000168100 Allopurinol (TN) 300 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112981000168107 allopurinol 300 mg tablet, 45 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +697641000168105 Vascalace 5 mg capsule, 30, blister pack 203713 697311000168100 Vascalace 5 mg capsule, 30 697301000168103 Vascalace 5 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +19655011000036100 Distaph 250 mg hard capsule, 24, bottle 59655 12919011000036102 Distaph 250 mg hard capsule, 24 6209011000036100 Distaph 250 mg hard capsule 4299011000036109 Distaph 4299011000036109 Distaph 27778011000036109 dicloxacillin 250 mg capsule, 24 23108011000036100 dicloxacillin 250 mg capsule 21398011000036101 dicloxacillin +130571000036100 Pariet 10 mg enteric tablet, 7, blister pack 170438 127521000036101 Pariet 10 mg enteric tablet, 7 125441000036104 Pariet 10 mg enteric tablet 3351011000036108 Pariet 3351011000036108 Pariet 127531000036104 rabeprazole sodium 10 mg enteric tablet, 7 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +32578011000036105 Antenex 2 mg uncoated tablet, 30, blister pack 17604 32373011000036102 Antenex 2 mg uncoated tablet, 30 32247011000036100 Antenex 2 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 32773011000036101 diazepam 2 mg tablet, 30 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +43865011000036103 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128339 41361011000036106 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack 630131000168100 Benefix (inert substance) diluent, 5 mL syringe 2121000168104 Benefix 2121000168104 Benefix 46265011000036102 nonacog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +43865011000036103 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 128339 41361011000036106 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent syringe), 1 pack 40212011000036102 Benefix (nonacog alfa 250 units) powder for injection, 250 units vial 2121000168104 Benefix 2121000168104 Benefix 46265011000036102 nonacog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 45244011000036108 nonacog alfa 250 units injection, vial 44863011000036102 nonacog alfa +714751000168102 Zydelig 100 mg film-coated tablet, 60, bottle 218837 714741000168104 Zydelig 100 mg film-coated tablet, 60 714721000168105 Zydelig 100 mg film-coated tablet 714681000168104 Zydelig 714681000168104 Zydelig 714731000168108 idelalisib 100 mg tablet, 60 714711000168103 idelalisib 100 mg tablet 714701000168101 idelalisib +33546011000036104 Gabapentin (GenRx) 800 mg film-coated tablet, 100, blister pack 131508 33285011000036107 Gabapentin (GenRx) 800 mg film-coated tablet, 100 33047011000036103 Gabapentin (GenRx) 800 mg film-coated tablet 3416011000036102 Gabapentin (GenRx) 3416011000036102 Gabapentin (GenRx) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +981931000168102 Lovenox Forte 150 mg/mL injection solution, 10 x 1 mL syringes 80271 981921000168100 Lovenox Forte 150 mg/mL injection solution, 10 x 1 mL syringes 981891000168105 Lovenox Forte 150 mg/mL injection solution, syringe 981881000168107 Lovenox Forte 981881000168107 Lovenox Forte 46705011000036108 enoxaparin sodium 150 mg/mL injection, 10 x 1 mL syringes 45276011000036101 enoxaparin sodium 150 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +875351000168105 Bisoprolol (AN) 7.5 mg film-coated tablet, 28, blister pack 175913 875341000168108 Bisoprolol (AN) 7.5 mg film-coated tablet, 28 875331000168104 Bisoprolol (AN) 7.5 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 874341000168107 bisoprolol fumarate 7.5 mg tablet, 28 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +69416011000036107 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 283 g, jar 47538 67216011000036103 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 283 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71767011000036106 psyllium husk powder 578 mg/g powder for oral liquid, 283 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +714041000168102 Finasteride (Pharmacor) 1 mg film-coated tablet, 28, blister pack 155234 714031000168106 Finasteride (Pharmacor) 1 mg film-coated tablet, 28 714021000168108 Finasteride (Pharmacor) 1 mg film-coated tablet 106471000036109 Finasteride (Pharmacor) 106471000036109 Finasteride (Pharmacor) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +1104501000168104 Normison 10 mg uncoated tablet, 5, blister pack 41637 1104491000168106 Normison 10 mg uncoated tablet, 5 4641011000036102 Normison 10 mg uncoated tablet 2981011000036100 Normison 2981011000036100 Normison 1104481000168108 temazepam 10 mg tablet, 5 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +864501000168108 Amitriptyline (AN) 10 mg tablet, 1000, bottle 232117 864491000168101 Amitriptyline (AN) 10 mg tablet, 1000 864441000168109 Amitriptyline (AN) 10 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +696911000168103 Pravastatin (Auro) 80 mg uncoated tablet, 30, bottle 191719 696851000168105 Pravastatin (Auro) 80 mg uncoated tablet, 30 696841000168108 Pravastatin (Auro) 80 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +1014551000168107 Valsartan (Apotex) 160 mg film-coated tablet, 28, blister pack 185859 1014541000168105 Valsartan (Apotex) 160 mg film-coated tablet, 28 1014451000168106 Valsartan (Apotex) 160 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63789011000036106 valsartan 160 mg tablet, 28 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +19569011000036100 Betnovate 0.1% ointment, 30 g, tube 57335 12840011000036105 Betnovate 0.1% ointment, 30 g 6131011000036109 Betnovate 0.1% ointment 34021000168102 Betnovate 34021000168102 Betnovate 27388011000036100 betamethasone (as valerate) 0.1% ointment, 30 g 22737011000036108 betamethasone (as valerate) 0.1% ointment 21366011000036103 betamethasone valerate +778821000168104 Latanoprost-Timolol 50/5 (Alphapharm) eye drops solution, 3 x 2.5 mL, bottles 217133 778811000168106 Latanoprost-Timolol 50/5 (Alphapharm) eye drops solution, 3 x 2.5 mL 778751000168102 Latanoprost-Timolol 50/5 (Alphapharm) eye drops solution 778741000168104 Latanoprost-Timolol 50/5 (Alphapharm) 778741000168104 Latanoprost-Timolol 50/5 (Alphapharm) 778801000168108 latanoprost 0.005% + timolol 0.5% eye drops, 3 x 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +37624011000036107 B.I.P. Paste paste, 50 g, tube 21139 36890011000036101 B.I.P. Paste paste, 50 g 36224011000036109 B.I.P. Paste paste 35992011000036107 B.I.P. Paste 35992011000036107 B.I.P. Paste 38775011000036105 bismuth subnitrate 250 mg/g + iodoform 500 mg/g paste, 50 g 37990011000036107 bismuth subnitrate 250 mg/g + iodoform 500 mg/g paste 37763011000036105 bismuth subnitrate + iodoform +958321000168102 Dormizol 5 mg film-coated tablet, 28, blister pack 117952 958311000168109 Dormizol 5 mg film-coated tablet, 28 958241000168102 Dormizol 5 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 926231000168109 zolpidem tartrate 5 mg tablet, 28 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +44756011000036103 Co-Diovan 160/12.5 film-coated tablet, 56, blister pack 96741 42201011000036104 Co-Diovan 160/12.5 film-coated tablet, 56 40386011000036105 Co-Diovan 160/12.5 film-coated tablet 44061000168106 Co-Diovan 160/12.5 44061000168106 Co-Diovan 160/12.5 46961011000036100 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 56 45359011000036104 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +130971000036107 Montelukast (Apo) 5 mg chewable tablet, 28, blister pack 179115 127881000036103 Montelukast (Apo) 5 mg chewable tablet, 28 124281000036108 Montelukast (Apo) 5 mg chewable tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +926655011000036108 Cystitis Relief (Terry White Chemists) powder for oral liquid, 28 x 4 g sachets 119157 926118011000036108 Cystitis Relief (Terry White Chemists) powder for oral liquid, 28 x 4 g sachets 925635011000036106 Cystitis Relief (Terry White Chemists) powder for oral liquid, 4 g sachet 925583011000036105 Cystitis Relief (Terry White Chemists) 925583011000036105 Cystitis Relief (Terry White Chemists) 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +1048161000168102 Bupretec 20 microgram/hour patch, 2, sachet 234733 1048151000168104 Bupretec 20 microgram/hour patch, 2 1048081000168105 Bupretec 20 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 26682011000036106 buprenorphine 20 microgram/hour patch, 2 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +105031000036107 Irbesartan (Winthrop) 300 mg film-coated tablet, 30, blister pack 196949 102201000036100 Irbesartan (Winthrop) 300 mg film-coated tablet, 30 99111000036105 Irbesartan (Winthrop) 300 mg film-coated tablet 97591000036103 Irbesartan (Winthrop) 97591000036103 Irbesartan (Winthrop) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +18704011000036103 Parlodel 10 mg hard capsule, 100, bottle 13366 11974011000036109 Parlodel 10 mg hard capsule, 100 5351011000036102 Parlodel 10 mg hard capsule 3938011000036105 Parlodel 3938011000036105 Parlodel 27289011000036100 bromocriptine 10 mg capsule, 100 22643011000036107 bromocriptine 10 mg capsule 21300011000036100 bromocriptine +18491011000036106 Ozcef 375 mg modified release tablet, 10, blister pack 122376 11712011000036103 Ozcef 375 mg modified release tablet, 10 5641011000036106 Ozcef 375 mg modified release tablet 3555011000036107 Ozcef 3555011000036107 Ozcef 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +44803011000036103 Vytorin 10/20 uncoated tablet, 30, blister pack 98111 42237011000036103 Vytorin 10/20 uncoated tablet, 30 40399011000036102 Vytorin 10/20 uncoated tablet 36271000168101 Vytorin 10/20 36271000168101 Vytorin 10/20 46993011000036102 ezetimibe 10 mg + simvastatin 20 mg tablet, 30 45368011000036101 ezetimibe 10 mg + simvastatin 20 mg tablet 21565011000036108 ezetimibe + simvastatin +19171011000036103 Lyclear Scabies 5% cream, 30 g, tube 46343 12469011000036101 Lyclear Scabies 5% cream, 30 g 4748011000036100 Lyclear Scabies 5% cream 61381000168105 Lyclear Scabies 61381000168105 Lyclear Scabies 27138011000036104 permethrin 5% cream, 30 g 22503011000036107 permethrin 5% cream 21537011000036106 permethrin +60641011000036106 Nicotinic Acid (Alphapharm) 250 mg uncoated tablet, 100, bottle 27193 56599011000036104 Nicotinic Acid (Alphapharm) 250 mg uncoated tablet, 100 53997011000036107 Nicotinic Acid (Alphapharm) 250 mg uncoated tablet 53144011000036105 Nicotinic Acid (Alphapharm) 53144011000036105 Nicotinic Acid (Alphapharm) 63451011000036107 nicotinic acid 250 mg tablet, 100 61973011000036103 nicotinic acid 250 mg tablet 61808011000036109 nicotinic acid +1056351000168104 Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10, carton 1056341000168101 Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10 1056321000168107 Sorbact Foam (S98310) 10 cm x 10 cm foam dressing 55581000168109 Sorbact Foam (S98310) 55581000168109 Sorbact Foam (S98310) 1056331000168105 dressing hydrophobic 10 cm x 10 cm foam dressing, 10 1056311000168100 dressing hydrophobic 10 cm x 10 cm foam dressing 1055281000168109 dressing hydrophobic +18929011000036102 Isopto Carpine 4% eye drops solution, 15 mL, bottle 25297 12237011000036101 Isopto Carpine 4% eye drops solution, 15 mL 5746011000036109 Isopto Carpine 4% eye drops solution 4348011000036104 Isopto Carpine 4348011000036104 Isopto Carpine 27790011000036100 pilocarpine hydrochloride 4% eye drops, 15 mL 23120011000036106 pilocarpine hydrochloride 4% eye drops 21254011000036109 pilocarpine +830661000168106 Atomoxetine (Apo) 40 mg hard capsule, 7, blister pack 234810 830651000168109 Atomoxetine (Apo) 40 mg hard capsule, 7 830641000168107 Atomoxetine (Apo) 40 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +60520011000036108 Benadryl PE for the Family Chesty Cough and Nasal Congestion oral liquid solution, 200 mL, bottle 151717 56478011000036107 Benadryl PE for the Family Chesty Cough and Nasal Congestion oral liquid solution, 200 mL 53935011000036106 Benadryl PE for the Family Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 44451000168100 Benadryl PE for the Family Chesty Cough and Nasal Congestion 44451000168100 Benadryl PE for the Family Chesty Cough and Nasal Congestion 63379011000036101 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 61932011000036107 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61724011000036106 guaifenesin + phenylephrine +56081000036103 Lisinopril (DRLA) 2.5 mg uncoated tablet, 100, blister pack 152719 51611000036106 Lisinopril (DRLA) 2.5 mg uncoated tablet, 100 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927298011000036105 lisinopril 2.5 mg tablet, 100 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +68655011000036108 Obstetric Care (Orion) 1% lotion, 200 g, bottle 12727 66706011000036106 Obstetric Care (Orion) 1% lotion, 200 g 65455011000036103 Obstetric Care (Orion) 1% lotion 65151011000036101 Obstetric Care (Orion) 65151011000036101 Obstetric Care (Orion) 71389011000036100 chlorhexidine gluconate 1% lotion, 200 g 69990011000036105 chlorhexidine gluconate 1% lotion 21404011000036101 chlorhexidine +82281000036100 Zypine ODT 15 mg wafer, 28, blister pack 189670 80251000036106 Zypine ODT 15 mg wafer, 28 78741000036105 Zypine ODT 15 mg wafer 14381000168109 Zypine ODT 14381000168109 Zypine ODT 929276011000036106 olanzapine 15 mg wafer, 28 929157011000036109 olanzapine 15 mg wafer 21485011000036103 olanzapine +764031000168105 Citalopram (AN) 10 mg film-coated tablet, 28, blister pack 171334 764021000168107 Citalopram (AN) 10 mg film-coated tablet, 28 764011000168100 Citalopram (AN) 10 mg film-coated tablet 662261000168106 Citalopram (AN) 662261000168106 Citalopram (AN) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +882141000168109 Spedra 50 mg uncoated tablet, 1, blister pack 228474 882131000168100 Spedra 50 mg uncoated tablet, 1 882111000168105 Spedra 50 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882121000168103 avanafil 50 mg tablet, 1 882101000168107 avanafil 50 mg tablet 882091000168102 avanafil +801481000168100 Abilify 2 mg uncoated tablet, 5, blister pack 91001 801471000168103 Abilify 2 mg uncoated tablet, 5 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801461000168109 aripiprazole 2 mg tablet, 5 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +798511000168101 Abyraz 10 mg uncoated tablet, 10, blister pack 159503 798501000168104 Abyraz 10 mg uncoated tablet, 10 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 727691000168104 aripiprazole 10 mg tablet, 10 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1063891000168101 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 48, blister pack 159329 1063881000168104 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 48 1063791000168106 Ibuprofen plus Codeine (Pharmacor) film-coated tablet 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +77205011000036109 Blistex Ultra Lip Balm lip stick, 4.25 g, tube 132462 76621011000036101 Blistex Ultra Lip Balm lip stick, 4.25 g 76067011000036107 Blistex Ultra Lip Balm lip stick 75982011000036103 Blistex Ultra Lip Balm 75982011000036103 Blistex Ultra Lip Balm 78174011000036109 homosalate 4.5% + menthyl anthranilate 4.8% + octyl methoxycinnamate 7.4% + octyl salicylate 5% + oxybenzone 5.2% stick, 4.25 g 77526011000036102 homosalate 4.5% + menthyl anthranilate 4.8% + octyl methoxycinnamate 7.4% + octyl salicylate 5% + oxybenzone 5.2% stick 77472011000036105 homosalate + menthyl anthranilate + octyl methoxycinnamate + octyl salicylate + oxybenzone +920777011000036104 Moclobemide (Sandoz) 300 mg film-coated tablet, 60, blister pack 76935 920456011000036109 Moclobemide (Sandoz) 300 mg film-coated tablet, 60 920193011000036105 Moclobemide (Sandoz) 300 mg film-coated tablet 920097011000036106 Moclobemide (Sandoz) 920097011000036106 Moclobemide (Sandoz) 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +974201000168106 Minirin 100 microgram uncoated tablet, 7, bottle 93678 974191000168108 Minirin 100 microgram uncoated tablet, 7 974181000168105 Minirin 100 microgram uncoated tablet 13491000168101 Minirin 13491000168101 Minirin 816131000168104 desmopressin acetate 100 microgram tablet, 7 816111000168109 desmopressin acetate 100 microgram tablet 21750011000036107 desmopressin +839261000168103 Fenofibrate (Mylan) 48 mg film-coated tablet, 60, blister pack 230444 839251000168100 Fenofibrate (Mylan) 48 mg film-coated tablet, 60 839241000168102 Fenofibrate (Mylan) 48 mg film-coated tablet 839201000168104 Fenofibrate (Mylan) 839201000168104 Fenofibrate (Mylan) 26701011000036108 fenofibrate 48 mg tablet, 60 22096011000036102 fenofibrate 48 mg tablet 21417011000036105 fenofibrate +872451000168109 Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags 19432 872441000168107 Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags 872391000168108 Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag 81984011000036107 Haemofiltration Replacement Fluid (Baxter) 81984011000036107 Haemofiltration Replacement Fluid (Baxter) 872431000168103 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 2 x 5 L bags 872381000168105 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, bag 861211000168106 calcium chloride dihydrate + glucose + magnesium chloride + potassium chloride + sodium chloride + sodium lactate +38901000036106 Escital 20 mg film-coated tablet, 30, bottle 165881 35271000036100 Escital 20 mg film-coated tablet, 30 32401000036101 Escital 20 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +965621000168105 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 25 mL vial 117278 965611000168103 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 25 mL vial 965591000168108 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 25 mL vial 965571000168107 Frusemide High Dose (Sandoz) 965571000168107 Frusemide High Dose (Sandoz) 965601000168101 furosemide (frusemide) 250 mg/25 mL injection, 25 mL vial 965581000168105 furosemide (frusemide) 250 mg/25 mL injection, vial 21329011000036103 furosemide (frusemide) +1043801000168101 Pryzex 10 mg film-coated tablet, 60, blister pack 178996 1043791000168102 Pryzex 10 mg film-coated tablet, 60 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043781000168100 olanzapine 10 mg tablet, 60 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +73322011000036106 Sutent 12.5 mg capsule, 28, blister pack 149114 41282011000036105 Sutent 12.5 mg capsule, 28 39790011000036106 Sutent 12.5 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46217011000036106 sunitinib 12.5 mg capsule, 28 45034011000036100 sunitinib 12.5 mg capsule 44859011000036109 sunitinib +69692011000036105 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 1% gel, 100 g, tube 90311 67491011000036105 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 1% gel, 100 g 65682011000036101 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 1% gel 39011000168108 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 39011000168108 Diclofenac Sodium Anti-Inflammatory Pain Relief (Chemists' Own) 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +926825011000036100 Zovirax 500 mg powder for injection, 5 vials 17554 926221011000036108 Zovirax 500 mg powder for injection, 5 vials 925683011000036102 Zovirax 500 mg powder for injection, 500 mg vial 16291000168109 Zovirax 16291000168109 Zovirax 46731011000036104 aciclovir 500 mg injection, 5 vials 45287011000036106 aciclovir 500 mg injection, vial 21239011000036106 aciclovir +1056671000168103 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet, 4, blister pack 196806 1056661000168109 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet, 4 1056651000168107 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet 1056641000168105 Ondansetron ODT (Auro) 1056641000168105 Ondansetron ODT (Auro) 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +931460011000036105 Ranitidine (Winthrop) 300 mg film-coated tablet, 30, blister pack 148529 930639011000036100 Ranitidine (Winthrop) 300 mg film-coated tablet, 30 929984011000036106 Ranitidine (Winthrop) 300 mg film-coated tablet 929882011000036108 Ranitidine (Winthrop) 929882011000036108 Ranitidine (Winthrop) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +726561000168107 Viekira Pak (56 x 75 mg/50 mg/12.5 mg tablets, 56 x 250 mg tablets), 4 x 28, blister packs 224612 726551000168105 Viekira Pak (56 x 75 mg/50 mg/12.5 mg tablets, 56 x 250 mg tablets), 4 x 28 726021000168108 Viekira Pak film-coated tablet 722981000168107 Viekira Pak 722981000168107 Viekira Pak 726541000168108 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [56] (&) dasabuvir 250 mg tablet [56], 4 x 28 726011000168101 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet 726001000168104 paritaprevir + ritonavir + ombitasvir +726561000168107 Viekira Pak (56 x 75 mg/50 mg/12.5 mg tablets, 56 x 250 mg tablets), 4 x 28, blister packs 224612 726551000168105 Viekira Pak (56 x 75 mg/50 mg/12.5 mg tablets, 56 x 250 mg tablets), 4 x 28 726051000168100 Viekira Pak 250 mg film-coated tablet 722981000168107 Viekira Pak 722981000168107 Viekira Pak 726541000168108 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [56] (&) dasabuvir 250 mg tablet [56], 4 x 28 726041000168102 dasabuvir 250 mg tablet 726031000168106 dasabuvir +60278011000036101 Panadol Caplet 500 mg film-coated tablet, 20, blister pack 13590 56237011000036107 Panadol Caplet 500 mg film-coated tablet, 20 53849011000036103 Panadol Caplet 500 mg film-coated tablet 29141000168108 Panadol Caplet 29141000168108 Panadol Caplet 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +35677011000036101 Gabapentin (Pharmacor) 600 mg film-coated tablet, 100, bottle 131503 35583011000036108 Gabapentin (Pharmacor) 600 mg film-coated tablet, 100 35488011000036107 Gabapentin (Pharmacor) 600 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +677581000168105 Breo Ellipta 100/25 powder for inhalation, 30 actuations, blister pack 199748 677571000168107 Breo Ellipta 100/25 powder for inhalation, 30 actuations 677551000168103 Breo Ellipta 100/25 powder for inhalation, actuation 677531000168109 Breo Ellipta 100/25 677531000168109 Breo Ellipta 100/25 677561000168101 fluticasone furoate 100 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, 30 actuations 677541000168100 fluticasone furoate 100 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, actuation 861401000168109 fluticasone furoate + vilanterol +968581000168101 Aranesp 500 microgram/mL injection solution, 4 x 1 mL syringes 91948 968571000168104 Aranesp 500 microgram/mL injection solution, 4 x 1 mL syringes 968521000168100 Aranesp 500 microgram/mL injection solution, syringe 6471000168109 Aranesp 6471000168109 Aranesp 968561000168105 darbepoetin alfa 500 microgram/mL injection, 4 x 1 mL syringes 968511000168107 darbepoetin alfa 500 microgram/mL injection, syringe 21234011000036105 darbepoetin alfa +44273011000036103 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 5 x 0.5 mL syringes 61939 41744011000036103 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 5 x 0.5 mL syringes 40178011000036108 Fragmin 12 500 anti-Xa units/0.5 mL injection solution, 0.5 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46551011000036104 dalteparin sodium 12 500 anti-Xa units/0.5 mL injection, 5 x 0.5 mL syringes 45214011000036102 dalteparin sodium 12 500 anti-Xa units/0.5 mL injection, syringe 21450011000036103 dalteparin sodium +73247011000036103 Difenacol (Chemists' Own) oral liquid solution, 200 mL, bottle 10977 73045011000036101 Difenacol (Chemists' Own) oral liquid solution, 200 mL 72938011000036105 Difenacol (Chemists' Own) oral liquid solution, 5 mL 72914011000036108 Difenacol (Chemists' Own) 72914011000036108 Difenacol (Chemists' Own) 73451011000036108 ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL + menthol 1 mg/5 mL oral liquid, 200 mL 73359011000036100 ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL + menthol 1 mg/5 mL oral liquid 73355011000036102 ammonium chloride + citric acid + diphenhydramine + menthol +1035141000168106 Atomoxetine (CH) 80 mg hard capsule, 7, blister pack 234859 1035131000168102 Atomoxetine (CH) 80 mg hard capsule, 7 1035121000168100 Atomoxetine (CH) 80 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +909831000168106 Chorit 20 mg film-coated tablet, 28, bottle 179832 909821000168108 Chorit 20 mg film-coated tablet, 28 909501000168101 Chorit 20 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890321000168104 atorvastatin 20 mg tablet, 28 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +977501000168101 Pregabalin (Teva) 225 mg hard capsule, 56, blister pack 229599 977491000168108 Pregabalin (Teva) 225 mg hard capsule, 56 977391000168104 Pregabalin (Teva) 225 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +764351000168102 2in1 Blood Glucose Test diagnostic strip, 50, bottle 764341000168104 2in1 Blood Glucose Test diagnostic strip, 50 764331000168108 2in1 Blood Glucose Test diagnostic strip 764321000168105 2in1 Blood Glucose Test 764321000168105 2in1 Blood Glucose Test 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +82241000036109 Prabez 10 mg enteric tablet, 28, blister pack 187314 80711000036102 Prabez 10 mg enteric tablet, 28 78161000036105 Prabez 10 mg enteric tablet 77691000036106 Prabez 77691000036106 Prabez 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +82241000036109 Prabez 10 mg enteric tablet, 28, blister pack 196564 80711000036102 Prabez 10 mg enteric tablet, 28 78161000036105 Prabez 10 mg enteric tablet 77691000036106 Prabez 77691000036106 Prabez 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +931666011000036106 Twynsta 80/10 mg multilayer tablet, 14, blister pack 166266 930826011000036104 Twynsta 80/10 mg multilayer tablet, 14 930060011000036106 Twynsta 80/10 mg multilayer tablet 7561000168104 Twynsta 80/10 mg 7561000168104 Twynsta 80/10 mg 932439011000036106 telmisartan 80 mg + amlodipine 10 mg tablet, 14 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +968501000168109 Urso 250 mg hard capsule, 100, blister pack 116741 968491000168102 Urso 250 mg hard capsule, 100 968481000168100 Urso 250 mg hard capsule 968471000168103 Urso 968471000168103 Urso 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +968901000168101 Pregabalin (DRLA) 75 mg hard capsule, 60, blister pack 263081 968891000168100 Pregabalin (DRLA) 75 mg hard capsule, 60 968821000168102 Pregabalin (DRLA) 75 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +933212821000036100 Simvastatin (Auro) 5 mg film-coated tablet, 30, blister pack 150145 933202561000036109 Simvastatin (Auro) 5 mg film-coated tablet, 30 933194491000036108 Simvastatin (Auro) 5 mg film-coated tablet 16361000168106 Simvastatin (Auro) 16361000168106 Simvastatin (Auro) 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +716851000168101 Omepro 20 mg enteric capsule, 60, bottle 167314 716841000168103 Omepro 20 mg enteric capsule, 60 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716831000168107 omeprazole 20 mg enteric capsule, 60 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +1003041000168100 Kepcet-1000 1 g film-coated tablet, 60, blister pack 165912 1003031000168109 Kepcet-1000 1 g film-coated tablet, 60 1003021000168106 Kepcet-1000 1 g film-coated tablet 1003011000168104 Kepcet-1000 1003011000168104 Kepcet-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +81180011000036100 Robitussin Chesty Cough 200 mg soft capsule, 20, blister pack 74414 80682011000036107 Robitussin Chesty Cough 200 mg soft capsule, 20 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81737011000036104 guaifenesin 200 mg capsule, 20 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +1047751000168104 Paracetamol/Codeine 500/30 (Apo) tablet, 10, blister pack 220980 1047741000168101 Paracetamol/Codeine 500/30 (Apo) tablet, 10 1047661000168105 Paracetamol/Codeine 500/30 (Apo) tablet 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047321000168108 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 10 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +18007011000036107 Enahexal 20 mg uncoated tablet, 30, blister pack 121816 13730011000036102 Enahexal 20 mg uncoated tablet, 30 7013011000036106 Enahexal 20 mg uncoated tablet 4073011000036109 Enahexal 4073011000036109 Enahexal 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +925317011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet, 30, blister pack 164866 924853011000036109 Clopidogrel (Actavis) 75 mg film-coated tablet, 30 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 87801011000036104 clopidogrel 75 mg tablet, 30 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1095281000168103 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 50, blister pack 287307 1095271000168101 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 50 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +901151000168105 Glycoprep-C powder for oral liquid, 210 g sachet 20502 901141000168108 Glycoprep-C powder for oral liquid, 210 g sachet 901121000168102 Glycoprep-C powder for oral liquid, 210 g sachet 64996011000036107 Glycoprep-C 64996011000036107 Glycoprep-C 901131000168104 macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet 901111000168109 macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet 69825011000036102 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate +19626011000036108 Prograf 1 mg hard capsule, 100, blister pack 58930 12895011000036106 Prograf 1 mg hard capsule, 100 6185011000036101 Prograf 1 mg hard capsule 4131011000036102 Prograf 4131011000036102 Prograf 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +68995011000036104 Nicotinell Liquorice 4 mg chewing gum, 24, blister pack 136135 66797011000036106 Nicotinell Liquorice 4 mg chewing gum, 24 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +931365011000036105 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 500 mL, bottle 10908 930555011000036106 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 500 mL 929926011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid 929899011000036104 Eucalyptus Oil (Bosisto's) 929899011000036104 Eucalyptus Oil (Bosisto's) 932340011000036107 eucalyptus oil 1 mL/mL liquid, 500 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +56221000036105 Panadol Cold and Flu Max plus Decongestant Hot Lemon powder for oral liquid, 10 sachets 153580 51561000036109 Panadol Cold and Flu Max plus Decongestant Hot Lemon powder for oral liquid, 10 sachets 49191000036109 Panadol Cold and Flu Max plus Decongestant Hot Lemon powder for oral liquid, 1 sachet 40341000168103 Panadol Cold and Flu Max plus Decongestant 40341000168103 Panadol Cold and Flu Max plus Decongestant 51571000036101 phenylephrine hydrochloride 10 mg + paracetamol 1 g powder for oral liquid, 10 sachets 49201000036106 phenylephrine hydrochloride 10 mg + paracetamol 1 g powder for oral liquid, 1 sachet 61800011000036107 phenylephrine + paracetamol +18831011000036105 Alphamox 500 mg hard capsule, 20, blister pack 17679 12145011000036105 Alphamox 500 mg hard capsule, 20 5788011000036102 Alphamox 500 mg hard capsule 4042011000036101 Alphamox 4042011000036101 Alphamox 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +19845011000036106 Viagra 25 mg film-coated tablet, 4, blister pack 64434 13095011000036100 Viagra 25 mg film-coated tablet, 4 6379011000036103 Viagra 25 mg film-coated tablet 3408011000036101 Viagra 3408011000036101 Viagra 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +116681000036106 Rosuvastatin (RBX) 10 mg film-coated tablet, 30, blister pack 184707 114971000036107 Rosuvastatin (RBX) 10 mg film-coated tablet, 30 113281000036102 Rosuvastatin (RBX) 10 mg film-coated tablet 112711000036106 Rosuvastatin (RBX) 112711000036106 Rosuvastatin (RBX) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +730991000168109 Inflectra 100 mg powder for injection, 1 vial 217066 730981000168106 Inflectra 100 mg powder for injection, 1 vial 730961000168102 Inflectra 100 mg powder for injection, 100 mg vial 730931000168105 Inflectra 730931000168105 Inflectra 27724011000036101 infliximab 100 mg injection, 1 vial 23059011000036109 infliximab 100 mg injection, vial 21926011000036101 infliximab +19868011000036109 MS Contin Suspension 60 mg modified release granules, 20 sachets 65397 13115011000036109 MS Contin Suspension 60 mg modified release granules, 20 sachets 6398011000036100 MS Contin Suspension 60 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 27556011000036107 morphine sulfate pentahydrate 60 mg modified release granules, 20 sachets 22895011000036105 morphine sulfate pentahydrate 60 mg modified release granules, 1 sachet 21252011000036100 morphine +1043641000168100 Pryzex 10 mg film-coated tablet, 20, blister pack 178996 1043631000168109 Pryzex 10 mg film-coated tablet, 20 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043621000168106 olanzapine 10 mg tablet, 20 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +18347011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30, blister pack 149803 11304011000036106 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30 4960011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18347011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30, blister pack 131633 11304011000036106 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30 4960011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18347011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30, blister pack 104531 11304011000036106 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30 4960011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18347011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30, blister pack 211955 11304011000036106 Simvastatin (Terry White Chemists) 80 mg film-coated tablet, 30 4960011000036100 Simvastatin (Terry White Chemists) 80 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +60232011000036102 Fiorinal Dental hard capsule, 20, blister pack 13356 56191011000036106 Fiorinal Dental hard capsule, 20 53831011000036103 Fiorinal Dental hard capsule 54361000168105 Fiorinal Dental 54361000168105 Fiorinal Dental 63257011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 2 mg capsule, 20 61903011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 2 mg capsule 37813011000036109 paracetamol + codeine + doxylamine +1090791000168102 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 10, blister pack 286355 1090781000168100 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 10 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1115411000168101 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 28, blister pack 158163 1115401000168104 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 28 1115241000168103 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 922580011000036104 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +747031000168106 Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 217092 747021000168108 Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 746991000168106 Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule 730921000168107 Granisetron (Apotex) 730921000168107 Granisetron (Apotex) 924180011000036100 granisetron 3 mg/3 mL injection, 5 x 3 mL ampoules 23543011000036106 granisetron 3 mg/3 mL injection, ampoule 21431011000036106 granisetron +20110011000036100 Ticlopidine Hydrochloride (Hexal) 250 mg film-coated tablet, 60, bottle 71987 13335011000036105 Ticlopidine Hydrochloride (Hexal) 250 mg film-coated tablet, 60 6620011000036104 Ticlopidine Hydrochloride (Hexal) 250 mg film-coated tablet 3014011000036101 Ticlopidine Hydrochloride (Hexal) 3014011000036101 Ticlopidine Hydrochloride (Hexal) 27721011000036104 ticlopidine hydrochloride 250 mg tablet, 60 23056011000036100 ticlopidine hydrochloride 250 mg tablet 21382011000036100 ticlopidine +735261000168102 Aciclovir (Sandoz) 200 mg uncoated tablet, 25, blister pack 99420 735251000168104 Aciclovir (Sandoz) 200 mg uncoated tablet, 25 735241000168101 Aciclovir (Sandoz) 200 mg uncoated tablet 708531000168108 Aciclovir (Sandoz) 708531000168108 Aciclovir (Sandoz) 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +61246011000036106 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 200 mL, bottle 77013 57182011000036100 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 200 mL 54227011000036100 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 5 mL 22861000168109 Benadryl for the Family Dry Cough and Nasal Congestion 22861000168109 Benadryl for the Family Dry Cough and Nasal Congestion 63754011000036104 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 200 mL 62073011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61751011000036109 dextromethorphan + pseudoephedrine +69139011000036109 Nicotinell Classic 4 mg chewing gum, 168, blister pack 152894 66939011000036100 Nicotinell Classic 4 mg chewing gum, 168 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71516011000036108 nicotine 4 mg gum, 168 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +37371011000036100 Duromine 40 mg modified release capsule, 300, blister pack 10942 36642011000036100 Duromine 40 mg modified release capsule, 300 36082011000036102 Duromine 40 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 38560011000036106 phentermine 40 mg modified release capsule, 300 37837011000036107 phentermine 40 mg modified release capsule 37725011000036101 phentermine +921830011000036105 Phenytoin Sodium (Sandoz) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 117872 921384011000036105 Phenytoin Sodium (Sandoz) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 920977011000036107 Phenytoin Sodium (Sandoz) 100 mg/2 mL injection solution, 2 mL ampoule 920932011000036107 Phenytoin Sodium (Sandoz) 920932011000036107 Phenytoin Sodium (Sandoz) 46347011000036107 phenytoin sodium 100 mg/2 mL injection, 5 x 2 mL ampoules 45097011000036100 phenytoin sodium 100 mg/2 mL injection, ampoule 21672011000036100 phenytoin +934421000168101 Centevo 175/43.75/200 mg film-coated tablet, 150, bottle 238858 934411000168108 Centevo 175/43.75/200 mg film-coated tablet, 150 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934401000168105 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 150 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +60739011000036101 Feldene 0.5% gel, 25 g, tube 49700 56697011000036104 Feldene 0.5% gel, 25 g 54038011000036108 Feldene 0.5% gel 8391000168102 Feldene 8391000168102 Feldene 63515011000036106 piroxicam 0.5% gel, 25 g 61999011000036105 piroxicam 0.5% gel 21531011000036103 piroxicam +764191000168105 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet, 60, blister pack 214491 764181000168107 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet, 60 764131000168106 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 71472011000036108 oxycodone hydrochloride 15 mg modified release tablet, 60 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +830581000168101 Atomoxetine (Apo) 80 mg hard capsule, 14, blister pack 234807 830571000168104 Atomoxetine (Apo) 80 mg hard capsule, 14 830531000168102 Atomoxetine (Apo) 80 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830561000168105 atomoxetine 80 mg capsule, 14 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +74877011000036108 Rh(D) Immunoglobulin-VF (CSL) 625 units injection solution, 1 vial 61217 74364011000036106 Rh(D) Immunoglobulin-VF (CSL) 625 units injection solution, 1 vial 73895011000036107 Rh(D) Immunoglobulin-VF (CSL) 625 units injection solution, vial 48581000168103 Rh(D) Immunoglobulin-VF (CSL) 48581000168103 Rh(D) Immunoglobulin-VF (CSL) 75464011000036106 anti-D rho immunoglobulin 625 units injection, 1 vial 75075011000036109 anti-D rho immunoglobulin 625 units injection, vial 74975011000036107 anti-D rho immunoglobulin +1051131000168100 Fentanyl (GH) 100 microgram/2 mL injection solution, 2 mL ampoule 201872 1051121000168103 Fentanyl (GH) 100 microgram/2 mL injection solution, 2 mL ampoule 701631000168100 Fentanyl (GH) 100 microgram/2 mL injection solution, 2 mL ampoule 701591000168100 Fentanyl (GH) 701591000168100 Fentanyl (GH) 1051111000168105 fentanyl 100 microgram/2 mL injection, 2 mL ampoule 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +906611000168105 Celecoxib (Lupin) 200 mg hard capsule, 30, blister pack 196176 906601000168107 Celecoxib (Lupin) 200 mg hard capsule, 30 906381000168105 Celecoxib (Lupin) 200 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +69237011000036104 Chlorhexidine Acetate (Baxter) 0.1% (100 mg/100 mL) irrigation solution, 100 mL bottle 19463 67037011000036102 Chlorhexidine Acetate (Baxter) 0.1% (100 mg/100 mL) irrigation solution, 100 mL bottle 65393011000036104 Chlorhexidine Acetate (Baxter) 0.1% (100 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71607011000036100 chlorhexidine acetate 0.1% (100 mg/100 mL) solution, 100 mL bottle 70089011000036108 chlorhexidine acetate 0.1% (100 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +50622011000036101 Seroquel XR 400 mg modified release tablet, 100, blister pack 138922 49648011000036106 Seroquel XR 400 mg modified release tablet, 100 48798011000036109 Seroquel XR 400 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51539011000036109 quetiapine 400 mg modified release tablet, 100 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +1077961000168103 Atomoxetine (AN) 40 mg hard capsule, 14, blister pack 234832 1077951000168100 Atomoxetine (AN) 40 mg hard capsule, 14 1077921000168108 Atomoxetine (AN) 40 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830671000168100 atomoxetine 40 mg capsule, 14 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1017931000168102 Arizole 2 mg uncoated tablet, 28, blister pack 198211 1017921000168100 Arizole 2 mg uncoated tablet, 28 1016031000168104 Arizole 2 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 801611000168108 aripiprazole 2 mg tablet, 28 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +867951000168108 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags 16750 867941000168106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags 867891000168105 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 867931000168102 glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags 867881000168107 glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +948261000168100 Ranitidine (GN) 150 mg film-coated tablet, 14, bottle 148524 933202181000036108 Ranitidine (GN) 150 mg film-coated tablet, 14 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1081111000168103 Piptaz 4 g/0.5 g (Auro) powder for injection, 5 x 4.5 g vials 162912 1081101000168101 Piptaz 4 g/0.5 g (Auro) powder for injection, 5 x 4.5 g vials 1081061000168104 Piptaz 4 g/0.5 g (Auro) powder for injection, 4.5 g vial 1081051000168101 Piptaz 4 g/0.5 g (Auro) 1081051000168101 Piptaz 4 g/0.5 g (Auro) 1081091000168106 piperacillin 4 g + tazobactam 500 mg injection, 5 x 4.5 g vials 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +60497011000036105 Veganin uncoated tablet, 100, blister pack 15074 56455011000036104 Veganin uncoated tablet, 100 53928011000036103 Veganin uncoated tablet 53242011000036103 Veganin 53242011000036103 Veganin 63369011000036109 aspirin 325 mg + codeine phosphate hemihydrate 8 mg tablet, 100 61930011000036108 aspirin 325 mg + codeine phosphate hemihydrate 8 mg tablet 21831011000036102 aspirin + codeine +181551000036106 Candesartan Cilexetil (Chemmart) 4 mg uncoated tablet, 30, blister pack 210547 181091000036106 Candesartan Cilexetil (Chemmart) 4 mg uncoated tablet, 30 180491000036106 Candesartan Cilexetil (Chemmart) 4 mg uncoated tablet 180271000036106 Candesartan Cilexetil (Chemmart) 180271000036106 Candesartan Cilexetil (Chemmart) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +969871000168108 Aripiprazole (AN) 20 mg uncoated tablet, 30, bottle 198184 969411000168103 Aripiprazole (AN) 20 mg uncoated tablet, 30 969381000168101 Aripiprazole (AN) 20 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +32589011000036108 Glucose (Baxter) 5% (50 g/L) injection solution, 1 L bag 48527 32384011000036109 Glucose (Baxter) 5% (50 g/L) injection solution, 1 L bag 5440011000036101 Glucose (Baxter) 5% (50 g/L) injection solution, 1 L bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 32784011000036108 glucose 5% (50 g/L) injection, 1 L bag 22568011000036103 glucose 5% (50 g/L) injection, bag 21354011000036103 glucose +1056631000168101 Olanzapine (Auro) 7.5 mg uncoated tablet, 30, bottle 179929 1056621000168104 Olanzapine (Auro) 7.5 mg uncoated tablet, 30 714051000168100 Olanzapine (Auro) 7.5 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 89771000036101 olanzapine 7.5 mg tablet, 30 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +935471000168104 Colazide 750 mg hard capsule, 60, bottle 77358 935461000168105 Colazide 750 mg hard capsule, 60 932481000168105 Colazide 750 mg hard capsule 3072011000036104 Colazide 3072011000036104 Colazide 935451000168108 balsalazide sodium 750 mg capsule, 60 23166011000036100 balsalazide sodium 750 mg capsule 21908011000036105 balsalazide +729871000168109 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices 127116 729861000168103 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 729851000168100 adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL injection devices 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 21584011000036107 adalimumab +729871000168109 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices 199410 729861000168103 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 729851000168100 adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL injection devices 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 21584011000036107 adalimumab +933212741000036100 Atenolol (Winthrop) 50 mg film-coated tablet, 30, blister pack 147640 933202071000036107 Atenolol (Winthrop) 50 mg film-coated tablet, 30 933195211000036101 Atenolol (Winthrop) 50 mg film-coated tablet 933193891000036109 Atenolol (Winthrop) 933193891000036109 Atenolol (Winthrop) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +847621000168101 Sandostatin LAR (1 x 10 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 227962 847611000168108 Sandostatin LAR (1 x 10 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 845101000168109 Sandostatin LAR (inert substance) diluent, 2 mL syringe 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 847601000168105 octreotide 10 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +847621000168101 Sandostatin LAR (1 x 10 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 227962 847611000168108 Sandostatin LAR (1 x 10 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 6552011000036109 Sandostatin LAR (octreotide 10 mg) modified release injection, 10 mg vial 32791000168105 Sandostatin LAR 32791000168105 Sandostatin LAR 847601000168105 octreotide 10 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 22995011000036102 octreotide 10 mg modified release injection, vial 21316011000036104 octreotide +1069421000168103 Hydromorphone (MPL) 4 mg uncoated tablet, 20, bottle 295424 1069411000168105 Hydromorphone (MPL) 4 mg uncoated tablet, 20 1069401000168107 Hydromorphone (MPL) 4 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 27606011000036105 hydromorphone hydrochloride 4 mg tablet, 20 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +116761000036107 Cavstat 40 mg film-coated tablet, 30, bottle 186382 115051000036102 Cavstat 40 mg film-coated tablet, 30 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +116761000036107 Cavstat 40 mg film-coated tablet, 30, bottle 234461 115051000036102 Cavstat 40 mg film-coated tablet, 30 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +69450011000036103 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL pack, bag 48525 67250011000036107 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL pack 65576011000036104 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71800011000036108 glucose 5% (5 g/100 mL) injection, 100 mL pack 70192011000036108 glucose 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +883991000168107 Betahistine (Medis) 16 mg tablet, 10, blister pack 231717 883981000168109 Betahistine (Medis) 16 mg tablet, 10 883971000168106 Betahistine (Medis) 16 mg tablet 883891000168100 Betahistine (Medis) 883891000168100 Betahistine (Medis) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +103751000036103 Rhophylac-300 1500 units (300 microgram)/2 mL injection solution, 2 mL syringe 153815 101081000036108 Rhophylac-300 1500 units (300 microgram)/2 mL injection solution, 2 mL syringe 98981000036105 Rhophylac-300 1500 units (300 microgram)/2 mL injection solution, 2 mL syringe 59441000168103 Rhophylac-300 59441000168103 Rhophylac-300 101091000036105 anti-D rho immunoglobulin 1500 units (300 microgram)/2 mL injection, 2 mL syringe 98991000036107 anti-D rho immunoglobulin 1500 units (300 microgram)/2 mL injection, syringe 74975011000036107 anti-D rho immunoglobulin +17817011000036102 Proquin 500 mg film-coated tablet, 14, blister pack 119536 11617011000036109 Proquin 500 mg film-coated tablet, 14 5677011000036104 Proquin 500 mg film-coated tablet 3862011000036105 Proquin 3862011000036105 Proquin 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +905581000168106 Farydak 15 mg hard capsule, 6, blister pack 230844 905571000168108 Farydak 15 mg hard capsule, 6 905551000168104 Farydak 15 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 905561000168102 panobinostat 15 mg capsule, 6 905541000168101 panobinostat 15 mg capsule 905421000168108 panobinostat +926773011000036104 Somac Heartburn Relief 20 mg enteric tablet, 7, blister pack 154252 926170011000036103 Somac Heartburn Relief 20 mg enteric tablet, 7 925654011000036106 Somac Heartburn Relief 20 mg enteric tablet 50831000168101 Somac Heartburn Relief 50831000168101 Somac Heartburn Relief 924214011000036106 pantoprazole 20 mg enteric tablet, 7 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +37348011000036105 Hydroform cream, 30 g, tube 10317 36618011000036105 Hydroform cream, 30 g 36163011000036102 Hydroform cream 27611000168107 Hydroform 27611000168107 Hydroform 38538011000036103 hydrocortisone 1% + clioquinol 1% cream, 30 g 37822011000036107 hydrocortisone 1% + clioquinol 1% cream 37775011000036102 hydrocortisone + clioquinol +1106911000168102 Nu-Lax Natural Fruit Laxative block, 250 g, wrapping 228455 1106901000168100 Nu-Lax Natural Fruit Laxative block, 250 g 1106881000168102 Nu-Lax Natural Fruit Laxative block 1106861000168106 Nu-Lax Natural Fruit Laxative 1106861000168106 Nu-Lax Natural Fruit Laxative 1106891000168104 senna leaf powder 1 g/10 g + fig 2.16 g/10 g + date 3.6 g/10 g block, 250 g 1106871000168100 senna leaf powder 1 g/10 g + fig 2.16 g/10 g + date 3.6 g/10 g block 82425011000036104 senna leaf powder + fig + date +60716011000036104 Claratyne Children's Peach 1 mg/mL oral liquid solution, 200 mL, bottle 44453 56674011000036102 Claratyne Children's Peach 1 mg/mL oral liquid solution, 200 mL 54028011000036105 Claratyne Children's Peach 1 mg/mL oral liquid solution 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 63501011000036107 loratadine 1 mg/mL oral liquid, 200 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +68845011000036102 Pinetarsol 2.3% bath oil, 1 L, bottle 10632 66533011000036105 Pinetarsol 2.3% bath oil, 1 L 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71265011000036108 tar 2.3% bath oil, 1 L 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +79682011000036105 Norfloxacin (Terry White Chemists) 400 mg film-coated tablet, 14, bottle 155548 13782011000036109 Norfloxacin (Terry White Chemists) 400 mg film-coated tablet, 14 7068011000036100 Norfloxacin (Terry White Chemists) 400 mg film-coated tablet 3997011000036103 Norfloxacin (Terry White Chemists) 3997011000036103 Norfloxacin (Terry White Chemists) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +69669011000036102 Nicabate Clear 14 mg/24 hours patch, 14, sachet 81034 67468011000036104 Nicabate Clear 14 mg/24 hours patch, 14 65675011000036102 Nicabate Clear 14 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71995011000036109 nicotine 14 mg/24 hours patch, 14 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +59915011000036101 Ibuprofen Children's (Amcal) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 117617 55877011000036101 Ibuprofen Children's (Amcal) 100 mg/5 mL oral liquid suspension, 100 mL 53650011000036102 Ibuprofen Children's (Amcal) 100 mg/5 mL oral liquid suspension, 5 mL 22291000168103 Ibuprofen Children's (Amcal) 22291000168103 Ibuprofen Children's (Amcal) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +868111000168109 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags 16847 868101000168106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags 868051000168106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 10581000168107 Dianeal PD-4 with Glucose 2.5% 10581000168107 Dianeal PD-4 with Glucose 2.5% 868091000168101 glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags 868041000168109 glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +1072521000168101 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (36 x Day tablets, 12 x Night tablets), 48, blister pack 239594 1072511000168108 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (36 Day tablets, 12 x Night tablets), 48 1072471000168104 Cold and Flu Relief PE Day/Night (Day) (Discount Drug Stores) film-coated tablet 1072461000168105 Cold and Flu Relief PE Day/Night (Discount Drug Stores) 1072401000168109 Cold and Flu Relief PE Day/Night (Day) (Discount Drug Stores) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1072521000168101 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (36 x Day tablets, 12 x Night tablets), 48, blister pack 239594 1072511000168108 Cold and Flu Relief PE Day/Night (Discount Drug Stores) (36 Day tablets, 12 x Night tablets), 48 1072481000168101 Cold and Flu Relief PE Day/Night (Night) (Discount Drug Stores) film-coated tablet 1072461000168105 Cold and Flu Relief PE Day/Night (Discount Drug Stores) 1072411000168107 Cold and Flu Relief PE Day/Night (Night) (Discount Drug Stores) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +931181000168105 Centevo 75/18.75/200 mg film-coated tablet, 10, bottle 238853 931171000168107 Centevo 75/18.75/200 mg film-coated tablet, 10 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 84648011000036102 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 10 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +50576011000036106 Glucoboy diagnostic strip, 50, bottle 134852 49610011000036100 Glucoboy diagnostic strip, 50 48789011000036100 Glucoboy diagnostic strip 48433011000036102 Glucoboy 48433011000036102 Glucoboy 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +56241000036102 Anesia 1% 1 g/100 mL injection emulsion, 100 mL vial 153585 51601000036109 Anesia 1% 1 g/100 mL injection emulsion, 100 mL vial 49451000036106 Anesia 1% 1 g/100 mL injection emulsion, 100 mL vial 43431000168108 Anesia 1% 43431000168108 Anesia 1% 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +680561000168106 Temodal 250 mg hard capsule, 5, sachet 164216 13243011000036104 Temodal 250 mg hard capsule, 5 6525011000036102 Temodal 250 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +784441000168109 Pregabalin (Sandoz) 300 mg hard capsule, 56, blister pack 210050 784431000168100 Pregabalin (Sandoz) 300 mg hard capsule, 56 784421000168103 Pregabalin (Sandoz) 300 mg hard capsule 784381000168107 Pregabalin (Sandoz) 784381000168107 Pregabalin (Sandoz) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +847781000168107 Alfentanil (GH) 5 mg/10 mL injection solution, 10 x 10 mL ampoules 199999 847771000168109 Alfentanil (GH) 5 mg/10 mL injection solution, 10 x 10 mL ampoules 699801000168102 Alfentanil (GH) 5 mg/10 mL injection solution, 10 mL ampoule 699791000168103 Alfentanil (GH) 699791000168103 Alfentanil (GH) 847761000168103 alfentanil 5 mg/10 mL injection, 10 x 10 mL ampoules 34897011000036105 alfentanil 5 mg/10 mL injection, ampoule 34836011000036102 alfentanil +885271000168103 Candesan 16 mg uncoated tablet, 30, blister pack 195443 885261000168109 Candesan 16 mg uncoated tablet, 30 885251000168107 Candesan 16 mg uncoated tablet 885241000168105 Candesan 885241000168105 Candesan 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1069461000168108 Hydromorphone (MPL) 4 mg uncoated tablet, 100, bottle 295424 1069451000168106 Hydromorphone (MPL) 4 mg uncoated tablet, 100 1069401000168107 Hydromorphone (MPL) 4 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35195011000036101 hydromorphone hydrochloride 4 mg tablet, 100 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +709381000168109 Agrippal 2015 injection suspension, 1 x 0.5 mL syringe 144670 709371000168106 Agrippal 2015 injection suspension, 1 x 0.5 mL syringe 709351000168102 Agrippal 2015 injection suspension, 0.5 mL syringe 709321000168105 Agrippal 2015 709321000168105 Agrippal 2015 709361000168100 influenza trivalent adult vaccine 2015 injection, 1 x 0.5 mL syringe 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +44463011000036106 Ciazil 20 mg film-coated tablet, 100, bottle 74265 41919011000036103 Ciazil 20 mg film-coated tablet, 100 6727011000036108 Ciazil 20 mg film-coated tablet 3546011000036102 Ciazil 3546011000036102 Ciazil 46708011000036102 citalopram 20 mg tablet, 100 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +87702011000036108 Carvedilol (Apo) 12.5 mg film-coated tablet, 60, bottle 123837 87415011000036108 Carvedilol (Apo) 12.5 mg film-coated tablet, 60 87297011000036103 Carvedilol (Apo) 12.5 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +1017611000168102 Arcoxia 90 mg film-coated tablet, 5, blister pack 204147 1017601000168100 Arcoxia 90 mg film-coated tablet, 5 1017551000168102 Arcoxia 90 mg film-coated tablet 929823011000036107 Arcoxia 929823011000036107 Arcoxia 1017591000168107 etoricoxib 90 mg tablet, 5 1017541000168104 etoricoxib 90 mg tablet 931796011000036104 etoricoxib +43979011000036101 Crystal Violet (Orion) 5 mg/mL paint, 50 mL, bottle 42851 41471011000036106 Crystal Violet (Orion) 5 mg/mL paint, 50 mL 39997011000036102 Crystal Violet (Orion) 5 mg/mL paint 39624011000036103 Crystal Violet (Orion) 39624011000036103 Crystal Violet (Orion) 46317011000036101 crystal violet 5 mg/mL paint, 50 mL 45073011000036100 crystal violet 5 mg/mL paint 44893011000036100 crystal violet +935611000168109 Celecoxib (SZ) 100 mg hard capsule, 60, blister pack 210629 935601000168106 Celecoxib (SZ) 100 mg hard capsule, 60 935591000168104 Celecoxib (SZ) 100 mg hard capsule 935551000168109 Celecoxib (SZ) 935551000168109 Celecoxib (SZ) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +768531000168109 Fluquadri 2016 injection suspension, 10 x 0.5 mL syringes 213963 768521000168106 Fluquadri 2016 injection suspension, 10 x 0.5 mL syringes 768471000168108 Fluquadri 2016 injection suspension, 0.5 mL syringe 768361000168107 Fluquadri 2016 768361000168107 Fluquadri 2016 768511000168104 influenza quadrivalent adult vaccine 2016 injection, 10 x 0.5 mL syringes 768461000168102 influenza quadrivalent adult vaccine 2016 injection, 0.5 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +769971000168108 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 144128 769961000168102 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 49061000036103 Jene-35 ED (inert substance) film-coated tablet 6021000168101 Jene-35 ED 6021000168101 Jene-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +769971000168108 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 144128 769961000168102 Jene-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 49051000036101 Jene-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 6021000168101 Jene-35 ED 6021000168101 Jene-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +841991000168102 Flolan (1 x 1.5 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 80343 841981000168100 Flolan (1 x 1.5 mg vial, 1 x 50 mL inert diluent vial), 1 pack 638621000168107 Flolan (inert substance) diluent, 50 mL vial 2928011000036100 Flolan 2928011000036100 Flolan 841971000168103 epoprostenol 1.5 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +841991000168102 Flolan (1 x 1.5 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 80343 841981000168100 Flolan (1 x 1.5 mg vial, 1 x 50 mL inert diluent vial), 1 pack 7055011000036100 Flolan (epoprostenol 1.5 mg) powder for injection, 1.5 mg vial 2928011000036100 Flolan 2928011000036100 Flolan 841971000168103 epoprostenol 1.5 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 23255011000036104 epoprostenol 1.5 mg injection, vial 21703011000036107 epoprostenol +69012011000036104 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 6 sachets 138697 66814011000036103 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 6 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71443011000036102 paracetamol 1 g powder for oral liquid, 6 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1060921000168100 Atomerra 5 mg hard capsule, 28, blister pack 234812 1060911000168107 Atomerra 5 mg hard capsule, 28 1060861000168103 Atomerra 5 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 976371000168103 atomoxetine 5 mg capsule, 28 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +18969011000036106 Panafcort 25 mg uncoated tablet, 30, bottle 27957 12277011000036103 Panafcort 25 mg uncoated tablet, 30 4488011000036103 Panafcort 25 mg uncoated tablet 3838011000036103 Panafcort 3838011000036103 Panafcort 27038011000036108 prednisone 25 mg tablet, 30 22411011000036103 prednisone 25 mg tablet 21496011000036106 prednisone +839021000168100 Joncia 25 mg hard capsule, 56, blister pack 176508 839011000168107 Joncia 25 mg hard capsule, 56 838931000168105 Joncia 25 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839001000168109 milnacipran hydrochloride 25 mg capsule, 56 838921000168107 milnacipran hydrochloride 25 mg capsule 838911000168100 milnacipran +738321000168108 Rosuvastatin (Auro) 10 mg film-coated tablet, 30, blister pack 197003 738311000168101 Rosuvastatin (Auro) 10 mg film-coated tablet, 30 738301000168104 Rosuvastatin (Auro) 10 mg film-coated tablet 738231000168104 Rosuvastatin (Auro) 738231000168104 Rosuvastatin (Auro) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +61200011000036102 Naprogesic 275 mg film-coated tablet, 4, blister pack 75501 57136011000036105 Naprogesic 275 mg film-coated tablet, 4 54213011000036100 Naprogesic 275 mg film-coated tablet 53327011000036106 Naprogesic 53327011000036106 Naprogesic 63739011000036102 naproxen sodium 275 mg tablet, 4 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +69577011000036109 Agarol Strawberry 4.83 mL/15 mL oral liquid emulsion, 500 mL, bottle 62658 67377011000036100 Agarol Strawberry 4.83 mL/15 mL oral liquid emulsion, 500 mL 65635011000036104 Agarol Strawberry 4.83 mL/15 mL oral liquid emulsion, 15 mL 64959011000036105 Agarol 64959011000036105 Agarol 71915011000036108 liquid paraffin 4.83 mL/15 mL oral liquid, 500 mL 70245011000036107 liquid paraffin 4.83 mL/15 mL oral liquid 33623011000036103 liquid paraffin +79060011000036103 Curam Duo 400/57 powder for oral liquid, 120 mL, bottle 147109 78827011000036106 Curam Duo 400/57 powder for oral liquid, 120 mL 78643011000036105 Curam Duo 400/57 powder for oral liquid, 5 mL 53491000168109 Curam Duo 400/57 53491000168109 Curam Duo 400/57 79223011000036107 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 120 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +864961000168104 Amitriptyline (GXP) 25 mg tablet, 1000, bottle 232131 864911000168102 Amitriptyline (GXP) 25 mg tablet, 1000 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +909671000168105 Cisatracurium (HHH) 150 mg/30 mL injection solution, 30 mL vial 226860 909661000168104 Cisatracurium (HHH) 150 mg/30 mL injection solution, 30 mL vial 909651000168101 Cisatracurium (HHH) 150 mg/30 mL injection solution, 30 mL vial 909461000168101 Cisatracurium (HHH) 909461000168101 Cisatracurium (HHH) 161591000036100 cisatracurium 150 mg/30 mL injection, 30 mL vial 161501000036108 cisatracurium 150 mg/30 mL injection, vial 44902011000036101 cisatracurium +948491000168106 Pantoprazole (HX) 40 mg powder for injection, 1 vial 147379 948481000168108 Pantoprazole (HX) 40 mg powder for injection, 1 vial 948471000168105 Pantoprazole (HX) 40 mg powder for injection, 40 mg vial 948461000168104 Pantoprazole (HX) 948461000168104 Pantoprazole (HX) 46192011000036106 pantoprazole 40 mg injection, 1 vial 45023011000036104 pantoprazole 40 mg injection, vial 21563011000036107 pantoprazole +729531000168108 Daklinza 30 mg film-coated tablet, 28, blister pack 222743 729521000168105 Daklinza 30 mg film-coated tablet, 28 729471000168107 Daklinza 30 mg film-coated tablet 729431000168109 Daklinza 729431000168109 Daklinza 729511000168103 daclatasvir 30 mg tablet, 28 729461000168101 daclatasvir 30 mg tablet 729451000168103 daclatasvir +666301000168102 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 206194 666291000168103 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 666271000168104 Novoseven RT (inert substance) diluent, 1 mL syringe 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666281000168101 eptacog alfa (activated) 1 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +666301000168102 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 206194 666291000168103 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 82012011000036106 Novoseven RT (eptacog alfa (activated) 1 mg) powder for injection, vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 666281000168101 eptacog alfa (activated) 1 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 82442011000036109 eptacog alfa (activated) 1 mg injection, vial 44889011000036101 eptacog alfa (activated) +56381000036101 Amline 5 mg uncoated tablet, 10, blister pack 160809 52191000036103 Amline 5 mg uncoated tablet, 10 48911000036107 Amline 5 mg uncoated tablet 48351000036105 Amline 48351000036105 Amline 84619011000036102 amlodipine 5 mg tablet, 10 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +974441000168109 Pregabalin (Apo) 150 mg hard capsule, 56, bottle 193249 970321000168102 Pregabalin (Apo) 150 mg hard capsule, 56 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1013271000168104 Naropin 0.5% 100 mg/20 mL injection solution, 5 x 20 mL ampoules 52401 1013261000168105 Naropin 0.5% 100 mg/20 mL injection solution, 5 x 20 mL ampoules 1013241000168106 Naropin 0.5% 100 mg/20 mL injection solution, 20 mL ampoule 1013221000168100 Naropin 0.5% 1013221000168100 Naropin 0.5% 1013251000168108 ropivacaine hydrochloride 100 mg/20 mL injection, 5 x 20 mL ampoules 1013231000168102 ropivacaine hydrochloride 100 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +781431000168102 Oxycodone MR (GenRx) 15 mg modified release tablet, 60, blister pack 214497 781421000168100 Oxycodone MR (GenRx) 15 mg modified release tablet, 60 781361000168100 Oxycodone MR (GenRx) 15 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 71472011000036108 oxycodone hydrochloride 15 mg modified release tablet, 60 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +920708011000036107 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 20, blister pack 119091 920364011000036103 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 20 920131011000036104 Zolpidem Tartrate (GA) 10 mg film-coated tablet 920116011000036103 Zolpidem Tartrate (GA) 920116011000036103 Zolpidem Tartrate (GA) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +921977011000036103 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 50 mL vials 49594 921535011000036102 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 50 mL vials 921067011000036102 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 50 mL vial 920924011000036100 Visipaque 920924011000036100 Visipaque 922654011000036108 iodixanol 652 mg (iodine 320 mg)/mL injection, 10 x 50 mL vials 922137011000036104 iodixanol 652 mg (iodine 320 mg)/mL injection, 50 mL vial 922032011000036109 iodixanol +906771000168106 Celecoxib (Lupin) 200 mg hard capsule, 120, blister pack 196176 906761000168100 Celecoxib (Lupin) 200 mg hard capsule, 120 906381000168105 Celecoxib (Lupin) 200 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +34790011000036107 Oxynorm 10 mg hard capsule, 60, blister pack 74143 34367011000036109 Oxynorm 10 mg hard capsule, 60 6720011000036107 Oxynorm 10 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +69496011000036106 Dulcolax 5 mg enteric tablet, 30, blister pack 50792 67296011000036104 Dulcolax 5 mg enteric tablet, 30 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 71843011000036105 bisacodyl 5 mg enteric tablet, 30 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +781471000168104 Kenacomb ointment, 30 g, tube 19197 781461000168105 Kenacomb ointment, 30 g 758221000168103 Kenacomb ointment 3273011000036104 Kenacomb 3273011000036104 Kenacomb 781451000168108 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 30 g 758211000168105 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment 758201000168107 triamcinolone + neomycin + gramicidin + nystatin +73264011000036104 Ramipril (GenRx) 2.5 mg hard capsule, 30, blister pack 134794 73064011000036105 Ramipril (GenRx) 2.5 mg hard capsule, 30 72971011000036104 Ramipril (GenRx) 2.5 mg hard capsule 39554011000036107 Ramipril (GenRx) 39554011000036107 Ramipril (GenRx) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +870761000168101 Lamotrigine (GH) 100 mg uncoated tablet, 56, blister pack 275002 870751000168103 Lamotrigine (GH) 100 mg uncoated tablet, 56 870741000168100 Lamotrigine (GH) 100 mg uncoated tablet 870701000168102 Lamotrigine (GH) 870701000168102 Lamotrigine (GH) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +52742011000036103 Vedilol 12.5 mg uncoated tablet, 60, blister pack 137280 52554011000036106 Vedilol 12.5 mg uncoated tablet, 60 52416011000036100 Vedilol 12.5 mg uncoated tablet 52393011000036101 Vedilol 52393011000036101 Vedilol 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +818881000168107 Quetiapine XR (Apo) 400 mg modified release tablet, 60, blister pack 226800 818871000168109 Quetiapine XR (Apo) 400 mg modified release tablet, 60 818821000168108 Quetiapine XR (Apo) 400 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +17944011000036106 Pravastatin Sodium (Winthrop) 20 mg uncoated tablet, 30, blister pack 130846 11908011000036106 Pravastatin Sodium (Winthrop) 20 mg uncoated tablet, 30 5558011000036109 Pravastatin Sodium (Winthrop) 20 mg uncoated tablet 3660011000036101 Pravastatin Sodium (Winthrop) 3660011000036101 Pravastatin Sodium (Winthrop) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +928856011000036104 Ramibell 10 mg hard capsule, 30, blister pack 134805 928218011000036100 Ramibell 10 mg hard capsule, 30 927877011000036107 Ramibell 10 mg hard capsule 927827011000036106 Ramibell 927827011000036106 Ramibell 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +924051000168103 Temaze 10 mg uncoated tablet, 30, blister pack 63864 924041000168100 Temaze 10 mg uncoated tablet, 30 6361011000036107 Temaze 10 mg uncoated tablet 3498011000036104 Temaze 3498011000036104 Temaze 924031000168109 temazepam 10 mg tablet, 30 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +1046471000168104 Buprenorphine (SDZ) 5 microgram/hour patch, 1, sachet 269669 1046461000168105 Buprenorphine (SDZ) 5 microgram/hour patch, 1 1046441000168106 Buprenorphine (SDZ) 5 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046451000168108 buprenorphine 5 microgram/hour patch, 1 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +59679011000036109 Sinus and Pain (Pharmacist Own) uncoated tablet, 24, blister pack 107065 55730011000036103 Sinus and Pain (Pharmacist Own) uncoated tablet, 24 53725011000036100 Sinus and Pain (Pharmacist Own) uncoated tablet 53303011000036109 Sinus and Pain (Pharmacist Own) 53303011000036109 Sinus and Pain (Pharmacist Own) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +1098331000168103 Chesty Cough Forte (Amcal) oral liquid, 200 mL, bottle 225478 1098321000168101 Chesty Cough Forte (Amcal) oral liquid, 200 mL 1098291000168109 Chesty Cough Forte (Amcal) oral liquid, 5 mL 1098251000168104 Chesty Cough Forte (Amcal) 1098251000168104 Chesty Cough Forte (Amcal) 63967011000036105 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +951421000168102 Modafinil (AN) 100 mg uncoated tablet, 60, blister pack 269912 951411000168109 Modafinil (AN) 100 mg uncoated tablet, 60 951361000168102 Modafinil (AN) 100 mg uncoated tablet 951351000168104 Modafinil (AN) 951351000168104 Modafinil (AN) 27978011000036104 modafinil 100 mg tablet, 60 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +60370011000036106 Iodine Standard Colourless (David Craig) 2.86% solution, 500 mL, bottle 14215 56329011000036108 Iodine Standard Colourless (David Craig) 2.86% solution, 500 mL 53875011000036104 Iodine Standard Colourless (David Craig) 2.86% solution 36091000168107 Iodine Standard Colourless (David Craig) 36091000168107 Iodine Standard Colourless (David Craig) 63311011000036106 iodine 2.86% solution, 500 mL 61914011000036108 iodine 2.86% solution 61782011000036105 iodine +60612011000036107 Diswart 10% application, 10 mL, bottle 18832 56570011000036103 Diswart 10% application, 10 mL 53978011000036102 Diswart 10% application 53224011000036109 Diswart 53224011000036109 Diswart 63431011000036108 glutaral 10% application, 10 mL 61959011000036103 glutaral 10% application 61718011000036105 glutaral +651821000168101 Metrol-XL 95 mg modified release tablet, 30, blister pack 172306 651811000168108 Metrol-XL 95 mg modified release tablet, 30 651801000168105 Metrol-XL 95 mg modified release tablet 651661000168105 Metrol-XL 651661000168105 Metrol-XL 28245011000036101 metoprolol succinate 95 mg modified release tablet, 30 23559011000036107 metoprolol succinate 95 mg modified release tablet 21662011000036107 metoprolol +902431000168104 Candesartan (GPPL) 8 mg uncoated tablet, 30, blister pack 195499 902421000168102 Candesartan (GPPL) 8 mg uncoated tablet, 30 902411000168109 Candesartan (GPPL) 8 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +1060881000168107 Atomerra 5 mg hard capsule, 7, blister pack 234812 1060871000168109 Atomerra 5 mg hard capsule, 7 1060861000168103 Atomerra 5 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 976311000168106 atomoxetine 5 mg capsule, 7 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +1011901000168102 Irbesartan (Apotex) 150 mg film-coated tablet, 7, blister pack 169789 1011891000168101 Irbesartan (Apotex) 150 mg film-coated tablet, 7 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 738151000168103 irbesartan 150 mg tablet, 7 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +78985011000036104 Temazepam (Apo) 10 mg uncoated tablet, 25, blister pack 153123 78864011000036107 Temazepam (Apo) 10 mg uncoated tablet, 25 78670011000036103 Temazepam (Apo) 10 mg uncoated tablet 41081000168100 Temazepam (Apo) 41081000168100 Temazepam (Apo) 28036011000036100 temazepam 10 mg tablet, 25 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +1078141000168100 Atomoxetine (AN) 80 mg hard capsule, 14, blister pack 234857 1078131000168109 Atomoxetine (AN) 80 mg hard capsule, 14 1078101000168102 Atomoxetine (AN) 80 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830561000168105 atomoxetine 80 mg capsule, 14 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +772801000168105 Hizentra 10 g/50 mL injection solution, 50 mL vial 207384 772791000168109 Hizentra 10 g/50 mL injection solution, 50 mL vial 772771000168108 Hizentra 10 g/50 mL injection solution, 50 mL vial 772751000168104 Hizentra 772751000168104 Hizentra 772781000168106 normal immunoglobulin 10 g/50 mL injection, 50 mL vial 772761000168102 normal immunoglobulin 10 g/50 mL injection, vial 74965011000036103 normal immunoglobulin +1091111000168102 Diclofenac (Medreich) 25 mg enteric tablet, 10, blister pack 284835 1091101000168100 Diclofenac (Medreich) 25 mg enteric tablet, 10 1091091000168105 Diclofenac (Medreich) 25 mg enteric tablet 1091051000168100 Diclofenac (Medreich) 1091051000168100 Diclofenac (Medreich) 63832011000036105 diclofenac sodium 25 mg enteric tablet, 10 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +50593011000036109 Clarithromycin (GenRx) 250 mg film-coated tablet, 14, bottle 134882 11185011000036103 Clarithromycin (GenRx) 250 mg film-coated tablet, 14 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +61684011000036109 Febridol 500 mg uncoated tablet, 1000, bottle 213739 57605011000036105 Febridol 500 mg uncoated tablet, 1000 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61684011000036109 Febridol 500 mg uncoated tablet, 1000, bottle 287227 57605011000036105 Febridol 500 mg uncoated tablet, 1000 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61684011000036109 Febridol 500 mg uncoated tablet, 1000, bottle 98138 57605011000036105 Febridol 500 mg uncoated tablet, 1000 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +39221000036102 Bronchitol 40 mg powder for inhalation, 280 capsules, blister pack 168002 35641000036109 Bronchitol 40 mg powder for inhalation, 280 capsules 32891000036107 Bronchitol 40 mg powder for inhalation, 1 capsule 32151000036106 Bronchitol 32151000036106 Bronchitol 35651000036107 mannitol 40 mg powder for inhalation, 280 capsules 81258011000036109 mannitol 40 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +39221000036102 Bronchitol 40 mg powder for inhalation, 280 capsules, blister pack 187575 35641000036109 Bronchitol 40 mg powder for inhalation, 280 capsules 32891000036107 Bronchitol 40 mg powder for inhalation, 1 capsule 32151000036106 Bronchitol 32151000036106 Bronchitol 35651000036107 mannitol 40 mg powder for inhalation, 280 capsules 81258011000036109 mannitol 40 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +882301000168105 Betahistine (SCP) 16 mg tablet, 25, blister pack 253732 882291000168109 Betahistine (SCP) 16 mg tablet, 25 882281000168106 Betahistine (SCP) 16 mg tablet 882241000168101 Betahistine (SCP) 882241000168101 Betahistine (SCP) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +926782011000036102 Metformin 1000 (Apo) 1 g film-coated tablet, 500, bottle 157225 926179011000036109 Metformin 1000 (Apo) 1 g film-coated tablet, 500 925684011000036100 Metformin 1000 (Apo) 1 g film-coated tablet 22791000168107 Metformin 1000 (Apo) 22791000168107 Metformin 1000 (Apo) 927333011000036103 metformin hydrochloride 1 g tablet, 500 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +19211011000036107 Modecate 25 mg/mL injection solution, 5 x 1 mL ampoules 47023 12501011000036107 Modecate 25 mg/mL injection solution, 5 x 1 mL ampoules 5355011000036100 Modecate 25 mg/mL injection solution, ampoule 4410011000036103 Modecate 4410011000036103 Modecate 27157011000036104 fluphenazine decanoate 25 mg/mL injection, 5 x 1 mL ampoules 22519011000036107 fluphenazine decanoate 25 mg/mL injection, ampoule 21519011000036106 fluphenazine decanoate +726741000168104 Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device 134653 726731000168108 Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose 726711000168103 Anapen Auto-Injector 300 microgram/0.3 mL injection solution, dose 21251000168102 Anapen Auto-Injector 21251000168102 Anapen Auto-Injector 726721000168105 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose 726701000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +1115591000168109 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 56, blister pack 158163 1115581000168106 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 56 1115241000168103 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 922582011000036100 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 56 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +44688011000036101 Malarone Junior 62.5/25 film-coated tablet, 24, blister pack 92855 42137011000036101 Malarone Junior 62.5/25 film-coated tablet, 24 40360011000036105 Malarone Junior 62.5/25 film-coated tablet 22191000168106 Malarone Junior 62.5/25 22191000168106 Malarone Junior 62.5/25 46898011000036103 atovaquone 62.5 mg + proguanil hydrochloride 25 mg tablet, 24 45338011000036106 atovaquone 62.5 mg + proguanil hydrochloride 25 mg tablet 44920011000036109 atovaquone + proguanil +1086821000168108 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet, 14, strip pack 280580 1086811000168101 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet, 14 1086761000168107 Heartburn Relief Extra Strength (Trust) 300 mg film-coated tablet 1086481000168105 Heartburn Relief Extra Strength (Trust) 1086481000168105 Heartburn Relief Extra Strength (Trust) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +59886011000036102 Period Pain Relief (Amcal) 275 mg film-coated tablet, 24, blister pack 222642 55848011000036104 Period Pain Relief (Amcal) 275 mg film-coated tablet, 24 53718011000036100 Period Pain Relief (Amcal) 275 mg film-coated tablet 53379011000036100 Period Pain Relief (Amcal) 53379011000036100 Period Pain Relief (Amcal) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +59886011000036102 Period Pain Relief (Amcal) 275 mg film-coated tablet, 24, blister pack 116382 55848011000036104 Period Pain Relief (Amcal) 275 mg film-coated tablet, 24 53718011000036100 Period Pain Relief (Amcal) 275 mg film-coated tablet 53379011000036100 Period Pain Relief (Amcal) 53379011000036100 Period Pain Relief (Amcal) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +1050811000168109 Bupredermal 10 microgram/hour patch, 2, sachet 234742 1050801000168106 Bupredermal 10 microgram/hour patch, 2 1050771000168109 Bupredermal 10 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 26681011000036100 buprenorphine 10 microgram/hour patch, 2 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +928915011000036105 Vaclovir 500 mg film-coated tablet, 42, blister pack 153822 928277011000036106 Vaclovir 500 mg film-coated tablet, 42 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +39061000036104 Donaccord 10 mg film-coated tablet, 28, blister pack 167192 35421000036103 Donaccord 10 mg film-coated tablet, 28 32651000036102 Donaccord 10 mg film-coated tablet 32271000036109 Donaccord 32271000036109 Donaccord 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1115651000168103 Tiava XR 400 mg modified release tablet, 60, blister pack 250012 1115641000168100 Tiava XR 400 mg modified release tablet, 60 1115631000168109 Tiava XR 400 mg modified release tablet 1115621000168106 Tiava XR 1115621000168106 Tiava XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +1115731000168101 Tiava XR 300 mg modified release tablet, 60, blister pack 249992 1115711000168106 Tiava XR 300 mg modified release tablet, 60 1115701000168108 Tiava XR 300 mg modified release tablet 1115621000168106 Tiava XR 1115621000168106 Tiava XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +44204011000036106 Uromitexan 600 mg film-coated tablet, 10, blister pack 56482 41680011000036108 Uromitexan 600 mg film-coated tablet, 10 40142011000036106 Uromitexan 600 mg film-coated tablet 4340011000036101 Uromitexan 4340011000036101 Uromitexan 46497011000036109 mesna 600 mg tablet, 10 45189011000036102 mesna 600 mg tablet 21302011000036101 mesna +911111000168107 Cavstat 10 mg film-coated tablet, 98, blister pack 234485 911101000168109 Cavstat 10 mg film-coated tablet, 98 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911091000168104 rosuvastatin 10 mg tablet, 98 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +61580011000036107 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 12, blister pack 94969 57502011000036106 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 12 54329011000036101 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet 53225011000036108 Ibuprofen (Soul Pattinson) 53225011000036108 Ibuprofen (Soul Pattinson) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +651961000168104 Capecitabine (Sandoz) 500 mg film-coated tablet, 120, blister pack 201800 651951000168101 Capecitabine (Sandoz) 500 mg film-coated tablet, 120 651941000168103 Capecitabine (Sandoz) 500 mg film-coated tablet 650871000168108 Capecitabine (Sandoz) 650871000168108 Capecitabine (Sandoz) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +87195011000036105 Nicorette Microtab 2 mg sublingual tablet, 100, blister pack 80872 87135011000036101 Nicorette Microtab 2 mg sublingual tablet, 100 87081011000036101 Nicorette Microtab 2 mg sublingual tablet 13101000168102 Nicorette Microtab 13101000168102 Nicorette Microtab 87241011000036100 nicotine 2 mg sublingual tablet, 100 87210011000036103 nicotine 2 mg sublingual tablet 21432011000036100 nicotine +1003201000168107 Levetiracetam 1000 (Apo) 1 g tablet, 100, bottle 156320 1003191000168109 Levetiracetam 1000 (Apo) 1 g tablet, 100 1003181000168106 Levetiracetam 1000 (Apo) 1 g tablet 1003171000168108 Levetiracetam 1000 (Apo) 1003171000168108 Levetiracetam 1000 (Apo) 46174011000036105 levetiracetam 1 g tablet, 100 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +1003221000168103 Levetiracetam 1000 (Apo) 1 g tablet, 400, bottle 156320 1003211000168105 Levetiracetam 1000 (Apo) 1 g tablet, 400 1003181000168106 Levetiracetam 1000 (Apo) 1 g tablet 1003171000168108 Levetiracetam 1000 (Apo) 1003171000168108 Levetiracetam 1000 (Apo) 86437011000036106 levetiracetam 1 g tablet, 400 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +61701011000036103 Codral Dry Cough 1 mg/mL oral liquid solution, 200 mL, bottle 99944 57622011000036109 Codral Dry Cough 1 mg/mL oral liquid solution, 200 mL 54369011000036105 Codral Dry Cough 1 mg/mL oral liquid solution 1431000168101 Codral Dry Cough 1431000168101 Codral Dry Cough 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +18232011000036106 Perivasc 10 mg uncoated tablet, 30, blister pack 123355 11737011000036108 Perivasc 10 mg uncoated tablet, 30 6016011000036104 Perivasc 10 mg uncoated tablet 4219011000036108 Perivasc 4219011000036108 Perivasc 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +842081000168108 Gapentin 100 mg capsule, 100, blister pack 107472 842071000168105 Gapentin 100 mg capsule, 100 842061000168104 Gapentin 100 mg capsule 842011000168102 Gapentin 842011000168102 Gapentin 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +81921000036103 Famciclovir (GA) 125 mg film-coated tablet, 40, blister pack 177016 80181000036106 Famciclovir (GA) 125 mg film-coated tablet, 40 78311000036105 Famciclovir (GA) 125 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +692101000168104 Alendronate D3 70 mg/140 microgram (DRLA) uncoated tablet, 4, blister pack 206933 692091000168109 Alendronate D3 70 mg/140 microgram (DRLA) uncoated tablet, 4 692081000168106 Alendronate D3 70 mg/140 microgram (DRLA) uncoated tablet 692071000168108 Alendronate D3 70 mg/140 microgram (DRLA) 692071000168108 Alendronate D3 70 mg/140 microgram (DRLA) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +785811000168107 Oxycodone (Sandoz) 80 mg modified release tablet, 20, bottle 153616 785801000168109 Oxycodone (Sandoz) 80 mg modified release tablet, 20 676281000168105 Oxycodone (Sandoz) 80 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +865121000168105 Amitriptyline (CH) 10 mg tablet, 1000, bottle 232123 865111000168103 Amitriptyline (CH) 10 mg tablet, 1000 865031000168107 Amitriptyline (CH) 10 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 815021000168105 amitriptyline hydrochloride 10 mg tablet, 1000 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +61430011000036105 Imodium Melt 2 mg orally disintegrating tablet, 10, blister pack 83176 57355011000036106 Imodium Melt 2 mg orally disintegrating tablet, 10 54283011000036103 Imodium Melt 2 mg orally disintegrating tablet 7341000168106 Imodium Melt 7341000168106 Imodium Melt 47711000036109 loperamide hydrochloride 2 mg orally disintegrating tablet, 10 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +44400011000036102 Scheriproct suppository, 12, strip pack 70063 41860011000036101 Scheriproct suppository, 12 40229011000036102 Scheriproct suppository 11171000168106 Scheriproct 11171000168106 Scheriproct 46666011000036106 prednisolone hexanoate 1.3 mg + cinchocaine hydrochloride 1 mg suppository, 12 45257011000036100 prednisolone hexanoate 1.3 mg + cinchocaine hydrochloride 1 mg suppository 44941011000036104 prednisolone hexanoate + cinchocaine +61338011000036100 Panadol Mini Cap 500 mg gelatin coated tablet, 20, blister pack 81007 57263011000036107 Panadol Mini Cap 500 mg gelatin coated tablet, 20 54256011000036104 Panadol Mini Cap 500 mg gelatin coated tablet 25261000168103 Panadol Mini Cap 25261000168103 Panadol Mini Cap 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +905261000168104 Amisulpride (AJS) 400 mg uncoated tablet, 60, blister pack 234694 905251000168101 Amisulpride (AJS) 400 mg uncoated tablet, 60 905221000168109 Amisulpride (AJS) 400 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +924011000168104 Hyqvia (1 x IG 5 g/50 mL vial, 1 x HY 400 units/2.5 mL vial), 1 pack, composite pack 235178 923991000168105 Hyqvia (1 x IG 5 g/50 mL vial, 1 x HY 400 units/2.5 mL vial), 1 pack 923961000168103 HY 400 units/2.5 mL injection solution, 2.5 mL vial 923831000168102 Hyqvia 923861000168105 HY 923971000168109 normal immunoglobulin 5 g/50 mL injection [50 mL vial] (&) vorhyaluronidase alfa 400 units/2.5 mL injection [2.5 mL vial], 1 pack 923951000168100 vorhyaluronidase alfa 400 units/2.5 mL injection, vial 923881000168101 vorhyaluronidase alfa +924011000168104 Hyqvia (1 x IG 5 g/50 mL vial, 1 x HY 400 units/2.5 mL vial), 1 pack, composite pack 235178 923991000168105 Hyqvia (1 x IG 5 g/50 mL vial, 1 x HY 400 units/2.5 mL vial), 1 pack 923941000168102 IG 5 g/50 mL injection solution, 50 mL vial 923831000168102 Hyqvia 923851000168108 IG 923971000168109 normal immunoglobulin 5 g/50 mL injection [50 mL vial] (&) vorhyaluronidase alfa 400 units/2.5 mL injection [2.5 mL vial], 1 pack 107151000036108 normal immunoglobulin 5 g/50 mL injection, vial 74965011000036103 normal immunoglobulin +44446011000036106 Fosamax 10 mg uncoated tablet, 30, blister pack 73520 41902011000036105 Fosamax 10 mg uncoated tablet, 30 40255011000036103 Fosamax 10 mg uncoated tablet 2922011000036103 Fosamax 2922011000036103 Fosamax 46700011000036104 alendronate 10 mg tablet, 30 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +751051000168105 Alodorm 5 mg uncoated tablet, 1000, blister pack 54010 751041000168108 Alodorm 5 mg uncoated tablet, 1000 5420011000036103 Alodorm 5 mg uncoated tablet 4413011000036106 Alodorm 4413011000036106 Alodorm 751031000168104 nitrazepam 5 mg tablet, 1000 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +867791000168100 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags 16750 867781000168103 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags 867731000168104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 867771000168101 glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags 867721000168102 glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +905241000168103 Amisulpride (AJS) 400 mg uncoated tablet, 30, blister pack 234694 905231000168107 Amisulpride (AJS) 400 mg uncoated tablet, 30 905221000168109 Amisulpride (AJS) 400 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 901641000168102 amisulpride 400 mg tablet, 30 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +17748011000036106 Lamidus 200 mg tablet, 56, blister pack 116732 11541011000036103 Lamidus 200 mg tablet, 56 5934011000036107 Lamidus 200 mg tablet 3897011000036105 Lamidus 3897011000036105 Lamidus 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +739811000168104 Perindopril (CH) 8 mg uncoated tablet, 30, blister pack 125450 739801000168102 Perindopril (CH) 8 mg uncoated tablet, 30 739791000168103 Perindopril (CH) 8 mg uncoated tablet 739781000168101 Perindopril (CH) 739781000168101 Perindopril (CH) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +82367011000036105 Coplavix 75 mg/100 mg film-coated tablet, 112, blister pack 150443 82156011000036106 Coplavix 75 mg/100 mg film-coated tablet, 112 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82544011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 112 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1046611000168109 Buprenorphine (SDZ) 20 microgram/hour patch, 4, sachet 269673 1046601000168106 Buprenorphine (SDZ) 20 microgram/hour patch, 4 1046531000168103 Buprenorphine (SDZ) 20 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046591000168104 buprenorphine 20 microgram/hour patch, 4 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +34744011000036109 Dicodin 60 mg modified release tablet, 56, blister pack 47717 34327011000036104 Dicodin 60 mg modified release tablet, 56 34044011000036107 Dicodin 60 mg modified release tablet 33938011000036107 Dicodin 33938011000036107 Dicodin 35175011000036107 dihydrocodeine tartrate 60 mg modified release tablet, 56 34889011000036102 dihydrocodeine tartrate 60 mg modified release tablet 34841011000036108 dihydrocodeine +1049281000168105 Oxycodone (Juno) 200 mg/20 mL injection solution, 4 x 20 mL ampoules 279325 1049271000168107 Oxycodone (Juno) 200 mg/20 mL injection solution, 4 x 20 mL ampoules 1049261000168101 Oxycodone (Juno) 200 mg/20 mL injection solution, 20 mL ampoule 1049121000168102 Oxycodone (Juno) 1049121000168102 Oxycodone (Juno) 786311000168106 oxycodone hydrochloride 200 mg/20 mL injection, 4 x 20 mL ampoules 786291000168107 oxycodone hydrochloride 200 mg/20 mL injection, ampoule 21259011000036105 oxycodone +61672011000036109 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 60, bottle 97357 57594011000036104 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 60 54357011000036107 Paracetamol Tabsule (Herron) 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 63945011000036108 paracetamol 500 mg tablet, 60 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +931392011000036104 Atropine Sulfate (Fawns & McAllan) 600 microgram uncoated tablet, 100, bottle 13435 930604011000036109 Atropine Sulfate (Fawns & McAllan) 600 microgram uncoated tablet, 100 929966011000036100 Atropine Sulfate (Fawns & McAllan) 600 microgram uncoated tablet 929851011000036107 Atropine Sulfate (Fawns & McAllan) 929851011000036107 Atropine Sulfate (Fawns & McAllan) 932366011000036104 atropine sulfate monohydrate 600 microgram tablet, 100 931834011000036104 atropine sulfate monohydrate 600 microgram tablet 933232141000036108 atropine sulfate monohydrate +43720011000036102 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 14, blister pack 119091 41207011000036106 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 14 39842011000036101 Zolpidem Tartrate (DP) 10 mg film-coated tablet 39735011000036106 Zolpidem Tartrate (DP) 39735011000036106 Zolpidem Tartrate (DP) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +60825011000036103 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (6 x Day capsules, 2 x Night capsules), 8, blister pack 58352 56781011000036101 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (6 x Day capsules, 2 x Night capsules), 8 54079011000036103 Dimetapp Cold Cough and Flu (Night) soft capsule 36581000168100 Dimetapp Cold Cough and Flu Day and Night Liquid Cap 36821000168101 Dimetapp Cold Cough and Flu (Night) 63564011000036106 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6] (&) dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule [2], 8 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +60825011000036103 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (6 x Day capsules, 2 x Night capsules), 8, blister pack 58352 56781011000036101 Dimetapp Cold Cough and Flu Day and Night Liquid Cap (6 x Day capsules, 2 x Night capsules), 8 54078011000036106 Dimetapp Cold Cough and Flu (Day) soft capsule 36581000168100 Dimetapp Cold Cough and Flu Day and Night Liquid Cap 36701000168103 Dimetapp Cold Cough and Flu (Day) 63564011000036106 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6] (&) dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule [2], 8 62038011000036103 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +774171000168104 Targin 15/7.5 mg modified release tablet, 60, blister pack 216261 774161000168105 Targin 15/7.5 mg modified release tablet, 60 774001000168105 Targin 15/7.5 mg modified release tablet 773981000168100 Targin 15/7.5 mg 773981000168100 Targin 15/7.5 mg 774151000168108 oxycodone hydrochloride 15 mg + naloxone hydrochloride 7.5 mg modified release tablet, 60 773991000168102 oxycodone hydrochloride 15 mg + naloxone hydrochloride 7.5 mg modified release tablet 923931011000036100 oxycodone + naloxone +20237011000036109 Azahexal 50 mg film-coated tablet, 100, blister pack 74407 13448011000036105 Azahexal 50 mg film-coated tablet, 100 6730011000036105 Azahexal 50 mg film-coated tablet 4051011000036105 Azahexal 4051011000036105 Azahexal 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +1119851000168100 Tiapine XR 150 mg modified release tablet, 60, blister pack 199877 1119841000168102 Tiapine XR 150 mg modified release tablet, 60 1119831000168106 Tiapine XR 150 mg modified release tablet 1119801000168104 Tiapine XR 1119801000168104 Tiapine XR 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +1000461000168100 Rivastigmine 15 (Apo) 13.3 mg/24 hours patch, 7, sachet 273559 1000451000168102 Rivastigmine 15 (Apo) 13.3 mg/24 hours patch, 7 1000431000168108 Rivastigmine 15 (Apo) 13.3 mg/24 hours patch 1000381000168101 Rivastigmine 15 (Apo) 1000381000168101 Rivastigmine 15 (Apo) 1000441000168104 rivastigmine 13.3 mg/24 hours patch, 7 731051000168109 rivastigmine 13.3 mg/24 hours patch 21413011000036101 rivastigmine +17990011000036109 Lamotrigine (DP) 25 mg tablet, 56, blister pack 101348 11191011000036101 Lamotrigine (DP) 25 mg tablet, 56 5696011000036105 Lamotrigine (DP) 25 mg tablet 3413011000036108 Lamotrigine (DP) 3413011000036108 Lamotrigine (DP) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +81961000036107 Imiquimod (Apo) 5% cream, 12 x 250 mg sachets 168101 80021000036106 Imiquimod (Apo) 5% cream, 12 x 250 mg sachets 78441000036104 Imiquimod (Apo) 5% cream, 250 mg sachet 77981000036102 Imiquimod (Apo) 77981000036102 Imiquimod (Apo) 27549011000036101 imiquimod 5% cream, 12 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +1095361000168103 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 70, blister pack 287307 1095351000168100 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 70 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1076321000168109 fexofenadine hydrochloride 180 mg tablet, 70 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +20951011000036101 Clamohexal Duo 400/57 powder for oral liquid, 60 mL, bottle 94699 14106011000036103 Clamohexal Duo 400/57 powder for oral liquid, 60 mL 7383011000036107 Clamohexal Duo 400/57 powder for oral liquid, 5 mL 45851000168103 Clamohexal Duo 400/57 45851000168103 Clamohexal Duo 400/57 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +683611000168102 Anastrozole (FBM) 1 mg film-coated tablet, 30, blister pack 167647 683601000168100 Anastrozole (FBM) 1 mg film-coated tablet, 30 683591000168107 Anastrozole (FBM) 1 mg film-coated tablet 683581000168109 Anastrozole (FBM) 683581000168109 Anastrozole (FBM) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1063851000168106 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 24, blister pack 159329 1063841000168109 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 24 1063791000168106 Ibuprofen plus Codeine (Pharmacor) film-coated tablet 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +820251000168108 Vagiclear Duo (1 x Vagiclear capsule, 1 x Vagiclear vaginal cream), 1 pack, composite pack 178004 820241000168106 Vagiclear Duo (1 x Vagiclear capsule, 1 x Vagiclear vaginal cream), 1 pack 820181000168108 Vagiclear 1% vaginal cream 820221000168100 Vagiclear Duo 820141000168103 Vagiclear 820231000168102 fluconazole 150 mg capsule [1] (&) clotrimazole 1% vaginal cream [10 g], 1 pack 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +820251000168108 Vagiclear Duo (1 x Vagiclear capsule, 1 x Vagiclear vaginal cream), 1 pack, composite pack 178004 820241000168106 Vagiclear Duo (1 x Vagiclear capsule, 1 x Vagiclear vaginal cream), 1 pack 820151000168101 Vagiclear 150 mg hard capsule 820221000168100 Vagiclear Duo 820141000168103 Vagiclear 820231000168102 fluconazole 150 mg capsule [1] (&) clotrimazole 1% vaginal cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +931528011000036109 Imiquad 5% cream, 24 x 250 mg sachets 160484 930689011000036109 Imiquad 5% cream, 24 x 250 mg sachets 930013011000036102 Imiquad 5% cream, 250 mg sachet 929828011000036102 Imiquad 929828011000036102 Imiquad 932453011000036107 imiquimod 5% cream, 24 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +82897011000036106 Paedamin Children's Antihistamine Children's 12.5 mg/5 mL oral liquid solution, 120 mL, bottle 161313 82791011000036101 Paedamin Children's Antihistamine Children's 12.5 mg/5 mL oral liquid solution, 120 mL 82700011000036106 Paedamin Children's Antihistamine Children's 12.5 mg/5 mL oral liquid solution, 5 mL 53171000168103 Paedamin Children's Antihistamine Children's 53171000168103 Paedamin Children's Antihistamine Children's 83008011000036103 diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 120 mL 82941011000036101 diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61716011000036106 diphenhydramine +700701000168108 Adempas 2.5 mg film-coated tablet, 42, blister pack 207596 700691000168108 Adempas 2.5 mg film-coated tablet, 42 700671000168107 Adempas 2.5 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700681000168105 riociguat 2.5 mg tablet, 42 700661000168101 riociguat 2.5 mg tablet 700211000168102 riociguat +1091031000168106 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 48, blister pack 286271 1091021000168108 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet, 48 1090951000168105 Demazin PE Multi-Action Cold and Flu Relief uncoated tablet 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 1090941000168108 Demazin PE Multi-Action Cold and Flu Relief 63181011000036101 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 48 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +1013431000168103 Voluven injection solution, 20 x 500 mL bags 120361 1013421000168101 Voluven injection solution, 20 x 500 mL bags 1013401000168105 Voluven injection solution, 500 mL bag 1013371000168107 Voluven 1013371000168107 Voluven 1013411000168108 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 20 x 500 mL bags 1013391000168108 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bag 1013381000168105 hydroxyethyl starch 130/0.4 + sodium chloride +61309011000036103 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 20 g, tube 80846 57245011000036100 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 20 g 54253011000036105 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 63839011000036100 bifonazole 1% cream, 20 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +1003361000168104 Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60, blister pack 159049 1003351000168101 Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60 1003341000168103 Levetiracetam 1000 (Generic Health) 1 g film-coated tablet 1003301000168100 Levetiracetam 1000 (Generic Health) 1003301000168100 Levetiracetam 1000 (Generic Health) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +1082391000168103 Ibuprofen plus Paracetamol (Terry White Chemists) film-coated tablet, 24, blister pack 280178 1082381000168101 Ibuprofen plus Paracetamol (Terry White Chemists) film-coated tablet, 24 1082321000168100 Ibuprofen plus Paracetamol (Terry White Chemists) film-coated tablet 1082311000168107 Ibuprofen plus Paracetamol (Terry White Chemists) 1082311000168107 Ibuprofen plus Paracetamol (Terry White Chemists) 813231000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 24 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +56401000036101 Amline 5 mg uncoated tablet, 30, blister pack 160809 52271000036105 Amline 5 mg uncoated tablet, 30 48911000036107 Amline 5 mg uncoated tablet 48351000036105 Amline 48351000036105 Amline 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +798651000168104 Abyraz 10 mg uncoated tablet, 60, blister pack 159503 798641000168101 Abyraz 10 mg uncoated tablet, 60 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787431000168109 aripiprazole 10 mg tablet, 60 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1022071000168107 Butafen 200 mg film-coated tablet, 10, blister pack 155484 1022061000168101 Butafen 200 mg film-coated tablet, 10 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44054011000036109 Xylocaine 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 48357 41541011000036100 Xylocaine 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 40050011000036102 Xylocaine 1% (50 mg/5 mL) injection solution, 5 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 46376011000036108 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) injection, 10 x 5 mL ampoules 45128011000036101 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +43962011000036104 Stieva-A 0.05% cream, 6 g, tube 39839 41454011000036106 Stieva-A 0.05% cream, 6 g 39982011000036100 Stieva-A 0.05% cream 39639011000036100 Stieva-A 39639011000036100 Stieva-A 46303011000036108 tretinoin 0.05% cream, 6 g 37948011000036102 tretinoin 0.05% cream 37794011000036109 tretinoin +19753011000036106 Abbocillin VK Filmtab 250 mg film-coated tablet, 25, bottle 62360 13014011000036100 Abbocillin VK Filmtab 250 mg film-coated tablet, 25 6303011000036107 Abbocillin VK Filmtab 250 mg film-coated tablet 55311000168108 Abbocillin VK Filmtab 55311000168108 Abbocillin VK Filmtab 27495011000036102 phenoxymethylpenicillin 250 mg tablet, 25 22838011000036107 phenoxymethylpenicillin 250 mg tablet 21370011000036105 phenoxymethylpenicillin +1021911000168108 Atelvia 35 mg film-coated tablet, 2, blister pack 163753 1021901000168105 Atelvia 35 mg film-coated tablet, 2 1021871000168105 Atelvia 35 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 929754011000036108 risedronate sodium 35 mg tablet, 2 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1078281000168103 Atomoxetine (GPPL) 80 mg hard capsule, 14, blister pack 234823 1078271000168101 Atomoxetine (GPPL) 80 mg hard capsule, 14 1078241000168108 Atomoxetine (GPPL) 80 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830561000168105 atomoxetine 80 mg capsule, 14 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1086731000168104 Ibuprofen (Coles) 200 mg soft capsule, 20, blister pack 282488 1086721000168102 Ibuprofen (Coles) 200 mg soft capsule, 20 1086711000168109 Ibuprofen (Coles) 200 mg soft capsule 924365011000036101 Ibuprofen (Coles) 924365011000036101 Ibuprofen (Coles) 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +731151000168108 Inlyta 1 mg film-coated tablet, 180, bottle 184857 731141000168106 Inlyta 1 mg film-coated tablet, 180 155161000036106 Inlyta 1 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 731131000168102 axitinib 1 mg tablet, 180 155171000036103 axitinib 1 mg tablet 157041000036102 axitinib +732361000168100 Anti-Fungal (Apohealth) 1% cream, 50 g, tube 229948 732351000168102 Anti-Fungal (Apohealth) 1% cream, 50 g 732341000168104 Anti-Fungal (Apohealth) 1% cream 732331000168108 Anti-Fungal (Apohealth) 732331000168108 Anti-Fungal (Apohealth) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +17909011000036101 Betnovate-1/2 0.05% cream, 15 g, tube 12488 11782011000036100 Betnovate-1/2 0.05% cream, 15 g 5450011000036104 Betnovate-1/2 0.05% cream 36901000168100 Betnovate-1/2 36901000168100 Betnovate-1/2 28034011000036108 betamethasone (as valerate) 0.05% cream, 15 g 23355011000036108 betamethasone (as valerate) 0.05% cream 21366011000036103 betamethasone valerate +934241000168106 Centevo 175/43.75/200 mg film-coated tablet, 50, bottle 238858 934231000168102 Centevo 175/43.75/200 mg film-coated tablet, 50 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934221000168100 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 50 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1043481000168107 Gabapentin (Apo) 300 mg hard capsule, 100, blister pack 81776 1043471000168109 Gabapentin (Apo) 300 mg hard capsule, 100 1043461000168103 Gabapentin (Apo) 300 mg hard capsule 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +974381000168107 Pregabalin (Apo) 150 mg hard capsule, 14, bottle 193249 970281000168107 Pregabalin (Apo) 150 mg hard capsule, 14 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +19995011000036109 Oxycontin 80 mg modified release tablet, 20, bottle 68194 13232011000036107 Oxycontin 80 mg modified release tablet, 20 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +896741000168108 Imatinib (GH) 400 mg hard capsule, 30, blister pack 281536 896731000168104 Imatinib (GH) 400 mg hard capsule, 30 896061000168109 Imatinib (GH) 400 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 830781000168107 imatinib 400 mg capsule, 30 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +43605011000036105 Duac Once Daily gel, 70 g, tube 100707 41097011000036101 Duac Once Daily gel, 70 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46083011000036108 clindamycin 1% + benzoyl peroxide 5% gel, 70 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +44089011000036102 Adenocor 6 mg/2 mL injection solution, 6 x 2 mL vials 49439 41575011000036102 Adenocor 6 mg/2 mL injection solution, 6 x 2 mL vials 40078011000036103 Adenocor 6 mg/2 mL injection solution, 2 mL vial 39642011000036109 Adenocor 39642011000036109 Adenocor 46404011000036101 adenosine 6 mg/2 mL injection, 6 x 2 mL vials 45137011000036104 adenosine 6 mg/2 mL injection, vial 44942011000036105 adenosine +73741000036104 Zinopril 20 mg uncoated tablet, 30, blister pack 152718 71481000036102 Zinopril 20 mg uncoated tablet, 30 70231000036106 Zinopril 20 mg uncoated tablet 69281000036107 Zinopril 69281000036107 Zinopril 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +659861000168105 Pantoprazole (AN) 20 mg enteric tablet, 30, blister pack 158196 659851000168108 Pantoprazole (AN) 20 mg enteric tablet, 30 659841000168106 Pantoprazole (AN) 20 mg enteric tablet 659831000168102 Pantoprazole (AN) 659831000168102 Pantoprazole (AN) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +20410011000036104 Zanidip 10 mg film-coated tablet, 30, blister pack 77506 13617011000036100 Zanidip 10 mg film-coated tablet, 30 6900011000036107 Zanidip 10 mg film-coated tablet 4164011000036108 Zanidip 4164011000036108 Zanidip 27841011000036104 lercanidipine hydrochloride 10 mg tablet, 30 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +657441000168103 Ramipril (AN) 2.5 mg uncoated tablet, 30, blister pack 175239 657431000168107 Ramipril (AN) 2.5 mg uncoated tablet, 30 657421000168109 Ramipril (AN) 2.5 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +875921000168101 Bispro 3.75 mg film-coated tablet, 56, blister pack 130179 875911000168108 Bispro 3.75 mg film-coated tablet, 56 875761000168108 Bispro 3.75 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 875901000168105 bisoprolol fumarate 3.75 mg tablet, 56 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +45871000036100 Quetiapine (Synthon) 300 mg film-coated tablet, 60, blister pack 176717 43171000036108 Quetiapine (Synthon) 300 mg film-coated tablet, 60 41001000036101 Quetiapine (Synthon) 300 mg film-coated tablet 40241000036102 Quetiapine (Synthon) 40241000036102 Quetiapine (Synthon) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +50685011000036101 Keto-Diastix diagnostic strip, 50, bottle 72546 49709011000036102 Keto-Diastix diagnostic strip, 50 48837011000036104 Keto-Diastix diagnostic strip 48255011000036101 Keto-Diastix 48255011000036101 Keto-Diastix 51568011000036106 glucose and ketone indicator urine diagnostic strip, 50 51005011000036103 glucose and ketone indicator urine diagnostic strip 50745011000036101 glucose and ketone indicator urine +854771000168104 Algerika 25 mg hard capsule, 56, blister pack 229554 854761000168105 Algerika 25 mg hard capsule, 56 854691000168109 Algerika 25 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +951181000168109 Modafinil (Sandoz) 100 mg uncoated tablet, 10, blister pack 269914 951171000168106 Modafinil (Sandoz) 100 mg uncoated tablet, 10 951161000168100 Modafinil (Sandoz) 100 mg uncoated tablet 951091000168106 Modafinil (Sandoz) 951091000168106 Modafinil (Sandoz) 932449011000036107 modafinil 100 mg tablet, 10 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +68736011000036107 Mintec 0.2 mL enteric capsule, 90, blister pack 12993 66740011000036102 Mintec 0.2 mL enteric capsule, 90 65372011000036101 Mintec 0.2 mL enteric capsule 65155011000036104 Mintec 65155011000036104 Mintec 71406011000036101 peppermint oil 0.2 mL enteric capsule, 90 69997011000036106 peppermint oil 0.2 mL enteric capsule 69794011000036107 peppermint oil +87639011000036100 MCT Procal powder for oral liquid, 30 x 16 g sachets 87410011000036104 MCT Procal powder for oral liquid, 30 x 16 g sachets 133831000168101 MCT Procal powder for oral liquid, 16 g sachet 53496011000036107 MCT Procal 53496011000036107 MCT Procal 87793011000036103 triglycerides medium chain formula powder for oral liquid, 30 x 16 g sachets 133701000168101 triglycerides medium chain formula powder for oral liquid, 16 g sachet 50781011000036105 triglycerides medium chain formula +929652011000036108 Tinasil 250 mg uncoated tablet, 28, blister pack 104493 929482011000036104 Tinasil 250 mg uncoated tablet, 28 929390011000036107 Tinasil 250 mg uncoated tablet 929363011000036101 Tinasil 929363011000036101 Tinasil 75420011000036109 terbinafine 250 mg tablet, 28 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +43847011000036101 Mirtazapine (Terry White Chemists) 45 mg film-coated tablet, 30, blister pack 127699 41343011000036101 Mirtazapine (Terry White Chemists) 45 mg film-coated tablet, 30 39872011000036102 Mirtazapine (Terry White Chemists) 45 mg film-coated tablet 32179011000036106 Mirtazapine (Terry White Chemists) 32179011000036106 Mirtazapine (Terry White Chemists) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +674621000168101 Ondansetron (Medis) 8 mg/4 mL injection solution, 4 mL ampoule 124505 674611000168108 Ondansetron (Medis) 8 mg/4 mL injection solution, 4 mL ampoule 674601000168105 Ondansetron (Medis) 8 mg/4 mL injection solution, 4 mL ampoule 674591000168103 Ondansetron (Medis) 674591000168103 Ondansetron (Medis) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +983291000168108 Navelbine 80 mg soft capsule, 1, blister pack 99564 983281000168105 Navelbine 80 mg soft capsule, 1 983271000168107 Navelbine 80 mg soft capsule 4394011000036104 Navelbine 4394011000036104 Navelbine 982561000168109 vinorelbine 80 mg capsule, 1 982541000168105 vinorelbine 80 mg capsule 21269011000036100 vinorelbine +56561000036103 Bicalaccord 50 mg film-coated tablet, 28, blister pack 162829 52931000036102 Bicalaccord 50 mg film-coated tablet, 28 49531000036102 Bicalaccord 50 mg film-coated tablet 48421000036108 Bicalaccord 48421000036108 Bicalaccord 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +914491000168107 Famvir 250 mg film-coated tablet, 3, blister pack 51389 914481000168109 Famvir 250 mg film-coated tablet, 3 5598011000036100 Famvir 250 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 914471000168106 famciclovir 250 mg tablet, 3 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +798831000168109 Rizatriptan (TW) 10 mg orally disintegrating tablet, 3, blister pack 222203 798821000168106 Rizatriptan (TW) 10 mg orally disintegrating tablet, 3 798761000168105 Rizatriptan (TW) 10 mg orally disintegrating tablet 798751000168108 Rizatriptan (TW) 798751000168108 Rizatriptan (TW) 742321000168109 rizatriptan 10 mg orally disintegrating tablet, 3 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +651321000168108 Quetia 300 mg film-coated tablet, 60, blister pack 204156 651311000168101 Quetia 300 mg film-coated tablet, 60 651301000168104 Quetia 300 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +20652011000036106 Bicor 5 mg film-coated tablet, 28, blister pack 81606 13832011000036100 Bicor 5 mg film-coated tablet, 28 7119011000036102 Bicor 5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +944471000168101 Doxycycline (GA) 50 mg film-coated tablet, 25, blister pack 148814 944461000168107 Doxycycline (GA) 50 mg film-coated tablet, 25 944451000168105 Doxycycline (GA) 50 mg film-coated tablet 944441000168108 Doxycycline (GA) 944441000168108 Doxycycline (GA) 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +692021000168107 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alen Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 222684 692011000168100 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alen Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 847881000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet 692001000168103 Alendronate Plus D3 and Calcium (Sandoz) 691961000168107 Calcium (Sandoz) 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +692021000168107 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alen Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 222684 692011000168100 Alendronate Plus D3 and Calcium (Sandoz) (4 x Alen Plus D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 691931000168104 Alen Plus D3 70 mg/140 microgram uncoated tablet 692001000168103 Alendronate Plus D3 and Calcium (Sandoz) 691921000168102 Alen Plus D3 70 mg/140 microgram 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +1025841000168101 Neuroccord 300 mg hard capsule, 200, bottle 235861 1025831000168105 Neuroccord 300 mg hard capsule, 200 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970891000168106 pregabalin 300 mg capsule, 200 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +84360011000036102 Myglucohealth Test diagnostic strip, 50, bottle 161485 84053011000036102 Myglucohealth Test diagnostic strip, 50 83677011000036102 Myglucohealth Test diagnostic strip 57841000168106 Myglucohealth Test 57841000168106 Myglucohealth Test 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +59955011000036108 Nurofen Tension Headache 200 mg tablet, 10, blister pack 120354 55917011000036102 Nurofen Tension Headache 200 mg tablet, 10 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1000181000168103 Rivaroxaban (Apo) 10 mg film-coated tablet, 30, blister pack 269606 999991000168100 Rivaroxaban (Apo) 10 mg film-coated tablet, 30 999981000168103 Rivaroxaban (Apo) 10 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 79228011000036102 rivaroxaban 10 mg tablet, 30 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +1000141000168108 Rivaroxaban (Apo) 10 mg film-coated tablet, 10, blister pack 269606 1000131000168104 Rivaroxaban (Apo) 10 mg film-coated tablet, 10 999981000168103 Rivaroxaban (Apo) 10 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 79225011000036108 rivaroxaban 10 mg tablet, 10 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +830981000168109 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 200381 830971000168106 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 830921000168105 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 21.5 g sachet 85247011000036107 Go Kit 829671000168108 Magnesium Citrate (Fresenius Kabi) 830961000168100 bisacodyl 5 mg enteric tablet [3] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 830911000168103 magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet 870891000168103 magnesium carbonate + citric acid +830981000168109 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 20728 830971000168106 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 830921000168105 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 21.5 g sachet 85247011000036107 Go Kit 829671000168108 Magnesium Citrate (Fresenius Kabi) 830961000168100 bisacodyl 5 mg enteric tablet [3] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 830911000168103 magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet 870891000168103 magnesium carbonate + citric acid +830981000168109 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 200381 830971000168106 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 85390011000036109 Bisacodyl (Fresenius Kabi) 5 mg enteric tablet 85247011000036107 Go Kit 85273011000036102 Bisacodyl (Fresenius Kabi) 830961000168100 bisacodyl 5 mg enteric tablet [3] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +830981000168109 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 20728 830971000168106 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 85390011000036109 Bisacodyl (Fresenius Kabi) 5 mg enteric tablet 85247011000036107 Go Kit 85273011000036102 Bisacodyl (Fresenius Kabi) 830961000168100 bisacodyl 5 mg enteric tablet [3] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +37475011000036107 Fortum 2 g powder for injection, 5 vials 12509 36743011000036103 Fortum 2 g powder for injection, 5 vials 36060011000036103 Fortum 2 g powder for injection, 2 g vial 36003011000036105 Fortum 36003011000036105 Fortum 38651011000036102 ceftazidime 2 g injection, 5 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +848261000168109 Alinivir 400 mg uncoated tablet, 100, blister pack 202876 848251000168107 Alinivir 400 mg uncoated tablet, 100 848221000168104 Alinivir 400 mg uncoated tablet 848211000168106 Alinivir 848211000168106 Alinivir 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +820171000168105 Vagiclear 150 mg hard capsule, 1, blister pack 820161000168104 Vagiclear 150 mg hard capsule, 1 820151000168101 Vagiclear 150 mg hard capsule 820141000168103 Vagiclear 820141000168103 Vagiclear 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +923707011000036105 Piptaz 4 g/0.5 g (Juno) powder for injection, 10 x 4.5 g vials 143494 923283011000036108 Piptaz 4 g/0.5 g (Juno) powder for injection, 10 x 4.5 g vials 922972011000036101 Piptaz 4 g/0.5 g (Juno) powder for injection, 4.5 g vial 23031000168103 Piptaz 4 g/0.5 g (Juno) 23031000168103 Piptaz 4 g/0.5 g (Juno) 46369011000036107 piperacillin 4 g + tazobactam 500 mg injection, 10 x 4.5 g vials 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +50559011000036100 Durotram XR (once a day) 100 mg modified release tablet, 10, blister pack 134773 49593011000036103 Durotram XR (once a day) 100 mg modified release tablet, 10 48786011000036109 Durotram XR (once a day) 100 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51498011000036103 tramadol hydrochloride 100 mg modified release tablet, 10 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +21089011000036106 Estradot 100 microgram/24 hours patch, 8, sachet 97566 14232011000036105 Estradot 100 microgram/24 hours patch, 8 7518011000036103 Estradot 100 microgram/24 hours patch 4248011000036108 Estradot 4248011000036108 Estradot 28324011000036107 estradiol 100 microgram/24 hours patch, 8 23636011000036108 estradiol 100 microgram/24 hours patch 21238011000036103 estradiol +60295011000036101 Dimetapp Daytime/Nightime Liquid Cap (6 x Day Liquid capsules, 2 x Night Liquid capsules), 8, blister pack 137255 56254011000036102 Dimetapp Daytime/Nightime Liquid Cap (6 x Day Liquid capsules, 2 x Night Liquid capsules), 8 53852011000036105 Dimetapp Daytime/Nightime (Day Liquid Capsule) soft capsule 2741000168109 Dimetapp Daytime/Nightime Liquid Cap 2861000168104 Dimetapp Daytime/Nightime (Day Liquid Capsule) 63266011000036106 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6] (&) paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule [2], 8 61906011000036103 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61766011000036107 paracetamol + dextromethorphan +60295011000036101 Dimetapp Daytime/Nightime Liquid Cap (6 x Day Liquid capsules, 2 x Night Liquid capsules), 8, blister pack 137255 56254011000036102 Dimetapp Daytime/Nightime Liquid Cap (6 x Day Liquid capsules, 2 x Night Liquid capsules), 8 53853011000036103 Dimetapp Daytime/Nightime (Night Liquid Capsule) soft capsule 2741000168109 Dimetapp Daytime/Nightime Liquid Cap 2981000168102 Dimetapp Daytime/Nightime (Night Liquid Capsule) 63266011000036106 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [6] (&) paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule [2], 8 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +19442011000036109 Alodorm 5 mg uncoated tablet, 25, bottle 54009 12724011000036100 Alodorm 5 mg uncoated tablet, 25 5420011000036103 Alodorm 5 mg uncoated tablet 4413011000036106 Alodorm 4413011000036106 Alodorm 27314011000036105 nitrazepam 5 mg tablet, 25 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +20099011000036103 Integrilin 75 mg/100 mL injection solution, 100 mL vial 71541 13326011000036101 Integrilin 75 mg/100 mL injection solution, 100 mL vial 6612011000036105 Integrilin 75 mg/100 mL injection solution, 100 mL vial 4071011000036108 Integrilin 4071011000036108 Integrilin 27696011000036107 eptifibatide 75 mg/100 mL injection, 100 mL vial 23033011000036107 eptifibatide 75 mg/100 mL injection, vial 21223011000036106 eptifibatide +663881000168105 Methylprednisolone (Alphapharm) 1 g powder for injection, 1 vial 166625 663871000168107 Methylprednisolone (Alphapharm) 1 g powder for injection, 1 vial 663861000168101 Methylprednisolone (Alphapharm) 1 g powder for injection, vial 663851000168103 Methylprednisolone (Alphapharm) 663851000168103 Methylprednisolone (Alphapharm) 653981000168109 methylprednisolone 1 g injection, 1 vial 22145011000036109 methylprednisolone 1 g injection, vial 21605011000036100 methylprednisolone +1008841000168104 Rivastigmine (Apotex) 3 mg hard capsule, 56, blister pack 160564 1008831000168108 Rivastigmine (Apotex) 3 mg hard capsule, 56 1008781000168100 Rivastigmine (Apotex) 3 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 27692011000036108 rivastigmine 3 mg capsule, 56 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +59713011000036108 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 50 mL, bottle 10554 55717011000036109 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 50 mL 53659011000036108 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 63113011000036102 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 50 mL 61859011000036105 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61750011000036102 pholcodine + pseudoephedrine +987231000168101 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 71008 987221000168104 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 987201000168108 Varilrix (inert substance) diluent, 0.5 mL ampoule 73749011000036102 Varilrix 73749011000036102 Varilrix 987211000168106 varicella-zoster live vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +987231000168101 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 71008 987221000168104 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 830871000168101 Varilrix (varicella-zoster live vaccine) powder for injection, vial 73749011000036102 Varilrix 73749011000036102 Varilrix 987211000168106 varicella-zoster live vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 830861000168107 varicella-zoster live vaccine 1995 PFU injection, vial 830851000168105 varicella-zoster live vaccine +86129011000036102 Levetiracetam (Terry White Chemists) 250 mg tablet, 60, blister pack 156326 85712011000036105 Levetiracetam (Terry White Chemists) 250 mg tablet, 60 85347011000036100 Levetiracetam (Terry White Chemists) 250 mg tablet 85285011000036108 Levetiracetam (Terry White Chemists) 85285011000036108 Levetiracetam (Terry White Chemists) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +176981000036108 Gabacor 400 mg hard capsule, 100, blister pack 204485 175231000036107 Gabacor 400 mg hard capsule, 100 173611000036100 Gabacor 400 mg hard capsule 924388011000036109 Gabacor 924388011000036109 Gabacor 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +708901000168109 Bisoprolol (Generic Health) 5 mg film-coated tablet, 28, blister pack 212062 708891000168105 Bisoprolol (Generic Health) 5 mg film-coated tablet, 28 708881000168107 Bisoprolol (Generic Health) 5 mg film-coated tablet 708841000168102 Bisoprolol (Generic Health) 708841000168102 Bisoprolol (Generic Health) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +920768011000036106 Relpax 40 mg film-coated tablet, 6, blister pack 68356 920447011000036105 Relpax 40 mg film-coated tablet, 6 920186011000036100 Relpax 40 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 920864011000036101 eletriptan 40 mg tablet, 6 920828011000036101 eletriptan 40 mg tablet 920818011000036107 eletriptan +39381000036106 Topotecan (Kabi) 4 mg powder for injection, 5 vials 170123 35871000036101 Topotecan (Kabi) 4 mg powder for injection, 5 vials 32371000036103 Topotecan (Kabi) 4 mg powder for injection, 4 mg vial 32121000036100 Topotecan (Kabi) 32121000036100 Topotecan (Kabi) 27411011000036100 topotecan 4 mg injection, 5 vials 22759011000036102 topotecan 4 mg injection, vial 21571011000036101 topotecan +121341000036109 Quetiapine (Pharmacy Choice) 25 mg film-coated tablet, 60, blister pack 162406 120231000036102 Quetiapine (Pharmacy Choice) 25 mg film-coated tablet, 60 119471000036100 Quetiapine (Pharmacy Choice) 25 mg film-coated tablet 119201000036105 Quetiapine (Pharmacy Choice) 119201000036105 Quetiapine (Pharmacy Choice) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +734781000168102 Paracetamol plus Codeine 15 (Apohealth) uncoated tablet, 20, blister pack 229524 734771000168100 Paracetamol plus Codeine 15 (Apohealth) uncoated tablet, 20 734761000168106 Paracetamol plus Codeine 15 (Apohealth) uncoated tablet 734751000168109 Paracetamol plus Codeine 15 (Apohealth) 734751000168109 Paracetamol plus Codeine 15 (Apohealth) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1116151000168101 Tiava XR 150 mg modified release tablet, 60, blister pack 249952 1116141000168103 Tiava XR 150 mg modified release tablet, 60 1116131000168107 Tiava XR 150 mg modified release tablet 1115621000168106 Tiava XR 1115621000168106 Tiava XR 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +1083761000168102 Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL, pump pack 175765 28611000036101 Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL 27231000036106 Vicks Sinex Extrafresh 0.05% nasal spray 56821000168102 Vicks Sinex Extrafresh 56821000168102 Vicks Sinex Extrafresh 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +928924011000036103 Valaciclovir (SZ) 500 mg film-coated tablet, 10, blister pack 154460 928286011000036101 Valaciclovir (SZ) 500 mg film-coated tablet, 10 927923011000036106 Valaciclovir (SZ) 500 mg film-coated tablet 927819011000036109 Valaciclovir (SZ) 927819011000036109 Valaciclovir (SZ) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +56701000036106 Oxytocin (Aspen) 10 units/mL injection solution, 10 x 1 mL ampoules 164131 53141000036103 Oxytocin (Aspen) 10 units/mL injection solution, 10 x 1 mL ampoules 48781000036102 Oxytocin (Aspen) 10 units/mL injection solution, ampoule 48221000036107 Oxytocin (Aspen) 48221000036107 Oxytocin (Aspen) 53151000036100 oxytocin 10 units/mL injection, 10 x 1 mL ampoules 37925011000036105 oxytocin 10 units/mL injection, ampoule 37765011000036106 oxytocin +978951000168107 Piperacillin (Douglas) 2 g powder for injection, 10 vials 63781 978941000168105 Piperacillin (Douglas) 2 g powder for injection, 10 vials 978891000168109 Piperacillin (Douglas) 2 g powder for injection, 2 g vial 978861000168102 Piperacillin (Douglas) 978861000168102 Piperacillin (Douglas) 978931000168101 piperacillin 2 g injection, 10 vials 978881000168106 piperacillin 2 g injection, vial 978871000168108 piperacillin +925215011000036101 Oxaliplatin (Kabi) 50 mg/10 mL concentrated injection, 10 mL vial 157759 924752011000036100 Oxaliplatin (Kabi) 50 mg/10 mL concentrated injection, 10 mL vial 924457011000036109 Oxaliplatin (Kabi) 50 mg/10 mL concentrated injection, 10 mL vial 922950011000036102 Oxaliplatin (Kabi) 922950011000036102 Oxaliplatin (Kabi) 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +721831000168105 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution, 20 mL, bottle 46375 721821000168107 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution, 20 mL 721811000168100 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution 52851000168106 Panadol Children's Drops 1 Month to 2 Years 52851000168106 Panadol Children's Drops 1 Month to 2 Years 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +931451011000036105 Ranitidine (GA) 150 mg film-coated tablet, 14, blister pack 148518 930630011000036106 Ranitidine (GA) 150 mg film-coated tablet, 14 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +905881000168109 Carlevent 125/31.25/200 film-coated tablet, 100, bottle 195748 905871000168106 Carlevent 125/31.25/200 film-coated tablet, 100 905861000168100 Carlevent 125/31.25/200 film-coated tablet 905851000168102 Carlevent 125/31.25/200 905851000168102 Carlevent 125/31.25/200 84652011000036103 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 100 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +783761000168100 Palexia IR 100 mg film-coated tablet, 90, blister pack 165318 783751000168102 Palexia IR 100 mg film-coated tablet, 90 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783741000168104 tapentadol 100 mg tablet, 90 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +20870011000036101 Arabloc 10 mg film-coated tablet, 30, bottle 92753 14032011000036104 Arabloc 10 mg film-coated tablet, 30 7308011000036103 Arabloc 10 mg film-coated tablet 4283011000036107 Arabloc 4283011000036107 Arabloc 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +850431000168102 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules 12052 850421000168100 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules 850401000168109 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, ampoule 3899011000036103 Atropine Sulfate (AstraZeneca) 3899011000036103 Atropine Sulfate (AstraZeneca) 850411000168107 atropine sulfate monohydrate 400 microgram/mL injection, 50 x 1 mL ampoules 850391000168107 atropine sulfate monohydrate 400 microgram/mL injection, ampoule 933232141000036108 atropine sulfate monohydrate +910561000168107 Cefepime (AFT) 500 mg powder for injection, 10 vials 196281 910551000168105 Cefepime (AFT) 500 mg powder for injection, 10 vials 910471000168100 Cefepime (AFT) 500 mg powder for injection, 500 mg vial 134151000036105 Cefepime (AFT) 134151000036105 Cefepime (AFT) 910541000168108 cefepime 500 mg injection, 10 vials 910461000168106 cefepime 500 mg injection, vial 21558011000036108 cefepime +31481000036104 Actiq 600 microgram lozenge on handle, 9, blister pack 91601 29331000036109 Actiq 600 microgram lozenge on handle, 9 34077011000036102 Actiq 600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 29341000036104 fentanyl 600 microgram lozenge on handle, 9 34912011000036104 fentanyl 600 microgram lozenge on handle 21258011000036102 fentanyl +19275011000036104 Fasigyn 500 mg film-coated tablet, 4, blister pack 48414 12565011000036105 Fasigyn 500 mg film-coated tablet, 4 5178011000036104 Fasigyn 500 mg film-coated tablet 3604011000036105 Fasigyn 3604011000036105 Fasigyn 27213011000036100 tinidazole 500 mg tablet, 4 22573011000036101 tinidazole 500 mg tablet 21670011000036104 tinidazole +1038751000168101 Atorvastatin (Actavis) 80 mg film-coated tablet, 90, bottle 217177 1038741000168103 Atorvastatin (Actavis) 80 mg film-coated tablet, 90 1038721000168109 Atorvastatin (Actavis) 80 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +18474011000036101 Androcur 50 mg uncoated tablet, 20, bottle 10671 11341011000036100 Androcur 50 mg uncoated tablet, 20 5484011000036103 Androcur 50 mg uncoated tablet 3109011000036105 Androcur 3109011000036105 Androcur 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +60313011000036106 Donnagel oral liquid suspension, 375 mL, bottle 13871 56272011000036108 Donnagel oral liquid suspension, 375 mL 53857011000036107 Donnagel oral liquid suspension, 30 mL 53406011000036105 Donnagel 53406011000036105 Donnagel 63279011000036105 atropine sulfate monohydrate 19.4 microgram/30 mL + hyoscine hydrobromide trihydrate 6.5 microgram/30 mL + hyoscyamine sulfate dihydrate 103.7 microgram/30 mL + kaolin 6 g/30 mL + pectin 142.8 mg/30 mL oral liquid, 375 mL 61908011000036104 atropine sulfate monohydrate 19.4 microgram/30 mL + hyoscine hydrobromide trihydrate 6.5 microgram/30 mL + hyoscyamine sulfate dihydrate 103.7 microgram/30 mL + kaolin 6 g/30 mL + pectin 142.8 mg/30 mL oral liquid 61731011000036105 atropine sulfate monohydrate + hyoscine hydrobromide trihydrate + hyoscyamine + kaolin + pectin +1039071000168103 Atorvastatin (GA) 20 mg film-coated tablet, 10, blister pack 178538 1039061000168109 Atorvastatin (GA) 20 mg film-coated tablet, 10 1039051000168107 Atorvastatin (GA) 20 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1115911000168109 Quetiapine XR (Sandoz) 400 mg modified release tablet, 60, blister pack 199881 1115901000168106 Quetiapine XR (Sandoz) 400 mg modified release tablet, 60 1115891000168107 Quetiapine XR (Sandoz) 400 mg modified release tablet 1115851000168102 Quetiapine XR (Sandoz) 1115851000168102 Quetiapine XR (Sandoz) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +764671000168101 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet, 60, blister pack 214504 764661000168107 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet, 60 764611000168109 Oxycodone MR (Terry White Chemists) 30 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 71474011000036104 oxycodone hydrochloride 30 mg modified release tablet, 60 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +87656011000036105 Valcyte 50 mg/mL powder for oral liquid, 100 mL, bottle 154382 87445011000036104 Valcyte 50 mg/mL powder for oral liquid, 100 mL 87312011000036105 Valcyte 50 mg/mL powder for oral liquid 2958011000036101 Valcyte 2958011000036101 Valcyte 87808011000036108 valganciclovir 50 mg/mL powder for oral liquid, 100 mL 87755011000036105 valganciclovir 50 mg/mL powder for oral liquid 21859011000036104 valganciclovir +1013111000168102 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 150 mL vial 49611 1013101000168100 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 150 mL vial 1013081000168107 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 150 mL vial 14501000168105 Optiray-350 14501000168105 Optiray-350 1013091000168105 ioversol 741 mg (iodine 350 mg)/mL injection, 150 mL vial 1013071000168109 ioversol 741 mg (iodine 350 mg)/mL injection, 150 mL vial 77421011000036103 ioversol +1021751000168106 Atelvia 5 mg film-coated tablet, 28, blister pack 163751 1021741000168109 Atelvia 5 mg film-coated tablet, 28 1021691000168107 Atelvia 5 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 27740011000036108 risedronate sodium 5 mg tablet, 28 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +60503011000036107 Xyzal 5 mg film-coated tablet, 28, blister pack 150854 56461011000036108 Xyzal 5 mg film-coated tablet, 28 53929011000036106 Xyzal 5 mg film-coated tablet 53093011000036108 Xyzal 53093011000036108 Xyzal 63375011000036103 levocetirizine dihydrochloride 5 mg tablet, 28 61931011000036101 levocetirizine dihydrochloride 5 mg tablet 61816011000036108 levocetirizine +940361000168106 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 199410 940351000168109 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 940341000168107 adalimumab 40 mg/0.8 mL injection, 0.8 mL injection device 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 21584011000036107 adalimumab +921908011000036106 Exforge HCT 10/320/25 film-coated tablet, 28, blister pack 158168 921467011000036107 Exforge HCT 10/320/25 film-coated tablet, 28 921019011000036105 Exforge HCT 10/320/25 film-coated tablet 21211000168103 Exforge HCT 10/320/25 21211000168103 Exforge HCT 10/320/25 922595011000036107 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 28 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +17782011000036103 Aclor 125 mg/5 mL powder for oral liquid, 100 mL, bottle 100155 11139011000036105 Aclor 125 mg/5 mL powder for oral liquid, 100 mL 5219011000036100 Aclor 125 mg/5 mL powder for oral liquid, 5 mL 3519011000036103 Aclor 3519011000036103 Aclor 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +816151000168105 Adin 100 microgram uncoated tablet, 7, bottle 99864 816141000168108 Adin 100 microgram uncoated tablet, 7 816121000168102 Adin 100 microgram uncoated tablet 816101000168106 Adin 816101000168106 Adin 816131000168104 desmopressin acetate 100 microgram tablet, 7 816111000168109 desmopressin acetate 100 microgram tablet 21750011000036107 desmopressin +116441000036100 Rosuvastatin (Apo) 5 mg film-coated tablet, 30, blister pack 183061 114841000036105 Rosuvastatin (Apo) 5 mg film-coated tablet, 30 113361000036102 Rosuvastatin (Apo) 5 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +807511000168102 Fintast 1 mg film-coated tablet, 30, blister pack 210616 807501000168100 Fintast 1 mg film-coated tablet, 30 807471000168106 Fintast 1 mg film-coated tablet 807461000168100 Fintast 807461000168100 Fintast 46555011000036102 finasteride 1 mg tablet, 30 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +1060281000168106 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 56, blister pack 234539 1060271000168108 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 56 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911581000168106 rosuvastatin 20 mg tablet, 56 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +80040011000036105 Oxaliplatin (Alphapharm) 100 mg powder for injection, 3 vials 130854 79965011000036104 Oxaliplatin (Alphapharm) 100 mg powder for injection, 3 vials 79919011000036101 Oxaliplatin (Alphapharm) 100 mg powder for injection, 100 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80061011000036107 oxaliplatin 100 mg injection, 3 vials 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +1004571000168101 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 52396 1004561000168107 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 1004541000168108 Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag 711291000168100 Naropin 0.2% 711291000168100 Naropin 0.2% 1004551000168105 ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags 1004531000168104 ropivacaine hydrochloride 200 mg/100 mL injection, bag 44857011000036102 ropivacaine +19926011000036109 Zeffix 100 mg film-coated tablet, 28, blister pack 66828 13170011000036108 Zeffix 100 mg film-coated tablet, 28 6453011000036105 Zeffix 100 mg film-coated tablet 3071011000036105 Zeffix 3071011000036105 Zeffix 27588011000036103 lamivudine 100 mg tablet, 28 22927011000036104 lamivudine 100 mg tablet 21665011000036104 lamivudine +1008861000168100 Rivastigmine (Apotex) 3 mg hard capsule, 112, blister pack 160564 1008851000168102 Rivastigmine (Apotex) 3 mg hard capsule, 112 1008781000168100 Rivastigmine (Apotex) 3 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002911000168107 rivastigmine 3 mg capsule, 112 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +751851000168103 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 100, blister pack 196502 751841000168100 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 100 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 82561011000036104 metoclopramide hydrochloride 10 mg tablet, 100 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +651181000168105 Captopril (Apo) 12.5 mg uncoated tablet, 90, blister pack 74001 651171000168107 Captopril (Apo) 12.5 mg uncoated tablet, 90 651161000168101 Captopril (Apo) 12.5 mg uncoated tablet 650661000168103 Captopril (Apo) 650661000168103 Captopril (Apo) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +112111000036105 Octagam 10% 5 g/50 mL injection solution, 50 mL bottle 155602 111981000036107 Octagam 10% 5 g/50 mL injection solution, 50 mL bottle 111891000036102 Octagam 10% 5 g/50 mL injection solution, 50 mL bottle 17661000168101 Octagam 10% 17661000168101 Octagam 10% 111991000036109 normal immunoglobulin 5 g/50 mL injection, 50 mL bottle 111901000036101 normal immunoglobulin 5 g/50 mL injection, bottle 74965011000036103 normal immunoglobulin +876081000168106 Besivance 0.6% eye drops suspension, 5 mL, bottle 201509 876071000168108 Besivance 0.6% eye drops suspension, 5 mL 876021000168107 Besivance 0.6% eye drops suspension 875981000168102 Besivance 875981000168102 Besivance 876061000168102 besifloxacin 0.6% eye drops, 5 mL 876011000168100 besifloxacin 0.6% eye drops 876001000168103 besifloxacin +700461000168103 Adempas 1 mg film-coated tablet, 42, blister pack 207599 700451000168100 Adempas 1 mg film-coated tablet, 42 700431000168106 Adempas 1 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700441000168102 riociguat 1 mg tablet, 42 700421000168108 riociguat 1 mg tablet 700211000168102 riociguat +942461000168102 Olanzapine (Sandoz) 15 mg film-coated tablet, 28, blister pack 148460 942451000168104 Olanzapine (Sandoz) 15 mg film-coated tablet, 28 942441000168101 Olanzapine (Sandoz) 15 mg film-coated tablet 1151000036106 Olanzapine (Sandoz) 1151000036106 Olanzapine (Sandoz) 6871000036104 olanzapine 15 mg tablet, 28 1381000036101 olanzapine 15 mg tablet 21485011000036103 olanzapine +44676011000036107 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack, composite pack 91564 42125011000036109 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46887011000036100 follitropin alfa 150 units (10.92 microgram) injection [50 x 150 units vials] (&) inert substance diluent [50 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44676011000036107 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack, composite pack 91564 42125011000036109 Gonal-F (50 x 150 units (10.92 microgram) vials, 50 x 1 mL inert diluent vials), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46887011000036100 follitropin alfa 150 units (10.92 microgram) injection [50 x 150 units vials] (&) inert substance diluent [50 x 1 mL vials], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +966021000168107 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 97236 966011000168100 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 966001000168103 Dermapil (inert substance) film-coated tablet 965981000168102 Dermapil 965981000168102 Dermapil 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +966021000168107 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 97236 966011000168100 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 28 965991000168104 Dermapil (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 965981000168102 Dermapil 965981000168102 Dermapil 87246011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +44601011000036106 Fabrazyme 35 mg powder for injection, 1 vial 82755 42054011000036103 Fabrazyme 35 mg powder for injection, 1 vial 40338011000036102 Fabrazyme 35 mg powder for injection, 35 mg vial 39652011000036106 Fabrazyme 39652011000036106 Fabrazyme 46821011000036104 agalsidase beta 35 mg injection, 1 vial 45326011000036109 agalsidase beta 35 mg injection, vial 44867011000036106 agalsidase beta +1068821000168106 Febricod uncoated tablet, 50, bottle 95801 1068811000168104 Febricod uncoated tablet, 50 1068801000168102 Febricod uncoated tablet 1068791000168103 Febricod 1068791000168103 Febricod 63448011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +44843011000036108 Vinorelbine (Pierre Fabre Medicament) 20 mg soft capsule, 1, blister pack 99557 42275011000036105 Vinorelbine (Pierre Fabre Medicament) 20 mg soft capsule, 1 40414011000036107 Vinorelbine (Pierre Fabre Medicament) 20 mg soft capsule 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 39778011000036102 Vinorelbine (Pierre Fabre Medicament) 28321011000036109 vinorelbine 20 mg capsule, 1 23633011000036102 vinorelbine 20 mg capsule 21269011000036100 vinorelbine +95531000036105 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet, 10, blister pack 186049 94421000036108 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet, 10 93691000036106 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet 93351000036108 Fexofenadine Hydrochloride (Terry White Chemists) 93351000036108 Fexofenadine Hydrochloride (Terry White Chemists) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1055991000168101 Erelzi 50 mg/mL injection solution, 2 x 1 mL syringes 281784 1055981000168104 Erelzi 50 mg/mL injection solution, 2 x 1 mL syringes 1055941000168109 Erelzi 50 mg/mL injection solution, syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 1055971000168102 etanercept 50 mg/mL injection, 2 x 1 mL syringes 79116011000036107 etanercept 50 mg/mL injection, syringe 21347011000036107 etanercept +726261000168105 Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches 726251000168108 Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches 726241000168106 Lophlex LQ 10 oral liquid solution, 62.5 mL pouch 31011000168107 Lophlex LQ 10 31011000168107 Lophlex LQ 10 724441000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL pouches 724421000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +867611000168102 Mabthera SC 1.6 g/13.4 mL injection solution, 13.4 mL vial 235147 867601000168100 Mabthera SC 1.6 g/13.4 mL injection solution, 13.4 mL vial 867581000168109 Mabthera SC 1.6 g/13.4 mL injection solution, 13.4 mL vial 698711000168100 Mabthera SC 698711000168100 Mabthera SC 867591000168107 rituximab 1.6 g/13.4 mL injection, 13.4 mL vial 867571000168106 rituximab 1.6 g/13.4 mL injection, vial 21460011000036105 rituximab +948811000168104 Invast 40 mg film-coated tablet, 30, blister pack 100257 945661000168108 Invast 40 mg film-coated tablet, 30 945651000168106 Invast 40 mg film-coated tablet 945591000168100 Invast 945591000168100 Invast 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +20271011000036104 Mixtard 30/70 Innolet injection suspension, 5 x 3 mL cartridges 75225 13481011000036108 Mixtard 30/70 Innolet injection suspension, 5 x 3 mL cartridges 6764011000036109 Mixtard 30/70 Innolet injection suspension, 3 mL cartridge 24531000168108 Mixtard 30/70 Innolet 24531000168108 Mixtard 30/70 Innolet 27770011000036107 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, 5 x 3 mL cartridges 23101011000036109 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +20271011000036104 Mixtard 30/70 Innolet injection suspension, 5 x 3 mL cartridges 169628 13481011000036108 Mixtard 30/70 Innolet injection suspension, 5 x 3 mL cartridges 6764011000036109 Mixtard 30/70 Innolet injection suspension, 3 mL cartridge 24531000168108 Mixtard 30/70 Innolet 24531000168108 Mixtard 30/70 Innolet 27770011000036107 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, 5 x 3 mL cartridges 23101011000036109 insulin isophane human 70 units/mL + insulin neutral human 30 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +61396011000036109 Strong Pain Relief (Pharmacy Health) uncoated tablet, 48, blister pack 82020 57321011000036108 Strong Pain Relief (Pharmacy Health) uncoated tablet, 48 54272011000036101 Strong Pain Relief (Pharmacy Health) uncoated tablet 52395011000036100 Strong Pain Relief (Pharmacy Health) 52395011000036100 Strong Pain Relief (Pharmacy Health) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +61373011000036107 Benadryl for the Family Nightime oral liquid solution, 100 mL, bottle 81664 57298011000036104 Benadryl for the Family Nightime oral liquid solution, 100 mL 54264011000036104 Benadryl for the Family Nightime oral liquid solution, 5 mL 17831000168108 Benadryl for the Family Nightime 17831000168108 Benadryl for the Family Nightime 63798011000036102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 100 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +908301000168101 Celecoxib (Generic Health) 100 mg hard capsule, 120, blister pack 196180 908291000168102 Celecoxib (Generic Health) 100 mg hard capsule, 120 908121000168108 Celecoxib (Generic Health) 100 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 907561000168105 celecoxib 100 mg capsule, 120 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +931861000168106 Centevo 100/25/200 mg film-coated tablet, 175, bottle 238855 931851000168109 Centevo 100/25/200 mg film-coated tablet, 175 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931841000168107 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 175 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +116361000036108 Gabapentin (Aspen) 800 mg film-coated tablet, 100, blister pack 156103 114651000036109 Gabapentin (Aspen) 800 mg film-coated tablet, 100 113331000036108 Gabapentin (Aspen) 800 mg film-coated tablet 112611000036104 Gabapentin (Aspen) 112611000036104 Gabapentin (Aspen) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +749681000168105 Tacrolimus (Actavis) 5 mg hard capsule, 50, blister pack 224270 749671000168107 Tacrolimus (Actavis) 5 mg hard capsule, 50 749641000168100 Tacrolimus (Actavis) 5 mg hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +916741000168102 Carvedilol (CH) 12.5 mg uncoated tablet, 60, blister pack 194258 916731000168106 Carvedilol (CH) 12.5 mg uncoated tablet, 60 916721000168108 Carvedilol (CH) 12.5 mg uncoated tablet 916661000168106 Carvedilol (CH) 916661000168106 Carvedilol (CH) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +55191000036108 Anti-Inflammatory Pain Relief (Pharmacy Choice) 1% gel, 100 g, tube 134541 50971000036101 Anti-Inflammatory Pain Relief (Pharmacy Choice) 1% gel, 100 g 48981000036104 Anti-Inflammatory Pain Relief (Pharmacy Choice) 1% gel 43021000168103 Anti-Inflammatory Pain Relief (Pharmacy Choice) 43021000168103 Anti-Inflammatory Pain Relief (Pharmacy Choice) 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +20029011000036109 Monoplus 20/12.5 uncoated tablet, 30, blister pack 68969 13262011000036103 Monoplus 20/12.5 uncoated tablet, 30 6544011000036103 Monoplus 20/12.5 uncoated tablet 37201000168109 Monoplus 20/12.5 37201000168109 Monoplus 20/12.5 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1051611000168102 Palexia SR 50 mg modified release tablet, 40, blister pack 165332 1051601000168100 Palexia SR 50 mg modified release tablet, 40 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051591000168107 tapentadol 50 mg modified release tablet, 40 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +80961011000036103 Calamine Aqueous (David Craig) cream, 100 g, jar 14194 80502011000036102 Calamine Aqueous (David Craig) cream, 100 g 80168011000036109 Calamine Aqueous (David Craig) cream 80138011000036104 Calamine Aqueous (David Craig) 80138011000036104 Calamine Aqueous (David Craig) 81597011000036106 calamine 4% + zinc oxide 3% cream, 100 g 81267011000036104 calamine 4% + zinc oxide 3% cream 81211011000036108 calamine + zinc oxide +1073031000168102 Instanyl 100 microgram/actuation nasal spray, 20 actuations, pump pack 197691 1073021000168100 Instanyl 100 microgram/actuation nasal spray, 20 actuations 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1073011000168107 fentanyl 100 microgram/actuation nasal spray, 20 actuations 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +957441000168102 Mycophenolate (Sandoz) 500 mg film-coated tablet, 150, bottle 148226 957431000168106 Mycophenolate (Sandoz) 500 mg film-coated tablet, 150 1411000036104 Mycophenolate (Sandoz) 500 mg film-coated tablet 1041000036107 Mycophenolate (Sandoz) 1041000036107 Mycophenolate (Sandoz) 27979011000036107 mycophenolate mofetil 500 mg tablet, 150 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +50495011000036104 Peg (7420) 5 cm x 1.3 m bandage, 1, carton 49507011000036105 Peg (7420) 5 cm x 1.3 m bandage, 1 48751011000036109 Peg (7420) 5 cm x 1.3 m bandage 21911000168105 Peg (7420) 21911000168105 Peg (7420) 51457011000036106 bandage retention cohesive heavy 5 cm x 1.3 m bandage, 1 50964011000036102 bandage retention cohesive heavy 5 cm x 1.3 m bandage 50704011000036109 bandage retention cohesive heavy +1073211000168101 Vyvanse 60 mg hard capsule, 30, bottle 284021 1073201000168104 Vyvanse 60 mg hard capsule, 30 1073181000168100 Vyvanse 60 mg hard capsule 143261000036104 Vyvanse 143261000036104 Vyvanse 1073191000168102 lisdexamfetamine dimesilate 60 mg capsule, 30 1073171000168103 lisdexamfetamine dimesilate 60 mg capsule 146451000036109 lisdexamfetamine +1060241000168101 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 42, blister pack 234539 1060231000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 42 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911491000168105 rosuvastatin 20 mg tablet, 42 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +61154011000036102 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 100 mL, bottle 74523 57097011000036107 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 100 mL 54196011000036108 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +52759011000036106 Metformin Hydrochloride (Ranbaxy) 500 mg film-coated tablet, 100, blister pack 142876 52571011000036106 Metformin Hydrochloride (Ranbaxy) 500 mg film-coated tablet, 100 52422011000036109 Metformin Hydrochloride (Ranbaxy) 500 mg film-coated tablet 23791000168102 Metformin Hydrochloride (Ranbaxy) 23791000168102 Metformin Hydrochloride (Ranbaxy) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +18024011000036107 Corbeton 40 mg film-coated tablet, 100, bottle 17592 12125011000036107 Corbeton 40 mg film-coated tablet, 100 4666011000036101 Corbeton 40 mg film-coated tablet 4407011000036100 Corbeton 4407011000036100 Corbeton 26935011000036107 oxprenolol hydrochloride 40 mg tablet, 100 22312011000036104 oxprenolol hydrochloride 40 mg tablet 21774011000036104 oxprenolol +1120171000168101 Quetiapine (Watson) 200 mg film-coated tablet, 60, blister pack 202264 1120161000168107 Quetiapine (Watson) 200 mg film-coated tablet, 60 1120131000168104 Quetiapine (Watson) 200 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +77286011000036101 Water for Injections (Baxter) injection solution, 1 L bag 19456 76702011000036108 Water for Injections (Baxter) injection solution, 1 L bag 76126011000036105 Water for Injections (Baxter) injection solution, 1 L bag 75965011000036108 Water for Injections (Baxter) 75965011000036108 Water for Injections (Baxter) 78253011000036106 water for injections injection, 1 L bag 77576011000036101 water for injections injection, 1 L bag 77431011000036101 water for injections +726081000168107 Viekira Pak (14 x 75 mg/50 mg/12.5 mg tablets, 14 x 250 mg tablets), 28, blister pack 726071000168109 Viekira Pak (14 x 75 mg/50 mg/12.5 mg tablets, 14 x 250 mg tablets), 28 726021000168108 Viekira Pak film-coated tablet 722981000168107 Viekira Pak 722981000168107 Viekira Pak 726061000168103 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [14] (&) dasabuvir 250 mg tablet [14], 28 726011000168101 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet 726001000168104 paritaprevir + ritonavir + ombitasvir +726081000168107 Viekira Pak (14 x 75 mg/50 mg/12.5 mg tablets, 14 x 250 mg tablets), 28, blister pack 726071000168109 Viekira Pak (14 x 75 mg/50 mg/12.5 mg tablets, 14 x 250 mg tablets), 28 726051000168100 Viekira Pak 250 mg film-coated tablet 722981000168107 Viekira Pak 722981000168107 Viekira Pak 726061000168103 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [14] (&) dasabuvir 250 mg tablet [14], 28 726041000168102 dasabuvir 250 mg tablet 726031000168106 dasabuvir +31411000036107 Acetylcysteine (Omegapharm) 2 g/10 mL inhalation solution, 10 mL vial 180343 29081000036106 Acetylcysteine (Omegapharm) 2 g/10 mL inhalation solution, 10 mL vial 26921000036104 Acetylcysteine (Omegapharm) 2 g/10 mL inhalation solution, 10 mL vial 26341000036106 Acetylcysteine (Omegapharm) 26341000036106 Acetylcysteine (Omegapharm) 29091000036108 acetylcysteine 2 g/10 mL inhalation solution, 10 mL vial 26931000036102 acetylcysteine 2 g/10 mL inhalation solution, vial 21423011000036105 acetylcysteine +865301000168103 Amitriptyline (CH) 50 mg tablet, 50, bottle 232127 865291000168104 Amitriptyline (CH) 50 mg tablet, 50 865281000168102 Amitriptyline (CH) 50 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +717651000168104 Pemzo 20 mg enteric capsule, 7, bottle 167315 717561000168103 Pemzo 20 mg enteric capsule, 7 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716871000168105 omeprazole 20 mg enteric capsule, 7 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +43778011000036104 Zemplar 2 microgram soft capsule, 7, blister pack 121762 41260011000036109 Zemplar 2 microgram soft capsule, 7 39939011000036101 Zemplar 2 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46199011000036101 paricalcitol 2 microgram capsule, 7 45026011000036105 paricalcitol 2 microgram capsule 44899011000036102 paricalcitol +867451000168103 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 25 x 250 mL bags 241252 867441000168100 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 25 x 250 mL bags 867341000168107 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 250 mL bag 867331000168103 Moxifloxacin (Kabi) 867331000168103 Moxifloxacin (Kabi) 867431000168109 moxifloxacin 400 mg/250 mL injection, 25 x 250 mL bags 33684011000036106 moxifloxacin 400 mg/250 mL injection, bag 21765011000036109 moxifloxacin +908141000168102 Celecoxib (Generic Health) 100 mg hard capsule, 10, blister pack 196180 908131000168106 Celecoxib (Generic Health) 100 mg hard capsule, 10 908121000168108 Celecoxib (Generic Health) 100 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +19810011000036106 Flixotide CFC-Free 125 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 63447 13067011000036107 Flixotide CFC-Free 125 microgram/actuation pressurised inhalation, 120 actuations 6351011000036100 Flixotide CFC-Free 125 microgram/actuation pressurised inhalation, actuation 29811000168100 Flixotide 29811000168100 Flixotide 27530011000036108 fluticasone propionate 125 microgram/actuation pressurised inhalation, 120 actuations 22870011000036108 fluticasone propionate 125 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +865461000168107 Amitriptyline (GPPL) 25 mg tablet, 50, bottle 232137 862661000168101 Amitriptyline (GPPL) 25 mg tablet, 50 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +121421000036105 Olanzapine ODT (RBX) 10 mg orally disintegrating tablet, 28, blister pack 177799 120291000036101 Olanzapine ODT (RBX) 10 mg orally disintegrating tablet, 28 119541000036106 Olanzapine ODT (RBX) 10 mg orally disintegrating tablet 47861000168108 Olanzapine ODT (RBX) 47861000168108 Olanzapine ODT (RBX) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +30681000036105 Dry Cough Mixture (Guardian) 1 mg/mL oral liquid solution, 200 mL, bottle 178452 29021000036105 Dry Cough Mixture (Guardian) 1 mg/mL oral liquid solution, 200 mL 27171000036100 Dry Cough Mixture (Guardian) 1 mg/mL oral liquid solution 56791000168105 Dry Cough Mixture (Guardian) 56791000168105 Dry Cough Mixture (Guardian) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +1049601000168104 Codapane Forte 500/30 uncoated tablet, 50, blister pack 285558 1049591000168106 Codapane Forte 500/30 uncoated tablet, 50 835931000168100 Codapane Forte 500/30 uncoated tablet 27331000168106 Codapane Forte 500/30 27331000168106 Codapane Forte 500/30 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +1049601000168104 Codapane Forte 500/30 uncoated tablet, 50, blister pack 99732 1049591000168106 Codapane Forte 500/30 uncoated tablet, 50 835931000168100 Codapane Forte 500/30 uncoated tablet 27331000168106 Codapane Forte 500/30 27331000168106 Codapane Forte 500/30 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +61638011000036109 Paralgin Tabsule 500 mg uncoated tablet, 96, blister pack 97039 57560011000036106 Paralgin Tabsule 500 mg uncoated tablet, 96 54350011000036106 Paralgin Tabsule 500 mg uncoated tablet 16671000168105 Paralgin Tabsule 16671000168105 Paralgin Tabsule 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +968261000168108 Fuzeon 90 mg powder for injection, 60 vials 94314 968251000168106 Fuzeon 90 mg powder for injection, 60 vials 7457011000036102 Fuzeon (enfuvirtide 90 mg) powder for injection, 90 mg vial 4029011000036108 Fuzeon 4029011000036108 Fuzeon 968241000168109 enfuvirtide 90 mg injection, 60 vials 23504011000036104 enfuvirtide 90 mg injection, vial 21744011000036100 enfuvirtide +20778011000036102 Abilify 30 mg uncoated tablet, 30, blister pack 91000 13947011000036107 Abilify 30 mg uncoated tablet, 30 7235011000036109 Abilify 30 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +55171000036109 Acid and Heartburn Relief Extra Strength (Pharmacy Choice) 300 mg film-coated tablet, 14, strip pack 134346 50961000036109 Acid and Heartburn Relief Extra Strength (Pharmacy Choice) 300 mg film-coated tablet, 14 49221000036101 Acid and Heartburn Relief Extra Strength (Pharmacy Choice) 300 mg film-coated tablet 59011000168109 Acid and Heartburn Relief Extra Strength (Pharmacy Choice) 59011000168109 Acid and Heartburn Relief Extra Strength (Pharmacy Choice) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +84268011000036109 Zan-Extra 10/20 film-coated tablet, 28, blister pack 120961 83961011000036104 Zan-Extra 10/20 film-coated tablet, 28 36072011000036106 Zan-Extra 10/20 film-coated tablet 30331000168108 Zan-Extra 10/20 30331000168108 Zan-Extra 10/20 84615011000036104 lercanidipine hydrochloride 10 mg + enalapril maleate 20 mg tablet, 28 37888011000036101 lercanidipine hydrochloride 10 mg + enalapril maleate 20 mg tablet 37713011000036106 lercanidipine + enalapril +20335011000036105 Cyprostat 50 mg uncoated tablet, 50, bottle 76119 13544011000036109 Cyprostat 50 mg uncoated tablet, 50 6826011000036108 Cyprostat 50 mg uncoated tablet 3019011000036100 Cyprostat 3019011000036100 Cyprostat 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +1086411000168104 Hayfever Prevention and Relief (Chemmart Pharmacy) 50 microgram/actuation nasal spray, 140 actuations, pump pack 280063 1086401000168102 Hayfever Prevention and Relief (Chemmart Pharmacy) 50 microgram/actuation nasal spray, 140 actuations 1086371000168100 Hayfever Prevention and Relief (Chemmart Pharmacy) 50 microgram/actuation nasal spray, actuation 1086361000168106 Hayfever Prevention and Relief (Chemmart Pharmacy) 1086361000168106 Hayfever Prevention and Relief (Chemmart Pharmacy) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +19084011000036100 Oruvail SR 200 mg modified release capsule, 28, blister pack 42422 12390011000036100 Oruvail SR 200 mg modified release capsule, 28 5984011000036100 Oruvail SR 200 mg modified release capsule 10051000168105 Oruvail SR 10051000168105 Oruvail SR 27096011000036104 ketoprofen 200 mg modified release capsule, 28 22465011000036102 ketoprofen 200 mg modified release capsule 21856011000036108 ketoprofen +1064171000168106 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 30, blister pack 196532 1064161000168100 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 30 1064071000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +31161000036102 Karbesat HCT 150/12.5 film-coated tablet, 30, blister pack 171436 28321000036102 Karbesat HCT 150/12.5 film-coated tablet, 30 26751000036108 Karbesat HCT 150/12.5 film-coated tablet 23271000168105 Karbesat HCT 150/12.5 23271000168105 Karbesat HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1008701000168108 Risedronate (Apotex) 35 mg film-coated tablet, 4, blister pack 160636 1008691000168108 Risedronate (Apotex) 35 mg film-coated tablet, 4 1008481000168107 Risedronate (Apotex) 35 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +103981000036108 Arazil 10 mg film-coated tablet, 28, blister pack 167693 101451000036106 Arazil 10 mg film-coated tablet, 28 98361000036101 Arazil 10 mg film-coated tablet 97671000036101 Arazil 97671000036101 Arazil 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +730011000168101 Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 176336 730001000168104 Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 729991000168103 Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 87741000036100 Paclitaxel (GN) 87741000036100 Paclitaxel (GN) 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +1082071000168102 Zirizine 10 mg film-coated tablet, 40, blister pack 286354 1082061000168108 Zirizine 10 mg film-coated tablet, 40 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 1082051000168106 cetirizine hydrochloride 10 mg tablet, 40 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +69721011000036101 Aerius 5 mg film-coated tablet, 20, blister pack 91116 67520011000036104 Aerius 5 mg film-coated tablet, 20 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72022011000036100 desloratadine 5 mg tablet, 20 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +19384011000036101 Mobilis 10 mg hard capsule, 50, bottle 52201 12772011000036105 Mobilis 10 mg hard capsule, 50 6066011000036103 Mobilis 10 mg hard capsule 25271000168109 Mobilis 25271000168109 Mobilis 27762011000036104 piroxicam 10 mg capsule, 50 23093011000036100 piroxicam 10 mg capsule 21531011000036103 piroxicam +747191000168106 Pemetrexed (Accord) 500 mg powder for injection, 1 vial 222417 747181000168108 Pemetrexed (Accord) 500 mg powder for injection, 1 vial 747171000168105 Pemetrexed (Accord) 500 mg powder for injection, 500 mg vial 747161000168104 Pemetrexed (Accord) 747161000168104 Pemetrexed (Accord) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +747191000168106 Pemetrexed (Accord) 500 mg powder for injection, 1 vial 222415 747181000168108 Pemetrexed (Accord) 500 mg powder for injection, 1 vial 747171000168105 Pemetrexed (Accord) 500 mg powder for injection, 500 mg vial 747161000168104 Pemetrexed (Accord) 747161000168104 Pemetrexed (Accord) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +60186011000036105 Pain Plus Relief (Your Pharmacy) uncoated tablet, 96, blister pack 131896 56145011000036103 Pain Plus Relief (Your Pharmacy) uncoated tablet, 96 53806011000036100 Pain Plus Relief (Your Pharmacy) uncoated tablet 53337011000036109 Pain Plus Relief (Your Pharmacy) 53337011000036109 Pain Plus Relief (Your Pharmacy) 63804011000036109 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 96 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +46191000036100 Kapanol 100 mg modified release capsule, 28, blister pack 48136 43851000036106 Kapanol 100 mg modified release capsule, 28 5235011000036105 Kapanol 100 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 43861000036109 morphine sulfate pentahydrate 100 mg modified release capsule, 28 22555011000036103 morphine sulfate pentahydrate 100 mg modified release capsule 21252011000036100 morphine +1017291000168109 Aripiprazole (AU) 15 mg uncoated tablet, 250, bottle 217242 1017281000168106 Aripiprazole (AU) 15 mg uncoated tablet, 250 1016791000168103 Aripiprazole (AU) 15 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 1015601000168108 aripiprazole 15 mg tablet, 250 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +34663011000036109 Fluconazole (DBL) 200 mg hard capsule, 28, strip pack 125203 11621011000036108 Fluconazole (DBL) 200 mg hard capsule, 28 5133011000036107 Fluconazole (DBL) 200 mg hard capsule 4135011000036100 Fluconazole (DBL) 4135011000036100 Fluconazole (DBL) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +833631000168106 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 833621000168108 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 833601000168104 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension 664241000168102 Magnesium Trisilicate Mixture BPC (extemporaneous) 664241000168102 Magnesium Trisilicate Mixture BPC (extemporaneous) 833611000168101 magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 833591000168106 magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 871071000168101 magnesium trisilicate + magnesium carbonate + bicarbonate +1072711000168102 Parapane PE Cold and Flu Day and Night (18 x Day tablets, 6 x Night tablets), 24, blister pack 220398 1072701000168100 Parapane PE Cold and Flu Day and Night (18 x Day tablets, 6 x Night tablets), 24 1072681000168103 Parapane PE Cold and Flu Day and Night (Day) film-coated tablet 1072671000168101 Parapane PE Cold and Flu Day and Night 1067241000168100 Parapane PE Cold and Flu Day and Night (Day) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1072711000168102 Parapane PE Cold and Flu Day and Night (18 x Day tablets, 6 x Night tablets), 24, blister pack 220398 1072701000168100 Parapane PE Cold and Flu Day and Night (18 x Day tablets, 6 x Night tablets), 24 1072691000168100 Parapane PE Cold and Flu Day and Night (Night) film-coated tablet 1072671000168101 Parapane PE Cold and Flu Day and Night 1067251000168103 Parapane PE Cold and Flu Day and Night (Night) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +60002011000036103 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet, 12, blister pack 123048 55964011000036107 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet, 12 53741011000036104 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet 53519011000036107 Sinutab PE Sinus, Allergy and Pain Relief 53519011000036107 Sinutab PE Sinus, Allergy and Pain Relief 63182011000036107 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 12 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +106091000036100 Senna-Col (Guardian) film-coated tablet, 30, bottle 139220 105981000036107 Senna-Col (Guardian) film-coated tablet, 30 105921000036106 Senna-Col (Guardian) film-coated tablet 53137011000036103 Senna-Col (Guardian) 53137011000036103 Senna-Col (Guardian) 81746011000036103 docusate sodium 50 mg + sennoside B 8 mg tablet, 30 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +21078011000036108 Lengout 500 microgram tablet, 100, bottle 97499 14221011000036101 Lengout 500 microgram tablet, 100 7507011000036102 Lengout 500 microgram tablet 3865011000036102 Lengout 3865011000036102 Lengout 28223011000036100 colchicine 500 microgram tablet, 100 23537011000036101 colchicine 500 microgram tablet 21400011000036106 colchicine +985701000168109 Simulect (1 x 10 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 94636 985691000168109 Simulect (1 x 10 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 647281000168106 Simulect (inert substance) diluent, 5 mL ampoule 39745011000036107 Simulect 39745011000036107 Simulect 985681000168106 basiliximab 10 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 636941000168108 inert substance diluent, 5 mL ampoule 21220011000036103 inert substance +985701000168109 Simulect (1 x 10 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 94636 985691000168109 Simulect (1 x 10 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 985671000168108 Simulect (basiliximab 10 mg) powder for injection, 10 mg vial 39745011000036107 Simulect 39745011000036107 Simulect 985681000168106 basiliximab 10 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 985661000168102 basiliximab 10 mg injection, vial 44959011000036102 basiliximab +17799011000036107 Naphcon Forte 0.1% eye drops solution, 15 mL, bottle 10231 11252011000036101 Naphcon Forte 0.1% eye drops solution, 15 mL 5668011000036106 Naphcon Forte 0.1% eye drops solution 16461000168101 Naphcon Forte 16461000168101 Naphcon Forte 26993011000036104 naphazoline hydrochloride 0.1% eye drops, 15 mL 22366011000036104 naphazoline hydrochloride 0.1% eye drops 21921011000036106 naphazoline +991321000168102 Aripiprazole (Apotex) 15 mg uncoated tablet, 30, blister pack 152928 991311000168109 Aripiprazole (Apotex) 15 mg uncoated tablet, 30 991301000168106 Aripiprazole (Apotex) 15 mg uncoated tablet 990871000168102 Aripiprazole (Apotex) 990871000168102 Aripiprazole (Apotex) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +50409011000036100 Allevyn Plus Cavity (66047573) 10 cm x 10 cm dressing, 5, carton 121509 49369011000036100 Allevyn Plus Cavity (66047573) 10 cm x 10 cm dressing, 5 48638011000036109 Allevyn Plus Cavity (66047573) 10 cm x 10 cm dressing 32081000168105 Allevyn Plus Cavity (66047573) 32081000168105 Allevyn Plus Cavity (66047573) 51343011000036105 dressing hydroactive cavity wound 10 cm x 10 cm dressing, 5 50867011000036102 dressing hydroactive cavity wound 10 cm x 10 cm dressing 50752011000036106 dressing hydroactive cavity wound +74021000036107 Olanzapine ODT (Stada) 5 mg orally disintegrating tablet, 28, blister pack 177794 71671000036102 Olanzapine ODT (Stada) 5 mg orally disintegrating tablet, 28 69531000036105 Olanzapine ODT (Stada) 5 mg orally disintegrating tablet 47481000168101 Olanzapine ODT (Stada) 47481000168101 Olanzapine ODT (Stada) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +907821000168102 Celecoxib (LAPL) 100 mg hard capsule, 20, blister pack 196179 907811000168109 Celecoxib (LAPL) 100 mg hard capsule, 20 907731000168106 Celecoxib (LAPL) 100 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 904001000168109 celecoxib 100 mg capsule, 20 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +17874011000036101 Doloxene Pulvule 100 mg hard capsule, 10, blister pack 14630 12047011000036105 Doloxene Pulvule 100 mg hard capsule, 10 5020011000036106 Doloxene Pulvule 100 mg hard capsule 25221000168108 Doloxene Pulvule 25221000168108 Doloxene Pulvule 26879011000036103 dextropropoxyphene napsilate monohydrate 100 mg capsule, 10 22258011000036103 dextropropoxyphene napsilate monohydrate 100 mg capsule 21901011000036101 dextropropoxyphene +69479011000036107 Ice 2% gel, 120 g, tube 49827 67279011000036103 Ice 2% gel, 120 g 65591011000036102 Ice 2% gel 65034011000036107 Ice 65034011000036107 Ice 71827011000036103 menthol 2% gel, 120 g 70206011000036107 menthol 2% gel 52233011000036104 menthol +1077821000168100 Atomoxetine (AN) 100 mg hard capsule, 56, blister pack 234798 1077811000168107 Atomoxetine (AN) 100 mg hard capsule, 56 1077741000168100 Atomoxetine (AN) 100 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830171000168108 atomoxetine 100 mg capsule, 56 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +168281000036108 Dermaveen Shower and Bath Oil 5% bath oil, 1 L, pump pack 130060 167711000036109 Dermaveen Shower and Bath Oil 5% bath oil, 1 L 167531000036105 Dermaveen Shower and Bath Oil 5% bath oil 9861000168106 Dermaveen Shower and Bath Oil 9861000168106 Dermaveen Shower and Bath Oil 167721000036102 colloidal oatmeal 5% bath oil, 1 L 167541000036100 colloidal oatmeal 5% bath oil 77444011000036102 colloidal oatmeal +882621000168109 Spedra 200 mg uncoated tablet, 4, blister pack 228476 882611000168102 Spedra 200 mg uncoated tablet, 4 882501000168101 Spedra 200 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882601000168100 avanafil 200 mg tablet, 4 882491000168108 avanafil 200 mg tablet 882091000168102 avanafil +933781000168107 Centevo 200/50/200 mg film-coated tablet, 100, bottle 238859 933771000168109 Centevo 200/50/200 mg film-coated tablet, 100 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 51558011000036100 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 100 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +683211000168100 Sildenafil (Actavis) 100 mg film-coated tablet, 4, blister pack 202923 683201000168103 Sildenafil (Actavis) 100 mg film-coated tablet, 4 683191000168101 Sildenafil (Actavis) 100 mg film-coated tablet 683181000168104 Sildenafil (Actavis) 683181000168104 Sildenafil (Actavis) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +1072751000168101 Pantoprazole (Generic Health) 40 mg enteric tablet, 50, blister pack 191033 1072741000168103 Pantoprazole (Generic Health) 40 mg enteric tablet, 50 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46660011000036108 pantoprazole 40 mg enteric tablet, 50 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +20836011000036101 Tracleer 62.5 mg film-coated tablet, 60, bottle 91919 13999011000036109 Tracleer 62.5 mg film-coated tablet, 60 7280011000036108 Tracleer 62.5 mg film-coated tablet 4105011000036106 Tracleer 4105011000036106 Tracleer 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +20594011000036102 Clavulin Duo 400 powder for oral liquid, 60 mL, bottle 80626 13776011000036101 Clavulin Duo 400 powder for oral liquid, 60 mL 7062011000036103 Clavulin Duo 400 powder for oral liquid, 5 mL 31071000168104 Clavulin Duo 400 31071000168104 Clavulin Duo 400 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +929121011000036102 Oxycontin 20 mg modified release tablet, 28, bottle 68189 928481011000036107 Oxycontin 20 mg modified release tablet, 28 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +929121011000036102 Oxycontin 20 mg modified release tablet, 28, bottle 200035 928481011000036107 Oxycontin 20 mg modified release tablet, 28 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +837971000168107 Airzate Accuhaler 100/50 powder for inhalation, 60 actuations, blister pack 208188 837961000168101 Airzate Accuhaler 100/50 powder for inhalation, 60 actuations 837921000168106 Airzate Accuhaler 100/50 powder for inhalation, actuation 837911000168104 Airzate Accuhaler 100/50 837911000168104 Airzate Accuhaler 100/50 27671011000036109 fluticasone propionate 100 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 23008011000036108 fluticasone propionate 100 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +1005071000168108 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 52397 1005061000168102 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 1005041000168101 Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule 711391000168105 Naropin 1% 711391000168105 Naropin 1% 1005051000168104 ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules 1005031000168105 ropivacaine hydrochloride 200 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +32607011000036105 Aldazine 10 mg film-coated tablet, 90, blister pack 93654 32403011000036103 Aldazine 10 mg film-coated tablet, 90 32254011000036109 Aldazine 10 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32801011000036109 thioridazine hydrochloride 10 mg tablet, 90 32705011000036108 thioridazine hydrochloride 10 mg tablet 21637011000036101 thioridazine +987071000168108 Act-3 200 mg soft capsule, 20, blister pack 77290 987061000168102 Act-3 200 mg soft capsule, 20 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +698281000168103 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 79752 13745011000036107 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 641621000168102 Avonex (inert substance) diluent, 1.1 mL syringe 20651000168107 Avonex 20651000168107 Avonex 27914011000036104 interferon beta-1a 6 million units (30 microgram) injection [4 vials] (&) inert substance diluent [4 x 1.1 mL syringes], 1 pack 641611000168109 inert substance diluent, 1.1 mL syringe 21220011000036103 inert substance +698281000168103 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 79752 13745011000036107 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 7029011000036104 Avonex (interferon beta-1a 6 million units (30 microgram)) powder for injection, 30 microgram vial 20651000168107 Avonex 20651000168107 Avonex 27914011000036104 interferon beta-1a 6 million units (30 microgram) injection [4 vials] (&) inert substance diluent [4 x 1.1 mL syringes], 1 pack 23238011000036109 interferon beta-1a 6 million units (30 microgram) injection, vial 21462011000036109 interferon beta-1a +18116011000036101 Monace 20 mg uncoated tablet, 30, bottle 101902 11243011000036105 Monace 20 mg uncoated tablet, 30 4910011000036101 Monace 20 mg uncoated tablet 3242011000036107 Monace 3242011000036107 Monace 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +60019011000036105 Paracetamol (Priceline) 500 mg film-coated tablet, 24, blister pack 123368 55981011000036107 Paracetamol (Priceline) 500 mg film-coated tablet, 24 53746011000036109 Paracetamol (Priceline) 500 mg film-coated tablet 53428011000036101 Paracetamol (Priceline) 53428011000036101 Paracetamol (Priceline) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +691781000168100 Alendronate Plus D3 70 mg/70 microgram (Apo) tablet, 4, blister pack 220372 691771000168103 Alendronate Plus D3 70 mg/70 microgram (Apo) tablet, 4 691761000168109 Alendronate Plus D3 70 mg/70 microgram (Apo) tablet 691751000168107 Alendronate Plus D3 70 mg/70 microgram (Apo) 691751000168107 Alendronate Plus D3 70 mg/70 microgram (Apo) 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +31091000036105 Add-Ins powder for oral liquid, 60 x 18.2 g sachets 28161000036109 Add-Ins powder for oral liquid, 60 x 18.2 g sachets 258001000168108 Add-Ins powder for oral liquid, 18.2 g sachet 48337011000036101 Add-Ins 48337011000036101 Add-Ins 28171000036101 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 60 x 18.2 g sachets 257761000168108 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 18.2 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1002901000168109 Rivastigmine (Apo) 3 mg hard capsule, 56, blister pack 160578 1002731000168104 Rivastigmine (Apo) 3 mg hard capsule, 56 1002721000168102 Rivastigmine (Apo) 3 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27692011000036108 rivastigmine 3 mg capsule, 56 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +657941000168109 Teltartan HCT 80/25mg multilayer tablet, 28, blister pack 208074 657931000168100 Teltartan HCT 80/25mg multilayer tablet, 28 657921000168103 Teltartan HCT 80/25mg multilayer tablet 657911000168105 Teltartan HCT 80/25mg 657911000168105 Teltartan HCT 80/25mg 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +1115971000168101 Quetiapine XR (Sandoz) 200 mg modified release tablet, 60, blister pack 199866 1115961000168107 Quetiapine XR (Sandoz) 200 mg modified release tablet, 60 1115951000168105 Quetiapine XR (Sandoz) 200 mg modified release tablet 1115851000168102 Quetiapine XR (Sandoz) 1115851000168102 Quetiapine XR (Sandoz) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +104071000036108 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet, 28, bottle 168333 101531000036102 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet, 28 99381000036104 Donepezil Hydrochloride (Apo) 5 mg film-coated tablet 97731000036109 Donepezil Hydrochloride (Apo) 97731000036109 Donepezil Hydrochloride (Apo) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +20352011000036101 Isohexal 20 mg soft capsule, 60, blister pack 76335 13560011000036109 Isohexal 20 mg soft capsule, 60 6842011000036106 Isohexal 20 mg soft capsule 4085011000036103 Isohexal 4085011000036103 Isohexal 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +935931000168109 Zolpidem (Apo) 5 mg film-coated tablet, 7, bottle 127167 935891000168101 Zolpidem (Apo) 5 mg film-coated tablet, 7 935881000168104 Zolpidem (Apo) 5 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 926171000168101 zolpidem tartrate 5 mg tablet, 7 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +980561000168105 Lovenox 80 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 80268 980551000168108 Lovenox 80 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 980501000168109 Lovenox 80 mg/0.8 mL injection solution, 0.8 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 27374011000036103 enoxaparin sodium 80 mg/0.8 mL injection, 10 x 0.8 mL syringes 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +976941000168109 Pregabalin (Apotex) 50 mg hard capsule, 56, blister pack 267553 976931000168100 Pregabalin (Apotex) 50 mg hard capsule, 56 976881000168105 Pregabalin (Apotex) 50 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +751531000168106 Ceftriaxone (AFT) 1 g powder for injection, 5 vials 185100 751521000168108 Ceftriaxone (AFT) 1 g powder for injection, 5 vials 26961000036108 Ceftriaxone (AFT) 1 g powder for injection, vial 26001000036105 Ceftriaxone (AFT) 26001000036105 Ceftriaxone (AFT) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +764511000168108 Ursodox (LAPL) 250 mg hard capsule, 60, blister pack 232481 764501000168105 Ursodox (LAPL) 250 mg hard capsule, 60 764491000168103 Ursodox (LAPL) 250 mg hard capsule 764481000168101 Ursodox (LAPL) 764481000168101 Ursodox (LAPL) 757471000168102 ursodeoxycholic acid 250 mg capsule, 60 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +889131000168108 Flucloxacillin (Blooms The Chemist) 500 mg capsule, 24, blister pack 226383 889121000168105 Flucloxacillin (Blooms The Chemist) 500 mg capsule, 24 889111000168103 Flucloxacillin (Blooms The Chemist) 500 mg capsule 879491000168107 Flucloxacillin (Blooms The Chemist) 879491000168107 Flucloxacillin (Blooms The Chemist) 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +905721000168104 Farydak 15 mg hard capsule, 24, blister pack 230844 905711000168106 Farydak 15 mg hard capsule, 24 905551000168104 Farydak 15 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 905701000168108 panobinostat 15 mg capsule, 24 905541000168101 panobinostat 15 mg capsule 905421000168108 panobinostat +18842011000036100 Neosulf 500 mg uncoated tablet, 25, bottle 17707 12154011000036109 Neosulf 500 mg uncoated tablet, 25 5220011000036104 Neosulf 500 mg uncoated tablet 3595011000036104 Neosulf 3595011000036104 Neosulf 26952011000036103 neomycin sulfate 500 mg tablet, 25 22327011000036106 neomycin sulfate 500 mg tablet 21243011000036109 neomycin sulfate +79625011000036105 Cubicin 500 mg powder for injection, 1 vial 143586 79472011000036103 Cubicin 500 mg powder for injection, 1 vial 79357011000036105 Cubicin 500 mg powder for injection, 500 mg vial 79337011000036109 Cubicin 79337011000036109 Cubicin 79803011000036106 daptomycin 500 mg injection, 1 vial 79739011000036101 daptomycin 500 mg injection, vial 79727011000036105 daptomycin +974121000168106 Pregabalin (Teva) 300 mg hard capsule, 56, blister pack 229603 974111000168104 Pregabalin (Teva) 300 mg hard capsule, 56 974011000168103 Pregabalin (Teva) 300 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +19718011000036106 Dilatrend 25 mg uncoated tablet, 60, blister pack 61108 12974011000036105 Dilatrend 25 mg uncoated tablet, 60 6263011000036102 Dilatrend 25 mg uncoated tablet 4079011000036107 Dilatrend 4079011000036107 Dilatrend 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +773191000168100 Famvir 500 mg film-coated tablet, 16, blister pack 67391 773181000168103 Famvir 500 mg film-coated tablet, 16 6484011000036101 Famvir 500 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 933225001000036102 famciclovir 500 mg tablet, 16 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +818561000168100 Afolia 300 units (22 microgram)/0.5 mL injection solution, 10 x 0.5 mL injection devices 262648 818551000168102 Afolia 300 units (22 microgram)/0.5 mL injection solution, 10 x 0.5 mL injection devices 818501000168101 Afolia 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741461000168102 follitropin alfa 300 units (22 microgram)/0.5 mL injection, 10 x 0.5 mL injection devices 741381000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, injection device 21352011000036107 follitropin alfa +37670011000036101 Pilocarpine Nitrate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 32278 36936011000036104 Pilocarpine Nitrate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 36267011000036108 Pilocarpine Nitrate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 33181000168104 Pilocarpine Nitrate Minims (Bausch & Lomb) 33181000168104 Pilocarpine Nitrate Minims (Bausch & Lomb) 38817011000036107 pilocarpine nitrate 1% eye drops, 20 x 0.5 mL unit doses 38027011000036104 pilocarpine nitrate 1% eye drops, unit dose 21254011000036109 pilocarpine +1008681000168105 Cefuroxime (AL) 250 mg film-coated tablet, 50, blister pack 273227 1008671000168107 Cefuroxime (AL) 250 mg film-coated tablet, 50 1008581000168106 Cefuroxime (AL) 250 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 763611000168107 cefuroxime 250 mg tablet, 50 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +176661000036106 Duloxetine (RBX) 30 mg enteric capsule, 28, blister pack 197163 174871000036109 Duloxetine (RBX) 30 mg enteric capsule, 28 173161000036108 Duloxetine (RBX) 30 mg enteric capsule 172701000036103 Duloxetine (RBX) 172701000036103 Duloxetine (RBX) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +69704011000036109 Claramax 5 mg film-coated tablet, 10, blister pack 91115 67503011000036100 Claramax 5 mg film-coated tablet, 10 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72018011000036108 desloratadine 5 mg tablet, 10 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +979191000168109 Lovenox 60 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 80267 979181000168106 Lovenox 60 mg/0.6 mL injection solution, 10 x 0.6 mL syringes 979121000168107 Lovenox 60 mg/0.6 mL injection solution, 0.6 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 27373011000036100 enoxaparin sodium 60 mg/0.6 mL injection, 10 x 0.6 mL syringes 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +926808011000036103 Dostan 500 microgram uncoated tablet, 8, bottle 170398 926204011000036100 Dostan 500 microgram uncoated tablet, 8 925673011000036107 Dostan 500 microgram uncoated tablet 925516011000036102 Dostan 925516011000036102 Dostan 27272011000036101 cabergoline 500 microgram tablet, 8 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +1051931000168102 Oxylieve MR 40 mg modified release tablet, 28, blister pack 153602 1051921000168100 Oxylieve MR 40 mg modified release tablet, 28 1051831000168106 Oxylieve MR 40 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +20144011000036104 Ibilex 500 mg hard capsule, 20, blister pack 73525 13368011000036109 Ibilex 500 mg hard capsule, 20 6653011000036108 Ibilex 500 mg hard capsule 3667011000036100 Ibilex 3667011000036100 Ibilex 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +91281000036105 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 10 x 100 mL bags 165164 89611000036100 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 10 x 100 mL bags 88181000036109 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 100 mL bag 87621000036101 Metronidazole (Claris) 87621000036101 Metronidazole (Claris) 35100011000036108 metronidazole 500 mg/100 mL (0.5%) injection, 10 x 100 mL bags 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +850111000168101 Vzole 200 mg film-coated tablet, 56, bottle 238241 849941000168106 Vzole 200 mg film-coated tablet, 56 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46810011000036104 voriconazole 200 mg tablet, 56 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +908461000168105 Celecoxib (Lup) 200 mg hard capsule, 20, blister pack 196189 908451000168108 Celecoxib (Lup) 200 mg hard capsule, 20 908421000168100 Celecoxib (Lup) 200 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +837251000168107 Ibuprofen and Codeine (Blooms The Chemist) film-coated tablet, 30, blister pack 200418 837241000168105 Ibuprofen and Codeine (Blooms The Chemist) film-coated tablet, 30 837211000168106 Ibuprofen and Codeine (Blooms The Chemist) film-coated tablet 837201000168108 Ibuprofen and Codeine (Blooms The Chemist) 837201000168108 Ibuprofen and Codeine (Blooms The Chemist) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +31251000036107 Omeprazole (Sandoz) 20 mg enteric tablet, 30, bottle 176180 28691000036106 Omeprazole (Sandoz) 20 mg enteric tablet, 30 27061000036107 Omeprazole (Sandoz) 20 mg enteric tablet 72916011000036100 Omeprazole (Sandoz) 72916011000036100 Omeprazole (Sandoz) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +726421000168101 Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL, injection device 99041 726411000168108 Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL 726391000168108 Norditropin Nordiflex 10 mg/1.5 mL injection solution 5421000168101 Norditropin Nordiflex 5421000168101 Norditropin Nordiflex 726401000168105 somatropin 10 mg/1.5 mL injection, 1.5 mL 726381000168105 somatropin 10 mg/1.5 mL injection 21295011000036100 somatropin +123351000036108 Olanzapine (Pharmacy Choice) 5 mg film-coated tablet, 28, blister pack 163408 123091000036101 Olanzapine (Pharmacy Choice) 5 mg film-coated tablet, 28 122841000036109 Olanzapine (Pharmacy Choice) 5 mg film-coated tablet 1741000168102 Olanzapine (Pharmacy Choice) 1741000168102 Olanzapine (Pharmacy Choice) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +923784011000036100 Circadin 2 mg modified release tablet, 21, blister pack 153959 923344011000036107 Circadin 2 mg modified release tablet, 21 923021011000036105 Circadin 2 mg modified release tablet 922948011000036102 Circadin 922948011000036102 Circadin 924145011000036103 melatonin 2 mg modified release tablet, 21 923964011000036106 melatonin 2 mg modified release tablet 923927011000036105 melatonin +60970011000036104 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 96, blister pack 62807 56913011000036108 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet, 96 54118011000036108 Paracetamol (Pharmacist Formula) 500 mg uncoated tablet 53181011000036100 Paracetamol (Pharmacist Formula) 53181011000036100 Paracetamol (Pharmacist Formula) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +815831000168103 Ketorolac (Apo) 30 mg/mL injection solution, 5 x 1 mL ampoules 217075 815821000168101 Ketorolac (Apo) 30 mg/mL injection solution, 5 x 1 mL ampoules 815811000168108 Ketorolac (Apo) 30 mg/mL injection solution, ampoule 815801000168105 Ketorolac (Apo) 815801000168105 Ketorolac (Apo) 46295011000036100 ketorolac trometamol 30 mg/mL injection, 5 x 1 mL ampoules 45060011000036104 ketorolac trometamol 30 mg/mL injection, ampoule 44879011000036107 ketorolac +1077641000168105 Atomoxetine (AN) 10 mg hard capsule, 56, blister pack 234797 1077631000168101 Atomoxetine (AN) 10 mg hard capsule, 56 1077561000168108 Atomoxetine (AN) 10 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 829971000168102 atomoxetine 10 mg capsule, 56 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +768691000168107 Genvoya film-coated tablet, 30, bottle 233398 768681000168109 Genvoya film-coated tablet, 30 768661000168100 Genvoya film-coated tablet 768631000168108 Genvoya 768631000168108 Genvoya 768671000168106 tenofovir alafenamide 10 mg + emtricitabine 200 mg + elvitegravir 150 mg + cobicistat 150 mg tablet, 30 768651000168102 tenofovir alafenamide 10 mg + emtricitabine 200 mg + elvitegravir 150 mg + cobicistat 150 mg tablet 851321000168102 tenofovir alafenamide + emtricitabine + elvitegravir + cobicistat +987711000168102 Miacalcic 200 units nasal spray, 2 mL, pump pack 76768 987701000168100 Miacalcic 200 units nasal spray, 2 mL 987681000168103 Miacalcic 200 units nasal spray, actuation 3873011000036105 Miacalcic 3873011000036105 Miacalcic 987691000168100 calcitonin salmon (salcatonin) 200 units nasal spray, 2 mL 987671000168101 calcitonin salmon (salcatonin) 200 units nasal spray, actuation 21446011000036102 calcitonin salmon (salcatonin) +662191000168107 Temozolomide (AN) 140 mg hard capsule, 5, bottle 192691 662181000168109 Temozolomide (AN) 140 mg hard capsule, 5 662171000168106 Temozolomide (AN) 140 mg hard capsule 662021000168109 Temozolomide (AN) 662021000168109 Temozolomide (AN) 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +46031000036100 Temozolomide (Orion) 100 mg hard capsule, 5, bottle 179869 43301000036102 Temozolomide (Orion) 100 mg hard capsule, 5 40911000036105 Temozolomide (Orion) 100 mg hard capsule 40411000036104 Temozolomide (Orion) 40411000036104 Temozolomide (Orion) 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +925249011000036107 Sumatriptan (GA) 50 mg film-coated tablet, 4, blister pack 160187 924786011000036106 Sumatriptan (GA) 50 mg film-coated tablet, 4 924483011000036107 Sumatriptan (GA) 50 mg film-coated tablet 924385011000036103 Sumatriptan (GA) 924385011000036103 Sumatriptan (GA) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +906291000168103 Amisulpride (AN) 400 mg uncoated tablet, 60, blister pack 234705 906281000168101 Amisulpride (AN) 400 mg uncoated tablet, 60 906251000168108 Amisulpride (AN) 400 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +20611011000036108 Amiodarone Hydrochloride (Chemmart) 200 mg uncoated tablet, 30, blister pack 80770 13793011000036103 Amiodarone Hydrochloride (Chemmart) 200 mg uncoated tablet, 30 7079011000036100 Amiodarone Hydrochloride (Chemmart) 200 mg uncoated tablet 3386011000036108 Amiodarone Hydrochloride (Chemmart) 3386011000036108 Amiodarone Hydrochloride (Chemmart) 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +61165011000036109 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 50 mL, bottle 74682 57108011000036103 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 50 mL 54199011000036104 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 63814011000036106 paracetamol 240 mg/5 mL oral liquid, 50 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +61649011000036100 Advil 200 mg soft capsule, 90, blister pack 97229 57571011000036109 Advil 200 mg soft capsule, 90 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63936011000036100 ibuprofen 200 mg capsule, 90 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +732201000168108 Quetiapine (Apotex) 200 mg film-coated tablet, 60, blister pack 166070 732191000168105 Quetiapine (Apotex) 200 mg film-coated tablet, 60 732181000168107 Quetiapine (Apotex) 200 mg film-coated tablet 732141000168102 Quetiapine (Apotex) 732141000168102 Quetiapine (Apotex) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +74061000036103 Iodine Colourless (Gold Cross) 2.86% solution, 50 mL, bottle 27227 72051000036108 Iodine Colourless (Gold Cross) 2.86% solution, 50 mL 69601000036104 Iodine Colourless (Gold Cross) 2.86% solution 40031000168109 Iodine Colourless (Gold Cross) 40031000168109 Iodine Colourless (Gold Cross) 63310011000036104 iodine 2.86% solution, 50 mL 61914011000036108 iodine 2.86% solution 61782011000036105 iodine +60244011000036107 Fexo (Chemists' Own) 180 mg film-coated tablet, 30, blister pack 134655 56203011000036107 Fexo (Chemists' Own) 180 mg film-coated tablet, 30 53840011000036109 Fexo (Chemists' Own) 180 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +991481000168106 Bisoprolol (Apotex) 3.75 mg tablet, 100, blister pack 182112 991471000168108 Bisoprolol (Apotex) 3.75 mg tablet, 100 991231000168106 Bisoprolol (Apotex) 3.75 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 874891000168105 bisoprolol fumarate 3.75 mg tablet, 100 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +18658011000036108 Skin Therapy Wash (Hamilton) lotion, 500 mL, bottle 14857 12060011000036104 Skin Therapy Wash (Hamilton) lotion, 500 mL 5897011000036100 Skin Therapy Wash (Hamilton) lotion 32203011000036104 Skin Therapy Wash (Hamilton) 32203011000036104 Skin Therapy Wash (Hamilton) 26887011000036102 light liquid paraffin 3.5% + cocoamphodiacetate disodium 3% lotion, 500 mL 22265011000036103 light liquid paraffin 3.5% + cocoamphodiacetate disodium 3% lotion 33625011000036102 light liquid paraffin + cocoamphodiacetate disodium +79025011000036102 Citalopram (Apo) 20 mg film-coated tablet, 28, blister pack 150627 78848011000036109 Citalopram (Apo) 20 mg film-coated tablet, 28 78654011000036105 Citalopram (Apo) 20 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +79025011000036102 Citalopram (Apo) 20 mg film-coated tablet, 28, blister pack 226578 78848011000036109 Citalopram (Apo) 20 mg film-coated tablet, 28 78654011000036105 Citalopram (Apo) 20 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +680881000168104 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) concentrated injection, 50 mL vial 22289 680871000168102 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) concentrated injection, 50 mL vial 680851000168106 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) concentrated injection, 50 mL vial 680821000168103 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) 680821000168103 Disodium Edetate 3 g plus Sodium Ascorbate 5 g (Biological Therapies) 680861000168108 edetate disodium 3 g/50 mL + sodium ascorbate 5 g/50 mL injection, 50 mL vial 680841000168109 edetate disodium 3 g/50 mL + sodium ascorbate 5 g/50 mL injection, vial 680831000168100 edetic acid + ascorbic acid +168441000036100 Dermasoft Antibac Hand Cleanser 0.3% w/w solution, 1 L, bottle 75220 168041000036109 Dermasoft Antibac Hand Cleanser 0.3% w/w solution, 1 L 167571000036107 Dermasoft Antibac Hand Cleanser 0.3% w/w solution 58311000168101 Dermasoft Antibac Hand Cleanser 58311000168101 Dermasoft Antibac Hand Cleanser 168051000036107 triclosan 0.3% w/w solution, 1 L 167581000036109 triclosan 0.3% w/w solution 69817011000036103 triclosan +807831000168105 Irbesartan (Apo) 75 mg film-coated tablet, 30, bottle 169799 807751000168109 Irbesartan (Apo) 75 mg film-coated tablet, 30 807741000168107 Irbesartan (Apo) 75 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1107231000168102 Joint Shield Plus (Health Plus Vitamins) film-coated tablet, 200, jar 198068 1107221000168100 Joint Shield Plus (Health Plus Vitamins) film-coated tablet, 200 1107201000168109 Joint Shield Plus (Health Plus Vitamins) film-coated tablet 1107171000168105 Joint Shield Plus (Health Plus Vitamins) 1107171000168105 Joint Shield Plus (Health Plus Vitamins) 1107211000168107 glucosamine hydrochloride 750 mg + chondroitin sulfate 250 mg + boron 1.5 mg tablet, 200 1107191000168106 glucosamine hydrochloride 750 mg + chondroitin sulfate 250 mg + boron 1.5 mg tablet 1107181000168108 glucosamine + chondroitin sulfate + boron +1004431000168103 Losartan (Apo) 100 mg film-coated tablet, 1000, bottle 201812 1004421000168101 Losartan (Apo) 100 mg film-coated tablet, 1000 1004371000168107 Losartan (Apo) 100 mg film-coated tablet 1003821000168102 Losartan (Apo) 1003821000168102 Losartan (Apo) 1004411000168108 losartan potassium 100 mg tablet, 1000 1004361000168101 losartan potassium 100 mg tablet 44887011000036108 losartan +910631000168100 Cavstat 40 mg film-coated tablet, 100, bottle 234461 910621000168103 Cavstat 40 mg film-coated tablet, 100 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910611000168105 rosuvastatin 40 mg tablet, 100 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +970591000168108 Pregabalin (Apo) 75 mg hard capsule, 60, blister pack 193274 970581000168105 Pregabalin (Apo) 75 mg hard capsule, 60 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +59760011000036104 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 200 mL, bottle 10554 55715011000036104 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 200 mL 53659011000036108 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 53117011000036105 Duro-Tuss Dry Cough Liquid plus Nasal Decongestant 63111011000036103 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 200 mL 61859011000036105 pholcodine 15 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61750011000036102 pholcodine + pseudoephedrine +931657011000036100 Twynsta 40/10 mg multilayer tablet, 56, blister pack 166264 930817011000036105 Twynsta 40/10 mg multilayer tablet, 56 930058011000036102 Twynsta 40/10 mg multilayer tablet 23641000168100 Twynsta 40/10 mg 23641000168100 Twynsta 40/10 mg 932430011000036100 telmisartan 40 mg + amlodipine 10 mg tablet, 56 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +900045011000036108 Levecetam 250 mg film-coated tablet, 60, blister pack 159035 900023011000036109 Levecetam 250 mg film-coated tablet, 60 900007011000036106 Levecetam 250 mg film-coated tablet 900004011000036100 Levecetam 900004011000036100 Levecetam 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +37691000036108 Respaz 1 mg film-coated tablet, 60, blister pack 165539 33971000036106 Respaz 1 mg film-coated tablet, 60 32601000036103 Respaz 1 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +60486011000036106 Nurofen for Children 5 to 12 Years strawberry 100 mg/5 mL oral liquid suspension, 200 mL, bottle 150237 56444011000036101 Nurofen for Children 5 to 12 Years strawberry 100 mg/5 mL oral liquid suspension, 200 mL 53920011000036100 Nurofen for Children 5 to 12 Years strawberry 100 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +830901000168101 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 71007 830891000168100 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 629791000168107 Varilrix (inert substance) diluent, 0.5 mL syringe 73749011000036102 Varilrix 73749011000036102 Varilrix 830881000168103 varicella-zoster live vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +830901000168101 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 71007 830891000168100 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 830871000168101 Varilrix (varicella-zoster live vaccine) powder for injection, vial 73749011000036102 Varilrix 73749011000036102 Varilrix 830881000168103 varicella-zoster live vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 830861000168107 varicella-zoster live vaccine 1995 PFU injection, vial 830851000168105 varicella-zoster live vaccine +82857011000036104 Accu-Chek Performa diagnostic strip, 100, bottle 82760011000036105 Accu-Chek Performa diagnostic strip, 100 48502011000036105 Accu-Chek Performa diagnostic strip 9471000168102 Accu-Chek Performa 9471000168102 Accu-Chek Performa 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +1060601000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 98, blister pack 234477 1060591000168107 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 98 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 912111000168101 rosuvastatin 40 mg tablet, 98 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +77378011000036100 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 20 x 75 mL syringes 70059 76794011000036101 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 20 x 75 mL syringes 76182011000036103 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 75 mL syringe 14501000168105 Optiray-350 14501000168105 Optiray-350 78298011000036105 ioversol 741 mg (iodine 350 mg)/mL injection, 20 x 75 mL syringes 77597011000036107 ioversol 741 mg (iodine 350 mg)/mL injection, 75 mL syringe 77421011000036103 ioversol +1064211000168108 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 40, blister pack 196532 1064201000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 40 1064071000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +715641000168108 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g, tube 76739 715631000168104 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g 715621000168102 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream 42451000168106 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 42451000168106 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +1008541000168101 Salbutamol (AN) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135467 1008531000168105 Salbutamol (AN) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 1008521000168107 Salbutamol (AN) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 1008511000168100 Salbutamol (AN) 1008511000168100 Salbutamol (AN) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +43639011000036102 Dacarbazine (Sandoz) 200 mg powder for injection, 5 vials 117568 41199011000036104 Dacarbazine (Sandoz) 200 mg powder for injection, 5 vials 39839011000036105 Dacarbazine (Sandoz) 200 mg powder for injection, 200 mg vial 39591011000036100 Dacarbazine (Sandoz) 39591011000036100 Dacarbazine (Sandoz) 46160011000036109 dacarbazine 200 mg injection, 5 vials 45064011000036109 dacarbazine 200 mg injection, vial 44890011000036108 dacarbazine +653011000168104 Panafen Plus film-coated tablet, 15, blister pack 106616 653001000168102 Panafen Plus film-coated tablet, 15 53642011000036100 Panafen Plus film-coated tablet 53591011000036109 Panafen Plus 53591011000036109 Panafen Plus 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +653511000168107 Boric Acid, Olive Oil and Zinc Oxide QHF (extemporaneous) ointment, 100 g, screw cap jar 653501000168109 Boric Acid, Olive Oil and Zinc Oxide QHF (extemporaneous) ointment, 100 g 653491000168102 Boric Acid, Olive Oil and Zinc Oxide QHF (extemporaneous) ointment 653211000168105 Boric Acid, Olive Oil and Zinc Oxide QHF (extemporaneous) 653211000168105 Boric Acid, Olive Oil and Zinc Oxide QHF (extemporaneous) 81599011000036104 boric acid 0.25% + olive oil 25% + zinc oxide 7.5% ointment, 100 g 81268011000036103 boric acid 0.25% + olive oil 25% + zinc oxide 7.5% ointment 81215011000036105 boric acid + olive oil + zinc oxide +837331000168108 ADT Booster injection suspension, 0.5 mL syringe 130919 837321000168105 ADT Booster injection suspension, 0.5 mL syringe 837311000168103 ADT Booster injection suspension, 0.5 mL syringe 12781000168102 ADT Booster 12781000168102 ADT Booster 837281000168100 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 837261000168109 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 21826011000036109 diphtheria + tetanus vaccine +1004271000168104 Olmesartan (Apo) 20 mg film-coated tablet, 30, blister pack 221052 1004261000168105 Olmesartan (Apo) 20 mg film-coated tablet, 30 1004251000168108 Olmesartan (Apo) 20 mg film-coated tablet 1004241000168106 Olmesartan (Apo) 1004241000168106 Olmesartan (Apo) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +752171000168105 Oxycodone (Actavis) 10 mg hard capsule, 20, bottle 227829 752161000168104 Oxycodone (Actavis) 10 mg hard capsule, 20 752151000168101 Oxycodone (Actavis) 10 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +901471000168106 Amisulpride (CH) 100 mg uncoated tablet, 90, blister pack 234708 901461000168100 Amisulpride (CH) 100 mg uncoated tablet, 90 901411000168103 Amisulpride (CH) 100 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +926791011000036107 Omnitrope 10 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 162522 926187011000036105 Omnitrope 10 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 925664011000036103 Omnitrope 10 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 927338011000036108 somatropin 10 mg/1.5 mL injection, 5 x 1.5 mL cartridges 23613011000036108 somatropin 10 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +50300011000036100 Comfeel Plus Ulcer (3110) 10 cm x 10 cm dressing, 10, carton 49413011000036106 Comfeel Plus Ulcer (3110) 10 cm x 10 cm dressing, 10 48560011000036105 Comfeel Plus Ulcer (3110) 10 cm x 10 cm dressing 58791000168109 Comfeel Plus Ulcer (3110) 58791000168109 Comfeel Plus Ulcer (3110) 51381011000036102 dressing hydrocolloid superficial wound moderate exudate with alginate 10 cm x 10 cm dressing, 10 50902011000036107 dressing hydrocolloid superficial wound moderate exudate with alginate 10 cm x 10 cm dressing 50758011000036109 dressing hydrocolloid superficial wound moderate exudate with alginate +69053011000036101 Ipecacuanha Syrup (David Craig) 12 mg/mL oral liquid solution, 100 mL, bottle 14281 66855011000036106 Ipecacuanha Syrup (David Craig) 12 mg/mL oral liquid solution, 100 mL 65443011000036102 Ipecacuanha Syrup (David Craig) 12 mg/mL oral liquid solution 64969011000036100 Ipecacuanha Syrup (David Craig) 64969011000036100 Ipecacuanha Syrup (David Craig) 71465011000036109 prepared ipecacuanha 12 mg/mL oral liquid, 100 mL 70021011000036100 prepared ipecacuanha 12 mg/mL oral liquid 69761011000036107 prepared ipecacuanha +55511000036105 Anastrozole (AU) 1 mg film-coated tablet, 500, blister pack 155174 52121000036101 Anastrozole (AU) 1 mg film-coated tablet, 500 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52131000036104 anastrozole 1 mg tablet, 500 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +677261000168103 Sinus and Nasal Decongestant Relief (Pharmacy Action) 60 mg uncoated tablet, 12, blister pack 191938 677251000168100 Sinus and Nasal Decongestant Relief (Pharmacy Action) 60 mg uncoated tablet, 12 677241000168102 Sinus and Nasal Decongestant Relief (Pharmacy Action) 60 mg uncoated tablet 677231000168106 Sinus and Nasal Decongestant Relief (Pharmacy Action) 677231000168106 Sinus and Nasal Decongestant Relief (Pharmacy Action) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +770771000168109 Castor Oil BP (David Craig) 1 mL/mL oral liquid, 200 mL, bottle 14066 770761000168103 Castor Oil BP (David Craig) 1 mL/mL oral liquid, 200 mL 770741000168102 Castor Oil BP (David Craig) 1 mL/mL oral liquid 770691000168104 Castor Oil BP (David Craig) 770691000168104 Castor Oil BP (David Craig) 770751000168100 castor oil 1 mL/mL oral liquid, 200 mL 770731000168106 castor oil 1 mL/mL oral liquid 922050011000036106 castor oil +61382011000036109 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 60 mL, bottle 81817 57307011000036106 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 60 mL 54267011000036105 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 63885011000036107 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 60 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +61202011000036103 Aspirin Extra Strength (Bayer) 500 mg tablet, 16, blister pack 75502 57138011000036109 Aspirin Extra Strength (Bayer) 500 mg tablet, 16 54214011000036103 Aspirin Extra Strength (Bayer) 500 mg tablet 42541000168105 Aspirin Extra Strength (Bayer) 42541000168105 Aspirin Extra Strength (Bayer) 63741011000036100 aspirin 500 mg tablet, 16 62068011000036108 aspirin 500 mg tablet 21719011000036107 aspirin +973881000168100 Pregabalin (Teva) 150 mg hard capsule, 60, blister pack 229593 973871000168103 Pregabalin (Teva) 150 mg hard capsule, 60 973751000168102 Pregabalin (Teva) 150 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1025361000168105 Biocol Medicated Throat lozenge, 24, blister pack 34750 1025351000168108 Biocol Medicated Throat lozenge, 24 1025331000168102 Biocol Medicated Throat lozenge 1025311000168107 Biocol Medicated Throat 1025311000168107 Biocol Medicated Throat 1025341000168106 benzyl alcohol 12 mg + cetylpyridinium chloride 2 mg lozenge, 24 1025321000168100 benzyl alcohol 12 mg + cetylpyridinium chloride 2 mg lozenge 69797011000036101 benzyl alcohol + cetylpyridinium +728661000168107 Adrenaline Min-I-Jet (UCB Pharma) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 213983 728651000168105 Adrenaline Min-I-Jet (UCB Pharma) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 728641000168108 Adrenaline Min-I-Jet (UCB Pharma) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 728601000168106 Adrenaline Min-I-Jet (UCB Pharma) 728601000168106 Adrenaline Min-I-Jet (UCB Pharma) 79836011000036108 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, 10 mL syringe 79755011000036104 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, syringe 21823011000036103 adrenaline (epinephrine) +933246731000036102 Lisinopril (PS) 20 mg uncoated tablet, 100, blister pack 152714 933243371000036106 Lisinopril (PS) 20 mg uncoated tablet, 100 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 78125011000036109 lisinopril 20 mg tablet, 100 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +50545011000036100 Revlimid 15 mg hard capsule, 21, blister pack 132515 49582011000036109 Revlimid 15 mg hard capsule, 21 48781011000036104 Revlimid 15 mg hard capsule 48335011000036106 Revlimid 48335011000036106 Revlimid 51489011000036107 lenalidomide 15 mg capsule, 21 50985011000036100 lenalidomide 15 mg capsule 50719011000036107 lenalidomide +1049921000168104 Tramal 50 mg hard capsule, 6, blister pack 64011 1049911000168106 Tramal 50 mg hard capsule, 6 6366011000036102 Tramal 50 mg hard capsule 24551000168102 Tramal 24551000168102 Tramal 1049901000168108 tramadol hydrochloride 50 mg capsule, 6 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +966671000168101 Diavance 250/1.25 film-coated tablet, 90, blister pack 120263 966661000168107 Diavance 250/1.25 film-coated tablet, 90 966561000168106 Diavance 250/1.25 film-coated tablet 966551000168109 Diavance 250/1.25 966551000168109 Diavance 250/1.25 28195011000036108 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet, 90 23507011000036105 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet 21813011000036107 metformin + glibenclamide +933230881000036106 Famciclovir (Apo) 500 mg film-coated tablet, 28, blister pack 172443 933225031000036109 Famciclovir (Apo) 500 mg film-coated tablet, 28 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933225041000036104 famciclovir 500 mg tablet, 28 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1087691000168108 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 50, blister pack 283196 1087681000168105 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 50 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 986171000168106 ibuprofen 400 mg tablet, 50 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1050241000168109 Bupredermal 30 microgram/hour patch, 4, sachet 234746 1050231000168100 Bupredermal 30 microgram/hour patch, 4 1050201000168107 Bupredermal 30 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1048531000168102 buprenorphine 30 microgram/hour patch, 4 772901000168100 buprenorphine 30 microgram/hour patch 21232011000036101 buprenorphine +69324011000036104 Copper, Chromium and Manganese (Phebra) concentrated injection, 10 x 5 mL vials 23097 67124011000036100 Copper, Chromium and Manganese (Phebra) concentrated injection, 10 x 5 mL vials 65430011000036106 Copper, Chromium and Manganese (Phebra) concentrated injection, 5 mL vial 65135011000036103 Copper, Chromium and Manganese (Phebra) 65135011000036103 Copper, Chromium and Manganese (Phebra) 71689011000036106 cupric chloride dihydrate 2.685 mg (copper 1 mg)/5 mL + chromic chloride hexahydrate 109.5 microgram (chromium 20 microgram)/5 mL + manganese chloride tetrahydrate 3.625 mg (manganese 1 mg)/5 mL injection, 10 x 5 mL vials 70128011000036101 cupric chloride dihydrate 2.685 mg (copper 1 mg)/5 mL + chromic chloride hexahydrate 109.5 microgram (chromium 20 microgram)/5 mL + manganese chloride tetrahydrate 3.625 mg (manganese 1 mg)/5 mL injection, vial 69848011000036105 cupric chloride dihydrate + chromic chloride hexahydrate + manganese chloride tetrahydrate +982481000168104 Zomig Rapimelt 2.5 mg orally disintegrating tablet, 6, blister pack 70175 982471000168102 Zomig Rapimelt 2.5 mg orally disintegrating tablet, 6 982421000168103 Zomig Rapimelt 2.5 mg orally disintegrating tablet 982401000168107 Zomig Rapimelt 982401000168107 Zomig Rapimelt 982461000168108 zolmitriptan 2.5 mg orally disintegrating tablet, 6 982411000168105 zolmitriptan 2.5 mg orally disintegrating tablet 21516011000036102 zolmitriptan +74832011000036108 Sodium Chloride (Baxter) 3% (30 g/L) injection solution, 12 x 1 L bags 19500 74319011000036108 Sodium Chloride (Baxter) 3% (30 g/L) injection solution, 12 x 1 L bags 4459011000036103 Sodium Chloride (Baxter) 3% (30 g/L) injection solution, 1 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 75429011000036103 sodium chloride 3% (30 g/L) injection, 12 x 1 L bags 22350011000036109 sodium chloride 3% (30 g/L) injection, bag 21308011000036103 sodium chloride +18496011000036101 Zolacos CP (1 x 3.6 mg implant, 28 x 50 mg tablets), 1 pack, composite pack 125685 11813011000036108 Zolacos CP (1 x 3.6 mg implant, 28 x 50 mg tablets), 1 pack 6037011000036108 Cosudex 50 mg film-coated tablet, 1 tablet 19541000168108 Zolacos CP 4172011000036106 Cosudex 26781011000036107 goserelin 3.6 mg implant [1] (&) bicalutamide 50 mg tablet [28], 1 pack 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +18496011000036101 Zolacos CP (1 x 3.6 mg implant, 28 x 50 mg tablets), 1 pack, composite pack 125685 11813011000036108 Zolacos CP (1 x 3.6 mg implant, 28 x 50 mg tablets), 1 pack 5892011000036102 Zoladex 3.6 mg implant 19541000168108 Zolacos CP 3435011000036101 Zoladex 26781011000036107 goserelin 3.6 mg implant [1] (&) bicalutamide 50 mg tablet [28], 1 pack 22168011000036107 goserelin 3.6 mg implant 21305011000036109 goserelin +921721000168105 Cefkor 250 mg/5 mL powder for oral liquid, 75 mL, bottle 75561 921711000168103 Cefkor 250 mg/5 mL powder for oral liquid, 75 mL 921701000168101 Cefkor 250 mg/5 mL powder for oral liquid, 5 mL 921661000168108 Cefkor 921661000168108 Cefkor 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +37471011000036105 Dindevan 10 mg uncoated tablet, 100, bottle 12502 36739011000036101 Dindevan 10 mg uncoated tablet, 100 36084011000036106 Dindevan 10 mg uncoated tablet 35963011000036102 Dindevan 35963011000036102 Dindevan 38647011000036108 phenindione 10 mg tablet, 100 37902011000036109 phenindione 10 mg tablet 37790011000036104 phenindione +649451000168107 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 98, blister pack 202109 649441000168105 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 98 649331000168107 Pritor/Amlodipine 80 mg/10 mg multilayer tablet 649321000168109 Pritor/Amlodipine 80 mg/10 mg 649321000168109 Pritor/Amlodipine 80 mg/10 mg 932444011000036106 telmisartan 80 mg + amlodipine 10 mg tablet, 98 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +1096011000168105 Aspirin EC (Amcal) 100 mg enteric tablet, 168, blister pack 236225 1096001000168107 Aspirin EC (Amcal) 100 mg enteric tablet, 168 1095971000168105 Aspirin EC (Amcal) 100 mg enteric tablet 1095961000168104 Aspirin EC (Amcal) 1095961000168104 Aspirin EC (Amcal) 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +18967011000036104 Hysone 20 mg uncoated tablet, 60, bottle 27926 12275011000036108 Hysone 20 mg uncoated tablet, 60 5109011000036100 Hysone 20 mg uncoated tablet 3717011000036109 Hysone 3717011000036109 Hysone 27036011000036109 hydrocortisone 20 mg tablet, 60 22409011000036101 hydrocortisone 20 mg tablet 21681011000036103 hydrocortisone +18368011000036108 Fluconazole (DBL) 200 mg hard capsule, 28, blister pack 119546 11621011000036108 Fluconazole (DBL) 200 mg hard capsule, 28 5133011000036107 Fluconazole (DBL) 200 mg hard capsule 4135011000036100 Fluconazole (DBL) 4135011000036100 Fluconazole (DBL) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +832821000168101 Cosopt eye drops solution, 60 x 0.2 mL unit doses, ampoule 165915 832811000168108 Cosopt eye drops solution, 60 x 0.2 mL unit doses 832761000168102 Cosopt eye drops solution, 0.2 mL unit dose 38911000168101 Cosopt 38911000168101 Cosopt 832801000168105 dorzolamide 2% + timolol 0.5% eye drops, 60 x 0.2 mL unit doses 832751000168104 dorzolamide 2% + timolol 0.5% eye drops, unit dose 21483011000036104 dorzolamide + timolol +69615011000036103 Mylanta 2go Rolltab Peppermint chewable tablet, 48, wrapping 75879 67414011000036107 Mylanta 2go Rolltab Peppermint chewable tablet, 48 65653011000036101 Mylanta 2go Rolltab Peppermint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71950011000036105 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 48 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +753611000168104 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet, 1000, bottle 218247 753601000168102 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet, 1000 753561000168102 Olmesartan/Amlodipine 40/5 (Apo) film-coated tablet 753551000168104 Olmesartan/Amlodipine 40/5 (Apo) 753551000168104 Olmesartan/Amlodipine 40/5 (Apo) 753591000168109 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 1000 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +837101000168104 Maxigesic film-coated tablet, 24, blister pack 218785 837091000168109 Maxigesic film-coated tablet, 24 173031000036101 Maxigesic film-coated tablet 172741000036100 Maxigesic 172741000036100 Maxigesic 837081000168106 paracetamol 500 mg + ibuprofen 150 mg tablet, 24 173041000036106 paracetamol 500 mg + ibuprofen 150 mg tablet 177241000036105 paracetamol + ibuprofen +20560011000036109 Clozaril 25 mg uncoated tablet, 100, bottle 79932 13751011000036108 Clozaril 25 mg uncoated tablet, 100 7036011000036106 Clozaril 25 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 28135011000036104 clozapine 25 mg tablet, 100 23444011000036102 clozapine 25 mg tablet 21222011000036104 clozapine +77325011000036107 Water for Injections (Fresenius Kabi) injection solution, 1 L bag 47414 76741011000036105 Water for Injections (Fresenius Kabi) injection solution, 1 L bag 76156011000036109 Water for Injections (Fresenius Kabi) injection solution, 1 L bag 75991011000036108 Water for Injections (Fresenius Kabi) 75991011000036108 Water for Injections (Fresenius Kabi) 78253011000036106 water for injections injection, 1 L bag 77576011000036101 water for injections injection, 1 L bag 77431011000036101 water for injections +1012451000168100 Perindopril (WT) 8 mg uncoated tablet, 30, blister pack 121636 1012441000168102 Perindopril (WT) 8 mg uncoated tablet, 30 1012431000168106 Perindopril (WT) 8 mg uncoated tablet 1012391000168101 Perindopril (WT) 1012391000168101 Perindopril (WT) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +1058551000168105 Ondansetron (Auro) 8 mg film-coated tablet, 90, blister pack 173182 1058541000168108 Ondansetron (Auro) 8 mg film-coated tablet, 90 1058451000168109 Ondansetron (Auro) 8 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 1058531000168104 ondansetron 8 mg tablet, 90 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +999861000168100 Adefovir (Apotex) 10 mg tablet, 30, bottle 212044 999851000168102 Adefovir (Apotex) 10 mg tablet, 30 999841000168104 Adefovir (Apotex) 10 mg tablet 999831000168108 Adefovir (Apotex) 999831000168108 Adefovir (Apotex) 28204011000036109 adefovir dipivoxil 10 mg tablet, 30 23516011000036105 adefovir dipivoxil 10 mg tablet 32653011000036109 adefovir +20681011000036105 Ipratropium Bromide (Chemmart) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 82355 13860011000036105 Ipratropium Bromide (Chemmart) 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 7147011000036103 Ipratropium Bromide (Chemmart) 500 microgram/mL inhalation solution, ampoule 3222011000036105 Ipratropium Bromide (Chemmart) 3222011000036105 Ipratropium Bromide (Chemmart) 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +649491000168102 Cefepime (Alphapharm) 2 g powder for injection, 1 vial 161030 649481000168100 Cefepime (Alphapharm) 2 g powder for injection, 1 vial 649471000168103 Cefepime (Alphapharm) 2 g powder for injection, 2 g vial 649461000168109 Cefepime (Alphapharm) 649461000168109 Cefepime (Alphapharm) 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +55581000036102 Synastrozole 1 mg film-coated tablet, 100, blister pack 155175 52311000036105 Synastrozole 1 mg film-coated tablet, 100 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 51991000036107 anastrozole 1 mg tablet, 100 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +933229491000036100 Dencorub Regular Strength Heat cream, 10 g, tube 10133 933223431000036104 Dencorub Regular Strength Heat cream, 10 g 933219701000036108 Dencorub Regular Strength Heat cream 24821000168108 Dencorub Regular Strength Heat 24821000168108 Dencorub Regular Strength Heat 71199011000036109 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream, 10 g 69899011000036106 methyl salicylate 20% + camphor 1% + menthol 0.75% + eucalyptus oil 0.5% cream 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +1059961000168106 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 28, blister pack 234479 1059951000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 28 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910881000168100 rosuvastatin 10 mg tablet, 28 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +931501011000036105 Bactol Alcohol 70% gel, 500 mL, pump pack 155397 930662011000036101 Bactol Alcohol 70% gel, 500 mL 929994011000036105 Bactol Alcohol 70% gel 19571000168101 Bactol Alcohol 19571000168101 Bactol Alcohol 925448011000036103 ethanol 70% gel, 500 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +1012791000168102 Valganciclovir (Apo) 450 mg film-coated tablet, 60, bottle 184311 1012781000168100 Valganciclovir (Apo) 450 mg film-coated tablet, 60 1012771000168103 Valganciclovir (Apo) 450 mg film-coated tablet 1012761000168109 Valganciclovir (Apo) 1012761000168109 Valganciclovir (Apo) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +60234011000036106 Cold and Flu Day and Night (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack 133721 56193011000036107 Cold and Flu Day and Night (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24 53832011000036109 Cold and Flu Day and Night (Day) (Pharmacy Choice) uncoated tablet 3071000168108 Cold and Flu Day and Night (Pharmacy Choice) 3191000168105 Cold and Flu Day and Night (Day) (Pharmacy Choice) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +60234011000036106 Cold and Flu Day and Night (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack 133721 56193011000036107 Cold and Flu Day and Night (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24 53833011000036102 Cold and Flu Day and Night (Night) (Pharmacy Choice) uncoated tablet 3071000168108 Cold and Flu Day and Night (Pharmacy Choice) 3311000168103 Cold and Flu Day and Night (Night) (Pharmacy Choice) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +59815011000036107 Codral Original Chesty Cough Liquicap soft capsule, 24, blister pack 114795 55777011000036104 Codral Original Chesty Cough Liquicap soft capsule, 24 53632011000036104 Codral Original Chesty Cough Liquicap soft capsule 12901000168108 Codral Original Chesty Cough Liquicap 12901000168108 Codral Original Chesty Cough Liquicap 63135011000036109 guaifenesin 100 mg + pseudoephedrine hydrochloride 30 mg capsule, 24 61868011000036108 guaifenesin 100 mg + pseudoephedrine hydrochloride 30 mg capsule 61743011000036107 guaifenesin + pseudoephedrine +921966011000036106 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 48220 921524011000036103 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 921059011000036104 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 20 mL vial 21931000168100 Omnipaque-300 21931000168100 Omnipaque-300 922646011000036102 iohexol 647 mg (iodine 300 mg)/mL injection, 10 x 20 mL vials 922131011000036107 iohexol 647 mg (iodine 300 mg)/mL injection, 20 mL vial 77459011000036103 iohexol +966351000168102 Lovir 250 mg powder for injection, 5 vials 97258 966341000168104 Lovir 250 mg powder for injection, 5 vials 966331000168108 Lovir 250 mg powder for injection, 250 mg vial 4208011000036103 Lovir 4208011000036103 Lovir 46732011000036105 aciclovir 250 mg injection, 5 vials 45288011000036107 aciclovir 250 mg injection, vial 21239011000036106 aciclovir +733021000168100 Inadine (P01512) 9.5 cm x 9.5 cm medicated dressing, 25, carton 175158 733011000168107 Inadine (P01512) 9.5 cm x 9.5 cm medicated dressing, 25 732991000168108 Inadine (P01512) 9.5 cm x 9.5 cm medicated dressing 732971000168107 Inadine (P01512) 732971000168107 Inadine (P01512) 733001000168109 povidone-iodine 9.5 cm x 9.5 cm dressing, 25 732981000168105 povidone-iodine 9.5 cm x 9.5 cm dressing 21660011000036108 povidone-iodine +978231000168109 Rexulti 500 microgram film-coated tablet, 30, blister pack 273222 978221000168106 Rexulti 500 microgram film-coated tablet, 30 978201000168102 Rexulti 500 microgram film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978211000168104 brexpiprazole 500 microgram tablet, 30 978191000168100 brexpiprazole 500 microgram tablet 978131000168104 brexpiprazole +920631000168109 Cilopam 20 mg film-coated tablet, 14, blister pack 158864 920621000168106 Cilopam 20 mg film-coated tablet, 14 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +43846011000036104 Mirtazapine (Chemmart) 45 mg film-coated tablet, 30, blister pack 127698 41342011000036108 Mirtazapine (Chemmart) 45 mg film-coated tablet, 30 39834011000036109 Mirtazapine (Chemmart) 45 mg film-coated tablet 32201011000036100 Mirtazapine (Chemmart) 32201011000036100 Mirtazapine (Chemmart) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +721491000168107 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL, bottle 20231 721481000168109 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL 721451000168102 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +721491000168107 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL, bottle 178300 721481000168109 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL 721451000168102 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +854041000168108 Quetiapine (Alkem) 25 mg film-coated tablet, 60, blister pack 204818 854031000168104 Quetiapine (Alkem) 25 mg film-coated tablet, 60 854001000168106 Quetiapine (Alkem) 25 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +763301000168104 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 2 mL vial 234431 763291000168100 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 2 mL vial 763281000168103 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 2 mL vial 763271000168101 Tobramycin (Alphapharm) 763271000168101 Tobramycin (Alphapharm) 762971000168103 tobramycin 80 mg/2 mL injection, 2 mL vial 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +81027011000036100 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 60, bottle 104398 80477011000036103 Carvedilol (Sandoz) 12.5 mg uncoated tablet, 60 80150011000036100 Carvedilol (Sandoz) 12.5 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +39391011000036103 Tryzan 5 mg uncoated tablet, 21, blister pack 129918 39275011000036102 Tryzan 5 mg uncoated tablet, 21 39205011000036105 Tryzan 5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 39474011000036102 ramipril 5 mg tablet, 21 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +900101000168102 Fluarix Tetra 2017 injection suspension, 10 x 0.5 mL syringes 242512 900091000168107 Fluarix Tetra 2017 injection suspension, 10 x 0.5 mL syringes 899951000168104 Fluarix Tetra 2017 injection suspension, 0.5 mL syringe 899941000168101 Fluarix Tetra 2017 899941000168101 Fluarix Tetra 2017 899451000168109 influenza quadrivalent adult vaccine 2017 injection, 10 x 0.5 mL syringes 899401000168105 influenza quadrivalent adult vaccine 2017 injection, 0.5 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +931455011000036107 Ranitidine (GA) 300 mg film-coated tablet, 10, blister pack 148520 930634011000036101 Ranitidine (GA) 300 mg film-coated tablet, 10 929982011000036102 Ranitidine (GA) 300 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +929064011000036103 Valaciclovir (GA) 500 mg film-coated tablet, 8, blister pack 162728 928425011000036101 Valaciclovir (GA) 500 mg film-coated tablet, 8 927971011000036109 Valaciclovir (GA) 500 mg film-coated tablet 927808011000036104 Valaciclovir (GA) 927808011000036104 Valaciclovir (GA) 927317011000036100 valaciclovir 500 mg tablet, 8 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1044531000168108 Amoxiclav 500/125 (Amneal) film-coated tablet, 2, blister pack 255079 1044521000168105 Amoxiclav 500/125 (Amneal) film-coated tablet, 2 1044511000168103 Amoxiclav 500/125 (Amneal) film-coated tablet 1044501000168101 Amoxiclav 500/125 (Amneal) 1044501000168101 Amoxiclav 500/125 (Amneal) 51544011000036109 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 2 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +55421000036104 Rebetol 200 mg hard capsule, 84, blister pack 155098 51941000036101 Rebetol 200 mg hard capsule, 84 7298011000036106 Rebetol 200 mg hard capsule 3301011000036102 Rebetol 3301011000036102 Rebetol 51951000036103 ribavirin 200 mg capsule, 84 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +1051361000168106 Oxylieve MR 20 mg modified release tablet, 60, blister pack 153599 1051351000168109 Oxylieve MR 20 mg modified release tablet, 60 1051301000168105 Oxylieve MR 20 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +60911011000036100 Emla 5% patch, 2, carton 60820 56865011000036104 Emla 5% patch, 2 54106011000036106 Emla 5% patch 9941000168103 Emla 5% 9941000168103 Emla 5% 63617011000036105 lidocaine (lignocaine) 25 mg/g + prilocaine 2.5% patch, 2 62029011000036109 lidocaine (lignocaine) 25 mg/g + prilocaine 2.5% patch 61738011000036101 lidocaine (lignocaine) + prilocaine +87194011000036106 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 77039 87133011000036102 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 87079011000036108 Yasmin (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 87053011000036107 Yasmin 87053011000036107 Yasmin 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +87194011000036106 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 77039 87133011000036102 Yasmin (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 87080011000036108 Yasmin (inert substance) film-coated tablet 87053011000036107 Yasmin 87053011000036107 Yasmin 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +965301000168106 Clarithromycin (GenRx) 500 mg film-coated tablet, 100, blister pack 134857 965291000168105 Clarithromycin (GenRx) 500 mg film-coated tablet, 100 965181000168100 Clarithromycin (GenRx) 500 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +900050011000036102 Indapamide Hemihydrate (Sandoz) 2.5 mg film-coated tablet, 90, blister pack 169291 900028011000036104 Indapamide Hemihydrate (Sandoz) 2.5 mg film-coated tablet, 90 900011011000036101 Indapamide Hemihydrate (Sandoz) 2.5 mg film-coated tablet 900002011000036109 Indapamide Hemihydrate (Sandoz) 900002011000036109 Indapamide Hemihydrate (Sandoz) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +1093121000168105 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 90, blister pack 282022 1093111000168103 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 90 1093041000168103 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 63936011000036100 ibuprofen 200 mg capsule, 90 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +983611000168101 Cephalexin (Apotex) 250 mg capsule, 20, blister pack 159290 983601000168104 Cephalexin (Apotex) 250 mg capsule, 20 983591000168106 Cephalexin (Apotex) 250 mg capsule 983531000168107 Cephalexin (Apotex) 983531000168107 Cephalexin (Apotex) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +999821000168105 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 195217 999811000168103 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 999701000168108 Drospirenone/EE 3/30 (Apo) (inert substance) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999821000168105 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 195217 999811000168103 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 999691000168108 Drospirenone/EE 3/30 (Apo) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +19902011000036103 Neurontin 400 mg hard capsule, 100, bottle 66006 13148011000036106 Neurontin 400 mg hard capsule, 100 6431011000036105 Neurontin 400 mg hard capsule 4344011000036106 Neurontin 4344011000036106 Neurontin 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +887281000168109 Praxbind 2.5 g/50 mL injection solution, 2 x 50 mL vials 237761 887271000168106 Praxbind 2.5 g/50 mL injection solution, 2 x 50 mL vials 887251000168102 Praxbind 2.5 g/50 mL injection solution, 50 mL vial 887221000168105 Praxbind 887221000168105 Praxbind 887261000168100 idarucizumab 2.5 g/50 mL injection, 2 x 50 mL vials 887241000168104 idarucizumab 2.5 g/50 mL injection, vial 887231000168108 idarucizumab +44291011000036106 Primacin 7.5 mg uncoated tablet, 30, tube 63856 41762011000036104 Primacin 7.5 mg uncoated tablet, 30 40185011000036109 Primacin 7.5 mg uncoated tablet 39775011000036108 Primacin 39775011000036108 Primacin 46569011000036105 primaquine 7.5 mg tablet, 30 45221011000036107 primaquine 7.5 mg tablet 44963011000036109 primaquine +865941000168102 Amitriptyline (PN) 50 mg tablet, 50, blister pack 232150 865861000168105 Amitriptyline (PN) 50 mg tablet, 50 865851000168108 Amitriptyline (PN) 50 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +736291000168101 Androforte 2% (20 mg/mL) cream, 50 mL, tube 166238 736281000168104 Androforte 2% (20 mg/mL) cream, 50 mL 736261000168108 Androforte 2% (20 mg/mL) cream 692761000168104 Androforte 692761000168104 Androforte 736271000168102 testosterone 2% (20 mg/mL) cream, 50 mL 736251000168106 testosterone 2% (20 mg/mL) cream 21290011000036109 testosterone +1070471000168100 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157599 1070461000168106 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24 1070441000168107 Day plus Night Cold and Flu Relief PE (Day) (Soul Pattinson) uncoated tablet 1070411000168108 Day plus Night Cold and Flu Relief PE (Soul Pattinson) 1070421000168101 Day plus Night Cold and Flu Relief PE (Day) (Soul Pattinson) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1070471000168100 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157599 1070461000168106 Day plus Night Cold and Flu Relief PE (Soul Pattinson) (16 x Day tablets, 8 x Night tablets), 24 1070451000168109 Day plus Night Cold and Flu Relief PE (Night) (Soul Pattinson) uncoated tablet 1070411000168108 Day plus Night Cold and Flu Relief PE (Soul Pattinson) 1070431000168103 Day plus Night Cold and Flu Relief PE (Night) (Soul Pattinson) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1000871000168108 Pregabalin (Apo) 100 mg hard capsule, 60, bottle 193248 1000861000168102 Pregabalin (Apo) 100 mg hard capsule, 60 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +922012011000036101 Prohance 4.19 g/15 mL injection solution, 15 mL syringe 72675 921570011000036109 Prohance 4.19 g/15 mL injection solution, 15 mL syringe 921093011000036108 Prohance 4.19 g/15 mL injection solution, 15 mL syringe 20611000168106 Prohance 20611000168106 Prohance 922684011000036102 gadoteridol 4.19 g/15 mL injection, 15 mL syringe 922157011000036103 gadoteridol 4.19 g/15 mL injection, syringe 922035011000036101 gadoteridol +908711000168102 Celecoxib (GPPL) 200 mg hard capsule, 30, blister pack 206827 908701000168100 Celecoxib (GPPL) 200 mg hard capsule, 30 908691000168100 Celecoxib (GPPL) 200 mg hard capsule 908681000168103 Celecoxib (GPPL) 908681000168103 Celecoxib (GPPL) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +69556011000036109 Clearasil Pimple Treatment Vanishing cream, 20 g, tube 60674 67356011000036100 Clearasil Pimple Treatment Vanishing cream, 20 g 65628011000036107 Clearasil Pimple Treatment Vanishing cream 24691000168106 Clearasil Pimple Treatment Vanishing 24691000168106 Clearasil Pimple Treatment Vanishing 71902011000036103 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream, 20 g 70241011000036105 bentonite 10% + precipitated sulfur 8% + triclosan 0.1% cream 69816011000036101 bentonite + precipitated sulfur + triclosan +763141000168100 Tobramycin (Agila) 80 mg/2 mL injection solution, 2 mL vial 234430 763131000168109 Tobramycin (Agila) 80 mg/2 mL injection solution, 2 mL vial 763121000168106 Tobramycin (Agila) 80 mg/2 mL injection solution, 2 mL vial 763111000168104 Tobramycin (Agila) 763111000168104 Tobramycin (Agila) 762971000168103 tobramycin 80 mg/2 mL injection, 2 mL vial 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +1038341000168104 Vimpat 100 mg film-coated tablet, 168, blister pack 196450 1038331000168108 Vimpat 100 mg film-coated tablet, 168 83628011000036102 Vimpat 100 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 1038321000168105 lacosamide 100 mg tablet, 168 84428011000036101 lacosamide 100 mg tablet 84408011000036109 lacosamide +130341000036101 HCU Cooler 20 oral liquid solution, 30 x 174 mL sachets 127271000036104 HCU Cooler 20 oral liquid solution, 30 x 174 mL sachets 479451000168105 HCU Cooler 20 oral liquid solution, 174 mL sachet 56541000168106 HCU Cooler 20 56541000168106 HCU Cooler 20 127281000036102 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 174 mL sachets 479211000168108 amino acid formula with vitamins and minerals without methionine oral liquid, 174 mL sachet 50753011000036104 amino acid formula with vitamins and minerals without methionine +926719011000036105 Perindobell 2 mg uncoated tablet, 30, blister pack 125451 926130011000036101 Perindobell 2 mg uncoated tablet, 30 925588011000036100 Perindobell 2 mg uncoated tablet 925554011000036101 Perindobell 925554011000036101 Perindobell 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +782391000168101 Voriconazole (Alphapharm) 200 mg film-coated tablet, 100, blister pack 206993 782381000168104 Voriconazole (Alphapharm) 200 mg film-coated tablet, 100 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46803011000036105 voriconazole 200 mg tablet, 100 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +1104671000168108 Midazolam (Alphapharm) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 160206 1104661000168102 Midazolam (Alphapharm) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 107131000036100 Midazolam (Alphapharm) 5 mg/5 mL injection solution, 5 mL ampoule 106461000036101 Midazolam (Alphapharm) 106461000036101 Midazolam (Alphapharm) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +170771000036106 Aquacel Ag (403708) 10 cm x 10 cm dressing, 10, carton 156976 169841000036105 Aquacel Ag (403708) 10 cm x 10 cm dressing, 10 169061000036103 Aquacel Ag (403708) 10 cm x 10 cm dressing 35571000168105 Aquacel Ag (403708) 35571000168105 Aquacel Ag (403708) 169851000036108 dressing hydrofibre with silver 10 cm x 10 cm dressing, 10 169071000036106 dressing hydrofibre with silver 10 cm x 10 cm dressing 171041000036105 dressing hydrofibre with silver +928897011000036108 Valnir 500 mg film-coated tablet, 30, blister pack 147607 928259011000036102 Valnir 500 mg film-coated tablet, 30 927909011000036101 Valnir 500 mg film-coated tablet 927774011000036103 Valnir 927774011000036103 Valnir 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +38261000036104 Escitalup 5 mg film-coated tablet, 30, bottle 165839 34591000036103 Escitalup 5 mg film-coated tablet, 30 32881000036105 Escitalup 5 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +1067221000168106 Pain Captabs (Chemists' Own) uncoated tablet, 40, blister pack 93812 1067211000168104 Pain Captabs (Chemists' Own) uncoated tablet, 40 1067181000168103 Pain Captabs (Chemists' Own) uncoated tablet 1067171000168101 Pain Captabs (Chemists' Own) 1067171000168101 Pain Captabs (Chemists' Own) 764231000168101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 40 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +61493011000036109 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 100 mL, bottle 92446 57418011000036104 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 100 mL 54298011000036109 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 63882011000036104 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 100 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +1051201000168103 Fentanyl (GH) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 201871 1051191000168101 Fentanyl (GH) 500 microgram/10 mL injection solution, 10 x 10 mL ampoules 701601000168107 Fentanyl (GH) 500 microgram/10 mL injection solution, 10 mL ampoule 701591000168100 Fentanyl (GH) 701591000168100 Fentanyl (GH) 35185011000036100 fentanyl 500 microgram/10 mL injection, 10 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +848741000168103 Rivastigmelon-10 9.5 mg/24 hours patch, 7, sachet 233735 848731000168107 Rivastigmelon-10 9.5 mg/24 hours patch, 7 848721000168109 Rivastigmelon-10 9.5 mg/24 hours patch 848711000168102 Rivastigmelon-10 848711000168102 Rivastigmelon-10 728051000168104 rivastigmine 9.5 mg/24 hours patch, 7 37923011000036109 rivastigmine 9.5 mg/24 hours patch 21413011000036101 rivastigmine +733161000168109 Algivon Plus (CR4225) 10 cm x 10 cm medicated dressing, 5, carton 203994 733151000168107 Algivon Plus (CR4225) 10 cm x 10 cm medicated dressing, 5 733131000168101 Algivon Plus (CR4225) 10 cm x 10 cm medicated dressing 733111000168106 Algivon Plus (CR4225) 733111000168106 Algivon Plus (CR4225) 733141000168105 dressing alginate with manuka honey 10 cm x 10 cm dressing, 5 733121000168104 dressing alginate with manuka honey 10 cm x 10 cm dressing 733051000168108 dressing alginate with manuka honey +878801000168106 Carvedilol (Blooms The Chemist) 25 mg film-coated tablet, 60, blister pack 210751 878791000168105 Carvedilol (Blooms The Chemist) 25 mg film-coated tablet, 60 878781000168107 Carvedilol (Blooms The Chemist) 25 mg film-coated tablet 878221000168103 Carvedilol (Blooms The Chemist) 878221000168103 Carvedilol (Blooms The Chemist) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +819841000168109 Nausicalm 50 mg uncoated tablet, 50, blister pack 231174 819831000168100 Nausicalm 50 mg uncoated tablet, 50 819781000168108 Nausicalm 50 mg uncoated tablet 819761000168104 Nausicalm 819761000168104 Nausicalm 819821000168103 cyclizine hydrochloride 50 mg tablet, 50 819771000168105 cyclizine hydrochloride 50 mg tablet 675051000168102 cyclizine +770611000168108 Actair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack, composite pack 233470 770601000168105 Actair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack 770381000168108 Actair 300 IR sublingual tablet 769041000168102 Actair Initiation Treatment 768771000168102 Actair 300 IR 770591000168103 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet [3] (&) American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet [28], 1 pack 770371000168105 American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +770611000168108 Actair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack, composite pack 233470 770601000168105 Actair Initiation Treatment (3 x 100 IR tablets, 28 x 300 IR tablets), 1 pack 770331000168107 Actair 100 IR sublingual tablet 769041000168102 Actair Initiation Treatment 768701000168107 Actair 100 IR 770591000168103 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet [3] (&) American house dust mite extract + European house dust mite extract (total 300 IR) sublingual tablet [28], 1 pack 770321000168109 American house dust mite extract + European house dust mite extract (total 100 IR) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +724551000168103 PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches 724541000168100 PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches 724531000168109 PKU Lophlex LQ 20 Tropical oral liquid solution, 125 mL pouch 56151000168104 PKU Lophlex LQ 20 56151000168104 PKU Lophlex LQ 20 724241000168102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches 724221000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1050081000168105 Codphos 30 mg uncoated tablet, 100, blister pack 290336 1050071000168107 Codphos 30 mg uncoated tablet, 100 1049091000168101 Codphos 30 mg uncoated tablet 1049081000168104 Codphos 1049081000168104 Codphos 834711000168106 codeine phosphate hemihydrate 30 mg tablet, 100 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +861621000168102 Logicin Rapid Relief original flavour lozenge, 16, blister pack 63267 861611000168109 Logicin Rapid Relief original flavour lozenge, 16 861601000168106 Logicin Rapid Relief original flavour lozenge 53296011000036108 Logicin Rapid Relief 53296011000036108 Logicin Rapid Relief 861241000168105 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +933212091000036108 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 28, blister pack 142235 933201501000036103 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 28 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1080061000168107 Bisoprolol (Auro) 7.5 mg film-coated tablet, 100, blister pack 175920 1080051000168105 Bisoprolol (Auro) 7.5 mg film-coated tablet, 100 1080001000168106 Bisoprolol (Auro) 7.5 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 874401000168102 bisoprolol fumarate 7.5 mg tablet, 100 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +19549011000036107 Diclocil 1 g powder for injection, 5 vials 56804 12821011000036101 Diclocil 1 g powder for injection, 5 vials 6112011000036106 Diclocil 1 g powder for injection, vial 4083011000036104 Diclocil 4083011000036104 Diclocil 27378011000036105 dicloxacillin 1 g injection, 5 vials 22727011000036105 dicloxacillin 1 g injection, vial 21398011000036101 dicloxacillin +19464011000036105 Skelid 200 mg uncoated tablet, 56, blister pack 54569 12741011000036100 Skelid 200 mg uncoated tablet, 56 6035011000036103 Skelid 200 mg uncoated tablet 3276011000036105 Skelid 3276011000036105 Skelid 27326011000036105 tiludronate 200 mg tablet, 56 22679011000036106 tiludronate 200 mg tablet 21787011000036102 tiludronate +923775011000036108 Ozvenaf 75 mg modified release capsule, 28, blister pack 149454 923328011000036102 Ozvenaf 75 mg modified release capsule, 28 923005011000036103 Ozvenaf 75 mg modified release capsule 922911011000036101 Ozvenaf 922911011000036101 Ozvenaf 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +695631000168107 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles 15681 695621000168109 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles 695601000168100 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 50 mL bottle 20471000168101 Ultravist-370 20471000168101 Ultravist-370 695611000168102 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 50 mL bottles 695591000168107 iopromide 769 mg (iodine 370 mg)/mL injection, 50 mL bottle 77425011000036101 iopromide +661371000168104 Frusemide (AN) 20 mg uncoated tablet, 100, bottle 176037 661361000168105 Frusemide (AN) 20 mg uncoated tablet, 100 661351000168108 Frusemide (AN) 20 mg uncoated tablet 661311000168107 Frusemide (AN) 661311000168107 Frusemide (AN) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +666711000168103 Doxycycline (AN) 100 mg film-coated tablet, 7, blister pack 148808 666701000168101 Doxycycline (AN) 100 mg film-coated tablet, 7 666691000168101 Doxycycline (AN) 100 mg film-coated tablet 666651000168106 Doxycycline (AN) 666651000168106 Doxycycline (AN) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +954791000168106 Gabapentin (Apo) 600 mg film-coated tablet, 100, bottle 131469 730951000168104 Gabapentin (Apo) 600 mg film-coated tablet, 100 730941000168101 Gabapentin (Apo) 600 mg film-coated tablet 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +50486011000036105 Biatain Adhesive (3423) 18 cm x 18 cm waterproof pad, 5, carton 49504011000036104 Biatain Adhesive (3423) 18 cm x 18 cm waterproof pad, 5 48548011000036103 Biatain Adhesive (3423) 18 cm x 18 cm waterproof pad 63981000168107 Biatain Adhesive (3423) 63981000168107 Biatain Adhesive (3423) 51454011000036100 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 18 cm x 18 cm waterproof pad, 5 50961011000036100 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 18 cm x 18 cm waterproof pad 50713011000036109 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam +1024401000168100 Betadine Sore Throat Lozenges Orange lozenge, 40, blister pack 227169 1024391000168102 Betadine Sore Throat Lozenges Orange lozenge, 40 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023831000168106 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 40 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +933213701000036105 Citalopram (IPCA) 20 mg film-coated tablet, 250, bottle 158872 933203231000036109 Citalopram (IPCA) 20 mg film-coated tablet, 250 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 46709011000036105 citalopram 20 mg tablet, 250 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +933212241000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 84, blister pack 142236 933200981000036109 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 84 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200991000036106 donepezil hydrochloride 10 mg tablet, 84 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +949451000168106 Metformin Hydrochloride 1000 (GA) 1 g tablet, 90, blister pack 147411 949441000168109 Metformin Hydrochloride 1000 (GA) 1 g tablet, 90 949431000168100 Metformin Hydrochloride 1000 (GA) 1 g tablet 949421000168103 Metformin Hydrochloride 1000 (GA) 949421000168103 Metformin Hydrochloride 1000 (GA) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +652781000168103 Tacrolimus (Pharmacor) 1 mg hard capsule, 100, bottle 209268 652761000168107 Tacrolimus (Pharmacor) 1 mg hard capsule, 100 652751000168105 Tacrolimus (Pharmacor) 1 mg hard capsule 650951000168107 Tacrolimus (Pharmacor) 650951000168107 Tacrolimus (Pharmacor) 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +682801000168106 C-Flox 250 mg film-coated tablet, 2, blister pack 195202 682791000168105 C-Flox 250 mg film-coated tablet, 2 7060011000036102 C-Flox 250 mg film-coated tablet 3474011000036103 C-Flox 3474011000036103 C-Flox 27061011000036107 ciprofloxacin 250 mg tablet, 2 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +727771000168109 Zyprexa Zydis 10 mg wafer, 7, blister pack 73389 727761000168103 Zyprexa Zydis 10 mg wafer, 7 6643011000036105 Zyprexa Zydis 10 mg wafer 15881000168103 Zyprexa Zydis 15881000168103 Zyprexa Zydis 933205231000036105 olanzapine 10 mg wafer, 7 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +121741000036108 Zaltrap 200 mg/8 mL concentrated injection, 8 mL vial 195974 120791000036106 Zaltrap 200 mg/8 mL concentrated injection, 8 mL vial 119281000036104 Zaltrap 200 mg/8 mL concentrated injection, 8 mL vial 119191000036108 Zaltrap 119191000036108 Zaltrap 120801000036105 aflibercept 200 mg/8 mL injection, 8 mL vial 119291000036102 aflibercept 200 mg/8 mL injection, vial 82551000036105 aflibercept +170791000036105 Tasigna 150 mg hard capsule, 28, blister pack 171498 169921000036108 Tasigna 150 mg hard capsule, 28 2381000036105 Tasigna 150 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 169931000036105 nilotinib 150 mg capsule, 28 2391000036107 nilotinib 150 mg capsule 39428011000036108 nilotinib +18522011000036101 Lisinopril (Winthrop) 20 mg uncoated tablet, 30, blister pack 131880 11923011000036108 Lisinopril (Winthrop) 20 mg uncoated tablet, 30 4615011000036109 Lisinopril (Winthrop) 20 mg uncoated tablet 4050011000036103 Lisinopril (Winthrop) 4050011000036103 Lisinopril (Winthrop) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +717081000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 100, bottle 167313 717061000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 100 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716251000168100 omeprazole 20 mg enteric capsule, 100 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +930261000168101 Zofran 8 mg/4 mL injection solution, 2 x 4 mL ampoules 47264 930251000168103 Zofran 8 mg/4 mL injection solution, 2 x 4 mL ampoules 5196011000036106 Zofran 8 mg/4 mL injection solution, 4 mL ampoule 2471000168108 Zofran 2471000168108 Zofran 930241000168100 ondansetron 8 mg/4 mL injection, 2 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +18813011000036100 Deralin 40 mg film-coated tablet, 100, bottle 17614 12134011000036105 Deralin 40 mg film-coated tablet, 100 5447011000036100 Deralin 40 mg film-coated tablet 3863011000036103 Deralin 3863011000036103 Deralin 26941011000036106 propranolol hydrochloride 40 mg tablet, 100 22317011000036102 propranolol hydrochloride 40 mg tablet 21392011000036104 propranolol +60852011000036105 Gastrolyte-R powder for oral liquid, 10 x 7.5 g sachets 58708 56806011000036107 Gastrolyte-R powder for oral liquid, 10 x 7.5 g sachets 54086011000036100 Gastrolyte-R powder for oral liquid, 7.5 g sachet 53420011000036103 Gastrolyte-R 53420011000036103 Gastrolyte-R 63582011000036100 oryza sativa 6 g + sodium citrate dihydrate 580 mg + sodium chloride 350 mg + potassium chloride 300 mg (potassium 4 mmol) powder for oral liquid, 10 x 7.5 g sachets 62021011000036105 oryza sativa 6 g + sodium citrate dihydrate 580 mg + sodium chloride 350 mg + potassium chloride 300 mg (potassium 4 mmol) powder for oral liquid, 7.5 g sachet 61797011000036108 oryza sativa + citric acid + sodium chloride + potassium chloride +682881000168103 Arzerra 100 mg/5 mL concentrated injection, 3 x 5 mL vials 196945 682871000168101 Arzerra 100 mg/5 mL concentrated injection, 3 x 5 mL vials 682851000168105 Arzerra 100 mg/5 mL concentrated injection, 5 mL vial 682821000168102 Arzerra 682821000168102 Arzerra 682861000168107 ofatumumab 100 mg/5 mL injection, 3 x 5 mL vials 682841000168108 ofatumumab 100 mg/5 mL injection, vial 682831000168104 ofatumumab +862721000168104 Amitriptyline (GPPL) 25 mg tablet, 100, blister pack 232136 862711000168106 Amitriptyline (GPPL) 25 mg tablet, 100 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +978311000168107 Rexulti 1 mg film-coated tablet, 30, blister pack 273220 978301000168109 Rexulti 1 mg film-coated tablet, 30 978251000168103 Rexulti 1 mg film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978291000168108 brexpiprazole 1 mg tablet, 30 978241000168100 brexpiprazole 1 mg tablet 978131000168104 brexpiprazole +1033061000168107 Ramipril (Apotex) 10 mg capsule, 14, blister pack 179036 1033051000168105 Ramipril (Apotex) 10 mg capsule, 14 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46763011000036108 ramipril 10 mg capsule, 14 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +699821000168106 Alfentanil (GH) 5 mg/10 mL injection solution, 5 x 10 mL ampoules 199999 699811000168104 Alfentanil (GH) 5 mg/10 mL injection solution, 5 x 10 mL ampoules 699801000168102 Alfentanil (GH) 5 mg/10 mL injection solution, 10 mL ampoule 699791000168103 Alfentanil (GH) 699791000168103 Alfentanil (GH) 35187011000036105 alfentanil 5 mg/10 mL injection, 5 x 10 mL ampoules 34897011000036105 alfentanil 5 mg/10 mL injection, ampoule 34836011000036102 alfentanil +17871011000036104 Norspan 10 microgram/hour patch, 2, sachet 116648 11534011000036101 Norspan 10 microgram/hour patch, 2 5476011000036104 Norspan 10 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 26681011000036100 buprenorphine 10 microgram/hour patch, 2 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +82886011000036107 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30, bottle 157744 11301011000036108 Simvastatin (Terry White Chemists) 20 mg film-coated tablet, 30 4547011000036102 Simvastatin (Terry White Chemists) 20 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +694581000168108 Clopaccord 75 mg film-coated tablet, 90, bottle 187041 694571000168105 Clopaccord 75 mg film-coated tablet, 90 694561000168104 Clopaccord 75 mg film-coated tablet 694551000168101 Clopaccord 694551000168101 Clopaccord 925444011000036105 clopidogrel 75 mg tablet, 90 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +77308011000036109 Water for Irrigation (Baxter) irrigation solution, 100 mL bottle 35657 76724011000036105 Water for Irrigation (Baxter) irrigation solution, 100 mL bottle 76143011000036101 Water for Irrigation (Baxter) irrigation solution, 100 mL bottle 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78238011000036102 water for irrigation solution, 100 mL bottle 77565011000036104 water for irrigation solution, 100 mL bottle 77440011000036107 water for irrigation +678551000168102 Ramipril (RBX) 2.5 mg tablet, 30, blister pack 213093 678541000168104 Ramipril (RBX) 2.5 mg tablet, 30 678531000168108 Ramipril (RBX) 2.5 mg tablet 678431000168109 Ramipril (RBX) 678431000168109 Ramipril (RBX) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +870121000168105 Aripiprazole (Apo) 15 mg uncoated tablet, 30, blister pack 152924 870111000168103 Aripiprazole (Apo) 15 mg uncoated tablet, 30 870101000168101 Aripiprazole (Apo) 15 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +77223011000036101 Irinotecan Hydrochloride Trihydrate (Actavis) 40 mg/2 mL concentrated injection, 2 mL vial 144972 76639011000036100 Irinotecan Hydrochloride Trihydrate (Actavis) 40 mg/2 mL concentrated injection, 2 mL vial 76081011000036101 Irinotecan Hydrochloride Trihydrate (Actavis) 40 mg/2 mL concentrated injection, 2 mL vial 76020011000036103 Irinotecan Hydrochloride Trihydrate (Actavis) 76020011000036103 Irinotecan Hydrochloride Trihydrate (Actavis) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +20226011000036108 MS Mono 120 mg modified release capsule, 10, bottle 74151 13440011000036108 MS Mono 120 mg modified release capsule, 10 6722011000036106 MS Mono 120 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27747011000036109 morphine sulfate pentahydrate 120 mg modified release capsule, 10 23078011000036104 morphine sulfate pentahydrate 120 mg modified release capsule 21252011000036100 morphine +21204011000036102 Imrest 7.5 mg film-coated tablet, 30, blister pack 99794 14342011000036101 Imrest 7.5 mg film-coated tablet, 30 7626011000036102 Imrest 7.5 mg film-coated tablet 4237011000036108 Imrest 4237011000036108 Imrest 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +753451000168100 Oxycodone (ZP) 5 mg hard capsule, 20, bottle 227850 753411000168101 Oxycodone (ZP) 5 mg hard capsule, 20 753401000168104 Oxycodone (ZP) 5 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +37507011000036104 Tramedo SR 150 mg modified release tablet, 60, blister pack 133157 36775011000036101 Tramedo SR 150 mg modified release tablet, 60 36137011000036103 Tramedo SR 150 mg modified release tablet 47831000168100 Tramedo SR 47831000168100 Tramedo SR 38673011000036103 tramadol hydrochloride 150 mg modified release tablet, 60 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +176501000036108 Sildenafil (Chemmart) 25 mg film-coated tablet, 4, blister pack 164814 174711000036109 Sildenafil (Chemmart) 25 mg film-coated tablet, 4 173501000036101 Sildenafil (Chemmart) 25 mg film-coated tablet 172551000036108 Sildenafil (Chemmart) 172551000036108 Sildenafil (Chemmart) 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +891531000168100 Bicor 3.75 mg film-coated tablet, 10, blister pack 81605 891521000168103 Bicor 3.75 mg film-coated tablet, 10 891491000168100 Bicor 3.75 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 875801000168100 bisoprolol fumarate 3.75 mg tablet, 10 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +995411000168103 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2, blister pack 57471 995401000168101 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2 995351000168108 Cepacol Plus with Anaesthetic Blackcurrant lozenge 34101000168105 Cepacol Plus with Anaesthetic 34101000168105 Cepacol Plus with Anaesthetic 995391000168103 cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 2 995341000168106 cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge 61719011000036102 cetylpyridinium + benzocaine +1015761000168101 Aripiprazole (Medis) 30 mg uncoated tablet, 30, blister pack 217239 1015751000168103 Aripiprazole (Medis) 30 mg uncoated tablet, 30 1015741000168100 Aripiprazole (Medis) 30 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +85035011000036108 Paroxo 20 mg film-coated tablet, 60, blister pack 152489 84900011000036109 Paroxo 20 mg film-coated tablet, 60 84788011000036102 Paroxo 20 mg film-coated tablet 84767011000036100 Paroxo 84767011000036100 Paroxo 51566011000036107 paroxetine 20 mg tablet, 60 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +104481000036101 Juvicor 100 mg/10 mg film-coated tablet, 28, blister pack 191482 101681000036102 Juvicor 100 mg/10 mg film-coated tablet, 28 98301000036100 Juvicor 100 mg/10 mg film-coated tablet 59591000168105 Juvicor 100 mg/10 mg 59591000168105 Juvicor 100 mg/10 mg 101691000036100 sitagliptin 100 mg + simvastatin 10 mg tablet, 28 98311000036103 sitagliptin 100 mg + simvastatin 10 mg tablet 105261000036108 sitagliptin + simvastatin +83186011000036108 Irinotecan Hydrochloride Trihydrate (Ebewe) 100 mg/5 mL concentrated injection, 5 x 5 mL vials 154237 83132011000036103 Irinotecan Hydrochloride Trihydrate (Ebewe) 100 mg/5 mL concentrated injection, 5 x 5 mL vials 83075011000036101 Irinotecan Hydrochloride Trihydrate (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83209011000036100 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 x 5 mL vials 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +44608011000036102 Riamet uncoated tablet, 16, blister pack 90011 42061011000036108 Riamet uncoated tablet, 16 40343011000036108 Riamet uncoated tablet 39595011000036103 Riamet 39595011000036103 Riamet 46828011000036108 artemether 20 mg + lumefantrine 120 mg tablet, 16 45329011000036100 artemether 20 mg + lumefantrine 120 mg tablet 44970011000036105 artemether + lumefantrine +932231000168105 Centevo 50/12.5/200 mg film-coated tablet, 150, bottle 238152 932221000168107 Centevo 50/12.5/200 mg film-coated tablet, 150 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932211000168100 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 150 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1096091000168101 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet, 10, blister pack 286619 1096081000168104 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet, 10 1096071000168102 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet 1096061000168108 Iron (Apohealth) 1096061000168108 Iron (Apohealth) 1087931000168104 ferrous fumarate 200 mg (iron 65.7 mg) tablet, 10 933220681000036107 ferrous fumarate 200 mg (iron 65.7 mg) tablet 933232111000036107 ferrous fumarate +933230921000036104 Famciclovir (Apo) 500 mg film-coated tablet, 12, bottle 172445 933224961000036103 Famciclovir (Apo) 500 mg film-coated tablet, 12 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933224971000036106 famciclovir 500 mg tablet, 12 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +20887011000036108 Gonal-F (10 x 75 units (5.46 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 93043 14049011000036105 Gonal-F (10 x 75 units (5.46 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack 7326011000036107 Gonal-F (follitropin alfa 75 units (5.46 microgram)) powder for injection, 75 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 28107011000036100 follitropin alfa 75 units (5.46 microgram) injection [10 x 75 units vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 23416011000036100 follitropin alfa 75 units (5.46 microgram) injection, 75 units vial 21352011000036107 follitropin alfa +20887011000036108 Gonal-F (10 x 75 units (5.46 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 93043 14049011000036105 Gonal-F (10 x 75 units (5.46 microgram) vials, 10 x 1 mL inert diluent syringes), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 28107011000036100 follitropin alfa 75 units (5.46 microgram) injection [10 x 75 units vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +698921000168109 Ceftazidime (Hospira) 2 g powder for injection, 1 vial 177030 698911000168102 Ceftazidime (Hospira) 2 g powder for injection, 1 vial 698901000168100 Ceftazidime (Hospira) 2 g powder for injection, 2 g vial 698861000168106 Ceftazidime (Hospira) 698861000168106 Ceftazidime (Hospira) 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +60414011000036100 Strong Pain Plus (Priceline) uncoated tablet, 96, blister pack 144423 56373011000036109 Strong Pain Plus (Priceline) uncoated tablet, 96 53893011000036109 Strong Pain Plus (Priceline) uncoated tablet 53244011000036107 Strong Pain Plus (Priceline) 53244011000036107 Strong Pain Plus (Priceline) 63804011000036109 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 96 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +721421000168105 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL, bottle 83363 721411000168103 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL 721401000168101 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution 52851000168106 Panadol Children's Drops 1 Month to 2 Years 52851000168106 Panadol Children's Drops 1 Month to 2 Years 63831011000036104 paracetamol 100 mg/mL oral liquid, 5 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +130421000036100 Candesartan Cilexetil (Sandoz) 16 mg tablet, 30, blister pack 147498 127421000036102 Candesartan Cilexetil (Sandoz) 16 mg tablet, 30 124641000036102 Candesartan Cilexetil (Sandoz) 16 mg tablet 123891000036107 Candesartan Cilexetil (Sandoz) 123891000036107 Candesartan Cilexetil (Sandoz) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +59851000036105 Famotidine (PS) 40 mg film-coated tablet, 30, blister pack 186281 58961000036106 Famotidine (PS) 40 mg film-coated tablet, 30 58311000036108 Famotidine (PS) 40 mg film-coated tablet 58131000036102 Famotidine (PS) 58131000036102 Famotidine (PS) 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +1044371000168100 Pryzex 5 mg film-coated tablet, 50, blister pack 178991 1044361000168106 Pryzex 5 mg film-coated tablet, 50 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044351000168109 olanzapine 5 mg tablet, 50 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +862791000168102 Precedex Ready to Use 200 microgram/50 mL injection solution, 20 x 50 mL bottles 234023 862781000168100 Precedex Ready to Use 200 microgram/50 mL injection solution, 20 x 50 mL bottles 862761000168109 Precedex Ready to Use 200 microgram/50 mL injection solution, 50 mL bottle 862701000168108 Precedex Ready to Use 862701000168108 Precedex Ready to Use 862771000168103 dexmedetomidine 200 microgram/50 mL injection, 20 x 50 mL bottles 862751000168107 dexmedetomidine 200 microgram/50 mL injection, bottle 44960011000036101 dexmedetomidine +878641000168107 Budamax Aqueous 32 microgram/actuation nasal spray, 120 actuations, pump pack 75657 878631000168103 Budamax Aqueous 32 microgram/actuation nasal spray, 120 actuations 878621000168101 Budamax Aqueous 32 microgram/actuation nasal spray, actuation 44611000168104 Budamax Aqueous 44611000168104 Budamax Aqueous 75506011000036106 budesonide 32 microgram/actuation nasal spray, 120 actuations 75105011000036105 budesonide 32 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +983851000168104 Aranesp 15 microgram/0.38 mL injection solution, 0.38 mL syringe 77951 983841000168101 Aranesp 15 microgram/0.38 mL injection solution, 0.38 mL syringe 983821000168107 Aranesp 15 microgram/0.38 mL injection solution, 0.38 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983831000168105 darbepoetin alfa 15 microgram/0.38 mL injection, 0.38 mL syringe 983811000168100 darbepoetin alfa 15 microgram/0.38 mL injection, syringe 21234011000036105 darbepoetin alfa +802301000168106 Nuvigil 150 mg uncoated tablet, 30, bottle 226557 802281000168107 Nuvigil 150 mg uncoated tablet, 30 802231000168106 Nuvigil 150 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802271000168109 armodafinil 150 mg tablet, 30 802221000168108 armodafinil 150 mg tablet 802061000168105 armodafinil +921995011000036102 Normafibe 620 mg/g granules, 200 g, carton 58053 921553011000036104 Normafibe 620 mg/g granules, 200 g 921084011000036106 Normafibe 620 mg/g granules 920950011000036109 Normafibe 920950011000036109 Normafibe 922669011000036104 sterculia 620 mg/g granules, 200 g 922149011000036107 sterculia 620 mg/g granules 922042011000036108 sterculia +55261000036109 Myozyme 50 mg powder for injection, 1 vial 136005 51061000036104 Myozyme 50 mg powder for injection, 1 vial 48641000036102 Myozyme 50 mg powder for injection, 50 mg vial 48291000036105 Myozyme 48291000036105 Myozyme 51071000036107 alglucosidase alfa 50 mg injection, 1 vial 48651000036104 alglucosidase alfa 50 mg injection, vial 56841000036101 alglucosidase alfa +891691000168102 Candesartan HCT 32/12.5 (Alphapharm) tablet, 30, blister pack 206487 891681000168100 Candesartan HCT 32/12.5 (Alphapharm) tablet, 30 891651000168107 Candesartan HCT 32/12.5 (Alphapharm) tablet 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1047251000168105 Buprenorphine (Sandoz) 5 microgram/hour patch, 4, sachet 269679 1047241000168108 Buprenorphine (Sandoz) 5 microgram/hour patch, 4 1047151000168103 Buprenorphine (Sandoz) 5 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046501000168105 buprenorphine 5 microgram/hour patch, 4 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +998261000168106 Desloratadine (Apo) 5 mg film-coated tablet, 28, blister pack 202823 998251000168109 Desloratadine (Apo) 5 mg film-coated tablet, 28 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72024011000036109 desloratadine 5 mg tablet, 28 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +933212331000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 84, blister pack 142237 933201121000036101 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 84 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200821000036102 donepezil hydrochloride 5 mg tablet, 84 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +121661000036103 Isentress 100 mg chewable tablet, 60, bottle 193388 120641000036109 Isentress 100 mg chewable tablet, 60 119331000036105 Isentress 100 mg chewable tablet 35892011000036104 Isentress 35892011000036104 Isentress 120651000036107 raltegravir 100 mg chewable tablet, 60 119341000036100 raltegravir 100 mg chewable tablet 37767011000036101 raltegravir +1075951000168108 Aripiprazole (Auro) 5 mg uncoated tablet, 56, blister pack 198185 1075941000168106 Aripiprazole (Auro) 5 mg uncoated tablet, 56 1075851000168100 Aripiprazole (Auro) 5 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 46875011000036103 aripiprazole 5 mg tablet, 56 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +862881000168109 Amitriptyline (AC) 10 mg tablet, 50, bottle 232106 862841000168104 Amitriptyline (AC) 10 mg tablet, 50 862831000168108 Amitriptyline (AC) 10 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +931772011000036108 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 91369 930932011000036106 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 930129011000036101 Iomeron-300 612.4 mg (iodine 300 mg)/mL injection solution, 20 mL vial 5101000168100 Iomeron-300 5101000168100 Iomeron-300 932501011000036106 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 10 x 20 mL vials 931894011000036105 iomeprol 612.4 mg (iodine 300 mg)/mL injection, 20 mL vial 931793011000036105 iomeprol +926251000168103 Stilnox 5 mg film-coated tablet, 28, blister pack 58709 926241000168100 Stilnox 5 mg film-coated tablet, 28 926131000168104 Stilnox 5 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 926231000168109 zolpidem tartrate 5 mg tablet, 28 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +87658011000036109 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 24, blister pack 126538 87417011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 24 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1003931000168108 Rivastigmine (Apo) 6 mg hard capsule, 112, blister pack 160571 1003921000168105 Rivastigmine (Apo) 6 mg hard capsule, 112 1002981000168101 Rivastigmine (Apo) 6 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1003911000168103 rivastigmine 6 mg capsule, 112 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +816791000168104 Pemetrexed (DRLA) 100 mg powder for injection, 1 vial 236053 816781000168102 Pemetrexed (DRLA) 100 mg powder for injection, 1 vial 816771000168100 Pemetrexed (DRLA) 100 mg powder for injection, 100 mg vial 742451000168107 Pemetrexed (DRLA) 742451000168107 Pemetrexed (DRLA) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +44746011000036100 Etoposide (Ebewe) 50 mg/2.5 mL concentrated injection, 2.5 mL vial 96636 42191011000036104 Etoposide (Ebewe) 50 mg/2.5 mL concentrated injection, 2.5 mL vial 40380011000036107 Etoposide (Ebewe) 50 mg/2.5 mL concentrated injection, 2.5 mL vial 3594011000036103 Etoposide (Ebewe) 3594011000036103 Etoposide (Ebewe) 46951011000036107 etoposide 50 mg/2.5 mL injection, 2.5 mL vial 45353011000036102 etoposide 50 mg/2.5 mL injection, vial 21469011000036104 etoposide +43915011000036108 Trandolapril (Apo) 2 mg hard capsule, 28, blister pack 135978 41407011000036105 Trandolapril (Apo) 2 mg hard capsule, 28 39967011000036100 Trandolapril (Apo) 2 mg hard capsule 11371000168108 Trandolapril (Apo) 11371000168108 Trandolapril (Apo) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +874391000168104 Beprol 7.5 mg film-coated tablet, 30, blister pack 175927 874381000168102 Beprol 7.5 mg film-coated tablet, 30 874331000168103 Beprol 7.5 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 874371000168100 bisoprolol fumarate 7.5 mg tablet, 30 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +933230721000036102 Irinotecan Hydrochloride Trihydrate (Kabi) 100 mg/5 mL concentrated injection, 5 mL vial 171227 933224841000036109 Irinotecan Hydrochloride Trihydrate (Kabi) 100 mg/5 mL concentrated injection, 5 mL vial 933220371000036101 Irinotecan Hydrochloride Trihydrate (Kabi) 100 mg/5 mL concentrated injection, 5 mL vial 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +831221000168107 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 107285 831211000168100 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 689571000168108 Priorix-Tetra (inert substance) diluent, 0.5 mL ampoule 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831201000168103 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +831221000168107 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 107285 831211000168100 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 831191000168101 Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831201000168103 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 831181000168104 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +700061000168106 Iclusig 45 mg film-coated tablet, 30, bottle 212584 700051000168109 Iclusig 45 mg film-coated tablet, 30 700031000168103 Iclusig 45 mg film-coated tablet 699941000168109 Iclusig 699941000168109 Iclusig 700041000168107 ponatinib 45 mg tablet, 30 700021000168101 ponatinib 45 mg tablet 699961000168108 ponatinib +933246891000036105 Pantoprazole (PS) 20 mg enteric tablet, 56, blister pack 158196 933243721000036108 Pantoprazole (PS) 20 mg enteric tablet, 56 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46677011000036103 pantoprazole 20 mg enteric tablet, 56 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +661231000168109 Risperidone (AN) 500 microgram film-coated tablet, 60, blister pack 166682 661221000168106 Risperidone (AN) 500 microgram film-coated tablet, 60 661211000168104 Risperidone (AN) 500 microgram film-coated tablet 661081000168104 Risperidone (AN) 661081000168104 Risperidone (AN) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +764831000168100 Lozanoc 50 mg hard capsule, 15, bottle 206360 680031000168105 Lozanoc 50 mg hard capsule, 15 680011000168100 Lozanoc 50 mg hard capsule 679991000168108 Lozanoc 679991000168108 Lozanoc 680021000168107 itraconazole 50 mg capsule, 15 680001000168103 itraconazole 50 mg capsule 21903011000036100 itraconazole +861461000168105 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16, blister pack 132931 861451000168108 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16 861411000168107 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 861241000168105 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +1093351000168104 Voltaren Emulgel No Mess Applicator 1.16% gel, 100 g, tube 282516 1093341000168101 Voltaren Emulgel No Mess Applicator 1.16% gel, 100 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037001000168102 diclofenac diethylamine 1.16% gel, 100 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +926863011000036109 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 30 mL vial 47856 926259011000036108 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 30 mL vial 925707011000036103 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 30 mL vial 14501000168105 Optiray-350 14501000168105 Optiray-350 927363011000036108 ioversol 741 mg (iodine 350 mg)/mL injection, 30 mL vial 927010011000036102 ioversol 741 mg (iodine 350 mg)/mL injection, 30 mL vial 77421011000036103 ioversol +681281000168107 Esomeprazole (Actavis) 20 mg enteric tablet, 15, blister pack 210854 681271000168109 Esomeprazole (Actavis) 20 mg enteric tablet, 15 681221000168108 Esomeprazole (Actavis) 20 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 681261000168103 esomeprazole 20 mg enteric tablet, 15 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +38101000036108 Escitalopram (Generic Health) 5 mg film-coated tablet, 30, bottle 165831 34431000036100 Escitalopram (Generic Health) 5 mg film-coated tablet, 30 32791000036103 Escitalopram (Generic Health) 5 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +933229641000036109 Morphine Sulfate MR (Apotex) 60 mg modified release tablet, 20, blister pack 132256 933223601000036109 Morphine Sulfate MR (Apotex) 60 mg modified release tablet, 20 933219681000036106 Morphine Sulfate MR (Apotex) 60 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 27108011000036105 morphine sulfate pentahydrate 60 mg modified release tablet, 20 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +975251000168109 Antistax 360 mg film-coated tablet, 30, blister pack 171113 975241000168107 Antistax 360 mg film-coated tablet, 30 975221000168101 Antistax 360 mg film-coated tablet 975191000168107 Antistax 975191000168107 Antistax 975231000168103 Vitis vinifera leaf 360 mg tablet, 30 975211000168108 Vitis vinifera leaf 360 mg tablet 975201000168105 Vitis vinifera leaf +931530011000036105 Protecta Derm pressurised spray, 115 g, aerosol can 161722 930691011000036109 Protecta Derm pressurised spray, 115 g 930014011000036100 Protecta Derm pressurised spray 929817011000036107 Protecta Derm 929817011000036107 Protecta Derm 932404011000036102 dimeticone-350 1.04% + zinc oxide 12.5% spray, 115 g 931852011000036109 dimeticone-350 1.04% + zinc oxide 12.5% spray 931803011000036105 dimeticone-350 + zinc oxide +871401000168100 Amitriptyline (AC) 50 mg tablet, 10, blister pack 232110 871391000168102 Amitriptyline (AC) 50 mg tablet, 10 862931000168104 Amitriptyline (AC) 50 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +903231000168108 Brillior 75 mg hard capsule, 60, blister pack 224340 903221000168105 Brillior 75 mg hard capsule, 60 903101000168105 Brillior 75 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1051521000168105 Palexia SR 50 mg modified release tablet, 14, blister pack 165332 1051511000168103 Palexia SR 50 mg modified release tablet, 14 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051501000168101 tapentadol 50 mg modified release tablet, 14 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +780741000168109 Fentanyl (Apo) 37 microgram/hour patch, 1, sachet 152566 780731000168100 Fentanyl (Apo) 37 microgram/hour patch, 1 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780721000168103 fentanyl 37 microgram/hour patch, 1 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +933230761000036106 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 100, blister pack 172126 933224881000036100 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 100 933220411000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet 933219291000036105 Prochlorperazine Maleate (GH) 933219291000036105 Prochlorperazine Maleate (GH) 924170011000036106 prochlorperazine maleate 5 mg tablet, 100 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +77155011000036101 Epilim IV (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack, composite pack 104416 76563011000036101 Epilim IV (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack 76034011000036105 Epilim IV (valproate sodium 400 mg) powder for injection, 400 mg vial 61331000168109 Epilim IV 61331000168109 Epilim IV 78120011000036100 valproate sodium 400 mg injection [1 vial] (&) inert substance diluent [4 mL ampoule], 1 pack 77497011000036103 valproate sodium 400 mg injection, vial 21225011000036107 valproate +77155011000036101 Epilim IV (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack, composite pack 104416 76563011000036101 Epilim IV (1 x 400 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack 647051000168107 Epilim IV (inert substance) diluent, 4 mL ampoule 61331000168109 Epilim IV 61331000168109 Epilim IV 78120011000036100 valproate sodium 400 mg injection [1 vial] (&) inert substance diluent [4 mL ampoule], 1 pack 641951000168103 inert substance diluent, 4 mL ampoule 21220011000036103 inert substance +33566011000036105 Quinapril (Pharmacor) 20 mg film-coated tablet, 30, blister pack 144094 33304011000036101 Quinapril (Pharmacor) 20 mg film-coated tablet, 30 33066011000036107 Quinapril (Pharmacor) 20 mg film-coated tablet 32961011000036100 Quinapril (Pharmacor) 32961011000036100 Quinapril (Pharmacor) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +849861000168103 Itranox 100 mg hard capsule, 15, blister pack 244432 849851000168100 Itranox 100 mg hard capsule, 15 849721000168102 Itranox 100 mg hard capsule 849661000168104 Itranox 849661000168104 Itranox 46361011000036108 itraconazole 100 mg capsule, 15 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +1024151000168109 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 36, blister pack 227167 1024141000168107 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 36 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +868591000168106 Atomerra 18 mg hard capsule, 56, blister pack 234793 868581000168108 Atomerra 18 mg hard capsule, 56 868511000168102 Atomerra 18 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830391000168106 atomoxetine 18 mg capsule, 56 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +1012631000168109 Mycophenolate (Apotex) 250 mg capsule, 100, blister pack 168106 1012621000168106 Mycophenolate (Apotex) 250 mg capsule, 100 1012611000168104 Mycophenolate (Apotex) 250 mg capsule 1012551000168104 Mycophenolate (Apotex) 1012551000168104 Mycophenolate (Apotex) 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +998221000168101 Desloratadine (Apo) 5 mg film-coated tablet, 20, blister pack 202823 998211000168108 Desloratadine (Apo) 5 mg film-coated tablet, 20 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72022011000036100 desloratadine 5 mg tablet, 20 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +904601000168101 Amisulpride (AJS) 50 mg uncoated tablet, 30, blister pack 234696 904591000168108 Amisulpride (AJS) 50 mg uncoated tablet, 30 904581000168105 Amisulpride (AJS) 50 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +20904011000036105 Aldazine 10 mg film-coated tablet, 100, bottle 93653 32402011000036105 Aldazine 10 mg film-coated tablet, 100 32254011000036109 Aldazine 10 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32800011000036102 thioridazine hydrochloride 10 mg tablet, 100 32705011000036108 thioridazine hydrochloride 10 mg tablet 21637011000036101 thioridazine +77240011000036106 Ozidal 500 microgram film-coated tablet, 20, blister pack 148964 76656011000036105 Ozidal 500 microgram film-coated tablet, 20 76093011000036101 Ozidal 500 microgram film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +888721000168104 Bosentan (Astron) 125 mg film-coated tablet, 60, bottle 235889 888711000168106 Bosentan (Astron) 125 mg film-coated tablet, 60 888701000168108 Bosentan (Astron) 125 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +933212321000036107 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 7, blister pack 142237 933201111000036108 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 7 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200801000036107 donepezil hydrochloride 5 mg tablet, 7 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +920814011000036100 Alprazolam (Sandoz) 500 microgram uncoated tablet, 50, blister pack 98664 920493011000036109 Alprazolam (Sandoz) 500 microgram uncoated tablet, 50 920224011000036101 Alprazolam (Sandoz) 500 microgram uncoated tablet 920078011000036101 Alprazolam (Sandoz) 920078011000036101 Alprazolam (Sandoz) 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +34654011000036103 Morphine Sulfate (Phebra) 30 mg/mL injection solution, 50 x 1 mL ampoules 12433 34243011000036100 Morphine Sulfate (Phebra) 30 mg/mL injection solution, 50 x 1 mL ampoules 33983011000036105 Morphine Sulfate (Phebra) 30 mg/mL injection solution, ampoule 33954011000036101 Morphine Sulfate (Phebra) 33954011000036101 Morphine Sulfate (Phebra) 35114011000036101 morphine sulfate pentahydrate 30 mg/mL injection, 50 x 1 mL ampoules 22132011000036100 morphine sulfate pentahydrate 30 mg/mL injection, ampoule 21252011000036100 morphine +937711000168107 Famciclovir (FBM) 250 mg film-coated tablet, 3, blister pack 177000 937701000168109 Famciclovir (FBM) 250 mg film-coated tablet, 3 937691000168109 Famciclovir (FBM) 250 mg film-coated tablet 937681000168106 Famciclovir (FBM) 937681000168106 Famciclovir (FBM) 914471000168106 famciclovir 250 mg tablet, 3 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1064491000168100 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 12, blister pack 202702 1064481000168103 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 12 1064451000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 63866011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 12 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1068781000168101 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 40, blister pack 193078 1068771000168104 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet, 40 1068701000168109 Paracetamol and Codeine (Discount Drug Stores) uncoated tablet 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 1068691000168109 Paracetamol and Codeine (Discount Drug Stores) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +933213381000036100 Citalopram (IPCA) 40 mg film-coated tablet, 56, bottle 158855 933202901000036104 Citalopram (IPCA) 40 mg film-coated tablet, 56 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202911000036102 citalopram 40 mg tablet, 56 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +901701000168105 Amisulpride (CH) 400 mg uncoated tablet, 90, blister pack 234703 901691000168105 Amisulpride (CH) 400 mg uncoated tablet, 90 901631000168106 Amisulpride (CH) 400 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +18290011000036103 Promethazine Hydrochloride (DBL) 50 mg/2 mL injection solution, 5 x 2 mL ampoules 16255 12098011000036104 Promethazine Hydrochloride (DBL) 50 mg/2 mL injection solution, 5 x 2 mL ampoules 5041011000036101 Promethazine Hydrochloride (DBL) 50 mg/2 mL injection solution, 2 mL ampoule 3703011000036102 Promethazine Hydrochloride (DBL) 3703011000036102 Promethazine Hydrochloride (DBL) 26909011000036104 promethazine hydrochloride 50 mg/2 mL injection, 5 x 2 mL ampoules 22286011000036107 promethazine hydrochloride 50 mg/2 mL injection, ampoule 21237011000036104 promethazine +721651000168100 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL, bottle 10859 721641000168102 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL 721631000168106 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 5 mL 9371000168109 Panadol Children's Elixir 1 to 5 Years 9371000168109 Panadol Children's Elixir 1 to 5 Years 63439011000036107 paracetamol 120 mg/5 mL oral liquid, 20 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +81018011000036105 Co-Diovan 320/25 film-coated tablet, 14, blister pack 135812 80494011000036101 Co-Diovan 320/25 film-coated tablet, 14 80164011000036102 Co-Diovan 320/25 film-coated tablet 54411000168103 Co-Diovan 320/25 54411000168103 Co-Diovan 320/25 81590011000036105 valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 14 81264011000036105 valsartan 320 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +37661011000036103 Amethocaine Hydrochloride Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses, tube 32252 36927011000036104 Amethocaine Hydrochloride Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses 36258011000036103 Amethocaine Hydrochloride Minims (Bausch & Lomb) 0.5% eye drops solution, 0.5 mL unit dose 15151000168104 Amethocaine Hydrochloride Minims (Bausch & Lomb) 15151000168104 Amethocaine Hydrochloride Minims (Bausch & Lomb) 38808011000036105 tetracaine (amethocaine) hydrochloride 0.5% eye drops, 20 x 0.5 mL unit doses 38018011000036109 tetracaine (amethocaine) hydrochloride 0.5% eye drops, unit dose 37707011000036100 tetracaine (amethocaine) +925181011000036104 Vancomycin (Alphapharm) 500 mg powder for injection, 1 vial 153438 924718011000036107 Vancomycin (Alphapharm) 500 mg powder for injection, 1 vial 924431011000036100 Vancomycin (Alphapharm) 500 mg powder for injection, 500 mg vial 920929011000036104 Vancomycin (Alphapharm) 920929011000036104 Vancomycin (Alphapharm) 27499011000036100 vancomycin 500 mg injection, 1 vial 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +933246571000036109 Lisinopril (PS) 5 mg uncoated tablet, 100, blister pack 152712 933243211000036106 Lisinopril (PS) 5 mg uncoated tablet, 100 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 83478011000036103 lisinopril 5 mg tablet, 100 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +895941000168104 Atomoxetine (Sandoz) 80 mg hard capsule, 28, blister pack 238371 895931000168108 Atomoxetine (Sandoz) 80 mg hard capsule, 28 895901000168101 Atomoxetine (Sandoz) 80 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1042841000168105 Kalma 1 mg uncoated tablet, 10, bottle 46839 1042831000168101 Kalma 1 mg uncoated tablet, 10 5340011000036107 Kalma 1 mg uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 1042821000168104 alprazolam 1 mg tablet, 10 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +74842011000036107 CMV Immunoglobulin-VF (CSL) 1.5 million unit/30 mL intravenous infusion injection, 30 mL vial 31810 74329011000036103 CMV Immunoglobulin-VF (CSL) 1.5 million unit/30 mL intravenous infusion injection, 30 mL vial 73781011000036108 CMV Immunoglobulin-VF (CSL) 1.5 million unit/30 mL intravenous infusion injection, 30 mL vial 49951000168109 CMV Immunoglobulin-VF (CSL) 49951000168109 CMV Immunoglobulin-VF (CSL) 75435011000036103 cytomegalovirus immunoglobulin 1.5 million unit/30 mL injection, 30 mL vial 75055011000036106 cytomegalovirus immunoglobulin 1.5 million unit/30 mL injection, vial 74961011000036100 cytomegalovirus immunoglobulin +649811000168109 Adesan HCT 32/25 tablet, 30, blister pack 206486 649301000168100 Adesan HCT 32/25 tablet, 30 649291000168101 Adesan HCT 32/25 tablet 649281000168104 Adesan HCT 32/25 649281000168104 Adesan HCT 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +928868011000036106 Risperibell 3 mg film-coated tablet, 60, blister pack 139822 928230011000036107 Risperibell 3 mg film-coated tablet, 60 927888011000036103 Risperibell 3 mg film-coated tablet 927801011000036108 Risperibell 927801011000036108 Risperibell 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +44582011000036105 Vfend 200 mg film-coated tablet, 100, blister pack 82505 42035011000036103 Vfend 200 mg film-coated tablet, 100 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46803011000036105 voriconazole 200 mg tablet, 100 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +59678011000036101 Advil 200 mg sugar coated tablet, 10, blister pack 104221 55681011000036106 Advil 200 mg sugar coated tablet, 10 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +957771000168103 Mirtazapine (Sandoz) 15 mg film-coated tablet, 30, blister pack 117131 957211000168102 Mirtazapine (Sandoz) 15 mg film-coated tablet, 30 957201000168100 Mirtazapine (Sandoz) 15 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +933246801000036102 Panthron 40 mg enteric tablet, 30, blister pack 158195 933243631000036104 Panthron 40 mg enteric tablet, 30 933241461000036108 Panthron 40 mg enteric tablet 933241031000036108 Panthron 933241031000036108 Panthron 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +44068011000036108 Flixotide Junior Inhaler 50 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 48552 41555011000036100 Flixotide Junior Inhaler 50 microgram/actuation pressurised inhalation, 120 actuations 40060011000036109 Flixotide Junior Inhaler 50 microgram/actuation pressurised inhalation, actuation 441000168109 Flixotide Junior Inhaler 441000168109 Flixotide Junior Inhaler 27823011000036101 fluticasone propionate 50 microgram/actuation pressurised inhalation, 120 actuations 23151011000036103 fluticasone propionate 50 microgram/actuation pressurised inhalation, actuation 861061000168102 fluticasone propionate +933230601000036104 Valaciclovir (Generic Health) 500 mg film-coated tablet, 10, blister pack 170178 933224661000036106 Valaciclovir (Generic Health) 500 mg film-coated tablet, 10 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +83409011000036104 Cephalexin (Apo) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 160865 83328011000036105 Cephalexin (Apo) 250 mg/5 mL powder for oral liquid, 100 mL 83257011000036102 Cephalexin (Apo) 250 mg/5 mL powder for oral liquid, 5 mL 29951000168107 Cephalexin (Apo) 29951000168107 Cephalexin (Apo) 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +816871000168108 Celazadine 100 mg powder for injection, 1 vial 216327 816861000168102 Celazadine 100 mg powder for injection, 1 vial 816851000168104 Celazadine 100 mg powder for injection, 100 mg vial 816841000168101 Celazadine 816841000168101 Celazadine 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +1070191000168106 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet, 40, blister pack 188893 1070181000168108 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet, 40 1070091000168105 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet 1070061000168103 Pain Relief Paracetamol plus Codeine 15 (Cipla) 1070061000168103 Pain Relief Paracetamol plus Codeine 15 (Cipla) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +59691000036102 Zetlam 100 mg film-coated tablet, 28, blister pack 180503 58761000036109 Zetlam 100 mg film-coated tablet, 28 58361000036105 Zetlam 100 mg film-coated tablet 58041000036106 Zetlam 58041000036106 Zetlam 27588011000036103 lamivudine 100 mg tablet, 28 22927011000036104 lamivudine 100 mg tablet 21665011000036104 lamivudine +718931000168104 Alendronate Plus D3 70 mg/140 microgram (Sandoz) uncoated tablet, 4, blister pack 206935 718921000168102 Alendronate Plus D3 70 mg/140 microgram (Sandoz) uncoated tablet, 4 718911000168109 Alendronate Plus D3 70 mg/140 microgram (Sandoz) uncoated tablet 718901000168106 Alendronate Plus D3 70 mg/140 microgram (Sandoz) 718901000168106 Alendronate Plus D3 70 mg/140 microgram (Sandoz) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +969461000168100 Aripiprazole (AN) 20 mg uncoated tablet, 60, blister pack 198195 969451000168102 Aripiprazole (AN) 20 mg uncoated tablet, 60 969381000168101 Aripiprazole (AN) 20 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787751000168105 aripiprazole 20 mg tablet, 60 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1032741000168100 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 6, blister pack 173485 1032731000168109 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 6 1031401000168101 Atorvastatin (Ranbaxy) 20 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 841281000168105 atorvastatin 20 mg tablet, 6 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1113491000168106 Multivitamin (Health Plus Vitamins) film-coated tablet, 200, jar 206334 1113481000168108 Multivitamin (Health Plus Vitamins) film-coated tablet, 200 1113461000168104 Multivitamin (Health Plus Vitamins) film-coated tablet 1113431000168107 Multivitamin (Health Plus Vitamins) 1113431000168107 Multivitamin (Health Plus Vitamins) 1113471000168105 calcium 162 mg + phosphorus 125 mg + magnesium 100 mg + potassium 40 mg + chloride 36.3 mg + ascorbic acid 60 mg + dl-alpha-tocopheryl 14.9 mg (16.4 units) + nicotinic acid 18 mg + betacarotene 1.2 mg + iron 4 mg + pantothenic acid 6.5 mg + zinc 5 mg + vitamin A 600.6 microgram + pyridoxine 2.4 mg + manganese 1 mg + colecalciferol 5 microgram (200 units) + thiamine 1.7 mg + riboflavin 1.6 mg + copper 1 mg + folic acid 200 microgram + biotin 150 microgram + iodine 100 microgram + chromium 25 microgram + molybdenum 25 microgram + selenium 25 microgram + phytomenadione 36 microgram + cyanocobalamin 1 microgram tablet, 200 1113451000168101 calcium 162 mg + phosphorus 125 mg + magnesium 100 mg + potassium 40 mg + chloride 36.3 mg + ascorbic acid 60 mg + dl-alpha-tocopheryl 14.9 mg (16.4 units) + nicotinic acid 18 mg + betacarotene 1.2 mg + iron 4 mg + pantothenic acid 6.5 mg + zinc 5 mg + vitamin A 600.6 microgram + pyridoxine 2.4 mg + manganese 1 mg + colecalciferol 5 microgram (200 units) + thiamine 1.7 mg + riboflavin 1.6 mg + copper 1 mg + folic acid 200 microgram + biotin 150 microgram + iodine 100 microgram + chromium 25 microgram + molybdenum 25 microgram + selenium 25 microgram + phytomenadione 36 microgram + cyanocobalamin 1 microgram tablet 1113441000168103 calcium + phosphorus + magnesium + potassium + chloride + ascorbic acid + dl-alpha-tocopheryl + nicotinic acid + betacarotene + iron + pantothenic acid + zinc + vitamin A + pyridoxine + manganese + colecalciferol + thiamine + riboflavin + copper + folic acid + biotin + iodine + chromium + molybdenum + selenium + phytomenadione + cyanocobalamin +844241000168102 Zentel 200 mg tablet, 6, blister pack 43928 844221000168108 Zentel 200 mg tablet, 6 844201000168104 Zentel 200 mg tablet 4225011000036100 Zentel 4225011000036100 Zentel 844211000168101 albendazole 200 mg tablet, 6 844191000168102 albendazole 200 mg tablet 21425011000036106 albendazole +50323011000036101 XPHEN, TYR Maxamaid powder for oral liquid, 500 g, can 49278011000036107 XPHEN, TYR Maxamaid powder for oral liquid, 500 g 48743011000036107 XPHEN, TYR Maxamaid powder for oral liquid 63881000168101 XPHEN, TYR Maxamaid 63881000168101 XPHEN, TYR Maxamaid 51269011000036108 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 500 g 50801011000036109 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +21194011000036102 Kalixocin 250 mg film-coated tablet, 14, blister pack 99707 14332011000036100 Kalixocin 250 mg film-coated tablet, 14 7616011000036105 Kalixocin 250 mg film-coated tablet 3861011000036104 Kalixocin 3861011000036104 Kalixocin 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +884381000168105 Bosentan (Accord) 62.5 mg film-coated tablet, 112, blister pack 235882 884371000168107 Bosentan (Accord) 62.5 mg film-coated tablet, 112 884221000168100 Bosentan (Accord) 62.5 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884361000168101 bosentan 62.5 mg tablet, 112 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +21041011000036100 Ciprofloxacin (GenRx) 750 mg film-coated tablet, 14, blister pack 96874 14186011000036102 Ciprofloxacin (GenRx) 750 mg film-coated tablet, 14 7467011000036106 Ciprofloxacin (GenRx) 750 mg film-coated tablet 3968011000036100 Ciprofloxacin (GenRx) 3968011000036100 Ciprofloxacin (GenRx) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +21041011000036100 Ciprofloxacin (GenRx) 750 mg film-coated tablet, 14, blister pack 135913 14186011000036102 Ciprofloxacin (GenRx) 750 mg film-coated tablet, 14 7467011000036106 Ciprofloxacin (GenRx) 750 mg film-coated tablet 3968011000036100 Ciprofloxacin (GenRx) 3968011000036100 Ciprofloxacin (GenRx) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +862951000168105 Amitriptyline (AC) 50 mg tablet, 50, bottle 232111 862941000168108 Amitriptyline (AC) 50 mg tablet, 50 862931000168104 Amitriptyline (AC) 50 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +788011000168105 Atelvia Once-a-Month 150 mg film-coated tablet, 4, blister pack 163755 788001000168107 Atelvia Once-a-Month 150 mg film-coated tablet, 4 787931000168102 Atelvia Once-a-Month 150 mg film-coated tablet 787921000168100 Atelvia Once-a-Month 787921000168100 Atelvia Once-a-Month 78197011000036107 risedronate sodium 150 mg tablet, 4 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +61219011000036105 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 12, blister pack 76461 57155011000036104 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet, 12 54219011000036102 Paracetamol Capseal (Chemists' Own) 500 mg gelatin coated tablet 16981000168101 Paracetamol Capseal (Chemists' Own) 16981000168101 Paracetamol Capseal (Chemists' Own) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1061611000168108 Olanzapine ODT (Auro) 5 mg orally disintegrating tablet, 7, blister pack 212895 1061601000168105 Olanzapine ODT (Auro) 5 mg orally disintegrating tablet, 7 1061571000168104 Olanzapine ODT (Auro) 5 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 1043171000168104 olanzapine 5 mg orally disintegrating tablet, 7 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +104621000036100 Donepezil Hydrochloride (GA) 5 mg film-coated tablet, 28, blister pack 193668 101881000036101 Donepezil Hydrochloride (GA) 5 mg film-coated tablet, 28 98541000036108 Donepezil Hydrochloride (GA) 5 mg film-coated tablet 98061000036104 Donepezil Hydrochloride (GA) 98061000036104 Donepezil Hydrochloride (GA) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +929110011000036102 Pioglitazone (Chemmart) 15 mg uncoated tablet, 98, blister pack 166918 928471011000036104 Pioglitazone (Chemmart) 15 mg uncoated tablet, 98 927991011000036102 Pioglitazone (Chemmart) 15 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929268011000036102 pioglitazone 15 mg tablet, 98 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +913281000168107 Cefepime (Sandoz) 500 mg powder for injection, 1 vial 171735 913271000168109 Cefepime (Sandoz) 500 mg powder for injection, 1 vial 913261000168103 Cefepime (Sandoz) 500 mg powder for injection, 500 mg vial 40391000036104 Cefepime (Sandoz) 40391000036104 Cefepime (Sandoz) 910481000168102 cefepime 500 mg injection, 1 vial 910461000168106 cefepime 500 mg injection, vial 21558011000036108 cefepime +656801000168100 Pravastatin Sodium (AN) 80 mg uncoated tablet, 30, blister pack 191706 656501000168102 Pravastatin Sodium (AN) 80 mg uncoated tablet, 30 656491000168109 Pravastatin Sodium (AN) 80 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +955031000168109 Extine 10 mg film-coated tablet, 30, blister pack 120725 955021000168106 Extine 10 mg film-coated tablet, 30 955001000168102 Extine 10 mg film-coated tablet 4015011000036100 Extine 4015011000036100 Extine 955011000168104 paroxetine 10 mg tablet, 30 954991000168108 paroxetine 10 mg tablet 21618011000036109 paroxetine +933246641000036103 Lisinopril (PS) 10 mg uncoated tablet, 10, blister pack 152713 933243281000036103 Lisinopril (PS) 10 mg uncoated tablet, 10 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 86417011000036104 lisinopril 10 mg tablet, 10 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +909031000168101 Celecoxib (Bellwether) 200 mg hard capsule, 50, blister pack 196186 909021000168104 Celecoxib (Bellwether) 200 mg hard capsule, 50 908951000168103 Celecoxib (Bellwether) 200 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +933213461000036101 Citalopram (IPCA) 10 mg film-coated tablet, 28, blister pack 158868 933203051000036107 Citalopram (IPCA) 10 mg film-coated tablet, 28 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +43614011000036108 Carvedilol (GenRx) 6.25 mg film-coated tablet, 60, bottle 123835 11748011000036108 Carvedilol (GenRx) 6.25 mg film-coated tablet, 60 4830011000036103 Carvedilol (GenRx) 6.25 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +20543011000036107 Saizen Click.Easy (1 x 8 mg vial, 1 x 1.37 mL inert diluent cartridge), 1 pack, composite pack 79594 13740011000036103 Saizen Click.Easy (1 x 8 mg vial, 1 x 1.37 mL inert diluent cartridge), 1 pack 7023011000036102 Saizen Click.Easy (somatropin 8 mg) powder for injection, 8 mg vial 59711000168107 Saizen Click.Easy 59711000168107 Saizen Click.Easy 27910011000036109 somatropin 8 mg injection [1 vial] (&) inert substance diluent [1.37 mL cartridge], 1 pack 23234011000036102 somatropin 8 mg injection, vial 21295011000036100 somatropin +20543011000036107 Saizen Click.Easy (1 x 8 mg vial, 1 x 1.37 mL inert diluent cartridge), 1 pack, composite pack 79594 13740011000036103 Saizen Click.Easy (1 x 8 mg vial, 1 x 1.37 mL inert diluent cartridge), 1 pack 645991000168105 Saizen Click.Easy (inert substance) diluent, 1.37 mL cartridge 59711000168107 Saizen Click.Easy 59711000168107 Saizen Click.Easy 27910011000036109 somatropin 8 mg injection [1 vial] (&) inert substance diluent [1.37 mL cartridge], 1 pack 645981000168107 inert substance diluent, 1.37 mL cartridge 21220011000036103 inert substance +920351000168106 Montelukast (APL) 4 mg chewable tablet, 28, blister pack 193238 920341000168109 Montelukast (APL) 4 mg chewable tablet, 28 920301000168107 Montelukast (APL) 4 mg chewable tablet 157801000036105 Montelukast (APL) 157801000036105 Montelukast (APL) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +69726011000036106 Aerius 5 mg film-coated tablet, 5, blister pack 91116 67525011000036108 Aerius 5 mg film-coated tablet, 5 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72027011000036103 desloratadine 5 mg tablet, 5 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +835561000168103 Actacode Linctus 5 mg/mL oral liquid solution, 100 mL, bottle 19643 835551000168100 Actacode Linctus 5 mg/mL oral liquid solution, 100 mL 835541000168102 Actacode Linctus 5 mg/mL oral liquid solution 35943011000036108 Actacode Linctus 35943011000036108 Actacode Linctus 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +835561000168103 Actacode Linctus 5 mg/mL oral liquid solution, 100 mL, bottle 124245 835551000168100 Actacode Linctus 5 mg/mL oral liquid solution, 100 mL 835541000168102 Actacode Linctus 5 mg/mL oral liquid solution 35943011000036108 Actacode Linctus 35943011000036108 Actacode Linctus 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +170951000036104 Paracetamol (BNM) 1 g/100 mL injection solution, 12 x 100 mL bags 201870 170191000036106 Paracetamol (BNM) 1 g/100 mL injection solution, 12 x 100 mL bags 169171000036105 Paracetamol (BNM) 1 g/100 mL injection solution, 100 mL bag 168801000036101 Paracetamol (BNM) 168801000036101 Paracetamol (BNM) 155791000036100 paracetamol 1 g/100 mL injection, 12 x 100 mL bags 154741000036107 paracetamol 1 g/100 mL injection, bag 21433011000036107 paracetamol +865621000168104 Amitriptyline (GPPL) 50 mg tablet, 1000, blister pack 232138 865611000168106 Amitriptyline (GPPL) 50 mg tablet, 1000 865541000168109 Amitriptyline (GPPL) 50 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1070151000168101 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet, 24, blister pack 188893 1070141000168103 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet, 24 1070091000168105 Pain Relief Paracetamol plus Codeine 15 (Cipla) uncoated tablet 1070061000168103 Pain Relief Paracetamol plus Codeine 15 (Cipla) 1070061000168103 Pain Relief Paracetamol plus Codeine 15 (Cipla) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1001191000168108 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 100, bottle 158907 1001181000168105 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 100 1001141000168100 Valaciclovir 1000 (Apo) 1 g film-coated tablet 1001131000168109 Valaciclovir 1000 (Apo) 1001131000168109 Valaciclovir 1000 (Apo) 1001171000168107 valaciclovir 1 g tablet, 100 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +104301000036101 Abisart 150 mg film-coated tablet, 30, blister pack 170776 101481000036104 Abisart 150 mg film-coated tablet, 30 98721000036106 Abisart 150 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +104301000036101 Abisart 150 mg film-coated tablet, 30, blister pack 214579 101481000036104 Abisart 150 mg film-coated tablet, 30 98721000036106 Abisart 150 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +698541000168105 Lucrin Depot Paediatric (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 218936 698531000168101 Lucrin Depot Paediatric (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 698491000168101 Lucrin Depot Paediatric (leuprorelin acetate 30 mg) modified release injection, 30 mg syringe 698271000168101 Lucrin Depot Paediatric 698271000168101 Lucrin Depot Paediatric 698521000168104 leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 23534011000036107 leuprorelin acetate 30 mg modified release injection, syringe 21320011000036109 leuprorelin +698541000168105 Lucrin Depot Paediatric (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 218936 698531000168101 Lucrin Depot Paediatric (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 698511000168106 Lucrin Depot Paediatric (inert substance) diluent, 1.5 mL syringe 698271000168101 Lucrin Depot Paediatric 698271000168101 Lucrin Depot Paediatric 698521000168104 leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 698501000168108 inert substance diluent, 1.5 mL syringe 21220011000036103 inert substance +861301000168101 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack 72555 861291000168102 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16 861281000168100 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge 43461000168100 Anti-Inflammatory Lozenge (Amcal) 43461000168100 Anti-Inflammatory Lozenge (Amcal) 861241000168105 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +909011000168106 Celecoxib (Bellwether) 200 mg hard capsule, 30, blister pack 196186 909001000168108 Celecoxib (Bellwether) 200 mg hard capsule, 30 908951000168103 Celecoxib (Bellwether) 200 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +939081000168108 Seronia 150 mg film-coated tablet, 90, blister pack 143715 939071000168105 Seronia 150 mg film-coated tablet, 90 939051000168101 Seronia 150 mg film-coated tablet 15121000036100 Seronia 15121000036100 Seronia 939061000168104 quetiapine 150 mg tablet, 90 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +721581000168108 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL, bottle 48143 721571000168105 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL 721511000168102 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +721581000168108 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL, bottle 178303 721571000168105 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL 721511000168102 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +735991000168103 Aspirin (Chemmart) 300 mg dispersible tablet, 24, strip pack 197881 735981000168101 Aspirin (Chemmart) 300 mg dispersible tablet, 24 735971000168104 Aspirin (Chemmart) 300 mg dispersible tablet 735961000168105 Aspirin (Chemmart) 735961000168105 Aspirin (Chemmart) 83711000036109 aspirin 300 mg dispersible tablet, 24 83601000036104 aspirin 300 mg dispersible tablet 21719011000036107 aspirin +1024241000168104 Betadine Sore Throat Lozenges Orange lozenge, 4, blister pack 227169 1024231000168108 Betadine Sore Throat Lozenges Orange lozenge, 4 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71524011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 4 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +903071000168101 Brillior 25 mg hard capsule, 56, blister pack 224337 903061000168107 Brillior 25 mg hard capsule, 56 902951000168100 Brillior 25 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1053051000168106 Targin 20/10 mg modified release tablet, 60, blister pack 156189 1053041000168109 Targin 20/10 mg modified release tablet, 60 923037011000036104 Targin 20/10 mg modified release tablet 14801000168107 Targin 20/10 mg 14801000168107 Targin 20/10 mg 1053031000168100 oxycodone hydrochloride 20 mg + naloxone hydrochloride 10 mg modified release tablet, 60 923975011000036101 oxycodone hydrochloride 20 mg + naloxone hydrochloride 10 mg modified release tablet 923931011000036100 oxycodone + naloxone +923411000168109 PKU Sphere15 Red Berry powder for oral liquid, 30 x 27 g sachets 923401000168106 PKU Sphere15 Red Berry powder for oral liquid, 30 x 27 g sachets 923381000168106 PKU Sphere15 Red Berry powder for oral liquid, 27 g sachet 923361000168102 PKU Sphere15 923361000168102 PKU Sphere15 923391000168109 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 30 x 27 g sachets 923371000168108 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine powder for oral liquid, 27 g sachet 900801000168105 glycomacropeptide formula with docosahexaenoic acid and low phenylalanine +86029011000036105 Coveram 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 154440 85681011000036109 Coveram 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10 85331011000036107 Coveram 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet 18091000168103 Coveram 10mg/5mg (perindopril arginine/amlodipine) 18091000168103 Coveram 10mg/5mg (perindopril arginine/amlodipine) 86427011000036108 perindopril arginine 10 mg + amlodipine 5 mg tablet, 10 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +921828011000036109 Cartia 100 mg enteric tablet, 28, blister pack 192506 921400011000036107 Cartia 100 mg enteric tablet, 28 4900011000036104 Cartia 100 mg enteric tablet 3338011000036100 Cartia 3338011000036100 Cartia 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +921828011000036109 Cartia 100 mg enteric tablet, 28, blister pack 12976 921400011000036107 Cartia 100 mg enteric tablet, 28 4900011000036104 Cartia 100 mg enteric tablet 3338011000036100 Cartia 3338011000036100 Cartia 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +933212411000036105 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 7, blister pack 142238 933201201000036101 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 7 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200971000036107 donepezil hydrochloride 10 mg tablet, 7 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +55351000036102 Stomach Ache and Pain Relief (Chemists' Own) 10 mg film-coated tablet, 20, blister pack 147608 51161000036103 Stomach Ache and Pain Relief (Chemists' Own) 10 mg film-coated tablet, 20 49091000036105 Stomach Ache and Pain Relief (Chemists' Own) 10 mg film-coated tablet 48091000036103 Stomach Ache and Pain Relief (Chemists' Own) 48091000036103 Stomach Ache and Pain Relief (Chemists' Own) 46373011000036102 hyoscine butylbromide 10 mg tablet, 20 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +69393011000036106 Eno powder for oral liquid, 100 g, jar 40655 67193011000036107 Eno powder for oral liquid, 100 g 65237011000036106 Eno powder for oral liquid 65094011000036101 Eno 65094011000036101 Eno 71752011000036104 citric acid 436 mg/g + sodium bicarbonate 464 mg/g + sodium carbonate 100 mg/g powder for oral liquid, 100 g 70170011000036102 citric acid 436 mg/g + sodium bicarbonate 464 mg/g + sodium carbonate 100 mg/g powder for oral liquid 69783011000036106 citric acid + bicarbonate + carbonate +836781000168105 Infanrix Penta injection suspension, 10 x 0.5 mL syringes 132883 836771000168107 Infanrix Penta injection suspension, 10 x 0.5 mL syringes 836731000168109 Infanrix Penta injection suspension, 0.5 mL syringe 73711011000036106 Infanrix Penta 73711011000036106 Infanrix Penta 836761000168101 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 10 x 0.5 mL syringes 836651000168107 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 836641000168105 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine +1006921000168101 Maxatan 10 mg orally disintegrating tablet, 1, blister pack 222209 1006911000168108 Maxatan 10 mg orally disintegrating tablet, 1 1006901000168105 Maxatan 10 mg orally disintegrating tablet 1006861000168104 Maxatan 1006861000168104 Maxatan 798771000168104 rizatriptan 10 mg orally disintegrating tablet, 1 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +34834011000036105 Concerta 36 mg modified release tablet, 56, bottle 93863 34409011000036109 Concerta 36 mg modified release tablet, 56 7354011000036103 Concerta 36 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35248011000036102 methylphenidate hydrochloride 36 mg modified release tablet, 56 23438011000036105 methylphenidate hydrochloride 36 mg modified release tablet 21277011000036101 methylphenidate +60689011000036100 Voltaren Rapid 25 mg sugar coated tablet, 10, blister pack 42942 56647011000036109 Voltaren Rapid 25 mg sugar coated tablet, 10 54020011000036108 Voltaren Rapid 25 mg sugar coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63484011000036104 diclofenac potassium 25 mg tablet, 10 61991011000036106 diclofenac potassium 25 mg tablet 21288011000036105 diclofenac +1001031000168108 Pregabalin (Apo) 50 mg hard capsule, 56, bottle 193246 1001021000168105 Pregabalin (Apo) 50 mg hard capsule, 56 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1104911000168105 Hemlibra 30 mg/mL injection solution, 1 mL vial 293761 1104901000168107 Hemlibra 30 mg/mL injection solution, 1 mL vial 1104881000168105 Hemlibra 30 mg/mL injection solution, vial 1104651000168104 Hemlibra 1104651000168104 Hemlibra 1104891000168108 emicizumab 30 mg/mL injection, 1 mL vial 1104871000168107 emicizumab 30 mg/mL injection, vial 1104681000168106 emicizumab +1084581000168102 EDTA plus Sodium Ascorbate (Biological Therapies) powder for oral liquid, 500 g, bottle 22417 1084571000168100 EDTA plus Sodium Ascorbate (Biological Therapies) powder for oral liquid, 500 g 1084521000168101 EDTA plus Sodium Ascorbate (Biological Therapies) powder for oral liquid 1084501000168105 EDTA plus Sodium Ascorbate (Biological Therapies) 1084501000168105 EDTA plus Sodium Ascorbate (Biological Therapies) 1084561000168106 edetate disodium 500 mg/g + sodium ascorbate 500 mg/g powder for oral liquid, 500 g 1084511000168108 edetate disodium 500 mg/g + sodium ascorbate 500 mg/g powder for oral liquid 680831000168100 edetic acid + ascorbic acid +931438011000036102 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 40 x 50 mL bags 144596 930617011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 40 x 50 mL bags 929976011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932373011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, 40 x 50 mL bags 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +717241000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 30, bottle 167313 717221000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 30 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +60312011000036104 Donnagel oral liquid suspension, 200 mL, bottle 13871 56271011000036102 Donnagel oral liquid suspension, 200 mL 53857011000036107 Donnagel oral liquid suspension, 30 mL 53406011000036105 Donnagel 53406011000036105 Donnagel 63278011000036102 atropine sulfate monohydrate 19.4 microgram/30 mL + hyoscine hydrobromide trihydrate 6.5 microgram/30 mL + hyoscyamine sulfate dihydrate 103.7 microgram/30 mL + kaolin 6 g/30 mL + pectin 142.8 mg/30 mL oral liquid, 200 mL 61908011000036104 atropine sulfate monohydrate 19.4 microgram/30 mL + hyoscine hydrobromide trihydrate 6.5 microgram/30 mL + hyoscyamine sulfate dihydrate 103.7 microgram/30 mL + kaolin 6 g/30 mL + pectin 142.8 mg/30 mL oral liquid 61731011000036105 atropine sulfate monohydrate + hyoscine hydrobromide trihydrate + hyoscyamine + kaolin + pectin +871581000168107 Gastrolyte Citrus effervescent tablet, 20, sachet 52678 871571000168109 Gastrolyte Citrus effervescent tablet, 20 871551000168100 Gastrolyte Citrus effervescent tablet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +700141000168106 Gemcitabine (Kabi) 2 g/52.6 mL injection, 52.6 mL vial 220682 700131000168102 Gemcitabine (Kabi) 2 g/52.6 mL injection, 52.6 mL vial 700121000168100 Gemcitabine (Kabi) 2 g/52.6 mL injection, 52.6 mL vial 924404011000036105 Gemcitabine (Kabi) 924404011000036105 Gemcitabine (Kabi) 924186011000036102 gemcitabine 2 g/52.6 mL injection, 52.6 mL vial 923988011000036102 gemcitabine 2 g/52.6 mL injection, vial 21644011000036108 gemcitabine +1038661000168107 Atorvastatin (GA) 80 mg film-coated tablet, 30, blister pack 178523 1038651000168105 Atorvastatin (GA) 80 mg film-coated tablet, 30 1038601000168106 Atorvastatin (GA) 80 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +170931000036107 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 25, blister pack 196502 170171000036107 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 25 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +983931000168101 Aranesp 200 microgram/0.4 mL injection solution, 0.4 mL syringe 77960 983921000168104 Aranesp 200 microgram/0.4 mL injection solution, 0.4 mL syringe 983901000168108 Aranesp 200 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983911000168106 darbepoetin alfa 200 microgram/0.4 mL injection, 0.4 mL syringe 983891000168109 darbepoetin alfa 200 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +1003861000168107 Losartan (Apo) 25 mg film-coated tablet, 1000, bottle 201803 1003851000168105 Losartan (Apo) 25 mg film-coated tablet, 1000 1003831000168104 Losartan (Apo) 25 mg film-coated tablet 1003821000168102 Losartan (Apo) 1003821000168102 Losartan (Apo) 1003841000168108 losartan potassium 25 mg tablet, 1000 933219981000036104 losartan potassium 25 mg tablet 44887011000036108 losartan +84351011000036102 Loratadine (Chemmart) 10 mg uncoated tablet, 30, blister pack 160830 84044011000036103 Loratadine (Chemmart) 10 mg uncoated tablet, 30 83667011000036108 Loratadine (Chemmart) 10 mg uncoated tablet 83581011000036108 Loratadine (Chemmart) 83581011000036108 Loratadine (Chemmart) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +37660011000036105 Prednisolone Sodium Phosphate Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses, tube 32233 36926011000036102 Prednisolone Sodium Phosphate Minims (Bausch & Lomb) 0.5% eye drops solution, 20 x 0.5 mL unit doses 36257011000036104 Prednisolone Sodium Phosphate Minims (Bausch & Lomb) 0.5% eye drops solution, 0.5 mL unit dose 58421000168103 Prednisolone Sodium Phosphate Minims (Bausch & Lomb) 58421000168103 Prednisolone Sodium Phosphate Minims (Bausch & Lomb) 38807011000036109 prednisolone sodium phosphate 0.5% eye drops, 20 x 0.5 mL unit doses 38017011000036108 prednisolone sodium phosphate 0.5% eye drops, unit dose 21374011000036100 prednisolone sodium phosphate +19893011000036102 Flutamin 250 mg uncoated tablet, 100, blister pack 65675 13140011000036109 Flutamin 250 mg uncoated tablet, 100 6423011000036109 Flutamin 250 mg uncoated tablet 3543011000036108 Flutamin 3543011000036108 Flutamin 28339011000036105 flutamide 250 mg tablet, 100 23649011000036103 flutamide 250 mg tablet 21762011000036101 flutamide +61536011000036101 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 500 mL, bottle 93726 57461011000036107 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 500 mL 54309011000036109 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 5 mL 39631000168109 Cold and Cough Elixir (Pharmacy Health) 39631000168109 Cold and Cough Elixir (Pharmacy Health) 63872011000036108 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 500 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +839891000168106 Ipol injection solution, 0.5 mL syringe 47217 839881000168108 Ipol injection solution, 0.5 mL syringe 839861000168104 Ipol injection solution, 0.5 mL syringe 73777011000036108 Ipol 73777011000036108 Ipol 839871000168105 polio trivalent inactivated vaccine injection, 0.5 mL syringe 839851000168101 polio trivalent inactivated vaccine injection, 0.5 mL syringe 839841000168103 polio trivalent inactivated vaccine +60843011000036101 Aspro Clear 300 mg effervescent tablet, 24, strip pack 58566 56799011000036103 Aspro Clear 300 mg effervescent tablet, 24 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 83281000036107 aspirin 300 mg effervescent tablet, 24 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +977911000168107 Pregabalin (Teva) 50 mg hard capsule, 60, blister pack 229555 977901000168109 Pregabalin (Teva) 50 mg hard capsule, 60 977831000168106 Pregabalin (Teva) 50 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1078371000168109 Atomoxetine (GPPL) 100 mg hard capsule, 14, blister pack 234836 1078361000168103 Atomoxetine (GPPL) 100 mg hard capsule, 14 1078331000168106 Atomoxetine (GPPL) 100 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830121000168107 atomoxetine 100 mg capsule, 14 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +905081000168102 Amisulpride (AJS) 100 mg uncoated tablet, 60, blister pack 234695 905071000168100 Amisulpride (AJS) 100 mg uncoated tablet, 60 905041000168107 Amisulpride (AJS) 100 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +56061000036108 Panthron 20 mg enteric tablet, 30, blister pack 158192 53111000036104 Panthron 20 mg enteric tablet, 30 48881000036107 Panthron 20 mg enteric tablet 933241031000036108 Panthron 933241031000036108 Panthron 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +994771000168104 Valganciclovir (Juno) 450 mg film-coated tablet, 60, bottle 286499 994761000168105 Valganciclovir (Juno) 450 mg film-coated tablet, 60 994751000168108 Valganciclovir (Juno) 450 mg film-coated tablet 994741000168106 Valganciclovir (Juno) 994741000168106 Valganciclovir (Juno) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +61391011000036104 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 30, blister pack 81957 57316011000036106 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 30 54270011000036100 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet 53531011000036104 Period Pain Relief (Pharmacy Health) 53531011000036104 Period Pain Relief (Pharmacy Health) 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +701651000168106 Fentanyl (GH) 100 microgram/2 mL injection solution, 5 x 2 mL ampoules 201872 701641000168109 Fentanyl (GH) 100 microgram/2 mL injection solution, 5 x 2 mL ampoules 701631000168100 Fentanyl (GH) 100 microgram/2 mL injection solution, 2 mL ampoule 701591000168100 Fentanyl (GH) 701591000168100 Fentanyl (GH) 46121011000036108 fentanyl 100 microgram/2 mL injection, 5 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +874851000168100 Beprol 3.75 mg film-coated tablet, 28, blister pack 175916 874841000168102 Beprol 3.75 mg film-coated tablet, 28 874821000168108 Beprol 3.75 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 874831000168106 bisoprolol fumarate 3.75 mg tablet, 28 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +1110431000168100 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 98, blister pack 219061 1110421000168103 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 98 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82555011000036108 clopidogrel 75 mg + aspirin 100 mg tablet, 98 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +77137011000036105 Povidone-Iodine (Pfizer (Perth)) 10% application, 100 mL, bottle 10796 76577011000036104 Povidone-Iodine (Pfizer (Perth)) 10% application, 100 mL 76046011000036103 Povidone-Iodine (Pfizer (Perth)) 10% application 75968011000036102 Povidone-Iodine (Pfizer (Perth)) 75968011000036102 Povidone-Iodine (Pfizer (Perth)) 78132011000036103 povidone-iodine 10% application, 100 mL 77504011000036104 povidone-iodine 10% application 21660011000036108 povidone-iodine +17939011000036106 Madopar 62.5 hard capsule, 100, bottle 13744 12002011000036104 Madopar 62.5 hard capsule, 100 5070011000036107 Madopar 62.5 hard capsule 3221000168104 Madopar 62.5 3221000168104 Madopar 62.5 26840011000036105 levodopa 50 mg + benserazide 12.5 mg capsule, 100 22221011000036106 levodopa 50 mg + benserazide 12.5 mg capsule 21331011000036100 levodopa + benserazide +39408011000036100 Ranzepam 5 mg uncoated tablet, 50, blister pack 134473 39292011000036100 Ranzepam 5 mg uncoated tablet, 50 39191011000036108 Ranzepam 5 mg uncoated tablet 39186011000036104 Ranzepam 39186011000036104 Ranzepam 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +933229811000036107 Sebirinse conditioner, 200 g, bottle 933223281000036101 Sebirinse conditioner, 200 g 933219581000036105 Sebirinse conditioner 933219101000036107 Sebirinse 933219101000036107 Sebirinse 933223291000036104 panthenol conditioner, 200 g 933219591000036107 panthenol conditioner 933232101000036105 panthenol +85531000036106 Razit 10 mg enteric tablet, 30, blister pack 189215 84661000036102 Razit 10 mg enteric tablet, 30 84211000036101 Razit 10 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 84671000036105 rabeprazole sodium 10 mg enteric tablet, 30 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +69135011000036107 Nicotinell Classic 2 mg chewing gum, 96, blister pack 152893 66935011000036102 Nicotinell Classic 2 mg chewing gum, 96 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +866581000168107 Amitriptyline (RS) 25 mg tablet, 50, blister pack 232142 866571000168109 Amitriptyline (RS) 25 mg tablet, 50 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +923913011000036105 Benadryl Mucus Relief Double Action oral liquid solution, 100 mL, bottle 168062 923457011000036106 Benadryl Mucus Relief Double Action oral liquid solution, 100 mL 923092011000036108 Benadryl Mucus Relief Double Action oral liquid solution, 5 mL 56931000168108 Benadryl Mucus Relief Double Action 56931000168108 Benadryl Mucus Relief Double Action 63966011000036107 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 62112011000036101 bromhexine hydrochloride 3 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +853721000168102 Alphastat 10 mg film-coated tablet, 7, bottle 212160 853531000168108 Alphastat 10 mg film-coated tablet, 7 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +853721000168102 Alphastat 10 mg film-coated tablet, 7, bottle 187389 853531000168108 Alphastat 10 mg film-coated tablet, 7 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +939401000168106 Prometax-5 4.6 mg/24 hours patch, 7, sachet 133427 939391000168109 Prometax-5 4.6 mg/24 hours patch, 7 939381000168106 Prometax-5 4.6 mg/24 hours patch 939371000168108 Prometax-5 939371000168108 Prometax-5 771451000168103 rivastigmine 4.6 mg/24 hours patch, 7 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +59883011000036108 Acid and Heartburn Relief (Terry White Chemists) 150 mg film-coated tablet, 14, strip pack 116351 55845011000036105 Acid and Heartburn Relief (Terry White Chemists) 150 mg film-coated tablet, 14 53648011000036102 Acid and Heartburn Relief (Terry White Chemists) 150 mg film-coated tablet 53187011000036108 Acid and Heartburn Relief (Terry White Chemists) 53187011000036108 Acid and Heartburn Relief (Terry White Chemists) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +21195011000036103 Estraderm 100 microgram/24 hours patch, 8, sachet 9970 14333011000036107 Estraderm 100 microgram/24 hours patch, 8 7617011000036108 Estraderm 100 microgram/24 hours patch 4174011000036102 Estraderm 4174011000036102 Estraderm 28324011000036107 estradiol 100 microgram/24 hours patch, 8 23636011000036108 estradiol 100 microgram/24 hours patch 21238011000036103 estradiol +797781000168102 Paracetamol (AN) 1 g/100 mL injection solution, 10 x 100 mL vials 172315 797771000168100 Paracetamol (AN) 1 g/100 mL injection solution, 10 x 100 mL vials 797741000168107 Paracetamol (AN) 1 g/100 mL injection solution, 100 mL vial 797731000168103 Paracetamol (AN) 797731000168103 Paracetamol (AN) 164061000036104 paracetamol 1 g/100 mL injection, 10 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +19481011000036105 Augmentin Duo Forte 875/125 film-coated tablet, 10, blister pack 54900 12758011000036106 Augmentin Duo Forte 875/125 film-coated tablet, 10 6052011000036107 Augmentin Duo Forte 875/125 film-coated tablet 49111000168106 Augmentin Duo Forte 875/125 49111000168106 Augmentin Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1001231000168104 Valaciclovir (Apo) 500 mg film-coated tablet, 100, bottle 158910 928332011000036101 Valaciclovir (Apo) 500 mg film-coated tablet, 100 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +50322011000036108 Risperidone (GA) 1 mg film-coated tablet, 60, blister pack 127770 49553011000036109 Risperidone (GA) 1 mg film-coated tablet, 60 48628011000036106 Risperidone (GA) 1 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +44308011000036105 Differin 0.1% cream, 5 g, tube 66174 41775011000036103 Differin 0.1% cream, 5 g 40194011000036109 Differin 0.1% cream 39740011000036103 Differin 39740011000036103 Differin 46582011000036103 adapalene 0.1% cream, 5 g 45228011000036103 adapalene 0.1% cream 44932011000036106 adapalene +1041951000168106 Atorvastatin (DRLA) 80 mg film-coated tablet, 30, blister pack 198830 1041941000168109 Atorvastatin (DRLA) 80 mg film-coated tablet, 30 1041931000168100 Atorvastatin (DRLA) 80 mg film-coated tablet 1040891000168103 Atorvastatin (DRLA) 1040891000168103 Atorvastatin (DRLA) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +104801000036109 Irbesartan HCTZ 300/12.5 (Chemmart) film-coated tablet, 30, blister pack 175204 101941000036100 Irbesartan HCTZ 300/12.5 (Chemmart) film-coated tablet, 30 98671000036100 Irbesartan HCTZ 300/12.5 (Chemmart) film-coated tablet 42351000168100 Irbesartan HCTZ 300/12.5 (Chemmart) 42351000168100 Irbesartan HCTZ 300/12.5 (Chemmart) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104801000036109 Irbesartan HCTZ 300/12.5 (Chemmart) film-coated tablet, 30, blister pack 216081 101941000036100 Irbesartan HCTZ 300/12.5 (Chemmart) film-coated tablet, 30 98671000036100 Irbesartan HCTZ 300/12.5 (Chemmart) film-coated tablet 42351000168100 Irbesartan HCTZ 300/12.5 (Chemmart) 42351000168100 Irbesartan HCTZ 300/12.5 (Chemmart) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +868431000168108 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags 16847 868421000168105 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags 868341000168106 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 27441000168109 Dianeal PD-4 with Glucose 2.5% Freeline 27441000168109 Dianeal PD-4 with Glucose 2.5% Freeline 868411000168103 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags 868331000168102 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +1059321000168102 Atomoxetine (Medis) 25 mg hard capsule, 7, blister pack 238330 1059311000168109 Atomoxetine (Medis) 25 mg hard capsule, 7 1059281000168107 Atomoxetine (Medis) 25 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +82380011000036106 Duocover 75 mg/100 mg film-coated tablet, 100, blister pack 151075 82169011000036107 Duocover 75 mg/100 mg film-coated tablet, 100 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82543011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 100 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +20235011000036104 Solian 400 mg film-coated tablet, 60, blister pack 74272 13446011000036106 Solian 400 mg film-coated tablet, 60 6728011000036109 Solian 400 mg film-coated tablet 4321011000036105 Solian 4321011000036105 Solian 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +969221000168106 Aripiprazole (AN) 15 mg uncoated tablet, 28, blister pack 198206 969211000168104 Aripiprazole (AN) 15 mg uncoated tablet, 28 969201000168102 Aripiprazole (AN) 15 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 788021000168103 aripiprazole 15 mg tablet, 28 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +933230561000036104 Gilenya 500 microgram hard capsule, 28, blister pack 169890 933224601000036107 Gilenya 500 microgram hard capsule, 28 933220321000036100 Gilenya 500 microgram hard capsule 933218951000036102 Gilenya 933218951000036102 Gilenya 933224611000036109 fingolimod 500 microgram capsule, 28 933220331000036103 fingolimod 500 microgram capsule 933232161000036109 fingolimod +866261000168100 Paracetamol Children's Infant Drops 1 Month to 2 Years (Apohealth) 100 mg/mL oral liquid solution, 20 mL, bottle 227873 866251000168102 Paracetamol Children's Infant Drops 1 Month to 2 Years (Apohealth) 100 mg/mL oral liquid solution, 20 mL 866241000168104 Paracetamol Children's Infant Drops 1 Month to 2 Years (Apohealth) 100 mg/mL oral liquid solution 866231000168108 Paracetamol Children's Infant Drops 1 Month to 2 Years (Apohealth) 866231000168108 Paracetamol Children's Infant Drops 1 Month to 2 Years (Apohealth) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +933212561000036106 Ranitidine (GN) 300 mg film-coated tablet, 30, blister pack 148526 933202241000036105 Ranitidine (GN) 300 mg film-coated tablet, 30 933195281000036109 Ranitidine (GN) 300 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +933247051000036106 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 250, blister pack 158413 933243871000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 250 933241491000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet 933241021000036106 Prochlorperazine Maleate (PS) 933241021000036106 Prochlorperazine Maleate (PS) 924172011000036105 prochlorperazine maleate 5 mg tablet, 250 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +43914011000036109 Trandolapril (DP) 2 mg hard capsule, 28, blister pack 135977 41406011000036107 Trandolapril (DP) 2 mg hard capsule, 28 39794011000036101 Trandolapril (DP) 2 mg hard capsule 39661011000036107 Trandolapril (DP) 39661011000036107 Trandolapril (DP) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +55991000036105 Multaq 400 mg film-coated tablet, 60, blister pack 156373 52821000036105 Multaq 400 mg film-coated tablet, 60 48961000036109 Multaq 400 mg film-coated tablet 48081000036100 Multaq 48081000036100 Multaq 52831000036107 dronedarone 400 mg tablet, 60 48971000036101 dronedarone 400 mg tablet 56861000036100 dronedarone +973561000168107 Pregabalin (Teva) 75 mg hard capsule, 21, blister pack 229587 973551000168105 Pregabalin (Teva) 75 mg hard capsule, 21 973481000168102 Pregabalin (Teva) 75 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854851000168103 pregabalin 75 mg capsule, 21 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1027211000168107 Neuroccord 75 mg hard capsule, 14, bottle 235854 1027201000168109 Neuroccord 75 mg hard capsule, 14 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +967071000168106 Diavance 500/5 film-coated tablet, 60, blister pack 120265 967061000168100 Diavance 500/5 film-coated tablet, 60 966981000168105 Diavance 500/5 film-coated tablet 966971000168107 Diavance 500/5 966971000168107 Diavance 500/5 967051000168102 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet, 60 23509011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet 21813011000036107 metformin + glibenclamide +1116871000168103 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 14, blister pack 161825 1116861000168109 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 14 1116831000168101 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 925430011000036104 amlodipine 5 mg + valsartan 320 mg tablet, 14 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +954471000168104 Norprolac 50 microgram uncoated tablet, 30, blister pack 48978 954461000168105 Norprolac 50 microgram uncoated tablet, 30 933220741000036107 Norprolac 50 microgram uncoated tablet 2964011000036100 Norprolac 2964011000036100 Norprolac 954451000168108 quinagolide 50 microgram tablet, 30 22577011000036105 quinagolide 50 microgram tablet 21459011000036109 quinagolide +39400011000036102 Tasigna 200 mg hard capsule, 42, blister pack 133086 39284011000036105 Tasigna 200 mg hard capsule, 42 39204011000036106 Tasigna 200 mg hard capsule 39187011000036101 Tasigna 39187011000036101 Tasigna 39481011000036108 nilotinib 200 mg capsule, 42 39436011000036107 nilotinib 200 mg capsule 39428011000036108 nilotinib +50631011000036109 Optium Omega diagnostic strip, 50, bottle 141948 49657011000036107 Optium Omega diagnostic strip, 50 48805011000036103 Optium Omega diagnostic strip 37251000168108 Optium Omega 37251000168108 Optium Omega 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +18822011000036102 Metrogyl 400 mg uncoated tablet, 5, bottle 17655 12140011000036101 Metrogyl 400 mg uncoated tablet, 5 5445011000036105 Metrogyl 400 mg uncoated tablet 4091011000036101 Metrogyl 4091011000036101 Metrogyl 26943011000036107 metronidazole 400 mg tablet, 5 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +1016401000168100 Aripiprazole (GX) 20 mg uncoated tablet, 30, blister pack 217225 1016381000168100 Aripiprazole (GX) 20 mg uncoated tablet, 30 1016371000168103 Aripiprazole (GX) 20 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +19790011000036108 Zofran Zydis 8 mg wafer, 10, blister pack 63055 13048011000036104 Zofran Zydis 8 mg wafer, 10 6333011000036103 Zofran Zydis 8 mg wafer 21371000168103 Zofran Zydis 21371000168103 Zofran Zydis 27518011000036101 ondansetron 8 mg wafer, 10 22859011000036100 ondansetron 8 mg wafer 21545011000036100 ondansetron +1033701000168109 Atomoxetine (GXP) 18 mg hard capsule, 14, blister pack 234838 1033691000168109 Atomoxetine (GXP) 18 mg hard capsule, 14 1033661000168102 Atomoxetine (GXP) 18 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830341000168103 atomoxetine 18 mg capsule, 14 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +60431011000036107 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 6 sachets 146071 56390011000036108 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 6 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63335011000036100 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 6 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +802121000168104 Nuvigil 50 mg uncoated tablet, 30, bottle 226561 802101000168108 Nuvigil 50 mg uncoated tablet, 30 802081000168101 Nuvigil 50 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802091000168103 armodafinil 50 mg tablet, 30 802071000168104 armodafinil 50 mg tablet 802061000168105 armodafinil +171751000036105 Liposomal Doxorubicin (Sun) 50 mg/25 mL concentrated injection, 25 mL vial 202827 171651000036100 Liposomal Doxorubicin (Sun) 50 mg/25 mL concentrated injection, 25 mL vial 171571000036109 Liposomal Doxorubicin (Sun) 50 mg/25 mL concentrated injection, 25 mL vial 171541000036102 Liposomal Doxorubicin (Sun) 171541000036102 Liposomal Doxorubicin (Sun) 114391000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, 25 mL vial 113171000036107 doxorubicin hydrochloride (as pegylated liposomal) 50 mg/25 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +933247121000036101 Omeprazole (PS) 20 mg enteric tablet, 5, blister pack 159688 933244111000036100 Omeprazole (PS) 20 mg enteric tablet, 5 933241511000036105 Omeprazole (PS) 20 mg enteric tablet 933240931000036101 Omeprazole (PS) 933240931000036101 Omeprazole (PS) 79831011000036103 omeprazole 20 mg enteric tablet, 5 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +727291000168101 Coversyl 2.5 mg film-coated tablet, 10, bottle 101564 727281000168104 Coversyl 2.5 mg film-coated tablet, 10 5612011000036107 Coversyl 2.5 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 727271000168102 perindopril arginine 2.5 mg tablet, 10 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +658491000168105 Telmigen 40 mg uncoated tablet, 28, blister pack 209344 658481000168107 Telmigen 40 mg uncoated tablet, 28 658471000168109 Telmigen 40 mg uncoated tablet 658431000168106 Telmigen 658431000168106 Telmigen 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +1024721000168100 Amclavox Duo Forte 875/125 film-coated tablet, 10, blister pack 288119 1024711000168107 Amclavox Duo Forte 875/125 film-coated tablet, 10 1024701000168109 Amclavox Duo Forte 875/125 film-coated tablet 1024691000168109 Amclavox Duo Forte 875/125 1024691000168109 Amclavox Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +746301000168104 Ceftriaxone (Alphapharm) 2 g powder for injection, 5 vials 164917 746291000168100 Ceftriaxone (Alphapharm) 2 g powder for injection, 5 vials 69841000036102 Ceftriaxone (Alphapharm) 2 g powder for injection, 2 g vial 69311000036105 Ceftriaxone (Alphapharm) 69311000036105 Ceftriaxone (Alphapharm) 746281000168103 ceftriaxone 2 g injection, 5 vials 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +17854011000036104 Pravastatin Sodium (Pharmacor) 40 mg uncoated tablet, 30, blister pack 130603 11897011000036100 Pravastatin Sodium (Pharmacor) 40 mg uncoated tablet, 30 5632011000036104 Pravastatin Sodium (Pharmacor) 40 mg uncoated tablet 3446011000036107 Pravastatin Sodium (Pharmacor) 3446011000036107 Pravastatin Sodium (Pharmacor) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +716441000168101 Omepro 20 mg enteric capsule, 140, blister pack 149516 716421000168107 Omepro 20 mg enteric capsule, 140 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716311000168109 omeprazole 20 mg enteric capsule, 140 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +949771000168108 Fluoxetine (Arrow) 20 mg capsule, 28, blister pack 140589 949761000168102 Fluoxetine (Arrow) 20 mg capsule, 28 949751000168104 Fluoxetine (Arrow) 20 mg capsule 949741000168101 Fluoxetine (Arrow) 949741000168101 Fluoxetine (Arrow) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +770131000168105 Oralair 300 IR sublingual tablet, 28, blister pack 770121000168107 Oralair 300 IR sublingual tablet, 28 770071000168107 Oralair 300 IR sublingual tablet 770051000168103 Oralair 300 IR 770051000168103 Oralair 300 IR 770111000168100 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet, 28 770061000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +1020701000168100 Asacol 400 mg enteric tablet, 180, blister pack 261419 1020691000168100 Asacol 400 mg enteric tablet, 180 1020581000168102 Asacol 400 mg enteric tablet 844981000168102 Asacol 844981000168102 Asacol 1020681000168103 mesalazine 400 mg enteric tablet, 180 1020571000168100 mesalazine 400 mg enteric tablet 21351011000036101 mesalazine +60449011000036107 Panadol Flu Strength Day and Night PE (16 x Day tablets, 8 x Night tablets), 24, blister pack 148714 56407011000036104 Panadol Flu Strength Day and Night PE (16 x Day tablets, 8 x Night tablets), 24 53910011000036107 Panadol Flu Strength Day and Night PE (Day) tablet 48271000168104 Panadol Flu Strength Day and Night PE 48391000168108 Panadol Flu Strength Day and Night PE (Day) 63346011000036106 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [16] (&) paracetamol 500 mg + dextromethorphan hydrobromide monohydrate 15 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet [8], 24 61921011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61764011000036104 paracetamol + phenylephrine + dextromethorphan +60449011000036107 Panadol Flu Strength Day and Night PE (16 x Day tablets, 8 x Night tablets), 24, blister pack 148714 56407011000036104 Panadol Flu Strength Day and Night PE (16 x Day tablets, 8 x Night tablets), 24 53911011000036100 Panadol Flu Strength Day and Night PE (Night) uncoated tablet 48271000168104 Panadol Flu Strength Day and Night PE 48511000168109 Panadol Flu Strength Day and Night PE (Night) 63346011000036106 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [16] (&) paracetamol 500 mg + dextromethorphan hydrobromide monohydrate 15 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet [8], 24 61922011000036109 paracetamol 500 mg + dextromethorphan hydrobromide monohydrate 15 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet 61815011000036101 paracetamol + dextromethorphan + phenylephrine + chlorphenamine +787371000168100 Arizole 10 mg uncoated tablet, 28, blister pack 198179 787361000168106 Arizole 10 mg uncoated tablet, 28 787341000168107 Arizole 10 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787351000168109 aripiprazole 10 mg tablet, 28 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +909491000168108 Chorit 10 mg film-coated tablet, 30, blister pack 179841 909421000168106 Chorit 10 mg film-coated tablet, 30 909391000168104 Chorit 10 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +19558011000036102 Thioprine 50 mg film-coated tablet, 100, blister pack 57002 12829011000036102 Thioprine 50 mg film-coated tablet, 100 6120011000036100 Thioprine 50 mg film-coated tablet 3993011000036107 Thioprine 3993011000036107 Thioprine 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +69547011000036105 Alu-Tab 600 mg film-coated tablet, 100, bottle 58664 67347011000036104 Alu-Tab 600 mg film-coated tablet, 100 65622011000036109 Alu-Tab 600 mg film-coated tablet 65168011000036104 Alu-Tab 65168011000036104 Alu-Tab 71892011000036109 aluminium hydroxide 600 mg tablet, 100 70235011000036106 aluminium hydroxide 600 mg tablet 69849011000036102 aluminium hydroxide +933229721000036108 Morphine Sulfate MR (Apotex) 10 mg modified release tablet, 60, blister pack 132251 933223561000036109 Morphine Sulfate MR (Apotex) 10 mg modified release tablet, 60 933219661000036101 Morphine Sulfate MR (Apotex) 10 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +746461000168108 Ceftazidime (Mylan) 1 g powder for injection, 5 vials 154825 746451000168106 Ceftazidime (Mylan) 1 g powder for injection, 5 vials 746421000168103 Ceftazidime (Mylan) 1 g powder for injection, vial 746141000168100 Ceftazidime (Mylan) 746141000168100 Ceftazidime (Mylan) 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +18899011000036101 Sigmacort 1% cream, 50 g, tube 19778 12207011000036105 Sigmacort 1% cream, 50 g 5811011000036107 Sigmacort 1% cream 3068011000036109 Sigmacort 3068011000036109 Sigmacort 28030011000036103 hydrocortisone acetate 1% cream, 50 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +701571000168101 Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules 16311 701561000168107 Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules 701541000168108 Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 5 mL ampoule 65156011000036106 Magnesium Sulfate (DBL) 65156011000036106 Magnesium Sulfate (DBL) 701551000168105 magnesium sulfate heptahydrate 2.47 g/5 mL injection, 10 x 5 mL ampoules 701531000168104 magnesium sulfate heptahydrate 2.47 g/5 mL injection, ampoule 69777011000036105 magnesium sulfate heptahydrate +50554011000036101 Primolut N 5 mg uncoated tablet, 30, strip pack 134491 11355011000036100 Primolut N 5 mg uncoated tablet, 30 5473011000036105 Primolut N 5 mg uncoated tablet 28521000168100 Primolut N 28521000168100 Primolut N 26619011000036103 norethisterone 5 mg tablet, 30 22025011000036102 norethisterone 5 mg tablet 21579011000036102 norethisterone +44480011000036101 Ursofalk 50 mg/mL oral liquid suspension, 250 mL, bottle 75484 41935011000036108 Ursofalk 50 mg/mL oral liquid suspension, 250 mL 40272011000036108 Ursofalk 50 mg/mL oral liquid suspension 3056011000036102 Ursofalk 3056011000036102 Ursofalk 46722011000036107 ursodeoxycholic acid 50 mg/mL oral liquid, 250 mL 45282011000036109 ursodeoxycholic acid 50 mg/mL oral liquid 21849011000036102 ursodeoxycholic acid +926736011000036107 Lisinopril (GA) 2.5 mg uncoated tablet, 100, blister pack 106498 926083011000036106 Lisinopril (GA) 2.5 mg uncoated tablet, 100 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927298011000036105 lisinopril 2.5 mg tablet, 100 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +933229731000036105 Ceftriaxone (Max Pharma) 1 g powder for injection, 5 vials 104489 933223191000036105 Ceftriaxone (Max Pharma) 1 g powder for injection, 5 vials 933219411000036101 Ceftriaxone (Max Pharma) 1 g powder for injection, vial 933219181000036101 Ceftriaxone (Max Pharma) 933219181000036101 Ceftriaxone (Max Pharma) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +909331000168103 Chorit 80 mg film-coated tablet, 30, bottle 179855 909291000168109 Chorit 80 mg film-coated tablet, 30 909231000168105 Chorit 80 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +960731000168109 Ciram 40 mg film-coated tablet, 56, bottle 158861 960541000168109 Ciram 40 mg film-coated tablet, 56 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202911000036102 citalopram 40 mg tablet, 56 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1042111000168102 Nicotine (Amcal) 2 mg lozenge, 36, blister pack 213239 1042101000168100 Nicotine (Amcal) 2 mg lozenge, 36 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 922525011000036100 nicotine 2 mg lozenge, 36 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +933213141000036107 Pravastatin Sodium (HX) 10 mg tablet, 30, blister pack 152457 933201561000036104 Pravastatin Sodium (HX) 10 mg tablet, 30 933194711000036107 Pravastatin Sodium (HX) 10 mg tablet 933193361000036108 Pravastatin Sodium (HX) 933193361000036108 Pravastatin Sodium (HX) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +18145011000036104 Duphalac 3.34 g/5 mL oral liquid solution, 500 mL, bottle 13295 11951011000036108 Duphalac 3.34 g/5 mL oral liquid solution, 500 mL 5096011000036102 Duphalac 3.34 g/5 mL oral liquid solution, 5 mL 4355011000036108 Duphalac 4355011000036108 Duphalac 27821011000036102 lactulose 3.34 g/5 mL oral liquid, 500 mL 23149011000036102 lactulose 3.34 g/5 mL oral liquid 21591011000036108 lactulose +1012131000168102 Irbesartan (Apotex) 300 mg film-coated tablet, 30, blister pack 169795 1012121000168100 Irbesartan (Apotex) 300 mg film-coated tablet, 30 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +931587011000036101 Redichol 40 mg film-coated tablet, 90, bottle 163554 930748011000036101 Redichol 40 mg film-coated tablet, 90 930034011000036105 Redichol 40 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932408011000036109 pravastatin sodium 40 mg tablet, 90 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +61425011000036103 Paracetamol (Herron) 500 mg uncoated tablet, 250, bottle 82690 57350011000036102 Paracetamol (Herron) 500 mg uncoated tablet, 250 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63848011000036107 paracetamol 500 mg tablet, 250 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +86081011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 250, bottle 125246 85620011000036107 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 250 85297011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule 53321000168102 Ostelin Vitamin D 53321000168102 Ostelin Vitamin D 86408011000036101 colecalciferol 25 microgram (1000 units) capsule, 250 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +86081011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 250, bottle 199895 85620011000036107 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 250 85297011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule 53321000168102 Ostelin Vitamin D 53321000168102 Ostelin Vitamin D 86408011000036101 colecalciferol 25 microgram (1000 units) capsule, 250 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +52224011000036104 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 61887 52109011000036108 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 6281011000036100 Leucovorin Calcium (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL ampoule 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 28261011000036107 folinic acid 50 mg/5 mL injection, 5 x 5 mL ampoules 23575011000036108 folinic acid 50 mg/5 mL injection, ampoule 21617011000036108 folinic acid +682241000168109 Jardiance 10 mg film-coated tablet, 30, blister pack 208829 682231000168100 Jardiance 10 mg film-coated tablet, 30 682211000168105 Jardiance 10 mg film-coated tablet 682181000168106 Jardiance 682181000168106 Jardiance 682221000168103 empagliflozin 10 mg tablet, 30 682201000168107 empagliflozin 10 mg tablet 682191000168109 empagliflozin +82877011000036102 Simvastatin (Apo) 10 mg film-coated tablet, 30, bottle 157731 73120011000036104 Simvastatin (Apo) 10 mg film-coated tablet, 30 72937011000036109 Simvastatin (Apo) 10 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +82877011000036102 Simvastatin (Apo) 10 mg film-coated tablet, 30, bottle 223452 73120011000036104 Simvastatin (Apo) 10 mg film-coated tablet, 30 72937011000036109 Simvastatin (Apo) 10 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +896421000168106 Imatinib (AN) 400 mg hard capsule, 96, blister pack 281366 896411000168104 Imatinib (AN) 400 mg hard capsule, 96 896341000168107 Imatinib (AN) 400 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 893951000168101 imatinib 400 mg capsule, 96 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +61237011000036105 Tri-Profen 200 mg film-coated tablet, 4, blister pack 76986 57173011000036102 Tri-Profen 200 mg film-coated tablet, 4 54224011000036106 Tri-Profen 200 mg film-coated tablet 53358011000036106 Tri-Profen 53358011000036106 Tri-Profen 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1044211000168100 Pryzex 5 mg film-coated tablet, 20, blister pack 178991 1044201000168103 Pryzex 5 mg film-coated tablet, 20 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044191000168101 olanzapine 5 mg tablet, 20 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1061331000168107 Mirtazapine (Auro) 15 mg film-coated tablet, 30, blister pack 183376 1061321000168109 Mirtazapine (Auro) 15 mg film-coated tablet, 30 1061311000168102 Mirtazapine (Auro) 15 mg film-coated tablet 714231000168102 Mirtazapine (Auro) 714231000168102 Mirtazapine (Auro) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +943511000168108 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 10 x 20 mL vials 48217 943501000168105 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 10 x 20 mL vials 943481000168101 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 20 mL vial 33651000168101 Omnipaque-240 33651000168101 Omnipaque-240 943491000168103 iohexol 518 mg (iodine 240 mg)/mL injection, 10 x 20 mL vials 943471000168104 iohexol 518 mg (iodine 240 mg)/mL injection, 20 mL vial 77459011000036103 iohexol +984251000168101 Lonsurf 15/6.14 film-coated tablet, 60, blister pack 273239 984241000168103 Lonsurf 15/6.14 film-coated tablet, 60 984171000168104 Lonsurf 15/6.14 film-coated tablet 984101000168109 Lonsurf 15/6.14 984101000168109 Lonsurf 15/6.14 984231000168107 trifluridine 15 mg + tipiracil 6.14 mg tablet, 60 984161000168105 trifluridine 15 mg + tipiracil 6.14 mg tablet 984151000168108 trifluridine + tipiracil +61502011000036105 Proven 200 mg film-coated tablet, 48, blister pack 92447 57427011000036109 Proven 200 mg film-coated tablet, 48 54299011000036101 Proven 200 mg film-coated tablet 53524011000036103 Proven 53524011000036103 Proven 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +650131000168104 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 7, blister pack 202107 650121000168102 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 7 650111000168109 Pritor/Amlodipine 40 mg/10 mg multilayer tablet 650101000168106 Pritor/Amlodipine 40 mg/10 mg 650101000168106 Pritor/Amlodipine 40 mg/10 mg 932431011000036107 telmisartan 40 mg + amlodipine 10 mg tablet, 7 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +1087051000168109 Ramipril (Apotex) 10 mg tablet, 30, blister pack 150904 1087041000168107 Ramipril (Apotex) 10 mg tablet, 30 1087031000168103 Ramipril (Apotex) 10 mg tablet 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +949951000168101 Frusemide (Sanofi) 40 mg tablet, 50, bottle 144452 949941000168103 Frusemide (Sanofi) 40 mg tablet, 50 949911000168102 Frusemide (Sanofi) 40 mg tablet 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 928661000168104 furosemide (frusemide) 40 mg tablet, 50 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +69101011000036103 Rubesal cream, 100 g, tube 14870 66902011000036100 Rubesal cream, 100 g 65541011000036108 Rubesal cream 65038011000036100 Rubesal 65038011000036100 Rubesal 71496011000036104 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% cream, 100 g 70038011000036107 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% cream 69779011000036103 camphor + salicylic acid + menthol +879281000168105 Solifenacin (Blooms The Chemist) 5 mg film-coated tablet, 30, blister pack 218397 879271000168107 Solifenacin (Blooms The Chemist) 5 mg film-coated tablet, 30 879261000168101 Solifenacin (Blooms The Chemist) 5 mg film-coated tablet 879251000168103 Solifenacin (Blooms The Chemist) 879251000168103 Solifenacin (Blooms The Chemist) 46153011000036105 solifenacin succinate 5 mg tablet, 30 45010011000036100 solifenacin succinate 5 mg tablet 44891011000036101 solifenacin +68793011000036108 QV Skin Lotion, 30 mL, bottle 10630 66530011000036102 QV Skin Lotion, 30 mL 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71262011000036100 glycerol 5% + white soft paraffin 5% lotion, 30 mL 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +1042041000168102 Atorvastatin (AS) 40 mg film-coated tablet, 30, blister pack 178541 1042031000168106 Atorvastatin (AS) 40 mg film-coated tablet, 30 1041981000168104 Atorvastatin (AS) 40 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +923856011000036100 Gemcitabine (DBL) 2 g/52.6 mL injection solution, 52.6 mL vial 160204 923402011000036103 Gemcitabine (DBL) 2 g/52.6 mL injection solution, 52.6 mL vial 923067011000036107 Gemcitabine (DBL) 2 g/52.6 mL injection solution, 52.6 mL vial 72908011000036104 Gemcitabine (DBL) 72908011000036104 Gemcitabine (DBL) 924186011000036102 gemcitabine 2 g/52.6 mL injection, 52.6 mL vial 923988011000036102 gemcitabine 2 g/52.6 mL injection, vial 21644011000036108 gemcitabine +1001351000168100 Pregabalin (Apo) 225 mg hard capsule, 56, bottle 193253 1001341000168102 Pregabalin (Apo) 225 mg hard capsule, 56 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +1027051000168100 Pregabalin (Amneal) 300 mg hard capsule, 60, bottle 235869 1026951000168101 Pregabalin (Amneal) 300 mg hard capsule, 60 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +82397011000036108 Blink Intensive Tears 0.25% eye drops, 20 x 0.4 mL unit doses, tube 158805 82186011000036101 Blink Intensive Tears 0.25% eye drops, 20 x 0.4 mL unit doses 82028011000036103 Blink Intensive Tears 0.25% eye drops, 0.4 mL unit dose 15681000168102 Blink Intensive Tears 15681000168102 Blink Intensive Tears 82558011000036102 polyethylene glycol-400 0.25% eye drops, 20 x 0.4 mL unit doses 82450011000036107 polyethylene glycol-400 0.25% eye drops, unit dose 82424011000036103 polyethylene glycol-400 +933212641000036109 Ciprofloxacin (GN) 500 mg film-coated tablet, 10, blister pack 148852 933202381000036106 Ciprofloxacin (GN) 500 mg film-coated tablet, 10 933195371000036101 Ciprofloxacin (GN) 500 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 933199771000036102 ciprofloxacin 500 mg tablet, 10 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +933230441000036104 Saphris 10 mg sublingual wafer, 20, blister pack 166561 933224411000036106 Saphris 10 mg sublingual wafer, 20 933220161000036107 Saphris 10 mg sublingual wafer 933218931000036105 Saphris 933218931000036105 Saphris 933224421000036104 asenapine 10 mg sublingual wafer, 20 933220171000036104 asenapine 10 mg sublingual wafer 933232091000036101 asenapine +18745011000036106 Fosinopril Sodium (Sandoz) 20 mg uncoated tablet, 30, bottle 124844 11779011000036104 Fosinopril Sodium (Sandoz) 20 mg uncoated tablet, 30 4691011000036108 Fosinopril Sodium (Sandoz) 20 mg uncoated tablet 3290011000036100 Fosinopril Sodium (Sandoz) 3290011000036100 Fosinopril Sodium (Sandoz) 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +650091000168101 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 98, blister pack 202106 650081000168104 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 98 649971000168106 Pritor/Amlodipine 40 mg/5 mg multilayer tablet 649951000168102 Pritor/Amlodipine 40 mg/5 mg 649951000168102 Pritor/Amlodipine 40 mg/5 mg 932438011000036103 telmisartan 40 mg + amlodipine 5 mg tablet, 98 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +900741000168101 Capeccord 500 mg film-coated tablet, 120, blister pack 213036 900731000168105 Capeccord 500 mg film-coated tablet, 120 900641000168106 Capeccord 500 mg film-coated tablet 881761000168102 Capeccord 881761000168102 Capeccord 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +68981011000036100 Nicotinell Liquorice 2 mg chewing gum, 12, blister pack 136134 66783011000036101 Nicotinell Liquorice 2 mg chewing gum, 12 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1114781000168104 Ketizenol 300 mg film-coated tablet, 90, blister pack 202257 1114771000168102 Ketizenol 300 mg film-coated tablet, 90 1114651000168102 Ketizenol 300 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 667411000168106 quetiapine 300 mg tablet, 90 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +933246961000036105 Pantoprazole (PS) 40 mg enteric tablet, 30, blister pack 158197 933243791000036106 Pantoprazole (PS) 40 mg enteric tablet, 30 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +701431000168103 Gabapentin (GH) 300 mg capsule, 100, blister pack 219923 701421000168101 Gabapentin (GH) 300 mg capsule, 100 701411000168108 Gabapentin (GH) 300 mg capsule 701201000168109 Gabapentin (GH) 701201000168109 Gabapentin (GH) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +933212651000036107 Ciprofloxacin (GN) 500 mg film-coated tablet, 100, blister pack 148852 933202391000036108 Ciprofloxacin (GN) 500 mg film-coated tablet, 100 933195371000036101 Ciprofloxacin (GN) 500 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 933199791000036103 ciprofloxacin 500 mg tablet, 100 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +931472011000036102 Paroxetine (SAU) 20 mg film-coated tablet, 60, blister pack 152490 930651011000036100 Paroxetine (SAU) 20 mg film-coated tablet, 60 929990011000036100 Paroxetine (SAU) 20 mg film-coated tablet 929841011000036109 Paroxetine (SAU) 929841011000036109 Paroxetine (SAU) 51566011000036107 paroxetine 20 mg tablet, 60 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +38581000036106 Escitalopram (Lupin) 15 mg film-coated tablet, 28, blister pack 165858 34931000036107 Escitalopram (Lupin) 15 mg film-coated tablet, 28 32901000036108 Escitalopram (Lupin) 15 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +700029861000036100 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13010011000036105 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6298011000036105 Improvil 28 Day (inert substance) uncoated tablet 700012761000036105 Improvil 28 Day 700012761000036105 Improvil 28 Day 28355011000036107 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029861000036100 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13010011000036105 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6297011000036109 Improvil 28 Day (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 700012761000036105 Improvil 28 Day 700012761000036105 Improvil 28 Day 28355011000036107 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +700029861000036100 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28, blister pack 13010011000036105 Improvil 28 Day (12 x 500 microgram/35 microgram tablets, 9 x 1 mg/35 microgram tablets, 7 x inert tablets), 28 6299011000036102 Improvil 28 Day (norethisterone 1 mg + ethinylestradiol 35 microgram) uncoated tablet 700012761000036105 Improvil 28 Day 700012761000036105 Improvil 28 Day 28355011000036107 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [12] (&) norethisterone 1 mg + ethinylestradiol 35 microgram tablet [9] (&) inert substance tablet [7], 28 22837011000036106 norethisterone 1 mg + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +735811000168101 Thrush Treatment Duo (Apohealth) (1 x Fluconazole One capsule, 1 x Clotrimazole cream), 1 pack, composite pack 229520 735801000168104 Thrush Treatment Duo (Apohealth) (1 x Fluconazole One capsule, 1 x Clotrimazole cream), 1 pack 735761000168107 Clotrimazole (Apohealth) 1% cream 735791000168100 Thrush Treatment Duo (Apohealth) 735751000168105 Clotrimazole (Apohealth) 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +735811000168101 Thrush Treatment Duo (Apohealth) (1 x Fluconazole One capsule, 1 x Clotrimazole cream), 1 pack, composite pack 229520 735801000168104 Thrush Treatment Duo (Apohealth) (1 x Fluconazole One capsule, 1 x Clotrimazole cream), 1 pack 735721000168102 Fluconazole One (Apohealth) 150 mg hard capsule 735791000168100 Thrush Treatment Duo (Apohealth) 735711000168109 Fluconazole One (Apohealth) 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +933230401000036102 Escitalopram (DRLA) 20 mg film-coated tablet, 7, blister pack 165130 933224301000036103 Escitalopram (DRLA) 20 mg film-coated tablet, 7 933220151000036109 Escitalopram (DRLA) 20 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 933224311000036101 escitalopram 20 mg tablet, 7 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +853561000168100 Alphastat 10 mg film-coated tablet, 30, blister pack 187390 853551000168102 Alphastat 10 mg film-coated tablet, 30 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +853561000168100 Alphastat 10 mg film-coated tablet, 30, blister pack 212159 853551000168102 Alphastat 10 mg film-coated tablet, 30 853521000168105 Alphastat 10 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +50477011000036100 Sof-Tact diagnostic strip, 100, bottle 49248011000036108 Sof-Tact diagnostic strip, 100 48487011000036101 Sof-Tact diagnostic strip 48316011000036105 Sof-Tact 48316011000036105 Sof-Tact 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +725191000168103 PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets 725181000168101 PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets 725171000168104 PKU Lophlex Unflavoured powder for oral liquid, 27.8 g sachet 23211000168102 PKU Lophlex 23211000168102 PKU Lophlex 51447011000036109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 27.8 g sachets 247811000168104 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 27.8 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +919991000168101 Cilopam 40 mg film-coated tablet, 56, bottle 158867 919981000168104 Cilopam 40 mg film-coated tablet, 56 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202911000036102 citalopram 40 mg tablet, 56 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +19293011000036109 Clavulin 125 powder for oral liquid, 75 mL, bottle 49044 12583011000036107 Clavulin 125 powder for oral liquid, 75 mL 5858011000036108 Clavulin 125 powder for oral liquid, 5 mL 54481000168109 Clavulin 125 54481000168109 Clavulin 125 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +19293011000036109 Clavulin 125 powder for oral liquid, 75 mL, bottle 144174 12583011000036107 Clavulin 125 powder for oral liquid, 75 mL 5858011000036108 Clavulin 125 powder for oral liquid, 5 mL 54481000168109 Clavulin 125 54481000168109 Clavulin 125 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +79673011000036108 Loxalate 10 mg film-coated tablet, 28, blister pack 119964 79458011000036102 Loxalate 10 mg film-coated tablet, 28 79364011000036107 Loxalate 10 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +55901000036102 Head Cold Relief (Blooms The Chemist) hard capsule, 48, blister pack 151168 51391000036108 Head Cold Relief (Blooms The Chemist) hard capsule, 48 49131000036108 Head Cold Relief (Blooms The Chemist) hard capsule 48471000036107 Head Cold Relief (Blooms The Chemist) 48471000036107 Head Cold Relief (Blooms The Chemist) 51401000036106 phenylephrine hydrochloride 6.1 mg + paracetamol 500 mg capsule, 48 931825011000036102 phenylephrine hydrochloride 6.1 mg + paracetamol 500 mg capsule 61800011000036107 phenylephrine + paracetamol +44146011000036107 Clarinase Repetab modified release tablet, 10, blister pack 53516 41622011000036104 Clarinase Repetab modified release tablet, 10 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46441011000036107 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 10 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +60089011000036107 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 20, blister pack 126538 56050011000036102 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 20 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +952061000168108 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 50, blister pack 273229 952051000168106 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 50 951951000168100 Cefuroxime (Pharmacor) 250 mg film-coated tablet 951941000168102 Cefuroxime (Pharmacor) 951941000168102 Cefuroxime (Pharmacor) 763611000168107 cefuroxime 250 mg tablet, 50 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +80050011000036107 Sulprix 400 mg film-coated tablet, 50, blister pack 152460 79978011000036102 Sulprix 400 mg film-coated tablet, 50 79927011000036104 Sulprix 400 mg film-coated tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 80067011000036104 amisulpride 400 mg tablet, 50 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +77214011000036107 Trandolapril (Generic Health) 4 mg hard capsule, 28, blister pack 135982 76630011000036106 Trandolapril (Generic Health) 4 mg hard capsule, 28 76075011000036106 Trandolapril (Generic Health) 4 mg hard capsule 76010011000036105 Trandolapril (Generic Health) 76010011000036105 Trandolapril (Generic Health) 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +909351000168109 Chorit 80 mg film-coated tablet, 100, bottle 179855 909341000168107 Chorit 80 mg film-coated tablet, 100 909231000168105 Chorit 80 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +47241000036103 Nicorette 15 mg/16 hours patch, 28, sachet 46060 46751000036105 Nicorette 15 mg/16 hours patch, 28 5199011000036102 Nicorette 15 mg/16 hours patch 15261000168108 Nicorette 15261000168108 Nicorette 46761000036108 nicotine 15 mg/16 hours patch, 28 22501011000036106 nicotine 15 mg/16 hours patch 21432011000036100 nicotine +1012151000168108 Irbesartan (Apotex) 300 mg film-coated tablet, 56, blister pack 169795 1012141000168106 Irbesartan (Apotex) 300 mg film-coated tablet, 56 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777471000168104 irbesartan 300 mg tablet, 56 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +68664011000036101 Strepsils orange lozenge, 12, blister pack 115527 66617011000036104 Strepsils orange lozenge, 12 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71519011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 12 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +39374011000036108 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 153763 39251011000036102 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 39209011000036107 Nordette 28 (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700017881000036107 Nordette 28 700017881000036107 Nordette 28 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +39374011000036108 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 153763 39251011000036102 Nordette 28 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 39199011000036107 Nordette 28 (inert substance) sugar coated tablet 700017881000036107 Nordette 28 700017881000036107 Nordette 28 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +931714011000036106 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution, 125 mL, bottle 176112 930874011000036106 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution, 125 mL 930084011000036103 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution 929919011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 929919011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 932459011000036105 chlorhexidine gluconate 2% solution, 125 mL 70177011000036101 chlorhexidine gluconate 2% solution 21404011000036101 chlorhexidine +937071000168101 Curash Baby Care Teething oral gel, 15 g, tube 10127 937061000168107 Curash Baby Care Teething oral gel, 15 g 937051000168105 Curash Baby Care Teething oral gel 937041000168108 Curash Baby Care Teething 937041000168108 Curash Baby Care Teething 71198011000036101 choline salicylate 9% + ethanol 35% + cetylpyridinium chloride monohydrate 0.0375% + cetalkonium chloride 0.025% oral gel, 15 g 69898011000036103 choline salicylate 9% + ethanol 35% + cetylpyridinium chloride monohydrate 0.0375% + cetalkonium chloride 0.025% oral gel 69840011000036108 salicylic acid + ethanol + cetylpyridinium + cetalkonium chloride +1007881000168105 Zetin 10 mg hard capsule, 60, blister pack 196005 1007871000168107 Zetin 10 mg hard capsule, 60 1007841000168100 Zetin 10 mg hard capsule 1007831000168109 Zetin 1007831000168109 Zetin 150391000036106 acitretin 10 mg capsule, 60 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +832261000168107 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 68429 832251000168105 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 832201000168106 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 73691011000036102 Liquid PedvaxHIB 73691011000036102 Liquid PedvaxHIB 832241000168108 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 10 x 0.5 mL vials 832191000168108 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial 832181000168105 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine +1046771000168105 Buprenorphine (SZ) 15 microgram/hour patch, 2, sachet 269672 1046761000168104 Buprenorphine (SZ) 15 microgram/hour patch, 2 1046721000168109 Buprenorphine (SZ) 15 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 776161000168100 buprenorphine 15 microgram/hour patch, 2 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +933213061000036107 Pantoprazole (A) 40 mg enteric tablet, 30, blister pack 158203 933202731000036108 Pantoprazole (A) 40 mg enteric tablet, 30 933195351000036106 Pantoprazole (A) 40 mg enteric tablet 933193241000036104 Pantoprazole (A) 933193241000036104 Pantoprazole (A) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +44531011000036105 Midazolam (Sandoz) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 78974 41984011000036102 Midazolam (Sandoz) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 40302011000036105 Midazolam (Sandoz) 15 mg/3 mL injection solution, 3 mL ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +861781000168108 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100, bottle 79535 861771000168105 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100 861751000168101 Caltrate Plus with Vitamin D 200 IU film-coated tablet 18071000168104 Caltrate Plus with Vitamin D 200 IU 18071000168104 Caltrate Plus with Vitamin D 200 IU 861761000168104 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 100 861741000168103 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet 861731000168107 calcium + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide +866011000168109 Amitriptyline (PN) 25 mg tablet, 1000, bottle 232149 865731000168109 Amitriptyline (PN) 25 mg tablet, 1000 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +902751000168103 Brillior 50 mg hard capsule, 56, blister pack 224339 902741000168100 Brillior 50 mg hard capsule, 56 902671000168103 Brillior 50 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +975571000168102 Amoxiclav 500/100 (Juno) powder for injection, 50 x 600 mg vials 269162 975561000168108 Amoxiclav 500/100 (Juno) powder for injection, 50 x 600 mg vials 975421000168102 Amoxiclav 500/100 (Juno) powder for injection, 600 mg vial 975401000168106 Amoxiclav 500/100 (Juno) 975401000168106 Amoxiclav 500/100 (Juno) 975551000168106 amoxicillin 500 mg + clavulanic acid 100 mg injection, 50 x 600 mg vials 975411000168109 amoxicillin 500 mg + clavulanic acid 100 mg injection, 600 mg vial 21360011000036101 amoxicillin + clavulanic acid +719091000168106 Privigen 10 g/100 mL injection solution, 100 mL bottle 143337 719081000168108 Privigen 10 g/100 mL injection solution, 100 mL bottle 719071000168105 Privigen 10 g/100 mL injection solution, 100 mL bottle 718951000168105 Privigen 718951000168105 Privigen 112021000036102 normal immunoglobulin 10 g/100 mL injection, 100 mL bottle 111921000036106 normal immunoglobulin 10 g/100 mL injection, bottle 74965011000036103 normal immunoglobulin +793991000168108 Arnuity Ellipta 100 microgram/actuation powder for inhalation, 30 actuations, blister pack 231095 793981000168105 Arnuity Ellipta 100 microgram/actuation powder for inhalation, 30 actuations 793931000168109 Arnuity Ellipta 100 microgram/actuation powder for inhalation, actuation 793811000168105 Arnuity Ellipta 793811000168105 Arnuity Ellipta 793971000168107 fluticasone furoate 100 microgram/actuation powder for inhalation, 30 actuations 793921000168106 fluticasone furoate 100 microgram/actuation powder for inhalation, actuation 860171000168103 fluticasone furoate +896261000168102 Imatinib (GH) 100 mg hard capsule, 48, blister pack 281535 896251000168104 Imatinib (GH) 100 mg hard capsule, 48 896191000168101 Imatinib (GH) 100 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 828841000168107 imatinib 100 mg capsule, 48 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1095771000168108 Zertine 10 mg film-coated tablet, 12, blister pack 287404 1095761000168102 Zertine 10 mg film-coated tablet, 12 1081371000168108 Zertine 10 mg film-coated tablet 1081361000168102 Zertine 1081361000168102 Zertine 1095751000168104 cetirizine hydrochloride 10 mg tablet, 12 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +43983011000036109 Voltaren Rapid 50 mg sugar coated tablet, 20, blister pack 42943 41475011000036108 Voltaren Rapid 50 mg sugar coated tablet, 20 40000011000036105 Voltaren Rapid 50 mg sugar coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 46321011000036102 diclofenac potassium 50 mg tablet, 20 45076011000036106 diclofenac potassium 50 mg tablet 21288011000036105 diclofenac +81009011000036104 Diclofenac Sodium (GA) 50 mg enteric tablet, 50, bottle 147971 80552011000036108 Diclofenac Sodium (GA) 50 mg enteric tablet, 50 80187011000036105 Diclofenac Sodium (GA) 50 mg enteric tablet 53267011000036108 Diclofenac Sodium (GA) 53267011000036108 Diclofenac Sodium (GA) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +1001511000168106 Naloxone Min-I-Jet (UCB) 800 microgram/2 mL injection solution, 2 mL syringe 48534 1001501000168108 Naloxone Min-I-Jet (UCB) 800 microgram/2 mL injection solution, 2 mL syringe 1001491000168101 Naloxone Min-I-Jet (UCB) 800 microgram/2 mL injection solution, 2 mL syringe 1001481000168104 Naloxone Min-I-Jet (UCB) 1001481000168104 Naloxone Min-I-Jet (UCB) 33804011000036104 naloxone hydrochloride 800 microgram/2 mL injection, 2 mL syringe 33676011000036105 naloxone hydrochloride 800 microgram/2 mL injection, syringe 33627011000036107 naloxone +724961000168106 MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 724951000168109 MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 724931000168103 MSUD Anamix Junior LQ oral liquid solution, 125 mL bottle 39051000168109 MSUD Anamix Junior LQ 39051000168109 MSUD Anamix Junior LQ 724941000168107 amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles 724921000168101 amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle 82429011000036102 amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid +933247281000036107 Saizen 20 mg/2.5 mL injection solution, 2.5 mL cartridge 166479 933243991000036109 Saizen 20 mg/2.5 mL injection solution, 2.5 mL cartridge 933241611000036109 Saizen 20 mg/2.5 mL injection solution, 2.5 mL cartridge 35491000168107 Saizen 35491000168107 Saizen 933244001000036103 somatropin 20 mg/2.5 mL injection, 2.5 mL cartridge 933241621000036102 somatropin 20 mg/2.5 mL injection, cartridge 21295011000036100 somatropin +667351000168101 Kaptan 200 mg film-coated tablet, 60, blister pack 202244 667341000168103 Kaptan 200 mg film-coated tablet, 60 667311000168102 Kaptan 200 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1010051000168108 Sildenafil (Apotex) 25 mg film-coated tablet, 8, blister pack 164804 1010041000168106 Sildenafil (Apotex) 25 mg film-coated tablet, 8 1009991000168105 Sildenafil (Apotex) 25 mg film-coated tablet 1009981000168107 Sildenafil (Apotex) 1009981000168107 Sildenafil (Apotex) 760301000168108 sildenafil 25 mg tablet, 8 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +1046791000168106 Buprenorphine (SZ) 15 microgram/hour patch, 4, sachet 269672 1046781000168108 Buprenorphine (SZ) 15 microgram/hour patch, 4 1046721000168109 Buprenorphine (SZ) 15 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046411000168107 buprenorphine 15 microgram/hour patch, 4 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +19490011000036102 Remeron 30 mg film-coated tablet, 30, blister pack 55086 12766011000036104 Remeron 30 mg film-coated tablet, 30 6060011000036101 Remeron 30 mg film-coated tablet 3235011000036100 Remeron 3235011000036100 Remeron 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +19447011000036106 Cordilox SR 180 mg modified release tablet, 30, blister pack 54033 12726011000036108 Cordilox SR 180 mg modified release tablet, 30 5871011000036101 Cordilox SR 180 mg modified release tablet 22581000168103 Cordilox SR 22581000168103 Cordilox SR 27315011000036109 verapamil hydrochloride 180 mg modified release tablet, 30 22668011000036106 verapamil hydrochloride 180 mg modified release tablet 21287011000036109 verapamil +716921000168101 Pemzo 20 mg enteric capsule, 500, bottle 167315 716891000168106 Pemzo 20 mg enteric capsule, 500 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716681000168109 omeprazole 20 mg enteric capsule, 500 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +917981000168107 Lovir 400 mg uncoated tablet, 100, blister pack 62380 917971000168109 Lovir 400 mg uncoated tablet, 100 917941000168102 Lovir 400 mg uncoated tablet 4208011000036103 Lovir 4208011000036103 Lovir 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +55831000036104 Anastrozole (Synthon) 1 mg film-coated tablet, 98, blister pack 155176 52621000036109 Anastrozole (Synthon) 1 mg film-coated tablet, 98 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52281000036107 anastrozole 1 mg tablet, 98 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +836601000168108 Neutrafluor 5000 Sensitive toothpaste, 115 g, bottle 176745 836591000168101 Neutrafluor 5000 Sensitive toothpaste, 115 g 836571000168102 Neutrafluor 5000 Sensitive toothpaste 836511000168105 Neutrafluor 5000 Sensitive 836511000168105 Neutrafluor 5000 Sensitive 836581000168104 sodium fluoride 1.1% + potassium nitrate 5% toothpaste, 115 g 836561000168108 sodium fluoride 1.1% + potassium nitrate 5% toothpaste 836551000168106 fluoride + potassium +77291011000036105 Water for Irrigation (Baxter) irrigation solution, 6 x 2 L bags 19457 76707011000036105 Water for Irrigation (Baxter) irrigation solution, 6 x 2 L bags 76128011000036109 Water for Irrigation (Baxter) irrigation solution, 2 L bag 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78221011000036109 water for irrigation solution, 6 x 2 L bags 77550011000036101 water for irrigation solution, 2 L bag 77440011000036107 water for irrigation +1101621000168105 Docetaxel (Winthrop) 160 mg/8 mL concentrated injection, 8 mL vial 177652 1101611000168103 Docetaxel (Winthrop) 160 mg/8 mL concentrated injection, 8 mL vial 1101601000168101 Docetaxel (Winthrop) 160 mg/8 mL concentrated injection, 8 mL vial 1101141000168105 Docetaxel (Winthrop) 1101141000168105 Docetaxel (Winthrop) 748241000168107 docetaxel 160 mg/8 mL injection, 8 mL vial 748221000168101 docetaxel 160 mg/8 mL injection, vial 21721011000036101 docetaxel +780381000168103 Oxycodone MR (GenRx) 30 mg modified release tablet, 60, blister pack 214489 780371000168101 Oxycodone MR (GenRx) 30 mg modified release tablet, 60 780251000168100 Oxycodone MR (GenRx) 30 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 71474011000036104 oxycodone hydrochloride 30 mg modified release tablet, 60 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +977671000168105 Pregabalin (Teva) 100 mg hard capsule, 14, blister pack 229590 977661000168104 Pregabalin (Teva) 100 mg hard capsule, 14 977651000168101 Pregabalin (Teva) 100 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +69564011000036109 Vicks Vaporub Vaporizing ointment, 100 g, jar 61019 67364011000036100 Vicks Vaporub Vaporizing ointment, 100 g 65631011000036101 Vicks Vaporub Vaporizing ointment 23431000168106 Vicks Vaporub Vaporizing 23431000168106 Vicks Vaporub Vaporizing 71904011000036107 menthol 2.82% + camphor 5.26% + eucalyptus oil 1.33% ointment, 100 g 70242011000036104 menthol 2.82% + camphor 5.26% + eucalyptus oil 1.33% ointment 69806011000036104 menthol + camphor + eucalyptus oil +1110201000168106 Midalim 5 mg/mL injection solution, 10 x 1 mL ampoules 207221 1110191000168108 Midalim 5 mg/mL injection solution, 10 x 1 mL ampoules 1110001000168101 Midalim 5 mg/mL injection solution, ampoule 1107761000168100 Midalim 1107761000168100 Midalim 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +1110991000168106 Midazolam (WP) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 207237 1110981000168108 Midazolam (WP) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1110911000168102 Midazolam (WP) 15 mg/3 mL injection solution, 3 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +130741000036102 Yervoy 200 mg/40 mL concentrated injection, 40 mL vial 174322 127791000036105 Yervoy 200 mg/40 mL concentrated injection, 40 mL vial 124201000036102 Yervoy 200 mg/40 mL concentrated injection, 40 mL vial 123711000036108 Yervoy 123711000036108 Yervoy 127801000036109 ipilimumab 200 mg/40 mL injection, 40 mL vial 124211000036100 ipilimumab 200 mg/40 mL injection, vial 132101000036102 ipilimumab +55741000036101 Anastrozole (Synthon) 1 mg film-coated tablet, 20, blister pack 155176 52501000036103 Anastrozole (Synthon) 1 mg film-coated tablet, 20 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52041000036108 anastrozole 1 mg tablet, 20 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +60603011000036102 Canesten Clotrimazole 1% cream, 20 g, tube 18697 56561011000036100 Canesten Clotrimazole 1% cream, 20 g 53975011000036108 Canesten Clotrimazole 1% cream 4270011000036105 Canesten Clotrimazole 4270011000036105 Canesten Clotrimazole 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1114461000168102 Zolpidem (GH) 10 mg film-coated tablet, 28, blister pack 210960 1114451000168104 Zolpidem (GH) 10 mg film-coated tablet, 28 1114361000168107 Zolpidem (GH) 10 mg film-coated tablet 1114351000168105 Zolpidem (GH) 1114351000168105 Zolpidem (GH) 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +883421000168104 Betahistine (ZP) 8 mg tablet, 25, blister pack 231716 883411000168106 Betahistine (ZP) 8 mg tablet, 25 883381000168108 Betahistine (ZP) 8 mg tablet 883371000168105 Betahistine (ZP) 883371000168105 Betahistine (ZP) 883121000168107 betahistine dihydrochloride 8 mg tablet, 25 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +73265011000036100 Ramipril (GenRx) 5 mg hard capsule, 30, blister pack 134799 73065011000036109 Ramipril (GenRx) 5 mg hard capsule, 30 72969011000036108 Ramipril (GenRx) 5 mg hard capsule 39554011000036107 Ramipril (GenRx) 39554011000036107 Ramipril (GenRx) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +52207011000036104 Metex XR 500 mg modified release tablet, 90, bottle 143465 52094011000036103 Metex XR 500 mg modified release tablet, 90 51989011000036105 Metex XR 500 mg modified release tablet 10431000168107 Metex XR 10431000168107 Metex XR 28291011000036109 metformin hydrochloride 500 mg modified release tablet, 90 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +68990011000036108 Nicotinell Liquorice 4 mg chewing gum, 120, blister pack 136135 66792011000036109 Nicotinell Liquorice 4 mg chewing gum, 120 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71514011000036100 nicotine 4 mg gum, 120 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1003611000168108 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, bottle 182829 1003591000168103 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60 1003581000168101 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet 1003571000168104 Levetiracetam 1000 (Pfizer) 1003571000168104 Levetiracetam 1000 (Pfizer) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +699001000168106 Coversyl Plus 5/1.25 film-coated tablet, 30, bottle 124553 11767011000036100 Coversyl Plus 5/1.25 film-coated tablet, 30 5861011000036106 Coversyl Plus 5/1.25 film-coated tablet 48401000168105 Coversyl Plus 5/1.25 48401000168105 Coversyl Plus 5/1.25 26767011000036101 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 30 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +1033861000168101 Atomoxetine (GXP) 5 mg hard capsule, 7, blister pack 234852 1033851000168103 Atomoxetine (GXP) 5 mg hard capsule, 7 1033841000168100 Atomoxetine (GXP) 5 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 976311000168106 atomoxetine 5 mg capsule, 7 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +20972011000036109 Zimstat 20 mg film-coated tablet, 30, blister pack 95674 14123011000036102 Zimstat 20 mg film-coated tablet, 30 7400011000036106 Zimstat 20 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +105121000036109 Abisart HCT 300/25 film-coated tablet, 30, bottle 176859 102151000036106 Abisart HCT 300/25 film-coated tablet, 30 98831000036101 Abisart HCT 300/25 film-coated tablet 13081000168109 Abisart HCT 300/25 13081000168109 Abisart HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +105121000036109 Abisart HCT 300/25 film-coated tablet, 30, bottle 215947 102151000036106 Abisart HCT 300/25 film-coated tablet, 30 98831000036101 Abisart HCT 300/25 film-coated tablet 13081000168109 Abisart HCT 300/25 13081000168109 Abisart HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +52190011000036100 Bondronat 50 mg film-coated tablet, 84, blister pack 119673 52082011000036106 Bondronat 50 mg film-coated tablet, 84 51981011000036106 Bondronat 50 mg film-coated tablet 32976011000036100 Bondronat 32976011000036100 Bondronat 52326011000036100 ibandronate 50 mg tablet, 84 52256011000036106 ibandronate 50 mg tablet 33641011000036101 ibandronate +1027371000168107 Neuroccord 75 mg hard capsule, 56, blister pack 235849 1027261000168105 Neuroccord 75 mg hard capsule, 56 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +21032011000036107 Fuzeon (60 x 90 mg vials, 60 x 1.1 mL inert diluent vials), 1 pack, composite pack 96669 14177011000036107 Fuzeon (60 x 90 mg vials, 60 x 1.1 mL inert diluent vials), 1 pack 633231000168101 Fuzeon (inert substance) diluent, 1.1 mL vial 4029011000036108 Fuzeon 4029011000036108 Fuzeon 28193011000036107 enfuvirtide 90 mg injection [60 vials] (&) inert substance diluent [60 x 1.1 mL vials], 1 pack 633221000168104 inert substance diluent, 1.1 mL vial 21220011000036103 inert substance +21032011000036107 Fuzeon (60 x 90 mg vials, 60 x 1.1 mL inert diluent vials), 1 pack, composite pack 96669 14177011000036107 Fuzeon (60 x 90 mg vials, 60 x 1.1 mL inert diluent vials), 1 pack 7457011000036102 Fuzeon (enfuvirtide 90 mg) powder for injection, 90 mg vial 4029011000036108 Fuzeon 4029011000036108 Fuzeon 28193011000036107 enfuvirtide 90 mg injection [60 vials] (&) inert substance diluent [60 x 1.1 mL vials], 1 pack 23504011000036104 enfuvirtide 90 mg injection, vial 21744011000036100 enfuvirtide +17888011000036103 Lax-Tab 5 mg enteric tablet, 200, blister pack 119125 11603011000036102 Lax-Tab 5 mg enteric tablet, 200 5429011000036109 Lax-Tab 5 mg enteric tablet 3574011000036106 Lax-Tab 3574011000036106 Lax-Tab 27705011000036106 bisacodyl 5 mg enteric tablet, 200 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +695391000168104 Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 53, blister pack 124940 33271011000036102 Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 53 33036011000036100 Champix 500 microgram film-coated tablet 60341000168109 Champix Combination Pack 32974011000036108 Champix 33787011000036109 varenicline 500 microgram tablet [11] (&) varenicline 1 mg tablet [42], 53 33659011000036104 varenicline 500 microgram tablet 33624011000036101 varenicline +695391000168104 Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 53, blister pack 124940 33271011000036102 Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 53 33037011000036102 Champix 1 mg film-coated tablet 60341000168109 Champix Combination Pack 32974011000036108 Champix 33787011000036109 varenicline 500 microgram tablet [11] (&) varenicline 1 mg tablet [42], 53 33660011000036103 varenicline 1 mg tablet 33624011000036101 varenicline +1036031000168106 Atorvastatin (RBX) 40 mg film-coated tablet, 6, blister pack 173486 1036021000168108 Atorvastatin (RBX) 40 mg film-coated tablet, 6 1036011000168101 Atorvastatin (RBX) 40 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 841061000168108 atorvastatin 40 mg tablet, 6 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +59849011000036101 Strong Pain Relief (Amcal) uncoated tablet, 24, blister pack 115171 55811011000036103 Strong Pain Relief (Amcal) uncoated tablet, 24 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +964741000168108 Physiotens 300 microgram film-coated tablet, 10, blister pack 114120 964731000168104 Physiotens 300 microgram film-coated tablet, 10 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964251000168104 moxonidine 300 microgram tablet, 10 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +977731000168104 Pregabalin (Teva) 100 mg hard capsule, 60, blister pack 229590 977721000168102 Pregabalin (Teva) 100 mg hard capsule, 60 977651000168101 Pregabalin (Teva) 100 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +785401000168106 Ritalin LA 60 mg modified release capsule, 30, bottle 236251 785391000168109 Ritalin LA 60 mg modified release capsule, 30 785371000168108 Ritalin LA 60 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 785381000168106 methylphenidate hydrochloride 60 mg modified release capsule, 30 785361000168102 methylphenidate hydrochloride 60 mg modified release capsule 21277011000036101 methylphenidate +817111000168106 Idaprex Arg 10 mg film-coated tablet, 30, bottle 194890 817101000168108 Idaprex Arg 10 mg film-coated tablet, 30 817091000168103 Idaprex Arg 10 mg film-coated tablet 817021000168100 Idaprex Arg 817021000168100 Idaprex Arg 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +933229961000036102 Fenpatch 100 microgram/hour patch, 5, sachet 143905 933223761000036102 Fenpatch 100 microgram/hour patch, 5 933219851000036100 Fenpatch 100 microgram/hour patch 933218861000036106 Fenpatch 933218861000036106 Fenpatch 26652011000036104 fentanyl 100 microgram/hour patch, 5 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +701191000168106 Ranitidine (GH) 150 mg film-coated tablet, 60, blister pack 219141 701181000168108 Ranitidine (GH) 150 mg film-coated tablet, 60 701171000168105 Ranitidine (GH) 150 mg film-coated tablet 690821000168104 Ranitidine (GH) 690821000168104 Ranitidine (GH) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +44737011000036101 Testogel 1% (25 mg/2.5 g) gel, 2 x 2.5 g sachets 96129 42182011000036109 Testogel 1% (25 mg/2.5 g) gel, 2 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46943011000036105 testosterone 1% (25 mg/2.5 g) gel, 2 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +104941000036102 Duloxetine (Apo) 60 mg enteric capsule, 28, blister pack 217986 102121000036100 Duloxetine (Apo) 60 mg enteric capsule, 28 98211000036109 Duloxetine (Apo) 60 mg enteric capsule 97941000036102 Duloxetine (Apo) 97941000036102 Duloxetine (Apo) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +104941000036102 Duloxetine (Apo) 60 mg enteric capsule, 28, blister pack 195356 102121000036100 Duloxetine (Apo) 60 mg enteric capsule, 28 98211000036109 Duloxetine (Apo) 60 mg enteric capsule 97941000036102 Duloxetine (Apo) 97941000036102 Duloxetine (Apo) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +1102261000168108 Qtern 5/10 film-coated tablet, 7, blister pack 255632 1102251000168106 Qtern 5/10 film-coated tablet, 7 1102231000168100 Qtern 5/10 film-coated tablet 1102191000168109 Qtern 5/10 1102191000168109 Qtern 5/10 1102241000168109 saxagliptin 5 mg + dapagliflozin 10 mg tablet, 7 1102221000168103 saxagliptin 5 mg + dapagliflozin 10 mg tablet 1102211000168105 saxagliptin + dapagliflozin +79082011000036102 Glucose (B Braun) 5% (50 g/L) intravenous infusion injection, 1 L bottle 49332 78876011000036109 Glucose (B Braun) 5% (50 g/L) intravenous infusion injection, 1 L bottle 78679011000036109 Glucose (B Braun) 5% (50 g/L) intravenous infusion injection, 1 L bottle 78600011000036108 Glucose (B Braun) 78600011000036108 Glucose (B Braun) 71346011000036101 glucose 5% (50 g/L) injection, 1 L bottle 69965011000036103 glucose 5% (50 g/L) injection, bottle 21354011000036103 glucose +921909011000036103 Exforge HCT 10/320/25 film-coated tablet, 30, blister pack 158168 921468011000036108 Exforge HCT 10/320/25 film-coated tablet, 30 921019011000036105 Exforge HCT 10/320/25 film-coated tablet 21211000168103 Exforge HCT 10/320/25 21211000168103 Exforge HCT 10/320/25 922596011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 30 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +20004011000036102 Flecatab 100 mg uncoated tablet, 60, bottle 68652 13240011000036107 Flecatab 100 mg uncoated tablet, 60 6522011000036105 Flecatab 100 mg uncoated tablet 3116011000036103 Flecatab 3116011000036103 Flecatab 27642011000036102 flecainide acetate 100 mg tablet, 60 22979011000036105 flecainide acetate 100 mg tablet 21457011000036102 flecainide +77368011000036108 Ostelin-1000 25 microgram soft capsule, 100, bottle 67032 76784011000036100 Ostelin-1000 25 microgram soft capsule, 100 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78288011000036109 ergocalciferol 25 microgram capsule, 100 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +930861000168102 Xatral 2.5 mg film-coated tablet, 30, blister pack 60096 930851000168104 Xatral 2.5 mg film-coated tablet, 30 930831000168105 Xatral 2.5 mg film-coated tablet 930811000168100 Xatral 930811000168100 Xatral 930841000168101 alfuzosin hydrochloride 2.5 mg tablet, 30 930821000168107 alfuzosin hydrochloride 2.5 mg tablet 926977011000036100 alfuzosin +1044691000168106 Escitalopram (Sandoz) 20 mg film-coated tablet, 28, blister pack 290456 1044681000168108 Escitalopram (Sandoz) 20 mg film-coated tablet, 28 1044671000168105 Escitalopram (Sandoz) 20 mg film-coated tablet 1044661000168104 Escitalopram (Sandoz) 1044661000168104 Escitalopram (Sandoz) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1052571000168103 Palexia SR 150 mg modified release tablet, 14, blister pack 165347 1052561000168109 Palexia SR 150 mg modified release tablet, 14 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052551000168107 tapentadol 150 mg modified release tablet, 14 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +1012291000168106 Irbesartan (Apotex) 75 mg film-coated tablet, 14, blister pack 169798 1012281000168108 Irbesartan (Apotex) 75 mg film-coated tablet, 14 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777201000168108 irbesartan 75 mg tablet, 14 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +941091000168108 Evelexa XR 75 mg modified release capsule, 28, blister pack 146729 941081000168105 Evelexa XR 75 mg modified release capsule, 28 941071000168107 Evelexa XR 75 mg modified release capsule 941031000168109 Evelexa XR 941031000168109 Evelexa XR 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +1115101000168109 Zithro 500 mg film-coated tablet, 2, blister pack 241812 1115091000168104 Zithro 500 mg film-coated tablet, 2 1115081000168102 Zithro 500 mg film-coated tablet 1115071000168100 Zithro 1115071000168100 Zithro 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +849541000168104 Vzole 50 mg film-coated tablet, 100, bottle 238240 849361000168106 Vzole 50 mg film-coated tablet, 100 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46812011000036100 voriconazole 50 mg tablet, 100 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +933108011000036100 Lamictal 25 mg tablet, 56, bottle 51739 932912011000036106 Lamictal 25 mg tablet, 56 932763011000036109 Lamictal 25 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +18659011000036100 Floxapen Forte 250 mg/5 mL powder for oral liquid, 100 mL, bottle 11147 11426011000036100 Floxapen Forte 250 mg/5 mL powder for oral liquid, 100 mL 5080011000036101 Floxapen Forte 250 mg/5 mL powder for oral liquid, 5 mL 41941000168106 Floxapen Forte 41941000168106 Floxapen Forte 27045011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid, 100 mL 22415011000036101 flucloxacillin 250 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +1042361000168101 Atorvastatin (AS) 80 mg film-coated tablet, 40, blister pack 178526 1042351000168103 Atorvastatin (AS) 80 mg film-coated tablet, 40 1042201000168109 Atorvastatin (AS) 80 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841871000168108 atorvastatin 80 mg tablet, 40 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +55671000036103 Synastrozole 1 mg film-coated tablet, 60, blister pack 155175 52421000036107 Synastrozole 1 mg film-coated tablet, 60 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52201000036101 anastrozole 1 mg tablet, 60 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +81641000036100 Terbinafine (Pharmacy Choice) 250 mg tablet, 42, blister pack 147740 79871000036102 Terbinafine (Pharmacy Choice) 250 mg tablet, 42 78151000036107 Terbinafine (Pharmacy Choice) 250 mg tablet 77711000036108 Terbinafine (Pharmacy Choice) 77711000036108 Terbinafine (Pharmacy Choice) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +1012311000168105 Irbesartan (Apotex) 75 mg film-coated tablet, 28, blister pack 169798 1012301000168107 Irbesartan (Apotex) 75 mg film-coated tablet, 28 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777241000168105 irbesartan 75 mg tablet, 28 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1110351000168100 Nicotinell Ice Mint 4 mg chewing gum, 120, blister pack 279616 1110341000168102 Nicotinell Ice Mint 4 mg chewing gum, 120 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71514011000036100 nicotine 4 mg gum, 120 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +868271000168107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags 33515 868261000168101 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags 868211000168104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 868251000168103 glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 6 x 2 L bags 868201000168102 glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +951821000168100 Finasteride (APL) 5 mg film-coated tablet, 30, blister pack 210618 951811000168107 Finasteride (APL) 5 mg film-coated tablet, 30 951751000168103 Finasteride (APL) 5 mg film-coated tablet 951741000168100 Finasteride (APL) 951741000168100 Finasteride (APL) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +1046061000168102 Dermaveen Daily Nourish Soap Free Wash 1% application, 500 mL, pump pack 1046051000168104 Dermaveen Daily Nourish Soap Free Wash 1% application, 500 mL 1046021000168107 Dermaveen Daily Nourish Soap Free Wash 1% application 1046011000168100 Dermaveen Daily Nourish Soap Free Wash 1046011000168100 Dermaveen Daily Nourish Soap Free Wash 167901000036109 colloidal oatmeal 1% application, 500 mL 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +61408011000036101 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL, bottle 82400 57333011000036106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL 54278011000036103 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +926685011000036104 Lisoril 20 mg uncoated tablet, 28, blister pack 106497 926078011000036106 Lisoril 20 mg uncoated tablet, 28 925633011000036105 Lisoril 20 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 46264011000036101 lisinopril 20 mg tablet, 28 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +973241000168106 Lyzalon 300 mg hard capsule, 60, blister pack 224416 972531000168105 Lyzalon 300 mg hard capsule, 60 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +17922011000036104 Avapro HCT 150/12.5 film-coated tablet, 30, bottle 102085 11246011000036104 Avapro HCT 150/12.5 film-coated tablet, 30 5350011000036109 Avapro HCT 150/12.5 film-coated tablet 24771000168101 Avapro HCT 150/12.5 24771000168101 Avapro HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +130661000036107 Adesan 32 mg uncoated tablet, 30, blister pack 171017 127711000036100 Adesan 32 mg uncoated tablet, 30 124701000036108 Adesan 32 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +933230051000036106 Magmin 500 mg (magnesium 37.4 mg) film-coated tablet, 50, bottle 152858 933223861000036107 Magmin 500 mg (magnesium 37.4 mg) film-coated tablet, 50 933219781000036102 Magmin 500 mg (magnesium 37.4 mg) film-coated tablet 15651000168109 Magmin 15651000168109 Magmin 84625011000036105 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet, 50 52809011000036104 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet 52798011000036107 magnesium aspartate dihydrate +933230051000036106 Magmin 500 mg (magnesium 37.4 mg) film-coated tablet, 50, bottle 189269 933223861000036107 Magmin 500 mg (magnesium 37.4 mg) film-coated tablet, 50 933219781000036102 Magmin 500 mg (magnesium 37.4 mg) film-coated tablet 15651000168109 Magmin 15651000168109 Magmin 84625011000036105 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet, 50 52809011000036104 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet 52798011000036107 magnesium aspartate dihydrate +700029701000036106 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11348011000036109 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 4989011000036109 Microgynon 30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700016071000036104 Microgynon 30 ED 700016071000036104 Microgynon 30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029701000036106 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11348011000036109 Microgynon 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 5810011000036100 Microgynon 30 ED (inert substance) sugar coated tablet 700016071000036104 Microgynon 30 ED 700016071000036104 Microgynon 30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +793351000168102 Ondansetron ODT (GH) 4 mg orally disintegrating tablet, 4, blister pack 231602 793341000168104 Ondansetron ODT (GH) 4 mg orally disintegrating tablet, 4 793331000168108 Ondansetron ODT (GH) 4 mg orally disintegrating tablet 793251000168107 Ondansetron ODT (GH) 793251000168107 Ondansetron ODT (GH) 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +1003771000168109 Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60, blister pack 156310 1003761000168103 Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60 1003751000168100 Levetiracetam 1000 (Terry White Chemists) 1 g tablet 1003741000168102 Levetiracetam 1000 (Terry White Chemists) 1003741000168102 Levetiracetam 1000 (Terry White Chemists) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +82911011000036106 Zedace 50 mg uncoated tablet, 90, blister pack 57371 82803011000036100 Zedace 50 mg uncoated tablet, 90 82707011000036107 Zedace 50 mg uncoated tablet 82655011000036100 Zedace 82655011000036100 Zedace 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +81601000036103 Nevirapine (Alphapharm) 200 mg uncoated tablet, 60, bottle 167307 79981000036108 Nevirapine (Alphapharm) 200 mg uncoated tablet, 60 78211000036104 Nevirapine (Alphapharm) 200 mg uncoated tablet 77771000036102 Nevirapine (Alphapharm) 77771000036102 Nevirapine (Alphapharm) 27383011000036105 nevirapine 200 mg tablet, 60 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +60380011000036100 Paracetamol (Pharmacist Own) 500 mg uncoated tablet, 48, blister pack 143014 56339011000036105 Paracetamol (Pharmacist Own) 500 mg uncoated tablet, 48 53883011000036105 Paracetamol (Pharmacist Own) 500 mg uncoated tablet 53397011000036103 Paracetamol (Pharmacist Own) 53397011000036103 Paracetamol (Pharmacist Own) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69581011000036109 Acihexal 5% cream, 5 g, tube 63788 67381011000036100 Acihexal 5% cream, 5 g 65637011000036109 Acihexal 5% cream 3239011000036103 Acihexal 3239011000036103 Acihexal 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +926777011000036108 Colgate Total toothpaste, 45 g, tube 154432 926174011000036108 Colgate Total toothpaste, 45 g 925656011000036103 Colgate Total toothpaste 23851000168102 Colgate Total 23851000168102 Colgate Total 927329011000036102 sodium fluoride 0.22% + triclosan 0.3% toothpaste, 45 g 926991011000036101 sodium fluoride 0.22% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +887601000168103 Cansartan HCTZ 32/12.5 uncoated tablet, 30, blister pack 253373 887581000168107 Cansartan HCTZ 32/12.5 uncoated tablet, 30 887571000168109 Cansartan HCTZ 32/12.5 uncoated tablet 887431000168107 Cansartan HCTZ 32/12.5 887431000168107 Cansartan HCTZ 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +60757011000036109 Resolve Thrush 2% cream, 40 g, tube 52842 56715011000036101 Resolve Thrush 2% cream, 40 g 54046011000036108 Resolve Thrush 2% cream 53532011000036105 Resolve Thrush 53532011000036105 Resolve Thrush 63524011000036104 miconazole nitrate 2% cream, 40 g 22195011000036104 miconazole nitrate 2% cream 21454011000036108 miconazole +20081011000036101 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8, sachet 131552 13309011000036102 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8 6594011000036105 Estalis Sequi 50/250 (estradiol 50 microgram/24 hours) patch 37791000168107 Estalis Sequi 50/250 37791000168107 Estalis Sequi 50/250 27682011000036107 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch [4], 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +20081011000036101 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8, sachet 70826 13309011000036102 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8 6594011000036105 Estalis Sequi 50/250 (estradiol 50 microgram/24 hours) patch 37791000168107 Estalis Sequi 50/250 37791000168107 Estalis Sequi 50/250 27682011000036107 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch [4], 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +20081011000036101 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8, sachet 131552 13309011000036102 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8 6595011000036109 Estalis Sequi 50/250 (estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours) patch 37791000168107 Estalis Sequi 50/250 37791000168107 Estalis Sequi 50/250 27682011000036107 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch [4], 8 23019011000036103 estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch 21228011000036101 estradiol + norethisterone acetate +20081011000036101 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8, sachet 70826 13309011000036102 Estalis Sequi 50/250 (4 x 50 microgram/24 hours patches, 4 x 50 microgram/24 hours/250 microgram/24 hours patches), 8 6595011000036109 Estalis Sequi 50/250 (estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours) patch 37791000168107 Estalis Sequi 50/250 37791000168107 Estalis Sequi 50/250 27682011000036107 estradiol 50 microgram/24 hours patch [4] (&) estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch [4], 8 23019011000036103 estradiol 50 microgram/24 hours + norethisterone acetate 250 microgram/24 hours patch 21228011000036101 estradiol + norethisterone acetate +926927011000036101 Magnevist 46.9 g/100 mL injection solution, 100 mL bottle 90883 926321011000036100 Magnevist 46.9 g/100 mL injection solution, 100 mL bottle 925760011000036100 Magnevist 46.9 g/100 mL injection solution, 100 mL bottle 920916011000036100 Magnevist 920916011000036100 Magnevist 927404011000036100 gadopentetate dimeglumine 46.9 g/100 mL injection, 100 mL bottle 927043011000036103 gadopentetate dimeglumine 46.9 g/100 mL injection, bottle 922037011000036106 gadopentetic acid +770311000168102 Oralair Continuation Treatment 300 IR sublingual tablet, 100, blister pack 167566 770301000168100 Oralair Continuation Treatment 300 IR sublingual tablet, 100 770221000168103 Oralair Continuation Treatment 300 IR sublingual tablet 769411000168108 Oralair Continuation Treatment 300 IR 769411000168108 Oralair Continuation Treatment 300 IR 770291000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet, 100 770061000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +933238741000036107 Hydrocoll Thin (900758) 10 cm x 10 cm dressing, 10, carton 933235481000036102 Hydrocoll Thin (900758) 10 cm x 10 cm dressing, 10 933234401000036107 Hydrocoll Thin (900758) 10 cm x 10 cm dressing 63231000168103 Hydrocoll Thin (900758) 63231000168103 Hydrocoll Thin (900758) 51336011000036103 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing, 10 50870011000036107 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing 50714011000036106 dressing hydrocolloid superficial wound light exudate +781021000168107 Oxycodone MR (GenRx) 20 mg modified release tablet, 60, blister pack 214495 781011000168100 Oxycodone MR (GenRx) 20 mg modified release tablet, 60 780961000168106 Oxycodone MR (GenRx) 20 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +38741000036107 Escitalupin 15 mg film-coated tablet, 100, bottle 165869 35111000036102 Escitalupin 15 mg film-coated tablet, 100 33051000036100 Escitalupin 15 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +952381000168101 Fluvoxamine (AN) 50 mg film-coated tablet, 60, blister pack 168717 952371000168104 Fluvoxamine (AN) 50 mg film-coated tablet, 60 952321000168100 Fluvoxamine (AN) 50 mg film-coated tablet 952311000168107 Fluvoxamine (AN) 952311000168107 Fluvoxamine (AN) 927342011000036109 fluvoxamine maleate 50 mg tablet, 60 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +933230041000036108 Pregnyl (1 x 5000 units ampoule, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 14519 933223841000036106 Pregnyl (1 x 5000 units ampoule, 1 x 1 mL inert diluent ampoule), 1 pack 632891000168106 Pregnyl (inert substance) diluent, 1 mL ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 933223851000036109 human chorionic gonadotrophin 5000 units injection [1 ampoule] (&) inert substance diluent [1 mL ampoule], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +933230041000036108 Pregnyl (1 x 5000 units ampoule, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 14519 933223841000036106 Pregnyl (1 x 5000 units ampoule, 1 x 1 mL inert diluent ampoule), 1 pack 5489011000036102 Pregnyl (human chorionic gonadotrophin 5000 units) powder for injection, 5000 units ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 933223851000036109 human chorionic gonadotrophin 5000 units injection [1 ampoule] (&) inert substance diluent [1 mL ampoule], 1 pack 22250011000036100 human chorionic gonadotrophin 5000 units injection, ampoule 33633011000036101 human chorionic gonadotrophin +961051000168105 Carduran 2 mg uncoated tablet, 28, blister pack 32637 961041000168108 Carduran 2 mg uncoated tablet, 28 960991000168105 Carduran 2 mg uncoated tablet 960961000168103 Carduran 960961000168103 Carduran 961031000168104 doxazosin 2 mg tablet, 28 960981000168107 doxazosin 2 mg tablet 960971000168109 doxazosin +729141000168109 Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations, pump pack 75658 41940011000036100 Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations 40275011000036100 Rhinocort Aqueous 64 microgram/actuation nasal spray, actuation 31911000168108 Rhinocort Aqueous 31911000168108 Rhinocort Aqueous 46725011000036104 budesonide 64 microgram/actuation nasal spray, 50 actuations 23109011000036108 budesonide 64 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +999381000168104 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 200630 999371000168102 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 999351000168106 Drospirenone/EE 3/20 (Apo) (drospirenone 3 mg + ethinylestradiol 20 microgram) film-coated tablet 999341000168109 Drospirenone/EE 3/20 (Apo) 999341000168109 Drospirenone/EE 3/20 (Apo) 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +999381000168104 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 200630 999371000168102 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 999361000168108 Drospirenone/EE 3/20 (Apo) (inert substance) film-coated tablet 999341000168109 Drospirenone/EE 3/20 (Apo) 999341000168109 Drospirenone/EE 3/20 (Apo) 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +928983011000036106 Valaciclovir (Apo) 500 mg film-coated tablet, 90, blister pack 158911 928344011000036106 Valaciclovir (Apo) 500 mg film-coated tablet, 90 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929224011000036102 valaciclovir 500 mg tablet, 90 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +20475011000036103 Videx EC 250 mg enteric capsule, 30, bottle 78355 13675011000036100 Videx EC 250 mg enteric capsule, 30 6958011000036102 Videx EC 250 mg enteric capsule 30871000168102 Videx EC 30871000168102 Videx EC 27878011000036107 didanosine 250 mg enteric capsule, 30 23206011000036102 didanosine 250 mg enteric capsule 21467011000036106 didanosine +34799011000036101 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 76049 34374011000036109 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 75 mL 34064011000036102 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 33949011000036103 Cefaclor (Sandoz) 33949011000036103 Cefaclor (Sandoz) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +59866011000036104 Anti Diarrhoea (Guardian) 2 mg uncoated tablet, 10, blister pack 115533 55828011000036101 Anti Diarrhoea (Guardian) 2 mg uncoated tablet, 10 53703011000036108 Anti Diarrhoea (Guardian) 2 mg uncoated tablet 53135011000036108 Anti Diarrhoea (Guardian) 53135011000036108 Anti Diarrhoea (Guardian) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +1029451000168100 Mycophenolate (Aspen) 500 mg film-coated tablet, 50, blister pack 174869 1029441000168102 Mycophenolate (Aspen) 500 mg film-coated tablet, 50 1029431000168106 Mycophenolate (Aspen) 500 mg film-coated tablet 1029421000168108 Mycophenolate (Aspen) 1029421000168108 Mycophenolate (Aspen) 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +964661000168104 Normatens 400 microgram film-coated tablet, 84, blister pack 114124 964651000168101 Normatens 400 microgram film-coated tablet, 84 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964641000168103 moxonidine 400 microgram tablet, 84 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +82363011000036101 Myambutol 400 mg film-coated tablet, 56, bottle 147246 82152011000036107 Myambutol 400 mg film-coated tablet, 56 40019011000036102 Myambutol 400 mg film-coated tablet 39578011000036103 Myambutol 39578011000036103 Myambutol 82541011000036108 ethambutol hydrochloride 400 mg tablet, 56 45093011000036109 ethambutol hydrochloride 400 mg tablet 44949011000036100 ethambutol +85571000036108 Razit 10 mg enteric tablet, 90, bottle 189237 84681000036107 Razit 10 mg enteric tablet, 90 84211000036101 Razit 10 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 84691000036109 rabeprazole sodium 10 mg enteric tablet, 90 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1110841000168107 Quetiapine (RBX) 150 mg film-coated tablet, 60, blister pack 166425 1110831000168103 Quetiapine (RBX) 150 mg film-coated tablet, 60 1110821000168101 Quetiapine (RBX) 150 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +933230131000036104 Ondansetron (Alphapharm) 8 mg/4 mL injection solution, 4 mL ampoule 155843 933223951000036103 Ondansetron (Alphapharm) 8 mg/4 mL injection solution, 4 mL ampoule 929400011000036104 Ondansetron (Alphapharm) 8 mg/4 mL injection solution, 4 mL ampoule 929370011000036100 Ondansetron (Alphapharm) 929370011000036100 Ondansetron (Alphapharm) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +130981000036109 Montelukast (Chemmart) 4 mg chewable tablet, 28, blister pack 179116 127891000036101 Montelukast (Chemmart) 4 mg chewable tablet, 28 124481000036109 Montelukast (Chemmart) 4 mg chewable tablet 123651000036102 Montelukast (Chemmart) 123651000036102 Montelukast (Chemmart) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +933247211000036104 Finpro 5 mg film-coated tablet, 30, blister pack 161627 933243491000036100 Finpro 5 mg film-coated tablet, 30 933241501000036108 Finpro 5 mg film-coated tablet 933240901000036108 Finpro 933240901000036108 Finpro 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +1001551000168107 Pregabalin (Apo) 100 mg hard capsule, 14, blister pack 193275 1000801000168103 Pregabalin (Apo) 100 mg hard capsule, 14 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +1044051000168107 Pryzex 7.5 mg film-coated tablet, 50, blister pack 178987 1044041000168105 Pryzex 7.5 mg film-coated tablet, 50 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044031000168101 olanzapine 7.5 mg tablet, 50 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +1104351000168107 Mogadon 5 mg uncoated tablet, 4, blister pack 13751 1104341000168105 Mogadon 5 mg uncoated tablet, 4 5371011000036104 Mogadon 5 mg uncoated tablet 3616011000036104 Mogadon 3616011000036104 Mogadon 1104331000168101 nitrazepam 5 mg tablet, 4 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +1008041000168107 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 30 actuations, dry powder inhaler 73725 1008031000168103 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 30 actuations 1008011000168108 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, actuation 1007991000168101 Asmanex Twisthaler 1007991000168101 Asmanex Twisthaler 1008021000168101 mometasone furoate 200 microgram/actuation powder for inhalation, 30 actuations 1008001000168105 mometasone furoate 200 microgram/actuation powder for inhalation, actuation 21409011000036100 mometasone +19413011000036109 Humatrope (1 x 24 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack, composite pack 53364 12697011000036109 Humatrope (1 x 24 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack 639101000168102 Humatrope (inert substance) diluent, 3.15 mL syringe 4137011000036105 Humatrope 4137011000036105 Humatrope 27291011000036100 somatropin 24 mg injection [1 cartridge] (&) inert substance diluent [3.15 mL syringe], 1 pack 639091000168107 inert substance diluent, 3.15 mL syringe 21220011000036103 inert substance +19413011000036109 Humatrope (1 x 24 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack, composite pack 53364 12697011000036109 Humatrope (1 x 24 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack 5495011000036100 Humatrope (somatropin 24 mg) powder for injection, 24 mg cartridge 4137011000036105 Humatrope 4137011000036105 Humatrope 27291011000036100 somatropin 24 mg injection [1 cartridge] (&) inert substance diluent [3.15 mL syringe], 1 pack 22645011000036108 somatropin 24 mg injection, cartridge 21295011000036100 somatropin +796091000168104 Aciclovir (GH) 400 mg uncoated tablet, 56, blister pack 183861 796081000168102 Aciclovir (GH) 400 mg uncoated tablet, 56 796071000168100 Aciclovir (GH) 400 mg uncoated tablet 933234351000036100 Aciclovir (GH) 933234351000036100 Aciclovir (GH) 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +922321000168104 Perindopril/Indapamide 4/1.25 (Pharmacor) uncoated tablet, 30, blister pack 143390 922311000168106 Perindopril/Indapamide 4/1.25 (Pharmacor) uncoated tablet, 30 922301000168108 Perindopril/Indapamide 4/1.25 (Pharmacor) uncoated tablet 922281000168109 Perindopril/Indapamide 4/1.25 (Pharmacor) 922281000168109 Perindopril/Indapamide 4/1.25 (Pharmacor) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +1059001000168109 Ondansetron (Auro) 4 mg film-coated tablet, 90, blister pack 173184 1058991000168109 Ondansetron (Auro) 4 mg film-coated tablet, 90 1058811000168106 Ondansetron (Auro) 4 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 1058981000168106 ondansetron 4 mg tablet, 90 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +753131000168102 Canesten Fungal Nail Treatment Set (20 g x Bifonazole Anti-Fungal cream, 10 g x Urea ointment), 1 pack, composite pack 753121000168100 Canesten Fungal Nail Treatment Set (20 g x Bifonazole Anti-Fungal cream, 10 g x Urea ointment), 1 pack 752661000168108 Canesten Bifonazole Anti-Fungal 1% cream 752751000168102 Canesten Fungal Nail Treatment Set 752651000168106 Canesten Bifonazole Anti-Fungal 753111000168107 bifonazole 1% cream [20 g] (&) urea 40% ointment [10 g], 1 pack 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +753131000168102 Canesten Fungal Nail Treatment Set (20 g x Bifonazole Anti-Fungal cream, 10 g x Urea ointment), 1 pack, composite pack 753121000168100 Canesten Fungal Nail Treatment Set (20 g x Bifonazole Anti-Fungal cream, 10 g x Urea ointment), 1 pack 752711000168103 Canesten Urea 40% ointment 752751000168102 Canesten Fungal Nail Treatment Set 752691000168101 Canesten Urea 753111000168107 bifonazole 1% cream [20 g] (&) urea 40% ointment [10 g], 1 pack 752701000168101 urea 40% ointment 21561011000036106 urea +34645011000036102 Thelin 100 mg film-coated tablet, 30, bottle 123264 34234011000036104 Thelin 100 mg film-coated tablet, 30 33976011000036106 Thelin 100 mg film-coated tablet 33940011000036109 Thelin 33940011000036109 Thelin 35110011000036106 sitaxentan sodium 100 mg tablet, 30 34852011000036100 sitaxentan sodium 100 mg tablet 34844011000036106 sitaxentan +44137011000036106 Di-Gesic film-coated tablet, 20, blister pack 52509 41613011000036102 Di-Gesic film-coated tablet, 20 40102011000036102 Di-Gesic film-coated tablet 39754011000036106 Di-Gesic 39754011000036106 Di-Gesic 46681011000036103 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet, 20 45260011000036108 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet 37703011000036109 dextropropoxyphene + paracetamol +60440011000036101 Diclofenac Sodium (GA) 25 mg enteric tablet, 50, bottle 147972 56399011000036102 Diclofenac Sodium (GA) 25 mg enteric tablet, 50 53902011000036108 Diclofenac Sodium (GA) 25 mg enteric tablet 53267011000036108 Diclofenac Sodium (GA) 53267011000036108 Diclofenac Sodium (GA) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +38421000036109 Escital 10 mg film-coated tablet, 30, bottle 165849 34751000036101 Escital 10 mg film-coated tablet, 30 32411000036104 Escital 10 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +977591000168107 Aripiprazole (AN) 2 mg uncoated tablet, 56, blister pack 198202 977581000168109 Aripiprazole (AN) 2 mg uncoated tablet, 56 977531000168108 Aripiprazole (AN) 2 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 801671000168100 aripiprazole 2 mg tablet, 56 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +943191000168105 Agomelatine (Ardix) 25 mg film-coated tablet, 28, blister pack 279059 943181000168107 Agomelatine (Ardix) 25 mg film-coated tablet, 28 943171000168109 Agomelatine (Ardix) 25 mg film-coated tablet 943161000168103 Agomelatine (Ardix) 943161000168103 Agomelatine (Ardix) 933203621000036105 agomelatine 25 mg tablet, 28 933195601000036101 agomelatine 25 mg tablet 933216401000036109 agomelatine +1041721000168100 Atorvastatin (AS) 10 mg film-coated tablet, 30, blister pack 178545 1041711000168107 Atorvastatin (AS) 10 mg film-coated tablet, 30 1041631000168105 Atorvastatin (AS) 10 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +793441000168106 Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial 57483 793431000168102 Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial 793411000168107 Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 113.6 mg vial 4332011000036101 Etopophos 4332011000036101 Etopophos 793421000168100 etoposide phosphate 113.6 mg (etoposide 100 mg) injection, 1 vial 793401000168109 etoposide phosphate 113.6 mg (etoposide 100 mg) injection, vial 21469011000036104 etoposide +1043891000168107 Pryzex 7.5 mg film-coated tablet, 10, blister pack 178987 1043881000168109 Pryzex 7.5 mg film-coated tablet, 10 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043871000168106 olanzapine 7.5 mg tablet, 10 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +69461011000036103 Glucose (Baxter) 10% (100 g/L) intravenous infusion injection, 12 x 1 L bags 48594 67261011000036107 Glucose (Baxter) 10% (100 g/L) intravenous infusion injection, 12 x 1 L bags 65580011000036108 Glucose (Baxter) 10% (100 g/L) intravenous infusion injection, 1 L bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71811011000036104 glucose 10% (100 g/L) injection, 12 x 1 L bags 70196011000036107 glucose 10% (100 g/L) injection, bag 21354011000036103 glucose +768621000168105 Fluquadri Junior 2016 injection suspension, 10 x 0.25 mL syringes 213964 768611000168103 Fluquadri Junior 2016 injection suspension, 10 x 0.25 mL syringes 768561000168101 Fluquadri Junior 2016 injection suspension, 0.25 mL syringe 768541000168100 Fluquadri Junior 2016 768541000168100 Fluquadri Junior 2016 768601000168101 influenza quadrivalent child vaccine 2016 injection, 10 x 0.25 mL syringes 768551000168103 influenza quadrivalent child vaccine 2016 injection, 0.25 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +60484011000036103 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 9 sachets 150168 56442011000036105 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 9 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63362011000036104 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 9 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +86090011000036105 Sinus Relief Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157694 85721011000036106 Sinus Relief Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24 85359011000036105 Sinus Relief Day and Night PE (Night) (Terry White Chemists) uncoated tablet 27121000168106 Sinus Relief Day and Night PE (Terry White Chemists) 27341000168102 Sinus Relief Day and Night PE (Night) (Terry White Chemists) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +86090011000036105 Sinus Relief Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157694 85721011000036106 Sinus Relief Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24 85358011000036102 Sinus Relief Day and Night PE (Day) (Terry White Chemists) uncoated tablet 27121000168106 Sinus Relief Day and Night PE (Terry White Chemists) 27221000168102 Sinus Relief Day and Night PE (Day) (Terry White Chemists) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +727931000168108 Viramune 200 mg uncoated tablet, 14, blister pack 56892 727921000168105 Viramune 200 mg uncoated tablet, 14 6117011000036108 Viramune 200 mg uncoated tablet 7221000168106 Viramune 7221000168106 Viramune 94541000036101 nevirapine 200 mg tablet, 14 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +32556011000036109 Meloxicam (Ranbaxy) 7.5 mg uncoated tablet, 30, blister pack 127417 32348011000036108 Meloxicam (Ranbaxy) 7.5 mg uncoated tablet, 30 32225011000036107 Meloxicam (Ranbaxy) 7.5 mg uncoated tablet 32178011000036103 Meloxicam (Ranbaxy) 32178011000036103 Meloxicam (Ranbaxy) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +43779011000036107 Solaraze 3% gel, 50 g, tube 116785 41175011000036107 Solaraze 3% gel, 50 g 39962011000036102 Solaraze 3% gel 39651011000036100 Solaraze 39651011000036100 Solaraze 46141011000036106 diclofenac sodium 3% gel, 50 g 45007011000036102 diclofenac sodium 3% gel 21288011000036105 diclofenac +771591000168107 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 180562 771581000168109 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 771571000168106 Drospirenone/Ethinyloestradiol (GH) (inert substance) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771591000168107 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 180562 771581000168109 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 771561000168100 Drospirenone/Ethinyloestradiol (GH) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +19858011000036103 Aldara 5% cream, 12 x 250 mg sachets 64798 13105011000036107 Aldara 5% cream, 12 x 250 mg sachets 6389011000036109 Aldara 5% cream, 250 mg sachet 3048011000036100 Aldara 3048011000036100 Aldara 27549011000036101 imiquimod 5% cream, 12 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +50563011000036107 Durotram XR (once a day) 100 mg modified release tablet, 5, blister pack 134773 49597011000036107 Durotram XR (once a day) 100 mg modified release tablet, 5 48786011000036109 Durotram XR (once a day) 100 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51501011000036103 tramadol hydrochloride 100 mg modified release tablet, 5 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +43949011000036102 Videx 5 mg/mL powder for oral liquid, 1 mL bottle 34306 41441011000036105 Videx 5 mg/mL powder for oral liquid, 1 mL bottle 39973011000036102 Videx 5 mg/mL powder for oral liquid 49411000168100 Videx 49411000168100 Videx 46292011000036108 didanosine 5 mg/mL powder for oral liquid, 1 mL bottle 45057011000036107 didanosine 5 mg/mL powder for oral liquid 21467011000036106 didanosine +933214341000036106 Seralin 100 mg film-coated tablet, 14, blister pack 160778 933203581000036105 Seralin 100 mg film-coated tablet, 14 933195851000036101 Seralin 100 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 929239011000036104 sertraline 100 mg tablet, 14 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +19420011000036108 Elocon 0.1% lotion, 30 mL, bottle 53472 12704011000036106 Elocon 0.1% lotion, 30 mL 5337011000036109 Elocon 0.1% lotion 4301011000036100 Elocon 4301011000036100 Elocon 27414011000036102 mometasone furoate 0.1% lotion, 30 mL 22762011000036102 mometasone furoate 0.1% lotion 21409011000036100 mometasone +1011671000168101 Solifenacin (Apo) 5 mg film-coated tablet, 30, blister pack 218404 758011000168104 Solifenacin (Apo) 5 mg film-coated tablet, 30 758001000168102 Solifenacin (Apo) 5 mg film-coated tablet 757981000168108 Solifenacin (Apo) 757981000168108 Solifenacin (Apo) 46153011000036105 solifenacin succinate 5 mg tablet, 30 45010011000036100 solifenacin succinate 5 mg tablet 44891011000036101 solifenacin +1018891000168109 Aripiprazole (Actavis) 5 mg uncoated tablet, 30, blister pack 217221 1018881000168106 Aripiprazole (Actavis) 5 mg uncoated tablet, 30 1018541000168103 Aripiprazole (Actavis) 5 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +848901000168102 Itraconazole (Apo) 100 mg hard capsule, 15, blister pack 244473 848891000168101 Itraconazole (Apo) 100 mg hard capsule, 15 848781000168108 Itraconazole (Apo) 100 mg hard capsule 848771000168105 Itraconazole (Apo) 848771000168105 Itraconazole (Apo) 46361011000036108 itraconazole 100 mg capsule, 15 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +37335011000036100 Bricanyl Elixir 300 microgram/mL oral liquid solution, 300 mL, bottle 12067 36707011000036104 Bricanyl Elixir 300 microgram/mL oral liquid solution, 300 mL 36049011000036102 Bricanyl Elixir 300 microgram/mL oral liquid solution 39851000168102 Bricanyl Elixir 39851000168102 Bricanyl Elixir 38620011000036105 terbutaline sulfate 300 microgram/mL oral liquid, 300 mL 37882011000036104 terbutaline sulfate 300 microgram/mL oral liquid 21514011000036105 terbutaline +19328011000036104 Clozaril 100 mg uncoated tablet, 100, blister pack 50511 13750011000036101 Clozaril 100 mg uncoated tablet, 100 7035011000036104 Clozaril 100 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 28136011000036106 clozapine 100 mg tablet, 100 23445011000036103 clozapine 100 mg tablet 21222011000036104 clozapine +69126011000036103 Nicabate Pre-Quit 21 mg/24 hours patch, 3, sachet 151699 66926011000036106 Nicabate Pre-Quit 21 mg/24 hours patch, 3 65375011000036109 Nicabate Pre-Quit 21 mg/24 hours patch 1751000168100 Nicabate Pre-Quit 1751000168100 Nicabate Pre-Quit 71998011000036103 nicotine 21 mg/24 hours patch, 3 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +926668011000036108 Nicabate CQ Mint 2 mg lozenge, 24, tube 128779 926146011000036104 Nicabate CQ Mint 2 mg lozenge, 24 87060011000036106 Nicabate CQ Mint 2 mg lozenge 5741000168104 Nicabate CQ 5741000168104 Nicabate CQ 927318011000036104 nicotine 2 mg lozenge, 24 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +50681011000036103 Betachek G5 diagnostic strip, 50, bottle 62293 49705011000036104 Betachek G5 diagnostic strip, 50 48833011000036108 Betachek G5 diagnostic strip 19121000168109 Betachek G5 19121000168109 Betachek G5 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +19685011000036109 Alphagan 0.2% eye drops solution, 5 mL, bottle 60297 12943011000036107 Alphagan 0.2% eye drops solution, 5 mL 6233011000036107 Alphagan 0.2% eye drops solution 44721000168104 Alphagan 44721000168104 Alphagan 27954011000036108 brimonidine tartrate 0.2% eye drops, 5 mL 23278011000036107 brimonidine tartrate 0.2% eye drops 21861011000036105 brimonidine +843281000168109 Centrum Select 50 Plus film-coated tablet, 60, bottle 156452 843271000168106 Centrum Select 50 Plus film-coated tablet, 60 843221000168105 Centrum Select 50 Plus film-coated tablet 920936011000036106 Centrum Select 50 Plus 920936011000036106 Centrum Select 50 Plus 843261000168100 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 60 843211000168103 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet 922055011000036102 dl-alpha-tocopherol + ascorbic acid + betacarotene + biotin + calcium hydrogen phosphate dihydrate + chromic chloride + colecalciferol + cupric oxide + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide heavy + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + phytomenadione + potassium sulfate + pyridoxine + retinol acetate + riboflavin + selenium + thiamine + zinc oxide +934331000168109 Centevo 175/43.75/200 mg film-coated tablet, 98, bottle 238858 934321000168106 Centevo 175/43.75/200 mg film-coated tablet, 98 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934311000168104 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 98 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1051041000168105 Oxycodone (Aspen) 5 mg uncoated tablet, 500, blister pack 224758 1051031000168101 Oxycodone (Aspen) 5 mg uncoated tablet, 500 708981000168101 Oxycodone (Aspen) 5 mg uncoated tablet 708971000168104 Oxycodone (Aspen) 708971000168104 Oxycodone (Aspen) 35136011000036103 oxycodone hydrochloride 5 mg tablet, 500 22269011000036101 oxycodone hydrochloride 5 mg tablet 21259011000036105 oxycodone +1068181000168102 Paracetamol plus Codeine (Meditab) uncoated tablet, 12, blister pack 184463 1068171000168100 Paracetamol plus Codeine (Meditab) uncoated tablet, 12 1068141000168107 Paracetamol plus Codeine (Meditab) uncoated tablet 1068081000168103 Paracetamol plus Codeine (Meditab) 1068081000168103 Paracetamol plus Codeine (Meditab) 63876011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 12 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +877841000168107 Dilaudid-HP 50 mg/mL concentrated injection, 5 x 1 mL ampoules 272634 877831000168103 Dilaudid-HP 50 mg/mL concentrated injection, 5 x 1 mL ampoules 877811000168108 Dilaudid-HP 50 mg/mL concentrated injection, ampoule 1601000168105 Dilaudid-HP 1601000168105 Dilaudid-HP 877821000168101 hydromorphone hydrochloride 50 mg/mL injection, 5 x 1 mL ampoules 877801000168105 hydromorphone hydrochloride 50 mg/mL injection, ampoule 21480011000036107 hydromorphone +1006031000168102 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 190568 1006021000168100 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 1006011000168107 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 20 mL ampoule 728521000168101 Ropivacaine 0.75% (Actavis) 728521000168101 Ropivacaine 0.75% (Actavis) 1004901000168103 ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules 1004881000168100 ropivacaine hydrochloride 150 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +1105631000168106 Valpam 2 mg uncoated tablet, 60, blister pack 80809 1105521000168109 Valpam 2 mg uncoated tablet, 60 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105511000168102 diazepam 2 mg tablet, 60 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +800431000168109 Ringworm (Amneal) 1% ointment, 15 g, tube 10995 800421000168106 Ringworm (Amneal) 1% ointment, 15 g 800411000168104 Ringworm (Amneal) 1% ointment 800401000168102 Ringworm (Amneal) 800401000168102 Ringworm (Amneal) 71307011000036106 tolnaftate 1% ointment, 15 g 69941011000036109 tolnaftate 1% ointment 21680011000036105 tolnaftate +1022141000168101 Atelvia 30 mg film-coated tablet, 28, blister pack 163752 1022131000168105 Atelvia 30 mg film-coated tablet, 28 1022081000168105 Atelvia 30 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 27741011000036101 risedronate sodium 30 mg tablet, 28 23072011000036102 risedronate sodium 30 mg tablet 21476011000036103 risedronate +61570011000036101 Topizol Antifungal 1% cream, 50 g, tube 94371 57492011000036103 Topizol Antifungal 1% cream, 50 g 54323011000036104 Topizol Antifungal 1% cream 44961000168107 Topizol Antifungal 44961000168107 Topizol Antifungal 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +921361000168101 Ceftriaxone (Pfizer) 2 g powder for injection, 1 vial 174452 921351000168103 Ceftriaxone (Pfizer) 2 g powder for injection, 1 vial 921341000168100 Ceftriaxone (Pfizer) 2 g powder for injection, 2 g vial 920781000168100 Ceftriaxone (Pfizer) 920781000168100 Ceftriaxone (Pfizer) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +68714011000036109 Deep Heat Night Strength cream, 100 g, tube 12820 66711011000036104 Deep Heat Night Strength cream, 100 g 65459011000036101 Deep Heat Night Strength cream 48081000168107 Deep Heat Night Strength 48081000168107 Deep Heat Night Strength 71746011000036102 methyl salicylate 30% + menthol 8% cream, 100 g 70166011000036109 methyl salicylate 30% + menthol 8% cream 69751011000036100 methyl salicylate + menthol +977171000168102 Pregabalin (Apotex) 225 mg hard capsule, 14, blister pack 267558 977161000168108 Pregabalin (Apotex) 225 mg hard capsule, 14 977151000168106 Pregabalin (Apotex) 225 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +860501000168102 Amisulpride (Winthrop) 50 mg uncoated tablet, 10, blister pack 125164 860491000168109 Amisulpride (Winthrop) 50 mg uncoated tablet, 10 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 860481000168106 amisulpride 50 mg tablet, 10 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +797461000168100 Citalopram (A) 20 mg film-coated tablet, 56, bottle 158882 797451000168102 Citalopram (A) 20 mg film-coated tablet, 56 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +840311000168101 Prometrium 100 mg soft capsule, 15, blister pack 232818 840301000168104 Prometrium 100 mg soft capsule, 15 840251000168105 Prometrium 100 mg soft capsule 840231000168104 Prometrium 840231000168104 Prometrium 840291000168100 progesterone 100 mg capsule, 15 840241000168108 progesterone 100 mg capsule 21412011000036108 progesterone +920659011000036102 Octreotide (DBL) 100 microgram/mL injection solution, 5 x 1 mL vials 120735 920369011000036102 Octreotide (DBL) 100 microgram/mL injection solution, 5 x 1 mL vials 920135011000036102 Octreotide (DBL) 100 microgram/mL injection solution, vial 920100011000036104 Octreotide (DBL) 920100011000036104 Octreotide (DBL) 32758011000036109 octreotide 100 microgram/mL injection, 5 x 1 mL vials 32689011000036104 octreotide 100 microgram/mL injection, vial 21316011000036104 octreotide +972841000168104 Pregabalin (Apotex) 25 mg hard capsule, 60, blister pack 267552 972831000168108 Pregabalin (Apotex) 25 mg hard capsule, 60 972761000168109 Pregabalin (Apotex) 25 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1007401000168100 Modafinil (Mylan) 100 mg uncoated tablet, 90, blister pack 269913 1007391000168102 Modafinil (Mylan) 100 mg uncoated tablet, 90 1007301000168108 Modafinil (Mylan) 100 mg uncoated tablet 1007271000168106 Modafinil (Mylan) 1007271000168106 Modafinil (Mylan) 951231000168103 modafinil 100 mg tablet, 90 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +823051000168108 Gardasil injection suspension, 0.5 mL syringe 124410 823041000168106 Gardasil injection suspension, 0.5 mL syringe 823021000168100 Gardasil injection suspension, 0.5 mL syringe 73683011000036100 Gardasil 73683011000036100 Gardasil 823031000168102 human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe 823011000168107 human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe 822951000168103 human papillomavirus quadrivalent vaccine +18890011000036107 Dexamphetamine Sulfate (Sigma) 5 mg uncoated tablet, 100, bottle 19684 12198011000036106 Dexamphetamine Sulfate (Sigma) 5 mg uncoated tablet, 100 4968011000036103 Dexamphetamine Sulfate (Sigma) 5 mg uncoated tablet 30571011000036106 Dexamphetamine Sulfate (Sigma) 30571011000036106 Dexamphetamine Sulfate (Sigma) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +1027531000168104 Neuroccord 25 mg hard capsule, 200, bottle 235872 1027521000168102 Neuroccord 25 mg hard capsule, 200 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970421000168107 pregabalin 25 mg capsule, 200 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +834911000168109 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20, blister pack 276146 834901000168106 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20 834701000168108 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 834811000168103 codeine phosphate hemihydrate 30 mg tablet, 20 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +834911000168109 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20, blister pack 42077 834901000168106 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20 834701000168108 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 664971000168100 Codeine Phosphate Hemihydrate (Aspen) 834811000168103 codeine phosphate hemihydrate 30 mg tablet, 20 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +131061000036109 Candesartan Cilexetil (Stada) 32 mg uncoated tablet, 30, bottle 195446 128261000036106 Candesartan Cilexetil (Stada) 32 mg uncoated tablet, 30 125031000036103 Candesartan Cilexetil (Stada) 32 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +1039461000168101 Atorvastatin (Ascent) 40 mg film-coated tablet, 10, blister pack 178527 1039451000168103 Atorvastatin (Ascent) 40 mg film-coated tablet, 10 1039441000168100 Atorvastatin (Ascent) 40 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +165791000036105 Trajentamet 2.5 mg/500 mg film-coated tablet, 60, blister pack 195088 163901000036101 Trajentamet 2.5 mg/500 mg film-coated tablet, 60 162411000036103 Trajentamet 2.5 mg/500 mg film-coated tablet 13261000168107 Trajentamet 2.5 mg/500 mg 13261000168107 Trajentamet 2.5 mg/500 mg 163911000036104 linagliptin 2.5 mg + metformin hydrochloride 500 mg tablet, 60 162421000036105 linagliptin 2.5 mg + metformin hydrochloride 500 mg tablet 166311000036107 linagliptin + metformin +56151000036106 Fexofenadine Hydrochloride (Pharmacy Health) 180 mg film-coated tablet, 10, blister pack 152779 51471000036102 Fexofenadine Hydrochloride (Pharmacy Health) 180 mg film-coated tablet, 10 49661000036107 Fexofenadine Hydrochloride (Pharmacy Health) 180 mg film-coated tablet 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +69682011000036109 Dencorub Anti-Inflammatory 1% gel, 50 g, tube 82606 67481011000036106 Dencorub Anti-Inflammatory 1% gel, 50 g 65678011000036108 Dencorub Anti-Inflammatory 1% gel 64960011000036106 Dencorub Anti-Inflammatory 64960011000036106 Dencorub Anti-Inflammatory 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +74772011000036108 Decongestant (Amcal) Refill 0.05% nasal spray, 18 mL, bottle 117621 74223011000036106 Decongestant (Amcal) Refill 0.05% nasal spray, 18 mL 73787011000036100 Decongestant (Amcal) Refill 0.05% nasal spray 73712011000036100 Decongestant (Amcal) 73712011000036100 Decongestant (Amcal) 75486011000036101 oxymetazoline hydrochloride 0.05% nasal spray, 18 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +933247371000036104 Gemcitabine (Ebewe) 200 mg/5 mL concentrated injection, 5 mL vial 169042 933244151000036101 Gemcitabine (Ebewe) 200 mg/5 mL concentrated injection, 5 mL vial 933241701000036104 Gemcitabine (Ebewe) 200 mg/5 mL concentrated injection, 5 mL vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 933244161000036103 gemcitabine 200 mg/5 mL injection, 5 mL vial 933241711000036102 gemcitabine 200 mg/5 mL injection, vial 21644011000036108 gemcitabine +929710011000036109 MS Mono 60 mg modified release capsule, 14, blister pack 74154 929546011000036103 MS Mono 60 mg modified release capsule, 14 6724011000036102 MS Mono 60 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 929767011000036106 morphine sulfate pentahydrate 60 mg modified release capsule, 14 23080011000036107 morphine sulfate pentahydrate 60 mg modified release capsule 21252011000036100 morphine +998741000168100 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet, 100, blister pack 184813 998731000168109 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet, 100 998681000168100 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 806601000168102 perindopril arginine 2.5 mg tablet, 100 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +926691011000036102 Metermine 15 mg modified release capsule, 30, blister pack 101828 926056011000036105 Metermine 15 mg modified release capsule, 30 925617011000036108 Metermine 15 mg modified release capsule 925524011000036102 Metermine 925524011000036102 Metermine 71303011000036102 phentermine 15 mg modified release capsule, 30 69940011000036102 phentermine 15 mg modified release capsule 37725011000036101 phentermine +667811000168109 Xelabine 500 mg film-coated tablet, 30, blister pack 213045 667801000168106 Xelabine 500 mg film-coated tablet, 30 667781000168107 Xelabine 500 mg film-coated tablet 667481000168100 Xelabine 667481000168100 Xelabine 667791000168105 capecitabine 500 mg tablet, 30 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +18795011000036101 Glucomet 500 mg film-coated tablet, 100, blister pack 115136 11483011000036100 Glucomet 500 mg film-coated tablet, 100 4721011000036106 Glucomet 500 mg film-coated tablet 4140011000036108 Glucomet 4140011000036108 Glucomet 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +77146011000036106 TYR Anamix Junior powder for oral liquid, 30 x 29 g sachets 76549011000036105 TYR Anamix Junior powder for oral liquid, 30 x 29 g sachets 372231000168100 TYR Anamix Junior powder for oral liquid, 29 g sachet 35181000168103 TYR Anamix Junior 35181000168103 TYR Anamix Junior 78106011000036107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 30 x 29 g sachets 371981000168102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 29 g sachet 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +933214421000036107 Reditra 100 mg film-coated tablet, 14, blister pack 160780 933203721000036103 Reditra 100 mg film-coated tablet, 14 933195871000036106 Reditra 100 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 929239011000036104 sertraline 100 mg tablet, 14 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +933247531000036105 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet, 30, blister pack 175922 933244391000036108 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet, 30 933241831000036104 Bisoprolol Fumarate (Pfizer) 5 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 79209011000036102 bisoprolol fumarate 5 mg tablet, 30 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +988991000168109 Fexofenadine (Blooms The Chemist) 180 mg film-coated tablet, 30, blister pack 183644 988981000168106 Fexofenadine (Blooms The Chemist) 180 mg film-coated tablet, 30 988951000168104 Fexofenadine (Blooms The Chemist) 180 mg film-coated tablet 988941000168101 Fexofenadine (Blooms The Chemist) 988941000168101 Fexofenadine (Blooms The Chemist) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1022301000168100 Butafen 200 mg film-coated tablet, 84, blister pack 155484 1022291000168101 Butafen 200 mg film-coated tablet, 84 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 984481000168107 ibuprofen 200 mg tablet, 84 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +981521000168105 Pritor 80 mg uncoated tablet, 56, blister pack 68055 981511000168103 Pritor 80 mg uncoated tablet, 56 981411000168104 Pritor 80 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 981501000168101 telmisartan 80 mg tablet, 56 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +44744011000036108 Nuvaring vaginal drug delivery system, 3 rings, sachet 96229 42189011000036104 Nuvaring vaginal drug delivery system, 3 rings 40378011000036104 Nuvaring vaginal drug delivery system, 1 ring 39600011000036104 Nuvaring 39600011000036104 Nuvaring 46950011000036100 etonogestrel 120 microgram/24 hours + ethinylestradiol 15 microgram/24 hours vaginal drug delivery system, 3 rings 45352011000036109 etonogestrel 120 microgram/24 hours + ethinylestradiol 15 microgram/24 hours vaginal drug delivery system, 1 ring 44876011000036103 etonogestrel + ethinylestradiol +901221000168106 Belsomra 15 mg film-coated tablet, 3, blister pack 207709 901211000168104 Belsomra 15 mg film-coated tablet, 3 901191000168100 Belsomra 15 mg film-coated tablet 901051000168106 Belsomra 901051000168106 Belsomra 901201000168102 suvorexant 15 mg tablet, 3 901181000168103 suvorexant 15 mg tablet 901171000168101 suvorexant +960091000168106 Stilnoxium CR 6.25 mg modified release tablet, 100, blister pack 120711 960081000168108 Stilnoxium CR 6.25 mg modified release tablet, 100 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46176011000036102 zolpidem tartrate 6.25 mg modified release tablet, 100 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +44427011000036107 Stelazine 5 mg film-coated tablet, 100, bottle 71780 13175011000036104 Stelazine 5 mg film-coated tablet, 100 6458011000036100 Stelazine 5 mg film-coated tablet 7991000168102 Stelazine 7991000168102 Stelazine 27593011000036107 trifluoperazine 5 mg tablet, 100 22932011000036103 trifluoperazine 5 mg tablet 21507011000036102 trifluoperazine +943011000168100 Lobivon 10 mg tablet, 28, blister pack 148884 943001000168103 Lobivon 10 mg tablet, 28 942991000168104 Lobivon 10 mg tablet 942981000168102 Lobivon 942981000168102 Lobivon 83489011000036100 nebivolol 10 mg tablet, 28 83432011000036104 nebivolol 10 mg tablet 83418011000036105 nebivolol +993331000168103 Clarithromycin (Apotex) 250 mg film-coated tablet, 14, blister pack 174943 993321000168101 Clarithromycin (Apotex) 250 mg film-coated tablet, 14 993291000168109 Clarithromycin (Apotex) 250 mg film-coated tablet 993281000168106 Clarithromycin (Apotex) 993281000168106 Clarithromycin (Apotex) 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +659221000168101 Olanzapine (AN) 2.5 mg film-coated tablet, 28, blister pack 178998 659211000168108 Olanzapine (AN) 2.5 mg film-coated tablet, 28 659201000168105 Olanzapine (AN) 2.5 mg film-coated tablet 659161000168100 Olanzapine (AN) 659161000168100 Olanzapine (AN) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +18360011000036106 Cordarone X 200 mg uncoated tablet, 30, blister pack 15361 12085011000036106 Cordarone X 200 mg uncoated tablet, 30 5642011000036100 Cordarone X 200 mg uncoated tablet 20951000168100 Cordarone X 20951000168100 Cordarone X 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +1094001000168102 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 500 mL, pump pack 281339 1093991000168105 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 500 mL 1093961000168103 Antimicrobial Hand Sanitiser (Elyptol) 70% gel 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 925448011000036103 ethanol 70% gel, 500 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +964421000168106 Normatens 300 microgram film-coated tablet, 84, blister pack 114123 964411000168104 Normatens 300 microgram film-coated tablet, 84 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964401000168102 moxonidine 300 microgram tablet, 84 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +33567011000036108 Fluvax 2008 injection suspension, 1 x 0.5 mL syringe 145707 33305011000036102 Fluvax 2008 injection suspension, 1 x 0.5 mL syringe 33067011000036105 Fluvax 2008 injection suspension, 0.5 mL syringe 52341000168104 Fluvax 2008 52341000168104 Fluvax 2008 33818011000036109 influenza trivalent adult vaccine 2008 injection, 1 x 0.5 mL syringe 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +998701000168102 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet, 10, blister pack 184813 998691000168102 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet, 10 998681000168100 Perindopril Arginine (Apotex) 2.5 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 727271000168102 perindopril arginine 2.5 mg tablet, 10 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +73274011000036105 Jurnista 8 mg modified release tablet, 28, blister pack 141508 73072011000036108 Jurnista 8 mg modified release tablet, 28 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73470011000036104 hydromorphone hydrochloride 8 mg modified release tablet, 28 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +37453011000036108 Solu-Medrol (1 x 500 mg vial, 1 x 8 mL inert diluent vial), 1 pack, composite pack 12344 36725011000036100 Solu-Medrol (1 x 500 mg vial, 1 x 8 mL inert diluent vial), 1 pack 633151000168100 Solu-Medrol (inert substance) diluent, 8 mL vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 38635011000036104 methylprednisolone 500 mg injection [1 vial] (&) inert substance diluent [8 mL vial], 1 pack 633141000168102 inert substance diluent, 8 mL vial 21220011000036103 inert substance +37453011000036108 Solu-Medrol (1 x 500 mg vial, 1 x 8 mL inert diluent vial), 1 pack, composite pack 12344 36725011000036100 Solu-Medrol (1 x 500 mg vial, 1 x 8 mL inert diluent vial), 1 pack 36176011000036103 Solu-Medrol (methylprednisolone 500 mg) powder for injection, 500 mg vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 38635011000036104 methylprednisolone 500 mg injection [1 vial] (&) inert substance diluent [8 mL vial], 1 pack 37894011000036107 methylprednisolone 500 mg injection, vial 21605011000036100 methylprednisolone +851961000168106 Entecavir (Sandoz) 500 microgram film-coated tablet, 30, blister pack 227420 851951000168109 Entecavir (Sandoz) 500 microgram film-coated tablet, 30 851941000168107 Entecavir (Sandoz) 500 microgram film-coated tablet 851901000168105 Entecavir (Sandoz) 851901000168105 Entecavir (Sandoz) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +84290011000036105 Octreotide (MaxRx) 100 microgram/mL injection solution, 5 x 1 mL ampoules 148402 83983011000036100 Octreotide (MaxRx) 100 microgram/mL injection solution, 5 x 1 mL ampoules 83618011000036108 Octreotide (MaxRx) 100 microgram/mL injection solution, ampoule 83565011000036107 Octreotide (MaxRx) 83565011000036107 Octreotide (MaxRx) 27091011000036109 octreotide 100 microgram/mL injection, 5 x 1 mL ampoules 22460011000036106 octreotide 100 microgram/mL injection, ampoule 21316011000036104 octreotide +1002971000168104 Nevirapine (Apo) 200 mg tablet, 60, blister pack 220946 1002961000168105 Nevirapine (Apo) 200 mg tablet, 60 1002951000168108 Nevirapine (Apo) 200 mg tablet 1002941000168106 Nevirapine (Apo) 1002941000168106 Nevirapine (Apo) 27383011000036105 nevirapine 200 mg tablet, 60 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +60602011000036109 Action Cold and Flu effervescent tablet, 20, strip pack 18696 56560011000036107 Action Cold and Flu effervescent tablet, 20 53974011000036109 Action Cold and Flu effervescent tablet 53544011000036100 Action Cold and Flu 53544011000036100 Action Cold and Flu 63426011000036101 ascorbic acid 60 mg + aspirin 324 mg + chlorphenamine maleate 2 mg + phenylephrine tartrate 7.79 mg effervescent tablet, 20 61957011000036105 ascorbic acid 60 mg + aspirin 324 mg + chlorphenamine maleate 2 mg + phenylephrine tartrate 7.79 mg effervescent tablet 61756011000036104 ascorbic acid + aspirin + chlorphenamine + phenylephrine +955841000168108 Ramipril (Winthrop) 10 mg hard capsule, 10, blister pack 128854 955831000168104 Ramipril (Winthrop) 10 mg hard capsule, 10 933219401000036103 Ramipril (Winthrop) 10 mg hard capsule 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 46762011000036101 ramipril 10 mg capsule, 10 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +60775011000036101 Lomide 0.1% eye drops solution, 5 mL, bottle 54275 56733011000036108 Lomide 0.1% eye drops solution, 5 mL 54054011000036102 Lomide 0.1% eye drops solution 53404011000036102 Lomide 53404011000036102 Lomide 63537011000036108 lodoxamide 0.1% eye drops, 5 mL 62005011000036103 lodoxamide 0.1% eye drops 61774011000036105 lodoxamide +839171000168103 Joncia 50 mg hard capsule, 14, bottle 176514 839091000168103 Joncia 50 mg hard capsule, 14 839071000168104 Joncia 50 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839081000168101 milnacipran hydrochloride 50 mg capsule, 14 839061000168105 milnacipran hydrochloride 50 mg capsule 838911000168100 milnacipran +702151000168109 Logem 50 mg tablet, 56, blister pack 99360 702141000168107 Logem 50 mg tablet, 56 702131000168103 Logem 50 mg tablet 701951000168104 Logem 701951000168104 Logem 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +906681000168104 Celecoxib (Lupin) 200 mg hard capsule, 50, blister pack 196176 906671000168102 Celecoxib (Lupin) 200 mg hard capsule, 50 906381000168105 Celecoxib (Lupin) 200 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +20751011000036108 Enbrel (4 x 25 mg vials, 4 x 1 mL inert diluent syringes), 1 pack, composite pack 90456 13920011000036109 Enbrel (4 x 25 mg vials, 4 x 1 mL inert diluent syringes), 1 pack 7207011000036108 Enbrel (etanercept 25 mg) powder for injection, 25 mg vial 25701000168107 Enbrel 25701000168107 Enbrel 28011011000036101 etanercept 25 mg injection [4 vials] (&) inert substance diluent [4 x 1 mL syringes], 1 pack 23334011000036105 etanercept 25 mg injection, vial 21347011000036107 etanercept +20751011000036108 Enbrel (4 x 25 mg vials, 4 x 1 mL inert diluent syringes), 1 pack, composite pack 90456 13920011000036109 Enbrel (4 x 25 mg vials, 4 x 1 mL inert diluent syringes), 1 pack 634841000168106 Enbrel (inert substance) diluent, 1 mL syringe 25701000168107 Enbrel 25701000168107 Enbrel 28011011000036101 etanercept 25 mg injection [4 vials] (&) inert substance diluent [4 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +20679011000036103 Apoven 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 82352 13858011000036101 Apoven 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 7145011000036108 Apoven 500 microgram/mL inhalation solution, ampoule 4442011000036106 Apoven 4442011000036106 Apoven 28276011000036107 ipratropium bromide 500 microgram/mL inhalation solution, 30 x 1 mL ampoules 23590011000036106 ipratropium bromide 500 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +1023351000168109 Ibuprofen (A) 200 mg film-coated tablet, 96, blister pack 161314 1023341000168107 Ibuprofen (A) 200 mg film-coated tablet, 96 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +855161000168107 Algerika 150 mg hard capsule, 56, blister pack 229595 855151000168105 Algerika 150 mg hard capsule, 56 855081000168104 Algerika 150 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +928994011000036107 Valaciclovir (Chemmart) 500 mg film-coated tablet, 60, blister pack 158913 928355011000036108 Valaciclovir (Chemmart) 500 mg film-coated tablet, 60 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929222011000036106 valaciclovir 500 mg tablet, 60 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +86148011000036107 Famciclovir (Sandoz) 250 mg film-coated tablet, 21, blister pack 162313 85756011000036102 Famciclovir (Sandoz) 250 mg film-coated tablet, 21 85376011000036104 Famciclovir (Sandoz) 250 mg film-coated tablet 85265011000036105 Famciclovir (Sandoz) 85265011000036105 Famciclovir (Sandoz) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +651731000168105 Metrol-XL 47.5 mg modified release tablet, 30, blister pack 172300 651721000168107 Metrol-XL 47.5 mg modified release tablet, 30 651711000168100 Metrol-XL 47.5 mg modified release tablet 651661000168105 Metrol-XL 651661000168105 Metrol-XL 28244011000036100 metoprolol succinate 47.5 mg modified release tablet, 30 23558011000036104 metoprolol succinate 47.5 mg modified release tablet 21662011000036107 metoprolol +969861000168102 Lypralin 75 mg hard capsule, 84, blister pack 235863 969851000168104 Lypralin 75 mg hard capsule, 84 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 969841000168101 pregabalin 75 mg capsule, 84 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +19927011000036107 Zeffix 5 mg/mL oral liquid solution, 240 mL, bottle 66829 13171011000036101 Zeffix 5 mg/mL oral liquid solution, 240 mL 6454011000036107 Zeffix 5 mg/mL oral liquid solution 3071011000036105 Zeffix 3071011000036105 Zeffix 27589011000036106 lamivudine 5 mg/mL oral liquid, 240 mL 22928011000036103 lamivudine 5 mg/mL oral liquid 21665011000036104 lamivudine +20388011000036106 Eprex 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 76971 13596011000036105 Eprex 6000 units/0.6 mL injection solution, 6 x 0.6 mL syringes 6879011000036100 Eprex 6000 units/0.6 mL injection solution, 0.6 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27826011000036107 epoetin alfa 6000 units/0.6 mL injection, 6 x 0.6 mL syringes 23154011000036100 epoetin alfa 6000 units/0.6 mL injection, syringe 21294011000036104 epoetin alfa +834831000168108 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20, blister pack 42077 834821000168105 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20 834781000168100 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet 4087011000036108 Codeine Phosphate (Fawns & McAllan) 4087011000036108 Codeine Phosphate (Fawns & McAllan) 834811000168103 codeine phosphate hemihydrate 30 mg tablet, 20 834691000168108 codeine phosphate hemihydrate 30 mg tablet 21821011000036104 codeine +793031000168105 Hemangiol 3.75 mg/mL oral liquid solution, 120 mL, bottle 212274 793021000168107 Hemangiol 3.75 mg/mL oral liquid solution, 120 mL 793001000168103 Hemangiol 3.75 mg/mL oral liquid solution 792981000168102 Hemangiol 792981000168102 Hemangiol 793011000168100 propranolol 3.75 mg/mL oral liquid, 120 mL 792991000168104 propranolol 3.75 mg/mL oral liquid 21392011000036104 propranolol +37505011000036109 Tramedo SR 100 mg modified release tablet, 60, blister pack 133147 36773011000036102 Tramedo SR 100 mg modified release tablet, 60 36015011000036108 Tramedo SR 100 mg modified release tablet 47831000168100 Tramedo SR 47831000168100 Tramedo SR 38672011000036105 tramadol hydrochloride 100 mg modified release tablet, 60 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +976131000168103 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL vials 95779 976121000168101 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL vials 976071000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL vial 4142011000036107 Humira 4142011000036107 Humira 976111000168108 adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL vials 976061000168107 adalimumab 40 mg/0.8 mL injection, vial 21584011000036107 adalimumab +809061000168100 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) uncoated tablet, 30, bottle 224319 807661000168103 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) uncoated tablet, 30 807651000168100 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) uncoated tablet 807641000168102 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) 807641000168102 Perindopril Arginine/Amlodipine 5/10 (Terry White Chemists) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +817751000168106 Dynoval 10/10 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200818 817741000168109 Dynoval 10/10 (perindopril arginine/amlodipine) uncoated tablet, 10 817731000168100 Dynoval 10/10 (perindopril arginine/amlodipine) uncoated tablet 817721000168103 Dynoval 10/10 (perindopril arginine/amlodipine) 817721000168103 Dynoval 10/10 (perindopril arginine/amlodipine) 86429011000036101 perindopril arginine 10 mg + amlodipine 10 mg tablet, 10 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +20362011000036106 Trimethoprim with Sulfamethoxazole DS (GenRx) uncoated tablet, 10, blister pack 76534 13570011000036100 Trimethoprim with Sulfamethoxazole DS (GenRx) uncoated tablet, 10 6852011000036108 Trimethoprim with Sulfamethoxazole DS (GenRx) uncoated tablet 45941000168109 Trimethoprim with Sulfamethoxazole DS (GenRx) 45941000168109 Trimethoprim with Sulfamethoxazole DS (GenRx) 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +1094081000168105 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 60 mL, bottle 281339 1094071000168107 Antimicrobial Hand Sanitiser (Elyptol) 70% gel, 60 mL 1093961000168103 Antimicrobial Hand Sanitiser (Elyptol) 70% gel 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 1093951000168100 Antimicrobial Hand Sanitiser (Elyptol) 925449011000036106 ethanol 70% gel, 60 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +18487011000036104 Ransim 10 mg film-coated tablet, 30, blister pack 120591 11642011000036100 Ransim 10 mg film-coated tablet, 30 5883011000036105 Ransim 10 mg film-coated tablet 4405011000036105 Ransim 4405011000036105 Ransim 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +60913011000036104 Zyrtec 10 mg/mL oral liquid solution, 20 mL, bottle 60947 56867011000036109 Zyrtec 10 mg/mL oral liquid solution, 20 mL 54107011000036109 Zyrtec 10 mg/mL oral liquid solution 3383011000036102 Zyrtec 3383011000036102 Zyrtec 63619011000036103 cetirizine hydrochloride 10 mg/mL oral liquid, 20 mL 62030011000036100 cetirizine hydrochloride 10 mg/mL oral liquid 21373011000036102 cetirizine +839031000168102 Joncia 25 mg hard capsule, 14, bottle 176512 838951000168104 Joncia 25 mg hard capsule, 14 838931000168105 Joncia 25 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 838941000168101 milnacipran hydrochloride 25 mg capsule, 14 838921000168107 milnacipran hydrochloride 25 mg capsule 838911000168100 milnacipran +883741000168102 Cardizem CD 360 mg modified release capsule, 28, bottle 75251 41933011000036107 Cardizem CD 360 mg modified release capsule, 28 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46720011000036108 diltiazem hydrochloride 360 mg modified release capsule, 28 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +834681000168105 Oripro 200 mg moulded pessary, 30, strip pack 165112 834671000168107 Oripro 200 mg moulded pessary, 30 124411000036101 Oripro 200 mg moulded pessary 124041000036109 Oripro 124041000036109 Oripro 834661000168101 progesterone 200 mg pessary, 30 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +19694011000036109 Femara 2.5 mg film-coated tablet, 30, blister pack 60605 12952011000036103 Femara 2.5 mg film-coated tablet, 30 6242011000036101 Femara 2.5 mg film-coated tablet 2979011000036107 Femara 2979011000036107 Femara 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +906701000168101 Celecoxib (Medis) 200 mg capsule, 120, blister pack 204618 906691000168101 Celecoxib (Medis) 200 mg capsule, 120 906471000168100 Celecoxib (Medis) 200 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +18334011000036105 Lanoxin PG 62.5 microgram uncoated tablet, 200, bottle 11108 12356011000036108 Lanoxin PG 62.5 microgram uncoated tablet, 200 5747011000036107 Lanoxin PG 62.5 microgram uncoated tablet 36681000168101 Lanoxin PG 36681000168101 Lanoxin PG 28005011000036101 digoxin 62.5 microgram tablet, 200 23328011000036101 digoxin 62.5 microgram tablet 21696011000036109 digoxin +860621000168105 Amisulpride (Winthrop) 50 mg uncoated tablet, 60, blister pack 125164 860611000168103 Amisulpride (Winthrop) 50 mg uncoated tablet, 60 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +50341011000036104 Duoderm Extra Thin (H7955) 10 cm x 10 cm dressing, 10, carton 157331 49360011000036106 Duoderm Extra Thin (H7955) 10 cm x 10 cm dressing, 10 48537011000036103 Duoderm Extra Thin (H7955) 10 cm x 10 cm dressing 27731000168105 Duoderm Extra Thin (H7955) 27731000168105 Duoderm Extra Thin (H7955) 51336011000036103 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing, 10 50870011000036107 dressing hydrocolloid superficial wound light exudate 10 cm x 10 cm dressing 50714011000036106 dressing hydrocolloid superficial wound light exudate +131301000036108 Candesartan Cilexetil (Aspen) 8 mg uncoated tablet, 30, blister pack 195509 128371000036109 Candesartan Cilexetil (Aspen) 8 mg uncoated tablet, 30 125001000036105 Candesartan Cilexetil (Aspen) 8 mg uncoated tablet 124121000036102 Candesartan Cilexetil (Aspen) 124121000036102 Candesartan Cilexetil (Aspen) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +1007631000168105 Morphine MR (Mylan) 30 mg modified release tablet, 28, blister pack 225422 1007621000168107 Morphine MR (Mylan) 30 mg modified release tablet, 28 1007591000168105 Morphine MR (Mylan) 30 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 929756011000036100 morphine sulfate pentahydrate 30 mg modified release tablet, 28 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +1076681000168102 Uricalm powder for oral liquid, 10 x 4 g sachets 210402 1076671000168100 Uricalm powder for oral liquid, 10 x 4 g sachets 65687011000036104 Uricalm powder for oral liquid, 4 g sachet 64992011000036108 Uricalm 64992011000036108 Uricalm 1076661000168106 sodium bicarbonate 1.76 g + citric acid 720 mg + sodium citrate 630 mg + tartaric acid 890 mg powder for oral liquid, 10 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +804451000168105 Aczicrit 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 147852 804441000168108 Aczicrit 4000 units/0.4 mL injection solution, 6 x 0.4 mL syringes 804411000168109 Aczicrit 4000 units/0.4 mL injection solution, 0.4 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924119011000036109 epoetin lambda 4000 units/0.4 mL injection, 6 x 0.4 mL syringes 923949011000036100 epoetin lambda 4000 units/0.4 mL injection, syringe 923930011000036107 epoetin lambda +933211601000036101 Visine Clear 0.05% eye drops solution, 15 mL, bottle 10023 933199681000036109 Visine Clear 0.05% eye drops solution, 15 mL 933194021000036103 Visine Clear 0.05% eye drops solution 933193411000036101 Visine Clear 933193411000036101 Visine Clear 63465011000036103 tetryzoline hydrochloride 0.05% eye drops, 15 mL 61984011000036105 tetryzoline hydrochloride 0.05% eye drops 61755011000036106 tetryzoline +716601000168101 Omepro 20 mg enteric capsule, 30, bottle 167314 716581000168105 Omepro 20 mg enteric capsule, 30 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +873591000168109 Midazolam (B Braun) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 225700 873581000168106 Midazolam (B Braun) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 873571000168108 Midazolam (B Braun) 5 mg/5 mL injection solution, 5 mL ampoule 873561000168102 Midazolam (B Braun) 873561000168102 Midazolam (B Braun) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +74723011000036100 Decongestant (Amcal) Refill 0.05% nasal spray, 20 mL, bottle 117621 74224011000036108 Decongestant (Amcal) Refill 0.05% nasal spray, 20 mL 73787011000036100 Decongestant (Amcal) Refill 0.05% nasal spray 73712011000036100 Decongestant (Amcal) 73712011000036100 Decongestant (Amcal) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +74723011000036100 Decongestant (Amcal) Refill 0.05% nasal spray, 20 mL, bottle 226318 74224011000036108 Decongestant (Amcal) Refill 0.05% nasal spray, 20 mL 73787011000036100 Decongestant (Amcal) Refill 0.05% nasal spray 73712011000036100 Decongestant (Amcal) 73712011000036100 Decongestant (Amcal) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +1057951000168103 Valpro EC 200 mg enteric tablet, 20, blister pack 286315 1057941000168100 Valpro EC 200 mg enteric tablet, 20 1057911000168104 Valpro EC 200 mg enteric tablet 1057811000168105 Valpro EC 1057811000168105 Valpro EC 942141000168105 valproate sodium 200 mg enteric tablet, 20 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +19936011000036107 Estraderm MX 100 microgram/24 hours patch, 8, sachet 67090 13180011000036102 Estraderm MX 100 microgram/24 hours patch, 8 6463011000036101 Estraderm MX 100 microgram/24 hours patch 9331000168106 Estraderm MX 9331000168106 Estraderm MX 28324011000036107 estradiol 100 microgram/24 hours patch, 8 23636011000036108 estradiol 100 microgram/24 hours patch 21238011000036103 estradiol +970181000168100 Lypralin 25 mg hard capsule, 84, blister pack 235874 970171000168103 Lypralin 25 mg hard capsule, 84 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970161000168109 pregabalin 25 mg capsule, 84 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +56311000036109 Potassium Chloride 40 mmol/100 mL and Sodium Chloride 0.9% (Baxter) injection solution, 100 mL bag 159380 51731000036108 Potassium Chloride 40 mmol/100 mL and Sodium Chloride 0.9% (Baxter) injection solution, 100 mL bag 49301000036104 Potassium Chloride 40 mmol/100 mL and Sodium Chloride 0.9% (Baxter) injection solution, 100 mL bag 47971000168107 Potassium Chloride 40 mmol/100 mL and Sodium Chloride 0.9% (Baxter) 47971000168107 Potassium Chloride 40 mmol/100 mL and Sodium Chloride 0.9% (Baxter) 51741000036103 potassium chloride 2.98 g (potassium 40 mmol)/100 mL + sodium chloride 0.9% (900 mg/100 mL) injection, 100 mL bag 49311000036102 potassium chloride 2.98 g (potassium 40 mmol)/100 mL + sodium chloride 0.9% (900 mg/100 mL) injection, bag 69799011000036108 potassium chloride + sodium chloride +61357011000036100 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 500, blister pack 81474 57282011000036103 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 500 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +960011000168102 Stilnoxium CR 6.25 mg modified release tablet, 14, blister pack 120711 960001000168100 Stilnoxium CR 6.25 mg modified release tablet, 14 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46177011000036104 zolpidem tartrate 6.25 mg modified release tablet, 14 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +140901000036104 Rabeprazole Sodium (DRLA) 20 mg enteric tablet, 30, blister pack 196560 139351000036108 Rabeprazole Sodium (DRLA) 20 mg enteric tablet, 30 137751000036103 Rabeprazole Sodium (DRLA) 20 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +18772011000036104 Panadol Osteo 665 mg modified release tablet, 96, blister pack 116619 11529011000036102 Panadol Osteo 665 mg modified release tablet, 96 5848011000036106 Panadol Osteo 665 mg modified release tablet 47941000168100 Panadol Osteo 47941000168100 Panadol Osteo 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +693621000168105 Amoxyclav 500/125 (AN) film-coated tablet, 10, blister pack 123968 693611000168103 Amoxyclav 500/125 (AN) film-coated tablet, 10 693601000168101 Amoxyclav 500/125 (AN) film-coated tablet 693591000168108 Amoxyclav 500/125 (AN) 693591000168108 Amoxyclav 500/125 (AN) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +872201000168109 Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules 16365 872191000168106 Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules 872171000168105 Cardioplegia Sterile (DBL) concentrated injection, 20 mL ampoule 22951000168104 Cardioplegia Sterile (DBL) 22951000168104 Cardioplegia Sterile (DBL) 872181000168108 magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, 5 x 20 mL ampoules 872161000168104 magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, ampoule 83420011000036101 magnesium chloride + potassium chloride + procaine +920698011000036101 Omeprazole (Generic Health) 20 mg enteric tablet, 30, blister pack 149349 920402011000036104 Omeprazole (Generic Health) 20 mg enteric tablet, 30 920164011000036105 Omeprazole (Generic Health) 20 mg enteric tablet 920101011000036106 Omeprazole (Generic Health) 920101011000036106 Omeprazole (Generic Health) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +87741011000036105 Genotropin GoQuick (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 166831 87507011000036106 Genotropin GoQuick (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 630891000168105 Genotropin GoQuick (somatropin 12 mg) powder for injection, 12 mg cartridge 5561000168107 Genotropin GoQuick 5561000168107 Genotropin GoQuick 28186011000036102 somatropin 12 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 23496011000036101 somatropin 12 mg injection, cartridge 21295011000036100 somatropin +87741011000036105 Genotropin GoQuick (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 166831 87507011000036106 Genotropin GoQuick (1 x 12 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 630911000168107 Genotropin GoQuick (inert substance) diluent, 1 mL cartridge 5561000168107 Genotropin GoQuick 5561000168107 Genotropin GoQuick 28186011000036102 somatropin 12 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 630901000168109 inert substance diluent, 1 mL cartridge 21220011000036103 inert substance +69411011000036102 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Fresenius Kabi) intravenous infusion injection, 1 L bag 47412 67211011000036108 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Fresenius Kabi) intravenous infusion injection, 1 L bag 65558011000036102 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Fresenius Kabi) intravenous infusion injection, 1 L bag 48001000168104 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Fresenius Kabi) 48001000168104 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Fresenius Kabi) 71781011000036100 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) + glucose 5% (50 g/L) injection, 1 L bag 70183011000036100 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) + glucose 5% (50 g/L) injection, bag 861201000168108 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose +933211281000036109 Ablavar 2.44 g/10 mL injection solution, 10 mL vial 115498 933199921000036103 Ablavar 2.44 g/10 mL injection solution, 10 mL vial 933194381000036100 Ablavar 2.44 g/10 mL injection solution, 10 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933199931000036101 gadofosveset trisodium 2.44 g/10 mL injection, 10 mL vial 933194391000036103 gadofosveset trisodium 2.44 g/10 mL injection, vial 933216361000036104 gadofosveset +676221000168106 Celaxib 100 mg hard capsule, 60, bottle 206677 676211000168104 Celaxib 100 mg hard capsule, 60 676201000168102 Celaxib 100 mg hard capsule 675611000168107 Celaxib 675611000168107 Celaxib 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +977411000168104 Pregabalin (Teva) 225 mg hard capsule, 14, blister pack 229599 977401000168102 Pregabalin (Teva) 225 mg hard capsule, 14 977391000168104 Pregabalin (Teva) 225 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +821851000168102 Fluotex 20 mg hard capsule, 28, blister pack 190676 821841000168104 Fluotex 20 mg hard capsule, 28 821831000168108 Fluotex 20 mg hard capsule 821821000168105 Fluotex 821821000168105 Fluotex 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +856371000168109 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) uncoated tablet, 4, blister pack 856361000168103 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) uncoated tablet, 4 856351000168100 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) uncoated tablet 856341000168102 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) 856341000168102 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +69169011000036103 Potassium Dihydrogen Phosphate and Dipotassium Hydrogen Phosphate (DBL) concentrated injection, 10 x 10 mL ampoules 16268 66969011000036106 Potassium Dihydrogen Phosphate and Dipotassium Hydrogen Phosphate (DBL) concentrated injection, 10 x 10 mL ampoules 65457011000036108 Potassium Dihydrogen Phosphate and Dipotassium Hydrogen Phosphate (DBL) concentrated injection, 10 mL ampoule 65175011000036101 Potassium Dihydrogen Phosphate and Dipotassium Hydrogen Phosphate (DBL) 65175011000036101 Potassium Dihydrogen Phosphate and Dipotassium Hydrogen Phosphate (DBL) 71542011000036102 dibasic potassium phosphate 1.83 g/10 mL + monobasic potassium phosphate 540 mg/10 mL (total potassium 25 mmol/10 mL) injection, 10 x 10 mL ampoules 70051011000036104 dibasic potassium phosphate 1.83 g/10 mL + monobasic potassium phosphate 540 mg/10 mL (total potassium 25 mmol/10 mL) injection, ampoule 21894011000036105 phosphorus +1062291000168105 Cold and Flu PE Day (Cipla) uncoated tablet, 12, blister pack 219457 1062281000168107 Cold and Flu PE Day (Cipla) uncoated tablet, 12 1062241000168102 Cold and Flu PE Day (Cipla) uncoated tablet 1062231000168106 Cold and Flu PE Day (Cipla) 1062231000168106 Cold and Flu PE Day (Cipla) 1062271000168109 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 12 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +84333011000036100 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 96, blister pack 158155 84026011000036109 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 96 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83005011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 96 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1016241000168104 Aripiprazole (GX) 5 mg uncoated tablet, 250, bottle 217201 1016231000168108 Aripiprazole (GX) 5 mg uncoated tablet, 250 1016201000168101 Aripiprazole (GX) 5 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 1015321000168107 aripiprazole 5 mg tablet, 250 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +800201000168103 Abyraz 30 mg uncoated tablet, 28, blister pack 159504 800191000168101 Abyraz 30 mg uncoated tablet, 28 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787781000168103 aripiprazole 30 mg tablet, 28 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +19302011000036109 Tazac Pulvule 300 mg hard capsule, 30, blister pack 49326 12592011000036104 Tazac Pulvule 300 mg hard capsule, 30 5462011000036105 Tazac Pulvule 300 mg hard capsule 40761000168103 Tazac Pulvule 40761000168103 Tazac Pulvule 28208011000036102 nizatidine 300 mg capsule, 30 23520011000036100 nizatidine 300 mg capsule 21421011000036109 nizatidine +754091000168102 Xedone 10 mg hard capsule, 60, blister pack 227852 754081000168100 Xedone 10 mg hard capsule, 60 754051000168107 Xedone 10 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +794401000168106 Tacrolimus (Sandoz) 2 mg hard capsule, 10, blister pack 229757 794391000168109 Tacrolimus (Sandoz) 2 mg hard capsule, 10 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794381000168106 tacrolimus 2 mg capsule, 10 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +1056541000168109 Atorvastatin (Ran) 10 mg film-coated tablet, 6, blister pack 179824 1056531000168100 Atorvastatin (Ran) 10 mg film-coated tablet, 6 1056501000168107 Atorvastatin (Ran) 10 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 841221000168106 atorvastatin 10 mg tablet, 6 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1122811000168101 Humira 80 mg/0.8 mL injection solution, 3 x 0.8 mL injection devices 285904 1122801000168104 Humira 80 mg/0.8 mL injection solution, 3 x 0.8 mL injection devices 1122751000168105 Humira 80 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 1122791000168100 adalimumab 80 mg/0.8 mL injection, 3 x 0.8 mL injection devices 1122741000168108 adalimumab 80 mg/0.8 mL injection device 21584011000036107 adalimumab +993171000168102 Lyrica 200 mg hard capsule, 14, blister pack 99533 993161000168108 Lyrica 200 mg hard capsule, 14 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +860661000168100 Amisulpride (Winthrop) 50 mg uncoated tablet, 100, blister pack 125164 860651000168102 Amisulpride (Winthrop) 50 mg uncoated tablet, 100 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 924157011000036105 amisulpride 50 mg tablet, 100 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +68999011000036102 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 200 mL, bottle 13654 66801011000036103 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 200 mL 65398011000036109 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 10 mL 65069011000036102 Bronchitis Cough Medicine (Nyal) 65069011000036102 Bronchitis Cough Medicine (Nyal) 71431011000036104 ammonium chloride 110 mg/10 mL oral liquid, 200 mL 70007011000036102 ammonium chloride 110 mg/10 mL oral liquid 69860011000036103 ammonium chloride +165631000036103 Agrippal 2014 injection suspension, 10 x 0.5 mL syringes 144670 163711000036101 Agrippal 2014 injection suspension, 10 x 0.5 mL syringes 162061000036107 Agrippal 2014 injection suspension, 0.5 mL syringe 5961000168102 Agrippal 2014 5961000168102 Agrippal 2014 163651000036107 influenza trivalent adult vaccine 2014 injection, 10 x 0.5 mL syringes 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +938441000168102 Microdacyn Wound Care irrigation solution, 250 mL, pump pack 261123 938431000168106 Microdacyn Wound Care irrigation solution, 250 mL 938411000168101 Microdacyn Wound Care irrigation solution 938381000168104 Microdacyn Wound Care 938381000168104 Microdacyn Wound Care 938421000168108 sodium chloride 0.022% + hypochlorous acid 0.004% + sodium hypochlorite 0.004% irrigation solution, 250 mL 938401000168104 sodium chloride 0.022% + hypochlorous acid 0.004% + sodium hypochlorite 0.004% irrigation solution 938391000168101 sodium chloride + hypochlorous acid + sodium hypochlorite +77359011000036105 Senokot 5.5 mg/g granules, 100 g, jar 60700 76775011000036108 Senokot 5.5 mg/g granules, 100 g 76174011000036103 Senokot 5.5 mg/g granules 2967011000036106 Senokot 2967011000036106 Senokot 78280011000036107 sennoside B 5.5 mg/g granules, 100 g 77590011000036106 sennoside B 5.5 mg/g granules 21718011000036104 sennoside B +20526011000036103 Norfloxacin (Douglas) 400 mg film-coated tablet, 14, blister pack 79112 13725011000036109 Norfloxacin (Douglas) 400 mg film-coated tablet, 14 7007011000036100 Norfloxacin (Douglas) 400 mg film-coated tablet 3177011000036105 Norfloxacin (Douglas) 3177011000036105 Norfloxacin (Douglas) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +1085361000168104 Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL, pump pack 42408 74337011000036108 Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL 73805011000036109 Otrivin Classic M-D Adult 0.1% nasal spray 51731000168101 Otrivin Classic M-D Adult 51731000168101 Otrivin Classic M-D Adult 75442011000036105 xylometazoline hydrochloride 0.1% nasal spray, 15 mL 75123011000036102 xylometazoline hydrochloride 0.1% nasal spray 61748011000036102 xylometazoline +788651000168100 Gemcitabine (Agila) 200 mg powder for injection, 5 vials 177644 788641000168102 Gemcitabine (Agila) 200 mg powder for injection, 5 vials 788611000168101 Gemcitabine (Agila) 200 mg powder for injection, 200 mg vial 788601000168104 Gemcitabine (Agila) 788601000168104 Gemcitabine (Agila) 83208011000036108 gemcitabine 200 mg injection, 5 vials 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +676301000168109 Oxycodone (Sandoz) 80 mg modified release tablet, 28, blister pack 153591 676291000168108 Oxycodone (Sandoz) 80 mg modified release tablet, 28 676281000168105 Oxycodone (Sandoz) 80 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +18426011000036108 Simvastatin (Winthrop) 20 mg film-coated tablet, 30, blister pack 129979 11886011000036104 Simvastatin (Winthrop) 20 mg film-coated tablet, 30 4939011000036100 Simvastatin (Winthrop) 20 mg film-coated tablet 3335011000036106 Simvastatin (Winthrop) 3335011000036106 Simvastatin (Winthrop) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +903871000168107 Celocox 200 mg hard capsule, 50, blister pack 212792 903861000168101 Celocox 200 mg hard capsule, 50 903791000168103 Celocox 200 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +928810011000036108 Potassium Chloride Sterile (AstraZeneca) 1 g (potassium 13.4 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 12041 928187011000036100 Potassium Chloride Sterile (AstraZeneca) 1 g (potassium 13.4 mmol)/10 mL concentrated injection, 50 x 10 mL ampoules 927845011000036103 Potassium Chloride Sterile (AstraZeneca) 1 g (potassium 13.4 mmol)/10 mL concentrated injection, 10 mL ampoule 5321000168106 Potassium Chloride Sterile (AstraZeneca) 5321000168106 Potassium Chloride Sterile (AstraZeneca) 71282011000036103 potassium chloride 1 g (potassium 13.4 mmol)/10 mL injection, 50 x 10 mL ampoules 69928011000036102 potassium chloride 1 g (potassium 13.4 mmol)/10 mL injection, ampoule 21274011000036107 potassium chloride +852031000168109 Olmesartan HCT 20/12.5 (Myl) film-coated tablet, 30, blister pack 273576 852021000168106 Olmesartan HCT 20/12.5 (Myl) film-coated tablet, 30 851981000168102 Olmesartan HCT 20/12.5 (Myl) film-coated tablet 851971000168100 Olmesartan HCT 20/12.5 (Myl) 851971000168100 Olmesartan HCT 20/12.5 (Myl) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +1010461000168102 Risedronate (Apotex) 150 mg film-coated tablet, 3, blister pack 181972 1010451000168104 Risedronate (Apotex) 150 mg film-coated tablet, 3 1010401000168103 Risedronate (Apotex) 150 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 78196011000036109 risedronate sodium 150 mg tablet, 3 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +18668011000036102 Clomid 50 mg uncoated tablet, 10, blister pack 10103 11175011000036105 Clomid 50 mg uncoated tablet, 10 5454011000036109 Clomid 50 mg uncoated tablet 3575011000036105 Clomid 3575011000036105 Clomid 27376011000036106 clomifene citrate 50 mg tablet, 10 23588011000036107 clomifene citrate 50 mg tablet 21599011000036107 clomifene +699321000168104 Samsca 30 mg tablet, 10, blister pack 176601 699311000168106 Samsca 30 mg tablet, 10 699291000168107 Samsca 30 mg tablet 686861000168106 Samsca 686861000168106 Samsca 699301000168108 tolvaptan 30 mg tablet, 10 699281000168109 tolvaptan 30 mg tablet 686881000168102 tolvaptan +840531000168101 Flolan 500 microgram powder for injection, 1 vial 80340 840521000168104 Flolan 500 microgram powder for injection, 1 vial 7054011000036104 Flolan (epoprostenol 500 microgram) powder for injection, 500 microgram vial 2928011000036100 Flolan 2928011000036100 Flolan 648501000168100 epoprostenol 500 microgram injection, 1 vial 23254011000036103 epoprostenol 500 microgram injection, vial 21703011000036107 epoprostenol +977351000168109 Aripiprazole (AN) 5 mg uncoated tablet, 56, blister pack 198188 977341000168107 Aripiprazole (AN) 5 mg uncoated tablet, 56 977291000168109 Aripiprazole (AN) 5 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 46875011000036103 aripiprazole 5 mg tablet, 56 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +700029381000036101 Klacid 500 mg film-coated tablet, 14 tablets, bottle 41610011000036105 Klacid 500 mg film-coated tablet, 14 7489011000036101 Klacid 500 mg film-coated tablet 3147011000036106 Klacid 3147011000036106 Klacid 46431011000036106 clarithromycin 500 mg tablet, 14 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +1114141000168105 Rekovelle 36 microgram/1.08 mL injection solution, 1.08 mL injection device 289311 1114131000168101 Rekovelle 36 microgram/1.08 mL injection solution, 1.08 mL injection device 1114111000168106 Rekovelle 36 microgram/1.08 mL injection solution, 1.08 mL injection device 1113721000168100 Rekovelle 1113721000168100 Rekovelle 1114121000168104 follitropin delta 36 microgram/1.08 mL injection, 1.08 mL injection device 1114101000168108 follitropin delta 36 microgram/1.08 mL injection, injection device 1113771000168104 follitropin delta +1003291000168101 Levetiracetam 1000 (Chemmart) 1 g tablet, 60, blister pack 156312 1003281000168104 Levetiracetam 1000 (Chemmart) 1 g tablet, 60 1003271000168102 Levetiracetam 1000 (Chemmart) 1 g tablet 1003261000168108 Levetiracetam 1000 (Chemmart) 1003261000168108 Levetiracetam 1000 (Chemmart) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +20270011000036106 Protaphane Innolet 100 units/mL injection suspension, 5 x 3 mL cartridges 169633 13480011000036101 Protaphane Innolet 100 units/mL injection suspension, 5 x 3 mL cartridges 6763011000036107 Protaphane Innolet 100 units/mL injection suspension, 3 mL cartridge 54281000168105 Protaphane Innolet 54281000168105 Protaphane Innolet 27769011000036109 insulin isophane human 100 units/mL injection, 5 x 3 mL cartridges 23100011000036102 insulin isophane human 100 units/mL injection, cartridge 33643011000036100 insulin isophane human +20270011000036106 Protaphane Innolet 100 units/mL injection suspension, 5 x 3 mL cartridges 75223 13480011000036101 Protaphane Innolet 100 units/mL injection suspension, 5 x 3 mL cartridges 6763011000036107 Protaphane Innolet 100 units/mL injection suspension, 3 mL cartridge 54281000168105 Protaphane Innolet 54281000168105 Protaphane Innolet 27769011000036109 insulin isophane human 100 units/mL injection, 5 x 3 mL cartridges 23100011000036102 insulin isophane human 100 units/mL injection, cartridge 33643011000036100 insulin isophane human +928811011000036101 Ichthammol (Toppin) 10% ointment, 50 g, jar 10561 928172011000036106 Ichthammol (Toppin) 10% ointment, 50 g 927839011000036102 Ichthammol (Toppin) 10% ointment 927783011000036105 Ichthammol (Toppin) 927783011000036105 Ichthammol (Toppin) 929198011000036101 ichthammol 10% ointment, 50 g 929138011000036109 ichthammol 10% ointment 21816011000036101 ichthammol +1007561000168103 Novacodone 20 mg modified release tablet, 20, blister pack 227942 1007551000168100 Novacodone 20 mg modified release tablet, 20 1007541000168102 Novacodone 20 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +20768011000036105 Zometa 4 mg/5 mL concentrated injection, 5 mL vial 90882 13937011000036108 Zometa 4 mg/5 mL concentrated injection, 5 mL vial 7225011000036107 Zometa 4 mg/5 mL concentrated injection, 5 mL vial 3922011000036109 Zometa 3922011000036109 Zometa 28024011000036106 zoledronic acid 4 mg/5 mL injection, 5 mL vial 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +1105551000168101 Valpam 2 mg uncoated tablet, 90, bottle 80810 1105541000168103 Valpam 2 mg uncoated tablet, 90 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 750441000168108 diazepam 2 mg tablet, 90 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +19800011000036108 Nypine 20 mg film-coated tablet, 60, blister pack 63224 13057011000036103 Nypine 20 mg film-coated tablet, 60 6341011000036103 Nypine 20 mg film-coated tablet 3237011000036105 Nypine 3237011000036105 Nypine 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +990361000168100 Mometasone Nasal Allergy Relief (Blooms The Chemist) 50 microgram/actuation nasal spray, 140 actuations, pump pack 265818 990351000168102 Mometasone Nasal Allergy Relief (Blooms The Chemist) 50 microgram/actuation nasal spray, 140 actuations 990321000168105 Mometasone Nasal Allergy Relief (Blooms The Chemist) 50 microgram/actuation nasal spray, actuation 990311000168103 Mometasone Nasal Allergy Relief (Blooms The Chemist) 990311000168103 Mometasone Nasal Allergy Relief (Blooms The Chemist) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +863521000168102 Medi Creme cream, 50 g, tube 16131 863511000168109 Medi Creme cream, 50 g 863451000168109 Medi Creme cream 13121000168106 Medi Creme 13121000168106 Medi Creme 863501000168106 lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 50 g 863441000168107 lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream 926963011000036102 lidocaine (lignocaine) + cetrimide + chlorhexidine + hexamidine +82884011000036104 Simvastatin (Chemmart) 80 mg film-coated tablet, 30, bottle 157738 11308011000036104 Simvastatin (Chemmart) 80 mg film-coated tablet, 30 4662011000036100 Simvastatin (Chemmart) 80 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +50278011000036100 Neocate Advance tropical flavour powder for oral liquid, 400 g, can 49468011000036100 Neocate Advance tropical flavour powder for oral liquid, 400 g 48673011000036102 Neocate Advance tropical flavour powder for oral liquid 26901000168102 Neocate Advance 26901000168102 Neocate Advance 51426011000036109 amino acid synthetic formula powder for oral liquid, 400 g 50943011000036105 amino acid synthetic formula powder for oral liquid 50729011000036102 amino acid synthetic formula +926891011000036105 Pratsiol 2 mg uncoated tablet, 100, blister pack 75045 926287011000036107 Pratsiol 2 mg uncoated tablet, 100 925731011000036104 Pratsiol 2 mg uncoated tablet 925549011000036103 Pratsiol 925549011000036103 Pratsiol 27728011000036108 prazosin 2 mg tablet, 100 23063011000036102 prazosin 2 mg tablet 21544011000036104 prazosin +69529011000036101 Mycil Healthy Feet Tinea Cream cream, 25 g, tube 56548 67329011000036108 Mycil Healthy Feet Tinea Cream cream, 25 g 65614011000036108 Mycil Healthy Feet Tinea Cream cream 65114011000036107 Mycil Healthy Feet Tinea Cream 65114011000036107 Mycil Healthy Feet Tinea Cream 71874011000036108 benzalkonium chloride 0.1% + tolnaftate 1% cream, 25 g 70227011000036104 benzalkonium chloride 0.1% + tolnaftate 1% cream 69838011000036106 benzalkonium chloride + tolnaftate +886481000168106 Eloctate (1 x 3000 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210520 886471000168108 Eloctate (1 x 3000 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886451000168104 Eloctate (inert substance) diluent, 3 mL syringe 886371000168101 Eloctate 886371000168101 Eloctate 886461000168102 efmoroctocog alfa 3000 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886441000168101 inert substance diluent, 3 mL syringe 21220011000036103 inert substance +886481000168106 Eloctate (1 x 3000 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210520 886471000168108 Eloctate (1 x 3000 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886431000168105 Eloctate (efmoroctocog alfa 3000 units) powder for injection, 3000 units vial 886371000168101 Eloctate 886371000168101 Eloctate 886461000168102 efmoroctocog alfa 3000 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886421000168107 efmoroctocog alfa 3000 units injection, vial 886411000168100 efmoroctocog alfa +1001671000168104 Daivonex 0.005% cream, 15 g, tube 57354 1001661000168105 Daivonex 0.005% cream, 15 g 6133011000036105 Daivonex 0.005% cream 30251000168107 Daivonex 30251000168107 Daivonex 1001651000168108 calcipotriol 0.005% cream, 15 g 22738011000036109 calcipotriol 0.005% cream 21829011000036100 calcipotriol +1004821000168104 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags 72873 1004811000168106 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags 1004791000168107 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 200 mL bag 44271000168105 Naropin 0.2% with Fentanyl 400 microgram/200 mL 44271000168105 Naropin 0.2% with Fentanyl 400 microgram/200 mL 1004801000168108 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, 5 x 200 mL bags 1004781000168109 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, bag 34842011000036102 ropivacaine + fentanyl +967391000168105 Humira 40 mg/0.4 mL injection solution, 4 x 0.4 mL syringes 281470 967381000168107 Humira 40 mg/0.4 mL injection solution, 4 x 0.4 mL syringes 967331000168106 Humira 40 mg/0.4 mL injection solution, 0.4 mL syringe 4142011000036107 Humira 4142011000036107 Humira 967371000168109 adalimumab 40 mg/0.4 mL injection, 4 x 0.4 mL syringes 967321000168108 adalimumab 40 mg/0.4 mL injection, syringe 21584011000036107 adalimumab +933231681000036102 Strepsils Dry Cough 5 mg lozenge, 4, blister pack 69834 933226321000036103 Strepsils Dry Cough 5 mg lozenge, 4 933221091000036107 Strepsils Dry Cough 5 mg lozenge 53599011000036108 Strepsils Dry Cough 53599011000036108 Strepsils Dry Cough 933226331000036101 dextromethorphan hydrobromide monohydrate 5 mg lozenge, 4 933221101000036103 dextromethorphan hydrobromide monohydrate 5 mg lozenge 61744011000036109 dextromethorphan +37525011000036100 Anagraine uncoated tablet, 2, blister pack 13547 36793011000036106 Anagraine uncoated tablet, 2 36153011000036106 Anagraine uncoated tablet 35953011000036106 Anagraine 35953011000036106 Anagraine 38690011000036104 metoclopramide hydrochloride 5 mg + paracetamol 500 mg tablet, 2 37929011000036107 metoclopramide hydrochloride 5 mg + paracetamol 500 mg tablet 37791011000036106 metoclopramide + paracetamol +83391011000036109 Metformin Hydrochloride (GA) 500 mg film-coated tablet, 100, blister pack 147643 83309011000036105 Metformin Hydrochloride (GA) 500 mg film-coated tablet, 100 83243011000036108 Metformin Hydrochloride (GA) 500 mg film-coated tablet 65112011000036103 Metformin Hydrochloride (GA) 65112011000036103 Metformin Hydrochloride (GA) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +19103011000036108 Vibramycin 100 mg film-coated tablet, 7, blister pack 42952 12408011000036105 Vibramycin 100 mg film-coated tablet, 7 5443011000036109 Vibramycin 100 mg film-coated tablet 4353011000036107 Vibramycin 4353011000036107 Vibramycin 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +79073011000036104 Ramipril (Chemmart) 5 mg tablet, 30, blister pack 150899 78856011000036107 Ramipril (Chemmart) 5 mg tablet, 30 78662011000036106 Ramipril (Chemmart) 5 mg tablet 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +79073011000036104 Ramipril (Chemmart) 5 mg tablet, 30, blister pack 231166 78856011000036107 Ramipril (Chemmart) 5 mg tablet, 30 78662011000036106 Ramipril (Chemmart) 5 mg tablet 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +771411000168104 Flebogamma 10% DIF 20 g/200 mL injection solution, 200 mL vial 182359 771401000168102 Flebogamma 10% DIF 20 g/200 mL injection solution, 200 mL vial 771391000168104 Flebogamma 10% DIF 20 g/200 mL injection solution, 200 mL vial 771351000168109 Flebogamma 10% DIF 771351000168109 Flebogamma 10% DIF 108931000036104 normal immunoglobulin 20 g/200 mL injection, 200 mL vial 107191000036104 normal immunoglobulin 20 g/200 mL injection, vial 74965011000036103 normal immunoglobulin +840451000168106 Prometrium 100 mg soft capsule, 56, blister pack 232818 840441000168109 Prometrium 100 mg soft capsule, 56 840251000168105 Prometrium 100 mg soft capsule 840231000168104 Prometrium 840231000168104 Prometrium 840431000168100 progesterone 100 mg capsule, 56 840241000168108 progesterone 100 mg capsule 21412011000036108 progesterone +18075011000036105 Ondaz 8 mg film-coated tablet, 4, blister pack 116415 11513011000036109 Ondaz 8 mg film-coated tablet, 4 5174011000036106 Ondaz 8 mg film-coated tablet 3761000168104 Ondaz 3761000168104 Ondaz 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +869391000168106 Eplerenone (AN) 50 mg film-coated tablet, 60, blister pack 231455 869381000168108 Eplerenone (AN) 50 mg film-coated tablet, 60 869331000168107 Eplerenone (AN) 50 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 790611000168102 eplerenone 50 mg tablet, 60 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +921311000168104 Ceftriaxone (Pfizer) 1 g powder for injection, 5 vials 174446 921301000168102 Ceftriaxone (Pfizer) 1 g powder for injection, 5 vials 921241000168106 Ceftriaxone (Pfizer) 1 g powder for injection, vial 920781000168100 Ceftriaxone (Pfizer) 920781000168100 Ceftriaxone (Pfizer) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +19740011000036100 Doxsig 100 mg film-coated tablet, 7, bottle 62056 12994011000036102 Doxsig 100 mg film-coated tablet, 7 6282011000036106 Doxsig 100 mg film-coated tablet 3958011000036106 Doxsig 3958011000036106 Doxsig 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +131381000036102 Erythromycin (Mayne Pharma) 250 mg enteric capsule, 25, bottle 195842 920468011000036102 Erythromycin (Mayne Pharma) 250 mg enteric capsule, 25 920200011000036102 Erythromycin (Mayne Pharma) 250 mg enteric capsule 920073011000036106 Erythromycin (Mayne Pharma) 920073011000036106 Erythromycin (Mayne Pharma) 27918011000036106 erythromycin 250 mg enteric capsule, 25 23242011000036105 erythromycin 250 mg enteric capsule 21889011000036107 erythromycin +56471000036105 Rocuronium Bromide (DBL) 50 mg/5 mL injection solution, 10 x 5 mL vials 161275 52641000036101 Rocuronium Bromide (DBL) 50 mg/5 mL injection solution, 10 x 5 mL vials 48941000036108 Rocuronium Bromide (DBL) 50 mg/5 mL injection solution, 5 mL vial 48511000036102 Rocuronium Bromide (DBL) 48511000036102 Rocuronium Bromide (DBL) 82570011000036102 rocuronium bromide 50 mg/5 mL injection, 10 x 5 mL vials 45193011000036101 rocuronium bromide 50 mg/5 mL injection, vial 44919011000036108 rocuronium +19345011000036108 Vastin 40 mg hard capsule, 28, blister pack 51329 12633011000036107 Vastin 40 mg hard capsule, 28 5322011000036109 Vastin 40 mg hard capsule 2963011000036102 Vastin 2963011000036102 Vastin 27247011000036103 fluvastatin 40 mg capsule, 28 22606011000036108 fluvastatin 40 mg capsule 21564011000036109 fluvastatin +1045011000168107 Pryzex 2.5 mg film-coated tablet, 28, blister pack 178975 1045001000168109 Pryzex 2.5 mg film-coated tablet, 28 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +21068011000036100 Liprachol 40 mg uncoated tablet, 30, blister pack 97268 14212011000036102 Liprachol 40 mg uncoated tablet, 30 7495011000036104 Liprachol 40 mg uncoated tablet 4223011000036101 Liprachol 4223011000036101 Liprachol 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +69152011000036103 Strepsils lemon sugar free lozenge, 9, blister pack 153118 66952011000036106 Strepsils lemon sugar free lozenge, 9 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71527011000036102 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 9 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +834591000168109 Paracetamol plus Codeine 15 (Blooms The Chemist) uncoated tablet, 40, blister pack 274569 834581000168106 Paracetamol plus Codeine 15 (Blooms The Chemist) uncoated tablet, 40 834521000168107 Paracetamol plus Codeine 15 (Blooms The Chemist) uncoated tablet 834511000168100 Paracetamol plus Codeine 15 (Blooms The Chemist) 834511000168100 Paracetamol plus Codeine 15 (Blooms The Chemist) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +60176011000036103 Exforge 10/160 film-coated tablet, 56, blister pack 130841 56135011000036104 Exforge 10/160 film-coated tablet, 56 53803011000036106 Exforge 10/160 film-coated tablet 22241000168106 Exforge 10/160 22241000168106 Exforge 10/160 63239011000036108 amlodipine 10 mg + valsartan 160 mg tablet, 56 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +1122731000168104 Fluarix Tetra 2018 without Needle injection suspension, 10 x 0.5 mL syringes 200674 1122721000168102 Fluarix Tetra 2018 without Needle injection suspension, 10 x 0.5 mL syringes 1122661000168104 Fluarix Tetra 2018 without Needle injection suspension, 0.5 mL syringe 1122401000168102 Fluarix Tetra 2018 1122401000168102 Fluarix Tetra 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +831941000168106 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack 115008 831931000168102 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack 643551000168105 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines (inert substance) diluent, 0.7 mL syringe 40011000168104 Varivax Refrigerated 73763011000036106 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines 831921000168100 varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack 643541000168108 inert substance diluent, 0.7 mL syringe 21220011000036103 inert substance +831941000168106 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack 115008 831931000168102 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack 831711000168109 Varivax Refrigerated (varicella-zoster live vaccine) powder for injection, vial 40011000168104 Varivax Refrigerated 40011000168104 Varivax Refrigerated 831921000168100 varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack 831701000168106 varicella-zoster live vaccine 1350 PFU injection, vial 830851000168105 varicella-zoster live vaccine +998861000168105 Perindopril Arginine (Apotex) 10 mg film-coated tablet, 30, blister pack 184817 998851000168108 Perindopril Arginine (Apotex) 10 mg film-coated tablet, 30 998821000168100 Perindopril Arginine (Apotex) 10 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +19017011000036108 Ciproxin 500 mg film-coated tablet, 14, blister pack 35361 12322011000036105 Ciproxin 500 mg film-coated tablet, 14 5570011000036109 Ciproxin 500 mg film-coated tablet 28351000168101 Ciproxin 28351000168101 Ciproxin 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +931483011000036104 Naprofem 275 mg film-coated tablet, 24, blister pack 153546 930660011000036100 Naprofem 275 mg film-coated tablet, 24 929993011000036108 Naprofem 275 mg film-coated tablet 929867011000036108 Naprofem 929867011000036108 Naprofem 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +855001000168107 Algerika 100 mg hard capsule, 21, blister pack 229592 854991000168101 Algerika 100 mg hard capsule, 21 854941000168109 Algerika 100 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854981000168104 pregabalin 100 mg capsule, 21 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +1050881000168103 Bupredermal 5 microgram/hour patch, 2, sachet 234741 1050871000168101 Bupredermal 5 microgram/hour patch, 2 1050841000168108 Bupredermal 5 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 26680011000036107 buprenorphine 5 microgram/hour patch, 2 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +849061000168109 Itracap 100 mg hard capsule, 6, blister pack 244472 849051000168107 Itracap 100 mg hard capsule, 6 849021000168104 Itracap 100 mg hard capsule 849011000168106 Itracap 849011000168106 Itracap 46363011000036109 itraconazole 100 mg capsule, 6 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +82354011000036107 Pholtrate Linctus 1 mg/mL oral liquid solution, 500 mL, bottle 11521 82124011000036104 Pholtrate Linctus 1 mg/mL oral liquid solution, 500 mL 81995011000036105 Pholtrate Linctus 1 mg/mL oral liquid solution 81976011000036106 Pholtrate Linctus 81976011000036106 Pholtrate Linctus 63801011000036106 pholcodine 1 mg/mL oral liquid, 500 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +20826011000036104 Pegasys-RBV (4 x 135 microgram syringes, 84 x 200 mg tablets), 1 pack, composite pack 91842 13989011000036105 Pegasys-RBV (4 x 135 microgram syringes, 84 x 200 mg tablets), 1 pack 7271011000036109 Pegasys 135 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28054011000036107 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [84], 1 pack 23370011000036102 peginterferon alfa-2a 135 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20826011000036104 Pegasys-RBV (4 x 135 microgram syringes, 84 x 200 mg tablets), 1 pack, composite pack 91842 13989011000036105 Pegasys-RBV (4 x 135 microgram syringes, 84 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28054011000036107 peginterferon alfa-2a 135 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [84], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +19757011000036102 Lovir 200 mg uncoated tablet, 90, blister pack 62379 13018011000036107 Lovir 200 mg uncoated tablet, 90 6306011000036101 Lovir 200 mg uncoated tablet 4208011000036103 Lovir 4208011000036103 Lovir 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +77189011000036107 Valerian Forte (Blackmores) 2 g film-coated tablet, 30, bottle 127533 76605011000036108 Valerian Forte (Blackmores) 2 g film-coated tablet, 30 76059011000036105 Valerian Forte (Blackmores) 2 g film-coated tablet 75989011000036108 Valerian Forte (Blackmores) 75989011000036108 Valerian Forte (Blackmores) 78159011000036107 valerian 2 g tablet, 30 77519011000036101 valerian 2 g tablet 77480011000036100 valerian +1096971000168103 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 24, blister pack 287475 1096961000168109 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 24 1096831000168105 Strepsils Extra Honey and Lemon 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72003011000036100 hexylresorcinol 2.4 mg lozenge, 24 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +69590011000036101 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 66696 67389011000036101 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 65641011000036100 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bottle 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71924011000036101 glucose 5% (25 g/500 mL) injection, 500 mL bottle 70249011000036109 glucose 5% (25 g/500 mL) injection, bottle 21354011000036103 glucose +19636011000036106 Premia 2.5 Continuous sugar coated tablet, 28, blister pack 59300 12905011000036101 Premia 2.5 Continuous sugar coated tablet, 28 6195011000036102 Premia 2.5 Continuous sugar coated tablet 57101000168101 Premia 2.5 Continuous 57101000168101 Premia 2.5 Continuous 27428011000036103 conjugated estrogens 625 microgram + medroxyprogesterone acetate 2.5 mg tablet, 28 22775011000036101 conjugated estrogens 625 microgram + medroxyprogesterone acetate 2.5 mg tablet 33637011000036105 conjugated estrogens + medroxyprogesterone +82910011000036104 Zedace 25 mg uncoated tablet, 90, blister pack 57370 82802011000036107 Zedace 25 mg uncoated tablet, 90 82706011000036109 Zedace 25 mg uncoated tablet 82655011000036100 Zedace 82655011000036100 Zedace 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +658901000168106 Mizart 80 mg uncoated tablet, 28, bottle 180993 658881000168109 Mizart 80 mg uncoated tablet, 28 658871000168106 Mizart 80 mg uncoated tablet 658861000168100 Mizart 658861000168100 Mizart 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +50612011000036106 Seroquel XR 50 mg modified release tablet, 10, blister pack 138917 49638011000036107 Seroquel XR 50 mg modified release tablet, 10 48795011000036103 Seroquel XR 50 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51529011000036107 quetiapine 50 mg modified release tablet, 10 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +873731000168101 Olmesartan (AKM) 20 mg film-coated tablet, 30, blister pack 235830 873721000168104 Olmesartan (AKM) 20 mg film-coated tablet, 30 873711000168106 Olmesartan (AKM) 20 mg film-coated tablet 873701000168108 Olmesartan (AKM) 873701000168108 Olmesartan (AKM) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +1036511000168109 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 30, bottle 173501 1036501000168106 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 30 1036471000168100 Atorvastatin (Ranbaxy) 80 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +59934011000036105 Dry Cough Relief (Guardian) 1 mg/mL oral liquid solution, 100 mL, bottle 119516 55896011000036107 Dry Cough Relief (Guardian) 1 mg/mL oral liquid solution, 100 mL 53612011000036107 Dry Cough Relief (Guardian) 1 mg/mL oral liquid solution 53321011000036103 Dry Cough Relief (Guardian) 53321011000036103 Dry Cough Relief (Guardian) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +967311000168101 Formet 500 mg film-coated tablet, 500, bottle 192236 967301000168104 Formet 500 mg film-coated tablet, 500 7242011000036102 Formet 500 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 53221000036101 metformin hydrochloride 500 mg tablet, 500 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +926874011000036100 Resolve Balm cream, 50 g, tube 53487 926270011000036100 Resolve Balm cream, 50 g 925715011000036105 Resolve Balm cream 925555011000036102 Resolve Balm 925555011000036102 Resolve Balm 927374011000036104 miconazole nitrate 2% + bufexamac 5% cream, 50 g 927017011000036101 miconazole nitrate 2% + bufexamac 5% cream 926975011000036105 miconazole + bufexamac +900901000168100 Amoxycillin (Actavis) 500 mg hard capsule, 20, blister pack 198124 900891000168104 Amoxycillin (Actavis) 500 mg hard capsule, 20 900881000168102 Amoxycillin (Actavis) 500 mg hard capsule 900721000168107 Amoxycillin (Actavis) 900721000168107 Amoxycillin (Actavis) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +19394011000036102 Maxipime 2 g powder for injection, 1 vial 52806 12679011000036107 Maxipime 2 g powder for injection, 1 vial 4730011000036101 Maxipime 2 g powder for injection, 2 g vial 3139011000036100 Maxipime 3139011000036100 Maxipime 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +933211361000036109 Roflo 250 mg film-coated tablet, 8, blister pack 125322 933200401000036105 Roflo 250 mg film-coated tablet, 8 933194331000036104 Roflo 250 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 932364011000036107 ciprofloxacin 250 mg tablet, 8 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +860781000168104 Ambotens HCT 300/12.5 film-coated tablet, 30, blister pack 192341 860771000168102 Ambotens HCT 300/12.5 film-coated tablet, 30 860761000168108 Ambotens HCT 300/12.5 film-coated tablet 860751000168106 Ambotens HCT 300/12.5 860751000168106 Ambotens HCT 300/12.5 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1007471000168105 Novacodone 10 mg modified release tablet, 20, blister pack 227941 1007461000168104 Novacodone 10 mg modified release tablet, 20 1007451000168101 Novacodone 10 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +865051000168101 Amitriptyline (CH) 10 mg tablet, 50, blister pack 232122 865041000168103 Amitriptyline (CH) 10 mg tablet, 50 865031000168107 Amitriptyline (CH) 10 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +854841000168100 Algerika 75 mg hard capsule, 14, blister pack 229589 854831000168109 Algerika 75 mg hard capsule, 14 854811000168104 Algerika 75 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +926845011000036102 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid, 100 mL, bottle 25404 926241011000036106 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid, 100 mL 925694011000036101 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid 925508011000036101 Eucalyptus Oil (Thursday Plantation) 925508011000036101 Eucalyptus Oil (Thursday Plantation) 927353011000036104 eucalyptus oil 1 mL/mL liquid, 100 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +669171000168102 Macrovic Flavoured Lemon powder for oral liquid, 30 sachets 220581 669161000168108 Macrovic Flavoured Lemon powder for oral liquid, 30 sachets 669111000168105 Macrovic Flavoured Lemon powder for oral liquid, sachet 668291000168102 Macrovic 668291000168102 Macrovic 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +44444011000036103 Pentothal 500 mg powder for injection, 50 vials 73505 41900011000036106 Pentothal 500 mg powder for injection, 50 vials 40254011000036102 Pentothal 500 mg powder for injection, 500 mg vial 39749011000036109 Pentothal 39749011000036109 Pentothal 46698011000036108 thiopental sodium 500 mg injection, 50 vials 45273011000036107 thiopental sodium 500 mg injection, vial 44938011000036109 thiopental +953341000168102 Gabapentin (AN) 400 mg hard capsule, 20, blister pack 263842 953331000168106 Gabapentin (AN) 400 mg hard capsule, 20 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953321000168108 gabapentin 400 mg capsule, 20 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +18763011000036104 Methyl Salicylate Compound (Gold Cross) cream, 100 g, jar 13916 12015011000036109 Methyl Salicylate Compound (Gold Cross) cream, 100 g 4562011000036107 Methyl Salicylate Compound (Gold Cross) cream 3637011000036108 Methyl Salicylate Compound (Gold Cross) 3637011000036108 Methyl Salicylate Compound (Gold Cross) 26849011000036104 methyl salicylate 25% + eucalyptus oil 10% + menthol 4% cream, 100 g 22230011000036101 methyl salicylate 25% + eucalyptus oil 10% + menthol 4% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +920951000168105 Cilopam 10 mg film-coated tablet, 14, bottle 158863 920511000168100 Cilopam 10 mg film-coated tablet, 14 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +933098011000036105 Aquinafil 10 mg film-coated tablet, 30, blister pack 173709 932905011000036100 Aquinafil 10 mg film-coated tablet, 30 932759011000036102 Aquinafil 10 mg film-coated tablet 932703011000036108 Aquinafil 932703011000036108 Aquinafil 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +861261000168109 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16, blister pack 72556 861251000168107 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16 861231000168101 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge 43461000168100 Anti-Inflammatory Lozenge (Amcal) 43461000168100 Anti-Inflammatory Lozenge (Amcal) 861241000168105 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 16 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +60902011000036108 Donnatab uncoated tablet, 50, blister pack 60604 56856011000036103 Donnatab uncoated tablet, 50 54102011000036107 Donnatab uncoated tablet 53341011000036100 Donnatab 53341011000036100 Donnatab 63612011000036108 atropine sulfate monohydrate 19.4 microgram + hyoscine hydrobromide trihydrate 6.5 microgram + hyoscyamine sulfate dihydrate 103.7 microgram tablet, 50 62027011000036102 atropine sulfate monohydrate 19.4 microgram + hyoscine hydrobromide trihydrate 6.5 microgram + hyoscyamine sulfate dihydrate 103.7 microgram tablet 61708011000036107 atropine sulfate monohydrate + hyoscine hydrobromide trihydrate + hyoscyamine +865211000168108 Amitriptyline (CH) 25 mg tablet, 100, blister pack 232124 865201000168105 Amitriptyline (CH) 25 mg tablet, 100 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +792391000168100 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet, 12, blister pack 204244 792381000168103 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet, 12 792351000168105 Sleep Aid (Pharmacy Action) 25 mg uncoated tablet 792341000168108 Sleep Aid (Pharmacy Action) 792341000168108 Sleep Aid (Pharmacy Action) 63826011000036106 doxylamine succinate 25 mg tablet, 12 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +869801000168106 Atomerra 40 mg hard capsule, 56, blister pack 234814 869791000168105 Atomerra 40 mg hard capsule, 56 869711000168101 Atomerra 40 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830721000168108 atomoxetine 40 mg capsule, 56 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +61561011000036103 Dry Cough Mixture (Terry White Chemists) oral liquid solution, 200 mL, bottle 94137 57483011000036106 Dry Cough Mixture (Terry White Chemists) oral liquid solution, 200 mL 54320011000036107 Dry Cough Mixture (Terry White Chemists) oral liquid solution, 5 mL 57711000168104 Dry Cough Mixture (Terry White Chemists) 57711000168104 Dry Cough Mixture (Terry White Chemists) 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +1109391000168101 Cloap 75/100 uncoated tablet, 50, blister pack 219058 1109381000168104 Cloap 75/100 uncoated tablet, 50 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82551011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 50 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1111801000168103 Glucosamine Hydrochloride (Health Plus Vitamins) 1.5 g film-coated tablet, 200, jar 206342 1111791000168104 Glucosamine Hydrochloride (Health Plus Vitamins) 1.5 g film-coated tablet, 200 1111771000168100 Glucosamine Hydrochloride (Health Plus Vitamins) 1.5 g film-coated tablet 1111741000168107 Glucosamine Hydrochloride (Health Plus Vitamins) 1111741000168107 Glucosamine Hydrochloride (Health Plus Vitamins) 1111781000168102 glucosamine hydrochloride 1.5 g tablet, 200 1018631000168106 glucosamine hydrochloride 1.5 g tablet 69813011000036107 glucosamine +771271000168108 Imigran FDT 50 mg film-coated tablet, 18, blister pack 106714 771261000168102 Imigran FDT 50 mg film-coated tablet, 18 5890011000036101 Imigran FDT 50 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 771251000168104 sumatriptan 50 mg tablet, 18 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +1103221000168107 Nicotine (NCHA) Classic 4 mg chewing gum, 24, blister pack 143430 1103211000168100 Nicotine (NCHA) Classic 4 mg chewing gum, 24 1103201000168103 Nicotine (NCHA) Classic 4 mg chewing gum 1103091000168102 Nicotine (NCHA) 1103091000168102 Nicotine (NCHA) 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +989721000168103 Benadryl Dry Tickly Cough Forte 4 mg/mL oral liquid solution, 100 mL, bottle 203499 989711000168105 Benadryl Dry Tickly Cough Forte 4 mg/mL oral liquid solution, 100 mL 989691000168107 Benadryl Dry Tickly Cough Forte 4 mg/mL oral liquid solution 989681000168109 Benadryl Dry Tickly Cough Forte 989681000168109 Benadryl Dry Tickly Cough Forte 989701000168107 pholcodine 4 mg/mL oral liquid, 100 mL 154971000036102 pholcodine 4 mg/mL oral liquid 21705011000036108 pholcodine +1023991000168103 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 2, blister pack 227167 1023981000168101 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 2 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71521011000036105 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +908071000168108 Celecoxib (Ascent) 200 mg capsule, 30, blister pack 204617 908061000168102 Celecoxib (Ascent) 200 mg capsule, 30 907951000168102 Celecoxib (Ascent) 200 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +19705011000036102 Topace 12.5 mg uncoated tablet, 90, blister pack 60875 12962011000036108 Topace 12.5 mg uncoated tablet, 90 6251011000036105 Topace 12.5 mg uncoated tablet 4075011000036105 Topace 4075011000036105 Topace 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +20688011000036101 Ferrosig 100 mg/2 mL injection solution, 5 x 2 mL ampoules 82435 13867011000036106 Ferrosig 100 mg/2 mL injection solution, 5 x 2 mL ampoules 7154011000036107 Ferrosig 100 mg/2 mL injection solution, 2 mL ampoule 4064011000036100 Ferrosig 4064011000036100 Ferrosig 27984011000036102 iron (as polymaltose) 100 mg/2 mL injection, 5 x 2 mL ampoules 23308011000036109 iron (as polymaltose) 100 mg/2 mL injection, ampoule 21803011000036105 iron polymaltose +56631000036105 Lanez 5 mg film-coated tablet, 28, blister pack 163408 53061000036103 Lanez 5 mg film-coated tablet, 28 48611000036103 Lanez 5 mg film-coated tablet 47331000168108 Lanez 47331000168108 Lanez 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1071111000168107 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 24, blister pack 208284 1071101000168109 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 24 1071091000168104 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 63169011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +37462011000036106 Streptase 750 000 units powder for injection, 1 vial 12416 36732011000036106 Streptase 750 000 units powder for injection, 1 vial 36035011000036100 Streptase 750 000 units powder for injection, 750 000 units vial 35967011000036106 Streptase 35967011000036106 Streptase 38642011000036106 streptokinase 750 000 units injection, 1 vial 37897011000036101 streptokinase 750 000 units injection, vial 37726011000036108 streptokinase +929042011000036104 Sertraline (DRLA) 100 mg film-coated tablet, 90, blister pack 160777 928403011000036109 Sertraline (DRLA) 100 mg film-coated tablet, 90 927967011000036107 Sertraline (DRLA) 100 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 929240011000036109 sertraline 100 mg tablet, 90 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +18469011000036108 Pravastatin Sodium (Chemmart) 10 mg uncoated tablet, 30, blister pack 118723 11589011000036109 Pravastatin Sodium (Chemmart) 10 mg uncoated tablet, 30 5271011000036105 Pravastatin Sodium (Chemmart) 10 mg uncoated tablet 3588011000036109 Pravastatin Sodium (Chemmart) 3588011000036109 Pravastatin Sodium (Chemmart) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +908051000168104 Celecoxib (Ascent) 200 mg capsule, 20, blister pack 204617 908041000168101 Celecoxib (Ascent) 200 mg capsule, 20 907951000168102 Celecoxib (Ascent) 200 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +959451000168109 Ciram 10 mg film-coated tablet, 28, bottle 158857 959341000168100 Ciram 10 mg film-coated tablet, 28 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +837421000168100 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 837411000168107 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 837391000168107 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial 693121000168104 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) 693121000168104 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) 837401000168109 diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 10 x 0.5 mL vials 837381000168109 diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 0.5 mL vial 21826011000036109 diphtheria + tetanus vaccine +912641000168108 Amlocor 5 mg tablet, 30, blister pack 195705 912631000168104 Amlocor 5 mg tablet, 30 912621000168102 Amlocor 5 mg tablet 912571000168100 Amlocor 912571000168100 Amlocor 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +73283011000036103 Jurnista 16 mg modified release tablet, 14, blister pack 141533 73081011000036105 Jurnista 16 mg modified release tablet, 14 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73479011000036105 hydromorphone hydrochloride 16 mg modified release tablet, 14 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +1120481000168109 Xque XR 300 mg modified release tablet, 100, blister pack 226815 1120471000168106 Xque XR 300 mg modified release tablet, 100 1120401000168101 Xque XR 300 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51536011000036100 quetiapine 300 mg modified release tablet, 100 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +1002351000168109 Rivastigmine (Apo) 4.5 mg hard capsule, 100, bottle 160566 1002341000168107 Rivastigmine (Apo) 4.5 mg hard capsule, 100 1002211000168100 Rivastigmine (Apo) 4.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002331000168103 rivastigmine 4.5 mg capsule, 100 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +928965011000036109 Pizaccord 45 mg uncoated tablet, 28, blister pack 156722 928326011000036100 Pizaccord 45 mg uncoated tablet, 28 927952011000036100 Pizaccord 45 mg uncoated tablet 927823011000036102 Pizaccord 927823011000036102 Pizaccord 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +1021821000168109 Atelvia 75 mg film-coated tablet, 4, blister pack 163754 1021811000168102 Atelvia 75 mg film-coated tablet, 4 1021781000168104 Atelvia 75 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 801001000168102 risedronate sodium 75 mg tablet, 4 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +779461000168102 Inlyta 7 mg film-coated tablet, 56, blister pack 213875 779451000168104 Inlyta 7 mg film-coated tablet, 56 779401000168103 Inlyta 7 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 779441000168101 axitinib 7 mg tablet, 56 779391000168100 axitinib 7 mg tablet 157041000036102 axitinib +901541000168103 Capex 500 mg film-coated tablet, 120, blister pack 213039 901531000168107 Capex 500 mg film-coated tablet, 120 901481000168109 Capex 500 mg film-coated tablet 900971000168105 Capex 900971000168105 Capex 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +1071151000168108 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 36, blister pack 208284 1071141000168106 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 36 1071091000168104 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 1069921000168109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 36 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +933246321000036100 Ciprofloxacin (PS) 500 mg film-coated tablet, 14, blister pack 148852 933243121000036109 Ciprofloxacin (PS) 500 mg film-coated tablet, 14 933241321000036108 Ciprofloxacin (PS) 500 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +20817011000036105 Ovidrel (1 x 250 microgram vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 91561 13980011000036104 Ovidrel (1 x 250 microgram vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 636101000168109 Ovidrel (inert substance) diluent, 0.5 mL ampoule 4186011000036103 Ovidrel 4186011000036103 Ovidrel 28046011000036101 choriogonadotropin alfa 250 microgram injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +20817011000036105 Ovidrel (1 x 250 microgram vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 91561 13980011000036104 Ovidrel (1 x 250 microgram vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 7266011000036109 Ovidrel (choriogonadotropin alfa 250 microgram) powder for injection, 250 microgram vial 4186011000036103 Ovidrel 4186011000036103 Ovidrel 28046011000036101 choriogonadotropin alfa 250 microgram injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 23367011000036107 choriogonadotropin alfa 250 microgram injection, vial 21430011000036104 choriogonadotropin alfa +68723011000036103 Blistex Antiviral Cold Sore 5% cream, 5 g, tube 123862 66671011000036101 Blistex Antiviral Cold Sore 5% cream, 5 g 65491011000036109 Blistex Antiviral Cold Sore 5% cream 65167011000036100 Blistex Antiviral Cold Sore 65167011000036100 Blistex Antiviral Cold Sore 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +140741000036103 Candesartan Cilexetil (RBX) 32 mg uncoated tablet, 30, blister pack 195470 139201000036100 Candesartan Cilexetil (RBX) 32 mg uncoated tablet, 30 137631000036100 Candesartan Cilexetil (RBX) 32 mg uncoated tablet 137351000036102 Candesartan Cilexetil (RBX) 137351000036102 Candesartan Cilexetil (RBX) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +912321000168105 Cepha 250 mg hard capsule, 20, blister pack 176787 912311000168103 Cepha 250 mg hard capsule, 20 912301000168101 Cepha 250 mg hard capsule 912291000168102 Cepha 912291000168102 Cepha 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +18369011000036100 Ondaz Zydis 8 mg wafer, 10, blister pack 116435 11524011000036103 Ondaz Zydis 8 mg wafer, 10 5086011000036103 Ondaz Zydis 8 mg wafer 51911000168109 Ondaz Zydis 51911000168109 Ondaz Zydis 27518011000036101 ondansetron 8 mg wafer, 10 22859011000036100 ondansetron 8 mg wafer 21545011000036100 ondansetron +73300011000036103 Jurnista 32 mg modified release tablet, 50, blister pack 141534 73098011000036100 Jurnista 32 mg modified release tablet, 50 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73496011000036109 hydromorphone hydrochloride 32 mg modified release tablet, 50 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +131621000036109 Lukair 4 mg chewable tablet, 28, blister pack 197283 128601000036109 Lukair 4 mg chewable tablet, 28 124461000036104 Lukair 4 mg chewable tablet 123791000036103 Lukair 123791000036103 Lukair 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +37488011000036106 Heparin Sodium (DBL) 5000 units/mL injection solution, 5 x 1 mL ampoules 12881 36756011000036106 Heparin Sodium (DBL) 5000 units/mL injection solution, 5 x 1 mL ampoules 36039011000036103 Heparin Sodium (DBL) 5000 units/mL injection solution, ampoule 4435011000036104 Heparin Sodium (DBL) 4435011000036104 Heparin Sodium (DBL) 38661011000036109 heparin sodium 5000 units/mL injection, 5 x 1 mL ampoules 37912011000036107 heparin sodium 5000 units/mL injection, ampoule 858661000168109 heparin +80991011000036101 Effient 5 mg film-coated tablet, 6, blister pack 150809 80563011000036105 Effient 5 mg film-coated tablet, 6 80193011000036102 Effient 5 mg film-coated tablet 80100011000036108 Effient 80100011000036108 Effient 81642011000036107 prasugrel 5 mg tablet, 6 81276011000036107 prasugrel 5 mg tablet 81216011000036103 prasugrel +865531000168100 Amitriptyline (GXP) 50 mg tablet, 1000, bottle 232133 864801000168105 Amitriptyline (GXP) 50 mg tablet, 1000 864731000168105 Amitriptyline (GXP) 50 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1105311000168107 Quetiapine (CH) 100 mg film-coated tablet, 20, blister pack 172838 1105301000168109 Quetiapine (CH) 100 mg film-coated tablet, 20 1105271000168107 Quetiapine (CH) 100 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +685531000168107 Soap Enema (Orion) 50 mg/mL enema, 500 mL, bottle 10800 685521000168109 Soap Enema (Orion) 50 mg/mL enema, 500 mL 685501000168100 Soap Enema (Orion) 50 mg/mL enema 65003011000036101 Soap Enema (Orion) 65003011000036101 Soap Enema (Orion) 685511000168102 soft soap 50 mg/mL enema, 500 mL 685491000168107 soft soap 50 mg/mL enema 69752011000036106 soft soap +998381000168106 Desloratadine (Apo) 5 mg film-coated tablet, 100, blister pack 202823 998371000168108 Desloratadine (Apo) 5 mg film-coated tablet, 100 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 998361000168102 desloratadine 5 mg tablet, 100 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +869871000168101 Eplerenone (AN) 25 mg film-coated tablet, 60, blister pack 231448 869861000168107 Eplerenone (AN) 25 mg film-coated tablet, 60 869811000168109 Eplerenone (AN) 25 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 777031000168105 eplerenone 25 mg tablet, 60 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +1111481000168109 Clopithromb 75 mg film-coated tablet, 30, blister pack 187040 1111471000168106 Clopithromb 75 mg film-coated tablet, 30 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87801011000036104 clopidogrel 75 mg tablet, 30 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +32588011000036100 Sodium Chloride 0.18% and Glucose 4% (Baxter) injection solution, 1 L bag 48523 32383011000036107 Sodium Chloride 0.18% and Glucose 4% (Baxter) injection solution, 1 L bag 5545011000036101 Sodium Chloride 0.18% and Glucose 4% (Baxter) injection solution, 1 L bag 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 32783011000036106 sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, 1 L bag 22567011000036104 sodium chloride 0.18% (1.8 g/L) + glucose 4% (40 g/L) injection, bag 21257011000036103 sodium chloride + glucose +69428011000036100 Sodium Chloride (AstraZeneca) 0.9% (90 mg/10 mL) injection solution, 50 x 10 mL ampoules 48347 67228011000036105 Sodium Chloride (AstraZeneca) 0.9% (90 mg/10 mL) injection solution, 50 x 10 mL ampoules 65565011000036102 Sodium Chloride (AstraZeneca) 0.9% (90 mg/10 mL) injection solution, 10 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71778011000036104 sodium chloride 0.9% (90 mg/10 mL) injection, 50 x 10 mL ampoules 22582011000036104 sodium chloride 0.9% (90 mg/10 mL) injection, ampoule 21308011000036103 sodium chloride +989631000168108 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 30, blister pack 199859 989621000168105 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 30 989571000168107 Loratadine (Blooms The Chemist) 10 mg uncoated tablet 989561000168101 Loratadine (Blooms The Chemist) 989561000168101 Loratadine (Blooms The Chemist) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +976771000168104 Elevit film-coated tablet, 100, blister pack 213113 976761000168105 Elevit film-coated tablet, 100 976681000168106 Elevit film-coated tablet 61571000168101 Elevit 61571000168101 Elevit 976751000168108 folic acid 800 microgram + iron 60 mg + iodine 220 microgram + thiamine 1.4 mg + riboflavin 1.4 mg + nicotinamide 18 mg + pantothenic acid 6 mg + pyridoxine 1.9 mg + cyanocobalamin 2.6 microgram + ascorbic acid 85 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopherol 18.7 mg + biotin 30 microgram + calcium 125 mg + magnesium 100 mg + copper 1 mg + manganese 1.9 mg + zinc 11 mg + selenium 50 microgram tablet, 100 976671000168108 folic acid 800 microgram + iron 60 mg + iodine 220 microgram + thiamine 1.4 mg + riboflavin 1.4 mg + nicotinamide 18 mg + pantothenic acid 6 mg + pyridoxine 1.9 mg + cyanocobalamin 2.6 microgram + ascorbic acid 85 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopherol 18.7 mg + biotin 30 microgram + calcium 125 mg + magnesium 100 mg + copper 1 mg + manganese 1.9 mg + zinc 11 mg + selenium 50 microgram tablet 976661000168102 folic acid + iron + iodine + thiamine + riboflavin + nicotinamide + pantothenic acid + pyridoxine + cyanocobalamin + ascorbic acid + colecalciferol + dl-alpha-tocopherol + biotin + calcium + magnesium + copper + manganese + zinc + selenium +32539011000036104 Octreotide (Hospira) 50 microgram/mL injection solution, 5 x 1 mL vials 120734 32333011000036104 Octreotide (Hospira) 50 microgram/mL injection solution, 5 x 1 mL vials 32210011000036105 Octreotide (Hospira) 50 microgram/mL injection solution, vial 32198011000036109 Octreotide (Hospira) 32198011000036109 Octreotide (Hospira) 32757011000036108 octreotide 50 microgram/mL injection, 5 x 1 mL vials 32688011000036107 octreotide 50 microgram/mL injection, vial 21316011000036104 octreotide +86099011000036104 Lisinopril (GA) 10 mg uncoated tablet, 56, blister pack 106501 85618011000036103 Lisinopril (GA) 10 mg uncoated tablet, 56 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 86421011000036100 lisinopril 10 mg tablet, 56 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +908231000168101 Celecoxib (Generic Health) 100 mg hard capsule, 50, blister pack 196180 908221000168104 Celecoxib (Generic Health) 100 mg hard capsule, 50 908121000168108 Celecoxib (Generic Health) 100 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +19069011000036102 Pine Tar (Hamilton) 2.3% solution, 500 mL, bottle 42008 12377011000036108 Pine Tar (Hamilton) 2.3% solution, 500 mL 4468011000036100 Pine Tar (Hamilton) 2.3% solution 30575011000036108 Pine Tar (Hamilton) 30575011000036108 Pine Tar (Hamilton) 27086011000036100 tar 2.3% solution, 500 mL 22455011000036108 tar 2.3% solution 21402011000036105 tar +55101000036100 Dry Tickly Cough Medicine (Your Pharmacy) 1 mg/mL oral liquid solution, 200 mL, bottle 139219 51191000036105 Dry Tickly Cough Medicine (Your Pharmacy) 1 mg/mL oral liquid solution, 200 mL 48661000036101 Dry Tickly Cough Medicine (Your Pharmacy) 1 mg/mL oral liquid solution 63241000168107 Dry Tickly Cough Medicine (Your Pharmacy) 63241000168107 Dry Tickly Cough Medicine (Your Pharmacy) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +972431000168106 Lyzalon 150 mg hard capsule, 56, bottle 224425 972421000168108 Lyzalon 150 mg hard capsule, 56 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +929581000168102 Aczone 7.5% gel, 60 g, pump pack 266267 929571000168100 Aczone 7.5% gel, 60 g 929521000168101 Aczone 7.5% gel 929501000168105 Aczone 929501000168105 Aczone 929561000168106 dapsone 7.5% gel, 60 g 929511000168108 dapsone 7.5% gel 21608011000036106 dapsone +931569011000036105 Cholpra 40 mg film-coated tablet, 30, bottle 163545 930730011000036102 Cholpra 40 mg film-coated tablet, 30 930030011000036100 Cholpra 40 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +856851000168109 Entrip 50 mg film-coated tablet, 1000, blister pack 232156 856841000168107 Entrip 50 mg film-coated tablet, 1000 856771000168108 Entrip 50 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +61049011000036108 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 12, blister pack 67366 56992011000036102 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet, 12 54149011000036108 Naproxen Sodium (Soul Pattinson) 275 mg film-coated tablet 53376011000036109 Naproxen Sodium (Soul Pattinson) 53376011000036109 Naproxen Sodium (Soul Pattinson) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +44344011000036107 Novonorm 500 microgram uncoated tablet, 90, blister pack 67270 41811011000036109 Novonorm 500 microgram uncoated tablet, 90 40208011000036102 Novonorm 500 microgram uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46617011000036108 repaglinide 500 microgram tablet, 90 45240011000036103 repaglinide 500 microgram tablet 44883011000036104 repaglinide +908211000168106 Celecoxib (Generic Health) 100 mg hard capsule, 30, blister pack 196180 908201000168108 Celecoxib (Generic Health) 100 mg hard capsule, 30 908121000168108 Celecoxib (Generic Health) 100 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 907411000168106 celecoxib 100 mg capsule, 30 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +869641000168107 Tevaripiprazole 10 mg uncoated tablet, 30, blister pack 238014 869631000168103 Tevaripiprazole 10 mg uncoated tablet, 30 869621000168101 Tevaripiprazole 10 mg uncoated tablet 869611000168108 Tevaripiprazole 869611000168108 Tevaripiprazole 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +912481000168101 Cisero 20 mg film-coated tablet, 30, blister pack 183645 912471000168104 Cisero 20 mg film-coated tablet, 30 912461000168105 Cisero 20 mg film-coated tablet 912361000168100 Cisero 912361000168100 Cisero 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +933246481000036105 Cephalexin (PS) 500 mg capsule, 20, blister pack 148201 933243031000036107 Cephalexin (PS) 500 mg capsule, 20 933241301000036103 Cephalexin (PS) 500 mg capsule 933240961000036107 Cephalexin (PS) 933240961000036107 Cephalexin (PS) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +1113821000168106 Rekovelle 12 microgram/0.36 mL injection solution, 0.36 mL injection device 289310 1113811000168104 Rekovelle 12 microgram/0.36 mL injection solution, 0.36 mL injection device 1113791000168103 Rekovelle 12 microgram/0.36 mL injection solution, 0.36 mL injection device 1113721000168100 Rekovelle 1113721000168100 Rekovelle 1113801000168102 follitropin delta 12 microgram/0.36 mL injection, 0.36 mL injection device 1113781000168101 follitropin delta 12 microgram/0.36 mL injection, injection device 1113771000168104 follitropin delta +933231361000036100 Xgeva 120 mg/1.7 mL injection solution, 1.7 mL vial 175041 933225481000036104 Xgeva 120 mg/1.7 mL injection solution, 1.7 mL vial 933220651000036100 Xgeva 120 mg/1.7 mL injection solution, 1.7 mL vial 933219061000036105 Xgeva 933219061000036105 Xgeva 933225491000036102 denosumab 120 mg/1.7 mL injection, 1.7 mL vial 933220661000036102 denosumab 120 mg/1.7 mL injection, vial 923928011000036106 denosumab +50690011000036106 Truesense diagnostic strip, 100, bottle 80647 49714011000036101 Truesense diagnostic strip, 100 48842011000036102 Truesense diagnostic strip 60561000168102 Truesense 60561000168102 Truesense 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +929621000168102 Lithicarb SR 400 mg modified release tablet, 100, blister pack 53258 927511000168104 Lithicarb SR 400 mg modified release tablet, 100 927491000168109 Lithicarb SR 400 mg modified release tablet 927411000168100 Lithicarb SR 927411000168100 Lithicarb SR 927501000168102 lithium carbonate 400 mg modified release tablet, 100 927481000168106 lithium carbonate 400 mg modified release tablet 21570011000036108 lithium carbonate +906061000168103 Farydak 10 mg hard capsule, 6, blister pack 229941 906051000168100 Farydak 10 mg hard capsule, 6 906031000168106 Farydak 10 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 906041000168102 panobinostat 10 mg capsule, 6 906021000168108 panobinostat 10 mg capsule 905421000168108 panobinostat +921041000168102 Cilopam 10 mg film-coated tablet, 500, bottle 158863 921031000168106 Cilopam 10 mg film-coated tablet, 500 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203091000036103 citalopram 10 mg tablet, 500 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +933211681000036107 Ciprofloxacin (BL) 750 mg film-coated tablet, 20, blister pack 114048 933199881000036105 Ciprofloxacin (BL) 750 mg film-coated tablet, 20 933194131000036102 Ciprofloxacin (BL) 750 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 87797011000036107 ciprofloxacin 750 mg tablet, 20 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +60979011000036105 De Worm (Chemists' Own) 100 mg chewable tablet, 6, blister pack 62963 56922011000036106 De Worm (Chemists' Own) 100 mg chewable tablet, 6 54121011000036106 De Worm (Chemists' Own) 100 mg chewable tablet 53594011000036107 De Worm (Chemists' Own) 53594011000036107 De Worm (Chemists' Own) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +20662011000036101 Gabapentin (GenRx) 300 mg hard capsule, 100, blister pack 81776 13842011000036101 Gabapentin (GenRx) 300 mg hard capsule, 100 7129011000036107 Gabapentin (GenRx) 300 mg hard capsule 3416011000036102 Gabapentin (GenRx) 3416011000036102 Gabapentin (GenRx) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +865371000168108 Amitriptyline (CH) 50 mg tablet, 50, blister pack 232126 865291000168104 Amitriptyline (CH) 50 mg tablet, 50 865281000168102 Amitriptyline (CH) 50 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +796821000168105 Levetiracetam (Accord) 250 mg film-coated tablet, 60, blister pack 189885 796811000168103 Levetiracetam (Accord) 250 mg film-coated tablet, 60 796801000168101 Levetiracetam (Accord) 250 mg film-coated tablet 796781000168100 Levetiracetam (Accord) 796781000168100 Levetiracetam (Accord) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +861101000168104 Amiodarone (Actavis) 100 mg uncoated tablet, 30, blister pack 219157 861091000168109 Amiodarone (Actavis) 100 mg uncoated tablet, 30 861081000168106 Amiodarone (Actavis) 100 mg uncoated tablet 861071000168108 Amiodarone (Actavis) 861071000168108 Amiodarone (Actavis) 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +77376011000036104 Humalog Mix50 Kwikpen injection suspension, 5 x 3 mL syringes 69167 76792011000036105 Humalog Mix50 Kwikpen injection suspension, 5 x 3 mL syringes 76181011000036109 Humalog Mix50 Kwikpen injection suspension, 3 mL syringe 13351000168100 Humalog Mix50 Kwikpen 13351000168100 Humalog Mix50 Kwikpen 78296011000036106 insulin lispro 50 units/mL + insulin lispro protamine 50 units/mL injection, 5 x 3 mL syringes 77596011000036109 insulin lispro 50 units/mL + insulin lispro protamine 50 units/mL injection, syringe 21622011000036101 insulin lispro + insulin lispro protamine +59968011000036108 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 25 mL, bottle 120723 55930011000036108 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 25 mL 53694011000036102 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63163011000036103 ibuprofen 40 mg/mL oral liquid, 25 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +903961000168108 Celocox 100 mg hard capsule, 10, blister pack 212790 903951000168106 Celocox 100 mg hard capsule, 10 903931000168100 Celocox 100 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +926909011000036100 Sore Throat Gargle (Amcal) 2.5% mouthwash, 15 mL, bottle 76700 926303011000036106 Sore Throat Gargle (Amcal) 2.5% mouthwash, 15 mL 925747011000036106 Sore Throat Gargle (Amcal) 2.5% mouthwash 48111000168102 Sore Throat Gargle (Amcal) 48111000168102 Sore Throat Gargle (Amcal) 927397011000036101 povidone-iodine 2.5% mouthwash, 15 mL 927038011000036109 povidone-iodine 2.5% mouthwash 21660011000036108 povidone-iodine +60784011000036109 Telfast 60 mg hard capsule, 20, blister pack 55127 56742011000036102 Telfast 60 mg hard capsule, 20 54060011000036100 Telfast 60 mg hard capsule 1461000168109 Telfast 1461000168109 Telfast 63545011000036102 fexofenadine hydrochloride 60 mg capsule, 20 62010011000036105 fexofenadine hydrochloride 60 mg capsule 21394011000036108 fexofenadine +80974011000036106 Resdone 2 mg film-coated tablet, 50, blister pack 147673 80542011000036106 Resdone 2 mg film-coated tablet, 50 80184011000036104 Resdone 2 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81625011000036102 risperidone 2 mg tablet, 50 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +993971000168104 Candesartan (Apotex) 8 mg tablet, 30, blister pack 184888 993961000168105 Candesartan (Apotex) 8 mg tablet, 30 993911000168107 Candesartan (Apotex) 8 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +921081000168107 Cilopam 20 mg film-coated tablet, 14, bottle 158865 920621000168106 Cilopam 20 mg film-coated tablet, 14 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +60225011000036108 Strepfen Intensive honey and lemon 8.75 mg lozenge, 4, blister pack 133376 56184011000036105 Strepfen Intensive honey and lemon 8.75 mg lozenge, 4 53828011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63910011000036108 flurbiprofen 8.75 mg lozenge, 4 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +655521000168101 Ondansetron ODT (AN) 8 mg orally disintegrating tablet, 4, blister pack 196805 655511000168108 Ondansetron ODT (AN) 8 mg orally disintegrating tablet, 4 655481000168101 Ondansetron ODT (AN) 8 mg orally disintegrating tablet 655421000168100 Ondansetron ODT (AN) 655421000168100 Ondansetron ODT (AN) 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +18881011000036104 Fungizone 50 mg powder for injection, 1 vial 19299 12189011000036102 Fungizone 50 mg powder for injection, 1 vial 5237011000036100 Fungizone 50 mg powder for injection, 50 mg vial 3325011000036109 Fungizone 3325011000036109 Fungizone 26973011000036108 amphotericin B 50 mg injection, 1 vial 22346011000036105 amphotericin B 50 mg injection, vial 21687011000036106 amphotericin B +976711000168107 Elevit film-coated tablet, 5, blister pack 213113 976701000168109 Elevit film-coated tablet, 5 976681000168106 Elevit film-coated tablet 61571000168101 Elevit 61571000168101 Elevit 976691000168109 folic acid 800 microgram + iron 60 mg + iodine 220 microgram + thiamine 1.4 mg + riboflavin 1.4 mg + nicotinamide 18 mg + pantothenic acid 6 mg + pyridoxine 1.9 mg + cyanocobalamin 2.6 microgram + ascorbic acid 85 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopherol 18.7 mg + biotin 30 microgram + calcium 125 mg + magnesium 100 mg + copper 1 mg + manganese 1.9 mg + zinc 11 mg + selenium 50 microgram tablet, 5 976671000168108 folic acid 800 microgram + iron 60 mg + iodine 220 microgram + thiamine 1.4 mg + riboflavin 1.4 mg + nicotinamide 18 mg + pantothenic acid 6 mg + pyridoxine 1.9 mg + cyanocobalamin 2.6 microgram + ascorbic acid 85 mg + colecalciferol 5 microgram (200 IU) + dl-alpha-tocopherol 18.7 mg + biotin 30 microgram + calcium 125 mg + magnesium 100 mg + copper 1 mg + manganese 1.9 mg + zinc 11 mg + selenium 50 microgram tablet 976661000168102 folic acid + iron + iodine + thiamine + riboflavin + nicotinamide + pantothenic acid + pyridoxine + cyanocobalamin + ascorbic acid + colecalciferol + dl-alpha-tocopherol + biotin + calcium + magnesium + copper + manganese + zinc + selenium +871741000168106 Rehydration Formula Effervescent (Amcal) effervescent tablet, 20, tube 123273 871731000168102 Rehydration Formula Effervescent (Amcal) effervescent tablet, 20 871721000168100 Rehydration Formula Effervescent (Amcal) effervescent tablet 60461000036105 Rehydration Formula Effervescent (Amcal) 60461000036105 Rehydration Formula Effervescent (Amcal) 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +993811000168101 Atenolol (Apo) 50 mg film-coated tablet, 500, bottle 214940 993801000168104 Atenolol (Apo) 50 mg film-coated tablet, 500 993641000168103 Atenolol (Apo) 50 mg film-coated tablet 9511000168106 Atenolol (Apo) 9511000168106 Atenolol (Apo) 993791000168100 atenolol 50 mg tablet, 500 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1038821000168103 Atorvastatin (Actavis) 80 mg film-coated tablet, 10, blister pack 217174 1038811000168105 Atorvastatin (Actavis) 80 mg film-coated tablet, 10 1038721000168109 Atorvastatin (Actavis) 80 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +91191000036101 Cyproterone Acetate (Sandoz) 50 mg uncoated tablet, 50, bottle 107330 89481000036106 Cyproterone Acetate (Sandoz) 50 mg uncoated tablet, 50 88621000036100 Cyproterone Acetate (Sandoz) 50 mg uncoated tablet 77831000036106 Cyproterone Acetate (Sandoz) 77831000036106 Cyproterone Acetate (Sandoz) 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +676941000168105 Leflunomide (AN) 10 mg film-coated tablet, 30, bottle 210923 676931000168101 Leflunomide (AN) 10 mg film-coated tablet, 30 676921000168104 Leflunomide (AN) 10 mg film-coated tablet 676851000168104 Leflunomide (AN) 676851000168104 Leflunomide (AN) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +936021000168100 Zantac 150 mg dispersible tablet, 60, strip pack 12535 936011000168107 Zantac 150 mg dispersible tablet, 60 935961000168101 Zantac 150 mg dispersible tablet 3563011000036102 Zantac 3563011000036102 Zantac 936001000168109 ranitidine 150 mg dispersible tablet, 60 935951000168103 ranitidine 150 mg dispersible tablet 21682011000036109 ranitidine +920676011000036108 Cephalexin (Max) 500 mg hard capsule, 20, blister pack 127408 920386011000036108 Cephalexin (Max) 500 mg hard capsule, 20 920149011000036104 Cephalexin (Max) 500 mg hard capsule 920067011000036108 Cephalexin (Max) 920067011000036108 Cephalexin (Max) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +931646011000036100 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 500, bottle 166257 930806011000036109 Pravastatin Sodium (Apo) 40 mg uncoated tablet, 500 930055011000036108 Pravastatin Sodium (Apo) 40 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 932419011000036104 pravastatin sodium 40 mg tablet, 500 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +972521000168107 Lyzalon 300 mg hard capsule, 56, bottle 224423 972511000168100 Lyzalon 300 mg hard capsule, 56 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +44395011000036101 Somac 40 mg enteric tablet, 56, bottle 69791 41855011000036104 Somac 40 mg enteric tablet, 56 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46661011000036101 pantoprazole 40 mg enteric tablet, 56 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +19311011000036101 Panamax Elixir 240 mg/5 mL oral liquid solution, 200 mL, bottle 49623 12601011000036104 Panamax Elixir 240 mg/5 mL oral liquid solution, 200 mL 5526011000036106 Panamax Elixir 240 mg/5 mL oral liquid solution, 5 mL 54121000168102 Panamax Elixir 54121000168102 Panamax Elixir 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +69117011000036109 Strepsils honey and lemon lozenge, 2, blister pack 14975 66918011000036104 Strepsils honey and lemon lozenge, 2 65384011000036101 Strepsils honey and lemon lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71521011000036105 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +69034011000036103 Whitfield's Half Strength (David Craig) ointment, 100 g, jar 14076 66836011000036100 Whitfield's Half Strength (David Craig) ointment, 100 g 65495011000036106 Whitfield's Half Strength (David Craig) ointment 65047011000036102 Whitfield's Half Strength (David Craig) 65047011000036102 Whitfield's Half Strength (David Craig) 71450011000036107 benzoic acid 3% + salicylic acid 1.5% ointment, 100 g 70013011000036108 benzoic acid 3% + salicylic acid 1.5% ointment 52238011000036109 benzoic acid + salicylic acid +84281011000036102 Nordip 5 mg uncoated tablet, 14, blister pack 133159 83974011000036107 Nordip 5 mg uncoated tablet, 14 83613011000036103 Nordip 5 mg uncoated tablet 83546011000036106 Nordip 83546011000036106 Nordip 84622011000036102 amlodipine 5 mg tablet, 14 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +60467011000036107 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 4 sachets 150167 56425011000036100 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 4 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63357011000036106 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 4 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +926690011000036109 Lisoril 10 mg uncoated tablet, 56, blister pack 106496 926076011000036107 Lisoril 10 mg uncoated tablet, 56 925621011000036107 Lisoril 10 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 86421011000036100 lisinopril 10 mg tablet, 56 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +861141000168102 Amiodarone (GH) 150 mg/3 mL injection solution, 10 x 3 mL ampoules 233672 861131000168106 Amiodarone (GH) 150 mg/3 mL injection solution, 10 x 3 mL ampoules 861121000168108 Amiodarone (GH) 150 mg/3 mL injection solution, 3 mL ampoule 861111000168101 Amiodarone (GH) 861111000168101 Amiodarone (GH) 38715011000036100 amiodarone hydrochloride 150 mg/3 mL injection, 10 x 3 mL ampoules 37946011000036101 amiodarone hydrochloride 150 mg/3 mL injection, ampoule 21535011000036101 amiodarone +45801000036109 Lamivudine (RBX) 150 mg film-coated tablet, 60, bottle 172813 43081000036106 Lamivudine (RBX) 150 mg film-coated tablet, 60 41271000036101 Lamivudine (RBX) 150 mg film-coated tablet 40441000036103 Lamivudine (RBX) 40441000036103 Lamivudine (RBX) 27321011000036100 lamivudine 150 mg tablet, 60 22674011000036105 lamivudine 150 mg tablet 21665011000036104 lamivudine +844001000168109 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 1000, bottle 218077 843991000168101 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 1000 843821000168106 Desvenlafaxine (Sandoz) 50 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 692701000168100 desvenlafaxine 50 mg modified release tablet, 1000 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +81199011000036105 Sennesoft (Herron) film-coated tablet, 60, blister pack 82877 80701011000036109 Sennesoft (Herron) film-coated tablet, 60 80243011000036107 Sennesoft (Herron) film-coated tablet 18961000168106 Sennesoft (Herron) 18961000168106 Sennesoft (Herron) 81753011000036107 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 60 81306011000036109 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet 81227011000036109 sennoside B + senna leaf powder + docusate +946661000168101 Risdone 6 mg film-coated tablet, 20, blister pack 144289 946651000168103 Risdone 6 mg film-coated tablet, 20 946571000168108 Risdone 6 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946641000168100 risperidone 6 mg tablet, 20 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +953101000168102 Gabapentin (AN) 300 mg hard capsule, 30, blister pack 263841 953091000168107 Gabapentin (AN) 300 mg hard capsule, 30 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953081000168109 gabapentin 300 mg capsule, 30 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +655111000168101 Duloxetine (AN) 30 mg enteric capsule, 28, blister pack 199003 655101000168104 Duloxetine (AN) 30 mg enteric capsule, 28 655091000168109 Duloxetine (AN) 30 mg enteric capsule 655081000168106 Duloxetine (AN) 655081000168106 Duloxetine (AN) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +942371000168101 Glucomet-1000 1 g film-coated tablet, 10, blister pack 147410 942361000168107 Glucomet-1000 1 g film-coated tablet, 10 942351000168105 Glucomet-1000 1 g film-coated tablet 942341000168108 Glucomet-1000 942341000168108 Glucomet-1000 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +822171000168109 Paclitaxel (Agila) 300 mg/50 mL concentrated injection, 50 mL vial 176337 822161000168103 Paclitaxel (Agila) 300 mg/50 mL concentrated injection, 50 mL vial 822151000168100 Paclitaxel (Agila) 300 mg/50 mL concentrated injection, 50 mL vial 822081000168106 Paclitaxel (Agila) 822081000168106 Paclitaxel (Agila) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +921927011000036104 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 20 mL vial 19195 921486011000036106 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 20 mL vial 921030011000036109 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 20 mL vial 35921000168104 Isovue-370 35921000168104 Isovue-370 922610011000036109 iopamidol 755 mg (iodine 370 mg)/mL injection, 20 mL vial 922104011000036102 iopamidol 755 mg (iodine 370 mg)/mL injection, 20 mL vial 77457011000036105 iopamidol +933213781000036104 Ciprofloxacin (IPC) 250 mg film-coated tablet, 14, blister pack 153183 933201801000036100 Ciprofloxacin (IPC) 250 mg film-coated tablet, 14 933194811000036101 Ciprofloxacin (IPC) 250 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +903551000168100 Brillior 100 mg hard capsule, 56, blister pack 224341 903541000168102 Brillior 100 mg hard capsule, 56 903481000168108 Brillior 100 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +727861000168107 Cardizem CD 180 mg modified release capsule, 7, blister pack 46818 41501011000036108 Cardizem CD 180 mg modified release capsule, 7 5585011000036107 Cardizem CD 180 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46639011000036108 diltiazem hydrochloride 180 mg modified release capsule, 7 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +938031000168103 Zopiclone (GH) 7.5 mg film-coated tablet, 30, blister pack 239214 938021000168101 Zopiclone (GH) 7.5 mg film-coated tablet, 30 938011000168108 Zopiclone (GH) 7.5 mg film-coated tablet 938001000168105 Zopiclone (GH) 938001000168105 Zopiclone (GH) 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +931736011000036109 Thiotepa (Aspen) 15 mg powder for injection, 1 vial 43083 930896011000036106 Thiotepa (Aspen) 15 mg powder for injection, 1 vial 930100011000036103 Thiotepa (Aspen) 15 mg powder for injection, 15 mg vial 929834011000036106 Thiotepa (Aspen) 929834011000036106 Thiotepa (Aspen) 27106011000036106 thiotepa 15 mg injection, 1 vial 22474011000036107 thiotepa 15 mg injection, vial 21919011000036100 thiotepa +933212001000036100 Donpesyn 10 mg film-coated tablet, 28, blister pack 142234 933201381000036102 Donpesyn 10 mg film-coated tablet, 28 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +933231081000036108 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 12, blister pack 172447 933225151000036100 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 12 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 933224971000036106 famciclovir 500 mg tablet, 12 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +61527011000036101 Dolased Analgesic and Calmative uncoated tablet, 6, blister pack 93507 57452011000036106 Dolased Analgesic and Calmative uncoated tablet, 6 54306011000036100 Dolased Analgesic and Calmative uncoated tablet 53285011000036100 Dolased Analgesic and Calmative 53285011000036100 Dolased Analgesic and Calmative 63868011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 6 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +19945011000036104 Airomir Autohaler 100 microgram/actuation breath activated inhalation, 200 actuations, metered dose aerosol can 67257 13188011000036100 Airomir Autohaler 100 microgram/actuation breath activated inhalation, 200 actuations 6471011000036107 Airomir Autohaler 100 microgram/actuation breath activated inhalation, actuation 47711000168102 Airomir Autohaler 47711000168102 Airomir Autohaler 76271000036106 salbutamol 100 microgram/actuation breath activated inhalation, 200 actuations 76261000036103 salbutamol 100 microgram/actuation breath activated inhalation, actuation 21493011000036100 salbutamol +19052011000036102 Accupril 5 mg film-coated tablet, 30, blister pack 40926 12360011000036103 Accupril 5 mg film-coated tablet, 30 5981011000036103 Accupril 5 mg film-coated tablet 3052011000036101 Accupril 3052011000036101 Accupril 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +871881000168105 Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets 27483 871871000168107 Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets 871861000168101 Gastrolyte Natural powder for oral liquid, 4.9 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871801000168102 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +871881000168105 Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets 61529 871871000168107 Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets 871861000168101 Gastrolyte Natural powder for oral liquid, 4.9 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871801000168102 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +933231401000036105 Exemestane (Pfizer) 25 mg sugar coated tablet, 90, blister pack 176215 933225531000036102 Exemestane (Pfizer) 25 mg sugar coated tablet, 90 933220691000036109 Exemestane (Pfizer) 25 mg sugar coated tablet 933218981000036109 Exemestane (Pfizer) 933218981000036109 Exemestane (Pfizer) 933205301000036105 exemestane 25 mg tablet, 90 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +44436011000036107 Midazolam (Pfizer (Perth)) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 72212 41892011000036104 Midazolam (Pfizer (Perth)) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 40247011000036106 Midazolam (Pfizer (Perth)) 15 mg/3 mL injection solution, 3 mL ampoule 39704011000036104 Midazolam (Pfizer (Perth)) 39704011000036104 Midazolam (Pfizer (Perth)) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +46121000036103 Atorvastatin (SCP) 20 mg film-coated tablet, 30, blister pack 180324 43401000036108 Atorvastatin (SCP) 20 mg film-coated tablet, 30 40821000036109 Atorvastatin (SCP) 20 mg film-coated tablet 40271000036109 Atorvastatin (SCP) 40271000036109 Atorvastatin (SCP) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +19429011000036102 Akamin 100 mg hard capsule, 11, bottle 53641 12712011000036104 Akamin 100 mg hard capsule, 11 5521011000036101 Akamin 100 mg hard capsule 3121011000036101 Akamin 3121011000036101 Akamin 27304011000036108 minocycline 100 mg capsule, 11 22657011000036101 minocycline 100 mg capsule 21488011000036109 minocycline +972601000168102 Lyzalon 75 mg hard capsule, 20, blister pack 224436 972311000168105 Lyzalon 75 mg hard capsule, 20 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +854521000168108 Quetiapine (Alkem) 150 mg film-coated tablet, 60, blister pack 204857 854511000168101 Quetiapine (Alkem) 150 mg film-coated tablet, 60 854481000168108 Quetiapine (Alkem) 150 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +964021000168104 Normatens 200 microgram film-coated tablet, 10, blister pack 114122 964011000168106 Normatens 200 microgram film-coated tablet, 10 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964001000168108 moxonidine 200 microgram tablet, 10 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +840071000168106 Advantan 0.1% cream, 100 g, tube 49380 840061000168100 Advantan 0.1% cream, 100 g 5548011000036107 Advantan 0.1% cream 3513011000036101 Advantan 3513011000036101 Advantan 840051000168102 methylprednisolone aceponate 0.1% cream, 100 g 22586011000036100 methylprednisolone aceponate 0.1% cream 21605011000036100 methylprednisolone +871901000168107 Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets 61529 871891000168108 Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets 871861000168101 Gastrolyte Natural powder for oral liquid, 4.9 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871831000168109 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +21168011000036106 Reyataz 150 mg hard capsule, 60, bottle 99055 14310011000036109 Reyataz 150 mg hard capsule, 60 7596011000036103 Reyataz 150 mg hard capsule 3083011000036101 Reyataz 3083011000036101 Reyataz 28301011000036104 atazanavir 150 mg capsule, 60 23615011000036109 atazanavir 150 mg capsule 21324011000036104 atazanavir +21076011000036109 Tramadol Hydrochloride (Chemmart) 50 mg hard capsule, 20, blister pack 97459 14219011000036107 Tramadol Hydrochloride (Chemmart) 50 mg hard capsule, 20 7505011000036107 Tramadol Hydrochloride (Chemmart) 50 mg hard capsule 3443011000036101 Tramadol Hydrochloride (Chemmart) 3443011000036101 Tramadol Hydrochloride (Chemmart) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +21076011000036109 Tramadol Hydrochloride (Chemmart) 50 mg hard capsule, 20, blister pack 158471 14219011000036107 Tramadol Hydrochloride (Chemmart) 50 mg hard capsule, 20 7505011000036107 Tramadol Hydrochloride (Chemmart) 50 mg hard capsule 3443011000036101 Tramadol Hydrochloride (Chemmart) 3443011000036101 Tramadol Hydrochloride (Chemmart) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +650771000168100 Irprestan 75 mg film-coated tablet, 30, blister pack 190232 650761000168106 Irprestan 75 mg film-coated tablet, 30 650751000168109 Irprestan 75 mg film-coated tablet 650741000168107 Irprestan 650741000168107 Irprestan 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +901381000168101 Amlodipine (CH) 5 mg uncoated tablet, 30, blister pack 225376 901371000168104 Amlodipine (CH) 5 mg uncoated tablet, 30 901361000168105 Amlodipine (CH) 5 mg uncoated tablet 900581000168100 Amlodipine (CH) 900581000168100 Amlodipine (CH) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +68657011000036103 Kaomagma with Pectin oral liquid suspension, 200 mL, bottle 10399 66504011000036104 Kaomagma with Pectin oral liquid suspension, 200 mL 65225011000036103 Kaomagma with Pectin oral liquid suspension, 10 mL 65064011000036103 Kaomagma with Pectin 65064011000036103 Kaomagma with Pectin 71236011000036108 aluminium hydroxide 144 mg/10 mL + light kaolin 1 g/10 mL + pectin 90 mg/10 mL oral liquid, 200 mL 69913011000036103 aluminium hydroxide 144 mg/10 mL + light kaolin 1 g/10 mL + pectin 90 mg/10 mL oral liquid 69844011000036103 aluminium hydroxide + light kaolin + pectin +166111000036105 Temaccord 100 mg hard capsule, 5, sachet 206032 164331000036107 Temaccord 100 mg hard capsule, 5 162251000036103 Temaccord 100 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +863201000168109 Amitriptyline (AN) 25 mg tablet, 10, blister pack 232118 863191000168106 Amitriptyline (AN) 25 mg tablet, 10 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +989951000168109 Benadryl Mucus Relief Double Action Forte oral liquid solution, 100 mL, bottle 214072 989941000168107 Benadryl Mucus Relief Double Action Forte oral liquid solution, 100 mL 989891000168106 Benadryl Mucus Relief Double Action Forte oral liquid solution, 5 mL 989871000168105 Benadryl Mucus Relief Double Action Forte 989871000168105 Benadryl Mucus Relief Double Action Forte 989931000168103 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +1075631000168107 Aripiprazole (Auro) 30 mg uncoated tablet, 60, blister pack 198177 1075621000168109 Aripiprazole (Auro) 30 mg uncoated tablet, 60 1075521000168105 Aripiprazole (Auro) 30 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787851000168100 aripiprazole 30 mg tablet, 60 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +73332011000036109 Lamotrust 100 mg tablet, 56, blister pack 150749 73126011000036101 Lamotrust 100 mg tablet, 56 72958011000036106 Lamotrust 100 mg tablet 72919011000036109 Lamotrust 72919011000036109 Lamotrust 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +1079971000168102 Bisoprolol (Auro) 3.75 mg film-coated tablet, 30, blister pack 175918 1079961000168108 Bisoprolol (Auro) 3.75 mg film-coated tablet, 30 1079931000168100 Bisoprolol (Auro) 3.75 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 874861000168103 bisoprolol fumarate 3.75 mg tablet, 30 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +18009011000036100 Meloxicam (GA) 15 mg uncoated tablet, 30, blister pack 124397 11760011000036101 Meloxicam (GA) 15 mg uncoated tablet, 30 4645011000036100 Meloxicam (GA) 15 mg uncoated tablet 3481011000036109 Meloxicam (GA) 3481011000036109 Meloxicam (GA) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +878321000168109 Baltine 30 mg enteric capsule, 7, blister pack 210680 878311000168102 Baltine 30 mg enteric capsule, 7 878301000168100 Baltine 30 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 38611011000036105 duloxetine 30 mg enteric capsule, 7 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +17769011000036105 Antenex 2 mg uncoated tablet, 50, bottle 17582 32369011000036107 Antenex 2 mg uncoated tablet, 50 32247011000036100 Antenex 2 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +1057631000168104 Atorvastatin (Ran) 80 mg film-coated tablet, 6, blister pack 179828 1057621000168102 Atorvastatin (Ran) 80 mg film-coated tablet, 6 1057581000168102 Atorvastatin (Ran) 80 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 840961000168104 atorvastatin 80 mg tablet, 6 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +998581000168104 Esomeprazole (Apo) 40 mg enteric tablet, 7, blister pack 205823 998571000168102 Esomeprazole (Apo) 40 mg enteric tablet, 7 998561000168108 Esomeprazole (Apo) 40 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1002191000168101 Pregabalin (Apo) 225 mg hard capsule, 20, blister pack 193278 1001281000168103 Pregabalin (Apo) 225 mg hard capsule, 20 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903611000168100 pregabalin 225 mg capsule, 20 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +734281000168105 Caltrate Bone and Muscle Health plus Minerals film-coated tablet, 60, bottle 214783 734271000168107 Caltrate Bone and Muscle Health plus Minerals film-coated tablet, 60 734251000168103 Caltrate Bone and Muscle Health plus Minerals film-coated tablet 734071000168102 Caltrate Bone and Muscle Health plus Minerals 734071000168102 Caltrate Bone and Muscle Health plus Minerals 734261000168101 calcium carbonate 1.5 g + colecalciferol 25 microgram (1000 units) + magnesium 50 mg + zinc 7.5 mg + copper 500 microgram + manganese 1.75 mg tablet, 60 734241000168100 calcium carbonate 1.5 g + colecalciferol 25 microgram (1000 units) + magnesium 50 mg + zinc 7.5 mg + copper 500 microgram + manganese 1.75 mg tablet 734231000168109 calcium + colecalciferol + magnesium + zinc + copper + manganese +123341000036105 Olanzapine (Pharmacy Choice) 2.5 mg film-coated tablet, 28, blister pack 163407 123081000036103 Olanzapine (Pharmacy Choice) 2.5 mg film-coated tablet, 28 122721000036109 Olanzapine (Pharmacy Choice) 2.5 mg film-coated tablet 1741000168102 Olanzapine (Pharmacy Choice) 1741000168102 Olanzapine (Pharmacy Choice) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +43710011000036109 Simvatrust 20 mg film-coated tablet, 30, blister pack 123814 41303011000036106 Simvatrust 20 mg film-coated tablet, 30 39943011000036103 Simvatrust 20 mg film-coated tablet 39653011000036104 Simvatrust 39653011000036104 Simvatrust 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1004341000168100 Tenofovir (Apo) 300 mg coated tablet, 30, bottle 247312 1004331000168109 Tenofovir (Apo) 300 mg coated tablet, 30 1004321000168106 Tenofovir (Apo) 300 mg coated tablet 1004311000168104 Tenofovir (Apo) 1004311000168104 Tenofovir (Apo) 28009011000036104 tenofovir disoproxil fumarate 300 mg tablet, 30 23332011000036101 tenofovir disoproxil fumarate 300 mg tablet 851521000168106 tenofovir disoproxil +912161000168103 Caspofungin (AN) 50 mg powder for injection, 1 vial 269932 912151000168100 Caspofungin (AN) 50 mg powder for injection, 1 vial 912141000168102 Caspofungin (AN) 50 mg powder for injection, 50 mg vial 909931000168102 Caspofungin (AN) 909931000168102 Caspofungin (AN) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +44001011000036100 Clopixol 10 mg film-coated tablet, 100, bottle 45077 41492011000036105 Clopixol 10 mg film-coated tablet, 100 40013011000036100 Clopixol 10 mg film-coated tablet 50311000168104 Clopixol 50311000168104 Clopixol 46338011000036109 zuclopenthixol 10 mg tablet, 100 45089011000036108 zuclopenthixol 10 mg tablet 32673011000036107 zuclopenthixol +886961000168106 Praluent 75 mg/mL injection solution, 2 x 1 mL injection devices 238285 886951000168109 Praluent 75 mg/mL injection solution, 2 x 1 mL injection devices 886901000168105 Praluent 75 mg/mL injection solution, injection device 886871000168105 Praluent 886871000168105 Praluent 886941000168107 alirocumab 75 mg/mL injection, 2 x 1 mL injection devices 886891000168106 alirocumab 75 mg/mL injection, injection device 886881000168108 alirocumab +840131000168109 Advantan 0.1% ointment, 10 g, tube 49381 840121000168106 Advantan 0.1% ointment, 10 g 4588011000036107 Advantan 0.1% ointment 3513011000036101 Advantan 3513011000036101 Advantan 840111000168104 methylprednisolone aceponate 0.1% ointment, 10 g 22587011000036102 methylprednisolone aceponate 0.1% ointment 21605011000036100 methylprednisolone +660091000168107 Azathioprine (AN) 50 mg film-coated tablet, 100, blister pack 184936 660081000168109 Azathioprine (AN) 50 mg film-coated tablet, 100 660071000168106 Azathioprine (AN) 50 mg film-coated tablet 660061000168100 Azathioprine (AN) 660061000168100 Azathioprine (AN) 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +33498011000036101 Amclav 500/125 (GA) film-coated tablet, 10, blister pack 106488 33242011000036109 Amclav 500/125 (GA) film-coated tablet, 10 33002011000036109 Amclav 500/125 (GA) film-coated tablet 43181000168103 Amclav 500/125 (GA) 43181000168103 Amclav 500/125 (GA) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +33498011000036101 Amclav 500/125 (GA) film-coated tablet, 10, blister pack 199393 33242011000036109 Amclav 500/125 (GA) film-coated tablet, 10 33002011000036109 Amclav 500/125 (GA) film-coated tablet 43181000168103 Amclav 500/125 (GA) 43181000168103 Amclav 500/125 (GA) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +69402011000036105 Albumex-20 20 g/100 mL intravenous infusion injection, 100 mL vial 46283 67202011000036100 Albumex-20 20 g/100 mL intravenous infusion injection, 100 mL vial 65550011000036104 Albumex-20 20 g/100 mL intravenous infusion injection, 100 mL vial 41171000168102 Albumex-20 41171000168102 Albumex-20 71758011000036101 albumin human 20 g/100 mL injection, 100 mL vial 70173011000036105 albumin human 20 g/100 mL injection, vial 69754011000036102 albumin human +650731000168103 Capecitabine (Actavis) 150 mg film-coated tablet, 60, blister pack 212110 650721000168101 Capecitabine (Actavis) 150 mg film-coated tablet, 60 650711000168108 Capecitabine (Actavis) 150 mg film-coated tablet 650701000168105 Capecitabine (Actavis) 650701000168105 Capecitabine (Actavis) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +805591000168100 Orkambi 200/125 film-coated tablet, 112, blister pack 235759 805581000168103 Orkambi 200/125 film-coated tablet, 112 805561000168107 Orkambi 200/125 film-coated tablet 805531000168104 Orkambi 200/125 805531000168104 Orkambi 200/125 805571000168101 lumacaftor 200 mg + ivacaftor 125 mg tablet, 112 805551000168105 lumacaftor 200 mg + ivacaftor 125 mg tablet 805541000168108 lumacaftor + ivacaftor +728501000168105 Finasteride (AN) 1 mg film-coated tablet, 28, blister pack 189272 728491000168103 Finasteride (AN) 1 mg film-coated tablet, 28 728481000168101 Finasteride (AN) 1 mg film-coated tablet 683101000168107 Finasteride (AN) 683101000168107 Finasteride (AN) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +81182011000036101 Robitussin Chesty Cough 200 mg soft capsule, 30, blister pack 74414 80684011000036103 Robitussin Chesty Cough 200 mg soft capsule, 30 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81739011000036106 guaifenesin 200 mg capsule, 30 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +32924011000036109 Imukin 2 million units (100 microgram)/0.5 mL injection solution, 6 x 0.5 mL vials 48404 32914011000036101 Imukin 2 million units (100 microgram)/0.5 mL injection solution, 6 x 0.5 mL vials 4601011000036105 Imukin 2 million units (100 microgram)/0.5 mL injection solution, 0.5 mL vial 3786011000036109 Imukin 3786011000036109 Imukin 32936011000036103 interferon gamma-1b 2 million units (100 microgram)/0.5 mL injection, 6 x 0.5 mL vials 22562011000036101 interferon gamma-1b 2 million units (100 microgram)/0.5 mL injection, vial 21863011000036106 interferon gamma-1b +668771000168105 Easymate II diagnostic strip, 100, bottle 668761000168104 Easymate II diagnostic strip, 100 668731000168107 Easymate II diagnostic strip 668721000168109 Easymate II 668721000168109 Easymate II 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +44378011000036101 Stilnox 10 mg film-coated tablet, 20, blister pack 69681 41841011000036104 Stilnox 10 mg film-coated tablet, 20 40226011000036106 Stilnox 10 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +50332011000036106 MSUD Maxamum powder for oral liquid, 500 g, can 49282011000036100 MSUD Maxamum powder for oral liquid, 500 g 48578011000036104 MSUD Maxamum powder for oral liquid 44501000168103 MSUD Maxamum 44501000168103 MSUD Maxamum 51270011000036106 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 500 g 50802011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +933231041000036104 Famciclovir (Chemmart) 500 mg film-coated tablet, 28, blister pack 172446 933225111000036104 Famciclovir (Chemmart) 500 mg film-coated tablet, 28 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 933225041000036104 famciclovir 500 mg tablet, 28 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +922000011000036103 Senokot 7.5 mg uncoated tablet, 20, blister pack 60850 921558011000036109 Senokot 7.5 mg uncoated tablet, 20 5285011000036100 Senokot 7.5 mg uncoated tablet 2967011000036106 Senokot 2967011000036106 Senokot 922674011000036106 sennoside B 7.5 mg tablet, 20 22282011000036108 sennoside B 7.5 mg tablet 21718011000036104 sennoside B +18300011000036107 Lamotrigine (GenRx) 50 mg tablet, 56, blister pack 101355 11194011000036103 Lamotrigine (GenRx) 50 mg tablet, 56 5587011000036102 Lamotrigine (GenRx) 50 mg tablet 3001011000036101 Lamotrigine (GenRx) 3001011000036101 Lamotrigine (GenRx) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +923786011000036108 Irinotecan Hydrochloride Trihydrate (Ebewe) 150 mg/7.5 mL concentrated injection, 7.5 mL vial 154239 923346011000036104 Irinotecan Hydrochloride Trihydrate (Ebewe) 150 mg/7.5 mL concentrated injection, 7.5 mL vial 923022011000036104 Irinotecan Hydrochloride Trihydrate (Ebewe) 150 mg/7.5 mL concentrated injection, 7.5 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 924147011000036108 irinotecan hydrochloride trihydrate 150 mg/7.5 mL injection, 7.5 mL vial 923965011000036105 irinotecan hydrochloride trihydrate 150 mg/7.5 mL injection, vial 21503011000036106 irinotecan +835151000168109 Stop-It 2 mg hard capsule, 4, blister pack 199731 835141000168107 Stop-It 2 mg hard capsule, 4 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 835131000168103 loperamide hydrochloride 2 mg capsule, 4 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +165951000036104 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 204808 164151000036101 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack 162581000036107 Peg-Intron Clearclick Injector (peginterferon alfa-2b 100 microgram) powder for injection, 100 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28079011000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23390011000036109 peginterferon alfa-2b 100 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165951000036104 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 204808 164151000036101 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 28079011000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165951000036104 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 204808 164151000036101 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 100 microgram packs, 112 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28079011000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +977031000168101 Pregabalin (Apotex) 100 mg hard capsule, 56, blister pack 267555 977021000168104 Pregabalin (Apotex) 100 mg hard capsule, 56 976971000168102 Pregabalin (Apotex) 100 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +131701000036107 Famvir for Cold Sores 500 mg film-coated tablet, 3, blister pack 201264 128681000036103 Famvir for Cold Sores 500 mg film-coated tablet, 3 124571000036108 Famvir for Cold Sores 500 mg film-coated tablet 57911000168101 Famvir for Cold Sores 57911000168101 Famvir for Cold Sores 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +44136011000036108 Di-Gesic film-coated tablet, 2, blister pack 52509 41612011000036109 Di-Gesic film-coated tablet, 2 40102011000036102 Di-Gesic film-coated tablet 39754011000036106 Di-Gesic 39754011000036106 Di-Gesic 46433011000036107 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet, 2 45260011000036108 dextropropoxyphene hydrochloride 32.5 mg + paracetamol 325 mg tablet 37703011000036109 dextropropoxyphene + paracetamol +87675011000036100 Clopidogrel (Winthrop) 75 mg film-coated tablet, 56, blister pack 148947 87435011000036100 Clopidogrel (Winthrop) 75 mg film-coated tablet, 56 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87804011000036101 clopidogrel 75 mg tablet, 56 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1092071000168101 Anti-Inflammatory (Herron) 1% gel, 50 g, tube 285415 1092061000168107 Anti-Inflammatory (Herron) 1% gel, 50 g 1092031000168104 Anti-Inflammatory (Herron) 1% gel 1092021000168102 Anti-Inflammatory (Herron) 1092021000168102 Anti-Inflammatory (Herron) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +61544011000036105 Sinus-Pain Relief (Chemists' Own) uncoated tablet, 24, blister pack 93822 57469011000036106 Sinus-Pain Relief (Chemists' Own) uncoated tablet, 24 54315011000036109 Sinus-Pain Relief (Chemists' Own) uncoated tablet 53217011000036107 Sinus-Pain Relief (Chemists' Own) 53217011000036107 Sinus-Pain Relief (Chemists' Own) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +21005011000036105 Lisinopril (GenRx) 20 mg tablet, 30, blister pack 142495 14151011000036102 Lisinopril (GenRx) 20 mg tablet, 30 7430011000036104 Lisinopril (GenRx) 20 mg tablet 3751011000036109 Lisinopril (GenRx) 3751011000036109 Lisinopril (GenRx) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +21005011000036105 Lisinopril (GenRx) 20 mg tablet, 30, blister pack 96322 14151011000036102 Lisinopril (GenRx) 20 mg tablet, 30 7430011000036104 Lisinopril (GenRx) 20 mg tablet 3751011000036109 Lisinopril (GenRx) 3751011000036109 Lisinopril (GenRx) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +826501000168109 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 93942 826491000168102 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 637851000168104 Menjugate Syringe (inert substance) diluent, 0.5 mL syringe 38231000168103 Menjugate Syringe 38231000168103 Menjugate Syringe 826481000168100 meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +826501000168109 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 93942 826491000168102 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 826411000168106 Menjugate Syringe (meningococcal C conjugate vaccine) powder for injection, 10 microgram vial 38231000168103 Menjugate Syringe 38231000168103 Menjugate Syringe 826481000168100 meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 826401000168108 meningococcal C conjugate vaccine injection, vial 826391000168106 meningococcal C conjugate vaccine +931385011000036108 Superfade Face (John Plunkett) cream, 20 mL, tube 11629 930560011000036109 Superfade Face (John Plunkett) cream, 20 mL 929930011000036109 Superfade Face (John Plunkett) cream 54721000168101 Superfade Face (John Plunkett) 54721000168101 Superfade Face (John Plunkett) 932343011000036104 hydroquinone 2% + salicylic acid 1.5% + padimate-O 3% cream, 20 mL 931879011000036101 hydroquinone 2% + salicylic acid 1.5% + padimate-O 3% cream 931802011000036103 hydroquinone + salicylic acid + padimate-O +753771000168103 Remifentanil (Apo) 5 mg powder for injection, 5 vials 234700 753761000168109 Remifentanil (Apo) 5 mg powder for injection, 5 vials 753751000168107 Remifentanil (Apo) 5 mg powder for injection, 5 mg vial 753711000168106 Remifentanil (Apo) 753711000168106 Remifentanil (Apo) 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +822811000168105 Bexsero injection suspension, 0.5 mL syringe 190719 822801000168107 Bexsero injection suspension, 0.5 mL syringe 822781000168108 Bexsero injection suspension, 0.5 mL syringe 698391000168105 Bexsero 698391000168105 Bexsero 822791000168106 meningococcal B 4 component vaccine injection, 0.5 mL syringe 822771000168105 meningococcal B 4 component vaccine injection, 0.5 mL syringe 822761000168104 meningococcal B 4 component vaccine +895621000168101 Betavert 16 mg uncoated tablet, 30, blister pack 212080 895611000168108 Betavert 16 mg uncoated tablet, 30 895561000168105 Betavert 16 mg uncoated tablet 895551000168108 Betavert 895551000168108 Betavert 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +998421000168102 Desloratadine (Apo) 5 mg film-coated tablet, 100, bottle 202822 998371000168108 Desloratadine (Apo) 5 mg film-coated tablet, 100 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 998361000168102 desloratadine 5 mg tablet, 100 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +20108011000036101 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 71932 13333011000036109 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 6618011000036108 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 27700011000036102 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, 12 x 0.5 mL syringes 23035011000036108 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +20108011000036101 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 133813 13333011000036109 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 6618011000036108 Rebif 12 million units (44 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 27700011000036102 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, 12 x 0.5 mL syringes 23035011000036108 interferon beta-1a 12 million units (44 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +921850011000036106 Natural E 250 IU (Blackmores) 167.5 mg (250 units) soft capsule, 50, bottle 139373 921407011000036108 Natural E 250 IU (Blackmores) 167.5 mg (250 units) soft capsule, 50 920990011000036104 Natural E 250 IU (Blackmores) 167.5 mg (250 units) soft capsule 27451000168106 Natural E 250 IU (Blackmores) 27451000168106 Natural E 250 IU (Blackmores) 922547011000036107 d-alpha-tocopherol 167.5 mg (250 units) capsule, 50 922078011000036105 d-alpha-tocopherol 167.5 mg (250 units) capsule 77434011000036103 d-alpha-tocopherol +843681000168106 Utrogestan 200 mg shell pessary, 90, blister pack 232824 843671000168108 Utrogestan 200 mg shell pessary, 90 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843661000168102 progesterone 200 mg pessary, 90 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +889201000168105 Bosleer 62.5 mg film-coated tablet, 60, bottle 235885 889191000168107 Bosleer 62.5 mg film-coated tablet, 60 889181000168109 Bosleer 62.5 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +994131000168103 Candesartan (Apotex) 32 mg tablet, 30, blister pack 191758 994121000168101 Candesartan (Apotex) 32 mg tablet, 30 994061000168107 Candesartan (Apotex) 32 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +79012011000036100 Azithromycin (Sandoz) 500 mg film-coated tablet, 3, blister pack 158292 78871011000036104 Azithromycin (Sandoz) 500 mg film-coated tablet, 3 78676011000036100 Azithromycin (Sandoz) 500 mg film-coated tablet 78603011000036100 Azithromycin (Sandoz) 78603011000036100 Azithromycin (Sandoz) 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +21059011000036103 Simvahexal 10 mg film-coated tablet, 30, bottle 97045 14204011000036109 Simvahexal 10 mg film-coated tablet, 30 7485011000036103 Simvahexal 10 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +20063011000036103 Seretide Accuhaler 250/50 powder for inhalation, 60 actuations, blister pack 70091 13293011000036107 Seretide Accuhaler 250/50 powder for inhalation, 60 actuations 6577011000036108 Seretide Accuhaler 250/50 powder for inhalation, actuation 53631000168108 Seretide Accuhaler 250/50 53631000168108 Seretide Accuhaler 250/50 27672011000036103 fluticasone propionate 250 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 23009011000036100 fluticasone propionate 250 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +69460011000036105 Glucose (Baxter) 10% (100 g/L) intravenous infusion injection, 1 L bag 48594 67260011000036100 Glucose (Baxter) 10% (100 g/L) intravenous infusion injection, 1 L bag 65580011000036108 Glucose (Baxter) 10% (100 g/L) intravenous infusion injection, 1 L bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71810011000036106 glucose 10% (100 g/L) injection, 1 L bag 70196011000036107 glucose 10% (100 g/L) injection, bag 21354011000036103 glucose +933214101000036106 Visanne 2 mg tablet, 28, blister pack 160465 933203321000036104 Visanne 2 mg tablet, 28 933195781000036103 Visanne 2 mg tablet 933193281000036108 Visanne 933193281000036108 Visanne 933203331000036102 dienogest 2 mg tablet, 28 933195801000036102 dienogest 2 mg tablet 933216351000036102 dienogest +1041151000168109 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device 122849 1041141000168107 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device 1041121000168101 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device 41101000168107 Aranesp Sureclick 41101000168107 Aranesp Sureclick 1041131000168103 darbepoetin alfa 60 microgram/0.3 mL injection, 0.3 mL injection device 1041111000168108 darbepoetin alfa 60 microgram/0.3 mL injection, injection device 21234011000036105 darbepoetin alfa +60576011000036107 Sinus Relief PE (Nyal) 10 mg tablet, 24, blister pack 155129 56534011000036106 Sinus Relief PE (Nyal) 10 mg tablet, 24 53958011000036104 Sinus Relief PE (Nyal) 10 mg tablet 53577011000036105 Sinus Relief PE (Nyal) 53577011000036105 Sinus Relief PE (Nyal) 63400011000036108 phenylephrine hydrochloride 10 mg tablet, 24 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +56791000036103 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 500, bottle 164953 53261000036105 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 500 39817011000036105 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 53271000036102 metformin hydrochloride 850 mg tablet, 500 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +835001000168106 Fisamox 1 g powder for injection, 10 vials 90880 834991000168100 Fisamox 1 g powder for injection, 10 vials 40351011000036105 Fisamox 1 g powder for injection, vial 39663011000036108 Fisamox 39663011000036108 Fisamox 46896011000036102 amoxicillin 1 g injection, 10 vials 37849011000036104 amoxicillin 1 g injection, vial 21415011000036100 amoxicillin +69717011000036100 Aerius 5 mg film-coated tablet, 10, blister pack 91116 67516011000036109 Aerius 5 mg film-coated tablet, 10 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72018011000036108 desloratadine 5 mg tablet, 10 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +959771000168106 Ciram 10 mg film-coated tablet, 500, bottle 158857 959761000168100 Ciram 10 mg film-coated tablet, 500 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203091000036103 citalopram 10 mg tablet, 500 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +933231201000036106 Temizole 250 mg hard capsule, 5, bottle 172975 933225271000036102 Temizole 250 mg hard capsule, 5 933220491000036107 Temizole 250 mg hard capsule 933219021000036101 Temizole 933219021000036101 Temizole 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +837881000168104 Airzate Accuhaler 500/50 powder for inhalation, 28 actuations, blister pack 208190 837871000168102 Airzate Accuhaler 500/50 powder for inhalation, 28 actuations 837851000168106 Airzate Accuhaler 500/50 powder for inhalation, actuation 837841000168109 Airzate Accuhaler 500/50 837841000168109 Airzate Accuhaler 500/50 837861000168108 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 28 actuations 23010011000036109 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +18084011000036102 Rapamune 2 mg sugar coated tablet, 100, blister pack 125630 11812011000036101 Rapamune 2 mg sugar coated tablet, 100 5356011000036107 Rapamune 2 mg sugar coated tablet 3482011000036103 Rapamune 3482011000036103 Rapamune 26780011000036100 sirolimus 2 mg tablet, 100 22167011000036106 sirolimus 2 mg tablet 21862011000036104 sirolimus +1062571000168107 Rapideine Extra uncoated tablet, 10, blister pack 220728 1062561000168101 Rapideine Extra uncoated tablet, 10 1062551000168103 Rapideine Extra uncoated tablet 1062541000168100 Rapideine Extra 1062541000168100 Rapideine Extra 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +852281000168104 Olmesartan/Amlodipine 40/10 (Myl) film-coated tablet, 30, blister pack 273620 852271000168102 Olmesartan/Amlodipine 40/10 (Myl) film-coated tablet, 30 852241000168109 Olmesartan/Amlodipine 40/10 (Myl) film-coated tablet 852231000168100 Olmesartan/Amlodipine 40/10 (Myl) 852231000168100 Olmesartan/Amlodipine 40/10 (Myl) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +891371000168108 Candesartan plus HCTZ 32/25 (Pfizer) uncoated tablet, 7, blister pack 199107 891361000168102 Candesartan plus HCTZ 32/25 (Pfizer) uncoated tablet, 7 891351000168104 Candesartan plus HCTZ 32/25 (Pfizer) uncoated tablet 891341000168101 Candesartan plus HCTZ 32/25 (Pfizer) 891341000168101 Candesartan plus HCTZ 32/25 (Pfizer) 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +792711000168105 Abisart HCT 150/12.5 film-coated tablet, 14, bottle 215943 792701000168107 Abisart HCT 150/12.5 film-coated tablet, 14 98791000036109 Abisart HCT 150/12.5 film-coated tablet 27881000168102 Abisart HCT 150/12.5 27881000168102 Abisart HCT 150/12.5 792691000168107 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 14 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +972751000168107 Pregabalin (Apotex) 75 mg hard capsule, 60, blister pack 267554 972741000168105 Pregabalin (Apotex) 75 mg hard capsule, 60 972671000168107 Pregabalin (Apotex) 75 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +132021000036108 Nicorette Inhalator 15 mg breath activated inhalation, 20 cartridges 80874 128841000036106 Nicorette Inhalator 15 mg breath activated inhalation, 20 cartridges 125251000036100 Nicorette Inhalator 15 mg breath activated inhalation, cartridge 24091000168102 Nicorette Inhalator 24091000168102 Nicorette Inhalator 128851000036109 nicotine 15 mg breath activated inhalation, 20 cartridges 125261000036102 nicotine 15 mg breath activated inhalation, cartridge 21432011000036100 nicotine +77172011000036106 Glucosamine (Blackmores) 500 mg film-coated tablet, 90, bottle 124442 76601011000036106 Glucosamine (Blackmores) 500 mg film-coated tablet, 90 76055011000036108 Glucosamine (Blackmores) 500 mg film-coated tablet 75990011000036101 Glucosamine (Blackmores) 75990011000036101 Glucosamine (Blackmores) 78155011000036105 glucosamine 500 mg tablet, 90 77515011000036103 glucosamine 500 mg tablet 69813011000036107 glucosamine +964101000168107 Normatens 200 microgram film-coated tablet, 30, blister pack 114122 964091000168102 Normatens 200 microgram film-coated tablet, 30 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 26656011000036100 moxonidine 200 microgram tablet, 30 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +989311000168109 Paracetamol (Black and Gold) 500 mg uncoated tablet, 20, blister pack 165085 989301000168106 Paracetamol (Black and Gold) 500 mg uncoated tablet, 20 989291000168105 Paracetamol (Black and Gold) 500 mg uncoated tablet 989281000168107 Paracetamol (Black and Gold) 989281000168107 Paracetamol (Black and Gold) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +933214021000036100 Valdoxan 25 mg film-coated tablet, 56, blister pack 159712 933203631000036107 Valdoxan 25 mg film-coated tablet, 56 933195581000036106 Valdoxan 25 mg film-coated tablet 933193351000036105 Valdoxan 933193351000036105 Valdoxan 933203651000036104 agomelatine 25 mg tablet, 56 933195601000036101 agomelatine 25 mg tablet 933216401000036109 agomelatine +45961000036101 Ramipril (Apo) 2.5 mg capsule, 30, blister pack 179026 43241000036107 Ramipril (Apo) 2.5 mg capsule, 30 41411000036106 Ramipril (Apo) 2.5 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +1058271000168104 Atorvastatin (Ran) 10 mg film-coated tablet, 100, bottle 179853 1058261000168105 Atorvastatin (Ran) 10 mg film-coated tablet, 100 1056501000168107 Atorvastatin (Ran) 10 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890221000168105 atorvastatin 10 mg tablet, 100 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +20305011000036104 Onkotrone 20 mg/10 mL concentrated injection, 10 mL vial 75723 13514011000036103 Onkotrone 20 mg/10 mL concentrated injection, 10 mL vial 6796011000036103 Onkotrone 20 mg/10 mL concentrated injection, 10 mL vial 3966011000036104 Onkotrone 3966011000036104 Onkotrone 27985011000036103 mitozantrone 20 mg/10 mL injection, 10 mL vial 23309011000036101 mitozantrone 20 mg/10 mL injection, vial 21652011000036102 mitozantrone +82345011000036108 Epiramax 50 mg film-coated tablet, 60, blister pack 135592 82132011000036106 Epiramax 50 mg film-coated tablet, 60 82002011000036108 Epiramax 50 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +1102901000168101 Aspramide 5 mg film-coated tablet, 125, blister pack 196499 1102891000168100 Aspramide 5 mg film-coated tablet, 125 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102881000168103 metoclopramide hydrochloride 5 mg tablet, 125 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +933211921000036101 Donpesyn 5 mg film-coated tablet, 30, blister pack 142231 933201251000036100 Donpesyn 5 mg film-coated tablet, 30 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200721000036105 donepezil hydrochloride 5 mg tablet, 30 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1062611000168103 Rapideine Extra uncoated tablet, 20, blister pack 220728 1062601000168101 Rapideine Extra uncoated tablet, 20 1062551000168103 Rapideine Extra uncoated tablet 1062541000168100 Rapideine Extra 1062541000168100 Rapideine Extra 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +817921000168101 Ramipril (AN) 10 mg hard capsule, 30, bottle 203704 817911000168108 Ramipril (AN) 10 mg hard capsule, 30 817901000168105 Ramipril (AN) 10 mg hard capsule 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +1021501000168102 Voriconazole (Apo) 200 mg film-coated tablet, 10, blister pack 238282 1021491000168109 Voriconazole (Apo) 200 mg film-coated tablet, 10 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46802011000036103 voriconazole 200 mg tablet, 10 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +668131000168106 Fonatplus 70 mg/70 microgram uncoated tablet, 1, blister pack 206937 668121000168108 Fonatplus 70 mg/70 microgram uncoated tablet, 1 668101000168104 Fonatplus 70 mg/70 microgram uncoated tablet 668091000168109 Fonatplus 70 mg/70 microgram 668091000168109 Fonatplus 70 mg/70 microgram 668111000168101 alendronate 70 mg + colecalciferol 70 microgram tablet, 1 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +1059921000168101 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 15, blister pack 234479 1059911000168108 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 15 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910821000168104 rosuvastatin 10 mg tablet, 15 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +18058011000036101 Clarihexal 250 mg film-coated tablet, 14, blister pack 101265 11187011000036108 Clarihexal 250 mg film-coated tablet, 14 5962011000036107 Clarihexal 250 mg film-coated tablet 3421011000036100 Clarihexal 3421011000036100 Clarihexal 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1068501000168104 Paracodeine uncoated tablet, 40, blister pack 226289 1068491000168106 Paracodeine uncoated tablet, 40 1068461000168104 Paracodeine uncoated tablet 1068451000168101 Paracodeine 1068451000168101 Paracodeine 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +933246161000036107 Essential Amino Acid Mix powder for oral liquid, 200 g, can 933242611000036100 Essential Amino Acid Mix powder for oral liquid, 200 g 83604011000036103 Essential Amino Acid Mix powder for oral liquid 83580011000036101 Essential Amino Acid Mix 83580011000036101 Essential Amino Acid Mix 933242621000036107 essential amino acids formula powder for oral liquid, 200 g 84423011000036106 essential amino acids formula powder for oral liquid 84412011000036109 essential amino acids formula +770931000168108 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 170388 770921000168105 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 98961000036100 Femme-Tab ED 30/150 (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 700015541000036105 Femme-Tab ED 30/150 700015541000036105 Femme-Tab ED 30/150 682381000168108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +770931000168108 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 170388 770921000168105 Femme-Tab ED 30/150 (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 3 x 28 99071000036103 Femme-Tab ED 30/150 (inert substance) film-coated tablet 700015541000036105 Femme-Tab ED 30/150 700015541000036105 Femme-Tab ED 30/150 682381000168108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +737091000168106 Asartan HCT 32/12.5 uncoated tablet, 30, blister pack 218423 737081000168108 Asartan HCT 32/12.5 uncoated tablet, 30 737071000168105 Asartan HCT 32/12.5 uncoated tablet 737061000168104 Asartan HCT 32/12.5 737061000168104 Asartan HCT 32/12.5 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +18677011000036109 Atacand 32 mg uncoated tablet, 30, blister pack 117341 11566011000036102 Atacand 32 mg uncoated tablet, 30 5486011000036106 Atacand 32 mg uncoated tablet 3659011000036102 Atacand 3659011000036102 Atacand 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +839491000168109 Advantan 0.1% fatty ointment, 30 g, tube 49382 839481000168106 Advantan 0.1% fatty ointment, 30 g 4508011000036106 Advantan 0.1% fatty ointment 3513011000036101 Advantan 3513011000036101 Advantan 839471000168108 methylprednisolone aceponate 0.1% fatty ointment, 30 g 124361000036108 methylprednisolone aceponate 0.1% fatty ointment 21605011000036100 methylprednisolone +1023671000168105 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 2, blister pack 227168 1023661000168104 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 2 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71521011000036105 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +69325011000036100 Potassium Dihydrogen Phosphate (Phebra) 1.361 g (potassium 10 mmol)/10 mL concentrated injection, 10 x 10 mL vials 23183 67125011000036101 Potassium Dihydrogen Phosphate (Phebra) 1.361 g (potassium 10 mmol)/10 mL concentrated injection, 10 x 10 mL vials 65427011000036109 Potassium Dihydrogen Phosphate (Phebra) 1.361 g (potassium 10 mmol)/10 mL concentrated injection, 10 mL vial 65079011000036105 Potassium Dihydrogen Phosphate (Phebra) 65079011000036105 Potassium Dihydrogen Phosphate (Phebra) 71690011000036104 monobasic potassium phosphate 1.361 g (potassium 10 mmol)/10 mL injection, 10 x 10 mL vials 70129011000036109 monobasic potassium phosphate 1.361 g (potassium 10 mmol)/10 mL injection, vial 21894011000036105 phosphorus +839351000168105 Bactroban 2% ointment, 5 g, tube 11145 839341000168108 Bactroban 2% ointment, 5 g 4814011000036103 Bactroban 2% ointment 3296011000036102 Bactroban 3296011000036102 Bactroban 839331000168104 mupirocin 2% ointment, 5 g 22049011000036102 mupirocin 2% ointment 21590011000036101 mupirocin +1005281000168100 Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 186570 1005271000168103 Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 1005261000168109 Ropibam 1% 100 mg/10 mL injection solution, 10 mL ampoule 711881000168102 Ropibam 1% 711881000168102 Ropibam 1% 1005001000168103 ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules 1004981000168106 ropivacaine hydrochloride 100 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +59959011000036105 Nurofen Tension Headache 200 mg tablet, 36, blister pack 120354 55921011000036103 Nurofen Tension Headache 200 mg tablet, 36 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63920011000036101 ibuprofen 200 mg tablet, 36 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +930311000168107 Zofran 8 mg/4 mL injection solution, 5 x 4 mL ampoules 47264 930301000168109 Zofran 8 mg/4 mL injection solution, 5 x 4 mL ampoules 5196011000036106 Zofran 8 mg/4 mL injection solution, 4 mL ampoule 2471000168108 Zofran 2471000168108 Zofran 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +717151000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 15, blister pack 149417 717141000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 15 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716341000168108 omeprazole 20 mg enteric capsule, 15 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +954881000168104 Gabapentin (Apo) 800 mg film-coated tablet, 500, blister pack 131504 954851000168106 Gabapentin (Apo) 800 mg film-coated tablet, 500 954821000168103 Gabapentin (Apo) 800 mg film-coated tablet 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 35777011000036108 gabapentin 800 mg tablet, 500 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +18126011000036109 Acquin 10 mg film-coated tablet, 30, blister pack 118751 11599011000036108 Acquin 10 mg film-coated tablet, 30 5012011000036100 Acquin 10 mg film-coated tablet 3174011000036104 Acquin 3174011000036104 Acquin 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +18126011000036109 Acquin 10 mg film-coated tablet, 30, blister pack 192147 11599011000036108 Acquin 10 mg film-coated tablet, 30 5012011000036100 Acquin 10 mg film-coated tablet 3174011000036104 Acquin 3174011000036104 Acquin 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +933213611000036100 Citalopram (IPCA) 10 mg film-coated tablet, 84, bottle 158869 933203171000036103 Citalopram (IPCA) 10 mg film-coated tablet, 84 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +679691000168100 Movectro 10 mg uncoated tablet, 4, blister pack 166483 679681000168103 Movectro 10 mg uncoated tablet, 4 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679671000168101 cladribine 10 mg tablet, 4 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +933239511000036107 Amisulpride (Apo) 400 mg film-coated tablet, 10, blister pack 178898 933236821000036108 Amisulpride (Apo) 400 mg film-coated tablet, 10 933234751000036101 Amisulpride (Apo) 400 mg film-coated tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 933236831000036105 amisulpride 400 mg tablet, 10 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +929100011000036100 Pioglitazone (Chemmart) 45 mg uncoated tablet, 50, blister pack 166916 928461011000036109 Pioglitazone (Chemmart) 45 mg uncoated tablet, 50 927989011000036102 Pioglitazone (Chemmart) 45 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929260011000036104 pioglitazone 45 mg tablet, 50 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +933551000168108 Abacavir/Lamivudine 600/300 (Apotex) film-coated tablet, 30, bottle 239757 933531000168102 Abacavir/Lamivudine 600/300 (Apotex) film-coated tablet, 30 933521000168100 Abacavir/Lamivudine 600/300 (Apotex) film-coated tablet 933511000168107 Abacavir/Lamivudine 600/300 (Apotex) 933511000168107 Abacavir/Lamivudine 600/300 (Apotex) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +760831000168109 Cabergoline (GenRx) 500 microgram tablet, 8, bottle 218128 760821000168106 Cabergoline (GenRx) 500 microgram tablet, 8 760811000168104 Cabergoline (GenRx) 500 microgram tablet 760801000168102 Cabergoline (GenRx) 760801000168102 Cabergoline (GenRx) 27272011000036101 cabergoline 500 microgram tablet, 8 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +1000961000168109 Olanzapine (Apotex) 7.5 mg film-coated tablet, 28, blister pack 158973 1000951000168107 Olanzapine (Apotex) 7.5 mg film-coated tablet, 28 1000941000168105 Olanzapine (Apotex) 7.5 mg film-coated tablet 1000751000168109 Olanzapine (Apotex) 1000751000168109 Olanzapine (Apotex) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +1107781000168109 Midazolam (Intas) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 207229 1107771000168106 Midazolam (Intas) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1107731000168108 Midazolam (Intas) 15 mg/3 mL injection solution, 3 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +44667011000036104 Liprace 10 mg uncoated tablet, 30, bottle 91379 13968011000036104 Liprace 10 mg uncoated tablet, 30 7254011000036109 Liprace 10 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +933215061000036108 Ostran-ODT 4 mg orally disintegrating tablet, 4, blister pack 163647 933204621000036107 Ostran-ODT 4 mg orally disintegrating tablet, 4 933195611000036104 Ostran-ODT 4 mg orally disintegrating tablet 24041000168105 Ostran-ODT 24041000168105 Ostran-ODT 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +33503011000036100 Alzene 10 mg film-coated tablet, 10, blister pack 116582 33248011000036107 Alzene 10 mg film-coated tablet, 10 33003011000036102 Alzene 10 mg film-coated tablet 32964011000036102 Alzene 32964011000036102 Alzene 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +18211011000036109 Pravastatin Sodium (Pharmacor) 10 mg uncoated tablet, 30, blister pack 130601 11895011000036105 Pravastatin Sodium (Pharmacor) 10 mg uncoated tablet, 30 4863011000036101 Pravastatin Sodium (Pharmacor) 10 mg uncoated tablet 3446011000036107 Pravastatin Sodium (Pharmacor) 3446011000036107 Pravastatin Sodium (Pharmacor) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +749291000168106 Tacrolimus (AN) 500 microgram hard capsule, 50, blister pack 224277 749281000168108 Tacrolimus (AN) 500 microgram hard capsule, 50 749231000168107 Tacrolimus (AN) 500 microgram hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 749271000168105 tacrolimus 500 microgram capsule, 50 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +774761000168109 Nexazole 20 mg enteric tablet, 56, blister pack 205846 774751000168107 Nexazole 20 mg enteric tablet, 56 774571000168108 Nexazole 20 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 774741000168105 esomeprazole 20 mg enteric tablet, 56 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +69373011000036102 Microshield-2 2% solution, 5 L, bottle 30943 67173011000036103 Microshield-2 2% solution, 5 L 65559011000036105 Microshield-2 2% solution 23741000168105 Microshield-2 23741000168105 Microshield-2 71735011000036108 chlorhexidine gluconate 2% solution, 5 L 70177011000036101 chlorhexidine gluconate 2% solution 21404011000036101 chlorhexidine +74291000036103 Mirtazapine (Pfizer) 45 mg film-coated tablet, 30, blister pack 183400 71871000036101 Mirtazapine (Pfizer) 45 mg film-coated tablet, 30 69871000036109 Mirtazapine (Pfizer) 45 mg film-coated tablet 69301000036108 Mirtazapine (Pfizer) 69301000036108 Mirtazapine (Pfizer) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +1020011000168100 Vitamin A (Phebra) 50 000 units soft capsule, 100, bottle 13331 1020001000168103 Vitamin A (Phebra) 50 000 units soft capsule, 100 1019991000168107 Vitamin A (Phebra) 50 000 units soft capsule 1019981000168109 Vitamin A (Phebra) 1019981000168109 Vitamin A (Phebra) 38679011000036100 vitamin A 50 000 units capsule, 100 37920011000036101 vitamin A 50 000 units capsule 37787011000036104 vitamin A +920772011000036101 Ranitidine (Sandoz) 300 mg film-coated tablet, 30, blister pack 70356 920451011000036104 Ranitidine (Sandoz) 300 mg film-coated tablet, 30 920188011000036101 Ranitidine (Sandoz) 300 mg film-coated tablet 920108011000036102 Ranitidine (Sandoz) 920108011000036102 Ranitidine (Sandoz) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +74741011000036103 Sandoglobulin NF Liquid 6 g/50 mL injection solution, 50 mL bottle 114746 74214011000036100 Sandoglobulin NF Liquid 6 g/50 mL injection solution, 50 mL bottle 73843011000036103 Sandoglobulin NF Liquid 6 g/50 mL injection solution, 50 mL bottle 48881000168100 Sandoglobulin NF Liquid 48881000168100 Sandoglobulin NF Liquid 75359011000036109 normal immunoglobulin 6 g/50 mL injection, 50 mL bottle 75018011000036105 normal immunoglobulin 6 g/50 mL injection, bottle 74965011000036103 normal immunoglobulin +970681000168109 Pregabalin (Apo) 300 mg hard capsule, 60, blister pack 193279 970671000168106 Pregabalin (Apo) 300 mg hard capsule, 60 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +60476011000036104 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 12 sachets 150168 56434011000036102 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 12 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63354011000036100 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 12 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +68889011000036105 Urecare 10% cream, 10 g, tube 10821 66561011000036101 Urecare 10% cream, 10 g 65546011000036103 Urecare 10% cream 65040011000036103 Urecare 65040011000036103 Urecare 71287011000036101 urea 10% cream, 10 g 22378011000036108 urea 10% cream 21561011000036106 urea +97361000036102 Vaxigrip Junior 2013 injection suspension, 1 x 0.25 mL syringe 97971 96961000036104 Vaxigrip Junior 2013 injection suspension, 1 x 0.25 mL syringe 96321000036109 Vaxigrip Junior 2013 injection suspension, 0.25 mL syringe 46001000168100 Vaxigrip Junior 2013 46001000168100 Vaxigrip Junior 2013 96841000036105 influenza trivalent child vaccine 2013 injection, 1 x 0.25 mL syringe 96331000036106 influenza trivalent child vaccine 2013 injection, 0.25 mL syringe 97351000036100 influenza trivalent vaccine 2013 +816561000168104 Atomoxetine (Amneal) 40 mg hard capsule, 7, blister pack 238338 816551000168101 Atomoxetine (Amneal) 40 mg hard capsule, 7 816531000168107 Atomoxetine (Amneal) 40 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +44834011000036109 Enablex 7.5 mg modified release tablet, 7, blister pack 99418 42266011000036108 Enablex 7.5 mg modified release tablet, 7 40410011000036102 Enablex 7.5 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47019011000036105 darifenacin 7.5 mg modified release tablet, 7 45376011000036105 darifenacin 7.5 mg modified release tablet 44860011000036105 darifenacin +61526011000036104 Dolased Analgesic and Calmative uncoated tablet, 4, blister pack 93507 57451011000036100 Dolased Analgesic and Calmative uncoated tablet, 4 54306011000036100 Dolased Analgesic and Calmative uncoated tablet 53285011000036100 Dolased Analgesic and Calmative 53285011000036100 Dolased Analgesic and Calmative 63867011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 4 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +44183011000036105 Anzemet 25 mg film-coated tablet, 5, blister pack 55065 41659011000036105 Anzemet 25 mg film-coated tablet, 5 40129011000036104 Anzemet 25 mg film-coated tablet 4210011000036102 Anzemet 4210011000036102 Anzemet 46477011000036100 dolasetron mesilate monohydrate 25 mg tablet, 5 45177011000036101 dolasetron mesilate monohydrate 25 mg tablet 21471011000036108 dolasetron +18823011000036109 Alphamox 250 mg hard capsule, 20, bottle 17656 12144011000036106 Alphamox 250 mg hard capsule, 20 5389011000036106 Alphamox 250 mg hard capsule 4042011000036101 Alphamox 4042011000036101 Alphamox 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +1008131000168102 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 120 actuations, dry powder inhaler 73725 1008121000168100 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 120 actuations 1008011000168108 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, actuation 1007991000168101 Asmanex Twisthaler 1007991000168101 Asmanex Twisthaler 1008111000168107 mometasone furoate 200 microgram/actuation powder for inhalation, 120 actuations 1008001000168105 mometasone furoate 200 microgram/actuation powder for inhalation, actuation 21409011000036100 mometasone +725831000168108 PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches 725821000168105 PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches 725811000168103 PKU Cooler 20 Purple oral liquid solution, 174 mL pouch 31611000168103 PKU Cooler 20 31611000168103 PKU Cooler 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +44340011000036102 Novonorm 1 mg uncoated tablet, 90, blister pack 67269 41807011000036104 Novonorm 1 mg uncoated tablet, 90 40207011000036103 Novonorm 1 mg uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46613011000036104 repaglinide 1 mg tablet, 90 45239011000036108 repaglinide 1 mg tablet 44883011000036104 repaglinide +86091011000036103 Ciprofloxacin (DRLA) 250 mg film-coated tablet, 14, blister pack 127783 85623011000036104 Ciprofloxacin (DRLA) 250 mg film-coated tablet, 14 85300011000036107 Ciprofloxacin (DRLA) 250 mg film-coated tablet 85271011000036103 Ciprofloxacin (DRLA) 85271011000036103 Ciprofloxacin (DRLA) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +657031000168104 Irbesartan (AN) 75 mg film-coated tablet, 30, blister pack 192795 657021000168102 Irbesartan (AN) 75 mg film-coated tablet, 30 657011000168109 Irbesartan (AN) 75 mg film-coated tablet 656971000168100 Irbesartan (AN) 656971000168100 Irbesartan (AN) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +679771000168105 Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules 13302 679751000168101 Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules 5215011000036102 Haldol Decanoate (haloperidol (as decanoate) 50 mg/mL) injection solution, ampoule 3442011000036108 Haldol Decanoate 3442011000036108 Haldol Decanoate 679731000168107 haloperidol (as decanoate) 50 mg/mL injection, 5 x 1 mL ampoules 22199011000036102 haloperidol (as decanoate) 50 mg/mL injection, ampoule 21866011000036100 haloperidol decanoate +920581000168106 Cilopam 10 mg film-coated tablet, 84, blister pack 158862 920571000168108 Cilopam 10 mg film-coated tablet, 84 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +59761000036103 Clarithromycin (PS) 250 mg film-coated tablet, 100, blister pack 184263 58851000036102 Clarithromycin (PS) 250 mg film-coated tablet, 100 58381000036100 Clarithromycin (PS) 250 mg film-coated tablet 58111000036106 Clarithromycin (PS) 58111000036106 Clarithromycin (PS) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +74151000036100 Risedronate Sodium (Terry White Chemists) 150 mg film-coated tablet, 1, blister pack 181971 71801000036105 Risedronate Sodium (Terry White Chemists) 150 mg film-coated tablet, 1 70341000036109 Risedronate Sodium (Terry White Chemists) 150 mg film-coated tablet 927817011000036102 Risedronate Sodium (Terry White Chemists) 927817011000036102 Risedronate Sodium (Terry White Chemists) 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +50555011000036102 Cleocin 150 mg hard capsule, 24, blister pack 134663 32389011000036105 Cleocin 150 mg hard capsule, 24 32251011000036106 Cleocin 150 mg hard capsule 4303011000036104 Cleocin 4303011000036104 Cleocin 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +933214981000036103 Reditron-ODT 4 mg orally disintegrating tablet, 6, blister pack 163645 933204571000036105 Reditron-ODT 4 mg orally disintegrating tablet, 6 933195571000036109 Reditron-ODT 4 mg orally disintegrating tablet 22261000168105 Reditron-ODT 22261000168105 Reditron-ODT 719971000168109 ondansetron 4 mg orally disintegrating tablet, 6 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +1053121000168102 Tramadol SR (AS) 200 mg modified release tablet, 20, blister pack 190049 1053111000168109 Tramadol SR (AS) 200 mg modified release tablet, 20 1053101000168106 Tramadol SR (AS) 200 mg modified release tablet 1048261000168108 Tramadol SR (AS) 1048261000168108 Tramadol SR (AS) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +32535011000036101 Benpen 600 mg powder for injection, 1 vial 10329 32329011000036103 Benpen 600 mg powder for injection, 1 vial 32209011000036101 Benpen 600 mg powder for injection, 600 mg vial 3539011000036105 Benpen 3539011000036105 Benpen 32754011000036102 benzylpenicillin 600 mg injection, 1 vial 32687011000036106 benzylpenicillin 600 mg injection, vial 21332011000036106 benzylpenicillin +61058011000036103 Antihistamine Elixir (Gold Cross) 1 mg/mL oral liquid solution, 100 mL, bottle 68107 57001011000036102 Antihistamine Elixir (Gold Cross) 1 mg/mL oral liquid solution, 100 mL 54153011000036108 Antihistamine Elixir (Gold Cross) 1 mg/mL oral liquid solution 49711000168105 Antihistamine Elixir (Gold Cross) 49711000168105 Antihistamine Elixir (Gold Cross) 63682011000036106 promethazine hydrochloride 1 mg/mL oral liquid, 100 mL 62044011000036106 promethazine hydrochloride 1 mg/mL oral liquid 21237011000036104 promethazine +778051000168100 Oxycodone MR (Apo) 40 mg modified release tablet, 20, bottle 160097 777941000168100 Oxycodone MR (Apo) 40 mg modified release tablet, 20 777931000168109 Oxycodone MR (Apo) 40 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +1120801000168103 Quetiapine XR (KP) 50 mg modified release tablet, 60, bottle 278859 1120791000168104 Quetiapine XR (KP) 50 mg modified release tablet, 60 1120781000168102 Quetiapine XR (KP) 50 mg modified release tablet 1120771000168100 Quetiapine XR (KP) 1120771000168100 Quetiapine XR (KP) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +18015011000036100 Coversyl 10 mg film-coated tablet, 30, tube 101569 11219011000036100 Coversyl 10 mg film-coated tablet, 30 5959011000036107 Coversyl 10 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +766291000168109 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL syringes 67149 766281000168106 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL syringes 766201000168103 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766271000168108 nadroparin calcium 11 400 anti-Xa units/0.6 mL injection, 10 x 0.6 mL syringes 766191000168101 nadroparin calcium 11 400 anti-Xa units/0.6 mL injection, syringe 765071000168107 nadroparin +1053281000168105 Actiq 200 microgram lozenge on handle, 6, blister pack 91598 1053271000168107 Actiq 200 microgram lozenge on handle, 6 34075011000036107 Actiq 200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053261000168101 fentanyl 200 microgram lozenge on handle, 6 34910011000036103 fentanyl 200 microgram lozenge on handle 21258011000036102 fentanyl +929682011000036101 Vexazone 30 mg uncoated tablet, 98, blister pack 164344 929518011000036107 Vexazone 30 mg uncoated tablet, 98 929405011000036108 Vexazone 30 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929265011000036108 pioglitazone 30 mg tablet, 98 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +933213691000036105 Citalopram (IPCA) 20 mg film-coated tablet, 14, bottle 158872 933203221000036107 Citalopram (IPCA) 20 mg film-coated tablet, 14 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +19307011000036106 Advantan 0.1% cream, 15 g, tube 49380 12597011000036102 Advantan 0.1% cream, 15 g 5548011000036107 Advantan 0.1% cream 3513011000036101 Advantan 3513011000036101 Advantan 27226011000036103 methylprednisolone aceponate 0.1% cream, 15 g 22586011000036100 methylprednisolone aceponate 0.1% cream 21605011000036100 methylprednisolone +1116461000168106 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 14, blister pack 151628 1116451000168109 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 14 1116421000168101 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 63236011000036104 amlodipine 10 mg + valsartan 160 mg tablet, 14 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +91551000036100 Gemcitabine (AS) 2 g powder for injection, 1 vial 184744 89981000036101 Gemcitabine (AS) 2 g powder for injection, 1 vial 87991000036109 Gemcitabine (AS) 2 g powder for injection, 2 g vial 87721000036108 Gemcitabine (AS) 87721000036108 Gemcitabine (AS) 73514011000036108 gemcitabine 2 g injection, 1 vial 73378011000036105 gemcitabine 2 g injection, vial 21644011000036108 gemcitabine +118831000036107 Zipzoc (66000747) 80 cm (stockings) bandage, 4, carton 62437 118481000036108 Zipzoc (66000747) 80 cm (stockings) bandage, 4 118211000036104 Zipzoc (66000747) 80 cm (stockings) bandage 59801000168102 Zipzoc (66000747) 59801000168102 Zipzoc (66000747) 51317011000036107 bandage zinc paste 80 cm (stockings) bandage, 4 50846011000036106 bandage zinc paste 80 cm (stockings) bandage 50700011000036104 bandage zinc paste +926804011000036105 Fluvoxamine Maleate (GA) 50 mg film-coated tablet, 60, blister pack 168717 926200011000036105 Fluvoxamine Maleate (GA) 50 mg film-coated tablet, 60 925671011000036106 Fluvoxamine Maleate (GA) 50 mg film-coated tablet 925579011000036102 Fluvoxamine Maleate (GA) 925579011000036102 Fluvoxamine Maleate (GA) 927342011000036109 fluvoxamine maleate 50 mg tablet, 60 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +91511000036104 Forxiga 10 mg film-coated tablet, 28, blister pack 180147 89801000036103 Forxiga 10 mg film-coated tablet, 28 88021000036109 Forxiga 10 mg film-coated tablet 87591000036104 Forxiga 87591000036104 Forxiga 89811000036101 dapagliflozin 10 mg tablet, 28 88031000036106 dapagliflozin 10 mg tablet 91851000036102 dapagliflozin +933230811000036103 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 56, blister pack 172126 933224931000036109 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 56 933220411000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet 933219291000036105 Prochlorperazine Maleate (GH) 933219291000036105 Prochlorperazine Maleate (GH) 924174011000036101 prochlorperazine maleate 5 mg tablet, 56 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +77358011000036102 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 48, wrapping 60032 76774011000036109 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 48 76173011000036100 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78279011000036107 calcium carbonate 500 mg chewable tablet, 48 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +86062011000036106 Cold and Flu PE (Chemmart) uncoated tablet, 24, blister pack 157754 85722011000036100 Cold and Flu PE (Chemmart) uncoated tablet, 24 85360011000036106 Cold and Flu PE (Chemmart) uncoated tablet 85255011000036104 Cold and Flu PE (Chemmart) 85255011000036104 Cold and Flu PE (Chemmart) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +60322011000036109 Cetrelief (Generic Health) 10 mg film-coated tablet, 50, blister pack 138826 56281011000036105 Cetrelief (Generic Health) 10 mg film-coated tablet, 50 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +83187011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 500 mg/25 mL concentrated injection, 25 mL vial 154238 83133011000036105 Irinotecan Hydrochloride Trihydrate (Ebewe) 500 mg/25 mL concentrated injection, 25 mL vial 83076011000036108 Irinotecan Hydrochloride Trihydrate (Ebewe) 500 mg/25 mL concentrated injection, 25 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +59921000036105 Amoxycillin (PS) 500 mg hard capsule, 20, blister pack 188960 59041000036101 Amoxycillin (PS) 500 mg hard capsule, 20 58221000036109 Amoxycillin (PS) 500 mg hard capsule 58141000036107 Amoxycillin (PS) 58141000036107 Amoxycillin (PS) 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +18378011000036100 Carvedilol (Terry White Chemists) 6.25 mg film-coated tablet, 60, blister pack 133042 11959011000036107 Carvedilol (Terry White Chemists) 6.25 mg film-coated tablet, 60 4825011000036105 Carvedilol (Terry White Chemists) 6.25 mg film-coated tablet 3269011000036109 Carvedilol (Terry White Chemists) 3269011000036109 Carvedilol (Terry White Chemists) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +816641000168102 Atomoxetine (Amneal) 60 mg hard capsule, 7, blister pack 238339 816631000168106 Atomoxetine (Amneal) 60 mg hard capsule, 7 816611000168101 Atomoxetine (Amneal) 60 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +933133011000036101 Elmendos 50 mg tablet, 60, blister pack 98074 932936011000036104 Elmendos 50 mg tablet, 60 932779011000036104 Elmendos 50 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46989011000036103 lamotrigine 50 mg tablet, 60 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +60777011000036106 Vectavir 1% cream, 2 g, tube 54742 56735011000036109 Vectavir 1% cream, 2 g 54056011000036105 Vectavir 1% cream 53127011000036101 Vectavir 53127011000036101 Vectavir 63540011000036106 penciclovir 1% cream, 2 g 62007011000036108 penciclovir 1% cream 61783011000036103 penciclovir +671001000168104 Citalopram (Actavis) 10 mg film-coated tablet, 84, blister pack 158879 670991000168100 Citalopram (Actavis) 10 mg film-coated tablet, 84 670901000168106 Citalopram (Actavis) 10 mg film-coated tablet 670891000168107 Citalopram (Actavis) 670891000168107 Citalopram (Actavis) 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +913031000168102 Ultravist-150 312 mg (iodine 150 mg)/mL injection solution, 200 mL bottle 48503 913021000168100 Ultravist-150 312 mg (iodine 150 mg)/mL injection solution, 200 mL bottle 913001000168109 Ultravist-150 312 mg (iodine 150 mg)/mL injection solution, 200 mL bottle 912981000168105 Ultravist-150 912981000168105 Ultravist-150 913011000168107 iopromide 312 mg (iodine 150 mg)/mL injection, 200 mL bottle 912991000168108 iopromide 312 mg (iodine 150 mg)/mL injection, 200 mL bottle 77425011000036101 iopromide +933230971000036100 Famciclovir (Apo) 500 mg film-coated tablet, 28, bottle 172445 933225031000036109 Famciclovir (Apo) 500 mg film-coated tablet, 28 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933225041000036104 famciclovir 500 mg tablet, 28 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +657071000168101 Pravastatin Sodium (AN) 20 mg uncoated tablet, 30, bottle 191716 656991000168104 Pravastatin Sodium (AN) 20 mg uncoated tablet, 30 656981000168102 Pravastatin Sodium (AN) 20 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1095051000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 70, blister pack 287306 1095041000168104 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 70 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 1076321000168109 fexofenadine hydrochloride 180 mg tablet, 70 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +799521000168104 Abyraz 15 mg uncoated tablet, 14, blister pack 159506 799511000168106 Abyraz 15 mg uncoated tablet, 14 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799501000168108 aripiprazole 15 mg tablet, 14 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1112211000168108 Srivasso 18 microgram powder for inhalation, 300 capsules, blister pack 269417 1112201000168105 Srivasso 18 microgram powder for inhalation, 300 capsules 1112111000168103 Srivasso 18 microgram powder for inhalation, 1 capsule 1112101000168101 Srivasso 1112101000168101 Srivasso 980861000168107 tiotropium 18 microgram powder for inhalation, 300 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +37409011000036102 Xylocaine 2% with Adrenaline 1 in 80 000 Dental injection solution, 100 x 2.2 mL cartridges 12024 36695011000036103 Xylocaine 2% with Adrenaline 1 in 80 000 Dental injection solution, 100 x 2.2 mL cartridges 36086011000036103 Xylocaine 2% with Adrenaline 1 in 80 000 Dental injection solution, 2.2 mL cartridge 55511000168103 Xylocaine 2% with Adrenaline 1 in 80 000 Dental 55511000168103 Xylocaine 2% with Adrenaline 1 in 80 000 Dental 38608011000036104 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, 100 x 2.2 mL cartridges 37875011000036100 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, cartridge 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +80965011000036101 Zinc and Castor Oil (David Craig) cream, 500 g, jar 14246 80509011000036107 Zinc and Castor Oil (David Craig) cream, 500 g 80171011000036105 Zinc and Castor Oil (David Craig) cream 80140011000036102 Zinc and Castor Oil (David Craig) 80140011000036102 Zinc and Castor Oil (David Craig) 81603011000036105 zinc oxide 7.5% + castor oil 50% cream, 500 g 81269011000036106 zinc oxide 7.5% + castor oil 50% cream 81222011000036107 zinc oxide + castor oil +933239491000036103 Intelence 200 mg tablet, 60, bottle 176557 933236791000036102 Intelence 200 mg tablet, 60 933234711000036100 Intelence 200 mg tablet 75936011000036108 Intelence 75936011000036108 Intelence 933236801000036103 etravirine 200 mg tablet, 60 933234721000036107 etravirine 200 mg tablet 77467011000036101 etravirine +1087601000168102 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 30, blister pack 283196 1087591000168109 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 30 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 27938011000036102 ibuprofen 400 mg tablet, 30 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1117661000168106 Donepezil (GH) 10 mg film-coated tablet, 120, blister pack 193667 1117651000168109 Donepezil (GH) 10 mg film-coated tablet, 120 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200861000036106 donepezil hydrochloride 10 mg tablet, 120 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +887211000168103 Praluent 150 mg/mL injection solution, 6 x 1 mL syringes 238305 887201000168101 Praluent 150 mg/mL injection solution, 6 x 1 mL syringes 887121000168101 Praluent 150 mg/mL injection solution, syringe 886871000168105 Praluent 886871000168105 Praluent 887191000168104 alirocumab 150 mg/mL injection, 6 x 1 mL syringes 887111000168108 alirocumab 150 mg/mL injection, syringe 886881000168108 alirocumab +791981000168109 Trexject 25 mg/0.5 mL injection solution, 12 x 0.5 mL syringes 233721 791971000168106 Trexject 25 mg/0.5 mL injection solution, 12 x 0.5 mL syringes 791811000168109 Trexject 25 mg/0.5 mL injection solution, 0.5 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791961000168100 methotrexate 25 mg/0.5 mL injection, 12 x 0.5 mL syringes 791801000168106 methotrexate 25 mg/0.5 mL injection, syringe 21342011000036105 methotrexate +20815011000036100 Famotidine (GenRx) 40 mg film-coated tablet, 30, blister pack 91514 13978011000036107 Famotidine (GenRx) 40 mg film-coated tablet, 30 7264011000036101 Famotidine (GenRx) 40 mg film-coated tablet 3928011000036107 Famotidine (GenRx) 3928011000036107 Famotidine (GenRx) 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +1005161000168103 Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 186566 1005151000168100 Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 1005141000168102 Ropibam 0.2% 40 mg/20 mL injection solution, 20 mL ampoule 711811000168108 Ropibam 0.2% 711811000168108 Ropibam 0.2% 1004601000168107 ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules 1004581000168103 ropivacaine hydrochloride 40 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +1054491000168105 Jurnista 4 mg modified release tablet, 100, blister pack 155995 1054481000168107 Jurnista 4 mg modified release tablet, 100 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054471000168109 hydromorphone hydrochloride 4 mg modified release tablet, 100 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +1112131000168108 Srivasso 18 microgram powder for inhalation, 10 capsules, blister pack 269417 1112121000168105 Srivasso 18 microgram powder for inhalation, 10 capsules 1112111000168103 Srivasso 18 microgram powder for inhalation, 1 capsule 1112101000168101 Srivasso 1112101000168101 Srivasso 980721000168108 tiotropium 18 microgram powder for inhalation, 10 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +983761000168106 Frusemide (CA) 40 mg tablet, 1000, bottle 186522 983751000168109 Frusemide (CA) 40 mg tablet, 1000 983671000168109 Frusemide (CA) 40 mg tablet 983661000168103 Frusemide (CA) 983661000168103 Frusemide (CA) 928751000168105 furosemide (frusemide) 40 mg tablet, 1000 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +1087641000168100 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 40, blister pack 283196 1087631000168109 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet, 40 1087401000168104 Ibuprofen Double Strength (Neo Health) 400 mg film-coated tablet 1087361000168108 Ibuprofen Double Strength (Neo Health) 1087361000168108 Ibuprofen Double Strength (Neo Health) 986081000168108 ibuprofen 400 mg tablet, 40 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +740681000168103 Fentora 400 microgram orally disintegrating tablet, 4, blister pack 218433 740671000168101 Fentora 400 microgram orally disintegrating tablet, 4 740651000168105 Fentora 400 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740661000168107 fentanyl 400 microgram orally disintegrating tablet, 4 740641000168108 fentanyl 400 microgram orally disintegrating tablet 21258011000036102 fentanyl +861671000168101 Paxyl 2.5% / 0.1% spray solution, 125 mL, pump actuated aerosol 29636 861661000168107 Paxyl 2.5% / 0.1% spray solution, 125 mL 861641000168108 Paxyl 2.5% / 0.1% spray solution 58161000168101 Paxyl 2.5% / 0.1% 58161000168101 Paxyl 2.5% / 0.1% 861651000168105 lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray, 125 mL 861631000168104 lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray 61762011000036108 lidocaine (lignocaine) + benzalkonium chloride +662371000168108 Metformin Hydrochloride (AN) 850 mg film-coated tablet, 60, blister pack 180436 662361000168102 Metformin Hydrochloride (AN) 850 mg film-coated tablet, 60 662351000168104 Metformin Hydrochloride (AN) 850 mg film-coated tablet 662341000168101 Metformin Hydrochloride (AN) 662341000168101 Metformin Hydrochloride (AN) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +59923011000036106 Paracetamol (Alphapharm) 500 mg uncoated tablet, 48, blister pack 118824 55885011000036104 Paracetamol (Alphapharm) 500 mg uncoated tablet, 48 53628011000036104 Paracetamol (Alphapharm) 500 mg uncoated tablet 53179011000036107 Paracetamol (Alphapharm) 53179011000036107 Paracetamol (Alphapharm) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +725711000168106 PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches 725701000168108 PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches 725691000168108 PKU Cooler 20 Gold oral liquid solution, 174 mL pouch 31611000168103 PKU Cooler 20 31611000168103 PKU Cooler 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +904531000168109 Bimatoprost (Apotex) 0.03% eye drops solution, 3 mL, bottle 204400 904521000168106 Bimatoprost (Apotex) 0.03% eye drops solution, 3 mL 904511000168104 Bimatoprost (Apotex) 0.03% eye drops solution 904501000168102 Bimatoprost (Apotex) 904501000168102 Bimatoprost (Apotex) 27937011000036103 bimatoprost 0.03% eye drops, 3 mL 23261011000036108 bimatoprost 0.03% eye drops 21297011000036105 bimatoprost +44229011000036104 Atracurium Besylate (DBL) 50 mg/5 mL injection, 5 x 5 mL ampoules 57993 41701011000036109 Atracurium Besylate (DBL) 50 mg/5 mL injection, 5 x 5 mL ampoules 40149011000036101 Atracurium Besylate (DBL) 50 mg/5 mL injection, 5 mL ampoule 39752011000036102 Atracurium Besylate (DBL) 39752011000036102 Atracurium Besylate (DBL) 46525011000036103 atracurium besilate 50 mg/5 mL injection, 5 x 5 mL ampoules 45201011000036102 atracurium besilate 50 mg/5 mL injection, ampoule 37800011000036104 atracurium +809241000168108 Perindopril Arginine/Amlodipine 10/10 (Apo) uncoated tablet, 30, blister pack 224312 808831000168109 Perindopril Arginine/Amlodipine 10/10 (Apo) uncoated tablet, 30 808821000168106 Perindopril Arginine/Amlodipine 10/10 (Apo) uncoated tablet 808811000168104 Perindopril Arginine/Amlodipine 10/10 (Apo) 808811000168104 Perindopril Arginine/Amlodipine 10/10 (Apo) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +19791011000036101 Zofran Zydis 8 mg wafer, 4, blister pack 63055 13049011000036107 Zofran Zydis 8 mg wafer, 4 6333011000036103 Zofran Zydis 8 mg wafer 21371000168103 Zofran Zydis 21371000168103 Zofran Zydis 27519011000036109 ondansetron 8 mg wafer, 4 22859011000036100 ondansetron 8 mg wafer 21545011000036100 ondansetron +928858011000036100 Irinotecan Hydrochloride Trihydrate (DP) 40 mg/2 mL concentrated injection, 2 mL vial 137447 928220011000036109 Irinotecan Hydrochloride Trihydrate (DP) 40 mg/2 mL concentrated injection, 2 mL vial 927879011000036100 Irinotecan Hydrochloride Trihydrate (DP) 40 mg/2 mL concentrated injection, 2 mL vial 927830011000036108 Irinotecan Hydrochloride Trihydrate (DP) 927830011000036108 Irinotecan Hydrochloride Trihydrate (DP) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +787641000168103 Arizole 30 mg uncoated tablet, 30, bottle 198200 787631000168107 Arizole 30 mg uncoated tablet, 30 787621000168109 Arizole 30 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +949361000168103 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, blister pack 123665 949351000168100 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90 949341000168102 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet 949331000168106 Metformin Hydrochloride 1000 (Sandoz) 949331000168106 Metformin Hydrochloride 1000 (Sandoz) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +886161000168109 Candesan 8 mg uncoated tablet, 30, blister pack 195509 886151000168107 Candesan 8 mg uncoated tablet, 30 886141000168105 Candesan 8 mg uncoated tablet 885241000168105 Candesan 885241000168105 Candesan 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +20769011000036102 Diltiazem Hydrochloride CD (Terry White Chemists) 180 mg modified release capsule, 30, bottle 90917 13938011000036109 Diltiazem Hydrochloride CD (Terry White Chemists) 180 mg modified release capsule, 30 7226011000036100 Diltiazem Hydrochloride CD (Terry White Chemists) 180 mg modified release capsule 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +933239351000036104 Prozine (Pharmacor) 5 mg uncoated tablet, 56, blister pack 172127 933236611000036100 Prozine (Pharmacor) 5 mg uncoated tablet, 56 933234621000036100 Prozine (Pharmacor) 5 mg uncoated tablet 933234271000036104 Prozine (Pharmacor) 933234271000036104 Prozine (Pharmacor) 924174011000036101 prochlorperazine maleate 5 mg tablet, 56 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +82323011000036109 Hydrogen Peroxide (David Craig) 3% solution, 100 mL, bottle 14218 82136011000036105 Hydrogen Peroxide (David Craig) 3% solution, 100 mL 82006011000036107 Hydrogen Peroxide (David Craig) 3% solution 76018011000036107 Hydrogen Peroxide (David Craig) 76018011000036107 Hydrogen Peroxide (David Craig) 71334011000036108 hydrogen peroxide 3% solution, 100 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +688581000168104 Vita-D 25 microgram (1000 units) film-coated tablet, 250, bottle 181618 688571000168102 Vita-D 25 microgram (1000 units) film-coated tablet, 250 688561000168108 Vita-D 25 microgram (1000 units) film-coated tablet 86578011000036104 Vita-D 86578011000036104 Vita-D 78149011000036109 colecalciferol 25 microgram (1000 units) tablet, 250 77514011000036102 colecalciferol 25 microgram (1000 units) tablet 77447011000036108 colecalciferol +1109161000168105 Nicotinell Tropical Fruit 2 mg chewing gum, 168, blister pack 279617 1109151000168108 Nicotinell Tropical Fruit 2 mg chewing gum, 168 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71511011000036103 nicotine 2 mg gum, 168 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +121651000036101 Isentress 25 mg chewable tablet, 60, bottle 193383 120621000036101 Isentress 25 mg chewable tablet, 60 119311000036101 Isentress 25 mg chewable tablet 35892011000036104 Isentress 35892011000036104 Isentress 120631000036104 raltegravir 25 mg chewable tablet, 60 119321000036108 raltegravir 25 mg chewable tablet 37767011000036101 raltegravir +61110011000036101 Zantac Relief 150 mg film-coated tablet, 4, blister pack 71786 57053011000036109 Zantac Relief 150 mg film-coated tablet, 4 54175011000036107 Zantac Relief 150 mg film-coated tablet 53535011000036102 Zantac Relief 53535011000036102 Zantac Relief 46340011000036106 ranitidine 150 mg tablet, 4 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +61474011000036103 Paracetamol (Herron) 500 mg film-coated tablet, 6, blister pack 91501 57399011000036101 Paracetamol (Herron) 500 mg film-coated tablet, 6 54295011000036103 Paracetamol (Herron) 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63845011000036101 paracetamol 500 mg tablet, 6 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +929699011000036105 MS Contin 30 mg modified release tablet, 28, blister pack 43086 929535011000036109 MS Contin 30 mg modified release tablet, 28 4735011000036105 MS Contin 30 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929756011000036100 morphine sulfate pentahydrate 30 mg modified release tablet, 28 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +1116381000168105 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 14, blister pack 158167 1116371000168107 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 14 1116341000168100 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 922589011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 14 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +812451000168101 Afonaise 50 microgram/actuation nasal spray, 140 actuations, pump pack 201568 812441000168103 Afonaise 50 microgram/actuation nasal spray, 140 actuations 812411000168102 Afonaise 50 microgram/actuation nasal spray, actuation 812401000168100 Afonaise 812401000168100 Afonaise 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +43643011000036104 Sutent 50 mg capsule, 10, bottle 123147 41289011000036100 Sutent 50 mg capsule, 10 39864011000036100 Sutent 50 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46224011000036108 sunitinib 50 mg capsule, 10 45036011000036108 sunitinib 50 mg capsule 44859011000036109 sunitinib +922008011000036101 Prohance 4.19 g/15 mL injection solution, 10 x 15 mL vials 72671 921566011000036102 Prohance 4.19 g/15 mL injection solution, 10 x 15 mL vials 921090011000036100 Prohance 4.19 g/15 mL injection solution, 15 mL vial 20611000168106 Prohance 20611000168106 Prohance 922680011000036107 gadoteridol 4.19 g/15 mL injection, 10 x 15 mL vials 922154011000036109 gadoteridol 4.19 g/15 mL injection, vial 922035011000036101 gadoteridol +953521000168104 Onivyde 43 mg/10 mL concentrated injection, 10 mL vial 263184 953511000168106 Onivyde 43 mg/10 mL concentrated injection, 10 mL vial 953491000168101 Onivyde 43 mg/10 mL concentrated injection, 10 mL vial 953471000168102 Onivyde 953471000168102 Onivyde 953501000168108 irinotecan 43 mg/10 mL injection, 10 mL vial 953481000168104 irinotecan 43 mg/10 mL injection, vial 21503011000036106 irinotecan +800931000168102 Actonate 30 mg film-coated tablet, 28, blister pack 163747 800921000168100 Actonate 30 mg film-coated tablet, 28 800881000168107 Actonate 30 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 27741011000036101 risedronate sodium 30 mg tablet, 28 23072011000036102 risedronate sodium 30 mg tablet 21476011000036103 risedronate +950631000168105 Tenofovir (Mylan) 300 mg film-coated tablet, 30, bottle 261093 950621000168107 Tenofovir (Mylan) 300 mg film-coated tablet, 30 950601000168103 Tenofovir (Mylan) 300 mg film-coated tablet 950581000168107 Tenofovir (Mylan) 950581000168107 Tenofovir (Mylan) 950611000168100 tenofovir disoproxil maleate 300 mg tablet, 30 950591000168105 tenofovir disoproxil maleate 300 mg tablet 851521000168106 tenofovir disoproxil +20331011000036108 Enalapril Maleate (Winthrop) 20 mg uncoated tablet, 30, blister pack 76044 13540011000036104 Enalapril Maleate (Winthrop) 20 mg uncoated tablet, 30 6823011000036102 Enalapril Maleate (Winthrop) 20 mg uncoated tablet 3391011000036104 Enalapril Maleate (Winthrop) 3391011000036104 Enalapril Maleate (Winthrop) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +939131000168108 Ondansetron (Sandoz) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 132575 939121000168105 Ondansetron (Sandoz) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 939091000168106 Ondansetron (Sandoz) 4 mg/2 mL injection solution, 2 mL ampoule 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +655341000168104 Ondansetron (AN) 4 mg film-coated tablet, 4, blister pack 173186 655331000168108 Ondansetron (AN) 4 mg film-coated tablet, 4 655321000168105 Ondansetron (AN) 4 mg film-coated tablet 655311000168103 Ondansetron (AN) 655311000168103 Ondansetron (AN) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +34746011000036101 Dicodin 90 mg modified release tablet, 56, blister pack 47719 34328011000036103 Dicodin 90 mg modified release tablet, 56 34045011000036106 Dicodin 90 mg modified release tablet 33938011000036107 Dicodin 33938011000036107 Dicodin 35176011000036100 dihydrocodeine tartrate 90 mg modified release tablet, 56 34890011000036109 dihydrocodeine tartrate 90 mg modified release tablet 34841011000036108 dihydrocodeine +19530011000036100 Presolol 100 mg film-coated tablet, 100, bottle 56475 12802011000036100 Presolol 100 mg film-coated tablet, 100 6093011000036106 Presolol 100 mg film-coated tablet 3107011000036103 Presolol 3107011000036103 Presolol 27360011000036104 labetalol hydrochloride 100 mg tablet, 100 22712011000036103 labetalol hydrochloride 100 mg tablet 21315011000036106 labetalol +25241000036109 Amoxycillin (GenRx) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 76231 23021000036108 Amoxycillin (GenRx) 250 mg/5 mL powder for oral liquid, 100 mL 20411000036102 Amoxycillin (GenRx) 250 mg/5 mL powder for oral liquid, 5 mL 3646011000036109 Amoxycillin (GenRx) 3646011000036109 Amoxycillin (GenRx) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +25241000036109 Amoxycillin (GenRx) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 97623 23021000036108 Amoxycillin (GenRx) 250 mg/5 mL powder for oral liquid, 100 mL 20411000036102 Amoxycillin (GenRx) 250 mg/5 mL powder for oral liquid, 5 mL 3646011000036109 Amoxycillin (GenRx) 3646011000036109 Amoxycillin (GenRx) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +973651000168106 Pregabalin (Teva) 75 mg hard capsule, 60, blister pack 229587 973641000168109 Pregabalin (Teva) 75 mg hard capsule, 60 973481000168102 Pregabalin (Teva) 75 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +911821000168105 Caspofungin (KP) 50 mg powder for injection, 1 vial 269934 911811000168103 Caspofungin (KP) 50 mg powder for injection, 1 vial 911801000168101 Caspofungin (KP) 50 mg powder for injection, 50 mg vial 911271000168105 Caspofungin (KP) 911271000168105 Caspofungin (KP) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +1022641000168107 Betadine Antiseptic 10% solution, 500 mL, bottle 29562 1022631000168103 Betadine Antiseptic 10% solution, 500 mL 1022551000168108 Betadine Antiseptic 10% solution 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71679011000036100 povidone-iodine 10% solution, 500 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +809561000168109 Azep 0.1% nasal spray, 5 mL, pump pack 104853 809551000168107 Azep 0.1% nasal spray, 5 mL 809531000168101 Azep 0.1% nasal spray 73734011000036104 Azep 73734011000036104 Azep 809541000168105 azelastine hydrochloride 0.1% nasal spray, 5 mL 809521000168104 azelastine hydrochloride 0.1% nasal spray 75004011000036100 azelastine +74471000036101 Polytar Plus 4% shampoo, 25 mL, bottle 58005 72411000036102 Polytar Plus 4% shampoo, 25 mL 69481000036108 Polytar Plus 4% shampoo 65078011000036102 Polytar Plus 65078011000036102 Polytar Plus 72421000036109 coal tar solution 4% shampoo, 25 mL 69491000036105 coal tar solution 4% shampoo 69856011000036108 coal tar solution +43839011000036107 Ramipril (Sandoz) 10 mg uncoated tablet, 30, bottle 127520 41337011000036106 Ramipril (Sandoz) 10 mg uncoated tablet, 30 39932011000036106 Ramipril (Sandoz) 10 mg uncoated tablet 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +982391000168105 Maxalt 5 mg wafer, 6, blister pack 69077 982381000168107 Maxalt 5 mg wafer, 6 982301000168104 Maxalt 5 mg wafer 83225011000036106 Maxalt 83225011000036106 Maxalt 982371000168109 rizatriptan 5 mg wafer, 6 982291000168100 rizatriptan 5 mg wafer 83422011000036102 rizatriptan +59796011000036103 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 20 g, tube 114309 55758011000036100 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 20 g 53720011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63127011000036102 bifonazole 1% gel, 20 g 61865011000036102 bifonazole 1% gel 21899011000036106 bifonazole +59601000036105 Lamivudine (Alphapharm) 150 mg film-coated tablet, 60, bottle 167591 59091000036107 Lamivudine (Alphapharm) 150 mg film-coated tablet, 60 58211000036102 Lamivudine (Alphapharm) 150 mg film-coated tablet 58071000036104 Lamivudine (Alphapharm) 58071000036104 Lamivudine (Alphapharm) 27321011000036100 lamivudine 150 mg tablet, 60 22674011000036105 lamivudine 150 mg tablet 21665011000036104 lamivudine +903161000168106 Brillior 75 mg hard capsule, 20, blister pack 224340 903151000168109 Brillior 75 mg hard capsule, 20 903101000168105 Brillior 75 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +926922011000036103 Anti-Inflammatory (Guardian) 1% gel, 20 g, tube 90461 926316011000036102 Anti-Inflammatory (Guardian) 1% gel, 20 g 925757011000036108 Anti-Inflammatory (Guardian) 1% gel 925541011000036102 Anti-Inflammatory (Guardian) 925541011000036102 Anti-Inflammatory (Guardian) 900058011000036100 diclofenac sodium 1% gel, 20 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +20148011000036106 Teveten 600 mg film-coated tablet, 28, blister pack 73779 13372011000036104 Teveten 600 mg film-coated tablet, 28 6657011000036104 Teveten 600 mg film-coated tablet 3735011000036107 Teveten 3735011000036107 Teveten 27723011000036103 eprosartan 600 mg tablet, 28 23058011000036101 eprosartan 600 mg tablet 21612011000036106 eprosartan +20798011000036108 Isotretinoin (GenRx) 20 mg soft capsule, 60, blister pack 91348 13964011000036106 Isotretinoin (GenRx) 20 mg soft capsule, 60 7250011000036104 Isotretinoin (GenRx) 20 mg soft capsule 4134011000036104 Isotretinoin (GenRx) 4134011000036104 Isotretinoin (GenRx) 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +1091841000168105 Ibuprofen (Coles) Capsule Shaped 200 mg sugar coated tablet, 24, blister pack 281343 1091831000168101 Ibuprofen (Coles) Capsule Shaped 200 mg sugar coated tablet, 24 1091821000168104 Ibuprofen (Coles) Capsule Shaped 200 mg sugar coated tablet 924365011000036101 Ibuprofen (Coles) 924365011000036101 Ibuprofen (Coles) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +979501000168109 Paracetamol (CA) 500 mg uncoated tablet, 96, blister pack 197677 979491000168102 Paracetamol (CA) 500 mg uncoated tablet, 96 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1016951000168106 Aripiprazole (AU) 30 mg uncoated tablet, 30, blister pack 217216 1016941000168109 Aripiprazole (AU) 30 mg uncoated tablet, 30 1016931000168100 Aripiprazole (AU) 30 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +1052961000168104 Palexia SR 200 mg modified release tablet, 7, blister pack 165356 1052951000168101 Palexia SR 200 mg modified release tablet, 7 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052941000168103 tapentadol 200 mg modified release tablet, 7 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +50234011000036105 Biatain Non-Adhesive (3413) 15 cm x 15 cm waterproof pad, 5, carton 49506011000036107 Biatain Non-Adhesive (3413) 15 cm x 15 cm waterproof pad, 5 48700011000036105 Biatain Non-Adhesive (3413) 15 cm x 15 cm waterproof pad 27151000168103 Biatain Non-Adhesive (3413) 27151000168103 Biatain Non-Adhesive (3413) 51456011000036108 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 15 cm x 15 cm waterproof pad, 5 50963011000036104 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 15 cm x 15 cm waterproof pad 50713011000036109 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam +764921000168106 Ursodox (Lupin) 250 mg hard capsule, 60, blister pack 232484 764911000168104 Ursodox (Lupin) 250 mg hard capsule, 60 764901000168102 Ursodox (Lupin) 250 mg hard capsule 764881000168104 Ursodox (Lupin) 764881000168104 Ursodox (Lupin) 757471000168102 ursodeoxycholic acid 250 mg capsule, 60 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +933239331000036107 Prozine (Pharmacor) 5 mg uncoated tablet, 250, blister pack 172127 933236591000036109 Prozine (Pharmacor) 5 mg uncoated tablet, 250 933234621000036100 Prozine (Pharmacor) 5 mg uncoated tablet 933234271000036104 Prozine (Pharmacor) 933234271000036104 Prozine (Pharmacor) 924172011000036105 prochlorperazine maleate 5 mg tablet, 250 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +65861000036104 Duo Mineral 05 (NPM) uncoated tablet, 84, bottle 16879 63641000036103 Duo Mineral 05 (NPM) uncoated tablet, 84 60741000036103 Duo Mineral 05 (NPM) uncoated tablet 60561000036109 Duo Mineral 05 (NPM) 60561000036109 Duo Mineral 05 (NPM) 63651000036100 ferrous phosphate 15.15 mg (iron 2.4 mg) + potassium chloride 60 mg (potassium 31.5 mg) tablet, 84 60751000036100 ferrous phosphate 15.15 mg (iron 2.4 mg) + potassium chloride 60 mg (potassium 31.5 mg) tablet 66821000036100 ferrous phosphate + potassium chloride +1060191000168101 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 20, blister pack 234539 1060181000168104 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 20 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911431000168106 rosuvastatin 20 mg tablet, 20 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +19801011000036101 Duphaston 10 mg film-coated tablet, 28, blister pack 63262 13058011000036102 Duphaston 10 mg film-coated tablet, 28 6342011000036109 Duphaston 10 mg film-coated tablet 3020011000036104 Duphaston 3020011000036104 Duphaston 27525011000036101 dydrogesterone 10 mg tablet, 28 22865011000036108 dydrogesterone 10 mg tablet 21691011000036104 dydrogesterone +1005441000168106 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags 206687 1005431000168102 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags 1005421000168100 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 100 mL bag 713301000168100 Ropivacaine (Pfizer) 713301000168100 Ropivacaine (Pfizer) 1004551000168105 ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags 1004531000168104 ropivacaine hydrochloride 200 mg/100 mL injection, bag 44857011000036102 ropivacaine +933213371000036102 Lisinopril (IPCA) 10 mg uncoated tablet, 28, blister pack 152717 933201681000036105 Lisinopril (IPCA) 10 mg uncoated tablet, 28 933194791000036102 Lisinopril (IPCA) 10 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 46263011000036103 lisinopril 10 mg tablet, 28 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +918981000168108 Rosuvastatin (Generic Health) 20 mg film-coated tablet, 30, blister pack 210838 918971000168105 Rosuvastatin (Generic Health) 20 mg film-coated tablet, 30 918941000168103 Rosuvastatin (Generic Health) 20 mg film-coated tablet 918641000168106 Rosuvastatin (Generic Health) 918641000168106 Rosuvastatin (Generic Health) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +61111011000036108 Zantac Relief 150 mg film-coated tablet, 7, blister pack 71786 57054011000036106 Zantac Relief 150 mg film-coated tablet, 7 54175011000036107 Zantac Relief 150 mg film-coated tablet 53535011000036102 Zantac Relief 53535011000036102 Zantac Relief 63886011000036100 ranitidine 150 mg tablet, 7 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1107701000168101 Midazolam (Intas) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 207235 1107691000168101 Midazolam (Intas) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1107661000168108 Midazolam (Intas) 50 mg/10 mL injection solution, 10 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +910381000168105 Revolade 12.5 mg film-coated tablet, 28, blister pack 236115 910371000168107 Revolade 12.5 mg film-coated tablet, 28 910321000168106 Revolade 12.5 mg film-coated tablet 933219071000036102 Revolade 933219071000036102 Revolade 910361000168101 eltrombopag 12.5 mg tablet, 28 910311000168104 eltrombopag 12.5 mg tablet 933232121000036100 eltrombopag +18833011000036106 Resprim Forte uncoated tablet, 10, blister pack 17682 12147011000036100 Resprim Forte uncoated tablet, 10 5025011000036102 Resprim Forte uncoated tablet 28301000168100 Resprim Forte 28301000168100 Resprim Forte 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +44010011000036105 Cardizem CD 180 mg modified release capsule, 30, bottle 46824 12486011000036107 Cardizem CD 180 mg modified release capsule, 30 5585011000036107 Cardizem CD 180 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +662651000168107 Telmisartan (Terry White Chemists) 40 mg uncoated tablet, 28, blister pack 189934 662641000168105 Telmisartan (Terry White Chemists) 40 mg uncoated tablet, 28 662631000168101 Telmisartan (Terry White Chemists) 40 mg uncoated tablet 659091000168106 Telmisartan (Terry White Chemists) 659091000168106 Telmisartan (Terry White Chemists) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +870011000168102 Atomerra 100 mg hard capsule, 28, blister pack 234811 870001000168100 Atomerra 100 mg hard capsule, 28 869951000168102 Atomerra 100 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +79016011000036101 Xarelto 10 mg film-coated tablet, 10, blister pack 147400 78830011000036108 Xarelto 10 mg film-coated tablet, 10 78644011000036107 Xarelto 10 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 79225011000036108 rivaroxaban 10 mg tablet, 10 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +869891000168100 Eplerenone (AN) 25 mg film-coated tablet, 90, blister pack 231448 869881000168103 Eplerenone (AN) 25 mg film-coated tablet, 90 869811000168109 Eplerenone (AN) 25 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 790491000168108 eplerenone 25 mg tablet, 90 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +932001000168108 Centevo 50/12.5/200 mg film-coated tablet, 28, bottle 238152 931991000168106 Centevo 50/12.5/200 mg film-coated tablet, 28 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 931981000168108 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 28 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +81067011000036105 Iscover 300 mg film-coated tablet, 7, blister pack 151280 80576011000036109 Iscover 300 mg film-coated tablet, 7 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81655011000036101 clopidogrel 300 mg tablet, 7 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +786361000168109 Fentanyl (Sandoz) 37 microgram/hour patch, 1, sachet 152567 786351000168107 Fentanyl (Sandoz) 37 microgram/hour patch, 1 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780721000168103 fentanyl 37 microgram/hour patch, 1 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +43826011000036101 Zemplar 5 microgram/mL injection solution, 3 x 1 mL ampoules 121759 41254011000036107 Zemplar 5 microgram/mL injection solution, 3 x 1 mL ampoules 39797011000036107 Zemplar 5 microgram/mL injection solution, ampoule 39753011000036109 Zemplar 39753011000036109 Zemplar 46193011000036104 paricalcitol 5 microgram/mL injection, 3 x 1 mL ampoules 45024011000036102 paricalcitol 5 microgram/mL injection, ampoule 44899011000036102 paricalcitol +717311000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 500, blister pack 149417 717301000168108 Omeprazole (Pharmacor) 20 mg enteric capsule, 500 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716681000168109 omeprazole 20 mg enteric capsule, 500 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +911661000168101 Cavstat 20 mg film-coated tablet, 84, blister pack 234514 911651000168103 Cavstat 20 mg film-coated tablet, 84 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911641000168100 rosuvastatin 20 mg tablet, 84 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +740361000168100 Ondansetron (SZ) 8 mg film-coated tablet, 10, blister pack 163439 740351000168102 Ondansetron (SZ) 8 mg film-coated tablet, 10 740301000168101 Ondansetron (SZ) 8 mg film-coated tablet 740221000168104 Ondansetron (SZ) 740221000168104 Ondansetron (SZ) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +19664011000036107 Solprin 300 mg dispersible tablet, 96, strip pack 59902 12927011000036100 Solprin 300 mg dispersible tablet, 96 6217011000036105 Solprin 300 mg dispersible tablet 3635011000036103 Solprin 3635011000036103 Solprin 83731000036100 aspirin 300 mg dispersible tablet, 96 83601000036104 aspirin 300 mg dispersible tablet 21719011000036107 aspirin +844231000168106 Zentel 200 mg tablet, 6, bottle 50815 844221000168108 Zentel 200 mg tablet, 6 844201000168104 Zentel 200 mg tablet 4225011000036100 Zentel 4225011000036100 Zentel 844211000168101 albendazole 200 mg tablet, 6 844191000168102 albendazole 200 mg tablet 21425011000036106 albendazole +861351000168102 Dermasoothe Antiseptic cream, 50 g, tube 132067 861341000168104 Dermasoothe Antiseptic cream, 50 g 861321000168105 Dermasoothe Antiseptic cream 929923011000036103 Dermasoothe Antiseptic 929923011000036103 Dermasoothe Antiseptic 861331000168108 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream, 50 g 861311000168103 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +1060011000168106 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 50, blister pack 234479 1060001000168108 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 50 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910941000168101 rosuvastatin 10 mg tablet, 50 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +34655011000036104 Concerta 27 mg modified release tablet, 100, bottle 124502 34244011000036103 Concerta 27 mg modified release tablet, 100 4920011000036108 Concerta 27 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35115011000036102 methylphenidate hydrochloride 27 mg modified release tablet, 100 22152011000036104 methylphenidate hydrochloride 27 mg modified release tablet 21277011000036101 methylphenidate +17744011000036104 Perindopril Erbumine (Terry White Chemists) 4 mg uncoated tablet, 30, blister pack 121632 11679011000036106 Perindopril Erbumine (Terry White Chemists) 4 mg uncoated tablet, 30 5785011000036108 Perindopril Erbumine (Terry White Chemists) 4 mg uncoated tablet 4388011000036105 Perindopril Erbumine (Terry White Chemists) 4388011000036105 Perindopril Erbumine (Terry White Chemists) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +1051431000168109 Oxylieve MR 5 mg modified release tablet, 60, blister pack 153598 1051421000168106 Oxylieve MR 5 mg modified release tablet, 60 1051371000168100 Oxylieve MR 5 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 35245011000036108 oxycodone hydrochloride 5 mg modified release tablet, 60 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +20314011000036101 Femoston 2/10 (14 x 2 mg tablets, 14 x 2 mg/10 mg tablets), 28, blister pack 75889 13523011000036109 Femoston 2/10 (14 x 2 mg tablets, 14 x 2 mg/10 mg tablets), 28 6805011000036105 Femoston 2/10 (estradiol 2 mg) film-coated tablet 30741000168103 Femoston 2/10 30741000168103 Femoston 2/10 27786011000036103 estradiol 2 mg tablet [14] (&) estradiol 2 mg + dydrogesterone 10 mg tablet [14], 28 23115011000036108 estradiol 2 mg tablet 21238011000036103 estradiol +20314011000036101 Femoston 2/10 (14 x 2 mg tablets, 14 x 2 mg/10 mg tablets), 28, blister pack 75889 13523011000036109 Femoston 2/10 (14 x 2 mg tablets, 14 x 2 mg/10 mg tablets), 28 6806011000036103 Femoston 2/10 (dydrogesterone 10 mg + estradiol 2 mg) film-coated tablet 30741000168103 Femoston 2/10 30741000168103 Femoston 2/10 27786011000036103 estradiol 2 mg tablet [14] (&) estradiol 2 mg + dydrogesterone 10 mg tablet [14], 28 23116011000036101 estradiol 2 mg + dydrogesterone 10 mg tablet 21906011000036106 estradiol + dydrogesterone +1109241000168103 Nicotinell Tropical Fruit 2 mg chewing gum, 192, blister pack 279617 1109231000168107 Nicotinell Tropical Fruit 2 mg chewing gum, 192 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71513011000036102 nicotine 2 mg gum, 192 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +19179011000036104 Ralovera 5 mg uncoated tablet, 56, blister pack 46531 12475011000036107 Ralovera 5 mg uncoated tablet, 56 5754011000036103 Ralovera 5 mg uncoated tablet 4418011000036101 Ralovera 4418011000036101 Ralovera 27143011000036105 medroxyprogesterone acetate 5 mg tablet, 56 22507011000036103 medroxyprogesterone acetate 5 mg tablet 21378011000036107 medroxyprogesterone +662691000168102 Telmisartan (Chemmart) 80 mg uncoated tablet, 28, blister pack 189932 662681000168100 Telmisartan (Chemmart) 80 mg uncoated tablet, 28 662671000168103 Telmisartan (Chemmart) 80 mg uncoated tablet 662661000168109 Telmisartan (Chemmart) 662661000168109 Telmisartan (Chemmart) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +760671000168108 Demazin 12 Hour Relief 0.05% nasal spray, 15 mL, pump pack 218997 760661000168102 Demazin 12 Hour Relief 0.05% nasal spray, 15 mL 760651000168104 Demazin 12 Hour Relief 0.05% nasal spray 760641000168101 Demazin 12 Hour Relief 760641000168101 Demazin 12 Hour Relief 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +1001121000168106 Citalopram (Apotex) 40 mg film-coated tablet, 28, bottle 150640 1000701000168105 Citalopram (Apotex) 40 mg film-coated tablet, 28 1000691000168105 Citalopram (Apotex) 40 mg film-coated tablet 1000491000168107 Citalopram (Apotex) 1000491000168107 Citalopram (Apotex) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +922025011000036103 Sebitar Reformulation solution, 250 mL, bottle 98850 921583011000036106 Sebitar Reformulation solution, 250 mL 921099011000036106 Sebitar Reformulation solution 25801000036107 Sebitar Reformulation 25801000036107 Sebitar Reformulation 922696011000036106 tar 1% + coal tar solution 1% + salicylic acid 2% solution, 250 mL 922163011000036103 tar 1% + coal tar solution 1% + salicylic acid 2% solution 922057011000036107 tar + coal tar solution + salicylic acid +43856011000036102 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 20, blister pack 128095 41352011000036105 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet, 20 39907011000036104 Zolpidem Tartrate (Sandoz) 10 mg film-coated tablet 39781011000036103 Zolpidem Tartrate (Sandoz) 39781011000036103 Zolpidem Tartrate (Sandoz) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +923883011000036104 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 30, blister pack 163769 923427011000036107 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 30 923078011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 28127011000036106 lercanidipine hydrochloride 20 mg tablet, 30 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +37615011000036100 Mitomycin-C Kyowa 10 mg powder for injection, 5 vials 19716 36882011000036103 Mitomycin-C Kyowa 10 mg powder for injection, 5 vials 36216011000036109 Mitomycin-C Kyowa 10 mg powder for injection, 10 mg vial 39521000168107 Mitomycin-C Kyowa 39521000168107 Mitomycin-C Kyowa 38767011000036106 mitomycin 10 mg injection, 5 vials 37985011000036102 mitomycin 10 mg injection, vial 37757011000036105 mitomycin +999591000168109 Memantine (Apotex) 10 mg film-coated tablet, 56, blister pack 159580 999581000168106 Memantine (Apotex) 10 mg film-coated tablet, 56 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +80030011000036106 Gabapentin (Apo) 100 mg hard capsule, 100, bottle 151318 79976011000036101 Gabapentin (Apo) 100 mg hard capsule, 100 79926011000036102 Gabapentin (Apo) 100 mg hard capsule 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +1122001000168108 Afluria Quad 2018 Needle Free injection suspension, 10 x 0.5 mL syringes 294907 1121991000168106 Afluria Quad 2018 Needle Free injection suspension, 10 x 0.5 mL syringes 1121961000168104 Afluria Quad 2018 Needle Free injection suspension, 0.5 mL syringe 1121841000168107 Afluria Quad 2018 1121841000168107 Afluria Quad 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +829791000168103 Berocca Performance Original effervescent tablet, 45, bottle 129631 829781000168101 Berocca Performance Original effervescent tablet, 45 829701000168109 Berocca Performance Original effervescent tablet 920935011000036104 Berocca Performance 920935011000036104 Berocca Performance 829771000168104 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 45 829691000168109 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet 829681000168106 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc +829791000168103 Berocca Performance Original effervescent tablet, 45, bottle 193893 829781000168101 Berocca Performance Original effervescent tablet, 45 829701000168109 Berocca Performance Original effervescent tablet 920935011000036104 Berocca Performance 920935011000036104 Berocca Performance 829771000168104 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 45 829691000168109 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet 829681000168106 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc +20135011000036101 Cycloblastin 50 mg sugar coated tablet, 50, bottle 73468 13359011000036106 Cycloblastin 50 mg sugar coated tablet, 50 6644011000036107 Cycloblastin 50 mg sugar coated tablet 3094011000036100 Cycloblastin 3094011000036100 Cycloblastin 27715011000036108 cyclophosphamide 50 mg tablet, 50 23050011000036103 cyclophosphamide 50 mg tablet 21733011000036103 cyclophosphamide +671181000168108 Diaformin XR-1000 1 g modified release tablet, 60, blister pack 208441 671171000168105 Diaformin XR-1000 1 g modified release tablet, 60 671161000168104 Diaformin XR-1000 1 g modified release tablet 671151000168101 Diaformin XR-1000 671151000168101 Diaformin XR-1000 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +25081000036108 Atorvastatin (Apo) 80 mg film-coated tablet, 30, blister pack 153729 22201000036102 Atorvastatin (Apo) 80 mg film-coated tablet, 30 19941000036108 Atorvastatin (Apo) 80 mg film-coated tablet 8071000168101 Atorvastatin (Apo) 8071000168101 Atorvastatin (Apo) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +852831000168104 Alvesco 80 microgram/actuation pressurised inhalation, 60 actuations, metered dose aerosol can 93724 852821000168102 Alvesco 80 microgram/actuation pressurised inhalation, 60 actuations 7346011000036109 Alvesco 80 microgram/actuation pressurised inhalation, actuation 3011011000036104 Alvesco 3011011000036104 Alvesco 852811000168109 ciclesonide 80 microgram/actuation pressurised inhalation, 60 actuations 23432011000036107 ciclesonide 80 microgram/actuation pressurised inhalation, actuation 21555011000036102 ciclesonide +842541000168109 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 5 x 2.5 mL ampoules 12534 842531000168100 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 5 x 2.5 mL ampoules 5490011000036109 Ventolin Nebules 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 34231000168108 Ventolin Nebules 34231000168108 Ventolin Nebules 842521000168103 salbutamol 5 mg/2.5 mL inhalation solution, 5 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +1065811000168106 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 30, blister pack 220729 1065801000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet, 30 1065661000168108 Pain Relief Extra Strength (Pharmacy Health) uncoated tablet 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 1065641000168109 Pain Relief Extra Strength (Pharmacy Health) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +925364011000036106 Lisinopril (DM) 20 mg uncoated tablet, 30, blister pack 76047 924900011000036103 Lisinopril (DM) 20 mg uncoated tablet, 30 924542011000036103 Lisinopril (DM) 20 mg uncoated tablet 924402011000036101 Lisinopril (DM) 924402011000036101 Lisinopril (DM) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +933239191000036105 Fentanyl (Sandoz) 50 microgram/hour patch, 2, sachet 152571 933235901000036101 Fentanyl (Sandoz) 50 microgram/hour patch, 2 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235911000036104 fentanyl 50 microgram/hour patch, 2 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +30861000036101 Mirtazapine (GH) 30 mg film-coated tablet, 30, blister pack 191019 28961000036107 Mirtazapine (GH) 30 mg film-coated tablet, 30 26991000036101 Mirtazapine (GH) 30 mg film-coated tablet 26311000036105 Mirtazapine (GH) 26311000036105 Mirtazapine (GH) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +858611000168106 Amiodarone (Winthrop) 100 mg uncoated tablet, 30, blister pack 125874 858601000168108 Amiodarone (Winthrop) 100 mg uncoated tablet, 30 858591000168101 Amiodarone (Winthrop) 100 mg uncoated tablet 858551000168106 Amiodarone (Winthrop) 858551000168106 Amiodarone (Winthrop) 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +809481000168104 Docetaxel (Accord) (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack, composite pack 177130 809471000168102 Docetaxel (Accord) (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack 809461000168108 Docetaxel (Accord) (inert substance) diluent, 6 mL vial 797961000168109 Docetaxel (Accord) 797961000168109 Docetaxel (Accord) 933225871000036103 docetaxel 80 mg/2 mL injection [2 mL vial] (&) inert substance diluent [6 mL vial], 1 pack 634241000168107 inert substance diluent, 6 mL vial 21220011000036103 inert substance +809481000168104 Docetaxel (Accord) (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack, composite pack 177130 809471000168102 Docetaxel (Accord) (1 x 80 mg/2 mL vial, 1 x 6 mL inert diluent vial), 1 pack 809451000168106 Docetaxel (Accord) (docetaxel 80 mg/2 mL) concentrated injection, 2 mL vial 797961000168109 Docetaxel (Accord) 797961000168109 Docetaxel (Accord) 933225871000036103 docetaxel 80 mg/2 mL injection [2 mL vial] (&) inert substance diluent [6 mL vial], 1 pack 33678011000036109 docetaxel 80 mg/2 mL injection, vial 21721011000036101 docetaxel +955121000168107 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 100518 955111000168100 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 955091000168108 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 48701000168101 Q-Vax Skin Test 48701000168101 Q-Vax Skin Test 955101000168103 Q fever skin test injection, 0.5 mL vial 955081000168105 Q fever skin test injection, 0.5 mL vial 955071000168107 Q fever skin test +1040121000168105 Asartan 4 mg uncoated tablet, 28, blister pack 195370 1040111000168103 Asartan 4 mg uncoated tablet, 28 1040101000168101 Asartan 4 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 904981000168102 candesartan cilexetil 4 mg tablet, 28 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +913351000168105 Zentel 200 mg tablet, 60, bottle 50815 913341000168108 Zentel 200 mg tablet, 60 844201000168104 Zentel 200 mg tablet 4225011000036100 Zentel 4225011000036100 Zentel 913331000168104 albendazole 200 mg tablet, 60 844191000168102 albendazole 200 mg tablet 21425011000036106 albendazole +919121000168101 Temolide 5 mg hard capsule, 5, bottle 192690 919111000168108 Temolide 5 mg hard capsule, 5 919101000168105 Temolide 5 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +18695011000036105 Sinequan 10 mg hard capsule, 50, blister pack 10767 11381011000036107 Sinequan 10 mg hard capsule, 50 4480011000036100 Sinequan 10 mg hard capsule 4176011000036105 Sinequan 4176011000036105 Sinequan 27462011000036107 doxepin 10 mg capsule, 50 22809011000036109 doxepin 10 mg capsule 21583011000036105 doxepin +84387011000036104 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 19612 84079011000036101 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 83699011000036104 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 56881000168103 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% 56881000168103 Synthamin 17 Amino Acid 10% without Electrolytes and Glucose 50% 84662011000036108 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + methionine 2 g/L + phenylalanine 2.8 g/L + proline 3.4 g/L + serine 2.5 g/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag 84438011000036103 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + methionine 2 g/L + phenylalanine 2.8 g/L + proline 3.4 g/L + serine 2.5 g/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 84413011000036102 alanine + arginine + glucose + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +933230651000036103 Valaciclovir (Generic Health) 500 mg film-coated tablet, 28, blister pack 170178 933224731000036106 Valaciclovir (Generic Health) 500 mg film-coated tablet, 28 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 933224741000036101 valaciclovir 500 mg tablet, 28 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +933239171000036106 Fentanyl (Sandoz) 50 microgram/hour patch, 1, sachet 152571 933235861000036109 Fentanyl (Sandoz) 50 microgram/hour patch, 1 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235871000036101 fentanyl 50 microgram/hour patch, 1 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +748811000168107 Morphine (JN) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 224244 748801000168109 Morphine (JN) 50 mg/5 mL injection solution, 10 x 5 mL ampoules 748741000168100 Morphine (JN) 50 mg/5 mL injection solution, 5 mL ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 707121000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, 10 x 5 mL ampoules 707071000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, ampoule 21252011000036100 morphine +984401000168104 Butafen 200 mg sugar coated tablet, 32, blister pack 126093 984391000168101 Butafen 200 mg sugar coated tablet, 32 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 984381000168104 ibuprofen 200 mg tablet, 32 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1074081000168104 Ceftazidime (Auro) 2 g powder for injection, 1 vial 158793 1074071000168102 Ceftazidime (Auro) 2 g powder for injection, 1 vial 1074061000168108 Ceftazidime (Auro) 2 g powder for injection, 2 g vial 1074001000168107 Ceftazidime (Auro) 1074001000168107 Ceftazidime (Auro) 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +739901000168107 Perindopril (CH) 2 mg uncoated tablet, 30, blister pack 125447 739891000168108 Perindopril (CH) 2 mg uncoated tablet, 30 739881000168105 Perindopril (CH) 2 mg uncoated tablet 739781000168101 Perindopril (CH) 739781000168101 Perindopril (CH) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +43677011000036107 Simvabell 80 mg film-coated tablet, 100, bottle 100889 41111011000036104 Simvabell 80 mg film-coated tablet, 100 4715011000036102 Simvabell 80 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46250011000036104 simvastatin 80 mg tablet, 100 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +69279011000036108 Osmitrol 10% (100 g/L) intravenous infusion injection, 12 x 1 L bags 19479 67079011000036106 Osmitrol 10% (100 g/L) intravenous infusion injection, 12 x 1 L bags 65368011000036106 Osmitrol 10% (100 g/L) intravenous infusion injection, 1 L bag 65181011000036106 Osmitrol 65181011000036106 Osmitrol 71649011000036101 mannitol 10% (100 g/L) injection, 12 x 1 L bags 70108011000036109 mannitol 10% (100 g/L) injection, bag 69778011000036106 mannitol +20914011000036107 Alvesco 80 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 93724 14068011000036106 Alvesco 80 microgram/actuation pressurised inhalation, 120 actuations 7346011000036109 Alvesco 80 microgram/actuation pressurised inhalation, actuation 3011011000036104 Alvesco 3011011000036104 Alvesco 28123011000036102 ciclesonide 80 microgram/actuation pressurised inhalation, 120 actuations 23432011000036107 ciclesonide 80 microgram/actuation pressurised inhalation, actuation 21555011000036102 ciclesonide +85481000036109 Fendex ER 10 mg modified release tablet, 30, blister pack 184622 84551000036104 Fendex ER 10 mg modified release tablet, 30 84091000036104 Fendex ER 10 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 27476011000036101 felodipine 10 mg modified release tablet, 30 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +19766011000036108 Vancomycin (DBL) 1 g powder for injection, 1 vial 62595 13024011000036108 Vancomycin (DBL) 1 g powder for injection, 1 vial 6311011000036108 Vancomycin (DBL) 1 g powder for injection, vial 4211011000036109 Vancomycin (DBL) 4211011000036109 Vancomycin (DBL) 27498011000036108 vancomycin 1 g injection, 1 vial 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +795631000168100 Famciclovir (Auro) 500 mg film-coated tablet, 30, blister pack 195182 795621000168103 Famciclovir (Auro) 500 mg film-coated tablet, 30 113501000036106 Famciclovir (Auro) 500 mg film-coated tablet 112681000036107 Famciclovir (Auro) 112681000036107 Famciclovir (Auro) 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +926700011000036102 Primovist 1.36 g/7.5 mL injection solution, 10 x 7.5 mL syringes 104380 926064011000036105 Primovist 1.36 g/7.5 mL injection solution, 10 x 7.5 mL syringes 925597011000036100 Primovist 1.36 g/7.5 mL injection solution, 7.5 mL syringe 920914011000036108 Primovist 920914011000036108 Primovist 927295011000036104 gadoxetate disodium 1.36 g/7.5 mL injection, 10 x 7.5 mL syringes 926981011000036100 gadoxetate disodium 1.36 g/7.5 mL injection, syringe 922038011000036107 gadoxetic acid +43711011000036102 Simvastatin (DP) 10 mg film-coated tablet, 100, bottle 125780 41322011000036106 Simvastatin (DP) 10 mg film-coated tablet, 100 4629011000036101 Simvastatin (DP) 10 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46244011000036106 simvastatin 10 mg tablet, 100 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +19411011000036108 Zantac 150 mg film-coated tablet, 60, blister pack 53324 12695011000036104 Zantac 150 mg film-coated tablet, 60 5090011000036100 Zantac 150 mg film-coated tablet 3563011000036102 Zantac 3563011000036102 Zantac 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +870531000168100 Desven 100 mg modified release tablet, 1000, bottle 218072 870521000168103 Desven 100 mg modified release tablet, 1000 870451000168105 Desven 100 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 692571000168100 desvenlafaxine 100 mg modified release tablet, 1000 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +904851000168101 Candesartan (CH) 32 mg uncoated tablet, 28, blister pack 195372 904841000168103 Candesartan (CH) 32 mg uncoated tablet, 28 904821000168109 Candesartan (CH) 32 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 904831000168107 candesartan cilexetil 32 mg tablet, 28 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +69660011000036108 Gasbusters 200 mg soft capsule, 18, blister pack 80295 67459011000036102 Gasbusters 200 mg soft capsule, 18 65673011000036103 Gasbusters 200 mg soft capsule 65074011000036109 Gasbusters 65074011000036109 Gasbusters 71987011000036100 simethicone 200 mg capsule, 18 70273011000036107 simethicone 200 mg capsule 69826011000036109 simethicone +20062011000036105 Seretide Accuhaler 100/50 powder for inhalation, 60 actuations, blister pack 70089 13292011000036100 Seretide Accuhaler 100/50 powder for inhalation, 60 actuations 6576011000036105 Seretide Accuhaler 100/50 powder for inhalation, actuation 51331000168100 Seretide Accuhaler 100/50 51331000168100 Seretide Accuhaler 100/50 27671011000036109 fluticasone propionate 100 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 23008011000036108 fluticasone propionate 100 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +864431000168100 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags 144669 864421000168103 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags 864231000168104 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 864411000168105 glucose monohydrate 5% (2.5 g/50 mL) injection, 70 x 50 mL bags 864221000168102 glucose monohydrate 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +68808011000036103 Urecare 10% cream, 100 g, tube 10821 66562011000036107 Urecare 10% cream, 100 g 65546011000036103 Urecare 10% cream 65040011000036103 Urecare 65040011000036103 Urecare 27005011000036108 urea 10% cream, 100 g 22378011000036108 urea 10% cream 21561011000036106 urea +1016471000168105 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 200632 1016461000168104 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28 1016361000168109 Drospirenone/EE 3/20 (Apotex) (drospirenone 3 mg + ethinylestradiol 20 microgram) film-coated tablet 1016131000168103 Drospirenone/EE 3/20 (Apotex) 1016131000168103 Drospirenone/EE 3/20 (Apotex) 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +1016471000168105 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 200632 1016461000168104 Drospirenone/EE 3/20 (Apotex) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28 1016391000168102 Drospirenone/EE 3/20 (Apotex) (inert substance) film-coated tablet 1016131000168103 Drospirenone/EE 3/20 (Apotex) 1016131000168103 Drospirenone/EE 3/20 (Apotex) 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +933067011000036106 Risedronate Sodium (Sandoz) 35 mg film-coated tablet, 4, bottle 154857 932884011000036107 Risedronate Sodium (Sandoz) 35 mg film-coated tablet, 4 932744011000036101 Risedronate Sodium (Sandoz) 35 mg film-coated tablet 932706011000036102 Risedronate Sodium (Sandoz) 932706011000036102 Risedronate Sodium (Sandoz) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +44807011000036107 Fresofol 1% 1 g/100 mL injection emulsion, 100 mL vial 98275 42241011000036107 Fresofol 1% 1 g/100 mL injection emulsion, 100 mL vial 40402011000036101 Fresofol 1% 1 g/100 mL injection emulsion, 100 mL vial 52331000168108 Fresofol 1% 52331000168108 Fresofol 1% 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +671421000168101 Amlodipine/Atorvastatin 10/10 (Chemmart) film-coated tablet, 30, blister pack 214357 671411000168108 Amlodipine/Atorvastatin 10/10 (Chemmart) film-coated tablet, 30 671401000168105 Amlodipine/Atorvastatin 10/10 (Chemmart) film-coated tablet 671391000168108 Amlodipine/Atorvastatin 10/10 (Chemmart) 671391000168108 Amlodipine/Atorvastatin 10/10 (Chemmart) 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +37380011000036101 Etoposide (Pfizer (Perth)) 100 mg/5 mL concentrated injection, 10 x 5 mL vials 11365 36667011000036105 Etoposide (Pfizer (Perth)) 100 mg/5 mL concentrated injection, 10 x 5 mL vials 36067011000036102 Etoposide (Pfizer (Perth)) 100 mg/5 mL concentrated injection, 5 mL vial 35872011000036109 Etoposide (Pfizer (Perth)) 35872011000036109 Etoposide (Pfizer (Perth)) 38762011000036109 etoposide 100 mg/5 mL injection, 10 x 5 mL vials 23503011000036101 etoposide 100 mg/5 mL injection, vial 21469011000036104 etoposide +19501011000036100 Quinsul 300 mg film-coated tablet, 50, bottle 55556 12777011000036107 Quinsul 300 mg film-coated tablet, 50 6071011000036103 Quinsul 300 mg film-coated tablet 4371011000036109 Quinsul 4371011000036109 Quinsul 27346011000036107 quinine sulfate dihydrate 300 mg tablet, 50 22699011000036101 quinine sulfate dihydrate 300 mg tablet 21513011000036108 quinine +1108601000168108 Midazolam (Claris) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 216025 1108591000168101 Midazolam (Claris) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 1108561000168108 Midazolam (Claris) 5 mg/5 mL injection solution, 5 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +996941000168103 Benadryl Chesty Forte oral liquid solution, 30 mL, bottle 251912 996931000168107 Benadryl Chesty Forte oral liquid solution, 30 mL 996921000168109 Benadryl Chesty Forte oral liquid solution, 5 mL 679061000168102 Benadryl Chesty Forte 679061000168102 Benadryl Chesty Forte 989901000168105 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 30 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +931482011000036106 Iscover 75 mg film-coated tablet, 28, bottle 153242 13722011000036101 Iscover 75 mg film-coated tablet, 28 7004011000036106 Iscover 75 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +20696011000036104 Ciprol 500 mg film-coated tablet, 14, blister pack 82477 13872011000036102 Ciprol 500 mg film-coated tablet, 14 7159011000036108 Ciprol 500 mg film-coated tablet 3369011000036102 Ciprol 3369011000036102 Ciprol 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +791701000168104 Trexject 20 mg/0.4 mL injection solution, 4 x 0.4 mL syringes 233719 791691000168104 Trexject 20 mg/0.4 mL injection solution, 4 x 0.4 mL syringes 791641000168107 Trexject 20 mg/0.4 mL injection solution, 0.4 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791681000168102 methotrexate 20 mg/0.4 mL injection, 4 x 0.4 mL syringes 791631000168103 methotrexate 20 mg/0.4 mL injection, syringe 21342011000036105 methotrexate +947991000168102 Rispernia 6 mg film-coated tablet, 60, blister pack 127927 928195011000036109 Rispernia 6 mg film-coated tablet, 60 927854011000036104 Rispernia 6 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 929205011000036107 risperidone 6 mg tablet, 60 929143011000036103 risperidone 6 mg tablet 21338011000036109 risperidone +87715011000036103 Galantyl 8 mg modified release capsule, 28, bottle 157936 87453011000036102 Galantyl 8 mg modified release capsule, 28 87317011000036107 Galantyl 8 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 28248011000036107 galantamine 8 mg modified release capsule, 28 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +19578011000036100 Amoxil 500 mg hard capsule, 20, blister pack 57574 12849011000036104 Amoxil 500 mg hard capsule, 20 6140011000036103 Amoxil 500 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +19578011000036100 Amoxil 500 mg hard capsule, 20, blister pack 273936 12849011000036104 Amoxil 500 mg hard capsule, 20 6140011000036103 Amoxil 500 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +933230491000036105 Clopidogrel (DRLA) 75 mg film-coated tablet, 28, blister pack 166655 933224511000036105 Clopidogrel (DRLA) 75 mg film-coated tablet, 28 933220201000036103 Clopidogrel (DRLA) 75 mg film-coated tablet 933218971000036107 Clopidogrel (DRLA) 933218971000036107 Clopidogrel (DRLA) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +774441000168102 Rizatriptan (Chemmart) 10 mg orally disintegrating tablet, 2, blister pack 222335 774431000168106 Rizatriptan (Chemmart) 10 mg orally disintegrating tablet, 2 774421000168108 Rizatriptan (Chemmart) 10 mg orally disintegrating tablet 774411000168101 Rizatriptan (Chemmart) 774411000168101 Rizatriptan (Chemmart) 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +817281000168107 Advagraf XL 1 mg modified release capsule, 100, blister pack 269214 817271000168109 Advagraf XL 1 mg modified release capsule, 100 817171000168103 Advagraf XL 1 mg modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 817261000168103 tacrolimus 1 mg modified release capsule, 100 922099011000036107 tacrolimus 1 mg modified release capsule 21380011000036104 tacrolimus +933214741000036105 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 90, bottle 163528 933204341000036109 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 90 933195481000036105 Pravastatin Sodium (DRLA) 40 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932408011000036109 pravastatin sodium 40 mg tablet, 90 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +931500011000036103 Topiramate (Generic Health) 25 mg film-coated tablet, 60, blister pack 155216 928305011000036103 Topiramate (Generic Health) 25 mg film-coated tablet, 60 927934011000036105 Topiramate (Generic Health) 25 mg film-coated tablet 927812011000036104 Topiramate (Generic Health) 927812011000036104 Topiramate (Generic Health) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +19646011000036105 Lipitor 10 mg film-coated tablet, 30, bottle 59604 12914011000036103 Lipitor 10 mg film-coated tablet, 30 6204011000036101 Lipitor 10 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +20379011000036109 Dilatrend 3.125 mg uncoated tablet, 30, blister pack 76800 13587011000036107 Dilatrend 3.125 mg uncoated tablet, 30 6870011000036106 Dilatrend 3.125 mg uncoated tablet 4079011000036107 Dilatrend 4079011000036107 Dilatrend 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +44645011000036101 Ranoxyl 150 mg film-coated tablet, 28, bottle 90519 42098011000036101 Ranoxyl 150 mg film-coated tablet, 28 7143011000036107 Ranoxyl 150 mg film-coated tablet 4043011000036108 Ranoxyl 4043011000036108 Ranoxyl 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +926865011000036105 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 75 mL vial 47997 926261011000036102 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 75 mL vial 925709011000036105 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 75 mL vial 14501000168105 Optiray-350 14501000168105 Optiray-350 927365011000036109 ioversol 741 mg (iodine 350 mg)/mL injection, 75 mL vial 927012011000036103 ioversol 741 mg (iodine 350 mg)/mL injection, 75 mL vial 77421011000036103 ioversol +925151011000036109 Simvastatin (Pharmacor) 40 mg film-coated tablet, 30, blister pack 123816 924693011000036108 Simvastatin (Pharmacor) 40 mg film-coated tablet, 30 924418011000036100 Simvastatin (Pharmacor) 40 mg film-coated tablet 924384011000036102 Simvastatin (Pharmacor) 924384011000036102 Simvastatin (Pharmacor) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +18143011000036100 Humulin NPH Isophane 100 units/mL injection suspension, 1 x 10 mL vial 14634 12048011000036106 Humulin NPH Isophane 100 units/mL injection suspension, 1 x 10 mL vial 5370011000036106 Humulin NPH Isophane 100 units/mL injection suspension, 10 mL vial 10931000168100 Humulin NPH Isophane 10931000168100 Humulin NPH Isophane 27129011000036105 insulin isophane human 100 units/mL injection, 1 x 10 mL vial 22495011000036100 insulin isophane human 100 units/mL injection, vial 33643011000036100 insulin isophane human +50487011000036108 Comfeel Plus Transparent (3536) 9 cm x 14 cm dressing, 10, carton 49411011000036105 Comfeel Plus Transparent (3536) 9 cm x 14 cm dressing, 10 48465011000036108 Comfeel Plus Transparent (3536) 9 cm x 14 cm dressing 53091000168103 Comfeel Plus Transparent (3536) 53091000168103 Comfeel Plus Transparent (3536) 51379011000036109 dressing hydrocolloid superficial wound light exudate 9 cm x 14 cm dressing, 10 50900011000036108 dressing hydrocolloid superficial wound light exudate 9 cm x 14 cm dressing 50714011000036106 dressing hydrocolloid superficial wound light exudate +999271000168105 Xofigo 6.6 MBq/6 mL injection solution, 6 mL vial 208905 999261000168104 Xofigo 6.6 MBq/6 mL injection solution, 6 mL vial 999241000168103 Xofigo 6.6 MBq/6 mL injection solution, 6 mL vial 999211000168102 Xofigo 999211000168102 Xofigo 999251000168101 radium (223Ra) dichloride 6.6 MBq/6 mL injection, 6 mL vial 999231000168107 radium (223Ra) dichloride 6.6 MBq/6 mL injection, vial 999221000168109 radium (223Ra) +982071000168106 Zofran 24 mg film-coated tablet, 1, blister pack 68430 982061000168100 Zofran 24 mg film-coated tablet, 1 982041000168104 Zofran 24 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 982051000168102 ondansetron 24 mg tablet, 1 982031000168108 ondansetron 24 mg tablet 21545011000036100 ondansetron +18948011000036107 Neulactil 2.5 mg uncoated tablet, 100, blister pack 27524 12256011000036103 Neulactil 2.5 mg uncoated tablet, 100 4823011000036109 Neulactil 2.5 mg uncoated tablet 3728011000036104 Neulactil 3728011000036104 Neulactil 27020011000036108 periciazine 2.5 mg tablet, 100 22393011000036107 periciazine 2.5 mg tablet 21737011000036107 periciazine +44563011000036101 Bicor 1.25 mg film-coated tablet, 100, blister pack 81603 42016011000036104 Bicor 1.25 mg film-coated tablet, 100 40323011000036105 Bicor 1.25 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 46789011000036109 bisoprolol fumarate 1.25 mg tablet, 100 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +61123011000036100 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 120 mg/5 mL oral liquid solution, 100 mL, bottle 72389 57066011000036106 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 120 mg/5 mL oral liquid solution, 100 mL 54180011000036109 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 120 mg/5 mL oral liquid solution, 5 mL 31791000168101 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 31791000168101 Paracetamol Children's Elixir 1 to 5 Years (Guardian) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +879351000168108 Bortezomib (Apotex) 3.5 mg powder for injection, 1 vial 215825 879341000168106 Bortezomib (Apotex) 3.5 mg powder for injection, 1 vial 879331000168102 Bortezomib (Apotex) 3.5 mg powder for injection, 3.5 mg vial 879321000168100 Bortezomib (Apotex) 879321000168100 Bortezomib (Apotex) 26598011000036101 bortezomib 3.5 mg injection, 1 vial 22006011000036104 bortezomib 3.5 mg injection, vial 21633011000036105 bortezomib +925323011000036101 Xalox 50 mg powder for injection, 1 vial 165492 924859011000036107 Xalox 50 mg powder for injection, 1 vial 924531011000036108 Xalox 50 mg powder for injection, 50 mg vial 924389011000036101 Xalox 924389011000036101 Xalox 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +920737011000036102 Memantine (Apo) 10 mg film-coated tablet, 30, blister pack 159582 920420011000036107 Memantine (Apo) 10 mg film-coated tablet, 30 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38840011000036102 memantine hydrochloride 10 mg tablet, 30 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +61697011000036102 Mylanta Ranitidine 150 mg film-coated tablet, 2, blister pack 99838 57618011000036101 Mylanta Ranitidine 150 mg film-coated tablet, 2 54367011000036103 Mylanta Ranitidine 150 mg film-coated tablet 53436011000036102 Mylanta Ranitidine 53436011000036102 Mylanta Ranitidine 63963011000036101 ranitidine 150 mg tablet, 2 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +79632011000036104 Clexane 40 mg/0.4 mL injection solution, 0.4 mL ampoule 147005 79478011000036100 Clexane 40 mg/0.4 mL injection solution, 0.4 mL ampoule 79366011000036104 Clexane 40 mg/0.4 mL injection solution, 0.4 mL ampoule 2391000168100 Clexane 2391000168100 Clexane 79809011000036109 enoxaparin sodium 40 mg/0.4 mL injection, 0.4 mL ampoule 79742011000036105 enoxaparin sodium 40 mg/0.4 mL injection, ampoule 21553011000036103 enoxaparin sodium +39372011000036104 Tarceva 25 mg film-coated tablet, 30, blister pack 114714 39256011000036107 Tarceva 25 mg film-coated tablet, 30 39197011000036100 Tarceva 25 mg film-coated tablet 39177011000036109 Tarceva 39177011000036109 Tarceva 39459011000036104 erlotinib 25 mg tablet, 30 39431011000036102 erlotinib 25 mg tablet 39427011000036107 erlotinib +18194011000036105 Avapro 300 mg film-coated tablet, 30, bottle 101737 11236011000036103 Avapro 300 mg film-coated tablet, 30 5075011000036103 Avapro 300 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +1123451000168107 Quetiapine XR (ZP) 400 mg modified release tablet, 10, blister pack 226804 1123441000168105 Quetiapine XR (ZP) 400 mg modified release tablet, 10 1123411000168106 Quetiapine XR (ZP) 400 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51538011000036101 quetiapine 400 mg modified release tablet, 10 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +789331000168107 Abisart 300 mg film-coated tablet, 7, bottle 214582 789321000168109 Abisart 300 mg film-coated tablet, 7 98731000036108 Abisart 300 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 738181000168105 irbesartan 300 mg tablet, 7 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +830031000168109 Perindopril and Indapamide 4/1.25 (AN) uncoated tablet, 30, blister pack 214330 830021000168106 Perindopril and Indapamide 4/1.25 (AN) uncoated tablet, 30 830011000168104 Perindopril and Indapamide 4/1.25 (AN) uncoated tablet 830001000168102 Perindopril and Indapamide 4/1.25 (AN) 830001000168102 Perindopril and Indapamide 4/1.25 (AN) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +61329011000036106 Paracetamol (Herron) 500 mg uncoated tablet, 24, blister pack 80924 57349011000036105 Paracetamol (Herron) 500 mg uncoated tablet, 24 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +34621011000036102 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 200 mL, bottle 90136 34217011000036103 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 200 mL 33966011000036101 Tussinol Linctus sugar free 1 mg/mL oral liquid solution 33960011000036104 Tussinol Linctus 33960011000036104 Tussinol Linctus 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +34621011000036102 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 200 mL, bottle 10770 34217011000036103 Tussinol Linctus sugar free 1 mg/mL oral liquid solution, 200 mL 33966011000036101 Tussinol Linctus sugar free 1 mg/mL oral liquid solution 33960011000036104 Tussinol Linctus 33960011000036104 Tussinol Linctus 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +949991000168106 Frusemide (Sanofi) 40 mg tablet, 100, bottle 144452 949981000168108 Frusemide (Sanofi) 40 mg tablet, 100 949911000168102 Frusemide (Sanofi) 40 mg tablet 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +933215301000036107 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 90, bottle 163525 933204261000036100 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 90 933195451000036103 Pravastatin Sodium (DRLA) 10 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932406011000036105 pravastatin sodium 10 mg tablet, 90 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +842861000168105 Aspecillin VK 250 mg hard capsule, 25, bottle 29546 842851000168108 Aspecillin VK 250 mg hard capsule, 25 842831000168102 Aspecillin VK 250 mg hard capsule 842161000168100 Aspecillin VK 842161000168100 Aspecillin VK 842841000168106 phenoxymethylpenicillin 250 mg capsule, 25 22958011000036104 phenoxymethylpenicillin 250 mg capsule 21370011000036105 phenoxymethylpenicillin +160351000036108 Montelukast (Auro) 10 mg film-coated tablet, 14, blister pack 197206 159111000036106 Montelukast (Auro) 10 mg film-coated tablet, 14 158271000036104 Montelukast (Auro) 10 mg film-coated tablet 137341000036100 Montelukast (Auro) 137341000036100 Montelukast (Auro) 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +817201000168104 Advagraf XL 1 mg modified release capsule, 30, blister pack 269214 817191000168102 Advagraf XL 1 mg modified release capsule, 30 817171000168103 Advagraf XL 1 mg modified release capsule 817161000168109 Advagraf XL 817161000168109 Advagraf XL 817181000168100 tacrolimus 1 mg modified release capsule, 30 922099011000036107 tacrolimus 1 mg modified release capsule 21380011000036104 tacrolimus +1121271000168101 Quetiapine XR (Medis) 300 mg modified release tablet, 10, blister pack 226812 1121261000168107 Quetiapine XR (Medis) 300 mg modified release tablet, 10 1121251000168105 Quetiapine XR (Medis) 300 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51535011000036107 quetiapine 300 mg modified release tablet, 10 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +928919011000036107 Vaclovir 500 mg film-coated tablet, 80, blister pack 153822 928281011000036106 Vaclovir 500 mg film-coated tablet, 80 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929223011000036104 valaciclovir 500 mg tablet, 80 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +933213291000036107 Citalopram (IPCA) 40 mg film-coated tablet, 1000, bottle 158855 933202811000036105 Citalopram (IPCA) 40 mg film-coated tablet, 1000 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202821000036103 citalopram 40 mg tablet, 1000 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +20747011000036102 Allosig 100 mg uncoated tablet, 200, bottle 90172 13916011000036104 Allosig 100 mg uncoated tablet, 200 7202011000036106 Allosig 100 mg uncoated tablet 3682011000036100 Allosig 3682011000036100 Allosig 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +931600011000036109 Pratin 40 mg film-coated tablet, 100, bottle 163558 930761011000036101 Pratin 40 mg film-coated tablet, 100 930038011000036103 Pratin 40 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +933211131000036101 Ablavar 3.66 g/15 mL injection solution, 5 x 15 mL vials 115546 933200021000036107 Ablavar 3.66 g/15 mL injection solution, 5 x 15 mL vials 933194411000036103 Ablavar 3.66 g/15 mL injection solution, 15 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933200031000036109 gadofosveset trisodium 3.66 g/15 mL injection, 5 x 15 mL vials 933194421000036105 gadofosveset trisodium 3.66 g/15 mL injection, vial 933216361000036104 gadofosveset +933232021000036104 Idaprex 8 mg uncoated tablet, 30, blister pack 96738 933226501000036103 Idaprex 8 mg uncoated tablet, 30 933221361000036102 Idaprex 8 mg uncoated tablet 933218941000036100 Idaprex 933218941000036100 Idaprex 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +868681000168107 Atomerra 10 mg hard capsule, 56, blister pack 234799 868671000168109 Atomerra 10 mg hard capsule, 56 868601000168104 Atomerra 10 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 829971000168102 atomoxetine 10 mg capsule, 56 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1016311000168106 Aripiprazole (GX) 10 mg uncoated tablet, 30, blister pack 217213 1016301000168108 Aripiprazole (GX) 10 mg uncoated tablet, 30 1016151000168109 Aripiprazole (GX) 10 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +52723011000036107 Paracetamol Extra Plus (Guardian) uncoated tablet, 96, blister pack 114674 52524011000036105 Paracetamol Extra Plus (Guardian) uncoated tablet, 96 52403011000036109 Paracetamol Extra Plus (Guardian) uncoated tablet 52380011000036108 Paracetamol Extra Plus (Guardian) 52380011000036108 Paracetamol Extra Plus (Guardian) 52869011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 96 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +44426011000036109 Stelazine 2 mg film-coated tablet, 100, bottle 71779 13174011000036103 Stelazine 2 mg film-coated tablet, 100 6457011000036101 Stelazine 2 mg film-coated tablet 7991000168102 Stelazine 7991000168102 Stelazine 27592011000036100 trifluoperazine 2 mg tablet, 100 22931011000036109 trifluoperazine 2 mg tablet 21507011000036102 trifluoperazine +1018481000168109 Sumatriptan (WT) 100 mg film-coated tablet, 2, blister pack 160195 1018471000168106 Sumatriptan (WT) 100 mg film-coated tablet, 2 1018461000168100 Sumatriptan (WT) 100 mg film-coated tablet 1018401000168101 Sumatriptan (WT) 1018401000168101 Sumatriptan (WT) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +921990011000036106 Levovist (1 x 2.5 g vial, 1 x 20 mL inert diluent ampoule), 1 pack, composite pack 54308 921548011000036107 Levovist (1 x 2.5 g vial, 1 x 20 mL inert diluent ampoule), 1 pack 645691000168102 Levovist (inert substance) diluent, 20 mL ampoule 920911011000036105 Levovist 920911011000036105 Levovist 922664011000036100 galactose 2.498 g + palmitic acid 2.5 mg injection [2.5 g vial] (&) inert substance diluent [20 mL ampoule], 1 pack 645681000168100 inert substance diluent, 20 mL ampoule 21220011000036103 inert substance +921990011000036106 Levovist (1 x 2.5 g vial, 1 x 20 mL inert diluent ampoule), 1 pack, composite pack 54308 921548011000036107 Levovist (1 x 2.5 g vial, 1 x 20 mL inert diluent ampoule), 1 pack 921079011000036101 Levovist (galactose 2.498 g + palmitic acid 2.5 mg) powder for injection, 2.5 g vial 920911011000036105 Levovist 920911011000036105 Levovist 922664011000036100 galactose 2.498 g + palmitic acid 2.5 mg injection [2.5 g vial] (&) inert substance diluent [20 mL ampoule], 1 pack 922145011000036105 galactose 2.498 g + palmitic acid 2.5 mg injection, 2.5 g vial 922047011000036105 galactose + palmitic acid +868641000168102 Atomerra 10 mg hard capsule, 14, blister pack 234799 868631000168106 Atomerra 10 mg hard capsule, 14 868601000168104 Atomerra 10 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 829921000168103 atomoxetine 10 mg capsule, 14 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +870651000168107 Desven 100 mg modified release tablet, 14, blister pack 218076 870481000168103 Desven 100 mg modified release tablet, 14 870451000168105 Desven 100 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1108521000168103 Midazolam (Claris) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 216027 1108511000168105 Midazolam (Claris) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 1108461000168107 Midazolam (Claris) 50 mg/10 mL injection solution, 10 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +33576011000036100 Humulin 30/70 injection suspension, 1 x 10 mL vial 39656 33314011000036104 Humulin 30/70 injection suspension, 1 x 10 mL vial 5946011000036100 Humulin 30/70 injection suspension, 10 mL vial 29311000168107 Humulin 30/70 29311000168107 Humulin 30/70 27329011000036101 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, 1 x 10 mL vial 22682011000036105 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, vial 33639011000036103 insulin isophane human + insulin neutral human +933142011000036107 Elmendos 50 mg tablet, 60, bottle 98078 932936011000036104 Elmendos 50 mg tablet, 60 932779011000036104 Elmendos 50 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46989011000036103 lamotrigine 50 mg tablet, 60 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +20263011000036105 Piroxicam (Chemmart) 20 mg capsule, 25, blister pack 75041 13473011000036104 Piroxicam (Chemmart) 20 mg capsule, 25 6756011000036109 Piroxicam (Chemmart) 20 mg capsule 2915011000036100 Piroxicam (Chemmart) 2915011000036100 Piroxicam (Chemmart) 27763011000036106 piroxicam 20 mg capsule, 25 23094011000036103 piroxicam 20 mg capsule 21531011000036103 piroxicam +1014141000168100 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 5 x 100 mL vials 205927 1014131000168109 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 5 x 100 mL vials 1014081000168109 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 100 mL vial 731221000168109 Zoledronic Acid (Apo) 731221000168109 Zoledronic Acid (Apo) 90051000036104 zoledronic acid 4 mg/100 mL injection, 5 x 100 mL vials 88441000036105 zoledronic acid 4 mg/100 mL injection, vial 21790011000036102 zoledronic acid +74611000036105 Stieprox 1.5% shampoo, 60 mL, bottle 95879 72631000036108 Stieprox 1.5% shampoo, 60 mL 70071000036104 Stieprox 1.5% shampoo 3141011000036103 Stieprox 3141011000036103 Stieprox 72641000036103 ciclopirox olamine 1.5% shampoo, 60 mL 70081000036102 ciclopirox olamine 1.5% shampoo 21759011000036101 ciclopirox +50659011000036107 Omeprazole (Chemmart) 20 mg enteric tablet, 30, bottle 147431 49683011000036105 Omeprazole (Chemmart) 20 mg enteric tablet, 30 48818011000036107 Omeprazole (Chemmart) 20 mg enteric tablet 48268011000036101 Omeprazole (Chemmart) 48268011000036101 Omeprazole (Chemmart) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +50659011000036107 Omeprazole (Chemmart) 20 mg enteric tablet, 30, bottle 193618 49683011000036105 Omeprazole (Chemmart) 20 mg enteric tablet, 30 48818011000036107 Omeprazole (Chemmart) 20 mg enteric tablet 48268011000036101 Omeprazole (Chemmart) 48268011000036101 Omeprazole (Chemmart) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +933215381000036101 Isotretinoin (SCP) 10 mg soft capsule, 60, blister pack 165116 933204811000036101 Isotretinoin (SCP) 10 mg soft capsule, 60 933195771000036100 Isotretinoin (SCP) 10 mg soft capsule 933193461000036104 Isotretinoin (SCP) 933193461000036104 Isotretinoin (SCP) 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +722861000168105 Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL, injection device 66128 722851000168108 Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL 722831000168102 Intron A Redipen 60 million units/1.2 mL injection solution 30001000168103 Intron A Redipen 30001000168103 Intron A Redipen 722841000168106 interferon alfa-2b 60 million units/1.2 mL injection, 1.2 mL 722821000168100 interferon alfa-2b 60 million units/1.2 mL injection 21525011000036103 interferon alfa-2b +32552011000036105 Meloxibell 7.5 mg uncoated tablet, 30, blister pack 127413 32344011000036101 Meloxibell 7.5 mg uncoated tablet, 30 32221011000036105 Meloxibell 7.5 mg uncoated tablet 32181011000036104 Meloxibell 32181011000036104 Meloxibell 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +881251000168105 Actonate Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Aventis Pharma) tablets), 7, blister pack 163756 881241000168108 Actonate Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Aventis Pharma) tablets), 7 881231000168104 Calcium Carbonate (Aventis Pharma) 1.25 g (calcium 500 mg) film-coated tablet 881151000168103 Actonate Combi 881221000168102 Calcium Carbonate (Aventis Pharma) 852571000168104 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +881251000168105 Actonate Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Aventis Pharma) tablets), 7, blister pack 163756 881241000168108 Actonate Combi (1 x Actonel Once-a-Week tablet, 6 x Calcium Carbonate (Aventis Pharma) tablets), 7 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 881151000168103 Actonate Combi 700024831000036105 Actonel Once-a-Week 852571000168104 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +925297011000036105 Exforge 5/320 film-coated tablet, 30, blister pack 161820 924834011000036107 Exforge 5/320 film-coated tablet, 30 924523011000036107 Exforge 5/320 film-coated tablet 24141000168109 Exforge 5/320 24141000168109 Exforge 5/320 925432011000036100 amlodipine 5 mg + valsartan 320 mg tablet, 30 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +61676011000036108 Finacea 15% gel, 30 g, tube 97747 57598011000036106 Finacea 15% gel, 30 g 54359011000036100 Finacea 15% gel 53281011000036102 Finacea 53281011000036102 Finacea 63949011000036105 azelaic acid 15% gel, 30 g 62107011000036102 azelaic acid 15% gel 61741011000036106 azelaic acid +50269011000036100 Proguide (66000780) red 18 cm to 22 cm two layer bandage, 1, carton 49517011000036108 Proguide (66000780) red 18 cm to 22 cm two layer bandage, 1 48527011000036101 Proguide (66000780) red 18 cm to 22 cm two layer bandage 57961000168103 Proguide (66000780) 57961000168103 Proguide (66000780) 51465011000036107 bandage compression 18 cm to 22 cm two layer bandage, 1 50972011000036104 bandage compression 18 cm to 22 cm two layer bandage 50716011000036103 bandage compression +782481000168107 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 10 vials 209478 782471000168109 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 10 vials 782421000168108 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 470 mg vial 782401000168104 Thiopental Sodium (Omegapharm) 782401000168104 Thiopental Sodium (Omegapharm) 782461000168103 thiopental sodium 470 mg injection, 10 vials 782411000168101 thiopental sodium 470 mg injection, vial 44938011000036109 thiopental +973331000168109 Pregabalin (Teva) 25 mg hard capsule, 14, blister pack 229552 973321000168106 Pregabalin (Teva) 25 mg hard capsule, 14 973311000168104 Pregabalin (Teva) 25 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +85021011000036109 Metformin Hydrochloride (GA) 850 mg film-coated tablet, 60, blister pack 147644 84887011000036101 Metformin Hydrochloride (GA) 850 mg film-coated tablet, 60 84783011000036107 Metformin Hydrochloride (GA) 850 mg film-coated tablet 65112011000036103 Metformin Hydrochloride (GA) 65112011000036103 Metformin Hydrochloride (GA) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +50359011000036102 Surepress Absorbent (650948) 10 cm x 3 m bandage, 1, carton 49297011000036102 Surepress Absorbent (650948) 10 cm x 3 m bandage, 1 48529011000036108 Surepress Absorbent (650948) 10 cm x 3 m bandage 29911000168106 Surepress Absorbent (650948) 29911000168106 Surepress Absorbent (650948) 51283011000036108 bandage absorbent wool 10 cm x 3 m bandage, 1 50812011000036100 bandage absorbent wool 10 cm x 3 m bandage 50749011000036104 bandage absorbent wool +61680011000036104 Panafen IB 200 mg film-coated tablet, 12, blister pack 97858 57602011000036102 Panafen IB 200 mg film-coated tablet, 12 54360011000036104 Panafen IB 200 mg film-coated tablet 9381000168107 Panafen IB 9381000168107 Panafen IB 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +68855011000036104 Bosisto's Eucalyptus Rub cream, 100 g, tube 10909 66570011000036104 Bosisto's Eucalyptus Rub cream, 100 g 65505011000036103 Bosisto's Eucalyptus Rub cream 65060011000036108 Bosisto's Eucalyptus Rub 65060011000036108 Bosisto's Eucalyptus Rub 71293011000036109 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream, 100 g 69935011000036105 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +926957011000036102 Tramadol SR (Sandoz) 150 mg modified release tablet, 20, blister pack 99252 926351011000036104 Tramadol SR (Sandoz) 150 mg modified release tablet, 20 925778011000036106 Tramadol SR (Sandoz) 150 mg modified release tablet 32631000168103 Tramadol SR (Sandoz) 32631000168103 Tramadol SR (Sandoz) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +830111000168100 Atomoxetine (Apo) 100 mg hard capsule, 7, blister pack 234803 830101000168103 Atomoxetine (Apo) 100 mg hard capsule, 7 830091000168108 Atomoxetine (Apo) 100 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +60545011000036101 Panadeine Caplet uncoated tablet, 48, blister pack 152840 56503011000036100 Panadeine Caplet uncoated tablet, 48 53943011000036106 Panadeine Caplet uncoated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +18978011000036106 Timoptol 0.25% eye drops solution, 5 mL, bottle 28776 12286011000036108 Timoptol 0.25% eye drops solution, 5 mL 5326011000036108 Timoptol 0.25% eye drops solution 25031000168102 Timoptol 25031000168102 Timoptol 27044011000036100 timolol 0.25% eye drops, 5 mL 22596011000036104 timolol 0.25% eye drops 21318011000036100 timolol +933230331000036101 Citalopram (GA) 20 mg film-coated tablet, 7, blister pack 158852 933224371000036107 Citalopram (GA) 20 mg film-coated tablet, 7 933220071000036103 Citalopram (GA) 20 mg film-coated tablet 933219141000036105 Citalopram (GA) 933219141000036105 Citalopram (GA) 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +812771000168104 Citalopram (Amneal) 40 mg film-coated tablet, 84, blister pack 158883 812761000168105 Citalopram (Amneal) 40 mg film-coated tablet, 84 812671000168108 Citalopram (Amneal) 40 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933202951000036103 citalopram 40 mg tablet, 84 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1117421000168104 Quetiapine XR (Amneal) 300 mg modified release tablet, 60, blister pack 278900 1117411000168106 Quetiapine XR (Amneal) 300 mg modified release tablet, 60 1117401000168108 Quetiapine XR (Amneal) 300 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +20246011000036105 Mitozantrone (Pfizer (Perth)) 10 mg/5 mL concentrated injection, 5 mL vial 74509 13457011000036106 Mitozantrone (Pfizer (Perth)) 10 mg/5 mL concentrated injection, 5 mL vial 6739011000036104 Mitozantrone (Pfizer (Perth)) 10 mg/5 mL concentrated injection, 5 mL vial 4370011000036102 Mitozantrone (Pfizer (Perth)) 4370011000036102 Mitozantrone (Pfizer (Perth)) 27755011000036101 mitozantrone 10 mg/5 mL injection, 5 mL vial 23086011000036105 mitozantrone 10 mg/5 mL injection, vial 21652011000036102 mitozantrone +1007931000168100 Zetin 25 mg hard capsule, 100, blister pack 196004 1007921000168103 Zetin 25 mg hard capsule, 100 1007891000168108 Zetin 25 mg hard capsule 1007831000168109 Zetin 1007831000168109 Zetin 27278011000036103 acitretin 25 mg capsule, 100 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +60361011000036109 Nurofen Back Pain 200 mg film-coated tablet, 16, blister pack 142080 56320011000036102 Nurofen Back Pain 200 mg film-coated tablet, 16 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63307011000036101 ibuprofen 200 mg tablet, 16 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933213051000036109 Pantoprazole (A) 20 mg enteric tablet, 30, blister pack 158202 933202721000036106 Pantoprazole (A) 20 mg enteric tablet, 30 933195341000036108 Pantoprazole (A) 20 mg enteric tablet 933193241000036104 Pantoprazole (A) 933193241000036104 Pantoprazole (A) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +59688011000036106 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 50 mL, bottle 10549 55713011000036100 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution, 50 mL 53625011000036105 Duro-Tuss Dry Cough Liquid Forte 3 mg/mL oral liquid solution 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 53493011000036101 Duro-Tuss Dry Cough Liquid Forte 63109011000036101 pholcodine 3 mg/mL oral liquid, 50 mL 61858011000036102 pholcodine 3 mg/mL oral liquid 21705011000036108 pholcodine +74822011000036105 Lisinopril (Ranbaxy) 5 mg uncoated tablet, 30, blister pack 153189 74309011000036106 Lisinopril (Ranbaxy) 5 mg uncoated tablet, 30 73809011000036106 Lisinopril (Ranbaxy) 5 mg uncoated tablet 73751011000036103 Lisinopril (Ranbaxy) 73751011000036103 Lisinopril (Ranbaxy) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +60639011000036109 Benzac AC 10% modified gel, 10 g, tube 25268 56597011000036106 Benzac AC 10% modified gel, 10 g 53996011000036109 Benzac AC 10% modified gel 17681000168105 Benzac AC 17681000168105 Benzac AC 63449011000036108 benzoyl peroxide 10% modified gel, 10 g 61972011000036105 benzoyl peroxide 10% modified gel 61709011000036104 benzoyl peroxide +971241000168105 Glivanib 100 mg hard capsule, 120, blister pack 285899 971231000168101 Glivanib 100 mg hard capsule, 120 971141000168102 Glivanib 100 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 828901000168100 imatinib 100 mg capsule, 120 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +44195011000036105 Aerrane 1 mL/mL inhalation solution, 250 mL, bottle 55105 41671011000036109 Aerrane 1 mL/mL inhalation solution, 250 mL 40135011000036104 Aerrane 1 mL/mL inhalation solution 39640011000036105 Aerrane 39640011000036105 Aerrane 46488011000036109 isoflurane 1 mL/mL inhalation solution, 250 mL 45182011000036107 isoflurane 1 mL/mL inhalation solution 37776011000036109 isoflurane +19732011000036100 Xenical 120 mg hard capsule, 84, blister pack 61598 12985011000036102 Xenical 120 mg hard capsule, 84 6274011000036106 Xenical 120 mg hard capsule 4256011000036106 Xenical 4256011000036106 Xenical 27485011000036101 orlistat 120 mg capsule, 84 22831011000036103 orlistat 120 mg capsule 21581011000036109 orlistat +77261000036101 Zatamil 0.1% ointment, 45 g, tube 195416 76951000036106 Zatamil 0.1% ointment, 45 g 76751000036109 Zatamil 0.1% ointment 16071000168103 Zatamil 16071000168103 Zatamil 27113011000036103 mometasone furoate 0.1% ointment, 45 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +1108841000168106 Midazolam (GenRx) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 217665 1108831000168102 Midazolam (GenRx) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1108821000168100 Midazolam (GenRx) 15 mg/3 mL injection solution, 3 mL ampoule 1108721000168106 Midazolam (GenRx) 1108721000168106 Midazolam (GenRx) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +799881000168102 Abyraz 20 mg uncoated tablet, 20, blister pack 159505 799871000168100 Abyraz 20 mg uncoated tablet, 20 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799861000168106 aripiprazole 20 mg tablet, 20 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1005801000168107 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 190541 1005791000168106 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 1005781000168108 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 20 mL ampoule 728591000168104 Ropivacaine 0.2% (Actavis) 728591000168104 Ropivacaine 0.2% (Actavis) 1004601000168107 ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules 1004581000168103 ropivacaine hydrochloride 40 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +868161000168107 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 16847 868151000168105 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 868131000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 10581000168107 Dianeal PD-4 with Glucose 2.5% 10581000168107 Dianeal PD-4 with Glucose 2.5% 868141000168108 glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag 868121000168102 glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +913671000168106 Cirofaxin 250 mg film-coated tablet, 14, blister pack 114043 913661000168100 Cirofaxin 250 mg film-coated tablet, 14 913631000168108 Cirofaxin 250 mg film-coated tablet 933240751000036107 Cirofaxin 933240751000036107 Cirofaxin 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +1042451000168109 Nicotine (Amcal) 4 mg lozenge, 96, blister pack 213240 1042441000168107 Nicotine (Amcal) 4 mg lozenge, 96 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897741000168105 nicotine 4 mg lozenge, 96 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +923892011000036107 Nicorette Icy Mint 4 mg chewing gum, 105, blister pack 165908 923436011000036107 Nicorette Icy Mint 4 mg chewing gum, 105 923082011000036107 Nicorette Icy Mint 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87233011000036100 nicotine 4 mg gum, 105 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +61590011000036108 Iprofen 100 mg/5 mL oral liquid suspension, 100 mL, bottle 95345 57512011000036109 Iprofen 100 mg/5 mL oral liquid suspension, 100 mL 54332011000036109 Iprofen 100 mg/5 mL oral liquid suspension, 5 mL 53363011000036105 Iprofen 53363011000036105 Iprofen 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +876861000168108 Betnovate-1/2 0.05% cream, 30 g, tube 12488 876851000168106 Betnovate-1/2 0.05% cream, 30 g 5450011000036104 Betnovate-1/2 0.05% cream 36901000168100 Betnovate-1/2 36901000168100 Betnovate-1/2 876841000168109 betamethasone (as valerate) 0.05% cream, 30 g 23355011000036108 betamethasone (as valerate) 0.05% cream 21366011000036103 betamethasone valerate +20730011000036102 Allopurinol (Chemmart) 100 mg uncoated tablet, 200, bottle 83097 13899011000036102 Allopurinol (Chemmart) 100 mg uncoated tablet, 200 7185011000036102 Allopurinol (Chemmart) 100 mg uncoated tablet 4158011000036107 Allopurinol (Chemmart) 4158011000036107 Allopurinol (Chemmart) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +20730011000036102 Allopurinol (Chemmart) 100 mg uncoated tablet, 200, bottle 219912 13899011000036102 Allopurinol (Chemmart) 100 mg uncoated tablet, 200 7185011000036102 Allopurinol (Chemmart) 100 mg uncoated tablet 4158011000036107 Allopurinol (Chemmart) 4158011000036107 Allopurinol (Chemmart) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +50440011000036100 Risperidone (Apo) 2 mg film-coated tablet, 60, bottle 127611 49549011000036109 Risperidone (Apo) 2 mg film-coated tablet, 60 48712011000036107 Risperidone (Apo) 2 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +688181000168109 Hepasol oral liquid solution, 500 mL, bottle 10754 688171000168106 Hepasol oral liquid solution, 500 mL 688121000168105 Hepasol oral liquid solution, 10 mL 60271000036103 Hepasol 60271000036103 Hepasol 688161000168100 iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 500 mL 688111000168103 iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid 688101000168101 iron + calcium + potassium + sodium + manganese + thiamine + bovine liver +17843011000036104 Resonium A 999.3 mg/g powder, 454 g, jar 15497 12097011000036100 Resonium A 999.3 mg/g powder, 454 g 5039011000036103 Resonium A 999.3 mg/g powder 55791000168100 Resonium A 55791000168100 Resonium A 26908011000036107 sodium polystyrene sulfonate 999.3 mg/g powder, 454 g 22285011000036100 sodium polystyrene sulfonate 999.3 mg/g powder 21477011000036100 sodium polystyrene sulfonate +671641000168109 Perindopril Erbumine Combi 4/1.25 (Actavis) uncoated tablet, 30, blister pack 214330 671631000168100 Perindopril Erbumine Combi 4/1.25 (Actavis) uncoated tablet, 30 671621000168103 Perindopril Erbumine Combi 4/1.25 (Actavis) uncoated tablet 671611000168105 Perindopril Erbumine Combi 4/1.25 (Actavis) 671611000168105 Perindopril Erbumine Combi 4/1.25 (Actavis) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +881911000168102 Carboplatin (Accord) 50 mg/5 mL injection solution, 5 mL vial 215852 881901000168100 Carboplatin (Accord) 50 mg/5 mL injection solution, 5 mL vial 881891000168104 Carboplatin (Accord) 50 mg/5 mL injection solution, 5 mL vial 881881000168102 Carboplatin (Accord) 881881000168102 Carboplatin (Accord) 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +765971000168106 Ursodox (GH) 250 mg hard capsule, 100, blister pack 232480 765961000168100 Ursodox (GH) 250 mg hard capsule, 100 765951000168102 Ursodox (GH) 250 mg hard capsule 765941000168104 Ursodox (GH) 765941000168104 Ursodox (GH) 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +932321000168101 Centevo 50/12.5/200 mg film-coated tablet, 250, bottle 238152 932311000168108 Centevo 50/12.5/200 mg film-coated tablet, 250 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932301000168105 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 250 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +938811000168103 Celecoxib (Ran) 200 mg hard capsule, 60, blister pack 212787 938801000168101 Celecoxib (Ran) 200 mg hard capsule, 60 938691000168108 Celecoxib (Ran) 200 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +953921000168109 Aggrastat 12.5 mg/250 mL injection solution, 250 mL bag 75456 953911000168102 Aggrastat 12.5 mg/250 mL injection solution, 250 mL bag 953891000168104 Aggrastat 12.5 mg/250 mL injection solution, 250 mL bag 3644011000036101 Aggrastat 3644011000036101 Aggrastat 953901000168100 tirofiban 12.5 mg/250 mL injection, 250 mL bag 953881000168102 tirofiban 12.5 mg/250 mL injection, bag 21609011000036103 tirofiban +850981000168105 Atropt 1% eye drops solution, 15 mL, bottle 19648 850971000168107 Atropt 1% eye drops solution, 15 mL 850951000168103 Atropt 1% eye drops solution 4364011000036101 Atropt 4364011000036101 Atropt 850961000168101 atropine sulfate monohydrate 1% eye drops, 15 mL 850941000168100 atropine sulfate monohydrate 1% eye drops 933232141000036108 atropine sulfate monohydrate +33559011000036106 Cephabell 500 mg hard capsule, 20, blister pack 139045 33297011000036101 Cephabell 500 mg hard capsule, 20 33059011000036108 Cephabell 500 mg hard capsule 32988011000036106 Cephabell 32988011000036106 Cephabell 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +60155011000036107 Pevaryl 1% cream, 20 g, tube 12996 56114011000036108 Pevaryl 1% cream, 20 g 53794011000036108 Pevaryl 1% cream 8501000168104 Pevaryl 8501000168104 Pevaryl 63221011000036107 econazole nitrate 1% cream, 20 g 61893011000036101 econazole nitrate 1% cream 37773011000036103 econazole +1020171000168109 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 50, blister pack 190327 1020161000168103 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 50 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82551011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 50 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1022321000168109 Butafen 200 mg film-coated tablet, 96, blister pack 155484 1022311000168102 Butafen 200 mg film-coated tablet, 96 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +716991000168104 Omepro 20 mg enteric capsule, 90, bottle 167314 716971000168100 Omepro 20 mg enteric capsule, 90 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716961000168106 omeprazole 20 mg enteric capsule, 90 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +61213011000036107 Strepfen Intensive cherry 8.75 mg lozenge, 4, blister pack 76192 57149011000036100 Strepfen Intensive cherry 8.75 mg lozenge, 4 54217011000036109 Strepfen Intensive cherry 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63910011000036108 flurbiprofen 8.75 mg lozenge, 4 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +1001441000168109 Pregabalin (Apo) 225 mg hard capsule, 500, bottle 193253 1001431000168100 Pregabalin (Apo) 225 mg hard capsule, 500 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1001421000168103 pregabalin 225 mg capsule, 500 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +50436011000036101 Risperidone (GA) 4 mg film-coated tablet, 60, bottle 127863 49556011000036103 Risperidone (GA) 4 mg film-coated tablet, 60 48660011000036101 Risperidone (GA) 4 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +60061011000036105 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 50 mL, bottle 124631 56023011000036109 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 50 mL 53761011000036108 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 5 mL 35851000168104 Paracetamol 1 to 5 Years (Priceline) 35851000168104 Paracetamol 1 to 5 Years (Priceline) 63817011000036100 paracetamol 120 mg/5 mL oral liquid, 50 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +44028011000036101 Doxorubicin Hydrochloride (DBL) 20 mg/10 mL injection solution, 10 mL vial 47280 41517011000036102 Doxorubicin Hydrochloride (DBL) 20 mg/10 mL injection solution, 10 mL vial 40031011000036105 Doxorubicin Hydrochloride (DBL) 20 mg/10 mL injection solution, 10 mL vial 3549011000036106 Doxorubicin Hydrochloride (DBL) 3549011000036106 Doxorubicin Hydrochloride (DBL) 27168011000036109 doxorubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22530011000036106 doxorubicin hydrochloride 20 mg/10 mL injection, vial 21638011000036100 doxorubicin +20216011000036100 Coversyl Plus 4/1.25 uncoated tablet, 30, blister pack 74137 13434011000036104 Coversyl Plus 4/1.25 uncoated tablet, 30 6715011000036109 Coversyl Plus 4/1.25 uncoated tablet 61441000168107 Coversyl Plus 4/1.25 61441000168107 Coversyl Plus 4/1.25 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +43822011000036100 Zedd 500 mg film-coated tablet, 2, blister pack 107602 41158011000036103 Zedd 500 mg film-coated tablet, 2 39959011000036102 Zedd 500 mg film-coated tablet 39708011000036106 Zedd 39708011000036106 Zedd 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +77195011000036109 Readi-Cat-2 21 mg/mL oral liquid suspension, 1.9 L, bottle 129553 76611011000036108 Readi-Cat-2 21 mg/mL oral liquid suspension, 1.9 L 76063011000036103 Readi-Cat-2 21 mg/mL oral liquid suspension 28311000168102 Readi-Cat-2 28311000168102 Readi-Cat-2 78164011000036103 barium sulfate 21 mg/mL oral liquid, 1.9 L 77522011000036101 barium sulfate 21 mg/mL oral liquid 77454011000036104 barium +870371000168108 Desven 50 mg modified release tablet, 7, bottle 218066 870361000168102 Desven 50 mg modified release tablet, 7 870351000168104 Desven 50 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1082981000168100 Minirin 10 microgram/actuation nasal spray, 60 actuations, pump pack 59320 12906011000036108 Minirin 10 microgram/actuation nasal spray, 60 actuations 6196011000036109 Minirin 10 microgram/actuation nasal spray, actuation 13491000168101 Minirin 13491000168101 Minirin 27429011000036106 desmopressin acetate 10 microgram/actuation nasal spray, 60 actuations 22776011000036108 desmopressin acetate 10 microgram/actuation nasal spray, actuation 21750011000036107 desmopressin +933212971000036105 Fosinopril Sodium HCTZ 10/12.5 mg (Chemmart) uncoated tablet, 30, blister pack 151947 933202771000036105 Fosinopril Sodium HCTZ 10/12.5 mg (Chemmart) uncoated tablet, 30 933194601000036102 Fosinopril Sodium HCTZ 10/12.5 mg (Chemmart) uncoated tablet 58931000168107 Fosinopril Sodium HCTZ 10/12.5 mg (Chemmart) 58931000168107 Fosinopril Sodium HCTZ 10/12.5 mg (Chemmart) 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +939491000168100 Celecoxib (Ranbaxy) 200 mg hard capsule, 20, blister pack 212788 939481000168103 Celecoxib (Ranbaxy) 200 mg hard capsule, 20 939451000168105 Celecoxib (Ranbaxy) 200 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +18627011000036108 Tolerade 10 mg sugar coated tablet, 50, blister pack 117785 11570011000036109 Tolerade 10 mg sugar coated tablet, 50 5790011000036103 Tolerade 10 mg sugar coated tablet 3602011000036101 Tolerade 3602011000036101 Tolerade 26693011000036100 imipramine hydrochloride 10 mg tablet, 50 22088011000036104 imipramine hydrochloride 10 mg tablet 21613011000036104 imipramine +50453011000036106 Mapleflex powder for oral liquid, 30 x 29 g sachets 49525011000036109 Mapleflex powder for oral liquid, 30 x 29 g sachets 174541000168107 Mapleflex powder for oral liquid, 29 g sachet 48280011000036101 Mapleflex 48280011000036101 Mapleflex 51471011000036100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 30 x 29 g sachets 171491000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 29 g sachet 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +61663011000036109 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 12, blister pack 97350 57585011000036104 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 12 54357011000036107 Paracetamol Tabsule (Herron) 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1018801000168103 Azithromycin (Apotex) 500 mg film-coated tablet, 15, blister pack 195915 1018791000168104 Azithromycin (Apotex) 500 mg film-coated tablet, 15 1018721000168101 Azithromycin (Apotex) 500 mg film-coated tablet 1018681000168107 Azithromycin (Apotex) 1018681000168107 Azithromycin (Apotex) 927345011000036101 azithromycin 500 mg tablet, 15 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +33542011000036103 Orencia 250 mg powder for injection, 1 vial 130100 33282011000036104 Orencia 250 mg powder for injection, 1 vial 33044011000036109 Orencia 250 mg powder for injection, 250 mg vial 32969011000036101 Orencia 32969011000036101 Orencia 33791011000036102 abatacept 250 mg injection, 1 vial 33663011000036106 abatacept 250 mg injection, vial 33635011000036100 abatacept +43758011000036101 Dacarbazine (Sandoz) 200 mg powder for injection, 1 vial 117568 41197011000036106 Dacarbazine (Sandoz) 200 mg powder for injection, 1 vial 39839011000036105 Dacarbazine (Sandoz) 200 mg powder for injection, 200 mg vial 39591011000036100 Dacarbazine (Sandoz) 39591011000036100 Dacarbazine (Sandoz) 46304011000036105 dacarbazine 200 mg injection, 1 vial 45064011000036109 dacarbazine 200 mg injection, vial 44890011000036108 dacarbazine +1001601000168109 Pregabalin (Apo) 100 mg hard capsule, 56, blister pack 193275 1000841000168101 Pregabalin (Apo) 100 mg hard capsule, 56 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +948031000168104 Roxithromycin (Pharmacor) 150 mg film-coated tablet, 10, blister pack 133758 948021000168102 Roxithromycin (Pharmacor) 150 mg film-coated tablet, 10 948011000168109 Roxithromycin (Pharmacor) 150 mg film-coated tablet 948001000168106 Roxithromycin (Pharmacor) 948001000168106 Roxithromycin (Pharmacor) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +1022481000168100 Allermax 50 microgram/actuation nasal spray, 140 actuations, pump pack 77401 1022471000168103 Allermax 50 microgram/actuation nasal spray, 140 actuations 1022421000168104 Allermax 50 microgram/actuation nasal spray, actuation 1022411000168106 Allermax 1022411000168106 Allermax 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +1123131000168105 Grazax 75 000 SQ-T orally disintegrating tablet, 100, blister pack 267955 1123121000168107 Grazax 75 000 SQ-T orally disintegrating tablet, 100 1123011000168104 Grazax 75 000 SQ-T orally disintegrating tablet 1120251000168103 Grazax 1120251000168103 Grazax 1123111000168100 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet, 100 1123001000168102 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet 1122991000168103 Phleum pratense pollen extract +59761011000036106 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 50, blister pack 100678 55645011000036102 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 50 53667011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet 53194011000036103 Paracetamol Pain Relief (Amcal) 53194011000036103 Paracetamol Pain Relief (Amcal) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +816961000168109 Espler 25 mg film-coated tablet, 90, blister pack 231454 816951000168107 Espler 25 mg film-coated tablet, 90 816881000168106 Espler 25 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 790491000168108 eplerenone 25 mg tablet, 90 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +973251000168108 Bosentan (Mylan) 62.5 mg film-coated tablet, 60, bottle 206778 973131000168107 Bosentan (Mylan) 62.5 mg film-coated tablet, 60 973121000168109 Bosentan (Mylan) 62.5 mg film-coated tablet 973071000168109 Bosentan (Mylan) 973071000168109 Bosentan (Mylan) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +50603011000036101 Celsentri 150 mg film-coated tablet, 180, blister pack 137329 49629011000036101 Celsentri 150 mg film-coated tablet, 180 48792011000036106 Celsentri 150 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51521011000036108 maraviroc 150 mg tablet, 180 50990011000036105 maraviroc 150 mg tablet 50741011000036103 maraviroc +59671011000036105 Cocaine Hydrochloride 1 g/g powder, 5 g, jar 55631011000036100 Cocaine Hydrochloride 1 g/g powder, 5 g 53676011000036102 Cocaine Hydrochloride 1 g/g powder 53390011000036104 Cocaine Hydrochloride 53390011000036104 Cocaine Hydrochloride 63083011000036105 cocaine 1 g/g powder, 5 g 61848011000036104 cocaine 1 g/g powder 61796011000036105 cocaine +61513011000036101 Diovan 40 mg film-coated tablet, 30, blister pack 93165 57438011000036108 Diovan 40 mg film-coated tablet, 30 54302011000036104 Diovan 40 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63856011000036105 valsartan 40 mg tablet, 30 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +720531000168101 Duodopa intestinal gel, 7 x 100 mL, bags 133452 720521000168104 Duodopa intestinal gel, 7 x 100 mL 720471000168102 Duodopa intestinal gel 72910011000036103 Duodopa 72910011000036103 Duodopa 720511000168106 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel, 7 x 100 mL 720461000168108 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel 21326011000036107 levodopa + carbidopa +774621000168106 Dimetapp Allergic Rhinitis oral liquid solution, 25 mL, bottle 231997 774611000168104 Dimetapp Allergic Rhinitis oral liquid solution, 25 mL 774601000168102 Dimetapp Allergic Rhinitis oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63603011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 25 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +928893011000036104 Trandolapril (Pharmacor) 4 mg capsule, 28, blister pack 145242 928255011000036104 Trandolapril (Pharmacor) 4 mg capsule, 28 927908011000036109 Trandolapril (Pharmacor) 4 mg capsule 927809011000036107 Trandolapril (Pharmacor) 927809011000036107 Trandolapril (Pharmacor) 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +1005921000168106 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 195804 1005911000168104 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 1005901000168102 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule 710981000168100 Ropivacaine 0.2% (Kabi) 710981000168100 Ropivacaine 0.2% (Kabi) 1004601000168107 ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules 1004581000168103 ropivacaine hydrochloride 40 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +1054651000168103 Diprosone 0.05% lotion, 30 mL, bottle 18829 1054641000168100 Diprosone 0.05% lotion, 30 mL 1054631000168109 Diprosone 0.05% lotion 10951000168106 Diprosone 10951000168106 Diprosone 1054601000168102 betamethasone (as dipropionate) 0.05% lotion, 30 mL 1054581000168106 betamethasone (as dipropionate) 0.05% lotion 21372011000036109 betamethasone dipropionate +69596011000036103 Lasonil 0.833% ointment, 5 g, tube 68250 67395011000036104 Lasonil 0.833% ointment, 5 g 65645011000036103 Lasonil 0.833% ointment 65183011000036107 Lasonil 65183011000036107 Lasonil 71930011000036109 heparinoids 0.833% ointment, 5 g 70252011000036102 heparinoids 0.833% ointment 69837011000036105 heparinoids +1087321000168103 Monofer 1 g/10 mL injection solution, 10 mL vial 290834 1087311000168105 Monofer 1 g/10 mL injection solution, 10 mL vial 1087291000168106 Monofer 1 g/10 mL injection solution, 10 mL vial 1085781000168107 Monofer 1085781000168107 Monofer 1087301000168107 iron (as ferric derisomaltose) 1 g/10 mL injection, 10 mL vial 1087281000168108 iron (as ferric derisomaltose) 1 g/10 mL injection, vial 1085791000168105 ferric derisomaltose +697491000168100 Dilart 80 mg film-coated tablet, 28, blister pack 167427 697481000168103 Dilart 80 mg film-coated tablet, 28 697471000168101 Dilart 80 mg film-coated tablet 697391000168109 Dilart 697391000168109 Dilart 63784011000036105 valsartan 80 mg tablet, 28 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +1052481000168104 Palexia SR 150 mg modified release tablet, 40, blister pack 165347 1052471000168102 Palexia SR 150 mg modified release tablet, 40 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052461000168108 tapentadol 150 mg modified release tablet, 40 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +18995011000036106 Silvazine cream, 100 g, tube 31765 12302011000036103 Silvazine cream, 100 g 5847011000036105 Silvazine cream 3826011000036100 Silvazine 3826011000036100 Silvazine 27051011000036100 silver sulfadiazine 1% + chlorhexidine gluconate 0.2% cream, 100 g 22421011000036105 silver sulfadiazine 1% + chlorhexidine gluconate 0.2% cream 21487011000036108 silver sulfadiazine + chlorhexidine +868841000168101 Simipex XR 3.75 mg modified release tablet, 30, blister pack 225578 868831000168105 Simipex XR 3.75 mg modified release tablet, 30 868801000168103 Simipex XR 3.75 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 933225461000036109 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet, 30 933220641000036103 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet 37716011000036100 pramipexole +795591000168100 Candesartan HCTZ 32/25 (Blooms The Chemist) uncoated tablet, 30, blister pack 260000 795581000168103 Candesartan HCTZ 32/25 (Blooms The Chemist) uncoated tablet, 30 795571000168101 Candesartan HCTZ 32/25 (Blooms The Chemist) uncoated tablet 795561000168107 Candesartan HCTZ 32/25 (Blooms The Chemist) 795561000168107 Candesartan HCTZ 32/25 (Blooms The Chemist) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +60138011000036102 Emla 5% cream, 5 g, tube 12886 56097011000036108 Emla 5% cream, 5 g 53788011000036102 Emla 5% cream 9941000168103 Emla 5% 9941000168103 Emla 5% 63214011000036102 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream, 5 g 61890011000036109 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream 61738011000036101 lidocaine (lignocaine) + prilocaine +870491000168100 Desven 100 mg modified release tablet, 14, bottle 218072 870481000168103 Desven 100 mg modified release tablet, 14 870451000168105 Desven 100 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1022961000168100 Bugesic Sugar Free 100 mg/5 mL oral liquid suspension, 200 mL, bottle 95346 1022951000168102 Bugesic Sugar Free 100 mg/5 mL oral liquid suspension, 200 mL 1022921000168105 Bugesic Sugar Free 100 mg/5 mL oral liquid suspension, 5 mL 53403011000036104 Bugesic 53403011000036104 Bugesic 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +69673011000036107 Nicabate Clear 21 mg/24 hours patch, 14, sachet 81035 67472011000036109 Nicabate Clear 21 mg/24 hours patch, 14 65676011000036109 Nicabate Clear 21 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71997011000036104 nicotine 21 mg/24 hours patch, 14 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +868321000168100 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 33532 868311000168107 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 868291000168108 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 45581000168107 Dianeal PD-4 with Glucose 4.25% 45581000168107 Dianeal PD-4 with Glucose 4.25% 868301000168109 glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag 868281000168105 glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +68705011000036106 Strepsils strawberry sugar free lozenge, 8, blister pack 101403 66469011000036108 Strepsils strawberry sugar free lozenge, 8 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +68872011000036109 Strepsils orange lozenge, 3, blister pack 115527 66621011000036100 Strepsils orange lozenge, 3 65531011000036107 Strepsils orange lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71523011000036106 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 3 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +160511000036100 Giotrif 40 mg film-coated tablet, 28, blister pack 201315 159291000036107 Giotrif 40 mg film-coated tablet, 28 157921000036106 Giotrif 40 mg film-coated tablet 157731000036105 Giotrif 157731000036105 Giotrif 159301000036106 afatinib 40 mg tablet, 28 157931000036108 afatinib 40 mg tablet 160671000036107 afatinib +877501000168108 Bicalutamide (CH) 50 mg film-coated tablet, 98, blister pack 129101 877491000168101 Bicalutamide (CH) 50 mg film-coated tablet, 98 877441000168109 Bicalutamide (CH) 50 mg film-coated tablet 877001000168101 Bicalutamide (CH) 877001000168101 Bicalutamide (CH) 39465011000036107 bicalutamide 50 mg tablet, 98 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +37534011000036102 Hypnovel 15 mg/3 mL injection solution, 5 x 3 mL ampoules 13727 36802011000036104 Hypnovel 15 mg/3 mL injection solution, 5 x 3 mL ampoules 36011011000036106 Hypnovel 15 mg/3 mL injection solution, 3 mL ampoule 35964011000036100 Hypnovel 35964011000036100 Hypnovel 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +19111011000036109 MS Contin 30 mg modified release tablet, 20, blister pack 43086 12416011000036109 MS Contin 30 mg modified release tablet, 20 4735011000036105 MS Contin 30 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 27107011000036109 morphine sulfate pentahydrate 30 mg modified release tablet, 20 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +18224011000036104 Doxorubicin Hydrochloride (Ebewe) 100 mg/50 mL injection, 50 mL vial 118530 11578011000036106 Doxorubicin Hydrochloride (Ebewe) 100 mg/50 mL injection, 50 mL vial 5851011000036104 Doxorubicin Hydrochloride (Ebewe) 100 mg/50 mL injection, 50 mL vial 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 2951011000036105 Doxorubicin Hydrochloride (Ebewe) 26697011000036109 doxorubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22092011000036101 doxorubicin hydrochloride 100 mg/50 mL injection, vial 21638011000036100 doxorubicin +1082941000168105 Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations, pump pack 77885 74409011000036100 Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations 73931011000036106 Rhinocort Hayfever 32 microgram/actuation nasal spray, actuation 73757011000036106 Rhinocort Hayfever 73757011000036106 Rhinocort Hayfever 75506011000036106 budesonide 32 microgram/actuation nasal spray, 120 actuations 75105011000036105 budesonide 32 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +851781000168104 Bicalutamide (Tolmar) 50 mg film-coated tablet, 84, blister pack 226975 851771000168102 Bicalutamide (Tolmar) 50 mg film-coated tablet, 84 851741000168109 Bicalutamide (Tolmar) 50 mg film-coated tablet 851731000168100 Bicalutamide (Tolmar) 851731000168100 Bicalutamide (Tolmar) 700031111000036105 bicalutamide 50 mg tablet, 84 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +673891000168103 Contour Next diagnostic strip, 25, bottle 673881000168101 Contour Next diagnostic strip, 25 673871000168104 Contour Next diagnostic strip 673861000168105 Contour Next 673861000168105 Contour Next 51469011000036109 glucose indicator blood diagnostic strip, 25 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +18160011000036103 Bricanyl Respule 5 mg/2 mL inhalation solution, 30 x 2 mL ampoules 10201 11245011000036106 Bricanyl Respule 5 mg/2 mL inhalation solution, 30 x 2 mL ampoules 5485011000036104 Bricanyl Respule 5 mg/2 mL inhalation solution, 2 mL ampoule 63211000168108 Bricanyl Respule 63211000168108 Bricanyl Respule 26565011000036105 terbutaline sulfate 5 mg/2 mL inhalation solution, 30 x 2 mL ampoules 21974011000036108 terbutaline sulfate 5 mg/2 mL inhalation solution, ampoule 21514011000036105 terbutaline +691151000168108 Amitriptyline Hydrochloride (Apo) 50 mg film-coated tablet, 50, blister pack 215367 691141000168106 Amitriptyline Hydrochloride (Apo) 50 mg film-coated tablet, 50 691131000168102 Amitriptyline Hydrochloride (Apo) 50 mg film-coated tablet 691091000168104 Amitriptyline Hydrochloride (Apo) 691091000168104 Amitriptyline Hydrochloride (Apo) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +61029011000036105 Imodium Advanced chewable tablet, 12, blister pack 235794 56972011000036107 Imodium Advanced chewable tablet, 12 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63670011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 12 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +61029011000036105 Imodium Advanced chewable tablet, 12, blister pack 66848 56972011000036107 Imodium Advanced chewable tablet, 12 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63670011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 12 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +1121121000168106 Quetiapine XR (Medis) 200 mg modified release tablet, 60, blister pack 226802 1121111000168104 Quetiapine XR (Medis) 200 mg modified release tablet, 60 1121061000168100 Quetiapine XR (Medis) 200 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +812711000168107 Citalopram (Amneal) 40 mg film-coated tablet, 14, blister pack 158883 812701000168109 Citalopram (Amneal) 40 mg film-coated tablet, 14 812671000168108 Citalopram (Amneal) 40 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933202841000036106 citalopram 40 mg tablet, 14 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +69189011000036100 Paralax 2.5 mL/5 mL oral liquid emulsion, 500 mL, bottle 19336 66989011000036109 Paralax 2.5 mL/5 mL oral liquid emulsion, 500 mL 65539011000036106 Paralax 2.5 mL/5 mL oral liquid emulsion, 5 mL 65002011000036108 Paralax 65002011000036108 Paralax 71561011000036104 liquid paraffin 2.5 mL/5 mL oral liquid, 500 mL 70118011000036107 liquid paraffin 2.5 mL/5 mL oral liquid 33623011000036103 liquid paraffin +979741000168102 Zomig 5 mg film-coated tablet, 18, blister pack 61326 979731000168106 Zomig 5 mg film-coated tablet, 18 979621000168101 Zomig 5 mg film-coated tablet 3430011000036105 Zomig 3430011000036105 Zomig 979721000168108 zolmitriptan 5 mg tablet, 18 979611000168108 zolmitriptan 5 mg tablet 21516011000036102 zolmitriptan +60939011000036108 Claratyne 10 mg effervescent tablet, 5, blister pack 62125 56893011000036103 Claratyne 10 mg effervescent tablet, 5 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63636011000036101 loratadine 10 mg effervescent tablet, 5 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +933212881000036104 Pantoprazole (Apo) 20 mg enteric tablet, 100, bottle 156339 933202521000036100 Pantoprazole (Apo) 20 mg enteric tablet, 100 933195171000036104 Pantoprazole (Apo) 20 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 46670011000036104 pantoprazole 20 mg enteric tablet, 100 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1086681000168108 Paracetamol (Beximco) 665 mg modified release tablet, 48, blister pack 281995 1086671000168105 Paracetamol (Beximco) 665 mg modified release tablet, 48 1086621000168109 Paracetamol (Beximco) 665 mg modified release tablet 1086611000168102 Paracetamol (Beximco) 1086611000168102 Paracetamol (Beximco) 1086661000168104 paracetamol 665 mg modified release tablet, 48 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +68727011000036107 Glucose (Phebra) 5% (5 g/100 mL) intravenous infusion injection, 5 x 100 mL vials 12389 66673011000036100 Glucose (Phebra) 5% (5 g/100 mL) intravenous infusion injection, 5 x 100 mL vials 65462011000036101 Glucose (Phebra) 5% (5 g/100 mL) intravenous infusion injection, 100 mL vial 65179011000036104 Glucose (Phebra) 65179011000036104 Glucose (Phebra) 71376011000036102 glucose 5% (5 g/100 mL) injection, 5 x 100 mL vials 69978011000036101 glucose 5% (5 g/100 mL) injection, vial 21354011000036103 glucose +933211451000036103 Feiba-NF 1000 U (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 104911 933200201000036106 Feiba-NF 1000 U (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack 933194271000036108 Feiba-NF 1000 U (factor VIII inhibitor bypassing fraction 1000 units) powder for injection, 1000 units vial 58141000168100 Feiba-NF 1000 U 58141000168100 Feiba-NF 1000 U 933200211000036108 factor VIII inhibitor bypassing fraction 1000 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 933194281000036105 factor VIII inhibitor bypassing fraction 1000 units injection, vial 933216341000036100 factor VIII inhibitor bypassing fraction +933211451000036103 Feiba-NF 1000 U (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 104911 933200201000036106 Feiba-NF 1000 U (1 x 1000 units vial, 1 x 20 mL inert diluent vial), 1 pack 639241000168108 Feiba-NF (inert substance) diluent, 20 mL vial 58141000168100 Feiba-NF 1000 U 43101000168106 Feiba-NF 933200211000036108 factor VIII inhibitor bypassing fraction 1000 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 639231000168104 inert substance diluent, 20 mL vial 21220011000036103 inert substance +920669011000036107 Trandolapril (GA) 2 mg hard capsule, 28, blister pack 135977 920398011000036108 Trandolapril (GA) 2 mg hard capsule, 28 920160011000036100 Trandolapril (GA) 2 mg hard capsule 920114011000036106 Trandolapril (GA) 920114011000036106 Trandolapril (GA) 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +19456011000036105 Zerit 40 mg hard capsule, 60, bottle 54301 12733011000036100 Zerit 40 mg hard capsule, 60 6028011000036106 Zerit 40 mg hard capsule 4053011000036106 Zerit 4053011000036106 Zerit 27320011000036107 stavudine 40 mg capsule, 60 22673011000036108 stavudine 40 mg capsule 21314011000036107 stavudine +87647011000036106 Sifrol ER 3 mg modified release tablet, 30, blister pack 158763 87467011000036102 Sifrol ER 3 mg modified release tablet, 30 87327011000036103 Sifrol ER 3 mg modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 87817011000036105 pramipexole dihydrochloride monohydrate 3 mg modified release tablet, 30 87761011000036101 pramipexole dihydrochloride monohydrate 3 mg modified release tablet 37716011000036100 pramipexole +69741011000036103 Clean and Clear Continuous Control Acne Cleanser 5% application, 141 g, tube 92932 67540011000036102 Clean and Clear Continuous Control Acne Cleanser 5% application, 141 g 65691011000036106 Clean and Clear Continuous Control Acne Cleanser 5% application 35511000168102 Clean and Clear Continuous Control Acne Cleanser 35511000168102 Clean and Clear Continuous Control Acne Cleanser 72041011000036109 benzoyl peroxide 5% application, 141 g 70283011000036102 benzoyl peroxide 5% application 61709011000036104 benzoyl peroxide +725511000168100 Lasix High Dose 250 mg/25 mL intravenous infusion injection, 6 x 25 mL ampoules 12408 725501000168103 Lasix High Dose 250 mg/25 mL intravenous infusion injection, 6 x 25 mL ampoules 36184011000036102 Lasix High Dose 250 mg/25 mL intravenous infusion injection, 25 mL ampoule 19131000168107 Lasix High Dose 19131000168107 Lasix High Dose 725491000168105 furosemide (frusemide) 250 mg/25 mL injection, 6 x 25 mL ampoules 37896011000036104 furosemide (frusemide) 250 mg/25 mL injection, ampoule 21329011000036103 furosemide (frusemide) +925219011000036104 Ropinirole-0.5 (Pharmacor) 500 microgram film-coated tablet, 28, blister pack 157768 924756011000036101 Ropinirole-0.5 (Pharmacor) 500 microgram film-coated tablet, 28 924461011000036108 Ropinirole-0.5 (Pharmacor) 500 microgram film-coated tablet 10421000168109 Ropinirole-0.5 (Pharmacor) 10421000168109 Ropinirole-0.5 (Pharmacor) 46970011000036103 ropinirole 500 microgram tablet, 28 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +850821000168103 Temozolomide (Amneal) 5 mg hard capsule, 20, sachet 206042 850811000168105 Temozolomide (Amneal) 5 mg hard capsule, 20 850781000168108 Temozolomide (Amneal) 5 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 164261000036106 temozolomide 5 mg capsule, 20 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +1006281000168107 Olmesartan HCTZ 20/12.5 (Apo) film-coated tablet, 30, blister pack 221116 1006271000168109 Olmesartan HCTZ 20/12.5 (Apo) film-coated tablet, 30 1006261000168103 Olmesartan HCTZ 20/12.5 (Apo) film-coated tablet 1006251000168100 Olmesartan HCTZ 20/12.5 (Apo) 1006251000168100 Olmesartan HCTZ 20/12.5 (Apo) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +1046701000168100 Buprenorphine (SDZ) 10 microgram/hour patch, 4, sachet 269677 1046691000168100 Buprenorphine (SDZ) 10 microgram/hour patch, 4 1046621000168102 Buprenorphine (SDZ) 10 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 1046681000168103 buprenorphine 10 microgram/hour patch, 4 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +1106741000168101 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 7, blister pack 119095 1106731000168105 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 7 1106721000168107 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet 1106711000168100 Zolpidem (Dr. Reddy's) 1106711000168100 Zolpidem (Dr. Reddy's) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +933247461000036103 Exemestane (Sandoz) 25 mg film-coated tablet, 90, blister pack 174337 933244311000036103 Exemestane (Sandoz) 25 mg film-coated tablet, 90 933241791000036107 Exemestane (Sandoz) 25 mg film-coated tablet 933241011000036104 Exemestane (Sandoz) 933241011000036104 Exemestane (Sandoz) 933205301000036105 exemestane 25 mg tablet, 90 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +19600011000036101 Rafen 200 mg film-coated tablet, 50, blister pack 58501 12870011000036109 Rafen 200 mg film-coated tablet, 50 6161011000036101 Rafen 200 mg film-coated tablet 4196011000036102 Rafen 4196011000036102 Rafen 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61629011000036103 Chesty Cough (Guardian) oral liquid solution, 100 mL, bottle 96917 57551011000036106 Chesty Cough (Guardian) oral liquid solution, 100 mL 54346011000036107 Chesty Cough (Guardian) oral liquid solution, 10 mL 53387011000036104 Chesty Cough (Guardian) 53387011000036104 Chesty Cough (Guardian) 63946011000036101 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 100 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +82358011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 144632 82150011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 82018011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 82540011000036101 sodium chloride 0.9% (2.25 g/250 mL) injection, 40 x 250 mL bags 70187011000036109 sodium chloride 0.9% (2.25 g/250 mL) injection, bag 21308011000036103 sodium chloride +929082011000036109 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 98, blister pack 166910 928443011000036104 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 98 927984011000036103 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929262011000036100 pioglitazone 45 mg tablet, 98 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +44610011000036101 Riamet uncoated tablet, 400, blister pack 90011 42063011000036109 Riamet uncoated tablet, 400 40343011000036108 Riamet uncoated tablet 39595011000036103 Riamet 39595011000036103 Riamet 46830011000036109 artemether 20 mg + lumefantrine 120 mg tablet, 400 45329011000036100 artemether 20 mg + lumefantrine 120 mg tablet 44970011000036105 artemether + lumefantrine +44852011000036104 Perfalgan 500 mg/50 mL intravenous infusion injection, 6 x 50 mL vials 99870 42284011000036102 Perfalgan 500 mg/50 mL intravenous infusion injection, 6 x 50 mL vials 40419011000036108 Perfalgan 500 mg/50 mL intravenous infusion injection, 50 mL vial 39596011000036105 Perfalgan 39596011000036105 Perfalgan 47035011000036100 paracetamol 500 mg/50 mL injection, 6 x 50 mL vials 45383011000036109 paracetamol 500 mg/50 mL injection, vial 21433011000036107 paracetamol +1014621000168100 Valsartan (Apotex) 160 mg film-coated tablet, 56, blister pack 185859 1014611000168107 Valsartan (Apotex) 160 mg film-coated tablet, 56 1014451000168106 Valsartan (Apotex) 160 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63791011000036106 valsartan 160 mg tablet, 56 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +1026411000168105 Pregabalin (Amneal) 75 mg hard capsule, 60, blister pack 235855 1026401000168107 Pregabalin (Amneal) 75 mg hard capsule, 60 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1092801000168102 Difflam Lozenge Raspberry Sugar Free lozenge, 32, blister pack 280644 1092791000168103 Difflam Lozenge Raspberry Sugar Free lozenge, 32 995881000168106 Difflam Lozenge Raspberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 1088241000168102 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 32 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +672201000168101 Amlodipine/Atorvastatin 5/40 (Blooms The Chemist) film-coated tablet, 30, blister pack 214344 672191000168104 Amlodipine/Atorvastatin 5/40 (Blooms The Chemist) film-coated tablet, 30 672181000168102 Amlodipine/Atorvastatin 5/40 (Blooms The Chemist) film-coated tablet 672171000168100 Amlodipine/Atorvastatin 5/40 (Blooms The Chemist) 672171000168100 Amlodipine/Atorvastatin 5/40 (Blooms The Chemist) 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +1078051000168102 Atomoxetine (AN) 5 mg hard capsule, 14, blister pack 234828 1078041000168104 Atomoxetine (AN) 5 mg hard capsule, 14 1078011000168103 Atomoxetine (AN) 5 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 976341000168105 atomoxetine 5 mg capsule, 14 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +1052391000168105 Palexia SR 150 mg modified release tablet, 60, blister pack 165347 1052381000168107 Palexia SR 150 mg modified release tablet, 60 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052371000168109 tapentadol 150 mg modified release tablet, 60 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +718271000168105 Meropenem (Ranbaxy) 500 mg powder for injection, 5 vials 167025 718261000168104 Meropenem (Ranbaxy) 500 mg powder for injection, 5 vials 718221000168109 Meropenem (Ranbaxy) 500 mg powder for injection, 500 mg vial 718151000168108 Meropenem (Ranbaxy) 718151000168108 Meropenem (Ranbaxy) 718251000168101 meropenem 500 mg injection, 5 vials 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +20643011000036102 Risperdal Consta (1 x 37.5 mg vial, 1 x 2 mL diluent syringe), 1 pack, composite pack 81490 13823011000036105 Risperdal Consta (1 x 37.5 mg vial, 1 x 2 mL diluent syringe), 1 pack 637531000168107 Risperdal Consta (inert substance) diluent, 2 mL syringe 37741000168104 Risperdal Consta 37741000168104 Risperdal Consta 27950011000036103 risperidone 37.5 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +20643011000036102 Risperdal Consta (1 x 37.5 mg vial, 1 x 2 mL diluent syringe), 1 pack, composite pack 81490 13823011000036105 Risperdal Consta (1 x 37.5 mg vial, 1 x 2 mL diluent syringe), 1 pack 7109011000036104 Risperdal Consta (risperidone 37.5 mg) modified release injection, 37.5 mg vial 37741000168104 Risperdal Consta 37741000168104 Risperdal Consta 27950011000036103 risperidone 37.5 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 23274011000036100 risperidone 37.5 mg modified release injection, vial 21338011000036109 risperidone +764281000168100 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL, bottle 29627 764271000168103 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL 648381000168101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner 65133011000036104 Neutrogena T/Gel Therapeutic Conditioner 65133011000036104 Neutrogena T/Gel Therapeutic Conditioner 764261000168109 salicylic acid 2% conditioner, 25 mL 648371000168104 salicylic acid 2% conditioner 52232011000036106 salicylic acid +1094171000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 250 mL, pump pack 281338 1094161000168102 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 250 mL 1094111000168100 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094151000168104 ethanol 70% solution, 250 mL 1094101000168103 ethanol 70% solution 69846011000036106 ethanol +922411000168102 Cephalexin (GA) 500 mg capsule, 20, blister pack 148205 922401000168100 Cephalexin (GA) 500 mg capsule, 20 922391000168102 Cephalexin (GA) 500 mg capsule 922291000168107 Cephalexin (GA) 922291000168107 Cephalexin (GA) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +21104011000036100 Toprol-XL 190 mg modified release tablet, 30, blister pack 97788 14247011000036106 Toprol-XL 190 mg modified release tablet, 30 7533011000036102 Toprol-XL 190 mg modified release tablet 32970011000036103 Toprol-XL 32970011000036103 Toprol-XL 28246011000036108 metoprolol succinate 190 mg modified release tablet, 30 23560011000036108 metoprolol succinate 190 mg modified release tablet 21662011000036107 metoprolol +1052071000168106 Palexia SR 100 mg modified release tablet, 20, blister pack 165346 1052061000168100 Palexia SR 100 mg modified release tablet, 20 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052051000168102 tapentadol 100 mg modified release tablet, 20 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +34689011000036105 Amlodipine (Terry White Chemists) 10 mg uncoated tablet, 30, bottle 135157 34273011000036104 Amlodipine (Terry White Chemists) 10 mg uncoated tablet, 30 34001011000036101 Amlodipine (Terry White Chemists) 10 mg uncoated tablet 33931011000036103 Amlodipine (Terry White Chemists) 33931011000036103 Amlodipine (Terry White Chemists) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +61318011000036109 Diovan 160 mg film-coated tablet, 14, blister pack 80871 57254011000036101 Diovan 160 mg film-coated tablet, 14 54255011000036106 Diovan 160 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63788011000036103 valsartan 160 mg tablet, 14 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +933230221000036106 Risedronate Sodium (GA) 35 mg film-coated tablet, 4, blister pack 154856 933224101000036100 Risedronate Sodium (GA) 35 mg film-coated tablet, 4 933219881000036107 Risedronate Sodium (GA) 35 mg film-coated tablet 933219031000036104 Risedronate Sodium (GA) 933219031000036104 Risedronate Sodium (GA) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +772621000168100 Diazepam (GenRx) 5 mg uncoated tablet, 50, blister pack 93667 772611000168107 Diazepam (GenRx) 5 mg uncoated tablet, 50 772601000168109 Diazepam (GenRx) 5 mg uncoated tablet 772511000168106 Diazepam (GenRx) 772511000168106 Diazepam (GenRx) 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +923711011000036100 Definity 1.1 mg/mL intravenous infusion injection, 4 vials 124808 923269011000036108 Definity 1.1 mg/mL intravenous infusion injection, 4 vials 922965011000036100 Definity 1.1 mg/mL intravenous infusion injection, vial 922907011000036106 Definity 922907011000036106 Definity 924103011000036109 perflutren 1.1 mg/mL injection, 4 vials 923943011000036103 perflutren 1.1 mg/mL injection, vial 923937011000036108 perflutren +21006011000036103 Lisinopril (Chemmart) 5 mg tablet, 30, blister pack 213399 14152011000036108 Lisinopril (Chemmart) 5 mg tablet, 30 7431011000036106 Lisinopril (Chemmart) 5 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +21006011000036103 Lisinopril (Chemmart) 5 mg tablet, 30, blister pack 143983 14152011000036108 Lisinopril (Chemmart) 5 mg tablet, 30 7431011000036106 Lisinopril (Chemmart) 5 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +21006011000036103 Lisinopril (Chemmart) 5 mg tablet, 30, blister pack 96323 14152011000036108 Lisinopril (Chemmart) 5 mg tablet, 30 7431011000036106 Lisinopril (Chemmart) 5 mg tablet 3487011000036101 Lisinopril (Chemmart) 3487011000036101 Lisinopril (Chemmart) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +1017841000168102 Arizole 5 mg uncoated tablet, 60, blister pack 198209 1017831000168106 Arizole 5 mg uncoated tablet, 60 1017651000168101 Arizole 5 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 46876011000036105 aripiprazole 5 mg tablet, 60 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +37466011000036105 Xylocaine 2% (44 mg/2.2 mL) injection solution, 100 x 2.2 mL cartridges 12437 36736011000036105 Xylocaine 2% (44 mg/2.2 mL) injection solution, 100 x 2.2 mL cartridges 36110011000036109 Xylocaine 2% (44 mg/2.2 mL) injection solution, 2.2 mL cartridge 2651000168102 Xylocaine 2651000168102 Xylocaine 38646011000036105 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) injection, 100 x 2.2 mL cartridges 37901011000036103 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) injection, cartridge 21572011000036107 lidocaine (lignocaine) +928211000168100 Lamprene 100 mg soft capsule, 1000, bottle 11037 928201000168103 Lamprene 100 mg soft capsule, 1000 928181000168104 Lamprene 100 mg soft capsule 35946011000036102 Lamprene 35946011000036102 Lamprene 928191000168101 clofazimine 100 mg capsule, 1000 928171000168102 clofazimine 100 mg capsule 37783011000036108 clofazimine +859411000168101 Zovirax Dispersible 800 mg tablet, 35, blister pack 51429 859221000168109 Zovirax Dispersible 800 mg tablet, 35 859211000168102 Zovirax Dispersible 800 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +679371000168106 Oxycodone (Sandoz) 5 mg modified release tablet, 28, blister pack 153605 679361000168100 Oxycodone (Sandoz) 5 mg modified release tablet, 28 679351000168102 Oxycodone (Sandoz) 5 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929278011000036105 oxycodone hydrochloride 5 mg modified release tablet, 28 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +52215011000036106 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 500, bottle 145178 52100011000036102 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 500 51993011000036106 Pravastatin Sodium (Apo) 80 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 52330011000036100 pravastatin sodium 80 mg tablet, 500 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +811491000168104 Afinitor 3 mg dispersible tablet, 50, blister pack 200204 811481000168102 Afinitor 3 mg dispersible tablet, 50 811431000168103 Afinitor 3 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811471000168100 everolimus 3 mg dispersible tablet, 50 811421000168101 everolimus 3 mg dispersible tablet 21615011000036103 everolimus +842141000168104 Gapentin 300 mg capsule, 100, blister pack 107494 842131000168108 Gapentin 300 mg capsule, 100 842121000168105 Gapentin 300 mg capsule 842011000168102 Gapentin 842011000168102 Gapentin 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +20280011000036100 Isomonit 60 mg modified release tablet, 30, blister pack 75241 13490011000036100 Isomonit 60 mg modified release tablet, 30 6772011000036107 Isomonit 60 mg modified release tablet 3277011000036108 Isomonit 3277011000036108 Isomonit 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +20401011000036109 Captopril (Douglas) 50 mg uncoated tablet, 90, bottle 77284 13609011000036105 Captopril (Douglas) 50 mg uncoated tablet, 90 6892011000036100 Captopril (Douglas) 50 mg uncoated tablet 4305011000036103 Captopril (Douglas) 4305011000036103 Captopril (Douglas) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +933238781000036103 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 mg (GH) uncoated tablet, 30, blister pack 147149 933235551000036108 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 mg (GH) uncoated tablet, 30 933234571000036102 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 mg (GH) uncoated tablet 12721000168101 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 mg (GH) 12721000168101 Perindopril Erbumine and Indapamide Hemihydrate 4/1.25 mg (GH) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +1092721000168100 Quitx Freshmint 4 mg chewing gum, 100, blister pack 192914 1092711000168107 Quitx Freshmint 4 mg chewing gum, 100 920993011000036107 Quitx Freshmint 4 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 1092701000168109 nicotine 4 mg gum, 100 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +775901000168107 Targin 30/15 mg modified release tablet, 60, blister pack 216280 775891000168108 Targin 30/15 mg modified release tablet, 60 775811000168104 Targin 30/15 mg modified release tablet 775791000168103 Targin 30/15 mg 775791000168103 Targin 30/15 mg 775881000168105 oxycodone hydrochloride 30 mg + naloxone hydrochloride 15 mg modified release tablet, 60 775801000168102 oxycodone hydrochloride 30 mg + naloxone hydrochloride 15 mg modified release tablet 923931011000036100 oxycodone + naloxone +879601000168104 Bupivacaine (Claris) 0.5% (100 mg/20 mL) injection solution, 20 mL vial 223238 879591000168106 Bupivacaine (Claris) 0.5% (100 mg/20 mL) injection solution, 20 mL vial 879571000168105 Bupivacaine (Claris) 0.5% (100 mg/20 mL) injection solution, 20 mL vial 879561000168104 Bupivacaine (Claris) 879561000168104 Bupivacaine (Claris) 879581000168108 bupivacaine hydrochloride 0.5% (100 mg/20 mL) injection, 20 mL vial 37911011000036101 bupivacaine hydrochloride 0.5% (100 mg/20 mL) injection, vial 37702011000036102 bupivacaine +80031011000036104 Topiramate (Sandoz) 50 mg film-coated tablet, 60, bottle 135779 79949011000036109 Topiramate (Sandoz) 50 mg film-coated tablet, 60 79912011000036106 Topiramate (Sandoz) 50 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +1111171000168101 Quetiapine (DP) 100 mg film-coated tablet, 90, blister pack 202269 1111161000168107 Quetiapine (DP) 100 mg film-coated tablet, 90 1111131000168104 Quetiapine (DP) 100 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +61387011000036106 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet, 48, blister pack 81848 57312011000036107 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet, 48 54269011000036103 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet 53218011000036108 Strong Pain Relief Plus (Pharmacy Health) 53218011000036108 Strong Pain Relief Plus (Pharmacy Health) 63803011000036107 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 48 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1106821000168101 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 28, blister pack 119095 1106811000168108 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet, 28 1106721000168107 Zolpidem (Dr. Reddy's) 10 mg film-coated tablet 1106711000168100 Zolpidem (Dr. Reddy's) 1106711000168100 Zolpidem (Dr. Reddy's) 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1018001000168107 Arizole 2 mg uncoated tablet, 60, blister pack 198211 1017991000168103 Arizole 2 mg uncoated tablet, 60 1016031000168104 Arizole 2 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 801701000168104 aripiprazole 2 mg tablet, 60 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +43550011000036104 Remodulin 100 mg/20 mL injection solution, 20 mL vial 101648 41133011000036109 Remodulin 100 mg/20 mL injection solution, 20 mL vial 39949011000036100 Remodulin 100 mg/20 mL injection solution, 20 mL vial 39717011000036108 Remodulin 39717011000036108 Remodulin 46111011000036101 treprostinil 100 mg/20 mL injection, 20 mL vial 44992011000036104 treprostinil 100 mg/20 mL injection, vial 44874011000036106 treprostinil +863791000168107 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 144672 863781000168109 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 863671000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863771000168106 glucose monohydrate 5% (12.5 g/250 mL) injection, 35 x 250 mL bags 863661000168108 glucose monohydrate 5% (12.5 g/250 mL) injection, bag 21354011000036103 glucose +19917011000036103 LPV 500 mg hard capsule, 50, blister pack 66511 13162011000036100 LPV 500 mg hard capsule, 50 6445011000036108 LPV 500 mg hard capsule 4373011000036105 LPV 4373011000036105 LPV 27621011000036105 phenoxymethylpenicillin 500 mg capsule, 50 22959011000036107 phenoxymethylpenicillin 500 mg capsule 21370011000036105 phenoxymethylpenicillin +44011011000036103 Cardizem CD 180 mg modified release capsule, 7, bottle 46824 41501011000036108 Cardizem CD 180 mg modified release capsule, 7 5585011000036107 Cardizem CD 180 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46639011000036108 diltiazem hydrochloride 180 mg modified release capsule, 7 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +926923011000036105 Anti-Inflammatory (Guardian) 1% gel, 50 g, tube 90461 926317011000036104 Anti-Inflammatory (Guardian) 1% gel, 50 g 925757011000036108 Anti-Inflammatory (Guardian) 1% gel 925541011000036102 Anti-Inflammatory (Guardian) 925541011000036102 Anti-Inflammatory (Guardian) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +742711000168101 Actaze 15 mg uncoated tablet, 7, blister pack 254272 742701000168104 Actaze 15 mg uncoated tablet, 7 742691000168104 Actaze 15 mg uncoated tablet 742601000168105 Actaze 742601000168105 Actaze 929267011000036103 pioglitazone 15 mg tablet, 7 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +1095131000168109 Ibuprofen (Genpar) 200 mg film-coated tablet, 8, blister pack 285310 1095121000168106 Ibuprofen (Genpar) 200 mg film-coated tablet, 8 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63308011000036100 ibuprofen 200 mg tablet, 8 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44374011000036108 Copaxone (28 x 20 mg vials, 28 x 1.1 mL inert diluent ampoules), 1 pack, composite pack 69547 41837011000036108 Copaxone (28 x 20 mg vials, 28 x 1.1 mL inert diluent ampoules), 1 pack 641691000168100 Copaxone (inert substance) diluent, 1.1 mL ampoule 2936011000036101 Copaxone 2936011000036101 Copaxone 46643011000036106 glatiramer acetate 20 mg injection [28 vials] (&) inert substance diluent [28 x 1.1 mL ampoules], 1 pack 641681000168103 inert substance diluent, 1.1 mL ampoule 21220011000036103 inert substance +44374011000036108 Copaxone (28 x 20 mg vials, 28 x 1.1 mL inert diluent ampoules), 1 pack, composite pack 69547 41837011000036108 Copaxone (28 x 20 mg vials, 28 x 1.1 mL inert diluent ampoules), 1 pack 40224011000036103 Copaxone (glatiramer acetate 20 mg) powder for injection, 20 mg vial 2936011000036101 Copaxone 2936011000036101 Copaxone 46643011000036106 glatiramer acetate 20 mg injection [28 vials] (&) inert substance diluent [28 x 1.1 mL ampoules], 1 pack 45254011000036106 glatiramer acetate 20 mg injection, vial 21783011000036106 glatiramer acetate +1118621000168102 Quetin 150 mg film-coated tablet, 20, blister pack 204858 1118611000168109 Quetin 150 mg film-coated tablet, 20 1118601000168106 Quetin 150 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 853211000168100 quetiapine 150 mg tablet, 20 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +868001000168107 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 16847 867991000168103 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 867971000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 10581000168107 Dianeal PD-4 with Glucose 2.5% 10581000168107 Dianeal PD-4 with Glucose 2.5% 867981000168101 glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag 867961000168105 glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +948311000168106 Ranitidine (GN) 150 mg film-coated tablet, 360, bottle 148524 948301000168108 Ranitidine (GN) 150 mg film-coated tablet, 360 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 46866011000036100 ranitidine 150 mg tablet, 360 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +931473011000036109 Paroxetine (Synthon) 20 mg film-coated tablet, 10, blister pack 152491 930652011000036106 Paroxetine (Synthon) 20 mg film-coated tablet, 10 929991011000036107 Paroxetine (Synthon) 20 mg film-coated tablet 929845011000036106 Paroxetine (Synthon) 929845011000036106 Paroxetine (Synthon) 51561011000036102 paroxetine 20 mg tablet, 10 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +43792011000036107 Vesicare 5 mg film-coated tablet, 10, blister pack 117217 41189011000036103 Vesicare 5 mg film-coated tablet, 10 39923011000036101 Vesicare 5 mg film-coated tablet 39622011000036107 Vesicare 39622011000036107 Vesicare 46152011000036103 solifenacin succinate 5 mg tablet, 10 45010011000036100 solifenacin succinate 5 mg tablet 44891011000036101 solifenacin +52768011000036109 Fluvax Junior 2009 injection suspension, 10 x 0.25 mL syringes 149127 52578011000036102 Fluvax Junior 2009 injection suspension, 10 x 0.25 mL syringes 52426011000036108 Fluvax Junior 2009 injection suspension, 0.25 mL syringe 9191000168108 Fluvax Junior 2009 9191000168108 Fluvax Junior 2009 52894011000036102 influenza trivalent child vaccine 2009 injection, 10 x 0.25 mL syringes 52814011000036103 influenza trivalent child vaccine 2009 injection, 0.25 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +1052231000168104 Palexia SR 100 mg modified release tablet, 7, blister pack 165346 1052221000168102 Palexia SR 100 mg modified release tablet, 7 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052211000168109 tapentadol 100 mg modified release tablet, 7 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +18396011000036107 Methotrexate (DBL) 5 mg/2 mL injection solution, 5 x 2 mL vials 16313 12103011000036104 Methotrexate (DBL) 5 mg/2 mL injection solution, 5 x 2 mL vials 4940011000036105 Methotrexate (DBL) 5 mg/2 mL injection solution, 2 mL vial 3375011000036108 Methotrexate (DBL) 3375011000036108 Methotrexate (DBL) 26913011000036100 methotrexate 5 mg/2 mL injection, 5 x 2 mL vials 22290011000036105 methotrexate 5 mg/2 mL injection, vial 21342011000036105 methotrexate +919441000168103 Phenobarb 30 mg uncoated tablet, 200, bottle 19758 919431000168107 Phenobarb 30 mg uncoated tablet, 200 919421000168109 Phenobarb 30 mg uncoated tablet 919411000168102 Phenobarb 919411000168102 Phenobarb 26982011000036105 phenobarbital (phenobarbitone) 30 mg tablet, 200 22355011000036100 phenobarbital (phenobarbitone) 30 mg tablet 21578011000036105 phenobarbital (phenobarbitone) +20182011000036103 Clomipramine Hydrochloride (GenRx) 25 mg film-coated tablet, 50, blister pack 73878 13405011000036106 Clomipramine Hydrochloride (GenRx) 25 mg film-coated tablet, 50 6690011000036105 Clomipramine Hydrochloride (GenRx) 25 mg film-coated tablet 4417011000036102 Clomipramine Hydrochloride (GenRx) 4417011000036102 Clomipramine Hydrochloride (GenRx) 27730011000036109 clomipramine hydrochloride 25 mg tablet, 50 23065011000036101 clomipramine hydrochloride 25 mg tablet 21897011000036104 clomipramine +44299011000036105 Stocrin 200 mg hard capsule, 42, blister pack 65481 41770011000036107 Stocrin 200 mg hard capsule, 42 6408011000036107 Stocrin 200 mg hard capsule 4246011000036109 Stocrin 4246011000036109 Stocrin 46577011000036109 efavirenz 200 mg capsule, 42 22905011000036100 efavirenz 200 mg capsule 21616011000036105 efavirenz +18903011000036107 Siguent Hycor 0.5% eye ointment, 5 g, tube 19781 12211011000036100 Siguent Hycor 0.5% eye ointment, 5 g 5722011000036108 Siguent Hycor 0.5% eye ointment 3373011000036107 Siguent Hycor 3373011000036107 Siguent Hycor 26984011000036101 hydrocortisone acetate 0.5% eye ointment, 5 g 22357011000036105 hydrocortisone acetate 0.5% eye ointment 21231011000036107 hydrocortisone acetate +730971000168108 Gabapentin (Apo) 600 mg film-coated tablet, 100, blister pack 131464 730951000168104 Gabapentin (Apo) 600 mg film-coated tablet, 100 730941000168101 Gabapentin (Apo) 600 mg film-coated tablet 42951000168101 Gabapentin (Apo) 42951000168101 Gabapentin (Apo) 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +989061000168105 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 50, blister pack 287306 989051000168108 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 50 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +989061000168105 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 50, blister pack 253293 989051000168108 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 50 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +980461000168109 Augmentin ES 600 powder for oral liquid, 150 mL, bottle 98693 980451000168107 Augmentin ES 600 powder for oral liquid, 150 mL 980191000168109 Augmentin ES 600 powder for oral liquid, 5 mL 980171000168108 Augmentin ES 600 980171000168108 Augmentin ES 600 980441000168105 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid, 150 mL 980181000168106 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +856281000168103 Alprolix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209224 856271000168101 Alprolix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 856251000168105 Alprolix (eftrenonacog alfa 1000 units) powder for injection, 1000 units vial 855751000168109 Alprolix 855751000168109 Alprolix 856261000168107 eftrenonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 856241000168108 eftrenonacog alfa 1000 units injection, vial 855831000168105 eftrenonacog alfa +856281000168103 Alprolix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209224 856271000168101 Alprolix (1 x 1000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 855861000168102 Alprolix (inert substance) diluent, 5 mL syringe 855751000168109 Alprolix 855751000168109 Alprolix 856261000168107 eftrenonacog alfa 1000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +61145011000036101 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet, 20, blister pack 73573 57088011000036107 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet, 20 54192011000036109 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet 53186011000036105 Diarrhoea Relief (Pharmacist) 53186011000036105 Diarrhoea Relief (Pharmacist) 63806011000036101 loperamide hydrochloride 2.15 mg tablet, 20 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +914081000168104 Amoxyclav 875/125 (Sandoz) film-coated tablet, 60, blister pack 255081 914071000168102 Amoxyclav 875/125 (Sandoz) film-coated tablet, 60 913901000168105 Amoxyclav 875/125 (Sandoz) film-coated tablet 913811000168102 Amoxyclav 875/125 (Sandoz) 913811000168102 Amoxyclav 875/125 (Sandoz) 914061000168108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 60 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1059691000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 20, blister pack 234468 1059681000168109 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 20 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930451000168102 rosuvastatin 5 mg tablet, 20 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +742851000168105 Pemetrexed (Juno) 500 mg powder for injection, 1 vial 223305 742841000168108 Pemetrexed (Juno) 500 mg powder for injection, 1 vial 742831000168104 Pemetrexed (Juno) 500 mg powder for injection, 500 mg vial 742771000168109 Pemetrexed (Juno) 742771000168109 Pemetrexed (Juno) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +80970011000036101 Resdone 3 mg film-coated tablet, 20, blister pack 147674 80544011000036102 Resdone 3 mg film-coated tablet, 20 80185011000036100 Resdone 3 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81626011000036109 risperidone 3 mg tablet, 20 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +18949011000036104 Orudis 100 mg suppository, 20, blister pack 27531 12257011000036100 Orudis 100 mg suppository, 20 5762011000036102 Orudis 100 mg suppository 3793011000036104 Orudis 3793011000036104 Orudis 27021011000036101 ketoprofen 100 mg suppository, 20 22394011000036109 ketoprofen 100 mg suppository 21856011000036108 ketoprofen +35657011000036103 Genteal Gel 0.3% / 0.2% eye gel, 10 g, tube 35549011000036101 Genteal Gel 0.3% / 0.2% eye gel, 10 g 35470011000036104 Genteal Gel 0.3% / 0.2% eye gel 57181000168109 Genteal Gel 0.3% / 0.2% 57181000168109 Genteal Gel 0.3% / 0.2% 35757011000036106 hypromellose 0.3% + carbomer-980 0.2% eye gel, 10 g 35699011000036103 hypromellose 0.3% + carbomer-980 0.2% eye gel 35689011000036102 hypromellose + carbomer-980 +781201000168108 Oxycodone MR (GenRx) 10 mg modified release tablet, 28, blister pack 214494 781191000168105 Oxycodone MR (GenRx) 10 mg modified release tablet, 28 781151000168100 Oxycodone MR (GenRx) 10 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +726791000168107 Byetta 5 microgram/dose injection solution, 60 doses, injection device 123609 726781000168109 Byetta 5 microgram/dose injection solution, 60 doses 726761000168100 Byetta 5 microgram/dose injection solution, dose 39607011000036103 Byetta 39607011000036103 Byetta 726771000168106 exenatide 5 microgram/dose injection, 60 doses 726751000168102 exenatide 5 microgram/dose injection, dose 44897011000036109 exenatide +1110121000168106 Nicotinell Tropical Fruit 4 mg chewing gum, 192, blister pack 279618 1110111000168104 Nicotinell Tropical Fruit 4 mg chewing gum, 192 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71518011000036107 nicotine 4 mg gum, 192 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +842221000168101 Aspecillin VK 500 mg film-coated tablet, 4, bottle 200137 842211000168108 Aspecillin VK 500 mg film-coated tablet, 4 842171000168106 Aspecillin VK 500 mg film-coated tablet 842161000168100 Aspecillin VK 842161000168100 Aspecillin VK 842201000168105 phenoxymethylpenicillin 500 mg tablet, 4 22839011000036104 phenoxymethylpenicillin 500 mg tablet 21370011000036105 phenoxymethylpenicillin +1006241000168102 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 195809 1006231000168106 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 1006221000168108 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule 711091000168107 Ropivacaine 1% (Kabi) 711091000168107 Ropivacaine 1% (Kabi) 1005051000168104 ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules 1005031000168105 ropivacaine hydrochloride 200 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +933212731000036105 Ciprofloxacin (GN) 750 mg film-coated tablet, 8, blister pack 148853 933202471000036102 Ciprofloxacin (GN) 750 mg film-coated tablet, 8 933195381000036104 Ciprofloxacin (GN) 750 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 87798011000036108 ciprofloxacin 750 mg tablet, 8 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +77340011000036101 Water for Injections (Pfizer (Perth)) injection solution, 50 x 5 mL ampoules 49286 76756011000036103 Water for Injections (Pfizer (Perth)) injection solution, 50 x 5 mL ampoules 76166011000036101 Water for Injections (Pfizer (Perth)) injection solution, 5 mL ampoule 75983011000036105 Water for Injections (Pfizer (Perth)) 75983011000036105 Water for Injections (Pfizer (Perth)) 78325011000036104 water for injections injection, 50 x 5 mL ampoules 77607011000036102 water for injections injection, 5 mL ampoule 77431011000036101 water for injections +43982011000036102 Provera 2.5 mg uncoated tablet, 56, blister pack 42932 41474011000036109 Provera 2.5 mg uncoated tablet, 56 39999011000036109 Provera 2.5 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 46320011000036109 medroxyprogesterone acetate 2.5 mg tablet, 56 45075011000036104 medroxyprogesterone acetate 2.5 mg tablet 21378011000036107 medroxyprogesterone +948441000168103 Tenopt 0.25% eye drops solution, 5 mL, bottle 19794 12212011000036106 Tenopt 0.25% eye drops solution, 5 mL 5805011000036107 Tenopt 0.25% eye drops solution 4366011000036109 Tenopt 4366011000036109 Tenopt 27044011000036100 timolol 0.25% eye drops, 5 mL 22596011000036104 timolol 0.25% eye drops 21318011000036100 timolol +1072661000168107 Pantoprazole (Generic Health) 40 mg enteric tablet, 28, blister pack 191033 1072651000168105 Pantoprazole (Generic Health) 40 mg enteric tablet, 28 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46657011000036100 pantoprazole 40 mg enteric tablet, 28 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +765331000168107 Fraxiparine 3800 anti-Xa units/0.4 mL injection solution, 2 x 0.4 mL syringes 51310 765321000168109 Fraxiparine 3800 anti-Xa units/0.4 mL injection solution, 2 x 0.4 mL syringes 765301000168100 Fraxiparine 3800 anti-Xa units/0.4 mL injection solution, 0.4 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765311000168102 nadroparin calcium 3800 anti-Xa units/0.4 mL injection, 2 x 0.4 mL syringes 765291000168101 nadroparin calcium 3800 anti-Xa units/0.4 mL injection, syringe 765071000168107 nadroparin +922731000168102 Celecoxib (CH) 200 mg hard capsule, 30, blister pack 206841 922721000168100 Celecoxib (CH) 200 mg hard capsule, 30 922711000168107 Celecoxib (CH) 200 mg hard capsule 922701000168109 Celecoxib (CH) 922701000168109 Celecoxib (CH) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +746961000168104 Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule 195338 746951000168101 Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule 746941000168103 Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule 134061000036107 Granisetron (AFT) 134061000036107 Granisetron (AFT) 28229011000036102 granisetron 3 mg/3 mL injection, 3 mL ampoule 23543011000036106 granisetron 3 mg/3 mL injection, ampoule 21431011000036106 granisetron +66341000036104 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 100 mL, bottle 52420 63851000036101 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application, 100 mL 60881000036102 Tea Tree Oil (Australian Bush Oil Co) 1 mL/mL application 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 60421000036101 Tea Tree Oil (Australian Bush Oil Co) 63411000036102 melaleuca oil 1 mL/mL application, 100 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +921938011000036100 Hydrogen Peroxide (Gold Cross) 6% solution, 100 mL, bottle 27241 921497011000036105 Hydrogen Peroxide (Gold Cross) 6% solution, 100 mL 921039011000036103 Hydrogen Peroxide (Gold Cross) 6% solution 920953011000036101 Hydrogen Peroxide (Gold Cross) 920953011000036101 Hydrogen Peroxide (Gold Cross) 78184011000036100 hydrogen peroxide 6% solution, 100 mL 77534011000036107 hydrogen peroxide 6% solution 69793011000036105 hydrogen peroxide +77277011000036106 Indigo Carmine (Phebra) 20 mg/5 mL injection solution, 5 x 5 mL ampoules 16350 76693011000036105 Indigo Carmine (Phebra) 20 mg/5 mL injection solution, 5 x 5 mL ampoules 76120011000036107 Indigo Carmine (Phebra) 20 mg/5 mL injection solution, 5 mL ampoule 75964011000036109 Indigo Carmine (Phebra) 75964011000036109 Indigo Carmine (Phebra) 78208011000036108 indigo carmine 20 mg/5 mL injection, 5 x 5 mL ampoules 77543011000036106 indigo carmine 20 mg/5 mL injection, ampoule 77462011000036103 indigo carmine +19433011000036103 Lioresal 10 mg/20 mL intrathecal injection, 20 mL ampoule 53835 12715011000036107 Lioresal 10 mg/20 mL intrathecal injection, 20 mL ampoule 5691011000036100 Lioresal 10 mg/20 mL intrathecal injection, 20 mL ampoule 3860011000036106 Lioresal 3860011000036106 Lioresal 27307011000036102 baclofen 10 mg/20 mL intrathecal injection, 20 mL ampoule 22660011000036109 baclofen 10 mg/20 mL intrathecal injection, ampoule 21227011000036102 baclofen +33508011000036105 Allereze 10 mg film-coated tablet, 30, blister pack 117492 33251011000036100 Allereze 10 mg film-coated tablet, 30 33019011000036102 Allereze 10 mg film-coated tablet 32966011000036105 Allereze 32966011000036105 Allereze 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +43769011000036104 Sutent 25 mg capsule, 10, bottle 123146 41285011000036102 Sutent 25 mg capsule, 10 39938011000036109 Sutent 25 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46220011000036103 sunitinib 25 mg capsule, 10 45035011000036101 sunitinib 25 mg capsule 44859011000036109 sunitinib +1115501000168103 Quetiapine (Ascent) 300 mg film-coated tablet, 60, blister pack 202261 1115491000168105 Quetiapine (Ascent) 300 mg film-coated tablet, 60 1115461000168103 Quetiapine (Ascent) 300 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +926727011000036107 Ibuprofen (Coles) 200 mg film-coated tablet, 24, blister pack 104345 926062011000036101 Ibuprofen (Coles) 200 mg film-coated tablet, 24 925626011000036102 Ibuprofen (Coles) 200 mg film-coated tablet 924365011000036101 Ibuprofen (Coles) 924365011000036101 Ibuprofen (Coles) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1017911000168107 Valaciclovir 1000 (Apotex) 1 g film-coated tablet, 4, blister pack 158912 1017901000168109 Valaciclovir 1000 (Apotex) 1 g film-coated tablet, 4 1017861000168103 Valaciclovir 1000 (Apotex) 1 g film-coated tablet 1017851000168100 Valaciclovir 1000 (Apotex) 1017851000168100 Valaciclovir 1000 (Apotex) 927387011000036102 valaciclovir 1 g tablet, 4 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +781381000168109 Oxycodone MR (GenRx) 15 mg modified release tablet, 20, blister pack 214497 781371000168106 Oxycodone MR (GenRx) 15 mg modified release tablet, 20 781361000168100 Oxycodone MR (GenRx) 15 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +32926011000036101 Cephazolin (DBL) 1 g powder for injection, 5 vials 56374 32916011000036109 Cephazolin (DBL) 1 g powder for injection, 5 vials 32907011000036109 Cephazolin (DBL) 1 g powder for injection, vial 4065011000036101 Cephazolin (DBL) 4065011000036101 Cephazolin (DBL) 32938011000036104 cefazolin 1 g injection, 5 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +747121000168109 Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules 195337 747111000168102 Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules 747101000168100 Granisetron (AFT) 1 mg/mL injection solution, ampoule 134061000036107 Granisetron (AFT) 134061000036107 Granisetron (AFT) 46134011000036108 granisetron 1 mg/mL injection, 5 x 1 mL ampoules 45003011000036106 granisetron 1 mg/mL injection, ampoule 21431011000036106 granisetron +933238941000036109 Fentanyl (Sandoz) 100 microgram/hour patch, 10, sachet 152576 933236181000036103 Fentanyl (Sandoz) 100 microgram/hour patch, 10 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236191000036101 fentanyl 100 microgram/hour patch, 10 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +716671000168106 Omepro 20 mg enteric capsule, 50, bottle 167314 716651000168102 Omepro 20 mg enteric capsule, 50 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716641000168104 omeprazole 20 mg enteric capsule, 50 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +21069011000036108 Ausran 150 mg film-coated tablet, 60, blister pack 97354 14213011000036109 Ausran 150 mg film-coated tablet, 60 7496011000036106 Ausran 150 mg film-coated tablet 4212011000036103 Ausran 4212011000036103 Ausran 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +68819011000036108 QV Skin Lotion, 50 mL, bottle 10630 66531011000036109 QV Skin Lotion, 50 mL 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71263011000036107 glycerol 5% + white soft paraffin 5% lotion, 50 mL 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +1085311000168102 Narium 0.65% nasal spray, 30 mL, pump pack 127721 87420011000036106 Narium 0.65% nasal spray, 30 mL 87299011000036105 Narium 0.65% nasal spray 86599011000036102 Narium 86599011000036102 Narium 87013011000036102 sodium chloride 0.65% nasal spray, 30 mL 86925011000036101 sodium chloride 0.65% nasal spray 21308011000036103 sodium chloride +933247621000036109 Calcitriol (PS) 0.25 microgram soft capsule, 100, bottle 99717 933244521000036100 Calcitriol (PS) 0.25 microgram soft capsule, 100 933242031000036101 Calcitriol (PS) 0.25 microgram soft capsule 933240951000036109 Calcitriol (PS) 933240951000036109 Calcitriol (PS) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +1111251000168103 Quetiapine (RBX) 150 mg film-coated tablet, 60, strip pack 166431 1110831000168103 Quetiapine (RBX) 150 mg film-coated tablet, 60 1110821000168101 Quetiapine (RBX) 150 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +765651000168109 Fraxiparine 2850 anti-Xa units/0.3 mL injection solution, 2 x 0.3 mL syringes 51309 765641000168107 Fraxiparine 2850 anti-Xa units/0.3 mL injection solution, 2 x 0.3 mL syringes 765621000168101 Fraxiparine 2850 anti-Xa units/0.3 mL injection solution, 0.3 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765631000168103 nadroparin calcium 2850 anti-Xa units/0.3 mL injection, 2 x 0.3 mL syringes 765611000168108 nadroparin calcium 2850 anti-Xa units/0.3 mL injection, syringe 765071000168107 nadroparin +880791000168104 Candesartan/HCT 16 mg/12.5 mg (Sandoz) tablet, 30, bottle 157944 134951000036108 Candesartan/HCT 16 mg/12.5 mg (Sandoz) tablet, 30 134301000036106 Candesartan/HCT 16 mg/12.5 mg (Sandoz) tablet 29151000168105 Candesartan/HCT 16 mg/12.5 mg (Sandoz) 29151000168105 Candesartan/HCT 16 mg/12.5 mg (Sandoz) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +988901000168103 Paracetamol Drops Infants and Children 1 Month to 2 Years (Blooms The Chemist) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 189946 988891000168102 Paracetamol Drops Infants and Children 1 Month to 2 Years (Blooms The Chemist) Colour Free 100 mg/mL oral liquid solution, 20 mL 988881000168100 Paracetamol Drops Infants and Children 1 Month to 2 Years (Blooms The Chemist) Colour Free 100 mg/mL oral liquid solution 988861000168109 Paracetamol Drops Infants and Children 1 Month to 2 Years (Blooms The Chemist) 988861000168109 Paracetamol Drops Infants and Children 1 Month to 2 Years (Blooms The Chemist) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +810301000168107 Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack, composite pack 166942 810291000168106 Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack 930063011000036103 Actonel EC Once-a-Week 35 mg enteric tablet 929810011000036106 Actonel EC Combi D 700017651000036104 Actonel EC Once-a-Week 810281000168108 risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [6 sachets], 1 pack 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +810301000168107 Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack, composite pack 166942 810291000168106 Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack 810211000168102 Actonel EC Combi D effervescent granules, 1 sachet 929810011000036106 Actonel EC Combi D 929810011000036106 Actonel EC Combi D 810281000168108 risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [6 sachets], 1 pack 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +879441000168104 Domperidone (Blooms The Chemist) 10 mg uncoated tablet, 100, blister pack 242337 879431000168108 Domperidone (Blooms The Chemist) 10 mg uncoated tablet, 100 879371000168104 Domperidone (Blooms The Chemist) 10 mg uncoated tablet 879361000168105 Domperidone (Blooms The Chemist) 879361000168105 Domperidone (Blooms The Chemist) 833951000168107 domperidone 10 mg tablet, 100 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +18500011000036109 Testosterone (Organon) 200 mg implant, 1, tube 14524 12043011000036101 Testosterone (Organon) 200 mg implant, 1 4921011000036101 Testosterone (Organon) 200 mg implant 3364011000036103 Testosterone (Organon) 3364011000036103 Testosterone (Organon) 26875011000036100 testosterone 200 mg implant, 1 22254011000036105 testosterone 200 mg implant 21290011000036109 testosterone +77300011000036107 Sodium Bicarbonate Min-I-Jet (CSL) 4.2 g/50 mL injection solution, 50 mL syringe 29057 76716011000036105 Sodium Bicarbonate Min-I-Jet (CSL) 4.2 g/50 mL injection solution, 50 mL syringe 76136011000036108 Sodium Bicarbonate Min-I-Jet (CSL) 4.2 g/50 mL injection solution, 50 mL syringe 40901000168101 Sodium Bicarbonate Min-I-Jet (CSL) 40901000168101 Sodium Bicarbonate Min-I-Jet (CSL) 78230011000036104 sodium bicarbonate 4.2 g/50 mL injection, 50 mL syringe 77558011000036104 sodium bicarbonate 4.2 g/50 mL injection, syringe 21761011000036107 bicarbonate +1069511000168106 Hydromorphone (MPL) 8 mg uncoated tablet, 20, bottle 295425 1069501000168108 Hydromorphone (MPL) 8 mg uncoated tablet, 20 1069491000168101 Hydromorphone (MPL) 8 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 27607011000036108 hydromorphone hydrochloride 8 mg tablet, 20 22946011000036100 hydromorphone hydrochloride 8 mg tablet 21480011000036107 hydromorphone +61191011000036109 Robitussin DM-P Extra Strength oral liquid solution, 100 mL, bottle 75248 57127011000036105 Robitussin DM-P Extra Strength oral liquid solution, 100 mL 54210011000036108 Robitussin DM-P Extra Strength oral liquid solution, 10 mL 53157011000036102 Robitussin DM-P Extra Strength 53157011000036102 Robitussin DM-P Extra Strength 63738011000036105 dextromethorphan hydrobromide monohydrate 30 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62067011000036107 dextromethorphan hydrobromide monohydrate 30 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61751011000036109 dextromethorphan + pseudoephedrine +59993011000036101 Gastrogel-Ranitidine 150 mg film-coated tablet, 28, blister pack 121941 55955011000036100 Gastrogel-Ranitidine 150 mg film-coated tablet, 28 53736011000036105 Gastrogel-Ranitidine 150 mg film-coated tablet 13391000168105 Gastrogel-Ranitidine 13391000168105 Gastrogel-Ranitidine 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +911021000168101 Cavstat 10 mg film-coated tablet, 60, blister pack 234485 911011000168108 Cavstat 10 mg film-coated tablet, 60 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911001000168105 rosuvastatin 10 mg tablet, 60 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +60177011000036100 Exforge 10/160 film-coated tablet, 7, blister pack 130841 56136011000036106 Exforge 10/160 film-coated tablet, 7 53803011000036106 Exforge 10/160 film-coated tablet 22241000168106 Exforge 10/160 22241000168106 Exforge 10/160 63240011000036103 amlodipine 10 mg + valsartan 160 mg tablet, 7 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +61128011000036105 Telfast Decongestant modified release tablet, 2, blister pack 72552 57071011000036106 Telfast Decongestant modified release tablet, 2 54182011000036108 Telfast Decongestant modified release tablet 53507011000036103 Telfast Decongestant 53507011000036103 Telfast Decongestant 63726011000036108 fexofenadine hydrochloride 60 mg + pseudoephedrine hydrochloride 120 mg modified release tablet, 2 62060011000036106 fexofenadine hydrochloride 60 mg + pseudoephedrine hydrochloride 120 mg modified release tablet 61821011000036105 fexofenadine + pseudoephedrine +888011000168108 Ursofalk 500 mg film-coated tablet, 50, blister pack 262732 888001000168105 Ursofalk 500 mg film-coated tablet, 50 887981000168104 Ursofalk 500 mg film-coated tablet 3056011000036102 Ursofalk 3056011000036102 Ursofalk 887991000168101 ursodeoxycholic acid 500 mg tablet, 50 887971000168102 ursodeoxycholic acid 500 mg tablet 21849011000036102 ursodeoxycholic acid +671961000168102 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 60, blister pack 196492 671951000168104 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 60 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 671941000168101 metoclopramide hydrochloride 10 mg tablet, 60 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +85043011000036108 Ibuprofen plus Codeine (Pharmacist) film-coated tablet, 24, blister pack 158657 84908011000036106 Ibuprofen plus Codeine (Pharmacist) film-coated tablet, 24 84793011000036106 Ibuprofen plus Codeine (Pharmacist) film-coated tablet 84769011000036107 Ibuprofen plus Codeine (Pharmacist) 84769011000036107 Ibuprofen plus Codeine (Pharmacist) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +80987011000036108 Zinc and Castor Oil (Orion) cream, 100 g, tube 10775 80479011000036105 Zinc and Castor Oil (Orion) cream, 100 g 80152011000036101 Zinc and Castor Oil (Orion) cream 80135011000036105 Zinc and Castor Oil (Orion) 80135011000036105 Zinc and Castor Oil (Orion) 81602011000036103 zinc oxide 7.5% + castor oil 50% cream, 100 g 81269011000036106 zinc oxide 7.5% + castor oil 50% cream 81222011000036107 zinc oxide + castor oil +50642011000036104 Lamotrigine (GA) 100 mg tablet, 56, blister pack 143573 49668011000036102 Lamotrigine (GA) 100 mg tablet, 56 48809011000036101 Lamotrigine (GA) 100 mg tablet 48414011000036105 Lamotrigine (GA) 48414011000036105 Lamotrigine (GA) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +60903011000036101 Robitussin EX Colour Free 100 mg/5 mL oral liquid solution, 100 mL, bottle 60752 56857011000036100 Robitussin EX Colour Free 100 mg/5 mL oral liquid solution, 100 mL 54103011000036100 Robitussin EX Colour Free 100 mg/5 mL oral liquid solution, 5 mL 53237011000036100 Robitussin EX 53237011000036100 Robitussin EX 63613011000036101 guaifenesin 100 mg/5 mL oral liquid, 100 mL 62028011000036101 guaifenesin 100 mg/5 mL oral liquid 61763011000036101 guaifenesin +66021000036105 Essential Enzymes (Bio-Organics) hard capsule, 120, bottle 17307 63681000036107 Essential Enzymes (Bio-Organics) hard capsule, 120 61281000036108 Essential Enzymes (Bio-Organics) hard capsule 60341000036102 Essential Enzymes (Bio-Organics) 60341000036102 Essential Enzymes (Bio-Organics) 63691000036109 betaine hydrochloride 50 mg + cellulase 5 mg + pancreatin 100 mg + papain 50 mg + tilactase 5 mg capsule, 120 61291000036105 betaine hydrochloride 50 mg + cellulase 5 mg + pancreatin 100 mg + papain 50 mg + tilactase 5 mg capsule 66781000036109 betaine + cellulase + pancreatin + papain + tilactase +921981011000036103 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 100 mL bottles 49604 921539011000036100 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 10 x 100 mL bottles 921071011000036100 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 100 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 922658011000036101 iodixanol 550 mg (iodine 270 mg)/mL injection, 10 x 100 mL bottles 922141011000036108 iodixanol 550 mg (iodine 270 mg)/mL injection, 100 mL bottle 922032011000036109 iodixanol +61658011000036105 Ibuprofen (Amcal) 200 mg film-coated tablet, 96, blister pack 224608 57580011000036108 Ibuprofen (Amcal) 200 mg film-coated tablet, 96 54354011000036101 Ibuprofen (Amcal) 200 mg film-coated tablet 53505011000036108 Ibuprofen (Amcal) 53505011000036108 Ibuprofen (Amcal) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61658011000036105 Ibuprofen (Amcal) 200 mg film-coated tablet, 96, blister pack 97233 57580011000036108 Ibuprofen (Amcal) 200 mg film-coated tablet, 96 54354011000036101 Ibuprofen (Amcal) 200 mg film-coated tablet 53505011000036108 Ibuprofen (Amcal) 53505011000036108 Ibuprofen (Amcal) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +59751011000036104 Advil 200 mg sugar coated tablet, 4, blister pack 104221 55687011000036103 Advil 200 mg sugar coated tablet, 4 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +50458011000036101 Tyrosine Amino Acid Supplement containing 1 g tyrosine powder for oral liquid, 30 x 4 g sachets 49288011000036102 Tyrosine Amino Acid Supplement containing 1 g tyrosine powder for oral liquid, 30 x 4 g sachets 279741000168101 Tyrosine Amino Acid Supplement containing 1 g tyrosine powder for oral liquid, 4 g sachet 28101000168103 Tyrosine Amino Acid Supplement 28101000168103 Tyrosine Amino Acid Supplement 51275011000036102 tyrosine with carbohydrate containing 1 g tyrosine powder for oral liquid, 30 x 4 g sachets 279581000168100 tyrosine with carbohydrate containing 1 g tyrosine powder for oral liquid, 4 g sachet 50783011000036106 tyrosine with carbohydrate +996051000168102 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24, blister pack 159201 996041000168104 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24 996031000168108 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 996001000168101 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 995981000168100 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge 86203011000036105 bromhexine + cetylpyridinium +19030011000036102 Fucidin 250 mg film-coated tablet, 36, blister pack 125822 12335011000036100 Fucidin 250 mg film-coated tablet, 36 4644011000036104 Fucidin 250 mg film-coated tablet 20071000168105 Fucidin 20071000168105 Fucidin 27066011000036102 sodium fusidate 250 mg tablet, 36 22434011000036105 sodium fusidate 250 mg tablet 21917011000036107 fusidate +19030011000036102 Fucidin 250 mg film-coated tablet, 36, blister pack 39834 12335011000036100 Fucidin 250 mg film-coated tablet, 36 4644011000036104 Fucidin 250 mg film-coated tablet 20071000168105 Fucidin 20071000168105 Fucidin 27066011000036102 sodium fusidate 250 mg tablet, 36 22434011000036105 sodium fusidate 250 mg tablet 21917011000036107 fusidate +86178011000036106 Dotarem 4.19 g/15 mL injection solution, 15 mL vial 76924 85785011000036100 Dotarem 4.19 g/15 mL injection solution, 15 mL vial 85399011000036103 Dotarem 4.19 g/15 mL injection solution, 15 mL vial 85269011000036107 Dotarem 85269011000036107 Dotarem 86468011000036102 gadoteric acid 4.19 g/15 mL injection, 15 mL vial 86241011000036101 gadoteric acid 4.19 g/15 mL injection, vial 86191011000036109 gadoteric acid +1014781000168106 Warfarin (Apo) 2 mg tablet, 50, bottle 225725 1014771000168108 Warfarin (Apo) 2 mg tablet, 50 1014761000168102 Warfarin (Apo) 2 mg tablet 1014721000168107 Warfarin (Apo) 1014721000168107 Warfarin (Apo) 26890011000036102 warfarin sodium 2 mg tablet, 50 22268011000036109 warfarin sodium 2 mg tablet 21248011000036104 warfarin +33612011000036100 Bondronat 6 mg/6 mL concentrated injection, 6 mL vial 98008 33350011000036103 Bondronat 6 mg/6 mL concentrated injection, 6 mL vial 33110011000036103 Bondronat 6 mg/6 mL concentrated injection, 6 mL vial 32976011000036100 Bondronat 32976011000036100 Bondronat 33827011000036104 ibandronate 6 mg/6 mL injection, 6 mL vial 33693011000036108 ibandronate 6 mg/6 mL injection, vial 33641011000036101 ibandronate +1050791000168105 Bupredermal 10 microgram/hour patch, 1, sachet 234742 1050781000168107 Bupredermal 10 microgram/hour patch, 1 1050771000168109 Bupredermal 10 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1046631000168104 buprenorphine 10 microgram/hour patch, 1 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +18154011000036100 Lipostat 10 mg uncoated tablet, 30, blister pack 118589 11580011000036103 Lipostat 10 mg uncoated tablet, 30 5453011000036107 Lipostat 10 mg uncoated tablet 3757011000036101 Lipostat 3757011000036101 Lipostat 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +69470011000036101 Sodium Chloride (Pfizer (Perth)) 0.9% (180 mg/20 mL) injection solution, 30 x 20 mL ampoules 49279 67270011000036109 Sodium Chloride (Pfizer (Perth)) 0.9% (180 mg/20 mL) injection solution, 30 x 20 mL ampoules 65585011000036104 Sodium Chloride (Pfizer (Perth)) 0.9% (180 mg/20 mL) injection solution, 20 mL ampoule 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 71818011000036108 sodium chloride 0.9% (180 mg/20 mL) injection, 30 x 20 mL ampoules 70200011000036109 sodium chloride 0.9% (180 mg/20 mL) injection, ampoule 21308011000036103 sodium chloride +1095451000168106 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 100, blister pack 287307 1095431000168100 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 100 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1077431000168104 fexofenadine hydrochloride 180 mg tablet, 100 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +69044011000036102 QV Flare Up Bath Oil, 250 mL, bottle 142064 66846011000036101 QV Flare Up Bath Oil, 250 mL 65315011000036104 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 71458011000036109 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil, 250 mL 70017011000036104 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +82101000036101 Octreotide (Sun) 100 microgram/mL injection solution, 5 x 1 mL ampoules 184894 80631000036100 Octreotide (Sun) 100 microgram/mL injection solution, 5 x 1 mL ampoules 78361000036107 Octreotide (Sun) 100 microgram/mL injection solution, ampoule 78111000036108 Octreotide (Sun) 78111000036108 Octreotide (Sun) 27091011000036109 octreotide 100 microgram/mL injection, 5 x 1 mL ampoules 22460011000036106 octreotide 100 microgram/mL injection, ampoule 21316011000036104 octreotide +59814011000036108 Codral Original Chesty Cough Liquicap soft capsule, 12, blister pack 114795 55776011000036102 Codral Original Chesty Cough Liquicap soft capsule, 12 53632011000036104 Codral Original Chesty Cough Liquicap soft capsule 12901000168108 Codral Original Chesty Cough Liquicap 12901000168108 Codral Original Chesty Cough Liquicap 63134011000036105 guaifenesin 100 mg + pseudoephedrine hydrochloride 30 mg capsule, 12 61868011000036108 guaifenesin 100 mg + pseudoephedrine hydrochloride 30 mg capsule 61743011000036107 guaifenesin + pseudoephedrine +60707011000036104 Dimetapp PE Sinus Cold uncoated tablet, 4, blister pack 43458 56665011000036107 Dimetapp PE Sinus Cold uncoated tablet, 4 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63497011000036106 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 4 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +928928011000036105 Valaciclovir (SZ) 500 mg film-coated tablet, 42, blister pack 154460 928290011000036103 Valaciclovir (SZ) 500 mg film-coated tablet, 42 927923011000036106 Valaciclovir (SZ) 500 mg film-coated tablet 927819011000036109 Valaciclovir (SZ) 927819011000036109 Valaciclovir (SZ) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +867841000168102 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 16750 867831000168106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 867811000168101 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 867821000168108 glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag 867801000168104 glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +905331000168100 Ceftriaxone (Kabi) 1 g powder for injection, 5 vials 223322 905321000168103 Ceftriaxone (Kabi) 1 g powder for injection, 5 vials 905291000168106 Ceftriaxone (Kabi) 1 g powder for injection, vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +922591000168105 Anastrozole (Eris) 1 mg film-coated tablet, 30, blister pack 188389 922581000168107 Anastrozole (Eris) 1 mg film-coated tablet, 30 922571000168109 Anastrozole (Eris) 1 mg film-coated tablet 922561000168103 Anastrozole (Eris) 922561000168103 Anastrozole (Eris) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1042131000168107 Nicotine (Amcal) 2 mg lozenge, 72, blister pack 213239 1042121000168109 Nicotine (Amcal) 2 mg lozenge, 72 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 87230011000036108 nicotine 2 mg lozenge, 72 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1121361000168103 Quetiapine XR (Medis) 50 mg modified release tablet, 10, blister pack 241757 1121351000168100 Quetiapine XR (Medis) 50 mg modified release tablet, 10 1121341000168102 Quetiapine XR (Medis) 50 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51529011000036107 quetiapine 50 mg modified release tablet, 10 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +876541000168107 Briviact 100 mg film-coated tablet, 168, blister pack 243792 876531000168103 Briviact 100 mg film-coated tablet, 168 876421000168100 Briviact 100 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 876521000168101 brivaracetam 100 mg tablet, 168 876411000168107 brivaracetam 100 mg tablet 876401000168109 brivaracetam +39402011000036103 Januvia 100 mg film-coated tablet, 7, blister pack 133182 39286011000036102 Januvia 100 mg film-coated tablet, 7 39194011000036106 Januvia 100 mg film-coated tablet 39185011000036106 Januvia 39185011000036106 Januvia 39483011000036109 sitagliptin 100 mg tablet, 7 39437011000036105 sitagliptin 100 mg tablet 39426011000036109 sitagliptin +778551000168105 Oxycodone MR (Apotex) 40 mg modified release tablet, 20, blister pack 160094 778541000168108 Oxycodone MR (Apotex) 40 mg modified release tablet, 20 778531000168104 Oxycodone MR (Apotex) 40 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +1006121000168104 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 195806 1006111000168106 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 1006101000168108 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule 711221000168102 Ropivacaine 0.75% (Kabi) 711221000168102 Ropivacaine 0.75% (Kabi) 1004951000168104 ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules 1004931000168105 ropivacaine hydrochloride 75 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +32569011000036105 Cifran 500 mg film-coated tablet, 14, blister pack 135661 32360011000036101 Cifran 500 mg film-coated tablet, 14 32237011000036104 Cifran 500 mg film-coated tablet 32193011000036104 Cifran 32193011000036104 Cifran 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1083901000168100 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 1 L, bottle 38572 1083891000168104 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash, 1 L 1083781000168106 Difflam Sore Throat Gargle and Mouth Solution 0.15% mouthwash 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 1083771000168108 Difflam Sore Throat Gargle and Mouth Solution 63469011000036101 benzydamine hydrochloride 0.15% mouthwash, 1 L 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +983121000168102 Cetirizine (AN) 10 mg film-coated tablet, 56, blister pack 126249 983111000168109 Cetirizine (AN) 10 mg film-coated tablet, 56 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63287011000036106 cetirizine hydrochloride 10 mg tablet, 56 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +723821000168106 Olanzapine ODT (Sandoz) 15 mg orally disintegrating tablet, 28, blister pack 179073 723811000168104 Olanzapine ODT (Sandoz) 15 mg orally disintegrating tablet, 28 723801000168102 Olanzapine ODT (Sandoz) 15 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +1072341000168104 Day/Night Cold and Flu Relief PE (Terry White Chemists) (18 x Day tablets, 6 x Night tablets), 24, blister pack 239592 1072331000168108 Day/Night Cold and Flu Relief PE (Terry White Chemists) (18 x Day tablets, 6 x Night tablets), 24 1072321000168105 Day/Night Cold and Flu Relief PE (Night) (Terry White Chemists) film-coated tablet 1072211000168106 Day/Night Cold and Flu Relief PE (Terry White Chemists) 1072231000168101 Day/Night Cold and Flu Relief PE (Night) (Terry White Chemists) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1072341000168104 Day/Night Cold and Flu Relief PE (Terry White Chemists) (18 x Day tablets, 6 x Night tablets), 24, blister pack 239592 1072331000168108 Day/Night Cold and Flu Relief PE (Terry White Chemists) (18 x Day tablets, 6 x Night tablets), 24 1072311000168103 Day/Night Cold and Flu Relief PE (Day) (Terry White Chemists) film-coated tablet 1072211000168106 Day/Night Cold and Flu Relief PE (Terry White Chemists) 1072221000168104 Day/Night Cold and Flu Relief PE (Day) (Terry White Chemists) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +68773011000036104 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 1.254 kg, jar 10184 66482011000036101 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 1.254 kg 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71215011000036109 psyllium husk powder 312.8 mg/g powder for oral liquid, 1.254 kg 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +80048011000036107 Simvastatin (GA) 10 mg film-coated tablet, 30, blister pack 131651 79968011000036105 Simvastatin (GA) 10 mg film-coated tablet, 30 79920011000036100 Simvastatin (GA) 10 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +80048011000036107 Simvastatin (GA) 10 mg film-coated tablet, 30, blister pack 199743 79968011000036105 Simvastatin (GA) 10 mg film-coated tablet, 30 79920011000036100 Simvastatin (GA) 10 mg film-coated tablet 79906011000036107 Simvastatin (GA) 79906011000036107 Simvastatin (GA) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +925287011000036109 Docetaxel (Dakota) 20 mg/mL concentrated injection, 1 mL vial 161373 924824011000036105 Docetaxel (Dakota) 20 mg/mL concentrated injection, 1 mL vial 924516011000036109 Docetaxel (Dakota) 20 mg/mL concentrated injection, vial 924353011000036106 Docetaxel (Dakota) 924353011000036106 Docetaxel (Dakota) 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +715141000168102 Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube 74140 715131000168106 Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g 715121000168108 Clofeme Thrush Treatment 6 Day 1% vaginal cream 53781000168104 Clofeme Thrush Treatment 6 Day 53781000168104 Clofeme Thrush Treatment 6 Day 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +1115741000168105 Quetiapine (Ascent) 200 mg film-coated tablet, 60, blister pack 202260 1115721000168104 Quetiapine (Ascent) 200 mg film-coated tablet, 60 1115691000168108 Quetiapine (Ascent) 200 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1057861000168108 Valpro EC 500 mg enteric tablet, 20, blister pack 286316 1057851000168106 Valpro EC 500 mg enteric tablet, 20 1057821000168103 Valpro EC 500 mg enteric tablet 1057811000168105 Valpro EC 1057811000168105 Valpro EC 942051000168108 valproate sodium 500 mg enteric tablet, 20 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +20130011000036105 Closyn 100 mg uncoated tablet, 100, blister pack 73216 13354011000036105 Closyn 100 mg uncoated tablet, 100 6639011000036107 Closyn 100 mg uncoated tablet 4434011000036103 Closyn 4434011000036103 Closyn 28136011000036106 clozapine 100 mg tablet, 100 23445011000036103 clozapine 100 mg tablet 21222011000036104 clozapine +68802011000036101 Chlorhexidine Gluconate Pre-Op (Orion) 4% application, 50 mL tube 11329 66606011000036100 Chlorhexidine Gluconate Pre-Op (Orion) 4% application, 50 mL tube 65370011000036100 Chlorhexidine Gluconate Pre-Op (Orion) 4% application, 50 mL tube 4621000168104 Chlorhexidine Gluconate Pre-Op (Orion) 4621000168104 Chlorhexidine Gluconate Pre-Op (Orion) 71328011000036104 chlorhexidine gluconate 4% application, 50 mL tube 69953011000036108 chlorhexidine gluconate 4% application, tube 21404011000036101 chlorhexidine +919761000168105 Keyo oral semi-solid, 48 x 100 g tubs 919751000168108 Keyo oral semi-solid, 48 x 100 g tubs 919731000168102 Keyo oral semi-solid, 100 g tub 919711000168107 Keyo 919711000168107 Keyo 919741000168106 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate oral semi-solid, 48 x 100 g tubs 919721000168100 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate oral semi-solid, 100 g tub 79093011000036108 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate +60961011000036101 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 48, blister pack 62804 56904011000036108 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet, 48 54116011000036109 Extra Strength Pain Relief (Pharmacist) 500 mg uncoated tablet 53485011000036104 Extra Strength Pain Relief (Pharmacist) 53485011000036104 Extra Strength Pain Relief (Pharmacist) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1026251000168105 Neuroccord 150 mg hard capsule, 500, bottle 235841 1026241000168108 Neuroccord 150 mg hard capsule, 500 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 971721000168109 pregabalin 150 mg capsule, 500 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +948631000168105 Ondansetron (Mylan) 4 mg/2 mL injection, 10 x 2 mL vials 148299 948621000168107 Ondansetron (Mylan) 4 mg/2 mL injection, 10 x 2 mL vials 948541000168102 Ondansetron (Mylan) 4 mg/2 mL injection, 2 mL vial 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 948611000168100 ondansetron 4 mg/2 mL injection, 10 x 2 mL vials 948531000168106 ondansetron 4 mg/2 mL injection, vial 21545011000036100 ondansetron +933215701000036106 Olanzapine (Lilly) 10 mg wafer, 7, blister pack 167688 933205221000036108 Olanzapine (Lilly) 10 mg wafer, 7 933196221000036103 Olanzapine (Lilly) 10 mg wafer 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 933205231000036105 olanzapine 10 mg wafer, 7 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +1000551000168101 Citalopram (Apotex) 20 mg film-coated tablet, 28, blister pack 150639 1000541000168103 Citalopram (Apotex) 20 mg film-coated tablet, 28 1000531000168107 Citalopram (Apotex) 20 mg film-coated tablet 1000491000168107 Citalopram (Apotex) 1000491000168107 Citalopram (Apotex) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +69424011000036107 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 10 x 5 mL ampoules 48346 67224011000036103 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 10 x 5 mL ampoules 65564011000036101 Sodium Chloride (AstraZeneca) 0.9% (45 mg/5 mL) injection solution, 5 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71775011000036105 sodium chloride 0.9% (45 mg/5 mL) injection, 10 x 5 mL ampoules 70199011000036103 sodium chloride 0.9% (45 mg/5 mL) injection, ampoule 21308011000036103 sodium chloride +1119991000168103 Quetiapine XR (Actavis) 50 mg modified release tablet, 30, blister pack 241753 1119981000168101 Quetiapine XR (Actavis) 50 mg modified release tablet, 30 1119951000168108 Quetiapine XR (Actavis) 50 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 809171000168107 quetiapine 50 mg modified release tablet, 30 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +33537011000036100 Dolapril 4 mg hard capsule, 28, blister pack 125435 33277011000036105 Dolapril 4 mg hard capsule, 28 33042011000036100 Dolapril 4 mg hard capsule 32987011000036105 Dolapril 32987011000036105 Dolapril 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +765491000168102 Fraxiparine 7600 anti-Xa units/0.8 mL injection solution, 2 x 0.8 mL syringes 51312 765481000168100 Fraxiparine 7600 anti-Xa units/0.8 mL injection solution, 2 x 0.8 mL syringes 765461000168109 Fraxiparine 7600 anti-Xa units/0.8 mL injection solution, 0.8 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765471000168103 nadroparin calcium 7600 anti-Xa units/0.8 mL injection, 2 x 0.8 mL syringes 765451000168107 nadroparin calcium 7600 anti-Xa units/0.8 mL injection, syringe 765071000168107 nadroparin +20090011000036109 Avandia 4 mg film-coated tablet, 28, blister pack 70965 13317011000036107 Avandia 4 mg film-coated tablet, 28 6603011000036100 Avandia 4 mg film-coated tablet 3736011000036100 Avandia 3736011000036100 Avandia 27687011000036109 rosiglitazone 4 mg tablet, 28 23024011000036107 rosiglitazone 4 mg tablet 21349011000036100 rosiglitazone +671821000168104 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 10, blister pack 196492 671811000168106 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet, 10 671791000168107 Metoclopramide Hydrochloride (AN) 10 mg film-coated tablet 671471000168100 Metoclopramide Hydrochloride (AN) 671471000168100 Metoclopramide Hydrochloride (AN) 671801000168108 metoclopramide hydrochloride 10 mg tablet, 10 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +919621000168107 Antenex 10 mg uncoated tablet, 100, bottle 17581 919591000168105 Antenex 10 mg uncoated tablet, 100 919541000168102 Antenex 10 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 919581000168107 diazepam 10 mg tablet, 100 919531000168106 diazepam 10 mg tablet 21688011000036107 diazepam +66181000036105 Betadine Surgical Scrub 7.5% solution, 4.5 L, bottle 29568 63761000036108 Betadine Surgical Scrub 7.5% solution, 4.5 L 60611000036106 Betadine Surgical Scrub 7.5% solution 33221000168107 Betadine Surgical Scrub 33221000168107 Betadine Surgical Scrub 63771000036100 povidone-iodine 7.5% solution, 4.5 L 70175011000036106 povidone-iodine 7.5% solution 21660011000036108 povidone-iodine +79034011000036104 Bispro 2.5 mg film-coated tablet, 30, blister pack 130178 78787011000036101 Bispro 2.5 mg film-coated tablet, 30 78625011000036108 Bispro 2.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79203011000036100 bisoprolol fumarate 2.5 mg tablet, 30 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +911181000168101 Carvedilol (Watson) 3.125 mg uncoated tablet, 30, blister pack 194077 911171000168104 Carvedilol (Watson) 3.125 mg uncoated tablet, 30 911161000168105 Carvedilol (Watson) 3.125 mg uncoated tablet 911151000168108 Carvedilol (Watson) 911151000168108 Carvedilol (Watson) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +746801000168105 Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule 159274 746791000168109 Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule 746781000168106 Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule 922951011000036109 Granisetron (Kabi) 922951011000036109 Granisetron (Kabi) 28229011000036102 granisetron 3 mg/3 mL injection, 3 mL ampoule 23543011000036106 granisetron 3 mg/3 mL injection, ampoule 21431011000036106 granisetron +794311000168100 Tacrolimus (Sandoz) 750 microgram hard capsule, 100, blister pack 229738 794301000168103 Tacrolimus (Sandoz) 750 microgram hard capsule, 100 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794291000168104 tacrolimus 750 microgram capsule, 100 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +1060971000168104 Ramipril (Auro) 1.25 mg hard capsule, 30, bottle 203721 1060961000168105 Ramipril (Auro) 1.25 mg hard capsule, 30 1060951000168108 Ramipril (Auro) 1.25 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +925228011000036101 Anastrozole (Pharmacor) 1 mg film-coated tablet, 30, blister pack 158750 924765011000036102 Anastrozole (Pharmacor) 1 mg film-coated tablet, 30 924464011000036106 Anastrozole (Pharmacor) 1 mg film-coated tablet 924360011000036105 Anastrozole (Pharmacor) 924360011000036105 Anastrozole (Pharmacor) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +932591000168107 Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL, aerosol can 73427 932581000168109 Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL 932571000168106 Fluoride (Laclede) Tyranna Grape Flavour foam 932331000168103 Fluoride (Laclede) 932331000168103 Fluoride (Laclede) 932361000168106 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL 932341000168107 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam 61768011000036106 fluoride +69257011000036103 Sodium Chloride (Baxter) 0.45% (2.25 g/500 mL) intravenous infusion injection, 500 mL bag 19472 67057011000036101 Sodium Chloride (Baxter) 0.45% (2.25 g/500 mL) intravenous infusion injection, 500 mL bag 65341011000036106 Sodium Chloride (Baxter) 0.45% (2.25 g/500 mL) intravenous infusion injection, 500 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71627011000036106 sodium chloride 0.45% (2.25 g/500 mL) injection, 500 mL bag 70099011000036107 sodium chloride 0.45% (2.25 g/500 mL) injection, bag 21308011000036103 sodium chloride +20660011000036100 Novomix 30 Penfill injection suspension, 5 x 3 mL cartridges 143165 13840011000036100 Novomix 30 Penfill injection suspension, 5 x 3 mL cartridges 7127011000036100 Novomix 30 Penfill injection suspension, 3 mL cartridge 22481000168102 Novomix 30 Penfill 22481000168102 Novomix 30 Penfill 27966011000036108 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL cartridges 23290011000036103 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, cartridge 21276011000036104 insulin aspart + insulin aspart protamine +20660011000036100 Novomix 30 Penfill injection suspension, 5 x 3 mL cartridges 133447 13840011000036100 Novomix 30 Penfill injection suspension, 5 x 3 mL cartridges 7127011000036100 Novomix 30 Penfill injection suspension, 3 mL cartridge 22481000168102 Novomix 30 Penfill 22481000168102 Novomix 30 Penfill 27966011000036108 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL cartridges 23290011000036103 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, cartridge 21276011000036104 insulin aspart + insulin aspart protamine +20660011000036100 Novomix 30 Penfill injection suspension, 5 x 3 mL cartridges 81759 13840011000036100 Novomix 30 Penfill injection suspension, 5 x 3 mL cartridges 7127011000036100 Novomix 30 Penfill injection suspension, 3 mL cartridge 22481000168102 Novomix 30 Penfill 22481000168102 Novomix 30 Penfill 27966011000036108 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL cartridges 23290011000036103 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, cartridge 21276011000036104 insulin aspart + insulin aspart protamine +1107061000168103 Vitamin D3 (Health Plus Vitamins) 25 microgram (1000 units) film-coated tablet, 200, bottle 194215 1107051000168100 Vitamin D3 (Health Plus Vitamins) 25 microgram (1000 units) film-coated tablet, 200 1107031000168106 Vitamin D3 (Health Plus Vitamins) 25 microgram (1000 units) film-coated tablet 1107021000168108 Vitamin D3 (Health Plus Vitamins) 1107021000168108 Vitamin D3 (Health Plus Vitamins) 1107041000168102 colecalciferol 25 microgram (1000 units) tablet, 200 77514011000036102 colecalciferol 25 microgram (1000 units) tablet 77447011000036108 colecalciferol +73313011000036108 Jurnista 64 mg modified release tablet, 7, blister pack 141535 73111011000036104 Jurnista 64 mg modified release tablet, 7 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73509011000036107 hydromorphone hydrochloride 64 mg modified release tablet, 7 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +1066541000168101 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 48, blister pack 161545 1066531000168105 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 48 1066481000168107 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 63146011000036103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 48 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +60206011000036106 Dry Cough Mixture (Pharmacy Choice) oral liquid solution, 100 mL, bottle 132943 56165011000036106 Dry Cough Mixture (Pharmacy Choice) oral liquid solution, 100 mL 53815011000036109 Dry Cough Mixture (Pharmacy Choice) oral liquid solution, 5 mL 43051000168106 Dry Cough Mixture (Pharmacy Choice) 43051000168106 Dry Cough Mixture (Pharmacy Choice) 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +59964011000036101 Emla 5% (with 10 Occlusive Dressings) cream, 5 x 5 g, tubes 12046 55926011000036108 Emla 5% (with 10 Occlusive Dressings) cream, 5 x 5 g 53639011000036109 Emla 5% (with 10 Occlusive Dressings) cream 9941000168103 Emla 5% 9941000168103 Emla 5% 63160011000036106 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream, 5 x 5 g 61890011000036109 lidocaine (lignocaine) 2.5% + prilocaine 2.5% cream 61738011000036101 lidocaine (lignocaine) + prilocaine +61445011000036100 Imflac 25 mg enteric tablet, 15, blister pack 90103 57370011000036100 Imflac 25 mg enteric tablet, 15 54287011000036107 Imflac 25 mg enteric tablet 14421000168100 Imflac 14421000168100 Imflac 63833011000036103 diclofenac sodium 25 mg enteric tablet, 15 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +21023011000036102 Stalevo 150/37.5/200 film-coated tablet, 100, bottle 96396 14169011000036108 Stalevo 150/37.5/200 film-coated tablet, 100 7448011000036103 Stalevo 150/37.5/200 film-coated tablet 51801000168101 Stalevo 150/37.5/200 51801000168101 Stalevo 150/37.5/200 28185011000036109 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 100 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1085271000168102 Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations, pump pack 77112 41970011000036101 Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations 40295011000036106 Nasonex Aqueous 50 microgram/actuation nasal spray, actuation 3481000168101 Nasonex Aqueous 3481000168101 Nasonex Aqueous 46749011000036104 mometasone furoate 50 microgram/actuation nasal spray, 40 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +933215621000036108 Olanzapine (Lilly) 10 mg film-coated tablet, 7, blister pack 167684 933205121000036103 Olanzapine (Lilly) 10 mg film-coated tablet, 7 933196181000036109 Olanzapine (Lilly) 10 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 933205131000036101 olanzapine 10 mg tablet, 7 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +50567011000036103 Durotram XR (once a day) 200 mg modified release tablet, 3, blister pack 134822 49601011000036105 Durotram XR (once a day) 200 mg modified release tablet, 3 48787011000036107 Durotram XR (once a day) 200 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51504011000036100 tramadol hydrochloride 200 mg modified release tablet, 3 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +1000481000168109 Rivastigmine 15 (Apo) 13.3 mg/24 hours patch, 30, sachet 273559 1000471000168106 Rivastigmine 15 (Apo) 13.3 mg/24 hours patch, 30 1000431000168108 Rivastigmine 15 (Apo) 13.3 mg/24 hours patch 1000381000168101 Rivastigmine 15 (Apo) 1000381000168101 Rivastigmine 15 (Apo) 731071000168100 rivastigmine 13.3 mg/24 hours patch, 30 731051000168109 rivastigmine 13.3 mg/24 hours patch 21413011000036101 rivastigmine +1063661000168107 Strong Pain Xtra (Pharmacist Formula) uncoated tablet, 40, blister pack 188380 1063651000168105 Strong Pain Xtra (Pharmacist Formula) uncoated tablet, 40 1063541000168107 Strong Pain Xtra (Pharmacist Formula) uncoated tablet 1063441000168106 Strong Pain Xtra (Pharmacist Formula) 1063441000168106 Strong Pain Xtra (Pharmacist Formula) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +61491011000036108 Cold and Cough Elixir (Pharmacist) oral liquid solution, 200 mL, bottle 92445 57416011000036103 Cold and Cough Elixir (Pharmacist) oral liquid solution, 200 mL 54297011000036108 Cold and Cough Elixir (Pharmacist) oral liquid solution, 5 mL 41961000168105 Cold and Cough Elixir (Pharmacist) 41961000168105 Cold and Cough Elixir (Pharmacist) 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +77369011000036100 Ostelin-1000 25 microgram soft capsule, 250, bottle 67032 76785011000036101 Ostelin-1000 25 microgram soft capsule, 250 76179011000036102 Ostelin-1000 25 microgram soft capsule 8981000168104 Ostelin-1000 8981000168104 Ostelin-1000 78289011000036101 ergocalciferol 25 microgram capsule, 250 77594011000036101 ergocalciferol 25 microgram capsule 77458011000036106 ergocalciferol +772941000168103 Norspan 30 microgram/hour patch, 2, sachet 217509 772931000168107 Norspan 30 microgram/hour patch, 2 772911000168102 Norspan 30 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 772921000168109 buprenorphine 30 microgram/hour patch, 2 772901000168100 buprenorphine 30 microgram/hour patch 21232011000036101 buprenorphine +738141000168100 Avapro 75 mg film-coated tablet, 7, blister pack 101730 738131000168109 Avapro 75 mg film-coated tablet, 7 5422011000036104 Avapro 75 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 738121000168106 irbesartan 75 mg tablet, 7 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +997421000168101 Meloxicam (Apotex) 7.5 mg hard capsule, 10, blister pack 181196 997411000168108 Meloxicam (Apotex) 7.5 mg hard capsule, 10 997401000168105 Meloxicam (Apotex) 7.5 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 52886011000036109 meloxicam 7.5 mg capsule, 10 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +59722011000036106 Dermaid 0.5% cream, 30 g, tube 10605 55721011000036108 Dermaid 0.5% cream, 30 g 53710011000036102 Dermaid 0.5% cream 30751000168101 Dermaid 30751000168101 Dermaid 63117011000036106 hydrocortisone 0.5% cream, 30 g 61861011000036104 hydrocortisone 0.5% cream 21681011000036103 hydrocortisone +60477011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 2 sachets 150168 56435011000036103 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 2 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63355011000036101 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 2 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +60448011000036104 Panadol Cold and Flu Relief PE uncoated tablet, 24, blister pack 148713 56406011000036102 Panadol Cold and Flu Relief PE uncoated tablet, 24 53909011000036103 Panadol Cold and Flu Relief PE uncoated tablet 49291000168105 Panadol Cold and Flu Relief PE 49291000168105 Panadol Cold and Flu Relief PE 63345011000036104 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet, 24 61921011000036103 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61764011000036104 paracetamol + phenylephrine + dextromethorphan +933211371000036101 Roflo 500 mg film-coated tablet, 20, blister pack 125323 933200441000036108 Roflo 500 mg film-coated tablet, 20 933194341000036109 Roflo 500 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 933199821000036109 ciprofloxacin 500 mg tablet, 20 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +674931000168108 Mekinist 2 mg film-coated tablet, 30, bottle 205919 674921000168105 Mekinist 2 mg film-coated tablet, 30 674901000168101 Mekinist 2 mg film-coated tablet 674811000168109 Mekinist 674811000168109 Mekinist 674911000168103 trametinib 2 mg tablet, 30 674891000168100 trametinib 2 mg tablet 674821000168102 trametinib +50504011000036108 Handy Gloves (4209) large glove, 100, carton 49419011000036109 Handy Gloves (4209) large glove, 100 48552011000036104 Handy Gloves (4209) large glove 11431000168104 Handy Gloves (4209) 11431000168104 Handy Gloves (4209) 51387011000036105 gloves plastic disposable large glove, 100 50908011000036105 gloves plastic disposable large glove 50759011000036101 gloves plastic disposable +1059371000168101 Atomoxetine (Medis) 40 mg hard capsule, 28, blister pack 238331 1059361000168107 Atomoxetine (Medis) 40 mg hard capsule, 28 1059331000168104 Atomoxetine (Medis) 40 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +1059551000168103 Kevtam 500 mg film-coated tablet, 10, blister pack 278842 1059541000168100 Kevtam 500 mg film-coated tablet, 10 85322011000036104 Kevtam 500 mg film-coated tablet 85282011000036100 Kevtam 85282011000036100 Kevtam 46171011000036107 levetiracetam 500 mg tablet, 10 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +657711000168107 Ramipril (AN) 1.25 mg uncoated tablet, 30, bottle 175234 657701000168109 Ramipril (AN) 1.25 mg uncoated tablet, 30 657691000168109 Ramipril (AN) 1.25 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +730531000168104 Aqium 66% gel, 375 mL, bottle 76927 730521000168102 Aqium 66% gel, 375 mL 730441000168107 Aqium 66% gel 65090011000036106 Aqium 65090011000036106 Aqium 730511000168109 ethanol 66% gel, 375 mL 730431000168103 ethanol 66% gel 69846011000036106 ethanol +798881000168105 Midazolam (Accord) 50 mg/10 mL injection solution, 10 mL ampoule 207243 798871000168107 Midazolam (Accord) 50 mg/10 mL injection solution, 10 mL ampoule 798861000168101 Midazolam (Accord) 50 mg/10 mL injection solution, 10 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 664091000168103 midazolam 50 mg/10 mL injection, 10 mL ampoule 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +1026091000168107 Neuroccord 150 mg hard capsule, 14, bottle 235841 1026081000168109 Neuroccord 150 mg hard capsule, 14 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +925241000168108 Androgel 1% (50 mg/5 g) gel, 100 x 5 g sachets 96130 925231000168104 Androgel 1% (50 mg/5 g) gel, 100 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925221000168102 testosterone 1% (50 mg/5 g) gel, 100 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +925210011000036105 Glimaccord 3 mg uncoated tablet, 30, blister pack 156401 924747011000036100 Glimaccord 3 mg uncoated tablet, 30 924453011000036100 Glimaccord 3 mg uncoated tablet 924395011000036104 Glimaccord 924395011000036104 Glimaccord 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +926821011000036102 Nicabate P 21 mg/24 hours patch, 28, sachet 171308 926217011000036109 Nicabate P 21 mg/24 hours patch, 28 925681011000036103 Nicabate P 21 mg/24 hours patch 9751000168104 Nicabate P 9751000168104 Nicabate P 63763011000036105 nicotine 21 mg/24 hours patch, 28 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +991871000168105 Famciclovir (Apotex) 250 mg film-coated tablet, 20, blister pack 160562 991861000168104 Famciclovir (Apotex) 250 mg film-coated tablet, 20 991811000168102 Famciclovir (Apotex) 250 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +37501011000036107 Fucidin 50 mg/mL oral liquid suspension, 90 mL, bottle 12991 36769011000036107 Fucidin 50 mg/mL oral liquid suspension, 90 mL 36058011000036107 Fucidin 50 mg/mL oral liquid suspension 20071000168105 Fucidin 20071000168105 Fucidin 38669011000036108 fusidate 50 mg/mL oral liquid, 90 mL 37915011000036104 fusidate 50 mg/mL oral liquid 21917011000036107 fusidate +1107461000168106 Serepax 15 mg uncoated tablet, 5, blister pack 174675 1107451000168109 Serepax 15 mg uncoated tablet, 5 5299011000036104 Serepax 15 mg uncoated tablet 3507011000036107 Serepax 3507011000036107 Serepax 980271000168102 oxazepam 15 mg tablet, 5 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +1066861000168100 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 30, blister pack 197885 1066851000168102 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 30 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +929091011000036104 Pioglitazone (Apotex) 30 mg uncoated tablet, 28, blister pack 166914 928452011000036108 Pioglitazone (Apotex) 30 mg uncoated tablet, 28 927987011000036109 Pioglitazone (Apotex) 30 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +18776011000036100 Ausran 300 mg film-coated tablet, 30, bottle 104815 14214011000036106 Ausran 300 mg film-coated tablet, 30 7497011000036109 Ausran 300 mg film-coated tablet 4212011000036103 Ausran 4212011000036103 Ausran 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +20551011000036109 Alprazolam (Terry White Chemists) 1 mg tablet, 50, blister pack 79794 13802011000036105 Alprazolam (Terry White Chemists) 1 mg tablet, 50 7088011000036103 Alprazolam (Terry White Chemists) 1 mg tablet 3439011000036104 Alprazolam (Terry White Chemists) 3439011000036104 Alprazolam (Terry White Chemists) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +741001000168109 Fentora 200 microgram orally disintegrating tablet, 4, blister pack 218437 740991000168108 Fentora 200 microgram orally disintegrating tablet, 4 740971000168107 Fentora 200 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740981000168105 fentanyl 200 microgram orally disintegrating tablet, 4 740961000168101 fentanyl 200 microgram orally disintegrating tablet 21258011000036102 fentanyl +1115821000168105 Serapine 25 mg film-coated tablet, 20, blister pack 204161 1115811000168103 Serapine 25 mg film-coated tablet, 20 1115801000168101 Serapine 25 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +816241000168100 Adin 200 microgram uncoated tablet, 7, bottle 99863 816231000168109 Adin 200 microgram uncoated tablet, 7 816191000168100 Adin 200 microgram uncoated tablet 816101000168106 Adin 816101000168106 Adin 816221000168106 desmopressin acetate 200 microgram tablet, 7 23434011000036103 desmopressin acetate 200 microgram tablet 21750011000036107 desmopressin +1075401000168102 Atenolol (RBX) 25 mg film-coated tablet, 120, blister pack 197757 1075391000168104 Atenolol (RBX) 25 mg film-coated tablet, 120 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029931000168104 atenolol 25 mg tablet, 120 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +69683011000036102 Dencorub Anti-Inflammatory 1% gel, 60 g, tube 82606 67482011000036100 Dencorub Anti-Inflammatory 1% gel, 60 g 65678011000036108 Dencorub Anti-Inflammatory 1% gel 64960011000036106 Dencorub Anti-Inflammatory 64960011000036106 Dencorub Anti-Inflammatory 72016011000036109 diclofenac sodium 1% gel, 60 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +747441000168107 Junomorph 50 mg/5 mL injection solution, 5 x 5 mL ampoules 224250 747431000168103 Junomorph 50 mg/5 mL injection solution, 5 x 5 mL ampoules 747421000168101 Junomorph 50 mg/5 mL injection solution, 5 mL ampoule 747261000168105 Junomorph 747261000168105 Junomorph 707091000168103 morphine hydrochloride trihydrate 50 mg/5 mL injection, 5 x 5 mL ampoules 707071000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, ampoule 21252011000036100 morphine +828831000168103 Glivec 100 mg hard capsule, 24, blister pack 78442 828821000168101 Glivec 100 mg hard capsule, 24 828801000168105 Glivec 100 mg hard capsule 3084011000036104 Glivec 3084011000036104 Glivec 828811000168108 imatinib 100 mg capsule, 24 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +715301000168101 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g, tube 93057 715291000168102 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g 715281000168100 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream 25751000168106 Clotrimazole Thrush Treatment 3 Day (GenRx) 25751000168106 Clotrimazole Thrush Treatment 3 Day (GenRx) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +1000161000168107 Rivaroxaban (Apo) 10 mg film-coated tablet, 15, blister pack 269606 1000151000168105 Rivaroxaban (Apo) 10 mg film-coated tablet, 15 999981000168103 Rivaroxaban (Apo) 10 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 79227011000036103 rivaroxaban 10 mg tablet, 15 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +19133011000036104 Permax 1 mg uncoated tablet, 100, bottle 43651 12582011000036100 Permax 1 mg uncoated tablet, 100 4800011000036105 Permax 1 mg uncoated tablet 3138011000036108 Permax 3138011000036108 Permax 27218011000036105 pergolide 1 mg tablet, 100 22579011000036103 pergolide 1 mg tablet 21344011000036101 pergolide +923720011000036100 Sodium Citrate 8.8% (Orion) 2.64 g/30 mL oral liquid solution, 30 mL, bottle 10805 923264011000036107 Sodium Citrate 8.8% (Orion) 2.64 g/30 mL oral liquid solution, 30 mL 922963011000036101 Sodium Citrate 8.8% (Orion) 2.64 g/30 mL oral liquid solution, 30 mL 59041000168108 Sodium Citrate 8.8% (Orion) 59041000168108 Sodium Citrate 8.8% (Orion) 924100011000036101 sodium citrate dihydrate 2.64 g/30 mL oral liquid, 30 mL 923942011000036105 sodium citrate dihydrate 2.64 g/30 mL oral liquid 77470011000036106 citric acid +662051000168101 Temozolomide (AN) 20 mg hard capsule, 5, bottle 192694 662041000168103 Temozolomide (AN) 20 mg hard capsule, 5 662031000168107 Temozolomide (AN) 20 mg hard capsule 662021000168109 Temozolomide (AN) 662021000168109 Temozolomide (AN) 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +717471000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 90, bottle 167313 717451000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 90 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716961000168106 omeprazole 20 mg enteric capsule, 90 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +672461000168104 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet, 90, blister pack 208006 672451000168101 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet, 90 672401000168100 Indapamide Hemihydrate SR (Chemmart) 1.5 mg modified release tablet 672391000168102 Indapamide Hemihydrate SR (Chemmart) 672391000168102 Indapamide Hemihydrate SR (Chemmart) 27590011000036104 indapamide hemihydrate 1.5 mg modified release tablet, 90 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +790291000168109 Oxycontin 30 mg modified release tablet, 120, bottle 200028 790281000168106 Oxycontin 30 mg modified release tablet, 120 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790271000168108 oxycodone hydrochloride 30 mg modified release tablet, 120 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +34672011000036109 Invega 9 mg modified release tablet, 56, blister pack 130717 34258011000036107 Invega 9 mg modified release tablet, 56 33989011000036108 Invega 9 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35126011000036101 paliperidone 9 mg modified release tablet, 56 34857011000036103 paliperidone 9 mg modified release tablet 34837011000036104 paliperidone +781701000168100 Zedd 600 mg film-coated tablet, 8, blister pack 107603 781691000168100 Zedd 600 mg film-coated tablet, 8 781681000168103 Zedd 600 mg film-coated tablet 39708011000036106 Zedd 39708011000036106 Zedd 27449011000036109 azithromycin 600 mg tablet, 8 22796011000036100 azithromycin 600 mg tablet 21518011000036103 azithromycin +940451000168103 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 199412 940441000168100 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 7406011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 940431000168109 adalimumab 40 mg/0.8 mL injection, 0.8 mL syringe 23474011000036101 adalimumab 40 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +867361000168106 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 250 mL bag 241252 867351000168109 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 250 mL bag 867341000168107 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 250 mL bag 867331000168103 Moxifloxacin (Kabi) 867331000168103 Moxifloxacin (Kabi) 33816011000036105 moxifloxacin 400 mg/250 mL injection, 250 mL bag 33684011000036106 moxifloxacin 400 mg/250 mL injection, bag 21765011000036109 moxifloxacin +662011000168102 Isosorbide Mononitrate (AN) 60 mg modified release tablet, 30, blister pack 184066 661991000168102 Isosorbide Mononitrate (AN) 60 mg modified release tablet, 30 661981000168100 Isosorbide Mononitrate (AN) 60 mg modified release tablet 661971000168103 Isosorbide Mononitrate (AN) 661971000168103 Isosorbide Mononitrate (AN) 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +31501000036109 Actiq 1200 microgram lozenge on handle, 9, blister pack 91603 29371000036106 Actiq 1200 microgram lozenge on handle, 9 34079011000036109 Actiq 1200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 29381000036108 fentanyl 1200 microgram lozenge on handle, 9 34914011000036108 fentanyl 1200 microgram lozenge on handle 21258011000036102 fentanyl +931618011000036109 Pravista 40 mg film-coated tablet, 500, bottle 163562 930779011000036105 Pravista 40 mg film-coated tablet, 500 930042011000036102 Pravista 40 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932419011000036104 pravastatin sodium 40 mg tablet, 500 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +920704011000036100 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 10, blister pack 119091 920362011000036107 Zolpidem Tartrate (GA) 10 mg film-coated tablet, 10 920131011000036104 Zolpidem Tartrate (GA) 10 mg film-coated tablet 920116011000036103 Zolpidem Tartrate (GA) 920116011000036103 Zolpidem Tartrate (GA) 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +69441011000036107 Sodium Chloride (Baxter) 0.9% (2.25 g/250 mL) intravenous infusion injection, 24 x 250 mL bags 48517 67241011000036103 Sodium Chloride (Baxter) 0.9% (2.25 g/250 mL) intravenous infusion injection, 24 x 250 mL bags 65571011000036109 Sodium Chloride (Baxter) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71791011000036101 sodium chloride 0.9% (2.25 g/250 mL) injection, 24 x 250 mL bags 70187011000036109 sodium chloride 0.9% (2.25 g/250 mL) injection, bag 21308011000036103 sodium chloride +858701000168102 Amidep 50 mg film-coated tablet, 20, blister pack 215347 858691000168102 Amidep 50 mg film-coated tablet, 20 858681000168100 Amidep 50 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692331000168108 amitriptyline hydrochloride 50 mg tablet, 20 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +901881000168106 Amisulpride (SCP) 100 mg uncoated tablet, 90, blister pack 234706 901871000168108 Amisulpride (SCP) 100 mg uncoated tablet, 90 901821000168107 Amisulpride (SCP) 100 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +50613011000036104 Seroquel XR 50 mg modified release tablet, 100, blister pack 138917 49639011000036104 Seroquel XR 50 mg modified release tablet, 100 48795011000036103 Seroquel XR 50 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51530011000036103 quetiapine 50 mg modified release tablet, 100 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +798921000168103 Midazolam (Accord) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207243 798911000168105 Midazolam (Accord) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 798861000168101 Midazolam (Accord) 50 mg/10 mL injection solution, 10 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +798921000168103 Midazolam (Accord) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207225 798911000168105 Midazolam (Accord) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 798861000168101 Midazolam (Accord) 50 mg/10 mL injection solution, 10 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +926718011000036102 Perindopril Erbumine (Lupin) 8 mg uncoated tablet, 30, blister pack 125450 926129011000036105 Perindopril Erbumine (Lupin) 8 mg uncoated tablet, 30 925624011000036105 Perindopril Erbumine (Lupin) 8 mg uncoated tablet 925563011000036107 Perindopril Erbumine (Lupin) 925563011000036107 Perindopril Erbumine (Lupin) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +60068011000036101 Bisolvon Chesty 8 mg uncoated tablet, 20, blister pack 17915 56030011000036103 Bisolvon Chesty 8 mg uncoated tablet, 20 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63198011000036106 bromhexine hydrochloride 8 mg tablet, 20 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +60068011000036101 Bisolvon Chesty 8 mg uncoated tablet, 20, blister pack 125375 56030011000036103 Bisolvon Chesty 8 mg uncoated tablet, 20 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63198011000036106 bromhexine hydrochloride 8 mg tablet, 20 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +794951000168100 Instanyl 50 microgram/actuation nasal spray, 2 x 1 actuation, pump packs 197680 794941000168102 Instanyl 50 microgram/actuation nasal spray, 2 x 1 actuation 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 794931000168106 fentanyl 50 microgram/actuation nasal spray, 2 x 1 actuation 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +829151000168109 Imatinib (Teva) 100 mg film-coated tablet, 500, bottle 232227 829141000168107 Imatinib (Teva) 100 mg film-coated tablet, 500 829101000168105 Imatinib (Teva) 100 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 829131000168103 imatinib 100 mg tablet, 500 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +661691000168105 Lisinopril (AN) 20 mg uncoated tablet, 30, blister pack 152714 661681000168107 Lisinopril (AN) 20 mg uncoated tablet, 30 661671000168109 Lisinopril (AN) 20 mg uncoated tablet 661661000168103 Lisinopril (AN) 661661000168103 Lisinopril (AN) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1060331000168103 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 90, blister pack 234539 1058751000168102 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 90 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910681000168104 rosuvastatin 20 mg tablet, 90 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +760351000168107 Sildenafil (DRLA) 25 mg film-coated tablet, 12, blister pack 186282 760341000168105 Sildenafil (DRLA) 25 mg film-coated tablet, 12 760241000168104 Sildenafil (DRLA) 25 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760331000168101 sildenafil 25 mg tablet, 12 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +741341000168108 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 5 x 0.375 mL injection devices 231051 741331000168104 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 5 x 0.375 mL injection devices 741281000168107 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741321000168102 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, 5 x 0.375 mL injection devices 741271000168109 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, injection device 21352011000036107 follitropin alfa +69678011000036102 Sinus Relief (Nyal) 5 mg/5 mL oral liquid solution, 200 mL, bottle 81452 67477011000036106 Sinus Relief (Nyal) 5 mg/5 mL oral liquid solution, 200 mL 65677011000036107 Sinus Relief (Nyal) 5 mg/5 mL oral liquid solution, 5 mL 65176011000036108 Sinus Relief (Nyal) 65176011000036108 Sinus Relief (Nyal) 72001011000036101 phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 70274011000036109 phenylephrine hydrochloride 5 mg/5 mL oral liquid 37732011000036107 phenylephrine +69130011000036103 Nicotinell Classic 2 mg chewing gum, 144, blister pack 152893 66930011000036106 Nicotinell Classic 2 mg chewing gum, 144 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71510011000036105 nicotine 2 mg gum, 144 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +59739011000036104 Dramamine 50 mg uncoated tablet, 10, blister pack 10270 55679011000036104 Dramamine 50 mg uncoated tablet, 10 53690011000036107 Dramamine 50 mg uncoated tablet 53205011000036104 Dramamine 53205011000036104 Dramamine 63091011000036108 dimenhydrinate 50 mg tablet, 10 61854011000036109 dimenhydrinate 50 mg tablet 61773011000036108 dimenhydrinate +1000231000168109 Rivaroxaban (Apo) 15 mg film-coated tablet, 28, blister pack 269604 1000071000168102 Rivaroxaban (Apo) 15 mg film-coated tablet, 28 1000061000168108 Rivaroxaban (Apo) 15 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 83241000036103 rivaroxaban 15 mg tablet, 28 78931000036102 rivaroxaban 15 mg tablet 79098011000036103 rivaroxaban +859021000168101 Amisulpride (Sanofi) 100 mg uncoated tablet, 30, blister pack 143101 859011000168108 Amisulpride (Sanofi) 100 mg uncoated tablet, 30 859001000168105 Amisulpride (Sanofi) 100 mg uncoated tablet 858991000168105 Amisulpride (Sanofi) 858991000168105 Amisulpride (Sanofi) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +998061000168104 Desloratadine (Apo) 5 mg film-coated tablet, 1, blister pack 202823 998051000168101 Desloratadine (Apo) 5 mg film-coated tablet, 1 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72017011000036107 desloratadine 5 mg tablet, 1 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +933211771000036100 Ciprofloxacin (BL) 750 mg film-coated tablet, 10, blister pack 114048 933199851000036103 Ciprofloxacin (BL) 750 mg film-coated tablet, 10 933194131000036102 Ciprofloxacin (BL) 750 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 87795011000036102 ciprofloxacin 750 mg tablet, 10 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +854751000168108 Algerika 25 mg hard capsule, 21, blister pack 229554 854741000168106 Algerika 25 mg hard capsule, 21 854691000168109 Algerika 25 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854731000168102 pregabalin 25 mg capsule, 21 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1075081000168100 Atenolol (RBX) 100 mg film-coated tablet, 100, bottle 197762 1075071000168103 Atenolol (RBX) 100 mg film-coated tablet, 100 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1033321000168104 atenolol 100 mg tablet, 100 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +931636011000036104 Aranesp with Automatic Needle Guard 50 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 166095 930796011000036109 Aranesp with Automatic Needle Guard 50 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 930051011000036106 Aranesp with Automatic Needle Guard 50 microgram/0.5 mL injection solution, 0.5 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27856011000036106 darbepoetin alfa 50 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23184011000036106 darbepoetin alfa 50 microgram/0.5 mL injection, syringe 21234011000036105 darbepoetin alfa +927678011000036101 TYR Gel powder for oral liquid, 30 x 24 g sachets 927614011000036101 TYR Gel powder for oral liquid, 30 x 24 g sachets 374661000168102 TYR Gel powder for oral liquid, 24 g sachet 21341000168105 TYR Gel 21341000168105 TYR Gel 927726011000036105 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 30 x 24 g sachets 374431000168107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 24 g sachet 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +809741000168101 Entresto 97/103 film-coated tablet, 60, blister pack 234218 809731000168105 Entresto 97/103 film-coated tablet, 60 809651000168108 Entresto 97/103 film-coated tablet 805781000168109 Entresto 97/103 805781000168109 Entresto 97/103 809721000168107 sacubitril 97.2 mg + valsartan 102.8 mg tablet, 60 809641000168106 sacubitril 97.2 mg + valsartan 102.8 mg tablet 809631000168102 sacubitril + valsartan +74823011000036103 Lisinopril (Ranbaxy) 10 mg uncoated tablet, 30, blister pack 153190 74310011000036102 Lisinopril (Ranbaxy) 10 mg uncoated tablet, 30 73811011000036109 Lisinopril (Ranbaxy) 10 mg uncoated tablet 73751011000036103 Lisinopril (Ranbaxy) 73751011000036103 Lisinopril (Ranbaxy) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +931773011000036101 Concerta 18 mg modified release tablet, 100, bottle 93862 930933011000036104 Concerta 18 mg modified release tablet, 100 7353011000036100 Concerta 18 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932502011000036100 methylphenidate hydrochloride 18 mg modified release tablet, 100 23437011000036109 methylphenidate hydrochloride 18 mg modified release tablet 21277011000036101 methylphenidate +44472011000036106 Cetrotide (7 x 250 microgram vials, 7 x 1 mL inert diluent syringes), 1 pack, composite pack 74888 41928011000036100 Cetrotide (7 x 250 microgram vials, 7 x 1 mL inert diluent syringes), 1 pack 40268011000036103 Cetrotide (cetrorelix 250 microgram) powder for injection, 250 microgram vial 39577011000036104 Cetrotide 39577011000036104 Cetrotide 46715011000036105 cetrorelix 250 microgram injection [7 vials] (&) inert substance diluent [7 x 1 mL syringes], 1 pack 45279011000036105 cetrorelix 250 microgram injection, vial 44872011000036102 cetrorelix +44472011000036106 Cetrotide (7 x 250 microgram vials, 7 x 1 mL inert diluent syringes), 1 pack, composite pack 74888 41928011000036100 Cetrotide (7 x 250 microgram vials, 7 x 1 mL inert diluent syringes), 1 pack 640971000168100 Cetrotide (inert substance) diluent, 1 mL syringe 39577011000036104 Cetrotide 39577011000036104 Cetrotide 46715011000036105 cetrorelix 250 microgram injection [7 vials] (&) inert substance diluent [7 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +1094491000168102 Amorolfine Anti Fungal Nail Treatment (Amcal) 5% application, 5 mL, bottle 233466 1094481000168100 Amorolfine Anti Fungal Nail Treatment (Amcal) 5% application, 5 mL 1094471000168103 Amorolfine Anti Fungal Nail Treatment (Amcal) 5% application 1094411000168106 Amorolfine Anti Fungal Nail Treatment (Amcal) 1094411000168106 Amorolfine Anti Fungal Nail Treatment (Amcal) 27384011000036107 amorolfine 5% application, 5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +649081000168105 Lorastyne (Pharmacy Action) 10 mg uncoated tablet, 10, blister pack 191959 649071000168107 Lorastyne (Pharmacy Action) 10 mg uncoated tablet, 10 649061000168101 Lorastyne (Pharmacy Action) 10 mg uncoated tablet 649051000168103 Lorastyne (Pharmacy Action) 649051000168103 Lorastyne (Pharmacy Action) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +1043091000168104 Pryzex ODT 10 mg orally disintegrating tablet, 40, blister pack 179076 1043081000168102 Pryzex ODT 10 mg orally disintegrating tablet, 40 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043071000168100 olanzapine 10 mg orally disintegrating tablet, 40 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +61064011000036102 Duofilm Gel 27% gel, 25 g, tube 68367 57007011000036105 Duofilm Gel 27% gel, 25 g 54157011000036104 Duofilm Gel 27% gel 53102011000036105 Duofilm Gel 53102011000036105 Duofilm Gel 63685011000036103 salicylic acid 27% gel, 25 g 62046011000036103 salicylic acid 27% gel 52232011000036106 salicylic acid +856761000168102 Entrip 25 mg film-coated tablet, 1000, blister pack 232154 856751000168104 Entrip 25 mg film-coated tablet, 1000 856661000168105 Entrip 25 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +18840011000036104 Uremide 40 mg uncoated tablet, 100, bottle 17704 12152011000036100 Uremide 40 mg uncoated tablet, 100 5862011000036100 Uremide 40 mg uncoated tablet 3144011000036100 Uremide 3144011000036100 Uremide 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +867561000168100 Fentanor 10 mg/mL injection solution, 5 x 1 mL ampoules 867551000168102 Fentanor 10 mg/mL injection solution, 5 x 1 mL ampoules 867541000168104 Fentanor 10 mg/mL injection solution, ampoule 867531000168108 Fentanor 867531000168108 Fentanor 38566011000036109 phentolamine mesylate 10 mg/mL injection, 5 x 1 mL ampoules 37842011000036109 phentolamine mesylate 10 mg/mL injection, ampoule 37769011000036108 phentolamine +1008891000168107 Lisinopril (Apotex) 5 mg tablet, 30, blister pack 143911 1008881000168109 Lisinopril (Apotex) 5 mg tablet, 30 1008871000168106 Lisinopril (Apotex) 5 mg tablet 52382011000036107 Lisinopril (Apotex) 52382011000036107 Lisinopril (Apotex) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +19836011000036103 Metohexal 100 mg uncoated tablet, 60, bottle 64136 13087011000036109 Metohexal 100 mg uncoated tablet, 60 6371011000036102 Metohexal 100 mg uncoated tablet 3356011000036103 Metohexal 3356011000036103 Metohexal 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +1049581000168108 Codapane Forte 500/30 uncoated tablet, 10, blister pack 285558 1049571000168105 Codapane Forte 500/30 uncoated tablet, 10 835931000168100 Codapane Forte 500/30 uncoated tablet 27331000168106 Codapane Forte 500/30 27331000168106 Codapane Forte 500/30 1047321000168108 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 10 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +68957011000036102 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 8 sachets 133242 66759011000036106 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 8 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71427011000036109 paracetamol 500 mg powder for oral liquid, 8 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1064531000168100 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 24, blister pack 202702 1064521000168103 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet, 24 1064451000168105 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) uncoated tablet 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 1064441000168108 Paracetamol 500 mg Codeine Phosphate 10 mg and Doxylamine Succinate 5.1 mg (Medreich) 52866011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 24 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +679051000168104 Duoplidogrel 75 mg/100 mg film-coated tablet, 30, blister pack 150480 679041000168101 Duoplidogrel 75 mg/100 mg film-coated tablet, 30 679031000168105 Duoplidogrel 75 mg/100 mg film-coated tablet 679021000168107 Duoplidogrel 75 mg/100 mg 679021000168107 Duoplidogrel 75 mg/100 mg 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +86144011000036100 Loratadine (Trust) 10 mg uncoated tablet, 10, blister pack 161830 85752011000036101 Loratadine (Trust) 10 mg uncoated tablet, 10 85375011000036106 Loratadine (Trust) 10 mg uncoated tablet 85288011000036102 Loratadine (Trust) 85288011000036102 Loratadine (Trust) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +926855011000036104 Microshield-5 5% solution, 500 mL, bottle 30954 926251011000036109 Microshield-5 5% solution, 500 mL 925700011000036104 Microshield-5 5% solution 29851000168104 Microshield-5 29851000168104 Microshield-5 71682011000036101 chlorhexidine gluconate 5% solution, 500 mL 70121011000036105 chlorhexidine gluconate 5% solution 21404011000036101 chlorhexidine +50418011000036106 Algisite M (66000519) 5 cm x 5 cm medicated dressing, 10, carton 49390011000036109 Algisite M (66000519) 5 cm x 5 cm medicated dressing, 10 48570011000036101 Algisite M (66000519) 5 cm x 5 cm medicated dressing 28541000168106 Algisite M (66000519) 28541000168106 Algisite M (66000519) 51363011000036104 dressing alginate superficial wound 5 cm x 5 cm dressing, 10 50885011000036105 dressing alginate superficial wound 5 cm x 5 cm dressing 50715011000036105 dressing alginate superficial wound +933211691000036109 Ciprofloxacin (BL) 500 mg film-coated tablet, 20, blister pack 114047 933199811000036102 Ciprofloxacin (BL) 500 mg film-coated tablet, 20 933194151000036105 Ciprofloxacin (BL) 500 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 933199821000036109 ciprofloxacin 500 mg tablet, 20 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +69199011000036101 Ringer-Lactate (Baxter) irrigation solution, 4 x 3 L bags 19442 66999011000036108 Ringer-Lactate (Baxter) irrigation solution, 4 x 3 L bags 65526011000036100 Ringer-Lactate (Baxter) irrigation solution, 3 L bag 64946011000036103 Ringer-Lactate (Baxter) 64946011000036103 Ringer-Lactate (Baxter) 71569011000036100 sodium lactate 9.66 g/3 L + sodium chloride 18 g/3 L + potassium chloride 1.2 g/3 L + calcium chloride dihydrate 810 mg/3 L solution, 4 x 3 L bags 70069011000036105 sodium lactate 9.66 g/3 L + sodium chloride 18 g/3 L + potassium chloride 1.2 g/3 L + calcium chloride dihydrate 810 mg/3 L solution, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +1107381000168105 Cabometyx 40 mg film-coated tablet, 30, bottle 283801 1107371000168107 Cabometyx 40 mg film-coated tablet, 30 1107351000168103 Cabometyx 40 mg film-coated tablet 1107321000168106 Cabometyx 1107321000168106 Cabometyx 1107361000168101 cabozantinib 40 mg tablet, 30 1107341000168100 cabozantinib 40 mg tablet 1107331000168109 cabozantinib +867521000168105 Linevox 600 mg film-coated tablet, 10, blister pack 237304 867511000168103 Linevox 600 mg film-coated tablet, 10 867501000168101 Linevox 600 mg film-coated tablet 867491000168108 Linevox 867491000168108 Linevox 46772011000036108 linezolid 600 mg tablet, 10 45309011000036108 linezolid 600 mg tablet 44888011000036109 linezolid +31341000036101 Nystatin (Chemmart) 100 000 units/mL oral liquid suspension, 24 mL, bottle 171911 28441000036103 Nystatin (Chemmart) 100 000 units/mL oral liquid suspension, 24 mL 26791000036104 Nystatin (Chemmart) 100 000 units/mL oral liquid suspension 26221000036106 Nystatin (Chemmart) 26221000036106 Nystatin (Chemmart) 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +60223011000036107 Strepfen Intensive honey and lemon 8.75 mg lozenge, 2, blister pack 133376 56182011000036101 Strepfen Intensive honey and lemon 8.75 mg lozenge, 2 53828011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63908011000036107 flurbiprofen 8.75 mg lozenge, 2 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +68854011000036103 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 0.2% irrigation solution, 30 x 30 mL ampoules 11324 66604011000036108 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 0.2% irrigation solution, 30 x 30 mL ampoules 65436011000036109 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 0.2% irrigation solution, 30 mL ampoule 37211000168107 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 37211000168107 Chlorhexidine Gluconate Catheter Prep (Pfizer (Perth)) 71326011000036103 chlorhexidine gluconate 0.2% solution, 30 x 30 mL ampoules 69951011000036107 chlorhexidine gluconate 0.2% solution, ampoule 21404011000036101 chlorhexidine +781841000168109 Rosuvastatin (Amneal) 20 mg film-coated tablet, 30, blister pack 183643 781831000168100 Rosuvastatin (Amneal) 20 mg film-coated tablet, 30 781821000168103 Rosuvastatin (Amneal) 20 mg film-coated tablet 781711000168102 Rosuvastatin (Amneal) 781711000168102 Rosuvastatin (Amneal) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +914631000168106 Zithromax 250 mg hard capsule, 6, blister pack 48037 914621000168108 Zithromax 250 mg hard capsule, 6 914571000168105 Zithromax 250 mg hard capsule 3528011000036100 Zithromax 3528011000036100 Zithromax 914611000168101 azithromycin 250 mg capsule, 6 914561000168104 azithromycin 250 mg capsule 21518011000036103 azithromycin +74868011000036101 Decongestant (Terry White Chemists) Refill 0.05% nasal spray, 20 mL, bottle 59109 74355011000036104 Decongestant (Terry White Chemists) Refill 0.05% nasal spray, 20 mL 73886011000036101 Decongestant (Terry White Chemists) Refill 0.05% nasal spray 73702011000036103 Decongestant (Terry White Chemists) 73702011000036103 Decongestant (Terry White Chemists) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +920670011000036105 Perindopril Erbumine (GA) 4 mg uncoated tablet, 30, blister pack 203125 920373011000036107 Perindopril Erbumine (GA) 4 mg uncoated tablet, 30 920139011000036100 Perindopril Erbumine (GA) 4 mg uncoated tablet 920105011000036108 Perindopril Erbumine (GA) 920105011000036108 Perindopril Erbumine (GA) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +920670011000036105 Perindopril Erbumine (GA) 4 mg uncoated tablet, 30, blister pack 121635 920373011000036107 Perindopril Erbumine (GA) 4 mg uncoated tablet, 30 920139011000036100 Perindopril Erbumine (GA) 4 mg uncoated tablet 920105011000036108 Perindopril Erbumine (GA) 920105011000036108 Perindopril Erbumine (GA) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +926795011000036109 Ondansetron (DRLA) 8 mg film-coated tablet, 10, blister pack 163429 926191011000036103 Ondansetron (DRLA) 8 mg film-coated tablet, 10 925666011000036106 Ondansetron (DRLA) 8 mg film-coated tablet 20111000168103 Ondansetron (DRLA) 20111000168103 Ondansetron (DRLA) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +897471000168109 Nicotinell Mint 4 mg chewing gum, 216, blister pack 126044 897461000168103 Nicotinell Mint 4 mg chewing gum, 216 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897451000168100 nicotine 4 mg gum, 216 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1092401000168100 Antiseptic Solution (Terry White Chemists) 10% solution, 100 mL, bottle 281617 1092391000168102 Antiseptic Solution (Terry White Chemists) 10% solution, 100 mL 1092361000168109 Antiseptic Solution (Terry White Chemists) 10% solution 1092351000168107 Antiseptic Solution (Terry White Chemists) 1092351000168107 Antiseptic Solution (Terry White Chemists) 71675011000036102 povidone-iodine 10% solution, 100 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +858931000168106 Amidep 10 mg film-coated tablet, 50, blister pack 215399 858921000168108 Amidep 10 mg film-coated tablet, 50 858891000168103 Amidep 10 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1109561000168102 Nicotinell Ice Mint 2 mg chewing gum, 120, blister pack 279615 1109551000168104 Nicotinell Ice Mint 2 mg chewing gum, 120 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71509011000036101 nicotine 2 mg gum, 120 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +20101011000036105 Neurontin 800 mg film-coated tablet, 100, blister pack 71791 13327011000036103 Neurontin 800 mg film-coated tablet, 100 6613011000036103 Neurontin 800 mg film-coated tablet 4344011000036106 Neurontin 4344011000036106 Neurontin 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +32598011000036104 Asmol CFC-Free 100 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 65639 32393011000036106 Asmol CFC-Free 100 microgram/actuation pressurised inhalation, 200 actuations 6422011000036102 Asmol CFC-Free 100 microgram/actuation pressurised inhalation, actuation 63021000168109 Asmol 63021000168109 Asmol 27601011000036100 salbutamol 100 microgram/actuation pressurised inhalation, 200 actuations 22940011000036103 salbutamol 100 microgram/actuation pressurised inhalation, actuation 21493011000036100 salbutamol +60580011000036103 Dithrasal 1% ointment, 50 g, tube 15561 56538011000036104 Dithrasal 1% ointment, 50 g 53960011000036108 Dithrasal 1% ointment 53372011000036105 Dithrasal 53372011000036105 Dithrasal 63404011000036103 dithranol 1% ointment, 50 g 61943011000036104 dithranol 1% ointment 61732011000036104 dithranol +983201000168102 Cetirizine (AN) 10 mg film-coated tablet, 1000, blister pack 126249 983191000168100 Cetirizine (AN) 10 mg film-coated tablet, 1000 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63284011000036100 cetirizine hydrochloride 10 mg tablet, 1000 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1075361000168106 Atenolol (RBX) 25 mg film-coated tablet, 98, blister pack 197757 1075351000168109 Atenolol (RBX) 25 mg film-coated tablet, 98 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029861000168100 atenolol 25 mg tablet, 98 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +863111000168102 Amitriptyline (AC) 25 mg tablet, 1000, blister pack 232107 863101000168100 Amitriptyline (AC) 25 mg tablet, 1000 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +931464011000036100 Demazin Cough and Cold Relief oral liquid solution, 200 mL, bottle 151700 930643011000036102 Demazin Cough and Cold Relief oral liquid solution, 200 mL 929987011000036100 Demazin Cough and Cold Relief oral liquid solution, 5 mL 28931000168108 Demazin Cough and Cold Relief 28931000168108 Demazin Cough and Cold Relief 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +20343011000036105 Salbutamol (Chemmart) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 76220 13552011000036103 Salbutamol (Chemmart) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6834011000036103 Salbutamol (Chemmart) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 4033011000036107 Salbutamol (Chemmart) 4033011000036107 Salbutamol (Chemmart) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +764601000168106 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet, 60, blister pack 214488 764591000168104 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet, 60 764541000168107 Oxycodone MR (Terry White Chemists) 10 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +95481000036108 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet, 30, blister pack 185976 94371000036100 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet, 30 93661000036104 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet 93211000036103 Fexofenadine Hydrochloride (Pharmacy Choice) 93211000036103 Fexofenadine Hydrochloride (Pharmacy Choice) 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +933246411000036102 Lamotrigine (PS) 25 mg tablet, 56, blister pack 147631 933242961000036106 Lamotrigine (PS) 25 mg tablet, 56 933241231000036103 Lamotrigine (PS) 25 mg tablet 933240971000036104 Lamotrigine (PS) 933240971000036104 Lamotrigine (PS) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +69488011000036109 Strepsils Plus lozenge, 4, blister pack 50509 67288011000036101 Strepsils Plus lozenge, 4 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71836011000036103 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 4 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +674791000168105 Serenace 10 mg/mL injection solution, 10 x 1 mL ampoules 63706 674781000168107 Serenace 10 mg/mL injection solution, 10 x 1 mL ampoules 674761000168103 Serenace 10 mg/mL injection solution, ampoule 3608011000036103 Serenace 3608011000036103 Serenace 674771000168109 haloperidol 10 mg/mL injection, 10 x 1 mL ampoules 674751000168100 haloperidol 10 mg/mL injection, ampoule 21443011000036108 haloperidol +50291011000036102 XP Maxamaid powder for oral liquid, 500 g, can 49498011000036102 XP Maxamaid powder for oral liquid, 500 g 48524011000036107 XP Maxamaid powder for oral liquid 53061000168105 XP Maxamaid 53061000168105 XP Maxamaid 51452011000036109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 500 g 50960011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +19859011000036106 Airomir 100 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 64799 13106011000036100 Airomir 100 microgram/actuation pressurised inhalation, 200 actuations 6390011000036102 Airomir 100 microgram/actuation pressurised inhalation, actuation 49511000168104 Airomir 49511000168104 Airomir 27601011000036100 salbutamol 100 microgram/actuation pressurised inhalation, 200 actuations 22940011000036103 salbutamol 100 microgram/actuation pressurised inhalation, actuation 21493011000036100 salbutamol +33594011000036100 Cefotaxime (Mayne Pharma) 1 g powder for injection, 10 vials 78702 33332011000036100 Cefotaxime (Mayne Pharma) 1 g powder for injection, 10 vials 33093011000036104 Cefotaxime (Mayne Pharma) 1 g powder for injection, vial 4444011000036102 Cefotaxime (Mayne Pharma) 4444011000036102 Cefotaxime (Mayne Pharma) 33814011000036102 cefotaxime 1 g injection, 10 vials 33682011000036102 cefotaxime 1 g injection, vial 21327011000036105 cefotaxime +17970011000036102 Betnovate 0.1% cream, 30 g, tube 12492 11784011000036109 Betnovate 0.1% cream, 30 g 4628011000036109 Betnovate 0.1% cream 34021000168102 Betnovate 34021000168102 Betnovate 26768011000036100 betamethasone (as valerate) 0.1% cream, 30 g 22155011000036107 betamethasone (as valerate) 0.1% cream 21366011000036103 betamethasone valerate +809801000168105 Entresto 49/51 film-coated tablet, 14, blister pack 234222 809791000168109 Entresto 49/51 film-coated tablet, 14 809771000168108 Entresto 49/51 film-coated tablet 809751000168104 Entresto 49/51 809751000168104 Entresto 49/51 809781000168106 sacubitril 48.6 mg + valsartan 51.4 mg tablet, 14 809761000168102 sacubitril 48.6 mg + valsartan 51.4 mg tablet 809631000168102 sacubitril + valsartan +1116061000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 14, blister pack 158165 1116051000168100 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet, 14 1115991000168100 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) film-coated tablet 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 1115981000168103 Valsartan/Amlodipine/HCT 160/10/12.5 (Novartis) 922584011000036109 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 14 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +20585011000036102 C-Flox 750 mg film-coated tablet, 14, blister pack 195204 13773011000036107 C-Flox 750 mg film-coated tablet, 14 7059011000036103 C-Flox 750 mg film-coated tablet 3474011000036103 C-Flox 3474011000036103 C-Flox 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +20585011000036102 C-Flox 750 mg film-coated tablet, 14, blister pack 80505 13773011000036107 C-Flox 750 mg film-coated tablet, 14 7059011000036103 C-Flox 750 mg film-coated tablet 3474011000036103 C-Flox 3474011000036103 C-Flox 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +648991000168102 Methaccord 50 mg/2 mL injection solution, 2 mL vial 159101 648981000168100 Methaccord 50 mg/2 mL injection solution, 2 mL vial 2611000036105 Methaccord 50 mg/2 mL injection solution, 2 mL vial 1131000036103 Methaccord 1131000036103 Methaccord 648971000168103 methotrexate 50 mg/2 mL injection, 2 mL vial 22291011000036103 methotrexate 50 mg/2 mL injection, vial 21342011000036105 methotrexate +925262011000036105 Sumatriptan (Chemmart) 100 mg film-coated tablet, 4, blister pack 160198 924799011000036103 Sumatriptan (Chemmart) 100 mg film-coated tablet, 4 924493011000036106 Sumatriptan (Chemmart) 100 mg film-coated tablet 924383011000036104 Sumatriptan (Chemmart) 924383011000036104 Sumatriptan (Chemmart) 46116011000036106 sumatriptan 100 mg tablet, 4 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +811751000168102 Afinitor 5 mg dispersible tablet, 120, blister pack 200205 811741000168104 Afinitor 5 mg dispersible tablet, 120 811601000168107 Afinitor 5 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811731000168108 everolimus 5 mg dispersible tablet, 120 811591000168100 everolimus 5 mg dispersible tablet 21615011000036103 everolimus +83182011000036109 Carvedilol (Generic Health) 6.25 mg uncoated tablet, 60, blister pack 152419 83128011000036103 Carvedilol (Generic Health) 6.25 mg uncoated tablet, 60 83072011000036109 Carvedilol (Generic Health) 6.25 mg uncoated tablet 83061011000036108 Carvedilol (Generic Health) 83061011000036108 Carvedilol (Generic Health) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +86851000036109 Artiss solution, 2 mL, dual chamber syringe 163515 86511000036107 Artiss solution, 2 mL 86041000036100 Artiss solution 85941000036108 Artiss 85941000036108 Artiss 86521000036100 aprotinin 3000 KI units/mL + factor XIII 10 units/mL + fibrinogen 110 mg/mL + human thrombin 4 units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL solution, 2 mL 86051000036102 aprotinin 3000 KI units/mL + factor XIII 10 units/mL + fibrinogen 110 mg/mL + human thrombin 4 units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL solution 91891000036106 aprotinin + factor XIII + fibrinogen + human thrombin + calcium chloride dihydrate +44599011000036101 Paroxetine (Sandoz) 20 mg film-coated tablet, 30, bottle 82550 42052011000036107 Paroxetine (Sandoz) 20 mg film-coated tablet, 30 40335011000036108 Paroxetine (Sandoz) 20 mg film-coated tablet 39721011000036107 Paroxetine (Sandoz) 39721011000036107 Paroxetine (Sandoz) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +905971000168101 Carlevent 75/18.75/200 film-coated tablet, 100, bottle 195194 905961000168107 Carlevent 75/18.75/200 film-coated tablet, 100 905951000168105 Carlevent 75/18.75/200 film-coated tablet 905941000168108 Carlevent 75/18.75/200 905941000168108 Carlevent 75/18.75/200 84649011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 100 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +18189011000036107 Roxithromycin (RL) 150 mg film-coated tablet, 10, blister pack 129648 11879011000036102 Roxithromycin (RL) 150 mg film-coated tablet, 10 5537011000036107 Roxithromycin (RL) 150 mg film-coated tablet 4218011000036100 Roxithromycin (RL) 4218011000036100 Roxithromycin (RL) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +60874011000036103 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet, 90, bottle 59522 56828011000036103 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet, 90 54091011000036109 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet 53178011000036104 Ferro-Gradumet 53178011000036104 Ferro-Gradumet 63597011000036102 ferrous sulfate 325 mg (iron 105 mg) modified release tablet, 90 62023011000036106 ferrous sulfate 325 mg (iron 105 mg) modified release tablet 61721011000036108 ferrous sulfate +1069191000168108 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 15, blister pack 197886 1069181000168105 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 15 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +657991000168101 Telmigen HCT 80/25mg multilayer tablet, 28, blister pack 208079 657981000168104 Telmigen HCT 80/25mg multilayer tablet, 28 657971000168102 Telmigen HCT 80/25mg multilayer tablet 657961000168108 Telmigen HCT 80/25mg 657961000168108 Telmigen HCT 80/25mg 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +933215941000036106 Gaviscon Peppermint oral liquid suspension, 500 mL, bottle 52571 933205461000036100 Gaviscon Peppermint oral liquid suspension, 500 mL 933196551000036107 Gaviscon Peppermint oral liquid suspension, 10 mL 5001000168104 Gaviscon 5001000168104 Gaviscon 933202061000036104 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid, 500 mL 933194081000036102 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +1017271000168108 Famciclovir (Apotex) 500 mg film-coated tablet, 56, blister pack 172444 1017261000168102 Famciclovir (Apotex) 500 mg film-coated tablet, 56 1016821000168106 Famciclovir (Apotex) 500 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +18523011000036108 Carvedilol (GenRx) 3.125 mg film-coated tablet, 30, blister pack 123826 11747011000036107 Carvedilol (GenRx) 3.125 mg film-coated tablet, 30 5363011000036105 Carvedilol (GenRx) 3.125 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +1006561000168101 Maltofer 370 mg (iron 100 mg) film-coated tablet, 30, blister pack 229647 1006551000168103 Maltofer 370 mg (iron 100 mg) film-coated tablet, 30 1006531000168109 Maltofer 370 mg (iron 100 mg) film-coated tablet 1006511000168104 Maltofer 1006511000168104 Maltofer 1006541000168100 iron polymaltose 370 mg (iron 100 mg) tablet, 30 1006521000168106 iron polymaltose 370 mg (iron 100 mg) tablet 21803011000036105 iron polymaltose +19324011000036106 Timoptol-XE 0.5% eye drops solution, 2.5 mL, bottle 50306 12614011000036104 Timoptol-XE 0.5% eye drops solution, 2.5 mL 5835011000036101 Timoptol-XE 0.5% eye drops solution 24031000168101 Timoptol-XE 24031000168101 Timoptol-XE 27237011000036102 timolol 0.5% eye drops, 2.5 mL 22597011000036101 timolol 0.5% eye drops 21318011000036100 timolol +20217011000036102 Rapilysin (2 x 10 units (17.4 mg) vials, 2 x 10 mL inert diluent syringes), 1 pack, composite pack 74138 13435011000036100 Rapilysin (2 x 10 units (17.4 mg) vials, 2 x 10 mL inert diluent syringes), 1 pack 6716011000036102 Rapilysin (reteplase 10 units (17.4 mg)) powder for injection, 10 units vial 2972011000036102 Rapilysin 2972011000036102 Rapilysin 27743011000036100 reteplase 10 units (17.4 mg) injection [2 x 10 unit vials] (&) inert substance diluent [2 x 10 mL syringes], 1 pack 23074011000036106 reteplase 10 units (17.4 mg) injection, 10 units vial 21792011000036103 reteplase +20217011000036102 Rapilysin (2 x 10 units (17.4 mg) vials, 2 x 10 mL inert diluent syringes), 1 pack, composite pack 74138 13435011000036100 Rapilysin (2 x 10 units (17.4 mg) vials, 2 x 10 mL inert diluent syringes), 1 pack 629641000168109 Rapilysin (inert substance) diluent, 10 mL syringe 2972011000036102 Rapilysin 2972011000036102 Rapilysin 27743011000036100 reteplase 10 units (17.4 mg) injection [2 x 10 unit vials] (&) inert substance diluent [2 x 10 mL syringes], 1 pack 629631000168100 inert substance diluent, 10 mL syringe 21220011000036103 inert substance +748011000168102 Cisatracurium (Accord) 10 mg/5 mL injection solution, 5 mL vial 222405 748001000168100 Cisatracurium (Accord) 10 mg/5 mL injection solution, 5 mL vial 747981000168106 Cisatracurium (Accord) 10 mg/5 mL injection solution, 5 mL vial 747971000168108 Cisatracurium (Accord) 747971000168108 Cisatracurium (Accord) 747991000168109 cisatracurium 10 mg/5 mL injection, 5 mL vial 679451000168108 cisatracurium 10 mg/5 mL injection, vial 44902011000036101 cisatracurium +44391011000036103 Somac 40 mg enteric tablet, 280, bottle 69791 41852011000036107 Somac 40 mg enteric tablet, 280 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46658011000036104 pantoprazole 40 mg enteric tablet, 280 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +675171000168107 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 122788 675161000168101 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 28 675141000168100 Valette (inert substance) sugar coated tablet 674881000168103 Valette 674881000168103 Valette 675151000168103 dienogest 2 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +675171000168107 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 122788 675161000168101 Valette (21 x 2 mg/30 microgram tablets, 7 x inert tablets), 28 675131000168109 Valette (dienogest 2 mg + ethinylestradiol 30 microgram) sugar coated tablet 674881000168103 Valette 674881000168103 Valette 675151000168103 dienogest 2 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 675121000168106 dienogest 2 mg + ethinylestradiol 30 microgram tablet 675111000168104 dienogest + ethinylestradiol +95441000036104 Ostelin Vitamin D Kids 5 microgram (200 units)/0.5 mL oral liquid solution, 20 mL, bottle 183797 94311000036106 Ostelin Vitamin D Kids 5 microgram (200 units)/0.5 mL oral liquid solution, 20 mL 93491000036109 Ostelin Vitamin D Kids 5 microgram (200 units)/0.5 mL oral liquid solution, 0.5 mL 7811000168100 Ostelin Vitamin D Kids 7811000168100 Ostelin Vitamin D Kids 94321000036104 colecalciferol 5 microgram (200 units)/0.5 mL oral liquid, 20 mL 93501000036102 colecalciferol 5 microgram (200 units)/0.5 mL oral liquid 77447011000036108 colecalciferol +59809011000036107 Strong Pain Relief Plus (Amcal) uncoated tablet, 24, blister pack 114715 55771011000036107 Strong Pain Relief Plus (Amcal) uncoated tablet, 24 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 52866011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 24 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +717721000168100 Probitor 20 mg enteric capsule, 30, blister pack 82757 717711000168107 Probitor 20 mg enteric capsule, 30 715901000168102 Probitor 20 mg enteric capsule 2966011000036108 Probitor 2966011000036108 Probitor 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +37535011000036103 Natulan 50 mg hard capsule, 50, bottle 13752 36803011000036106 Natulan 50 mg hard capsule, 50 36180011000036107 Natulan 50 mg hard capsule 35999011000036102 Natulan 35999011000036102 Natulan 38700011000036106 procarbazine 50 mg capsule, 50 37935011000036107 procarbazine 50 mg capsule 37782011000036101 procarbazine +662331000168105 Citalopram (AN) 20 mg film-coated tablet, 28, blister pack 171336 662311000168100 Citalopram (AN) 20 mg film-coated tablet, 28 662301000168103 Citalopram (AN) 20 mg film-coated tablet 662261000168106 Citalopram (AN) 662261000168106 Citalopram (AN) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1043251000168101 Pryzex ODT 5 mg orally disintegrating tablet, 14, blister pack 179079 1043241000168103 Pryzex ODT 5 mg orally disintegrating tablet, 14 1043161000168105 Pryzex ODT 5 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043231000168107 olanzapine 5 mg orally disintegrating tablet, 14 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +69730011000036106 Uricalm powder for oral liquid, 28 x 4 g sachets 91597 67529011000036105 Uricalm powder for oral liquid, 28 x 4 g sachets 65687011000036104 Uricalm powder for oral liquid, 4 g sachet 64992011000036108 Uricalm 64992011000036108 Uricalm 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +69730011000036106 Uricalm powder for oral liquid, 28 x 4 g sachets 210402 67529011000036105 Uricalm powder for oral liquid, 28 x 4 g sachets 65687011000036104 Uricalm powder for oral liquid, 4 g sachet 64992011000036108 Uricalm 64992011000036108 Uricalm 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +1000711000168108 Citalopram (Apotex) 40 mg film-coated tablet, 28, blister pack 150638 1000701000168105 Citalopram (Apotex) 40 mg film-coated tablet, 28 1000691000168105 Citalopram (Apotex) 40 mg film-coated tablet 1000491000168107 Citalopram (Apotex) 1000491000168107 Citalopram (Apotex) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +31181000036107 Karbesat 150 mg film-coated tablet, 30, blister pack 171462 28401000036101 Karbesat 150 mg film-coated tablet, 30 26631000036106 Karbesat 150 mg film-coated tablet 26121000036101 Karbesat 26121000036101 Karbesat 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +86887011000036109 Allersoothe 10 mg film-coated tablet, 50, blister pack 160733 86769011000036103 Allersoothe 10 mg film-coated tablet, 50 86641011000036104 Allersoothe 10 mg film-coated tablet 86586011000036105 Allersoothe 86586011000036105 Allersoothe 27921011000036109 promethazine hydrochloride 10 mg tablet, 50 23245011000036102 promethazine hydrochloride 10 mg tablet 21237011000036104 promethazine +724181000168100 Metoprolol IV (Mylan) 5 mg/5 mL injection solution, 5 x 5 mL vials 204655 724171000168103 Metoprolol IV (Mylan) 5 mg/5 mL injection solution, 5 x 5 mL vials 724151000168107 Metoprolol IV (Mylan) 5 mg/5 mL injection solution, 5 mL vial 724131000168101 Metoprolol IV (Mylan) 724131000168101 Metoprolol IV (Mylan) 724161000168109 metoprolol tartrate 5 mg/5 mL injection, 5 x 5 mL vials 724141000168105 metoprolol tartrate 5 mg/5 mL injection, vial 21662011000036107 metoprolol +1009371000168108 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet, 20, blister pack 287704 1009361000168102 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet, 20 1009331000168105 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet 1009321000168107 Anti-Inflammatory Pain Relief (Apohealth) 1009321000168107 Anti-Inflammatory Pain Relief (Apohealth) 63834011000036101 diclofenac sodium 25 mg enteric tablet, 20 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +1077091000168106 Atomoxetine (AS) 100 mg hard capsule, 28, blister pack 238365 1077081000168108 Atomoxetine (AS) 100 mg hard capsule, 28 1077051000168101 Atomoxetine (AS) 100 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +77404011000036106 Water for Injections (Phebra) injection solution, 5 x 5 mL ampoules 78927 76820011000036102 Water for Injections (Phebra) injection solution, 5 x 5 mL ampoules 76192011000036102 Water for Injections (Phebra) injection solution, 5 mL ampoule 75970011000036108 Water for Injections (Phebra) 75970011000036108 Water for Injections (Phebra) 78324011000036103 water for injections injection, 5 x 5 mL ampoules 77607011000036102 water for injections injection, 5 mL ampoule 77431011000036101 water for injections +52733011000036109 Pristiq 50 mg modified release tablet, 7, blister pack 170674 52545011000036107 Pristiq 50 mg modified release tablet, 7 52410011000036103 Pristiq 50 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +52733011000036109 Pristiq 50 mg modified release tablet, 7, blister pack 133520 52545011000036107 Pristiq 50 mg modified release tablet, 7 52410011000036103 Pristiq 50 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +1084261000168109 Salofalk 1.5 g modified release granules, 60 sachets 143611 1084251000168107 Salofalk 1.5 g modified release granules, 60 sachets 1084231000168101 Salofalk 1.5 g modified release granules, 1.5 g sachet 12771000168100 Salofalk 12771000168100 Salofalk 1084241000168105 mesalazine 1.5 g modified release granules, 60 sachets 1084221000168104 mesalazine 1.5 g modified release granules, sachet 21351011000036101 mesalazine +168301000036109 Dermaveen Shower and Bath Oil 5% bath oil, 5 L, pump pack 130060 167751000036108 Dermaveen Shower and Bath Oil 5% bath oil, 5 L 167531000036105 Dermaveen Shower and Bath Oil 5% bath oil 9861000168106 Dermaveen Shower and Bath Oil 9861000168106 Dermaveen Shower and Bath Oil 167761000036106 colloidal oatmeal 5% bath oil, 5 L 167541000036100 colloidal oatmeal 5% bath oil 77444011000036102 colloidal oatmeal +760191000168104 Elidel 1% cream, 30 g, tube 93680 760181000168102 Elidel 1% cream, 30 g 7344011000036101 Elidel 1% cream 4387011000036109 Elidel 4387011000036109 Elidel 760171000168100 pimecrolimus 1% cream, 30 g 23430011000036108 pimecrolimus 1% cream 21745011000036101 pimecrolimus +1060511000168103 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 50, blister pack 234477 1060501000168101 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 50 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911981000168103 rosuvastatin 40 mg tablet, 50 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +841581000168108 Atorvastatin (Amneal) 10 mg film-coated tablet, 40, blister pack 178535 841571000168105 Atorvastatin (Amneal) 10 mg film-coated tablet, 40 841481000168109 Atorvastatin (Amneal) 10 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841561000168104 atorvastatin 10 mg tablet, 40 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +933212011000036103 Donpesyn 10 mg film-coated tablet, 30, blister pack 142234 933201411000036100 Donpesyn 10 mg film-coated tablet, 30 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200891000036104 donepezil hydrochloride 10 mg tablet, 30 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1109481000168107 Nicotinell Ice Mint 2 mg chewing gum, 12, blister pack 279615 1109471000168109 Nicotinell Ice Mint 2 mg chewing gum, 12 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +792621000168105 Abisart HCT 300/25 film-coated tablet, 14, bottle 215947 792611000168103 Abisart HCT 300/25 film-coated tablet, 14 98831000036101 Abisart HCT 300/25 film-coated tablet 13081000168109 Abisart HCT 300/25 13081000168109 Abisart HCT 300/25 792601000168101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 14 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1058321000168106 Levetiracetam (Auro) 750 mg film-coated tablet, 60, blister pack 182828 1058201000168109 Levetiracetam (Auro) 750 mg film-coated tablet, 60 1058141000168103 Levetiracetam (Auro) 750 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +741481000168106 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 10 x 0.5 mL injection devices 231052 741471000168108 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 10 x 0.5 mL injection devices 741391000168100 Bemfola 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741461000168102 follitropin alfa 300 units (22 microgram)/0.5 mL injection, 10 x 0.5 mL injection devices 741381000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, injection device 21352011000036107 follitropin alfa +854591000168105 Quetiapine (Alkem) 100 mg film-coated tablet, 90, blister pack 204851 854581000168107 Quetiapine (Alkem) 100 mg film-coated tablet, 90 854531000168106 Quetiapine (Alkem) 100 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +677361000168107 Valsartan HCTZ 320/25 (Apo) film-coated tablet, 28, blister pack 202345 677341000168108 Valsartan HCTZ 320/25 (Apo) film-coated tablet, 28 677321000168102 Valsartan HCTZ 320/25 (Apo) film-coated tablet 677311000168109 Valsartan HCTZ 320/25 (Apo) 677311000168109 Valsartan HCTZ 320/25 (Apo) 81591011000036103 valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 28 81264011000036105 valsartan 320 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +991391000168100 Bisoprolol (Apotex) 3.75 mg tablet, 28, blister pack 182112 991381000168103 Bisoprolol (Apotex) 3.75 mg tablet, 28 991231000168106 Bisoprolol (Apotex) 3.75 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 874831000168106 bisoprolol fumarate 3.75 mg tablet, 28 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +44616011000036103 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 6, blister pack 90128 42069011000036107 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 6 40345011000036109 Sinutab Sinus, Allergy and Pain Relief uncoated tablet 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 46836011000036107 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 6 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +20896011000036106 Permax 250 microgram uncoated tablet, 100, bottle 93397 14056011000036104 Permax 250 microgram uncoated tablet, 100 7334011000036102 Permax 250 microgram uncoated tablet 3138011000036108 Permax 3138011000036108 Permax 28111011000036105 pergolide 250 microgram tablet, 100 23420011000036105 pergolide 250 microgram tablet 21344011000036101 pergolide +925253011000036107 Sumatriptan (Chemmart) 50 mg film-coated tablet, 2, blister pack 160190 924790011000036109 Sumatriptan (Chemmart) 50 mg film-coated tablet, 2 924486011000036101 Sumatriptan (Chemmart) 50 mg film-coated tablet 924383011000036104 Sumatriptan (Chemmart) 924383011000036104 Sumatriptan (Chemmart) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +863151000168101 Amitriptyline (AC) 25 mg tablet, 250, bottle 232108 863141000168103 Amitriptyline (AC) 25 mg tablet, 250 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 863131000168107 amitriptyline hydrochloride 25 mg tablet, 250 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +69614011000036102 Mylanta 2go Rolltab Peppermint chewable tablet, 36, wrapping 75879 67413011000036105 Mylanta 2go Rolltab Peppermint chewable tablet, 36 65653011000036101 Mylanta 2go Rolltab Peppermint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71949011000036102 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 36 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +1120311000168107 Xque XR 400 mg modified release tablet, 30, blister pack 226806 1120301000168109 Xque XR 400 mg modified release tablet, 30 1120271000168107 Xque XR 400 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 790841000168102 quetiapine 400 mg modified release tablet, 30 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +19249011000036103 Sevredol 20 mg film-coated tablet, 20, blister pack 214089 12540011000036106 Sevredol 20 mg film-coated tablet, 20 5400011000036107 Sevredol 20 mg film-coated tablet 3885011000036104 Sevredol 3885011000036104 Sevredol 27186011000036107 morphine sulfate pentahydrate 20 mg tablet, 20 22548011000036107 morphine sulfate pentahydrate 20 mg tablet 21252011000036100 morphine +19249011000036103 Sevredol 20 mg film-coated tablet, 20, blister pack 47545 12540011000036106 Sevredol 20 mg film-coated tablet, 20 5400011000036107 Sevredol 20 mg film-coated tablet 3885011000036104 Sevredol 3885011000036104 Sevredol 27186011000036107 morphine sulfate pentahydrate 20 mg tablet, 20 22548011000036107 morphine sulfate pentahydrate 20 mg tablet 21252011000036100 morphine +921955011000036105 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 50 mL vial 47070 921513011000036109 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 50 mL vial 921051011000036103 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 50 mL vial 35921000168104 Isovue-370 35921000168104 Isovue-370 922635011000036108 iopamidol 755 mg (iodine 370 mg)/mL injection, 50 mL vial 922123011000036106 iopamidol 755 mg (iodine 370 mg)/mL injection, 50 mL vial 77457011000036105 iopamidol +910701000168101 Cavstat 20 mg film-coated tablet, 90, bottle 234476 910691000168101 Cavstat 20 mg film-coated tablet, 90 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910681000168104 rosuvastatin 20 mg tablet, 90 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +19341011000036106 Roaccutane 10 mg soft capsule, 60, blister pack 50840 12629011000036108 Roaccutane 10 mg soft capsule, 60 5448011000036104 Roaccutane 10 mg soft capsule 3266011000036100 Roaccutane 3266011000036100 Roaccutane 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +923874011000036106 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet, 30, blister pack 163764 923419011000036105 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet, 30 923076011000036104 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 28127011000036106 lercanidipine hydrochloride 20 mg tablet, 30 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +897791000168102 Nicotinell Peppermint 4 mg lozenge, 108, blister pack 276926 897781000168100 Nicotinell Peppermint 4 mg lozenge, 108 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897771000168103 nicotine 4 mg lozenge, 108 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +672381000168100 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet, 90, blister pack 208007 672371000168103 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet, 90 672321000168104 Indapamide Hemihydrate SR (Apo) 1.5 mg modified release tablet 672311000168106 Indapamide Hemihydrate SR (Apo) 672311000168106 Indapamide Hemihydrate SR (Apo) 27590011000036104 indapamide hemihydrate 1.5 mg modified release tablet, 90 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +933246091000036104 Sumatriptan (Aspen) 50 mg film-coated tablet, 2, blister pack 117670 933242861000036104 Sumatriptan (Aspen) 50 mg film-coated tablet, 2 933241161000036101 Sumatriptan (Aspen) 50 mg film-coated tablet 933240851000036103 Sumatriptan (Aspen) 933240851000036103 Sumatriptan (Aspen) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +827141000168104 Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 68500 827131000168108 Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 827111000168103 Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe 73715011000036108 Typherix 73715011000036108 Typherix 827121000168105 typhoid inactivated vaccine injection, 10 x 0.5 mL syringes 827101000168101 typhoid inactivated vaccine injection, 0.5 mL syringe 827091000168106 typhoid inactivated vaccine +44166011000036101 Dobutamine (Abbott) 250 mg/20 mL injection solution, 10 x 20 mL vials 54640 41642011000036102 Dobutamine (Abbott) 250 mg/20 mL injection solution, 10 x 20 mL vials 40119011000036109 Dobutamine (Abbott) 250 mg/20 mL injection solution, 20 mL vial 39558011000036100 Dobutamine (Abbott) 39558011000036100 Dobutamine (Abbott) 46461011000036103 dobutamine 250 mg/20 mL injection, 10 x 20 mL vials 45168011000036108 dobutamine 250 mg/20 mL injection, vial 37709011000036107 dobutamine +44408011000036100 Somac 20 mg enteric tablet, 15, blister pack 70829 41868011000036104 Somac 20 mg enteric tablet, 15 6596011000036102 Somac 20 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46673011000036107 pantoprazole 20 mg enteric tablet, 15 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +880611000168101 Bupivacaine (Claris) 0.5% (50 mg/10 mL) injection solution, 10 x 10 mL vials 223237 880601000168104 Bupivacaine (Claris) 0.5% (50 mg/10 mL) injection solution, 10 x 10 mL vials 880551000168101 Bupivacaine (Claris) 0.5% (50 mg/10 mL) injection solution, 10 mL vial 879561000168104 Bupivacaine (Claris) 879561000168104 Bupivacaine (Claris) 880591000168106 bupivacaine hydrochloride 0.5% (50 mg/10 mL) injection, 10 x 10 mL vials 880541000168103 bupivacaine hydrochloride 0.5% (50 mg/10 mL) injection, vial 37702011000036102 bupivacaine +37593011000036106 Demazin 12 hour Repetab modified release tablet, 2, blister pack 18810 36860011000036104 Demazin 12 hour Repetab modified release tablet, 2 36198011000036105 Demazin 12 hour Repetab modified release tablet 48631000168100 Demazin 12 hour Repetab 48631000168100 Demazin 12 hour Repetab 38747011000036104 dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg modified release tablet, 2 37972011000036101 dexchlorpheniramine maleate 6 mg + pseudoephedrine sulfate 120 mg modified release tablet 37723011000036102 dexchlorpheniramine + pseudoephedrine +87693011000036105 Famciclovir (Apo) 250 mg film-coated tablet, 21, blister pack 160556 87483011000036109 Famciclovir (Apo) 250 mg film-coated tablet, 21 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1072891000168101 Pantoprazole (Generic Health) 20 mg enteric tablet, 28, blister pack 191032 1072881000168104 Pantoprazole (Generic Health) 20 mg enteric tablet, 28 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46674011000036109 pantoprazole 20 mg enteric tablet, 28 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1051911000168107 Palexia SR 100 mg modified release tablet, 56, blister pack 165346 1051901000168109 Palexia SR 100 mg modified release tablet, 56 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051891000168105 tapentadol 100 mg modified release tablet, 56 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +82421000036100 Amclav 125/31.25 (GA) powder for oral liquid, 75 mL, bottle 190076 80431000036102 Amclav 125/31.25 (GA) powder for oral liquid, 75 mL 78681000036105 Amclav 125/31.25 (GA) powder for oral liquid, 5 mL 48471000168100 Amclav 125/31.25 (GA) 48471000168100 Amclav 125/31.25 (GA) 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +86046011000036104 Amlodipine (DRLA) 10 mg tablet, 14, blister pack 147606 85641011000036102 Amlodipine (DRLA) 10 mg tablet, 14 85312011000036109 Amlodipine (DRLA) 10 mg tablet 85261011000036108 Amlodipine (DRLA) 85261011000036108 Amlodipine (DRLA) 84620011000036101 amlodipine 10 mg tablet, 14 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +933246251000036102 Fluconazole (Claris) 100 mg/50 mL injection solution, 6 x 50 mL vials 133463 933242881000036109 Fluconazole (Claris) 100 mg/50 mL injection solution, 6 x 50 mL vials 72925011000036101 Fluconazole (Claris) 100 mg/50 mL injection solution, 50 mL vial 72918011000036101 Fluconazole (Claris) 72918011000036101 Fluconazole (Claris) 933242891000036106 fluconazole 100 mg/50 mL injection, 6 x 50 mL vials 22539011000036100 fluconazole 100 mg/50 mL injection, vial 21365011000036105 fluconazole +974851000168109 Epirubicin Hydrochloride (DBL) 10 mg/5 mL injection solution, 5 mL vial 83021 974841000168107 Epirubicin Hydrochloride (DBL) 10 mg/5 mL injection solution, 5 mL vial 974831000168103 Epirubicin Hydrochloride (DBL) 10 mg/5 mL injection solution, 5 mL vial 4322011000036104 Epirubicin Hydrochloride (DBL) 4322011000036104 Epirubicin Hydrochloride (DBL) 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +43774011000036106 Dormizol 10 mg film-coated tablet, 20, blister pack 117953 41203011000036102 Dormizol 10 mg film-coated tablet, 20 39940011000036106 Dormizol 10 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +73255011000036106 Cialis 5 mg film-coated tablet, 28, blister pack 128496 73052011000036106 Cialis 5 mg film-coated tablet, 28 72959011000036103 Cialis 5 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 73457011000036100 tadalafil 5 mg tablet, 28 73365011000036108 tadalafil 5 mg tablet 21725011000036104 tadalafil +68946011000036102 Torisel (1 x 25 mg vial, 1 x 1.8 mL inert diluent vial), 1 pack, composite pack 133125 66748011000036100 Torisel (1 x 25 mg vial, 1 x 1.8 mL inert diluent vial), 1 pack 65363011000036101 Torisel (temsirolimus 25 mg) concentrated injection, 25 mg vial 65052011000036102 Torisel 65052011000036102 Torisel 71412011000036102 temsirolimus 25 mg injection [1 vial] (&) inert substance diluent [1.8 mL vial], 1 pack 70001011000036105 temsirolimus 25 mg injection, vial 69812011000036100 temsirolimus +68946011000036102 Torisel (1 x 25 mg vial, 1 x 1.8 mL inert diluent vial), 1 pack, composite pack 133125 66748011000036100 Torisel (1 x 25 mg vial, 1 x 1.8 mL inert diluent vial), 1 pack 644601000168109 Torisel (inert substance) diluent, 1.8 mL vial 65052011000036102 Torisel 65052011000036102 Torisel 71412011000036102 temsirolimus 25 mg injection [1 vial] (&) inert substance diluent [1.8 mL vial], 1 pack 638511000168101 inert substance diluent, 1.8 mL vial 21220011000036103 inert substance +649311000168102 Adesan HCT 32/25 tablet, 30, bottle 206484 649301000168100 Adesan HCT 32/25 tablet, 30 649291000168101 Adesan HCT 32/25 tablet 649281000168104 Adesan HCT 32/25 649281000168104 Adesan HCT 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19583011000036100 Genoral 625 microgram uncoated tablet, 56, blister pack 57854 12854011000036102 Genoral 625 microgram uncoated tablet, 56 6145011000036107 Genoral 625 microgram uncoated tablet 2959011000036109 Genoral 2959011000036109 Genoral 27395011000036105 oestrone sulfate sodium 625 microgram tablet, 56 22744011000036101 oestrone sulfate sodium 625 microgram tablet 21299011000036103 oestrone sulfate sodium +983431000168108 Arfam 40 mg film-coated tablet, 30, blister pack 93767 983421000168105 Arfam 40 mg film-coated tablet, 30 983411000168103 Arfam 40 mg film-coated tablet 983401000168101 Arfam 983401000168101 Arfam 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +758021000168106 Solifenacin (Apo) 5 mg film-coated tablet, 30, bottle 218390 758011000168104 Solifenacin (Apo) 5 mg film-coated tablet, 30 758001000168102 Solifenacin (Apo) 5 mg film-coated tablet 757981000168108 Solifenacin (Apo) 757981000168108 Solifenacin (Apo) 46153011000036105 solifenacin succinate 5 mg tablet, 30 45010011000036100 solifenacin succinate 5 mg tablet 44891011000036101 solifenacin +1006441000168101 Antimicrobial Hand Gel (Elyptol) 70% gel, 60 mL, bottle 172237 1006431000168105 Antimicrobial Hand Gel (Elyptol) 70% gel, 60 mL 1006421000168107 Antimicrobial Hand Gel (Elyptol) 70% gel 1006411000168100 Antimicrobial Hand Gel (Elyptol) 1006411000168100 Antimicrobial Hand Gel (Elyptol) 925449011000036106 ethanol 70% gel, 60 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +925296011000036107 Exforge 5/320 film-coated tablet, 28, blister pack 161820 924833011000036105 Exforge 5/320 film-coated tablet, 28 924523011000036107 Exforge 5/320 film-coated tablet 24141000168109 Exforge 5/320 24141000168109 Exforge 5/320 925431011000036106 amlodipine 5 mg + valsartan 320 mg tablet, 28 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +1000001000168107 Rivaroxaban (Apo) 10 mg film-coated tablet, 30, bottle 269603 999991000168100 Rivaroxaban (Apo) 10 mg film-coated tablet, 30 999981000168103 Rivaroxaban (Apo) 10 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 79228011000036102 rivaroxaban 10 mg tablet, 30 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +44650011000036107 Ceftazidime (Sandoz) 1 g powder for injection, 10 vials 90915 42102011000036108 Ceftazidime (Sandoz) 1 g powder for injection, 10 vials 40352011000036104 Ceftazidime (Sandoz) 1 g powder for injection, vial 39747011000036102 Ceftazidime (Sandoz) 39747011000036102 Ceftazidime (Sandoz) 46867011000036102 ceftazidime 1 g injection, 10 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +50694011000036101 Voltaren Ophtha 0.1% eye drops solution, 5 mL, bottle 96654 49718011000036108 Voltaren Ophtha 0.1% eye drops solution, 5 mL 48844011000036106 Voltaren Ophtha 0.1% eye drops solution 39691011000036109 Voltaren Ophtha 39691011000036109 Voltaren Ophtha 51574011000036105 diclofenac sodium 0.1% eye drops, 5 mL 51007011000036108 diclofenac sodium 0.1% eye drops 21288011000036105 diclofenac +1077691000168102 Atomoxetine (AN) 25 mg hard capsule, 14, blister pack 234809 1077681000168100 Atomoxetine (AN) 25 mg hard capsule, 14 1077651000168107 Atomoxetine (AN) 25 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830451000168107 atomoxetine 25 mg capsule, 14 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +1083581000168100 Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL, pump pack 117459 74222011000036104 Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL 73839011000036101 Decongestant (Chemists' Own) 0.05% nasal spray 73767011000036102 Decongestant (Chemists' Own) 73767011000036102 Decongestant (Chemists' Own) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +61300011000036109 Hair A-Gain 5% application, 4 x 60 mL, bottles 79607 57236011000036108 Hair A-Gain 5% application, 4 x 60 mL 54249011000036105 Hair A-Gain 5% application 53423011000036106 Hair A-Gain 53423011000036106 Hair A-Gain 63774011000036101 minoxidil 5% application, 4 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +34781011000036104 Kapanol 10 mg modified release capsule, 60, blister pack 68439 34359011000036107 Kapanol 10 mg modified release capsule, 60 6519011000036105 Kapanol 10 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 35207011000036106 morphine sulfate pentahydrate 10 mg modified release capsule, 60 22976011000036101 morphine sulfate pentahydrate 10 mg modified release capsule 21252011000036100 morphine +841501000168100 Atorvastatin (Amneal) 10 mg film-coated tablet, 10, blister pack 178535 841491000168107 Atorvastatin (Amneal) 10 mg film-coated tablet, 10 841481000168109 Atorvastatin (Amneal) 10 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +60304011000036106 Nurolasts Period Pain 275 mg film-coated tablet, 10, blister pack 137943 56263011000036108 Nurolasts Period Pain 275 mg film-coated tablet, 10 53855011000036102 Nurolasts Period Pain 275 mg film-coated tablet 26751000168101 Nurolasts Period Pain 26751000168101 Nurolasts Period Pain 63275011000036108 naproxen sodium 275 mg tablet, 10 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +740841000168109 Fentora 100 microgram orally disintegrating tablet, 4, blister pack 218435 740831000168100 Fentora 100 microgram orally disintegrating tablet, 4 740811000168105 Fentora 100 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740821000168103 fentanyl 100 microgram orally disintegrating tablet, 4 740801000168107 fentanyl 100 microgram orally disintegrating tablet 21258011000036102 fentanyl +17981011000036101 Perindo Combi 4/1.25 uncoated tablet, 30, blister pack 114207 11461011000036104 Perindo Combi 4/1.25 uncoated tablet, 30 5766011000036103 Perindo Combi 4/1.25 uncoated tablet 23951000168105 Perindo Combi 4/1.25 23951000168105 Perindo Combi 4/1.25 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +809981000168108 Centrum Advance 50 Plus film-coated tablet, 100, bottle 193642 809971000168105 Centrum Advance 50 Plus film-coated tablet, 100 809891000168104 Centrum Advance 50 Plus film-coated tablet 809511000168106 Centrum Advance 50 Plus 809511000168106 Centrum Advance 50 Plus 809961000168104 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet, 100 809881000168102 vitamin A 300 microgram + betacarotene 1.8 mg + colecalciferol 15 microgram (600 units) + lutein 500 microgram + lycopene 600 microgram + phytomenadione 25 microgram + calcium pantothenate 10.8 mg + thiamine nitrate 2.18 mg + nicotinamide 15 mg + riboflavin 3.2 mg + pyridoxine hydrochloride 8 mg + cyanocobalamin 25 microgram + biotin 45 microgram + folic acid 300 microgram + dl-alpha-tocopheryl acetate 75 mg (75 units) + ascorbic acid 90 mg + calcium 200 mg + magnesium 50 mg + iron 4 mg + zinc 7.5 mg + manganese 3.5 mg + chromium 100 microgram + selenium 55 microgram + copper 500 microgram + iodine 150 microgram + phosphorus 50 mg + potassium 80 mg tablet 809871000168100 vitamin A + betacarotene + colecalciferol + lutein + lycopene + phytomenadione + pantothenic acid + thiamine + nicotinamide + riboflavin + pyridoxine + cyanocobalamin + biotin + folic acid + dl-alpha-tocopheryl + ascorbic acid + calcium + magnesium + iron + zinc + manganese + chromium + selenium + copper + iodine + phosphorus + potassium +1120391000168103 Imoclone 7.5 mg film-coated tablet, 30, blister pack 292090 1120381000168101 Imoclone 7.5 mg film-coated tablet, 30 1120371000168104 Imoclone 7.5 mg film-coated tablet 1120361000168105 Imoclone 1120361000168105 Imoclone 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +799201000168106 Acobay 100 mg tablet, 90, blister pack 226794 799191000168108 Acobay 100 mg tablet, 90 799181000168105 Acobay 100 mg tablet 799111000168104 Acobay 799111000168104 Acobay 27111011000036104 acarbose 100 mg tablet, 90 22479011000036108 acarbose 100 mg tablet 21888011000036104 acarbose +21185011000036102 Parmol 500 mg uncoated tablet, 100, blister pack 99302 14323011000036105 Parmol 500 mg uncoated tablet, 100 7609011000036103 Parmol 500 mg uncoated tablet 3640011000036106 Parmol 3640011000036106 Parmol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +648671000168109 Homatropine Hydrobromide 2% and Cocaine Hydrochloride 2% APF (extemporaneous) eye drops solution, 5 mL, poison bottle 648661000168103 Homatropine Hydrobromide 2% and Cocaine Hydrochloride 2% APF (extemporaneous) eye drops solution, 5 mL 648641000168102 Homatropine Hydrobromide 2% and Cocaine Hydrochloride 2% APF (extemporaneous) eye drops solution 648611000168101 Homatropine Hydrobromide 2% and Cocaine Hydrochloride 2% APF (extemporaneous) 648611000168101 Homatropine Hydrobromide 2% and Cocaine Hydrochloride 2% APF (extemporaneous) 648651000168100 homatropine hydrobromide 2% + cocaine hydrochloride 2% eye drops, 5 mL 648631000168106 homatropine hydrobromide 2% + cocaine hydrochloride 2% eye drops 648621000168108 homatropine + cocaine +1008571000168108 Salbutamol (AN) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135469 1008561000168102 Salbutamol (AN) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 1008551000168104 Salbutamol (AN) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 1008511000168100 Salbutamol (AN) 1008511000168100 Salbutamol (AN) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +82906011000036104 Zoladex 3.6 mg implant, 1, syringe 24368 82798011000036105 Zoladex 3.6 mg implant, 1 5892011000036102 Zoladex 3.6 mg implant 3435011000036101 Zoladex 3435011000036101 Zoladex 83014011000036107 goserelin 3.6 mg implant, 1 22168011000036107 goserelin 3.6 mg implant 21305011000036109 goserelin +20309011000036102 Avelox 400 mg film-coated tablet, 5, blister pack 75766 13518011000036105 Avelox 400 mg film-coated tablet, 5 6800011000036101 Avelox 400 mg film-coated tablet 46731000168109 Avelox 46731000168109 Avelox 27784011000036106 moxifloxacin 400 mg tablet, 5 23114011000036109 moxifloxacin 400 mg tablet 21765011000036109 moxifloxacin +923051000168101 Anastrozole (Ascent) 1 mg film-coated tablet, 30, blister pack 188391 923041000168103 Anastrozole (Ascent) 1 mg film-coated tablet, 30 923031000168107 Anastrozole (Ascent) 1 mg film-coated tablet 923001000168100 Anastrozole (Ascent) 923001000168100 Anastrozole (Ascent) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +717791000168103 Metformin (Auro) 500 mg film-coated tablet, 30, blister pack 180441 717781000168101 Metformin (Auro) 500 mg film-coated tablet, 30 717741000168106 Metformin (Auro) 500 mg film-coated tablet 714361000168101 Metformin (Auro) 714361000168101 Metformin (Auro) 717771000168104 metformin hydrochloride 500 mg tablet, 30 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +931627011000036104 Fenac 50 mg enteric tablet, 50, blister pack 165706 12365011000036107 Fenac 50 mg enteric tablet, 50 4743011000036105 Fenac 50 mg enteric tablet 4003011000036103 Fenac 4003011000036103 Fenac 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +1083621000168100 Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL, pump pack 81756 74415011000036100 Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL 73936011000036101 Decongestant (Pharmacy Health) 0.05% nasal spray 53408011000036109 Decongestant (Pharmacy Health) 53408011000036109 Decongestant (Pharmacy Health) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +77185011000036105 Lisinopril (GA) 20 mg uncoated tablet, 100, blister pack 106502 76568011000036106 Lisinopril (GA) 20 mg uncoated tablet, 100 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 78125011000036109 lisinopril 20 mg tablet, 100 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +980701000168104 Desowen 0.05% cream, 50 g, tube 67167 980691000168104 Desowen 0.05% cream, 50 g 980601000168105 Desowen 0.05% cream 39556011000036104 Desowen 39556011000036104 Desowen 980681000168102 desonide 0.05% cream, 50 g 980591000168103 desonide 0.05% cream 44914011000036107 desonide +19157011000036109 MS Contin Suspension 30 mg modified release granules, 20 sachets 45841 12456011000036102 MS Contin Suspension 30 mg modified release granules, 20 sachets 5832011000036109 MS Contin Suspension 30 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 27131011000036108 morphine sulfate pentahydrate 30 mg modified release granules, 20 sachets 22497011000036105 morphine sulfate pentahydrate 30 mg modified release granules, 1 sachet 21252011000036100 morphine +856601000168109 Trevicta 175 mg/0.875 mL modified release injection, 0.875 mL syringe 261409 856591000168102 Trevicta 175 mg/0.875 mL modified release injection, 0.875 mL syringe 856571000168103 Trevicta 175 mg/0.875 mL modified release injection, 0.875 mL syringe 856551000168107 Trevicta 856551000168107 Trevicta 856581000168100 paliperidone 175 mg/0.875 mL modified release injection, 0.875 mL syringe 856561000168109 paliperidone 175 mg/0.875 mL modified release injection, syringe 34837011000036104 paliperidone +1006401000168103 Omeprazole (Apo) 20 mg enteric tablet, 10, blister pack 243812 1006391000168100 Omeprazole (Apo) 20 mg enteric tablet, 10 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 79830011000036105 omeprazole 20 mg enteric tablet, 10 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +1000641000168102 Flecacor 50 mg uncoated tablet, 60, blister pack 72002 1000631000168106 Flecacor 50 mg uncoated tablet, 60 1000621000168108 Flecacor 50 mg uncoated tablet 1000611000168101 Flecacor 1000611000168101 Flecacor 27079011000036103 flecainide acetate 50 mg tablet, 60 22448011000036104 flecainide acetate 50 mg tablet 21457011000036102 flecainide +17739011000036104 Grisovin 125 mg uncoated tablet, 100, bottle 12512 11787011000036103 Grisovin 125 mg uncoated tablet, 100 5908011000036106 Grisovin 125 mg uncoated tablet 4329011000036109 Grisovin 4329011000036109 Grisovin 26770011000036106 griseofulvin 125 mg tablet, 100 22157011000036102 griseofulvin 125 mg tablet 21755011000036103 griseofulvin +18465011000036106 Karvea 300 mg film-coated tablet, 30, blister pack 101708 11233011000036109 Karvea 300 mg film-coated tablet, 30 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +1077731000168109 Atomoxetine (AN) 25 mg hard capsule, 56, blister pack 234809 1077721000168106 Atomoxetine (AN) 25 mg hard capsule, 56 1077651000168107 Atomoxetine (AN) 25 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830501000168109 atomoxetine 25 mg capsule, 56 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +672281000168109 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet, 30, blister pack 208010 672271000168106 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet, 30 672221000168105 Indapamide Hemihydrate SR (Terry White Chemists) 1.5 mg modified release tablet 672211000168103 Indapamide Hemihydrate SR (Terry White Chemists) 672211000168103 Indapamide Hemihydrate SR (Terry White Chemists) 672261000168100 indapamide hemihydrate 1.5 mg modified release tablet, 30 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +1086321000168101 Monofer 100 mg/mL injection solution, 5 x 1 mL vials 280666 1086311000168108 Monofer 100 mg/mL injection solution, 5 x 1 mL vials 1086261000168102 Monofer 100 mg/mL injection solution, vial 1085781000168107 Monofer 1085781000168107 Monofer 1086301000168105 iron (as ferric derisomaltose) 100 mg/mL injection, 5 x 1 mL vials 1086251000168104 iron (as ferric derisomaltose) 100 mg/mL injection, vial 1085791000168105 ferric derisomaltose +983521000168109 Paroxetine (Apotex) 20 mg film-coated tablet, 30, blister pack 150213 983511000168102 Paroxetine (Apotex) 20 mg film-coated tablet, 30 983501000168100 Paroxetine (Apotex) 20 mg film-coated tablet 980891000168100 Paroxetine (Apotex) 980891000168100 Paroxetine (Apotex) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +726471000168100 Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL, injection device 99042 726461000168106 Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL 726441000168107 Norditropin Nordiflex 15 mg/1.5 mL injection solution 5421000168101 Norditropin Nordiflex 5421000168101 Norditropin Nordiflex 726451000168109 somatropin 15 mg/1.5 mL injection, 1.5 mL 726431000168103 somatropin 15 mg/1.5 mL injection 21295011000036100 somatropin +43924011000036101 Pravastatin Sodium (Generic Health) 80 mg film-coated tablet, 30, blister pack 139602 41416011000036105 Pravastatin Sodium (Generic Health) 80 mg film-coated tablet, 30 39955011000036104 Pravastatin Sodium (Generic Health) 80 mg film-coated tablet 39647011000036106 Pravastatin Sodium (Generic Health) 39647011000036106 Pravastatin Sodium (Generic Health) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +1075041000168105 Atenolol (RBX) 100 mg film-coated tablet, 112, blister pack 197761 1075031000168101 Atenolol (RBX) 100 mg film-coated tablet, 112 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1033261000168100 atenolol 100 mg tablet, 112 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +18281011000036106 Lamogine 5 mg tablet, 56, bottle 114255 11462011000036105 Lamogine 5 mg tablet, 56 4993011000036105 Lamogine 5 mg tablet 2998011000036105 Lamogine 2998011000036105 Lamogine 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +34795011000036103 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 60 mL, bottle 76048 34370011000036104 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 60 mL 34063011000036104 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 33949011000036103 Cefaclor (Sandoz) 33949011000036103 Cefaclor (Sandoz) 35217011000036109 cefaclor 125 mg/5 mL powder for oral liquid, 60 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +44716011000036105 Chirocaine 125 mg/200 mL injection solution, 200 mL bag 94481 42161011000036101 Chirocaine 125 mg/200 mL injection solution, 200 mL bag 40372011000036102 Chirocaine 125 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46922011000036100 levobupivacaine 125 mg/200 mL injection, 200 mL bag 45347011000036109 levobupivacaine 125 mg/200 mL injection, bag 44881011000036100 levobupivacaine +727591000168103 Coversyl Plus LD 2.5/0.625 film-coated tablet, 10, bottle 124552 727581000168101 Coversyl Plus LD 2.5/0.625 film-coated tablet, 10 5753011000036100 Coversyl Plus LD 2.5/0.625 film-coated tablet 581000168100 Coversyl Plus LD 2.5/0.625 581000168100 Coversyl Plus LD 2.5/0.625 727571000168104 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet, 10 22153011000036106 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +931429011000036108 Ranital Forte 300 mg film-coated tablet, 14, blister pack 117184 930564011000036104 Ranital Forte 300 mg film-coated tablet, 14 929931011000036102 Ranital Forte 300 mg film-coated tablet 42291000168100 Ranital Forte 42291000168100 Ranital Forte 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +130481000036104 Stelara 90 mg/mL injection solution, 1 mL syringe 165954 127751000036101 Stelara 90 mg/mL injection solution, 1 mL syringe 125481000036108 Stelara 90 mg/mL injection solution, syringe 82656011000036107 Stelara 82656011000036107 Stelara 127761000036103 ustekinumab 90 mg/mL injection, 1 mL syringe 125491000036105 ustekinumab 90 mg/mL injection, syringe 82917011000036103 ustekinumab +799611000168107 Abyraz 15 mg uncoated tablet, 56, blister pack 159506 799601000168109 Abyraz 15 mg uncoated tablet, 56 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 788101000168106 aripiprazole 15 mg tablet, 56 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +1090611000168104 Dupixent with Needle Shield 300 mg/2 mL injection solution, 3 x 2 mL syringes 283127 1090601000168102 Dupixent with Needle Shield 300 mg/2 mL injection solution, 3 x 2 mL syringes 1090521000168107 Dupixent with Needle Shield 300 mg/2 mL injection solution, 2 mL syringe 1090481000168107 Dupixent 1090481000168107 Dupixent 1090591000168109 dupilumab 300 mg/2 mL injection, 3 x 2 mL syringes 1090511000168100 dupilumab 300 mg/2 mL injection, syringe 1090501000168103 dupilumab +69216011000036108 Chlorhexidine Acetate (Baxter) 0.02% (100 mg/500 mL) irrigation solution, 15 x 500 mL bottles 19459 67016011000036106 Chlorhexidine Acetate (Baxter) 0.02% (100 mg/500 mL) irrigation solution, 15 x 500 mL bottles 65272011000036107 Chlorhexidine Acetate (Baxter) 0.02% (100 mg/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71586011000036106 chlorhexidine acetate 0.02% (100 mg/500 mL) solution, 15 x 500 mL bottles 70078011000036105 chlorhexidine acetate 0.02% (100 mg/500 mL) solution, bottle 21404011000036101 chlorhexidine +82856011000036102 Pletal 50 mg uncoated tablet, 56, blister pack 140598 82763011000036102 Pletal 50 mg uncoated tablet, 56 82674011000036101 Pletal 50 mg uncoated tablet 82670011000036106 Pletal 82670011000036106 Pletal 82984011000036106 cilostazol 50 mg tablet, 56 82922011000036105 cilostazol 50 mg tablet 82918011000036102 cilostazol +917431000168104 Allopurinol (Apotex) 300 mg uncoated tablet, 60, blister pack 269638 917421000168102 Allopurinol (Apotex) 300 mg uncoated tablet, 60 917411000168109 Allopurinol (Apotex) 300 mg uncoated tablet 917401000168106 Allopurinol (Apotex) 917401000168106 Allopurinol (Apotex) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +1041651000168104 Atorvastatin (AS) 10 mg film-coated tablet, 10, blister pack 178545 1041641000168101 Atorvastatin (AS) 10 mg film-coated tablet, 10 1041631000168105 Atorvastatin (AS) 10 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1004201000168109 Midazolam (Apo) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 220386 1004191000168106 Midazolam (Apo) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1004181000168108 Midazolam (Apo) 15 mg/3 mL injection solution, 3 mL ampoule 1004091000168105 Midazolam (Apo) 1004091000168105 Midazolam (Apo) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +85048011000036103 Tecan 100 mg/5 mL concentrated injection, 5 mL vial 162600 84912011000036106 Tecan 100 mg/5 mL concentrated injection, 5 mL vial 84797011000036102 Tecan 100 mg/5 mL concentrated injection, 5 mL vial 84764011000036106 Tecan 84764011000036106 Tecan 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +929643011000036104 Diazepam (Apo) 2 mg uncoated tablet, 50, blister pack 134472 929490011000036102 Diazepam (Apo) 2 mg uncoated tablet, 50 929392011000036106 Diazepam (Apo) 2 mg uncoated tablet 53191000168102 Diazepam (Apo) 53191000168102 Diazepam (Apo) 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +923922011000036108 Clearlax (MediHealth) 1 g/g powder for oral liquid, 510 g, bottle 173393 923466011000036100 Clearlax (MediHealth) 1 g/g powder for oral liquid, 510 g 923096011000036107 Clearlax (MediHealth) 1 g/g powder for oral liquid 922945011000036108 Clearlax (MediHealth) 922945011000036108 Clearlax (MediHealth) 87831011000036106 macrogol-3350 1 g/g powder for oral liquid, 510 g 87764011000036103 macrogol-3350 1 g/g powder for oral liquid 87750011000036101 macrogol-3350 +969631000168106 Lypralin 150 mg hard capsule, 56, blister pack 235846 969621000168108 Lypralin 150 mg hard capsule, 56 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +678641000168103 Ketocal 4:1 LQ (4:1 ratio long chain fat to carbohydrate plus protein) oral liquid suspension, 32 x 200 mL cartons 678631000168107 Ketocal 4:1 LQ (4:1 ratio long chain fat to carbohydrate plus protein) oral liquid suspension, 32 x 200 mL cartons 678621000168109 Ketocal 4:1 LQ (4:1 ratio long chain fat to carbohydrate plus protein) oral liquid suspension, 200 mL carton 678611000168102 Ketocal 4:1 LQ 678611000168102 Ketocal 4:1 LQ 678581000168109 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate (4:1 ratio long chain fat to carbohydrate plus protein) oral liquid, 32 x 200 mL cartons 678561000168100 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate (4:1 ratio long chain fat to carbohydrate plus protein) oral liquid, 200 mL carton 79093011000036108 high fat formula with vitamins, minerals and trace elements and low in protein and carbohydrate +19297011000036100 Heparin Sodium (Pfizer (Perth)) 5000 units/5 mL injection solution, 50 x 5 mL ampoules 49232 12587011000036103 Heparin Sodium (Pfizer (Perth)) 5000 units/5 mL injection solution, 50 x 5 mL ampoules 5358011000036106 Heparin Sodium (Pfizer (Perth)) 5000 units/5 mL injection solution, 5 mL ampoule 3815011000036101 Heparin Sodium (Pfizer (Perth)) 3815011000036101 Heparin Sodium (Pfizer (Perth)) 27220011000036101 heparin sodium 5000 units/5 mL injection, 50 x 5 mL ampoules 22581011000036105 heparin sodium 5000 units/5 mL injection, ampoule 858661000168109 heparin +59717011000036104 Advil 200 mg sugar coated tablet, 12, blister pack 104221 55683011000036107 Advil 200 mg sugar coated tablet, 12 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +37399011000036106 Primaxin powder for injection, 5 vials 10509 36629011000036107 Primaxin powder for injection, 5 vials 36136011000036101 Primaxin powder for injection, vial 35970011000036101 Primaxin 35970011000036101 Primaxin 38549011000036107 imipenem 500 mg + cilastatin 500 mg injection, 5 vials 37829011000036102 imipenem 500 mg + cilastatin 500 mg injection, vial 37772011000036105 imipenem + cilastatin +1067091000168101 Cold and Flu PE (Priceline) uncoated tablet, 48, blister pack 158531 1067081000168104 Cold and Flu PE (Priceline) uncoated tablet, 48 1067031000168100 Cold and Flu PE (Priceline) uncoated tablet 1067021000168103 Cold and Flu PE (Priceline) 1067021000168103 Cold and Flu PE (Priceline) 1067071000168102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 48 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +85999011000036108 Hedrin 4% lotion, 50 mL, bottle 155688 85690011000036101 Hedrin 4% lotion, 50 mL 85335011000036109 Hedrin 4% lotion 648271000168107 Hedrin 648271000168107 Hedrin 86434011000036100 dimeticone-100000 4% lotion, 50 mL 86222011000036105 dimeticone-100000 4% lotion 86195011000036106 dimeticone-100000 +773671000168109 Claratyne Reditab 10 mg orally disintegrating tablet, 75, blister pack 217147 773661000168103 Claratyne Reditab 10 mg orally disintegrating tablet, 75 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773651000168100 loratadine 10 mg orally disintegrating tablet, 75 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +884241000168106 Bosentan (Accord) 62.5 mg film-coated tablet, 60, bottle 235884 884231000168102 Bosentan (Accord) 62.5 mg film-coated tablet, 60 884221000168100 Bosentan (Accord) 62.5 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +69131011000036105 Nicotinell Classic 2 mg chewing gum, 168, blister pack 152893 66931011000036104 Nicotinell Classic 2 mg chewing gum, 168 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71511011000036103 nicotine 2 mg gum, 168 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1038431000168102 Vimpat 200 mg film-coated tablet, 14, blister pack 196452 1038421000168100 Vimpat 200 mg film-coated tablet, 14 83629011000036105 Vimpat 200 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 1038411000168107 lacosamide 200 mg tablet, 14 84429011000036109 lacosamide 200 mg tablet 84408011000036109 lacosamide +43892011000036109 Neupro 4 mg/24 hours patch, 28, sachet 131381 41384011000036107 Neupro 4 mg/24 hours patch, 28 39833011000036107 Neupro 4 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46281011000036101 rotigotine 4 mg/24 hours patch, 28 45052011000036105 rotigotine 4 mg/24 hours patch 44880011000036107 rotigotine +170701000036102 Visacor 20 mg film-coated tablet, 30, blister pack 119131 169751000036104 Visacor 20 mg film-coated tablet, 30 169261000036105 Visacor 20 mg film-coated tablet 168721000036103 Visacor 168721000036103 Visacor 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +61009011000036102 Clozole (Chemists' Own) 1% cream, 50 g, tube 64918 56952011000036105 Clozole (Chemists' Own) 1% cream, 50 g 54137011000036100 Clozole (Chemists' Own) 1% cream 53325011000036101 Clozole (Chemists' Own) 53325011000036101 Clozole (Chemists' Own) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +61009011000036102 Clozole (Chemists' Own) 1% cream, 50 g, tube 201689 56952011000036105 Clozole (Chemists' Own) 1% cream, 50 g 54137011000036100 Clozole (Chemists' Own) 1% cream 53325011000036101 Clozole (Chemists' Own) 53325011000036101 Clozole (Chemists' Own) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +857241000168106 Calcium (Apotex) 1.25 g (calcium 500 mg) film-coated tablet, 48, blister pack 857231000168102 Calcium (Apotex) 1.25 g (calcium 500 mg) film-coated tablet, 48 857221000168100 Calcium (Apotex) 1.25 g (calcium 500 mg) film-coated tablet 857101000168100 Calcium (Apotex) 857101000168100 Calcium (Apotex) 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +1062841000168103 Atorvator 20 mg film-coated tablet, 28, bottle 179822 1062831000168107 Atorvator 20 mg film-coated tablet, 28 1062731000168100 Atorvator 20 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890321000168104 atorvastatin 20 mg tablet, 28 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +19238011000036107 Proxen SR 1 g modified release tablet, 28, bottle 47442 12529011000036103 Proxen SR 1 g modified release tablet, 28 4945011000036101 Proxen SR 1 g modified release tablet 50891000168102 Proxen SR 50891000168102 Proxen SR 27176011000036100 naproxen 1 g modified release tablet, 28 22538011000036108 naproxen 1 g modified release tablet 21304011000036105 naproxen +18097011000036109 Enalapril Maleate (DP) 10 mg uncoated tablet, 30, blister pack 121954 11705011000036109 Enalapril Maleate (DP) 10 mg uncoated tablet, 30 4747011000036101 Enalapril Maleate (DP) 10 mg uncoated tablet 4424011000036100 Enalapril Maleate (DP) 4424011000036100 Enalapril Maleate (DP) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +933094011000036103 Oncotaxel 140 mg/7 mL concentrated injection, 7 mL vial 167640 932900011000036109 Oncotaxel 140 mg/7 mL concentrated injection, 7 mL vial 932754011000036103 Oncotaxel 140 mg/7 mL concentrated injection, 7 mL vial 932702011000036101 Oncotaxel 932702011000036101 Oncotaxel 932901011000036102 docetaxel 140 mg/7 mL injection, 7 mL vial 932755011000036104 docetaxel 140 mg/7 mL injection, vial 21721011000036101 docetaxel +865871000168104 Amitriptyline (PN) 50 mg tablet, 50, bottle 232151 865861000168105 Amitriptyline (PN) 50 mg tablet, 50 865851000168108 Amitriptyline (PN) 50 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +882801000168104 Bosentan (RBX) 62.5 mg film-coated tablet, 56, blister pack 257757 882791000168100 Bosentan (RBX) 62.5 mg film-coated tablet, 56 882781000168103 Bosentan (RBX) 62.5 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +673981000168107 Movicol powder for oral liquid, 30 sachets 60786 673971000168109 Movicol powder for oral liquid, 30 sachets 673961000168103 Movicol powder for oral liquid, sachet 22351000168103 Movicol 22351000168103 Movicol 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +84397011000036103 Lipigem 600 mg film-coated tablet, 60, blister pack 61428 84089011000036107 Lipigem 600 mg film-coated tablet, 60 83704011000036108 Lipigem 600 mg film-coated tablet 83550011000036105 Lipigem 83550011000036105 Lipigem 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +1002741000168108 Rivastigmine (Apo) 3 mg hard capsule, 56, bottle 160579 1002731000168104 Rivastigmine (Apo) 3 mg hard capsule, 56 1002721000168102 Rivastigmine (Apo) 3 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27692011000036108 rivastigmine 3 mg capsule, 56 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +813671000168103 Adin Melt 120 microgram sublingual wafer, 30, blister pack 121724 813661000168109 Adin Melt 120 microgram sublingual wafer, 30 813611000168106 Adin Melt 120 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 71372011000036101 desmopressin 120 microgram sublingual wafer, 30 69977011000036102 desmopressin 120 microgram sublingual wafer 21750011000036107 desmopressin +1107871000168103 Midalim 15 mg/3 mL injection solution, 3 mL ampoule 207238 1107851000168107 Midalim 15 mg/3 mL injection solution, 3 mL ampoule 1107811000168106 Midalim 15 mg/3 mL injection solution, 3 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 663931000168100 midazolam 15 mg/3 mL injection, 3 mL ampoule 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +20779011000036105 Cortic-DS 1% cream, 30 g, tube 91051 13948011000036108 Cortic-DS 1% cream, 30 g 7236011000036102 Cortic-DS 1% cream 16801000168104 Cortic-DS 16801000168104 Cortic-DS 28029011000036107 hydrocortisone acetate 1% cream, 30 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +933239581000036104 Amisulpride (Apo) 200 mg tablet, 60, blister pack 178902 933236901000036107 Amisulpride (Apo) 200 mg tablet, 60 933234761000036103 Amisulpride (Apo) 200 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +741661000168100 Pemetrexed (DBL) 100 mg powder for injection, 1 vial 182046 741651000168102 Pemetrexed (DBL) 100 mg powder for injection, 1 vial 741641000168104 Pemetrexed (DBL) 100 mg powder for injection, 100 mg vial 741601000168101 Pemetrexed (DBL) 741601000168101 Pemetrexed (DBL) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +871331000168101 Indapamide SR (AN) 1.5 mg modified release tablet, 30, blister pack 208008 871321000168104 Indapamide SR (AN) 1.5 mg modified release tablet, 30 871291000168107 Indapamide SR (AN) 1.5 mg modified release tablet 871091000168100 Indapamide SR (AN) 871091000168100 Indapamide SR (AN) 672261000168100 indapamide hemihydrate 1.5 mg modified release tablet, 30 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +30931000036102 Olanzapine (Pharmacor) 2.5 mg film-coated tablet, 28, blister pack 177128 28901000036108 Olanzapine (Pharmacor) 2.5 mg film-coated tablet, 28 26871000036109 Olanzapine (Pharmacor) 2.5 mg film-coated tablet 26111000036108 Olanzapine (Pharmacor) 26111000036108 Olanzapine (Pharmacor) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +724341000168108 PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles 724331000168104 PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles 724321000168102 PKU Anamix Junior LQ Orange oral liquid solution, 125 mL bottle 2921000168101 PKU Anamix Junior LQ 2921000168101 PKU Anamix Junior LQ 724291000168105 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL bottles 724251000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL bottle 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +59887011000036104 Naproxen Sodium (Guardian) 275 mg film-coated tablet, 12, blister pack 116392 55849011000036107 Naproxen Sodium (Guardian) 275 mg film-coated tablet, 12 53618011000036105 Naproxen Sodium (Guardian) 275 mg film-coated tablet 53432011000036101 Naproxen Sodium (Guardian) 53432011000036101 Naproxen Sodium (Guardian) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +37484011000036104 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.5% (100 mg/20 mL) injection solution, 5 x 20 mL vials 12725 36752011000036107 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.5% (100 mg/20 mL) injection solution, 5 x 20 mL vials 36096011000036102 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.5% (100 mg/20 mL) injection solution, 20 mL vial 35985011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 35985011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 38660011000036102 bupivacaine hydrochloride 0.5% (100 mg/20 mL) injection, 5 x 20 mL vials 37911011000036101 bupivacaine hydrochloride 0.5% (100 mg/20 mL) injection, vial 37702011000036102 bupivacaine +86059011000036106 Ibuprofen plus Codeine (Chemmart) film-coated tablet, 24, blister pack 158118 85733011000036109 Ibuprofen plus Codeine (Chemmart) film-coated tablet, 24 85365011000036102 Ibuprofen plus Codeine (Chemmart) film-coated tablet 85266011000036103 Ibuprofen plus Codeine (Chemmart) 85266011000036103 Ibuprofen plus Codeine (Chemmart) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +933214971000036100 Reditron-ODT 4 mg orally disintegrating tablet, 4, blister pack 163645 933204561000036102 Reditron-ODT 4 mg orally disintegrating tablet, 4 933195571000036109 Reditron-ODT 4 mg orally disintegrating tablet 22261000168105 Reditron-ODT 22261000168105 Reditron-ODT 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +95761000036106 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 2, blister pack 195918 94661000036101 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 2 93431000036108 Azithromycin (Terry White Chemists) 500 mg film-coated tablet 93261000036101 Azithromycin (Terry White Chemists) 93261000036101 Azithromycin (Terry White Chemists) 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +17773011000036100 Ondansetron (RL) 8 mg film-coated tablet, 4, blister pack 116419 11515011000036105 Ondansetron (RL) 8 mg film-coated tablet, 4 4952011000036106 Ondansetron (RL) 8 mg film-coated tablet 3915011000036107 Ondansetron (RL) 3915011000036107 Ondansetron (RL) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +931383011000036107 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 250 mL, bottle 10908 930553011000036105 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 250 mL 929926011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid 929899011000036104 Eucalyptus Oil (Bosisto's) 929899011000036104 Eucalyptus Oil (Bosisto's) 932339011000036102 eucalyptus oil 1 mL/mL liquid, 250 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +839981000168102 Advantan 0.1% cream, 10 g, tube 49380 839971000168100 Advantan 0.1% cream, 10 g 5548011000036107 Advantan 0.1% cream 3513011000036101 Advantan 3513011000036101 Advantan 839961000168106 methylprednisolone aceponate 0.1% cream, 10 g 22586011000036100 methylprednisolone aceponate 0.1% cream 21605011000036100 methylprednisolone +937571000168109 Docetaxel (Accord) 80 mg/4 mL concentrated injection, 4 mL vial 209473 937561000168103 Docetaxel (Accord) 80 mg/4 mL concentrated injection, 4 mL vial 937551000168100 Docetaxel (Accord) 80 mg/4 mL concentrated injection, 4 mL vial 797961000168109 Docetaxel (Accord) 797961000168109 Docetaxel (Accord) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +1054561000168102 Oxycodone (Sandoz) 20 mg modified release tablet, 20, blister pack 153615 785851000168108 Oxycodone (Sandoz) 20 mg modified release tablet, 20 676371000168104 Oxycodone (Sandoz) 20 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +674301000168100 Lax-Sachets powder for oral liquid, 30 sachets 202202 674291000168101 Lax-Sachets powder for oral liquid, 30 sachets 674281000168104 Lax-Sachets powder for oral liquid, sachet 147931000036105 Lax-Sachets 147931000036105 Lax-Sachets 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +799291000168100 Acnatac gel, 30 g, tube 232394 799281000168103 Acnatac gel, 30 g 799261000168107 Acnatac gel 799231000168104 Acnatac 799231000168104 Acnatac 799271000168101 clindamycin 1% + tretinoin 0.025% gel, 30 g 799251000168105 clindamycin 1% + tretinoin 0.025% gel 799241000168108 clindamycin + tretinoin +19477011000036105 Paxam 500 microgram uncoated tablet, 100, bottle 54846 12754011000036104 Paxam 500 microgram uncoated tablet, 100 6048011000036108 Paxam 500 microgram uncoated tablet 3163011000036108 Paxam 3163011000036108 Paxam 27334011000036100 clonazepam 500 microgram tablet, 100 22687011000036107 clonazepam 500 microgram tablet 21226011000036100 clonazepam +858381000168106 Amichlor 50 mg film-coated tablet, 100, bottle 215384 858371000168108 Amichlor 50 mg film-coated tablet, 100 858361000168102 Amichlor 50 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +875581000168105 Bispro 7.5 mg film-coated tablet, 56, blister pack 130181 875571000168107 Bispro 7.5 mg film-coated tablet, 56 875451000168104 Bispro 7.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 875561000168101 bisoprolol fumarate 7.5 mg tablet, 56 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +43928011000036108 Pravastatin Sodium (GA) 80 mg film-coated tablet, 30, blister pack 139606 41420011000036100 Pravastatin Sodium (GA) 80 mg film-coated tablet, 30 39925011000036100 Pravastatin Sodium (GA) 80 mg film-coated tablet 39737011000036101 Pravastatin Sodium (GA) 39737011000036101 Pravastatin Sodium (GA) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +19392011000036106 Lac-Dol 3.34 g/5 mL oral liquid solution, 500 mL, bottle 52654 12677011000036100 Lac-Dol 3.34 g/5 mL oral liquid solution, 500 mL 5740011000036106 Lac-Dol 3.34 g/5 mL oral liquid solution, 5 mL 3547011000036104 Lac-Dol 3547011000036104 Lac-Dol 27821011000036102 lactulose 3.34 g/5 mL oral liquid, 500 mL 23149011000036102 lactulose 3.34 g/5 mL oral liquid 21591011000036108 lactulose +19065011000036104 Tegretol 200 mg uncoated tablet, 200, blister pack 41848 12373011000036104 Tegretol 200 mg uncoated tablet, 200 5146011000036102 Tegretol 200 mg uncoated tablet 2231000168106 Tegretol 2231000168106 Tegretol 27870011000036105 carbamazepine 200 mg tablet, 200 23198011000036103 carbamazepine 200 mg tablet 21319011000036108 carbamazepine +694521000168109 Sumatriptan (AN) 100 mg film-coated tablet, 2, blister pack 187212 694511000168102 Sumatriptan (AN) 100 mg film-coated tablet, 2 694501000168100 Sumatriptan (AN) 100 mg film-coated tablet 660401000168107 Sumatriptan (AN) 660401000168107 Sumatriptan (AN) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +920805011000036103 Famotidine (Sandoz) 20 mg film-coated tablet, 60, blister pack 94330 920484011000036107 Famotidine (Sandoz) 20 mg film-coated tablet, 60 920215011000036108 Famotidine (Sandoz) 20 mg film-coated tablet 920079011000036109 Famotidine (Sandoz) 920079011000036109 Famotidine (Sandoz) 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +17884011000036105 Sandimmun 50 mg/mL concentrated injection, 10 x 1 mL ampoules 13370 11978011000036102 Sandimmun 50 mg/mL concentrated injection, 10 x 1 mL ampoules 5665011000036100 Sandimmun 50 mg/mL concentrated injection, ampoule 3779011000036106 Sandimmun 3779011000036106 Sandimmun 26827011000036109 ciclosporin 50 mg/mL injection, 10 x 1 mL ampoules 22209011000036102 ciclosporin 50 mg/mL injection, ampoule 21379011000036104 ciclosporin +61336011000036104 Paracetamol (Herron) 500 mg uncoated tablet, 96, blister pack 80924 57354011000036107 Paracetamol (Herron) 500 mg uncoated tablet, 96 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +79651011000036109 Epiduo 0.1% / 2.5% gel, 2 g, tube 143869 79473011000036105 Epiduo 0.1% / 2.5% gel, 2 g 79355011000036100 Epiduo 0.1% / 2.5% gel 33721000168102 Epiduo 0.1% / 2.5% 33721000168102 Epiduo 0.1% / 2.5% 79804011000036108 adapalene 0.1% + benzoyl peroxide 2.5% gel, 2 g 79740011000036106 adapalene 0.1% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +908781000168108 Celecoxib (BW) 100 mg hard capsule, 30, blister pack 196182 908771000168105 Celecoxib (BW) 100 mg hard capsule, 30 908721000168109 Celecoxib (BW) 100 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 907411000168106 celecoxib 100 mg capsule, 30 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +44510011000036108 Zyprexa IM 10 mg powder for injection, 10 vials 76867 41965011000036101 Zyprexa IM 10 mg powder for injection, 10 vials 40292011000036103 Zyprexa IM 10 mg powder for injection, 10 mg vial 48951000168104 Zyprexa IM 48951000168104 Zyprexa IM 46746011000036108 olanzapine 10 mg injection, 10 vials 45297011000036107 olanzapine 10 mg injection, vial 21485011000036103 olanzapine +61019011000036100 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 200 mL, bottle 66734 56962011000036100 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 200 mL 54141011000036109 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 10 mL 53246011000036104 Robitussin Dry Cough Forte 53246011000036104 Robitussin Dry Cough Forte 63660011000036105 dextromethorphan hydrobromide monohydrate 30 mg/10 mL oral liquid, 200 mL 62037011000036104 dextromethorphan hydrobromide monohydrate 30 mg/10 mL oral liquid 61744011000036109 dextromethorphan +1075771000168101 Aripiprazole (Auro) 2 mg uncoated tablet, 28, blister pack 198190 1075761000168107 Aripiprazole (Auro) 2 mg uncoated tablet, 28 1075671000168105 Aripiprazole (Auro) 2 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 801611000168108 aripiprazole 2 mg tablet, 28 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +727751000168100 Nexium 20 mg enteric tablet, 7, blister pack 74133 727741000168102 Nexium 20 mg enteric tablet, 7 7488011000036109 Nexium 20 mg enteric tablet 2929011000036108 Nexium 2929011000036108 Nexium 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +131931000036102 Candesartan Cilexetil (Apo) 8 mg uncoated tablet, 30, bottle 184890 128201000036107 Candesartan Cilexetil (Apo) 8 mg uncoated tablet, 30 124671000036109 Candesartan Cilexetil (Apo) 8 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +933239421000036101 Pioglitazone (GA) 15 mg uncoated tablet, 28, blister pack 173435 933236731000036103 Pioglitazone (GA) 15 mg uncoated tablet, 28 933234651000036106 Pioglitazone (GA) 15 mg uncoated tablet 933234241000036106 Pioglitazone (GA) 933234241000036106 Pioglitazone (GA) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +854111000168108 Quetiapine (Alkem) 300 mg film-coated tablet, 100, blister pack 204845 854101000168105 Quetiapine (Alkem) 300 mg film-coated tablet, 100 854051000168105 Quetiapine (Alkem) 300 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +883031000168109 Barentec 1 mg film-coated tablet, 30, blister pack 234757 883021000168106 Barentec 1 mg film-coated tablet, 30 883011000168104 Barentec 1 mg film-coated tablet 882931000168102 Barentec 882931000168102 Barentec 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +841261000168101 Bansep 10 mg film-coated tablet, 30, blister pack 173489 841251000168103 Bansep 10 mg film-coated tablet, 30 841211000168104 Bansep 10 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +837011000168100 Maxigesic film-coated tablet, 8, blister pack 218785 837001000168103 Maxigesic film-coated tablet, 8 173031000036101 Maxigesic film-coated tablet 172741000036100 Maxigesic 172741000036100 Maxigesic 836991000168105 paracetamol 500 mg + ibuprofen 150 mg tablet, 8 173041000036106 paracetamol 500 mg + ibuprofen 150 mg tablet 177241000036105 paracetamol + ibuprofen +790931000168102 Quetiapine XR (AS) 200 mg modified release tablet, 10, blister pack 226820 790921000168100 Quetiapine XR (AS) 200 mg modified release tablet, 10 790911000168107 Quetiapine XR (AS) 200 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51532011000036104 quetiapine 200 mg modified release tablet, 10 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +95801000036100 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 130, bottle 199895 94721000036103 Ostelin Vitamin D 25 microgram (1000 units) soft capsule, 130 85297011000036102 Ostelin Vitamin D 25 microgram (1000 units) soft capsule 53321000168102 Ostelin Vitamin D 53321000168102 Ostelin Vitamin D 94731000036101 colecalciferol 25 microgram (1000 units) capsule, 130 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +925368011000036104 Canesten Clotrimazole Thrush Treatment Once Pessary and Cream (1 x Canesten Clotrimazole Thrush Treatment Once pessary, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 92426 924904011000036108 Canesten Clotrimazole Thrush Treatment Once Pessary and Cream (1 x Canesten Clotrimazole Thrush Treatment Once pessary, 1 x Canesten Clotrimazole cream), 1 pack 7302011000036101 Canesten Clotrimazole Thrush Treatment Once 500 mg compressed pessary 648281000168105 Canesten Clotrimazole Thrush Treatment Once Pessary and Cream 700022731000036108 Canesten Clotrimazole Thrush Treatment Once 63321011000036104 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [10 g], 1 pack 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +925368011000036104 Canesten Clotrimazole Thrush Treatment Once Pessary and Cream (1 x Canesten Clotrimazole Thrush Treatment Once pessary, 1 x Canesten Clotrimazole cream), 1 pack, composite pack 92426 924904011000036108 Canesten Clotrimazole Thrush Treatment Once Pessary and Cream (1 x Canesten Clotrimazole Thrush Treatment Once pessary, 1 x Canesten Clotrimazole cream), 1 pack 53975011000036108 Canesten Clotrimazole 1% cream 648281000168105 Canesten Clotrimazole Thrush Treatment Once Pessary and Cream 4270011000036105 Canesten Clotrimazole 63321011000036104 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +60685011000036102 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 200 mL, bottle 42870 56643011000036100 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 200 mL 54019011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 63480011000036109 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash, 200 mL 61990011000036104 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash 61818011000036107 benzydamine + chlorhexidine +933212101000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 30, blister pack 142235 933200711000036103 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 30 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200721000036105 donepezil hydrochloride 5 mg tablet, 30 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +874461000168101 Beezole 20 mg enteric tablet, 7, blister pack 205832 874451000168103 Beezole 20 mg enteric tablet, 7 874441000168100 Beezole 20 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 681231000168106 esomeprazole 20 mg enteric tablet, 7 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +68935011000036108 Mylanta 2go Double Strength chewable tablet, 20, blister pack 118508 66639011000036104 Mylanta 2go Double Strength chewable tablet, 20 65303011000036102 Mylanta 2go Double Strength chewable tablet 4781000168105 Mylanta 2go Double Strength 4781000168105 Mylanta 2go Double Strength 71349011000036105 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet, 20 69967011000036108 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +925126011000036103 Ibuprofen (Coles) 200 mg sugar coated tablet, 24, blister pack 149247 924701011000036100 Ibuprofen (Coles) 200 mg sugar coated tablet, 24 924425011000036100 Ibuprofen (Coles) 200 mg sugar coated tablet 924365011000036101 Ibuprofen (Coles) 924365011000036101 Ibuprofen (Coles) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +69533011000036102 Egozite Protective Baby 15% lotion, 500 mL, bottle 56806 67333011000036107 Egozite Protective Baby 15% lotion, 500 mL 65615011000036107 Egozite Protective Baby 15% lotion 65110011000036102 Egozite Protective Baby 65110011000036102 Egozite Protective Baby 71878011000036101 dimeticone-350 15% lotion, 500 mL 70228011000036103 dimeticone-350 15% lotion 69855011000036101 dimeticone-350 +681611000168103 Terbinafine (AN) 250 mg uncoated tablet, 28, blister pack 200225 681601000168101 Terbinafine (AN) 250 mg uncoated tablet, 28 681571000168107 Terbinafine (AN) 250 mg uncoated tablet 681561000168101 Terbinafine (AN) 681561000168101 Terbinafine (AN) 75420011000036109 terbinafine 250 mg tablet, 28 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +946111000168107 Glimepiride (Sanofi) 3 mg uncoated tablet, 50, blister pack 142392 946101000168109 Glimepiride (Sanofi) 3 mg uncoated tablet, 50 946011000168108 Glimepiride (Sanofi) 3 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 946091000168104 glimepiride 3 mg tablet, 50 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +60512011000036102 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 100 mL, bottle 151333 56470011000036105 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 100 mL 53932011000036103 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +1038271000168103 Vimpat 50 mg film-coated tablet, 56, blister pack 196449 1038261000168109 Vimpat 50 mg film-coated tablet, 56 83631011000036108 Vimpat 50 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 1038251000168107 lacosamide 50 mg tablet, 56 84431011000036107 lacosamide 50 mg tablet 84408011000036109 lacosamide +60051011000036103 Expectalix Expectorant Cough Mixture (Chemists' Own) oral liquid solution, 100 mL, bottle 12455 56013011000036100 Expectalix Expectorant Cough Mixture (Chemists' Own) oral liquid solution, 100 mL 53757011000036109 Expectalix Expectorant Cough Mixture (Chemists' Own) oral liquid solution, 10 mL 63621000168104 Expectalix Expectorant Cough Mixture (Chemists' Own) 63621000168104 Expectalix Expectorant Cough Mixture (Chemists' Own) 63194011000036104 ammonium chloride 200 mg/10 mL + codeine phosphate hemihydrate 15 mg/10 mL + guaifenesin 60 mg/10 mL + phenylephrine hydrochloride 5 mg/10 mL + pseudoephedrine hydrochloride 45 mg/10 mL oral liquid, 100 mL 61883011000036100 ammonium chloride 200 mg/10 mL + codeine phosphate hemihydrate 15 mg/10 mL + guaifenesin 60 mg/10 mL + phenylephrine hydrochloride 5 mg/10 mL + pseudoephedrine hydrochloride 45 mg/10 mL oral liquid 61814011000036100 ammonium chloride + codeine + guaifenesin + phenylephrine + pseudoephedrine +865801000168109 Amitriptyline (PN) 10 mg tablet, 50, bottle 232147 865761000168101 Amitriptyline (PN) 10 mg tablet, 50 865751000168103 Amitriptyline (PN) 10 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +20033011000036108 Topamax Sprinkle 15 mg hard capsule, 60, bottle 167729 13265011000036106 Topamax Sprinkle 15 mg hard capsule, 60 6547011000036109 Topamax Sprinkle 15 mg hard capsule 20891000168103 Topamax Sprinkle 20891000168103 Topamax Sprinkle 27653011000036107 topiramate 15 mg capsule, 60 22990011000036106 topiramate 15 mg capsule 21458011000036101 topiramate +20033011000036108 Topamax Sprinkle 15 mg hard capsule, 60, bottle 69144 13265011000036106 Topamax Sprinkle 15 mg hard capsule, 60 6547011000036109 Topamax Sprinkle 15 mg hard capsule 20891000168103 Topamax Sprinkle 20891000168103 Topamax Sprinkle 27653011000036107 topiramate 15 mg capsule, 60 22990011000036106 topiramate 15 mg capsule 21458011000036101 topiramate +724461000168102 PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches 724451000168104 PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches 724431000168105 PKU Lophlex LQ 10 Berry oral liquid solution, 62.5 mL pouch 35201000168102 PKU Lophlex LQ 10 35201000168102 PKU Lophlex LQ 10 724441000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL pouches 724421000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +18329011000036109 Lisinopril (Winthrop) 10 mg uncoated tablet, 30, blister pack 131879 11922011000036101 Lisinopril (Winthrop) 10 mg uncoated tablet, 30 4924011000036103 Lisinopril (Winthrop) 10 mg uncoated tablet 4050011000036103 Lisinopril (Winthrop) 4050011000036103 Lisinopril (Winthrop) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +992191000168109 Bisoprolol (Apotex) 2.5 mg tablet, 28, blister pack 182126 992181000168106 Bisoprolol (Apotex) 2.5 mg tablet, 28 992121000168107 Bisoprolol (Apotex) 2.5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +808191000168104 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 10, bottle 184808 808181000168102 Perindopril Arginine (Apo) 2.5 mg film-coated tablet, 10 808171000168100 Perindopril Arginine (Apo) 2.5 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 727271000168102 perindopril arginine 2.5 mg tablet, 10 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +862741000168105 Amitriptyline (GPPL) 25 mg tablet, 1000, blister pack 232136 862731000168101 Amitriptyline (GPPL) 25 mg tablet, 1000 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +929171000168109 Somac 40 mg enteric tablet, 56, blister pack 69792 41855011000036104 Somac 40 mg enteric tablet, 56 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46661011000036101 pantoprazole 40 mg enteric tablet, 56 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +925224011000036108 Ropinirole-0.5 (Pharmacor) 500 microgram film-coated tablet, 84, bottle 157773 924761011000036104 Ropinirole-0.5 (Pharmacor) 500 microgram film-coated tablet, 84 924461011000036108 Ropinirole-0.5 (Pharmacor) 500 microgram film-coated tablet 10421000168109 Ropinirole-0.5 (Pharmacor) 10421000168109 Ropinirole-0.5 (Pharmacor) 46971011000036105 ropinirole 500 microgram tablet, 84 45365011000036107 ropinirole 500 microgram tablet 44882011000036106 ropinirole +920759011000036108 Captopril (Sandoz) 12.5 mg film-coated tablet, 90, blister pack 61419 920438011000036107 Captopril (Sandoz) 12.5 mg film-coated tablet, 90 920179011000036103 Captopril (Sandoz) 12.5 mg film-coated tablet 920077011000036102 Captopril (Sandoz) 920077011000036102 Captopril (Sandoz) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +933212181000036105 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 28, blister pack 142236 933200871000036103 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 28 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1012541000168101 Metformin (Apo) 500 mg film-coated tablet, 500, bottle 157224 1012531000168105 Metformin (Apo) 500 mg film-coated tablet, 500 929413011000036109 Metformin (Apo) 500 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 53221000036101 metformin hydrochloride 500 mg tablet, 500 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +59998011000036106 Cortaid 0.5% cream, 30 g, tube 12284 55960011000036102 Cortaid 0.5% cream, 30 g 53739011000036101 Cortaid 0.5% cream 53174011000036106 Cortaid 53174011000036106 Cortaid 63438011000036104 hydrocortisone acetate 0.5% cream, 30 g 61964011000036107 hydrocortisone acetate 0.5% cream 21231011000036107 hydrocortisone acetate +1050151000168104 Oxycodone (Wockhardt) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 277849 1050141000168101 Oxycodone (Wockhardt) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 1050131000168105 Oxycodone (Wockhardt) 20 mg/2 mL injection solution, 2 mL ampoule 1050121000168107 Oxycodone (Wockhardt) 1050121000168107 Oxycodone (Wockhardt) 35094011000036107 oxycodone hydrochloride 20 mg/2 mL injection, 5 x 2 mL ampoules 34846011000036103 oxycodone hydrochloride 20 mg/2 mL injection, ampoule 21259011000036105 oxycodone +131851000036104 Montair 5 mg chewable tablet, 28, blister pack 184827 128141000036104 Montair 5 mg chewable tablet, 28 125181000036100 Montair 5 mg chewable tablet 123921000036103 Montair 123921000036103 Montair 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +85031011000036106 Paroxo 20 mg film-coated tablet, 20, blister pack 152489 84896011000036103 Paroxo 20 mg film-coated tablet, 20 84788011000036102 Paroxo 20 mg film-coated tablet 84767011000036100 Paroxo 84767011000036100 Paroxo 51563011000036101 paroxetine 20 mg tablet, 20 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +59831000036102 Famotidine (PS) 20 mg film-coated tablet, 30, blister pack 186280 58931000036100 Famotidine (PS) 20 mg film-coated tablet, 30 58301000036106 Famotidine (PS) 20 mg film-coated tablet 58131000036102 Famotidine (PS) 58131000036102 Famotidine (PS) 58941000036105 famotidine 20 mg tablet, 30 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +969721000168101 Aripiprazole (AN) 15 mg uncoated tablet, 30, bottle 198194 969231000168109 Aripiprazole (AN) 15 mg uncoated tablet, 30 969201000168102 Aripiprazole (AN) 15 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +18741011000036109 Tramahexal 100 mg/2 mL injection solution, 5 x 2 mL ampoules 102013 11244011000036107 Tramahexal 100 mg/2 mL injection solution, 5 x 2 mL ampoules 5224011000036109 Tramahexal 100 mg/2 mL injection solution, 2 mL ampoule 62361000168109 Tramahexal 62361000168109 Tramahexal 27537011000036109 tramadol hydrochloride 100 mg/2 mL injection, 5 x 2 mL ampoules 22877011000036109 tramadol hydrochloride 100 mg/2 mL injection, ampoule 21486011000036105 tramadol +911911000168109 Cavstat 40 mg film-coated tablet, 28, blister pack 234508 911901000168106 Cavstat 40 mg film-coated tablet, 28 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911891000168107 rosuvastatin 40 mg tablet, 28 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +833731000168103 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g, screw cap jar 833721000168101 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g 833701000168105 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid 664311000168109 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) 664311000168109 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) 833711000168108 magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid, 100 g 833691000168105 magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid 871041000168108 magnesium trisilicate + chalk + bicarbonate + magnesium carbonate +991141000168105 Bisoprolol (Apotex) 1.25 mg tablet, 100, blister pack 182109 991131000168101 Bisoprolol (Apotex) 1.25 mg tablet, 100 990981000168105 Bisoprolol (Apotex) 1.25 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 46789011000036109 bisoprolol fumarate 1.25 mg tablet, 100 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +140511000036107 Thrombix Low Dose Aspirin 100 mg enteric tablet, 30, blister pack 175831 139091000036101 Thrombix Low Dose Aspirin 100 mg enteric tablet, 30 137691000036104 Thrombix Low Dose Aspirin 100 mg enteric tablet 48281000168101 Thrombix Low Dose Aspirin 48281000168101 Thrombix Low Dose Aspirin 75591000036102 aspirin 100 mg enteric tablet, 30 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +865961000168103 Amitriptyline (PN) 50 mg tablet, 100, blister pack 232150 865951000168100 Amitriptyline (PN) 50 mg tablet, 100 865851000168108 Amitriptyline (PN) 50 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +678401000168102 Finasteride (GH) 5 mg film-coated tablet, 30, blister pack 189652 678391000168104 Finasteride (GH) 5 mg film-coated tablet, 30 678381000168102 Finasteride (GH) 5 mg film-coated tablet 678371000168100 Finasteride (GH) 678371000168100 Finasteride (GH) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +763481000168104 Zinnat 125 mg/5 mL powder for oral liquid, 140 mL, bottle 81297 763471000168102 Zinnat 125 mg/5 mL powder for oral liquid, 140 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763461000168108 cefuroxime 125 mg/5 mL powder for oral liquid, 140 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +763481000168104 Zinnat 125 mg/5 mL powder for oral liquid, 140 mL, bottle 178687 763471000168102 Zinnat 125 mg/5 mL powder for oral liquid, 140 mL 41481000036103 Zinnat 125 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 763461000168108 cefuroxime 125 mg/5 mL powder for oral liquid, 140 mL 41491000036101 cefuroxime 125 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +1060101000168107 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 98, blister pack 234479 1060091000168102 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 98 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911091000168104 rosuvastatin 10 mg tablet, 98 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +934791000168107 Zantac 75 mg film-coated tablet, 56, blister pack 55238 934781000168109 Zantac 75 mg film-coated tablet, 56 934701000168101 Zantac 75 mg film-coated tablet 3563011000036102 Zantac 3563011000036102 Zantac 934771000168106 ranitidine 75 mg tablet, 56 934691000168101 ranitidine 75 mg tablet 21682011000036109 ranitidine +695801000168104 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles 48501 695791000168100 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles 695771000168101 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 200 mL bottle 20471000168101 Ultravist-370 20471000168101 Ultravist-370 695781000168103 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 200 mL bottles 695761000168107 iopromide 769 mg (iodine 370 mg)/mL injection, 200 mL bottle 77425011000036101 iopromide +1006811000168102 Ataris 10 mg film-coated tablet, 30, bottle 164963 1006801000168100 Ataris 10 mg film-coated tablet, 30 1006791000168101 Ataris 10 mg film-coated tablet 1006781000168104 Ataris 1006781000168104 Ataris 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +79634011000036108 Clexane 40 mg/0.4 mL injection solution, 10 x 0.4 mL ampoules 147005 79479011000036108 Clexane 40 mg/0.4 mL injection solution, 10 x 0.4 mL ampoules 79366011000036104 Clexane 40 mg/0.4 mL injection solution, 0.4 mL ampoule 2391000168100 Clexane 2391000168100 Clexane 79810011000036100 enoxaparin sodium 40 mg/0.4 mL injection, 10 x 0.4 mL ampoules 79742011000036105 enoxaparin sodium 40 mg/0.4 mL injection, ampoule 21553011000036103 enoxaparin sodium +926872011000036109 Tea Tree Cold Sore (Thursday Plantation) cream, 10 g, tube 50564 926268011000036106 Tea Tree Cold Sore (Thursday Plantation) cream, 10 g 925714011000036106 Tea Tree Cold Sore (Thursday Plantation) cream 64151000168104 Tea Tree Cold Sore (Thursday Plantation) 64151000168104 Tea Tree Cold Sore (Thursday Plantation) 927372011000036108 melaleuca oil 12% + menthol 0.5% + camphor 0.5% + phenol 0.5% cream, 10 g 927016011000036104 melaleuca oil 12% + menthol 0.5% + camphor 0.5% + phenol 0.5% cream 926962011000036109 melaleuca oil + menthol + camphor + phenol +1067411000168103 Cold and Flu Relief PE Day and Night (Pharmacy Care) (36 x Day tablets, 12 x Night tablets), 48, blister pack 223838 1067401000168101 Cold and Flu Relief PE Day and Night (Pharmacy Care) (36 x Day tablets, 12 x Night tablets), 48 1067361000168105 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Care) film-coated tablet 1067321000168100 Cold and Flu Relief PE Day and Night (Pharmacy Care) 1067341000168106 Cold and Flu Relief PE Day and Night (Night) (Pharmacy Care) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1067411000168103 Cold and Flu Relief PE Day and Night (Pharmacy Care) (36 x Day tablets, 12 x Night tablets), 48, blister pack 223838 1067401000168101 Cold and Flu Relief PE Day and Night (Pharmacy Care) (36 x Day tablets, 12 x Night tablets), 48 1067351000168108 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Care) film-coated tablet 1067321000168100 Cold and Flu Relief PE Day and Night (Pharmacy Care) 1067331000168102 Cold and Flu Relief PE Day and Night (Day) (Pharmacy Care) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +79052011000036109 Bio Magnesium film-coated tablet, 50, bottle (Old Formulation 2009) 149347 78847011000036108 Bio Magnesium film-coated tablet, 50 (Old Formulation 2009) 78653011000036108 Bio Magnesium film-coated tablet (Old Formulation 2009) 45051000168105 Bio Magnesium 45051000168105 Bio Magnesium 79238011000036104 magnesium (as oxide heavy) 265.4 mg + magnesium (as phosphate pentahydrate) 36 mg + calcium ascorbate dihydrate 250 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet, 50 79113011000036101 magnesium (as oxide heavy) 265.4 mg + magnesium (as phosphate pentahydrate) 36 mg + calcium ascorbate dihydrate 250 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet 79091011000036107 magnesium oxide heavy + magnesium phosphate pentahydrate + ascorbic acid + pyridoxine + colecalciferol + manganese amino acid chelate +738921000168109 Natural E 1000 IU (Blackmores) 670 mg (1000 units) soft capsule, 100, bottle 91950 738911000168102 Natural E 1000 IU (Blackmores) 670 mg (1000 units) soft capsule, 100 738861000168106 Natural E 1000 IU (Blackmores) 670 mg (1000 units) soft capsule 738701000168103 Natural E 1000 IU (Blackmores) 738701000168103 Natural E 1000 IU (Blackmores) 738901000168100 d-alpha-tocopherol 670 mg (1000 units) capsule, 100 738851000168109 d-alpha-tocopherol 670 mg (1000 units) capsule 77434011000036103 d-alpha-tocopherol +61523011000036105 Dolased Analgesic and Calmative uncoated tablet, 10, blister pack 93507 57448011000036107 Dolased Analgesic and Calmative uncoated tablet, 10 54306011000036100 Dolased Analgesic and Calmative uncoated tablet 53285011000036100 Dolased Analgesic and Calmative 53285011000036100 Dolased Analgesic and Calmative 63865011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 10 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +69209011000036101 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 500 mL bottle 19458 67009011000036104 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 500 mL bottle 65366011000036107 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 500 mL bottle 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 71579011000036108 chlorhexidine acetate 0.015% (75 mg/500 mL) + cetrimide 0.15% (750 mg/500 mL) solution, 500 mL bottle 70075011000036104 chlorhexidine acetate 0.015% (75 mg/500 mL) + cetrimide 0.15% (750 mg/500 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +764851000168106 Lozanoc 50 mg hard capsule, 60, bottle 206360 680191000168105 Lozanoc 50 mg hard capsule, 60 680011000168100 Lozanoc 50 mg hard capsule 679991000168108 Lozanoc 679991000168108 Lozanoc 680181000168107 itraconazole 50 mg capsule, 60 680001000168103 itraconazole 50 mg capsule 21903011000036100 itraconazole +18397011000036105 Urederm 10% cream, 100 g, tube 14863 12063011000036107 Urederm 10% cream, 100 g 5620011000036101 Urederm 10% cream 4151011000036103 Urederm 4151011000036103 Urederm 27005011000036108 urea 10% cream, 100 g 22378011000036108 urea 10% cream 21561011000036106 urea +1002581000168109 Rivastigmine (Apo) 1.5 mg hard capsule, 100, bottle 160570 1002571000168106 Rivastigmine (Apo) 1.5 mg hard capsule, 100 1002531000168108 Rivastigmine (Apo) 1.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002561000168100 rivastigmine 1.5 mg capsule, 100 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +25311000036102 Cephalexin (GenRx) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 98633 23091000036106 Cephalexin (GenRx) 250 mg/5 mL powder for oral liquid, 100 mL 20551000036104 Cephalexin (GenRx) 250 mg/5 mL powder for oral liquid, 5 mL 3342011000036104 Cephalexin (GenRx) 3342011000036104 Cephalexin (GenRx) 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +926935011000036108 Multihance 2.645 g/5 mL injection solution, 10 x 5 mL vials 94307 926329011000036101 Multihance 2.645 g/5 mL injection solution, 10 x 5 mL vials 925765011000036109 Multihance 2.645 g/5 mL injection solution, 5 mL vial 19451000168109 Multihance 19451000168109 Multihance 927405011000036101 gadobenate dimeglumine 2.645 g/5 mL injection, 10 x 5 mL vials 927044011000036101 gadobenate dimeglumine 2.645 g/5 mL injection, vial 926973011000036109 gadobenic acid +782251000168101 Voriconazole (Alphapharm) 200 mg film-coated tablet, 10, blister pack 206993 782241000168103 Voriconazole (Alphapharm) 200 mg film-coated tablet, 10 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46802011000036103 voriconazole 200 mg tablet, 10 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +43885011000036100 Invega 12 mg modified release tablet, 56, blister pack 130732 41377011000036109 Invega 12 mg modified release tablet, 56 39789011000036104 Invega 12 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 46274011000036107 paliperidone 12 mg modified release tablet, 56 45049011000036103 paliperidone 12 mg modified release tablet 34837011000036104 paliperidone +858541000168109 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 200 mL bottles 49599 858531000168100 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 200 mL bottles 921069011000036109 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 200 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 858521000168103 iodixanol 652 mg (iodine 320 mg)/mL injection, 10 x 200 mL bottles 922139011000036106 iodixanol 652 mg (iodine 320 mg)/mL injection, 200 mL bottle 922032011000036109 iodixanol +877271000168101 Briviact 25 mg film-coated tablet, 14, blister pack 243796 877261000168107 Briviact 25 mg film-coated tablet, 14 877241000168108 Briviact 25 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877251000168105 brivaracetam 25 mg tablet, 14 877231000168104 brivaracetam 25 mg tablet 876401000168109 brivaracetam +69003011000036109 Aquaear ear drops solution, 35 mL, bottle 13857 66805011000036101 Aquaear ear drops solution, 35 mL 65431011000036104 Aquaear ear drops solution 65165011000036105 Aquaear 65165011000036105 Aquaear 71435011000036102 acetic acid 1.73% + isopropyl alcohol 63.4% ear drops, 35 mL 70010011000036100 acetic acid 1.73% + isopropyl alcohol 63.4% ear drops 69771011000036102 acetic acid + isopropyl alcohol +61653011000036100 Ibuprofen (Guardian) 200 mg film-coated tablet, 24, blister pack 97232 57575011000036106 Ibuprofen (Guardian) 200 mg film-coated tablet, 24 54353011000036103 Ibuprofen (Guardian) 200 mg film-coated tablet 53129011000036108 Ibuprofen (Guardian) 53129011000036108 Ibuprofen (Guardian) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +73311011000036107 Jurnista 64 mg modified release tablet, 50, blister pack 141535 73109011000036102 Jurnista 64 mg modified release tablet, 50 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73507011000036100 hydromorphone hydrochloride 64 mg modified release tablet, 50 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +773511000168102 Famciclovir (Sandoz) 500 mg film-coated tablet, 3, blister pack 162314 773501000168100 Famciclovir (Sandoz) 500 mg film-coated tablet, 3 70101000036109 Famciclovir (Sandoz) 500 mg film-coated tablet 85265011000036105 Famciclovir (Sandoz) 85265011000036105 Famciclovir (Sandoz) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1054401000168104 Jurnista 4 mg modified release tablet, 40, blister pack 155995 1054391000168101 Jurnista 4 mg modified release tablet, 40 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054381000168104 hydromorphone hydrochloride 4 mg modified release tablet, 40 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +796591000168109 Letrozole (Accord) 2.5 mg film-coated tablet, 30, blister pack 203218 796581000168106 Letrozole (Accord) 2.5 mg film-coated tablet, 30 796571000168108 Letrozole (Accord) 2.5 mg film-coated tablet 796561000168102 Letrozole (Accord) 796561000168102 Letrozole (Accord) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +969401000168101 Aripiprazole (AN) 20 mg uncoated tablet, 28, blister pack 198195 969391000168103 Aripiprazole (AN) 20 mg uncoated tablet, 28 969381000168101 Aripiprazole (AN) 20 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787681000168108 aripiprazole 20 mg tablet, 28 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +68908011000036108 Ivelip 20% (20 g/100 mL) intravenous infusion injection, 100 mL bag 101423 66470011000036106 Ivelip 20% (20 g/100 mL) intravenous infusion injection, 100 mL bag 65394011000036102 Ivelip 20% (20 g/100 mL) intravenous infusion injection, 100 mL bag 65097011000036107 Ivelip 65097011000036107 Ivelip 71204011000036108 soya oil 20% (20 g/100 mL) injection, 100 mL bag 70265011000036104 soya oil 20% (20 g/100 mL) injection, bag 69767011000036104 soya oil +920742011000036100 Terbinafine (DRLA) 250 mg tablet, 28, blister pack 167575 920425011000036103 Terbinafine (DRLA) 250 mg tablet, 28 920173011000036101 Terbinafine (DRLA) 250 mg tablet 920112011000036102 Terbinafine (DRLA) 920112011000036102 Terbinafine (DRLA) 75420011000036109 terbinafine 250 mg tablet, 28 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +69062011000036103 Enalapril Maleate (Generic Health) 10 mg uncoated tablet, 30, blister pack 142950 66864011000036104 Enalapril Maleate (Generic Health) 10 mg uncoated tablet, 30 65374011000036105 Enalapril Maleate (Generic Health) 10 mg uncoated tablet 65000011000036109 Enalapril Maleate (Generic Health) 65000011000036109 Enalapril Maleate (Generic Health) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +77253011000036100 Oxaliplatin (Actavis) 100 mg powder for injection, 1 vial 151567 76669011000036106 Oxaliplatin (Actavis) 100 mg powder for injection, 1 vial 76102011000036104 Oxaliplatin (Actavis) 100 mg powder for injection, 100 mg vial 75942011000036108 Oxaliplatin (Actavis) 75942011000036108 Oxaliplatin (Actavis) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +1015511000168105 Letrozole (Apo) 2.5 mg film-coated tablet, 500, bottle 163830 1015501000168107 Letrozole (Apo) 2.5 mg film-coated tablet, 500 3211000036104 Letrozole (Apo) 2.5 mg film-coated tablet 63331000168105 Letrozole (Apo) 63331000168105 Letrozole (Apo) 1015491000168100 letrozole 2.5 mg tablet, 500 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +170861000036108 Metoprolol Tartrate (Actavis) 100 mg film-coated tablet, 60, blister pack 192777 170021000036109 Metoprolol Tartrate (Actavis) 100 mg film-coated tablet, 60 168891000036109 Metoprolol Tartrate (Actavis) 100 mg film-coated tablet 168841000036103 Metoprolol Tartrate (Actavis) 168841000036103 Metoprolol Tartrate (Actavis) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +702941000168109 TYR Anamix Junior powder for oral liquid, 30 x 36 g sachets 702931000168100 TYR Anamix Junior powder for oral liquid, 30 x 36 g sachets 702911000168105 TYR Anamix Junior powder for oral liquid, 36 g sachet 35181000168103 TYR Anamix Junior 35181000168103 TYR Anamix Junior 702921000168103 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine and tyrosine powder for oral liquid, 30 x 36 g sachets 702901000168107 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine and tyrosine powder for oral liquid, 36 g sachet 702891000168108 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine and tyrosine +1110531000168101 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 112, blister pack 219061 1110521000168104 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 112 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82544011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 112 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +882961000168105 Candesartan HCTZ 16/12.5 (GXP) uncoated tablet, 30, blister pack 253532 882951000168108 Candesartan HCTZ 16/12.5 (GXP) uncoated tablet, 30 882941000168106 Candesartan HCTZ 16/12.5 (GXP) uncoated tablet 882921000168100 Candesartan HCTZ 16/12.5 (GXP) 882921000168100 Candesartan HCTZ 16/12.5 (GXP) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +908941000168100 Celecoxib (GXP) 100 mg hard capsule, 60, blister pack 206830 908931000168109 Celecoxib (GXP) 100 mg hard capsule, 60 908921000168106 Celecoxib (GXP) 100 mg hard capsule 908811000168105 Celecoxib (GXP) 908811000168105 Celecoxib (GXP) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +44055011000036108 Xylocaine 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules 48357 41542011000036106 Xylocaine 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules 40050011000036102 Xylocaine 1% (50 mg/5 mL) injection solution, 5 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 46394011000036108 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) injection, 50 x 5 mL ampoules 45128011000036101 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +18260011000036101 Oroxine 50 microgram uncoated tablet, 200, bottle 10984 11802011000036104 Oroxine 50 microgram uncoated tablet, 200 4909011000036105 Oroxine 50 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 28021011000036108 levothyroxine sodium 50 microgram tablet, 200 23344011000036106 levothyroxine sodium 50 microgram tablet 21577011000036109 levothyroxine +831161000168108 Priorix powder for injection, 10 vials 79211 831151000168106 Priorix powder for injection, 10 vials 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831141000168109 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, 10 vials 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831161000168108 Priorix powder for injection, 10 vials 97841 831151000168106 Priorix powder for injection, 10 vials 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831141000168109 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, 10 vials 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +19075011000036108 Sandostatin 50 microgram/mL injection solution, 5 x 1 mL ampoules 42192 12383011000036109 Sandostatin 50 microgram/mL injection solution, 5 x 1 mL ampoules 5407011000036108 Sandostatin 50 microgram/mL injection solution, ampoule 40101000168103 Sandostatin 40101000168103 Sandostatin 27090011000036102 octreotide 50 microgram/mL injection, 5 x 1 mL ampoules 22459011000036105 octreotide 50 microgram/mL injection, ampoule 21316011000036104 octreotide +1038521000168101 Daratumumab (Janssen) 400 mg/20 mL concentrated injection, 20 mL vial 281845 1038511000168108 Daratumumab (Janssen) 400 mg/20 mL concentrated injection, 20 mL vial 1038501000168105 Daratumumab (Janssen) 400 mg/20 mL concentrated injection, 20 mL vial 1038311000168103 Daratumumab (Janssen) 1038311000168103 Daratumumab (Janssen) 1037821000168102 daratumumab 400 mg/20 mL injection, 20 mL vial 1037801000168106 daratumumab 400 mg/20 mL injection, vial 1037741000168102 daratumumab +952151000168105 Diclofenac (Amneal) 50 mg enteric tablet, 10, blister pack 272874 952141000168108 Diclofenac (Amneal) 50 mg enteric tablet, 10 952131000168104 Diclofenac (Amneal) 50 mg enteric tablet 952071000168102 Diclofenac (Amneal) 952071000168102 Diclofenac (Amneal) 46590011000036101 diclofenac sodium 50 mg enteric tablet, 10 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +1004001000168104 Rivastigmine (Apo) 6 mg hard capsule, 100, bottle 160572 1003991000168107 Rivastigmine (Apo) 6 mg hard capsule, 100 1002981000168101 Rivastigmine (Apo) 6 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1003981000168109 rivastigmine 6 mg capsule, 100 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +69406011000036109 Banlice Mousse foam, 200 g, aerosol can 46708 67206011000036101 Banlice Mousse foam, 200 g 65553011000036107 Banlice Mousse foam 65159011000036102 Banlice Mousse 65159011000036102 Banlice Mousse 71762011000036109 pyrethrins 0.165% + piperonyl butoxide 1.65% foam, 200 g 70176011000036104 pyrethrins 0.165% + piperonyl butoxide 1.65% foam 69865011000036107 pyrethrins + piperonyl butoxide +20556011000036104 Solavert 160 mg uncoated tablet, 60, bottle 79917 13748011000036101 Solavert 160 mg uncoated tablet, 60 7033011000036100 Solavert 160 mg uncoated tablet 3758011000036100 Solavert 3758011000036100 Solavert 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +171021000036102 Panadol Rapid 500 mg film-coated tablet, 40, blister pack 78692 170221000036103 Panadol Rapid 500 mg film-coated tablet, 40 65667011000036101 Panadol Rapid 500 mg film-coated tablet 4501000168107 Panadol Rapid 4501000168107 Panadol Rapid 170231000036101 paracetamol 500 mg tablet, 40 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44553011000036105 Zyclir 200 mg dispersible tablet, 90, blister pack 80825 42006011000036102 Zyclir 200 mg dispersible tablet, 90 40316011000036107 Zyclir 200 mg dispersible tablet 24351000168109 Zyclir 24351000168109 Zyclir 77551000036101 aciclovir 200 mg dispersible tablet, 90 77521000036107 aciclovir 200 mg dispersible tablet 21239011000036106 aciclovir +1024171000168100 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 40, blister pack 227167 1024161000168106 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 40 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023831000168106 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 40 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +43584011000036103 Somidem 10 mg film-coated tablet, 2, blister pack 119196 41216011000036106 Somidem 10 mg film-coated tablet, 2 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46646011000036100 zolpidem tartrate 10 mg tablet, 2 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +943461000168105 Melox 15 mg uncoated tablet, 30, blister pack 149087 943451000168108 Melox 15 mg uncoated tablet, 30 943441000168106 Melox 15 mg uncoated tablet 40051000036105 Melox 40051000036105 Melox 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +59671000036101 Cyprocur 50 mg uncoated tablet, 20, blister pack 178007 59151000036102 Cyprocur 50 mg uncoated tablet, 20 58321000036101 Cyprocur 50 mg uncoated tablet 40221000036105 Cyprocur 40221000036105 Cyprocur 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +763321000168108 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 5 x 2 mL vials 234431 763311000168101 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 5 x 2 mL vials 763281000168103 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 2 mL vial 763271000168101 Tobramycin (Alphapharm) 763271000168101 Tobramycin (Alphapharm) 27780011000036101 tobramycin 80 mg/2 mL injection, 5 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +933212421000036103 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 84, blister pack 142238 933201211000036104 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 84 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200991000036106 donepezil hydrochloride 10 mg tablet, 84 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1123681000168102 Fluad 2018 injection suspension, 1 x 0.5 mL syringe 90339 1123671000168100 Fluad 2018 injection suspension, 1 x 0.5 mL syringe 1123651000168109 Fluad 2018 injection suspension, 0.5 mL syringe 1123621000168101 Fluad 2018 1123621000168101 Fluad 2018 1123661000168106 influenza trivalent adjuvant geriatric vaccine 2018 injection, 1 x 0.5 mL syringe 1123641000168107 influenza trivalent adjuvant geriatric vaccine 2018 injection, 0.5 mL syringe 1123631000168103 influenza trivalent adjuvant vaccine 2018 +980791000168105 Favint 18 microgram powder for inhalation, 30 capsules, blister pack 98765 980781000168107 Favint 18 microgram powder for inhalation, 30 capsules 980711000168101 Favint 18 microgram powder for inhalation, 1 capsule 980671000168100 Favint 980671000168100 Favint 27953011000036106 tiotropium 18 microgram powder for inhalation, 30 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +741981000168102 Jakavi 10 mg tablet, 224, blister pack 232702 741971000168100 Jakavi 10 mg tablet, 224 741771000168102 Jakavi 10 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741961000168106 ruxolitinib 10 mg tablet, 224 741761000168108 ruxolitinib 10 mg tablet 146491000036100 ruxolitinib +82359011000036108 Pholtrate Linctus 1 mg/mL oral liquid solution, 200 mL, bottle 11521 82123011000036101 Pholtrate Linctus 1 mg/mL oral liquid solution, 200 mL 81995011000036105 Pholtrate Linctus 1 mg/mL oral liquid solution 81976011000036106 Pholtrate Linctus 81976011000036106 Pholtrate Linctus 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +20933011000036104 Risperdal Quicklet 500 microgram orally disintegrating tablet, 28, blister pack 94192 14087011000036107 Risperdal Quicklet 500 microgram orally disintegrating tablet, 28 7365011000036105 Risperdal Quicklet 500 microgram orally disintegrating tablet 10371000168103 Risperdal Quicklet 10371000168103 Risperdal Quicklet 47771000036103 risperidone 500 microgram orally disintegrating tablet, 28 47621000036109 risperidone 500 microgram orally disintegrating tablet 21338011000036109 risperidone +727471000168103 Olmetec Plus 40/25 mg film-coated tablet, 10, blister pack 115661 727461000168109 Olmetec Plus 40/25 mg film-coated tablet, 10 4987011000036102 Olmetec Plus 40/25 mg film-coated tablet 58251000168105 Olmetec Plus 40/25 mg 58251000168105 Olmetec Plus 40/25 mg 727451000168107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 10 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +933246821000036107 Pantoprazole (PS) 20 mg enteric tablet, 14, blister pack 158196 933243651000036107 Pantoprazole (PS) 20 mg enteric tablet, 14 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +933239261000036106 Glimepiride (Pharmacor) 3 mg uncoated tablet, 30, blister pack 156406 933236381000036100 Glimepiride (Pharmacor) 3 mg uncoated tablet, 30 933234561000036105 Glimepiride (Pharmacor) 3 mg uncoated tablet 933234221000036103 Glimepiride (Pharmacor) 933234221000036103 Glimepiride (Pharmacor) 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +741891000168106 Jakavi 10 mg tablet, 56, blister pack 232702 741881000168108 Jakavi 10 mg tablet, 56 741771000168102 Jakavi 10 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741871000168105 ruxolitinib 10 mg tablet, 56 741761000168108 ruxolitinib 10 mg tablet 146491000036100 ruxolitinib +82349011000036105 Glaumox 500 mg powder for injection, 5 vials 142075 82135011000036103 Glaumox 500 mg powder for injection, 5 vials 82005011000036100 Glaumox 500 mg powder for injection, 500 mg vial 81972011000036107 Glaumox 81972011000036107 Glaumox 82527011000036102 acetazolamide 500 mg injection, 5 vials 82436011000036109 acetazolamide 500 mg injection, vial 21502011000036104 acetazolamide +917521000168103 Amikacin (RMB) 500 mg/2 mL injection solution, 10 x 2 mL ampoules 262735 917511000168105 Amikacin (RMB) 500 mg/2 mL injection solution, 10 x 2 mL ampoules 917481000168103 Amikacin (RMB) 500 mg/2 mL injection solution, 2 mL ampoule 917471000168101 Amikacin (RMB) 917471000168101 Amikacin (RMB) 917371000168108 amikacin 500 mg/2 mL injection, 10 x 2 mL ampoules 917321000168107 amikacin 500 mg/2 mL injection, ampoule 37805011000036108 amikacin +933146011000036106 Elmendos 200 mg tablet, 60, bottle 98080 932938011000036100 Elmendos 200 mg tablet, 60 932775011000036101 Elmendos 200 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46991011000036103 lamotrigine 200 mg tablet, 60 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +61627011000036105 Nurofen Migraine Pain 200 mg film-coated tablet, 48, blister pack 96215 57549011000036107 Nurofen Migraine Pain 200 mg film-coated tablet, 48 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +86042011000036103 Mezavant 1.2 g modified release tablet, 120, blister pack 155172 85687011000036101 Mezavant 1.2 g modified release tablet, 120 85334011000036105 Mezavant 1.2 g modified release tablet 85289011000036105 Mezavant 85289011000036105 Mezavant 86431011000036103 mesalazine 1.2 g modified release tablet, 120 86221011000036104 mesalazine 1.2 g modified release tablet 21351011000036101 mesalazine +885931000168109 Tadalafil (Blooms The Chemist) 5 mg film-coated tablet, 28, blister pack 205857 885921000168106 Tadalafil (Blooms The Chemist) 5 mg film-coated tablet, 28 885911000168104 Tadalafil (Blooms The Chemist) 5 mg film-coated tablet 885831000168100 Tadalafil (Blooms The Chemist) 885831000168100 Tadalafil (Blooms The Chemist) 73457011000036100 tadalafil 5 mg tablet, 28 73365011000036108 tadalafil 5 mg tablet 21725011000036104 tadalafil +1088921000168101 Ibupane film-coated tablet, 10, blister pack 267396 1088911000168108 Ibupane film-coated tablet, 10 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813111000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 10 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +969551000168101 Aripiprazole (AN) 30 mg uncoated tablet, 60, blister pack 198208 969541000168103 Aripiprazole (AN) 30 mg uncoated tablet, 60 969471000168106 Aripiprazole (AN) 30 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787851000168100 aripiprazole 30 mg tablet, 60 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +69029011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 8 sachets 140597 66831011000036105 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 8 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71445011000036101 paracetamol 1 g powder for oral liquid, 8 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +857081000168107 Alendronate plus D3 70 mg/140 microgram (Apotex) tablet, 4, blister pack 220369 857071000168109 Alendronate plus D3 70 mg/140 microgram (Apotex) tablet, 4 857061000168103 Alendronate plus D3 70 mg/140 microgram (Apotex) tablet 857041000168102 Alendronate plus D3 70 mg/140 microgram (Apotex) 857041000168102 Alendronate plus D3 70 mg/140 microgram (Apotex) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +933246661000036102 Lisinopril (PS) 10 mg uncoated tablet, 14, blister pack 152713 933243301000036102 Lisinopril (PS) 10 mg uncoated tablet, 14 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 86419011000036106 lisinopril 10 mg tablet, 14 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +19906011000036104 Cosopt eye drops solution, 5 mL, bottle 66103 13151011000036104 Cosopt eye drops solution, 5 mL 6434011000036108 Cosopt eye drops solution 38911000168101 Cosopt 38911000168101 Cosopt 27578011000036108 dorzolamide 2% + timolol 0.5% eye drops, 5 mL 22917011000036108 dorzolamide 2% + timolol 0.5% eye drops 21483011000036104 dorzolamide + timolol +69560011000036104 Clearasil Ultra Acne Treatment cream, 25 g, tube 60739 67360011000036105 Clearasil Ultra Acne Treatment cream, 25 g 65629011000036104 Clearasil Ultra Acne Treatment cream 13981000168108 Clearasil Ultra Acne Treatment 13981000168108 Clearasil Ultra Acne Treatment 71900011000036102 benzoyl peroxide 5% + bentonite 5% cream, 25 g 70240011000036103 benzoyl peroxide 5% + bentonite 5% cream 69839011000036103 benzoyl peroxide + bentonite +815281000168103 Perindo Arg 2.5 mg film-coated tablet, 30, bottle 194891 815271000168101 Perindo Arg 2.5 mg film-coated tablet, 30 815261000168107 Perindo Arg 2.5 mg film-coated tablet 815251000168105 Perindo Arg 815251000168105 Perindo Arg 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +933229501000036107 Miochol-E (1 x 20 mg vial, 1 x 2 mL diluent ampoule), 1 pack, composite pack 118510 933223471000036102 Miochol-E (1 x 20 mg vial, 1 x 2 mL diluent ampoule), 1 pack 634681000168100 Miochol-E (inert substance) diluent, 2 mL ampoule 933218991000036106 Miochol-E 933218991000036106 Miochol-E 933223481000036100 acetylcholine chloride 20 mg powder for intraocular irrigation solution [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 634671000168103 inert substance diluent, 2 mL ampoule 21220011000036103 inert substance +933229501000036107 Miochol-E (1 x 20 mg vial, 1 x 2 mL diluent ampoule), 1 pack, composite pack 118510 933223471000036102 Miochol-E (1 x 20 mg vial, 1 x 2 mL diluent ampoule), 1 pack 933219611000036103 Miochol-E (acetylcholine chloride 20 mg) powder for intraocular irrigation solution, 20 mg vial 933218991000036106 Miochol-E 933218991000036106 Miochol-E 933223481000036100 acetylcholine chloride 20 mg powder for intraocular irrigation solution [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 933219621000036105 acetylcholine chloride 20 mg powder for intraocular irrigation solution, vial 933232131000036103 acetylcholine +796551000168104 Acitretin (iNova) 25 mg hard capsule, 100, blister pack 196004 796541000168101 Acitretin (iNova) 25 mg hard capsule, 100 796491000168105 Acitretin (iNova) 25 mg hard capsule 796431000168106 Acitretin (iNova) 796431000168106 Acitretin (iNova) 27278011000036103 acitretin 25 mg capsule, 100 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +25151000036100 Atorvastatin (GH) 20 mg film-coated tablet, 30, blister pack 180320 22791000036100 Atorvastatin (GH) 20 mg film-coated tablet, 30 20701000036109 Atorvastatin (GH) 20 mg film-coated tablet 19801000036101 Atorvastatin (GH) 19801000036101 Atorvastatin (GH) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +60041011000036101 Avil Retard 75 mg modified release tablet, 50, blister pack 12394 56003011000036102 Avil Retard 75 mg modified release tablet, 50 53753011000036100 Avil Retard 75 mg modified release tablet 5261000168105 Avil Retard 5261000168105 Avil Retard 63191011000036102 pheniramine maleate 75 mg modified release tablet, 50 61881011000036101 pheniramine maleate 75 mg modified release tablet 61798011000036109 pheniramine +1021431000168105 Voriconazole (Apo) 50 mg film-coated tablet, 56, blister pack 238281 1021421000168107 Voriconazole (Apo) 50 mg film-coated tablet, 56 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +928946011000036108 Topiramate (LAPL) 200 mg film-coated tablet, 60, bottle 155201 928307011000036108 Topiramate (LAPL) 200 mg film-coated tablet, 60 927936011000036102 Topiramate (LAPL) 200 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +1093211000168108 Voltaren Emulgel No Mess Applicator 1.16% gel, 10 g, tube 282516 1093201000168105 Voltaren Emulgel No Mess Applicator 1.16% gel, 10 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1093191000168107 diclofenac diethylamine 1.16% gel, 10 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +713061000168101 Javlor 250 mg/10 mL concentrated injection, 10 mL vial 166773 713051000168103 Javlor 250 mg/10 mL concentrated injection, 10 mL vial 713031000168109 Javlor 250 mg/10 mL concentrated injection, 10 mL vial 712911000168107 Javlor 712911000168107 Javlor 713041000168100 vinflunine 250 mg/10 mL injection, 10 mL vial 713021000168106 vinflunine 250 mg/10 mL injection, vial 712931000168102 vinflunine +903091000168100 Brillior 25 mg hard capsule, 60, blister pack 224337 903081000168103 Brillior 25 mg hard capsule, 60 902951000168100 Brillior 25 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +81057011000036101 Iscover 300 mg film-coated tablet, 100, blister pack 151280 80566011000036104 Iscover 300 mg film-coated tablet, 100 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81645011000036104 clopidogrel 300 mg tablet, 100 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +84364011000036107 Xyntha 2000 IU (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161717 84057011000036106 Xyntha 2000 IU (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 83682011000036108 Xyntha 2000 IU (moroctocog alfa 2000 units) powder for injection, 2000 units vial 54911000168106 Xyntha 2000 IU 54911000168106 Xyntha 2000 IU 46164011000036104 moroctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45016011000036102 moroctocog alfa 2000 units injection, vial 44868011000036107 moroctocog alfa +84364011000036107 Xyntha 2000 IU (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 161717 84057011000036106 Xyntha 2000 IU (1 x 2000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 630081000168100 Xyntha (inert substance) diluent, 4 mL syringe 54911000168106 Xyntha 2000 IU 83556011000036108 Xyntha 46164011000036104 moroctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +19965011000036107 Penhexal VK 250 mg hard capsule, 50, blister pack 67579 13208011000036104 Penhexal VK 250 mg hard capsule, 50 6490011000036107 Penhexal VK 250 mg hard capsule 4761000168101 Penhexal VK 4761000168101 Penhexal VK 27620011000036103 phenoxymethylpenicillin 250 mg capsule, 50 22958011000036104 phenoxymethylpenicillin 250 mg capsule 21370011000036105 phenoxymethylpenicillin +1088881000168108 Ibupane film-coated tablet, 6, blister pack 267396 1088871000168105 Ibupane film-coated tablet, 6 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +865601000168108 Amitriptyline (GPPL) 50 mg tablet, 100, blister pack 232138 865591000168101 Amitriptyline (GPPL) 50 mg tablet, 100 865541000168109 Amitriptyline (GPPL) 50 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +933229581000036101 Truebalance diagnostic strip, 50, bottle 933223251000036108 Truebalance diagnostic strip, 50 933219491000036106 Truebalance diagnostic strip 933219331000036102 Truebalance 933219331000036102 Truebalance 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +60342011000036106 Strong Pain with Calmative (Chemmart) uncoated tablet, 20, blister pack 140286 56301011000036104 Strong Pain with Calmative (Chemmart) uncoated tablet, 20 53868011000036102 Strong Pain with Calmative (Chemmart) uncoated tablet 53201011000036101 Strong Pain with Calmative (Chemmart) 53201011000036101 Strong Pain with Calmative (Chemmart) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60342011000036106 Strong Pain with Calmative (Chemmart) uncoated tablet, 20, blister pack 160497 56301011000036104 Strong Pain with Calmative (Chemmart) uncoated tablet, 20 53868011000036102 Strong Pain with Calmative (Chemmart) uncoated tablet 53201011000036101 Strong Pain with Calmative (Chemmart) 53201011000036101 Strong Pain with Calmative (Chemmart) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +931740011000036105 Soov Bite gel, 25 g, tube 51759 930900011000036100 Soov Bite gel, 25 g 930104011000036108 Soov Bite gel 929849011000036108 Soov Bite 929849011000036108 Soov Bite 932480011000036108 lidocaine (lignocaine) hydrochloride 3% + cetrimide 0.5% gel, 25 g 931878011000036109 lidocaine (lignocaine) hydrochloride 3% + cetrimide 0.5% gel 69859011000036104 lidocaine (lignocaine) + cetrimide +674061000168101 Movicol Chocolate powder for oral liquid, 8 sachets 181835 674051000168103 Movicol Chocolate powder for oral liquid, 8 sachets 674001000168102 Movicol Chocolate powder for oral liquid, 1 sachet 22351000168103 Movicol 22351000168103 Movicol 674041000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 8 sachets 673991000168105 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 1 sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +1076091000168108 Aripiprazole (Auro) 15 mg uncoated tablet, 60, blister pack 198187 1076081000168105 Aripiprazole (Auro) 15 mg uncoated tablet, 60 1076011000168104 Aripiprazole (Auro) 15 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 788131000168104 aripiprazole 15 mg tablet, 60 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +998311000168100 Desloratadine (Apo) 5 mg film-coated tablet, 45, blister pack 202823 998301000168103 Desloratadine (Apo) 5 mg film-coated tablet, 45 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 998291000168104 desloratadine 5 mg tablet, 45 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +59828011000036107 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 100, blister pack 114906 55790011000036107 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 100 53626011000036103 Paracetamol (Your Pharmacy) 500 mg uncoated tablet 53318011000036101 Paracetamol (Your Pharmacy) 53318011000036101 Paracetamol (Your Pharmacy) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +692751000168101 Citalopram (Actavis) 20 mg film-coated tablet, 28, blister pack 158881 692741000168103 Citalopram (Actavis) 20 mg film-coated tablet, 28 692731000168107 Citalopram (Actavis) 20 mg film-coated tablet 670891000168107 Citalopram (Actavis) 670891000168107 Citalopram (Actavis) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +18107011000036101 Nizoral 200 mg uncoated tablet, 10, strip pack 13310 12354011000036100 Nizoral 200 mg uncoated tablet, 10 5379011000036100 Nizoral 200 mg uncoated tablet 4145011000036104 Nizoral 4145011000036104 Nizoral 27073011000036101 ketoconazole 200 mg tablet, 10 22443011000036109 ketoconazole 200 mg tablet 21500011000036103 ketoconazole +1041331000168101 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device 122854 1041321000168104 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device 1041301000168108 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device 41101000168107 Aranesp Sureclick 41101000168107 Aranesp Sureclick 1041311000168106 darbepoetin alfa 150 microgram/0.3 mL injection, 0.3 mL injection device 1041291000168107 darbepoetin alfa 150 microgram/0.3 mL injection, injection device 21234011000036105 darbepoetin alfa +50506011000036100 Phlexy-10 500 mg capsule, 200, bottle 49255011000036104 Phlexy-10 500 mg capsule, 200 48476011000036106 Phlexy-10 500 mg capsule 48301011000036102 Phlexy-10 48301011000036102 Phlexy-10 51248011000036109 amino acid formula without phenylalanine 500 mg capsule, 200 50788011000036101 amino acid formula without phenylalanine 500 mg capsule 50722011000036107 amino acid formula without phenylalanine +68909011000036100 Sodium Chloride (AstraZeneca) 0.9% (18 mg/2 mL) injection solution, 5 x 2 mL ampoules 11974 66647011000036105 Sodium Chloride (AstraZeneca) 0.9% (18 mg/2 mL) injection solution, 5 x 2 mL ampoules 65305011000036101 Sodium Chloride (AstraZeneca) 0.9% (18 mg/2 mL) injection solution, 2 mL ampoule 65029011000036106 Sodium Chloride (AstraZeneca) 65029011000036106 Sodium Chloride (AstraZeneca) 71357011000036101 sodium chloride 0.9% (18 mg/2 mL) injection, 5 x 2 mL ampoules 69971011000036105 sodium chloride 0.9% (18 mg/2 mL) injection, ampoule 21308011000036103 sodium chloride +18106011000036104 Pregnyl (3 x 5000 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 14519 12039011000036104 Pregnyl (3 x 5000 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack 632891000168106 Pregnyl (inert substance) diluent, 1 mL ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 26871011000036102 human chorionic gonadotrophin 5000 units injection [3 ampoules] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +18106011000036104 Pregnyl (3 x 5000 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack, composite pack 14519 12039011000036104 Pregnyl (3 x 5000 units ampoules, 3 x 1 mL inert diluent ampoules), 1 pack 5489011000036102 Pregnyl (human chorionic gonadotrophin 5000 units) powder for injection, 5000 units ampoule 3127011000036109 Pregnyl 3127011000036109 Pregnyl 26871011000036102 human chorionic gonadotrophin 5000 units injection [3 ampoules] (&) inert substance diluent [3 x 1 mL ampoules], 1 pack 22250011000036100 human chorionic gonadotrophin 5000 units injection, ampoule 33633011000036101 human chorionic gonadotrophin +33595011000036101 Cefotaxime (Mayne Pharma) 2 g powder for injection, 10 vials 78703 33333011000036107 Cefotaxime (Mayne Pharma) 2 g powder for injection, 10 vials 33094011000036102 Cefotaxime (Mayne Pharma) 2 g powder for injection, 2 g vial 4444011000036102 Cefotaxime (Mayne Pharma) 4444011000036102 Cefotaxime (Mayne Pharma) 33815011000036103 cefotaxime 2 g injection, 10 vials 33683011000036109 cefotaxime 2 g injection, vial 21327011000036105 cefotaxime +669721000168102 Roxithromycin (AN) 150 mg film-coated tablet, 10, blister pack 188354 669711000168109 Roxithromycin (AN) 150 mg film-coated tablet, 10 669701000168106 Roxithromycin (AN) 150 mg film-coated tablet 669691000168106 Roxithromycin (AN) 669691000168106 Roxithromycin (AN) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +34641011000036104 Morphine Sulfate (DBL) 5 mg/mL injection solution, 5 x 1 mL ampoules 121754 34231011000036102 Morphine Sulfate (DBL) 5 mg/mL injection solution, 5 x 1 mL ampoules 33974011000036103 Morphine Sulfate (DBL) 5 mg/mL injection solution, ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 35109011000036102 morphine sulfate pentahydrate 5 mg/mL injection, 5 x 1 mL ampoules 34851011000036106 morphine sulfate pentahydrate 5 mg/mL injection, ampoule 21252011000036100 morphine +60992011000036105 Telfast 180 mg film-coated tablet, 10, blister pack 63338 56935011000036101 Telfast 180 mg film-coated tablet, 10 54129011000036105 Telfast 180 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +862901000168106 Amitriptyline (AC) 10 mg tablet, 250, bottle 232106 862891000168107 Amitriptyline (AC) 10 mg tablet, 250 862831000168108 Amitriptyline (AC) 10 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +43585011000036104 Stilnox CR 12.5 mg modified release tablet, 2, blister pack 120713 41244011000036109 Stilnox CR 12.5 mg modified release tablet, 2 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46186011000036109 zolpidem tartrate 12.5 mg modified release tablet, 2 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +19709011000036100 Felodur ER 2.5 mg modified release tablet, 30, blister pack 60980 12965011000036100 Felodur ER 2.5 mg modified release tablet, 30 6254011000036108 Felodur ER 2.5 mg modified release tablet 12641000168102 Felodur ER 12641000168102 Felodur ER 27474011000036109 felodipine 2.5 mg modified release tablet, 30 22820011000036107 felodipine 2.5 mg modified release tablet 21440011000036100 felodipine +60856011000036109 Analgesic and Calmative (Pharmacist) uncoated tablet, 20, blister pack 58828 56810011000036107 Analgesic and Calmative (Pharmacist) uncoated tablet, 20 54087011000036102 Analgesic and Calmative (Pharmacist) uncoated tablet 53357011000036105 Analgesic and Calmative (Pharmacist) 53357011000036105 Analgesic and Calmative (Pharmacist) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +946431000168106 Frusemide (Winthrop) 20 mg tablet, 50, bottle 144477 946421000168108 Frusemide (Winthrop) 20 mg tablet, 50 946411000168101 Frusemide (Winthrop) 20 mg tablet 941361000168104 Frusemide (Winthrop) 941361000168104 Frusemide (Winthrop) 26834011000036101 furosemide (frusemide) 20 mg tablet, 50 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +84329011000036104 Sinus Relief Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157693 84022011000036105 Sinus Relief Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24 83651011000036107 Sinus Relief Day and Night PE (Day) (Pharmacy Choice) uncoated tablet 33971000168104 Sinus Relief Day and Night PE (Pharmacy Choice) 34091000168100 Sinus Relief Day and Night PE (Day) (Pharmacy Choice) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +84329011000036104 Sinus Relief Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157693 84022011000036105 Sinus Relief Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24 83652011000036101 Sinus Relief Day and Night PE (Night) (Pharmacy Choice) uncoated tablet 33971000168104 Sinus Relief Day and Night PE (Pharmacy Choice) 34211000168103 Sinus Relief Day and Night PE (Night) (Pharmacy Choice) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +43919011000036105 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet, 4, blister pack 136846 41411011000036100 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet, 4 39850011000036103 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet 41041000168105 Fosamax Plus Once Weekly 70 mg/140 microgram 41041000168105 Fosamax Plus Once Weekly 70 mg/140 microgram 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +50232011000036101 Kaltostat Rope (168117) 2 g rope, 5 x 2 g, carton 49519011000036101 Kaltostat Rope (168117) 2 g rope, 5 x 2 g 48672011000036109 Kaltostat Rope (168117) 2 g rope, 2 g 6681000168105 Kaltostat Rope (168117) 6681000168105 Kaltostat Rope (168117) 51466011000036100 dressing alginate cavity wound 2 g rope, 5 x 2 g 50973011000036106 dressing alginate cavity wound 2 g rope, 2 g 50720011000036108 dressing alginate cavity wound +60341011000036100 Fluconazole One (Winthrop) 150 mg hard capsule, 1, blister pack 140138 56300011000036106 Fluconazole One (Winthrop) 150 mg hard capsule, 1 53867011000036103 Fluconazole One (Winthrop) 150 mg hard capsule 33981000168101 Fluconazole One (Winthrop) 33981000168101 Fluconazole One (Winthrop) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +952001000168107 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 6, blister pack 273229 951991000168105 Cefuroxime (Pharmacor) 250 mg film-coated tablet, 6 951951000168100 Cefuroxime (Pharmacor) 250 mg film-coated tablet 951941000168102 Cefuroxime (Pharmacor) 951941000168102 Cefuroxime (Pharmacor) 951981000168107 cefuroxime 250 mg tablet, 6 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +1037951000168102 Intuniv 1 mg modified release tablet, 28, blister pack 275278 1037941000168104 Intuniv 1 mg modified release tablet, 28 1037891000168100 Intuniv 1 mg modified release tablet 1037851000168105 Intuniv 1037851000168105 Intuniv 1037931000168108 guanfacine 1 mg modified release tablet, 28 1037881000168103 guanfacine 1 mg modified release tablet 1037871000168101 guanfacine +926664011000036101 Risperidone (Sandoz) 2 mg film-coated tablet, 60, bottle 126162 926137011000036100 Risperidone (Sandoz) 2 mg film-coated tablet, 60 925595011000036105 Risperidone (Sandoz) 2 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +68754011000036100 Bonjela Mouth Ulcer 8.7% oral gel, 15 g, tube 121203 66660011000036104 Bonjela Mouth Ulcer 8.7% oral gel, 15 g 65540011000036101 Bonjela Mouth Ulcer 8.7% oral gel 40631000168103 Bonjela Mouth Ulcer 40631000168103 Bonjela Mouth Ulcer 71369011000036103 choline salicylate 8.7% oral gel, 15 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +866561000168103 Amitriptyline (RS) 25 mg tablet, 10, blister pack 232142 866551000168100 Amitriptyline (RS) 25 mg tablet, 10 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +789241000168109 Abisart 75 mg film-coated tablet, 90, bottle 214578 789231000168100 Abisart 75 mg film-coated tablet, 90 98741000036103 Abisart 75 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 789221000168103 irbesartan 75 mg tablet, 90 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1003401000168108 Levetiracetam 1000 (GH) 1 g film-coated tablet, 60, blister pack 161296 1003391000168106 Levetiracetam 1000 (GH) 1 g film-coated tablet, 60 1003381000168108 Levetiracetam 1000 (GH) 1 g film-coated tablet 1003371000168105 Levetiracetam 1000 (GH) 1003371000168105 Levetiracetam 1000 (GH) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +902931000168106 Candesartan (Actavis) 32 mg uncoated tablet, 30, blister pack 195493 902921000168108 Candesartan (Actavis) 32 mg uncoated tablet, 30 902911000168101 Candesartan (Actavis) 32 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +1119351000168109 Quetiapine XR (GXP) 400 mg modified release tablet, 60, blister pack 199892 1119341000168107 Quetiapine XR (GXP) 400 mg modified release tablet, 60 1119331000168103 Quetiapine XR (GXP) 400 mg modified release tablet 1119321000168101 Quetiapine XR (GXP) 1119321000168101 Quetiapine XR (GXP) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +919851000168103 Baclofen (Sintetica) 10 mg/5 mL intrathecal injection, 10 x 5 mL ampoules 271174 919841000168100 Baclofen (Sintetica) 10 mg/5 mL intrathecal injection, 10 x 5 mL ampoules 919821000168106 Baclofen (Sintetica) 10 mg/5 mL intrathecal injection, 5 mL ampoule 919811000168104 Baclofen (Sintetica) 919811000168104 Baclofen (Sintetica) 919831000168109 baclofen 10 mg/5 mL intrathecal injection, 10 x 5 mL ampoules 22661011000036102 baclofen 10 mg/5 mL intrathecal injection, ampoule 21227011000036102 baclofen +935111000168101 Centevo 125/31.25/200 mg film-coated tablet, 60, bottle 238856 935101000168104 Centevo 125/31.25/200 mg film-coated tablet, 60 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935091000168109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 60 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +870851000168108 Lamotrigine (GH) 200 mg uncoated tablet, 56, blister pack 275003 870841000168106 Lamotrigine (GH) 200 mg uncoated tablet, 56 870831000168102 Lamotrigine (GH) 200 mg uncoated tablet 870701000168102 Lamotrigine (GH) 870701000168102 Lamotrigine (GH) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +933212501000036107 Ranitidine (GN) 150 mg film-coated tablet, 14, blister pack 148523 933202181000036108 Ranitidine (GN) 150 mg film-coated tablet, 14 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1061471000168103 Atorvator 40 mg film-coated tablet, 28, bottle 179857 1061461000168109 Atorvator 40 mg film-coated tablet, 28 1061451000168107 Atorvator 40 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890251000168102 atorvastatin 40 mg tablet, 28 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1119031000168101 Synvisc-One 8 mg/mL injection, 6 mL syringe 159219 1119021000168104 Synvisc-One 8 mg/mL injection, 6 mL syringe 1119001000168108 Synvisc-One 8 mg/mL injection, 6 mL syringe 1118961000168101 Synvisc-One 1118961000168101 Synvisc-One 1119011000168106 hylan G-F 20 8 mg/mL injection, 6 mL syringe 1118991000168108 hylan G-F 20 8 mg/mL injection, 6 mL syringe 1118981000168105 hylan G-F 20 +923738011000036100 Quitx Classic 4 mg chewing gum, 24, blister pack 143430 923281011000036107 Quitx Classic 4 mg chewing gum, 24 922971011000036107 Quitx Classic 4 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60444011000036106 Panoxyl AQ 5% gel, 40 g, tube 14829 56403011000036108 Panoxyl AQ 5% gel, 40 g 53906011000036107 Panoxyl AQ 5% gel 25641000168104 Panoxyl AQ 25641000168104 Panoxyl AQ 63343011000036100 benzoyl peroxide 5% gel, 40 g 61955011000036100 benzoyl peroxide 5% gel 61709011000036104 benzoyl peroxide +929701011000036104 MS Contin 100 mg modified release tablet, 28, blister pack 43088 929537011000036104 MS Contin 100 mg modified release tablet, 28 4983011000036106 MS Contin 100 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929758011000036101 morphine sulfate pentahydrate 100 mg modified release tablet, 28 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +926659011000036105 Risperidone (Sandoz) 4 mg film-coated tablet, 60, blister pack 126160 926139011000036107 Risperidone (Sandoz) 4 mg film-coated tablet, 60 925593011000036109 Risperidone (Sandoz) 4 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +20008011000036109 Temodal 100 mg hard capsule, 5, bottle 68721 13244011000036102 Temodal 100 mg hard capsule, 5 6526011000036109 Temodal 100 mg hard capsule 3352011000036102 Temodal 3352011000036102 Temodal 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +61404011000036108 Cold and Flu (Pharmacy Health) uncoated tablet, 24, blister pack 82143 57329011000036107 Cold and Flu (Pharmacy Health) uncoated tablet, 24 54276011000036102 Cold and Flu (Pharmacy Health) uncoated tablet 53545011000036101 Cold and Flu (Pharmacy Health) 53545011000036101 Cold and Flu (Pharmacy Health) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +933214651000036103 Levetiracetam (GH) 500 mg film-coated tablet, 60, blister pack 161295 933204011000036105 Levetiracetam (GH) 500 mg film-coated tablet, 60 933196051000036103 Levetiracetam (GH) 500 mg film-coated tablet 933193811000036104 Levetiracetam (GH) 933193811000036104 Levetiracetam (GH) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +990821000168103 Metformin 1000 (Apotex) 1 g film-coated tablet, 90, blister pack 157214 990811000168105 Metformin 1000 (Apotex) 1 g film-coated tablet, 90 990801000168107 Metformin 1000 (Apotex) 1 g film-coated tablet 990791000168106 Metformin 1000 (Apotex) 990791000168106 Metformin 1000 (Apotex) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1106421000168103 Quetiapine (Chemmart) 300 mg film-coated tablet, 100, blister pack 166068 1106411000168105 Quetiapine (Chemmart) 300 mg film-coated tablet, 100 1991000036100 Quetiapine (Chemmart) 300 mg film-coated tablet 421000036105 Quetiapine (Chemmart) 421000036105 Quetiapine (Chemmart) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +60359011000036103 Nurofen Back Pain 200 mg film-coated tablet, 10, blister pack 142080 56318011000036106 Nurofen Back Pain 200 mg film-coated tablet, 10 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +20968011000036104 Eleva 100 mg film-coated tablet, 30, blister pack 95583 14120011000036105 Eleva 100 mg film-coated tablet, 30 7397011000036102 Eleva 100 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +742371000168105 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet, 6, blister pack 220027 742361000168104 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet, 6 742291000168101 Rizatriptan ODT (GH) 10 mg orally disintegrating tablet 742251000168106 Rizatriptan ODT (GH) 742251000168106 Rizatriptan ODT (GH) 742351000168101 rizatriptan 10 mg orally disintegrating tablet, 6 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +1123361000168104 Quetiapine XR (ZP) 300 mg modified release tablet, 30, blister pack 226799 1123351000168101 Quetiapine XR (ZP) 300 mg modified release tablet, 30 1123321000168109 Quetiapine XR (ZP) 300 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 795801000168108 quetiapine 300 mg modified release tablet, 30 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +866601000168103 Amitriptyline (RS) 25 mg tablet, 90, blister pack 232142 866591000168105 Amitriptyline (RS) 25 mg tablet, 90 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +69063011000036105 Enalapril Maleate (Generic Health) 20 mg uncoated tablet, 30, blister pack 142951 66865011000036100 Enalapril Maleate (Generic Health) 20 mg uncoated tablet, 30 65365011000036100 Enalapril Maleate (Generic Health) 20 mg uncoated tablet 65000011000036109 Enalapril Maleate (Generic Health) 65000011000036109 Enalapril Maleate (Generic Health) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +60650011000036102 Vallergan Syrup 7.5 mg/5 mL oral liquid solution, 100 mL, bottle 164306 56608011000036100 Vallergan Syrup 7.5 mg/5 mL oral liquid solution, 100 mL 54003011000036107 Vallergan Syrup 7.5 mg/5 mL oral liquid solution, 5 mL 48351000168103 Vallergan Syrup 48351000168103 Vallergan Syrup 63460011000036107 alimemazine (trimeprazine) tartrate 7.5 mg/5 mL oral liquid, 100 mL 61979011000036100 alimemazine (trimeprazine) tartrate 7.5 mg/5 mL oral liquid 37738011000036105 alimemazine (trimeprazine) +60650011000036102 Vallergan Syrup 7.5 mg/5 mL oral liquid solution, 100 mL, bottle 27569 56608011000036100 Vallergan Syrup 7.5 mg/5 mL oral liquid solution, 100 mL 54003011000036107 Vallergan Syrup 7.5 mg/5 mL oral liquid solution, 5 mL 48351000168103 Vallergan Syrup 48351000168103 Vallergan Syrup 63460011000036107 alimemazine (trimeprazine) tartrate 7.5 mg/5 mL oral liquid, 100 mL 61979011000036100 alimemazine (trimeprazine) tartrate 7.5 mg/5 mL oral liquid 37738011000036105 alimemazine (trimeprazine) +81691000036106 Doxorubicin Hydrochloride (Accord) 10 mg/5 mL concentrated injection, 5 mL vial 174247 80121000036105 Doxorubicin Hydrochloride (Accord) 10 mg/5 mL concentrated injection, 5 mL vial 78531000036105 Doxorubicin Hydrochloride (Accord) 10 mg/5 mL concentrated injection, 5 mL vial 78051000036106 Doxorubicin Hydrochloride (Accord) 78051000036106 Doxorubicin Hydrochloride (Accord) 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +19306011000036108 Methadone Hydrochloride Syrup (Wellcome) 5 mg/mL oral liquid solution, 200 mL, bottle 49372 12596011000036100 Methadone Hydrochloride Syrup (Wellcome) 5 mg/mL oral liquid solution, 200 mL 5602011000036109 Methadone Hydrochloride Syrup (Wellcome) 5 mg/mL oral liquid solution 36441000168109 Methadone Hydrochloride Syrup (Wellcome) 36441000168109 Methadone Hydrochloride Syrup (Wellcome) 27551011000036102 methadone hydrochloride 5 mg/mL oral liquid, 200 mL 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +868771000168100 Simipex XR 750 microgram modified release tablet, 10, blister pack 225573 868761000168106 Simipex XR 750 microgram modified release tablet, 10 868751000168109 Simipex XR 750 microgram modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 87814011000036104 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 10 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +1041971000168102 Atorvastatin (Pfizer) 80 mg film-coated tablet, 90, bottle 182953 1041961000168108 Atorvastatin (Pfizer) 80 mg film-coated tablet, 90 2061000036103 Atorvastatin (Pfizer) 80 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +669641000168103 Duloxetine (AN) 60 mg enteric capsule, 100, bottle 199001 669631000168107 Duloxetine (AN) 60 mg enteric capsule, 100 655121000168108 Duloxetine (AN) 60 mg enteric capsule 655081000168106 Duloxetine (AN) 655081000168106 Duloxetine (AN) 669621000168109 duloxetine 60 mg enteric capsule, 100 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +77287011000036103 Water for Injections (Baxter) injection solution, 12 x 1 L bags 19456 76703011000036101 Water for Injections (Baxter) injection solution, 12 x 1 L bags 76126011000036105 Water for Injections (Baxter) injection solution, 1 L bag 75965011000036108 Water for Injections (Baxter) 75965011000036108 Water for Injections (Baxter) 78217011000036105 water for injections injection, 12 x 1 L bags 77576011000036101 water for injections injection, 1 L bag 77431011000036101 water for injections +933247141000036109 Tevagrastim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 163675 933243521000036102 Tevagrastim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 933241521000036103 Tevagrastim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 933240801000036104 Tevagrastim 933240801000036104 Tevagrastim 929228011000036109 filgrastim 300 microgram/0.5 mL injection, 0.5 mL syringe 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +992991000168107 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 28, blister pack 201680 992981000168109 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 28 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992971000168106 clopidogrel 75 mg + aspirin 75 mg tablet, 28 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +1106101000168102 Zolpibell 10 mg film-coated tablet, 30, blister pack 119087 1106091000168107 Zolpibell 10 mg film-coated tablet, 30 72953011000036101 Zolpibell 10 mg film-coated tablet 72921011000036103 Zolpibell 72921011000036103 Zolpibell 51486011000036103 zolpidem tartrate 10 mg tablet, 30 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +933239101000036102 Fentanyl (Sandoz) 25 microgram/hour patch, 10, sachet 152569 933235731000036105 Fentanyl (Sandoz) 25 microgram/hour patch, 10 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235741000036100 fentanyl 25 microgram/hour patch, 10 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +780561000168101 Fentanyl (Apo) 12 microgram/hour patch, 2, sachet 152577 780551000168103 Fentanyl (Apo) 12 microgram/hour patch, 2 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236061000036107 fentanyl 12 microgram/hour patch, 2 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +675751000168104 Celecoxib (AN) 100 mg hard capsule, 60, blister pack 206832 675741000168101 Celecoxib (AN) 100 mg hard capsule, 60 675731000168105 Celecoxib (AN) 100 mg hard capsule 675721000168107 Celecoxib (AN) 675721000168107 Celecoxib (AN) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +883511000168107 Betahistine (ZP) 16 mg tablet, 100, blister pack 231721 883501000168109 Betahistine (ZP) 16 mg tablet, 100 883451000168107 Betahistine (ZP) 16 mg tablet 883371000168105 Betahistine (ZP) 883371000168105 Betahistine (ZP) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +34726011000036103 Methadone Hydrochloride Syrup (Orion) 4 mg/mL oral liquid solution, 20 mL, bottle 21181 34310011000036107 Methadone Hydrochloride Syrup (Orion) 4 mg/mL oral liquid solution, 20 mL 34033011000036109 Methadone Hydrochloride Syrup (Orion) 4 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35159011000036106 methadone hydrochloride 4 mg/mL oral liquid, 20 mL 34881011000036101 methadone hydrochloride 4 mg/mL oral liquid 21357011000036109 methadone +920776011000036102 Moclobemide (Sandoz) 150 mg film-coated tablet, 60, blister pack 76934 920455011000036102 Moclobemide (Sandoz) 150 mg film-coated tablet, 60 920192011000036103 Moclobemide (Sandoz) 150 mg film-coated tablet 920097011000036106 Moclobemide (Sandoz) 920097011000036106 Moclobemide (Sandoz) 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +20454011000036100 Xigris 20 mg powder for injection, 1 vial 78117 13657011000036108 Xigris 20 mg powder for injection, 1 vial 6940011000036101 Xigris 20 mg powder for injection, 20 mg vial 4315011000036101 Xigris 4315011000036101 Xigris 27865011000036105 drotrecogin alfa (activated) 20 mg injection, 1 vial 23193011000036108 drotrecogin alfa (activated) 20 mg injection, vial 21346011000036109 drotrecogin alfa (activated) +853631000168107 Alzil 10 mg film-coated tablet, 28, blister pack 175049 853621000168109 Alzil 10 mg film-coated tablet, 28 853611000168102 Alzil 10 mg film-coated tablet 853571000168106 Alzil 853571000168106 Alzil 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +929101011000036107 Pioglitazone (Chemmart) 45 mg uncoated tablet, 7, blister pack 166916 928462011000036103 Pioglitazone (Chemmart) 45 mg uncoated tablet, 7 927989011000036102 Pioglitazone (Chemmart) 45 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +1089201000168109 Lorstat 80 mg film-coated tablet, 10, bottle 181408 1089191000168106 Lorstat 80 mg film-coated tablet, 10 20761000036108 Lorstat 80 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +52700011000036108 Strong Pain Relief (Pharmacy Health) capsule shaped uncoated tablet, 100, bottle 100403 52514011000036102 Strong Pain Relief (Pharmacy Health) capsule shaped uncoated tablet, 100 52404011000036106 Strong Pain Relief (Pharmacy Health) capsule shaped uncoated tablet 52395011000036100 Strong Pain Relief (Pharmacy Health) 52395011000036100 Strong Pain Relief (Pharmacy Health) 52903011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 100 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +82393011000036104 Rozex 0.75% gel, 30 g, tube 15211 82182011000036100 Rozex 0.75% gel, 30 g 4727011000036103 Rozex 0.75% gel 3009011000036102 Rozex 3009011000036102 Rozex 82556011000036101 metronidazole 0.75% gel, 30 g 22277011000036102 metronidazole 0.75% gel 21482011000036106 metronidazole +61327011000036104 Paracetamol (Herron) 500 mg uncoated tablet, 16, blister pack 80924 57259011000036100 Paracetamol (Herron) 500 mg uncoated tablet, 16 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63793011000036107 paracetamol 500 mg tablet, 16 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61455011000036102 Bifonazole Antifungal (Pharmacist) 1% cream, 100 g, tube 90625 57380011000036106 Bifonazole Antifungal (Pharmacist) 1% cream, 100 g 54289011000036100 Bifonazole Antifungal (Pharmacist) 1% cream 51841000168104 Bifonazole Antifungal (Pharmacist) 51841000168104 Bifonazole Antifungal (Pharmacist) 63838011000036108 bifonazole 1% cream, 100 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +802211000168101 Nuvigil 250 mg uncoated tablet, 30, blister pack 226558 802161000168109 Nuvigil 250 mg uncoated tablet, 30 802141000168105 Nuvigil 250 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802151000168107 armodafinil 250 mg tablet, 30 802131000168101 armodafinil 250 mg tablet 802061000168105 armodafinil +44321011000036106 Relenza Rotadisk 5 mg powder for inhalation, 60 unit doses, blister pack 66962 41788011000036104 Relenza Rotadisk 5 mg powder for inhalation, 60 unit doses 40200011000036104 Relenza Rotadisk 5 mg powder for inhalation, 5 mg unit dose 19421000168101 Relenza Rotadisk 19421000168101 Relenza Rotadisk 46594011000036106 zanamivir 5 mg powder for inhalation, 60 unit doses 45232011000036103 zanamivir 5 mg powder for inhalation, unit dose 44894011000036103 zanamivir +86008011000036105 Lisinopril (DRLA) 5 mg uncoated tablet, 28, blister pack 152720 85649011000036103 Lisinopril (DRLA) 5 mg uncoated tablet, 28 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 46262011000036105 lisinopril 5 mg tablet, 28 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +66661000036105 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 20 mL vials 91370 64611000036101 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 20 mL vials 60661000036108 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 20 mL vial 8561000168103 Iomeron-350 8561000168103 Iomeron-350 64621000036108 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 10 x 20 mL vials 60671000036100 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 20 mL vial 931793011000036105 iomeprol +43747011000036104 Stilnox CR 6.25 mg modified release tablet, 7, blister pack 120707 41240011000036104 Stilnox CR 6.25 mg modified release tablet, 7 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46182011000036105 zolpidem tartrate 6.25 mg modified release tablet, 7 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +18997011000036101 Aratac 200 mg uncoated tablet, 30, blister pack 32514 12304011000036107 Aratac 200 mg uncoated tablet, 30 4870011000036100 Aratac 200 mg uncoated tablet 3733011000036106 Aratac 3733011000036106 Aratac 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +60050011000036105 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 500 mL, bottle 124416 56012011000036107 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 500 mL 53756011000036106 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 5 mL 22401000168105 Paracetamol 5 to 12 Years (Priceline) 22401000168105 Paracetamol 5 to 12 Years (Priceline) 63815011000036105 paracetamol 240 mg/5 mL oral liquid, 500 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +18706011000036106 Oratane 40 mg soft capsule, 30, blister pack 117206 11565011000036109 Oratane 40 mg soft capsule, 30 5004011000036107 Oratane 40 mg soft capsule 3045011000036106 Oratane 3045011000036106 Oratane 26690011000036108 isotretinoin 40 mg capsule, 30 22086011000036103 isotretinoin 40 mg capsule 21546011000036107 isotretinoin +1050631000168103 Bupannus 30 microgram/hour patch, 2, sachet 234727 1050621000168101 Bupannus 30 microgram/hour patch, 2 1050611000168108 Bupannus 30 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 772921000168109 buprenorphine 30 microgram/hour patch, 2 772901000168100 buprenorphine 30 microgram/hour patch 21232011000036101 buprenorphine +60187011000036108 Diarrhoea Relief (Pharmacy Choice) 2 mg tablet, 10, blister pack 132049 56146011000036105 Diarrhoea Relief (Pharmacy Choice) 2 mg tablet, 10 53807011000036102 Diarrhoea Relief (Pharmacy Choice) 2 mg tablet 53552011000036106 Diarrhoea Relief (Pharmacy Choice) 53552011000036106 Diarrhoea Relief (Pharmacy Choice) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +793621000168102 Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial 77220 793611000168109 Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial 793591000168104 Etopophos 1.136 g (etoposide 1 g) powder for injection, 1.136 g vial 4332011000036101 Etopophos 4332011000036101 Etopophos 793601000168106 etoposide phosphate 1.136 g (etoposide 1 g) injection, 1 vial 793581000168102 etoposide phosphate 1.136 g (etoposide 1 g) injection, vial 21469011000036104 etoposide +977821000168108 Pregabalin (Teva) 200 mg hard capsule, 60, blister pack 229596 977811000168101 Pregabalin (Teva) 200 mg hard capsule, 60 977741000168108 Pregabalin (Teva) 200 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +69071011000036104 Mylanta 2go Antacid Dual Action chewable tablet, 50, blister pack 14378 66873011000036108 Mylanta 2go Antacid Dual Action chewable tablet, 50 65467011000036104 Mylanta 2go Antacid Dual Action chewable tablet 64987011000036109 Mylanta 2go Antacid Dual Action 64987011000036109 Mylanta 2go Antacid Dual Action 71478011000036106 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet, 50 70025011000036103 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet 69870011000036107 alginic acid + magaldrate + bicarbonate +81871000036108 Famciclovir (Generic Health) 250 mg film-coated tablet, 21, blister pack 177012 80161000036101 Famciclovir (Generic Health) 250 mg film-coated tablet, 21 78221000036106 Famciclovir (Generic Health) 250 mg film-coated tablet 77971000036104 Famciclovir (Generic Health) 77971000036104 Famciclovir (Generic Health) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +933215291000036108 Orfadin 2 mg hard capsule, 60, bottle 164163 933204731000036103 Orfadin 2 mg hard capsule, 60 933195691000036109 Orfadin 2 mg hard capsule 933193831000036108 Orfadin 933193831000036108 Orfadin 933204741000036108 nitisinone 2 mg capsule, 60 933195701000036109 nitisinone 2 mg capsule 933216371000036107 nitisinone +669401000168102 Rabeprazole Sodium (AN) 10 mg enteric tablet, 90, bottle 189233 669391000168104 Rabeprazole Sodium (AN) 10 mg enteric tablet, 90 656111000168106 Rabeprazole Sodium (AN) 10 mg enteric tablet 656061000168105 Rabeprazole Sodium (AN) 656061000168105 Rabeprazole Sodium (AN) 84691000036109 rabeprazole sodium 10 mg enteric tablet, 90 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1003521000168100 Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60, blister pack 161284 1003511000168107 Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60 1003501000168109 Levetiracetam 1000 (Lupin) 1 g film-coated tablet 1003491000168102 Levetiracetam 1000 (Lupin) 1003491000168102 Levetiracetam 1000 (Lupin) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +866441000168103 Amitriptyline (GPPL) 50 mg tablet, 50, bottle 232139 865571000168102 Amitriptyline (GPPL) 50 mg tablet, 50 865541000168109 Amitriptyline (GPPL) 50 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +917841000168106 Zinnat 125 mg film-coated tablet, 2, blister pack 47620 917831000168102 Zinnat 125 mg film-coated tablet, 2 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917821000168100 cefuroxime 125 mg tablet, 2 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +37416011000036109 Betaloc 5 mg/5 mL injection solution, 5 x 5 mL ampoules 12063 36704011000036105 Betaloc 5 mg/5 mL injection solution, 5 x 5 mL ampoules 36191011000036101 Betaloc 5 mg/5 mL injection solution, 5 mL ampoule 3906011000036103 Betaloc 3906011000036103 Betaloc 38617011000036102 metoprolol tartrate 5 mg/5 mL injection, 5 x 5 mL ampoules 37881011000036105 metoprolol tartrate 5 mg/5 mL injection, ampoule 21662011000036107 metoprolol +933229901000036101 Cholvastin 40 mg uncoated tablet, 30, blister pack 140042 933223701000036101 Cholvastin 40 mg uncoated tablet, 30 933219771000036104 Cholvastin 40 mg uncoated tablet 933219281000036108 Cholvastin 933219281000036108 Cholvastin 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +868571000168105 Atomerra 18 mg hard capsule, 28, blister pack 234793 868561000168104 Atomerra 18 mg hard capsule, 28 868511000168102 Atomerra 18 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +802171000168103 Nuvigil 250 mg uncoated tablet, 30, bottle 226560 802161000168109 Nuvigil 250 mg uncoated tablet, 30 802141000168105 Nuvigil 250 mg uncoated tablet 802051000168108 Nuvigil 802051000168108 Nuvigil 802151000168107 armodafinil 250 mg tablet, 30 802131000168101 armodafinil 250 mg tablet 802061000168105 armodafinil +1072021000168107 Dry Raspy Cough Linctus (Soul Pattinson) oral liquid, 100 mL, bottle 24185 1072011000168100 Dry Raspy Cough Linctus (Soul Pattinson) oral liquid, 100 mL 1071991000168100 Dry Raspy Cough Linctus (Soul Pattinson) oral liquid, 5 mL 1071921000168102 Dry Raspy Cough Linctus (Soul Pattinson) 1071921000168102 Dry Raspy Cough Linctus (Soul Pattinson) 1072001000168103 codeine phosphate hemihydrate 5.75 mg/5 mL + ethylmorphine hydrochloride 4.5 mg/5 mL oral liquid, 100 mL 1071981000168103 codeine phosphate hemihydrate 5.75 mg/5 mL + ethylmorphine hydrochloride 4.5 mg/5 mL oral liquid 1071971000168101 codeine + ethylmorphine +18912011000036102 Proctosedyl moulded suppository, 12, strip pack 22614 12220011000036100 Proctosedyl moulded suppository, 12 5849011000036103 Proctosedyl moulded suppository 3886011000036106 Proctosedyl 3886011000036106 Proctosedyl 26991011000036100 hydrocortisone 5 mg + cinchocaine hydrochloride 5 mg suppository, 12 22364011000036107 hydrocortisone 5 mg + cinchocaine hydrochloride 5 mg suppository 21414011000036104 hydrocortisone + cinchocaine +37545011000036102 Azactam 1 g powder for injection, 1 vial 14032 36813011000036108 Azactam 1 g powder for injection, 1 vial 36171011000036108 Azactam 1 g powder for injection, vial 35948011000036103 Azactam 35948011000036103 Azactam 38706011000036109 aztreonam 1 g injection, 1 vial 37940011000036104 aztreonam 1 g injection, vial 37753011000036101 aztreonam +20479011000036101 Piroxicam (GenRx) 20 mg dispersible tablet, 25, blister pack 78364 13679011000036103 Piroxicam (GenRx) 20 mg dispersible tablet, 25 6962011000036105 Piroxicam (GenRx) 20 mg dispersible tablet 3472011000036107 Piroxicam (GenRx) 3472011000036107 Piroxicam (GenRx) 27882011000036100 piroxicam 20 mg dispersible tablet, 25 23210011000036102 piroxicam 20 mg dispersible tablet 21531011000036103 piroxicam +737981000168107 Candesartan HCT 32/12.5 (Auro) uncoated tablet, 30, blister pack 199100 737971000168109 Candesartan HCT 32/12.5 (Auro) uncoated tablet, 30 737961000168103 Candesartan HCT 32/12.5 (Auro) uncoated tablet 737951000168100 Candesartan HCT 32/12.5 (Auro) 737951000168100 Candesartan HCT 32/12.5 (Auro) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +37339011000036103 Fluorouracil (Pfizer (Perth)) 250 mg/10 mL injection solution, 10 mL vial 11367 36668011000036106 Fluorouracil (Pfizer (Perth)) 250 mg/10 mL injection solution, 10 mL vial 36187011000036108 Fluorouracil (Pfizer (Perth)) 250 mg/10 mL injection solution, 10 mL vial 35860011000036101 Fluorouracil (Pfizer (Perth)) 35860011000036101 Fluorouracil (Pfizer (Perth)) 38582011000036107 fluorouracil 250 mg/10 mL injection, 10 mL vial 37855011000036103 fluorouracil 250 mg/10 mL injection, vial 21481011000036100 fluorouracil +17952011000036100 Propine 0.1% eye drops, 10 mL, bottle 13399 11981011000036103 Propine 0.1% eye drops, 10 mL 4654011000036101 Propine 0.1% eye drops 3596011000036106 Propine 3596011000036106 Propine 26828011000036105 dipivefrine hydrochloride 0.1% eye drops, 10 mL 22210011000036106 dipivefrine hydrochloride 0.1% eye drops 21585011000036106 dipivefrine +1119111000168105 Quetiapine (Actavis) 150 mg film-coated tablet, 10, blister pack 179901 1119101000168107 Quetiapine (Actavis) 150 mg film-coated tablet, 10 1119091000168102 Quetiapine (Actavis) 150 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 1112621000168104 quetiapine 150 mg tablet, 10 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +69148011000036102 Strepsils lemon sugar free lozenge, 3, blister pack 153118 66948011000036107 Strepsils lemon sugar free lozenge, 3 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71523011000036106 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 3 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +130801000036107 Candesartan Cilexetil (Apo) 16 mg uncoated tablet, 30, bottle 191769 128041000036100 Candesartan Cilexetil (Apo) 16 mg uncoated tablet, 30 124511000036102 Candesartan Cilexetil (Apo) 16 mg uncoated tablet 123671000036107 Candesartan Cilexetil (Apo) 123671000036107 Candesartan Cilexetil (Apo) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +77304011000036102 X-Opaque-HD 976.5 mg/g powder for oral liquid, 20 kg, jar 29912 76720011000036100 X-Opaque-HD 976.5 mg/g powder for oral liquid, 20 kg 76139011000036104 X-Opaque-HD 976.5 mg/g powder for oral liquid 75951011000036104 X-Opaque-HD 75951011000036104 X-Opaque-HD 78234011000036109 barium sulfate 976.5 mg/g powder for oral liquid, 20 kg 77561011000036101 barium sulfate 976.5 mg/g powder for oral liquid 77454011000036104 barium +785131000168108 Temgesic 200 microgram sublingual tablet, 50, bottle 150453 34314011000036102 Temgesic 200 microgram sublingual tablet, 50 34037011000036100 Temgesic 200 microgram sublingual tablet 33926011000036105 Temgesic 33926011000036105 Temgesic 35163011000036104 buprenorphine 200 microgram sublingual tablet, 50 34885011000036104 buprenorphine 200 microgram sublingual tablet 21232011000036101 buprenorphine +933229821000036100 Roxithromycin (Sandoz) 300 mg film-coated tablet, 5, blister pack 101028 933223381000036106 Roxithromycin (Sandoz) 300 mg film-coated tablet, 5 933219451000036102 Roxithromycin (Sandoz) 300 mg film-coated tablet 933219041000036109 Roxithromycin (Sandoz) 933219041000036109 Roxithromycin (Sandoz) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +69397011000036102 Nutraplus 10% cream, 500 g, jar 42233 67197011000036103 Nutraplus 10% cream, 500 g 5047011000036109 Nutraplus 10% cream 3844011000036106 Nutraplus 3844011000036106 Nutraplus 71756011000036100 urea 10% cream, 500 g 22378011000036108 urea 10% cream 21561011000036106 urea +969311000168107 Aripiprazole (AN) 10 mg uncoated tablet, 28, blister pack 198203 969301000168109 Aripiprazole (AN) 10 mg uncoated tablet, 28 969291000168108 Aripiprazole (AN) 10 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787351000168109 aripiprazole 10 mg tablet, 28 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +945751000168102 Glimepiride (Sanofi) 1 mg uncoated tablet, 30, blister pack 142390 945741000168104 Glimepiride (Sanofi) 1 mg uncoated tablet, 30 945711000168103 Glimepiride (Sanofi) 1 mg uncoated tablet 945701000168101 Glimepiride (Sanofi) 945701000168101 Glimepiride (Sanofi) 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +656621000168105 Famciclovir (AN) 500 mg film-coated tablet, 56, blister pack 195174 656611000168103 Famciclovir (AN) 500 mg film-coated tablet, 56 656531000168109 Famciclovir (AN) 500 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +727151000168104 Zeldox 40 mg hard capsule, 20, blister pack 65527 727141000168101 Zeldox 40 mg hard capsule, 20 6415011000036104 Zeldox 40 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 727131000168105 ziprasidone 40 mg capsule, 20 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +933246981000036100 Pantoprazole (PS) 40 mg enteric tablet, 50, blister pack 158197 933243811000036107 Pantoprazole (PS) 40 mg enteric tablet, 50 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46660011000036108 pantoprazole 40 mg enteric tablet, 50 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +742141000168101 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 1000, blister pack 232797 742131000168105 Amitriptyline (Alphapharm) 25 mg film-coated tablet, 1000 742031000168109 Amitriptyline (Alphapharm) 25 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +994861000168101 Stelara 130 mg/26 mL injection solution, 26 mL vial 282906 994851000168103 Stelara 130 mg/26 mL injection solution, 26 mL vial 994831000168109 Stelara 130 mg/26 mL injection solution, 26 mL vial 82656011000036107 Stelara 82656011000036107 Stelara 994841000168100 ustekinumab 130 mg/26 mL injection, 26 mL vial 994821000168106 ustekinumab 130 mg/26 mL injection, vial 82917011000036103 ustekinumab +1059141000168105 Atomoxetine (Medis) 18 mg hard capsule, 28, blister pack 238329 1059131000168101 Atomoxetine (Medis) 18 mg hard capsule, 28 1059081000168101 Atomoxetine (Medis) 18 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +61010011000036106 Nurofen Cold and Flu with Decongestant film-coated tablet, 24, blister pack 65640 56953011000036103 Nurofen Cold and Flu with Decongestant film-coated tablet, 24 54138011000036104 Nurofen Cold and Flu with Decongestant film-coated tablet 49471000168108 Nurofen Cold and Flu with Decongestant 49471000168108 Nurofen Cold and Flu with Decongestant 52899011000036101 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +1003561000168105 Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60, blister pack 161287 1003551000168108 Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60 1003541000168106 Levetiracetam 1000 (MPPL) 1 g film-coated tablet 1003531000168102 Levetiracetam 1000 (MPPL) 1003531000168102 Levetiracetam 1000 (MPPL) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +20796011000036109 Eagle Karbons hard capsule, 500, bottle 91325 13962011000036102 Eagle Karbons hard capsule, 500 7248011000036104 Eagle Karbons hard capsule 4038011000036102 Eagle Karbons 4038011000036102 Eagle Karbons 28042011000036100 activated charcoal 300 mg + peppermint oil 5 mg capsule, 500 23363011000036103 activated charcoal 300 mg + peppermint oil 5 mg capsule 32625011000036109 activated charcoal + peppermint oil +17875011000036102 Sertraline (Pharmacor) 100 mg film-coated tablet, 30, blister pack 130618 11901011000036102 Sertraline (Pharmacor) 100 mg film-coated tablet, 30 5520011000036108 Sertraline (Pharmacor) 100 mg film-coated tablet 3795011000036103 Sertraline (Pharmacor) 3795011000036103 Sertraline (Pharmacor) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +82376011000036102 Coplavix 75 mg/100 mg film-coated tablet, 7, blister pack 150443 82165011000036105 Coplavix 75 mg/100 mg film-coated tablet, 7 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82553011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 7 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +808511000168101 Perindopril Arginine (Apo) 10 mg film-coated tablet, 30, bottle 184812 808131000168103 Perindopril Arginine (Apo) 10 mg film-coated tablet, 30 808101000168105 Perindopril Arginine (Apo) 10 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +66501000036107 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 100 mL, bottle 58284 64101000036105 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 100 mL 61371000036100 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 120 mg/5 mL oral liquid solution, 5 mL 59761000168105 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 59761000168105 Paracetamol Children's Elixir 1 to 5 Years (Amcal) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +19220011000036107 Fluanxol Depot 40 mg/2 mL injection solution, 5 x 2 mL ampoules 47247 12510011000036102 Fluanxol Depot 40 mg/2 mL injection solution, 5 x 2 mL ampoules 4995011000036106 Fluanxol Depot 40 mg/2 mL injection solution, 2 mL ampoule 38591000168101 Fluanxol Depot 38591000168101 Fluanxol Depot 27162011000036106 flupentixol decanoate 40 mg/2 mL injection, 5 x 2 mL ampoules 22524011000036103 flupentixol decanoate 40 mg/2 mL injection, ampoule 21335011000036103 flupentixol decanoate +44047011000036100 Buscopan 10 mg sugar coated tablet, 100, tube 48255 41537011000036109 Buscopan 10 mg sugar coated tablet, 100 40047011000036103 Buscopan 10 mg sugar coated tablet 2401000168103 Buscopan 2401000168103 Buscopan 46372011000036109 hyoscine butylbromide 10 mg tablet, 100 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +995021000168103 Cepacol 0.05% mouthwash, 500 mL, bottle 10098 995011000168105 Cepacol 0.05% mouthwash, 500 mL 994961000168108 Cepacol 0.05% mouthwash 32331000168107 Cepacol 32331000168107 Cepacol 995001000168107 cetylpyridinium chloride 0.05% mouthwash, 500 mL 994951000168106 cetylpyridinium chloride 0.05% mouthwash 69862011000036104 cetylpyridinium +68994011000036103 Nicotinell Liquorice 4 mg chewing gum, 192, blister pack 136135 66796011000036108 Nicotinell Liquorice 4 mg chewing gum, 192 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71518011000036107 nicotine 4 mg gum, 192 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +817051000168108 Idaprex Arg 2.5 mg film-coated tablet, 30, bottle 194888 817041000168106 Idaprex Arg 2.5 mg film-coated tablet, 30 817031000168102 Idaprex Arg 2.5 mg film-coated tablet 817021000168100 Idaprex Arg 817021000168100 Idaprex Arg 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +1012221000168109 Irbesartan (Apotex) 75 mg film-coated tablet, 5, blister pack 169798 1012211000168102 Irbesartan (Apotex) 75 mg film-coated tablet, 5 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777171000168109 irbesartan 75 mg tablet, 5 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1076411000168106 Aripiprazole (Auro) 10 mg uncoated tablet, 56, blister pack 198205 1076401000168108 Aripiprazole (Auro) 10 mg uncoated tablet, 56 1076351000168101 Aripiprazole (Auro) 10 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787401000168102 aripiprazole 10 mg tablet, 56 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +729281000168106 Silver Nitrate Applicator (Grafco) stick, 100, tube 33738 729271000168108 Silver Nitrate Applicator (Grafco) stick, 100 729261000168102 Silver Nitrate Applicator (Grafco) stick 729251000168104 Silver Nitrate Applicator (Grafco) 729251000168104 Silver Nitrate Applicator (Grafco) 722901000168104 silver nitrate 75% + potassium nitrate 25% stick, 100 722881000168101 silver nitrate 75% + potassium nitrate 25% stick 722871000168104 silver nitrate + potassium nitrate +933215211000036103 Tronz 4 mg film-coated tablet, 4, blister pack 163436 933204161000036108 Tronz 4 mg film-coated tablet, 4 933196321000036106 Tronz 4 mg film-coated tablet 933193581000036105 Tronz 933193581000036105 Tronz 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +44527011000036100 Midazolam (Sandoz) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 78971 41980011000036107 Midazolam (Sandoz) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 40300011000036106 Midazolam (Sandoz) 5 mg/5 mL injection solution, 5 mL ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +789741000168102 Oxycontin 60 mg modified release tablet, 28, blister pack 200032 789731000168106 Oxycontin 60 mg modified release tablet, 28 789681000168102 Oxycontin 60 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789721000168108 oxycodone hydrochloride 60 mg modified release tablet, 28 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +808471000168105 Perindopril Arginine (Apo) 10 mg film-coated tablet, 10, bottle 184812 808111000168108 Perindopril Arginine (Apo) 10 mg film-coated tablet, 10 808101000168105 Perindopril Arginine (Apo) 10 mg film-coated tablet 807921000168104 Perindopril Arginine (Apo) 807921000168104 Perindopril Arginine (Apo) 727331000168107 perindopril arginine 10 mg tablet, 10 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +810611000168104 Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack, composite pack 166991 810601000168102 Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack 69651000036103 Risedronate EC (Winthrop) 35 mg enteric tablet 69371000036104 Risedronate EC Combi D (Winthrop) 69381000036102 Risedronate EC (Winthrop) 810331000168100 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +810611000168104 Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack, composite pack 166991 810601000168102 Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack 810571000168108 Risedronate EC Combi D (Winthrop) effervescent granules, 1 sachet 69371000036104 Risedronate EC Combi D (Winthrop) 69371000036104 Risedronate EC Combi D (Winthrop) 810331000168100 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +883441000168105 Betahistine (ZP) 8 mg tablet, 100, blister pack 231716 883431000168101 Betahistine (ZP) 8 mg tablet, 100 883381000168108 Betahistine (ZP) 8 mg tablet 883371000168105 Betahistine (ZP) 883371000168105 Betahistine (ZP) 883151000168104 betahistine dihydrochloride 8 mg tablet, 100 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +933214891000036108 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 30, bottle 163566 933204481000036106 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 30 933195541000036102 Pravastatin Sodium (RZ) 40 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +703261000168106 Vecure 10 mg powder for injection, 10 vials 165350 703251000168109 Vecure 10 mg powder for injection, 10 vials 703241000168107 Vecure 10 mg powder for injection, 10 mg vial 703231000168103 Vecure 703231000168103 Vecure 38745011000036109 vecuronium bromide 10 mg injection, 10 vials 37971011000036107 vecuronium bromide 10 mg injection, vial 37741011000036100 vecuronium +79686011000036109 Nicabate Mini 4 mg lozenge, 60, tube 156604 79506011000036101 Nicabate Mini 4 mg lozenge, 60 79388011000036103 Nicabate Mini 4 mg lozenge 31811000168102 Nicabate Mini 31811000168102 Nicabate Mini 79824011000036102 nicotine 4 mg lozenge, 60 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +34829011000036109 Actiq 1200 microgram lozenge on handle, 3, blister pack 91603 34404011000036108 Actiq 1200 microgram lozenge on handle, 3 34079011000036109 Actiq 1200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 35243011000036107 fentanyl 1200 microgram lozenge on handle, 3 34914011000036108 fentanyl 1200 microgram lozenge on handle 21258011000036102 fentanyl +969081000168104 Pregabalin (DRLA) 300 mg hard capsule, 60, blister pack 263074 969071000168102 Pregabalin (DRLA) 300 mg hard capsule, 60 969001000168107 Pregabalin (DRLA) 300 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +20488011000036104 Diclofenac Sodium (Terry White Chemists) 50 mg enteric tablet, 50, bottle 78526 13688011000036101 Diclofenac Sodium (Terry White Chemists) 50 mg enteric tablet, 50 6971011000036109 Diclofenac Sodium (Terry White Chemists) 50 mg enteric tablet 3969011000036108 Diclofenac Sodium (Terry White Chemists) 3969011000036108 Diclofenac Sodium (Terry White Chemists) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +933247301000036108 Risperidone (Pfizer) 2 mg film-coated tablet, 60, blister pack 166680 933244031000036105 Risperidone (Pfizer) 2 mg film-coated tablet, 60 933241631000036100 Risperidone (Pfizer) 2 mg film-coated tablet 933240791000036103 Risperidone (Pfizer) 933240791000036103 Risperidone (Pfizer) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +862541000168101 Cimzia 200 mg/mL injection solution, 6 x 1 mL injection devices 281317 862531000168105 Cimzia 200 mg/mL injection solution, 6 x 1 mL injection devices 862481000168107 Cimzia 200 mg/mL injection solution, injection device 87279011000036100 Cimzia 87279011000036100 Cimzia 862521000168107 certolizumab pegol 200 mg/mL injection, 6 x 1 mL injection devices 862471000168109 certolizumab pegol 200 mg/mL injection, injection device 87751011000036108 certolizumab pegol +1059051000168108 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 90, bottle 235364 1059041000168106 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 90 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 928531000168108 rosuvastatin 5 mg tablet, 90 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +61164011000036105 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL, bottle 74682 57107011000036104 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL 54199011000036104 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +931705011000036108 Aspirin EC (Terry White Chemists) 100 mg enteric tablet, 28, blister pack 172169 930865011000036101 Aspirin EC (Terry White Chemists) 100 mg enteric tablet, 28 930080011000036108 Aspirin EC (Terry White Chemists) 100 mg enteric tablet 24781000168103 Aspirin EC (Terry White Chemists) 24781000168103 Aspirin EC (Terry White Chemists) 922543011000036103 aspirin 100 mg enteric tablet, 28 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +69371011000036103 Betadine Antiseptic 5% spray, 75 mL, pump actuated aerosol 30103 67171011000036104 Betadine Antiseptic 5% spray, 75 mL 65464011000036105 Betadine Antiseptic 5% spray 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71733011000036107 povidone-iodine 5% spray, 75 mL 70158011000036102 povidone-iodine 5% spray 21660011000036108 povidone-iodine +928711000168109 Uremide 40 mg uncoated tablet, 60, bottle 17704 928701000168106 Uremide 40 mg uncoated tablet, 60 5862011000036100 Uremide 40 mg uncoated tablet 3144011000036100 Uremide 3144011000036100 Uremide 928691000168106 furosemide (frusemide) 40 mg tablet, 60 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +59853011000036101 Paracetamol Extra (Guardian) uncoated tablet, 100, blister pack 115172 55815011000036101 Paracetamol Extra (Guardian) uncoated tablet, 100 53633011000036106 Paracetamol Extra (Guardian) uncoated tablet 53508011000036102 Paracetamol Extra (Guardian) 53508011000036102 Paracetamol Extra (Guardian) 52903011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 100 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +763801000168105 Fenofibrate (RBX) 145 mg film-coated tablet, 30, bottle 233498 763711000168100 Fenofibrate (RBX) 145 mg film-coated tablet, 30 763701000168103 Fenofibrate (RBX) 145 mg film-coated tablet 763691000168103 Fenofibrate (RBX) 763691000168103 Fenofibrate (RBX) 26700011000036101 fenofibrate 145 mg tablet, 30 22095011000036109 fenofibrate 145 mg tablet 21417011000036105 fenofibrate +884081000168107 Bosentan (Accord) 125 mg film-coated tablet, 14, blister pack 235892 884071000168109 Bosentan (Accord) 125 mg film-coated tablet, 14 884051000168100 Bosentan (Accord) 125 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884061000168103 bosentan 125 mg tablet, 14 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +692511000168108 Desfax 100 mg modified release tablet, 14, blister pack 218061 692501000168105 Desfax 100 mg modified release tablet, 14 692471000168104 Desfax 100 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +859591000168109 Zovirax Dispersible 200 mg tablet, 25, blister pack 51385 859191000168103 Zovirax Dispersible 200 mg tablet, 25 859181000168101 Zovirax Dispersible 200 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +47311000036105 Peg-Intron Redipen Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92007 46891000036105 Peg-Intron Redipen Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 7295011000036100 Peg-Intron Redipen Injector (peginterferon alfa-2b 100 microgram) powder for injection, 100 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46901000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23390011000036109 peginterferon alfa-2b 100 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +47311000036105 Peg-Intron Redipen Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92007 46891000036105 Peg-Intron Redipen Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46901000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +19854011000036105 Staphylex 500 mg hard capsule, 24, bottle 64495 13101011000036105 Staphylex 500 mg hard capsule, 24 6385011000036107 Staphylex 500 mg hard capsule 4347011000036100 Staphylex 4347011000036100 Staphylex 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +926854011000036103 Microshield-5 5% solution, 5 L, bottle 30954 926250011000036102 Microshield-5 5% solution, 5 L 925700011000036104 Microshield-5 5% solution 29851000168104 Microshield-5 29851000168104 Microshield-5 71681011000036107 chlorhexidine gluconate 5% solution, 5 L 70121011000036105 chlorhexidine gluconate 5% solution 21404011000036101 chlorhexidine +923847011000036104 Levetiracetam (SZ) 500 mg film-coated tablet, 60, blister pack 159269 923393011000036102 Levetiracetam (SZ) 500 mg film-coated tablet, 60 923057011000036103 Levetiracetam (SZ) 500 mg film-coated tablet 922938011000036101 Levetiracetam (SZ) 922938011000036101 Levetiracetam (SZ) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +658671000168107 Telmisartan (Pharmacor) 80 mg uncoated tablet, 28, blister pack 211909 658661000168101 Telmisartan (Pharmacor) 80 mg uncoated tablet, 28 658651000168103 Telmisartan (Pharmacor) 80 mg uncoated tablet 658611000168104 Telmisartan (Pharmacor) 658611000168104 Telmisartan (Pharmacor) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +767411000168101 Desvenlafaxine MR (Apo) 100 mg modified release tablet, 28, blister pack 227802 767401000168104 Desvenlafaxine MR (Apo) 100 mg modified release tablet, 28 767311000168105 Desvenlafaxine MR (Apo) 100 mg modified release tablet 765791000168105 Desvenlafaxine MR (Apo) 765791000168105 Desvenlafaxine MR (Apo) 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +877591000168102 Albunate-20 10 g/50 mL intravenous infusion injection, 50 mL vial 223741 877581000168100 Albunate-20 10 g/50 mL intravenous infusion injection, 50 mL vial 877561000168109 Albunate-20 10 g/50 mL intravenous infusion injection, 50 mL vial 877511000168106 Albunate-20 877511000168106 Albunate-20 877571000168103 albumin human 10 g/50 mL injection, 50 mL vial 877551000168107 albumin human 10 g/50 mL injection, vial 69754011000036102 albumin human +925207011000036108 Pravaccord 10 mg uncoated tablet, 30, blister pack 156365 924744011000036106 Pravaccord 10 mg uncoated tablet, 30 924451011000036101 Pravaccord 10 mg uncoated tablet 924396011000036106 Pravaccord 924396011000036106 Pravaccord 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +19974011000036102 Pepzan 20 mg film-coated tablet, 60, blister pack 67943 13217011000036102 Pepzan 20 mg film-coated tablet, 60 6499011000036101 Pepzan 20 mg film-coated tablet 3422011000036106 Pepzan 3422011000036106 Pepzan 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +853791000168100 Alphastat 20 mg film-coated tablet, 7, bottle 187393 853751000168105 Alphastat 20 mg film-coated tablet, 7 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +853791000168100 Alphastat 20 mg film-coated tablet, 7, bottle 212162 853751000168105 Alphastat 20 mg film-coated tablet, 7 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +1110931000168107 Midazolam (WP) 15 mg/3 mL injection solution, 3 mL ampoule 207237 1110921000168109 Midazolam (WP) 15 mg/3 mL injection solution, 3 mL ampoule 1110911000168102 Midazolam (WP) 15 mg/3 mL injection solution, 3 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 663931000168100 midazolam 15 mg/3 mL injection, 3 mL ampoule 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +44064011000036101 Dalacin V 2% cream, 7.5 g, tube 48431 41551011000036102 Dalacin V 2% cream, 7.5 g 40057011000036101 Dalacin V 2% cream 41641000168103 Dalacin V 41641000168103 Dalacin V 46383011000036107 clindamycin 2% cream, 7.5 g 45119011000036104 clindamycin 2% cream 21255011000036108 clindamycin +934511000168109 Centevo 175/43.75/200 mg film-coated tablet, 250, bottle 238858 934501000168106 Centevo 175/43.75/200 mg film-coated tablet, 250 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934491000168104 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 250 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +859571000168108 Zovirax Dispersible 400 mg tablet, 100, blister pack 51428 859561000168102 Zovirax Dispersible 400 mg tablet, 100 859531000168105 Zovirax Dispersible 400 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +793301000168101 Ondansetron ODT (GH) 8 mg orally disintegrating tablet, 6, blister pack 231603 793291000168102 Ondansetron ODT (GH) 8 mg orally disintegrating tablet, 6 793261000168109 Ondansetron ODT (GH) 8 mg orally disintegrating tablet 793251000168107 Ondansetron ODT (GH) 793251000168107 Ondansetron ODT (GH) 720011000168103 ondansetron 8 mg orally disintegrating tablet, 6 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +879741000168107 Neocate Junior powder for oral liquid, 400 g, can 879731000168103 Neocate Junior powder for oral liquid, 400 g 879721000168101 Neocate Junior powder for oral liquid 879711000168108 Neocate Junior 879711000168108 Neocate Junior 724811000168102 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides powder for oral liquid, 400 g 724791000168101 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides powder for oral liquid 724781000168104 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides +19460011000036100 EES 200 mg/5 mL powder for oral liquid, 100 mL, bottle 54457 12737011000036109 EES 200 mg/5 mL powder for oral liquid, 100 mL 6032011000036106 EES 200 mg/5 mL powder for oral liquid, 5 mL 4086011000036105 EES 4086011000036105 EES 27324011000036102 erythromycin (as ethylsuccinate) 200 mg/5 mL powder for oral liquid, 100 mL 22677011000036104 erythromycin (as ethylsuccinate) 200 mg/5 mL powder for oral liquid 21523011000036104 erythromycin ethylsuccinate +19460011000036100 EES 200 mg/5 mL powder for oral liquid, 100 mL, bottle 173634 12737011000036109 EES 200 mg/5 mL powder for oral liquid, 100 mL 6032011000036106 EES 200 mg/5 mL powder for oral liquid, 5 mL 4086011000036105 EES 4086011000036105 EES 27324011000036102 erythromycin (as ethylsuccinate) 200 mg/5 mL powder for oral liquid, 100 mL 22677011000036104 erythromycin (as ethylsuccinate) 200 mg/5 mL powder for oral liquid 21523011000036104 erythromycin ethylsuccinate +902771000168107 Brillior 50 mg hard capsule, 60, blister pack 224339 902761000168101 Brillior 50 mg hard capsule, 60 902671000168103 Brillior 50 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +50361011000036108 Telfa Retention (8252F) 5 cm x 2.3 m bandage, 1, carton 49512011000036106 Telfa Retention (8252F) 5 cm x 2.3 m bandage, 1 48582011000036106 Telfa Retention (8252F) 5 cm x 2.3 m bandage 27511000168106 Telfa Retention (8252F) 27511000168106 Telfa Retention (8252F) 51462011000036104 bandage retention cotton crepe 5 cm x 2.3 m bandage, 1 50969011000036101 bandage retention cotton crepe 5 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +918071000168106 Lisinopril (Apo) 10 mg tablet, 30, bottle 144028 928251011000036101 Lisinopril (Apo) 10 mg tablet, 30 927904011000036102 Lisinopril (Apo) 10 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +868891000168109 Simipex XR 1.5 mg modified release tablet, 30, blister pack 225603 868881000168106 Simipex XR 1.5 mg modified release tablet, 30 868851000168104 Simipex XR 1.5 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 87816011000036107 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet, 30 87760011000036108 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet 37716011000036100 pramipexole +44030011000036100 Cytarabine (DBL) 1 g/10 mL injection solution, 10 mL vial 47284 41519011000036109 Cytarabine (DBL) 1 g/10 mL injection solution, 10 mL vial 40033011000036106 Cytarabine (DBL) 1 g/10 mL injection solution, 10 mL vial 35924011000036107 Cytarabine (DBL) 35924011000036107 Cytarabine (DBL) 38581011000036101 cytarabine 1 g/10 mL injection, 10 mL vial 37854011000036102 cytarabine 1 g/10 mL injection, vial 21916011000036109 cytarabine +69354011000036103 Betadine Sore Throat Gargle - Concentrated 7.5% mouthwash, 15 mL, bottle 29566 67154011000036104 Betadine Sore Throat Gargle - Concentrated 7.5% mouthwash, 15 mL 65249011000036103 Betadine Sore Throat Gargle - Concentrated 7.5% mouthwash 6181000168101 Betadine Sore Throat Gargle - Concentrated 6181000168101 Betadine Sore Throat Gargle - Concentrated 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +130881000036101 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet, 30, bottle 193114 128121000036107 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet, 30 124581000036105 Candesartan Cilexetil HCTZ 32/25 (Apo) uncoated tablet 43931000168101 Candesartan Cilexetil HCTZ 32/25 (Apo) 43931000168101 Candesartan Cilexetil HCTZ 32/25 (Apo) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +20642011000036109 Risperdal Consta (1 x 25 mg vial, 1 x 2 mL diluent syringe), 1 pack, composite pack 81489 13822011000036103 Risperdal Consta (1 x 25 mg vial, 1 x 2 mL diluent syringe), 1 pack 637531000168107 Risperdal Consta (inert substance) diluent, 2 mL syringe 37741000168104 Risperdal Consta 37741000168104 Risperdal Consta 27949011000036106 risperidone 25 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +20642011000036109 Risperdal Consta (1 x 25 mg vial, 1 x 2 mL diluent syringe), 1 pack, composite pack 81489 13822011000036103 Risperdal Consta (1 x 25 mg vial, 1 x 2 mL diluent syringe), 1 pack 7108011000036107 Risperdal Consta (risperidone 25 mg) modified release injection, 25 mg vial 37741000168104 Risperdal Consta 37741000168104 Risperdal Consta 27949011000036106 risperidone 25 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 23273011000036102 risperidone 25 mg modified release injection, vial 21338011000036109 risperidone +857561000168107 Invega Trinza 263 mg/1.315 mL modified release injection, 1.315 mL syringe 261406 857551000168105 Invega Trinza 263 mg/1.315 mL modified release injection, 1.315 mL syringe 857541000168108 Invega Trinza 263 mg/1.315 mL modified release injection, 1.315 mL syringe 857421000168101 Invega Trinza 857421000168101 Invega Trinza 857301000168102 paliperidone 263 mg/1.315 mL modified release injection, 1.315 mL syringe 857281000168101 paliperidone 263 mg/1.315 mL modified release injection, syringe 34837011000036104 paliperidone +926701000168105 Kemadrin 5 mg uncoated tablet, 100, bottle 11104 926691000168105 Kemadrin 5 mg uncoated tablet, 100 926671000168109 Kemadrin 5 mg uncoated tablet 926501000168100 Kemadrin 926501000168100 Kemadrin 926681000168107 procyclidine hydrochloride 5 mg tablet, 100 926661000168103 procyclidine hydrochloride 5 mg tablet 926651000168100 procyclidine +60847011000036105 Aspro Clear 300 mg effervescent tablet, 96, strip pack 58566 56803011000036101 Aspro Clear 300 mg effervescent tablet, 96 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 27442011000036104 aspirin 300 mg effervescent tablet, 96 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +870971000168109 Clopidogrel (AN) 75 mg film-coated tablet, 30, bottle 187037 870961000168103 Clopidogrel (AN) 75 mg film-coated tablet, 30 660371000168109 Clopidogrel (AN) 75 mg film-coated tablet 660361000168103 Clopidogrel (AN) 660361000168103 Clopidogrel (AN) 87801011000036104 clopidogrel 75 mg tablet, 30 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +921819011000036106 Enalapril Maleate (Sandoz) 10 mg uncoated tablet, 30, blister pack 121814 921388011000036103 Enalapril Maleate (Sandoz) 10 mg uncoated tablet, 30 920972011000036105 Enalapril Maleate (Sandoz) 10 mg uncoated tablet 920933011000036100 Enalapril Maleate (Sandoz) 920933011000036100 Enalapril Maleate (Sandoz) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +44544011000036109 Zyvox 600 mg film-coated tablet, 10, blister pack 79694 41997011000036109 Zyvox 600 mg film-coated tablet, 10 40310011000036109 Zyvox 600 mg film-coated tablet 39746011000036100 Zyvox 39746011000036100 Zyvox 46772011000036108 linezolid 600 mg tablet, 10 45309011000036108 linezolid 600 mg tablet 44888011000036109 linezolid +20265011000036106 Femtran 25 microgram/24 hours patch, 4, sachet 75104 13475011000036103 Femtran 25 microgram/24 hours patch, 4 6758011000036108 Femtran 25 microgram/24 hours patch 3994011000036109 Femtran 3994011000036109 Femtran 27764011000036108 estradiol 25 microgram/24 hours patch, 4 23640011000036109 estradiol 25 microgram/24 hours patch 21238011000036103 estradiol +1108191000168107 Midavel 5 mg/5 mL injection solution, 5 mL ampoule 207246 1108181000168109 Midavel 5 mg/5 mL injection solution, 5 mL ampoule 1108171000168106 Midavel 5 mg/5 mL injection solution, 5 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 664171000168103 midazolam 5 mg/5 mL injection, 5 mL ampoule 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +772461000168108 Combantrin 50 mg/mL oral liquid suspension, 60 mL, bottle 10747 772451000168106 Combantrin 50 mg/mL oral liquid suspension, 60 mL 772281000168103 Combantrin 50 mg/mL oral liquid suspension 53233011000036109 Combantrin 53233011000036109 Combantrin 772441000168109 pyrantel 50 mg/mL oral liquid, 60 mL 772271000168101 pyrantel 50 mg/mL oral liquid 21475011000036105 pyrantel +885451000168108 Tadalafil PHT (Blooms The Chemist) 20 mg film-coated tablet, 14, blister pack 205856 885441000168106 Tadalafil PHT (Blooms The Chemist) 20 mg film-coated tablet, 14 885421000168100 Tadalafil PHT (Blooms The Chemist) 20 mg film-coated tablet 885411000168107 Tadalafil PHT (Blooms The Chemist) 885411000168107 Tadalafil PHT (Blooms The Chemist) 885431000168102 tadalafil 20 mg tablet, 14 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +61421011000036100 Paracetamol (Herron) 500 mg uncoated tablet, 12, bottle 82690 57346011000036101 Paracetamol (Herron) 500 mg uncoated tablet, 12 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +862421000168108 Worm Treatment (Apohealth) 100 mg chewable tablet, 2, blister pack 229073 862411000168101 Worm Treatment (Apohealth) 100 mg chewable tablet, 2 862401000168104 Worm Treatment (Apohealth) 100 mg chewable tablet 862391000168101 Worm Treatment (Apohealth) 862391000168101 Worm Treatment (Apohealth) 75961000036100 mebendazole 100 mg chewable tablet, 2 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +1119431000168109 Quetiapine XR (GXP) 50 mg modified release tablet, 60, blister pack 199882 1119421000168106 Quetiapine XR (GXP) 50 mg modified release tablet, 60 1119411000168104 Quetiapine XR (GXP) 50 mg modified release tablet 1119321000168101 Quetiapine XR (GXP) 1119321000168101 Quetiapine XR (GXP) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +34812011000036109 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 60 mL, bottle 78982 34387011000036106 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 60 mL 34066011000036105 Cefalexin (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 33944011000036104 Cefalexin (Sandoz) 33944011000036104 Cefalexin (Sandoz) 35231011000036105 cefalexin 250 mg/5 mL powder for oral liquid, 60 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +793901000168102 Arnuity Ellipta 200 microgram/actuation powder for inhalation, 30 actuations, blister pack 231103 793891000168101 Arnuity Ellipta 200 microgram/actuation powder for inhalation, 30 actuations 793841000168109 Arnuity Ellipta 200 microgram/actuation powder for inhalation, actuation 793811000168105 Arnuity Ellipta 793811000168105 Arnuity Ellipta 793881000168104 fluticasone furoate 200 microgram/actuation powder for inhalation, 30 actuations 793831000168100 fluticasone furoate 200 microgram/actuation powder for inhalation, actuation 860171000168103 fluticasone furoate +59819011000036109 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 24, blister pack 114890 55781011000036104 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 24 53670011000036100 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet 53381011000036107 Ibuprofen (Your Pharmacy) 53381011000036107 Ibuprofen (Your Pharmacy) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +52220011000036109 Febridol Plus uncoated tablet, 24, blister pack 154874 52105011000036106 Febridol Plus uncoated tablet, 24 51998011000036101 Febridol Plus uncoated tablet 44291000168106 Febridol Plus 44291000168106 Febridol Plus 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +77351000036108 Astromide 250 mg hard capsule, 5, sachet 197468 933223801000036108 Astromide 250 mg hard capsule, 5 933219921000036100 Astromide 250 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +50558011000036108 Aclasta 5 mg/100 mL intravenous infusion injection, 6 x 100 mL vials 134664 49592011000036105 Aclasta 5 mg/100 mL intravenous infusion injection, 6 x 100 mL vials 48785011000036102 Aclasta 5 mg/100 mL intravenous infusion injection, 100 mL vial 48342011000036104 Aclasta 48342011000036104 Aclasta 51497011000036104 zoledronic acid 5 mg/100 mL injection, 6 x 100 mL vials 50987011000036105 zoledronic acid 5 mg/100 mL injection, vial 21790011000036102 zoledronic acid +130561000036108 Pariet 10 mg enteric tablet, 14, blister pack 170438 127501000036106 Pariet 10 mg enteric tablet, 14 125441000036104 Pariet 10 mg enteric tablet 3351011000036108 Pariet 3351011000036108 Pariet 127511000036108 rabeprazole sodium 10 mg enteric tablet, 14 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1041811000168104 Atorvastatin (AS) 20 mg film-coated tablet, 10, blister pack 178540 1041801000168102 Atorvastatin (AS) 20 mg film-coated tablet, 10 1041791000168103 Atorvastatin (AS) 20 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +968991000168107 Pregabalin (DRLA) 25 mg hard capsule, 60, blister pack 263089 968981000168109 Pregabalin (DRLA) 25 mg hard capsule, 60 968911000168103 Pregabalin (DRLA) 25 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +883281000168104 Betahistavert 16 mg uncoated tablet, 10, blister pack 227606 883271000168102 Betahistavert 16 mg uncoated tablet, 10 883261000168108 Betahistavert 16 mg uncoated tablet 883251000168106 Betahistavert 883251000168106 Betahistavert 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +791251000168106 Trexject 15 mg/0.3 mL injection solution, 12 x 0.3 mL syringes 233717 791241000168109 Trexject 15 mg/0.3 mL injection solution, 12 x 0.3 mL syringes 791131000168105 Trexject 15 mg/0.3 mL injection solution, 0.3 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791231000168100 methotrexate 15 mg/0.3 mL injection, 12 x 0.3 mL syringes 791121000168107 methotrexate 15 mg/0.3 mL injection, syringe 21342011000036105 methotrexate +1110291000168100 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 50, blister pack 219061 1110281000168103 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 50 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82551011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 50 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +925190011000036107 Pantoprazole (Pharmacor) 20 mg enteric tablet, 30, blister pack 155112 924727011000036102 Pantoprazole (Pharmacor) 20 mg enteric tablet, 30 924437011000036108 Pantoprazole (Pharmacor) 20 mg enteric tablet 924376011000036103 Pantoprazole (Pharmacor) 924376011000036103 Pantoprazole (Pharmacor) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +858061000168104 Emexlon 10 mg film-coated tablet, 10, blister pack 229659 858051000168101 Emexlon 10 mg film-coated tablet, 10 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 671801000168108 metoclopramide hydrochloride 10 mg tablet, 10 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +862381000168104 Ibuprofen Double Strength (Trust) 400 mg film-coated tablet, 24, blister pack 205746 862371000168102 Ibuprofen Double Strength (Trust) 400 mg film-coated tablet, 24 862341000168109 Ibuprofen Double Strength (Trust) 400 mg film-coated tablet 862331000168100 Ibuprofen Double Strength (Trust) 862331000168100 Ibuprofen Double Strength (Trust) 932369011000036108 ibuprofen 400 mg tablet, 24 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +20471011000036100 Trizivir film-coated tablet, 60, bottle 78348 13672011000036108 Trizivir film-coated tablet, 60 6955011000036108 Trizivir film-coated tablet 4276011000036108 Trizivir 4276011000036108 Trizivir 27875011000036101 abacavir 300 mg + lamivudine 150 mg + zidovudine 300 mg tablet, 60 23203011000036108 abacavir 300 mg + lamivudine 150 mg + zidovudine 300 mg tablet 21556011000036109 abacavir + lamivudine + zidovudine +34735011000036107 MS Contin 60 mg modified release tablet, 60, blister pack 43087 34319011000036101 MS Contin 60 mg modified release tablet, 60 5761011000036108 MS Contin 60 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35167011000036108 morphine sulfate pentahydrate 60 mg modified release tablet, 60 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +716191000168102 Omeprazole (Sandoz) 20 mg enteric capsule, 30, bottle 82474 716181000168100 Omeprazole (Sandoz) 20 mg enteric capsule, 30 716161000168109 Omeprazole (Sandoz) 20 mg enteric capsule 72916011000036100 Omeprazole (Sandoz) 72916011000036100 Omeprazole (Sandoz) 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +59896011000036101 Nurofen Plus film-coated tablet, 72, blister pack 116620 55858011000036102 Nurofen Plus film-coated tablet, 72 53658011000036100 Nurofen Plus film-coated tablet 28771000168109 Nurofen Plus 28771000168109 Nurofen Plus 63148011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 72 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +694761000168106 Sildaccord PHT 20 mg film-coated tablet, 90, blister pack 188717 694751000168109 Sildaccord PHT 20 mg film-coated tablet, 90 694741000168107 Sildaccord PHT 20 mg film-coated tablet 694731000168103 Sildaccord PHT 694731000168103 Sildaccord PHT 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +920171000168104 Citalopram (APL) 10 mg film-coated tablet, 28, blister pack 184685 920161000168105 Citalopram (APL) 10 mg film-coated tablet, 28 920151000168108 Citalopram (APL) 10 mg film-coated tablet 920141000168106 Citalopram (APL) 920141000168106 Citalopram (APL) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1061151000168104 Ramipril (Auro) 10 mg hard capsule, 30, bottle 203723 1061141000168101 Ramipril (Auro) 10 mg hard capsule, 30 1061131000168105 Ramipril (Auro) 10 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +776131000168108 Stelara 90 mg/mL injection solution, 1 mL vial 149550 776121000168105 Stelara 90 mg/mL injection solution, 1 mL vial 776101000168101 Stelara 90 mg/mL injection solution, vial 82656011000036107 Stelara 82656011000036107 Stelara 776111000168103 ustekinumab 90 mg/mL injection, 1 mL vial 776091000168106 ustekinumab 90 mg/mL injection, vial 82917011000036103 ustekinumab +933230141000036109 Ferro-Liquid 30 mg/mL (iron 6 mg/mL) oral liquid solution, 250 mL, bottle 154466 933223961000036100 Ferro-Liquid 30 mg/mL (iron 6 mg/mL) oral liquid solution, 250 mL 933219861000036102 Ferro-Liquid 30 mg/mL (iron 6 mg/mL) oral liquid solution 933218881000036101 Ferro-Liquid 933218881000036101 Ferro-Liquid 933223971000036108 ferrous sulfate heptahydrate 30 mg/mL (iron 6 mg/mL) oral liquid, 250 mL 933219871000036105 ferrous sulfate heptahydrate 30 mg/mL (iron 6 mg/mL) oral liquid 61721011000036108 ferrous sulfate +17918011000036107 Maxolon 10 mg uncoated tablet, 25, blister pack 11153 11429011000036109 Maxolon 10 mg uncoated tablet, 25 5187011000036108 Maxolon 10 mg uncoated tablet 3971011000036104 Maxolon 3971011000036104 Maxolon 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +810531000168105 Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack, composite pack 138211 810521000168107 Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 35975011000036105 Actonel Combi D 700024831000036105 Actonel Once-a-Week 810511000168100 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +810531000168105 Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack, composite pack 138211 810521000168107 Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack 810371000168102 Actonel Combi D effervescent granules, 1 sachet 35975011000036105 Actonel Combi D 35975011000036105 Actonel Combi D 810511000168100 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 733951000168109 calcium + colecalciferol +50695011000036102 Apidra 100 units/mL injection solution, 1 x 10 mL vial 99145 49719011000036100 Apidra 100 units/mL injection solution, 1 x 10 mL vial 48845011000036105 Apidra 100 units/mL injection solution, 10 mL vial 8371000168103 Apidra 8371000168103 Apidra 51575011000036109 insulin glulisine 100 units/mL injection, 1 x 10 mL vial 51008011000036109 insulin glulisine 100 units/mL injection, vial 21731011000036104 insulin glulisine +931763011000036108 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution, 125 mL, bottle 79362 930923011000036101 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution, 125 mL 930122011000036106 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution 929898011000036107 Avagard Antiseptic Hand and Body Wash with Triclosan 929898011000036107 Avagard Antiseptic Hand and Body Wash with Triclosan 71940011000036108 triclosan 1% solution, 125 mL 70255011000036105 triclosan 1% solution 69817011000036103 triclosan +43953011000036102 Lipiodol Ultra-Fluid 10 mL (iodine 4.8 g)/10 mL injection solution, 10 mL ampoule 34371 41445011000036107 Lipiodol Ultra-Fluid 10 mL (iodine 4.8 g)/10 mL injection solution, 10 mL ampoule 39977011000036106 Lipiodol Ultra-Fluid 10 mL (iodine 4.8 g)/10 mL injection solution, 10 mL ampoule 39771011000036106 Lipiodol Ultra-Fluid 39771011000036106 Lipiodol Ultra-Fluid 46296011000036107 iodised oil 10 mL (iodine 4.8 g)/10 mL injection, 10 mL ampoule 45061011000036106 iodised oil 10 mL (iodine 4.8 g)/10 mL injection, ampoule 44967011000036100 iodised oil +954571000168100 Nimbex 20 mg/10 mL injection solution, 5 x 10 mL ampoules 55932 954561000168106 Nimbex 20 mg/10 mL injection solution, 5 x 10 mL ampoules 954551000168109 Nimbex 20 mg/10 mL injection solution, 10 mL ampoule 39720011000036100 Nimbex 39720011000036100 Nimbex 909161000168108 cisatracurium 20 mg/10 mL injection, 5 x 10 mL ampoules 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +801851000168105 Actonate EC Once-a-Week 35 mg enteric tablet, 2, blister pack 166840 801841000168108 Actonate EC Once-a-Week 35 mg enteric tablet, 2 801801000168106 Actonate EC Once-a-Week 35 mg enteric tablet 801791000168105 Actonate EC Once-a-Week 801791000168105 Actonate EC Once-a-Week 801831000168104 risedronate sodium 35 mg enteric tablet, 2 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +858201000168105 Emexlon 10 mg film-coated tablet, 125, blister pack 229659 858191000168107 Emexlon 10 mg film-coated tablet, 125 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 671991000168109 metoclopramide hydrochloride 10 mg tablet, 125 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +858221000168101 Emexlon 10 mg film-coated tablet, 150, blister pack 229659 858211000168108 Emexlon 10 mg film-coated tablet, 150 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 672021000168102 metoclopramide hydrochloride 10 mg tablet, 150 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +20445011000036104 Aranesp 80 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 77957 13648011000036107 Aranesp 80 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 6931011000036107 Aranesp 80 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27858011000036105 darbepoetin alfa 80 microgram/0.4 mL injection, 4 x 0.4 mL syringes 23186011000036103 darbepoetin alfa 80 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +19700011000036106 Diltahexal 60 mg film-coated tablet, 90, blister pack 60838 13026011000036100 Diltahexal 60 mg film-coated tablet, 90 6313011000036109 Diltahexal 60 mg film-coated tablet 3176011000036107 Diltahexal 3176011000036107 Diltahexal 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +931521011000036100 Ilaris 150 mg powder for injection, 1 vial 159573 930682011000036104 Ilaris 150 mg powder for injection, 1 vial 930008011000036109 Ilaris (canakinumab 150 mg) powder for injection, 150 mg vial 929824011000036109 Ilaris 929824011000036109 Ilaris 932398011000036102 canakinumab 150 mg injection, 1 vial 931847011000036109 canakinumab 150 mg injection, vial 931784011000036108 canakinumab +933214331000036101 Seralin 100 mg film-coated tablet, 10, blister pack 160778 933203571000036108 Seralin 100 mg film-coated tablet, 10 933195851000036101 Seralin 100 mg film-coated tablet 933193541000036101 Seralin 933193541000036101 Seralin 929238011000036107 sertraline 100 mg tablet, 10 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +50370011000036105 Solosite (36361338) gel, 50 g, tube 49456011000036107 Solosite (36361338) gel, 50 g 48464011000036109 Solosite (36361338) gel 10961000168108 Solosite (36361338) 10961000168108 Solosite (36361338) 51419011000036105 dressing hydrogel amorphous gel, 50 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +165811000036106 Trajentamet 2.5 mg/1000 mg film-coated tablet, 60, blister pack 195107 163941000036103 Trajentamet 2.5 mg/1000 mg film-coated tablet, 60 162481000036106 Trajentamet 2.5 mg/1000 mg film-coated tablet 46941000168102 Trajentamet 2.5 mg/1000 mg 46941000168102 Trajentamet 2.5 mg/1000 mg 163951000036100 linagliptin 2.5 mg + metformin hydrochloride 1 g tablet, 60 162501000036101 linagliptin 2.5 mg + metformin hydrochloride 1 g tablet 166311000036107 linagliptin + metformin +1109971000168101 Nicotinell Tropical Fruit 4 mg chewing gum, 120, blister pack 279618 1109961000168107 Nicotinell Tropical Fruit 4 mg chewing gum, 120 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71514011000036100 nicotine 4 mg gum, 120 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +667901000168101 Cilopam-S 10 mg film-coated tablet, 14, blister pack 191884 667891000168100 Cilopam-S 10 mg film-coated tablet, 14 667871000168101 Cilopam-S 10 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 667881000168103 escitalopram 10 mg tablet, 14 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +843511000168101 Utrogestan 200 mg shell pessary, 30, blister pack 232824 843501000168104 Utrogestan 200 mg shell pessary, 30 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 834661000168101 progesterone 200 mg pessary, 30 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +1015991000168105 Xifaxan 550 mg film-coated tablet, 30, blister pack 183411 1015981000168107 Xifaxan 550 mg film-coated tablet, 30 93521000036107 Xifaxan 550 mg film-coated tablet 93311000036109 Xifaxan 93311000036109 Xifaxan 1015971000168109 rifaximin 550 mg tablet, 30 93531000036109 rifaximin 550 mg tablet 95821000036105 rifaximin +933089011000036101 Escitalopram (Generic Health) 20 mg film-coated tablet, 100, bottle 165879 932892011000036102 Escitalopram (Generic Health) 20 mg film-coated tablet, 100 932750011000036108 Escitalopram (Generic Health) 20 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +998791000168108 Perindopril Arginine (Apotex) 5 mg film-coated tablet, 30, blister pack 184816 998781000168105 Perindopril Arginine (Apotex) 5 mg film-coated tablet, 30 998751000168103 Perindopril Arginine (Apotex) 5 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +921889011000036108 Exforge HCT 5/160/12.5 film-coated tablet, 30, blister pack 157954 921448011000036104 Exforge HCT 5/160/12.5 film-coated tablet, 30 921015011000036108 Exforge HCT 5/160/12.5 film-coated tablet 14521000168101 Exforge HCT 5/160/12.5 14521000168101 Exforge HCT 5/160/12.5 922576011000036108 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 30 922093011000036109 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +69198011000036109 Ringer-Lactate (Baxter) irrigation solution, 3 L bag 19442 66998011000036100 Ringer-Lactate (Baxter) irrigation solution, 3 L bag 65526011000036100 Ringer-Lactate (Baxter) irrigation solution, 3 L bag 64946011000036103 Ringer-Lactate (Baxter) 64946011000036103 Ringer-Lactate (Baxter) 71568011000036108 sodium lactate 9.66 g/3 L + sodium chloride 18 g/3 L + potassium chloride 1.2 g/3 L + calcium chloride dihydrate 810 mg/3 L solution, 3 L bag 70069011000036105 sodium lactate 9.66 g/3 L + sodium chloride 18 g/3 L + potassium chloride 1.2 g/3 L + calcium chloride dihydrate 810 mg/3 L solution, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +1057771000168105 Atorvastatin (Ran) 80 mg film-coated tablet, 30, bottle 179850 1057591000168104 Atorvastatin (Ran) 80 mg film-coated tablet, 30 1057581000168102 Atorvastatin (Ran) 80 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +19443011000036102 Alodorm 5 mg uncoated tablet, 25, blister pack 54010 12724011000036100 Alodorm 5 mg uncoated tablet, 25 5420011000036103 Alodorm 5 mg uncoated tablet 4413011000036106 Alodorm 4413011000036106 Alodorm 27314011000036105 nitrazepam 5 mg tablet, 25 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +1082341000168106 Ibuprofen plus Paracetamol (Terry White Chemists) film-coated tablet, 12, blister pack 280178 1082331000168102 Ibuprofen plus Paracetamol (Terry White Chemists) film-coated tablet, 12 1082321000168100 Ibuprofen plus Paracetamol (Terry White Chemists) film-coated tablet 1082311000168107 Ibuprofen plus Paracetamol (Terry White Chemists) 1082311000168107 Ibuprofen plus Paracetamol (Terry White Chemists) 813141000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 12 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +933231611000036105 Taxotere (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 53456 933225881000036101 Taxotere (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack 646341000168105 Taxotere (inert substance) diluent, 1.5 mL vial 4063011000036102 Taxotere 4063011000036102 Taxotere 933225891000036104 docetaxel 20 mg/0.5 mL injection [0.5 mL vial] (&) inert substance diluent [1.5 mL vial], 1 pack 646331000168101 inert substance diluent, 1.5 mL vial 21220011000036103 inert substance +933231611000036105 Taxotere (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 53456 933225881000036101 Taxotere (1 x 20 mg/0.5 mL vial, 1 x 1.5 mL inert diluent vial), 1 pack 33087011000036107 Taxotere (docetaxel 20 mg/0.5 mL) concentrated injection, 0.5 mL vial 4063011000036102 Taxotere 4063011000036102 Taxotere 933225891000036104 docetaxel 20 mg/0.5 mL injection [0.5 mL vial] (&) inert substance diluent [1.5 mL vial], 1 pack 33679011000036101 docetaxel 20 mg/0.5 mL injection, vial 21721011000036101 docetaxel +35670011000036102 Ircal 1 g/g eye ointment, 2 x 3.5 g tubes 35552011000036108 Ircal 1 g/g eye ointment, 2 x 3.5 g 35473011000036107 Ircal 1 g/g eye ointment 35437011000036101 Ircal 35437011000036101 Ircal 35761011000036105 paraffin 1 g/g eye ointment, 2 x 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +780151000168107 Fentanyl (Apo) 25 microgram/hour patch, 10, sachet 152574 780141000168105 Fentanyl (Apo) 25 microgram/hour patch, 10 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235741000036100 fentanyl 25 microgram/hour patch, 10 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +1123041000168100 Grazax 75 000 SQ-T orally disintegrating tablet, 10, blister pack 267955 1123031000168109 Grazax 75 000 SQ-T orally disintegrating tablet, 10 1123011000168104 Grazax 75 000 SQ-T orally disintegrating tablet 1120251000168103 Grazax 1120251000168103 Grazax 1123021000168106 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet, 10 1123001000168102 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet 1122991000168103 Phleum pratense pollen extract +933231631000036101 Diclofenac Sodium (Sandoz) 25 mg enteric tablet, 50, bottle 61297 933226221000036106 Diclofenac Sodium (Sandoz) 25 mg enteric tablet, 50 933221071000036108 Diclofenac Sodium (Sandoz) 25 mg enteric tablet 933218871000036103 Diclofenac Sodium (Sandoz) 933218871000036103 Diclofenac Sodium (Sandoz) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +116591000036107 Rosuvastatin (Sandoz) 40 mg film-coated tablet, 30, blister pack 183599 114881000036101 Rosuvastatin (Sandoz) 40 mg film-coated tablet, 30 112931000036104 Rosuvastatin (Sandoz) 40 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +933211461000036100 Feiba-NF 500 U (1 x 500 units vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 104896 933200181000036107 Feiba-NF 500 U (1 x 500 units vial, 1 x 20 mL inert diluent vial), 1 pack 639241000168108 Feiba-NF (inert substance) diluent, 20 mL vial 42991000168106 Feiba-NF 500 U 43101000168106 Feiba-NF 933200191000036109 factor VIII inhibitor bypassing fraction 500 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 639231000168104 inert substance diluent, 20 mL vial 21220011000036103 inert substance +933211461000036100 Feiba-NF 500 U (1 x 500 units vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 104896 933200181000036107 Feiba-NF 500 U (1 x 500 units vial, 1 x 20 mL inert diluent vial), 1 pack 933194451000036104 Feiba-NF 500 U (factor VIII inhibitor bypassing fraction 500 units) powder for injection, 500 units vial 42991000168106 Feiba-NF 500 U 42991000168106 Feiba-NF 500 U 933200191000036109 factor VIII inhibitor bypassing fraction 500 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 933194461000036101 factor VIII inhibitor bypassing fraction 500 units injection, vial 933216341000036100 factor VIII inhibitor bypassing fraction +24511000036105 Valaciclovir (Pfizer) 500 mg film-coated tablet, 42, blister pack 173287 22521000036109 Valaciclovir (Pfizer) 500 mg film-coated tablet, 42 19921000036100 Valaciclovir (Pfizer) 500 mg film-coated tablet 19791000036100 Valaciclovir (Pfizer) 19791000036100 Valaciclovir (Pfizer) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +929033011000036105 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 4, blister pack 160643 928394011000036104 Risedronate Sodium (Chemmart) 35 mg film-coated tablet, 4 927965011000036102 Risedronate Sodium (Chemmart) 35 mg film-coated tablet 927777011000036109 Risedronate Sodium (Chemmart) 927777011000036109 Risedronate Sodium (Chemmart) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +68763011000036106 Mylanta Original oral liquid suspension, 200 mL, bottle 122007 66664011000036109 Mylanta Original oral liquid suspension, 200 mL 65235011000036101 Mylanta Original oral liquid suspension, 5 mL 34911000168105 Mylanta Original 34911000168105 Mylanta Original 71373011000036108 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid, 200 mL 22136011000036101 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +43756011000036100 Zorac 0.1% cream, 60 g, tube 101327 41118011000036108 Zorac 0.1% cream, 60 g 39887011000036108 Zorac 0.1% cream 39675011000036100 Zorac 39675011000036100 Zorac 46100011000036105 tazarotene 0.1% cream, 60 g 44985011000036108 tazarotene 0.1% cream 44886011000036105 tazarotene +20607011000036103 Zydol 50 mg hard capsule, 20, blister pack 80744 13789011000036104 Zydol 50 mg hard capsule, 20 7075011000036102 Zydol 50 mg hard capsule 4113011000036107 Zydol 4113011000036107 Zydol 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +668991000168108 Halaven 1 mg/2 mL injection solution, 6 x 2 mL vials 187136 668981000168105 Halaven 1 mg/2 mL injection solution, 6 x 2 mL vials 668931000168109 Halaven 1 mg/2 mL injection solution, 2 mL vial 668891000168101 Halaven 668891000168101 Halaven 668971000168107 eribulin mesilate 1 mg/2 mL injection, 6 x 2 mL vials 668921000168106 eribulin mesilate 1 mg/2 mL injection, vial 668911000168104 eribulin +20506011000036108 Gantin 400 mg hard capsule, 100, blister pack 78625 13706011000036107 Gantin 400 mg hard capsule, 100 6988011000036105 Gantin 400 mg hard capsule 3173011000036101 Gantin 3173011000036101 Gantin 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +44263011000036105 Serc 16 mg uncoated tablet, 25, blister pack 61687 41734011000036104 Serc 16 mg uncoated tablet, 25 40172011000036105 Serc 16 mg uncoated tablet 39692011000036103 Serc 39692011000036103 Serc 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +727911000168103 Zyprexa 5 mg film-coated tablet, 7, blister pack 56604 727901000168101 Zyprexa 5 mg film-coated tablet, 7 6103011000036101 Zyprexa 5 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 933205031000036100 olanzapine 5 mg tablet, 7 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +650541000168103 Ambisome 50 mg powder for injection, 10 vials 53783 650531000168107 Ambisome 50 mg powder for injection, 10 vials 40111011000036105 Ambisome 50 mg powder for injection, 50 mg vial 39574011000036105 Ambisome 39574011000036105 Ambisome 650521000168109 amphotericin B (as liposomal) 50 mg injection, 10 vials 45160011000036106 amphotericin B (as liposomal) 50 mg injection, vial 44896011000036106 liposomal amphotericin B +37407011000036109 Parvolex 2 g/10 mL injection solution, 10 x 10 mL ampoules 10222 36615011000036104 Parvolex 2 g/10 mL injection solution, 10 x 10 mL ampoules 36046011000036106 Parvolex 2 g/10 mL injection solution, 10 mL ampoule 35890011000036103 Parvolex 35890011000036103 Parvolex 38535011000036109 acetylcysteine 2 g/10 mL injection, 10 x 10 mL ampoules 37821011000036101 acetylcysteine 2 g/10 mL injection, ampoule 21423011000036105 acetylcysteine +44021011000036105 Erythromycin (DBL) 1 g powder for injection, 1 vial 47258 41510011000036103 Erythromycin (DBL) 1 g powder for injection, 1 vial 40027011000036100 Erythromycin (DBL) 1 g powder for injection, vial 3331011000036109 Erythromycin (DBL) 3331011000036109 Erythromycin (DBL) 27048011000036107 erythromycin (as lactobionate) 1 g injection, 1 vial 22418011000036107 erythromycin (as lactobionate) 1 g injection, vial 21858011000036107 erythromycin lactobionate +43874011000036108 Ramipril (Sandoz) 10 mg hard capsule, 10, blister pack 128811 41370011000036108 Ramipril (Sandoz) 10 mg hard capsule, 10 5803011000036106 Ramipril (Sandoz) 10 mg hard capsule 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 46762011000036101 ramipril 10 mg capsule, 10 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +1049191000168100 Oxycone 10 mg/mL injection solution, 5 x 1 mL ampoules 279322 1049181000168103 Oxycone 10 mg/mL injection solution, 5 x 1 mL ampoules 1049171000168101 Oxycone 10 mg/mL injection solution, ampoule 1049161000168107 Oxycone 1049161000168107 Oxycone 35093011000036105 oxycodone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 34845011000036105 oxycodone hydrochloride 10 mg/mL injection, ampoule 21259011000036105 oxycodone +925196011000036105 Paclitaxel (Kabi) 30 mg/5 mL concentrated injection, 5 mL vial 156264 924733011000036108 Paclitaxel (Kabi) 30 mg/5 mL concentrated injection, 5 mL vial 924443011000036103 Paclitaxel (Kabi) 30 mg/5 mL concentrated injection, 5 mL vial 924407011000036104 Paclitaxel (Kabi) 924407011000036104 Paclitaxel (Kabi) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +60291011000036103 Strong Pain Plus (Pharmacy Choice) uncoated tablet, 24, blister pack 136681 56250011000036107 Strong Pain Plus (Pharmacy Choice) uncoated tablet, 24 53851011000036104 Strong Pain Plus (Pharmacy Choice) uncoated tablet 53193011000036100 Strong Pain Plus (Pharmacy Choice) 53193011000036100 Strong Pain Plus (Pharmacy Choice) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +693391000168100 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules 49293 693381000168103 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules 693331000168104 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 mL ampoule 693201000168104 Lignocaine (Pfizer) 693201000168104 Lignocaine (Pfizer) 693371000168101 lidocaine (lignocaine) hydrochloride monohydrate 2% (100 mg/5 mL) injection, 50 x 5 mL ampoules 693321000168102 lidocaine (lignocaine) hydrochloride monohydrate 2% (100 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +21036011000036106 Glucovance 500/5 film-coated tablet, 90, blister pack 96729 14181011000036107 Glucovance 500/5 film-coated tablet, 90 7462011000036109 Glucovance 500/5 film-coated tablet 46341000168101 Glucovance 500/5 46341000168101 Glucovance 500/5 28197011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet, 90 23509011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet 21813011000036107 metformin + glibenclamide +87706011000036107 Carvedilol (Apo) 6.25 mg film-coated tablet, 30, bottle 123833 87413011000036107 Carvedilol (Apo) 6.25 mg film-coated tablet, 30 87296011000036101 Carvedilol (Apo) 6.25 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +655981000168105 Atenolol (AN) 50 mg uncoated tablet, 30, blister pack 186395 655971000168107 Atenolol (AN) 50 mg uncoated tablet, 30 655961000168101 Atenolol (AN) 50 mg uncoated tablet 655951000168103 Atenolol (AN) 655951000168103 Atenolol (AN) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +19374011000036105 Plendil ER 10 mg modified release tablet, 30, blister pack 51776 12661011000036103 Plendil ER 10 mg modified release tablet, 30 5274011000036108 Plendil ER 10 mg modified release tablet 12021000168103 Plendil ER 12021000168103 Plendil ER 27476011000036101 felodipine 10 mg modified release tablet, 30 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +933238851000036101 Fentanyl (Sandoz) 12 microgram/hour patch, 1, sachet 152572 933236011000036105 Fentanyl (Sandoz) 12 microgram/hour patch, 1 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236021000036103 fentanyl 12 microgram/hour patch, 1 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +60340011000036107 C-Zine (Chemists' Own) 10 mg film-coated tablet, 30, blister pack 139462 56299011000036108 C-Zine (Chemists' Own) 10 mg film-coated tablet, 30 53866011000036101 C-Zine (Chemists' Own) 10 mg film-coated tablet 53377011000036107 C-Zine (Chemists' Own) 53377011000036107 C-Zine (Chemists' Own) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +81193011000036107 Senna-Col (Amcal) film-coated tablet, 8, bottle 81753 80695011000036100 Senna-Col (Amcal) film-coated tablet, 8 80240011000036104 Senna-Col (Amcal) film-coated tablet 80104011000036103 Senna-Col (Amcal) 80104011000036103 Senna-Col (Amcal) 81747011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet, 8 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +1082301000168109 Atorvastatin (RZ) 40 mg film-coated tablet, 30, blister pack 198844 1082291000168108 Atorvastatin (RZ) 40 mg film-coated tablet, 30 1082281000168105 Atorvastatin (RZ) 40 mg film-coated tablet 1082211000168104 Atorvastatin (RZ) 1082211000168104 Atorvastatin (RZ) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1022161000168102 Butafen 200 mg film-coated tablet, 16, blister pack 155484 1022151000168104 Butafen 200 mg film-coated tablet, 16 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63307011000036101 ibuprofen 200 mg tablet, 16 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +697731000168109 Dilart HCT 320/25 mg film-coated tablet, 28, blister pack 187399 697721000168106 Dilart HCT 320/25 mg film-coated tablet, 28 697711000168104 Dilart HCT 320/25 mg film-coated tablet 697701000168102 Dilart HCT 320/25 mg 697701000168102 Dilart HCT 320/25 mg 81591011000036103 valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 28 81264011000036105 valsartan 320 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +997671000168102 Olanzapine ODT (Apotex) 20 mg orally disintegrating tablet, 28, blister pack 158988 997661000168108 Olanzapine ODT (Apotex) 20 mg orally disintegrating tablet, 28 997651000168106 Olanzapine ODT (Apotex) 20 mg orally disintegrating tablet 997061000168103 Olanzapine ODT (Apotex) 997061000168103 Olanzapine ODT (Apotex) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +52179011000036101 Sodium Bicarbonate BP (extemporaneous) 5% ear drops, 15 mL, dropper container 52062011000036109 Sodium Bicarbonate BP (extemporaneous) 5% ear drops, 15 mL 51963011000036109 Sodium Bicarbonate BP (extemporaneous) 5% ear drops 20971000168109 Sodium Bicarbonate BP (extemporaneous) 20971000168109 Sodium Bicarbonate BP (extemporaneous) 52310011000036105 sodium bicarbonate 5% ear drops, 15 mL 52242011000036105 sodium bicarbonate 5% ear drops 21761011000036107 bicarbonate +81072011000036101 Gemcitabine 1000 (Actavis) 1 g powder for injection, 1 vial 151703 80581011000036107 Gemcitabine 1000 (Actavis) 1 g powder for injection, 1 vial 80199011000036104 Gemcitabine 1000 (Actavis) 1 g powder for injection, vial 62401000168100 Gemcitabine 1000 (Actavis) 62401000168100 Gemcitabine 1000 (Actavis) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +59879011000036100 Ibuprofen (Terry White Chemists) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 116310 55841011000036108 Ibuprofen (Terry White Chemists) 100 mg/5 mL oral liquid suspension, 200 mL 53674011000036105 Ibuprofen (Terry White Chemists) 100 mg/5 mL oral liquid suspension, 5 mL 53568011000036103 Ibuprofen (Terry White Chemists) 53568011000036103 Ibuprofen (Terry White Chemists) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +1019281000168104 Aripiprazole (WT) 30 mg uncoated tablet, 30, blister pack 217200 1019271000168102 Aripiprazole (WT) 30 mg uncoated tablet, 30 1019261000168108 Aripiprazole (WT) 30 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +933076011000036103 Tramadol Hydrochloride SR (Chemmart) 200 mg modified release tablet, 20, blister pack 154400 932873011000036100 Tramadol Hydrochloride SR (Chemmart) 200 mg modified release tablet, 20 932734011000036102 Tramadol Hydrochloride SR (Chemmart) 200 mg modified release tablet 8361000168109 Tramadol Hydrochloride SR (Chemmart) 8361000168109 Tramadol Hydrochloride SR (Chemmart) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +969961000168109 Pregabalin (Apo) 25 mg hard capsule, 14, blister pack 193255 969951000168107 Pregabalin (Apo) 25 mg hard capsule, 14 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +926681011000036101 Lisoril 5 mg uncoated tablet, 84, blister pack 106495 926073011000036101 Lisoril 5 mg uncoated tablet, 84 925620011000036100 Lisoril 5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 83482011000036105 lisinopril 5 mg tablet, 84 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +863701000168101 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 144672 863691000168101 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 863671000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863681000168104 glucose monohydrate 5% (12.5 g/250 mL) injection, 20 x 250 mL bags 863661000168108 glucose monohydrate 5% (12.5 g/250 mL) injection, bag 21354011000036103 glucose +136821000036104 Flebogamma 5% DIF 20 g/400 mL injection solution, 400 mL vial 143803 136581000036100 Flebogamma 5% DIF 20 g/400 mL injection solution, 400 mL vial 136351000036100 Flebogamma 5% DIF 20 g/400 mL injection solution, 400 mL vial 11731000168109 Flebogamma 5% DIF 11731000168109 Flebogamma 5% DIF 933201421000036107 normal immunoglobulin 20 g/400 mL injection, 400 mL vial 933195031000036100 normal immunoglobulin 20 g/400 mL injection, vial 74965011000036103 normal immunoglobulin +932501000168101 Colazide 750 mg hard capsule, 180, bottle 77358 932491000168108 Colazide 750 mg hard capsule, 180 932481000168105 Colazide 750 mg hard capsule 3072011000036104 Colazide 3072011000036104 Colazide 27838011000036109 balsalazide sodium 750 mg capsule, 180 23166011000036100 balsalazide sodium 750 mg capsule 21908011000036105 balsalazide +69489011000036101 Strepsils Plus lozenge, 6, blister pack 50509 67289011000036109 Strepsils Plus lozenge, 6 65593011000036101 Strepsils Plus lozenge 64984011000036103 Strepsils Plus 64984011000036103 Strepsils Plus 71837011000036100 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70208011000036106 lidocaine (lignocaine) hydrochloride 10 mg + dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69850011000036105 lidocaine (lignocaine) + dichlorobenzyl alcohol + amylmetacresol +998771000168107 Perindopril Arginine (Apotex) 5 mg film-coated tablet, 10, blister pack 184816 998761000168101 Perindopril Arginine (Apotex) 5 mg film-coated tablet, 10 998751000168103 Perindopril Arginine (Apotex) 5 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 727301000168100 perindopril arginine 5 mg tablet, 10 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +20198011000036104 Captopril (Chemmart) 12.5 mg uncoated tablet, 90, blister pack 74001 13417011000036103 Captopril (Chemmart) 12.5 mg uncoated tablet, 90 6699011000036104 Captopril (Chemmart) 12.5 mg uncoated tablet 3676011000036108 Captopril (Chemmart) 3676011000036108 Captopril (Chemmart) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +794221000168101 Tacrolimus (Sandoz) 750 microgram hard capsule, 50, blister pack 229738 794211000168108 Tacrolimus (Sandoz) 750 microgram hard capsule, 50 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794201000168105 tacrolimus 750 microgram capsule, 50 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +931591011000036108 Redichol 80 mg film-coated tablet, 90, bottle 163555 930752011000036102 Redichol 80 mg film-coated tablet, 90 930035011000036109 Redichol 80 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932409011000036101 pravastatin sodium 80 mg tablet, 90 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +877751000168104 Albunate-5 25 g/500 mL intravenous infusion injection, 500 mL vial 223744 877741000168101 Albunate-5 25 g/500 mL intravenous infusion injection, 500 mL vial 877721000168107 Albunate-5 25 g/500 mL intravenous infusion injection, 500 mL vial 877651000168108 Albunate-5 877651000168108 Albunate-5 877731000168105 albumin human 25 g/500 mL injection, 500 mL vial 877711000168100 albumin human 25 g/500 mL injection, vial 69754011000036102 albumin human +883921000168105 Betahistine (Medis) 8 mg tablet, 10, blister pack 231720 883911000168103 Betahistine (Medis) 8 mg tablet, 10 883901000168101 Betahistine (Medis) 8 mg tablet 883891000168100 Betahistine (Medis) 883891000168100 Betahistine (Medis) 883091000168108 betahistine dihydrochloride 8 mg tablet, 10 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +1122961000168105 Gardasil 9 injection suspension, 10 x 0.5 mL syringes 224092 1122951000168108 Gardasil 9 injection suspension, 10 x 0.5 mL syringes 1122901000168109 Gardasil 9 injection suspension, 0.5 mL syringe 1122871000168109 Gardasil 9 1122871000168109 Gardasil 9 1122941000168106 human papillomavirus 9 valent vaccine injection, 10 x 0.5 mL syringes 1122891000168105 human papillomavirus 9 valent vaccine injection, 0.5 mL syringe 1122881000168107 human papillomavirus 9 valent vaccine +69270011000036102 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL pack, bag 19477 67070011000036100 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL pack 65544011000036106 Sodium Chloride (Baxter) 0.9% (450 mg/50 mL) intravenous infusion injection, 50 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71640011000036107 sodium chloride 0.9% (450 mg/50 mL) injection, 50 mL pack 70105011000036103 sodium chloride 0.9% (450 mg/50 mL) injection, bag 21308011000036103 sodium chloride +1001941000168103 Pregabalin (Apo) 200 mg hard capsule, 20, bottle 193252 1001931000168107 Pregabalin (Apo) 200 mg hard capsule, 20 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903271000168106 pregabalin 200 mg capsule, 20 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +880861000168102 Adrenaject Auto-Injector 300 microgram/0.3 mL injection solution, 2 x 1 dose, injection devices 231706 880851000168104 Adrenaject Auto-Injector 300 microgram/0.3 mL injection solution, 2 x 1 dose 880811000168100 Adrenaject Auto-Injector 300 microgram/0.3 mL injection solution, dose 880801000168103 Adrenaject Auto-Injector 880801000168103 Adrenaject Auto-Injector 880841000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 2 x 1 dose 726701000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +82191000036109 Reedos 200 mg tablet, 56, blister pack 187280 80681000036101 Reedos 200 mg tablet, 56 78831000036107 Reedos 200 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +116671000036109 Rosuvastatin (GH) 40 mg film-coated tablet, 30, blister pack 183719 114961000036104 Rosuvastatin (GH) 40 mg film-coated tablet, 30 113571000036102 Rosuvastatin (GH) 40 mg film-coated tablet 112721000036104 Rosuvastatin (GH) 112721000036104 Rosuvastatin (GH) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +788781000168102 Movapo 20 mg/2 mL injection solution, 5 x 2 mL ampoules 142086 788771000168100 Movapo 20 mg/2 mL injection solution, 5 x 2 mL ampoules 788761000168106 Movapo 20 mg/2 mL injection solution, 2 mL ampoule 788721000168101 Movapo 788721000168101 Movapo 38707011000036107 apomorphine hydrochloride hemihydrate 20 mg/2 mL injection, 5 x 2 mL ampoules 37941011000036106 apomorphine hydrochloride hemihydrate 20 mg/2 mL injection, ampoule 21732011000036105 apomorphine +1013661000168108 Ziprasidone (Apo) 40 mg hard capsule, 300, bottle 201053 1013651000168106 Ziprasidone (Apo) 40 mg hard capsule, 300 148271000036101 Ziprasidone (Apo) 40 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 1013641000168109 ziprasidone 40 mg capsule, 300 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +44185011000036106 Anzemet 100 mg film-coated tablet, 5, blister pack 55067 41661011000036104 Anzemet 100 mg film-coated tablet, 5 40131011000036101 Anzemet 100 mg film-coated tablet 4210011000036102 Anzemet 4210011000036102 Anzemet 46479011000036107 dolasetron mesilate monohydrate 100 mg tablet, 5 45179011000036108 dolasetron mesilate monohydrate 100 mg tablet 21471011000036108 dolasetron +18697011000036100 Mitozantrone (Ebewe) 20 mg/10 mL injection solution, 10 mL vial 132327 11929011000036106 Mitozantrone (Ebewe) 20 mg/10 mL injection solution, 10 mL vial 4969011000036106 Mitozantrone (Ebewe) 20 mg/10 mL injection solution, 10 mL vial 4129011000036100 Mitozantrone (Ebewe) 4129011000036100 Mitozantrone (Ebewe) 27985011000036103 mitozantrone 20 mg/10 mL injection, 10 mL vial 23309011000036101 mitozantrone 20 mg/10 mL injection, vial 21652011000036102 mitozantrone +993311000168108 Clarithromycin (Apotex) 250 mg film-coated tablet, 2, blister pack 174943 993301000168105 Clarithromycin (Apotex) 250 mg film-coated tablet, 2 993291000168109 Clarithromycin (Apotex) 250 mg film-coated tablet 993281000168106 Clarithromycin (Apotex) 993281000168106 Clarithromycin (Apotex) 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1023371000168100 Ibuprofen (A) 200 mg film-coated tablet, 100, blister pack 161314 1023361000168106 Ibuprofen (A) 200 mg film-coated tablet, 100 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +85030011000036104 Paroxo 20 mg film-coated tablet, 14, blister pack 152489 84895011000036105 Paroxo 20 mg film-coated tablet, 14 84788011000036102 Paroxo 20 mg film-coated tablet 84767011000036100 Paroxo 84767011000036100 Paroxo 51562011000036108 paroxetine 20 mg tablet, 14 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +933211541000036102 Ceprotin 500 IU (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 104537 933200141000036103 Ceprotin 500 IU (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 637021000168103 Ceprotin (inert substance) diluent, 5 mL vial 36161000168101 Ceprotin 500 IU 36281000168103 Ceprotin 933200151000036100 protein C 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +933211541000036102 Ceprotin 500 IU (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 104537 933200141000036103 Ceprotin 500 IU (1 x 500 units vial, 1 x 5 mL inert diluent vial), 1 pack 933194201000036104 Ceprotin 500 IU (protein C 500 units) powder for injection, 500 units vial 36161000168101 Ceprotin 500 IU 36161000168101 Ceprotin 500 IU 933200151000036100 protein C 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 933194211000036102 protein C 500 units injection, vial 933216261000036109 protein C +61259011000036104 Panadol Gel Tab 500 mg gelatin coated tablet, 12, blister pack 77188 57195011000036107 Panadol Gel Tab 500 mg gelatin coated tablet, 12 54232011000036104 Panadol Gel Tab 500 mg gelatin coated tablet 28731000168106 Panadol Gel Tab 28731000168106 Panadol Gel Tab 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +860531000168109 Amisulpride (Winthrop) 50 mg uncoated tablet, 15, blister pack 125164 860521000168106 Amisulpride (Winthrop) 50 mg uncoated tablet, 15 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 860511000168104 amisulpride 50 mg tablet, 15 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +817691000168107 Dynoval 10/5 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200817 817681000168109 Dynoval 10/5 (perindopril arginine/amlodipine) uncoated tablet, 10 817671000168106 Dynoval 10/5 (perindopril arginine/amlodipine) uncoated tablet 817661000168100 Dynoval 10/5 (perindopril arginine/amlodipine) 817661000168100 Dynoval 10/5 (perindopril arginine/amlodipine) 86427011000036108 perindopril arginine 10 mg + amlodipine 5 mg tablet, 10 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +165651000036106 Intanza 2014 injection suspension, 10 x 0.1 mL syringes 150130 163741000036100 Intanza 2014 injection suspension, 10 x 0.1 mL syringes 162131000036102 Intanza 2014 injection suspension, 0.1 mL syringe 36641000168106 Intanza 2014 36641000168106 Intanza 2014 163751000036102 influenza trivalent adult vaccine 2014 injection, 10 x 0.1 mL syringes 162141000036107 influenza trivalent adult vaccine 2014 injection, 0.1 mL syringe 166301000036105 influenza trivalent vaccine 2014 +780241000168102 Fentanyl (Apo) 50 microgram/hour patch, 4, sachet 152573 780231000168106 Fentanyl (Apo) 50 microgram/hour patch, 4 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235951000036100 fentanyl 50 microgram/hour patch, 4 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +860551000168103 Amisulpride (Winthrop) 50 mg uncoated tablet, 30, blister pack 125164 860541000168100 Amisulpride (Winthrop) 50 mg uncoated tablet, 30 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 924158011000036106 amisulpride 50 mg tablet, 30 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +18939011000036100 Betamin 100 mg uncoated tablet, 100, bottle 27460 12247011000036102 Betamin 100 mg uncoated tablet, 100 5345011000036103 Betamin 100 mg uncoated tablet 3724011000036106 Betamin 3724011000036106 Betamin 96851000036108 thiamine hydrochloride 100 mg tablet, 100 96351000036103 thiamine hydrochloride 100 mg tablet 21789011000036109 thiamine +714911000168100 Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g, tube 115388 714901000168103 Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g 714881000168100 Anti Fungal V 3 Day (Amcal) 2% vaginal cream 62901000168107 Anti Fungal V 3 Day (Amcal) 62901000168107 Anti Fungal V 3 Day (Amcal) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +886251000168100 Varenicline (Blooms The Chemist) 1 mg film-coated tablet, 56, blister pack 211943 886241000168102 Varenicline (Blooms The Chemist) 1 mg film-coated tablet, 56 886231000168106 Varenicline (Blooms The Chemist) 1 mg film-coated tablet 886221000168108 Varenicline (Blooms The Chemist) 886221000168108 Varenicline (Blooms The Chemist) 33788011000036105 varenicline 1 mg tablet, 56 33660011000036103 varenicline 1 mg tablet 33624011000036101 varenicline +69080011000036100 Canesten Clotrimazole Anti-Fungal 1% cream, 5 g, tube 145387 66881011000036104 Canesten Clotrimazole Anti-Fungal 1% cream, 5 g 65515011000036101 Canesten Clotrimazole Anti-Fungal 1% cream 25741000168109 Canesten Clotrimazole Anti-Fungal 25741000168109 Canesten Clotrimazole Anti-Fungal 63427011000036103 clotrimazole 1% cream, 5 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +37620011000036102 Pilocarpine Hydrochloride Neutral (Pharmatel) 1% eye drops solution, 10 mL, bottle 20397 36887011000036101 Pilocarpine Hydrochloride Neutral (Pharmatel) 1% eye drops solution, 10 mL 36221011000036106 Pilocarpine Hydrochloride Neutral (Pharmatel) 1% eye drops solution 32021000168106 Pilocarpine Hydrochloride Neutral (Pharmatel) 32021000168106 Pilocarpine Hydrochloride Neutral (Pharmatel) 38772011000036102 pilocarpine hydrochloride 1% eye drops, 10 mL 23118011000036102 pilocarpine hydrochloride 1% eye drops 21254011000036109 pilocarpine +702061000168107 Colaxsen film-coated tablet, 200, bottle 218552 702051000168105 Colaxsen film-coated tablet, 200 702001000168106 Colaxsen film-coated tablet 701961000168102 Colaxsen 701961000168102 Colaxsen 686521000168104 docusate sodium 50 mg + sennoside B 8 mg tablet, 200 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +1065081000168107 Paracode Extra uncoated tablet, 16, blister pack 292800 1065071000168109 Paracode Extra uncoated tablet, 16 1065011000168101 Paracode Extra uncoated tablet 1065001000168104 Paracode Extra 1065001000168104 Paracode Extra 1065061000168103 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 16 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +933214251000036100 Reditra 50 mg film-coated tablet, 10, blister pack 160772 933203471000036107 Reditra 50 mg film-coated tablet, 10 933195831000036109 Reditra 50 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 929236011000036108 sertraline 50 mg tablet, 10 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +656021000168100 Meloxicam (AN) 15 mg uncoated tablet, 30, blister pack 188879 656011000168107 Meloxicam (AN) 15 mg uncoated tablet, 30 656001000168109 Meloxicam (AN) 15 mg uncoated tablet 655991000168108 Meloxicam (AN) 655991000168108 Meloxicam (AN) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +60095011000036109 Clotrimazole Antifungal (Pharmacy Choice) 1% cream, 50 g, tube 126540 56056011000036104 Clotrimazole Antifungal (Pharmacy Choice) 1% cream, 50 g 53773011000036102 Clotrimazole Antifungal (Pharmacy Choice) 1% cream 53791000168101 Clotrimazole Antifungal (Pharmacy Choice) 53791000168101 Clotrimazole Antifungal (Pharmacy Choice) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +725621000168106 PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches 725611000168104 PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches 725601000168102 PKU Cooler 15 Green oral liquid solution, 130 mL pouch 8661000168102 PKU Cooler 15 8661000168102 PKU Cooler 15 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +898021000168100 Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 157622 898011000168107 Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 897991000168100 Enbrel Auto-Injector 50 mg/mL injection solution, injection device 54491000168107 Enbrel Auto-Injector 54491000168107 Enbrel Auto-Injector 898001000168109 etanercept 50 mg/mL injection, 4 x 1 mL injection devices 897981000168103 etanercept 50 mg/mL injection, injection device 21347011000036107 etanercept +1049031000168100 Neodol Forte 500/30 tablet, 10, blister pack 220981 1049021000168103 Neodol Forte 500/30 tablet, 10 1048941000168104 Neodol Forte 500/30 tablet 1048931000168108 Neodol Forte 500/30 1048931000168108 Neodol Forte 500/30 1047321000168108 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 10 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +1047981000168108 Bupretec 15 microgram/hour patch, 4, sachet 234732 1047971000168105 Bupretec 15 microgram/hour patch, 4 1047931000168107 Bupretec 15 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1046411000168107 buprenorphine 15 microgram/hour patch, 4 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +74804011000036107 Esitalo 10 mg film-coated tablet, 28, blister pack 146907 74291011000036102 Esitalo 10 mg film-coated tablet, 28 73812011000036103 Esitalo 10 mg film-coated tablet 73698011000036106 Esitalo 73698011000036106 Esitalo 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +840221000168102 Advantan 0.1% ointment, 100 g, tube 49381 840211000168109 Advantan 0.1% ointment, 100 g 4588011000036107 Advantan 0.1% ointment 3513011000036101 Advantan 3513011000036101 Advantan 840201000168106 methylprednisolone aceponate 0.1% ointment, 100 g 22587011000036102 methylprednisolone aceponate 0.1% ointment 21605011000036100 methylprednisolone +1006211000168101 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 195808 1006201000168104 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 1006191000168102 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule 711091000168107 Ropivacaine 1% (Kabi) 711091000168107 Ropivacaine 1% (Kabi) 1005001000168103 ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules 1004981000168106 ropivacaine hydrochloride 100 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +693471000168108 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules 49296 693461000168102 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules 693231000168106 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 mL ampoule 693201000168104 Lignocaine (Pfizer) 693201000168104 Lignocaine (Pfizer) 693451000168104 lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, 5 x 5 mL ampoules 693221000168108 lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +933238871000036106 Fentanyl (Sandoz) 12 microgram/hour patch, 2, sachet 152572 933236051000036109 Fentanyl (Sandoz) 12 microgram/hour patch, 2 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236061000036107 fentanyl 12 microgram/hour patch, 2 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +18432011000036107 Avapro 150 mg film-coated tablet, 30, blister pack 101734 11235011000036105 Avapro 150 mg film-coated tablet, 30 5344011000036102 Avapro 150 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +676391000168103 Oxycodone (Sandoz) 20 mg modified release tablet, 28, blister pack 153615 676381000168101 Oxycodone (Sandoz) 20 mg modified release tablet, 28 676371000168104 Oxycodone (Sandoz) 20 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +50661011000036101 Atenolol (GA) 50 mg film-coated tablet, 30, blister pack 147638 49685011000036106 Atenolol (GA) 50 mg film-coated tablet, 30 48820011000036103 Atenolol (GA) 50 mg film-coated tablet 48411011000036107 Atenolol (GA) 48411011000036107 Atenolol (GA) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +680731000168107 Vedafil 100 mg film-coated tablet, 4, blister pack 162806 680721000168109 Vedafil 100 mg film-coated tablet, 4 680711000168102 Vedafil 100 mg film-coated tablet 680671000168101 Vedafil 680671000168101 Vedafil 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +697811000168107 Citalopram (Actavis) 40 mg film-coated tablet, 28, blister pack 158883 697801000168109 Citalopram (Actavis) 40 mg film-coated tablet, 28 697791000168108 Citalopram (Actavis) 40 mg film-coated tablet 670891000168107 Citalopram (Actavis) 670891000168107 Citalopram (Actavis) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1007291000168107 Morphine MR (Mylan) 10 mg modified release tablet, 28, blister pack 225421 1007281000168109 Morphine MR (Mylan) 10 mg modified release tablet, 28 1007241000168104 Morphine MR (Mylan) 10 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +82325011000036105 Chlorhexidine Gluconate 0.5% in Alcohol (Pfizer (Perth)) solution, 100 mL, bottle 11339 82121011000036102 Chlorhexidine Gluconate 0.5% in Alcohol (Pfizer (Perth)) solution, 100 mL 81994011000036106 Chlorhexidine Gluconate 0.5% in Alcohol (Pfizer (Perth)) solution 36691000168103 Chlorhexidine Gluconate 0.5% in Alcohol (Pfizer (Perth)) 36691000168103 Chlorhexidine Gluconate 0.5% in Alcohol (Pfizer (Perth)) 82523011000036106 chlorhexidine gluconate 0.5% + ethanol 70% solution, 100 mL 70161011000036104 chlorhexidine gluconate 0.5% + ethanol 70% solution 69801011000036109 chlorhexidine + ethanol +967541000168105 Trulicity 1.5 mg/0.5 mL injection solution, 0.5 mL injection device 217965 967531000168101 Trulicity 1.5 mg/0.5 mL injection solution, 0.5 mL injection device 729761000168107 Trulicity 1.5 mg/0.5 mL injection solution, 0.5 mL injection device 729641000168103 Trulicity 729641000168103 Trulicity 967521000168104 dulaglutide 1.5 mg/0.5 mL injection, 0.5 mL injection device 729751000168105 dulaglutide 1.5 mg/0.5 mL injection, injection device 729741000168108 dulaglutide +122531000036101 Nu-Gel (2497) 9.5 cm x 9.5 cm dressing, 5, carton 122351000036102 Nu-Gel (2497) 9.5 cm x 9.5 cm dressing, 5 122251000036106 Nu-Gel (2497) 9.5 cm x 9.5 cm dressing 44581000168106 Nu-Gel (2497) 44581000168106 Nu-Gel (2497) 122361000036104 dressing hydrogel amorphous sheet 9.5 cm x 9.5 cm dressing, 5 122261000036109 dressing hydrogel amorphous sheet 9.5 cm x 9.5 cm dressing 122571000036104 dressing hydrogel amorphous sheet +1014711000168100 Memantine (Apotex) 20 mg film-coated tablet, 28, blister pack 207784 1014701000168103 Memantine (Apotex) 20 mg film-coated tablet, 28 1014691000168103 Memantine (Apotex) 20 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 83496011000036105 memantine hydrochloride 20 mg tablet, 28 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +44698011000036100 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack, composite pack 93506 42147011000036102 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46908011000036105 follitropin alfa 37.5 units (2.73 microgram) injection [50 x 37.5 units vials] (&) inert substance diluent [50 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44698011000036100 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack, composite pack 93506 42147011000036102 Gonal-F (50 x 37.5 units (2.73 microgram) vials, 50 x 1 mL inert diluent syringes), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46908011000036105 follitropin alfa 37.5 units (2.73 microgram) injection [50 x 37.5 units vials] (&) inert substance diluent [50 x 1 mL syringes], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +927021000168100 Risperisan 4 mg film-coated tablet, 60, bottle 126181 927011000168107 Risperisan 4 mg film-coated tablet, 60 927001000168109 Risperisan 4 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +863821000168104 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 144672 863811000168106 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 863671000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863801000168108 glucose monohydrate 5% (12.5 g/250 mL) injection, 40 x 250 mL bags 863661000168108 glucose monohydrate 5% (12.5 g/250 mL) injection, bag 21354011000036103 glucose +933112011000036100 Lamictal 50 mg tablet, 56, blister pack 57190 932918011000036109 Lamictal 50 mg tablet, 56 932766011000036103 Lamictal 50 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +933112011000036100 Lamictal 50 mg tablet, 56, blister pack 46267 932918011000036109 Lamictal 50 mg tablet, 56 932766011000036103 Lamictal 50 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +1014871000168100 Warfarin (Apo) 5 mg tablet, 50, bottle 225718 1014861000168106 Warfarin (Apo) 5 mg tablet, 50 1014851000168109 Warfarin (Apo) 5 mg tablet 1014721000168107 Warfarin (Apo) 1014721000168107 Warfarin (Apo) 27095011000036106 warfarin sodium 5 mg tablet, 50 22464011000036101 warfarin sodium 5 mg tablet 21248011000036104 warfarin +18020011000036102 Simvabell 40 mg film-coated tablet, 30, blister pack 100877 11171011000036108 Simvabell 40 mg film-coated tablet, 30 5411011000036103 Simvabell 40 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +1001921000168109 Pregabalin (Apo) 200 mg hard capsule, 14, bottle 193252 1001911000168102 Pregabalin (Apo) 200 mg hard capsule, 14 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +933231451000036106 Leustatin 10 mg/10 mL concentrated injection, 10 mL vial 48000 933225931000036105 Leustatin 10 mg/10 mL concentrated injection, 10 mL vial 5023011000036103 Leustatin 10 mg/10 mL concentrated injection, 10 mL vial 3680011000036104 Leustatin 3680011000036104 Leustatin 933225941000036100 cladribine 10 mg/10 mL injection, 10 mL vial 22551011000036100 cladribine 10 mg/10 mL injection, vial 21886011000036103 cladribine +1039321000168101 Atorvastatin (GA) 10 mg film-coated tablet, 10, blister pack 178539 1039311000168108 Atorvastatin (GA) 10 mg film-coated tablet, 10 1039301000168105 Atorvastatin (GA) 10 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +81055011000036106 Zinc (Gold Cross) 32% cream, 700 g, jar 14062 80498011000036108 Zinc (Gold Cross) 32% cream, 700 g 80165011000036103 Zinc (Gold Cross) 32% cream 80119011000036100 Zinc (Gold Cross) 80119011000036100 Zinc (Gold Cross) 81594011000036100 zinc oxide 32% cream, 700 g 81265011000036109 zinc oxide 32% cream 77446011000036105 zinc oxide +131121000036101 Candesartan Cilexetil (GH) 8 mg uncoated tablet, 30, bottle 195474 128331000036107 Candesartan Cilexetil (GH) 8 mg uncoated tablet, 30 125121000036101 Candesartan Cilexetil (GH) 8 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +947351000168108 Citlam-S 10 mg film-coated tablet, 56, blister pack 191886 947341000168106 Citlam-S 10 mg film-coated tablet, 56 947121000168102 Citlam-S 10 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 667931000168108 escitalopram 10 mg tablet, 56 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +165721000036107 Topra 40 mg enteric tablet, 30, blister pack 191581 163841000036108 Topra 40 mg enteric tablet, 30 162051000036109 Topra 40 mg enteric tablet 161951000036101 Topra 161951000036101 Topra 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +20195011000036105 Climara 25 microgram/24 hours patch, 4, sachet 73962 13414011000036109 Climara 25 microgram/24 hours patch, 4 6696011000036108 Climara 25 microgram/24 hours patch 4358011000036102 Climara 4358011000036102 Climara 27764011000036108 estradiol 25 microgram/24 hours patch, 4 23640011000036109 estradiol 25 microgram/24 hours patch 21238011000036103 estradiol +972931000168104 Pregabalin (Apotex) 150 mg hard capsule, 20, blister pack 267556 972921000168102 Pregabalin (Apotex) 150 mg hard capsule, 20 972891000168107 Pregabalin (Apotex) 150 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +61472011000036107 Paracetamol (Herron) 500 mg film-coated tablet, 4, blister pack 91501 57397011000036108 Paracetamol (Herron) 500 mg film-coated tablet, 4 54295011000036103 Paracetamol (Herron) 500 mg film-coated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63844011000036100 paracetamol 500 mg tablet, 4 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +909741000168108 Chorit 40 mg film-coated tablet, 28, bottle 179848 909731000168104 Chorit 40 mg film-coated tablet, 28 909681000168108 Chorit 40 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 890251000168102 atorvastatin 40 mg tablet, 28 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +928964011000036105 Pizaccord 30 mg uncoated tablet, 28, blister pack 156719 928325011000036107 Pizaccord 30 mg uncoated tablet, 28 927951011000036106 Pizaccord 30 mg uncoated tablet 927823011000036102 Pizaccord 927823011000036102 Pizaccord 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +20169011000036105 Prazosin (Chemmart) 1 mg uncoated tablet, 100, blister pack 73856 13392011000036109 Prazosin (Chemmart) 1 mg uncoated tablet, 100 6677011000036102 Prazosin (Chemmart) 1 mg uncoated tablet 4317011000036106 Prazosin (Chemmart) 4317011000036106 Prazosin (Chemmart) 27727011000036107 prazosin 1 mg tablet, 100 23062011000036109 prazosin 1 mg tablet 21544011000036104 prazosin +864751000168104 Amitriptyline (GXP) 50 mg tablet, 10, blister pack 232132 864741000168101 Amitriptyline (GXP) 50 mg tablet, 10 864731000168105 Amitriptyline (GXP) 50 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +18262011000036102 Perindopril Erbumine (Terry White Chemists) 2 mg uncoated tablet, 30, blister pack 121631 11678011000036103 Perindopril Erbumine (Terry White Chemists) 2 mg uncoated tablet, 30 5701011000036107 Perindopril Erbumine (Terry White Chemists) 2 mg uncoated tablet 4388011000036105 Perindopril Erbumine (Terry White Chemists) 4388011000036105 Perindopril Erbumine (Terry White Chemists) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +996121000168106 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2, blister pack 169047 996111000168104 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2 996091000168107 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 996101000168102 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 995981000168100 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge 86203011000036105 bromhexine + cetylpyridinium +165561000036105 Betaquik oral liquid emulsion, 18 x 250 mL cartons 163541000036105 Betaquik oral liquid emulsion, 18 x 250 mL cartons 450691000168107 Betaquik oral liquid emulsion, 250 mL carton 161921000036107 Betaquik 161921000036107 Betaquik 163551000036108 medium chain triglycerides oral liquid, 18 x 250 mL cartons 450461000168102 medium chain triglycerides oral liquid, 250 mL carton 50747011000036106 medium chain triglycerides +19256011000036109 Leustatin 10 mg/10 mL concentrated injection, 7 x 10 mL vials 48000 12546011000036109 Leustatin 10 mg/10 mL concentrated injection, 7 x 10 mL vials 5023011000036103 Leustatin 10 mg/10 mL concentrated injection, 10 mL vial 3680011000036104 Leustatin 3680011000036104 Leustatin 27189011000036103 cladribine 10 mg/10 mL injection, 7 x 10 mL vials 22551011000036100 cladribine 10 mg/10 mL injection, vial 21886011000036103 cladribine +875101000168108 Bosulif 500 mg film-coated tablet, 30, blister pack 208810 875091000168103 Bosulif 500 mg film-coated tablet, 30 875041000168106 Bosulif 500 mg film-coated tablet 875001000168109 Bosulif 875001000168109 Bosulif 875081000168101 bosutinib 500 mg tablet, 30 875031000168102 bosutinib 500 mg tablet 875021000168100 bosutinib +933240061000036108 Aciclovir (GH) 200 mg uncoated tablet, 90, blister pack 183860 933236581000036107 Aciclovir (GH) 200 mg uncoated tablet, 90 933234891000036101 Aciclovir (GH) 200 mg uncoated tablet 933234351000036100 Aciclovir (GH) 933234351000036100 Aciclovir (GH) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +933231791000036108 Diclofenac Sodium (Sandoz) 50 mg enteric tablet, 50, blister pack 63661 933226211000036104 Diclofenac Sodium (Sandoz) 50 mg enteric tablet, 50 933221061000036100 Diclofenac Sodium (Sandoz) 50 mg enteric tablet 933218871000036103 Diclofenac Sodium (Sandoz) 933218871000036103 Diclofenac Sodium (Sandoz) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +811661000168108 Afinitor 5 mg dispersible tablet, 50, blister pack 200205 811651000168106 Afinitor 5 mg dispersible tablet, 50 811601000168107 Afinitor 5 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811641000168109 everolimus 5 mg dispersible tablet, 50 811591000168100 everolimus 5 mg dispersible tablet 21615011000036103 everolimus +131291000036109 Candesartan Cilexetil (GH) 16 mg uncoated tablet, 30, bottle 195508 128361000036101 Candesartan Cilexetil (GH) 16 mg uncoated tablet, 30 124961000036109 Candesartan Cilexetil (GH) 16 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1088281000168107 Lorstat 20 mg film-coated tablet, 10, bottle 181410 1088271000168109 Lorstat 20 mg film-coated tablet, 10 20791000036101 Lorstat 20 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +61155011000036103 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL, bottle 74523 57098011000036108 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL 54196011000036108 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1109891000168107 Calcium 600 mg plus Vitamin D3 1000 IU (Health Plus Vitamins) film-coated tablet, 120, jar 206335 1109881000168109 Calcium 600 mg plus Vitamin D3 1000 IU (Health Plus Vitamins) film-coated tablet, 120 1109861000168100 Calcium 600 mg plus Vitamin D3 1000 IU (Health Plus Vitamins) film-coated tablet 1109771000168103 Calcium 600 mg plus Vitamin D3 1000 IU (Health Plus Vitamins) 1109771000168103 Calcium 600 mg plus Vitamin D3 1000 IU (Health Plus Vitamins) 1109871000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 25 microgram (1000 units) tablet, 120 1109851000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 25 microgram (1000 units) tablet 733951000168109 calcium + colecalciferol +801571000168104 Abilify 2 mg uncoated tablet, 14, blister pack 91001 801561000168105 Abilify 2 mg uncoated tablet, 14 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801551000168108 aripiprazole 2 mg tablet, 14 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +19573011000036105 Cabaser 2 mg uncoated tablet, 30, bottle 57367 12844011000036100 Cabaser 2 mg uncoated tablet, 30 6135011000036106 Cabaser 2 mg uncoated tablet 3578011000036104 Cabaser 3578011000036104 Cabaser 27391011000036108 cabergoline 2 mg tablet, 30 22740011000036106 cabergoline 2 mg tablet 21526011000036105 cabergoline +30611000036102 Metformin Hydrochloride (Pfizer) 500 mg film-coated tablet, 100, bottle 180446 29141000036101 Metformin Hydrochloride (Pfizer) 500 mg film-coated tablet, 100 26381000036102 Metformin Hydrochloride (Pfizer) 500 mg film-coated tablet 40351000168101 Metformin Hydrochloride (Pfizer) 40351000168101 Metformin Hydrochloride (Pfizer) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +954331000168108 Wellvone 250 mg film-coated tablet, 189, blister pack 52264 954321000168105 Wellvone 250 mg film-coated tablet, 189 954301000168101 Wellvone 250 mg film-coated tablet 3057011000036104 Wellvone 3057011000036104 Wellvone 954311000168103 atovaquone 250 mg tablet, 189 954291000168102 atovaquone 250 mg tablet 21877011000036108 atovaquone +37603011000036103 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent vials), 1 pack, composite pack 19243 36870011000036108 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent vials), 1 pack 36204011000036103 Bicnu (carmustine 100 mg) powder for injection, vial 47991000168108 Bicnu 47991000168108 Bicnu 38757011000036102 carmustine 100 mg injection [10 vials] (&) inert substance diluent [10 x 3 mL vials], 1 pack 37976011000036102 carmustine 100 mg injection, vial 21824011000036101 carmustine +37603011000036103 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent vials), 1 pack, composite pack 19243 36870011000036108 Bicnu (10 x 100 mg vials, 10 x 3 mL inert diluent vials), 1 pack 646601000168103 Bicnu (inert substance) diluent, 3 mL vial 47991000168108 Bicnu 47991000168108 Bicnu 38757011000036102 carmustine 100 mg injection [10 vials] (&) inert substance diluent [10 x 3 mL vials], 1 pack 631981000168109 inert substance diluent, 3 mL vial 21220011000036103 inert substance +814631000168103 Meropenem (Apo) 1 g powder for injection, 10 vials 218841 814621000168101 Meropenem (Apo) 1 g powder for injection, 10 vials 814611000168108 Meropenem (Apo) 1 g powder for injection, vial 814601000168105 Meropenem (Apo) 814601000168105 Meropenem (Apo) 46462011000036109 meropenem 1 g injection, 10 vials 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +37554011000036103 Fluvax Junior 2008 injection suspension, 10 x 0.25 mL syringes 149127 36822011000036106 Fluvax Junior 2008 injection suspension, 10 x 0.25 mL syringes 36081011000036108 Fluvax Junior 2008 injection suspension, 0.25 mL syringe 11841000168106 Fluvax Junior 2008 11841000168106 Fluvax Junior 2008 38713011000036101 influenza trivalent child vaccine 2008 injection, 10 x 0.25 mL syringes 33692011000036101 influenza trivalent child vaccine 2008 injection, 0.25 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +659081000168108 Mizart HCT 80/25 mg multilayer tablet, 28, bottle 171088 659061000168104 Mizart HCT 80/25 mg multilayer tablet, 28 659051000168101 Mizart HCT 80/25 mg multilayer tablet 659041000168103 Mizart HCT 80/25 mg 659041000168103 Mizart HCT 80/25 mg 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +713701000168104 Roxtine 20 mg film-coated tablet, 30, blister pack 176977 713691000168104 Roxtine 20 mg film-coated tablet, 30 713681000168102 Roxtine 20 mg film-coated tablet 713671000168100 Roxtine 713671000168100 Roxtine 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +728161000168103 Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation, vials 61565 728151000168100 Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation 40170011000036106 Imigran S 10 mg/actuation nasal spray, 1 actuation 18041000168106 Imigran S 18041000168106 Imigran S 728141000168102 sumatriptan 10 mg/actuation nasal spray, 2 x 1 actuation 45208011000036106 sumatriptan 10 mg/actuation nasal spray, 1 actuation 21708011000036102 sumatriptan +933239011000036101 Fentanyl (Sandoz) 75 microgram/hour patch, 1, sachet 152568 933235561000036106 Fentanyl (Sandoz) 75 microgram/hour patch, 1 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235571000036103 fentanyl 75 microgram/hour patch, 1 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +967221000168102 Febridol Plus uncoated tablet, 30, blister pack 154874 967211000168109 Febridol Plus uncoated tablet, 30 51998011000036101 Febridol Plus uncoated tablet 44291000168106 Febridol Plus 44291000168106 Febridol Plus 967201000168106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 30 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +670601000168102 Amlodipine/Atorvastatin 10/20 (Blooms The Chemist) film-coated tablet, 30, blister pack 214384 670591000168109 Amlodipine/Atorvastatin 10/20 (Blooms The Chemist) film-coated tablet, 30 670581000168106 Amlodipine/Atorvastatin 10/20 (Blooms The Chemist) film-coated tablet 670571000168108 Amlodipine/Atorvastatin 10/20 (Blooms The Chemist) 670571000168108 Amlodipine/Atorvastatin 10/20 (Blooms The Chemist) 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +79695011000036103 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack, composite pack 157781 79511011000036108 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack 36204011000036103 Bicnu (carmustine 100 mg) powder for injection, vial 47991000168108 Bicnu 47991000168108 Bicnu 79826011000036105 carmustine 100 mg injection [1 vial] (&) inert substance diluent [3 mL ampoule], 1 pack 37976011000036102 carmustine 100 mg injection, vial 21824011000036101 carmustine +79695011000036103 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack, composite pack 157781 79511011000036108 Bicnu (1 x 100 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack 641161000168103 Bicnu (inert substance) diluent, 3 mL ampoule 47991000168108 Bicnu 47991000168108 Bicnu 79826011000036105 carmustine 100 mg injection [1 vial] (&) inert substance diluent [3 mL ampoule], 1 pack 632311000168109 inert substance diluent, 3 mL ampoule 21220011000036103 inert substance +996141000168100 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24, blister pack 169047 996131000168109 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24 996091000168107 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 996001000168101 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 995981000168100 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge 86203011000036105 bromhexine + cetylpyridinium +1001761000168102 Pregabalin (Apo) 50 mg hard capsule, 56, blister pack 193256 1001021000168105 Pregabalin (Apo) 50 mg hard capsule, 56 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1007651000168104 Morphine MR (Mylan) 30 mg modified release tablet, 60, blister pack 225422 1007641000168101 Morphine MR (Mylan) 30 mg modified release tablet, 60 1007591000168105 Morphine MR (Mylan) 30 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 35166011000036105 morphine sulfate pentahydrate 30 mg modified release tablet, 60 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +20284011000036105 Metolol 50 mg uncoated tablet, 100, blister pack 75460 13493011000036108 Metolol 50 mg uncoated tablet, 100 6775011000036104 Metolol 50 mg uncoated tablet 3932011000036107 Metolol 3932011000036107 Metolol 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +795911000168100 Aciclovir (Watson) 400 mg uncoated tablet, 100, blister pack 202882 795901000168103 Aciclovir (Watson) 400 mg uncoated tablet, 100 795851000168107 Aciclovir (Watson) 400 mg uncoated tablet 795831000168101 Aciclovir (Watson) 795831000168101 Aciclovir (Watson) 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +60720011000036109 Sinus and Hayfever Relief (Amcal) soft capsule, 12, strip pack 45695 56678011000036109 Sinus and Hayfever Relief (Amcal) soft capsule, 12 54029011000036102 Sinus and Hayfever Relief (Amcal) soft capsule 53513011000036109 Sinus and Hayfever Relief (Amcal) 53513011000036109 Sinus and Hayfever Relief (Amcal) 63504011000036105 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg capsule, 12 61995011000036108 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg capsule 61737011000036102 pseudoephedrine + chlorphenamine +19999011000036106 Campral 333 mg enteric tablet, 180, blister pack 68410 13236011000036106 Campral 333 mg enteric tablet, 180 6518011000036102 Campral 333 mg enteric tablet 4045011000036109 Campral 4045011000036109 Campral 27638011000036103 acamprosate calcium 333 mg enteric tablet, 180 22975011000036108 acamprosate calcium 333 mg enteric tablet 21853011000036102 acamprosate +69662011000036107 Gasbusters 200 mg soft capsule, 24, blister pack 80295 67461011000036108 Gasbusters 200 mg soft capsule, 24 65673011000036103 Gasbusters 200 mg soft capsule 65074011000036109 Gasbusters 65074011000036109 Gasbusters 71989011000036107 simethicone 200 mg capsule, 24 70273011000036107 simethicone 200 mg capsule 69826011000036109 simethicone +1118471000168104 Quetin 300 mg film-coated tablet, 100, blister pack 204827 1118461000168105 Quetin 300 mg film-coated tablet, 100 1118411000168107 Quetin 300 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +759781000168102 Cyklokapron 500 mg/5 mL injection solution, 5 x 5 mL ampoules 160658 759771000168100 Cyklokapron 500 mg/5 mL injection solution, 5 x 5 mL ampoules 759761000168106 Cyklokapron 500 mg/5 mL injection solution, 5 mL ampoule 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 699121000168101 tranexamic acid 500 mg/5 mL injection, 5 x 5 mL ampoules 699101000168105 tranexamic acid 500 mg/5 mL injection, ampoule 21746011000036108 tranexamic acid +903891000168108 Celocox 200 mg hard capsule, 60, blister pack 212792 903881000168105 Celocox 200 mg hard capsule, 60 903791000168103 Celocox 200 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +978781000168102 Lovenox 20 mg/0.2 mL injection solution, 10 x 0.2 mL syringes 80265 978771000168100 Lovenox 20 mg/0.2 mL injection solution, 10 x 0.2 mL syringes 978741000168107 Lovenox 20 mg/0.2 mL injection solution, 0.2 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 33800011000036109 enoxaparin sodium 20 mg/0.2 mL injection, 10 x 0.2 mL syringes 33672011000036106 enoxaparin sodium 20 mg/0.2 mL injection, syringe 21553011000036103 enoxaparin sodium +43629011000036104 Simvabell 5 mg film-coated tablet, 100, bottle 100884 41099011000036108 Simvabell 5 mg film-coated tablet, 100 5425011000036107 Simvabell 5 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46085011000036109 simvastatin 5 mg tablet, 100 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +997511000168109 Olanzapine ODT (Apotex) 5 mg orally disintegrating tablet, 28, blister pack 158968 997501000168106 Olanzapine ODT (Apotex) 5 mg orally disintegrating tablet, 28 997491000168104 Olanzapine ODT (Apotex) 5 mg orally disintegrating tablet 997061000168103 Olanzapine ODT (Apotex) 997061000168103 Olanzapine ODT (Apotex) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +931637011000036101 Aranesp with Automatic Needle Guard 80 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 166097 930797011000036107 Aranesp with Automatic Needle Guard 80 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 930052011000036100 Aranesp with Automatic Needle Guard 80 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27858011000036105 darbepoetin alfa 80 microgram/0.4 mL injection, 4 x 0.4 mL syringes 23186011000036103 darbepoetin alfa 80 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +933239031000036105 Fentanyl (Sandoz) 75 microgram/hour patch, 2, sachet 152568 933235601000036106 Fentanyl (Sandoz) 75 microgram/hour patch, 2 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235611000036108 fentanyl 75 microgram/hour patch, 2 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +81101011000036108 Flagyl 400 mg uncoated tablet, 5, blister pack 160174 80606011000036105 Flagyl 400 mg uncoated tablet, 5 5955011000036105 Flagyl 400 mg uncoated tablet 6921000168102 Flagyl 6921000168102 Flagyl 26943011000036107 metronidazole 400 mg tablet, 5 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +933211221000036108 Roflo 500 mg film-coated tablet, 100, blister pack 125323 933200421000036100 Roflo 500 mg film-coated tablet, 100 933194341000036109 Roflo 500 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 933199791000036103 ciprofloxacin 500 mg tablet, 100 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +663331000168101 Fluconazole One (Chemmart) 150 mg hard capsule, 1, blister pack 197583 663321000168104 Fluconazole One (Chemmart) 150 mg hard capsule, 1 663311000168106 Fluconazole One (Chemmart) 150 mg hard capsule 663301000168108 Fluconazole One (Chemmart) 663301000168108 Fluconazole One (Chemmart) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +17971011000036109 Pravastatin Sodium (RL) 40 mg uncoated tablet, 30, blister pack 119213 11611011000036101 Pravastatin Sodium (RL) 40 mg uncoated tablet, 30 6011011000036109 Pravastatin Sodium (RL) 40 mg uncoated tablet 3142011000036109 Pravastatin Sodium (RL) 3142011000036109 Pravastatin Sodium (RL) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +131211000036104 Candesartan Cilexetil (GH) 32 mg uncoated tablet, 30, bottle 195488 128291000036104 Candesartan Cilexetil (GH) 32 mg uncoated tablet, 30 124951000036106 Candesartan Cilexetil (GH) 32 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +20420011000036106 Baclofen (GenRx) 25 mg tablet, 100, bottle 77576 13627011000036109 Baclofen (GenRx) 25 mg tablet, 100 6910011000036105 Baclofen (GenRx) 25 mg tablet 2976011000036103 Baclofen (GenRx) 2976011000036103 Baclofen (GenRx) 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +34699011000036109 MS Contin 10 mg modified release tablet, 60, blister pack 14461 34283011000036109 MS Contin 10 mg modified release tablet, 60 5826011000036105 MS Contin 10 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +34699011000036109 MS Contin 10 mg modified release tablet, 60, blister pack 210776 34283011000036109 MS Contin 10 mg modified release tablet, 60 5826011000036105 MS Contin 10 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +131201000036101 Candesartan Cilexetil (GH) 16 mg uncoated tablet, 30, blister pack 195485 128361000036101 Candesartan Cilexetil (GH) 16 mg uncoated tablet, 30 124961000036109 Candesartan Cilexetil (GH) 16 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +85301000036109 Lamotrigine (Aspen) 25 mg tablet, 56, blister pack 150751 84451000036103 Lamotrigine (Aspen) 25 mg tablet, 56 84191000036100 Lamotrigine (Aspen) 25 mg tablet 83951000036105 Lamotrigine (Aspen) 83951000036105 Lamotrigine (Aspen) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +853471000168107 Alphastat 40 mg film-coated tablet, 30, blister pack 212163 853461000168101 Alphastat 40 mg film-coated tablet, 30 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +853471000168107 Alphastat 40 mg film-coated tablet, 30, blister pack 187387 853461000168101 Alphastat 40 mg film-coated tablet, 30 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +19665011000036106 Oncotice BCG 500 million CFU powder for injection, 3 vials 59912 12928011000036104 Oncotice BCG 500 million CFU powder for injection, 3 vials 6218011000036106 Oncotice BCG 500 million CFU powder for injection, 500 million CFU vial 59411000168102 Oncotice BCG 59411000168102 Oncotice BCG 27443011000036106 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Tice strain 500 million CFU injection, 3 vials 22790011000036103 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Tice strain 500 million CFU injection, vial 32629011000036106 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Tice strain +44580011000036106 Vfend 200 mg powder for injection, 1 vial 82503 42033011000036104 Vfend 200 mg powder for injection, 1 vial 40332011000036100 Vfend 200 mg powder for injection, 200 mg vial 39743011000036106 Vfend 39743011000036106 Vfend 46801011000036109 voriconazole 200 mg injection, 1 vial 45322011000036105 voriconazole 200 mg injection, vial 44875011000036105 voriconazole +20042011000036102 Norditropin Simplexx 10 mg/1.5 mL injection solution, 1.5 mL cartridge 69361 13274011000036101 Norditropin Simplexx 10 mg/1.5 mL injection solution, 1.5 mL cartridge 6556011000036108 Norditropin Simplexx 10 mg/1.5 mL injection solution, 1.5 mL cartridge 45201000168101 Norditropin Simplexx 45201000168101 Norditropin Simplexx 28299011000036108 somatropin 10 mg/1.5 mL injection, 1.5 mL cartridge 23613011000036108 somatropin 10 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +86865011000036102 Ichthammol (Gold Cross) 25% ointment, 25 g, jar 14075 86751011000036109 Ichthammol (Gold Cross) 25% ointment, 25 g 86628011000036106 Ichthammol (Gold Cross) 25% ointment 86598011000036105 Ichthammol (Gold Cross) 86598011000036105 Ichthammol (Gold Cross) 87015011000036101 ichthammol 25% ointment, 25 g 86926011000036108 ichthammol 25% ointment 21816011000036101 ichthammol +43566011000036109 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 100 mL vial 116882 41180011000036109 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 100 mL vial 39918011000036100 Ciprofloxacin (Sandoz) 200 mg/100 mL intravenous infusion injection, 100 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46326011000036107 ciprofloxacin 200 mg/100 mL injection, 100 mL vial 45081011000036109 ciprofloxacin 200 mg/100 mL injection, vial 21245011000036105 ciprofloxacin +1066631000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 96, blister pack 161545 1066621000168106 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 96 1066481000168107 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 83005011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 96 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +715231000168101 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g, tube 101999 715221000168104 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g 715181000168107 Clotrimazole 6 Day (Guardian) 1% vaginal cream 28141000168101 Clotrimazole 6 Day (Guardian) 28141000168101 Clotrimazole 6 Day (Guardian) 715211000168106 clotrimazole 1% vaginal cream, 30 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +20178011000036105 Cephalexin (Chemmart) 250 mg hard capsule, 20, blister pack 73868 13401011000036109 Cephalexin (Chemmart) 250 mg hard capsule, 20 6686011000036107 Cephalexin (Chemmart) 250 mg hard capsule 3701011000036103 Cephalexin (Chemmart) 3701011000036103 Cephalexin (Chemmart) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +923825011000036106 Lisinopril (Sandoz) 10 mg tablet, 30, blister pack 158101 923371011000036105 Lisinopril (Sandoz) 10 mg tablet, 30 923042011000036102 Lisinopril (Sandoz) 10 mg tablet 79351011000036102 Lisinopril (Sandoz) 79351011000036102 Lisinopril (Sandoz) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +749771000168103 Tacrolimus (Actavis) 500 microgram hard capsule, 100, blister pack 224280 749761000168109 Tacrolimus (Actavis) 500 microgram hard capsule, 100 749711000168106 Tacrolimus (Actavis) 500 microgram hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +741091000168103 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 231039 741081000168101 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 741061000168105 Bemfola 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741071000168104 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, 0.125 mL injection device 741051000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, injection device 21352011000036107 follitropin alfa +17807011000036100 Ondansetron Zydis (RL) 8 mg wafer, 4, blister pack 116439 11527011000036109 Ondansetron Zydis (RL) 8 mg wafer, 4 5541011000036103 Ondansetron Zydis (RL) 8 mg wafer 48431000168103 Ondansetron Zydis (RL) 48431000168103 Ondansetron Zydis (RL) 27519011000036109 ondansetron 8 mg wafer, 4 22859011000036100 ondansetron 8 mg wafer 21545011000036100 ondansetron +1007611000168100 Morphine MR (Mylan) 30 mg modified release tablet, 20, blister pack 225422 1007601000168103 Morphine MR (Mylan) 30 mg modified release tablet, 20 1007591000168105 Morphine MR (Mylan) 30 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 27107011000036109 morphine sulfate pentahydrate 30 mg modified release tablet, 20 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +834771000168103 Famciclovir (AN) 500 mg film-coated tablet, 20, blister pack 195174 834761000168109 Famciclovir (AN) 500 mg film-coated tablet, 20 656531000168109 Famciclovir (AN) 500 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +968671000168100 Simvastatin (Spirit) 5 mg film-coated tablet, 30, blister pack 116691 968661000168106 Simvastatin (Spirit) 5 mg film-coated tablet, 30 968651000168109 Simvastatin (Spirit) 5 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +61250011000036105 Nicotine (Amcal) 7 mg/24 hours patch, 28, sachet 77117 57186011000036101 Nicotine (Amcal) 7 mg/24 hours patch, 28 54229011000036107 Nicotine (Amcal) 7 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63758011000036106 nicotine 7 mg/24 hours patch, 28 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +18124011000036101 Simvasyn 20 mg film-coated tablet, 30, blister pack 124691 11775011000036101 Simvasyn 20 mg film-coated tablet, 30 5338011000036105 Simvasyn 20 mg film-coated tablet 4188011000036104 Simvasyn 4188011000036104 Simvasyn 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +771341000168107 Genox 20 mg uncoated tablet, 30, blister pack 40065 771331000168103 Genox 20 mg uncoated tablet, 30 5778011000036107 Genox 20 mg uncoated tablet 3564011000036100 Genox 3564011000036100 Genox 26647011000036104 tamoxifen 20 mg tablet, 30 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +814551000168108 Levetiracetam (AFT) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 218280 814541000168106 Levetiracetam (AFT) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 814531000168102 Levetiracetam (AFT) 500 mg/5 mL concentrated injection, 5 mL vial 707391000168100 Levetiracetam (AFT) 707391000168100 Levetiracetam (AFT) 120611000036108 levetiracetam 500 mg/5 mL injection, 10 x 5 mL vials 45019011000036106 levetiracetam 500 mg/5 mL injection, vial 21766011000036102 levetiracetam +933099011000036102 Aquinafil 20 mg film-coated tablet, 30, blister pack 173710 932906011000036107 Aquinafil 20 mg film-coated tablet, 30 932760011000036101 Aquinafil 20 mg film-coated tablet 932703011000036108 Aquinafil 932703011000036108 Aquinafil 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +909581000168109 Cisatracurium (HHH) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 226856 909571000168106 Cisatracurium (HHH) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 909561000168100 Cisatracurium (HHH) 10 mg/5 mL injection solution, 5 mL ampoule 909461000168101 Cisatracurium (HHH) 909461000168101 Cisatracurium (HHH) 161571000036104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL ampoules 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +19031011000036109 Panafcort 1 mg uncoated tablet, 100, bottle 39879 12336011000036107 Panafcort 1 mg uncoated tablet, 100 5401011000036100 Panafcort 1 mg uncoated tablet 3838011000036103 Panafcort 3838011000036103 Panafcort 28331011000036106 prednisone 1 mg tablet, 100 23643011000036101 prednisone 1 mg tablet 21496011000036106 prednisone +44476011000036105 Cardizem CD 360 mg modified release capsule, 10, blister pack 75252 41932011000036100 Cardizem CD 360 mg modified release capsule, 10 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46719011000036107 diltiazem hydrochloride 360 mg modified release capsule, 10 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +19184011000036109 Uromitexan 1 g/10 mL concentrated injection, 15 x 10 mL ampoules 46629 12479011000036109 Uromitexan 1 g/10 mL concentrated injection, 15 x 10 mL ampoules 4453011000036101 Uromitexan 1 g/10 mL concentrated injection, 10 mL ampoule 4340011000036101 Uromitexan 4340011000036101 Uromitexan 27146011000036104 mesna 1 g/10 mL injection, 15 x 10 mL ampoules 22509011000036105 mesna 1 g/10 mL injection, ampoule 21302011000036101 mesna +767091000168104 Risperidone (Amneal) 1 mg film-coated tablet, 60, blister pack 159973 767081000168102 Risperidone (Amneal) 1 mg film-coated tablet, 60 767071000168100 Risperidone (Amneal) 1 mg film-coated tablet 767061000168106 Risperidone (Amneal) 767061000168106 Risperidone (Amneal) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +24351000036102 Torlemo DT 200 mg tablet, 56, blister pack 150766 22321000036104 Torlemo DT 200 mg tablet, 56 20711000036106 Torlemo DT 200 mg tablet 19101000168100 Torlemo DT 19101000168100 Torlemo DT 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +882231000168105 Spedra 50 mg uncoated tablet, 4, blister pack 228474 882221000168107 Spedra 50 mg uncoated tablet, 4 882111000168105 Spedra 50 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882211000168100 avanafil 50 mg tablet, 4 882101000168107 avanafil 50 mg tablet 882091000168102 avanafil +920650011000036108 Ramipril (GA) 10 mg hard capsule, 30, blister pack 134803 920393011000036103 Ramipril (GA) 10 mg hard capsule, 30 920156011000036105 Ramipril (GA) 10 mg hard capsule 920107011000036103 Ramipril (GA) 920107011000036103 Ramipril (GA) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +990341000168104 Mometasone Nasal Allergy Relief (Blooms The Chemist) 50 microgram/actuation nasal spray, 65 actuations, pump pack 265818 990331000168108 Mometasone Nasal Allergy Relief (Blooms The Chemist) 50 microgram/actuation nasal spray, 65 actuations 990321000168105 Mometasone Nasal Allergy Relief (Blooms The Chemist) 50 microgram/actuation nasal spray, actuation 990311000168103 Mometasone Nasal Allergy Relief (Blooms The Chemist) 990311000168103 Mometasone Nasal Allergy Relief (Blooms The Chemist) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +698051000168102 Zilfojim ODT 8 mg orally disintegrating tablet, 10, blister pack 196809 698041000168104 Zilfojim ODT 8 mg orally disintegrating tablet, 10 698011000168103 Zilfojim ODT 8 mg orally disintegrating tablet 697891000168103 Zilfojim ODT 697891000168103 Zilfojim ODT 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +20633011000036103 Trileptal 60 mg/mL oral liquid suspension, 250 mL, bottle 81195 13813011000036101 Trileptal 60 mg/mL oral liquid suspension, 250 mL 7099011000036105 Trileptal 60 mg/mL oral liquid suspension 4244011000036101 Trileptal 4244011000036101 Trileptal 27946011000036102 oxcarbazepine 60 mg/mL oral liquid, 250 mL 23270011000036105 oxcarbazepine 60 mg/mL oral liquid 21420011000036102 oxcarbazepine +37571011000036103 Ephedrine Sulfate (DBL) 30 mg/mL injection solution, 5 x 1 mL ampoules 16325 36838011000036107 Ephedrine Sulfate (DBL) 30 mg/mL injection solution, 5 x 1 mL ampoules 36166011000036108 Ephedrine Sulfate (DBL) 30 mg/mL injection solution, ampoule 35884011000036109 Ephedrine Sulfate (DBL) 35884011000036109 Ephedrine Sulfate (DBL) 38727011000036101 ephedrine sulfate 30 mg/mL injection, 5 x 1 mL ampoules 37957011000036101 ephedrine sulfate 30 mg/mL injection, ampoule 37740011000036107 ephedrine +18533011000036105 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 5 x 2 mL vials 16375 12113011000036102 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 5 x 2 mL vials 4568011000036105 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 2 mL vial 3506011000036109 Dexamethasone Phosphate (DBL) 3506011000036109 Dexamethasone Phosphate (DBL) 26923011000036109 dexamethasone phosphate 8 mg/2 mL injection, 5 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +18533011000036105 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 5 x 2 mL vials 178774 12113011000036102 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 5 x 2 mL vials 4568011000036105 Dexamethasone Phosphate (DBL) 8 mg/2 mL injection solution, 2 mL vial 3506011000036109 Dexamethasone Phosphate (DBL) 3506011000036109 Dexamethasone Phosphate (DBL) 26923011000036109 dexamethasone phosphate 8 mg/2 mL injection, 5 x 2 mL vials 22300011000036101 dexamethasone phosphate 8 mg/2 mL injection, vial 21511011000036107 dexamethasone phosphate +44234011000036103 Flixotide Junior Accuhaler 50 microgram/actuation powder for inhalation, 28 actuations, blister pack 58440 41706011000036104 Flixotide Junior Accuhaler 50 microgram/actuation powder for inhalation, 28 actuations 40154011000036104 Flixotide Junior Accuhaler 50 microgram/actuation powder for inhalation, actuation 40261000168108 Flixotide Junior Accuhaler 40261000168108 Flixotide Junior Accuhaler 46518011000036103 fluticasone propionate 50 microgram/actuation powder for inhalation, 28 actuations 76311000036106 fluticasone propionate 50 microgram/actuation powder for inhalation, actuation 861061000168102 fluticasone propionate +993081000168100 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 56, blister pack 201680 993071000168103 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 56 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 993061000168109 clopidogrel 75 mg + aspirin 75 mg tablet, 56 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +947031000168100 Goricap 2 mg hard capsule, 28, blister pack 139687 947021000168103 Goricap 2 mg hard capsule, 28 947011000168105 Goricap 2 mg hard capsule 941911000168103 Goricap 941911000168103 Goricap 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +696441000168105 Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL, bottle (Old Formulation 2010) 19312 696431000168101 Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL (Old Formulation 2010) 696411000168106 Compound Benzoin Friar's Balsam (Orion) tincture (Old Formulation 2010) 696391000168106 Compound Benzoin Friar's Balsam (Orion) 696391000168106 Compound Benzoin Friar's Balsam (Orion) 696421000168104 benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture, 50 mL 696401000168108 benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture 77450011000036109 benzoin Sumatra + aloe vera + storax prepared + tolu balsam +981831000168106 Relpax 20 mg film-coated tablet, 6, blister pack 68354 981821000168108 Relpax 20 mg film-coated tablet, 6 981641000168103 Relpax 20 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 981811000168101 eletriptan 20 mg tablet, 6 981631000168107 eletriptan 20 mg tablet 920818011000036107 eletriptan +650361000168105 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 14, blister pack 202108 650351000168108 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 14 650321000168100 Pritor/Amlodipine 80 mg/5 mg multilayer tablet 650241000168100 Pritor/Amlodipine 80 mg/5 mg 650241000168100 Pritor/Amlodipine 80 mg/5 mg 932421011000036105 telmisartan 80 mg + amlodipine 5 mg tablet, 14 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +728041000168101 Zemplar 1 microgram soft capsule, 7, blister pack 121760 728031000168105 Zemplar 1 microgram soft capsule, 7 39897011000036109 Zemplar 1 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 728021000168107 paricalcitol 1 microgram capsule, 7 45025011000036103 paricalcitol 1 microgram capsule 44899011000036102 paricalcitol +934151000168101 Centevo 175/43.75/200 mg film-coated tablet, 10, bottle 238858 934141000168103 Centevo 175/43.75/200 mg film-coated tablet, 10 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934131000168107 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 10 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +19547011000036100 Serophene 50 mg uncoated tablet, 10, blister pack 56755 12819011000036107 Serophene 50 mg uncoated tablet, 10 6110011000036107 Serophene 50 mg uncoated tablet 4294011000036108 Serophene 4294011000036108 Serophene 27376011000036106 clomifene citrate 50 mg tablet, 10 23588011000036107 clomifene citrate 50 mg tablet 21599011000036107 clomifene +656301000168106 Mirtazapine ODT (AN) 30 mg orally disintegrating tablet, 30, blister pack 183408 656291000168105 Mirtazapine ODT (AN) 30 mg orally disintegrating tablet, 30 656281000168107 Mirtazapine ODT (AN) 30 mg orally disintegrating tablet 656241000168102 Mirtazapine ODT (AN) 656241000168102 Mirtazapine ODT (AN) 47691000036107 mirtazapine 30 mg orally disintegrating tablet, 30 47561000036104 mirtazapine 30 mg orally disintegrating tablet 21463011000036102 mirtazapine +811581000168103 Afinitor 3 mg dispersible tablet, 120, blister pack 200204 811571000168101 Afinitor 3 mg dispersible tablet, 120 811431000168103 Afinitor 3 mg dispersible tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 811561000168107 everolimus 3 mg dispersible tablet, 120 811421000168101 everolimus 3 mg dispersible tablet 21615011000036103 everolimus +30451000036101 Paracetamol Children's Syrup 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid solution, 200 mL, bottle 175029 28571000036106 Paracetamol Children's Syrup 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid solution, 200 mL 27031000036101 Paracetamol Children's Syrup 1 to 5 Years (Pharmacy Choice) 120 mg/5 mL oral liquid solution, 5 mL 18541000168100 Paracetamol Children's Syrup 1 to 5 Years (Pharmacy Choice) 18541000168100 Paracetamol Children's Syrup 1 to 5 Years (Pharmacy Choice) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +869371000168105 Eplerenone (AN) 50 mg film-coated tablet, 30, blister pack 231455 869361000168104 Eplerenone (AN) 50 mg film-coated tablet, 30 869331000168107 Eplerenone (AN) 50 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 26534011000036102 eplerenone 50 mg tablet, 30 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +748401000168106 Morphine MR (CH) 30 mg modified release tablet, 60, blister pack 225430 748391000168109 Morphine MR (CH) 30 mg modified release tablet, 60 748301000168103 Morphine MR (CH) 30 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 35166011000036105 morphine sulfate pentahydrate 30 mg modified release tablet, 60 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +865071000168105 Amitriptyline (CH) 10 mg tablet, 100, blister pack 232122 865061000168104 Amitriptyline (CH) 10 mg tablet, 100 865031000168107 Amitriptyline (CH) 10 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +732411000168107 Hydralyte Ready to Use Apple Blackcurrant oral liquid, 1 L, bottle 117636 732401000168109 Hydralyte Ready to Use Apple Blackcurrant oral liquid, 1 L 732391000168107 Hydralyte Ready to Use Apple Blackcurrant oral liquid 33541000168104 Hydralyte Ready to Use 33541000168104 Hydralyte Ready to Use 81754011000036109 sodium chloride 2.5 mg/mL + potassium citrate monohydrate 2.2 mg (potassium 0.02 mmol)/mL + glucose monohydrate 16 mg/mL + citrate monohydrate 4.8 mg/mL oral liquid, 1 L 81307011000036107 sodium chloride 2.5 mg/mL + potassium citrate monohydrate 2.2 mg (potassium 0.02 mmol)/mL + glucose monohydrate 16 mg/mL + citrate monohydrate 4.8 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +1007491000168106 Morphine MR (Mylan) 100 mg modified release tablet, 28, blister pack 225424 1007481000168108 Morphine MR (Mylan) 100 mg modified release tablet, 28 1007421000168109 Morphine MR (Mylan) 100 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 929758011000036101 morphine sulfate pentahydrate 100 mg modified release tablet, 28 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +84261011000036100 Liquigen oral liquid emulsion, 250 mL bottle 83956011000036101 Liquigen oral liquid emulsion, 250 mL bottle 449921000168107 Liquigen oral liquid emulsion, 250 mL bottle 83570011000036107 Liquigen 83570011000036107 Liquigen 84611011000036101 medium chain triglycerides oral liquid, 250 mL bottle 449721000168105 medium chain triglycerides oral liquid, 250 mL bottle 50747011000036106 medium chain triglycerides +923777011000036103 Tacrolimus (Sandoz) 500 microgram hard capsule, 100, blister pack 153744 923337011000036100 Tacrolimus (Sandoz) 500 microgram hard capsule, 100 923015011000036101 Tacrolimus (Sandoz) 500 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +728071000168108 Exelon-10 9.5 mg/24 hours patch, 7, sachet 133428 728061000168102 Exelon-10 9.5 mg/24 hours patch, 7 36012011000036100 Exelon-10 9.5 mg/24 hours patch 56281000168104 Exelon-10 56281000168104 Exelon-10 728051000168104 rivastigmine 9.5 mg/24 hours patch, 7 37923011000036109 rivastigmine 9.5 mg/24 hours patch 21413011000036101 rivastigmine +673331000168105 Incruse Ellipta 62.5 microgram powder for inhalation, 30 actuations, blister pack 211601 673321000168107 Incruse Ellipta 62.5 microgram powder for inhalation, 30 actuations 673301000168103 Incruse Ellipta 62.5 microgram powder for inhalation, actuation 673171000168106 Incruse Ellipta 673171000168106 Incruse Ellipta 673311000168100 umeclidinium 62.5 microgram powder for inhalation, 30 actuations 673291000168104 umeclidinium 62.5 microgram powder for inhalation, actuation 673281000168102 umeclidinium +679281000168100 Benadryl Nightime Raspberry oral liquid solution, 200 mL, bottle 81664 679271000168103 Benadryl Nightime Raspberry oral liquid solution, 200 mL 679241000168105 Benadryl Nightime Raspberry oral liquid solution, 5 mL 679121000168108 Benadryl Nightime 679121000168108 Benadryl Nightime 63799011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 200 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +795951000168104 Midazolam (Accord) 5 mg/mL injection solution, 1 mL ampoule 207231 795941000168101 Midazolam (Accord) 5 mg/mL injection solution, 1 mL ampoule 795931000168105 Midazolam (Accord) 5 mg/mL injection solution, ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 664011000168107 midazolam 5 mg/mL injection, 1 mL ampoule 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +59692011000036109 EAA Supplement powder for oral liquid, 50 x 12.5 g sachets 55626011000036107 EAA Supplement powder for oral liquid, 50 x 12.5 g sachets 290761000168103 EAA Supplement powder for oral liquid, 12.5 g sachet 53280011000036109 EAA Supplement 53280011000036109 EAA Supplement 63078011000036105 essential amino acids formula with vitamins and minerals powder for oral liquid, 50 x 12.5 g sachets 290531000168102 essential amino acids formula with vitamins and minerals powder for oral liquid, 12.5 g sachet 61822011000036104 essential amino acids formula with vitamins and minerals +800251000168104 Abyraz 30 mg uncoated tablet, 56, blister pack 159504 800241000168101 Abyraz 30 mg uncoated tablet, 56 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787821000168108 aripiprazole 30 mg tablet, 56 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +21163011000036101 Seaze 100 mg tablet, 56, blister pack 99038 14305011000036102 Seaze 100 mg tablet, 56 7591011000036108 Seaze 100 mg tablet 3240011000036108 Seaze 3240011000036108 Seaze 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +900921000168109 Amoxycillin (Actavis) 500 mg hard capsule, 30, blister pack 198124 900911000168102 Amoxycillin (Actavis) 500 mg hard capsule, 30 900881000168102 Amoxycillin (Actavis) 500 mg hard capsule 900721000168107 Amoxycillin (Actavis) 900721000168107 Amoxycillin (Actavis) 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +980151000168104 Valtrex 250 mg film-coated tablet, 60, blister pack 73916 980141000168101 Valtrex 250 mg film-coated tablet, 60 980121000168107 Valtrex 250 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 980131000168105 valaciclovir 250 mg tablet, 60 980111000168100 valaciclovir 250 mg tablet 21929011000036105 valaciclovir +18242011000036105 Solone 5 mg uncoated tablet, 60, bottle 13469 11992011000036105 Solone 5 mg uncoated tablet, 60 5216011000036109 Solone 5 mg uncoated tablet 3662011000036102 Solone 3662011000036102 Solone 27039011000036100 prednisolone 5 mg tablet, 60 22412011000036109 prednisolone 5 mg tablet 21273011000036105 prednisolone +1065261000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 24, blister pack 294343 1065251000168108 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet, 24 1065171000168105 Paracetamol plus Codeine 500/9.6 (Medreich) uncoated tablet 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 1065161000168104 Paracetamol plus Codeine 500/9.6 (Medreich) 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +1105461000168100 Seroquel 200 mg film-coated tablet, 20, blister pack 58114 1105451000168102 Seroquel 200 mg film-coated tablet, 20 6152011000036102 Seroquel 200 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +818971000168104 Combigesic film-coated tablet, 2, blister pack 268812 818961000168105 Combigesic film-coated tablet, 2 818951000168108 Combigesic film-coated tablet 818911000168107 Combigesic 818911000168107 Combigesic 812811000168104 paracetamol 500 mg + ibuprofen 200 mg tablet, 2 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +693711000168105 Velphoro 2.5 g (iron 500 mg) chewable tablet, 90, blister pack 216701 693701000168107 Velphoro 2.5 g (iron 500 mg) chewable tablet, 90 693651000168102 Velphoro 2.5 g (iron 500 mg) chewable tablet 693111000168106 Velphoro 693111000168106 Velphoro 693691000168107 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet, 90 693641000168104 sucroferric oxyhydroxide 2.5 g (iron 500 mg) chewable tablet 693631000168108 iron +921918011000036109 Vitamin D3 (Biological Therapies) 25 microgram (1000 units)/0.2 mL oral liquid emulsion, 50 mL, dropper container 159452 921477011000036101 Vitamin D3 (Biological Therapies) 25 microgram (1000 units)/0.2 mL oral liquid emulsion, 50 mL 921025011000036102 Vitamin D3 (Biological Therapies) 25 microgram (1000 units)/0.2 mL oral liquid emulsion, 0.2 mL 920962011000036103 Vitamin D3 (Biological Therapies) 920962011000036103 Vitamin D3 (Biological Therapies) 922605011000036102 colecalciferol 25 microgram (1000 units)/0.2 mL oral liquid, 50 mL 922102011000036106 colecalciferol 25 microgram (1000 units)/0.2 mL oral liquid 77447011000036108 colecalciferol +44689011000036109 Malarone Junior 62.5/25 film-coated tablet, 60, blister pack 92855 42138011000036100 Malarone Junior 62.5/25 film-coated tablet, 60 40360011000036105 Malarone Junior 62.5/25 film-coated tablet 22191000168106 Malarone Junior 62.5/25 22191000168106 Malarone Junior 62.5/25 46899011000036106 atovaquone 62.5 mg + proguanil hydrochloride 25 mg tablet, 60 45338011000036106 atovaquone 62.5 mg + proguanil hydrochloride 25 mg tablet 44920011000036109 atovaquone + proguanil +952961000168109 Valproate (Winthrop) 100 mg uncoated tablet, 100, blister pack 125619 952951000168107 Valproate (Winthrop) 100 mg uncoated tablet, 100 952941000168105 Valproate (Winthrop) 100 mg uncoated tablet 952931000168101 Valproate (Winthrop) 952931000168101 Valproate (Winthrop) 26904011000036100 valproate sodium 100 mg tablet, 100 22281011000036102 valproate sodium 100 mg tablet 21225011000036107 valproate +659591000168101 Telmisartan HCTZ 80/25mg (Terry White Chemists) multilayer tablet, 28, blister pack 198231 659581000168104 Telmisartan HCTZ 80/25mg (Terry White Chemists) multilayer tablet, 28 659571000168102 Telmisartan HCTZ 80/25mg (Terry White Chemists) multilayer tablet 659561000168108 Telmisartan HCTZ 80/25mg (Terry White Chemists) 659561000168108 Telmisartan HCTZ 80/25mg (Terry White Chemists) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +79721011000036102 Cafergot sugar coated tablet, 20, bottle 62251 79532011000036105 Cafergot sugar coated tablet, 20 79400011000036107 Cafergot sugar coated tablet 45141000168107 Cafergot 45141000168107 Cafergot 79838011000036107 ergotamine tartrate 1 mg + caffeine 100 mg tablet, 20 79756011000036106 ergotamine tartrate 1 mg + caffeine 100 mg tablet 37729011000036104 ergotamine + caffeine +19048011000036101 Lanoxin PG 62.5 microgram uncoated tablet, 200, blister pack 40661 12356011000036108 Lanoxin PG 62.5 microgram uncoated tablet, 200 5747011000036107 Lanoxin PG 62.5 microgram uncoated tablet 36681000168101 Lanoxin PG 36681000168101 Lanoxin PG 28005011000036101 digoxin 62.5 microgram tablet, 200 23328011000036101 digoxin 62.5 microgram tablet 21696011000036109 digoxin +1038681000168103 Atorvastatin (GA) 80 mg film-coated tablet, 40, blister pack 178523 1038671000168101 Atorvastatin (GA) 80 mg film-coated tablet, 40 1038601000168106 Atorvastatin (GA) 80 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841871000168108 atorvastatin 80 mg tablet, 40 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +929055011000036105 Galvumet 50/1000 film-coated tablet, 120, blister pack 161218 928416011000036100 Galvumet 50/1000 film-coated tablet, 120 927970011000036102 Galvumet 50/1000 film-coated tablet 14481000168101 Galvumet 50/1000 14481000168101 Galvumet 50/1000 929253011000036103 vildagliptin 50 mg + metformin hydrochloride 1 g tablet, 120 929156011000036106 vildagliptin 50 mg + metformin hydrochloride 1 g tablet 929132011000036106 vildagliptin + metformin +997991000168109 Imatinib (Apo) 100 mg film-coated tablet, 60, blister pack 196032 997861000168109 Imatinib (Apo) 100 mg film-coated tablet, 60 997851000168107 Imatinib (Apo) 100 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 28142011000036106 imatinib 100 mg tablet, 60 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +928849011000036105 Ramipril (Lupin) 1.25 mg hard capsule, 30, blister pack 134784 928211011000036109 Ramipril (Lupin) 1.25 mg hard capsule, 30 927870011000036106 Ramipril (Lupin) 1.25 mg hard capsule 927804011000036106 Ramipril (Lupin) 927804011000036106 Ramipril (Lupin) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +749611000168104 Tacrolimus (Actavis) 1 mg hard capsule, 50, blister pack 224269 749601000168102 Tacrolimus (Actavis) 1 mg hard capsule, 50 749571000168108 Tacrolimus (Actavis) 1 mg hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 749101000168109 tacrolimus 1 mg capsule, 50 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +912391000168107 Cisero 40 mg film-coated tablet, 30, blister pack 183648 912381000168109 Cisero 40 mg film-coated tablet, 30 912371000168106 Cisero 40 mg film-coated tablet 912361000168100 Cisero 912361000168100 Cisero 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +59914011000036100 Extra Strong Pain Relief (Terry White Chemists) tablet, 96, blister pack 117611 55876011000036104 Extra Strong Pain Relief (Terry White Chemists) tablet, 96 53607011000036106 Extra Strong Pain Relief (Terry White Chemists) tablet 53143011000036108 Extra Strong Pain Relief (Terry White Chemists) 53143011000036108 Extra Strong Pain Relief (Terry White Chemists) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +18559011000036107 Coversyl 5 mg film-coated tablet, 30, tube 101568 11218011000036108 Coversyl 5 mg film-coated tablet, 30 5228011000036102 Coversyl 5 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +1024011000168109 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 4, blister pack 227167 1024001000168106 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 4 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71524011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 4 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +933239901000036104 Simvacor 10 mg film-coated tablet, 30, blister pack 182906 933236451000036104 Simvacor 10 mg film-coated tablet, 30 933234851000036105 Simvacor 10 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +985121000168101 Zyvox 400 mg/200 mL injection solution, 10 x 200 mL bags 79689 985111000168108 Zyvox 400 mg/200 mL injection solution, 10 x 200 mL bags 985051000168105 Zyvox 400 mg/200 mL injection solution, 200 mL bag 39746011000036100 Zyvox 39746011000036100 Zyvox 985101000168105 linezolid 400 mg/200 mL injection, 10 x 200 mL bags 985041000168108 linezolid 400 mg/200 mL injection, bag 44888011000036109 linezolid +676801000168103 Leflunomide (Sandoz) 20 mg film-coated tablet, 30, bottle 210906 676791000168104 Leflunomide (Sandoz) 20 mg film-coated tablet, 30 676781000168102 Leflunomide (Sandoz) 20 mg film-coated tablet 676771000168100 Leflunomide (Sandoz) 676771000168100 Leflunomide (Sandoz) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +68772011000036106 Eurax 10% cream, 20 g, tube 11033 66586011000036108 Eurax 10% cream, 20 g 65512011000036109 Eurax 10% cream 65121011000036102 Eurax 65121011000036102 Eurax 71309011000036104 crotamiton 10% cream, 20 g 69942011000036103 crotamiton 10% cream 69770011000036109 crotamiton +24991000036105 Atorvastatin (Chemmart) 10 mg film-coated tablet, 30, blister pack 153737 22251000036101 Atorvastatin (Chemmart) 10 mg film-coated tablet, 30 20271000036107 Atorvastatin (Chemmart) 10 mg film-coated tablet 19741000036106 Atorvastatin (Chemmart) 19741000036106 Atorvastatin (Chemmart) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +34667011000036100 Gemfibrozil (Pharmacor) 600 mg film-coated tablet, 60, bottle 130604 34253011000036102 Gemfibrozil (Pharmacor) 600 mg film-coated tablet, 60 33987011000036101 Gemfibrozil (Pharmacor) 600 mg film-coated tablet 33930011000036105 Gemfibrozil (Pharmacor) 33930011000036105 Gemfibrozil (Pharmacor) 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +921957011000036100 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 30 mL vial 47073 921515011000036105 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 30 mL vial 921053011000036102 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 30 mL vial 35921000168104 Isovue-370 35921000168104 Isovue-370 922637011000036103 iopamidol 755 mg (iodine 370 mg)/mL injection, 30 mL vial 922125011000036107 iopamidol 755 mg (iodine 370 mg)/mL injection, 30 mL vial 77457011000036105 iopamidol +74870011000036107 Efexor-XR 75 mg modified release capsule, 7, blister pack 60858 74357011000036109 Efexor-XR 75 mg modified release capsule, 7 6248011000036103 Efexor-XR 75 mg modified release capsule 45291000168107 Efexor-XR 45291000168107 Efexor-XR 75457011000036109 venlafaxine 75 mg modified release capsule, 7 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +936161000168109 Quinapril (Chemmart) 10 mg film-coated tablet, 30, blister pack 133225 936151000168107 Quinapril (Chemmart) 10 mg film-coated tablet, 30 936141000168105 Quinapril (Chemmart) 10 mg film-coated tablet 936031000168102 Quinapril (Chemmart) 936031000168102 Quinapril (Chemmart) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +131531000036105 Meropenem (Kabi) 500 mg powder for injection, 10 vials 196965 128501000036105 Meropenem (Kabi) 500 mg powder for injection, 10 vials 125601000036104 Meropenem (Kabi) 500 mg powder for injection, 500 mg vial 123761000036105 Meropenem (Kabi) 123761000036105 Meropenem (Kabi) 46463011000036102 meropenem 500 mg injection, 10 vials 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +865231000168103 Amitriptyline (CH) 25 mg tablet, 1000, blister pack 232124 865221000168101 Amitriptyline (CH) 25 mg tablet, 1000 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +59726011000036105 Cold and Flu Day and Night (Guardian) (36 x Day tablets, 12 x Night tablets), 48, blister pack 107272 55732011000036104 Cold and Flu Day and Night (Guardian) (36 x Day tablets, 12 x Night tablets), 48 53719011000036108 Cold and Flu Day and Night (Day) (Guardian) film-coated tablet 35841000168101 Cold and Flu Day and Night (Guardian) 35961000168109 Cold and Flu Day and Night (Day) (Guardian) 63120011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [36] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [12], 48 62103011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +59726011000036105 Cold and Flu Day and Night (Guardian) (36 x Day tablets, 12 x Night tablets), 48, blister pack 107272 55732011000036104 Cold and Flu Day and Night (Guardian) (36 x Day tablets, 12 x Night tablets), 48 53673011000036108 Cold and Flu Day and Night (Night) (Guardian) film-coated tablet 35841000168101 Cold and Flu Day and Night (Guardian) 36081000168109 Cold and Flu Day and Night (Night) (Guardian) 63120011000036103 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet [36] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [12], 48 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +944741000168100 Risperidone (Terry White Chemists) 1 mg film-coated tablet, 60, blister pack 127597 944731000168109 Risperidone (Terry White Chemists) 1 mg film-coated tablet, 60 944721000168106 Risperidone (Terry White Chemists) 1 mg film-coated tablet 944371000168108 Risperidone (Terry White Chemists) 944371000168108 Risperidone (Terry White Chemists) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +1021841000168103 Atelvia 75 mg film-coated tablet, 6, blister pack 163754 1021831000168107 Atelvia 75 mg film-coated tablet, 6 1021781000168104 Atelvia 75 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 801031000168109 risedronate sodium 75 mg tablet, 6 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +904051000168108 Celocox 100 mg hard capsule, 50, blister pack 212790 904041000168106 Celocox 100 mg hard capsule, 50 903931000168100 Celocox 100 mg hard capsule 903781000168101 Celocox 903781000168101 Celocox 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +923756011000036103 Novicrit 2000 units/mL injection solution, 6 x 1 mL syringes 147833 923294011000036109 Novicrit 2000 units/mL injection solution, 6 x 1 mL syringes 922982011000036105 Novicrit 2000 units/mL injection solution, syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924129011000036104 epoetin lambda 2000 units/mL injection, 6 x 1 mL syringes 923954011000036103 epoetin lambda 2000 units/mL injection, syringe 923930011000036107 epoetin lambda +61319011000036101 Diovan 160 mg film-coated tablet, 28, blister pack 80871 57255011000036102 Diovan 160 mg film-coated tablet, 28 54255011000036106 Diovan 160 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63789011000036106 valsartan 160 mg tablet, 28 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +880221000168106 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet, 20, blister pack 215369 880211000168104 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet, 20 880201000168102 Amitriptyline (Blooms The Chemist) 50 mg film-coated tablet 880051000168106 Amitriptyline (Blooms The Chemist) 880051000168106 Amitriptyline (Blooms The Chemist) 692331000168108 amitriptyline hydrochloride 50 mg tablet, 20 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +955211000168105 Cefotaxime (Mylan) 1 g powder for injection, 10 vials 148153 955201000168107 Cefotaxime (Mylan) 1 g powder for injection, 10 vials 955191000168109 Cefotaxime (Mylan) 1 g powder for injection, vial 955151000168104 Cefotaxime (Mylan) 955151000168104 Cefotaxime (Mylan) 33814011000036102 cefotaxime 1 g injection, 10 vials 33682011000036102 cefotaxime 1 g injection, vial 21327011000036105 cefotaxime +1083711000168100 Drixine No Drip Formula 0.05% nasal spray, 15 mL, pump pack 166852 35401000036108 Drixine No Drip Formula 0.05% nasal spray, 15 mL 32721000036101 Drixine No Drip Formula 0.05% nasal spray 6411000168101 Drixine No Drip Formula 6411000168101 Drixine No Drip Formula 75492011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 15 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +135861000036103 Cefepime (AFT) 2 g powder for injection, 1 vial 196280 135281000036109 Cefepime (AFT) 2 g powder for injection, 1 vial 134411000036103 Cefepime (AFT) 2 g powder for injection, 2 g vial 134151000036105 Cefepime (AFT) 134151000036105 Cefepime (AFT) 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +20515011000036104 Metoprolol Tartrate (Chemmart) 50 mg uncoated tablet, 100, blister pack 78853 13715011000036103 Metoprolol Tartrate (Chemmart) 50 mg uncoated tablet, 100 6997011000036105 Metoprolol Tartrate (Chemmart) 50 mg uncoated tablet 4406011000036103 Metoprolol Tartrate (Chemmart) 4406011000036103 Metoprolol Tartrate (Chemmart) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +861191000168105 Amiodarone (HHH) 150 mg/3 mL injection solution, 10 x 3 mL ampoules 233673 861181000168107 Amiodarone (HHH) 150 mg/3 mL injection solution, 10 x 3 mL ampoules 861171000168109 Amiodarone (HHH) 150 mg/3 mL injection solution, 3 mL ampoule 861161000168103 Amiodarone (HHH) 861161000168103 Amiodarone (HHH) 38715011000036100 amiodarone hydrochloride 150 mg/3 mL injection, 10 x 3 mL ampoules 37946011000036101 amiodarone hydrochloride 150 mg/3 mL injection, ampoule 21535011000036101 amiodarone +69696011000036109 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 5 L, bottle 90412 67495011000036107 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 5 L 65683011000036108 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 72010011000036106 povidone-iodine 0.75% application, 5 L 70277011000036103 povidone-iodine 0.75% application 21660011000036108 povidone-iodine +1083671000168104 Dimetapp 12 Hour 0.05% nasal spray, 20 mL, pump pack 72714 74389011000036105 Dimetapp 12 Hour 0.05% nasal spray, 20 mL 73913011000036101 Dimetapp 12 Hour 0.05% nasal spray 73732011000036108 Dimetapp 12 Hour 73732011000036108 Dimetapp 12 Hour 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +659631000168101 Telmisartan HCTZ 80/25mg (Chemmart) multilayer tablet, 28, blister pack 198237 659621000168104 Telmisartan HCTZ 80/25mg (Chemmart) multilayer tablet, 28 659611000168106 Telmisartan HCTZ 80/25mg (Chemmart) multilayer tablet 659601000168108 Telmisartan HCTZ 80/25mg (Chemmart) 659601000168108 Telmisartan HCTZ 80/25mg (Chemmart) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +135781000036103 Zarzio 480 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 195065 135201000036103 Zarzio 480 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 134211000036102 Zarzio 480 microgram/0.5 mL injection solution, 0.5 mL syringe 134181000036103 Zarzio 134181000036103 Zarzio 929227011000036108 filgrastim 480 microgram/0.5 mL injection, 5 x 0.5 mL syringes 22655011000036106 filgrastim 480 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +878071000168107 Bosentan (Apotex) 62.5 mg film-coated tablet, 60, bottle 222214 878061000168101 Bosentan (Apotex) 62.5 mg film-coated tablet, 60 878051000168103 Bosentan (Apotex) 62.5 mg film-coated tablet 878041000168100 Bosentan (Apotex) 878041000168100 Bosentan (Apotex) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +37398011000036103 Xylocaine 0.5% (25 mg/5 mL) injection solution, 50 x 5 mL ampoules 12009 36685011000036102 Xylocaine 0.5% (25 mg/5 mL) injection solution, 50 x 5 mL ampoules 36123011000036105 Xylocaine 0.5% (25 mg/5 mL) injection solution, 5 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 38598011000036106 lidocaine (lignocaine) hydrochloride 0.5% (25 mg/5 mL) injection, 50 x 5 mL ampoules 37868011000036103 lidocaine (lignocaine) hydrochloride 0.5% (25 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +730561000168107 Aqium 66% gel, 1 L, bottle 76927 730551000168105 Aqium 66% gel, 1 L 730441000168107 Aqium 66% gel 65090011000036106 Aqium 65090011000036106 Aqium 730541000168108 ethanol 66% gel, 1 L 730431000168103 ethanol 66% gel 69846011000036106 ethanol +843911000168105 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 7, blister pack 218082 843901000168107 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 7 843891000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +745271000168107 Sno-Pro oral liquid solution, 27 x 200 mL cartons 745261000168101 Sno-Pro oral liquid solution, 27 x 200 mL cartons 745241000168100 Sno-Pro oral liquid solution, 200 mL carton 745221000168106 Sno-Pro 745221000168106 Sno-Pro 745251000168103 triglycerides long chain with glucose polymer oral liquid, 27 x 200 mL cartons 745231000168109 triglycerides long chain with glucose polymer oral liquid, 200 mL carton 83419011000036102 triglycerides long chain with glucose polymer +794581000168104 Tacrolimus (Sandoz) 2 mg hard capsule, 60, blister pack 229757 794571000168102 Tacrolimus (Sandoz) 2 mg hard capsule, 60 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794561000168108 tacrolimus 2 mg capsule, 60 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +61386011000036108 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet, 24, blister pack 81848 57311011000036101 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet, 24 54269011000036103 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet 53218011000036108 Strong Pain Relief Plus (Pharmacy Health) 53218011000036108 Strong Pain Relief Plus (Pharmacy Health) 63802011000036100 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 24 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +818011000168106 Decozol 2% oral gel, 15 g, tube 231828 818001000168108 Decozol 2% oral gel, 15 g 817981000168102 Decozol 2% oral gel 817961000168106 Decozol 817961000168106 Decozol 817991000168104 miconazole 2% oral gel, 15 g 817971000168100 miconazole 2% oral gel 21454011000036108 miconazole +693791000168101 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 50, blister pack 215356 693781000168104 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 50 693751000168106 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +863381000168105 Zytiga 250 mg uncoated tablet, 120, bottle 180314 863371000168107 Zytiga 250 mg uncoated tablet, 120 863361000168101 Zytiga 250 mg uncoated tablet 87561000036106 Zytiga 87561000036106 Zytiga 89851000036102 abiraterone acetate 250 mg tablet, 120 88591000036103 abiraterone acetate 250 mg tablet 91871000036107 abiraterone +933231291000036103 Glimepiride (GA) 1 mg uncoated tablet, 30, blister pack 173878 933225371000036108 Glimepiride (GA) 1 mg uncoated tablet, 30 933220571000036109 Glimepiride (GA) 1 mg uncoated tablet 933219111000036109 Glimepiride (GA) 933219111000036109 Glimepiride (GA) 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +20832011000036100 Dilzem CD 240 mg modified release capsule, 30, bottle 91871 13995011000036107 Dilzem CD 240 mg modified release capsule, 30 7275011000036106 Dilzem CD 240 mg modified release capsule 30711000168102 Dilzem CD 30711000168102 Dilzem CD 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +1006691000168107 Ibuprofen (Apo) 400 mg film-coated tablet, 10, blister pack 289218 1006681000168109 Ibuprofen (Apo) 400 mg film-coated tablet, 10 1006671000168106 Ibuprofen (Apo) 400 mg film-coated tablet 1006661000168100 Ibuprofen (Apo) 1006661000168100 Ibuprofen (Apo) 985891000168108 ibuprofen 400 mg tablet, 10 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +21172011000036101 Levohexal tablet, 100, blister pack 99119 14313011000036101 Levohexal tablet, 100 7599011000036107 Levohexal tablet 3554011000036108 Levohexal 3554011000036108 Levohexal 28304011000036101 levodopa 250 mg + carbidopa 25 mg tablet, 100 23618011000036103 levodopa 250 mg + carbidopa 25 mg tablet 21326011000036107 levodopa + carbidopa +668221000168104 Riluzole (Pharmacor) 50 mg film-coated tablet, 56, blister pack 207455 668211000168106 Riluzole (Pharmacor) 50 mg film-coated tablet, 56 668171000168109 Riluzole (Pharmacor) 50 mg film-coated tablet 668161000168103 Riluzole (Pharmacor) 668161000168103 Riluzole (Pharmacor) 27912011000036108 riluzole 50 mg tablet, 56 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +912711000168102 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet, 7, blister pack 198387 912701000168100 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet, 7 912691000168100 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet 912651000168105 Candesartan Hydrochlorothiazide 32/25 (RZ) 912651000168105 Candesartan Hydrochlorothiazide 32/25 (RZ) 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +17816011000036100 Meprazol 20 mg enteric tablet, 30, blister pack 108599 11390011000036104 Meprazol 20 mg enteric tablet, 30 5057011000036106 Meprazol 20 mg enteric tablet 3254011000036100 Meprazol 3254011000036100 Meprazol 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +131611000036102 Duloxetine (GH) 60 mg enteric capsule, 28, blister pack 197151 128591000036102 Duloxetine (GH) 60 mg enteric capsule, 28 124551000036103 Duloxetine (GH) 60 mg enteric capsule 123961000036107 Duloxetine (GH) 123961000036107 Duloxetine (GH) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +713221000168103 Erivedge 150 mg hard capsule, 28, bottle 214475 145261000036100 Erivedge 150 mg hard capsule, 28 143631000036108 Erivedge 150 mg hard capsule 143251000036102 Erivedge 143251000036102 Erivedge 145271000036108 vismodegib 150 mg capsule, 28 143641000036103 vismodegib 150 mg capsule 146511000036109 vismodegib +929068011000036105 Idarubicin Hydrochloride (Ebewe) 5 mg/5 mL concentrated injection, 5 x 5 mL vials 162933 928429011000036104 Idarubicin Hydrochloride (Ebewe) 5 mg/5 mL concentrated injection, 5 x 5 mL vials 927973011000036105 Idarubicin Hydrochloride (Ebewe) 5 mg/5 mL concentrated injection, 5 mL vial 927760011000036104 Idarubicin Hydrochloride (Ebewe) 927760011000036104 Idarubicin Hydrochloride (Ebewe) 929259011000036100 idarubicin hydrochloride 5 mg/5 mL injection, 5 x 5 mL vials 22953011000036109 idarubicin hydrochloride 5 mg/5 mL injection, vial 21720011000036108 idarubicin +20590011000036107 Diltiazem Hydrochloride CD (Terry White Chemists) 180 mg modified release capsule, 30, blister pack 80551 13938011000036109 Diltiazem Hydrochloride CD (Terry White Chemists) 180 mg modified release capsule, 30 7226011000036100 Diltiazem Hydrochloride CD (Terry White Chemists) 180 mg modified release capsule 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 46241000168107 Diltiazem Hydrochloride CD (Terry White Chemists) 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +670361000168108 Enalapril Maleate (AN) 20 mg uncoated tablet, 30, blister pack 188554 670351000168106 Enalapril Maleate (AN) 20 mg uncoated tablet, 30 670341000168109 Enalapril Maleate (AN) 20 mg uncoated tablet 670271000168105 Enalapril Maleate (AN) 670271000168105 Enalapril Maleate (AN) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +933239831000036101 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 20, blister pack 181204 933237151000036108 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 20 933234821000036104 Meloxicam (Terry White Chemists) 7.5 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 52888011000036108 meloxicam 7.5 mg capsule, 20 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +933246341000036108 Ciprofloxacin (PS) 500 mg film-coated tablet, 20, blister pack 148852 933243131000036106 Ciprofloxacin (PS) 500 mg film-coated tablet, 20 933241321000036108 Ciprofloxacin (PS) 500 mg film-coated tablet 933240881000036105 Ciprofloxacin (PS) 933240881000036105 Ciprofloxacin (PS) 933199821000036109 ciprofloxacin 500 mg tablet, 20 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +771181000168104 Imigran FDT 50 mg film-coated tablet, 4, blister pack 106714 771171000168102 Imigran FDT 50 mg film-coated tablet, 4 5890011000036101 Imigran FDT 50 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +1004521000168102 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 52406 1004511000168109 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 1004491000168104 Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule 711291000168100 Naropin 0.2% 711291000168100 Naropin 0.2% 1004501000168106 ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules 1004481000168102 ropivacaine hydrochloride 20 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +831311000168108 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 107285 831301000168105 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 689571000168108 Priorix-Tetra (inert substance) diluent, 0.5 mL ampoule 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831291000168109 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +831311000168108 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 107285 831301000168105 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 831191000168101 Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831291000168109 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 831181000168104 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +18279011000036104 Roxithromycin (RL) 300 mg film-coated tablet, 5, blister pack 129649 11880011000036102 Roxithromycin (RL) 300 mg film-coated tablet, 5 4567011000036109 Roxithromycin (RL) 300 mg film-coated tablet 4218011000036100 Roxithromycin (RL) 4218011000036100 Roxithromycin (RL) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +1036901000168103 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 6, blister pack 173505 1036891000168102 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 6 1036881000168100 Atorvastatin (Ranbaxy) 10 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 841221000168106 atorvastatin 10 mg tablet, 6 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +61610011000036102 Nurofen Liquid Capsule 200 mg soft capsule, 16, blister pack 96115 57532011000036101 Nurofen Liquid Capsule 200 mg soft capsule, 16 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63913011000036100 ibuprofen 200 mg capsule, 16 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +933211781000036103 Ciprofloxacin (BL) 250 mg film-coated tablet, 14, blister pack 114046 933199731000036104 Ciprofloxacin (BL) 250 mg film-coated tablet, 14 933194141000036107 Ciprofloxacin (BL) 250 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +903731000168102 Brillior 300 mg hard capsule, 20, blister pack 224345 903721000168100 Brillior 300 mg hard capsule, 20 903681000168106 Brillior 300 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1006651000168102 Raloxifene (Amneal) 60 mg film-coated tablet, 28, blister pack 233380 1006641000168104 Raloxifene (Amneal) 60 mg film-coated tablet, 28 1006611000168103 Raloxifene (Amneal) 60 mg film-coated tablet 1006601000168101 Raloxifene (Amneal) 1006601000168101 Raloxifene (Amneal) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +869851000168105 Eplerenone (AN) 25 mg film-coated tablet, 30, blister pack 231448 869841000168108 Eplerenone (AN) 25 mg film-coated tablet, 30 869811000168109 Eplerenone (AN) 25 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 26533011000036104 eplerenone 25 mg tablet, 30 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +719661000168109 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 1.5 mL cartridge 224623 719651000168107 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 1.5 mL cartridge 719641000168105 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 28299011000036108 somatropin 10 mg/1.5 mL injection, 1.5 mL cartridge 23613011000036108 somatropin 10 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +60974011000036109 Paracetamol (Pharmacist) 500 mg uncoated tablet, 96, blister pack 62808 56917011000036104 Paracetamol (Pharmacist) 500 mg uncoated tablet, 96 54119011000036100 Paracetamol (Pharmacist) 500 mg uncoated tablet 53276011000036100 Paracetamol (Pharmacist) 53276011000036100 Paracetamol (Pharmacist) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +865191000168107 Amitriptyline (CH) 25 mg tablet, 90, blister pack 232124 865181000168109 Amitriptyline (CH) 25 mg tablet, 90 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +43721011000036109 Deltazine 4% / 1 in 100 000 injection solution, 10 x 2.2 mL cartridges 101552 41130011000036101 Deltazine 4% / 1 in 100 000 injection solution, 10 x 2.2 mL cartridges 39829011000036108 Deltazine 4% / 1 in 100 000 injection solution, 2.2 mL cartridge 34451000168101 Deltazine 4% / 1 in 100 000 34451000168101 Deltazine 4% / 1 in 100 000 46108011000036107 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, 10 x 2.2 mL cartridges 44989011000036105 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +933231311000036102 Glimepiride (GA) 2 mg uncoated tablet, 30, blister pack 173879 933225401000036105 Glimepiride (GA) 2 mg uncoated tablet, 30 933220581000036106 Glimepiride (GA) 2 mg uncoated tablet 933219111000036109 Glimepiride (GA) 933219111000036109 Glimepiride (GA) 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +61028011000036102 Ferro-Grad C modified release tablet, 28, blister pack 66843 56971011000036101 Ferro-Grad C modified release tablet, 28 54143011000036105 Ferro-Grad C modified release tablet 53373011000036103 Ferro-Grad C 53373011000036103 Ferro-Grad C 63669011000036104 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet, 28 62039011000036106 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet 61817011000036106 ferrous sulfate + ascorbic acid +811901000168103 Aflitiv 100 mg/4 mL concentrated injection, 3 x 4 mL vials 195939 811891000168102 Aflitiv 100 mg/4 mL concentrated injection, 3 x 4 mL vials 811851000168107 Aflitiv 100 mg/4 mL concentrated injection, 4 mL vial 811811000168106 Aflitiv 811811000168106 Aflitiv 811881000168100 aflibercept 100 mg/4 mL injection, 3 x 4 mL vials 119461000036108 aflibercept 100 mg/4 mL injection, vial 82551000036105 aflibercept +899711000168103 Orencia Clickject Autoinjector 125 mg/mL injection solution, 4 x 1 mL injection devices 236039 899701000168101 Orencia Clickject Autoinjector 125 mg/mL injection solution, 4 x 1 mL injection devices 899681000168104 Orencia Clickject Autoinjector 125 mg/mL injection solution, 1mL injection device 899571000168101 Orencia Clickject Autoinjector 899571000168101 Orencia Clickject Autoinjector 899691000168101 abatacept 125 mg/mL injection, 4 x 1 mL injection devices 899671000168102 abatacept 125 mg/mL injection, injection device 33635011000036100 abatacept +34794011000036102 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 76048 34369011000036102 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 100 mL 34063011000036104 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 33949011000036103 Cefaclor (Sandoz) 33949011000036103 Cefaclor (Sandoz) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +30771000036103 Codagesic uncoated tablet, 20, blister pack (Old Formulation 2016) 178333 28941000036106 Codagesic uncoated tablet, 20 (Old Formulation 2016) 27021000036103 Codagesic uncoated tablet (Old Formulation 2016) 26021000036100 Codagesic 26021000036100 Codagesic 52897011000036108 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 20 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +715391000168107 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g, tube 132870 715381000168109 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g 715371000168106 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream 52521000168101 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 52521000168101 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +52170011000036107 Benzoic Acid Compound BP (extemporaneous) ointment, 100 g, screw cap jar 52074011000036106 Benzoic Acid Compound BP (extemporaneous) ointment, 100 g 51975011000036101 Benzoic Acid Compound BP (extemporaneous) ointment 60481000168107 Benzoic Acid Compound BP (extemporaneous) 60481000168107 Benzoic Acid Compound BP (extemporaneous) 52320011000036103 benzoic acid 6% + salicylic acid 3% ointment, 100 g 52252011000036107 benzoic acid 6% + salicylic acid 3% ointment 52238011000036109 benzoic acid + salicylic acid +1118071000168108 Quetiapine XR (Amneal) 400 mg modified release tablet, 60, blister pack 278874 1118061000168102 Quetiapine XR (Amneal) 400 mg modified release tablet, 60 1118051000168104 Quetiapine XR (Amneal) 400 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +1105221000168106 Midazolam (AN) 50 mg/10 mL injection solution, 10 mL ampoule 207244 1105211000168104 Midazolam (AN) 50 mg/10 mL injection solution, 10 mL ampoule 1105201000168102 Midazolam (AN) 50 mg/10 mL injection solution, 10 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 664091000168103 midazolam 50 mg/10 mL injection, 10 mL ampoule 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +19872011000036104 Zyrtec 10 mg film-coated tablet, 30, blister pack 65439 13119011000036106 Zyrtec 10 mg film-coated tablet, 30 6402011000036109 Zyrtec 10 mg film-coated tablet 3383011000036102 Zyrtec 3383011000036102 Zyrtec 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +813991000168105 Olopatadine (Apo) 0.1% eye drops solution, 5 mL, bottle 241497 813981000168107 Olopatadine (Apo) 0.1% eye drops solution, 5 mL 813971000168109 Olopatadine (Apo) 0.1% eye drops solution 813911000168101 Olopatadine (Apo) 813911000168101 Olopatadine (Apo) 46800011000036102 olopatadine 0.1% eye drops, 5 mL 45321011000036104 olopatadine 0.1% eye drops 44954011000036103 olopatadine +1073161000168109 Vyvanse 40 mg hard capsule, 30, bottle 284020 1073151000168107 Vyvanse 40 mg hard capsule, 30 1073131000168101 Vyvanse 40 mg hard capsule 143261000036104 Vyvanse 143261000036104 Vyvanse 1073141000168105 lisdexamfetamine dimesilate 40 mg capsule, 30 1073121000168104 lisdexamfetamine dimesilate 40 mg capsule 146451000036109 lisdexamfetamine +933239991000036107 Simvacor 20 mg film-coated tablet, 30, bottle 182911 933236481000036106 Simvacor 20 mg film-coated tablet, 30 933234861000036108 Simvacor 20 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +835331000168101 Esomeprazole (AN) 40 mg enteric tablet, 7, bottle 236437 835321000168104 Esomeprazole (AN) 40 mg enteric tablet, 7 704071000168107 Esomeprazole (AN) 40 mg enteric tablet 704061000168101 Esomeprazole (AN) 704061000168101 Esomeprazole (AN) 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +762591000168106 Salicylic Acid 3% in Sorbolene Cream (David Craig) cream, 100 g, jar 14237 762581000168108 Salicylic Acid 3% in Sorbolene Cream (David Craig) cream, 100 g 762561000168104 Salicylic Acid 3% in Sorbolene Cream (David Craig) cream 762541000168103 Salicylic Acid 3% in Sorbolene Cream (David Craig) 762541000168103 Salicylic Acid 3% in Sorbolene Cream (David Craig) 762571000168105 salicylic acid 3% + cetomacrogol aqueous cream, 100 g 762551000168101 salicylic acid 3% + cetomacrogol aqueous cream 69782011000036104 salicylic acid + cetomacrogol aqueous cream +43883011000036101 Tryzan Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg tablets), 38, blister pack 129938 41375011000036104 Tryzan Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg tablets), 38 39207011000036100 Tryzan 10 mg uncoated tablet 11671000168103 Tryzan Titration Pack 3401011000036105 Tryzan 46272011000036103 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg tablet [10], 38 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +43883011000036101 Tryzan Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg tablets), 38, blister pack 129938 41375011000036104 Tryzan Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg tablets), 38 39210011000036103 Tryzan 2.5 mg uncoated tablet 11671000168103 Tryzan Titration Pack 3401011000036105 Tryzan 46272011000036103 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg tablet [10], 38 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +43883011000036101 Tryzan Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg tablets), 38, blister pack 129938 41375011000036104 Tryzan Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg tablets), 38 39205011000036105 Tryzan 5 mg uncoated tablet 11671000168103 Tryzan Titration Pack 3401011000036105 Tryzan 46272011000036103 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg tablet [10], 38 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +865391000168109 Amitriptyline (CH) 50 mg tablet, 100, blister pack 232126 865381000168106 Amitriptyline (CH) 50 mg tablet, 100 865281000168102 Amitriptyline (CH) 50 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +970361000168107 Lypralin 25 mg hard capsule, 20, bottle 235870 970351000168105 Lypralin 25 mg hard capsule, 20 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +886731000168100 Eloctate (1 x 1000 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210525 886721000168103 Eloctate (1 x 1000 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886451000168104 Eloctate (inert substance) diluent, 3 mL syringe 886371000168101 Eloctate 886371000168101 Eloctate 886711000168105 efmoroctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886441000168101 inert substance diluent, 3 mL syringe 21220011000036103 inert substance +886731000168100 Eloctate (1 x 1000 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210525 886721000168103 Eloctate (1 x 1000 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886701000168107 Eloctate (efmoroctocog alfa 1000 units) powder for injection, 1000 units vial 886371000168101 Eloctate 886371000168101 Eloctate 886711000168105 efmoroctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886691000168107 efmoroctocog alfa 1000 units injection, vial 886411000168100 efmoroctocog alfa +131441000036104 Candesartan Cilexetil Combi 16/12.5 (Aspen) uncoated tablet, 30, bottle 196402 128721000036106 Candesartan Cilexetil Combi 16/12.5 (Aspen) uncoated tablet, 30 125501000036103 Candesartan Cilexetil Combi 16/12.5 (Aspen) uncoated tablet 32091000168108 Candesartan Cilexetil Combi 16/12.5 (Aspen) 32091000168108 Candesartan Cilexetil Combi 16/12.5 (Aspen) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +916791000168105 Carvedilol (CH) 6.25 mg uncoated tablet, 60, blister pack 194257 916781000168107 Carvedilol (CH) 6.25 mg uncoated tablet, 60 916751000168100 Carvedilol (CH) 6.25 mg uncoated tablet 916661000168106 Carvedilol (CH) 916661000168106 Carvedilol (CH) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +1023851000168100 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 40, blister pack 227168 1023841000168102 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 40 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023831000168106 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 40 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +19365011000036100 Doxycycline (DBL) 100 mg modified release capsule, 7, blister pack 51689 12652011000036104 Doxycycline (DBL) 100 mg modified release capsule, 7 4656011000036109 Doxycycline (DBL) 100 mg modified release capsule 3565011000036101 Doxycycline (DBL) 3565011000036101 Doxycycline (DBL) 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +79704011000036105 Allerfexo 180 mg film-coated tablet, 10, blister pack 159416 79520011000036108 Allerfexo 180 mg film-coated tablet, 10 79394011000036109 Allerfexo 180 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +672611000168100 Fycompa 6 mg film-coated tablet, 28, blister pack 207688 672601000168103 Fycompa 6 mg film-coated tablet, 28 672581000168107 Fycompa 6 mg film-coated tablet 672551000168100 Fycompa 672551000168100 Fycompa 672591000168105 perampanel 6 mg tablet, 28 672571000168109 perampanel 6 mg tablet 672561000168103 perampanel +818251000168104 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 262645 818241000168101 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 818231000168105 Afolia 75 units (5.5 microgram)/0.125 mL injection solution, 0.125 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741071000168104 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, 0.125 mL injection device 741051000168108 follitropin alfa 75 units (5.5 microgram)/0.125 mL injection, injection device 21352011000036107 follitropin alfa +736861000168107 Alphaclav Duo Forte 875/125 film-coated tablet, 10, blister pack 230396 736851000168105 Alphaclav Duo Forte 875/125 film-coated tablet, 10 736841000168108 Alphaclav Duo Forte 875/125 film-coated tablet 736811000168109 Alphaclav Duo Forte 875/125 736811000168109 Alphaclav Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +863221000168100 Amitriptyline (AN) 25 mg tablet, 50, blister pack 232118 863211000168107 Amitriptyline (AN) 25 mg tablet, 50 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +933246501000036100 Ranitidine (PS) 150 mg film-coated tablet, 20, blister pack 148523 933243051000036104 Ranitidine (PS) 150 mg film-coated tablet, 20 933241311000036101 Ranitidine (PS) 150 mg film-coated tablet 933240941000036106 Ranitidine (PS) 933240941000036106 Ranitidine (PS) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +993881000168107 Candesartan (Apotex) 4 mg tablet, 28, blister pack 184881 993871000168109 Candesartan (Apotex) 4 mg tablet, 28 993831000168106 Candesartan (Apotex) 4 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 904981000168102 candesartan cilexetil 4 mg tablet, 28 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +19630011000036108 Sunsense SPF 30+ cream, 100 g, tube 59112 12899011000036108 Sunsense SPF 30+ cream, 100 g 6189011000036104 Sunsense SPF 30+ cream 49811000168102 Sunsense SPF 30+ 49811000168102 Sunsense SPF 30+ 27424011000036105 octyl methoxycinnamate 7.5% + oxybenzone 3% + titanium dioxide 3% cream, 100 g 22771011000036103 octyl methoxycinnamate 7.5% + oxybenzone 3% + titanium dioxide 3% cream 21560011000036104 octyl methoxycinnamate + oxybenzone + titanium +18930011000036106 Isopto Homatropine 2% eye drops solution, 15 mL, bottle 25353 12238011000036100 Isopto Homatropine 2% eye drops solution, 15 mL 4638011000036107 Isopto Homatropine 2% eye drops solution 3426011000036105 Isopto Homatropine 3426011000036105 Isopto Homatropine 27003011000036107 homatropine hydrobromide 2% eye drops, 15 mL 22376011000036109 homatropine hydrobromide 2% eye drops 21875011000036103 homatropine +1038841000168109 Atorvastatin (Actavis) 80 mg film-coated tablet, 30, blister pack 217174 1038831000168100 Atorvastatin (Actavis) 80 mg film-coated tablet, 30 1038721000168109 Atorvastatin (Actavis) 80 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +68867011000036100 Quellada Head Lice Treatment 1% lotion, 100 mL, bottle 128844 66719011000036100 Quellada Head Lice Treatment 1% lotion, 100 mL 65346011000036101 Quellada Head Lice Treatment 1% lotion 28201000168107 Quellada Head Lice Treatment 28201000168107 Quellada Head Lice Treatment 71401011000036106 permethrin 1% lotion, 100 mL 69996011000036108 permethrin 1% lotion 21537011000036106 permethrin +788281000168105 Viclofen 25 mg enteric tablet, 20, blister pack 75245 788271000168107 Viclofen 25 mg enteric tablet, 20 788241000168100 Viclofen 25 mg enteric tablet 788231000168109 Viclofen 788231000168109 Viclofen 63834011000036101 diclofenac sodium 25 mg enteric tablet, 20 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +661921000168104 Norfloxacin (AN) 400 mg film-coated tablet, 14, blister pack 184273 661911000168106 Norfloxacin (AN) 400 mg film-coated tablet, 14 661901000168108 Norfloxacin (AN) 400 mg film-coated tablet 661891000168109 Norfloxacin (AN) 661891000168109 Norfloxacin (AN) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +831071000168103 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 65861 831061000168109 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831051000168107 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831071000168103 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 97842 831061000168109 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831051000168107 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831071000168103 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 65861 831061000168109 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 688791000168108 Priorix (inert substance) diluent, 0.5 mL syringe 73748011000036105 Priorix 73748011000036105 Priorix 831051000168107 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +831071000168103 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 97842 831061000168109 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 688791000168108 Priorix (inert substance) diluent, 0.5 mL syringe 73748011000036105 Priorix 73748011000036105 Priorix 831051000168107 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +77151011000036103 Cold Sore Fighter (Bioglan) 500 mg uncoated tablet, 100, bottle 111680 76580011000036106 Cold Sore Fighter (Bioglan) 500 mg uncoated tablet, 100 76029011000036109 Cold Sore Fighter (Bioglan) 500 mg uncoated tablet 75975011000036104 Cold Sore Fighter (Bioglan) 75975011000036104 Cold Sore Fighter (Bioglan) 78135011000036106 lysine hydrochloride 500 mg tablet, 100 77506011000036107 lysine hydrochloride 500 mg tablet 77426011000036108 lysine +69284011000036103 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 500 mL bag 19498 67084011000036101 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 500 mL bag 65289011000036108 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) intravenous infusion injection, 500 mL bag 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 2351000168105 Sodium Chloride 0.3% and Glucose 3.3% (Baxter) 71653011000036101 sodium chloride 0.3% (1.5 g/500 mL) + glucose 3.3% (16.5 g/500 mL) injection, 500 mL bag 70110011000036105 sodium chloride 0.3% (1.5 g/500 mL) + glucose 3.3% (16.5 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +933871000168101 Centevo 200/50/200 mg film-coated tablet, 175, bottle 238859 933861000168107 Centevo 200/50/200 mg film-coated tablet, 175 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933851000168105 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 175 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1071061000168106 Abacavir/Lamivudine 600/300 (GH) film-coated tablet, 30, blister pack 281026 1071051000168109 Abacavir/Lamivudine 600/300 (GH) film-coated tablet, 30 1071041000168107 Abacavir/Lamivudine 600/300 (GH) film-coated tablet 1071031000168103 Abacavir/Lamivudine 600/300 (GH) 1071031000168103 Abacavir/Lamivudine 600/300 (GH) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +68944011000036105 QV Cream, 100 g, tube 10629 66522011000036101 QV Cream, 100 g 65500011000036107 QV Cream 65191011000036105 QV Cream 65191011000036105 QV Cream 71254011000036101 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream, 100 g 69959011000036106 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream 69769011000036106 glycerol + light liquid paraffin + white soft paraffin +730401000168105 Trajentamet 2.5 mg/1000 mg film-coated tablet, 60, bottle 195090 163941000036103 Trajentamet 2.5 mg/1000 mg film-coated tablet, 60 162481000036106 Trajentamet 2.5 mg/1000 mg film-coated tablet 46941000168102 Trajentamet 2.5 mg/1000 mg 46941000168102 Trajentamet 2.5 mg/1000 mg 163951000036100 linagliptin 2.5 mg + metformin hydrochloride 1 g tablet, 60 162501000036101 linagliptin 2.5 mg + metformin hydrochloride 1 g tablet 166311000036107 linagliptin + metformin +87669011000036106 Clopidogrel (Winthrop) 75 mg film-coated tablet, 28, blister pack 148947 87431011000036102 Clopidogrel (Winthrop) 75 mg film-coated tablet, 28 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +805501000168106 Aczicrit 10 000 units/mL injection solution, 1 mL syringe 147861 805491000168104 Aczicrit 10 000 units/mL injection solution, 1 mL syringe 805481000168102 Aczicrit 10 000 units/mL injection solution, syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924121011000036103 epoetin lambda 10 000 units/mL injection, 1 mL syringe 923951011000036101 epoetin lambda 10 000 units/mL injection, syringe 923930011000036107 epoetin lambda +1070881000168100 Analgesic Calmative (Trust) uncoated tablet, 30, blister pack 217762 1070871000168103 Analgesic Calmative (Trust) uncoated tablet, 30 1070341000168100 Analgesic Calmative (Trust) uncoated tablet 1070331000168109 Analgesic Calmative (Trust) 1070331000168109 Analgesic Calmative (Trust) 1064551000168106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 30 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +82511000036106 Velcade 1 mg powder for injection, 1 vial 148329 79851000036107 Velcade 1 mg powder for injection, 1 vial 78381000036102 Velcade 1 mg powder for injection, vial 2994011000036103 Velcade 2994011000036103 Velcade 79861000036105 bortezomib 1 mg injection, 1 vial 78391000036100 bortezomib 1 mg injection, vial 21633011000036105 bortezomib +166041000036105 Peg-Intron Clearclick Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204814 164231000036100 Peg-Intron Clearclick Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162571000036105 Peg-Intron Clearclick Injector (peginterferon alfa-2b 120 microgram) powder for injection, 120 microgram cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46921000036101 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23391011000036102 peginterferon alfa-2b 120 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +166041000036105 Peg-Intron Clearclick Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204814 164231000036100 Peg-Intron Clearclick Injector (4 x 120 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46921000036101 peginterferon alfa-2b 120 microgram injection [4 x 120 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20932011000036106 Zarontin 250 mg soft capsule, 200, bottle 94175 14086011000036109 Zarontin 250 mg soft capsule, 200 7364011000036106 Zarontin 250 mg soft capsule 15991000168107 Zarontin 15991000168107 Zarontin 28138011000036105 ethosuximide 250 mg capsule, 200 23447011000036108 ethosuximide 250 mg capsule 21833011000036101 ethosuximide +920668011000036104 Trandolapril (GA) 500 microgram hard capsule, 28, blister pack 135957 920396011000036109 Trandolapril (GA) 500 microgram hard capsule, 28 920158011000036109 Trandolapril (GA) 500 microgram hard capsule 920114011000036106 Trandolapril (GA) 920114011000036106 Trandolapril (GA) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +116351000036105 Bactol Alcohol 70% gel, 1 L, bottle 155397 114641000036106 Bactol Alcohol 70% gel, 1 L 929994011000036105 Bactol Alcohol 70% gel 19571000168101 Bactol Alcohol 19571000168101 Bactol Alcohol 925446011000036102 ethanol 70% gel, 1 L 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +663971000168102 Midazolam (Act) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 207222 663961000168108 Midazolam (Act) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 663921000168103 Midazolam (Act) 15 mg/3 mL injection solution, 3 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +668261000168109 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) uncoated tablet, 1, blister pack 206934 668251000168107 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) uncoated tablet, 1 668241000168105 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) uncoated tablet 668231000168101 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) 668231000168101 Alendronate with Colecalciferol 70 mg/70 microgram (DRLA) 668111000168101 alendronate 70 mg + colecalciferol 70 microgram tablet, 1 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +661961000168109 Indapamide Hemihydrate (AN) 2.5 mg sugar coated tablet, 90, blister pack 184244 661951000168107 Indapamide Hemihydrate (AN) 2.5 mg sugar coated tablet, 90 661941000168105 Indapamide Hemihydrate (AN) 2.5 mg sugar coated tablet 661931000168101 Indapamide Hemihydrate (AN) 661931000168101 Indapamide Hemihydrate (AN) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +17988011000036105 Lamotrigine (GenRx) 100 mg tablet, 56, blister pack 101365 11196011000036106 Lamotrigine (GenRx) 100 mg tablet, 56 5266011000036105 Lamotrigine (GenRx) 100 mg tablet 3001011000036101 Lamotrigine (GenRx) 3001011000036101 Lamotrigine (GenRx) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +745361000168105 Prozero oral liquid solution, 18 x 250 mL cartons 745351000168108 Prozero oral liquid solution, 18 x 250 mL cartons 745331000168102 Prozero oral liquid solution, 250 mL carton 39371000168102 Prozero 39371000168102 Prozero 745341000168106 triglycerides long chain with glucose polymer oral liquid, 18 x 250 mL cartons 745321000168100 triglycerides long chain with glucose polymer oral liquid, 250 mL carton 83419011000036102 triglycerides long chain with glucose polymer +37606011000036109 Ceenu 10 mg hard capsule, 20, bottle 19252 36873011000036100 Ceenu 10 mg hard capsule, 20 36208011000036105 Ceenu 10 mg hard capsule 12181000168103 Ceenu 12181000168103 Ceenu 38760011000036105 lomustine 10 mg capsule, 20 37979011000036106 lomustine 10 mg capsule 37745011000036103 lomustine +131521000036108 Meropenem (Kabi) 500 mg powder for injection, 1 vial 196965 128481000036100 Meropenem (Kabi) 500 mg powder for injection, 1 vial 125601000036104 Meropenem (Kabi) 500 mg powder for injection, 500 mg vial 123761000036105 Meropenem (Kabi) 123761000036105 Meropenem (Kabi) 128491000036103 meropenem 500 mg injection, 1 vial 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +921991011000036104 Magnevist 7.035 g/15 mL injection solution, 5 x 15 mL syringes 54670 921549011000036104 Magnevist 7.035 g/15 mL injection solution, 5 x 15 mL syringes 921081011000036108 Magnevist 7.035 g/15 mL injection solution, 15 mL syringe 920916011000036100 Magnevist 920916011000036100 Magnevist 922665011000036101 gadopentetate dimeglumine 7.035 g/15 mL injection, 5 x 15 mL syringes 922146011000036103 gadopentetate dimeglumine 7.035 g/15 mL injection, syringe 922037011000036106 gadopentetic acid +659681000168100 Candesartan Cilexetil HCTZ 16/12.5 (AN) uncoated tablet, 30, blister pack 204586 659541000168109 Candesartan Cilexetil HCTZ 16/12.5 (AN) uncoated tablet, 30 659531000168100 Candesartan Cilexetil HCTZ 16/12.5 (AN) uncoated tablet 659521000168103 Candesartan Cilexetil HCTZ 16/12.5 (AN) 659521000168103 Candesartan Cilexetil HCTZ 16/12.5 (AN) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +61268011000036101 Clotrimazole Anti-Fungal (Pharmacist) 1% cream, 30 g, tube 77752 57204011000036108 Clotrimazole Anti-Fungal (Pharmacist) 1% cream, 30 g 54235011000036107 Clotrimazole Anti-Fungal (Pharmacist) 1% cream 16041000168105 Clotrimazole Anti-Fungal (Pharmacist) 16041000168105 Clotrimazole Anti-Fungal (Pharmacist) 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +796871000168106 Aciclovir (RBX) 400 mg uncoated tablet, 56, blister pack 182882 796861000168100 Aciclovir (RBX) 400 mg uncoated tablet, 56 796851000168102 Aciclovir (RBX) 400 mg uncoated tablet 796791000168102 Aciclovir (RBX) 796791000168102 Aciclovir (RBX) 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +37467011000036108 Celica 20 mg film-coated tablet, 28, blister pack 227312 36737011000036108 Celica 20 mg film-coated tablet, 28 36131011000036106 Celica 20 mg film-coated tablet 35945011000036109 Celica 35945011000036109 Celica 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +37467011000036108 Celica 20 mg film-coated tablet, 28, blister pack 124756 36737011000036108 Celica 20 mg film-coated tablet, 28 36131011000036106 Celica 20 mg film-coated tablet 35945011000036109 Celica 35945011000036109 Celica 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +37467011000036108 Celica 20 mg film-coated tablet, 28, blister pack 175481 36737011000036108 Celica 20 mg film-coated tablet, 28 36131011000036106 Celica 20 mg film-coated tablet 35945011000036109 Celica 35945011000036109 Celica 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +869731000168106 Atomerra 40 mg hard capsule, 7, blister pack 234814 869721000168108 Atomerra 40 mg hard capsule, 7 869711000168101 Atomerra 40 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +43817011000036107 Somidem 10 mg film-coated tablet, 10, blister pack 119196 41214011000036103 Somidem 10 mg film-coated tablet, 10 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +995641000168102 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16, blister pack 53815 995631000168106 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16 995621000168108 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +61285011000036105 Sleepwell (Soul Pattinson) 25 mg tablet, 10, blister pack 78552 57221011000036100 Sleepwell (Soul Pattinson) 25 mg tablet, 10 54244011000036109 Sleepwell (Soul Pattinson) 25 mg tablet 53300011000036101 Sleepwell (Soul Pattinson) 53300011000036101 Sleepwell (Soul Pattinson) 63825011000036104 doxylamine succinate 25 mg tablet, 10 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +923893011000036100 Nicorette Icy Mint 4 mg chewing gum, 15, blister pack 165908 923437011000036105 Nicorette Icy Mint 4 mg chewing gum, 15 923082011000036107 Nicorette Icy Mint 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 924199011000036105 nicotine 4 mg gum, 15 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1066311000168105 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 40, blister pack 220519 1066301000168107 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 40 1066271000168105 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +676721000168101 Dexmethsone 4 mg/mL injection solution, 5 x 1 mL vials 163200 676711000168108 Dexmethsone 4 mg/mL injection solution, 5 x 1 mL vials 676691000168105 Dexmethsone 4 mg/mL injection solution, vial 2956011000036100 Dexmethsone 2956011000036100 Dexmethsone 676701000168105 dexamethasone phosphate 4 mg/mL injection, 5 x 1 mL vials 676681000168107 dexamethasone phosphate 4 mg/mL injection, vial 21511011000036107 dexamethasone phosphate +43575011000036106 Cefalotin (Sandoz) 1 g powder for injection, 10 vials 116692 41172011000036104 Cefalotin (Sandoz) 1 g powder for injection, 10 vials 39873011000036109 Cefalotin (Sandoz) 1 g powder for injection, vial 39670011000036109 Cefalotin (Sandoz) 39670011000036109 Cefalotin (Sandoz) 27524011000036100 cefalotin 1 g injection, 10 vials 22864011000036109 cefalotin 1 g injection, vial 21844011000036103 cefalotin +1007171000168100 Act-Hib (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 43725 1007161000168106 Act-Hib (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 1007141000168107 Act-Hib (Haemophilus influenzae type b conjugate (PRP-T) vaccine) powder for injection, 10 microgram vial 1007131000168103 Act-Hib 1007131000168103 Act-Hib 828291000168100 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 828231000168104 Haemophilus influenzae type b conjugate (PRP-T) vaccine +1007171000168100 Act-Hib (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 43725 1007161000168106 Act-Hib (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 1007151000168109 Act-Hib (inert substance) diluent, 0.5 mL syringe 1007131000168103 Act-Hib 1007131000168103 Act-Hib 828291000168100 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +18296011000036100 Ventolin Rotacap 200 microgram powder for inhalation, 100 capsules, strip pack 12530 11797011000036102 Ventolin Rotacap 200 microgram powder for inhalation, 100 capsules 4648011000036106 Ventolin Rotacap 200 microgram powder for inhalation, 1 capsule 32041000168100 Ventolin Rotacap 32041000168100 Ventolin Rotacap 26774011000036101 salbutamol 200 microgram powder for inhalation, 100 capsules 22161011000036103 salbutamol 200 microgram powder for inhalation, 1 capsule 21493011000036100 salbutamol +972611000168104 Lyzalon 75 mg hard capsule, 56, blister pack 224436 972331000168100 Lyzalon 75 mg hard capsule, 56 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +926836011000036105 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 60, blister pack 176511 926232011000036104 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 60 925686011000036108 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +131841000036102 Montelukast (RBX) 5 mg chewable tablet, 28, blister pack 184824 128131000036109 Montelukast (RBX) 5 mg chewable tablet, 28 124391000036101 Montelukast (RBX) 5 mg chewable tablet 124131000036100 Montelukast (RBX) 124131000036100 Montelukast (RBX) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +929491000168103 Deptran 75 mg film-coated tablet, 30, blister pack 42359 929481000168101 Deptran 75 mg film-coated tablet, 30 929431000168102 Deptran 75 mg film-coated tablet 4412011000036104 Deptran 4412011000036104 Deptran 929471000168104 doxepin 75 mg tablet, 30 929421000168100 doxepin 75 mg tablet 21583011000036105 doxepin +747921000168107 Morphine MR (CH) 10 mg modified release tablet, 60, blister pack 225429 747911000168100 Morphine MR (CH) 10 mg modified release tablet, 60 747861000168109 Morphine MR (CH) 10 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +903571000168109 Brillior 100 mg hard capsule, 60, blister pack 224341 903561000168103 Brillior 100 mg hard capsule, 60 903481000168108 Brillior 100 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +996461000168108 Amoxy/Clav 500/125 (Apo) film-coated tablet, 60, blister pack 255075 996451000168106 Amoxy/Clav 500/125 (Apo) film-coated tablet, 60 996401000168107 Amoxy/Clav 500/125 (Apo) film-coated tablet 996391000168105 Amoxy/Clav 500/125 (Apo) 996391000168105 Amoxy/Clav 500/125 (Apo) 51545011000036108 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 60 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +901401000168101 Amoxil 250 mg hard capsule, 30, blister pack 56550 901391000168103 Amoxil 250 mg hard capsule, 30 6100011000036109 Amoxil 250 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 900551000168107 amoxicillin 250 mg capsule, 30 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +901401000168101 Amoxil 250 mg hard capsule, 30, blister pack 273935 901391000168103 Amoxil 250 mg hard capsule, 30 6100011000036109 Amoxil 250 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 900551000168107 amoxicillin 250 mg capsule, 30 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +1049671000168109 Panadeine Forte uncoated tablet, 2, blister pack 73507 1049661000168103 Panadeine Forte uncoated tablet, 2 835831000168109 Panadeine Forte uncoated tablet 34821000168106 Panadeine Forte 34821000168106 Panadeine Forte 1047211000168109 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 2 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +18568011000036105 Oxaliplatin (DBL) 50 mg powder for injection, 1 vial 126111 11820011000036107 Oxaliplatin (DBL) 50 mg powder for injection, 1 vial 4990011000036102 Oxaliplatin (DBL) 50 mg powder for injection, 50 mg vial 3002011000036107 Oxaliplatin (DBL) 3002011000036107 Oxaliplatin (DBL) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +922004011000036108 Zyrtec 10 mg film-coated tablet, 10, blister pack 65439 921562011000036101 Zyrtec 10 mg film-coated tablet, 10 6402011000036109 Zyrtec 10 mg film-coated tablet 3383011000036102 Zyrtec 3383011000036102 Zyrtec 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +166131000036101 Temaccord 140 mg hard capsule, 5, sachet 206033 164361000036101 Temaccord 140 mg hard capsule, 5 162231000036106 Temaccord 140 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +69218011000036107 Chlorhexidine Acetate (Baxter) 0.02% (200 mg/L) irrigation solution, 10 x 1 L bottles 19459 67018011000036105 Chlorhexidine Acetate (Baxter) 0.02% (200 mg/L) irrigation solution, 10 x 1 L bottles 65343011000036107 Chlorhexidine Acetate (Baxter) 0.02% (200 mg/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71588011000036105 chlorhexidine acetate 0.02% (200 mg/L) solution, 10 x 1 L bottles 70079011000036102 chlorhexidine acetate 0.02% (200 mg/L) solution, bottle 21404011000036101 chlorhexidine +79687011000036107 Norgesic uncoated tablet, 24, blister pack 156623 79507011000036103 Norgesic uncoated tablet, 24 36141011000036107 Norgesic uncoated tablet 35879011000036104 Norgesic 35879011000036104 Norgesic 79825011000036103 orphenadrine citrate 35 mg + paracetamol 450 mg tablet, 24 37832011000036105 orphenadrine citrate 35 mg + paracetamol 450 mg tablet 37748011000036109 orphenadrine citrate + paracetamol +673011000168102 Fycompa 10 mg film-coated tablet, 28, blister pack 207692 673001000168100 Fycompa 10 mg film-coated tablet, 28 672981000168104 Fycompa 10 mg film-coated tablet 672551000168100 Fycompa 672551000168100 Fycompa 672991000168101 perampanel 10 mg tablet, 28 672961000168108 perampanel 10 mg tablet 672561000168103 perampanel +18054011000036108 Oxaliplatin (Ebewe) 50 mg powder for injection, 1 vial 125867 11817011000036104 Oxaliplatin (Ebewe) 50 mg powder for injection, 1 vial 4583011000036102 Oxaliplatin (Ebewe) 50 mg powder for injection, 50 mg vial 3096011000036108 Oxaliplatin (Ebewe) 3096011000036108 Oxaliplatin (Ebewe) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +728431000168102 Atropine Sulfate Min-I-Jet (UCB Pharma) 1 mg/10 mL injection solution, 10 mL syringe 48529 728421000168100 Atropine Sulfate Min-I-Jet (UCB Pharma) 1 mg/10 mL injection solution, 10 mL syringe 728411000168107 Atropine Sulfate Min-I-Jet (UCB Pharma) 1 mg/10 mL injection solution, 10 mL syringe 728401000168109 Atropine Sulfate Min-I-Jet (UCB Pharma) 728401000168109 Atropine Sulfate Min-I-Jet (UCB Pharma) 78260011000036105 atropine sulfate monohydrate 1 mg/10 mL injection, 10 mL syringe 77581011000036103 atropine sulfate monohydrate 1 mg/10 mL injection, syringe 933232141000036108 atropine sulfate monohydrate +921451000168109 Cinacalcet (Apotex) 30 mg film-coated tablet, 28, blister pack 240292 921441000168107 Cinacalcet (Apotex) 30 mg film-coated tablet, 28 921431000168103 Cinacalcet (Apotex) 30 mg film-coated tablet 921421000168101 Cinacalcet (Apotex) 921421000168101 Cinacalcet (Apotex) 38843011000036105 cinacalcet 30 mg tablet, 28 38043011000036106 cinacalcet 30 mg tablet 37755011000036100 cinacalcet +50405011000036102 Contreet Foam Non-Adhesive (9622) 10 cm x 10 cm hydroactive dressing, 5, carton 49423011000036102 Contreet Foam Non-Adhesive (9622) 10 cm x 10 cm hydroactive dressing, 5 48758011000036100 Contreet Foam Non-Adhesive (9622) 10 cm x 10 cm hydroactive dressing 45251000168102 Contreet Foam Non-Adhesive (9622) 45251000168102 Contreet Foam Non-Adhesive (9622) 51391011000036103 dressing with silver 10 cm x 10 cm hydroactive dressing, 5 50912011000036105 dressing with silver 10 cm x 10 cm hydroactive dressing 50760011000036100 dressing with silver +796961000168107 Aciclovir (RBX) 200 mg uncoated tablet, 25, blister pack 182881 796951000168105 Aciclovir (RBX) 200 mg uncoated tablet, 25 796941000168108 Aciclovir (RBX) 200 mg uncoated tablet 796791000168102 Aciclovir (RBX) 796791000168102 Aciclovir (RBX) 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +745841000168101 Cialis 20 mg film-coated tablet, 8, blister pack 81137 745831000168105 Cialis 20 mg film-coated tablet, 8 7095011000036108 Cialis 20 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 745821000168107 tadalafil 20 mg tablet, 8 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +801251000168106 Abbapram 20 mg film-coated tablet, 28, blister pack 151310 801241000168109 Abbapram 20 mg film-coated tablet, 28 801211000168105 Abbapram 20 mg film-coated tablet 801201000168107 Abbapram 801201000168107 Abbapram 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +86033011000036109 Coveram 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 154439 85680011000036102 Coveram 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30 85330011000036100 Coveram 5mg/10mg (perindopril arginine/amlodipine) uncoated tablet 24931000168102 Coveram 5mg/10mg (perindopril arginine/amlodipine) 24931000168102 Coveram 5mg/10mg (perindopril arginine/amlodipine) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +34676011000036108 Salbutamol (Pharmacor) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 133121 34262011000036104 Salbutamol (Pharmacor) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 33992011000036102 Salbutamol (Pharmacor) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33948011000036106 Salbutamol (Pharmacor) 33948011000036106 Salbutamol (Pharmacor) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +1002831000168106 Olanzapine (Apotex) 2.5 mg film-coated tablet, 28, blister pack 159008 1002821000168108 Olanzapine (Apotex) 2.5 mg film-coated tablet, 28 1002811000168101 Olanzapine (Apotex) 2.5 mg film-coated tablet 1000751000168109 Olanzapine (Apotex) 1000751000168109 Olanzapine (Apotex) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +693881000168108 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 100, blister pack 215358 693871000168105 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 100 693821000168109 Amitriptyline Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +20275011000036102 Alphapril 10 mg uncoated tablet, 30, blister pack 75235 13485011000036105 Alphapril 10 mg uncoated tablet, 30 6767011000036103 Alphapril 10 mg uncoated tablet 3378011000036102 Alphapril 3378011000036102 Alphapril 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +996441000168109 Amoxy/Clav 500/125 (Apo) film-coated tablet, 10, blister pack 255075 996431000168100 Amoxy/Clav 500/125 (Apo) film-coated tablet, 10 996401000168107 Amoxy/Clav 500/125 (Apo) film-coated tablet 996391000168105 Amoxy/Clav 500/125 (Apo) 996391000168105 Amoxy/Clav 500/125 (Apo) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +19990011000036100 Oxycontin 20 mg modified release tablet, 20, bottle 68189 13230011000036108 Oxycontin 20 mg modified release tablet, 20 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +18570011000036104 Gabapentin (Pharmacor) 300 mg hard capsule, 100, blister pack 130624 11904011000036104 Gabapentin (Pharmacor) 300 mg hard capsule, 100 5533011000036103 Gabapentin (Pharmacor) 300 mg hard capsule 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +933239671000036100 Meloxicam (Apo) 7.5 mg hard capsule, 20, blister pack 181191 933236991000036104 Meloxicam (Apo) 7.5 mg hard capsule, 20 933234781000036108 Meloxicam (Apo) 7.5 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 52888011000036108 meloxicam 7.5 mg capsule, 20 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +87703011000036101 Carvedilol (Apo) 6.25 mg film-coated tablet, 60, bottle 123833 87414011000036109 Carvedilol (Apo) 6.25 mg film-coated tablet, 60 87296011000036101 Carvedilol (Apo) 6.25 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +696041000168100 Gammanorm 3.3 g/20 mL injection solution, 20 mL vial 128705 696031000168109 Gammanorm 3.3 g/20 mL injection solution, 20 mL vial 696011000168104 Gammanorm 3.3 g/20 mL injection solution, 20 mL vial 695941000168106 Gammanorm 695941000168106 Gammanorm 696021000168106 normal immunoglobulin 3.3 g/20 mL injection, 20 mL vial 696001000168102 normal immunoglobulin 3.3 g/20 mL injection, vial 74965011000036103 normal immunoglobulin +79053011000036102 Bio Magnesium film-coated tablet, 100, bottle (Old Formulation 2009) 149347 78846011000036105 Bio Magnesium film-coated tablet, 100 (Old Formulation 2009) 78653011000036108 Bio Magnesium film-coated tablet (Old Formulation 2009) 45051000168105 Bio Magnesium 45051000168105 Bio Magnesium 79237011000036100 magnesium (as oxide heavy) 265.4 mg + magnesium (as phosphate pentahydrate) 36 mg + calcium ascorbate dihydrate 250 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet, 100 79113011000036101 magnesium (as oxide heavy) 265.4 mg + magnesium (as phosphate pentahydrate) 36 mg + calcium ascorbate dihydrate 250 mg + pyridoxine hydrochloride 50 mg + colecalciferol 2.5 microgram (100 units) + manganese amino acid chelate 40 mg tablet 79091011000036107 magnesium oxide heavy + magnesium phosphate pentahydrate + ascorbic acid + pyridoxine + colecalciferol + manganese amino acid chelate +84296011000036108 Ozpan 20 mg enteric tablet, 30, blister pack 151290 83989011000036102 Ozpan 20 mg enteric tablet, 30 83624011000036109 Ozpan 20 mg enteric tablet 83553011000036102 Ozpan 83553011000036102 Ozpan 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +771021000168104 Ibimicyn 1 g powder for injection, 10 vials 92840 771011000168106 Ibimicyn 1 g powder for injection, 10 vials 7312011000036103 Ibimicyn 1 g powder for injection, vial 3348011000036101 Ibimicyn 3348011000036101 Ibimicyn 771001000168108 ampicillin 1 g injection, 10 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +131761000036106 Candesartan Cilexetil Combi 32/12.5 (Aspen) uncoated tablet, 30, blister pack 204578 128731000036108 Candesartan Cilexetil Combi 32/12.5 (Aspen) uncoated tablet, 30 124761000036107 Candesartan Cilexetil Combi 32/12.5 (Aspen) uncoated tablet 51361000168108 Candesartan Cilexetil Combi 32/12.5 (Aspen) 51361000168108 Candesartan Cilexetil Combi 32/12.5 (Aspen) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +732131000168106 Cold Sore (Apohealth) 5% cream, 5 g, tube 227474 732121000168108 Cold Sore (Apohealth) 5% cream, 5 g 732111000168101 Cold Sore (Apohealth) 5% cream 732101000168104 Cold Sore (Apohealth) 732101000168104 Cold Sore (Apohealth) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +69267011000036107 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) irrigation solution, 500 mL bottle 19476 67067011000036105 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) irrigation solution, 500 mL bottle 65511011000036103 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) irrigation solution, 500 mL bottle 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71637011000036109 sodium chloride 0.9% (4.5 g/500 mL) solution, 500 mL bottle 70104011000036102 sodium chloride 0.9% (4.5 g/500 mL) solution, bottle 21308011000036103 sodium chloride +81038011000036101 Pitressin 1 mg/mL (equivalent to vasopressin 20 units/mL) injection solution, 5 x 1 mL vials 121673 80487011000036106 Pitressin 1 mg/mL (equivalent to vasopressin 20 units/mL) injection solution, 5 x 1 mL vials 80148011000036100 Pitressin 1 mg/mL (equivalent to vasopressin 20 units/mL) injection solution, vial 80128011000036102 Pitressin 80128011000036102 Pitressin 81586011000036107 argipressin 1 mg/mL (equivalent to vasopressin 20 units/mL) injection, 5 x 1 mL vials 81262011000036101 argipressin 1 mg/mL (equivalent to vasopressin 20 units/mL) injection, vial 81218011000036104 argipressin +20866011000036108 Ceftriaxone (Mayne Pharma) 1 g powder for injection, 5 vials 92399 14028011000036104 Ceftriaxone (Mayne Pharma) 1 g powder for injection, 5 vials 7304011000036105 Ceftriaxone (Mayne Pharma) 1 g powder for injection, vial 4238011000036109 Ceftriaxone (Mayne Pharma) 4238011000036109 Ceftriaxone (Mayne Pharma) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +920689011000036105 Fluconazole (Sandoz) 100 mg hard capsule, 28, blister pack 104288 920350011000036101 Fluconazole (Sandoz) 100 mg hard capsule, 28 920121011000036101 Fluconazole (Sandoz) 100 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +69524011000036102 Dermeze ointment, 500 g, jar 54259 67324011000036107 Dermeze ointment, 500 g 65611011000036105 Dermeze ointment 65171011000036103 Dermeze 65171011000036103 Dermeze 71869011000036101 liquid paraffin 50% + white soft paraffin 50% ointment, 500 g 70224011000036105 liquid paraffin 50% + white soft paraffin 50% ointment 69750011000036107 liquid paraffin + white soft paraffin +926729011000036100 Provive 1% 1 g/100 mL injection emulsion, 100 mL vial 118940 926114011000036101 Provive 1% 1 g/100 mL injection emulsion, 100 mL vial 925628011000036103 Provive 1% 1 g/100 mL injection emulsion, 100 mL vial 7831000168105 Provive 1% 7831000168105 Provive 1% 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +727791000168105 Zyprexa Zydis 5 mg wafer, 7, blister pack 73388 727781000168107 Zyprexa Zydis 5 mg wafer, 7 6642011000036103 Zyprexa Zydis 5 mg wafer 15881000168103 Zyprexa Zydis 15881000168103 Zyprexa Zydis 933205181000036102 olanzapine 5 mg wafer, 7 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +73294011000036102 Jurnista 32 mg modified release tablet, 14, blister pack 141534 73092011000036103 Jurnista 32 mg modified release tablet, 14 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73490011000036106 hydromorphone hydrochloride 32 mg modified release tablet, 14 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +61662011000036102 Aerius Syrup 500 microgram/mL oral liquid solution, 50 mL, bottle 97260 57584011000036103 Aerius Syrup 500 microgram/mL oral liquid solution, 50 mL 54355011000036102 Aerius Syrup 500 microgram/mL oral liquid solution 38081000168108 Aerius Syrup 38081000168108 Aerius Syrup 63940011000036104 desloratadine 500 microgram/mL oral liquid, 50 mL 62105011000036107 desloratadine 500 microgram/mL oral liquid 61723011000036109 desloratadine +811341000168100 Granisetron (Apo) 1 mg/mL injection solution, 5 x 1 mL ampoules 217091 811331000168109 Granisetron (Apo) 1 mg/mL injection solution, 5 x 1 mL ampoules 811321000168106 Granisetron (Apo) 1 mg/mL injection solution, ampoule 811311000168104 Granisetron (Apo) 811311000168104 Granisetron (Apo) 46134011000036108 granisetron 1 mg/mL injection, 5 x 1 mL ampoules 45003011000036106 granisetron 1 mg/mL injection, ampoule 21431011000036106 granisetron +60015011000036108 Diovan 320 mg film-coated tablet, 7, blister pack 123357 55977011000036107 Diovan 320 mg film-coated tablet, 7 53744011000036101 Diovan 320 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63187011000036109 valsartan 320 mg tablet, 7 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +696121000168107 MD-Gastroview solution, 12 x 240 mL, bottles 20011 696111000168100 MD-Gastroview solution, 12 x 240 mL 696061000168101 MD-Gastroview solution 920923011000036102 MD-Gastroview 920923011000036102 MD-Gastroview 696101000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 2400 mL 696051000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution 77441011000036100 amidotrizoic acid +44562011000036108 Bicor 1.25 mg film-coated tablet, 10, blister pack 81603 42015011000036106 Bicor 1.25 mg film-coated tablet, 10 40323011000036105 Bicor 1.25 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 46788011000036101 bisoprolol fumarate 1.25 mg tablet, 10 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +861011000168100 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 6 x 200 mL bottles 48241 861001000168103 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 6 x 200 mL bottles 860981000168102 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 200 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 860991000168104 iohexol 755 mg (iodine 350 mg)/mL injection, 6 x 200 mL bottles 860971000168100 iohexol 755 mg (iodine 350 mg)/mL injection, 200 mL bottle 77459011000036103 iohexol +73971000036109 Cellplant 250 mg hard capsule, 100, blister pack 177573 71651000036107 Cellplant 250 mg hard capsule, 100 70091000036100 Cellplant 250 mg hard capsule 69261000036102 Cellplant 69261000036102 Cellplant 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +19838011000036104 3TC 10 mg/mL oral liquid solution, 240 mL, bottle 64346 13089011000036102 3TC 10 mg/mL oral liquid solution, 240 mL 6373011000036101 3TC 10 mg/mL oral liquid solution 3566011000036108 3TC 3566011000036108 3TC 27542011000036106 lamivudine 10 mg/mL oral liquid, 240 mL 22882011000036103 lamivudine 10 mg/mL oral liquid 21665011000036104 lamivudine +968351000168101 Arabloc 100 mg film-coated tablet, 3, blister pack 92755 968341000168103 Arabloc 100 mg film-coated tablet, 3 968331000168107 Arabloc 100 mg film-coated tablet 4283011000036107 Arabloc 4283011000036107 Arabloc 46652011000036102 leflunomide 100 mg tablet, 3 33651011000036103 leflunomide 100 mg tablet 21504011000036108 leflunomide +24831000036104 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 1 L bag 19435 22941000036108 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 1 L bag 20231000036105 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 1 L bag 1171000168108 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) 1171000168108 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) 75424011000036104 heparin sodium 2000 units/L + sodium chloride 0.9% (9 g/L) injection, 1 L bag 37983011000036103 heparin sodium 2000 units/L + sodium chloride 0.9% (9 g/L) injection, bag 858621000168104 heparin + sodium chloride +670921000168102 Citalopram (Actavis) 10 mg film-coated tablet, 7, blister pack 158879 670911000168109 Citalopram (Actavis) 10 mg film-coated tablet, 7 670901000168106 Citalopram (Actavis) 10 mg film-coated tablet 670891000168107 Citalopram (Actavis) 670891000168107 Citalopram (Actavis) 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +59683011000036101 Paracetamol (Guardian) 500 mg uncoated tablet, 100, blister pack 100679 55647011000036107 Paracetamol (Guardian) 500 mg uncoated tablet, 100 53656011000036104 Paracetamol (Guardian) 500 mg uncoated tablet 53128011000036100 Paracetamol (Guardian) 53128011000036100 Paracetamol (Guardian) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1059781000168104 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 56, blister pack 234468 1059771000168102 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 56 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 930571000168105 rosuvastatin 5 mg tablet, 56 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +43620011000036105 Simvatrust 10 mg film-coated tablet, 30, blister pack 123812 41302011000036104 Simvatrust 10 mg film-coated tablet, 30 39935011000036103 Simvatrust 10 mg film-coated tablet 39653011000036104 Simvatrust 39653011000036104 Simvatrust 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +85065011000036101 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 95780 84929011000036106 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 7406011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 85196011000036102 adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL syringes 23474011000036101 adalimumab 40 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +85065011000036101 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 199412 84929011000036106 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL syringes 7406011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL syringe 4142011000036107 Humira 4142011000036107 Humira 85196011000036102 adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL syringes 23474011000036101 adalimumab 40 mg/0.8 mL injection, syringe 21584011000036107 adalimumab +165971000036109 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204810 164171000036106 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 28083011000036103 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165971000036109 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204810 164171000036106 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack 162611000036100 Peg-Intron Clearclick Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28083011000036103 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165971000036109 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack, composite pack 204810 164171000036106 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 150 microgram packs, 140 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28083011000036103 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [140 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +168371000036100 Dermaveen Soap Free Wash 1% application, 500 mL, pump pack 159188 167891000036108 Dermaveen Soap Free Wash 1% application, 500 mL 167591000036106 Dermaveen Soap Free Wash 1% application 23461000168103 Dermaveen Soap Free Wash 23461000168103 Dermaveen Soap Free Wash 167901000036109 colloidal oatmeal 1% application, 500 mL 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +927697011000036106 Docetaxel (DBL) 80 mg/8 mL concentrated injection, 8 mL vial 163801 927633011000036109 Docetaxel (DBL) 80 mg/8 mL concentrated injection, 8 mL vial 927586011000036103 Docetaxel (DBL) 80 mg/8 mL concentrated injection, 8 mL vial 927570011000036107 Docetaxel (DBL) 927570011000036107 Docetaxel (DBL) 927737011000036106 docetaxel 80 mg/8 mL injection, 8 mL vial 927715011000036109 docetaxel 80 mg/8 mL injection, vial 21721011000036101 docetaxel +1070741000168104 Cold and Flu PE Day and Night (Pharmacist Formula) (32 x Day tablets, 16 x Night tablets), 48, blister pack 205189 1070731000168108 Cold and Flu PE Day and Night (Pharmacist Formula) (32 x Day tablets, 16 x Night tablets), 48 1070581000168103 Cold and Flu PE Day and Night (Day) (Pharmacist Formula) film-coated tablet 1070551000168105 Cold and Flu PE Day and Night (Pharmacist Formula) 1070561000168107 Cold and Flu PE Day and Night (Day) (Pharmacist Formula) 1070721000168105 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1070741000168104 Cold and Flu PE Day and Night (Pharmacist Formula) (32 x Day tablets, 16 x Night tablets), 48, blister pack 205189 1070731000168108 Cold and Flu PE Day and Night (Pharmacist Formula) (32 x Day tablets, 16 x Night tablets), 48 1070591000168100 Cold and Flu PE Day and Night (Night) (Pharmacist Formula) film-coated tablet 1070551000168105 Cold and Flu PE Day and Night (Pharmacist Formula) 1070571000168101 Cold and Flu PE Day and Night (Night) (Pharmacist Formula) 1070721000168105 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1092171000168100 Freeway Anti-Inflammatory Throat Spray 0.15% oral spray, 30 mL, pump pack 286506 1092161000168106 Freeway Anti-Inflammatory Throat Spray 0.15% oral spray, 30 mL 1092151000168109 Freeway Anti-Inflammatory Throat Spray 0.15% oral spray 1092141000168107 Freeway Anti-Inflammatory Throat Spray 1092141000168107 Freeway Anti-Inflammatory Throat Spray 721271000168107 benzydamine hydrochloride 0.15% oral spray, 30 mL 721251000168103 benzydamine hydrochloride 0.15% oral spray 21819011000036105 benzydamine +972691000168108 Pregabalin (Apotex) 75 mg hard capsule, 14, blister pack 267554 972681000168105 Pregabalin (Apotex) 75 mg hard capsule, 14 972671000168107 Pregabalin (Apotex) 75 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +80021011000036101 Topiramate (Apo) 100 mg film-coated tablet, 60, blister pack 124731 79954011000036106 Topiramate (Apo) 100 mg film-coated tablet, 60 79915011000036103 Topiramate (Apo) 100 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +933231151000036100 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 56, blister pack 172447 933225221000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 56 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +19596011000036107 Flixotide Accuhaler 500 microgram/actuation powder for inhalation, 60 actuations, blister pack 58437 12867011000036104 Flixotide Accuhaler 500 microgram/actuation powder for inhalation, 60 actuations 6158011000036104 Flixotide Accuhaler 500 microgram/actuation powder for inhalation, actuation 10121000168101 Flixotide Accuhaler 10121000168101 Flixotide Accuhaler 27403011000036101 fluticasone propionate 500 microgram/actuation powder for inhalation, 60 actuations 22752011000036107 fluticasone propionate 500 microgram/actuation powder for inhalation, actuation 861061000168102 fluticasone propionate +44680011000036103 Copegus 200 mg film-coated tablet, 42, bottle 91841 42129011000036106 Copegus 200 mg film-coated tablet, 42 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 3042011000036103 Copegus 3042011000036103 Copegus 46891011000036107 ribavirin 200 mg tablet, 42 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +60983011000036102 Sudafed Sinus plus Pain Relief uncoated tablet, 48, blister pack 63230 56926011000036105 Sudafed Sinus plus Pain Relief uncoated tablet, 48 54123011000036107 Sudafed Sinus plus Pain Relief uncoated tablet 53113011000036101 Sudafed Sinus plus Pain Relief 53113011000036101 Sudafed Sinus plus Pain Relief 63904011000036100 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 48 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +745751000168109 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 55128 745741000168107 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 745711000168108 Brenda-35 ED (inert substance) sugar coated tablet 745691000168105 Brenda-35 ED 745691000168105 Brenda-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +745751000168109 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 55128 745741000168107 Brenda-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 745701000168105 Brenda-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 745691000168105 Brenda-35 ED 745691000168105 Brenda-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +60409011000036101 Nurofen Regular 200 mg sugar coated tablet, 72, blister pack 144202 56368011000036107 Nurofen Regular 200 mg sugar coated tablet, 72 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63320011000036106 ibuprofen 200 mg tablet, 72 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +21001011000036108 Cefaclor (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 96318 14147011000036108 Cefaclor (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL 7426011000036104 Cefaclor (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 5 mL 3764011000036104 Cefaclor (Terry White Chemists) 3764011000036104 Cefaclor (Terry White Chemists) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +21001011000036108 Cefaclor (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 169118 14147011000036108 Cefaclor (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL 7426011000036104 Cefaclor (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 5 mL 3764011000036104 Cefaclor (Terry White Chemists) 3764011000036104 Cefaclor (Terry White Chemists) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +50497011000036109 Dialamine powder for oral liquid, 200 g, can 49269011000036107 Dialamine powder for oral liquid, 200 g 48489011000036108 Dialamine powder for oral liquid 48326011000036102 Dialamine 48326011000036102 Dialamine 51262011000036103 essential amino acids formula with minerals and vitamin C powder for oral liquid, 200 g 50799011000036108 essential amino acids formula with minerals and vitamin C powder for oral liquid 50784011000036108 essential amino acids formula with minerals and vitamin C +1054081000168102 Norspan 10 microgram/hour patch, 4, sachet 116648 1054071000168100 Norspan 10 microgram/hour patch, 4 5476011000036104 Norspan 10 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 1046681000168103 buprenorphine 10 microgram/hour patch, 4 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +20624011000036103 Azathioprine (GenRx) 50 mg film-coated tablet, 100, blister pack 80923 13804011000036101 Azathioprine (GenRx) 50 mg film-coated tablet, 100 7090011000036104 Azathioprine (GenRx) 50 mg film-coated tablet 3636011000036105 Azathioprine (GenRx) 3636011000036105 Azathioprine (GenRx) 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +60786011000036101 Chesty Cough (Chemists' Own) oral liquid solution, 100 mL, bottle 55137 56744011000036106 Chesty Cough (Chemists' Own) oral liquid solution, 100 mL 54061011000036107 Chesty Cough (Chemists' Own) oral liquid solution, 10 mL 53126011000036104 Chesty Cough (Chemists' Own) 53126011000036104 Chesty Cough (Chemists' Own) 63902011000036109 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 100 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62100011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 100 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61778011000036103 bromhexine + guaifenesin + pseudoephedrine +676631000168106 Sildenafil (GH) 100 mg film-coated tablet, 4, blister pack 196240 676621000168108 Sildenafil (GH) 100 mg film-coated tablet, 4 676611000168101 Sildenafil (GH) 100 mg film-coated tablet 676601000168104 Sildenafil (GH) 676601000168104 Sildenafil (GH) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +852261000168108 Olmesartan/Amlodipine 40/10 (Myl) film-coated tablet, 10, blister pack 273620 852251000168106 Olmesartan/Amlodipine 40/10 (Myl) film-coated tablet, 10 852241000168109 Olmesartan/Amlodipine 40/10 (Myl) film-coated tablet 852231000168100 Olmesartan/Amlodipine 40/10 (Myl) 852231000168100 Olmesartan/Amlodipine 40/10 (Myl) 922567011000036100 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 10 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +929351000168102 Semi-Daonil 2.5 mg uncoated tablet, 60, blister pack 42691 929341000168104 Semi-Daonil 2.5 mg uncoated tablet, 60 929261000168109 Semi-Daonil 2.5 mg uncoated tablet 929241000168105 Semi-Daonil 929241000168105 Semi-Daonil 929331000168108 glibenclamide 2.5 mg tablet, 60 929251000168107 glibenclamide 2.5 mg tablet 21911011000036104 glibenclamide +989861000168104 Cansolve Plus (1 x Fluconazole (First Pharma) capsule, 1 x Cansolve cream), 1 pack, composite pack 202059 989851000168101 Cansolve Plus (1 x Fluconazole (First Pharma) capsule, 1 x Cansolve cream), 1 pack 989371000168101 Cansolve 1% cream 989441000168101 Cansolve Plus 989361000168107 Cansolve 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +989861000168104 Cansolve Plus (1 x Fluconazole (First Pharma) capsule, 1 x Cansolve cream), 1 pack, composite pack 202059 989851000168101 Cansolve Plus (1 x Fluconazole (First Pharma) capsule, 1 x Cansolve cream), 1 pack 989411000168100 Fluconazole (First Pharma) 150 mg hard capsule 989441000168101 Cansolve Plus 989401000168103 Fluconazole (First Pharma) 63259011000036107 fluconazole 150 mg capsule [1] (&) clotrimazole 1% cream [10 g], 1 pack 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +996281000168103 Duro-Tuss Dry Cough Lozenge orange lozenge, 2, blister pack 51466 996271000168101 Duro-Tuss Dry Cough Lozenge orange lozenge, 2 996261000168107 Duro-Tuss Dry Cough Lozenge orange lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 996171000168107 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 996151000168103 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge 61757011000036101 pholcodine + cetylpyridinium +814231000168100 Famciclovir (GA) 500 mg film-coated tablet, 14, blister pack 177020 814221000168103 Famciclovir (GA) 500 mg film-coated tablet, 14 78301000036108 Famciclovir (GA) 500 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 86443011000036101 famciclovir 500 mg tablet, 14 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +933231131000036108 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 3, blister pack 172447 933225201000036106 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 3 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +43894011000036100 Neupro 6 mg/24 hours patch, 100, sachet 131382 41386011000036104 Neupro 6 mg/24 hours patch, 100 39951011000036101 Neupro 6 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46283011000036100 rotigotine 6 mg/24 hours patch, 100 45053011000036103 rotigotine 6 mg/24 hours patch 44880011000036107 rotigotine +43652011000036108 Gabaran 800 mg film-coated tablet, 100, blister pack 121843 41265011000036100 Gabaran 800 mg film-coated tablet, 100 4651011000036104 Gabaran 800 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +1015031000168107 Candesartan HCTZ 32/12.5 (Apotex) tablet, 30, blister pack 201659 1015021000168109 Candesartan HCTZ 32/12.5 (Apotex) tablet, 30 1015011000168102 Candesartan HCTZ 32/12.5 (Apotex) tablet 1015001000168100 Candesartan HCTZ 32/12.5 (Apotex) 1015001000168100 Candesartan HCTZ 32/12.5 (Apotex) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +831391000168104 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack 201877 831381000168102 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 831361000168106 M-M-R II (measles + mumps + rubella live vaccine) powder for injection, vial 706311000168107 M-M-R II 706311000168107 M-M-R II 831371000168100 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack 831351000168109 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831391000168104 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack 201877 831381000168102 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 706351000168108 M-M-R II (inert substance) diluent, syringe 706311000168107 M-M-R II 706311000168107 M-M-R II 831371000168100 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +69235011000036109 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 1 L bottle 19462 67035011000036107 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 1 L bottle 65302011000036109 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 1 L bottle 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 71605011000036105 chlorhexidine acetate 0.1% (1 g/L) + cetrimide 1% (10 g/L) solution, 1 L bottle 70088011000036100 chlorhexidine acetate 0.1% (1 g/L) + cetrimide 1% (10 g/L) solution, bottle 69756011000036105 chlorhexidine + cetrimide +33605011000036106 Caverject Impulse (2 x 20 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack, dual chamber composite pack 90197 33343011000036108 Caverject Impulse (2 x 20 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack 33102011000036102 Caverject Impulse (alprostadil 20 microgram) powder for injection, 20 microgram syringe 51811000168103 Caverject Impulse 51811000168103 Caverject Impulse 33822011000036101 alprostadil 20 microgram injection [2] (&) inert substance diluent [2 x 0.6 mL syringes], 1 pack 33689011000036107 alprostadil 20 microgram injection, syringe 21478011000036104 alprostadil +33605011000036106 Caverject Impulse (2 x 20 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack, dual chamber composite pack 90197 33343011000036108 Caverject Impulse (2 x 20 microgram syringes, 2 x 0.6 mL inert diluent syringes), 1 pack 642161000168105 Caverject Impulse (inert substance) diluent, 0.6 mL syringe 51811000168103 Caverject Impulse 51811000168103 Caverject Impulse 33822011000036101 alprostadil 20 microgram injection [2] (&) inert substance diluent [2 x 0.6 mL syringes], 1 pack 642151000168108 inert substance diluent, 0.6 mL syringe 21220011000036103 inert substance +996301000168104 Duro-Tuss Dry Cough Lozenge orange lozenge, 24, blister pack 51466 996291000168100 Duro-Tuss Dry Cough Lozenge orange lozenge, 24 996261000168107 Duro-Tuss Dry Cough Lozenge orange lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 996201000168106 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 996151000168103 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge 61757011000036101 pholcodine + cetylpyridinium +775171000168100 Ezovir Cold Sore Relief 500 mg film-coated tablet, 3, blister pack 205534 775161000168106 Ezovir Cold Sore Relief 500 mg film-coated tablet, 3 775151000168109 Ezovir Cold Sore Relief 500 mg film-coated tablet 775141000168107 Ezovir Cold Sore Relief 775141000168107 Ezovir Cold Sore Relief 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +981191000168101 Lovenox 100 mg/mL injection solution, 10 x 1 mL syringes 80269 981181000168104 Lovenox 100 mg/mL injection solution, 10 x 1 mL syringes 981061000168109 Lovenox 100 mg/mL injection solution, syringe 112571000036109 Lovenox 112571000036109 Lovenox 27375011000036104 enoxaparin sodium 100 mg/mL injection, 10 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +20883011000036104 Ibilex 250 mg/5 mL powder for oral liquid, 100 mL, bottle 92973 14045011000036108 Ibilex 250 mg/5 mL powder for oral liquid, 100 mL 7323011000036101 Ibilex 250 mg/5 mL powder for oral liquid, 5 mL 3667011000036100 Ibilex 3667011000036100 Ibilex 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +878391000168106 Baltine 30 mg enteric capsule, 28, blister pack 210680 878381000168108 Baltine 30 mg enteric capsule, 28 878301000168100 Baltine 30 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +61377011000036103 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution, 200 mL, bottle 81746 57302011000036109 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution, 200 mL 54266011000036107 Dry Tickly Cough Mixture (Pharmacy Health) 1 mg/mL oral liquid solution 31111000168106 Dry Tickly Cough Mixture (Pharmacy Health) 31111000168106 Dry Tickly Cough Mixture (Pharmacy Health) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +1002081000168100 Amlodipine/Atorvastatin 5/20 (Apotex) film-coated tablet, 30, blister pack 214356 1002071000168103 Amlodipine/Atorvastatin 5/20 (Apotex) film-coated tablet, 30 1002061000168109 Amlodipine/Atorvastatin 5/20 (Apotex) film-coated tablet 1002051000168107 Amlodipine/Atorvastatin 5/20 (Apotex) 1002051000168107 Amlodipine/Atorvastatin 5/20 (Apotex) 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +165881000036103 Paracetamol (Kabi) 1 g/100 mL injection solution, 10 x 100 mL vials 203624 164051000036102 Paracetamol (Kabi) 1 g/100 mL injection solution, 10 x 100 mL vials 162161000036108 Paracetamol (Kabi) 1 g/100 mL injection solution, 100 mL vial 161851000036107 Paracetamol (Kabi) 161851000036107 Paracetamol (Kabi) 164061000036104 paracetamol 1 g/100 mL injection, 10 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +1023691000168106 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 6, blister pack 227168 1023681000168108 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 6 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +762271000168107 Imlygic 1 million PFU/mL injection solution, 1 mL vial 232296 762261000168101 Imlygic 1 million PFU/mL injection solution, 1 mL vial 762241000168100 Imlygic 1 million PFU/mL injection solution, vial 762021000168103 Imlygic 762021000168103 Imlygic 762251000168103 talimogene laherparepvec 1 million PFU/mL injection, 1 mL vial 762231000168109 talimogene laherparepvec 1 million PFU/mL injection, vial 762221000168106 talimogene laherparepvec +68841011000036104 Dencorub Arthritis 10% cream, 75 g, tube 10148 66477011000036107 Dencorub Arthritis 10% cream, 75 g 65359011000036108 Dencorub Arthritis 10% cream 64979011000036108 Dencorub Arthritis 64979011000036108 Dencorub Arthritis 71210011000036100 trolamine salicylate 10% cream, 75 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +993631000168107 Lyrica 225 mg hard capsule, 60, blister pack 99535 993581000168109 Lyrica 225 mg hard capsule, 60 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +835731000168102 Prodeine 15 uncoated tablet, 50, blister pack 153884 835721000168100 Prodeine 15 uncoated tablet, 50 835681000168106 Prodeine 15 uncoated tablet 2241000168102 Prodeine 15 2241000168102 Prodeine 15 835711000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 50 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +933214011000036107 Valdoxan 25 mg film-coated tablet, 28, blister pack 159712 933203601000036100 Valdoxan 25 mg film-coated tablet, 28 933195581000036106 Valdoxan 25 mg film-coated tablet 933193351000036105 Valdoxan 933193351000036105 Valdoxan 933203621000036105 agomelatine 25 mg tablet, 28 933195601000036101 agomelatine 25 mg tablet 933216401000036109 agomelatine +920901000168106 Ceftriaxone (Pfizer) 500 mg powder for injection, 5 vials 174448 920891000168107 Ceftriaxone (Pfizer) 500 mg powder for injection, 5 vials 920831000168108 Ceftriaxone (Pfizer) 500 mg powder for injection, 500 mg vial 920781000168100 Ceftriaxone (Pfizer) 920781000168100 Ceftriaxone (Pfizer) 933200131000036108 ceftriaxone 500 mg injection, 5 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +933211861000036103 Pravastatin Sodium (Lupin) 20 mg film-coated tablet, 30, blister pack 139588 933200681000036102 Pravastatin Sodium (Lupin) 20 mg film-coated tablet, 30 933194631000036109 Pravastatin Sodium (Lupin) 20 mg film-coated tablet 933193951000036106 Pravastatin Sodium (Lupin) 933193951000036106 Pravastatin Sodium (Lupin) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +60032011000036108 Heartburn Relief (Guardian) 150 mg film-coated tablet, 10, blister pack 123671 55994011000036109 Heartburn Relief (Guardian) 150 mg film-coated tablet, 10 53751011000036101 Heartburn Relief (Guardian) 150 mg film-coated tablet 53366011000036104 Heartburn Relief (Guardian) 53366011000036104 Heartburn Relief (Guardian) 63188011000036105 ranitidine 150 mg tablet, 10 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1021521000168106 Voriconazole (Apo) 200 mg film-coated tablet, 14, blister pack 238282 1021511000168104 Voriconazole (Apo) 200 mg film-coated tablet, 14 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46804011000036107 voriconazole 200 mg tablet, 14 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +1062751000168106 Atorvator 20 mg film-coated tablet, 6, blister pack 179837 1062741000168109 Atorvator 20 mg film-coated tablet, 6 1062731000168100 Atorvator 20 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 841281000168105 atorvastatin 20 mg tablet, 6 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +19247011000036105 Soframycin 0.5% eye/ear drops, 8 mL, bottle 47541 12538011000036109 Soframycin 0.5% eye/ear drops, 8 mL 5546011000036108 Soframycin 0.5% eye/ear drops 3825011000036107 Soframycin 3825011000036107 Soframycin 27184011000036104 framycetin sulfate 0.5% eye/ear drops, 8 mL 22546011000036108 framycetin sulfate 0.5% eye/ear drops 21602011000036108 framycetin sulfate +1002241000168101 Pregabalin (Apo) 225 mg hard capsule, 60, blister pack 193278 1001361000168103 Pregabalin (Apo) 225 mg hard capsule, 60 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +60274011000036108 Fexo (Chemists' Own) 120 mg film-coated tablet, 20, blister pack 134786 56233011000036103 Fexo (Chemists' Own) 120 mg film-coated tablet, 20 53848011000036106 Fexo (Chemists' Own) 120 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 52884011000036101 fexofenadine hydrochloride 120 mg tablet, 20 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +650861000168102 Capecitabine (Actavis) 500 mg film-coated tablet, 120, blister pack 212111 650851000168104 Capecitabine (Actavis) 500 mg film-coated tablet, 120 650841000168101 Capecitabine (Actavis) 500 mg film-coated tablet 650701000168105 Capecitabine (Actavis) 650701000168105 Capecitabine (Actavis) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +1082021000168103 Zirizine 10 mg film-coated tablet, 20, blister pack 286354 1082011000168105 Zirizine 10 mg film-coated tablet, 20 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 1082001000168107 cetirizine hydrochloride 10 mg tablet, 20 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +82331000036106 Rabeprazole Sodium (Chemmart) 20 mg enteric tablet, 30, blister pack 189746 80301000036103 Rabeprazole Sodium (Chemmart) 20 mg enteric tablet, 30 78551000036102 Rabeprazole Sodium (Chemmart) 20 mg enteric tablet 78031000036103 Rabeprazole Sodium (Chemmart) 78031000036103 Rabeprazole Sodium (Chemmart) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +1002101000168107 Pregabalin (Apo) 200 mg hard capsule, 20, blister pack 193277 1001931000168107 Pregabalin (Apo) 200 mg hard capsule, 20 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903271000168106 pregabalin 200 mg capsule, 20 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +86110011000036101 Levetiracetam (Apo) 250 mg tablet, 500, bottle 156322 85710011000036106 Levetiracetam (Apo) 250 mg tablet, 500 85346011000036103 Levetiracetam (Apo) 250 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 86440011000036109 levetiracetam 250 mg tablet, 500 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +668671000168101 Esomeprazole (GXP) 40 mg enteric tablet, 30, blister pack 205831 668661000168107 Esomeprazole (GXP) 40 mg enteric tablet, 30 668651000168105 Esomeprazole (GXP) 40 mg enteric tablet 668611000168109 Esomeprazole (GXP) 668611000168109 Esomeprazole (GXP) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +933239741000036103 Meloxicam (Chemmart) 7.5 mg hard capsule, 100, blister pack 181200 933237061000036105 Meloxicam (Chemmart) 7.5 mg hard capsule, 100 933234801000036109 Meloxicam (Chemmart) 7.5 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 52887011000036107 meloxicam 7.5 mg capsule, 100 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +926913011000036101 Regaine Women's Regular Strength 2% application, 3 x 60 mL, bottles 81852 926307011000036102 Regaine Women's Regular Strength 2% application, 3 x 60 mL 925751011000036100 Regaine Women's Regular Strength 2% application 39761000168109 Regaine Women's Regular Strength 39761000168109 Regaine Women's Regular Strength 63778011000036108 minoxidil 2% application, 3 x 60 mL 62111011000036107 minoxidil 2% application 21642011000036104 minoxidil +655661000168107 Atorvastatin (AN) 40 mg film-coated tablet, 30, blister pack 198848 655651000168105 Atorvastatin (AN) 40 mg film-coated tablet, 30 655641000168108 Atorvastatin (AN) 40 mg film-coated tablet 655571000168100 Atorvastatin (AN) 655571000168100 Atorvastatin (AN) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +931672011000036100 Cyklokapron 1 g/10 mL injection solution, 10 mL ampoule 166415 930832011000036100 Cyklokapron 1 g/10 mL injection solution, 10 mL ampoule 930061011000036104 Cyklokapron 1 g/10 mL injection solution, 10 mL ampoule 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 932445011000036105 tranexamic acid 1 g/10 mL injection, 10 mL ampoule 931860011000036103 tranexamic acid 1 g/10 mL injection, ampoule 21746011000036108 tranexamic acid +1071201000168100 Quepine XR 400 mg modified release tablet, 60, blister pack 199889 1071191000168103 Quepine XR 400 mg modified release tablet, 60 1071181000168101 Quepine XR 400 mg modified release tablet 852351000168101 Quepine XR 852351000168101 Quepine XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +933246181000036102 Allevyn Ag Adhesive (66800078) 12.5 cm x 12.5 cm medicated dressing, 10, carton 155735 933242801000036103 Allevyn Ag Adhesive (66800078) 12.5 cm x 12.5 cm medicated dressing, 10 933241061000036102 Allevyn Ag Adhesive (66800078) 12.5 cm x 12.5 cm medicated dressing 39971000168101 Allevyn Ag Adhesive (66800078) 39971000168101 Allevyn Ag Adhesive (66800078) 933242811000036101 dressing foam with silver 12.5 cm x 12.5 cm dressing, 10 933241071000036105 dressing foam with silver 12.5 cm x 12.5 cm dressing 933247641000036101 dressing foam with silver +20053011000036107 Arava 10 mg film-coated tablet, 30, blister pack 69691 13283011000036108 Arava 10 mg film-coated tablet, 30 6566011000036100 Arava 10 mg film-coated tablet 3730011000036103 Arava 3730011000036103 Arava 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +73246011000036101 Omeprazole IV (Sandoz) 40 mg powder for injection, 5 vials 127835 73050011000036107 Omeprazole IV (Sandoz) 40 mg powder for injection, 5 vials 72939011000036102 Omeprazole IV (Sandoz) 40 mg powder for injection, 40 mg vial 5211000168107 Omeprazole IV (Sandoz) 5211000168107 Omeprazole IV (Sandoz) 73455011000036105 omeprazole 40 mg injection, 5 vials 73363011000036107 omeprazole 40 mg injection, vial 21676011000036101 omeprazole +20576011000036102 Xalacom eye drops solution, 2.5 mL, bottle 80311 13765011000036104 Xalacom eye drops solution, 2.5 mL 7050011000036109 Xalacom eye drops solution 25951000168109 Xalacom 25951000168109 Xalacom 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +68902011000036105 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 28, sachet 129748 66728011000036102 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 28 65263011000036107 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch 32721000168108 Nicotine Phase-1 (Chemists' Own) 32721000168108 Nicotine Phase-1 (Chemists' Own) 63763011000036105 nicotine 21 mg/24 hours patch, 28 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +43771011000036108 Mabcampath 30 mg/mL intravenous infusion injection, 3 x 1 mL vials 116622 41170011000036103 Mabcampath 30 mg/mL intravenous infusion injection, 3 x 1 mL vials 39915011000036106 Mabcampath 30 mg/mL intravenous infusion injection, vial 18471000168108 Mabcampath 18471000168108 Mabcampath 46137011000036102 alemtuzumab 30 mg/mL injection, 3 x 1 mL vials 45006011000036100 alemtuzumab 30 mg/mL injection, vial 44950011000036108 alemtuzumab +850011000168100 Sildenafil (Amneal) 100 mg film-coated tablet, 8, blister pack 202923 850001000168103 Sildenafil (Amneal) 100 mg film-coated tablet, 8 849911000168107 Sildenafil (Amneal) 100 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 760421000168109 sildenafil 100 mg tablet, 8 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +923837011000036103 Prochlorperazine Maleate (Apo) 5 mg tablet, 28, blister pack 158416 923383011000036101 Prochlorperazine Maleate (Apo) 5 mg tablet, 28 923050011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet 4811000168107 Prochlorperazine Maleate (Apo) 4811000168107 Prochlorperazine Maleate (Apo) 924173011000036103 prochlorperazine maleate 5 mg tablet, 28 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +79683011000036103 Nicabate Mini 1.5 mg lozenge, 20, tube 156603 79503011000036107 Nicabate Mini 1.5 mg lozenge, 20 79387011000036104 Nicabate Mini 1.5 mg lozenge 31811000168102 Nicabate Mini 31811000168102 Nicabate Mini 79821011000036100 nicotine 1.5 mg lozenge, 20 79749011000036100 nicotine 1.5 mg lozenge 21432011000036100 nicotine +91381000036100 Oxaliplatin (AS) 50 mg/10 mL concentrated injection, 10 mL vial 177991 89941000036105 Oxaliplatin (AS) 50 mg/10 mL concentrated injection, 10 mL vial 88271000036104 Oxaliplatin (AS) 50 mg/10 mL concentrated injection, 10 mL vial 87701000036103 Oxaliplatin (AS) 87701000036103 Oxaliplatin (AS) 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +962431000168103 Omepral 10 mg enteric tablet, 30, blister pack 120595 962421000168101 Omepral 10 mg enteric tablet, 30 962411000168108 Omepral 10 mg enteric tablet 3379011000036105 Omepral 3379011000036105 Omepral 27528011000036107 omeprazole 10 mg enteric tablet, 30 22868011000036102 omeprazole 10 mg enteric tablet 21676011000036101 omeprazole +933181000168106 Centevo 150/37.5/200 mg film-coated tablet, 50, bottle 238857 933171000168108 Centevo 150/37.5/200 mg film-coated tablet, 50 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933161000168102 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 50 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1117641000168107 Donepezil (GH) 10 mg film-coated tablet, 112, blister pack 193667 1117631000168103 Donepezil (GH) 10 mg film-coated tablet, 112 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 1117621000168101 donepezil hydrochloride 10 mg tablet, 112 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +923541000168109 Doprilamide 4/1.25 uncoated tablet, 30, blister pack 132339 923531000168100 Doprilamide 4/1.25 uncoated tablet, 30 923521000168103 Doprilamide 4/1.25 uncoated tablet 923511000168105 Doprilamide 4/1.25 923511000168105 Doprilamide 4/1.25 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +50277011000036101 Jelonet (7404) 10 cm x 10 cm medicated dressing, 10, carton 49357011000036103 Jelonet (7404) 10 cm x 10 cm medicated dressing, 10 48562011000036109 Jelonet (7404) 10 cm x 10 cm medicated dressing 52241000168105 Jelonet (7404) 52241000168105 Jelonet (7404) 51334011000036106 dressing gauze paraffin 10 cm x 10 cm dressing, 10 50861011000036105 dressing gauze paraffin 10 cm x 10 cm dressing 50779011000036103 dressing gauze paraffin +74727011000036109 Sandoglobulin NF Liquid 12 g/100 mL injection solution, 100 mL bottle 114747 74215011000036101 Sandoglobulin NF Liquid 12 g/100 mL injection solution, 100 mL bottle 73840011000036106 Sandoglobulin NF Liquid 12 g/100 mL injection solution, 100 mL bottle 48881000168100 Sandoglobulin NF Liquid 48881000168100 Sandoglobulin NF Liquid 75360011000036105 normal immunoglobulin 12 g/100 mL injection, 100 mL bottle 75019011000036102 normal immunoglobulin 12 g/100 mL injection, bottle 74965011000036103 normal immunoglobulin +894681000168103 Atomoxetine (Sandoz) 18 mg hard capsule, 7, blister pack 238367 894671000168101 Atomoxetine (Sandoz) 18 mg hard capsule, 7 894661000168107 Atomoxetine (Sandoz) 18 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +924661000168106 Carvedilol (DRLA) 12.5 mg film-coated tablet, 500, bottle 166014 924651000168109 Carvedilol (DRLA) 12.5 mg film-coated tablet, 500 924601000168105 Carvedilol (DRLA) 12.5 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924641000168107 carvedilol 12.5 mg tablet, 500 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +44353011000036108 Reductil 10 mg hard capsule, 28, blister pack 68115 41820011000036109 Reductil 10 mg hard capsule, 28 40214011000036106 Reductil 10 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46626011000036102 sibutramine hydrochloride 10 mg capsule, 28 45245011000036107 sibutramine hydrochloride 10 mg capsule 44877011000036100 sibutramine +87737011000036101 Risperidone (DRLA) 4 mg film-coated tablet, 60, blister pack 165537 87503011000036102 Risperidone (DRLA) 4 mg film-coated tablet, 60 87344011000036107 Risperidone (DRLA) 4 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +923886011000036105 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 163770 923430011000036109 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet, 30 923079011000036108 Lercanidipine Hydrochloride (Terry White Chemists) 10 mg film-coated tablet 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 922956011000036104 Lercanidipine Hydrochloride (Terry White Chemists) 27841011000036104 lercanidipine hydrochloride 10 mg tablet, 30 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +1005251000168107 Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 186572 1005241000168105 Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 1005231000168101 Ropibam 0.75% 75 mg/10 mL injection solution, 10 mL ampoule 711951000168101 Ropibam 0.75% 711951000168101 Ropibam 0.75% 1004951000168104 ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules 1004931000168105 ropivacaine hydrochloride 75 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +50594011000036106 Clarithromycin (GenRx) 250 mg film-coated tablet, 28, bottle 134882 49625011000036103 Clarithromycin (GenRx) 250 mg film-coated tablet, 28 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 51517011000036109 clarithromycin 250 mg tablet, 28 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +45381000036107 Latanoprost (Pfizer) 0.005% eye drops solution, 2.5 mL, bottle 182068 43531000036100 Latanoprost (Pfizer) 0.005% eye drops solution, 2.5 mL 41231000036103 Latanoprost (Pfizer) 0.005% eye drops solution 40191000036102 Latanoprost (Pfizer) 40191000036102 Latanoprost (Pfizer) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +1079121000168101 Atomoxetine (GPPL) 60 mg hard capsule, 14, blister pack 234849 1079111000168108 Atomoxetine (GPPL) 60 mg hard capsule, 14 1079081000168103 Atomoxetine (GPPL) 60 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830231000168100 atomoxetine 60 mg capsule, 14 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +933213591000036109 Citalopram (IPCA) 10 mg film-coated tablet, 56, bottle 158869 933203101000036107 Citalopram (IPCA) 10 mg film-coated tablet, 56 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +779041000168106 Fentanyl (Apo) 75 microgram/hour patch, 8, sachet 152570 779031000168102 Fentanyl (Apo) 75 microgram/hour patch, 8 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235701000036103 fentanyl 75 microgram/hour patch, 8 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +1121981000168108 Afluria Quad 2018 Needle Free injection suspension, 1 x 0.5 mL syringe 294907 1121971000168105 Afluria Quad 2018 Needle Free injection suspension, 1 x 0.5 mL syringe 1121961000168104 Afluria Quad 2018 Needle Free injection suspension, 0.5 mL syringe 1121841000168107 Afluria Quad 2018 1121841000168107 Afluria Quad 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +85047011000036104 Tecan 40 mg/2 mL concentrated injection, 2 mL vial 162599 84911011000036100 Tecan 40 mg/2 mL concentrated injection, 2 mL vial 84796011000036100 Tecan 40 mg/2 mL concentrated injection, 2 mL vial 84764011000036106 Tecan 84764011000036106 Tecan 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +61552011000036104 Pain (Chemists' Own) uncoated tablet, 24, blister pack 93836 57474011000036104 Pain (Chemists' Own) uncoated tablet, 24 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +841391000168103 Atorvastatin (Amneal) 20 mg film-coated tablet, 20, blister pack 178524 841381000168101 Atorvastatin (Amneal) 20 mg film-coated tablet, 20 841341000168106 Atorvastatin (Amneal) 20 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841371000168104 atorvastatin 20 mg tablet, 20 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1108871000168104 Midazolam (WP) 5 mg/5 mL injection solution, 5 mL ampoule 207227 1108861000168105 Midazolam (WP) 5 mg/5 mL injection solution, 5 mL ampoule 1108851000168108 Midazolam (WP) 5 mg/5 mL injection solution, 5 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 664171000168103 midazolam 5 mg/5 mL injection, 5 mL ampoule 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +731921000168102 Cranberry 10 000+ (Bio-Organics) hard capsule, 30, bottle 91302 731911000168109 Cranberry 10 000+ (Bio-Organics) hard capsule, 30 731891000168107 Cranberry 10 000+ (Bio-Organics) hard capsule 731861000168100 Cranberry 10 000+ (Bio-Organics) 731861000168100 Cranberry 10 000+ (Bio-Organics) 731901000168106 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule, 30 731881000168109 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule 77453011000036101 cranberry + ascorbic acid +975361000168102 Ilaris (1 x 150 mg vial, 1 x inert diluent vial), 1 pack, composite pack 187078 975351000168104 Ilaris (1 x 150 mg vial, 1 x inert diluent vial), 1 pack 930008011000036109 Ilaris (canakinumab 150 mg) powder for injection, 150 mg vial 929824011000036109 Ilaris 929824011000036109 Ilaris 975341000168101 canakinumab 150 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 931847011000036109 canakinumab 150 mg injection, vial 931784011000036108 canakinumab +975361000168102 Ilaris (1 x 150 mg vial, 1 x inert diluent vial), 1 pack, composite pack 187078 975351000168104 Ilaris (1 x 150 mg vial, 1 x inert diluent vial), 1 pack 975331000168105 Ilaris (inert substance) diluent, vial 929824011000036109 Ilaris 929824011000036109 Ilaris 975341000168101 canakinumab 150 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +140601000036109 Zelitrex 500 mg film-coated tablet, 100, bottle 198610 926141011000036109 Zelitrex 500 mg film-coated tablet, 100 925639011000036108 Zelitrex 500 mg film-coated tablet 925537011000036106 Zelitrex 925537011000036106 Zelitrex 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +19608011000036104 Novasone 0.1% ointment, 15 g, tube 58613 12878011000036106 Novasone 0.1% ointment, 15 g 6169011000036102 Novasone 0.1% ointment 4448011000036109 Novasone 4448011000036109 Novasone 27413011000036104 mometasone furoate 0.1% ointment, 15 g 22761011000036108 mometasone furoate 0.1% ointment 21409011000036100 mometasone +74201000036106 Selsun 2.5% shampoo, 125 mL, bottle 29682 72261000036104 Selsun 2.5% shampoo, 125 mL 69891000036108 Selsun 2.5% shampoo 4285011000036108 Selsun 4285011000036108 Selsun 72211000036101 selenium sulfide 2.5% shampoo, 125 mL 69901000036109 selenium sulfide 2.5% shampoo 21422011000036103 selenium sulfide +1011371000168106 Montelukast (Apotex) 5 mg chewable tablet, 4, blister pack 179117 1011361000168100 Montelukast (Apotex) 5 mg chewable tablet, 4 1011341000168104 Montelukast (Apotex) 5 mg chewable tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 1011351000168102 montelukast 5 mg chewable tablet, 4 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +718981000168103 Privigen 5 g/50 mL injection solution, 50 mL bottle 143273 718971000168101 Privigen 5 g/50 mL injection solution, 50 mL bottle 718961000168107 Privigen 5 g/50 mL injection solution, 50 mL bottle 718951000168105 Privigen 718951000168105 Privigen 111991000036109 normal immunoglobulin 5 g/50 mL injection, 50 mL bottle 111901000036101 normal immunoglobulin 5 g/50 mL injection, bottle 74965011000036103 normal immunoglobulin +34651011000036101 Morphine Sulfate (Phebra) 10 mg/mL injection solution, 5 x 1 mL ampoules 12431 34240011000036108 Morphine Sulfate (Phebra) 10 mg/mL injection solution, 5 x 1 mL ampoules 33982011000036103 Morphine Sulfate (Phebra) 10 mg/mL injection solution, ampoule 33954011000036101 Morphine Sulfate (Phebra) 33954011000036101 Morphine Sulfate (Phebra) 26554011000036103 morphine sulfate pentahydrate 10 mg/mL injection, 5 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +849691000168106 Sildenafil (Amneal) 50 mg film-coated tablet, 8, blister pack 202924 849681000168108 Sildenafil (Amneal) 50 mg film-coated tablet, 8 849621000168109 Sildenafil (Amneal) 50 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 760531000168106 sildenafil 50 mg tablet, 8 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +925309011000036106 Bicalutamide (Pharmacor) 50 mg film-coated tablet, 28, blister pack 162831 924846011000036100 Bicalutamide (Pharmacor) 50 mg film-coated tablet, 28 924529011000036105 Bicalutamide (Pharmacor) 50 mg film-coated tablet 924359011000036109 Bicalutamide (Pharmacor) 924359011000036109 Bicalutamide (Pharmacor) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +74361000036100 Yomax 500 mg hard capsule, 20, blister pack 185796 71931000036108 Yomax 500 mg hard capsule, 20 70031000036101 Yomax 500 mg hard capsule 69391000036100 Yomax 69391000036100 Yomax 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +838171000168105 Pneumovax-23 injection solution, 0.5 mL syringe 222235 838161000168104 Pneumovax-23 injection solution, 0.5 mL syringe 838141000168103 Pneumovax-23 injection solution, 0.5 mL syringe 57241000168107 Pneumovax-23 57241000168107 Pneumovax-23 838151000168101 pneumococcal 23 valent vaccine injection, 0.5 mL syringe 838131000168107 pneumococcal 23 valent vaccine injection, 0.5 mL syringe 838041000168102 pneumococcal 23 valent vaccine +79654011000036107 Fludarabine Phosphate (Actavis) 50 mg powder for injection, 1 vial 147831 79483011000036100 Fludarabine Phosphate (Actavis) 50 mg powder for injection, 1 vial 79368011000036100 Fludarabine Phosphate (Actavis) 50 mg powder for injection, 50 mg vial 79338011000036105 Fludarabine Phosphate (Actavis) 79338011000036105 Fludarabine Phosphate (Actavis) 79814011000036105 fludarabine phosphate 50 mg injection, 1 vial 39441011000036101 fludarabine phosphate 50 mg injection, vial 39430011000036109 fludarabine +19611000036103 Risperidone (Actavis) 3 mg film-coated tablet, 60, blister pack 159968 19121000036102 Risperidone (Actavis) 3 mg film-coated tablet, 60 18661000036107 Risperidone (Actavis) 3 mg film-coated tablet 9261000168107 Risperidone (Actavis) 9261000168107 Risperidone (Actavis) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +890341000168105 Bansep 20 mg film-coated tablet, 28, bottle 173494 890331000168101 Bansep 20 mg film-coated tablet, 28 841271000168107 Bansep 20 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 890321000168104 atorvastatin 20 mg tablet, 28 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +740551000168109 Metoprolol (RBX) 50 mg film-coated tablet, 10, blister pack 192774 740541000168107 Metoprolol (RBX) 50 mg film-coated tablet, 10 740531000168103 Metoprolol (RBX) 50 mg film-coated tablet 740521000168101 Metoprolol (RBX) 740521000168101 Metoprolol (RBX) 670801000168101 metoprolol tartrate 50 mg tablet, 10 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +798231000168108 Abyraz 10 mg uncoated tablet, 5, blister pack 159503 798221000168105 Abyraz 10 mg uncoated tablet, 5 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 798211000168103 aripiprazole 10 mg tablet, 5 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +50483011000036104 Telfa Retention (8254F) 10 cm x 2.3 m bandage, 1, carton 49296011000036100 Telfa Retention (8254F) 10 cm x 2.3 m bandage, 1 48498011000036104 Telfa Retention (8254F) 10 cm x 2.3 m bandage 52741000168103 Telfa Retention (8254F) 52741000168103 Telfa Retention (8254F) 51464011000036108 bandage retention cotton crepe 10 cm x 2.3 m bandage, 1 50971011000036105 bandage retention cotton crepe 10 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +1103571000168106 Quetiapine (RBX) 300 mg film-coated tablet, 100, blister pack 166420 1103521000168105 Quetiapine (RBX) 300 mg film-coated tablet, 100 2711000036103 Quetiapine (RBX) 300 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +68817011000036101 Mycoderm dusting powder, 75 g, bottle 10622 66519011000036101 Mycoderm dusting powder, 75 g 65212011000036101 Mycoderm dusting powder 64968011000036108 Mycoderm 64968011000036108 Mycoderm 71251011000036104 salicylic acid 4% + butyl hydroxybenzoate 1% + sodium propionate 0.2% dusting powder, 75 g 69920011000036104 salicylic acid 4% + butyl hydroxybenzoate 1% + sodium propionate 0.2% dusting powder 69879011000036101 salicylic acid + butyl hydroxybenzoate + propionic acid +844291000168105 Worming Tablet (Chemmart) 100 mg tablet, 6, blister pack 119654 844281000168107 Worming Tablet (Chemmart) 100 mg tablet, 6 844251000168100 Worming Tablet (Chemmart) 100 mg tablet 60291000036104 Worming Tablet (Chemmart) 60291000036104 Worming Tablet (Chemmart) 26822011000036107 mebendazole 100 mg tablet, 6 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +1028631000168101 Hexaxim injection suspension, 10 x 0.5 mL syringes 215536 1028621000168104 Hexaxim injection suspension, 10 x 0.5 mL syringes 1028571000168102 Hexaxim injection suspension, 0.5 mL syringe 1028541000168109 Hexaxim 1028541000168109 Hexaxim 1028611000168106 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent + Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, 10 x 0.5 mL syringes 1028561000168108 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent + Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, 0.5 mL syringe 1028551000168106 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent + Haemophilus influenzae type b conjugate (PRP-T) vaccine +20658011000036109 Kredex 25 mg uncoated tablet, 60, blister pack 81650 13838011000036102 Kredex 25 mg uncoated tablet, 60 7125011000036105 Kredex 25 mg uncoated tablet 3872011000036103 Kredex 3872011000036103 Kredex 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +43869011000036101 Fluconazole (Aspen) 100 mg/50 mL injection solution, 10 x 50 mL bags 128727 41365011000036108 Fluconazole (Aspen) 100 mg/50 mL injection solution, 10 x 50 mL bags 39844011000036105 Fluconazole (Aspen) 100 mg/50 mL injection solution, 50 mL bag 39689011000036109 Fluconazole (Aspen) 39689011000036109 Fluconazole (Aspen) 46269011000036100 fluconazole 100 mg/50 mL injection, 10 x 50 mL bags 45048011000036106 fluconazole 100 mg/50 mL injection, bag 21365011000036105 fluconazole +916321000168109 Aspirin (Black & Gold) 300 mg uncoated tablet, 24, blister pack 166618 916311000168102 Aspirin (Black & Gold) 300 mg uncoated tablet, 24 916301000168100 Aspirin (Black & Gold) 300 mg uncoated tablet 916291000168101 Aspirin (Black & Gold) 916291000168101 Aspirin (Black & Gold) 63606011000036109 aspirin 300 mg tablet, 24 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +916321000168109 Aspirin (Black & Gold) 300 mg uncoated tablet, 24, blister pack 58473 916311000168102 Aspirin (Black & Gold) 300 mg uncoated tablet, 24 916301000168100 Aspirin (Black & Gold) 300 mg uncoated tablet 916291000168101 Aspirin (Black & Gold) 916291000168101 Aspirin (Black & Gold) 63606011000036109 aspirin 300 mg tablet, 24 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +20795011000036102 Anzatax 300 mg/50 mL concentrated injection, 50 mL vial 91256 13961011000036108 Anzatax 300 mg/50 mL concentrated injection, 50 mL vial 7247011000036100 Anzatax 300 mg/50 mL concentrated injection, 50 mL vial 3081011000036102 Anzatax 3081011000036102 Anzatax 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +929702011000036105 MS Contin Suspension 20 mg modified release granules, 28 sachets 45838 929538011000036103 MS Contin Suspension 20 mg modified release granules, 28 sachets 5417011000036106 MS Contin Suspension 20 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 929759011000036109 morphine sulfate pentahydrate 20 mg modified release granules, 28 sachets 22496011000036107 morphine sulfate pentahydrate 20 mg modified release granules, 1 sachet 21252011000036100 morphine +825241000168101 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe 123713 825231000168105 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe 825211000168100 Engerix-B Adult 20 microgram/mL injection suspension, syringe 33491000168108 Engerix-B Adult 33491000168108 Engerix-B Adult 825221000168107 hepatitis B adult vaccine 20 microgram/mL injection, 1 mL syringe 825201000168103 hepatitis B adult vaccine 20 microgram/mL injection, syringe 825191000168101 hepatitis B vaccine +931753011000036104 Azclear Action 20% lotion, 25 g, tube 71006 930913011000036105 Azclear Action 20% lotion, 25 g 930115011000036109 Azclear Action 20% lotion 52771000168105 Azclear Action 52771000168105 Azclear Action 932490011000036109 azelaic acid 20% lotion, 25 g 931886011000036103 azelaic acid 20% lotion 61741011000036106 azelaic acid +1066121000168100 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 10, blister pack 210587 1066111000168107 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 10 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 63865011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 10 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +926781011000036108 Telfast Children's Elixir 30 mg/5 mL oral liquid suspension, 150 mL, bottle 156262 926178011000036101 Telfast Children's Elixir 30 mg/5 mL oral liquid suspension, 150 mL 925659011000036107 Telfast Children's Elixir 30 mg/5 mL oral liquid suspension, 5 mL 62531000168106 Telfast Children's Elixir 62531000168106 Telfast Children's Elixir 927332011000036105 fexofenadine hydrochloride 30 mg/5 mL oral liquid, 150 mL 926992011000036107 fexofenadine hydrochloride 30 mg/5 mL oral liquid 21394011000036108 fexofenadine +884131000168107 Bosentan (Accord) 125 mg film-coated tablet, 112, blister pack 235892 884121000168109 Bosentan (Accord) 125 mg film-coated tablet, 112 884051000168100 Bosentan (Accord) 125 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884111000168102 bosentan 125 mg tablet, 112 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +924821000168102 Ramipril (Hexal) 2.5 mg uncoated tablet, 30, bottle 122019 924811000168109 Ramipril (Hexal) 2.5 mg uncoated tablet, 30 924801000168106 Ramipril (Hexal) 2.5 mg uncoated tablet 924461000168109 Ramipril (Hexal) 924461000168109 Ramipril (Hexal) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +19235011000036101 Mixtard 50/50 Penfill injection suspension, 5 x 3 mL cartridges 47375 12526011000036107 Mixtard 50/50 Penfill injection suspension, 5 x 3 mL cartridges 5346011000036105 Mixtard 50/50 Penfill injection suspension, 3 mL cartridge 43541000168103 Mixtard 50/50 Penfill 43541000168103 Mixtard 50/50 Penfill 27173011000036106 insulin neutral human 50 units/mL + insulin isophane human 50 units/mL injection, 5 x 3 mL cartridges 22535011000036102 insulin neutral human 50 units/mL + insulin isophane human 50 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +19235011000036101 Mixtard 50/50 Penfill injection suspension, 5 x 3 mL cartridges 169630 12526011000036107 Mixtard 50/50 Penfill injection suspension, 5 x 3 mL cartridges 5346011000036105 Mixtard 50/50 Penfill injection suspension, 3 mL cartridge 43541000168103 Mixtard 50/50 Penfill 43541000168103 Mixtard 50/50 Penfill 27173011000036106 insulin neutral human 50 units/mL + insulin isophane human 50 units/mL injection, 5 x 3 mL cartridges 22535011000036102 insulin neutral human 50 units/mL + insulin isophane human 50 units/mL injection, cartridge 33639011000036103 insulin isophane human + insulin neutral human +44268011000036100 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 2 x 0.72 mL syringes 61937 41739011000036103 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 2 x 0.72 mL syringes 40176011000036109 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 0.72 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46546011000036107 dalteparin sodium 18 000 anti-Xa units/0.72 mL injection, 2 x 0.72 mL syringes 45212011000036106 dalteparin sodium 18 000 anti-Xa units/0.72 mL injection, syringe 21450011000036103 dalteparin sodium +787701000168106 Arizole 20 mg uncoated tablet, 28, blister pack 198193 787691000168106 Arizole 20 mg uncoated tablet, 28 787561000168100 Arizole 20 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787681000168108 aripiprazole 20 mg tablet, 28 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +699931000168100 Nulojix 250 mg powder for injection, 1 vial 179687 699921000168103 Nulojix 250 mg powder for injection, 1 vial 699901000168107 Nulojix 250 mg powder for injection, vial 699861000168101 Nulojix 699861000168101 Nulojix 699911000168105 belatacept 250 mg injection, 1 vial 699891000168108 belatacept 250 mg injection, vial 699881000168105 belatacept +933214961000036108 Reditron-ODT 4 mg orally disintegrating tablet, 10, blister pack 163645 933204551000036100 Reditron-ODT 4 mg orally disintegrating tablet, 10 933195571000036109 Reditron-ODT 4 mg orally disintegrating tablet 22261000168105 Reditron-ODT 22261000168105 Reditron-ODT 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +930211000168104 Sporanox 100 mg hard capsule, 15, blister pack 47012 41526011000036108 Sporanox 100 mg hard capsule, 15 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 46361011000036108 itraconazole 100 mg capsule, 15 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +19531000036106 Pravastatin Sodium (Actavis) 10 mg uncoated tablet, 30, blister pack 156365 19111000036109 Pravastatin Sodium (Actavis) 10 mg uncoated tablet, 30 18601000036108 Pravastatin Sodium (Actavis) 10 mg uncoated tablet 18491000036102 Pravastatin Sodium (Actavis) 18491000036102 Pravastatin Sodium (Actavis) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +33598011000036107 Vaxigrip 2008 injection solution, 10 x 0.5 mL syringes 80198 33336011000036101 Vaxigrip 2008 injection solution, 10 x 0.5 mL syringes 33096011000036105 Vaxigrip 2008 injection solution, 0.5 mL syringe 25501000168102 Vaxigrip 2008 25501000168102 Vaxigrip 2008 33819011000036101 influenza trivalent adult vaccine 2008 injection, 10 x 0.5 mL syringes 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +778081000168107 Endone XR 40 mg modified release tablet, 20, blister pack 153602 778071000168109 Endone XR 40 mg modified release tablet, 20 778061000168103 Endone XR 40 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +35649011000036107 Abbocillin V 150 mg/5 mL oral liquid suspension, 100 mL, bottle 151597 35577011000036107 Abbocillin V 150 mg/5 mL oral liquid suspension, 100 mL 35475011000036108 Abbocillin V 150 mg/5 mL oral liquid suspension, 5 mL 1071000168107 Abbocillin V 1071000168107 Abbocillin V 35774011000036102 phenoxymethylpenicillin 150 mg/5 mL oral liquid, 100 mL 35715011000036108 phenoxymethylpenicillin 150 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +61320011000036100 Diovan 160 mg film-coated tablet, 30, blister pack 80871 57256011000036109 Diovan 160 mg film-coated tablet, 30 54255011000036106 Diovan 160 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63790011000036104 valsartan 160 mg tablet, 30 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +1117551000168108 Donepezil (GH) 10 mg film-coated tablet, 56, blister pack 193667 1117541000168106 Donepezil (GH) 10 mg film-coated tablet, 56 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200931000036105 donepezil hydrochloride 10 mg tablet, 56 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +81162011000036103 Doxy 100 mg film-coated tablet, 7, bottle 56206 13098011000036106 Doxy 100 mg film-coated tablet, 7 6382011000036104 Doxy 100 mg film-coated tablet 3392011000036105 Doxy 3392011000036105 Doxy 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +992261000168108 Bisoprolol (Apotex) 2.5 mg tablet, 42, blister pack 182126 992251000168106 Bisoprolol (Apotex) 2.5 mg tablet, 42 992121000168107 Bisoprolol (Apotex) 2.5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79204011000036103 bisoprolol fumarate 2.5 mg tablet, 42 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +61107011000036103 Zantac Relief 150 mg film-coated tablet, 14, blister pack 71786 57050011000036101 Zantac Relief 150 mg film-coated tablet, 14 54175011000036107 Zantac Relief 150 mg film-coated tablet 53535011000036102 Zantac Relief 53535011000036102 Zantac Relief 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +921832011000036109 Lorano 10 mg uncoated tablet, 50, blister pack 119753 921385011000036109 Lorano 10 mg uncoated tablet, 50 33023011000036109 Lorano 10 mg uncoated tablet 32980011000036109 Lorano 32980011000036109 Lorano 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +43663011000036105 Solaraze 3% gel, 25 g, tube 116785 41174011000036108 Solaraze 3% gel, 25 g 39962011000036102 Solaraze 3% gel 39651011000036100 Solaraze 39651011000036100 Solaraze 46140011000036104 diclofenac sodium 3% gel, 25 g 45007011000036102 diclofenac sodium 3% gel 21288011000036105 diclofenac +19971011000036100 Celebrex 200 mg hard capsule, 30, blister pack 67902 13214011000036108 Celebrex 200 mg hard capsule, 30 6496011000036105 Celebrex 200 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1074711000168108 Instanyl 50 microgram/actuation nasal spray, 10 actuations, pump pack 197690 1074701000168105 Instanyl 50 microgram/actuation nasal spray, 10 actuations 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1074691000168105 fentanyl 50 microgram/actuation nasal spray, 10 actuations 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +1109011000168108 Nicotinell Tropical Fruit 2 mg chewing gum, 12, blister pack 279617 1109001000168105 Nicotinell Tropical Fruit 2 mg chewing gum, 12 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +820901000168103 Fexorelief 120 mg film-coated tablet, 50, blister pack 233591 820891000168102 Fexorelief 120 mg film-coated tablet, 50 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 52885011000036102 fexofenadine hydrochloride 120 mg tablet, 50 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +820901000168103 Fexorelief 120 mg film-coated tablet, 50, blister pack 186664 820891000168102 Fexorelief 120 mg film-coated tablet, 50 125511000036101 Fexorelief 120 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 52885011000036102 fexofenadine hydrochloride 120 mg tablet, 50 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +17812011000036104 Procur 100 mg uncoated tablet, 50, bottle 101533 11213011000036103 Procur 100 mg uncoated tablet, 50 5404011000036102 Procur 100 mg uncoated tablet 4023011000036105 Procur 4023011000036105 Procur 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +795241000168106 Instanyl 100 microgram/actuation nasal spray, 10 x 1 actuation, pump packs 197688 795231000168102 Instanyl 100 microgram/actuation nasal spray, 10 x 1 actuation 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795221000168100 fentanyl 100 microgram/actuation nasal spray, 10 x 1 actuation 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +728851000168106 Bisolvon Chesty Forte 8 mg soluble tablet, 32, blister pack 158944 728841000168109 Bisolvon Chesty Forte 8 mg soluble tablet, 32 728831000168100 Bisolvon Chesty Forte 8 mg soluble tablet 13191000168108 Bisolvon Chesty Forte 13191000168108 Bisolvon Chesty Forte 81665011000036107 bromhexine hydrochloride 8 mg soluble tablet, 32 88351000036100 bromhexine hydrochloride 8 mg soluble tablet 61780011000036106 bromhexine +983741000168107 Frusemide (CA) 40 mg tablet, 250, bottle 186522 983731000168103 Frusemide (CA) 40 mg tablet, 250 983671000168109 Frusemide (CA) 40 mg tablet 983661000168103 Frusemide (CA) 983661000168103 Frusemide (CA) 946361000168108 furosemide (frusemide) 40 mg tablet, 250 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +996521000168104 Prexum Combi LD 2.5/0.625 film-coated tablet, 30, bottle 279405 996511000168106 Prexum Combi LD 2.5/0.625 film-coated tablet, 30 996481000168104 Prexum Combi LD 2.5/0.625 film-coated tablet 996471000168102 Prexum Combi LD 2.5/0.625 996471000168102 Prexum Combi LD 2.5/0.625 26766011000036104 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet, 30 22153011000036106 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +970951000168109 Pregabalin (Apo) 25 mg hard capsule, 60, bottle 193211 970081000168101 Pregabalin (Apo) 25 mg hard capsule, 60 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +933213751000036106 Citalopram (IPCA) 20 mg film-coated tablet, 84, bottle 158872 933203291000036105 Citalopram (IPCA) 20 mg film-coated tablet, 84 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +929001000168103 Isordil 30 mg uncoated tablet, 25, blister pack 40248 917751000168103 Isordil 30 mg uncoated tablet, 25 917731000168109 Isordil 30 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 917741000168100 isosorbide dinitrate 30 mg tablet, 25 917721000168106 isosorbide dinitrate 30 mg tablet 21865011000036107 isosorbide dinitrate +757771000168108 Clozole (Chemists' Own) 1% cream, 10 g, tube 201689 757761000168102 Clozole (Chemists' Own) 1% cream, 10 g 54137011000036100 Clozole (Chemists' Own) 1% cream 53325011000036101 Clozole (Chemists' Own) 53325011000036101 Clozole (Chemists' Own) 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +786581000168107 Olmesartan/Amlodipine 40/10 (GenRx) film-coated tablet, 30, blister pack 218257 786571000168109 Olmesartan/Amlodipine 40/10 (GenRx) film-coated tablet, 30 786561000168103 Olmesartan/Amlodipine 40/10 (GenRx) film-coated tablet 786551000168100 Olmesartan/Amlodipine 40/10 (GenRx) 786551000168100 Olmesartan/Amlodipine 40/10 (GenRx) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +933321000168109 Centevo 150/37.5/200 mg film-coated tablet, 130, bottle 238857 933311000168102 Centevo 150/37.5/200 mg film-coated tablet, 130 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933301000168100 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 130 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +45421000036102 Indapamide Hemihydrate (PS) 2.5 mg sugar coated tablet, 90, bottle 184245 43571000036103 Indapamide Hemihydrate (PS) 2.5 mg sugar coated tablet, 90 41431000036102 Indapamide Hemihydrate (PS) 2.5 mg sugar coated tablet 40431000036108 Indapamide Hemihydrate (PS) 40431000036108 Indapamide Hemihydrate (PS) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +940881000168107 Topiramate (Chemmart) 200 mg film-coated tablet, 60, blister pack 124740 940871000168109 Topiramate (Chemmart) 200 mg film-coated tablet, 60 940861000168103 Topiramate (Chemmart) 200 mg film-coated tablet 922471000168105 Topiramate (Chemmart) 922471000168105 Topiramate (Chemmart) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +19840011000036102 Xydep 100 mg film-coated tablet, 30, blister pack 64386 13091011000036102 Xydep 100 mg film-coated tablet, 30 6375011000036100 Xydep 100 mg film-coated tablet 3859011000036105 Xydep 3859011000036105 Xydep 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +20841011000036107 Peg-Intron Redipen Injector (1 x 80 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92006 14004011000036100 Peg-Intron Redipen Injector (1 x 80 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28067011000036105 peginterferon alfa-2b 80 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20841011000036107 Peg-Intron Redipen Injector (1 x 80 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack, dual chamber composite pack 92006 14004011000036100 Peg-Intron Redipen Injector (1 x 80 microgram cartridge, 1 x 0.5 mL inert diluent cartridge), 1 pack 7294011000036104 Peg-Intron Redipen Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28067011000036105 peginterferon alfa-2b 80 microgram injection [1 cartridge] (&) inert substance diluent [0.5 mL cartridge], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +1005191000168105 Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 186571 1005181000168107 Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 1005171000168109 Ropibam 0.2% 400 mg/200 mL injection solution, 200 mL bag 711811000168108 Ropibam 0.2% 711811000168108 Ropibam 0.2% 1004651000168106 ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags 1004631000168100 ropivacaine hydrochloride 400 mg/200 mL injection, bag 44857011000036102 ropivacaine +60836011000036108 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution, 100 mL, bottle 58502 56792011000036108 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution, 100 mL 54083011000036106 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution 45631000168105 Dry Tickly Cough Medicine (Soul Pattinson) 45631000168105 Dry Tickly Cough Medicine (Soul Pattinson) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +791951000168102 Co-Phenylcaine Forte nasal spray, 2.5 mL, pump pack 35208 791941000168104 Co-Phenylcaine Forte nasal spray, 2.5 mL 791921000168105 Co-Phenylcaine Forte nasal spray 9271000168101 Co-Phenylcaine Forte 9271000168101 Co-Phenylcaine Forte 791931000168108 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 2.5 mL 791911000168103 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray 74988011000036106 lidocaine (lignocaine) + phenylephrine +44487011000036100 Nexium 20 mg enteric tablet, 100, bottle 75726 41942011000036101 Nexium 20 mg enteric tablet, 100 7488011000036109 Nexium 20 mg enteric tablet 2929011000036108 Nexium 2929011000036108 Nexium 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +929161000168103 Somac 40 mg enteric tablet, 50, blister pack 69792 41854011000036103 Somac 40 mg enteric tablet, 50 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46660011000036108 pantoprazole 40 mg enteric tablet, 50 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +744841000168100 Abstral 400 microgram sublingual tablet, 30, blister pack 193336 744831000168109 Abstral 400 microgram sublingual tablet, 30 744781000168101 Abstral 400 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744821000168106 fentanyl 400 microgram sublingual tablet, 30 744771000168104 fentanyl 400 microgram sublingual tablet 21258011000036102 fentanyl +824191000168100 Basaglar Kwikpen 100 units/mL injection solution, 2 x 3 mL injection devices 215552 824181000168103 Basaglar Kwikpen 100 units/mL injection solution, 2 x 3 mL injection devices 824131000168104 Basaglar Kwikpen 100 units/mL injection solution, 3 mL injection device 824111000168109 Basaglar Kwikpen 824111000168109 Basaglar Kwikpen 824171000168101 insulin glargine 100 units/mL injection, 2 x 3 mL injection devices 824121000168102 insulin glargine 100 units/mL injection, 3 mL injection device 21815011000036108 insulin glargine +929659011000036103 Agrippal 2011 injection suspension, 10 x 0.5 mL syringes 144670 929495011000036106 Agrippal 2011 injection suspension, 10 x 0.5 mL syringes 929395011000036103 Agrippal 2011 injection suspension, 0.5 mL syringe 30931000168109 Agrippal 2011 30931000168109 Agrippal 2011 929772011000036102 influenza trivalent adult vaccine 2011-2012 injection, 10 x 0.5 mL syringes 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +970931000168103 Lypralin 300 mg hard capsule, 500, bottle 235848 970921000168101 Lypralin 300 mg hard capsule, 500 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970771000168102 pregabalin 300 mg capsule, 500 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +786741000168106 Oxycodone MR (Apotex) 10 mg modified release tablet, 28, blister pack 214503 786731000168102 Oxycodone MR (Apotex) 10 mg modified release tablet, 28 786701000168109 Oxycodone MR (Apotex) 10 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +970791000168101 Pregabalin (Apo) 300 mg hard capsule, 500, bottle 193254 970781000168104 Pregabalin (Apo) 300 mg hard capsule, 500 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 970771000168102 pregabalin 300 mg capsule, 500 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +849931000168102 Sildenafil (Amneal) 100 mg film-coated tablet, 4, blister pack 202923 849921000168100 Sildenafil (Amneal) 100 mg film-coated tablet, 4 849911000168107 Sildenafil (Amneal) 100 mg film-coated tablet 849451000168103 Sildenafil (Amneal) 849451000168103 Sildenafil (Amneal) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +1048591000168103 Paracetamol Codeine 500/30 (GPPL) tablet, 4, blister pack 220977 1048581000168101 Paracetamol Codeine 500/30 (GPPL) tablet, 4 1048431000168101 Paracetamol Codeine 500/30 (GPPL) tablet 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +69501011000036105 Phisohex Face Wash 1% lotion, 200 mL, bottle 51227 67301011000036104 Phisohex Face Wash 1% lotion, 200 mL 65597011000036105 Phisohex Face Wash 1% lotion 47901000168102 Phisohex Face Wash 47901000168102 Phisohex Face Wash 71847011000036101 triclosan 1% lotion, 200 mL 70211011000036100 triclosan 1% lotion 69817011000036103 triclosan +798071000168101 Ondansetron (Accord) 8 mg/4 mL injection solution, 10 x 4 mL ampoules 205595 798061000168107 Ondansetron (Accord) 8 mg/4 mL injection solution, 10 x 4 mL ampoules 798031000168104 Ondansetron (Accord) 8 mg/4 mL injection solution, 4 mL ampoule 797971000168103 Ondansetron (Accord) 797971000168103 Ondansetron (Accord) 922639011000036105 ondansetron 8 mg/4 mL injection, 10 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +19817011000036107 Bactroban 2% cream, 15 g, tube 63542 13072011000036103 Bactroban 2% cream, 15 g 6356011000036105 Bactroban 2% cream 3296011000036102 Bactroban 3296011000036102 Bactroban 27533011000036100 mupirocin 2% cream, 15 g 22873011000036100 mupirocin 2% cream 21590011000036101 mupirocin +1026981000168108 Pregabalin (Amneal) 300 mg hard capsule, 84, blister pack 235840 1026971000168105 Pregabalin (Amneal) 300 mg hard capsule, 84 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970121000168104 pregabalin 300 mg capsule, 84 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +798051000168105 Ondansetron (Accord) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 205595 798041000168108 Ondansetron (Accord) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 798031000168104 Ondansetron (Accord) 8 mg/4 mL injection solution, 4 mL ampoule 797971000168103 Ondansetron (Accord) 797971000168103 Ondansetron (Accord) 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +993951000168108 Candesartan (Apotex) 8 mg tablet, 28, blister pack 184888 993941000168106 Candesartan (Apotex) 8 mg tablet, 28 993911000168107 Candesartan (Apotex) 8 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 904771000168102 candesartan cilexetil 8 mg tablet, 28 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +1065961000168102 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 24, blister pack 220730 1065951000168104 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 24 1065871000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +790761000168107 Acarbose (GPPL) 100 mg tablet, 90, blister pack 226789 790751000168105 Acarbose (GPPL) 100 mg tablet, 90 790741000168108 Acarbose (GPPL) 100 mg tablet 790731000168104 Acarbose (GPPL) 790731000168104 Acarbose (GPPL) 27111011000036104 acarbose 100 mg tablet, 90 22479011000036108 acarbose 100 mg tablet 21888011000036104 acarbose +942091000168103 Sodium Valproate EC (Sanofi) 500 mg enteric tablet, 100, blister pack 140155 942081000168101 Sodium Valproate EC (Sanofi) 500 mg enteric tablet, 100 942011000168107 Sodium Valproate EC (Sanofi) 500 mg enteric tablet 942001000168109 Sodium Valproate EC (Sanofi) 942001000168109 Sodium Valproate EC (Sanofi) 27140011000036102 valproate sodium 500 mg enteric tablet, 100 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +1048681000168102 Paracetamol Codeine 500/30 (GPPL) tablet, 50, blister pack 220977 1048671000168100 Paracetamol Codeine 500/30 (GPPL) tablet, 50 1048431000168101 Paracetamol Codeine 500/30 (GPPL) tablet 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +18819011000036102 Kaluril 5 mg uncoated tablet, 50, bottle 17652 12143011000036109 Kaluril 5 mg uncoated tablet, 50 5116011000036107 Kaluril 5 mg uncoated tablet 2945011000036109 Kaluril 2945011000036109 Kaluril 26945011000036108 amiloride hydrochloride dihydrate 5 mg tablet, 50 22320011000036105 amiloride hydrochloride dihydrate 5 mg tablet 21385011000036108 amiloride +80027011000036109 Tamate 100 mg film-coated tablet, 60, blister pack 150446 79974011000036109 Tamate 100 mg film-coated tablet, 60 79924011000036105 Tamate 100 mg film-coated tablet 79904011000036104 Tamate 79904011000036104 Tamate 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +65931000036100 Nappy-Mate paste, 100 g, jar 11924 63301000036105 Nappy-Mate paste, 100 g 61091000036103 Nappy-Mate paste 60261000036106 Nappy-Mate 60261000036106 Nappy-Mate 63311000036107 aluminium chlorohydrate 2% + benzoin Sumatra 1.2% + dimeticone-350 10% + liquid paraffin 5% + zinc oxide 20% paste, 100 g 61101000036107 aluminium chlorohydrate 2% + benzoin Sumatra 1.2% + dimeticone-350 10% + liquid paraffin 5% + zinc oxide 20% paste 66681000036100 aluminium chlorohydrate + benzoin Sumatra + dimeticone-350 + liquid paraffin + zinc oxide +1040051000168101 Atorvastatin (Ascent) 20 mg film-coated tablet, 30, blister pack 178544 1040041000168103 Atorvastatin (Ascent) 20 mg film-coated tablet, 30 1039991000168103 Atorvastatin (Ascent) 20 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +61218011000036102 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet, 30, blister pack 76460 57154011000036103 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet, 30 54218011000036105 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 275 mg film-coated tablet 53596011000036104 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 53596011000036104 Anti-Inflammatory Naproxen Pain Relief (Soul Pattinson) 63898011000036100 naproxen sodium 275 mg tablet, 30 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +684261000168100 Revolade 75 mg film-coated tablet, 28, blister pack 200121 684251000168102 Revolade 75 mg film-coated tablet, 28 684231000168108 Revolade 75 mg film-coated tablet 933219071000036102 Revolade 933219071000036102 Revolade 684241000168104 eltrombopag 75 mg tablet, 28 684221000168105 eltrombopag 75 mg tablet 933232121000036100 eltrombopag +1044341000168107 Pryzex 5 mg film-coated tablet, 40, blister pack 178991 1044331000168103 Pryzex 5 mg film-coated tablet, 40 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044321000168101 olanzapine 5 mg tablet, 40 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +1057211000168106 Levetiracetam (Auro) 500 mg film-coated tablet, 30, bottle 182818 1057201000168108 Levetiracetam (Auro) 500 mg film-coated tablet, 30 713761000168103 Levetiracetam (Auro) 500 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 1057191000168105 levetiracetam 500 mg tablet, 30 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +933213431000036107 Lisinopril (IPCA) 10 mg uncoated tablet, 84, blister pack 152717 933201711000036109 Lisinopril (IPCA) 10 mg uncoated tablet, 84 933194791000036102 Lisinopril (IPCA) 10 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 86422011000036106 lisinopril 10 mg tablet, 84 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +18653011000036103 Micronor 350 microgram uncoated tablet, 4 x 28, blister packs 13304 11962011000036107 Micronor 350 microgram uncoated tablet, 4 x 28 5802011000036104 Micronor 350 microgram uncoated tablet 3234011000036104 Micronor 3234011000036104 Micronor 27171011000036105 norethisterone 350 microgram tablet, 4 x 28 22533011000036103 norethisterone 350 microgram tablet 21579011000036102 norethisterone +728951000168103 Bisolvon Chesty Forte 8 mg uncoated tablet, 50, blister pack 125375 728941000168100 Bisolvon Chesty Forte 8 mg uncoated tablet, 50 728911000168104 Bisolvon Chesty Forte 8 mg uncoated tablet 13191000168108 Bisolvon Chesty Forte 13191000168108 Bisolvon Chesty Forte 63200011000036109 bromhexine hydrochloride 8 mg tablet, 50 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +61689011000036105 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 24, blister pack 98576 57610011000036103 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 24 54363011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet 1721000168108 Ibuprofen Blue (Herron) 1721000168108 Ibuprofen Blue (Herron) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61281011000036108 FGF modified release tablet, 90, bottle 77937 57217011000036104 FGF modified release tablet, 90 54240011000036104 FGF modified release tablet 53418011000036107 FGF 53418011000036107 FGF 63769011000036108 ferrous sulfate 250 mg (iron 80 mg) + folic acid 300 microgram modified release tablet, 90 62075011000036106 ferrous sulfate 250 mg (iron 80 mg) + folic acid 300 microgram modified release tablet 61711011000036101 ferrous sulfate + folic acid +1097631000168108 Systane Red Eyes 0.1% eye drops solution, 15 mL, bottle 286697 1097621000168105 Systane Red Eyes 0.1% eye drops solution, 15 mL 1097611000168103 Systane Red Eyes 0.1% eye drops solution 1097601000168101 Systane Red Eyes 1097601000168101 Systane Red Eyes 26993011000036104 naphazoline hydrochloride 0.1% eye drops, 15 mL 22366011000036104 naphazoline hydrochloride 0.1% eye drops 21921011000036106 naphazoline +927631000168108 Risperisan 1 mg film-coated tablet, 60, blister pack 126174 927621000168105 Risperisan 1 mg film-coated tablet, 60 927611000168103 Risperisan 1 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +979561000168105 Advil Plus film-coated tablet, 10, blister pack 184751 979551000168108 Advil Plus film-coated tablet, 10 979541000168106 Advil Plus film-coated tablet 979531000168102 Advil Plus 979531000168102 Advil Plus 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +18169011000036109 Citalopram (GenRx) 40 mg film-coated tablet, 28, blister pack 101225 11181011000036100 Citalopram (GenRx) 40 mg film-coated tablet, 28 4726011000036101 Citalopram (GenRx) 40 mg film-coated tablet 3295011000036109 Citalopram (GenRx) 3295011000036109 Citalopram (GenRx) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1009761000168101 Valvala-1000 1 g film-coated tablet, 21, blister pack 154462 1009751000168103 Valvala-1000 1 g film-coated tablet, 21 1009741000168100 Valvala-1000 1 g film-coated tablet 1009731000168109 Valvala-1000 1009731000168109 Valvala-1000 51811000036105 valaciclovir 1 g tablet, 21 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +1074551000168101 Cefazolin (Auro) 2 g powder for injection, 1 vial 174073 1074541000168103 Cefazolin (Auro) 2 g powder for injection, 1 vial 1074531000168107 Cefazolin (Auro) 2 g powder for injection, 2 g vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 924150011000036109 cefazolin 2 g injection, 1 vial 923967011000036100 cefazolin 2 g injection, vial 21621011000036107 cefazolin +19967011000036102 Amohexal 250 mg/5 mL powder for oral liquid, 100 mL, bottle 67662 13210011000036103 Amohexal 250 mg/5 mL powder for oral liquid, 100 mL 6492011000036106 Amohexal 250 mg/5 mL powder for oral liquid, 5 mL 3095011000036101 Amohexal 3095011000036101 Amohexal 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +855621000168108 Algerika 300 mg hard capsule, 60, blister pack 229605 855611000168101 Algerika 300 mg hard capsule, 60 855511000168102 Algerika 300 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +45701000036102 Latanoprost (Sandoz) 0.005% eye drops solution, 2.5 mL, bottle 171691 43021000036105 Latanoprost (Sandoz) 0.005% eye drops solution, 2.5 mL 40641000036100 Latanoprost (Sandoz) 0.005% eye drops solution 40211000036103 Latanoprost (Sandoz) 40211000036103 Latanoprost (Sandoz) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +60797011000036102 Imodium Caplet 2 mg uncoated tablet, 10, blister pack 56001 56753011000036107 Imodium Caplet 2 mg uncoated tablet, 10 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +930531000168107 Cavstat 5 mg film-coated tablet, 42, blister pack 234543 930521000168109 Cavstat 5 mg film-coated tablet, 42 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930511000168102 rosuvastatin 5 mg tablet, 42 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +81175011000036102 Chesty Cough Medicine (Nyal) oral liquid solution, 200 mL, bottle 66942 80677011000036101 Chesty Cough Medicine (Nyal) oral liquid solution, 200 mL 80236011000036100 Chesty Cough Medicine (Nyal) oral liquid solution, 10 mL 80143011000036105 Chesty Cough Medicine (Nyal) 80143011000036105 Chesty Cough Medicine (Nyal) 81732011000036101 guaifenesin 200 mg/10 mL + glucose liquid 6 g/10 mL + treacle 2.7 g/10 mL oral liquid, 200 mL 81304011000036101 guaifenesin 200 mg/10 mL + glucose liquid 6 g/10 mL + treacle 2.7 g/10 mL oral liquid 81219011000036107 guaifenesin + glucose + treacle +822501000168105 Rotateq oral liquid, 2 mL tube 120245 822491000168103 Rotateq oral liquid, 2 mL tube 822471000168104 Rotateq oral liquid, 2 mL tube 29701000168105 Rotateq 29701000168105 Rotateq 822481000168101 rotavirus pentavalent live vaccine oral liquid, 2 mL tube 822461000168105 rotavirus pentavalent live vaccine oral liquid, 2 mL tube 822451000168108 rotavirus pentavalent live vaccine +858511000168105 Amichlor 50 mg film-coated tablet, 50, blister pack 215391 858501000168107 Amichlor 50 mg film-coated tablet, 50 858361000168102 Amichlor 50 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +104431000036100 Irbesartan (DRLA) 300 mg film-coated tablet, 30, blister pack 190515 101611000036105 Irbesartan (DRLA) 300 mg film-coated tablet, 30 99061000036106 Irbesartan (DRLA) 300 mg film-coated tablet 97871000036100 Irbesartan (DRLA) 97871000036100 Irbesartan (DRLA) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +50431011000036106 Restore Plus Sacral (9959) sacral dressing, 5, carton 49416011000036100 Restore Plus Sacral (9959) sacral dressing, 5 48549011000036106 Restore Plus Sacral (9959) sacral dressing 38561000168108 Restore Plus Sacral (9959) 38561000168108 Restore Plus Sacral (9959) 51384011000036104 dressing hydrocolloid superficial wound moderate exudate sacral dressing, 5 50905011000036104 dressing hydrocolloid superficial wound moderate exudate sacral dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +967981000168108 Nortriptyline (Apo) 25 mg uncoated tablet, 50, blister pack 221002 967971000168105 Nortriptyline (Apo) 25 mg uncoated tablet, 50 967931000168107 Nortriptyline (Apo) 25 mg uncoated tablet 967891000168104 Nortriptyline (Apo) 967891000168104 Nortriptyline (Apo) 27305011000036107 nortriptyline 25 mg tablet, 50 22658011000036100 nortriptyline 25 mg tablet 21689011000036104 nortriptyline +69451011000036105 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 24 x 100 mL packs, bag 48525 67251011000036100 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 24 x 100 mL packs 65576011000036104 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71801011000036101 glucose 5% (5 g/100 mL) injection, 24 x 100 mL packs 70192011000036108 glucose 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +746171000168107 Ceftazidime (Mylan) 2 g powder for injection, 1 vial 154824 746161000168101 Ceftazidime (Mylan) 2 g powder for injection, 1 vial 746151000168103 Ceftazidime (Mylan) 2 g powder for injection, 2 g vial 746141000168100 Ceftazidime (Mylan) 746141000168100 Ceftazidime (Mylan) 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +962201000168109 Ciprofloxacin (GA) 250 mg film-coated tablet, 10, blister pack 148854 962191000168106 Ciprofloxacin (GA) 250 mg film-coated tablet, 10 962161000168104 Ciprofloxacin (GA) 250 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +967961000168104 Nortriptyline (Apo) 25 mg uncoated tablet, 100, bottle 220999 967951000168101 Nortriptyline (Apo) 25 mg uncoated tablet, 100 967931000168107 Nortriptyline (Apo) 25 mg uncoated tablet 967891000168104 Nortriptyline (Apo) 967891000168104 Nortriptyline (Apo) 967941000168103 nortriptyline 25 mg tablet, 100 22658011000036100 nortriptyline 25 mg tablet 21689011000036104 nortriptyline +1112001000168100 Srivasso Respimat 2.5 microgram/actuation inhalation solution, 60 actuations, cartridge 269418 1111991000168102 Srivasso Respimat 2.5 microgram/actuation inhalation solution, 60 actuations 1111981000168100 Srivasso Respimat 2.5 microgram/actuation inhalation solution, actuation 1111971000168103 Srivasso Respimat 1111971000168103 Srivasso Respimat 718351000168106 tiotropium 2.5 microgram/actuation inhalation solution, 60 actuations 718331000168100 tiotropium 2.5 microgram/actuation inhalation solution, actuation 21484011000036102 tiotropium +988171000168105 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 40 mL, bottle 178432 988161000168104 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension, 40 mL 988111000168102 Advil Infants Pain and Fever Relief 3 Months to 2 Years 40 mg/mL oral liquid suspension 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 988101000168100 Advil Infants Pain and Fever Relief 3 Months to 2 Years 63164011000036101 ibuprofen 40 mg/mL oral liquid, 40 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +929094011000036101 Pioglitazone (Apotex) 30 mg uncoated tablet, 98, blister pack 166914 928455011000036100 Pioglitazone (Apotex) 30 mg uncoated tablet, 98 927987011000036109 Pioglitazone (Apotex) 30 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929265011000036108 pioglitazone 30 mg tablet, 98 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +74521000036104 Nizoral 2% shampoo, 6 mL, sachet 68056 72541000036102 Nizoral 2% shampoo, 6 mL 70371000036102 Nizoral 2% shampoo 4145011000036104 Nizoral 4145011000036104 Nizoral 72551000036104 ketoconazole 2% shampoo, 6 mL 69971000036100 ketoconazole 2% shampoo 21500011000036103 ketoconazole +69134011000036108 Nicotinell Classic 2 mg chewing gum, 24, blister pack 152893 66934011000036101 Nicotinell Classic 2 mg chewing gum, 24 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +844131000168101 Eskazole 400 mg tablet, 56, blister pack 50837 844121000168104 Eskazole 400 mg tablet, 56 844071000168104 Eskazole 400 mg tablet 3706011000036108 Eskazole 3706011000036108 Eskazole 844111000168106 albendazole 400 mg tablet, 56 844061000168105 albendazole 400 mg tablet 21425011000036106 albendazole +844131000168101 Eskazole 400 mg tablet, 56, blister pack 97504 844121000168104 Eskazole 400 mg tablet, 56 844071000168104 Eskazole 400 mg tablet 3706011000036108 Eskazole 3706011000036108 Eskazole 844111000168106 albendazole 400 mg tablet, 56 844061000168105 albendazole 400 mg tablet 21425011000036106 albendazole +44670011000036109 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack, composite pack 91562 42119011000036101 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack 629841000168105 Gonal-F (inert substance) diluent, 1 mL vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46881011000036108 follitropin alfa 37.5 units (2.73 microgram) injection [10 x 37.5 units vials] (&) inert substance diluent [10 x 1 mL vials], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +44670011000036109 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack, composite pack 91562 42119011000036101 Gonal-F (10 x 37.5 units (2.73 microgram) vials, 10 x 1 mL inert diluent vials), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46881011000036108 follitropin alfa 37.5 units (2.73 microgram) injection [10 x 37.5 units vials] (&) inert substance diluent [10 x 1 mL vials], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +50247011000036100 Setopress (3505) 10 cm x 3.5 m high stretch bandage, 1, carton 49314011000036100 Setopress (3505) 10 cm x 3.5 m high stretch bandage, 1 48708011000036107 Setopress (3505) 10 cm x 3.5 m high stretch bandage 31431000168105 Setopress (3505) 31431000168105 Setopress (3505) 51295011000036108 bandage compression 10 cm x 3.5 m high stretch bandage, 1 50824011000036101 bandage compression 10 cm x 3.5 m high stretch bandage 50716011000036103 bandage compression +753381000168104 Oxycodone (ZP) 10 mg hard capsule, 20, blister pack 227848 753341000168109 Oxycodone (ZP) 10 mg hard capsule, 20 753331000168100 Oxycodone (ZP) 10 mg hard capsule 753251000168101 Oxycodone (ZP) 753251000168101 Oxycodone (ZP) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +104591000036103 Irbesartan/HCTZ 300/12.5 (GA) film-coated tablet, 30, blister pack 192841 101811000036109 Irbesartan/HCTZ 300/12.5 (GA) film-coated tablet, 30 98551000036106 Irbesartan/HCTZ 300/12.5 (GA) film-coated tablet 20401000168106 Irbesartan/HCTZ 300/12.5 (GA) 20401000168106 Irbesartan/HCTZ 300/12.5 (GA) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1117801000168106 Donepezil (GH) 5 mg film-coated tablet, 50, blister pack 193661 1117791000168105 Donepezil (GH) 5 mg film-coated tablet, 50 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200741000036102 donepezil hydrochloride 5 mg tablet, 50 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +44370011000036103 Dinac 25 mg enteric tablet, 50, bottle 68941 13253011000036101 Dinac 25 mg enteric tablet, 50 6535011000036100 Dinac 25 mg enteric tablet 4054011000036108 Dinac 4054011000036108 Dinac 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +19677011000036107 Captohexal 50 mg film-coated tablet, 90, bottle 60109 12979011000036106 Captohexal 50 mg film-coated tablet, 90 6268011000036107 Captohexal 50 mg film-coated tablet 4103011000036105 Captohexal 4103011000036105 Captohexal 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +65841000036100 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application, 50 mL, bottle 14489 63431000036106 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application, 50 mL 61651000036104 Tea Tree Oil Antiseptic (The Good Oil Co) 1 mL/mL application 45161000168106 Tea Tree Oil Antiseptic (The Good Oil Co) 45161000168106 Tea Tree Oil Antiseptic (The Good Oil Co) 933205391000036102 melaleuca oil 1 mL/mL application, 50 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +992501000168109 Bisoprolol (Apotex) 10 mg tablet, 56, blister pack 182127 992491000168102 Bisoprolol (Apotex) 10 mg tablet, 56 992371000168105 Bisoprolol (Apotex) 10 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79217011000036107 bisoprolol fumarate 10 mg tablet, 56 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +996831000168103 PKU Glytactin Build 20 containing 20 g of protein equivalent powder for oral liquid, 30 x 32 g sachets 996821000168101 PKU Glytactin Build 20 containing 20 g of protein equivalent powder for oral liquid, 30 x 32 g sachets 996801000168105 PKU Glytactin Build 20 containing 20 g of protein equivalent powder for oral liquid, 32 g sachet 996781000168106 PKU Glytactin Build 20 996781000168106 PKU Glytactin Build 20 996811000168108 glycomacropeptide and essential amino acids with vitamins and minerals containing 20 g of protein equivalent powder for oral liquid, 30 x 32 g sachets 996791000168109 glycomacropeptide and essential amino acids with vitamins and minerals containing 20 g of protein equivalent powder for oral liquid, 32 g sachet 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +1103411000168104 Quetiapine (RBX) 25 mg film-coated tablet, 20, blister pack 166434 1103381000168102 Quetiapine (RBX) 25 mg film-coated tablet, 20 3481000036108 Quetiapine (RBX) 25 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +81106011000036103 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 200 mL, bottle 162435 80611011000036103 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 200 mL 5556011000036105 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution 48231000168102 Duro-Tuss Dry Cough Liquid Regular 48231000168102 Duro-Tuss Dry Cough Liquid Regular 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +1097471000168108 Voltaren Emulgel No Mess Applicator (1 x 100 g gel, 1 x 20 g gel), 1 pack, tubes 282516 1097461000168102 Voltaren Emulgel No Mess Applicator (1 x 100 g gel, 1 x 20 g gel), 1 pack 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1097451000168104 diclofenac diethylamine 11.6 mg / 1 g gel [100 g] (&) diclofenac diethylamine 11.6 mg / 1 g gel [20 g], 1 pack 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +931376011000036108 Lamisil Sole Repair 1% cream, 30 g, tube 120286 930573011000036108 Lamisil Sole Repair 1% cream, 30 g 929929011000036100 Lamisil Sole Repair 1% cream 57791000168108 Lamisil Sole Repair 57791000168108 Lamisil Sole Repair 932349011000036101 terbinafine hydrochloride 1% cream, 30 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +20992011000036104 Testogel 1% (50 mg/5 g) gel, 28 x 5 g sachets 96131 14138011000036105 Testogel 1% (50 mg/5 g) gel, 28 x 5 g sachets 7417011000036105 Testogel 1% (50 mg/5 g) gel, 5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 28170011000036106 testosterone 1% (50 mg/5 g) gel, 28 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +892951000168107 Behistatine 16 mg uncoated tablet, 60, blister pack 212084 892941000168105 Behistatine 16 mg uncoated tablet, 60 892871000168108 Behistatine 16 mg uncoated tablet 892861000168102 Behistatine 892861000168102 Behistatine 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +74767011000036104 Atgam 250 mg/5 mL concentrated injection, 5 x 5 mL ampoules 12282 74237011000036104 Atgam 250 mg/5 mL concentrated injection, 5 x 5 mL ampoules 73815011000036106 Atgam 250 mg/5 mL concentrated injection, 5 mL ampoule 73690011000036109 Atgam 73690011000036109 Atgam 75370011000036101 antithymocyte immunoglobulin equine 250 mg/5 mL injection, 5 x 5 mL ampoules 75025011000036105 antithymocyte immunoglobulin equine 250 mg/5 mL injection, ampoule 74954011000036105 antithymocyte immunoglobulin equine +79042011000036107 Bispro 5 mg film-coated tablet, 7, blister pack 130180 78797011000036100 Bispro 5 mg film-coated tablet, 7 78626011000036101 Bispro 5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79212011000036105 bisoprolol fumarate 5 mg tablet, 7 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +1080331000168101 Salofalk 1 g enteric tablet, 100, blister pack 285903 1080321000168104 Salofalk 1 g enteric tablet, 100 1080151000168109 Salofalk 1 g enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 1080311000168106 mesalazine 1 g enteric tablet, 100 1080141000168107 mesalazine 1 g enteric tablet 21351011000036101 mesalazine +928976011000036107 Valaciclovir (Apo) 500 mg film-coated tablet, 4, blister pack 158911 928337011000036104 Valaciclovir (Apo) 500 mg film-coated tablet, 4 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929219011000036106 valaciclovir 500 mg tablet, 4 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +34789011000036100 Oxynorm 20 mg hard capsule, 60, bottle 74142 34366011000036106 Oxynorm 20 mg hard capsule, 60 6719011000036106 Oxynorm 20 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +82892011000036109 ProVen Plus film-coated tablet, 24, blister pack 160536 82786011000036105 ProVen Plus film-coated tablet, 24 82696011000036101 ProVen Plus film-coated tablet 82669011000036108 ProVen Plus 82669011000036108 ProVen Plus 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +988251000168108 Risedronate (Apo) 75 mg film-coated tablet, 2, blister pack 181973 988241000168106 Risedronate (Apo) 75 mg film-coated tablet, 2 988231000168102 Risedronate (Apo) 75 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 800971000168104 risedronate sodium 75 mg tablet, 2 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +723231000168108 Tacrolimus (Apotex) 500 microgram hard capsule, 100, blister pack 209273 723221000168105 Tacrolimus (Apotex) 500 microgram hard capsule, 100 723211000168103 Tacrolimus (Apotex) 500 microgram hard capsule 723141000168107 Tacrolimus (Apotex) 723141000168107 Tacrolimus (Apotex) 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +60584011000036108 Polaramine Repetab 6 mg modified release tablet, 20, blister pack 18195 56542011000036103 Polaramine Repetab 6 mg modified release tablet, 20 53964011000036103 Polaramine Repetab 6 mg modified release tablet 34221000168105 Polaramine Repetab 34221000168105 Polaramine Repetab 63408011000036105 dexchlorpheniramine maleate 6 mg modified release tablet, 20 61947011000036108 dexchlorpheniramine maleate 6 mg modified release tablet 61749011000036105 dexchlorpheniramine +1053021000168103 Targin 10/5 mg modified release tablet, 60, blister pack 156145 1053011000168105 Targin 10/5 mg modified release tablet, 60 923036011000036102 Targin 10/5 mg modified release tablet 49001000168109 Targin 10/5 mg 49001000168109 Targin 10/5 mg 1053001000168107 oxycodone hydrochloride 10 mg + naloxone hydrochloride 5 mg modified release tablet, 60 923974011000036100 oxycodone hydrochloride 10 mg + naloxone hydrochloride 5 mg modified release tablet 923931011000036100 oxycodone + naloxone +69664011000036103 Nicabate Clear 7 mg/24 hours patch, 1, sachet 81033 67463011000036109 Nicabate Clear 7 mg/24 hours patch, 1 65674011000036101 Nicabate Clear 7 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71991011000036107 nicotine 7 mg/24 hours patch, 1 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +18156011000036108 Triprim 300 mg uncoated tablet, 7, bottle 11009 11402011000036106 Triprim 300 mg uncoated tablet, 7 4611011000036107 Triprim 300 mg uncoated tablet 4440011000036107 Triprim 4440011000036107 Triprim 27532011000036107 trimethoprim 300 mg tablet, 7 22872011000036107 trimethoprim 300 mg tablet 21246011000036103 trimethoprim +792271000168109 Profeme-3.2 3.2% (32 mg/mL) cream, 50 mL, tube 66355 792261000168103 Profeme-3.2 3.2% (32 mg/mL) cream, 50 mL 792241000168102 Profeme-3.2 3.2% (32 mg/mL) cream 792221000168108 Profeme-3.2 792221000168108 Profeme-3.2 792251000168100 progesterone 3.2% (32 mg/mL) cream, 50 mL 792231000168106 progesterone 3.2% (32 mg/mL) cream 21412011000036108 progesterone +931681011000036103 Maxiclear Sinus and Pain Relief uncoated tablet, 24, blister pack 167173 930841011000036107 Maxiclear Sinus and Pain Relief uncoated tablet, 24 930065011000036102 Maxiclear Sinus and Pain Relief uncoated tablet 929912011000036100 Maxiclear Sinus and Pain Relief 929912011000036100 Maxiclear Sinus and Pain Relief 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +68834011000036102 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bottle 118487 66637011000036106 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bottle 65333011000036106 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bottle 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 71347011000036103 glucose 10% (50 g/500 mL) injection, 500 mL bottle 69966011000036105 glucose 10% (50 g/500 mL) injection, bottle 21354011000036103 glucose +77302011000036106 X-Foam 120 mg/mL solution, 100 mL, bottle 29909 76718011000036109 X-Foam 120 mg/mL solution, 100 mL 76138011000036107 X-Foam 120 mg/mL solution 75946011000036107 X-Foam 75946011000036107 X-Foam 78232011000036100 simethicone 120 mg/mL solution, 100 mL 77560011000036108 simethicone 120 mg/mL solution 69826011000036109 simethicone +18031011000036106 Simvastatin (RL) 5 mg film-coated tablet, 30, blister pack 116796 11542011000036109 Simvastatin (RL) 5 mg film-coated tablet, 30 5416011000036108 Simvastatin (RL) 5 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +786421000168109 Fentanyl (Sandoz) 37 microgram/hour patch, 4, sachet 152567 786411000168102 Fentanyl (Sandoz) 37 microgram/hour patch, 4 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780811000168102 fentanyl 37 microgram/hour patch, 4 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +43886011000036107 Invega 12 mg modified release tablet, 7, blister pack 130732 41378011000036105 Invega 12 mg modified release tablet, 7 39789011000036104 Invega 12 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 46275011000036106 paliperidone 12 mg modified release tablet, 7 45049011000036103 paliperidone 12 mg modified release tablet 34837011000036104 paliperidone +896051000168107 Atomoxetine (Sandoz) 60 mg hard capsule, 28, blister pack 238370 896041000168105 Atomoxetine (Sandoz) 60 mg hard capsule, 28 896001000168108 Atomoxetine (Sandoz) 60 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1094821000168102 Ibuprofen (Genpar) 200 mg film-coated tablet, 4, blister pack 285310 1094811000168109 Ibuprofen (Genpar) 200 mg film-coated tablet, 4 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +999571000168108 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 195218 999561000168102 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 999551000168104 Drospirenone/EE 3/30 (Apotex) (inert substance) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999571000168108 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 195218 999561000168102 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 999541000168101 Drospirenone/EE 3/30 (Apotex) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +914781000168102 Carvedilol (AS) 6.25 mg uncoated tablet, 30, blister pack 194253 914771000168100 Carvedilol (AS) 6.25 mg uncoated tablet, 30 914761000168106 Carvedilol (AS) 6.25 mg uncoated tablet 914721000168101 Carvedilol (AS) 914721000168101 Carvedilol (AS) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +1057371000168106 Ramipril (Auro) 2.5 mg uncoated tablet, 28, blister pack 175226 1057361000168100 Ramipril (Auro) 2.5 mg uncoated tablet, 28 1057341000168104 Ramipril (Auro) 2.5 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 1057351000168102 ramipril 2.5 mg tablet, 28 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +60100011000036106 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 100 mL, bottle 126543 56061011000036102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 100 mL 53775011000036101 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 5 mL 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +907381000168108 Ceftriaxone (Alphapharm) 250 mg powder for injection, 1 vial 164918 907371000168105 Ceftriaxone (Alphapharm) 250 mg powder for injection, 1 vial 907351000168101 Ceftriaxone (Alphapharm) 250 mg powder for injection, 250 mg vial 69311000036105 Ceftriaxone (Alphapharm) 69311000036105 Ceftriaxone (Alphapharm) 907361000168104 ceftriaxone 250 mg injection, 1 vial 933194011000036105 ceftriaxone 250 mg injection, vial 21610011000036107 ceftriaxone +855541000168103 Algerika 300 mg hard capsule, 14, blister pack 229605 855531000168107 Algerika 300 mg hard capsule, 14 855511000168102 Algerika 300 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +20161011000036106 Sotalol Hydrochloride (GenRx) 160 mg uncoated tablet, 60, bottle 73846 13384011000036104 Sotalol Hydrochloride (GenRx) 160 mg uncoated tablet, 60 6669011000036101 Sotalol Hydrochloride (GenRx) 160 mg uncoated tablet 3284011000036106 Sotalol Hydrochloride (GenRx) 3284011000036106 Sotalol Hydrochloride (GenRx) 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +740271000168103 Ondansetron (SZ) 4 mg film-coated tablet, 6, blister pack 163438 740261000168109 Ondansetron (SZ) 4 mg film-coated tablet, 6 740231000168101 Ondansetron (SZ) 4 mg film-coated tablet 740221000168104 Ondansetron (SZ) 740221000168104 Ondansetron (SZ) 927339011000036100 ondansetron 4 mg tablet, 6 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +649781000168107 Sumatran 50 mg film-coated tablet, 2, blister pack 187216 649771000168109 Sumatran 50 mg film-coated tablet, 2 649761000168103 Sumatran 50 mg film-coated tablet 649751000168100 Sumatran 649751000168100 Sumatran 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +926663011000036103 Risperidone (Sandoz) 1 mg film-coated tablet, 60, bottle 126161 926136011000036103 Risperidone (Sandoz) 1 mg film-coated tablet, 60 925594011000036106 Risperidone (Sandoz) 1 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +44036011000036102 Robinul 400 microgram/2 mL injection solution, 25 x 2 mL vials 47673 41525011000036101 Robinul 400 microgram/2 mL injection solution, 25 x 2 mL vials 40039011000036109 Robinul 400 microgram/2 mL injection solution, 2 mL vial 35873011000036102 Robinul 35873011000036102 Robinul 46360011000036101 glycopyrronium bromide (glycopyrrolate) 400 microgram/2 mL injection, 25 x 2 mL vials 45106011000036105 glycopyrronium bromide (glycopyrrolate) 400 microgram/2 mL injection, vial 37771011000036104 glycopyrronium bromide (glycopyrrolate) +665451000168100 Remifentanil (Sandoz) 5 mg powder for injection, 5 vials 195286 665441000168102 Remifentanil (Sandoz) 5 mg powder for injection, 5 vials 665431000168106 Remifentanil (Sandoz) 5 mg powder for injection, 5 mg vial 665361000168108 Remifentanil (Sandoz) 665361000168108 Remifentanil (Sandoz) 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +1078801000168105 Atostat 40 mg film-coated tablet, 30, blister pack 194109 1078791000168109 Atostat 40 mg film-coated tablet, 30 1078781000168106 Atostat 40 mg film-coated tablet 1078191000168108 Atostat 1078191000168108 Atostat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +91701000036105 Cold Sore (Pharmacy Action) 5% cream, 5 g, tube 194405 90211000036106 Cold Sore (Pharmacy Action) 5% cream, 5 g 88241000036106 Cold Sore (Pharmacy Action) 5% cream 87861000036109 Cold Sore (Pharmacy Action) 87861000036109 Cold Sore (Pharmacy Action) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +965171000168103 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 100, blister pack 134861 965161000168109 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 100 965051000168108 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +50385011000036108 Risperidone (GA) 500 microgram film-coated tablet, 60, blister pack 127764 49552011000036102 Risperidone (GA) 500 microgram film-coated tablet, 60 48480011000036102 Risperidone (GA) 500 microgram film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +69514011000036105 Quellada Scabies Treatment 5% lotion, 100 mL, bottle 52603 67314011000036104 Quellada Scabies Treatment 5% lotion, 100 mL 65605011000036105 Quellada Scabies Treatment 5% lotion 11921000168108 Quellada Scabies Treatment 11921000168108 Quellada Scabies Treatment 71860011000036107 permethrin 5% lotion, 100 mL 70219011000036101 permethrin 5% lotion 21537011000036106 permethrin +992581000168101 Bisoprolol (Apotex) 5 mg tablet, 7, blister pack 182129 992571000168104 Bisoprolol (Apotex) 5 mg tablet, 7 992561000168105 Bisoprolol (Apotex) 5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79212011000036105 bisoprolol fumarate 5 mg tablet, 7 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +19183011000036107 Uromitexan 400 mg/4 mL concentrated injection, 15 x 4 mL ampoules 46627 12478011000036101 Uromitexan 400 mg/4 mL concentrated injection, 15 x 4 mL ampoules 4706011000036106 Uromitexan 400 mg/4 mL concentrated injection, 4 mL ampoule 4340011000036101 Uromitexan 4340011000036101 Uromitexan 27145011000036106 mesna 400 mg/4 mL injection, 15 x 4 mL ampoules 22508011000036102 mesna 400 mg/4 mL injection, ampoule 21302011000036101 mesna +34762011000036108 Ultiva 5 mg powder for injection, 5 vials 58690 34343011000036106 Ultiva 5 mg powder for injection, 5 vials 34056011000036102 Ultiva 5 mg powder for injection, 5 mg vial 33941011000036102 Ultiva 33941011000036102 Ultiva 35191011000036103 remifentanil 5 mg injection, 5 vials 34900011000036101 remifentanil 5 mg injection, vial 34838011000036103 remifentanil +665291000168106 Glucose (Baxter) (in 1L bag) 50% (250 g/500 mL) injection solution, 500 mL bag 48528 665281000168108 Glucose (Baxter) (in 1L bag) 50% (250 g/500 mL) injection solution, 500 mL bag 665271000168105 Glucose (Baxter) (in 1L bag) 50% (250 g/500 mL) injection solution, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71662011000036103 glucose 50% (250 g/500 mL) injection, 500 mL bag 70113011000036102 glucose 50% (250 g/500 mL) injection, bag 21354011000036103 glucose +906971000168108 Celecoxib (BW) 200 mg hard capsule, 10, blister pack 196177 906961000168102 Celecoxib (BW) 200 mg hard capsule, 10 906951000168104 Celecoxib (BW) 200 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1108551000168106 Midazolam (Claris) 50 mg/10 mL injection solution, 25 x 10 mL ampoules 216027 1108541000168109 Midazolam (Claris) 50 mg/10 mL injection solution, 25 x 10 mL ampoules 1108461000168107 Midazolam (Claris) 50 mg/10 mL injection solution, 10 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 1108531000168100 midazolam 50 mg/10 mL injection, 25 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +17847011000036108 Pravachol 80 mg uncoated tablet, 30, blister pack 101491 11210011000036106 Pravachol 80 mg uncoated tablet, 30 4737011000036100 Pravachol 80 mg uncoated tablet 3848011000036104 Pravachol 3848011000036104 Pravachol 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +926798011000036103 Rehydration Formula (Amcal) powder for oral liquid, 10 x 4.9 g sachets 16512 926194011000036100 Rehydration Formula (Amcal) powder for oral liquid, 10 x 4.9 g sachets 925667011000036109 Rehydration Formula (Amcal) powder for oral liquid, 4.9 g sachet 925538011000036107 Rehydration Formula (Amcal) 925538011000036107 Rehydration Formula (Amcal) 28137011000036109 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 23446011000036105 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +1078641000168106 Atomoxetine (GPPL) 5 mg hard capsule, 14, blister pack 234842 1078631000168102 Atomoxetine (GPPL) 5 mg hard capsule, 14 1078601000168109 Atomoxetine (GPPL) 5 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 976341000168105 atomoxetine 5 mg capsule, 14 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +778721000168105 Oxycodone MR (Apo) 15 mg modified release tablet, 60, blister pack 214492 778711000168103 Oxycodone MR (Apo) 15 mg modified release tablet, 60 778641000168109 Oxycodone MR (Apo) 15 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 71472011000036108 oxycodone hydrochloride 15 mg modified release tablet, 60 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +926749011000036102 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 10 x 5 mL ampoules 117967 926107011000036109 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 10 x 5 mL ampoules 925585011000036106 Flumazenil (Sandoz) 500 microgram/5 mL injection solution, 5 mL ampoule 925569011000036105 Flumazenil (Sandoz) 925569011000036105 Flumazenil (Sandoz) 927308011000036102 flumazenil 500 microgram/5 mL injection, 10 x 5 mL ampoules 37931011000036105 flumazenil 500 microgram/5 mL injection, ampoule 37762011000036103 flumazenil +823711000168105 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 1 mL syringe 221721 823701000168107 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 1 mL syringe 823681000168109 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, syringe 2391000168100 Clexane 2391000168100 Clexane 823691000168107 enoxaparin sodium 100 mg/mL injection, 1 mL syringe 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +52196011000036102 Clarithromycin (Apo) 250 mg film-coated tablet, 28, blister pack 134850 52087011000036108 Clarithromycin (Apo) 250 mg film-coated tablet, 28 51983011000036107 Clarithromycin (Apo) 250 mg film-coated tablet 51934011000036102 Clarithromycin (Apo) 51934011000036102 Clarithromycin (Apo) 51517011000036109 clarithromycin 250 mg tablet, 28 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +861971000168107 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100, bottle 79534 861961000168101 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100 861941000168100 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet 7951000168107 Caltrate 600 mg with Vitamin D 200 IU 7951000168107 Caltrate 600 mg with Vitamin D 200 IU 861951000168103 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 100 861931000168109 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet 733951000168109 calcium + colecalciferol +1033651000168104 Strong Pain Relief Extra (Amcal) uncoated tablet, 12, blister pack 208319 1033641000168101 Strong Pain Relief Extra (Amcal) uncoated tablet, 12 1033571000168109 Strong Pain Relief Extra (Amcal) uncoated tablet 1033541000168102 Strong Pain Relief Extra (Amcal) 1033541000168102 Strong Pain Relief Extra (Amcal) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1121181000168105 Quetiapine XR (Medis) 400 mg modified release tablet, 100, blister pack 226810 1121171000168107 Quetiapine XR (Medis) 400 mg modified release tablet, 100 1121161000168101 Quetiapine XR (Medis) 400 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51539011000036109 quetiapine 400 mg modified release tablet, 100 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +20773011000036107 Diltiazem Hydrochloride CD (GenRx) 240 mg modified release capsule, 30, bottle 90922 13942011000036105 Diltiazem Hydrochloride CD (GenRx) 240 mg modified release capsule, 30 7230011000036100 Diltiazem Hydrochloride CD (GenRx) 240 mg modified release capsule 37971000168108 Diltiazem Hydrochloride CD (GenRx) 37971000168108 Diltiazem Hydrochloride CD (GenRx) 28060011000036109 diltiazem hydrochloride 240 mg modified release capsule, 30 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +37470011000036103 Celica 20 mg film-coated tablet, 7, bottle 124757 36738011000036109 Celica 20 mg film-coated tablet, 7 36131011000036106 Celica 20 mg film-coated tablet 35945011000036109 Celica 35945011000036109 Celica 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +44833011000036107 Enablex 7.5 mg modified release tablet, 56, blister pack 99418 42265011000036101 Enablex 7.5 mg modified release tablet, 56 40410011000036102 Enablex 7.5 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47018011000036102 darifenacin 7.5 mg modified release tablet, 56 45376011000036105 darifenacin 7.5 mg modified release tablet 44860011000036105 darifenacin +20876011000036103 Flubiclox 1 g powder for injection, 5 vials 92842 14038011000036101 Flubiclox 1 g powder for injection, 5 vials 7314011000036107 Flubiclox 1 g powder for injection, vial 3773011000036108 Flubiclox 3773011000036108 Flubiclox 28101011000036108 flucloxacillin 1 g injection, 5 vials 23409011000036107 flucloxacillin 1 g injection, vial 21623011000036108 flucloxacillin +927709011000036109 Zaditen 0.025% eye drops solution, 2.5 mL, bottle 99979 927643011000036105 Zaditen 0.025% eye drops solution, 2.5 mL 927594011000036105 Zaditen 0.025% eye drops solution 53472011000036103 Zaditen 53472011000036103 Zaditen 922699011000036102 ketotifen 0.025% eye drops, 2.5 mL 62278011000036108 ketotifen 0.025% eye drops 61805011000036103 ketotifen +898701000168107 Nicotinell Peppermint 2 mg lozenge, 120, blister pack 276925 898691000168107 Nicotinell Peppermint 2 mg lozenge, 120 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 898681000168109 nicotine 2 mg lozenge, 120 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1074051000168106 Ceftazidime (Auro) 1 g powder for injection, 5 vials 158791 1074041000168109 Ceftazidime (Auro) 1 g powder for injection, 5 vials 1074011000168105 Ceftazidime (Auro) 1 g powder for injection, vial 1074001000168107 Ceftazidime (Auro) 1074001000168107 Ceftazidime (Auro) 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +697351000168104 Vascalace 10 mg capsule, 30, bottle 203717 697341000168101 Vascalace 10 mg capsule, 30 697331000168105 Vascalace 10 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +933214641000036101 Levetiracetam (GH) 250 mg film-coated tablet, 60, blister pack 161294 933204001000036108 Levetiracetam (GH) 250 mg film-coated tablet, 60 933196041000036101 Levetiracetam (GH) 250 mg film-coated tablet 933193811000036104 Levetiracetam (GH) 933193811000036104 Levetiracetam (GH) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +780891000168106 Fentanyl (Apo) 37 microgram/hour patch, 7, sachet 152566 780881000168108 Fentanyl (Apo) 37 microgram/hour patch, 7 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780871000168105 fentanyl 37 microgram/hour patch, 7 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +1033611000168100 Atomoxetine (CH) 25 mg hard capsule, 28, blister pack 234819 1033601000168103 Atomoxetine (CH) 25 mg hard capsule, 28 1033511000168101 Atomoxetine (CH) 25 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +1031191000168100 Aten 50 mg film-coated tablet, 84, blister pack 197716 1031181000168103 Aten 50 mg film-coated tablet, 84 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031171000168101 atenolol 50 mg tablet, 84 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +933215441000036103 Neulasta with Automatic Needle Guard 6 mg/0.6 mL injection solution, 0.6 mL syringe 166387 933204891000036106 Neulasta with Automatic Needle Guard 6 mg/0.6 mL injection solution, 0.6 mL syringe 933196001000036104 Neulasta with Automatic Needle Guard 6 mg/0.6 mL injection solution, 0.6 mL syringe 3896011000036107 Neulasta 3896011000036107 Neulasta 27993011000036100 pegfilgrastim 6 mg/0.6 mL injection, 0.6 mL syringe 23316011000036108 pegfilgrastim 6 mg/0.6 mL injection, syringe 21753011000036104 pegfilgrastim +1031511000168102 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 100, bottle 173482 1031501000168100 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 100 1031401000168101 Atorvastatin (Ranbaxy) 20 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890361000168109 atorvastatin 20 mg tablet, 100 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1078321000168108 Atomoxetine (GPPL) 80 mg hard capsule, 56, blister pack 234823 1078311000168101 Atomoxetine (GPPL) 80 mg hard capsule, 56 1078241000168108 Atomoxetine (GPPL) 80 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830611000168108 atomoxetine 80 mg capsule, 56 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +932861000168103 Prostin F2 Alpha 20 mg/4 mL injection solution, 4 mL ampoule 52681 932851000168100 Prostin F2 Alpha 20 mg/4 mL injection solution, 4 mL ampoule 932831000168106 Prostin F2 Alpha 20 mg/4 mL injection solution, 4 mL ampoule 35431000168108 Prostin F2 Alpha 35431000168108 Prostin F2 Alpha 932841000168102 dinoprost 20 mg/4 mL injection, 4 mL ampoule 932821000168108 dinoprost 20 mg/4 mL injection, ampoule 37749011000036101 dinoprost +44439011000036103 Fibro-Vein 0.2% (10 mg/5 mL) injection solution, 10 x 5 mL vials 73360 41895011000036107 Fibro-Vein 0.2% (10 mg/5 mL) injection solution, 10 x 5 mL vials 40250011000036107 Fibro-Vein 0.2% (10 mg/5 mL) injection solution, 5 mL vial 35954011000036108 Fibro-Vein 35954011000036108 Fibro-Vein 46693011000036103 sodium tetradecyl sulfate 0.2% (10 mg/5 mL) injection, 10 x 5 mL vials 45269011000036102 sodium tetradecyl sulfate 0.2% (10 mg/5 mL) injection, vial 37728011000036107 sodium tetradecyl sulfate +654511000168109 Dermatane 10 mg soft capsule, 60, blister pack 144129 654501000168106 Dermatane 10 mg soft capsule, 60 654491000168104 Dermatane 10 mg soft capsule 654421000168101 Dermatane 654421000168101 Dermatane 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +778401000168105 Oxycodone MR (Apo) 20 mg modified release tablet, 28, blister pack 214499 778391000168108 Oxycodone MR (Apo) 20 mg modified release tablet, 28 778381000168105 Oxycodone MR (Apo) 20 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +81157011000036105 Karvol Decongestant inhalation solution, 10 capsules, blister pack 43397 80660011000036106 Karvol Decongestant inhalation solution, 10 capsules 80229011000036107 Karvol Decongestant inhalation solution, 1 capsule 80129011000036105 Karvol Decongestant 80129011000036105 Karvol Decongestant 81718011000036107 menthol 35.55 mg + Scotch pine needle oil 9 mg + pine oil pumilio 103 mg + terpineol 66.6 mg inhalation solution, 10 capsules 81299011000036108 menthol 35.55 mg + Scotch pine needle oil 9 mg + pine oil pumilio 103 mg + terpineol 66.6 mg inhalation solution, 1 capsule 81226011000036106 menthol + Scotch pine needle oil + pine oil pumilio + terpineol +710321000168100 PKU Air 20 Gold (Coffee Fusion) oral liquid solution, 30 x 174 mL pouches 710311000168107 PKU Air 20 Gold (Coffee Fusion) oral liquid solution, 30 x 174 mL pouches 710301000168109 PKU Air 20 Gold (Coffee Fusion) oral liquid solution, 174 mL pouch 710241000168100 PKU Air 20 710241000168100 PKU Air 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +926790011000036100 Omnitrope 10 mg/1.5 mL injection solution, 1.5 mL cartridge 162522 926186011000036107 Omnitrope 10 mg/1.5 mL injection solution, 1.5 mL cartridge 925664011000036103 Omnitrope 10 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 28299011000036108 somatropin 10 mg/1.5 mL injection, 1.5 mL cartridge 23613011000036108 somatropin 10 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +727261000168108 Lexapro 10 mg film-coated tablet, 7, blister pack 92051 727251000168106 Lexapro 10 mg film-coated tablet, 7 7290011000036109 Lexapro 10 mg film-coated tablet 3210011000036104 Lexapro 3210011000036104 Lexapro 933224261000036109 escitalopram 10 mg tablet, 7 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +770101000168103 Oralair 300 IR sublingual tablet, 7, blister pack 770091000168108 Oralair 300 IR sublingual tablet, 7 770071000168107 Oralair 300 IR sublingual tablet 770051000168103 Oralair 300 IR 770051000168103 Oralair 300 IR 770081000168105 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet, 7 770061000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +894321000168105 Entac 500 microgram film-coated tablet, 10, blister pack 267116 894311000168103 Entac 500 microgram film-coated tablet, 10 894291000168102 Entac 500 microgram film-coated tablet 894271000168103 Entac 894271000168103 Entac 894301000168101 entecavir 500 microgram tablet, 10 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +907291000168101 Celecoxib (Medis) 100 mg capsule, 50, blister pack 204621 907281000168104 Celecoxib (Medis) 100 mg capsule, 50 907231000168100 Celecoxib (Medis) 100 mg capsule 906361000168101 Celecoxib (Medis) 906361000168101 Celecoxib (Medis) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +69369011000036107 Betadine Antiseptic 10% ointment, 150 x 1 g sachets 29823 67169011000036108 Betadine Antiseptic 10% ointment, 150 x 1 g sachets 65314011000036103 Betadine Antiseptic 10% ointment, sachet 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71731011000036106 povidone-iodine 10% ointment, 150 x 1 g sachets 70156011000036101 povidone-iodine 10% ointment, sachet 21660011000036108 povidone-iodine +160421000036106 T Lukast 10 mg uncoated tablet, 28, blister pack 189238 159191000036101 T Lukast 10 mg uncoated tablet, 28 158221000036103 T Lukast 10 mg uncoated tablet 143371000036101 T Lukast 143371000036101 T Lukast 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +17834011000036103 Primolut N 5 mg uncoated tablet, 30, bottle 10706 11355011000036100 Primolut N 5 mg uncoated tablet, 30 5473011000036105 Primolut N 5 mg uncoated tablet 28521000168100 Primolut N 28521000168100 Primolut N 26619011000036103 norethisterone 5 mg tablet, 30 22025011000036102 norethisterone 5 mg tablet 21579011000036102 norethisterone +789551000168108 Oxycodone (HX) 40 mg modified release tablet, 20, bottle 153594 789541000168106 Oxycodone (HX) 40 mg modified release tablet, 20 789531000168102 Oxycodone (HX) 40 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +69467011000036106 Pinetarsol 1.6% gel, 15 g, tube 49249 67267011000036104 Pinetarsol 1.6% gel, 15 g 65583011000036100 Pinetarsol 1.6% gel 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71815011000036102 tar 1.6% gel, 15 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +1099961000168101 Clarant 250 mg film-coated tablet, 2, blister pack 184264 1099951000168103 Clarant 250 mg film-coated tablet, 2 1099941000168100 Clarant 250 mg film-coated tablet 1099931000168109 Clarant 1099931000168109 Clarant 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +1114671000168106 Ketizenol 300 mg film-coated tablet, 20, blister pack 202257 1114661000168100 Ketizenol 300 mg film-coated tablet, 20 1114651000168102 Ketizenol 300 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +104751000036101 Lercanidipine Hydrochloride (GH) 10 mg film-coated tablet, 28, blister pack 194780 102071000036100 Lercanidipine Hydrochloride (GH) 10 mg film-coated tablet, 28 98941000036101 Lercanidipine Hydrochloride (GH) 10 mg film-coated tablet 97611000036107 Lercanidipine Hydrochloride (GH) 97611000036107 Lercanidipine Hydrochloride (GH) 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +926672011000036103 Zelitrex 500 mg film-coated tablet, 8, blister pack 128739 926145011000036106 Zelitrex 500 mg film-coated tablet, 8 925639011000036108 Zelitrex 500 mg film-coated tablet 925537011000036106 Zelitrex 925537011000036106 Zelitrex 927317011000036100 valaciclovir 500 mg tablet, 8 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +68919011000036103 Eurax 10% lotion, 50 mL, bottle 11034 66587011000036106 Eurax 10% lotion, 50 mL 65534011000036105 Eurax 10% lotion 65121011000036102 Eurax 65121011000036102 Eurax 71310011000036108 crotamiton 10% lotion, 50 mL 69943011000036105 crotamiton 10% lotion 69770011000036109 crotamiton +849371000168100 Vzole 50 mg film-coated tablet, 100, blister pack 238239 849361000168106 Vzole 50 mg film-coated tablet, 100 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46812011000036100 voriconazole 50 mg tablet, 100 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +962751000168102 Trandolapril (GenRx) 500 microgram capsule, 28, blister pack 135964 962741000168104 Trandolapril (GenRx) 500 microgram capsule, 28 962731000168108 Trandolapril (GenRx) 500 microgram capsule 951491000168100 Trandolapril (GenRx) 951491000168100 Trandolapril (GenRx) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +156631000036102 Allevyn Life (66801068) 12.9 cm x 12.9 cm dressing, 10, carton 92774 155621000036105 Allevyn Life (66801068) 12.9 cm x 12.9 cm dressing, 10 155021000036101 Allevyn Life (66801068) 12.9 cm x 12.9 cm dressing 48771000168106 Allevyn Life (66801068) 48771000168106 Allevyn Life (66801068) 155631000036107 dressing foam with silicone 12.9 cm x 12.9 cm dressing, 10 155031000036104 dressing foam with silicone 12.9 cm x 12.9 cm dressing 157031000036107 dressing foam with silicone +1031551000168101 Atomoxetine (GXP) 25 mg hard capsule, 14, blister pack 234817 1031541000168103 Atomoxetine (GXP) 25 mg hard capsule, 14 1031431000168108 Atomoxetine (GXP) 25 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830451000168107 atomoxetine 25 mg capsule, 14 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +921890011000036101 Exforge HCT 5/160/12.5 film-coated tablet, 56, blister pack 157954 921449011000036107 Exforge HCT 5/160/12.5 film-coated tablet, 56 921015011000036108 Exforge HCT 5/160/12.5 film-coated tablet 14521000168101 Exforge HCT 5/160/12.5 14521000168101 Exforge HCT 5/160/12.5 922577011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 56 922093011000036109 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +933121011000036104 Lamictal 2 mg tablet, 56, bottle 77098 932923011000036108 Lamictal 2 mg tablet, 56 932771011000036103 Lamictal 2 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 47006011000036104 lamotrigine 2 mg tablet, 56 45372011000036106 lamotrigine 2 mg tablet 21643011000036106 lamotrigine +663191000168104 Tetrabenazine (iNova) 25 mg uncoated tablet, 112, bottle 13695 663181000168102 Tetrabenazine (iNova) 25 mg uncoated tablet, 112 663171000168100 Tetrabenazine (iNova) 25 mg uncoated tablet 663161000168106 Tetrabenazine (iNova) 663161000168106 Tetrabenazine (iNova) 26837011000036107 tetrabenazine 25 mg tablet, 112 22218011000036108 tetrabenazine 25 mg tablet 21497011000036109 tetrabenazine +44452011000036109 Doxycycline (Terry White Chemists) 100 mg modified release capsule, 7, blister pack 74015 41908011000036108 Doxycycline (Terry White Chemists) 100 mg modified release capsule, 7 40259011000036101 Doxycycline (Terry White Chemists) 100 mg modified release capsule 4107011000036101 Doxycycline (Terry White Chemists) 4107011000036101 Doxycycline (Terry White Chemists) 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +658461000168103 Telmigen 80 mg uncoated tablet, 28, blister pack 209342 658451000168100 Telmigen 80 mg uncoated tablet, 28 658441000168102 Telmigen 80 mg uncoated tablet 658431000168106 Telmigen 658431000168106 Telmigen 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +654191000168106 Zinc Paste APF (extemporaneous) 25% paste, 100 g, screw cap jar 654181000168108 Zinc Paste APF (extemporaneous) 25% paste, 100 g 654171000168105 Zinc Paste APF (extemporaneous) 25% paste 654161000168104 Zinc Paste APF (extemporaneous) 654161000168104 Zinc Paste APF (extemporaneous) 81604011000036107 zinc oxide 25% paste, 100 g 81270011000036109 zinc oxide 25% paste 77446011000036105 zinc oxide +830221000168103 Atomoxetine (Apo) 60 mg hard capsule, 7, blister pack 234788 830211000168105 Atomoxetine (Apo) 60 mg hard capsule, 7 830201000168107 Atomoxetine (Apo) 60 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +86053011000036108 Nasal Decongestant plus Pain Relief PE (Nyal) tablet, 24, blister pack 157363 85719011000036100 Nasal Decongestant plus Pain Relief PE (Nyal) tablet, 24 85355011000036108 Nasal Decongestant plus Pain Relief PE (Nyal) tablet 85290011000036103 Nasal Decongestant plus Pain Relief PE (Nyal) 85290011000036103 Nasal Decongestant plus Pain Relief PE (Nyal) 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +20242011000036106 Ranitidine (Chemmart) 300 mg film-coated tablet, 30, blister pack 74416 13453011000036102 Ranitidine (Chemmart) 300 mg film-coated tablet, 30 6735011000036101 Ranitidine (Chemmart) 300 mg film-coated tablet 4233011000036104 Ranitidine (Chemmart) 4233011000036104 Ranitidine (Chemmart) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +20242011000036106 Ranitidine (Chemmart) 300 mg film-coated tablet, 30, blister pack 121979 13453011000036102 Ranitidine (Chemmart) 300 mg film-coated tablet, 30 6735011000036101 Ranitidine (Chemmart) 300 mg film-coated tablet 4233011000036104 Ranitidine (Chemmart) 4233011000036104 Ranitidine (Chemmart) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +1065711000168103 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet, 30, blister pack 158210 1065701000168101 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet, 30 80204011000036100 Ibuprofen plus Codeine (Chemists' Own) film-coated tablet 80141011000036109 Ibuprofen plus Codeine (Chemists' Own) 80141011000036109 Ibuprofen plus Codeine (Chemists' Own) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1031321000168100 Atomoxetine (GXP) 10 mg hard capsule, 7, blister pack 234816 1031311000168107 Atomoxetine (GXP) 10 mg hard capsule, 7 1031301000168109 Atomoxetine (GXP) 10 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1061301000168100 Atorvator 80 mg film-coated tablet, 100, bottle 179852 1061291000168101 Atorvator 80 mg film-coated tablet, 100 1061241000168109 Atorvator 80 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +774311000168105 Irinotecan (Act) 100 mg/5 mL concentrated injection, 5 mL vial 227306 774301000168107 Irinotecan (Act) 100 mg/5 mL concentrated injection, 5 mL vial 774291000168106 Irinotecan (Act) 100 mg/5 mL concentrated injection, 5 mL vial 774241000168103 Irinotecan (Act) 774241000168103 Irinotecan (Act) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +104911000036103 Duloxetine (Chemmart) 30 mg enteric capsule, 28, blister pack 195353 102101000036105 Duloxetine (Chemmart) 30 mg enteric capsule, 28 98401000036106 Duloxetine (Chemmart) 30 mg enteric capsule 97641000036108 Duloxetine (Chemmart) 97641000036108 Duloxetine (Chemmart) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +104911000036103 Duloxetine (Chemmart) 30 mg enteric capsule, 28, blister pack 217987 102101000036105 Duloxetine (Chemmart) 30 mg enteric capsule, 28 98401000036106 Duloxetine (Chemmart) 30 mg enteric capsule 97641000036108 Duloxetine (Chemmart) 97641000036108 Duloxetine (Chemmart) 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +19424011000036103 Neupogen 300 microgram/mL injection solution, 10 x 1 mL vials 53579 12708011000036104 Neupogen 300 microgram/mL injection solution, 10 x 1 mL vials 4998011000036100 Neupogen 300 microgram/mL injection solution, vial 4267011000036100 Neupogen 4267011000036100 Neupogen 27300011000036103 filgrastim 300 microgram/mL injection, 10 x 1 mL vials 22653011000036105 filgrastim 300 microgram/mL injection, vial 21265011000036102 filgrastim +926698011000036106 Primovist 1.36 g/7.5 mL injection solution, 7.5 mL syringe 104380 926063011000036108 Primovist 1.36 g/7.5 mL injection solution, 7.5 mL syringe 925597011000036100 Primovist 1.36 g/7.5 mL injection solution, 7.5 mL syringe 920914011000036108 Primovist 920914011000036108 Primovist 927294011000036103 gadoxetate disodium 1.36 g/7.5 mL injection, 7.5 mL syringe 926981011000036100 gadoxetate disodium 1.36 g/7.5 mL injection, syringe 922038011000036107 gadoxetic acid +692921000168106 Desvenlafaxine XR (GH) 50 mg modified release tablet, 28, blister pack 227805 692911000168104 Desvenlafaxine XR (GH) 50 mg modified release tablet, 28 692901000168102 Desvenlafaxine XR (GH) 50 mg modified release tablet 692891000168101 Desvenlafaxine XR (GH) 692891000168101 Desvenlafaxine XR (GH) 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +984221000168109 Butafen 200 mg sugar coated tablet, 16, blister pack 126093 984211000168102 Butafen 200 mg sugar coated tablet, 16 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63307011000036101 ibuprofen 200 mg tablet, 16 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +921967011000036109 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 75 mL bottles 48225 921525011000036104 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 75 mL bottles 921060011000036103 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 75 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 922647011000036104 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 75 mL bottles 922132011000036101 iohexol 755 mg (iodine 350 mg)/mL injection, 75 mL bottle 77459011000036103 iohexol +1057051000168104 Raloxifene (Auro) 60 mg tablet, 28, blister pack 203696 1057041000168101 Raloxifene (Auro) 60 mg tablet, 28 1057011000168100 Raloxifene (Auro) 60 mg tablet 1056951000168100 Raloxifene (Auro) 1056951000168100 Raloxifene (Auro) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +718661000168101 Paclitaxel (Act) 30 mg/5 mL concentrated injection, 5 mL vial 148036 718651000168103 Paclitaxel (Act) 30 mg/5 mL concentrated injection, 5 mL vial 718641000168100 Paclitaxel (Act) 30 mg/5 mL concentrated injection, 5 mL vial 718601000168102 Paclitaxel (Act) 718601000168102 Paclitaxel (Act) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +889981000168107 Gastrolyte Ready to Drink Strawberry oral liquid solution, 250 mL, bottle 198537 889971000168109 Gastrolyte Ready to Drink Strawberry oral liquid solution, 250 mL 889941000168102 Gastrolyte Ready to Drink Strawberry oral liquid solution 889821000168100 Gastrolyte Ready to Drink 889821000168100 Gastrolyte Ready to Drink 889881000168101 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid, 250 mL 889831000168102 sodium chloride 2.6 mg/mL + potassium citrate monohydrate 2.11 mg/mL + glucose 15.8 mg/mL + citric acid 2.53 mg/mL oral liquid 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +1078481000168104 Atomoxetine (GPPL) 25 mg hard capsule, 28, blister pack 234834 1078471000168102 Atomoxetine (GPPL) 25 mg hard capsule, 28 1078421000168103 Atomoxetine (GPPL) 25 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +1039911000168107 Aspramide 10 mg film-coated tablet, 100, blister pack 196460 1039901000168109 Aspramide 10 mg film-coated tablet, 100 1039611000168102 Aspramide 10 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 82561011000036104 metoclopramide hydrochloride 10 mg tablet, 100 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +849291000168109 Olmesartan (Myl) 40 mg film-coated tablet, 10, blister pack 273572 849281000168106 Olmesartan (Myl) 40 mg film-coated tablet, 10 849271000168108 Olmesartan (Myl) 40 mg film-coated tablet 849221000168107 Olmesartan (Myl) 849221000168107 Olmesartan (Myl) 727421000168104 olmesartan medoxomil 40 mg tablet, 10 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +933214801000036100 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 30, bottle 163564 933204401000036100 Pravastatin Sodium (RZ) 10 mg film-coated tablet, 30 933195521000036105 Pravastatin Sodium (RZ) 10 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +930691000168105 Cavstat 5 mg film-coated tablet, 98, blister pack 234543 930681000168107 Cavstat 5 mg film-coated tablet, 98 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930671000168109 rosuvastatin 5 mg tablet, 98 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1005651000168105 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 162853 1005641000168108 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 1005631000168104 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 20 mL ampoule 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1004601000168107 ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules 1004581000168103 ropivacaine hydrochloride 40 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +60768011000036104 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 50 mL, bottle 54130 56726011000036100 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 50 mL 54050011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant oral liquid solution, 15 mL 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 53332011000036107 Duro-Tuss Chesty Cough Liquid plus Nasal Decongestant 63627011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid, 50 mL 62032011000036101 bromhexine hydrochloride 12 mg/15 mL + pseudoephedrine hydrochloride 60 mg/15 mL oral liquid 61715011000036104 bromhexine + pseudoephedrine +19908011000036100 Ducene 5 mg uncoated tablet, 50, blister pack 66124 13153011000036103 Ducene 5 mg uncoated tablet, 50 6436011000036100 Ducene 5 mg uncoated tablet 3800011000036107 Ducene 3800011000036107 Ducene 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +1046351000168102 Zaldiar effervescent tablet, 50, strip pack 179678 1046341000168104 Zaldiar effervescent tablet, 50 1046221000168104 Zaldiar effervescent tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 1046331000168108 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet, 50 1046211000168106 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet 680581000168102 tramadol + paracetamol +929711011000036102 MS Mono 30 mg modified release capsule, 14, blister pack 74156 929547011000036100 MS Mono 30 mg modified release capsule, 14 6725011000036103 MS Mono 30 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 929768011000036107 morphine sulfate pentahydrate 30 mg modified release capsule, 14 23081011000036100 morphine sulfate pentahydrate 30 mg modified release capsule 21252011000036100 morphine +665131000168102 Remifentanil (Alphapharm) 2 mg powder for injection, 1 vial 163902 665121000168100 Remifentanil (Alphapharm) 2 mg powder for injection, 1 vial 665081000168102 Remifentanil (Alphapharm) 2 mg powder for injection, 2 mg vial 664921000168101 Remifentanil (Alphapharm) 664921000168101 Remifentanil (Alphapharm) 665111000168107 remifentanil 2 mg injection, 1 vial 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +52783011000036101 Vaxigrip 2009 injection solution, 1 x 0.5 mL syringe 80198 52593011000036103 Vaxigrip 2009 injection solution, 1 x 0.5 mL syringe 52435011000036104 Vaxigrip 2009 injection solution, 0.5 mL syringe 6241000168103 Vaxigrip 2009 6241000168103 Vaxigrip 2009 52901011000036106 influenza trivalent adult vaccine 2009 injection, 1 x 0.5 mL syringe 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +20276011000036109 Alphapril 20 mg uncoated tablet, 30, blister pack 75236 13486011000036103 Alphapril 20 mg uncoated tablet, 30 6768011000036102 Alphapril 20 mg uncoated tablet 3378011000036102 Alphapril 3378011000036102 Alphapril 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +928521000168105 Marcain 0.5% (50 mg/10 mL) injection solution, 10 x 10 mL vials 11940 928511000168103 Marcain 0.5% (50 mg/10 mL) injection solution, 10 x 10 mL vials 928421000168106 Marcain 0.5% (50 mg/10 mL) injection solution, 10 mL vial 12651000168100 Marcain 12651000168100 Marcain 928501000168101 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, 10 x 10 mL vials 928411000168104 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, vial 37702011000036102 bupivacaine +19419011000036107 Humalog 100 units/mL injection solution, 5 x 3 mL cartridges 53466 12703011000036109 Humalog 100 units/mL injection solution, 5 x 3 mL cartridges 5284011000036104 Humalog 100 units/mL injection solution, 3 mL cartridge 22101000168100 Humalog 22101000168100 Humalog 27297011000036108 insulin lispro 100 units/mL injection, 5 x 3 mL cartridges 22650011000036102 insulin lispro 100 units/mL injection, cartridge 21851011000036103 insulin lispro +662961000168103 Irbesartan HCT 300/25 (GH) film-coated tablet, 30, blister pack 190117 662951000168100 Irbesartan HCT 300/25 (GH) film-coated tablet, 30 662941000168102 Irbesartan HCT 300/25 (GH) film-coated tablet 662931000168106 Irbesartan HCT 300/25 (GH) 662931000168106 Irbesartan HCT 300/25 (GH) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +701621000168103 Fentanyl (GH) 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 201871 701611000168105 Fentanyl (GH) 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 701601000168107 Fentanyl (GH) 500 microgram/10 mL injection solution, 10 mL ampoule 701591000168100 Fentanyl (GH) 701591000168100 Fentanyl (GH) 35182011000036108 fentanyl 500 microgram/10 mL injection, 5 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +20392011000036109 Auspril 20 mg uncoated tablet, 30, blister pack 77037 13600011000036104 Auspril 20 mg uncoated tablet, 30 6883011000036108 Auspril 20 mg uncoated tablet 3629011000036103 Auspril 3629011000036103 Auspril 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +20392011000036109 Auspril 20 mg uncoated tablet, 30, blister pack 121756 13600011000036104 Auspril 20 mg uncoated tablet, 30 6883011000036108 Auspril 20 mg uncoated tablet 3629011000036103 Auspril 3629011000036103 Auspril 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +34634011000036102 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 5 x 100 mL vials 118335 34224011000036101 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 5 x 100 mL vials 33971011000036101 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 33950011000036106 Metronidazole (Sandoz) 33950011000036106 Metronidazole (Sandoz) 35104011000036103 metronidazole 500 mg/100 mL (0.5%) injection, 5 x 100 mL vials 34850011000036104 metronidazole 500 mg/100 mL (0.5%) injection, vial 21482011000036106 metronidazole +958501000168102 Piperacillin and Tazobactam 2 g/0.25 g (DBL) powder for injection, 2.25 g vial 128752 958491000168109 Piperacillin and Tazobactam 2 g/0.25 g (DBL) powder for injection, 2.25 g vial 958481000168106 Piperacillin and Tazobactam 2 g/0.25 g (DBL) powder for injection, 2.25 g vial 958471000168108 Piperacillin and Tazobactam 2 g/0.25 g (DBL) 958471000168108 Piperacillin and Tazobactam 2 g/0.25 g (DBL) 924112011000036104 piperacillin 2 g + tazobactam 250 mg injection, 2.25 g vial 923946011000036109 piperacillin 2 g + tazobactam 250 mg injection, 2.25 g vial 44928011000036106 piperacillin + tazobactam +992901000168101 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 4, blister pack 201680 992891000168100 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 4 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992881000168103 clopidogrel 75 mg + aspirin 75 mg tablet, 4 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +79722011000036108 Rectogesic 0.2% ointment, 15 g, tube 66382 79533011000036103 Rectogesic 0.2% ointment, 15 g 79401011000036100 Rectogesic 0.2% ointment 76016011000036108 Rectogesic 76016011000036108 Rectogesic 79839011000036104 glyceryl trinitrate 0.2% ointment, 15 g 79757011000036109 glyceryl trinitrate 0.2% ointment 21388011000036102 glyceryl trinitrate +1112641000168105 Quetiapine (GH) 150 mg film-coated tablet, 10, blister pack 179903 1112631000168101 Quetiapine (GH) 150 mg film-coated tablet, 10 1112611000168106 Quetiapine (GH) 150 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1112621000168104 quetiapine 150 mg tablet, 10 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +962841000168105 Paroxetine (Apo) 20 mg film-coated tablet, 30, blister pack 150212 962831000168101 Paroxetine (Apo) 20 mg film-coated tablet, 30 962821000168104 Paroxetine (Apo) 20 mg film-coated tablet 962811000168106 Paroxetine (Apo) 962811000168106 Paroxetine (Apo) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +933213271000036108 Lisinopril (IPCA) 2.5 mg uncoated tablet, 84, blister pack 152715 933201631000036106 Lisinopril (IPCA) 2.5 mg uncoated tablet, 84 933194771000036101 Lisinopril (IPCA) 2.5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 927304011000036109 lisinopril 2.5 mg tablet, 84 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +61252011000036109 Nicotine (Amcal) 14 mg/24 hours patch, 21, sachet 77119 57188011000036102 Nicotine (Amcal) 14 mg/24 hours patch, 21 54230011000036103 Nicotine (Amcal) 14 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63759011000036103 nicotine 14 mg/24 hours patch, 21 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +965011000168107 Fosinopril (DP) 10 mg uncoated tablet, 30, blister pack 119887 965001000168109 Fosinopril (DP) 10 mg uncoated tablet, 30 964991000168103 Fosinopril (DP) 10 mg uncoated tablet 964981000168101 Fosinopril (DP) 964981000168101 Fosinopril (DP) 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +1026941000168103 Pregabalin (Amneal) 300 mg hard capsule, 56, blister pack 235840 1026931000168107 Pregabalin (Amneal) 300 mg hard capsule, 56 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +37671011000036108 Pilocarpine Nitrate Minims (Bausch & Lomb) 2% eye drops solution, 20 x 0.5 mL unit doses, tube 32280 36937011000036101 Pilocarpine Nitrate Minims (Bausch & Lomb) 2% eye drops solution, 20 x 0.5 mL unit doses 36268011000036109 Pilocarpine Nitrate Minims (Bausch & Lomb) 2% eye drops solution, 0.5 mL unit dose 33181000168104 Pilocarpine Nitrate Minims (Bausch & Lomb) 33181000168104 Pilocarpine Nitrate Minims (Bausch & Lomb) 38818011000036108 pilocarpine nitrate 2% eye drops, 20 x 0.5 mL unit doses 38028011000036103 pilocarpine nitrate 2% eye drops, unit dose 21254011000036109 pilocarpine +705751000168104 Sorbolene Cream with Glycerin (Orion) cream, 100 g, tube 705741000168101 Sorbolene Cream with Glycerin (Orion) cream, 100 g 705721000168107 Sorbolene Cream with Glycerin (Orion) cream 27931000168107 Sorbolene Cream with Glycerin (Orion) 27931000168107 Sorbolene Cream with Glycerin (Orion) 705731000168105 glycerol 10% + cetomacrogol aqueous cream, 100 g 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +43852011000036101 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 24, blister pack 128034 41348011000036106 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 24 39801011000036104 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet 39566011000036107 Paracetamol (Pharmacy Choice) 39566011000036107 Paracetamol (Pharmacy Choice) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44285011000036109 Suvalan 100 mg film-coated tablet, 2, blister pack 63594 41756011000036108 Suvalan 100 mg film-coated tablet, 2 40183011000036108 Suvalan 100 mg film-coated tablet 3454011000036101 Suvalan 3454011000036101 Suvalan 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +699451000168101 Arixtra 10 mg/0.8 mL injection solution, 7 x 0.8 mL syringes 97800 699441000168103 Arixtra 10 mg/0.8 mL injection solution, 7 x 0.8 mL syringes 699421000168109 Arixtra 10 mg/0.8 mL injection solution, 0.8 mL syringe 3651011000036101 Arixtra 3651011000036101 Arixtra 699431000168107 fondaparinux sodium 10 mg/0.8 mL injection, 7 x 0.8 mL syringes 699411000168102 fondaparinux sodium 10 mg/0.8 mL injection, syringe 21445011000036109 fondaparinux +907061000168101 Celecoxib (BW) 200 mg hard capsule, 20, blister pack 196177 907051000168103 Celecoxib (BW) 200 mg hard capsule, 20 906951000168104 Celecoxib (BW) 200 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1114811000168102 Rosuvastatin (Sandoz) 40 mg film-coated tablet, 30, bottle 183600 114881000036101 Rosuvastatin (Sandoz) 40 mg film-coated tablet, 30 112931000036104 Rosuvastatin (Sandoz) 40 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +60421011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 48, blister pack 145584 56380011000036107 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 48 53895011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule 53491011000036102 Dimetapp PE Nasal Decongestant 53491011000036102 Dimetapp PE Nasal Decongestant 63327011000036107 phenylephrine hydrochloride 10 mg capsule, 48 61918011000036101 phenylephrine hydrochloride 10 mg capsule 37732011000036107 phenylephrine +763571000168103 Zinnat 250 mg film-coated tablet, 10, blister pack 47621 763561000168109 Zinnat 250 mg film-coated tablet, 10 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 763551000168107 cefuroxime 250 mg tablet, 10 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +69480011000036107 Soov Burn spray, 125 mL, pump actuated aerosol 49955 67280011000036103 Soov Burn spray, 125 mL 65592011000036108 Soov Burn spray 55461000168101 Soov Burn 55461000168101 Soov Burn 71828011000036102 lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.25% spray, 125 mL 70207011000036105 lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.25% spray 69859011000036104 lidocaine (lignocaine) + cetrimide +68996011000036106 Nicotinell Liquorice 4 mg chewing gum, 96, blister pack 136135 66798011000036107 Nicotinell Liquorice 4 mg chewing gum, 96 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +156711000036104 Fosinopril Sodium (Apo) 20 mg uncoated tablet, 30, bottle 119877 155721000036103 Fosinopril Sodium (Apo) 20 mg uncoated tablet, 30 154761000036108 Fosinopril Sodium (Apo) 20 mg uncoated tablet 154501000036100 Fosinopril Sodium (Apo) 154501000036100 Fosinopril Sodium (Apo) 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +658601000168102 Teltartan 80 mg uncoated tablet, 28, blister pack 209343 658591000168109 Teltartan 80 mg uncoated tablet, 28 658581000168106 Teltartan 80 mg uncoated tablet 658501000168103 Teltartan 658501000168103 Teltartan 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +821541000168101 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack 162215 821531000168105 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack 821511000168100 Imojev (Japanese encephalitis live vaccine) powder for injection, vial 134091000036100 Imojev 134091000036100 Imojev 821521000168107 Japanese encephalitis live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 821501000168103 Japanese encephalitis live vaccine injection, vial 821491000168105 Japanese encephalitis live vaccine +821541000168101 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack 162215 821531000168105 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack 134311000036108 Imojev (inert substance) diluent, vial 134091000036100 Imojev 134091000036100 Imojev 821521000168107 Japanese encephalitis live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +1031281000168105 Aten 50 mg film-coated tablet, 120, blister pack 197716 1031271000168107 Aten 50 mg film-coated tablet, 120 1030851000168109 Aten 50 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031261000168101 atenolol 50 mg tablet, 120 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +61517011000036105 Sinus Relief (Chemists' Own) 60 mg film-coated tablet, 12, blister pack 93484 57442011000036109 Sinus Relief (Chemists' Own) 60 mg film-coated tablet, 12 54304011000036108 Sinus Relief (Chemists' Own) 60 mg film-coated tablet 53351011000036102 Sinus Relief (Chemists' Own) 53351011000036102 Sinus Relief (Chemists' Own) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +19792011000036107 Arthrotec multilayer tablet, 60, blister pack 171033 13050011000036104 Arthrotec multilayer tablet, 60 6334011000036101 Arthrotec multilayer tablet 3384011000036100 Arthrotec 3384011000036100 Arthrotec 27520011000036105 diclofenac sodium 50 mg + misoprostol 200 microgram tablet, 60 22860011000036104 diclofenac sodium 50 mg + misoprostol 200 microgram tablet 21809011000036108 diclofenac + misoprostol +19792011000036107 Arthrotec multilayer tablet, 60, blister pack 63062 13050011000036104 Arthrotec multilayer tablet, 60 6334011000036101 Arthrotec multilayer tablet 3384011000036100 Arthrotec 3384011000036100 Arthrotec 27520011000036105 diclofenac sodium 50 mg + misoprostol 200 microgram tablet, 60 22860011000036104 diclofenac sodium 50 mg + misoprostol 200 microgram tablet 21809011000036108 diclofenac + misoprostol +933211101000036108 Ablavar 4.88 g/20 mL injection solution, 10 x 20 mL vials 115547 933200061000036103 Ablavar 4.88 g/20 mL injection solution, 10 x 20 mL vials 933194361000036105 Ablavar 4.88 g/20 mL injection solution, 20 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933200071000036106 gadofosveset trisodium 4.88 g/20 mL injection, 10 x 20 mL vials 933194371000036102 gadofosveset trisodium 4.88 g/20 mL injection, vial 933216361000036104 gadofosveset +924341000168103 Cefotaxime (Hexal) 500 mg powder for injection, 1 vial 94243 924331000168107 Cefotaxime (Hexal) 500 mg powder for injection, 1 vial 924321000168109 Cefotaxime (Hexal) 500 mg powder for injection, 500 mg vial 924311000168102 Cefotaxime (Hexal) 924311000168102 Cefotaxime (Hexal) 46754011000036102 cefotaxime 500 mg injection, 1 vial 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +804171000168106 Disprin Forte tablet, 24, strip pack 10021 804161000168100 Disprin Forte tablet, 24 804141000168104 Disprin Forte tablet 30541000168107 Disprin Forte 30541000168107 Disprin Forte 804151000168102 aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet, 24 804131000168108 aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet 21831011000036102 aspirin + codeine +85029011000036108 Paroxo 20 mg film-coated tablet, 10, blister pack 152489 84894011000036106 Paroxo 20 mg film-coated tablet, 10 84788011000036102 Paroxo 20 mg film-coated tablet 84767011000036100 Paroxo 84767011000036100 Paroxo 51561011000036102 paroxetine 20 mg tablet, 10 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +780411000168100 Bupradone 8/2 sublingual tablet, 7, blister pack 152484 780401000168103 Bupradone 8/2 sublingual tablet, 7 780391000168100 Bupradone 8/2 sublingual tablet 780361000168107 Bupradone 8/2 780361000168107 Bupradone 8/2 35108011000036105 buprenorphine 8 mg + naloxone 2 mg sublingual tablet, 7 22109011000036100 buprenorphine 8 mg + naloxone 2 mg sublingual tablet 21739011000036100 buprenorphine + naloxone +928681000168108 Uremide 40 mg uncoated tablet, 50, bottle 17704 928671000168105 Uremide 40 mg uncoated tablet, 50 5862011000036100 Uremide 40 mg uncoated tablet 3144011000036100 Uremide 3144011000036100 Uremide 928661000168104 furosemide (frusemide) 40 mg tablet, 50 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +1115291000168106 Quetiapine (Unichem) 150 mg film-coated tablet, 90, blister pack 212147 1115281000168108 Quetiapine (Unichem) 150 mg film-coated tablet, 90 1115271000168105 Quetiapine (Unichem) 150 mg film-coated tablet 1114531000168109 Quetiapine (Unichem) 1114531000168109 Quetiapine (Unichem) 939061000168104 quetiapine 150 mg tablet, 90 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +1005831000168100 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags 190561 1005821000168103 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags 1005811000168105 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 200 mL bag 728591000168104 Ropivacaine 0.2% (Actavis) 728591000168104 Ropivacaine 0.2% (Actavis) 1004651000168106 ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags 1004631000168100 ropivacaine hydrochloride 400 mg/200 mL injection, bag 44857011000036102 ropivacaine +45101000036103 MSUD Express 20 powder for oral liquid, 30 x 34 g sachets 42741000036108 MSUD Express 20 powder for oral liquid, 30 x 34 g sachets 171081000168108 MSUD Express 20 powder for oral liquid, 34 g sachet 39331000168100 MSUD Express 20 39331000168100 MSUD Express 20 42751000036106 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 30 x 34 g sachets 170921000168103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 34 g sachet 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +45061000036100 Olanzapine (Stada) 7.5 mg tablet, 28, blister pack 152172 42851000036102 Olanzapine (Stada) 7.5 mg tablet, 28 40971000036104 Olanzapine (Stada) 7.5 mg tablet 20741000168100 Olanzapine (Stada) 20741000168100 Olanzapine (Stada) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +926715011000036108 Nicorette Freshmint 2 mg chewing gum, 30, blister pack 115009 926097011000036101 Nicorette Freshmint 2 mg chewing gum, 30 87062011000036105 Nicorette Freshmint 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 927324011000036103 nicotine 2 mg gum, 30 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +69519011000036106 Intralipid 30% (300 g/L) intravenous infusion injection, 10 x 1 L bottles 53541 67319011000036103 Intralipid 30% (300 g/L) intravenous infusion injection, 10 x 1 L bottles 65609011000036107 Intralipid 30% (300 g/L) intravenous infusion injection, 1 L bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71865011000036103 soya oil 30% (300 g/L) injection, 10 x 1 L bottles 70223011000036108 soya oil 30% (300 g/L) injection, bottle 69767011000036104 soya oil +59778011000036105 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension, 60 mL, bottle 108772 55740011000036104 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension, 60 mL 53643011000036107 Nurofen for Children Infant Drops 40 mg/mL oral liquid suspension 7531000168107 Nurofen for Children Infant Drops 7531000168107 Nurofen for Children Infant Drops 63365011000036107 ibuprofen 40 mg/mL oral liquid, 60 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +19218011000036103 Protaphane Penfill 100 units/mL injection suspension, 5 x 3 mL cartridges 169635 12508011000036103 Protaphane Penfill 100 units/mL injection suspension, 5 x 3 mL cartridges 5607011000036106 Protaphane Penfill 100 units/mL injection suspension, 3 mL cartridge 55361000168106 Protaphane Penfill 55361000168106 Protaphane Penfill 27769011000036109 insulin isophane human 100 units/mL injection, 5 x 3 mL cartridges 23100011000036102 insulin isophane human 100 units/mL injection, cartridge 33643011000036100 insulin isophane human +19218011000036103 Protaphane Penfill 100 units/mL injection suspension, 5 x 3 mL cartridges 47221 12508011000036103 Protaphane Penfill 100 units/mL injection suspension, 5 x 3 mL cartridges 5607011000036106 Protaphane Penfill 100 units/mL injection suspension, 3 mL cartridge 55361000168106 Protaphane Penfill 55361000168106 Protaphane Penfill 27769011000036109 insulin isophane human 100 units/mL injection, 5 x 3 mL cartridges 23100011000036102 insulin isophane human 100 units/mL injection, cartridge 33643011000036100 insulin isophane human +105071000036109 Betavit 100 mg film-coated tablet, 100, bottle 198113 102241000036102 Betavit 100 mg film-coated tablet, 100 99271000036107 Betavit 100 mg film-coated tablet 97601000036105 Betavit 97601000036105 Betavit 96851000036108 thiamine hydrochloride 100 mg tablet, 100 96351000036103 thiamine hydrochloride 100 mg tablet 21789011000036109 thiamine +753061000168106 Oxycodone (GX) 20 mg hard capsule, 20, blister pack 227841 753021000168101 Oxycodone (GX) 20 mg hard capsule, 20 753011000168108 Oxycodone (GX) 20 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +1113141000168107 Allopurinol (TN) 300 mg uncoated tablet, 100, blister pack 269655 1113131000168103 Allopurinol (TN) 300 mg uncoated tablet, 100 1112951000168100 Allopurinol (TN) 300 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1113121000168101 allopurinol 300 mg tablet, 100 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +60352011000036108 Benadryl for the Family Original oral liquid solution, 200 mL, bottle 14114 56311011000036102 Benadryl for the Family Original oral liquid solution, 200 mL 53872011000036107 Benadryl for the Family Original oral liquid solution, 5 mL 3541000168107 Benadryl for the Family Original 3541000168107 Benadryl for the Family Original 63300011000036102 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 200 mL 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +1026661000168105 Pregabalin (Amneal) 150 mg hard capsule, 14, blister pack 235877 1026651000168108 Pregabalin (Amneal) 150 mg hard capsule, 14 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +59984011000036103 Codral Day and Night Cold and Flu (18 x Day tablets, 6 x Night tablets), 24, blister pack 121311 55946011000036105 Codral Day and Night Cold and Flu (18 x Day tablets, 6 x Night tablets), 24 53732011000036106 Codral Day and Night Cold and Flu (Day) film-coated tablet 51421000168108 Codral Day and Night Cold and Flu 51541000168101 Codral Day and Night Cold and Flu (Day) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +59984011000036103 Codral Day and Night Cold and Flu (18 x Day tablets, 6 x Night tablets), 24, blister pack 121311 55946011000036105 Codral Day and Night Cold and Flu (18 x Day tablets, 6 x Night tablets), 24 53733011000036104 Codral Day and Night Cold and Flu (Night) film-coated tablet 51421000168108 Codral Day and Night Cold and Flu 51671000168107 Codral Day and Night Cold and Flu (Night) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +863901000168103 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags 144671 863891000168102 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags 863841000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863881000168100 glucose monohydrate 5% (5 g/100 mL) injection, 40 x 100 mL bags 863831000168101 glucose monohydrate 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +771791000168100 Clinoleic 20% injection emulsion, 250 mL bag 97537 771781000168103 Clinoleic 20% injection emulsion, 250 mL bag 771761000168107 Clinoleic 20% injection emulsion, 250 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 771771000168101 olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 250 mL bag 771751000168105 olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, bag 926971011000036108 olive oil + soya oil +800471000168107 Acyclo-V 400 mg film-coated tablet, 70, blister pack 50493 800461000168101 Acyclo-V 400 mg film-coated tablet, 70 800441000168100 Acyclo-V 400 mg film-coated tablet 3992011000036100 Acyclo-V 3992011000036100 Acyclo-V 800451000168103 aciclovir 400 mg tablet, 70 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +789711000168101 Oxycontin 60 mg modified release tablet, 20, blister pack 200032 789701000168104 Oxycontin 60 mg modified release tablet, 20 789681000168102 Oxycontin 60 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789691000168104 oxycodone hydrochloride 60 mg modified release tablet, 20 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +701941000168101 Laxative with Senna (Chemists' Own) film-coated tablet, 200, bottle 218551 701931000168105 Laxative with Senna (Chemists' Own) film-coated tablet, 200 701881000168100 Laxative with Senna (Chemists' Own) film-coated tablet 701871000168103 Laxative with Senna (Chemists' Own) 701871000168103 Laxative with Senna (Chemists' Own) 686521000168104 docusate sodium 50 mg + sennoside B 8 mg tablet, 200 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +1056891000168103 Atorvastatin (ZAZ) 20 mg film-coated tablet, 30, blister pack 185038 1056881000168101 Atorvastatin (ZAZ) 20 mg film-coated tablet, 30 1056851000168108 Atorvastatin (ZAZ) 20 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +79015011000036108 Lexam 20 mg film-coated tablet, 28, blister pack 135489 78820011000036105 Lexam 20 mg film-coated tablet, 28 78637011000036100 Lexam 20 mg film-coated tablet 78594011000036105 Lexam 78594011000036105 Lexam 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +79015011000036108 Lexam 20 mg film-coated tablet, 28, blister pack 211388 78820011000036105 Lexam 20 mg film-coated tablet, 28 78637011000036100 Lexam 20 mg film-coated tablet 78594011000036105 Lexam 78594011000036105 Lexam 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +778241000168106 Oxycodone MR (Apo) 30 mg modified release tablet, 28, blister pack 214490 778231000168102 Oxycodone MR (Apo) 30 mg modified release tablet, 28 778171000168105 Oxycodone MR (Apo) 30 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 929210011000036100 oxycodone hydrochloride 30 mg modified release tablet, 28 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +1030961000168104 Atomoxetine (Genpar) 25 mg hard capsule, 14, blister pack 234858 1030951000168101 Atomoxetine (Genpar) 25 mg hard capsule, 14 1030891000168104 Atomoxetine (Genpar) 25 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830451000168107 atomoxetine 25 mg capsule, 14 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +19308011000036107 Advantan 0.1% ointment, 15 g, tube 49381 12598011000036101 Advantan 0.1% ointment, 15 g 4588011000036107 Advantan 0.1% ointment 3513011000036101 Advantan 3513011000036101 Advantan 27227011000036100 methylprednisolone aceponate 0.1% ointment, 15 g 22587011000036102 methylprednisolone aceponate 0.1% ointment 21605011000036100 methylprednisolone +988491000168104 Cafex 100 mg uncoated tablet, 48, blister pack 174161 988481000168102 Cafex 100 mg uncoated tablet, 48 988391000168108 Cafex 100 mg uncoated tablet 988381000168105 Cafex 988381000168105 Cafex 988471000168100 caffeine 100 mg tablet, 48 70169011000036100 caffeine 100 mg tablet 69867011000036102 caffeine +923768011000036105 Ondansetron (Claris) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 147103 923289011000036106 Ondansetron (Claris) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 922978011000036103 Ondansetron (Claris) 4 mg/2 mL injection solution, 2 mL ampoule 922929011000036107 Ondansetron (Claris) 922929011000036107 Ondansetron (Claris) 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +66571000036103 Biostate 250 IU FVIII/500 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 73032 64511000036100 Biostate 250 IU FVIII/500 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 65652011000036108 Biostate 250 IU FVIII/500 IU VWF (factor VIII 250 units + von Willebrand factor 500 units) powder for injection, 1 vial 52671000168101 Biostate 250 IU FVIII/500 IU VWF 52671000168101 Biostate 250 IU FVIII/500 IU VWF 64521000036107 factor VIII 250 units + von Willebrand factor 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 70258011000036104 factor VIII 250 units + von Willebrand factor 500 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +66571000036103 Biostate 250 IU FVIII/500 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 73032 64511000036100 Biostate 250 IU FVIII/500 IU VWF (1 x vial, 1 x 5 mL inert diluent vial), 1 pack 900931000168107 Biostate (inert substance) diluent, 5 mL vial 52671000168101 Biostate 250 IU FVIII/500 IU VWF 900871000168100 Biostate 64521000036107 factor VIII 250 units + von Willebrand factor 500 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +772431000168100 Combantrin 50 mg/mL oral liquid suspension, 55 mL, bottle 10747 772421000168103 Combantrin 50 mg/mL oral liquid suspension, 55 mL 772281000168103 Combantrin 50 mg/mL oral liquid suspension 53233011000036109 Combantrin 53233011000036109 Combantrin 772411000168105 pyrantel 50 mg/mL oral liquid, 55 mL 772271000168101 pyrantel 50 mg/mL oral liquid 21475011000036105 pyrantel +746531000168101 Morphine Sulfate (Hospira) 10 mg/mL injection solution, 5 x 1 mL ampoules 225410 746521000168104 Morphine Sulfate (Hospira) 10 mg/mL injection solution, 5 x 1 mL ampoules 746511000168106 Morphine Sulfate (Hospira) 10 mg/mL injection solution, ampoule 746471000168102 Morphine Sulfate (Hospira) 746471000168102 Morphine Sulfate (Hospira) 26554011000036103 morphine sulfate pentahydrate 10 mg/mL injection, 5 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +32561011000036106 Mirtazapine (Terry White Chemists) 30 mg film-coated tablet, 30, blister pack 127683 32352011000036107 Mirtazapine (Terry White Chemists) 30 mg film-coated tablet, 30 32229011000036109 Mirtazapine (Terry White Chemists) 30 mg film-coated tablet 32179011000036106 Mirtazapine (Terry White Chemists) 32179011000036106 Mirtazapine (Terry White Chemists) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +958981000168102 Aropax CR 25 mg modified release tablet, 7, blister pack 101597 958971000168100 Aropax CR 25 mg modified release tablet, 7 958951000168109 Aropax CR 25 mg modified release tablet 957531000168105 Aropax CR 957531000168105 Aropax CR 958961000168106 paroxetine 25 mg modified release tablet, 7 958941000168107 paroxetine 25 mg modified release tablet 21618011000036109 paroxetine +701141000168103 Paroxetine (GH) 20 mg film-coated tablet, 30, blister pack 219043 701131000168107 Paroxetine (GH) 20 mg film-coated tablet, 30 701121000168109 Paroxetine (GH) 20 mg film-coated tablet 701111000168102 Paroxetine (GH) 701111000168102 Paroxetine (GH) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +921924011000036105 Lamotrigine (Apo) 25 mg tablet, 56, blister pack 167520 921483011000036100 Lamotrigine (Apo) 25 mg tablet, 56 921029011000036100 Lamotrigine (Apo) 25 mg tablet 11141000168104 Lamotrigine (Apo) 11141000168104 Lamotrigine (Apo) 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +50449011000036106 XPHEN, TYR Analog powder for oral liquid, 400 g, can 49260011000036101 XPHEN, TYR Analog powder for oral liquid, 400 g 48729011000036107 XPHEN, TYR Analog powder for oral liquid 24491000168108 XPHEN, TYR Analog 24491000168108 XPHEN, TYR Analog 51253011000036101 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 400 g 50801011000036109 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +34617011000036101 Morphine Sulfate (DBL) 10 mg/mL injection solution, 50 x 1 mL ampoules 101240 34206011000036104 Morphine Sulfate (DBL) 10 mg/mL injection solution, 50 x 1 mL ampoules 4559011000036107 Morphine Sulfate (DBL) 10 mg/mL injection solution, ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 35113011000036103 morphine sulfate pentahydrate 10 mg/mL injection, 50 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +60185011000036103 Pain Plus Relief (Your Pharmacy) uncoated tablet, 48, blister pack 131896 56144011000036102 Pain Plus Relief (Your Pharmacy) uncoated tablet, 48 53806011000036100 Pain Plus Relief (Your Pharmacy) uncoated tablet 53337011000036109 Pain Plus Relief (Your Pharmacy) 53337011000036109 Pain Plus Relief (Your Pharmacy) 63803011000036107 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 48 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +975541000168109 Amoxiclav 500/100 (Juno) powder for injection, 20 x 600 mg vials 269162 975531000168100 Amoxiclav 500/100 (Juno) powder for injection, 20 x 600 mg vials 975421000168102 Amoxiclav 500/100 (Juno) powder for injection, 600 mg vial 975401000168106 Amoxiclav 500/100 (Juno) 975401000168106 Amoxiclav 500/100 (Juno) 975521000168103 amoxicillin 500 mg + clavulanic acid 100 mg injection, 20 x 600 mg vials 975411000168109 amoxicillin 500 mg + clavulanic acid 100 mg injection, 600 mg vial 21360011000036101 amoxicillin + clavulanic acid +18237011000036108 Sprycel 50 mg film-coated tablet, 60, blister pack 125560 11806011000036100 Sprycel 50 mg film-coated tablet, 60 5616011000036106 Sprycel 50 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 26776011000036109 dasatinib 50 mg tablet, 60 22163011000036102 dasatinib 50 mg tablet 21627011000036104 dasatinib +44118011000036103 Burinex 1 mg uncoated tablet, 100, blister pack 51734 41594011000036109 Burinex 1 mg uncoated tablet, 100 40088011000036108 Burinex 1 mg uncoated tablet 39656011000036105 Burinex 39656011000036105 Burinex 46419011000036103 bumetanide 1 mg tablet, 100 45143011000036109 bumetanide 1 mg tablet 44957011000036109 bumetanide +933215281000036106 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 500, bottle 163525 933204251000036103 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 500 933195451000036103 Pravastatin Sodium (DRLA) 10 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932415011000036101 pravastatin sodium 10 mg tablet, 500 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +925222011000036104 Ropinirole (Pharmacor) 2 mg film-coated tablet, 84, bottle 157771 924759011000036105 Ropinirole (Pharmacor) 2 mg film-coated tablet, 84 924462011000036102 Ropinirole (Pharmacor) 2 mg film-coated tablet 59501000168104 Ropinirole (Pharmacor) 59501000168104 Ropinirole (Pharmacor) 46973011000036106 ropinirole 2 mg tablet, 84 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +69433011000036107 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 1 L bag 48510 67233011000036103 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 1 L bag 65568011000036108 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 1 L bag 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 71783011000036104 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) injection, 1 L bag 70184011000036103 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +832231000168104 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 68429 832221000168102 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 832201000168106 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 73691011000036102 Liquid PedvaxHIB 73691011000036102 Liquid PedvaxHIB 832211000168109 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial 832191000168108 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial 832181000168105 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine +59868011000036100 Diarrhoea Relief (Chemists' Own) 2 mg uncoated tablet, 10, blister pack 115538 55830011000036100 Diarrhoea Relief (Chemists' Own) 2 mg uncoated tablet, 10 53638011000036101 Diarrhoea Relief (Chemists' Own) 2 mg uncoated tablet 53104011000036101 Diarrhoea Relief (Chemists' Own) 53104011000036101 Diarrhoea Relief (Chemists' Own) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +709761000168104 Testogel 1% (12.5 mg/actuation) gel, 2 x 60 actuations, pump packs 227563 709751000168101 Testogel 1% (12.5 mg/actuation) gel, 2 x 60 actuations 709701000168100 Testogel 1% (12.5 mg/actuation) gel, actuation 3232011000036108 Testogel 3232011000036108 Testogel 709741000168103 testosterone 1% (12.5 mg/actuation) gel, 2 x 60 actuations 709691000168100 testosterone 1% (12.5 mg/actuation) gel, actuation 21290011000036109 testosterone +997151000168101 Pramipexole (Apotex) 125 microgram uncoated tablet, 100, blister pack 168557 997141000168103 Pramipexole (Apotex) 125 microgram uncoated tablet, 100 997111000168102 Pramipexole (Apotex) 125 microgram uncoated tablet 997101000168100 Pramipexole (Apotex) 997101000168100 Pramipexole (Apotex) 38829011000036105 pramipexole dihydrochloride monohydrate 125 microgram tablet, 100 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +796221000168109 Acihexal 500 mg powder for injection, 5 vials 68792 796211000168102 Acihexal 500 mg powder for injection, 5 vials 796201000168100 Acihexal 500 mg powder for injection, 500 mg vial 3239011000036103 Acihexal 3239011000036103 Acihexal 46731011000036104 aciclovir 500 mg injection, 5 vials 45287011000036106 aciclovir 500 mg injection, vial 21239011000036106 aciclovir +866771000168104 Amitriptyline (Mylan) 25 mg film-coated tablet, 10, blister pack 232800 866761000168105 Amitriptyline (Mylan) 25 mg film-coated tablet, 10 866751000168108 Amitriptyline (Mylan) 25 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1054711000168106 Palexia SR 250 mg modified release tablet, 7, blister pack 165357 1054701000168108 Palexia SR 250 mg modified release tablet, 7 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054691000168108 tapentadol 250 mg modified release tablet, 7 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +32531011000036103 Renagel 800 mg film-coated tablet, 180, bottle 101553 32327011000036105 Renagel 800 mg film-coated tablet, 180 32207011000036108 Renagel 800 mg film-coated tablet 32186011000036109 Renagel 32186011000036109 Renagel 32752011000036106 sevelamer hydrochloride 800 mg tablet, 180 32685011000036101 sevelamer hydrochloride 800 mg tablet 32634011000036107 sevelamer +20760011000036108 Avanza Soltab 45 mg orally disintegrating tablet, 30, blister pack 90599 13929011000036103 Avanza Soltab 45 mg orally disintegrating tablet, 30 7217011000036106 Avanza Soltab 45 mg orally disintegrating tablet 20511000168105 Avanza Soltab 20511000168105 Avanza Soltab 47701000036107 mirtazapine 45 mg orally disintegrating tablet, 30 47571000036107 mirtazapine 45 mg orally disintegrating tablet 21463011000036102 mirtazapine +929045011000036107 Galvumet 50/500 film-coated tablet, 180, blister pack 161216 928406011000036103 Galvumet 50/500 film-coated tablet, 180 927968011000036108 Galvumet 50/500 film-coated tablet 32001000168102 Galvumet 50/500 32001000168102 Galvumet 50/500 929243011000036101 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet, 180 929154011000036103 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet 929132011000036106 vildagliptin + metformin +864621000168100 Amitriptyline (AN) 50 mg tablet, 1000, blister pack 232120 864611000168107 Amitriptyline (AN) 50 mg tablet, 1000 864541000168105 Amitriptyline (AN) 50 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1039591000168107 Atorvastatin (Ascent) 40 mg film-coated tablet, 50, blister pack 178527 1039581000168109 Atorvastatin (Ascent) 40 mg film-coated tablet, 50 1039441000168100 Atorvastatin (Ascent) 40 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841751000168109 atorvastatin 40 mg tablet, 50 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +765991000168107 Ursodox (GH) 250 mg hard capsule, 60, blister pack 232480 765981000168109 Ursodox (GH) 250 mg hard capsule, 60 765951000168102 Ursodox (GH) 250 mg hard capsule 765941000168104 Ursodox (GH) 765941000168104 Ursodox (GH) 757471000168102 ursodeoxycholic acid 250 mg capsule, 60 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +1031001000168107 Atomoxetine (Genpar) 25 mg hard capsule, 56, blister pack 234858 1030991000168106 Atomoxetine (Genpar) 25 mg hard capsule, 56 1030891000168104 Atomoxetine (Genpar) 25 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830501000168109 atomoxetine 25 mg capsule, 56 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +933213111000036106 Prochlorperazine Maleate (IPCA) 5 mg uncoated tablet, 25, blister pack 158414 933202761000036102 Prochlorperazine Maleate (IPCA) 5 mg uncoated tablet, 25 933195391000036102 Prochlorperazine Maleate (IPCA) 5 mg uncoated tablet 933193291000036105 Prochlorperazine Maleate (IPCA) 933193291000036105 Prochlorperazine Maleate (IPCA) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +60181011000036100 Adrenaline (Aspen) 1 in 1000 (1 mg/mL) injection solution, 5 x 1 mL ampoules 131782 56140011000036107 Adrenaline (Aspen) 1 in 1000 (1 mg/mL) injection solution, 5 x 1 mL ampoules 53805011000036107 Adrenaline (Aspen) 1 in 1000 (1 mg/mL) injection solution, ampoule 53411011000036103 Adrenaline (Aspen) 53411011000036103 Adrenaline (Aspen) 26720011000036105 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, 5 x 1 mL ampoules 22115011000036100 adrenaline (epinephrine) 1 in 1000 (1 mg/mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +87719011000036101 Galantyl 8 mg modified release capsule, 30, bottle 157936 87454011000036100 Galantyl 8 mg modified release capsule, 30 87317011000036107 Galantyl 8 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 46978011000036101 galantamine 8 mg modified release capsule, 30 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +1040371000168108 Varenicline (Apo) 1 mg film-coated tablet, 56, blister pack 211940 1040361000168102 Varenicline (Apo) 1 mg film-coated tablet, 56 1040351000168104 Varenicline (Apo) 1 mg film-coated tablet 1040341000168101 Varenicline (Apo) 1040341000168101 Varenicline (Apo) 33788011000036105 varenicline 1 mg tablet, 56 33660011000036103 varenicline 1 mg tablet 33624011000036101 varenicline +43955011000036101 Imigran 100 mg film-coated tablet, 6, blister pack 38346 41447011000036102 Imigran 100 mg film-coated tablet, 6 39978011000036107 Imigran 100 mg film-coated tablet 30771000168105 Imigran 30771000168105 Imigran 46297011000036105 sumatriptan 100 mg tablet, 6 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +757451000168106 Palexia SR 25 mg modified release tablet, 100, blister pack 229737 757441000168109 Palexia SR 25 mg modified release tablet, 100 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757431000168100 tapentadol 25 mg modified release tablet, 100 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +971091000168109 Bosentan (DRLA) 62.5 mg film-coated tablet, 60, blister pack 271452 971081000168106 Bosentan (DRLA) 62.5 mg film-coated tablet, 60 971071000168108 Bosentan (DRLA) 62.5 mg film-coated tablet 971061000168102 Bosentan (DRLA) 971061000168102 Bosentan (DRLA) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +19201011000036105 Carboplatin (DBL) 150 mg/15 mL injection solution, 15 mL vial 46845 12491011000036103 Carboplatin (DBL) 150 mg/15 mL injection solution, 15 mL vial 5643011000036107 Carboplatin (DBL) 150 mg/15 mL injection solution, 15 mL vial 3040011000036102 Carboplatin (DBL) 3040011000036102 Carboplatin (DBL) 27224011000036106 carboplatin 150 mg/15 mL injection, 15 mL vial 22584011000036108 carboplatin 150 mg/15 mL injection, vial 21451011000036105 carboplatin +693261000168103 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules 49296 693251000168100 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules 693231000168106 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 mL ampoule 693201000168104 Lignocaine (Pfizer) 693201000168104 Lignocaine (Pfizer) 693241000168102 lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, 50 x 5 mL ampoules 693221000168108 lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +731281000168108 Rabeprazole (Sun) 20 mg enteric tablet, 30, blister pack 228980 731271000168105 Rabeprazole (Sun) 20 mg enteric tablet, 30 731261000168104 Rabeprazole (Sun) 20 mg enteric tablet 731251000168101 Rabeprazole (Sun) 731251000168101 Rabeprazole (Sun) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +796061000168106 Midazolam (Accord) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207232 796051000168109 Midazolam (Accord) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 796001000168105 Midazolam (Accord) 15 mg/3 mL injection solution, 3 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +796061000168106 Midazolam (Accord) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207245 796051000168109 Midazolam (Accord) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 796001000168105 Midazolam (Accord) 15 mg/3 mL injection solution, 3 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +69686011000036108 Strepsils Extra 2.4 mg lozenge, 4, blister pack 82802 67485011000036108 Strepsils Extra 2.4 mg lozenge, 4 65679011000036100 Strepsils Extra 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72004011000036103 hexylresorcinol 2.4 mg lozenge, 4 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +61136011000036109 Rectinol HC ointment, 5 g, tube 72940 57079011000036105 Rectinol HC ointment, 5 g 54187011000036105 Rectinol HC ointment 53340011000036107 Rectinol HC 53340011000036107 Rectinol HC 63731011000036101 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment, 5 g 22363011000036105 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment 21414011000036104 hydrocortisone + cinchocaine +37654011000036108 Lucrin 1 mg/0.2 mL injection solution, 2.8 mL vial 29658 36920011000036100 Lucrin 1 mg/0.2 mL injection solution, 2.8 mL vial 36251011000036107 Lucrin 1 mg/0.2 mL injection solution, vial 4027011000036101 Lucrin 4027011000036101 Lucrin 38804011000036103 leuprorelin acetate 1 mg/0.2 mL injection, 2.8 mL vial 38015011000036103 leuprorelin acetate 1 mg/0.2 mL injection, vial 21320011000036109 leuprorelin +855941000168105 Entrip 10 mg film-coated tablet, 100, blister pack 232152 855931000168101 Entrip 10 mg film-coated tablet, 100 855901000168108 Entrip 10 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +786901000168107 Oxycodone MR (Apotex) 30 mg modified release tablet, 60, blister pack 214487 786891000168108 Oxycodone MR (Apotex) 30 mg modified release tablet, 60 786841000168100 Oxycodone MR (Apotex) 30 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 71474011000036104 oxycodone hydrochloride 30 mg modified release tablet, 60 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +778881000168100 Moxifloxacin (Apotex) 400 mg film-coated tablet, 5, blister pack 223564 778871000168103 Moxifloxacin (Apotex) 400 mg film-coated tablet, 5 778861000168109 Moxifloxacin (Apotex) 400 mg film-coated tablet 778851000168107 Moxifloxacin (Apotex) 778851000168107 Moxifloxacin (Apotex) 27784011000036106 moxifloxacin 400 mg tablet, 5 23114011000036109 moxifloxacin 400 mg tablet 21765011000036109 moxifloxacin +79666011000036107 Pradaxa 110 mg hard capsule, 10, blister pack 138402 79464011000036101 Pradaxa 110 mg hard capsule, 10 79354011000036104 Pradaxa 110 mg hard capsule 79332011000036107 Pradaxa 79332011000036107 Pradaxa 79798011000036101 dabigatran etexilate 110 mg capsule, 10 79737011000036108 dabigatran etexilate 110 mg capsule 79729011000036103 dabigatran +44302011000036107 Zeldox 60 mg hard capsule, 60, bottle 65855 13133011000036102 Zeldox 60 mg hard capsule, 60 6416011000036106 Zeldox 60 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27571011000036104 ziprasidone 60 mg capsule, 60 22910011000036107 ziprasidone 60 mg capsule 21267011000036107 ziprasidone +68735011000036100 Glucose (Phebra) 50% (25 g/50 mL) concentrated injection, 10 x 50 mL vials 12420 66675011000036104 Glucose (Phebra) 50% (25 g/50 mL) concentrated injection, 10 x 50 mL vials 65347011000036103 Glucose (Phebra) 50% (25 g/50 mL) concentrated injection, 50 mL vial 65179011000036104 Glucose (Phebra) 65179011000036104 Glucose (Phebra) 71378011000036103 glucose 50% (25 g/50 mL) injection, 10 x 50 mL vials 69980011000036109 glucose 50% (25 g/50 mL) injection, vial 21354011000036103 glucose +889701000168102 Candyl-D 20 mg dispersible tablet, 25, bottle 54901 889691000168102 Candyl-D 20 mg dispersible tablet, 25 889681000168100 Candyl-D 20 mg dispersible tablet 889671000168103 Candyl-D 889671000168103 Candyl-D 27882011000036100 piroxicam 20 mg dispersible tablet, 25 23210011000036102 piroxicam 20 mg dispersible tablet 21531011000036103 piroxicam +32595011000036105 Intron A (HSA-free) 18 million units/3 mL injection solution, 3 mL vial 60021 32390011000036103 Intron A (HSA-free) 18 million units/3 mL injection solution, 3 mL vial 6221011000036109 Intron A (HSA-free) 18 million units/3 mL injection solution, 3 mL vial 27831000168103 Intron A 27831000168103 Intron A 32789011000036109 interferon alfa-2b 18 million units/3 mL injection, 3 mL vial 22793011000036106 interferon alfa-2b 18 million units/3 mL injection, vial 21525011000036103 interferon alfa-2b +83179011000036105 Gemcitabine (Ebewe) 200 mg powder for injection, 5 vials 151747 83125011000036109 Gemcitabine (Ebewe) 200 mg powder for injection, 5 vials 83070011000036105 Gemcitabine (Ebewe) 200 mg powder for injection, 200 mg vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 83208011000036108 gemcitabine 200 mg injection, 5 vials 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +18721011000036106 Aclor 250 mg/5 mL powder for oral liquid, 75 mL, bottle 100158 11140011000036100 Aclor 250 mg/5 mL powder for oral liquid, 75 mL 4610011000036100 Aclor 250 mg/5 mL powder for oral liquid, 5 mL 3519011000036103 Aclor 3519011000036103 Aclor 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +60665011000036100 Panadol 500 mg film-coated tablet, 500, bottle 39869 56623011000036103 Panadol 500 mg film-coated tablet, 500 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 63954011000036107 paracetamol 500 mg tablet, 500 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1108711000168104 Midazolam (Claris) 5 mg/mL injection solution, 25 x 1 mL ampoules 216024 1108701000168102 Midazolam (Claris) 5 mg/mL injection solution, 25 x 1 mL ampoules 1108641000168105 Midazolam (Claris) 5 mg/mL injection solution, ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 1108691000168102 midazolam 5 mg/mL injection, 25 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +18717011000036107 Tramal SR 50 mg modified release tablet, 20, blister pack 121845 11696011000036105 Tramal SR 50 mg modified release tablet, 20 5058011000036107 Tramal SR 50 mg modified release tablet 10761000168105 Tramal SR 10761000168105 Tramal SR 26740011000036107 tramadol hydrochloride 50 mg modified release tablet, 20 22133011000036107 tramadol hydrochloride 50 mg modified release tablet 21486011000036105 tramadol +1115151000168108 Zithro 500 mg film-coated tablet, 15, blister pack 241812 1115141000168106 Zithro 500 mg film-coated tablet, 15 1115081000168102 Zithro 500 mg film-coated tablet 1115071000168100 Zithro 1115071000168100 Zithro 927345011000036101 azithromycin 500 mg tablet, 15 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +964691000168106 Normatens 400 microgram film-coated tablet, 98, blister pack 114124 964681000168108 Normatens 400 microgram film-coated tablet, 98 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964671000168105 moxonidine 400 microgram tablet, 98 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +860281000168107 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle 133806 860271000168109 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120 860251000168100 Cal-600 1.5 g (calcium 600 mg) film-coated tablet 52387011000036109 Cal-600 52387011000036109 Cal-600 860261000168103 calcium carbonate 1.5 g (calcium 600 mg) tablet, 120 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 745551000168101 calcium +1028951000168100 Asartan 16 mg uncoated tablet, 28, blister pack 195375 1028941000168102 Asartan 16 mg uncoated tablet, 28 1028931000168106 Asartan 16 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 904891000168106 candesartan cilexetil 16 mg tablet, 28 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +18340011000036101 Perindopril Erbumine (Terry White Chemists) 8 mg uncoated tablet, 30, blister pack 121633 11680011000036106 Perindopril Erbumine (Terry White Chemists) 8 mg uncoated tablet, 30 4490011000036104 Perindopril Erbumine (Terry White Chemists) 8 mg uncoated tablet 4388011000036105 Perindopril Erbumine (Terry White Chemists) 4388011000036105 Perindopril Erbumine (Terry White Chemists) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +894001000168103 Imatinib Adult (Cipla) 400 mg hard capsule, 120, blister pack 231746 893991000168106 Imatinib Adult (Cipla) 400 mg hard capsule, 120 893861000168106 Imatinib Adult (Cipla) 400 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 893981000168108 imatinib 400 mg capsule, 120 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +928841000168102 Zovirax 200 mg uncoated tablet, 90, blister pack 11014 928831000168106 Zovirax 200 mg uncoated tablet, 90 928781000168103 Zovirax 200 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +1031601000168104 Atomoxetine (GXP) 25 mg hard capsule, 28, blister pack 234817 1031591000168106 Atomoxetine (GXP) 25 mg hard capsule, 28 1031431000168108 Atomoxetine (GXP) 25 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +43818011000036108 Dacarbazine (Sandoz) 100 mg powder for injection, 5 vials 117567 41196011000036108 Dacarbazine (Sandoz) 100 mg powder for injection, 5 vials 39909011000036106 Dacarbazine (Sandoz) 100 mg powder for injection, 100 mg vial 39591011000036100 Dacarbazine (Sandoz) 39591011000036100 Dacarbazine (Sandoz) 46158011000036100 dacarbazine 100 mg injection, 5 vials 45012011000036101 dacarbazine 100 mg injection, vial 44890011000036108 dacarbazine +1005891000168101 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 195810 1005881000168104 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 1005871000168102 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag 710981000168100 Ropivacaine 0.2% (Kabi) 710981000168100 Ropivacaine 0.2% (Kabi) 1004551000168105 ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags 1004531000168104 ropivacaine hydrochloride 200 mg/100 mL injection, bag 44857011000036102 ropivacaine +649941000168104 Mirtazapine ODT (Sandoz) 45 mg orally disintegrating tablet, 30, blister pack 183403 649931000168108 Mirtazapine ODT (Sandoz) 45 mg orally disintegrating tablet, 30 649921000168105 Mirtazapine ODT (Sandoz) 45 mg orally disintegrating tablet 649131000168105 Mirtazapine ODT (Sandoz) 649131000168105 Mirtazapine ODT (Sandoz) 47701000036107 mirtazapine 45 mg orally disintegrating tablet, 30 47571000036107 mirtazapine 45 mg orally disintegrating tablet 21463011000036102 mirtazapine +791791000168105 Trexject 20 mg/0.4 mL injection solution, 24 x 0.4 mL syringes 233719 791781000168107 Trexject 20 mg/0.4 mL injection solution, 24 x 0.4 mL syringes 791641000168107 Trexject 20 mg/0.4 mL injection solution, 0.4 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791771000168109 methotrexate 20 mg/0.4 mL injection, 24 x 0.4 mL syringes 791631000168103 methotrexate 20 mg/0.4 mL injection, syringe 21342011000036105 methotrexate +18250011000036108 Terbinafine (Pharmacor) 250 mg uncoated tablet, 42, blister pack 130600 11894011000036106 Terbinafine (Pharmacor) 250 mg uncoated tablet, 42 4772011000036104 Terbinafine (Pharmacor) 250 mg uncoated tablet 3763011000036101 Terbinafine (Pharmacor) 3763011000036101 Terbinafine (Pharmacor) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +50466011000036108 Tenderwet Active Cavity (609272) 5.5 cm dressing, 8, carton 49401011000036108 Tenderwet Active Cavity (609272) 5.5 cm dressing, 8 48615011000036106 Tenderwet Active Cavity (609272) 5.5 cm dressing 39161000168105 Tenderwet Active Cavity (609272) 39161000168105 Tenderwet Active Cavity (609272) 51370011000036103 dressing hydroactive debridement 5.5 cm dressing, 8 50892011000036101 dressing hydroactive debridement 5.5 cm dressing 50721011000036101 dressing hydroactive debridement +849611000168102 Vzole 200 mg film-coated tablet, 2, blister pack 238242 849601000168100 Vzole 200 mg film-coated tablet, 2 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46805011000036106 voriconazole 200 mg tablet, 2 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +69386011000036101 Panadol Sinus Relief uncoated tablet, 24, blister pack 35521 67186011000036102 Panadol Sinus Relief uncoated tablet, 24 65222011000036106 Panadol Sinus Relief uncoated tablet 11591000168101 Panadol Sinus Relief 11591000168101 Panadol Sinus Relief 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +791081000168105 Quetiapine XR (AS) 300 mg modified release tablet, 60, blister pack 226822 791071000168107 Quetiapine XR (AS) 300 mg modified release tablet, 60 791011000168104 Quetiapine XR (AS) 300 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +81174011000036101 Chesty Cough Medicine (Nyal) oral liquid solution, 160 mL, bottle 66942 80676011000036104 Chesty Cough Medicine (Nyal) oral liquid solution, 160 mL 80236011000036100 Chesty Cough Medicine (Nyal) oral liquid solution, 10 mL 80143011000036105 Chesty Cough Medicine (Nyal) 80143011000036105 Chesty Cough Medicine (Nyal) 81731011000036107 guaifenesin 200 mg/10 mL + glucose liquid 6 g/10 mL + treacle 2.7 g/10 mL oral liquid, 160 mL 81304011000036101 guaifenesin 200 mg/10 mL + glucose liquid 6 g/10 mL + treacle 2.7 g/10 mL oral liquid 81219011000036107 guaifenesin + glucose + treacle +60168011000036107 Exforge 5/160 film-coated tablet, 14, blister pack 130834 56127011000036106 Exforge 5/160 film-coated tablet, 14 53802011000036104 Exforge 5/160 film-coated tablet 8411000168102 Exforge 5/160 8411000168102 Exforge 5/160 63231011000036109 amlodipine 5 mg + valsartan 160 mg tablet, 14 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +866691000168109 Amitriptyline (RS) 50 mg tablet, 50, blister pack 232144 866681000168106 Amitriptyline (RS) 50 mg tablet, 50 866651000168104 Amitriptyline (RS) 50 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +692621000168102 Desfax 50 mg modified release tablet, 7, blister pack 218075 692611000168109 Desfax 50 mg modified release tablet, 7 692601000168106 Desfax 50 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52876011000036102 desvenlafaxine 50 mg modified release tablet, 7 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +160501000036102 Giotrif 20 mg film-coated tablet, 28, blister pack 201314 159271000036108 Giotrif 20 mg film-coated tablet, 28 157881000036104 Giotrif 20 mg film-coated tablet 157731000036105 Giotrif 157731000036105 Giotrif 159281000036105 afatinib 20 mg tablet, 28 157891000036102 afatinib 20 mg tablet 160671000036107 afatinib +931011000168103 Xatral ER 5 mg modified release tablet, 60, blister pack 60097 931001000168101 Xatral ER 5 mg modified release tablet, 60 930951000168107 Xatral ER 5 mg modified release tablet 930931000168101 Xatral ER 930931000168101 Xatral ER 930991000168102 alfuzosin hydrochloride 5 mg modified release tablet, 60 930941000168105 alfuzosin hydrochloride 5 mg modified release tablet 926977011000036100 alfuzosin +936771000168102 Tegretol 200 mg uncoated tablet, 1000, bottle 11062 936761000168108 Tegretol 200 mg uncoated tablet, 1000 5146011000036102 Tegretol 200 mg uncoated tablet 2231000168106 Tegretol 2231000168106 Tegretol 936751000168106 carbamazepine 200 mg tablet, 1000 23198011000036103 carbamazepine 200 mg tablet 21319011000036108 carbamazepine +929043011000036106 Galvumet 50/500 film-coated tablet, 10, blister pack 161216 928404011000036106 Galvumet 50/500 film-coated tablet, 10 927968011000036108 Galvumet 50/500 film-coated tablet 32001000168102 Galvumet 50/500 32001000168102 Galvumet 50/500 929241011000036102 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet, 10 929154011000036103 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet 929132011000036106 vildagliptin + metformin +1080811000168104 Claratyne Children's 5 mg chewable tablet, 20, blister pack 169329 1080801000168102 Claratyne Children's 5 mg chewable tablet, 20 930070011000036102 Claratyne Children's 5 mg chewable tablet 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 1080791000168103 loratadine 5 mg chewable tablet, 20 931862011000036104 loratadine 5 mg chewable tablet 21701011000036106 loratadine +933212951000036100 Amlodipine (Auro) 10 mg uncoated tablet, 30, blister pack 151430 933202711000036104 Amlodipine (Auro) 10 mg uncoated tablet, 30 933194561000036102 Amlodipine (Auro) 10 mg uncoated tablet 42881000168102 Amlodipine (Auro) 42881000168102 Amlodipine (Auro) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +1121661000168105 Canesten Extra cream, 30 g, tube 273715 1121651000168108 Canesten Extra cream, 30 g 1121601000168109 Canesten Extra cream 1121591000168102 Canesten Extra 1121591000168102 Canesten Extra 38541011000036108 hydrocortisone 1% + clotrimazole 1% cream, 30 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +921881011000036109 Sevikar 40/10 film-coated tablet, 30, blister pack 157562 921440011000036101 Sevikar 40/10 film-coated tablet, 30 921011011000036106 Sevikar 40/10 film-coated tablet 56321000168109 Sevikar 40/10 56321000168109 Sevikar 40/10 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +958181000168100 Somavert (30 x 10 mg vials, 30 x inert diluent vials), 1 pack, composite pack 107103 958171000168103 Somavert (30 x 10 mg vials, 30 x inert diluent vials), 1 pack 958141000168105 Somavert (pegvisomant 10 mg) powder for injection, 10 mg vial 958111000168106 Somavert 958111000168106 Somavert 958161000168109 pegvisomant 10 mg injection [30 vials] (&) inert substance diluent [30 vials], 1 pack 958131000168101 pegvisomant 10 mg injection, vial 958121000168104 pegvisomant +958181000168100 Somavert (30 x 10 mg vials, 30 x inert diluent vials), 1 pack, composite pack 107103 958171000168103 Somavert (30 x 10 mg vials, 30 x inert diluent vials), 1 pack 958151000168107 Somavert (inert substance) diluent, vial 958111000168106 Somavert 958111000168106 Somavert 958161000168109 pegvisomant 10 mg injection [30 vials] (&) inert substance diluent [30 vials], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +933215121000036100 Danset ODT 4 mg orally disintegrating tablet, 10, blister pack 163649 933204651000036101 Danset ODT 4 mg orally disintegrating tablet, 10 933195631000036108 Danset ODT 4 mg orally disintegrating tablet 32131000168105 Danset ODT 32131000168105 Danset ODT 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +933138011000036106 Elmendos 25 mg tablet, 56, bottle 98077 932939011000036108 Elmendos 25 mg tablet, 56 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +18824011000036106 Alphamox 500 mg hard capsule, 20, bottle 17657 12145011000036105 Alphamox 500 mg hard capsule, 20 5788011000036102 Alphamox 500 mg hard capsule 4042011000036101 Alphamox 4042011000036101 Alphamox 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +1044021000168104 Pryzex 7.5 mg film-coated tablet, 40, blister pack 178987 1044011000168106 Pryzex 7.5 mg film-coated tablet, 40 1043811000168103 Pryzex 7.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044001000168108 olanzapine 7.5 mg tablet, 40 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +81089011000036100 Bisolvon Chesty 8 mg soluble tablet, 32, blister pack 158944 80597011000036103 Bisolvon Chesty 8 mg soluble tablet, 32 80206011000036108 Bisolvon Chesty 8 mg soluble tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 81665011000036107 bromhexine hydrochloride 8 mg soluble tablet, 32 88351000036100 bromhexine hydrochloride 8 mg soluble tablet 61780011000036106 bromhexine +59684011000036104 Tarka 2/180 modified release tablet, 280, blister pack 104663 55700011000036105 Tarka 2/180 modified release tablet, 280 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63096011000036103 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 280 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +20777011000036103 Abilify 20 mg uncoated tablet, 30, blister pack 90999 13946011000036109 Abilify 20 mg uncoated tablet, 30 7234011000036105 Abilify 20 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +933215761000036105 Raloxifene Hydrochloride (Lilly) 60 mg film-coated tablet, 28, blister pack 172550 933203791000036100 Raloxifene Hydrochloride (Lilly) 60 mg film-coated tablet, 28 933196331000036108 Raloxifene Hydrochloride (Lilly) 60 mg film-coated tablet 933193481000036109 Raloxifene Hydrochloride (Lilly) 933193481000036109 Raloxifene Hydrochloride (Lilly) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +974241000168108 Nortritabs 25 mg uncoated tablet, 50, blister pack 220997 974231000168104 Nortritabs 25 mg uncoated tablet, 50 974131000168109 Nortritabs 25 mg uncoated tablet 974101000168102 Nortritabs 974101000168102 Nortritabs 27305011000036107 nortriptyline 25 mg tablet, 50 22658011000036100 nortriptyline 25 mg tablet 21689011000036104 nortriptyline +893911000168102 Imatinib Adult (Cipla) 400 mg hard capsule, 30, blister pack 231746 893901000168100 Imatinib Adult (Cipla) 400 mg hard capsule, 30 893861000168106 Imatinib Adult (Cipla) 400 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 830781000168107 imatinib 400 mg capsule, 30 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +69548011000036106 Albumex-4 2 g/50 mL intravenous infusion injection, 50 mL vial 59154 67348011000036103 Albumex-4 2 g/50 mL intravenous infusion injection, 50 mL vial 65623011000036102 Albumex-4 2 g/50 mL intravenous infusion injection, 50 mL vial 18981000168102 Albumex-4 18981000168102 Albumex-4 71893011000036102 albumin human 2 g/50 mL injection, 50 mL vial 70236011000036104 albumin human 2 g/50 mL injection, vial 69754011000036102 albumin human +729731000168104 Sunvepra 100 mg soft capsule, 56, blister pack 222744 729721000168102 Sunvepra 100 mg soft capsule, 56 729701000168106 Sunvepra 100 mg soft capsule 729651000168101 Sunvepra 729651000168101 Sunvepra 729711000168109 asunaprevir 100 mg capsule, 56 729691000168106 asunaprevir 100 mg capsule 729681000168108 asunaprevir +963161000168105 Arflox 750 mg film-coated tablet, 2, bottle 92369 962971000168108 Arflox 750 mg film-coated tablet, 2 962951000168104 Arflox 750 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 962961000168102 ciprofloxacin 750 mg tablet, 2 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +177081000036109 Pholcodine Dry Forte (Chemmart) 4 mg/mL oral liquid solution, 200 mL, bottle 210154 175331000036100 Pholcodine Dry Forte (Chemmart) 4 mg/mL oral liquid solution, 200 mL 173461000036101 Pholcodine Dry Forte (Chemmart) 4 mg/mL oral liquid solution 33331000168103 Pholcodine Dry Forte (Chemmart) 33331000168103 Pholcodine Dry Forte (Chemmart) 156151000036101 pholcodine 4 mg/mL oral liquid, 200 mL 154971000036102 pholcodine 4 mg/mL oral liquid 21705011000036108 pholcodine +66251000036105 Sodium Ascorbate (Biological Therapies) 30 g/100 mL injection solution, 100 mL bag 47750 64021000036104 Sodium Ascorbate (Biological Therapies) 30 g/100 mL injection solution, 100 mL bag 61121000036102 Sodium Ascorbate (Biological Therapies) 30 g/100 mL injection solution, 100 mL bag 60491000036103 Sodium Ascorbate (Biological Therapies) 60491000036103 Sodium Ascorbate (Biological Therapies) 64031000036102 sodium ascorbate 30 g/100 mL injection, 100 mL bag 61131000036100 sodium ascorbate 30 g/100 mL injection, bag 77435011000036104 ascorbic acid +789961000168100 Oxycontin 20 mg modified release tablet, 10, bottle 200035 789951000168102 Oxycontin 20 mg modified release tablet, 10 6512011000036100 Oxycontin 20 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789941000168104 oxycodone hydrochloride 20 mg modified release tablet, 10 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +692281000168100 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet, 50, blister pack 215397 692271000168103 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet, 50 692231000168101 Amitriptyline Hydrochloride (Chemmart) 25 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +934301000168102 Centevo 175/43.75/200 mg film-coated tablet, 90, bottle 238858 934291000168103 Centevo 175/43.75/200 mg film-coated tablet, 90 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934281000168101 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 90 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +59892011000036100 Nurofen Plus film-coated tablet, 24, blister pack 116620 55854011000036109 Nurofen Plus film-coated tablet, 24 53658011000036100 Nurofen Plus film-coated tablet 28771000168109 Nurofen Plus 28771000168109 Nurofen Plus 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +890661000168102 Canpek 32/12.5 uncoated tablet, 10, blister pack 198394 890651000168104 Canpek 32/12.5 uncoated tablet, 10 890621000168107 Canpek 32/12.5 uncoated tablet 890611000168100 Canpek 32/12.5 890611000168100 Canpek 32/12.5 890561000168103 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 10 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +977141000168109 Pregabalin (Apotex) 200 mg hard capsule, 60, blister pack 267557 977131000168100 Pregabalin (Apotex) 200 mg hard capsule, 60 977061000168109 Pregabalin (Apotex) 200 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1081291000168104 Alpha Keri Bath and Body Oil application, 650 mL, bottle 24618 1081281000168102 Alpha Keri Bath and Body Oil application, 650 mL 1081131000168108 Alpha Keri Bath and Body Oil application 1081121000168105 Alpha Keri Bath and Body Oil 1081121000168105 Alpha Keri Bath and Body Oil 1081271000168100 liquid paraffin 80.7% + lanolin oil 2.64% application, 650 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +17742011000036108 Ridaura 3 mg film-coated tablet, 60, bottle 13000 11889011000036108 Ridaura 3 mg film-coated tablet, 60 4694011000036106 Ridaura 3 mg film-coated tablet 4425011000036101 Ridaura 4425011000036101 Ridaura 26800011000036104 auranofin 3 mg tablet, 60 22185011000036103 auranofin 3 mg tablet 21797011000036101 auranofin +965651000168102 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 5 x 25 mL vials 117278 965641000168104 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 5 x 25 mL vials 965591000168108 Frusemide High Dose (Sandoz) 250 mg/25 mL intravenous infusion injection, 25 mL vial 965571000168107 Frusemide High Dose (Sandoz) 965571000168107 Frusemide High Dose (Sandoz) 965631000168108 furosemide (frusemide) 250 mg/25 mL injection, 5 x 25 mL vials 965581000168105 furosemide (frusemide) 250 mg/25 mL injection, vial 21329011000036103 furosemide (frusemide) +18756011000036102 Nyefax 20 mg film-coated tablet, 60, blister pack 127280 11836011000036108 Nyefax 20 mg film-coated tablet, 60 4779011000036109 Nyefax 20 mg film-coated tablet 4061011000036103 Nyefax 4061011000036103 Nyefax 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +18756011000036102 Nyefax 20 mg film-coated tablet, 60, blister pack 53250 11836011000036108 Nyefax 20 mg film-coated tablet, 60 4779011000036109 Nyefax 20 mg film-coated tablet 4061011000036103 Nyefax 4061011000036103 Nyefax 28105011000036105 nifedipine 20 mg tablet, 60 23415011000036107 nifedipine 20 mg tablet 21241011000036108 nifedipine +44417011000036103 Synercid IV powder for injection, 1 vial 71004 41876011000036108 Synercid IV powder for injection, 1 vial 932767011000036100 Synercid IV powder for injection, vial 2181000168100 Synercid IV 2181000168100 Synercid IV 46679011000036105 dalfopristin 350 mg + quinupristin 150 mg injection, 1 vial 932768011000036104 dalfopristin 350 mg + quinupristin 150 mg injection, vial 44908011000036103 dalfopristin + quinupristin +1098431000168109 Risedronate (Auro) 5 mg film-coated tablet, 28, blister pack 190155 1098421000168106 Risedronate (Auro) 5 mg film-coated tablet, 28 1098391000168104 Risedronate (Auro) 5 mg film-coated tablet 1098381000168102 Risedronate (Auro) 1098381000168102 Risedronate (Auro) 27740011000036108 risedronate sodium 5 mg tablet, 28 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +919611000168100 Antenex 10 mg uncoated tablet, 30, bottle 17581 919561000168103 Antenex 10 mg uncoated tablet, 30 919541000168102 Antenex 10 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 919551000168100 diazepam 10 mg tablet, 30 919531000168106 diazepam 10 mg tablet 21688011000036107 diazepam +726841000168105 Byetta 10 microgram/dose injection solution, 60 doses, injection device 123610 726831000168101 Byetta 10 microgram/dose injection solution, 60 doses 726811000168106 Byetta 10 microgram/dose injection solution, dose 39607011000036103 Byetta 39607011000036103 Byetta 726821000168104 exenatide 10 microgram/dose injection, 60 doses 726801000168108 exenatide 10 microgram/dose injection, dose 44897011000036109 exenatide +842191000168107 Aspecillin VK 500 mg film-coated tablet, 25, bottle 200137 842181000168109 Aspecillin VK 500 mg film-coated tablet, 25 842171000168106 Aspecillin VK 500 mg film-coated tablet 842161000168100 Aspecillin VK 842161000168100 Aspecillin VK 27496011000036109 phenoxymethylpenicillin 500 mg tablet, 25 22839011000036104 phenoxymethylpenicillin 500 mg tablet 21370011000036105 phenoxymethylpenicillin +709681000168103 Vaxigrip Junior 2015 injection solution, 1 x 0.25 mL syringe 97971 709671000168101 Vaxigrip Junior 2015 injection solution, 1 x 0.25 mL syringe 709661000168107 Vaxigrip Junior 2015 injection solution, 0.25 mL syringe 709651000168105 Vaxigrip Junior 2015 709651000168105 Vaxigrip Junior 2015 709571000168100 influenza trivalent child vaccine 2015 injection, 1 x 0.25 mL syringe 709551000168109 influenza trivalent child vaccine 2015 injection, 0.25 mL syringe 709331000168108 influenza trivalent vaccine 2015 +61073011000036106 Codral Original Cold and Flu Max uncoated tablet, 4, blister pack 68949 57016011000036105 Codral Original Cold and Flu Max uncoated tablet, 4 54161011000036100 Codral Original Cold and Flu Max uncoated tablet 49641000168104 Codral Original Cold and Flu Max 49641000168104 Codral Original Cold and Flu Max 63692011000036107 chlorphenamine maleate 2 mg + codeine phosphate hemihydrate 9.5 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 62049011000036107 chlorphenamine maleate 2 mg + codeine phosphate hemihydrate 9.5 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 61729011000036107 chlorphenamine + codeine + paracetamol + pseudoephedrine +802891000168106 Abilify ODT 30 mg orally disintegrating tablet, 28, blister pack 128904 802881000168108 Abilify ODT 30 mg orally disintegrating tablet, 28 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802871000168105 aripiprazole 30 mg orally disintegrating tablet, 28 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +1004871000168103 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags 72875 1004861000168109 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags 1004841000168105 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 200 mL bag 57031000168107 Naropin 0.2% with Fentanyl 800 microgram/200 mL 57031000168107 Naropin 0.2% with Fentanyl 800 microgram/200 mL 1004851000168107 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, 5 x 200 mL bags 1004831000168101 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, bag 34842011000036102 ropivacaine + fentanyl +1101401000168103 Abacavir/Lamivudine (Mylan) film-coated tablet, 30, blister pack 266516 1101391000168100 Abacavir/Lamivudine (Mylan) film-coated tablet, 30 1101381000168103 Abacavir/Lamivudine (Mylan) film-coated tablet 1101331000168104 Abacavir/Lamivudine (Mylan) 1101331000168104 Abacavir/Lamivudine (Mylan) 28303011000036103 abacavir 600 mg + lamivudine 300 mg tablet, 30 23617011000036104 abacavir 600 mg + lamivudine 300 mg tablet 21390011000036103 abacavir + lamivudine +922421000168109 Monace HCT 10/12.5 uncoated tablet, 30, bottle 131914 922341000168105 Monace HCT 10/12.5 uncoated tablet, 30 922331000168101 Monace HCT 10/12.5 uncoated tablet 922271000168106 Monace HCT 10/12.5 922271000168106 Monace HCT 10/12.5 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1020361000168100 Aripiprazole (WT) 5 mg uncoated tablet, 250, bottle 217206 1020351000168102 Aripiprazole (WT) 5 mg uncoated tablet, 250 1020301000168101 Aripiprazole (WT) 5 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 1015321000168107 aripiprazole 5 mg tablet, 250 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +933148011000036105 Elmendos 50 mg tablet, 56, blister pack 98074 932940011000036103 Elmendos 50 mg tablet, 56 932779011000036104 Elmendos 50 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +933148011000036105 Elmendos 50 mg tablet, 56, blister pack 98082 932940011000036103 Elmendos 50 mg tablet, 56 932779011000036104 Elmendos 50 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +836001000168100 Panadeine Forte uncoated tablet, 20, blister pack 73507 835991000168101 Panadeine Forte uncoated tablet, 20 835831000168109 Panadeine Forte uncoated tablet 34821000168106 Panadeine Forte 34821000168106 Panadeine Forte 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +931545011000036100 Ostran 8 mg film-coated tablet, 10, blister pack 163433 930706011000036107 Ostran 8 mg film-coated tablet, 10 930023011000036106 Ostran 8 mg film-coated tablet 29491000168107 Ostran 29491000168107 Ostran 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +61390011000036106 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 24, blister pack 81957 57315011000036104 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 24 54270011000036100 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet 53531011000036104 Period Pain Relief (Pharmacy Health) 53531011000036104 Period Pain Relief (Pharmacy Health) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +60952011000036102 Nicotinell Mint 4 mg chewing gum, 12, blister pack 62366 56895011000036102 Nicotinell Mint 4 mg chewing gum, 12 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60952011000036102 Nicotinell Mint 4 mg chewing gum, 12, blister pack 126044 56895011000036102 Nicotinell Mint 4 mg chewing gum, 12 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +87708011000036106 Aptivus 100 mg/mL oral liquid solution, 95 mL, bottle 154888 87449011000036102 Aptivus 100 mg/mL oral liquid solution, 95 mL 87315011000036102 Aptivus 100 mg/mL oral liquid solution 2997011000036109 Aptivus 2997011000036109 Aptivus 87810011000036109 tipranavir 100 mg/mL oral liquid, 95 mL 87757011000036100 tipranavir 100 mg/mL oral liquid 21820011000036106 tipranavir +38841000036104 Escitalopram (LAPL) 20 mg film-coated tablet, 30, bottle 165875 35211000036106 Escitalopram (LAPL) 20 mg film-coated tablet, 30 32941000036106 Escitalopram (LAPL) 20 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +18785011000036100 Avandamet 2/1000 film-coated tablet, 56, blister pack 115430 11491011000036102 Avandamet 2/1000 film-coated tablet, 56 4959011000036101 Avandamet 2/1000 film-coated tablet 42571000168103 Avandamet 2/1000 42571000168103 Avandamet 2/1000 26668011000036107 rosiglitazone 2 mg + metformin hydrochloride 1 g tablet, 56 22067011000036102 rosiglitazone 2 mg + metformin hydrochloride 1 g tablet 21426011000036104 rosiglitazone + metformin +44371011000036105 Dinac 50 mg enteric tablet, 50, bottle 68943 13254011000036104 Dinac 50 mg enteric tablet, 50 6536011000036107 Dinac 50 mg enteric tablet 4054011000036108 Dinac 4054011000036108 Dinac 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +796041000168107 Midazolam (Accord) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 207232 796031000168103 Midazolam (Accord) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 796001000168105 Midazolam (Accord) 15 mg/3 mL injection solution, 3 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +1099551000168109 Crestat 10 mg film-coated tablet, 7, blister pack 183265 1099541000168107 Crestat 10 mg film-coated tablet, 7 1099511000168108 Crestat 10 mg film-coated tablet 1099501000168105 Crestat 1099501000168105 Crestat 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1063951000168103 Mydol 15 uncoated tablet, 24, blister pack 188381 1063941000168100 Mydol 15 uncoated tablet, 24 1063931000168109 Mydol 15 uncoated tablet 1063901000168102 Mydol 15 1063901000168102 Mydol 15 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +885371000168106 Zurampic 200 mg film-coated tablet, 10, blister pack 236961 885361000168100 Zurampic 200 mg film-coated tablet, 10 885341000168104 Zurampic 200 mg film-coated tablet 885311000168103 Zurampic 885311000168103 Zurampic 885351000168102 lesinurad 200 mg tablet, 10 885331000168108 lesinurad 200 mg tablet 885321000168105 lesinurad +933212861000036109 Simvastatin (Auro) 80 mg film-coated tablet, 30, blister pack 150157 933202621000036104 Simvastatin (Auro) 80 mg film-coated tablet, 30 933194531000036108 Simvastatin (Auro) 80 mg film-coated tablet 16361000168106 Simvastatin (Auro) 16361000168106 Simvastatin (Auro) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +77130011000036109 Water for Injections (AstraZeneca) injection solution, 50 x 2 mL ampoules 11994 76598011000036109 Water for Injections (AstraZeneca) injection solution, 50 x 2 mL ampoules 76054011000036109 Water for Injections (AstraZeneca) injection solution, 2 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78152011000036102 water for injections injection, 50 x 2 mL ampoules 77583011000036102 water for injections injection, 2 mL ampoule 77431011000036101 water for injections +925327011000036105 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet, 30, blister pack 165913 924863011000036100 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet, 30 924533011000036109 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 27841011000036104 lercanidipine hydrochloride 10 mg tablet, 30 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +1078001000168101 Atomoxetine (AN) 40 mg hard capsule, 56, blister pack 234832 1077991000168105 Atomoxetine (AN) 40 mg hard capsule, 56 1077921000168108 Atomoxetine (AN) 40 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830721000168108 atomoxetine 40 mg capsule, 56 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +68753011000036102 Chlorhexidine Gluconate Pre-Op (Orion) 4% application, 20 x 50 mL tubes 11329 66607011000036102 Chlorhexidine Gluconate Pre-Op (Orion) 4% application, 20 x 50 mL tubes 65370011000036100 Chlorhexidine Gluconate Pre-Op (Orion) 4% application, 50 mL tube 4621000168104 Chlorhexidine Gluconate Pre-Op (Orion) 4621000168104 Chlorhexidine Gluconate Pre-Op (Orion) 71329011000036107 chlorhexidine gluconate 4% application, 20 x 50 mL tubes 69953011000036108 chlorhexidine gluconate 4% application, tube 21404011000036101 chlorhexidine +18105011000036106 Diapride 2 mg uncoated tablet, 30, blister pack 107345 11373011000036103 Diapride 2 mg uncoated tablet, 30 5834011000036100 Diapride 2 mg uncoated tablet 3696011000036100 Diapride 3696011000036100 Diapride 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +17915011000036101 Pro-Banthine 15 mg sugar coated tablet, 100, bottle 207283 11257011000036104 Pro-Banthine 15 mg sugar coated tablet, 100 5408011000036109 Pro-Banthine 15 mg sugar coated tablet 4024011000036107 Pro-Banthine 4024011000036107 Pro-Banthine 26573011000036102 propantheline bromide 15 mg tablet, 100 21981011000036102 propantheline bromide 15 mg tablet 21472011000036102 propantheline +17915011000036101 Pro-Banthine 15 mg sugar coated tablet, 100, bottle 10256 11257011000036104 Pro-Banthine 15 mg sugar coated tablet, 100 5408011000036109 Pro-Banthine 15 mg sugar coated tablet 4024011000036107 Pro-Banthine 4024011000036107 Pro-Banthine 26573011000036102 propantheline bromide 15 mg tablet, 100 21981011000036102 propantheline bromide 15 mg tablet 21472011000036102 propantheline +86106011000036101 Nurofen Zavance 200 mg sugar coated tablet, 96, bottle 156645 85715011000036102 Nurofen Zavance 200 mg sugar coated tablet, 96 85350011000036104 Nurofen Zavance 200 mg sugar coated tablet 5481000168102 Nurofen Zavance 5481000168102 Nurofen Zavance 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1115451000168100 Serapine 300 mg film-coated tablet, 100, blister pack 204164 1115441000168102 Serapine 300 mg film-coated tablet, 100 1115371000168102 Serapine 300 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +933053011000036106 Motrig 25 mg tablet, 56, blister pack 106985 932845011000036100 Motrig 25 mg tablet, 56 932720011000036109 Motrig 25 mg tablet 925505011000036107 Motrig 925505011000036107 Motrig 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +43887011000036105 Busulfex 60 mg/10 mL injection, 8 x 10 mL ampoules 131178 41379011000036102 Busulfex 60 mg/10 mL injection, 8 x 10 mL ampoules 39891011000036101 Busulfex 60 mg/10 mL injection, 10 mL ampoule 39768011000036105 Busulfex 39768011000036105 Busulfex 46276011000036104 busulfan 60 mg/10 mL injection, 8 x 10 mL ampoules 45050011000036106 busulfan 60 mg/10 mL injection, ampoule 21405011000036102 busulfan +856181000168105 Alprolix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209225 856171000168107 Alprolix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 856151000168103 Alprolix (eftrenonacog alfa 2000 units) powder for injection, 2000 units vial 855751000168109 Alprolix 855751000168109 Alprolix 856161000168101 eftrenonacog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 856141000168100 eftrenonacog alfa 2000 units injection, vial 855831000168105 eftrenonacog alfa +856181000168105 Alprolix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack, composite pack 209225 856171000168107 Alprolix (1 x 2000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 855861000168102 Alprolix (inert substance) diluent, 5 mL syringe 855751000168109 Alprolix 855751000168109 Alprolix 856161000168101 eftrenonacog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +686181000168105 Rosuvastatin (Blooms The Chemist) 20 mg film-coated tablet, 30, blister pack 183056 686171000168107 Rosuvastatin (Blooms The Chemist) 20 mg film-coated tablet, 30 686161000168101 Rosuvastatin (Blooms The Chemist) 20 mg film-coated tablet 686151000168103 Rosuvastatin (Blooms The Chemist) 686151000168103 Rosuvastatin (Blooms The Chemist) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +61315011000036103 Diovan 80 mg film-coated tablet, 30, blister pack 80868 57251011000036104 Diovan 80 mg film-coated tablet, 30 54254011000036107 Diovan 80 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63785011000036109 valsartan 80 mg tablet, 30 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +1046671000168101 Buprenorphine (SDZ) 10 microgram/hour patch, 2, sachet 269677 1046661000168107 Buprenorphine (SDZ) 10 microgram/hour patch, 2 1046621000168102 Buprenorphine (SDZ) 10 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 26681011000036100 buprenorphine 10 microgram/hour patch, 2 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +1060821000168108 Ramipril (Auro) 2.5 mg hard capsule, 28, blister pack 203722 1060811000168101 Ramipril (Auro) 2.5 mg hard capsule, 28 1060791000168100 Ramipril (Auro) 2.5 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 1060801000168104 ramipril 2.5 mg capsule, 28 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +19966011000036100 Penhexal VK 500 mg hard capsule, 50, blister pack 67580 13209011000036107 Penhexal VK 500 mg hard capsule, 50 6491011000036100 Penhexal VK 500 mg hard capsule 4761000168101 Penhexal VK 4761000168101 Penhexal VK 27621011000036105 phenoxymethylpenicillin 500 mg capsule, 50 22959011000036107 phenoxymethylpenicillin 500 mg capsule 21370011000036105 phenoxymethylpenicillin +969811000168100 Lypralin 75 mg hard capsule, 56, blister pack 235863 969801000168103 Lypralin 75 mg hard capsule, 56 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +939761000168101 Celebrex 400 mg hard capsule, 10, blister pack 101341 939751000168103 Celebrex 400 mg hard capsule, 10 939701000168102 Celebrex 400 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 939741000168100 celecoxib 400 mg capsule, 10 939691000168102 celecoxib 400 mg capsule 21566011000036101 celecoxib +933212791000036106 Lisinopril (Auro) 5 mg uncoated tablet, 30, blister pack 148262 933202151000036101 Lisinopril (Auro) 5 mg uncoated tablet, 30 933195241000036100 Lisinopril (Auro) 5 mg uncoated tablet 51351000168106 Lisinopril (Auro) 51351000168106 Lisinopril (Auro) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +980521000168100 Lovenox 80 mg/0.8 mL injection solution, 0.8 mL syringe 80268 980511000168107 Lovenox 80 mg/0.8 mL injection solution, 0.8 mL syringe 980501000168109 Lovenox 80 mg/0.8 mL injection solution, 0.8 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823541000168100 enoxaparin sodium 80 mg/0.8 mL injection, 0.8 mL syringe 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +692461000168105 Glucaid 75 g/300 mL oral liquid solution, 300 mL, bottle 692451000168108 Glucaid 75 g/300 mL oral liquid solution, 300 mL 692431000168102 Glucaid 75 g/300 mL oral liquid solution 40061000036108 Glucaid 40061000036108 Glucaid 692441000168106 glucose 75 g/300 mL oral liquid, 300 mL 692421000168100 glucose 75 g/300 mL oral liquid 21354011000036103 glucose +864861000168106 Amitriptyline (GXP) 25 mg tablet, 50, blister pack 232130 864851000168109 Amitriptyline (GXP) 25 mg tablet, 50 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +767361000168108 Desvenlafaxine MR (Apo) 100 mg modified release tablet, 14, blister pack 227802 767351000168106 Desvenlafaxine MR (Apo) 100 mg modified release tablet, 14 767311000168105 Desvenlafaxine MR (Apo) 100 mg modified release tablet 765791000168105 Desvenlafaxine MR (Apo) 765791000168105 Desvenlafaxine MR (Apo) 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +931735011000036102 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles 39864 930895011000036104 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles 930099011000036103 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 50 mL bottle 21931000168100 Omnipaque-300 21931000168100 Omnipaque-300 932476011000036104 iohexol 647 mg (iodine 300 mg)/mL injection, 10 x 50 mL bottles 931875011000036103 iohexol 647 mg (iodine 300 mg)/mL injection, 50 mL bottle 77459011000036103 iohexol +19724011000036107 Captohexal 12.5 mg film-coated tablet, 90, blister pack 61419 12978011000036103 Captohexal 12.5 mg film-coated tablet, 90 6267011000036106 Captohexal 12.5 mg film-coated tablet 4103011000036105 Captohexal 4103011000036105 Captohexal 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +888381000168104 Bosentan (Intas) 125 mg film-coated tablet, 500, bottle 235894 888371000168102 Bosentan (Intas) 125 mg film-coated tablet, 500 888261000168104 Bosentan (Intas) 125 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884191000168106 bosentan 125 mg tablet, 500 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +752381000168105 Fentanyl (B Braun) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 227122 752371000168107 Fentanyl (B Braun) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 752361000168101 Fentanyl (B Braun) 100 microgram/2 mL injection solution, 2 mL ampoule 752351000168103 Fentanyl (B Braun) 752351000168103 Fentanyl (B Braun) 35181011000036102 fentanyl 100 microgram/2 mL injection, 10 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +1047951000168101 Bupretec 15 microgram/hour patch, 2, sachet 234732 1047941000168103 Bupretec 15 microgram/hour patch, 2 1047931000168107 Bupretec 15 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 776161000168100 buprenorphine 15 microgram/hour patch, 2 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +789871000168101 Oxycontin 15 mg modified release tablet, 28, bottle 200027 928246011000036109 Oxycontin 15 mg modified release tablet, 28 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +1055441000168103 Sorbact Foam (S98315) 15 cm x 15 cm foam dressing, 10, carton 173776 1055431000168107 Sorbact Foam (S98315) 15 cm x 15 cm foam dressing, 10 1055411000168102 Sorbact Foam (S98315) 15 cm x 15 cm foam dressing 1055251000168102 Sorbact Foam (S98315) 1055251000168102 Sorbact Foam (S98315) 1055421000168109 dressing hydrophobic 15 cm x 15 cm foam dressing, 10 1055401000168100 dressing hydrophobic 15 cm x 15 cm foam dressing 1055281000168109 dressing hydrophobic +965491000168109 Oxytocin (Apo) 5 units/mL injection solution, 5 x 1 mL ampoules 225652 965481000168106 Oxytocin (Apo) 5 units/mL injection solution, 5 x 1 mL ampoules 965471000168108 Oxytocin (Apo) 5 units/mL injection solution, ampoule 965461000168102 Oxytocin (Apo) 965461000168102 Oxytocin (Apo) 38687011000036104 oxytocin 5 units/mL injection, 5 x 1 mL ampoules 37926011000036103 oxytocin 5 units/mL injection, ampoule 37765011000036106 oxytocin +19482011000036104 Ramace 1.25 mg uncoated tablet, 30, blister pack 54973 12759011000036103 Ramace 1.25 mg uncoated tablet, 30 6053011000036100 Ramace 1.25 mg uncoated tablet 3038011000036104 Ramace 3038011000036104 Ramace 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +933215851000036103 Cephalexin (Pharmacor) 500 mg hard capsule, 20, blister pack 176784 933204071000036104 Cephalexin (Pharmacor) 500 mg hard capsule, 20 933196431000036100 Cephalexin (Pharmacor) 500 mg hard capsule 933193941000036108 Cephalexin (Pharmacor) 933193941000036108 Cephalexin (Pharmacor) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +700026201000036108 Cosudex 50 mg film-coated tablet, 84 tablets, blister pack 131000168109 Cosudex 50 mg film-coated tablet, 84 tablets 6037011000036108 Cosudex 50 mg film-coated tablet, 1 tablet 4172011000036106 Cosudex 4172011000036106 Cosudex 700031111000036105 bicalutamide 50 mg tablet, 84 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +933238881000036108 Fentanyl (Sandoz) 12 microgram/hour patch, 3, sachet 152572 933236071000036104 Fentanyl (Sandoz) 12 microgram/hour patch, 3 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236081000036102 fentanyl 12 microgram/hour patch, 3 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +19989011000036107 Oxycontin 10 mg modified release tablet, 20, bottle 68188 13229011000036104 Oxycontin 10 mg modified release tablet, 20 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +56201000036100 Fexofenadine Hydrochloride (Pharmacy Health) 120 mg film-coated tablet, 30, blister pack 152887 51531000036103 Fexofenadine Hydrochloride (Pharmacy Health) 120 mg film-coated tablet, 30 49591000036101 Fexofenadine Hydrochloride (Pharmacy Health) 120 mg film-coated tablet 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 48191000036104 Fexofenadine Hydrochloride (Pharmacy Health) 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +81117011000036102 Sulfamethoxazole 400 mg and Trimethoprim 80 mg Concentrate (DBL) concentrated injection, 5 x 5 mL ampoules 16293 80622011000036104 Sulfamethoxazole 400 mg and Trimethoprim 80 mg Concentrate (DBL) concentrated injection, 5 x 5 mL ampoules 80210011000036108 Sulfamethoxazole 400 mg and Trimethoprim 80 mg Concentrate (DBL) concentrated injection, 5 mL ampoule 2951000168109 Sulfamethoxazole 400 mg and Trimethoprim 80 mg Concentrate (DBL) 2951000168109 Sulfamethoxazole 400 mg and Trimethoprim 80 mg Concentrate (DBL) 81682011000036102 trimethoprim 80 mg/5 mL + sulfamethoxazole 400 mg/5 mL injection, 5 x 5 mL ampoules 81282011000036104 trimethoprim 80 mg/5 mL + sulfamethoxazole 400 mg/5 mL injection, ampoule 21461011000036103 trimethoprim + sulfamethoxazole +68989011000036101 Nicotinell Liquorice 4 mg chewing gum, 12, blister pack 136135 66791011000036103 Nicotinell Liquorice 4 mg chewing gum, 12 65442011000036109 Nicotinell Liquorice 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63638011000036102 nicotine 4 mg gum, 12 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +18998011000036100 Aratac 100 mg uncoated tablet, 30, blister pack 32519 12305011000036106 Aratac 100 mg uncoated tablet, 30 5631011000036105 Aratac 100 mg uncoated tablet 3733011000036106 Aratac 3733011000036106 Aratac 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +60111011000036102 Nurofen Caplet 200 mg sugar coated tablet, 48, blister pack 127287 56070011000036100 Nurofen Caplet 200 mg sugar coated tablet, 48 53777011000036106 Nurofen Caplet 200 mg sugar coated tablet 17551000168104 Nurofen Caplet 17551000168104 Nurofen Caplet 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +764071000168108 Finide 5 mg film-coated tablet, 30, blister pack 161631 764061000168102 Finide 5 mg film-coated tablet, 30 736621000168101 Finide 5 mg film-coated tablet 736611000168108 Finide 736611000168108 Finide 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +700891000168107 Coversyl Plus LD 2.5/0.625 film-coated tablet, 30, bottle 124552 11766011000036103 Coversyl Plus LD 2.5/0.625 film-coated tablet, 30 5753011000036100 Coversyl Plus LD 2.5/0.625 film-coated tablet 581000168100 Coversyl Plus LD 2.5/0.625 581000168100 Coversyl Plus LD 2.5/0.625 26766011000036104 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet, 30 22153011000036106 perindopril arginine 2.5 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +1030911000168102 Atomoxetine (Genpar) 25 mg hard capsule, 7, blister pack 234858 1030901000168100 Atomoxetine (Genpar) 25 mg hard capsule, 7 1030891000168104 Atomoxetine (Genpar) 25 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 816501000168100 atomoxetine 25 mg capsule, 7 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +928111000168105 Emthexate 1 g/10 mL injection solution, 10 x 10 mL vials 42767 928101000168107 Emthexate 1 g/10 mL injection solution, 10 x 10 mL vials 928081000168100 Emthexate 1 g/10 mL injection solution, 10 mL vial 926861000168102 Emthexate 926861000168102 Emthexate 928091000168102 methotrexate 1 g/10 mL injection, 10 x 10 mL vials 23580011000036105 methotrexate 1 g/10 mL injection, vial 21342011000036105 methotrexate +830521000168100 Atomoxetine (Apo) 25 mg hard capsule, 56, blister pack 234804 830511000168107 Atomoxetine (Apo) 25 mg hard capsule, 56 830421000168104 Atomoxetine (Apo) 25 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830501000168109 atomoxetine 25 mg capsule, 56 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +69064011000036107 Oxycontin 15 mg modified release tablet, 20, blister pack 143102 66866011000036107 Oxycontin 15 mg modified release tablet, 20 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +69064011000036107 Oxycontin 15 mg modified release tablet, 20, blister pack 200026 66866011000036107 Oxycontin 15 mg modified release tablet, 20 65351011000036109 Oxycontin 15 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +1003001000168102 Rivastigmine (Apo) 6 mg hard capsule, 56, bottle 160572 1002991000168103 Rivastigmine (Apo) 6 mg hard capsule, 56 1002981000168101 Rivastigmine (Apo) 6 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27694011000036104 rivastigmine 6 mg capsule, 56 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +910991000168109 Cavstat 10 mg film-coated tablet, 56, blister pack 234485 910981000168106 Cavstat 10 mg film-coated tablet, 56 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910971000168108 rosuvastatin 10 mg tablet, 56 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +914051000168106 Amoxyclav 875/125 (Sandoz) film-coated tablet, 10, blister pack 255081 914041000168109 Amoxyclav 875/125 (Sandoz) film-coated tablet, 10 913901000168105 Amoxyclav 875/125 (Sandoz) film-coated tablet 913811000168102 Amoxyclav 875/125 (Sandoz) 913811000168102 Amoxyclav 875/125 (Sandoz) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +60013011000036107 Diovan 320 mg film-coated tablet, 30, blister pack 123357 55975011000036102 Diovan 320 mg film-coated tablet, 30 53744011000036101 Diovan 320 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63185011000036104 valsartan 320 mg tablet, 30 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +1119651000168101 Quetiapine XR (Actavis) 200 mg modified release tablet, 100, blister pack 226801 1119641000168103 Quetiapine XR (Actavis) 200 mg modified release tablet, 100 1119461000168101 Quetiapine XR (Actavis) 200 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51533011000036106 quetiapine 200 mg modified release tablet, 100 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +956901000168109 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 100 mL bags 49600 956891000168105 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 100 mL bags 956871000168109 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 100 mL bag 920924011000036100 Visipaque 920924011000036100 Visipaque 956881000168107 iodixanol 652 mg (iodine 320 mg)/mL injection, 10 x 100 mL bags 956861000168103 iodixanol 652 mg (iodine 320 mg)/mL injection, 100 mL bag 922032011000036109 iodixanol +19240011000036109 Diflucan 200 mg/100 mL injection solution, 100 mL vial 47462 12531011000036100 Diflucan 200 mg/100 mL injection solution, 100 mL vial 5232011000036102 Diflucan 200 mg/100 mL injection solution, 100 mL vial 11811000168107 Diflucan 11811000168107 Diflucan 27178011000036101 fluconazole 200 mg/100 mL injection, 100 mL vial 22540011000036105 fluconazole 200 mg/100 mL injection, vial 21365011000036105 fluconazole +60255011000036109 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 2 sachets 134660 56214011000036106 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 2 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63355011000036101 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 2 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +705191000168108 Sildenafil (Generic Health) 100 mg film-coated tablet, 12, blister pack 186299 705181000168105 Sildenafil (Generic Health) 100 mg film-coated tablet, 12 705151000168103 Sildenafil (Generic Health) 100 mg film-coated tablet 705141000168100 Sildenafil (Generic Health) 705141000168100 Sildenafil (Generic Health) 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +663441000168103 Priligy 30 mg film-coated tablet, 3, blister pack 147946 663431000168107 Priligy 30 mg film-coated tablet, 3 663411000168102 Priligy 30 mg film-coated tablet 663371000168103 Priligy 663371000168103 Priligy 663421000168109 dapoxetine 30 mg tablet, 3 663401000168100 dapoxetine 30 mg tablet 663391000168102 dapoxetine +872251000168108 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 56336 872241000168106 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 872221000168100 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 80111011000036104 Cardioplegia A Solution (Baxter) 80111011000036104 Cardioplegia A Solution (Baxter) 872231000168102 sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 1 L bag 872211000168107 sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, bag 81234011000036101 sodium chloride + potassium chloride + magnesium chloride + calcium chloride dihydrate +44561011000036102 Invanz 1 g powder for injection, 1 vial 81449 42014011000036107 Invanz 1 g powder for injection, 1 vial 40322011000036103 Invanz 1 g powder for injection, vial 39779011000036105 Invanz 39779011000036105 Invanz 46787011000036102 ertapenem 1 g injection, 1 vial 45317011000036103 ertapenem 1 g injection, vial 44912011000036103 ertapenem +969831000168105 Lypralin 75 mg hard capsule, 60, blister pack 235863 969821000168107 Lypralin 75 mg hard capsule, 60 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +933215921000036103 Allorin 100 mg uncoated tablet, 200, bottle 50140 933205441000036101 Allorin 100 mg uncoated tablet, 200 933196531000036104 Allorin 100 mg uncoated tablet 933193731000036101 Allorin 933193731000036101 Allorin 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +925781000168106 Zorac 0.05% gel, 15 g, tube 59521 925771000168108 Zorac 0.05% gel, 15 g 925721000168107 Zorac 0.05% gel 39675011000036100 Zorac 39675011000036100 Zorac 925761000168102 tazarotene 0.05% gel, 15 g 925711000168100 tazarotene 0.05% gel 44886011000036105 tazarotene +86089011000036103 Sinus Relief Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157692 85720011000036104 Sinus Relief Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24 85356011000036101 Sinus Relief Day and Night PE (Day) (Chemmart) uncoated tablet 33871000168109 Sinus Relief Day and Night PE (Chemmart) 33991000168103 Sinus Relief Day and Night PE (Day) (Chemmart) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +86089011000036103 Sinus Relief Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24, blister pack 157692 85720011000036104 Sinus Relief Day and Night PE (Chemmart) (16 x Day tablets, 8 x Night tablets), 24 85357011000036103 Sinus Relief Day and Night PE (Night) (Chemmart) uncoated tablet 33871000168109 Sinus Relief Day and Night PE (Chemmart) 34111000168108 Sinus Relief Day and Night PE (Night) (Chemmart) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +33557011000036104 Paracetamol (Sandoz) 500 mg uncoated tablet, 100, blister pack 138822 33295011000036106 Paracetamol (Sandoz) 500 mg uncoated tablet, 100 33057011000036101 Paracetamol (Sandoz) 500 mg uncoated tablet 32984011000036104 Paracetamol (Sandoz) 32984011000036104 Paracetamol (Sandoz) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +33557011000036104 Paracetamol (Sandoz) 500 mg uncoated tablet, 100, blister pack 211458 33295011000036106 Paracetamol (Sandoz) 500 mg uncoated tablet, 100 33057011000036101 Paracetamol (Sandoz) 500 mg uncoated tablet 32984011000036104 Paracetamol (Sandoz) 32984011000036104 Paracetamol (Sandoz) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +921899011000036107 Exforge HCT 10/160/12.5 film-coated tablet, 30, blister pack 158164 921458011000036102 Exforge HCT 10/160/12.5 film-coated tablet, 30 921017011000036103 Exforge HCT 10/160/12.5 film-coated tablet 25011000168107 Exforge HCT 10/160/12.5 25011000168107 Exforge HCT 10/160/12.5 922586011000036101 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 30 922095011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +926991000168102 Ipratrin Uni-Dose 500 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 58163 926981000168100 Ipratrin Uni-Dose 500 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 926891000168109 Ipratrin Uni-Dose 500 microgram/2 mL inhalation solution, 2 mL ampoule 50471000168100 Ipratrin Uni-Dose 50471000168100 Ipratrin Uni-Dose 926971000168103 ipratropium bromide 500 microgram/2 mL inhalation solution, 30 x 2 mL ampoules 926881000168106 ipratropium bromide 500 microgram/2 mL inhalation solution, ampoule 21512011000036101 ipratropium +69306011000036102 Hirudoid 0.3% cream, 5 g, tube 21033 67106011000036103 Hirudoid 0.3% cream, 5 g 65437011000036107 Hirudoid 0.3% cream 64958011000036102 Hirudoid 64958011000036102 Hirudoid 71674011000036101 heparinoids 0.3% cream, 5 g 70119011000036104 heparinoids 0.3% cream 69837011000036105 heparinoids +789801000168106 Oxycontin 10 mg modified release tablet, 100, bottle 200037 789791000168105 Oxycontin 10 mg modified release tablet, 100 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 789781000168107 oxycodone hydrochloride 10 mg modified release tablet, 100 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +60837011000036106 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution, 200 mL, bottle 58502 56793011000036101 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution, 200 mL 54083011000036106 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution 45631000168105 Dry Tickly Cough Medicine (Soul Pattinson) 45631000168105 Dry Tickly Cough Medicine (Soul Pattinson) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +926894011000036108 Optimark 3.31 g/10 mL injection solution, 10 mL syringe 75486 926290011000036107 Optimark 3.31 g/10 mL injection solution, 10 mL syringe 925734011000036101 Optimark 3.31 g/10 mL injection solution, 10 mL syringe 6001000168105 Optimark 6001000168105 Optimark 927389011000036109 gadoversetamide 3.31 g/10 mL injection, 10 mL syringe 927030011000036107 gadoversetamide 3.31 g/10 mL injection, syringe 926966011000036108 gadoversetamide +60330011000036108 Robitussin Chesty Cough and Nasal Congestion PS oral liquid solution, 100 mL, bottle 13885 56289011000036109 Robitussin Chesty Cough and Nasal Congestion PS oral liquid solution, 100 mL 53862011000036100 Robitussin Chesty Cough and Nasal Congestion PS oral liquid solution, 10 mL 53589011000036109 Robitussin Chesty Cough and Nasal Congestion PS 53589011000036109 Robitussin Chesty Cough and Nasal Congestion PS 63800011000036104 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62082011000036107 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +928941011000036103 Topiramate (LAPL) 50 mg film-coated tablet, 60, bottle 155188 928302011000036106 Topiramate (LAPL) 50 mg film-coated tablet, 60 927931011000036107 Topiramate (LAPL) 50 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +181611000036106 Candesartan Cilexetil HCTZ 32/25 (Chemmart) uncoated tablet, 30, blister pack 210570 181151000036101 Candesartan Cilexetil HCTZ 32/25 (Chemmart) uncoated tablet, 30 180531000036106 Candesartan Cilexetil HCTZ 32/25 (Chemmart) uncoated tablet 22451000168109 Candesartan Cilexetil HCTZ 32/25 (Chemmart) 22451000168109 Candesartan Cilexetil HCTZ 32/25 (Chemmart) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +69335011000036103 Calamine (Gold Cross) 15% lotion, 100 mL, bottle 27221 67135011000036104 Calamine (Gold Cross) 15% lotion, 100 mL 65216011000036102 Calamine (Gold Cross) 15% lotion 65032011000036103 Calamine (Gold Cross) 65032011000036103 Calamine (Gold Cross) 71700011000036106 calamine 15% lotion, 100 mL 70135011000036109 calamine 15% lotion 69791011000036109 calamine +718021000168101 Omepro 20 mg enteric capsule, 100, bottle 167314 716221000168108 Omepro 20 mg enteric capsule, 100 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716251000168100 omeprazole 20 mg enteric capsule, 100 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +50674011000036109 Paroxetine (Generic Health) 20 mg film-coated tablet, 30, blister pack 153324 49698011000036104 Paroxetine (Generic Health) 20 mg film-coated tablet, 30 48828011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet 48331011000036109 Paroxetine (Generic Health) 48331011000036109 Paroxetine (Generic Health) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1068131000168103 Logicin Cold and Flu Relief uncoated tablet, 48, blister pack 174026 1068121000168101 Logicin Cold and Flu Relief uncoated tablet, 48 1068091000168100 Logicin Cold and Flu Relief uncoated tablet 1068071000168101 Logicin Cold and Flu Relief 1068071000168101 Logicin Cold and Flu Relief 63381011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 48 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +37342011000036107 Xylocaine 1.5% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 12011 36686011000036109 Xylocaine 1.5% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 36065011000036107 Xylocaine 1.5% with Adrenaline 1 in 200 000 injection solution, 20 mL vial 5021000168108 Xylocaine 1.5% with Adrenaline 1 in 200 000 5021000168108 Xylocaine 1.5% with Adrenaline 1 in 200 000 38599011000036103 lidocaine (lignocaine) hydrochloride 1.5% (300 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, 5 x 20 mL vials 37869011000036106 lidocaine (lignocaine) hydrochloride 1.5% (300 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, vial 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +933212701000036103 Ciprofloxacin (GN) 750 mg film-coated tablet, 100, blister pack 148853 933202441000036109 Ciprofloxacin (GN) 750 mg film-coated tablet, 100 933195381000036104 Ciprofloxacin (GN) 750 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 87796011000036109 ciprofloxacin 750 mg tablet, 100 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +50628011000036103 Risperidone (Generic Health) 4 mg film-coated tablet, 60, blister pack 139824 49654011000036101 Risperidone (Generic Health) 4 mg film-coated tablet, 60 48802011000036106 Risperidone (Generic Health) 4 mg film-coated tablet 48406011000036100 Risperidone (Generic Health) 48406011000036100 Risperidone (Generic Health) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +37584011000036109 Mefic 250 mg hard capsule, 20, bottle 17653 36851011000036104 Mefic 250 mg hard capsule, 20 36192011000036107 Mefic 250 mg hard capsule 35969011000036104 Mefic 35969011000036104 Mefic 38739011000036105 mefenamic acid 250 mg capsule, 20 22239011000036107 mefenamic acid 250 mg capsule 21505011000036107 mefenamic acid +720911000168102 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 10 x 2 mL vials 22868 720901000168100 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 10 x 2 mL vials 720781000168106 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 2 mL vial 53361000168107 Sodium Selenate Decahydrate (Phebra) 53361000168107 Sodium Selenate Decahydrate (Phebra) 720891000168104 sodium selenate decahydrate 467 microgram/2 mL injection, 10 x 2 mL vials 37997011000036108 sodium selenate decahydrate 467 microgram/2 mL injection, vial 32671011000036106 selenium +83381011000036105 Lisinopril (GA) 5 mg uncoated tablet, 10, blister pack 106500 83299011000036102 Lisinopril (GA) 5 mg uncoated tablet, 10 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 83477011000036104 lisinopril 5 mg tablet, 10 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +739631000168105 Eltroxin 75 microgram tablet, 200, bottle 206961 739621000168107 Eltroxin 75 microgram tablet, 200 739611000168100 Eltroxin 75 microgram tablet 739521000168108 Eltroxin 739521000168108 Eltroxin 51552011000036103 levothyroxine sodium 75 microgram tablet, 200 50999011000036104 levothyroxine sodium 75 microgram tablet 21577011000036109 levothyroxine +20208011000036104 Ipratropium Bromide (GenRx) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 151092 13427011000036107 Ipratropium Bromide (GenRx) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 6709011000036109 Ipratropium Bromide (GenRx) 250 microgram/mL inhalation solution, ampoule 3090011000036105 Ipratropium Bromide (GenRx) 3090011000036105 Ipratropium Bromide (GenRx) 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +20208011000036104 Ipratropium Bromide (GenRx) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 74030 13427011000036107 Ipratropium Bromide (GenRx) 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 6709011000036109 Ipratropium Bromide (GenRx) 250 microgram/mL inhalation solution, ampoule 3090011000036105 Ipratropium Bromide (GenRx) 3090011000036105 Ipratropium Bromide (GenRx) 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +683461000168101 Resotrans 2 mg film-coated tablet, 28, blister pack 176746 683451000168103 Resotrans 2 mg film-coated tablet, 28 683431000168109 Resotrans 2 mg film-coated tablet 683341000168107 Resotrans 683341000168107 Resotrans 683441000168100 prucalopride 2 mg tablet, 28 683421000168106 prucalopride 2 mg tablet 683361000168106 prucalopride +830381000168108 Atomoxetine (Apo) 18 mg hard capsule, 28, blister pack 234806 830371000168105 Atomoxetine (Apo) 18 mg hard capsule, 28 830281000168104 Atomoxetine (Apo) 18 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +59800011000036101 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 50 g, tube 114309 55762011000036108 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 50 g 53720011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63131011000036107 bifonazole 1% gel, 50 g 61865011000036102 bifonazole 1% gel 21899011000036106 bifonazole +20450011000036105 Baclohexal 10 mg tablet, 100, bottle 78109 13653011000036104 Baclohexal 10 mg tablet, 100 6936011000036102 Baclohexal 10 mg tablet 3102011000036100 Baclohexal 3102011000036100 Baclohexal 28086011000036109 baclofen 10 mg tablet, 100 23394011000036104 baclofen 10 mg tablet 21227011000036102 baclofen +933215601000036103 Olanzapine (LY) 7.5 mg film-coated tablet, 7, blister pack 167683 933205101000036108 Olanzapine (LY) 7.5 mg film-coated tablet, 7 933196171000036107 Olanzapine (LY) 7.5 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 933205081000036101 olanzapine 7.5 mg tablet, 7 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +697921000168108 Dilart HCT 320/12.5 mg film-coated tablet, 28, blister pack 187402 697911000168101 Dilart HCT 320/12.5 mg film-coated tablet, 28 697901000168104 Dilart HCT 320/12.5 mg film-coated tablet 697881000168101 Dilart HCT 320/12.5 mg 697881000168101 Dilart HCT 320/12.5 mg 81588011000036106 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet, 28 81263011000036108 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +60693011000036104 Voltaren Rapid 25 mg sugar coated tablet, 5, blister pack 42942 56651011000036103 Voltaren Rapid 25 mg sugar coated tablet, 5 54020011000036108 Voltaren Rapid 25 mg sugar coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63488011000036106 diclofenac potassium 25 mg tablet, 5 61991011000036106 diclofenac potassium 25 mg tablet 21288011000036105 diclofenac +926953011000036106 Fexotabs 180 mg film-coated tablet, 10, blister pack 98210 926347011000036105 Fexotabs 180 mg film-coated tablet, 10 925776011000036107 Fexotabs 180 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +21130011000036103 Paclitaxel (Ebewe) 30 mg/5 mL concentrated injection, 5 mL vial 98548 14273011000036101 Paclitaxel (Ebewe) 30 mg/5 mL concentrated injection, 5 mL vial 7559011000036100 Paclitaxel (Ebewe) 30 mg/5 mL concentrated injection, 5 mL vial 3092011000036109 Paclitaxel (Ebewe) 3092011000036109 Paclitaxel (Ebewe) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +1046491000168103 Buprenorphine (SDZ) 5 microgram/hour patch, 2, sachet 269669 1046481000168101 Buprenorphine (SDZ) 5 microgram/hour patch, 2 1046441000168106 Buprenorphine (SDZ) 5 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 26680011000036107 buprenorphine 5 microgram/hour patch, 2 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +795881000168100 Aciclovir (Watson) 400 mg uncoated tablet, 56, blister pack 202882 795871000168103 Aciclovir (Watson) 400 mg uncoated tablet, 56 795851000168107 Aciclovir (Watson) 400 mg uncoated tablet 795831000168101 Aciclovir (Watson) 795831000168101 Aciclovir (Watson) 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +140911000036102 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 30, blister pack 196561 139361000036106 Rabeprazole Sodium (DRLA) 10 mg enteric tablet, 30 137741000036101 Rabeprazole Sodium (DRLA) 10 mg enteric tablet 137241000036108 Rabeprazole Sodium (DRLA) 137241000036108 Rabeprazole Sodium (DRLA) 84671000036105 rabeprazole sodium 10 mg enteric tablet, 30 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +61263011000036106 Harmonise 2 mg film-coated tablet, 10, blister pack 77564 57199011000036109 Harmonise 2 mg film-coated tablet, 10 54233011000036106 Harmonise 2 mg film-coated tablet 53476011000036104 Harmonise 53476011000036104 Harmonise 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +1095461000168108 Ibuprofen (Genpar) 200 mg film-coated tablet, 24, blister pack 285310 1095441000168109 Ibuprofen (Genpar) 200 mg film-coated tablet, 24 1094761000168103 Ibuprofen (Genpar) 200 mg film-coated tablet 1094721000168108 Ibuprofen (Genpar) 1094721000168108 Ibuprofen (Genpar) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +43737011000036103 Sutent 12.5 mg capsule, 7, bottle 123139 41284011000036101 Sutent 12.5 mg capsule, 7 39790011000036106 Sutent 12.5 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46219011000036104 sunitinib 12.5 mg capsule, 7 45034011000036100 sunitinib 12.5 mg capsule 44859011000036109 sunitinib +160181000036104 Montelukast (Apo) 10 mg film-coated tablet, 28, blister pack 170248 158921000036105 Montelukast (Apo) 10 mg film-coated tablet, 28 158061000036100 Montelukast (Apo) 10 mg film-coated tablet 124071000036102 Montelukast (Apo) 124071000036102 Montelukast (Apo) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +997481000168102 Meloxicam (Apotex) 7.5 mg hard capsule, 100, blister pack 181196 997471000168100 Meloxicam (Apotex) 7.5 mg hard capsule, 100 997401000168105 Meloxicam (Apotex) 7.5 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 52887011000036107 meloxicam 7.5 mg capsule, 100 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +87679011000036103 Famciclovir (Apo) 250 mg film-coated tablet, 56, blister pack 160556 87486011000036103 Famciclovir (Apo) 250 mg film-coated tablet, 56 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +729591000168107 Daklinza 60 mg film-coated tablet, 7, blister pack 222742 729581000168109 Daklinza 60 mg film-coated tablet, 7 729551000168102 Daklinza 60 mg film-coated tablet 729431000168109 Daklinza 729431000168109 Daklinza 729561000168100 daclatasvir 60 mg tablet, 7 729541000168104 daclatasvir 60 mg tablet 729451000168103 daclatasvir +68851011000036101 Dencorub Arthritis 10% cream, 100 g, tube 10148 66476011000036109 Dencorub Arthritis 10% cream, 100 g 65359011000036108 Dencorub Arthritis 10% cream 64979011000036108 Dencorub Arthritis 64979011000036108 Dencorub Arthritis 71970011000036107 trolamine salicylate 10% cream, 100 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +933215531000036109 Olanzapine (Lilly) 5 mg film-coated tablet, 28, blister pack 167680 933205011000036109 Olanzapine (Lilly) 5 mg film-coated tablet, 28 933196141000036100 Olanzapine (Lilly) 5 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +60733011000036104 Panadol Sinus film-coated tablet, 48, blister pack 49563 56691011000036107 Panadol Sinus film-coated tablet, 48 54035011000036102 Panadol Sinus film-coated tablet 13691000168103 Panadol Sinus 13691000168103 Panadol Sinus 63904011000036100 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 48 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +19695011000036108 Capoten 12.5 mg uncoated tablet, 90, blister pack 60608 12953011000036105 Capoten 12.5 mg uncoated tablet, 90 6243011000036108 Capoten 12.5 mg uncoated tablet 3934011000036103 Capoten 3934011000036103 Capoten 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +60249011000036108 Fexo (Amcal) 180 mg film-coated tablet, 20, blister pack 134657 56208011000036102 Fexo (Amcal) 180 mg film-coated tablet, 20 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +60249011000036108 Fexo (Amcal) 180 mg film-coated tablet, 20, blister pack 223782 56208011000036102 Fexo (Amcal) 180 mg film-coated tablet, 20 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +1026301000168104 Pregabalin (Amneal) 75 mg hard capsule, 21, blister pack 235855 1026291000168100 Pregabalin (Amneal) 75 mg hard capsule, 21 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854851000168103 pregabalin 75 mg capsule, 21 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1115611000168104 Quetiapine (Ascent) 100 mg film-coated tablet, 20, blister pack 202259 1115601000168102 Quetiapine (Ascent) 100 mg film-coated tablet, 20 1115551000168104 Quetiapine (Ascent) 100 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +20692011000036103 Pamacid 20 mg film-coated tablet, 60, bottle 82472 13869011000036104 Pamacid 20 mg film-coated tablet, 60 7156011000036104 Pamacid 20 mg film-coated tablet 3448011000036106 Pamacid 3448011000036106 Pamacid 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +859231000168107 Zovirax Dispersible 800 mg tablet, 35, bottle 51433 859221000168109 Zovirax Dispersible 800 mg tablet, 35 859211000168102 Zovirax Dispersible 800 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +69093011000036107 Panadol Sinus Relief PE uncoated tablet, 20, blister pack 147590 66894011000036102 Panadol Sinus Relief PE uncoated tablet, 20 65533011000036108 Panadol Sinus Relief PE uncoated tablet 53411000168100 Panadol Sinus Relief PE 53411000168100 Panadol Sinus Relief PE 71490011000036102 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 20 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +911081000168102 Cavstat 10 mg film-coated tablet, 90, blister pack 234485 911071000168100 Cavstat 10 mg film-coated tablet, 90 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911061000168106 rosuvastatin 10 mg tablet, 90 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1078161000168101 Atomoxetine (AN) 80 mg hard capsule, 28, blister pack 234857 1078151000168103 Atomoxetine (AN) 80 mg hard capsule, 28 1078101000168102 Atomoxetine (AN) 80 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +709441000168106 Vaxigrip 2015 injection solution, 1 x 0.5 mL syringe 80198 709431000168102 Vaxigrip 2015 injection solution, 1 x 0.5 mL syringe 709421000168100 Vaxigrip 2015 injection solution, 0.5 mL syringe 709311000168103 Vaxigrip 2015 709311000168103 Vaxigrip 2015 709361000168100 influenza trivalent adult vaccine 2015 injection, 1 x 0.5 mL syringe 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +21176011000036102 Movalis 15 mg uncoated tablet, 30, blister pack 99154 14317011000036105 Movalis 15 mg uncoated tablet, 30 7603011000036101 Movalis 15 mg uncoated tablet 4074011000036106 Movalis 4074011000036106 Movalis 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +850571000168100 Olmesartan (Myl) 20 mg film-coated tablet, 30, blister pack 273571 850561000168106 Olmesartan (Myl) 20 mg film-coated tablet, 30 850521000168101 Olmesartan (Myl) 20 mg film-coated tablet 849221000168107 Olmesartan (Myl) 849221000168107 Olmesartan (Myl) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +926662011000036105 Risperidone (Sandoz) 3 mg film-coated tablet, 60, bottle 126163 926138011000036104 Risperidone (Sandoz) 3 mg film-coated tablet, 60 925596011000036103 Risperidone (Sandoz) 3 mg film-coated tablet 925573011000036100 Risperidone (Sandoz) 925573011000036100 Risperidone (Sandoz) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +20179011000036102 Cephalexin (GenRx) 250 mg hard capsule, 20, blister pack 73870 13402011000036103 Cephalexin (GenRx) 250 mg hard capsule, 20 6687011000036105 Cephalexin (GenRx) 250 mg hard capsule 3342011000036104 Cephalexin (GenRx) 3342011000036104 Cephalexin (GenRx) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +60284011000036104 Panadol 500 mg film-coated tablet, 120, blister pack 13591 56243011000036102 Panadol 500 mg film-coated tablet, 120 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 63261011000036101 paracetamol 500 mg tablet, 120 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +721001000168107 Keppra-1000 1 g film-coated tablet, 10, blister pack 120513 720991000168106 Keppra-1000 1 g film-coated tablet, 10 720981000168108 Keppra-1000 1 g film-coated tablet 720921000168109 Keppra-1000 720921000168109 Keppra-1000 46173011000036108 levetiracetam 1 g tablet, 10 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +923835011000036108 Prochlorperazine Maleate (Apo) 5 mg tablet, 25, blister pack 158416 923381011000036102 Prochlorperazine Maleate (Apo) 5 mg tablet, 25 923050011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet 4811000168107 Prochlorperazine Maleate (Apo) 4811000168107 Prochlorperazine Maleate (Apo) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +983101000168106 Cetirizine (AN) 10 mg film-coated tablet, 50, blister pack 126249 983091000168101 Cetirizine (AN) 10 mg film-coated tablet, 50 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1055121000168101 Pecfent 400 microgram/actuation nasal spray, 4 x 8 actuations, pump packs 185935 1055111000168108 Pecfent 400 microgram/actuation nasal spray, 4 x 8 actuations 154871000036106 Pecfent 400 microgram/actuation nasal spray, actuation 154491000036107 Pecfent 154491000036107 Pecfent 1055101000168105 fentanyl 400 microgram/actuation nasal spray, 4 x 8 actuations 154881000036108 fentanyl 400 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +833331000168102 Centrum film-coated tablet, 130, bottle 75827 833321000168100 Centrum film-coated tablet, 130 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833311000168107 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 130 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +1056571000168102 Atorvastatin (Ran) 20 mg film-coated tablet, 30, bottle 179825 1056561000168108 Atorvastatin (Ran) 20 mg film-coated tablet, 30 1056551000168106 Atorvastatin (Ran) 20 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1009041000168103 Rivastigmine (Apotex) 4.5 mg hard capsule, 14, blister pack 160569 1009031000168107 Rivastigmine (Apotex) 4.5 mg hard capsule, 14 1009021000168109 Rivastigmine (Apotex) 4.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002391000168104 rivastigmine 4.5 mg capsule, 14 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +746851000168109 Morphine (JN) 20 mg/mL injection solution, 10 x 1 mL ampoules 224249 746841000168107 Morphine (JN) 20 mg/mL injection solution, 10 x 1 mL ampoules 746811000168108 Morphine (JN) 20 mg/mL injection solution, ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 706881000168106 morphine hydrochloride trihydrate 20 mg/mL injection, 10 x 1 mL ampoules 706831000168105 morphine hydrochloride trihydrate 20 mg/mL injection, ampoule 21252011000036100 morphine +56341000036105 Maxiclear Cold and Flu Relief uncoated tablet, 30, blister pack 159399 51781000036107 Maxiclear Cold and Flu Relief uncoated tablet, 30 48711000036105 Maxiclear Cold and Flu Relief uncoated tablet 48481000036109 Maxiclear Cold and Flu Relief 48481000036109 Maxiclear Cold and Flu Relief 83003011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 30 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +19269011000036105 Livostin 0.05% eye drops suspension, 4 mL, bottle 48289 12559011000036102 Livostin 0.05% eye drops suspension, 4 mL 5755011000036104 Livostin 0.05% eye drops suspension 4339011000036106 Livostin 4339011000036106 Livostin 27199011000036104 levocabastine 0.05% eye drops, 4 mL 22559011000036101 levocabastine 0.05% eye drops 21711011000036108 levocabastine +37676011000036103 Daivonex Scalp 0.005% solution, 60 mL, bottle 63268 36942011000036104 Daivonex Scalp 0.005% solution, 60 mL 36272011000036104 Daivonex Scalp 0.005% solution 56621000168101 Daivonex Scalp 56621000168101 Daivonex Scalp 38823011000036107 calcipotriol 0.005% solution, 60 mL 38032011000036103 calcipotriol 0.005% solution 21829011000036100 calcipotriol +925621000168100 Androgel 1% (25 mg/2.5 g) gel, 90 x 2.5 g sachets 96122 925611000168107 Androgel 1% (25 mg/2.5 g) gel, 90 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46948011000036100 testosterone 1% (25 mg/2.5 g) gel, 90 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +969991000168102 Lypralin 300 mg hard capsule, 14, blister pack 235879 969981000168100 Lypralin 300 mg hard capsule, 14 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +957221000168109 Mirtazapine (Sandoz) 15 mg film-coated tablet, 30, bottle 117165 957211000168102 Mirtazapine (Sandoz) 15 mg film-coated tablet, 30 957201000168100 Mirtazapine (Sandoz) 15 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +905281000168108 Amisulpride (AJS) 400 mg uncoated tablet, 90, blister pack 234694 905271000168105 Amisulpride (AJS) 400 mg uncoated tablet, 90 905221000168109 Amisulpride (AJS) 400 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +20646011000036108 Spiriva 18 microgram powder for inhalation, 30 capsules, blister pack 81525 13826011000036104 Spiriva 18 microgram powder for inhalation, 30 capsules 7113011000036100 Spiriva 18 microgram powder for inhalation, 1 capsule 3400011000036103 Spiriva 3400011000036103 Spiriva 27953011000036106 tiotropium 18 microgram powder for inhalation, 30 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +933215691000036106 Olanzapine (Lilly) 10 mg wafer, 28, blister pack 167688 933205211000036101 Olanzapine (Lilly) 10 mg wafer, 28 933196221000036103 Olanzapine (Lilly) 10 mg wafer 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 27714011000036109 olanzapine 10 mg wafer, 28 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +84320011000036105 Sulprix 200 mg tablet, 50, blister pack 156048 84013011000036107 Sulprix 200 mg tablet, 50 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84642011000036100 amisulpride 200 mg tablet, 50 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +1030551000168107 Frusemide (AS) 20 mg uncoated tablet, 100, bottle 176041 1030541000168105 Frusemide (AS) 20 mg uncoated tablet, 100 1030531000168101 Frusemide (AS) 20 mg uncoated tablet 1030481000168104 Frusemide (AS) 1030481000168104 Frusemide (AS) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +692141000168102 Alendronate D3 70 mg/140 microgram (Actavis) uncoated tablet, 4, blister pack 692131000168106 Alendronate D3 70 mg/140 microgram (Actavis) uncoated tablet, 4 692121000168108 Alendronate D3 70 mg/140 microgram (Actavis) uncoated tablet 692111000168101 Alendronate D3 70 mg/140 microgram (Actavis) 692111000168101 Alendronate D3 70 mg/140 microgram (Actavis) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +733931000168103 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 168 x Ribavirin (Abbvie) 200 mg tablets), 1 pack, composite pack 224637 733921000168101 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 168 x Ribavirin (Abbvie) 200 mg tablets), 1 pack 726021000168108 Viekira Pak film-coated tablet 733851000168101 Viekira Pak-RBV 722981000168107 Viekira Pak 733911000168108 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [4 x 14] (&) dasabuvir 250 mg tablet [4 x 14] (&) ribavirin 200 mg tablet [168], 1 pack 726011000168101 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet 726001000168104 paritaprevir + ritonavir + ombitasvir +733931000168103 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 168 x Ribavirin (Abbvie) 200 mg tablets), 1 pack, composite pack 224637 733921000168101 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 168 x Ribavirin (Abbvie) 200 mg tablets), 1 pack 726051000168100 Viekira Pak 250 mg film-coated tablet 733851000168101 Viekira Pak-RBV 722981000168107 Viekira Pak 733911000168108 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [4 x 14] (&) dasabuvir 250 mg tablet [4 x 14] (&) ribavirin 200 mg tablet [168], 1 pack 726041000168102 dasabuvir 250 mg tablet 726031000168106 dasabuvir +733931000168103 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 168 x Ribavirin (Abbvie) 200 mg tablets), 1 pack, composite pack 224637 733921000168101 Viekira Pak-RBV (4 x 28 x Viekira Pak tablets, 168 x Ribavirin (Abbvie) 200 mg tablets), 1 pack 733661000168100 Ribavirin (Abbvie) 200 mg film-coated tablet 733851000168101 Viekira Pak-RBV 733611000168103 Ribavirin (Abbvie) 733911000168108 paritaprevir 75 mg + ritonavir 50 mg + ombitasvir 12.5 mg tablet [4 x 14] (&) dasabuvir 250 mg tablet [4 x 14] (&) ribavirin 200 mg tablet [168], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +37434011000036106 Xylocaine 1% with Adrenaline 1 in 100 000 injection solution, 10 x 5 mL ampoules 12017 36690011000036107 Xylocaine 1% with Adrenaline 1 in 100 000 injection solution, 10 x 5 mL ampoules 36169011000036104 Xylocaine 1% with Adrenaline 1 in 100 000 injection solution, 5 mL ampoule 13741000168101 Xylocaine 1% with Adrenaline 1 in 100 000 13741000168101 Xylocaine 1% with Adrenaline 1 in 100 000 38603011000036109 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) + adrenaline (epinephrine) 1 in 100 000 (50 microgram/5 mL) injection, 10 x 5 mL ampoules 37872011000036108 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) + adrenaline (epinephrine) 1 in 100 000 (50 microgram/5 mL) injection, ampoule 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +925258011000036102 Sumatriptan (Generic Health) 100 mg film-coated tablet, 2, blister pack 160194 924795011000036100 Sumatriptan (Generic Health) 100 mg film-coated tablet, 2 924490011000036103 Sumatriptan (Generic Health) 100 mg film-coated tablet 924393011000036100 Sumatriptan (Generic Health) 924393011000036100 Sumatriptan (Generic Health) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +1119971000168104 Quetiapine XR (Actavis) 50 mg modified release tablet, 10, blister pack 241753 1119961000168105 Quetiapine XR (Actavis) 50 mg modified release tablet, 10 1119951000168108 Quetiapine XR (Actavis) 50 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51529011000036107 quetiapine 50 mg modified release tablet, 10 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +1003241000168109 Levetiracetam 1000 (Apo) 1 g tablet, 60, blister pack 156328 1003231000168100 Levetiracetam 1000 (Apo) 1 g tablet, 60 1003181000168106 Levetiracetam 1000 (Apo) 1 g tablet 1003171000168108 Levetiracetam 1000 (Apo) 1003171000168108 Levetiracetam 1000 (Apo) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +700731000168101 Adempas 2.5 mg film-coated tablet, 84, blister pack 207596 700721000168104 Adempas 2.5 mg film-coated tablet, 84 700671000168107 Adempas 2.5 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700711000168106 riociguat 2.5 mg tablet, 84 700661000168101 riociguat 2.5 mg tablet 700211000168102 riociguat +732321000168105 Capecitabine (Apo) 500 mg film-coated tablet, 120, blister pack 202741 732311000168103 Capecitabine (Apo) 500 mg film-coated tablet, 120 732301000168101 Capecitabine (Apo) 500 mg film-coated tablet 732291000168102 Capecitabine (Apo) 732291000168102 Capecitabine (Apo) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +850651000168105 Temozolomide (Amneal) 20 mg hard capsule, 5, sachet 206043 850641000168108 Temozolomide (Amneal) 20 mg hard capsule, 5 850631000168104 Temozolomide (Amneal) 20 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +798711000168107 Abyraz 10 mg uncoated tablet, 98, blister pack 159503 798701000168109 Abyraz 10 mg uncoated tablet, 98 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 798691000168109 aripiprazole 10 mg tablet, 98 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +19511011000036103 Urex Forte 500 mg uncoated tablet, 50, bottle 56090 12783011000036108 Urex Forte 500 mg uncoated tablet, 50 6077011000036106 Urex Forte 500 mg uncoated tablet 18581000168105 Urex Forte 18581000168105 Urex Forte 27350011000036106 furosemide (frusemide) 500 mg tablet, 50 22703011000036108 furosemide (frusemide) 500 mg tablet 21329011000036103 furosemide (frusemide) +34623011000036101 Oxynorm 10 mg/mL injection solution, 5 x 1 mL ampoules 106965 34208011000036100 Oxynorm 10 mg/mL injection solution, 5 x 1 mL ampoules 33969011000036105 Oxynorm 10 mg/mL injection solution, ampoule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 35093011000036105 oxycodone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 34845011000036105 oxycodone hydrochloride 10 mg/mL injection, ampoule 21259011000036105 oxycodone +74785011000036107 Roxithromycin (Chemmart) 300 mg film-coated tablet, 5, blister pack 133751 74272011000036103 Roxithromycin (Chemmart) 300 mg film-coated tablet, 5 73797011000036104 Roxithromycin (Chemmart) 300 mg film-coated tablet 73707011000036101 Roxithromycin (Chemmart) 73707011000036101 Roxithromycin (Chemmart) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +755441000168101 Vttack 50 mg film-coated tablet, 2, blister pack 206983 755431000168105 Vttack 50 mg film-coated tablet, 2 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46814011000036109 voriconazole 50 mg tablet, 2 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +883811000168109 Betahistine (Actavis) 8 mg tablet, 100, blister pack 231722 883801000168106 Betahistine (Actavis) 8 mg tablet, 100 883751000168100 Betahistine (Actavis) 8 mg tablet 883671000168100 Betahistine (Actavis) 883671000168100 Betahistine (Actavis) 883151000168104 betahistine dihydrochloride 8 mg tablet, 100 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +17788011000036100 Parlodel 5 mg hard capsule, 60, bottle 13365 11973011000036107 Parlodel 5 mg hard capsule, 60 4850011000036102 Parlodel 5 mg hard capsule 3938011000036105 Parlodel 3938011000036105 Parlodel 27288011000036108 bromocriptine 5 mg capsule, 60 22642011000036100 bromocriptine 5 mg capsule 21300011000036100 bromocriptine +926799011000036106 Gemplan 200 mg powder for injection, 1 vial 165619 926195011000036101 Gemplan 200 mg powder for injection, 1 vial 925668011000036105 Gemplan 200 mg powder for injection, 200 mg vial 925542011000036108 Gemplan 925542011000036108 Gemplan 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +66161000036100 Healaid cream, 25 g, tube 28108 63721000036104 Healaid cream, 25 g 60721000036106 Healaid cream 60441000036109 Healaid 60441000036109 Healaid 63731000036102 boric acid 0.5% + phenol 1% + zinc oxide 5% cream, 25 g 60731000036108 boric acid 0.5% + phenol 1% + zinc oxide 5% cream 66911000036104 boric acid + phenol + zinc oxide +39121000036107 Nurofen for Children 5 to 12 Years strawberry 200 mg/5 mL oral liquid suspension, 100 mL, bottle 167735 35521000036102 Nurofen for Children 5 to 12 Years strawberry 200 mg/5 mL oral liquid suspension, 100 mL 32711000036108 Nurofen for Children 5 to 12 Years strawberry 200 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 35491000036100 ibuprofen 200 mg/5 mL oral liquid, 100 mL 32671000036107 ibuprofen 200 mg/5 mL oral liquid 21885011000036105 ibuprofen +865081000168108 Amitriptyline (CH) 10 mg tablet, 50, bottle 232123 865041000168103 Amitriptyline (CH) 10 mg tablet, 50 865031000168107 Amitriptyline (CH) 10 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +20116011000036102 Attenta 10 mg uncoated tablet, 100, bottle 72217 13340011000036102 Attenta 10 mg uncoated tablet, 100 6625011000036108 Attenta 10 mg uncoated tablet 3503011000036103 Attenta 3503011000036103 Attenta 27703011000036105 methylphenidate hydrochloride 10 mg tablet, 100 23038011000036102 methylphenidate hydrochloride 10 mg tablet 21277011000036101 methylphenidate +35683011000036100 Tykerb 250 mg film-coated tablet, 70, blister pack 132305 35587011000036104 Tykerb 250 mg film-coated tablet, 70 35490011000036106 Tykerb 250 mg film-coated tablet 35432011000036103 Tykerb 35432011000036103 Tykerb 35778011000036109 lapatinib 250 mg tablet, 70 35717011000036103 lapatinib 250 mg tablet 35691011000036102 lapatinib +790191000168101 Oxycontin 80 mg modified release tablet, 120, bottle 200034 790181000168104 Oxycontin 80 mg modified release tablet, 120 6514011000036109 Oxycontin 80 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790171000168102 oxycodone hydrochloride 80 mg modified release tablet, 120 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +20830011000036104 Pegasys-RBV (4 x 180 microgram syringes, 84 x 200 mg tablets), 1 pack, composite pack 91843 13993011000036106 Pegasys-RBV (4 x 180 microgram syringes, 84 x 200 mg tablets), 1 pack 7272011000036103 Pegasys 180 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28058011000036100 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [84], 1 pack 23371011000036109 peginterferon alfa-2a 180 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20830011000036104 Pegasys-RBV (4 x 180 microgram syringes, 84 x 200 mg tablets), 1 pack, composite pack 91843 13993011000036106 Pegasys-RBV (4 x 180 microgram syringes, 84 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28058011000036100 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [84], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +752741000168104 Canesten Urea 40% ointment, 10 g, tube 752731000168108 Canesten Urea 40% ointment, 10 g 752711000168103 Canesten Urea 40% ointment 752691000168101 Canesten Urea 752691000168101 Canesten Urea 752721000168105 urea 40% ointment, 10 g 752701000168101 urea 40% ointment 21561011000036106 urea +712411000168104 Esomeprazole (GH) 40 mg enteric tablet, 30, blister pack 207588 712401000168102 Esomeprazole (GH) 40 mg enteric tablet, 30 712391000168104 Esomeprazole (GH) 40 mg enteric tablet 712381000168102 Esomeprazole (GH) 712381000168102 Esomeprazole (GH) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +859321000168103 Allermosone Aqueous 50 microgram/actuation nasal spray, 140 actuations, pump pack 233575 859311000168105 Allermosone Aqueous 50 microgram/actuation nasal spray, 140 actuations 859251000168101 Allermosone Aqueous 50 microgram/actuation nasal spray, actuation 859241000168103 Allermosone Aqueous 859241000168103 Allermosone Aqueous 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +920649011000036100 Ramipril (GA) 5 mg hard capsule, 30, blister pack 134798 920392011000036105 Ramipril (GA) 5 mg hard capsule, 30 920155011000036103 Ramipril (GA) 5 mg hard capsule 920107011000036103 Ramipril (GA) 920107011000036103 Ramipril (GA) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +77176011000036105 Arginine Amino Acid Supplement containing 500 mg arginine powder for oral liquid, 30 x 4 g sachets 76562011000036108 Arginine Amino Acid Supplement containing 500 mg arginine powder for oral liquid, 30 x 4 g sachets 313301000168101 Arginine Amino Acid Supplement containing 500 mg arginine powder for oral liquid, 4 g sachet 76015011000036101 Arginine Amino Acid Supplement 76015011000036101 Arginine Amino Acid Supplement 78119011000036101 arginine with carbohydrate containing 500 mg arginine powder for oral liquid, 30 x 4 g sachets 313031000168105 arginine with carbohydrate containing 500 mg arginine powder for oral liquid, 4 g sachet 77468011000036100 arginine with carbohydrate +883771000168109 Betahistine (Actavis) 8 mg tablet, 10, blister pack 231722 883761000168103 Betahistine (Actavis) 8 mg tablet, 10 883751000168100 Betahistine (Actavis) 8 mg tablet 883671000168100 Betahistine (Actavis) 883671000168100 Betahistine (Actavis) 883091000168108 betahistine dihydrochloride 8 mg tablet, 10 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +34807011000036108 MS Contin 200 mg modified release tablet, 60, blister pack 78209 34382011000036109 MS Contin 200 mg modified release tablet, 60 6946011000036103 MS Contin 200 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35228011000036104 morphine sulfate pentahydrate 200 mg modified release tablet, 60 23197011000036104 morphine sulfate pentahydrate 200 mg modified release tablet 21252011000036100 morphine +39161000036103 Exatrust 25 mg film-coated tablet, 90, blister pack 167857 35561000036106 Exatrust 25 mg film-coated tablet, 90 32481000036107 Exatrust 25 mg film-coated tablet 32291000036108 Exatrust 32291000036108 Exatrust 933205301000036105 exemestane 25 mg tablet, 90 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +1022051000168103 Butafen 200 mg film-coated tablet, 8, blister pack 155484 1022041000168100 Butafen 200 mg film-coated tablet, 8 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63308011000036100 ibuprofen 200 mg tablet, 8 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +978671000168109 Brevoxyl Creamy Wash 4% cream, 150 mL, tube 117862 978661000168103 Brevoxyl Creamy Wash 4% cream, 150 mL 978551000168101 Brevoxyl Creamy Wash 4% cream 978541000168103 Brevoxyl Creamy Wash 978541000168103 Brevoxyl Creamy Wash 978651000168100 benzoyl peroxide 4% cream, 150 mL 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +80990011000036108 Effient 10 mg film-coated tablet, 28, blister pack 150810 80564011000036107 Effient 10 mg film-coated tablet, 28 80194011000036100 Effient 10 mg film-coated tablet 80100011000036108 Effient 80100011000036108 Effient 81643011000036100 prasugrel 10 mg tablet, 28 81277011000036105 prasugrel 10 mg tablet 81216011000036103 prasugrel +830361000168104 Atomoxetine (Apo) 18 mg hard capsule, 14, blister pack 234806 830351000168101 Atomoxetine (Apo) 18 mg hard capsule, 14 830281000168104 Atomoxetine (Apo) 18 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830341000168103 atomoxetine 18 mg capsule, 14 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +19165011000036105 Noten 50 mg uncoated tablet, 30, blister pack 46250 12464011000036102 Noten 50 mg uncoated tablet, 30 4724011000036109 Noten 50 mg uncoated tablet 4422011000036109 Noten 4422011000036109 Noten 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +20225011000036101 MS Mono 120 mg modified release capsule, 10, blister pack 74150 13440011000036108 MS Mono 120 mg modified release capsule, 10 6722011000036106 MS Mono 120 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27747011000036109 morphine sulfate pentahydrate 120 mg modified release capsule, 10 23078011000036104 morphine sulfate pentahydrate 120 mg modified release capsule 21252011000036100 morphine +85046011000036102 Lansoprazole (Apo) 30 mg enteric capsule, 28, strip pack 159348 84910011000036107 Lansoprazole (Apo) 30 mg enteric capsule, 28 84795011000036107 Lansoprazole (Apo) 30 mg enteric capsule 52481000168101 Lansoprazole (Apo) 52481000168101 Lansoprazole (Apo) 84657011000036101 lansoprazole 30 mg enteric capsule, 28 22595011000036106 lansoprazole 30 mg enteric capsule 21491011000036101 lansoprazole +933070011000036101 Lodam SR 200 mg modified release tablet, 20, blister pack 154392 932867011000036103 Lodam SR 200 mg modified release tablet, 20 932728011000036106 Lodam SR 200 mg modified release tablet 16851000168100 Lodam SR 16851000168100 Lodam SR 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +18272011000036109 Proquin 750 mg film-coated tablet, 14, blister pack 119537 11618011000036105 Proquin 750 mg film-coated tablet, 14 5072011000036106 Proquin 750 mg film-coated tablet 3862011000036105 Proquin 3862011000036105 Proquin 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +931734011000036101 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles 39861 930894011000036103 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles 930098011000036106 Omnipaque-240 518 mg (iodine 240 mg)/mL injection solution, 50 mL bottle 33651000168101 Omnipaque-240 33651000168101 Omnipaque-240 932475011000036106 iohexol 518 mg (iodine 240 mg)/mL injection, 10 x 50 mL bottles 931874011000036102 iohexol 518 mg (iodine 240 mg)/mL injection, 50 mL bottle 77459011000036103 iohexol +73721000036107 Zinopril 5 mg uncoated tablet, 30, blister pack 152716 71461000036107 Zinopril 5 mg uncoated tablet, 30 70221000036109 Zinopril 5 mg uncoated tablet 69281000036107 Zinopril 69281000036107 Zinopril 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +914461000168100 Amoxyclav 500/125 (Sandoz) film-coated tablet, 60, blister pack 255079 914451000168102 Amoxyclav 500/125 (Sandoz) film-coated tablet, 60 914401000168101 Amoxyclav 500/125 (Sandoz) film-coated tablet 914391000168103 Amoxyclav 500/125 (Sandoz) 914391000168103 Amoxyclav 500/125 (Sandoz) 51545011000036108 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 60 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +19609011000036107 Novasone 0.1% lotion, 30 mL, bottle 58614 12879011000036103 Novasone 0.1% lotion, 30 mL 6170011000036104 Novasone 0.1% lotion 4448011000036109 Novasone 4448011000036109 Novasone 27414011000036102 mometasone furoate 0.1% lotion, 30 mL 22762011000036102 mometasone furoate 0.1% lotion 21409011000036100 mometasone +841711000168108 Atorvastatin (Amneal) 40 mg film-coated tablet, 30, blister pack 178542 841701000168105 Atorvastatin (Amneal) 40 mg film-coated tablet, 30 841641000168102 Atorvastatin (Amneal) 40 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +77303011000036104 X-Opaque-HD 976.5 mg/g powder for oral liquid, 300 g, jar 29912 76719011000036101 X-Opaque-HD 976.5 mg/g powder for oral liquid, 300 g 76139011000036104 X-Opaque-HD 976.5 mg/g powder for oral liquid 75951011000036104 X-Opaque-HD 75951011000036104 X-Opaque-HD 78233011000036107 barium sulfate 976.5 mg/g powder for oral liquid, 300 g 77561011000036101 barium sulfate 976.5 mg/g powder for oral liquid 77454011000036104 barium +60439011000036106 Cold and Flu Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24, blister pack 147961 56398011000036105 Cold and Flu Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24 53901011000036102 Cold and Flu Day and Night (Night) (Priceline) uncoated tablet 57091000168106 Cold and Flu Day and Night (Priceline) 57321000168107 Cold and Flu Day and Night (Night) (Priceline) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +60439011000036106 Cold and Flu Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24, blister pack 147961 56398011000036105 Cold and Flu Day and Night (Priceline) (16 x Day tablets, 8 x Night tablets), 24 53900011000036109 Cold and Flu Day and Night (Day) (Priceline) uncoated tablet 57091000168106 Cold and Flu Day and Night (Priceline) 57201000168105 Cold and Flu Day and Night (Day) (Priceline) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +657801000168102 Ramipril (AN) 1.25 mg uncoated tablet, 30, blister pack 175228 657701000168109 Ramipril (AN) 1.25 mg uncoated tablet, 30 657691000168109 Ramipril (AN) 1.25 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +996191000168108 Duro-Tuss Dry Cough Lozenge lemon lozenge, 2, blister pack 53808 996181000168105 Duro-Tuss Dry Cough Lozenge lemon lozenge, 2 996161000168101 Duro-Tuss Dry Cough Lozenge lemon lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 11991000168105 Duro-Tuss Dry Cough Lozenge 996171000168107 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 996151000168103 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge 61757011000036101 pholcodine + cetylpyridinium +1038771000168105 Atorvastatin (Actavis) 80 mg film-coated tablet, 100, bottle 217177 1038761000168104 Atorvastatin (Actavis) 80 mg film-coated tablet, 100 1038721000168109 Atorvastatin (Actavis) 80 mg film-coated tablet 1038711000168102 Atorvastatin (Actavis) 1038711000168102 Atorvastatin (Actavis) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +20093011000036101 E-Mycin 400 mg film-coated tablet, 25, bottle 71310 13320011000036104 E-Mycin 400 mg film-coated tablet, 25 6606011000036106 E-Mycin 400 mg film-coated tablet 4167011000036102 E-Mycin 4167011000036102 E-Mycin 27690011000036109 erythromycin (as ethylsuccinate) 400 mg tablet, 25 23027011000036101 erythromycin (as ethylsuccinate) 400 mg tablet 21523011000036104 erythromycin ethylsuccinate +700571000168108 Adempas 1.5 mg film-coated tablet, 84, blister pack 207597 700561000168102 Adempas 1.5 mg film-coated tablet, 84 700511000168100 Adempas 1.5 mg film-coated tablet 700191000168103 Adempas 700191000168103 Adempas 700551000168104 riociguat 1.5 mg tablet, 84 700501000168103 riociguat 1.5 mg tablet 700211000168102 riociguat +20605011000036108 Zydol SR 200 mg modified release tablet, 20, blister pack 80725 13787011000036106 Zydol SR 200 mg modified release tablet, 20 7073011000036103 Zydol SR 200 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +61090011000036105 Regaine 2% gel, 60 mL, bottle 70864 57033011000036105 Regaine 2% gel, 60 mL 54166011000036105 Regaine 2% gel 25841000168103 Regaine 25841000168103 Regaine 63707011000036100 minoxidil 2% gel, 60 mL 62052011000036100 minoxidil 2% gel 21642011000036104 minoxidil +959461000168106 Ciram 10 mg film-coated tablet, 56, bottle 158857 959361000168101 Ciram 10 mg film-coated tablet, 56 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +995871000168108 Difflam Lozenge Orange Sugar Free lozenge, 8, blister pack 72151 995861000168102 Difflam Lozenge Orange Sugar Free lozenge, 8 995791000168104 Difflam Lozenge Orange Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995761000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 8 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +1117961000168100 Quetiapine XR (Amneal) 200 mg modified release tablet, 60, bottle 278866 1117951000168102 Quetiapine XR (Amneal) 200 mg modified release tablet, 60 1117941000168104 Quetiapine XR (Amneal) 200 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +865501000168107 Amitriptyline (GXP) 50 mg tablet, 50, bottle 232133 864761000168102 Amitriptyline (GXP) 50 mg tablet, 50 864731000168105 Amitriptyline (GXP) 50 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +871931000168100 Repalyte powder for oral liquid, 10 x 4.9 g sachets 36014 871921000168103 Repalyte powder for oral liquid, 10 x 4.9 g sachets 871911000168105 Repalyte powder for oral liquid, 4.9 g sachet 3638011000036109 Repalyte 3638011000036109 Repalyte 871801000168102 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +871931000168100 Repalyte powder for oral liquid, 10 x 4.9 g sachets 64833 871921000168103 Repalyte powder for oral liquid, 10 x 4.9 g sachets 871911000168105 Repalyte powder for oral liquid, 4.9 g sachet 3638011000036109 Repalyte 3638011000036109 Repalyte 871801000168102 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +908341000168104 Celecoxib (Bellwether) 100 mg hard capsule, 30, blister pack 196185 908331000168108 Celecoxib (Bellwether) 100 mg hard capsule, 30 908241000168105 Celecoxib (Bellwether) 100 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 907411000168106 celecoxib 100 mg capsule, 30 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +926834011000036102 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 10, blister pack 176511 926230011000036103 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet, 10 925686011000036108 Metformin Hydrochloride 1000 (Terry White Chemists) 1 g film-coated tablet 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 13321000168108 Metformin Hydrochloride 1000 (Terry White Chemists) 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1032281000168102 Aripra 15 mg uncoated tablet, 250, bottle 217189 1032271000168100 Aripra 15 mg uncoated tablet, 250 1031861000168102 Aripra 15 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 1015601000168108 aripiprazole 15 mg tablet, 250 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +50662011000036107 Freestyle Lite diagnostic strip, 100, bottle 148264 49686011000036104 Freestyle Lite diagnostic strip, 100 48821011000036105 Freestyle Lite diagnostic strip 28621000168101 Freestyle Lite 28621000168101 Freestyle Lite 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +50420011000036102 Biatain Adhesive (3420) 12 cm x 12 cm waterproof pad, 10, carton 49292011000036104 Biatain Adhesive (3420) 12 cm x 12 cm waterproof pad, 10 48471011000036101 Biatain Adhesive (3420) 12 cm x 12 cm waterproof pad 50071000168109 Biatain Adhesive (3420) 50071000168109 Biatain Adhesive (3420) 51279011000036100 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 12 cm x 12 cm waterproof pad, 10 50808011000036100 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 12 cm x 12 cm waterproof pad 50713011000036109 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam +68880011000036104 Strepsils strawberry sugar free lozenge, 16, blister pack 101403 66464011000036107 Strepsils strawberry sugar free lozenge, 16 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71520011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 16 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +20847011000036104 Dithiazide 25 mg uncoated tablet, 100, bottle 92060 14010011000036108 Dithiazide 25 mg uncoated tablet, 100 7292011000036108 Dithiazide 25 mg uncoated tablet 3685011000036108 Dithiazide 3685011000036108 Dithiazide 28073011000036108 hydrochlorothiazide 25 mg tablet, 100 23387011000036109 hydrochlorothiazide 25 mg tablet 21814011000036109 hydrochlorothiazide +104271000036104 Abisart 75 mg film-coated tablet, 30, blister pack 170773 101491000036102 Abisart 75 mg film-coated tablet, 30 98741000036103 Abisart 75 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +104271000036104 Abisart 75 mg film-coated tablet, 30, blister pack 214577 101491000036102 Abisart 75 mg film-coated tablet, 30 98741000036103 Abisart 75 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +19851011000036107 Doxy 100 mg film-coated tablet, 7, blister pack 64443 13098011000036106 Doxy 100 mg film-coated tablet, 7 6382011000036104 Doxy 100 mg film-coated tablet 3392011000036105 Doxy 3392011000036105 Doxy 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +1103251000168104 Ativan 1 mg uncoated tablet, 5, bottle 237801 36625011000036105 Ativan 1 mg uncoated tablet, 5 36051011000036103 Ativan 1 mg uncoated tablet 35865011000036105 Ativan 35865011000036105 Ativan 38545011000036105 lorazepam 1 mg tablet, 5 37826011000036106 lorazepam 1 mg tablet 37711011000036105 lorazepam +798851000168103 Rizatriptan (TW) 10 mg orally disintegrating tablet, 6, blister pack 222203 798841000168100 Rizatriptan (TW) 10 mg orally disintegrating tablet, 6 798761000168105 Rizatriptan (TW) 10 mg orally disintegrating tablet 798751000168108 Rizatriptan (TW) 798751000168108 Rizatriptan (TW) 742351000168101 rizatriptan 10 mg orally disintegrating tablet, 6 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +661751000168109 Lisinopril (AN) 10 mg uncoated tablet, 30, blister pack 152713 661741000168107 Lisinopril (AN) 10 mg uncoated tablet, 30 661731000168103 Lisinopril (AN) 10 mg uncoated tablet 661661000168103 Lisinopril (AN) 661661000168103 Lisinopril (AN) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +35648011000036104 Cilicaine V 150 mg/5 mL oral liquid suspension, 100 mL, bottle 151598 35578011000036108 Cilicaine V 150 mg/5 mL oral liquid suspension, 100 mL 35468011000036105 Cilicaine V 150 mg/5 mL oral liquid suspension, 5 mL 17711000168106 Cilicaine V 17711000168106 Cilicaine V 35774011000036102 phenoxymethylpenicillin 150 mg/5 mL oral liquid, 100 mL 35715011000036108 phenoxymethylpenicillin 150 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +983261000168101 Quetiapine (Apo) 150 mg film-coated tablet, 60, blister pack 166061 983251000168103 Quetiapine (Apo) 150 mg film-coated tablet, 60 983241000168100 Quetiapine (Apo) 150 mg film-coated tablet 6221000168109 Quetiapine (Apo) 6221000168109 Quetiapine (Apo) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +69248011000036104 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 18 x 500 mL bags 19467 67048011000036102 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 18 x 500 mL bags 65192011000036104 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 16051000168107 Potassium Chloride 0.15% and Sodium Chloride 0.18% and Glucose 4% (Baxter) 71618011000036101 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, 18 x 500 mL bags 70094011000036106 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +698081000168109 Zilfojim ODT 8 mg orally disintegrating tablet, 20, blister pack 196809 698071000168106 Zilfojim ODT 8 mg orally disintegrating tablet, 20 698011000168103 Zilfojim ODT 8 mg orally disintegrating tablet 697891000168103 Zilfojim ODT 697891000168103 Zilfojim ODT 698061000168100 ondansetron 8 mg orally disintegrating tablet, 20 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +1032601000168108 Anti Diarrhoea (Amcal) 2 mg hard capsule, 6, blister pack 205128 1032591000168101 Anti Diarrhoea (Amcal) 2 mg hard capsule, 6 1032581000168104 Anti Diarrhoea (Amcal) 2 mg hard capsule 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 823651000168102 loperamide hydrochloride 2 mg capsule, 6 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +56661000036104 Lanez ODT 5 mg orally disintegrating tablet, 28, blister pack 163426 53091000036105 Lanez ODT 5 mg orally disintegrating tablet, 28 49491000036102 Lanez ODT 5 mg orally disintegrating tablet 55111000168105 Lanez ODT 55111000168105 Lanez ODT 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +968141000168101 Disodium Pamidronate (Hexal) 30 mg/10 mL concentrated injection, 10 mL vial 101285 968131000168105 Disodium Pamidronate (Hexal) 30 mg/10 mL concentrated injection, 10 mL vial 968121000168107 Disodium Pamidronate (Hexal) 30 mg/10 mL concentrated injection, 10 mL vial 968111000168100 Disodium Pamidronate (Hexal) 968111000168100 Disodium Pamidronate (Hexal) 27766011000036100 pamidronate disodium 30 mg/10 mL injection, 10 mL vial 23097011000036109 pamidronate disodium 30 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +34680011000036104 Subutex FDT 16 mg uncoated tablet, 28, blister pack 134407 34266011000036100 Subutex FDT 16 mg uncoated tablet, 28 33995011000036105 Subutex FDT 16 mg uncoated tablet 26941000168100 Subutex FDT 26941000168100 Subutex FDT 35130011000036101 buprenorphine 16 mg tablet, 28 34860011000036106 buprenorphine 16 mg tablet 21232011000036101 buprenorphine +73345011000036100 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution, 100 mL, bottle 27273 73139011000036107 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution, 100 mL 72943011000036104 Eucalyptus Oil (Gold Cross) 1 mL/mL inhalation solution 72913011000036106 Eucalyptus Oil (Gold Cross) 72913011000036106 Eucalyptus Oil (Gold Cross) 73519011000036109 eucalyptus oil 1 mL/mL inhalation solution, 100 mL 73382011000036103 eucalyptus oil 1 mL/mL inhalation solution 73351011000036104 eucalyptus oil +20024011000036108 Sotacor 80 mg uncoated tablet, 60, blister pack 68964 13259011000036103 Sotacor 80 mg uncoated tablet, 60 6541011000036101 Sotacor 80 mg uncoated tablet 3656011000036106 Sotacor 3656011000036106 Sotacor 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +1000211000168104 Palonosetron (Apo) 250 microgram/5 mL injection solution, 5 mL vial 246564 1000201000168102 Palonosetron (Apo) 250 microgram/5 mL injection solution, 5 mL vial 1000191000168100 Palonosetron (Apo) 250 microgram/5 mL injection solution, 5 mL vial 1000171000168101 Palonosetron (Apo) 1000171000168101 Palonosetron (Apo) 922530011000036107 palonosetron 250 microgram/5 mL injection, 5 mL vial 922072011000036107 palonosetron 250 microgram/5 mL injection, vial 922052011000036105 palonosetron +60238011000036104 Femazole One (Amcal) 150 mg hard capsule, 1, blister pack 134316 56197011000036103 Femazole One (Amcal) 150 mg hard capsule, 1 53836011000036108 Femazole One (Amcal) 150 mg hard capsule 23941000168108 Femazole One (Amcal) 23941000168108 Femazole One (Amcal) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +933216081000036107 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 75 mL vials 68109 933205651000036100 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 75 mL vials 933196701000036102 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 75 mL vial 8561000168103 Iomeron-350 8561000168103 Iomeron-350 933205661000036102 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 10 x 75 mL vials 933196711000036100 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 75 mL vial 931793011000036105 iomeprol +752101000168100 Oxycodone (Actavis) 5 mg hard capsule, 20, bottle 227828 752091000168105 Oxycodone (Actavis) 5 mg hard capsule, 20 752081000168107 Oxycodone (Actavis) 5 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +1039091000168102 Atorvastatin (GA) 20 mg film-coated tablet, 20, blister pack 178538 1039081000168100 Atorvastatin (GA) 20 mg film-coated tablet, 20 1039051000168107 Atorvastatin (GA) 20 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841371000168104 atorvastatin 20 mg tablet, 20 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1115791000168102 Quetiapine (Ascent) 200 mg film-coated tablet, 20, blister pack 202260 1115781000168100 Quetiapine (Ascent) 200 mg film-coated tablet, 20 1115691000168108 Quetiapine (Ascent) 200 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +933981000168109 Chloral Hydrate Mixture (Orion) 500 mg/10 mL oral liquid solution, 500 mL, bottle 42849 933971000168106 Chloral Hydrate Mixture (Orion) 500 mg/10 mL oral liquid solution, 500 mL 933951000168102 Chloral Hydrate Mixture (Orion) 500 mg/10 mL oral liquid solution, 10 mL 27391000168105 Chloral Hydrate Mixture (Orion) 27391000168105 Chloral Hydrate Mixture (Orion) 933961000168100 chloral hydrate 500 mg/10 mL oral liquid, 500 mL 933941000168104 chloral hydrate 500 mg/10 mL oral liquid 44866011000036108 chloral hydrate +756081000168106 Pramipexole ER (Apo) 2.25 mg modified release tablet, 30, blister pack 225586 756071000168108 Pramipexole ER (Apo) 2.25 mg modified release tablet, 30 756031000168105 Pramipexole ER (Apo) 2.25 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 933225441000036108 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet, 30 933220621000036106 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet 37716011000036100 pramipexole +50294011000036104 XPTM Tyrosidon powder for oral liquid, 500 g, can 49480011000036100 XPTM Tyrosidon powder for oral liquid, 500 g 48459011000036100 XPTM Tyrosidon powder for oral liquid 49801000168100 XPTM Tyrosidon 49801000168100 XPTM Tyrosidon 51437011000036105 amino acid formula without phenylalanine, tyrosine and methionine powder for oral liquid, 500 g 50953011000036108 amino acid formula without phenylalanine, tyrosine and methionine powder for oral liquid 50733011000036103 amino acid formula without phenylalanine, tyrosine and methionine +1043061000168106 Pryzex ODT 10 mg orally disintegrating tablet, 30, blister pack 179076 1043051000168109 Pryzex ODT 10 mg orally disintegrating tablet, 30 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043041000168107 olanzapine 10 mg orally disintegrating tablet, 30 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +61499011000036107 Proven 200 mg film-coated tablet, 24, blister pack 92447 57424011000036103 Proven 200 mg film-coated tablet, 24 54299011000036101 Proven 200 mg film-coated tablet 53524011000036103 Proven 53524011000036103 Proven 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +50317011000036101 Risperidone (Apo) 1 mg film-coated tablet, 60, blister pack 127608 49548011000036101 Risperidone (Apo) 1 mg film-coated tablet, 60 48757011000036101 Risperidone (Apo) 1 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +790601000168100 Inpler 50 mg film-coated tablet, 30, blister pack 231453 790591000168107 Inpler 50 mg film-coated tablet, 30 790551000168102 Inpler 50 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 26534011000036102 eplerenone 50 mg tablet, 30 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +69006011000036103 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 11 sachets 138697 66808011000036107 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 11 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71438011000036108 paracetamol 1 g powder for oral liquid, 11 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +19056011000036103 Accupril 20 mg film-coated tablet, 30, blister pack 40930 12364011000036108 Accupril 20 mg film-coated tablet, 30 5627011000036100 Accupril 20 mg film-coated tablet 3052011000036101 Accupril 3052011000036101 Accupril 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +882441000168100 Spedra 100 mg uncoated tablet, 8, blister pack 228475 882431000168109 Spedra 100 mg uncoated tablet, 8 882321000168101 Spedra 100 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882421000168106 avanafil 100 mg tablet, 8 882311000168108 avanafil 100 mg tablet 882091000168102 avanafil +52183011000036109 Dibenzyline 10 mg capsule, 100, bottle 52078011000036104 Dibenzyline 10 mg capsule, 100 51979011000036104 Dibenzyline 10 mg capsule 51936011000036105 Dibenzyline 51936011000036105 Dibenzyline 26799011000036105 phenoxybenzamine hydrochloride 10 mg capsule, 100 22184011000036102 phenoxybenzamine hydrochloride 10 mg capsule 21893011000036108 phenoxybenzamine +1115771000168103 Quetiapine (Unichem) 100 mg film-coated tablet, 90, blister pack 212146 1115761000168109 Quetiapine (Unichem) 100 mg film-coated tablet, 90 1115751000168107 Quetiapine (Unichem) 100 mg film-coated tablet 1114531000168109 Quetiapine (Unichem) 1114531000168109 Quetiapine (Unichem) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +704551000168108 B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials 22408 704541000168106 B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials 704531000168102 B-Dose Forte (Biological Therapies) injection solution, 2.5 mL vial 704521000168100 B-Dose Forte (Biological Therapies) 704521000168100 B-Dose Forte (Biological Therapies) 922616011000036107 thiamine hydrochloride 250 mg/2.5 mL + riboflavin sodium phosphate 5 mg/2.5 mL + nicotinamide 50 mg/2.5 mL + dexpanthenol 50 mg/2.5 mL + pyridoxine hydrochloride 100 mg/2.5 mL + cyanocobalamin 1 mg/2.5 mL injection, 3 x 2.5 mL vials 922109011000036101 thiamine hydrochloride 250 mg/2.5 mL + riboflavin sodium phosphate 5 mg/2.5 mL + nicotinamide 50 mg/2.5 mL + dexpanthenol 50 mg/2.5 mL + pyridoxine hydrochloride 100 mg/2.5 mL + cyanocobalamin 1 mg/2.5 mL injection, vial 922036011000036108 thiamine + riboflavin + nicotinamide + dexpanthenol + pyridoxine + cyanocobalamin +726201000168109 PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets 726191000168106 PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets 726181000168108 PKU Anamix Junior Neutral powder for oral liquid, 36 g sachet 30231000168101 PKU Anamix Junior 30231000168101 PKU Anamix Junior 702781000168101 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 30 x 36 g sachets 702761000168105 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 36 g sachet 702751000168108 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine +920794011000036102 Gabapentin (GA) 400 mg hard capsule, 100, blister pack 81812 920473011000036100 Gabapentin (GA) 400 mg hard capsule, 100 920205011000036106 Gabapentin (GA) 400 mg hard capsule 920074011000036108 Gabapentin (GA) 920074011000036108 Gabapentin (GA) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +43703011000036103 Ceftazidime (DBL) 2 g powder for injection, 1 vial 120544 41232011000036104 Ceftazidime (DBL) 2 g powder for injection, 1 vial 39920011000036109 Ceftazidime (DBL) 2 g powder for injection, 2 g vial 39610011000036101 Ceftazidime (DBL) 39610011000036101 Ceftazidime (DBL) 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +20243011000036104 Ranitidine (GenRx) 300 mg film-coated tablet, 30, blister pack 74419 13454011000036100 Ranitidine (GenRx) 300 mg film-coated tablet, 30 6736011000036108 Ranitidine (GenRx) 300 mg film-coated tablet 3049011000036108 Ranitidine (GenRx) 3049011000036108 Ranitidine (GenRx) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +20243011000036104 Ranitidine (GenRx) 300 mg film-coated tablet, 30, blister pack 121980 13454011000036100 Ranitidine (GenRx) 300 mg film-coated tablet, 30 6736011000036108 Ranitidine (GenRx) 300 mg film-coated tablet 3049011000036108 Ranitidine (GenRx) 3049011000036108 Ranitidine (GenRx) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +782011000168108 Voriconazole (Alphapharm) 50 mg film-coated tablet, 20, blister pack 206984 782001000168105 Voriconazole (Alphapharm) 50 mg film-coated tablet, 20 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46815011000036108 voriconazole 50 mg tablet, 20 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +803211000168106 Abilify ODT 20 mg orally disintegrating tablet, 14, blister pack 128903 803201000168108 Abilify ODT 20 mg orally disintegrating tablet, 14 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803191000168105 aripiprazole 20 mg orally disintegrating tablet, 14 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +19367011000036105 Premarin 300 microgram sugar coated tablet, 28, blister pack 51693 12654011000036108 Premarin 300 microgram sugar coated tablet, 28 5539011000036100 Premarin 300 microgram sugar coated tablet 2940011000036100 Premarin 2940011000036100 Premarin 27262011000036108 conjugated estrogens 300 microgram tablet, 28 22618011000036105 conjugated estrogens 300 microgram tablet 33629011000036100 conjugated estrogens +965971000168100 Arflox 250 mg film-coated tablet, 14, blister pack 92364 963091000168104 Arflox 250 mg film-coated tablet, 14 963041000168107 Arflox 250 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +77211011000036109 Trandolapril (Generic Health) 500 microgram hard capsule, 28, blister pack 135859 76627011000036109 Trandolapril (Generic Health) 500 microgram hard capsule, 28 76072011000036103 Trandolapril (Generic Health) 500 microgram hard capsule 76010011000036105 Trandolapril (Generic Health) 76010011000036105 Trandolapril (Generic Health) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +20703011000036101 Alprax 500 microgram uncoated tablet, 50, bottle 82639 13876011000036103 Alprax 500 microgram uncoated tablet, 50 7163011000036101 Alprax 500 microgram uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +756121000168108 Macrogol plus Electrolytes (Apo) powder for oral liquid, 8 sachets 204650 756111000168101 Macrogol plus Electrolytes (Apo) powder for oral liquid, 8 sachets 674071000168107 Macrogol plus Electrolytes (Apo) powder for oral liquid, sachet 154511000036103 Macrogol plus Electrolytes (Apo) 154511000036103 Macrogol plus Electrolytes (Apo) 669051000168107 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +19949011000036102 Augmentin Duo 400 powder for oral liquid, 60 mL, bottle 67352 13192011000036102 Augmentin Duo 400 powder for oral liquid, 60 mL 6475011000036109 Augmentin Duo 400 powder for oral liquid, 5 mL 56481000168100 Augmentin Duo 400 56481000168100 Augmentin Duo 400 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +19643011000036104 Madopar Rapid 62.5 dispersible tablet, 100, bottle 59577 12912011000036107 Madopar Rapid 62.5 dispersible tablet, 100 6202011000036105 Madopar Rapid 62.5 dispersible tablet 61721000168105 Madopar Rapid 62.5 61721000168105 Madopar Rapid 62.5 27435011000036106 levodopa 50 mg + benserazide 12.5 mg dispersible tablet, 100 22782011000036100 levodopa 50 mg + benserazide 12.5 mg dispersible tablet 21331011000036100 levodopa + benserazide +858911000168101 Amidep 10 mg film-coated tablet, 20, blister pack 215399 858901000168104 Amidep 10 mg film-coated tablet, 20 858891000168103 Amidep 10 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692961000168101 amitriptyline hydrochloride 10 mg tablet, 20 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +916801000168106 Amitriptyline (RS) 10 mg tablet, 50, bottle 232141 866501000168104 Amitriptyline (RS) 10 mg tablet, 50 866491000168106 Amitriptyline (RS) 10 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +923818011000036106 Targin 5/2.5 mg modified release tablet, 20, blister pack 156067 923364011000036102 Targin 5/2.5 mg modified release tablet, 20 923035011000036109 Targin 5/2.5 mg modified release tablet 20411000168109 Targin 5/2.5 mg 20411000168109 Targin 5/2.5 mg 924162011000036103 oxycodone hydrochloride 5 mg + naloxone hydrochloride 2.5 mg modified release tablet, 20 923973011000036102 oxycodone hydrochloride 5 mg + naloxone hydrochloride 2.5 mg modified release tablet 923931011000036100 oxycodone + naloxone +657641000168101 Telmisartan/HCT 80mg/25mg (Sandoz) film-coated tablet, 28, blister pack 201358 657631000168105 Telmisartan/HCT 80mg/25mg (Sandoz) film-coated tablet, 28 657621000168107 Telmisartan/HCT 80mg/25mg (Sandoz) film-coated tablet 657581000168107 Telmisartan/HCT 80mg/25mg (Sandoz) 657581000168107 Telmisartan/HCT 80mg/25mg (Sandoz) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +865401000168106 Amitriptyline (CH) 50 mg tablet, 1000, blister pack 232126 865331000168105 Amitriptyline (CH) 50 mg tablet, 1000 865281000168102 Amitriptyline (CH) 50 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +19545011000036105 Clexane 80 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 56710 12817011000036100 Clexane 80 mg/0.8 mL injection solution, 10 x 0.8 mL syringes 6108011000036106 Clexane 80 mg/0.8 mL injection solution, 0.8 mL syringe 2391000168100 Clexane 2391000168100 Clexane 27374011000036103 enoxaparin sodium 80 mg/0.8 mL injection, 10 x 0.8 mL syringes 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +21084011000036105 Kytril 3 mg/3 mL injection solution, 3 mL ampoule 97550 14227011000036109 Kytril 3 mg/3 mL injection solution, 3 mL ampoule 7513011000036108 Kytril 3 mg/3 mL injection solution, 3 mL ampoule 3372011000036100 Kytril 3372011000036100 Kytril 28229011000036102 granisetron 3 mg/3 mL injection, 3 mL ampoule 23543011000036106 granisetron 3 mg/3 mL injection, ampoule 21431011000036106 granisetron +20922011000036108 Concerta 36 mg modified release tablet, 30, bottle 93863 14076011000036102 Concerta 36 mg modified release tablet, 30 7354011000036103 Concerta 36 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 28129011000036104 methylphenidate hydrochloride 36 mg modified release tablet, 30 23438011000036105 methylphenidate hydrochloride 36 mg modified release tablet 21277011000036101 methylphenidate +82321011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 144632 82147011000036107 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 82018011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 82537011000036104 sodium chloride 0.9% (2.25 g/250 mL) injection, 20 x 250 mL bags 70187011000036109 sodium chloride 0.9% (2.25 g/250 mL) injection, bag 21308011000036103 sodium chloride +978831000168105 Lovenox 40 mg/0.4 mL injection solution, 10 x 0.4 mL syringes 80266 978821000168107 Lovenox 40 mg/0.4 mL injection solution, 10 x 0.4 mL syringes 978791000168104 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 33799011000036103 enoxaparin sodium 40 mg/0.4 mL injection, 10 x 0.4 mL syringes 33671011000036100 enoxaparin sodium 40 mg/0.4 mL injection, syringe 21553011000036103 enoxaparin sodium +1008801000168101 Rivastigmine (Apotex) 3 mg hard capsule, 14, blister pack 160564 1008791000168102 Rivastigmine (Apotex) 3 mg hard capsule, 14 1008781000168100 Rivastigmine (Apotex) 3 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1002841000168102 rivastigmine 3 mg capsule, 14 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +926885011000036108 Optiray-320 Ultraject 678 mg (iodine 320 mg)/mL injection solution, 10 x 75 mL syringes 73580 926281011000036104 Optiray-320 Ultraject 678 mg (iodine 320 mg)/mL injection solution, 10 x 75 mL syringes 925726011000036106 Optiray-320 Ultraject 678 mg (iodine 320 mg)/mL injection solution, 75 mL syringe 19551000168105 Optiray-320 Ultraject 19551000168105 Optiray-320 Ultraject 927383011000036106 ioversol 678 mg (iodine 320 mg)/mL injection, 10 x 75 mL syringes 927026011000036107 ioversol 678 mg (iodine 320 mg)/mL injection, 75 mL syringe 77421011000036103 ioversol +44215011000036107 Ogen 625 microgram uncoated tablet, 28, bottle 56965 41691011000036102 Ogen 625 microgram uncoated tablet, 28 6118011000036109 Ogen 625 microgram uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46508011000036101 oestrone sulfate sodium 625 microgram tablet, 28 22744011000036101 oestrone sulfate sodium 625 microgram tablet 21299011000036103 oestrone sulfate sodium +19401011000036106 Kripton 2.5 mg uncoated tablet, 60, bottle 53168 12685011000036103 Kripton 2.5 mg uncoated tablet, 60 5427011000036102 Kripton 2.5 mg uncoated tablet 3715011000036104 Kripton 3715011000036104 Kripton 27286011000036109 bromocriptine 2.5 mg tablet, 60 22641011000036106 bromocriptine 2.5 mg tablet 21300011000036100 bromocriptine +20433011000036101 Cardinorm 200 mg uncoated tablet, 30, blister pack 77739 13636011000036109 Cardinorm 200 mg uncoated tablet, 30 6919011000036104 Cardinorm 200 mg uncoated tablet 3670011000036105 Cardinorm 3670011000036105 Cardinorm 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +970311000168109 Pregabalin (Apo) 150 mg hard capsule, 20, blister pack 193276 970301000168106 Pregabalin (Apo) 150 mg hard capsule, 20 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +77245011000036102 Ozidal 4 mg film-coated tablet, 60, blister pack 148970 76661011000036107 Ozidal 4 mg film-coated tablet, 60 76097011000036105 Ozidal 4 mg film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +848241000168105 Alinivir 400 mg uncoated tablet, 56, blister pack 202876 848231000168101 Alinivir 400 mg uncoated tablet, 56 848221000168104 Alinivir 400 mg uncoated tablet 848211000168106 Alinivir 848211000168106 Alinivir 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +910351000168103 Revolade 12.5 mg film-coated tablet, 14, blister pack 236115 910341000168100 Revolade 12.5 mg film-coated tablet, 14 910321000168106 Revolade 12.5 mg film-coated tablet 933219071000036102 Revolade 933219071000036102 Revolade 910331000168109 eltrombopag 12.5 mg tablet, 14 910311000168104 eltrombopag 12.5 mg tablet 933232121000036100 eltrombopag +43755011000036107 Stilnox CR 6.25 mg modified release tablet, 10, blister pack 120707 41233011000036106 Stilnox CR 6.25 mg modified release tablet, 10 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46175011000036109 zolpidem tartrate 6.25 mg modified release tablet, 10 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +1034571000168107 Atomoxetine (Actavis) 18 mg hard capsule, 28, blister pack 237252 1034561000168101 Atomoxetine (Actavis) 18 mg hard capsule, 28 1034531000168109 Atomoxetine (Actavis) 18 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +91221000036109 Nilstat 20 000 units/g vaginal cream, 75 g, tube 15103 89521000036106 Nilstat 20 000 units/g vaginal cream, 75 g 88381000036107 Nilstat 20 000 units/g vaginal cream 32391000168106 Nilstat 32391000168106 Nilstat 89531000036108 nystatin 20 000 units/g vaginal cream, 75 g 88391000036109 nystatin 20 000 units/g vaginal cream 21669011000036102 nystatin +970291000168105 Pregabalin (Apo) 150 mg hard capsule, 14, blister pack 193276 970281000168107 Pregabalin (Apo) 150 mg hard capsule, 14 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1021731000168100 Atelvia 5 mg film-coated tablet, 14, blister pack 163751 1021721000168103 Atelvia 5 mg film-coated tablet, 14 1021691000168107 Atelvia 5 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 800791000168100 risedronate sodium 5 mg tablet, 14 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +1025981000168100 Pregabalin (Amneal) 25 mg hard capsule, 56, bottle 235853 1025851000168104 Pregabalin (Amneal) 25 mg hard capsule, 56 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1026021000168105 Neuroccord 300 mg hard capsule, 56, blister pack 235864 1025771000168100 Neuroccord 300 mg hard capsule, 56 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +901811000168100 Belsomra 20 mg film-coated tablet, 30, blister pack 207712 901801000168103 Belsomra 20 mg film-coated tablet, 30 901721000168101 Belsomra 20 mg film-coated tablet 901051000168106 Belsomra 901051000168106 Belsomra 901791000168104 suvorexant 20 mg tablet, 30 901711000168108 suvorexant 20 mg tablet 901171000168101 suvorexant +998121000168105 Desloratadine (Apo) 5 mg film-coated tablet, 5, blister pack 202823 998111000168103 Desloratadine (Apo) 5 mg film-coated tablet, 5 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72027011000036103 desloratadine 5 mg tablet, 5 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +974561000168109 Bosentan (GH) 125 mg film-coated tablet, 60, bottle 235883 974551000168107 Bosentan (GH) 125 mg film-coated tablet, 60 974261000168107 Bosentan (GH) 125 mg film-coated tablet 974251000168105 Bosentan (GH) 974251000168105 Bosentan (GH) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +18122011000036105 Colestid 5 g granules, 120 sachets 12283 11716011000036104 Colestid 5 g granules, 120 sachets 5076011000036105 Colestid 5 g granules, 5 g sachet 3840011000036101 Colestid 3840011000036101 Colestid 26745011000036103 colestipol hydrochloride 5 g granules, 120 sachets 22138011000036102 colestipol hydrochloride 5 g granules, sachet 21775011000036100 colestipol hydrochloride +44290011000036104 Primacin 7.5 mg uncoated tablet, 1000, can 63856 41761011000036105 Primacin 7.5 mg uncoated tablet, 1000 40185011000036109 Primacin 7.5 mg uncoated tablet 39775011000036108 Primacin 39775011000036108 Primacin 46568011000036102 primaquine 7.5 mg tablet, 1000 45221011000036107 primaquine 7.5 mg tablet 44963011000036109 primaquine +37400011000036108 Marcain 0.25% with Adrenaline 1 in 400 000 injection solution, 5 x 10 mL vials 11935 36670011000036100 Marcain 0.25% with Adrenaline 1 in 400 000 injection solution, 5 x 10 mL vials 36042011000036107 Marcain 0.25% with Adrenaline 1 in 400 000 injection solution, 10 mL vial 38801000168109 Marcain 0.25% with Adrenaline 1 in 400 000 38801000168109 Marcain 0.25% with Adrenaline 1 in 400 000 38583011000036100 bupivacaine hydrochloride monohydrate 0.25% (25 mg/10 mL) + adrenaline (epinephrine) 1 in 400 000 (25 microgram/10 mL) injection, 5 x 10 mL vials 37856011000036105 bupivacaine hydrochloride monohydrate 0.25% (25 mg/10 mL) + adrenaline (epinephrine) 1 in 400 000 (25 microgram/10 mL) injection, vial 37718011000036101 bupivacaine + adrenaline (epinephrine) +865261000168106 Amitriptyline (CH) 25 mg tablet, 250, bottle 232125 865251000168109 Amitriptyline (CH) 25 mg tablet, 250 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 863131000168107 amitriptyline hydrochloride 25 mg tablet, 250 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +925292011000036108 Drixine Decongestant 0.05% nasal spray, 30 mL, bottle 161596 924829011000036106 Drixine Decongestant 0.05% nasal spray, 30 mL 924520011000036104 Drixine Decongestant 0.05% nasal spray 45181000168102 Drixine Decongestant 45181000168102 Drixine Decongestant 925429011000036108 oxymetazoline hydrochloride 0.05% nasal spray, 30 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +721951000168107 Strepsils Cool lozenge, 10, tube 165330 721941000168105 Strepsils Cool lozenge, 10 720291000168100 Strepsils Cool lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 85186011000036103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 10 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +837531000168103 Adacel injection suspension, 5 x 0.5 mL vials 106554 837521000168101 Adacel injection suspension, 5 x 0.5 mL vials 837471000168104 Adacel injection suspension, 0.5 mL vial 73714011000036109 Adacel 73714011000036109 Adacel 837511000168108 diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 5 x 0.5 mL vials 837461000168105 diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial 837451000168108 diphtheria + tetanus + pertussis 5 component vaccine +824601000168104 Twinrix injection suspension, 10 x 1 mL syringes 140575 824591000168106 Twinrix injection suspension, 10 x 1 mL syringes 824571000168105 Twinrix injection suspension, 1 mL syringe 73697011000036105 Twinrix 73697011000036105 Twinrix 824581000168108 hepatitis A + hepatitis B adult vaccine injection, 10 x 1 mL syringes 824561000168104 hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe 824501000168100 hepatitis A + hepatitis B vaccine +1066761000168109 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 30, blister pack 197884 1066751000168107 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 30 1066591000168109 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +55151000036104 Acid and Heartburn Relief (Pharmacy Choice) 150 mg film-coated tablet, 28, strip pack 133072 50951000036106 Acid and Heartburn Relief (Pharmacy Choice) 150 mg film-coated tablet, 28 49441000036108 Acid and Heartburn Relief (Pharmacy Choice) 150 mg film-coated tablet 48501000036104 Acid and Heartburn Relief (Pharmacy Choice) 48501000036104 Acid and Heartburn Relief (Pharmacy Choice) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +43973011000036104 Stelazine Spansule 15 mg modified release capsule, 50, jar 42301 41465011000036104 Stelazine Spansule 15 mg modified release capsule, 50 39992011000036104 Stelazine Spansule 15 mg modified release capsule 31001000168109 Stelazine Spansule 31001000168109 Stelazine Spansule 46313011000036105 trifluoperazine 15 mg modified release capsule, 50 45070011000036108 trifluoperazine 15 mg modified release capsule 21507011000036102 trifluoperazine +61298011000036103 Hair A-Gain 5% application, 2 x 60 mL, bottles 79607 57234011000036100 Hair A-Gain 5% application, 2 x 60 mL 54249011000036105 Hair A-Gain 5% application 53423011000036106 Hair A-Gain 53423011000036106 Hair A-Gain 63773011000036103 minoxidil 5% application, 2 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +73881000036103 Paroxetine (PS) 20 mg film-coated tablet, 30, blister pack 189852 71971000036105 Paroxetine (PS) 20 mg film-coated tablet, 30 70361000036105 Paroxetine (PS) 20 mg film-coated tablet 69441000036104 Paroxetine (PS) 69441000036104 Paroxetine (PS) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +82338011000036101 Epiramax 100 mg film-coated tablet, 60, bottle 135595 82133011000036104 Epiramax 100 mg film-coated tablet, 60 82003011000036101 Epiramax 100 mg film-coated tablet 81973011000036100 Epiramax 81973011000036100 Epiramax 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +34796011000036105 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 75 mL, bottle 76048 34371011000036106 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 75 mL 34063011000036104 Cefaclor (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 33949011000036103 Cefaclor (Sandoz) 33949011000036103 Cefaclor (Sandoz) 35218011000036105 cefaclor 125 mg/5 mL powder for oral liquid, 75 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +77331011000036107 Water for Injections (AstraZeneca) injection solution, 50 x 10 mL ampoules 48351 76747011000036102 Water for Injections (AstraZeneca) injection solution, 50 x 10 mL ampoules 76158011000036108 Water for Injections (AstraZeneca) injection solution, 10 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78264011000036100 water for injections injection, 50 x 10 mL ampoules 77584011000036100 water for injections injection, 10 mL ampoule 77431011000036101 water for injections +935991000168108 Zantac 150 mg dispersible tablet, 10, strip pack 12535 935981000168105 Zantac 150 mg dispersible tablet, 10 935961000168101 Zantac 150 mg dispersible tablet 3563011000036102 Zantac 3563011000036102 Zantac 935971000168107 ranitidine 150 mg dispersible tablet, 10 935951000168103 ranitidine 150 mg dispersible tablet 21682011000036109 ranitidine +37642011000036101 Leunase 10 000 Kyowa units powder for injection, 1 vial 27513 36908011000036106 Leunase 10 000 Kyowa units powder for injection, 1 vial 36240011000036102 Leunase 10 000 Kyowa units powder for injection, 10000 Kyowa units vial 35910011000036109 Leunase 35910011000036109 Leunase 38793011000036100 asparaginase (colaspase) 10 000 Kyowa units injection, 1 vial 38005011000036100 asparaginase (colaspase) 10 000 Kyowa units injection, vial 37712011000036104 asparaginase (colaspase) +44693011000036105 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack, composite pack 93044 42142011000036104 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46903011000036100 follitropin alfa 150 units (10.92 microgram) injection [5 x 150 units vials] (&) inert substance diluent [5 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44693011000036105 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack, composite pack 93044 42142011000036104 Gonal-F (5 x 150 units (10.92 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack 40362011000036109 Gonal-F (follitropin alfa 150 units (10.92 microgram)) powder for injection, 150 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46903011000036100 follitropin alfa 150 units (10.92 microgram) injection [5 x 150 units vials] (&) inert substance diluent [5 x 1 mL syringes], 1 pack 45340011000036108 follitropin alfa 150 units (10.92 microgram) injection, 150 units vial 21352011000036107 follitropin alfa +17829011000036104 Transiderm-Nitro-25 5 mg/24 hours patch, 30, sachet 17107 12117011000036106 Transiderm-Nitro-25 5 mg/24 hours patch, 30 5201011000036101 Transiderm-Nitro-25 5 mg/24 hours patch 20301000168103 Transiderm-Nitro-25 20301000168103 Transiderm-Nitro-25 27276011000036102 glyceryl trinitrate 5 mg/24 hours patch, 30 22631011000036105 glyceryl trinitrate 5 mg/24 hours patch 21388011000036102 glyceryl trinitrate +790511000168103 Inpler 25 mg film-coated tablet, 90, blister pack 231447 790501000168101 Inpler 25 mg film-coated tablet, 90 790411000168104 Inpler 25 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 790491000168108 eplerenone 25 mg tablet, 90 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +927311000168109 Risperisan 3 mg film-coated tablet, 60, bottle 126180 927261000168103 Risperisan 3 mg film-coated tablet, 60 927251000168100 Risperisan 3 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +858831000168102 Amidep 25 mg film-coated tablet, 100, blister pack 215378 858821000168100 Amidep 25 mg film-coated tablet, 100 858761000168101 Amidep 25 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1002861000168103 Rivastigmine (Apo) 3 mg hard capsule, 14, blister pack 160578 1002851000168100 Rivastigmine (Apo) 3 mg hard capsule, 14 1002721000168102 Rivastigmine (Apo) 3 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002841000168102 rivastigmine 3 mg capsule, 14 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +910761000168100 Cavstat 20 mg film-coated tablet, 500, bottle 234476 910751000168102 Cavstat 20 mg film-coated tablet, 500 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910741000168104 rosuvastatin 20 mg tablet, 500 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +982781000168106 Ibrance 100 mg hard capsule, 21, blister pack 274623 982771000168108 Ibrance 100 mg hard capsule, 21 982751000168104 Ibrance 100 mg hard capsule 982621000168100 Ibrance 982621000168100 Ibrance 982761000168102 palbociclib 100 mg capsule, 21 982741000168101 palbociclib 100 mg capsule 982631000168102 palbociclib +17904011000036102 Naprosyn SR 1000 1 g modified release tablet, 28, blister pack 10173 11237011000036100 Naprosyn SR 1000 1 g modified release tablet, 28 5132011000036100 Naprosyn SR 1000 1 g modified release tablet 41011000168106 Naprosyn SR 1000 41011000168106 Naprosyn SR 1000 27176011000036100 naproxen 1 g modified release tablet, 28 22538011000036108 naproxen 1 g modified release tablet 21304011000036105 naproxen +18767011000036108 Atenolol (Chemmart) 50 mg film-coated tablet, 30, blister pack 129865 11431011000036107 Atenolol (Chemmart) 50 mg film-coated tablet, 30 5204011000036103 Atenolol (Chemmart) 50 mg film-coated tablet 3264011000036108 Atenolol (Chemmart) 3264011000036108 Atenolol (Chemmart) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +18767011000036108 Atenolol (Chemmart) 50 mg film-coated tablet, 30, blister pack 111609 11431011000036107 Atenolol (Chemmart) 50 mg film-coated tablet, 30 5204011000036103 Atenolol (Chemmart) 50 mg film-coated tablet 3264011000036108 Atenolol (Chemmart) 3264011000036108 Atenolol (Chemmart) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +18767011000036108 Atenolol (Chemmart) 50 mg film-coated tablet, 30, blister pack 214942 11431011000036107 Atenolol (Chemmart) 50 mg film-coated tablet, 30 5204011000036103 Atenolol (Chemmart) 50 mg film-coated tablet 3264011000036108 Atenolol (Chemmart) 3264011000036108 Atenolol (Chemmart) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1008721000168104 Risedronate (Apotex) 35 mg film-coated tablet, 8, blister pack 160636 1008711000168106 Risedronate (Apotex) 35 mg film-coated tablet, 8 1008481000168107 Risedronate (Apotex) 35 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 929235011000036101 risedronate sodium 35 mg tablet, 8 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +825081000168100 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 147336 825071000168103 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 824811000168100 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 52621000168102 Havrix Junior 52621000168102 Havrix Junior 825061000168109 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL vial 824801000168103 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, vial 824641000168102 hepatitis A vaccine +929044011000036108 Galvumet 50/500 film-coated tablet, 120, blister pack 161216 928405011000036105 Galvumet 50/500 film-coated tablet, 120 927968011000036108 Galvumet 50/500 film-coated tablet 32001000168102 Galvumet 50/500 32001000168102 Galvumet 50/500 929242011000036108 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet, 120 929154011000036103 vildagliptin 50 mg + metformin hydrochloride 500 mg tablet 929132011000036106 vildagliptin + metformin +970471000168108 Lypralin 25 mg hard capsule, 500, bottle 235870 970461000168102 Lypralin 25 mg hard capsule, 500 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 970451000168104 pregabalin 25 mg capsule, 500 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +666571000168101 Ventolin Rotacap 200 microgram powder for inhalation, 128 capsules, strip pack 12530 666561000168107 Ventolin Rotacap 200 microgram powder for inhalation, 128 capsules 4648011000036106 Ventolin Rotacap 200 microgram powder for inhalation, 1 capsule 32041000168100 Ventolin Rotacap 32041000168100 Ventolin Rotacap 666551000168105 salbutamol 200 microgram powder for inhalation, 128 capsules 22161011000036103 salbutamol 200 microgram powder for inhalation, 1 capsule 21493011000036100 salbutamol +18341011000036108 Mylanta P Antacid oral liquid suspension, 500 mL, bottle 121994 11709011000036106 Mylanta P Antacid oral liquid suspension, 500 mL 5733011000036104 Mylanta P Antacid oral liquid suspension, 5 mL 6421000168108 Mylanta P Antacid 6421000168108 Mylanta P Antacid 26743011000036104 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid, 500 mL 22136011000036101 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +717701000168109 Pemzo 20 mg enteric capsule, 98, blister pack 149517 717691000168109 Pemzo 20 mg enteric capsule, 98 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 717011000168109 omeprazole 20 mg enteric capsule, 98 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +760921000168103 Olmesartan/Amlodipine 40/10 (Chemmart) film-coated tablet, 30, blister pack 218251 760911000168105 Olmesartan/Amlodipine 40/10 (Chemmart) film-coated tablet, 30 760901000168107 Olmesartan/Amlodipine 40/10 (Chemmart) film-coated tablet 760891000168108 Olmesartan/Amlodipine 40/10 (Chemmart) 760891000168108 Olmesartan/Amlodipine 40/10 (Chemmart) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +985601000168103 Afstyla (1 x 1500 units vial, 1 x inert diluent vial), 1 pack, composite pack 271635 985591000168105 Afstyla (1 x 1500 units vial, 1 x inert diluent vial), 1 pack 984581000168106 Afstyla (inert substance) diluent, vial 984051000168109 Afstyla 984051000168109 Afstyla 985581000168107 lonoctocog alfa 1500 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +985601000168103 Afstyla (1 x 1500 units vial, 1 x inert diluent vial), 1 pack, composite pack 271635 985591000168105 Afstyla (1 x 1500 units vial, 1 x inert diluent vial), 1 pack 985571000168109 Afstyla (lonoctocog alfa 1500 units) powder for injection, 1500 units vial 984051000168109 Afstyla 984051000168109 Afstyla 985581000168107 lonoctocog alfa 1500 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 985561000168103 lonoctocog alfa 1500 units injection, vial 984551000168104 lonoctocog alfa +1064111000168103 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 12, blister pack 196532 1064101000168101 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 12 1064071000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +33620011000036106 Lyrica 300 mg hard capsule, 56, bottle 99538 33355011000036107 Lyrica 300 mg hard capsule, 56 33113011000036106 Lyrica 300 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +739311000168106 CoQ10 (Blackmores) 150 mg soft capsule, 30, bottle 168201 739301000168108 CoQ10 (Blackmores) 150 mg soft capsule, 30 739281000168109 CoQ10 (Blackmores) 150 mg soft capsule 920941011000036100 CoQ10 (Blackmores) 920941011000036100 CoQ10 (Blackmores) 739291000168107 ubidecarenone 150 mg capsule, 30 739271000168106 ubidecarenone 150 mg capsule 77424011000036100 ubidecarenone +739311000168106 CoQ10 (Blackmores) 150 mg soft capsule, 30, bottle 211661 739301000168108 CoQ10 (Blackmores) 150 mg soft capsule, 30 739281000168109 CoQ10 (Blackmores) 150 mg soft capsule 920941011000036100 CoQ10 (Blackmores) 920941011000036100 CoQ10 (Blackmores) 739291000168107 ubidecarenone 150 mg capsule, 30 739271000168106 ubidecarenone 150 mg capsule 77424011000036100 ubidecarenone +790441000168100 Inpler 25 mg film-coated tablet, 20, blister pack 231447 790431000168109 Inpler 25 mg film-coated tablet, 20 790411000168104 Inpler 25 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 790421000168106 eplerenone 25 mg tablet, 20 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +901351000168108 Amoxil 250 mg hard capsule, 3, blister pack 56550 901341000168106 Amoxil 250 mg hard capsule, 3 6100011000036109 Amoxil 250 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 901331000168102 amoxicillin 250 mg capsule, 3 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +901351000168108 Amoxil 250 mg hard capsule, 3, blister pack 273935 901341000168106 Amoxil 250 mg hard capsule, 3 6100011000036109 Amoxil 250 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 901331000168102 amoxicillin 250 mg capsule, 3 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +20035011000036109 Topamax Sprinkle 50 mg hard capsule, 60, bottle 167731 13267011000036101 Topamax Sprinkle 50 mg hard capsule, 60 6549011000036102 Topamax Sprinkle 50 mg hard capsule 20891000168103 Topamax Sprinkle 20891000168103 Topamax Sprinkle 27655011000036108 topiramate 50 mg capsule, 60 22992011000036105 topiramate 50 mg capsule 21458011000036101 topiramate +20035011000036109 Topamax Sprinkle 50 mg hard capsule, 60, bottle 69146 13267011000036101 Topamax Sprinkle 50 mg hard capsule, 60 6549011000036102 Topamax Sprinkle 50 mg hard capsule 20891000168103 Topamax Sprinkle 20891000168103 Topamax Sprinkle 27655011000036108 topiramate 50 mg capsule, 60 22992011000036105 topiramate 50 mg capsule 21458011000036101 topiramate +33528011000036102 Sertraline (Generic Health) 50 mg film-coated tablet, 30, blister pack 124855 33269011000036106 Sertraline (Generic Health) 50 mg film-coated tablet, 30 33034011000036108 Sertraline (Generic Health) 50 mg film-coated tablet 32979011000036109 Sertraline (Generic Health) 32979011000036109 Sertraline (Generic Health) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1120291000168108 Xque XR 400 mg modified release tablet, 10, blister pack 226806 1120281000168105 Xque XR 400 mg modified release tablet, 10 1120271000168107 Xque XR 400 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51538011000036101 quetiapine 400 mg modified release tablet, 10 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +86791000036109 Aci-Jel Balance vaginal gel, 100 g, tube 13282 86391000036108 Aci-Jel Balance vaginal gel, 100 g 86091000036106 Aci-Jel Balance vaginal gel 85951000036106 Aci-Jel Balance 85951000036106 Aci-Jel Balance 86401000036106 acetic acid 0.94% + oxyquinoline sulfate 0.025% + ricinoleic acid 0.75% vaginal gel, 100 g 86101000036102 acetic acid 0.94% + oxyquinoline sulfate 0.025% + ricinoleic acid 0.75% vaginal gel 21876011000036105 acetic acid + hydroxyquinoline + ricinoleic acid +176761000036100 Cadivast 10/40 film-coated tablet, 30, blister pack 199219 174961000036108 Cadivast 10/40 film-coated tablet, 30 172921000036106 Cadivast 10/40 film-coated tablet 18331000168104 Cadivast 10/40 18331000168104 Cadivast 10/40 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +764531000168103 Ursodox (LAPL) 250 mg hard capsule, 100, blister pack 232481 764521000168101 Ursodox (LAPL) 250 mg hard capsule, 100 764491000168103 Ursodox (LAPL) 250 mg hard capsule 764481000168101 Ursodox (LAPL) 764481000168101 Ursodox (LAPL) 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +18872011000036101 Kenacort-A10 10 mg/mL injection suspension, 5 x 1 mL ampoules 19204 12183011000036100 Kenacort-A10 10 mg/mL injection suspension, 5 x 1 mL ampoules 5907011000036105 Kenacort-A10 10 mg/mL injection suspension, ampoule 21381000168100 Kenacort-A10 21381000168100 Kenacort-A10 26969011000036103 triamcinolone acetonide 10 mg/mL injection, 5 x 1 mL ampoules 22342011000036106 triamcinolone acetonide 10 mg/mL injection, ampoule 21377011000036106 triamcinolone +61379011000036105 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 100 mL, bottle 81817 57304011000036100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 100 mL 54267011000036105 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 63882011000036104 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 100 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +983491000168107 Diazepam (Terry White Chemists) 5 mg uncoated tablet, 50, blister pack 93673 983481000168109 Diazepam (Terry White Chemists) 5 mg uncoated tablet, 50 983471000168106 Diazepam (Terry White Chemists) 5 mg uncoated tablet 982531000168101 Diazepam (Terry White Chemists) 982531000168101 Diazepam (Terry White Chemists) 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +691821000168105 Alendronate Plus D3 70 mg/140 microgram (Apo) tablet, 4, blister pack 220376 691811000168103 Alendronate Plus D3 70 mg/140 microgram (Apo) tablet, 4 691801000168101 Alendronate Plus D3 70 mg/140 microgram (Apo) tablet 691791000168102 Alendronate Plus D3 70 mg/140 microgram (Apo) 691791000168102 Alendronate Plus D3 70 mg/140 microgram (Apo) 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +20519011000036102 Metoprolol Tartrate (Terry White Chemists) 50 mg uncoated tablet, 100, blister pack 78859 13719011000036101 Metoprolol Tartrate (Terry White Chemists) 50 mg uncoated tablet, 100 7001011000036108 Metoprolol Tartrate (Terry White Chemists) 50 mg uncoated tablet 4429011000036104 Metoprolol Tartrate (Terry White Chemists) 4429011000036104 Metoprolol Tartrate (Terry White Chemists) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +933216331000036105 Lopedium 2 mg hard capsule, 8, blister pack 98878 933206151000036102 Lopedium 2 mg hard capsule, 8 933196951000036104 Lopedium 2 mg hard capsule 933193841000036103 Lopedium 933193841000036103 Lopedium 933206161000036104 loperamide hydrochloride 2 mg capsule, 8 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +61591011000036101 Iprofen 100 mg/5 mL oral liquid suspension, 20 mL, bottle 95345 57513011000036102 Iprofen 100 mg/5 mL oral liquid suspension, 20 mL 54332011000036109 Iprofen 100 mg/5 mL oral liquid suspension, 5 mL 53363011000036105 Iprofen 53363011000036105 Iprofen 63900011000036105 ibuprofen 100 mg/5 mL oral liquid, 20 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +824991000168102 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 147335 824981000168100 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 824961000168109 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 52621000168102 Havrix Junior 52621000168102 Havrix Junior 824971000168103 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL syringe 824951000168107 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, syringe 824641000168102 hepatitis A vaccine +931580011000036102 Redichol 20 mg film-coated tablet, 100, bottle 163553 930741011000036105 Redichol 20 mg film-coated tablet, 100 930033011000036108 Redichol 20 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +61621011000036102 Nurofen Migraine Pain 200 mg film-coated tablet, 12, blister pack 96215 57543011000036109 Nurofen Migraine Pain 200 mg film-coated tablet, 12 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +871851000168103 Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets 61531 871841000168100 Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets 871791000168103 Gastrolyte Fruit powder for oral liquid, 4.9 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871831000168109 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets 871781000168101 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +82355011000036106 Pholtrate Linctus 1 mg/mL oral liquid solution, 100 mL, bottle 11521 82122011000036108 Pholtrate Linctus 1 mg/mL oral liquid solution, 100 mL 81995011000036105 Pholtrate Linctus 1 mg/mL oral liquid solution 81976011000036106 Pholtrate Linctus 81976011000036106 Pholtrate Linctus 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +865321000168107 Amitriptyline (CH) 50 mg tablet, 250, bottle 232127 865311000168100 Amitriptyline (CH) 50 mg tablet, 250 865281000168102 Amitriptyline (CH) 50 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 862961000168107 amitriptyline hydrochloride 50 mg tablet, 250 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +910031000168106 Caspofungin (Amneal) 50 mg powder for injection, 1 vial 276641 910021000168108 Caspofungin (Amneal) 50 mg powder for injection, 1 vial 910011000168101 Caspofungin (Amneal) 50 mg powder for injection, 50 mg vial 910001000168104 Caspofungin (Amneal) 910001000168104 Caspofungin (Amneal) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +18630011000036105 Amprace 10 mg uncoated tablet, 30, blister pack 11612 11503011000036107 Amprace 10 mg uncoated tablet, 30 5291011000036103 Amprace 10 mg uncoated tablet 4416011000036100 Amprace 4416011000036100 Amprace 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +59927011000036102 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet, 24, blister pack 119159 55889011000036102 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet, 24 53603011000036102 Ibuprofen (Terry White Chemists) 200 mg film-coated tablet 53568011000036103 Ibuprofen (Terry White Chemists) 53568011000036103 Ibuprofen (Terry White Chemists) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +968461000168109 Pemetrexed (Apo) 500 mg powder for injection, 1 vial 210438 968451000168107 Pemetrexed (Apo) 500 mg powder for injection, 1 vial 968441000168105 Pemetrexed (Apo) 500 mg powder for injection, 500 mg vial 968401000168108 Pemetrexed (Apo) 968401000168108 Pemetrexed (Apo) 28198011000036102 pemetrexed 500 mg injection, 1 vial 23510011000036107 pemetrexed 500 mg injection, vial 21321011000036102 pemetrexed +891301000168103 Capecitabine (Sandoz) 150 mg film-coated tablet, 60, bottle 201799 650891000168109 Capecitabine (Sandoz) 150 mg film-coated tablet, 60 650881000168106 Capecitabine (Sandoz) 150 mg film-coated tablet 650871000168108 Capecitabine (Sandoz) 650871000168108 Capecitabine (Sandoz) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1081451000168105 Astrix 100 mg enteric capsule, 7, blister pack 29551 1081441000168108 Astrix 100 mg enteric capsule, 7 54009011000036105 Astrix 100 mg enteric capsule 3721011000036108 Astrix 3721011000036108 Astrix 1081431000168104 aspirin 100 mg enteric capsule, 7 61985011000036109 aspirin 100 mg enteric capsule 21719011000036107 aspirin +764391000168107 Ursodeoxycholic Acid (LAPL) 250 mg hard capsule, 60, blister pack 232483 764381000168109 Ursodeoxycholic Acid (LAPL) 250 mg hard capsule, 60 764371000168106 Ursodeoxycholic Acid (LAPL) 250 mg hard capsule 764361000168100 Ursodeoxycholic Acid (LAPL) 764361000168100 Ursodeoxycholic Acid (LAPL) 757471000168102 ursodeoxycholic acid 250 mg capsule, 60 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +839381000168103 Bactroban 2% ointment, 30 g, tube 11145 839371000168101 Bactroban 2% ointment, 30 g 4814011000036103 Bactroban 2% ointment 3296011000036102 Bactroban 3296011000036102 Bactroban 839361000168107 mupirocin 2% ointment, 30 g 22049011000036102 mupirocin 2% ointment 21590011000036101 mupirocin +931477011000036100 Paroxetine (Synthon) 20 mg film-coated tablet, 30, blister pack 152491 930656011000036105 Paroxetine (Synthon) 20 mg film-coated tablet, 30 929991011000036107 Paroxetine (Synthon) 20 mg film-coated tablet 929845011000036106 Paroxetine (Synthon) 929845011000036106 Paroxetine (Synthon) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1073431000168105 Melipramine 25 mg film-coated tablet, 1000, bottle 10037 1073421000168107 Melipramine 25 mg film-coated tablet, 1000 1073381000168103 Melipramine 25 mg film-coated tablet 1073371000168101 Melipramine 1073371000168101 Melipramine 1073411000168100 imipramine hydrochloride 25 mg tablet, 1000 22814011000036105 imipramine hydrochloride 25 mg tablet 21613011000036104 imipramine +931717011000036100 Strong Pain (Pharmacist Formula) uncoated tablet, 40, blister pack 176303 930877011000036100 Strong Pain (Pharmacist Formula) uncoated tablet, 40 930085011000036104 Strong Pain (Pharmacist Formula) uncoated tablet 929902011000036103 Strong Pain (Pharmacist Formula) 929902011000036103 Strong Pain (Pharmacist Formula) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +910671000168102 Dexamfetamine (Kinedexe) 5 mg uncoated tablet, 100, bottle 270973 910441000168107 Dexamfetamine (Kinedexe) 5 mg uncoated tablet, 100 910431000168103 Dexamfetamine (Kinedexe) 5 mg uncoated tablet 910421000168101 Dexamfetamine (Kinedexe) 910421000168101 Dexamfetamine (Kinedexe) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +1056251000168109 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20, carton 1056241000168107 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20 1056221000168101 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon 39541000168101 Sorbact Gauze (S98118) 39541000168101 Sorbact Gauze (S98118) 1056231000168103 dressing hydrophobic 1 cm x 50 cm ribbon, 20 1056211000168108 dressing hydrophobic 1 cm x 50 cm ribbon 1055281000168109 dressing hydrophobic +60122011000036103 Loratadine (Amcal) 10 mg tablet, 10, blister pack 127576 56081011000036104 Loratadine (Amcal) 10 mg tablet, 10 53782011000036100 Loratadine (Amcal) 10 mg tablet 53343011000036104 Loratadine (Amcal) 53343011000036104 Loratadine (Amcal) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +882761000168107 Bosentan (RBX) 125 mg film-coated tablet, 56, bottle 257756 882021000168104 Bosentan (RBX) 125 mg film-coated tablet, 56 882011000168106 Bosentan (RBX) 125 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +931491000168101 Centevo 75/18.75/200 mg film-coated tablet, 200, bottle 238853 931481000168104 Centevo 75/18.75/200 mg film-coated tablet, 200 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931471000168102 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 200 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +830841000168108 Imatinib (DRLA) 100 mg hard capsule, 60, blister pack 261062 830831000168104 Imatinib (DRLA) 100 mg hard capsule, 60 830811000168109 Imatinib (DRLA) 100 mg hard capsule 830751000168100 Imatinib (DRLA) 830751000168100 Imatinib (DRLA) 830821000168102 imatinib 100 mg capsule, 60 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +933641000168107 Centevo 200/50/200 mg film-coated tablet, 30, bottle 238859 933631000168103 Centevo 200/50/200 mg film-coated tablet, 30 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 51559011000036108 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 30 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +841551000168101 Atorvastatin (Amneal) 10 mg film-coated tablet, 30, blister pack 178535 841541000168103 Atorvastatin (Amneal) 10 mg film-coated tablet, 30 841481000168109 Atorvastatin (Amneal) 10 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +37751000036109 Respaz 4 mg film-coated tablet, 60, blister pack 165542 34041000036101 Respaz 4 mg film-coated tablet, 60 32521000036107 Respaz 4 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +933216241000036108 Actiq 1200 microgram lozenge on handle, 30, blister pack 91603 933205911000036108 Actiq 1200 microgram lozenge on handle, 30 34079011000036109 Actiq 1200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 933205921000036101 fentanyl 1200 microgram lozenge on handle, 30 34914011000036108 fentanyl 1200 microgram lozenge on handle 21258011000036102 fentanyl +922901000168107 Cephalexin (RBX) 500 mg hard capsule, 20, blister pack 176786 922891000168108 Cephalexin (RBX) 500 mg hard capsule, 20 922881000168105 Cephalexin (RBX) 500 mg hard capsule 922871000168107 Cephalexin (RBX) 922871000168107 Cephalexin (RBX) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +1069091000168107 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 30, blister pack 196531 1069081000168109 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 30 1068991000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +78997011000036105 Janumet 50/850 film-coated tablet, 56, blister pack 149021 78843011000036104 Janumet 50/850 film-coated tablet, 56 78651011000036107 Janumet 50/850 film-coated tablet 53121000168104 Janumet 50/850 53121000168104 Janumet 50/850 79234011000036106 sitagliptin 50 mg + metformin hydrochloride 850 mg tablet, 56 79111011000036102 sitagliptin 50 mg + metformin hydrochloride 850 mg tablet 79094011000036105 sitagliptin + metformin +1066441000168102 Cold and Flu Relief PE (Sandoz) film-coated tablet, 24, blister pack 211402 1066431000168106 Cold and Flu Relief PE (Sandoz) film-coated tablet, 24 1066421000168108 Cold and Flu Relief PE (Sandoz) film-coated tablet 1066411000168101 Cold and Flu Relief PE (Sandoz) 1066411000168101 Cold and Flu Relief PE (Sandoz) 63169011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +17846011000036105 Propylthiouracil (Phebra) 50 mg uncoated tablet, 100, bottle 13319 11968011000036105 Propylthiouracil (Phebra) 50 mg uncoated tablet, 100 5639011000036109 Propylthiouracil (Phebra) 50 mg uncoated tablet 3005011000036104 Propylthiouracil (Phebra) 3005011000036104 Propylthiouracil (Phebra) 26821011000036101 propylthiouracil 50 mg tablet, 100 22203011000036100 propylthiouracil 50 mg tablet 21852011000036109 propylthiouracil +1064271000168100 Strong Pain Relief (Trust) uncoated tablet, 12, blister pack 201679 1064261000168106 Strong Pain Relief (Trust) uncoated tablet, 12 1064231000168103 Strong Pain Relief (Trust) uncoated tablet 1064221000168101 Strong Pain Relief (Trust) 1064221000168101 Strong Pain Relief (Trust) 63876011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 12 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +933139011000036103 Elmendos 25 mg tablet, 60, bottle 98077 932934011000036107 Elmendos 25 mg tablet, 60 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46987011000036105 lamotrigine 25 mg tablet, 60 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +801361000168104 Actonate Once-a-Month 150 mg film-coated tablet, 1, blister pack 163750 801351000168101 Actonate Once-a-Month 150 mg film-coated tablet, 1 801341000168103 Actonate Once-a-Month 150 mg film-coated tablet 801331000168107 Actonate Once-a-Month 801331000168107 Actonate Once-a-Month 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +803531000168103 Abilify ODT 15 mg orally disintegrating tablet, 7, blister pack 128898 803521000168101 Abilify ODT 15 mg orally disintegrating tablet, 7 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803511000168108 aripiprazole 15 mg orally disintegrating tablet, 7 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +69340011000036106 Patent Blue V (Aspen) 50 mg/2 mL injection solution, 5 x 2 mL ampoules 27539 67140011000036107 Patent Blue V (Aspen) 50 mg/2 mL injection solution, 5 x 2 mL ampoules 65458011000036109 Patent Blue V (Aspen) 50 mg/2 mL injection solution, 2 mL ampoule 65150011000036108 Patent Blue V (Aspen) 65150011000036108 Patent Blue V (Aspen) 71705011000036102 patent blue V 50 mg/2 mL injection, 5 x 2 mL ampoules 70139011000036106 patent blue V 50 mg/2 mL injection, ampoule 69829011000036100 patent blue V +974901000168100 Stocrin 300 mg film-coated tablet, 60, blister pack 82786 974891000168104 Stocrin 300 mg film-coated tablet, 60 974871000168100 Stocrin 300 mg film-coated tablet 4246011000036109 Stocrin 4246011000036109 Stocrin 974881000168102 efavirenz 300 mg tablet, 60 974861000168106 efavirenz 300 mg tablet 21616011000036105 efavirenz +74722011000036107 Lax-Tab 5 mg enteric tablet, 50, bottle 119101 74232011000036101 Lax-Tab 5 mg enteric tablet, 50 5429011000036109 Lax-Tab 5 mg enteric tablet 3574011000036106 Lax-Tab 3574011000036106 Lax-Tab 71939011000036103 bisacodyl 5 mg enteric tablet, 50 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +1102931000168108 Aspramide 5 mg film-coated tablet, 150, blister pack 196499 1102921000168105 Aspramide 5 mg film-coated tablet, 150 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102911000168103 metoclopramide hydrochloride 5 mg tablet, 150 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +657321000168104 Teltartan HCT 40/12.5mg multilayer tablet, 28, blister pack 208068 657311000168106 Teltartan HCT 40/12.5mg multilayer tablet, 28 657301000168108 Teltartan HCT 40/12.5mg multilayer tablet 657291000168107 Teltartan HCT 40/12.5mg 657291000168107 Teltartan HCT 40/12.5mg 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +1066921000168102 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet, 30, blister pack 169108 1066911000168109 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet, 30 85386011000036106 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet 85277011000036106 Ibuprofen plus Codeine (Pharmacy Health) 85277011000036106 Ibuprofen plus Codeine (Pharmacy Health) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +18964011000036105 Dexmethsone 4 mg uncoated tablet, 30, bottle 27915 12272011000036100 Dexmethsone 4 mg uncoated tablet, 30 4986011000036100 Dexmethsone 4 mg uncoated tablet 2956011000036100 Dexmethsone 2956011000036100 Dexmethsone 27033011000036103 dexamethasone 4 mg tablet, 30 22406011000036105 dexamethasone 4 mg tablet 21631011000036109 dexamethasone +933216171000036109 Paracetamol (Alpha First Aid Supplies) 500 mg uncoated tablet, 24, blister pack 81739 933205821000036107 Paracetamol (Alpha First Aid Supplies) 500 mg uncoated tablet, 24 933196821000036104 Paracetamol (Alpha First Aid Supplies) 500 mg uncoated tablet 933193121000036102 Paracetamol (Alpha First Aid Supplies) 933193121000036102 Paracetamol (Alpha First Aid Supplies) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +994181000168102 Citalopram (Apo) 40 mg film-coated tablet, 500, bottle 233165 994171000168100 Citalopram (Apo) 40 mg film-coated tablet, 500 83069011000036107 Citalopram (Apo) 40 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 933202891000036100 citalopram 40 mg tablet, 500 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +73304011000036108 Jurnista 64 mg modified release tablet, 100, blister pack 141535 73102011000036107 Jurnista 64 mg modified release tablet, 100 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73500011000036101 hydromorphone hydrochloride 64 mg modified release tablet, 100 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +925326011000036107 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet, 28, blister pack 165913 924862011000036107 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet, 28 924533011000036109 Lercanidipine Hydrochloride (Sandoz) 10 mg film-coated tablet 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +44014011000036100 Droleptan 2.5 mg/mL injection solution, 10 x 1 mL ampoules 46841 41503011000036109 Droleptan 2.5 mg/mL injection solution, 10 x 1 mL ampoules 40021011000036108 Droleptan 2.5 mg/mL injection solution, ampoule 39686011000036100 Droleptan 39686011000036100 Droleptan 46345011000036102 droperidol 2.5 mg/mL injection, 10 x 1 mL ampoules 45095011000036105 droperidol 2.5 mg/mL injection, ampoule 44918011000036100 droperidol +32560011000036104 Mirtazapine (Chemmart) 30 mg film-coated tablet, 30, blister pack 127681 32351011000036101 Mirtazapine (Chemmart) 30 mg film-coated tablet, 30 32228011000036101 Mirtazapine (Chemmart) 30 mg film-coated tablet 32201011000036100 Mirtazapine (Chemmart) 32201011000036100 Mirtazapine (Chemmart) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +176721000036109 Cadivast 10/10 film-coated tablet, 30, bottle 199215 174921000036104 Cadivast 10/10 film-coated tablet, 30 173231000036106 Cadivast 10/10 film-coated tablet 12041000168109 Cadivast 10/10 12041000168109 Cadivast 10/10 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +44815011000036100 Daivobet 50/500 ointment, 15 g, tube 98773 42247011000036104 Daivobet 50/500 ointment, 15 g 40404011000036105 Daivobet 50/500 ointment 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 47000011000036102 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment, 15 g 45370011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment 44974011000036100 calcipotriol + betamethasone dipropionate +74041000036104 Retrovir 100 mg capsule, 100, blister pack 178383 11394011000036109 Retrovir 100 mg capsule, 100 4714011000036101 Retrovir 100 mg capsule 3895011000036100 Retrovir 3895011000036100 Retrovir 26631011000036106 zidovudine 100 mg capsule, 100 22037011000036105 zidovudine 100 mg capsule 21429011000036108 zidovudine +687391000168108 Dario diagnostic strip, 100, cartridge 227133 687381000168105 Dario diagnostic strip, 100 687371000168107 Dario diagnostic strip 687361000168101 Dario 687361000168101 Dario 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +61574011000036106 Replete Regular Strength 2% application, 60 mL, bottle 94465 57496011000036104 Replete Regular Strength 2% application, 60 mL 54325011000036103 Replete Regular Strength 2% application 58611000168107 Replete Regular Strength 58611000168107 Replete Regular Strength 63964011000036104 minoxidil 2% application, 60 mL 62111011000036107 minoxidil 2% application 21642011000036104 minoxidil +103951000036101 Irbesartan (Sandoz) 150 mg film-coated tablet, 30, blister pack 167409 101281000036100 Irbesartan (Sandoz) 150 mg film-coated tablet, 30 99401000036104 Irbesartan (Sandoz) 150 mg film-coated tablet 98031000036105 Irbesartan (Sandoz) 98031000036105 Irbesartan (Sandoz) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +18583011000036102 Septrin uncoated tablet, 10, bottle 11001 12082011000036103 Septrin uncoated tablet, 10 5234011000036106 Septrin uncoated tablet 19341000168100 Septrin 19341000168100 Septrin 26946011000036101 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet, 10 22321011000036103 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +69098011000036102 Sarna Original lotion, 150 mL, bottle 14832 66899011000036101 Sarna Original lotion, 150 mL 65452011000036106 Sarna Original lotion 14171000168109 Sarna Original 14171000168109 Sarna Original 71493011000036105 camphor 0.5% + menthol 0.5% + phenol 0.5% lotion, 150 mL 70035011000036101 camphor 0.5% + menthol 0.5% + phenol 0.5% lotion 69749011000036104 camphor + menthol + phenol +1064751000168103 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 24, blister pack 199369 1064741000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 24 1064611000168106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +18088011000036109 Diltahexal CD 360 mg modified release capsule, 30, bottle 131304 11920011000036100 Diltahexal CD 360 mg modified release capsule, 30 4770011000036103 Diltahexal CD 360 mg modified release capsule 26391000168107 Diltahexal CD 26391000168107 Diltahexal CD 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +732241000168105 Quetiapine (Apotex) 25 mg film-coated tablet, 60, blister pack 166071 732231000168101 Quetiapine (Apotex) 25 mg film-coated tablet, 60 732221000168104 Quetiapine (Apotex) 25 mg film-coated tablet 732141000168102 Quetiapine (Apotex) 732141000168102 Quetiapine (Apotex) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +177041000036100 Quetiapine (Pharmacor) 100 mg film-coated tablet, 90, blister pack 204829 175281000036106 Quetiapine (Pharmacor) 100 mg film-coated tablet, 90 172851000036106 Quetiapine (Pharmacor) 100 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +60606011000036108 Canesten Clotrimazole 1% cream, 50 g, tube 18697 56564011000036102 Canesten Clotrimazole 1% cream, 50 g 53975011000036108 Canesten Clotrimazole 1% cream 4270011000036105 Canesten Clotrimazole 4270011000036105 Canesten Clotrimazole 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +799171000168107 Acobay 50 mg tablet, 90, blister pack 226795 799161000168101 Acobay 50 mg tablet, 90 799151000168103 Acobay 50 mg tablet 799111000168104 Acobay 799111000168104 Acobay 27110011000036106 acarbose 50 mg tablet, 90 22478011000036100 acarbose 50 mg tablet 21888011000036104 acarbose +982851000168109 Ibrance 100 mg hard capsule, 21, bottle 274621 982771000168108 Ibrance 100 mg hard capsule, 21 982751000168104 Ibrance 100 mg hard capsule 982621000168100 Ibrance 982621000168100 Ibrance 982761000168102 palbociclib 100 mg capsule, 21 982741000168101 palbociclib 100 mg capsule 982631000168102 palbociclib +44498011000036103 Estraderm MX 75 microgram/24 hours patch, 24, sachet 76117 41953011000036106 Estraderm MX 75 microgram/24 hours patch, 24 40284011000036108 Estraderm MX 75 microgram/24 hours patch 9331000168106 Estraderm MX 9331000168106 Estraderm MX 46737011000036107 estradiol 75 microgram/24 hours patch, 24 23547011000036102 estradiol 75 microgram/24 hours patch 21238011000036103 estradiol +756491000168103 Pramipexole ER (Apo) 4.5 mg modified release tablet, 10, blister pack 225597 756481000168101 Pramipexole ER (Apo) 4.5 mg modified release tablet, 10 756461000168105 Pramipexole ER (Apo) 4.5 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 756471000168104 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet, 10 87762011000036107 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet 37716011000036100 pramipexole +52748011000036100 Fexal 120 mg film-coated tablet, 20, blister pack 140284 52560011000036108 Fexal 120 mg film-coated tablet, 20 52419011000036109 Fexal 120 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 52884011000036101 fexofenadine hydrochloride 120 mg tablet, 20 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +1004231000168102 Midazolam (Apo) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 217664 1004221000168100 Midazolam (Apo) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1004211000168107 Midazolam (Apo) 50 mg/10 mL injection solution, 10 mL ampoule 1004091000168105 Midazolam (Apo) 1004091000168105 Midazolam (Apo) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +933239521000036100 Amisulpride (Apo) 400 mg film-coated tablet, 100, blister pack 178898 933236841000036100 Amisulpride (Apo) 400 mg film-coated tablet, 100 933234751000036101 Amisulpride (Apo) 400 mg film-coated tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 80066011000036102 amisulpride 400 mg tablet, 100 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +59811000036106 Ceftriaxone (AFT) 500 mg powder for injection, 10 vials 185099 58901000036107 Ceftriaxone (AFT) 500 mg powder for injection, 10 vials 58371000036102 Ceftriaxone (AFT) 500 mg powder for injection, 500 mg vial 26001000036105 Ceftriaxone (AFT) 26001000036105 Ceftriaxone (AFT) 58911000036109 ceftriaxone 500 mg injection, 10 vials 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +59995011000036100 Gastrogel-Ranitidine Extra Strength 300 mg film-coated tablet, 14, blister pack 121942 55957011000036105 Gastrogel-Ranitidine Extra Strength 300 mg film-coated tablet, 14 53737011000036108 Gastrogel-Ranitidine Extra Strength 300 mg film-coated tablet 37561000168107 Gastrogel-Ranitidine Extra Strength 37561000168107 Gastrogel-Ranitidine Extra Strength 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +38391000036102 Escitalopram (MPPL) 10 mg film-coated tablet, 28, blister pack 165846 34721000036107 Escitalopram (MPPL) 10 mg film-coated tablet, 28 32981000036102 Escitalopram (MPPL) 10 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +799671000168104 Abyraz 15 mg uncoated tablet, 90, blister pack 159506 799661000168105 Abyraz 15 mg uncoated tablet, 90 799401000168107 Abyraz 15 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799651000168108 aripiprazole 15 mg tablet, 90 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +19405011000036108 Taxol 100 mg/16.7 mL concentrated injection, 16.7 mL vial 53248 12689011000036101 Taxol 100 mg/16.7 mL concentrated injection, 16.7 mL vial 4572011000036100 Taxol 100 mg/16.7 mL concentrated injection, 16.7 mL vial 3399011000036100 Taxol 3399011000036100 Taxol 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +69059011000036103 Whitfield's (Gold Cross) ointment, 100 g, jar 14293 66861011000036102 Whitfield's (Gold Cross) ointment, 100 g 65317011000036109 Whitfield's (Gold Cross) ointment 64954011000036109 Whitfield's (Gold Cross) 64954011000036109 Whitfield's (Gold Cross) 52320011000036103 benzoic acid 6% + salicylic acid 3% ointment, 100 g 52252011000036107 benzoic acid 6% + salicylic acid 3% ointment 52238011000036109 benzoic acid + salicylic acid +37497011000036106 Lamotrigine (Generic Health) 200 mg tablet, 56, blister pack 129762 36765011000036105 Lamotrigine (Generic Health) 200 mg tablet, 56 36064011000036108 Lamotrigine (Generic Health) 200 mg tablet 35966011000036108 Lamotrigine (Generic Health) 35966011000036108 Lamotrigine (Generic Health) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +845681000168105 Simponi Smartject 50 mg/0.5 mL injection solution, 3 x 0.5 mL injection devices 153181 845671000168107 Simponi Smartject 50 mg/0.5 mL injection solution, 3 x 0.5 mL injection devices 845581000168106 Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device 845551000168104 Simponi Smartject 845551000168104 Simponi Smartject 845661000168101 golimumab 50 mg/0.5 mL injection, 3 x 0.5 mL injection devices 845571000168108 golimumab 50 mg/0.5 mL injection, injection device 84416011000036108 golimumab +657001000168106 Pravastatin Sodium (AN) 20 mg uncoated tablet, 30, blister pack 191714 656991000168104 Pravastatin Sodium (AN) 20 mg uncoated tablet, 30 656981000168102 Pravastatin Sodium (AN) 20 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +848651000168105 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 161137 848641000168108 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 43191000168100 Fosamax Plus D-Cal 85275011000036101 Bonecal 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +848651000168105 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 161137 848641000168108 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 39850011000036103 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet 43191000168100 Fosamax Plus D-Cal 41041000168105 Fosamax Plus Once Weekly 70 mg/140 microgram 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +767541000168101 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 226240 767531000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767541000168101 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 178481 767531000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 767431000168106 Petibelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +767541000168101 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 226240 767531000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +767541000168101 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 178481 767531000168105 Petibelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 767441000168102 Petibelle (inert substance) film-coated tablet 767241000168103 Petibelle 767241000168103 Petibelle 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +969651000168100 Lypralin 150 mg hard capsule, 60, blister pack 235846 969641000168102 Lypralin 150 mg hard capsule, 60 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +73291011000036100 Jurnista 16 mg modified release tablet, 7, blister pack 141533 73089011000036109 Jurnista 16 mg modified release tablet, 7 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73487011000036106 hydromorphone hydrochloride 16 mg modified release tablet, 7 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +1007121000168101 Mirtanza 45 mg film-coated tablet, 30, blister pack 127697 1007111000168108 Mirtanza 45 mg film-coated tablet, 30 1007101000168105 Mirtanza 45 mg film-coated tablet 1007031000168104 Mirtanza 1007031000168104 Mirtanza 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +20295011000036108 Frusemide (GenRx) 40 mg uncoated tablet, 100, bottle 75582 13504011000036100 Frusemide (GenRx) 40 mg uncoated tablet, 100 6786011000036104 Frusemide (GenRx) 40 mg uncoated tablet 3501011000036104 Frusemide (GenRx) 3501011000036104 Frusemide (GenRx) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +883171000168108 Betahistine (GX) 8 mg tablet, 100, blister pack 231711 883161000168102 Betahistine (GX) 8 mg tablet, 100 883081000168105 Betahistine (GX) 8 mg tablet 883061000168101 Betahistine (GX) 883061000168101 Betahistine (GX) 883151000168104 betahistine dihydrochloride 8 mg tablet, 100 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +1046991000168108 Buprenorphine (SZ) 10 microgram/hour patch, 1, sachet 269674 1046981000168105 Buprenorphine (SZ) 10 microgram/hour patch, 1 1046971000168107 Buprenorphine (SZ) 10 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046631000168104 buprenorphine 10 microgram/hour patch, 1 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +804971000168109 Aczicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 147839 804961000168103 Aczicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 804951000168100 Aczicrit 7000 units/0.7 mL injection solution, 0.7 mL syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924115011000036107 epoetin lambda 7000 units/0.7 mL injection, 0.7 mL syringe 923948011000036108 epoetin lambda 7000 units/0.7 mL injection, syringe 923930011000036107 epoetin lambda +55471000036100 Anastrozole (AU) 1 mg film-coated tablet, 28, blister pack 155174 52051000036106 Anastrozole (AU) 1 mg film-coated tablet, 28 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52061000036109 anastrozole 1 mg tablet, 28 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +921822011000036106 Emend IV 115 mg powder for injection, 1 vial 129615 921394011000036109 Emend IV 115 mg powder for injection, 1 vial 920983011000036108 Emend IV 115 mg powder for injection, 115 mg vial 920921011000036103 Emend IV 920921011000036103 Emend IV 922537011000036108 fosaprepitant 115 mg injection, 1 vial 922074011000036103 fosaprepitant 115 mg injection, vial 922053011000036103 fosaprepitant +33539011000036107 Vaxigrip 2008 needle free injection solution, 1 x 0.5 mL syringe 129874 33279011000036103 Vaxigrip 2008 needle free injection solution, 1 x 0.5 mL syringe 79305011000036105 Vaxigrip 2008 needle free injection solution, 0.5 mL syringe 25501000168102 Vaxigrip 2008 25501000168102 Vaxigrip 2008 33818011000036109 influenza trivalent adult vaccine 2008 injection, 1 x 0.5 mL syringe 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +87631011000036104 Topiramate (RBX) 25 mg film-coated tablet, 60, bottle 157964 87457011000036106 Topiramate (RBX) 25 mg film-coated tablet, 60 87319011000036100 Topiramate (RBX) 25 mg film-coated tablet 87292011000036100 Topiramate (RBX) 87292011000036100 Topiramate (RBX) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +1079051000168105 Sinus Pain Relief PE Day and Night (Amcal) (16 x Day tablets, 8 x Night tablets), 24, blister pack 219666 1079041000168108 Sinus Pain Relief PE Day and Night (Amcal) (16 x Day tablets, 8 x Night tablets), 24 1079021000168102 Sinus Pain Relief PE Day and Night (Day) (Amcal) film-coated tablet 1076861000168107 Sinus Pain Relief PE Day and Night (Amcal) 1079001000168106 Sinus Pain Relief PE Day and Night (Day) (Amcal) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +1079051000168105 Sinus Pain Relief PE Day and Night (Amcal) (16 x Day tablets, 8 x Night tablets), 24, blister pack 219666 1079041000168108 Sinus Pain Relief PE Day and Night (Amcal) (16 x Day tablets, 8 x Night tablets), 24 1079031000168104 Sinus Pain Relief PE Day and Night (Night) (Amcal) film-coated tablet 1076861000168107 Sinus Pain Relief PE Day and Night (Amcal) 1079011000168109 Sinus Pain Relief PE Day and Night (Night) (Amcal) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +854021000168102 Quetiapine (Alkem) 25 mg film-coated tablet, 20, blister pack 204818 854011000168109 Quetiapine (Alkem) 25 mg film-coated tablet, 20 854001000168106 Quetiapine (Alkem) 25 mg film-coated tablet 853941000168106 Quetiapine (Alkem) 853941000168106 Quetiapine (Alkem) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +12221000036104 Ceptolate 500 mg film-coated tablet, 50, bottle 163307 7421000036103 Ceptolate 500 mg film-coated tablet, 50 2891000036104 Ceptolate 500 mg film-coated tablet 521000036106 Ceptolate 521000036106 Ceptolate 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +1021091000168103 Alli 60 mg hard capsule, 84, bottle 194528 1021081000168101 Alli 60 mg hard capsule, 84 1021031000168102 Alli 60 mg hard capsule 1021011000168107 Alli 1021011000168107 Alli 1021071000168104 orlistat 60 mg capsule, 84 1021021000168100 orlistat 60 mg capsule 21581011000036109 orlistat +937911000168105 Zonisamide (Apo) 50 mg hard capsule, 56, blister pack 265574 937901000168107 Zonisamide (Apo) 50 mg hard capsule, 56 937891000168108 Zonisamide (Apo) 50 mg hard capsule 937851000168103 Zonisamide (Apo) 937851000168103 Zonisamide (Apo) 71384011000036101 zonisamide 50 mg capsule, 56 69986011000036107 zonisamide 50 mg capsule 69755011000036103 zonisamide +60816011000036102 Nicotinell Mint 2 mg chewing gum, 24, blister pack 58058 56772011000036103 Nicotinell Mint 2 mg chewing gum, 24 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60816011000036102 Nicotinell Mint 2 mg chewing gum, 24, blister pack 126043 56772011000036103 Nicotinell Mint 2 mg chewing gum, 24 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +69229011000036109 Chlorhexidine Acetate (Baxter) 0.05% (50 mg/100 mL) irrigation solution, 100 mL bottle 19461 67029011000036107 Chlorhexidine Acetate (Baxter) 0.05% (50 mg/100 mL) irrigation solution, 100 mL bottle 65287011000036101 Chlorhexidine Acetate (Baxter) 0.05% (50 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71599011000036103 chlorhexidine acetate 0.05% (50 mg/100 mL) solution, 100 mL bottle 70085011000036106 chlorhexidine acetate 0.05% (50 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +52704011000036103 Simvastatin (Spirit) 10 mg film-coated tablet, 30, blister pack 116701 52525011000036109 Simvastatin (Spirit) 10 mg film-coated tablet, 30 52399011000036103 Simvastatin (Spirit) 10 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +861561000168106 First Aid (Guardian) cream, 50 g, tube 145052 861551000168109 First Aid (Guardian) cream, 50 g 861541000168107 First Aid (Guardian) cream 924356011000036100 First Aid (Guardian) 924356011000036100 First Aid (Guardian) 861331000168108 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream, 50 g 861311000168103 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride monohydrate 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +933213661000036103 Citalopram (IPCA) 20 mg film-coated tablet, 84, blister pack 158871 933203291000036105 Citalopram (IPCA) 20 mg film-coated tablet, 84 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +20877011000036100 Tritace Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack, blister pack 92903 14039011000036109 Tritace Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack 33091011000036100 Tritace 10 mg hard capsule 59771000168104 Tritace Titration Pack 4384011000036103 Tritace 28102011000036102 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg capsule [10], 1 pack 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +20877011000036100 Tritace Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack, blister pack 92903 14039011000036109 Tritace Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack 6098011000036101 Tritace 2.5 mg uncoated tablet 59771000168104 Tritace Titration Pack 4384011000036103 Tritace 28102011000036102 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg capsule [10], 1 pack 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +20877011000036100 Tritace Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack, blister pack 92903 14039011000036109 Tritace Titration Pack (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack 6099011000036109 Tritace 5 mg uncoated tablet 59771000168104 Tritace Titration Pack 4384011000036103 Tritace 28102011000036102 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg capsule [10], 1 pack 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +60937011000036101 Claratyne 10 mg effervescent tablet, 28, blister pack 62125 56891011000036104 Claratyne 10 mg effervescent tablet, 28 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63635011000036108 loratadine 10 mg effervescent tablet, 28 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +724751000168106 Latuda 80 mg film-coated tablet, 30, blister pack 206651 724741000168109 Latuda 80 mg film-coated tablet, 30 724721000168103 Latuda 80 mg film-coated tablet 724621000168105 Latuda 724621000168105 Latuda 724731000168100 lurasidone hydrochloride 80 mg tablet, 30 724711000168105 lurasidone hydrochloride 80 mg tablet 724651000168102 lurasidone +845351000168106 Olmesartan (Alembic) 10 mg film-coated tablet, 30, blister pack 221059 845341000168109 Olmesartan (Alembic) 10 mg film-coated tablet, 30 845321000168103 Olmesartan (Alembic) 10 mg film-coated tablet 845241000168103 Olmesartan (Alembic) 845241000168103 Olmesartan (Alembic) 845331000168100 olmesartan medoxomil 10 mg tablet, 30 845311000168105 olmesartan medoxomil 10 mg tablet 32674011000036109 olmesartan +77249011000036100 Actonel Once-a-Month 150 mg film-coated tablet, 1, blister pack 150618 76665011000036109 Actonel Once-a-Month 150 mg film-coated tablet, 1 76101011000036105 Actonel Once-a-Month 150 mg film-coated tablet 7381000168101 Actonel Once-a-Month 7381000168101 Actonel Once-a-Month 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +725801000168101 PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches 725791000168102 PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches 725781000168100 PKU Cooler 20 Orange oral liquid solution, 174 mL pouch 31611000168103 PKU Cooler 20 31611000168103 PKU Cooler 20 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +983651000168100 Levetiracetam 1000 (Apotex) 1 g film-coated tablet, 60, blister pack 156324 983641000168102 Levetiracetam 1000 (Apotex) 1 g film-coated tablet, 60 983631000168106 Levetiracetam 1000 (Apotex) 1 g film-coated tablet 983621000168108 Levetiracetam 1000 (Apotex) 983621000168108 Levetiracetam 1000 (Apotex) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +18161000036102 Ramipril (Pfizer) 1.25 mg uncoated tablet, 30, blister pack 175228 19171000036103 Ramipril (Pfizer) 1.25 mg uncoated tablet, 30 18641000036106 Ramipril (Pfizer) 1.25 mg uncoated tablet 15091000036101 Ramipril (Pfizer) 15091000036101 Ramipril (Pfizer) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +931599011000036107 Pratin 20 mg film-coated tablet, 90, bottle 163557 930760011000036108 Pratin 20 mg film-coated tablet, 90 930037011000036104 Pratin 20 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 932407011000036108 pravastatin sodium 20 mg tablet, 90 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1004141000168103 Losartan (Apo) 50 mg film-coated tablet, 30, blister pack 201820 1004131000168107 Losartan (Apo) 50 mg film-coated tablet, 30 1003941000168104 Losartan (Apo) 50 mg film-coated tablet 1003821000168102 Losartan (Apo) 1003821000168102 Losartan (Apo) 46465011000036101 losartan potassium 50 mg tablet, 30 45171011000036109 losartan potassium 50 mg tablet 44887011000036108 losartan +18051011000036105 Prozac 20 mg hard capsule, 28, blister pack 14653 12052011000036105 Prozac 20 mg hard capsule, 28 4888011000036108 Prozac 20 mg hard capsule 2954011000036108 Prozac 2954011000036108 Prozac 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +44026011000036100 Fluorouracil (DBL) 2.5 g/100 mL injection solution, 10 x 100 mL vials 47263 41515011000036107 Fluorouracil (DBL) 2.5 g/100 mL injection solution, 10 x 100 mL vials 40029011000036107 Fluorouracil (DBL) 2.5 g/100 mL injection solution, 100 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 46354011000036103 fluorouracil 2.5 g/100 mL injection, 10 x 100 mL vials 45131011000036107 fluorouracil 2.5 g/100 mL injection, vial 21481011000036100 fluorouracil +84368011000036100 Salpraz 20 mg enteric tablet, 30, blister pack 163888 84061011000036105 Salpraz 20 mg enteric tablet, 30 83687011000036105 Salpraz 20 mg enteric tablet 38031000168107 Salpraz 38031000168107 Salpraz 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +923873011000036109 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet, 28, blister pack 163764 923418011000036102 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet, 28 923076011000036104 Lercanidipine Hydrochloride (Chemmart) 20 mg film-coated tablet 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 922949011000036105 Lercanidipine Hydrochloride (Chemmart) 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +59848011000036109 Strong Pain Relief (Amcal) uncoated tablet, 20, blister pack 226288 55810011000036105 Strong Pain Relief (Amcal) uncoated tablet, 20 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +59848011000036109 Strong Pain Relief (Amcal) uncoated tablet, 20, blister pack 115171 55810011000036105 Strong Pain Relief (Amcal) uncoated tablet, 20 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +999721000168104 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 195217 999711000168106 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 999701000168108 Drospirenone/EE 3/30 (Apo) (inert substance) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999721000168104 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28, blister pack 195217 999711000168106 Drospirenone/EE 3/30 (Apo) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 28 999691000168108 Drospirenone/EE 3/30 (Apo) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999681000168105 Drospirenone/EE 3/30 (Apo) 999681000168105 Drospirenone/EE 3/30 (Apo) 87245011000036103 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +999801000168101 Memantine (Apotex) 10 mg film-coated tablet, 1000, bottle 159579 999791000168102 Memantine (Apotex) 10 mg film-coated tablet, 1000 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 920858011000036102 memantine hydrochloride 10 mg tablet, 1000 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +1012651000168103 Mycophenolate (Apotex) 250 mg capsule, 300, blister pack 168106 1012641000168100 Mycophenolate (Apotex) 250 mg capsule, 300 1012611000168104 Mycophenolate (Apotex) 250 mg capsule 1012551000168104 Mycophenolate (Apotex) 1012551000168104 Mycophenolate (Apotex) 27604011000036102 mycophenolate mofetil 250 mg capsule, 300 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +926817011000036101 Reaptan 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 170799 926213011000036100 Reaptan 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 10 925679011000036105 Reaptan 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet 25471000168108 Reaptan 10mg/10mg (perindopril arginine/amlodipine) 25471000168108 Reaptan 10mg/10mg (perindopril arginine/amlodipine) 86429011000036101 perindopril arginine 10 mg + amlodipine 10 mg tablet, 10 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +87674011000036104 Clopidogrel (Winthrop) 75 mg film-coated tablet, 84, blister pack 148947 87437011000036105 Clopidogrel (Winthrop) 75 mg film-coated tablet, 84 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87806011000036109 clopidogrel 75 mg tablet, 84 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +969741000168107 Aripiprazole (AN) 15 mg uncoated tablet, 100, bottle 198194 969731000168103 Aripiprazole (AN) 15 mg uncoated tablet, 100 969201000168102 Aripiprazole (AN) 15 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +895921000168105 Atomoxetine (Sandoz) 80 mg hard capsule, 7, blister pack 238371 895911000168103 Atomoxetine (Sandoz) 80 mg hard capsule, 7 895901000168101 Atomoxetine (Sandoz) 80 mg hard capsule 894601000168106 Atomoxetine (Sandoz) 894601000168106 Atomoxetine (Sandoz) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +12301000036102 Zylap 7.5 mg film-coated tablet, 28, blister pack 163405 7211000036106 Zylap 7.5 mg film-coated tablet, 28 1691000036106 Zylap 7.5 mg film-coated tablet 7481000168109 Zylap 7481000168109 Zylap 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +77403011000036109 Water for Injections (Phebra) injection solution, 10 x 5 mL ampoules 78927 76819011000036103 Water for Injections (Phebra) injection solution, 10 x 5 mL ampoules 76192011000036102 Water for Injections (Phebra) injection solution, 5 mL ampoule 75970011000036108 Water for Injections (Phebra) 75970011000036108 Water for Injections (Phebra) 78323011000036100 water for injections injection, 10 x 5 mL ampoules 77607011000036102 water for injections injection, 5 mL ampoule 77431011000036101 water for injections +888421000168108 Calcitriol (RM) 0.25 microgram soft capsule, 100, blister pack 232772 888411000168101 Calcitriol (RM) 0.25 microgram soft capsule, 100 888401000168104 Calcitriol (RM) 0.25 microgram soft capsule 888391000168101 Calcitriol (RM) 888391000168101 Calcitriol (RM) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +81087011000036107 Bisolvon Chesty 8 mg soluble tablet, 16, blister pack 158944 80595011000036108 Bisolvon Chesty 8 mg soluble tablet, 16 80206011000036108 Bisolvon Chesty 8 mg soluble tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 81663011000036106 bromhexine hydrochloride 8 mg soluble tablet, 16 88351000036100 bromhexine hydrochloride 8 mg soluble tablet 61780011000036106 bromhexine +933213681000036108 Citalopram (IPCA) 20 mg film-coated tablet, 1000, bottle 158872 933203201000036102 Citalopram (IPCA) 20 mg film-coated tablet, 1000 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203211000036100 citalopram 20 mg tablet, 1000 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +694541000168103 Imigran 50 mg film-coated tablet, 4, blister pack 52261 694531000168107 Imigran 50 mg film-coated tablet, 4 5286011000036107 Imigran 50 mg film-coated tablet 30771000168105 Imigran 30771000168105 Imigran 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +18136011000036107 Aciclovir (Pharmacor) 200 mg tablet, 90, blister pack 130607 11898011000036104 Aciclovir (Pharmacor) 200 mg tablet, 90 5741011000036104 Aciclovir (Pharmacor) 200 mg tablet 3270011000036107 Aciclovir (Pharmacor) 3270011000036107 Aciclovir (Pharmacor) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +69383011000036107 Metsal AR Analgesic 12% gel, 5 g sachet 33640 67183011000036108 Metsal AR Analgesic 12% gel, 5 g sachet 65463011000036108 Metsal AR Analgesic 12% gel, 5 g sachet 56441000168105 Metsal AR Analgesic 56441000168105 Metsal AR Analgesic 71745011000036109 trolamine salicylate 12% gel, 5 g sachet 70165011000036102 trolamine salicylate 12% gel, sachet 69814011000036109 trolamine +933239441000036109 Pioglitazone (GA) 45 mg uncoated tablet, 28, blister pack 173454 933236751000036106 Pioglitazone (GA) 45 mg uncoated tablet, 28 933234671000036101 Pioglitazone (GA) 45 mg uncoated tablet 933234241000036106 Pioglitazone (GA) 933234241000036106 Pioglitazone (GA) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +661411000168103 Lercanidipine Hydrochloride (AN) 10 mg film-coated tablet, 28, blister pack 172211 661401000168101 Lercanidipine Hydrochloride (AN) 10 mg film-coated tablet, 28 661391000168103 Lercanidipine Hydrochloride (AN) 10 mg film-coated tablet 661381000168101 Lercanidipine Hydrochloride (AN) 661381000168101 Lercanidipine Hydrochloride (AN) 84672011000036101 lercanidipine hydrochloride 10 mg tablet, 28 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +18993011000036105 Imuran 25 mg film-coated tablet, 100, blister pack 31393 12300011000036102 Imuran 25 mg film-coated tablet, 100 5916011000036105 Imuran 25 mg film-coated tablet 3070011000036103 Imuran 3070011000036103 Imuran 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +744891000168108 Abstral 600 microgram sublingual tablet, 10, blister pack 228208 744881000168105 Abstral 600 microgram sublingual tablet, 10 744861000168101 Abstral 600 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744871000168107 fentanyl 600 microgram sublingual tablet, 10 744851000168103 fentanyl 600 microgram sublingual tablet 21258011000036102 fentanyl +932291000168109 Centevo 50/12.5/200 mg film-coated tablet, 200, bottle 238152 932281000168106 Centevo 50/12.5/200 mg film-coated tablet, 200 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932271000168108 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 200 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +925871000168100 Amonzitra 4 mg/5 mL concentrated injection, 5 mL vial 186523 925861000168106 Amonzitra 4 mg/5 mL concentrated injection, 5 mL vial 925851000168109 Amonzitra 4 mg/5 mL concentrated injection, 5 mL vial 925651000168108 Amonzitra 925651000168108 Amonzitra 28024011000036106 zoledronic acid 4 mg/5 mL injection, 5 mL vial 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +1041511000168101 Atorvastatin (Pfizer) 40 mg film-coated tablet, 90, bottle 182951 1041501000168104 Atorvastatin (Pfizer) 40 mg film-coated tablet, 90 2031000036109 Atorvastatin (Pfizer) 40 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 1041491000168106 atorvastatin 40 mg tablet, 90 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1004061000168103 Rizatriptan (Apo) 5 mg orally disintegrating tablet, 2, blister pack 222327 1004051000168100 Rizatriptan (Apo) 5 mg orally disintegrating tablet, 2 1004041000168102 Rizatriptan (Apo) 5 mg orally disintegrating tablet 774451000168100 Rizatriptan (Apo) 774451000168100 Rizatriptan (Apo) 878591000168103 rizatriptan 5 mg orally disintegrating tablet, 2 878571000168104 rizatriptan 5 mg orally disintegrating tablet 83422011000036102 rizatriptan +19078011000036102 Hydrene 25/50 uncoated tablet, 100, blister pack 42228 12386011000036103 Hydrene 25/50 uncoated tablet, 100 5608011000036107 Hydrene 25/50 uncoated tablet 44911000168109 Hydrene 25/50 44911000168109 Hydrene 25/50 27093011000036105 hydrochlorothiazide 25 mg + triamterene 50 mg tablet, 100 22462011000036105 hydrochlorothiazide 25 mg + triamterene 50 mg tablet 21751011000036100 hydrochlorothiazide + triamterene +862671000168107 Amitriptyline (GPPL) 25 mg tablet, 50, blister pack 232136 862661000168101 Amitriptyline (GPPL) 25 mg tablet, 50 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +61349011000036109 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 1200, blister pack 81474 57274011000036103 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 1200 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63847011000036106 paracetamol 500 mg tablet, 1200 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1000851000168104 Pregabalin (Apo) 100 mg hard capsule, 56, bottle 193248 1000841000168101 Pregabalin (Apo) 100 mg hard capsule, 56 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +86107011000036103 Clovix 75 mg film-coated tablet, 28, blister pack 200470 85692011000036102 Clovix 75 mg film-coated tablet, 28 85337011000036104 Clovix 75 mg film-coated tablet 85248011000036108 Clovix 85248011000036108 Clovix 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +86107011000036103 Clovix 75 mg film-coated tablet, 28, blister pack 155942 85692011000036102 Clovix 75 mg film-coated tablet, 28 85337011000036104 Clovix 75 mg film-coated tablet 85248011000036108 Clovix 85248011000036108 Clovix 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +652821000168108 Timentin powder for injection, 3.1 g vial 11165 652811000168101 Timentin powder for injection, 3.1 g vial 5978011000036102 Timentin powder for injection, 3.1 g vial 4005011000036102 Timentin 4005011000036102 Timentin 652801000168104 ticarcillin 3 g + clavulanic acid 100 mg injection, 3.1 g vial 22051011000036103 ticarcillin 3 g + clavulanic acid 100 mg injection, 3.1 g vial 21510011000036100 ticarcillin + clavulanic acid +19104011000036105 Tegretol CR 200 mg modified release tablet, 200, blister pack 42974 12409011000036102 Tegretol CR 200 mg modified release tablet, 200 4491011000036106 Tegretol CR 200 mg modified release tablet 7571000168105 Tegretol CR 7571000168105 Tegretol CR 27102011000036107 carbamazepine 200 mg modified release tablet, 200 22470011000036102 carbamazepine 200 mg modified release tablet 21319011000036108 carbamazepine +1113371000168103 Tinasil 1% cream, 30 g, tube 279463 1113361000168109 Tinasil 1% cream, 30 g 1113351000168107 Tinasil 1% cream 929363011000036101 Tinasil 929363011000036101 Tinasil 932349011000036101 terbinafine hydrochloride 1% cream, 30 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +60028011000036108 Heartburn Relief (Amcal) 150 mg film-coated tablet, 10, blister pack 123664 55990011000036104 Heartburn Relief (Amcal) 150 mg film-coated tablet, 10 53750011000036108 Heartburn Relief (Amcal) 150 mg film-coated tablet 53448011000036104 Heartburn Relief (Amcal) 53448011000036104 Heartburn Relief (Amcal) 63188011000036105 ranitidine 150 mg tablet, 10 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +34671011000036103 Invega 9 mg modified release tablet, 28, blister pack 130717 34257011000036106 Invega 9 mg modified release tablet, 28 33989011000036108 Invega 9 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35125011000036108 paliperidone 9 mg modified release tablet, 28 34857011000036103 paliperidone 9 mg modified release tablet 34837011000036104 paliperidone +20913011000036105 Maxamox 500 mg/5 mL powder for oral liquid, 100 mL, bottle 93722 14067011000036105 Maxamox 500 mg/5 mL powder for oral liquid, 100 mL 7345011000036102 Maxamox 500 mg/5 mL powder for oral liquid, 5 mL 3010011000036106 Maxamox 3010011000036106 Maxamox 28122011000036109 amoxicillin 500 mg/5 mL powder for oral liquid, 100 mL 23431011000036101 amoxicillin 500 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +60149011000036106 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 25, bottle 129739 56108011000036104 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 25 54363011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet 1721000168108 Ibuprofen Blue (Herron) 1721000168108 Ibuprofen Blue (Herron) 63216011000036105 ibuprofen 200 mg tablet, 25 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61562011000036109 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 100 mL, bottle 94150 57484011000036108 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution, 100 mL 54321011000036100 Cold and Cough Paediatric Drops (Pharmacy Health) oral liquid solution 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 1381000168108 Cold and Cough Paediatric Drops (Pharmacy Health) 63882011000036104 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 100 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +933230941000036107 Famciclovir (Apo) 500 mg film-coated tablet, 16, bottle 172445 933224991000036105 Famciclovir (Apo) 500 mg film-coated tablet, 16 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933225001000036102 famciclovir 500 mg tablet, 16 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +661271000168107 Ciprofloxacin (AN) 750 mg film-coated tablet, 14, blister pack 175438 661261000168101 Ciprofloxacin (AN) 750 mg film-coated tablet, 14 661251000168103 Ciprofloxacin (AN) 750 mg film-coated tablet 661241000168100 Ciprofloxacin (AN) 661241000168100 Ciprofloxacin (AN) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +986971000168109 Diprivan 200 mg/20 mL injection emulsion, 5 x 20 mL vials 77251 986961000168103 Diprivan 200 mg/20 mL injection emulsion, 5 x 20 mL vials 986951000168100 Diprivan 200 mg/20 mL injection emulsion, 20 mL vial 39630011000036106 Diprivan 39630011000036106 Diprivan 927311011000036108 propofol 200 mg/20 mL injection, 5 x 20 mL vials 38040011000036103 propofol 200 mg/20 mL injection, vial 37750011000036109 propofol +931766011000036102 Primene 10% intravenous infusion injection, 100 mL, bottle 79618 930926011000036107 Primene 10% intravenous infusion injection, 100 mL 930124011000036102 Primene 10% intravenous infusion injection, 100 mL bottle 48121000168109 Primene 10% 48121000168109 Primene 10% 932496011000036107 alanine 800 mg/100 mL + arginine 840 mg/100 mL + aspartic acid 600 mg/100 mL + cysteine 189 mg/100 mL + glutamic acid 1 g/100 mL + glycine 400 mg/100 mL + histidine 380 mg/100 mL + isoleucine 670 mg/100 mL + leucine 1 g/100 mL + lysine 1.1 g/100 mL + methionine 240 mg/100 mL + ornithine monohydrochloride 318 mg/100 mL + phenylalanine 420 mg/100 mL + proline 300 mg/100 mL + serine 400 mg/100 mL + taurine 60 mg/100 mL + threonine 370 mg/100 mL + tryptophan 200 mg/100 mL + tyrosine 45 mg/100 mL + valine 760 mg/100 mL injection, 100 mL 931890011000036100 alanine 800 mg/100 mL + arginine 840 mg/100 mL + aspartic acid 600 mg/100 mL + cysteine 189 mg/100 mL + glutamic acid 1 g/100 mL + glycine 400 mg/100 mL + histidine 380 mg/100 mL + isoleucine 670 mg/100 mL + leucine 1 g/100 mL + lysine 1.1 g/100 mL + methionine 240 mg/100 mL + ornithine monohydrochloride 318 mg/100 mL + phenylalanine 420 mg/100 mL + proline 300 mg/100 mL + serine 400 mg/100 mL + taurine 60 mg/100 mL + threonine 370 mg/100 mL + tryptophan 200 mg/100 mL + tyrosine 45 mg/100 mL + valine 760 mg/100 mL injection, bottle 931789011000036109 alanine + arginine + aspartic acid + cysteine + glutamic acid + glycine + histidine + isoleucine + leucine + lysine + methionine + ornithine + phenylalanine + proline + serine + taurine + threonine + tryptophan + tyrosine + valine +39417011000036103 Calutex 50 mg film-coated tablet, 28, blister pack 135858 39300011000036108 Calutex 50 mg film-coated tablet, 28 39195011000036105 Calutex 50 mg film-coated tablet 39180011000036102 Calutex 39180011000036102 Calutex 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +44592011000036106 Vfend 50 mg film-coated tablet, 14, blister pack 82507 42045011000036102 Vfend 50 mg film-coated tablet, 14 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46813011000036107 voriconazole 50 mg tablet, 14 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +1029631000168109 Aten 25 mg film-coated tablet, 50, blister pack 197714 1029621000168106 Aten 25 mg film-coated tablet, 50 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029611000168104 atenolol 25 mg tablet, 50 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +68853011000036100 Rikoderm bath oil, 500 mL, bottle 10588 66514011000036102 Rikoderm bath oil, 500 mL 65318011000036105 Rikoderm bath oil 65134011000036102 Rikoderm 65134011000036102 Rikoderm 71246011000036107 light liquid paraffin 91.7% + wool fat 3% bath oil, 500 mL 69916011000036109 light liquid paraffin 91.7% + wool fat 3% bath oil 69787011000036102 light liquid paraffin + wool fat +658211000168102 Prochlorperazine Maleate (AN) 5 mg uncoated tablet, 25, blister pack 158413 658201000168100 Prochlorperazine Maleate (AN) 5 mg uncoated tablet, 25 658191000168103 Prochlorperazine Maleate (AN) 5 mg uncoated tablet 658171000168104 Prochlorperazine Maleate (AN) 658171000168104 Prochlorperazine Maleate (AN) 27626011000036100 prochlorperazine maleate 5 mg tablet, 25 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +69684011000036100 Strepsils Extra 2.4 mg lozenge, 2, blister pack 82802 67483011000036107 Strepsils Extra 2.4 mg lozenge, 2 65679011000036100 Strepsils Extra 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72002011000036107 hexylresorcinol 2.4 mg lozenge, 2 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +18548011000036101 Gabitril 15 mg film-coated tablet, 50, bottle 120273 11637011000036102 Gabitril 15 mg film-coated tablet, 50 4681011000036109 Gabitril 15 mg film-coated tablet 3197011000036101 Gabitril 3197011000036101 Gabitril 26717011000036102 tiagabine 15 mg tablet, 50 22112011000036108 tiagabine 15 mg tablet 21707011000036103 tiagabine +707351000168105 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 114303 707341000168108 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 707321000168102 Lucrin Depot 3-Month (inert substance) diluent, 1.5 mL syringe 54651000168100 Lucrin Depot 3-Month 54651000168100 Lucrin Depot 3-Month 707331000168104 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 698501000168108 inert substance diluent, 1.5 mL syringe 21220011000036103 inert substance +707351000168105 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 114303 707341000168108 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 33005011000036101 Lucrin Depot 3-Month (leuprorelin acetate 22.5 mg) modified release injection, 22.5 mg syringe 54651000168100 Lucrin Depot 3-Month 54651000168100 Lucrin Depot 3-Month 707331000168104 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 23533011000036105 leuprorelin acetate 22.5 mg modified release injection, syringe 21320011000036109 leuprorelin +50313011000036105 Aquaclear (900796) 10 cm x 10 cm dressing, 5, carton 49375011000036106 Aquaclear (900796) 10 cm x 10 cm dressing, 5 48656011000036106 Aquaclear (900796) 10 cm x 10 cm dressing 19021000168108 Aquaclear (900796) 19021000168108 Aquaclear (900796) 51348011000036100 dressing hydrogel sheet 10 cm x 10 cm dressing, 5 50872011000036106 dressing hydrogel sheet 10 cm x 10 cm dressing 50742011000036109 dressing hydrogel sheet +1008401000168104 Cefuroxime (AL) 500 mg film-coated tablet, 10, blister pack 273226 1008391000168101 Cefuroxime (AL) 500 mg film-coated tablet, 10 1008271000168105 Cefuroxime (AL) 500 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 1008381000168104 cefuroxime 500 mg tablet, 10 1008261000168104 cefuroxime 500 mg tablet 21474011000036106 cefuroxime +1053251000168103 Lamotrigine (SZ) 200 mg tablet, 56, blister pack 143570 1053241000168100 Lamotrigine (SZ) 200 mg tablet, 56 1053231000168109 Lamotrigine (SZ) 200 mg tablet 1053131000168104 Lamotrigine (SZ) 1053131000168104 Lamotrigine (SZ) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +20501011000036103 Metformin Hydrochloride (Chemmart) 850 mg tablet, 60, blister pack 78620 13701011000036102 Metformin Hydrochloride (Chemmart) 850 mg tablet, 60 6983011000036100 Metformin Hydrochloride (Chemmart) 850 mg tablet 18621000168105 Metformin Hydrochloride (Chemmart) 18621000168105 Metformin Hydrochloride (Chemmart) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +900211000168109 Amlodipine (Ran) 10 mg tablet, 30, blister pack 195704 900201000168106 Amlodipine (Ran) 10 mg tablet, 30 900191000168108 Amlodipine (Ran) 10 mg tablet 900181000168105 Amlodipine (Ran) 900181000168105 Amlodipine (Ran) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +86072011000036104 Ezovir 250 mg film-coated tablet, 56, blister pack 157788 85731011000036108 Ezovir 250 mg film-coated tablet, 56 85363011000036103 Ezovir 250 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +828511000168106 Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 198854 828501000168108 Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack 828481000168104 Istodax (inert substance) diluent, 2 mL vial 154601000036101 Istodax 154601000036101 Istodax 828491000168101 romidepsin 10 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +828511000168106 Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 198854 828501000168108 Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack 155121000036102 Istodax (romidepsin 10 mg) powder for injection, 10 mg vial 154601000036101 Istodax 154601000036101 Istodax 828491000168101 romidepsin 10 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 155131000036100 romidepsin 10 mg injection, vial 157021000036105 romidepsin +865821000168100 Amitriptyline (PN) 10 mg tablet, 250, bottle 232147 865811000168107 Amitriptyline (PN) 10 mg tablet, 250 865751000168103 Amitriptyline (PN) 10 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +1009451000168105 Rivastigmine 10 (Apo) 9.5 mg/24 hours patch, 30, sachet 233740 1009441000168108 Rivastigmine 10 (Apo) 9.5 mg/24 hours patch, 30 1009411000168109 Rivastigmine 10 (Apo) 9.5 mg/24 hours patch 1009401000168106 Rivastigmine 10 (Apo) 1009401000168106 Rivastigmine 10 (Apo) 38683011000036108 rivastigmine 9.5 mg/24 hours patch, 30 37923011000036109 rivastigmine 9.5 mg/24 hours patch 21413011000036101 rivastigmine +69170011000036100 Sodium Thiosulfate (DBL) 25% (12.5 g/50 mL) injection solution, 50 mL vial 16292 66970011000036109 Sodium Thiosulfate (DBL) 25% (12.5 g/50 mL) injection solution, 50 mL vial 65304011000036100 Sodium Thiosulfate (DBL) 25% (12.5 g/50 mL) injection solution, 50 mL vial 65009011000036103 Sodium Thiosulfate (DBL) 65009011000036103 Sodium Thiosulfate (DBL) 71543011000036109 sodium thiosulfate pentahydrate 25% (12.5 g/50 mL) injection, 50 mL vial 70052011000036105 sodium thiosulfate pentahydrate 25% (12.5 g/50 mL) injection, vial 69828011000036108 sodium thiosulfate +60466011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 3 sachets 150167 56424011000036104 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 3 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63356011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 3 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +61434011000036100 Imodium Melt 2 mg orally disintegrating tablet, 6, blister pack 83176 57359011000036108 Imodium Melt 2 mg orally disintegrating tablet, 6 54283011000036103 Imodium Melt 2 mg orally disintegrating tablet 7341000168106 Imodium Melt 7341000168106 Imodium Melt 47751000036108 loperamide hydrochloride 2 mg orally disintegrating tablet, 6 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +933230701000036107 Valaciclovir (Generic Health) 500 mg film-coated tablet, 56, blister pack 170178 933224811000036108 Valaciclovir (Generic Health) 500 mg film-coated tablet, 56 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 933224821000036101 valaciclovir 500 mg tablet, 56 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +81070011000036100 Gabapentin (Chemmart) 100 mg hard capsule, 100, bottle 151317 80579011000036100 Gabapentin (Chemmart) 100 mg hard capsule, 100 80197011000036106 Gabapentin (Chemmart) 100 mg hard capsule 39677011000036105 Gabapentin (Chemmart) 39677011000036105 Gabapentin (Chemmart) 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +20510011000036108 Crixivan 100 mg capsule, 180, bottle 78700 13710011000036107 Crixivan 100 mg capsule, 180 6992011000036108 Crixivan 100 mg capsule 3537011000036103 Crixivan 3537011000036103 Crixivan 27892011000036104 indinavir 100 mg capsule, 180 23217011000036101 indinavir 100 mg capsule 21424011000036107 indinavir +170911000036103 Azathioprine (Apo) 25 mg film-coated tablet, 100, blister pack 205759 170151000036102 Azathioprine (Apo) 25 mg film-coated tablet, 100 168871000036105 Azathioprine (Apo) 25 mg film-coated tablet 168711000036105 Azathioprine (Apo) 168711000036105 Azathioprine (Apo) 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +937751000168108 Famciclovir (FBM) 250 mg film-coated tablet, 14, blister pack 177000 937741000168106 Famciclovir (FBM) 250 mg film-coated tablet, 14 937691000168109 Famciclovir (FBM) 250 mg film-coated tablet 937681000168106 Famciclovir (FBM) 937681000168106 Famciclovir (FBM) 86449011000036103 famciclovir 250 mg tablet, 14 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +20089011000036102 Telfast 60 mg film-coated tablet, 20, blister pack 70949 13316011000036109 Telfast 60 mg film-coated tablet, 20 6602011000036107 Telfast 60 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 27686011000036106 fexofenadine hydrochloride 60 mg tablet, 20 23023011000036105 fexofenadine hydrochloride 60 mg tablet 21394011000036108 fexofenadine +19182011000036100 Ralovera 10 mg uncoated tablet, 100, bottle 46534 12477011000036102 Ralovera 10 mg uncoated tablet, 100 5334011000036103 Ralovera 10 mg uncoated tablet 4418011000036101 Ralovera 4418011000036101 Ralovera 27144011000036107 medroxyprogesterone acetate 10 mg tablet, 100 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +1064431000168104 Paracetamol plus Codeine and Calmative (Discount Drug Stores) uncoated tablet, 40, blister pack 241852 1064421000168102 Paracetamol plus Codeine and Calmative (Discount Drug Stores) uncoated tablet, 40 1064391000168109 Paracetamol plus Codeine and Calmative (Discount Drug Stores) uncoated tablet 1064381000168106 Paracetamol plus Codeine and Calmative (Discount Drug Stores) 1064381000168106 Paracetamol plus Codeine and Calmative (Discount Drug Stores) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +43692011000036100 Zydol SR 50 mg modified release tablet, 60, blister pack 121849 41267011000036105 Zydol SR 50 mg modified release tablet, 60 39868011000036107 Zydol SR 50 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 46203011000036104 tramadol hydrochloride 50 mg modified release tablet, 60 22133011000036107 tramadol hydrochloride 50 mg modified release tablet 21486011000036105 tramadol +718751000168107 Poly Gel 0.3% eye gel, 30 x 500 mg unit doses, ampoule 718741000168105 Poly Gel 0.3% eye gel, 30 x 500 mg unit doses 718721000168104 Poly Gel 0.3% eye gel, 500 mg unit dose 35436011000036104 Poly Gel 35436011000036104 Poly Gel 718731000168101 carbomer-974P 0.3% eye gel, 30 x 500 mg unit doses 718711000168106 carbomer-974P 0.3% eye gel, unit dose 718701000168108 carbomer-974P +77292011000036104 Painstop for Children Night-Time Pain Reliever oral liquid solution, 100 mL, bottle 20864 76708011000036106 Painstop for Children Night-Time Pain Reliever oral liquid solution, 100 mL 76129011000036101 Painstop for Children Night-Time Pain Reliever oral liquid solution, 5 mL 11911000168101 Painstop for Children Night-Time Pain Reliever 11911000168101 Painstop for Children Night-Time Pain Reliever 78222011000036103 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL + promethazine hydrochloride 6.5 mg/5 mL oral liquid, 100 mL 77551011000036108 paracetamol 120 mg/5 mL + codeine phosphate hemihydrate 5 mg/5 mL + promethazine hydrochloride 6.5 mg/5 mL oral liquid 77466011000036104 paracetamol + codeine + promethazine +104521000036101 Irbesartan (GA) 300 mg film-coated tablet, 30, blister pack 192805 101731000036107 Irbesartan (GA) 300 mg film-coated tablet, 30 98281000036101 Irbesartan (GA) 300 mg film-coated tablet 97991000036108 Irbesartan (GA) 97991000036108 Irbesartan (GA) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +19301011000036103 Tazac Pulvule 150 mg hard capsule, 60, blister pack 49325 12591011000036105 Tazac Pulvule 150 mg hard capsule, 60 5839011000036104 Tazac Pulvule 150 mg hard capsule 40761000168103 Tazac Pulvule 40761000168103 Tazac Pulvule 28206011000036101 nizatidine 150 mg capsule, 60 23518011000036109 nizatidine 150 mg capsule 21421011000036109 nizatidine +146291000036101 Sevikar HCT 40/10/12.5 film-coated tablet, 10, blister pack 199005 144951000036109 Sevikar HCT 40/10/12.5 film-coated tablet, 10 143571000036109 Sevikar HCT 40/10/12.5 film-coated tablet 25691000168107 Sevikar HCT 40/10/12.5 25691000168107 Sevikar HCT 40/10/12.5 144961000036107 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 12.5 mg tablet, 10 143581000036106 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 12.5 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +854261000168100 Aliquen 100 mg film-coated tablet, 20, blister pack 204856 854251000168102 Aliquen 100 mg film-coated tablet, 20 854241000168104 Aliquen 100 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +116261000036103 Hair Revive Extra Strength 5% application, 2 x 60 mL, bottles 137251 114511000036106 Hair Revive Extra Strength 5% application, 2 x 60 mL 112751000036105 Hair Revive Extra Strength 5% application 52991000168108 Hair Revive Extra Strength 52991000168108 Hair Revive Extra Strength 63773011000036103 minoxidil 5% application, 2 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +68716011000036101 Vosol Complete Care for Swimmer's Ear 2.8% ear drops solution, 35 mL, bottle 10139 66462011000036103 Vosol Complete Care for Swimmer's Ear 2.8% ear drops solution, 35 mL 65536011000036102 Vosol Complete Care for Swimmer's Ear 2.8% ear drops solution 49621000168105 Vosol Complete Care for Swimmer's Ear 49621000168105 Vosol Complete Care for Swimmer's Ear 71203011000036106 propylene glycol diacetate 2.8% ear drops, 35 mL 69900011000036108 propylene glycol diacetate 2.8% ear drops 69798011000036100 propylene glycol +741831000168107 Jakavi 10 mg tablet, 14, blister pack 232702 741821000168109 Jakavi 10 mg tablet, 14 741771000168102 Jakavi 10 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741811000168102 ruxolitinib 10 mg tablet, 14 741761000168108 ruxolitinib 10 mg tablet 146491000036100 ruxolitinib +931409011000036100 Advate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100384 930543011000036107 Advate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 929934011000036104 Advate (octocog alfa 250 units) powder for injection, 250 units vial 65054011000036106 Advate 65054011000036106 Advate 932332011000036107 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 922151011000036106 octocog alfa 250 units injection, vial 69843011000036100 octocog alfa +931409011000036100 Advate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 100384 930543011000036107 Advate (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 633331000168108 Advate (inert substance) diluent, 5 mL vial 65054011000036106 Advate 65054011000036106 Advate 932332011000036107 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +69743011000036102 Febridol Clear 500 mg effervescent tablet, 20, strip pack 94177 67542011000036103 Febridol Clear 500 mg effervescent tablet, 20 65693011000036107 Febridol Clear 500 mg effervescent tablet 57811000168107 Febridol Clear 57811000168107 Febridol Clear 83211000036104 paracetamol 500 mg effervescent tablet, 20 83101000036106 paracetamol 500 mg effervescent tablet 21433011000036107 paracetamol +665521000168107 Truebalance diagnostic strip, 100, bottle 665511000168100 Truebalance diagnostic strip, 100 933219491000036106 Truebalance diagnostic strip 933219331000036102 Truebalance 933219331000036102 Truebalance 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +18110011000036104 Dilantin Paediatric 30 mg/5 mL oral liquid suspension, 500 mL, bottle 14309 12022011000036106 Dilantin Paediatric 30 mg/5 mL oral liquid suspension, 500 mL 5588011000036101 Dilantin Paediatric 30 mg/5 mL oral liquid suspension, 5 mL 56761000168103 Dilantin Paediatric 56761000168103 Dilantin Paediatric 26856011000036105 phenytoin 30 mg/5 mL oral liquid, 500 mL 22237011000036100 phenytoin 30 mg/5 mL oral liquid 21672011000036100 phenytoin +900301000168104 Amlodipine (Ran) 5 mg tablet, 30, blister pack 195703 900291000168100 Amlodipine (Ran) 5 mg tablet, 30 900281000168103 Amlodipine (Ran) 5 mg tablet 900181000168105 Amlodipine (Ran) 900181000168105 Amlodipine (Ran) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +923700011000036109 Grandicrit 10 000 units/mL injection solution, 1 mL syringe 147848 923306011000036106 Grandicrit 10 000 units/mL injection solution, 1 mL syringe 922992011000036106 Grandicrit 10 000 units/mL injection solution, syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924121011000036103 epoetin lambda 10 000 units/mL injection, 1 mL syringe 923951011000036101 epoetin lambda 10 000 units/mL injection, syringe 923930011000036107 epoetin lambda +17897011000036103 Microlax enema, 4 x 5 mL, tube 14480 12031011000036103 Microlax enema, 4 x 5 mL 5374011000036101 Microlax enema, 5 mL 3336011000036104 Microlax 3336011000036104 Microlax 26865011000036109 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema, 4 x 5 mL 22244011000036107 sodium citrate dihydrate 450 mg/5 mL + lauryl sulfoacetate sodium 45 mg/5 mL + sorbitol 3.125 g/5 mL enema 21630011000036102 citric acid + lauryl sulfoacetate sodium + sorbitol +1052931000168107 Palexia SR 200 mg modified release tablet, 10, blister pack 165356 1052921000168109 Palexia SR 200 mg modified release tablet, 10 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052911000168102 tapentadol 200 mg modified release tablet, 10 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +69016011000036100 Glyade MR 30 mg modified release tablet, 100, blister pack 139728 66818011000036105 Glyade MR 30 mg modified release tablet, 100 65203011000036106 Glyade MR 30 mg modified release tablet 27901000168100 Glyade MR 27901000168100 Glyade MR 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +84341011000036100 Cold and Flu Day and Night Relief PE (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24, blister pack 160388 84034011000036104 Cold and Flu Day and Night Relief PE (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24 83663011000036104 Cold and Flu Day and Night Relief PE (Night) (Your Pharmacy) uncoated tablet 52421000168100 Cold and Flu Day and Night Relief PE (Your Pharmacy) 52651000168105 Cold and Flu Day and Night Relief PE (Night) (Your Pharmacy) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +84341011000036100 Cold and Flu Day and Night Relief PE (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24, blister pack 160388 84034011000036104 Cold and Flu Day and Night Relief PE (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24 83662011000036106 Cold and Flu Day and Night Relief PE (Day) (Your Pharmacy) uncoated tablet 52421000168100 Cold and Flu Day and Night Relief PE (Your Pharmacy) 52541000168107 Cold and Flu Day and Night Relief PE (Day) (Your Pharmacy) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +21040011000036107 Ciprofloxacin (GenRx) 500 mg film-coated tablet, 14, blister pack 135912 14185011000036109 Ciprofloxacin (GenRx) 500 mg film-coated tablet, 14 7466011000036108 Ciprofloxacin (GenRx) 500 mg film-coated tablet 3968011000036100 Ciprofloxacin (GenRx) 3968011000036100 Ciprofloxacin (GenRx) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +21040011000036107 Ciprofloxacin (GenRx) 500 mg film-coated tablet, 14, blister pack 96873 14185011000036109 Ciprofloxacin (GenRx) 500 mg film-coated tablet, 14 7466011000036108 Ciprofloxacin (GenRx) 500 mg film-coated tablet 3968011000036100 Ciprofloxacin (GenRx) 3968011000036100 Ciprofloxacin (GenRx) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +61245011000036104 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 100 mL, bottle 77013 57181011000036106 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 100 mL 54227011000036100 Benadryl for the Family Dry Cough and Nasal Congestion oral liquid solution, 5 mL 22861000168109 Benadryl for the Family Dry Cough and Nasal Congestion 22861000168109 Benadryl for the Family Dry Cough and Nasal Congestion 63753011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 100 mL 62073011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61751011000036109 dextromethorphan + pseudoephedrine +43597011000036105 Talohexal 20 mg film-coated tablet, 28, bottle 101690 11226011000036101 Talohexal 20 mg film-coated tablet, 28 5923011000036108 Talohexal 20 mg film-coated tablet 3441011000036102 Talohexal 3441011000036102 Talohexal 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +38111000036105 Escitalopram (Generic Health) 5 mg film-coated tablet, 28, blister pack 165832 34441000036105 Escitalopram (Generic Health) 5 mg film-coated tablet, 28 32791000036103 Escitalopram (Generic Health) 5 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +828281000168103 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 60880 828271000168101 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 641881000168104 Hiberix (inert substance) diluent, 0.5 mL vial 73759011000036104 Hiberix 73759011000036104 Hiberix 828261000168107 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 634321000168107 inert substance diluent, 0.5 mL vial 21220011000036103 inert substance +828281000168103 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 60880 828271000168101 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 828251000168105 Hiberix (Haemophilus influenzae type b conjugate (PRP-T) vaccine) powder for injection, 10 microgram vial 73759011000036104 Hiberix 73759011000036104 Hiberix 828261000168107 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 828231000168104 Haemophilus influenzae type b conjugate (PRP-T) vaccine +1122071000168103 Fluquadri 2018 injection suspension, 10 x 0.5 mL syringes 213963 1122061000168109 Fluquadri 2018 injection suspension, 10 x 0.5 mL syringes 1122021000168104 Fluquadri 2018 injection suspension, 0.5 mL syringe 1122011000168106 Fluquadri 2018 1122011000168106 Fluquadri 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +848411000168107 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle 229889 848401000168109 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 24 848371000168106 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet 692151000168100 Calcium (Actavis) 692151000168100 Calcium (Actavis) 847931000168108 calcium carbonate 1.25 g (calcium 500 mg) tablet, 24 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +86140011000036105 Gabatine 600 mg film-coated tablet, 100, blister pack 161570 85748011000036100 Gabatine 600 mg film-coated tablet, 100 85373011000036105 Gabatine 600 mg film-coated tablet 39179011000036102 Gabatine 39179011000036102 Gabatine 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +1078891000168104 Atostat 40 mg film-coated tablet, 30, bottle 194110 1078791000168109 Atostat 40 mg film-coated tablet, 30 1078781000168106 Atostat 40 mg film-coated tablet 1078191000168108 Atostat 1078191000168108 Atostat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +37343011000036100 Hydroform cream, 2 g, tube 10317 36617011000036109 Hydroform cream, 2 g 36163011000036102 Hydroform cream 27611000168107 Hydroform 27611000168107 Hydroform 38537011000036104 hydrocortisone 1% + clioquinol 1% cream, 2 g 37822011000036107 hydrocortisone 1% + clioquinol 1% cream 37775011000036102 hydrocortisone + clioquinol +82869011000036101 Mircera 120 microgram/0.3 mL injection solution, 0.3 mL syringe 153807 82776011000036103 Mircera 120 microgram/0.3 mL injection solution, 0.3 mL syringe 82686011000036102 Mircera 120 microgram/0.3 mL injection solution, 0.3 mL syringe 82658011000036106 Mircera 82658011000036106 Mircera 82996011000036102 epoetin beta 120 microgram/0.3 mL injection, 0.3 mL syringe 82933011000036101 epoetin beta 120 microgram/0.3 mL injection, syringe 21625011000036109 epoetin beta +839771000168102 Adacel Polio injection suspension, 0.5 mL vial 106565 839761000168108 Adacel Polio injection suspension, 0.5 mL vial 839741000168109 Adacel Polio injection suspension, 0.5 mL vial 73693011000036101 Adacel Polio 73693011000036101 Adacel Polio 839751000168106 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial 839731000168100 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial 839601000168101 diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine +170831000036102 Clobex 0.05% shampoo, 125 mL, bottle 188346 169971000036107 Clobex 0.05% shampoo, 125 mL 169001000036102 Clobex 0.05% shampoo 168791000036100 Clobex 168791000036100 Clobex 169981000036109 clobetasol propionate 0.05% shampoo, 125 mL 169021000036107 clobetasol propionate 0.05% shampoo 171061000036106 clobetasol +17841000036106 Olanzapine (Synthon) 2.5 mg tablet, 28, blister pack 152178 16601000036107 Olanzapine (Synthon) 2.5 mg tablet, 28 15471000036105 Olanzapine (Synthon) 2.5 mg tablet 15191000036102 Olanzapine (Synthon) 15191000036102 Olanzapine (Synthon) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +19559011000036105 Loceryl Nail Lacquer 5% application, 5 mL, bottle 57051 12830011000036106 Loceryl Nail Lacquer 5% application, 5 mL 6121011000036107 Loceryl Nail Lacquer 5% application 59341000168105 Loceryl Nail Lacquer 59341000168105 Loceryl Nail Lacquer 27384011000036107 amorolfine 5% application, 5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +931971000168105 Centevo 50/12.5/200 mg film-coated tablet, 10, bottle 238152 931961000168104 Centevo 50/12.5/200 mg film-coated tablet, 10 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 931951000168101 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 10 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +695751000168105 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles 48499 695741000168108 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles 695721000168102 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 100 mL bottle 20471000168101 Ultravist-370 20471000168101 Ultravist-370 695731000168104 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 100 mL bottles 695711000168109 iopromide 769 mg (iodine 370 mg)/mL injection, 100 mL bottle 77425011000036101 iopromide +18214011000036107 Naprosyn 125 mg/5 mL oral liquid suspension, 474 mL, bottle 10055 11150011000036103 Naprosyn 125 mg/5 mL oral liquid suspension, 474 mL 5472011000036103 Naprosyn 125 mg/5 mL oral liquid suspension, 5 mL 15611000168108 Naprosyn 15611000168108 Naprosyn 26538011000036109 naproxen 125 mg/5 mL oral liquid, 474 mL 21947011000036101 naproxen 125 mg/5 mL oral liquid 21304011000036105 naproxen +969421000168105 Aripiprazole (AN) 20 mg uncoated tablet, 30, blister pack 198195 969411000168103 Aripiprazole (AN) 20 mg uncoated tablet, 30 969381000168101 Aripiprazole (AN) 20 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +44625011000036104 Levitra 5 mg film-coated tablet, 1, blister pack 90498 42078011000036107 Levitra 5 mg film-coated tablet, 1 40348011000036103 Levitra 5 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46845011000036104 vardenafil 5 mg tablet, 1 45332011000036108 vardenafil 5 mg tablet 44856011000036100 vardenafil +61039011000036107 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 12, blister pack 67363 56982011000036103 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 12 54147011000036101 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet 53575011000036100 Period Pain Relief (Pharmacist Formula) 53575011000036100 Period Pain Relief (Pharmacist Formula) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +891671000168103 Candesartan HCT 32/12.5 (Alphapharm) tablet, 7, blister pack 206487 891661000168109 Candesartan HCT 32/12.5 (Alphapharm) tablet, 7 891651000168107 Candesartan HCT 32/12.5 (Alphapharm) tablet 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 891641000168105 Candesartan HCT 32/12.5 (Alphapharm) 83493011000036104 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 7 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +20586011000036109 C-Flox 250 mg film-coated tablet, 14, blister pack 80524 13774011000036109 C-Flox 250 mg film-coated tablet, 14 7060011000036102 C-Flox 250 mg film-coated tablet 3474011000036103 C-Flox 3474011000036103 C-Flox 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +20586011000036109 C-Flox 250 mg film-coated tablet, 14, blister pack 195202 13774011000036109 C-Flox 250 mg film-coated tablet, 14 7060011000036102 C-Flox 250 mg film-coated tablet 3474011000036103 C-Flox 3474011000036103 C-Flox 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +914691000168105 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet, 10, blister pack 198390 914681000168107 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet, 10 914651000168100 Candesartan HCTZ 16/12.5 (DRLA) uncoated tablet 914641000168102 Candesartan HCTZ 16/12.5 (DRLA) 914641000168102 Candesartan HCTZ 16/12.5 (DRLA) 890831000168109 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 10 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1003971000168106 Losartan (Apo) 50 mg film-coated tablet, 1000, bottle 201807 1003961000168100 Losartan (Apo) 50 mg film-coated tablet, 1000 1003941000168104 Losartan (Apo) 50 mg film-coated tablet 1003821000168102 Losartan (Apo) 1003821000168102 Losartan (Apo) 1003951000168102 losartan potassium 50 mg tablet, 1000 45171011000036109 losartan potassium 50 mg tablet 44887011000036108 losartan +68715011000036108 Glucose (Pfizer (Perth)) 5% (5 g/100 mL) intravenous infusion injection, 10 x 100 mL vials 11371 66611011000036107 Glucose (Pfizer (Perth)) 5% (5 g/100 mL) intravenous infusion injection, 10 x 100 mL vials 65530011000036100 Glucose (Pfizer (Perth)) 5% (5 g/100 mL) intravenous infusion injection, 100 mL vial 64949011000036107 Glucose (Pfizer (Perth)) 64949011000036107 Glucose (Pfizer (Perth)) 71333011000036106 glucose 5% (5 g/100 mL) injection, 10 x 100 mL vials 69978011000036101 glucose 5% (5 g/100 mL) injection, vial 21354011000036103 glucose +59841011000036100 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 24, blister pack 114919 55803011000036104 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 24 53680011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet 29011000168105 Paracetamol Extra Tabsule (Guardian) 29011000168105 Paracetamol Extra Tabsule (Guardian) 63890011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 24 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +933213361000036105 Citalopram (IPCA) 40 mg film-coated tablet, 500, bottle 158855 933202881000036102 Citalopram (IPCA) 40 mg film-coated tablet, 500 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202891000036100 citalopram 40 mg tablet, 500 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +926191000168100 Stilnox 5 mg film-coated tablet, 7, blister pack 58709 926181000168103 Stilnox 5 mg film-coated tablet, 7 926131000168104 Stilnox 5 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 926171000168101 zolpidem tartrate 5 mg tablet, 7 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +750461000168107 Antenex 2 mg uncoated tablet, 90, blister pack 17604 750451000168105 Antenex 2 mg uncoated tablet, 90 32247011000036100 Antenex 2 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 750441000168108 diazepam 2 mg tablet, 90 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +998201000168105 Desloratadine (Apo) 5 mg film-coated tablet, 15, blister pack 202823 998191000168107 Desloratadine (Apo) 5 mg film-coated tablet, 15 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72020011000036104 desloratadine 5 mg tablet, 15 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +871441000168103 Amitriptyline (AC) 50 mg tablet, 1000, blister pack 232110 862991000168100 Amitriptyline (AC) 50 mg tablet, 1000 862931000168104 Amitriptyline (AC) 50 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +888741000168105 Bosentan (Astron) 125 mg film-coated tablet, 100, bottle 235889 888731000168101 Bosentan (Astron) 125 mg film-coated tablet, 100 888701000168108 Bosentan (Astron) 125 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 884161000168104 bosentan 125 mg tablet, 100 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +37540011000036106 Amlodipine (GA) 5 mg uncoated tablet, 30, blister pack 139275 36808011000036101 Amlodipine (GA) 5 mg uncoated tablet, 30 36054011000036100 Amlodipine (GA) 5 mg uncoated tablet 35898011000036101 Amlodipine (GA) 35898011000036101 Amlodipine (GA) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +787951000168108 Atelvia Once-a-Month 150 mg film-coated tablet, 1, blister pack 163755 787941000168106 Atelvia Once-a-Month 150 mg film-coated tablet, 1 787931000168102 Atelvia Once-a-Month 150 mg film-coated tablet 787921000168100 Atelvia Once-a-Month 787921000168100 Atelvia Once-a-Month 78194011000036101 risedronate sodium 150 mg tablet, 1 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +717381000168100 Pemzo 20 mg enteric capsule, 100, bottle 167315 716261000168103 Pemzo 20 mg enteric capsule, 100 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716251000168100 omeprazole 20 mg enteric capsule, 100 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +73282011000036105 Jurnista 16 mg modified release tablet, 100, blister pack 141533 73080011000036103 Jurnista 16 mg modified release tablet, 100 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73478011000036102 hydromorphone hydrochloride 16 mg modified release tablet, 100 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +50536011000036108 Tegaderm Island Transparent (3582) 5 cm x 7 cm dressing, 1, carton 49344011000036106 Tegaderm Island Transparent (3582) 5 cm x 7 cm dressing, 1 48764011000036104 Tegaderm Island Transparent (3582) 5 cm x 7 cm dressing 41201000168103 Tegaderm Island Transparent (3582) 41201000168103 Tegaderm Island Transparent (3582) 51323011000036107 dressing film island 5 cm x 7 cm dressing, 1 50850011000036105 dressing film island 5 cm x 7 cm dressing 50727011000036109 dressing film island +1041281000168109 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device 122852 1041271000168106 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device 1041251000168102 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device 41101000168107 Aranesp Sureclick 41101000168107 Aranesp Sureclick 1041261000168100 darbepoetin alfa 100 microgram/0.5 mL injection, 0.5 mL injection device 1041241000168104 darbepoetin alfa 100 microgram/0.5 mL injection, injection device 21234011000036105 darbepoetin alfa +798141000168107 Achromycin 250 mg hard capsule, 24, blister pack 76906 798131000168103 Achromycin 250 mg hard capsule, 24 798111000168108 Achromycin 250 mg hard capsule 798081000168103 Achromycin 798081000168103 Achromycin 798121000168101 tetracycline hydrochloride 250 mg capsule, 24 798101000168105 tetracycline hydrochloride 250 mg capsule 798091000168100 tetracycline +1021411000168100 Voriconazole (Apo) 50 mg film-coated tablet, 50, blister pack 238281 1021401000168103 Voriconazole (Apo) 50 mg film-coated tablet, 50 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46818011000036102 voriconazole 50 mg tablet, 50 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +55381000036109 Rebetol 200 mg hard capsule, 112, blister pack 155098 51841000036106 Rebetol 200 mg hard capsule, 112 7298011000036106 Rebetol 200 mg hard capsule 3301011000036102 Rebetol 3301011000036102 Rebetol 51851000036109 ribavirin 200 mg capsule, 112 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +802481000168106 Abilify ODT 10 mg orally disintegrating tablet, 20, blister pack 128893 802471000168108 Abilify ODT 10 mg orally disintegrating tablet, 20 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802461000168102 aripiprazole 10 mg orally disintegrating tablet, 20 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +933230621000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet, 112, blister pack 170178 933224681000036101 Valaciclovir (Generic Health) 500 mg film-coated tablet, 112 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 933224691000036104 valaciclovir 500 mg tablet, 112 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +84377011000036107 Paracetamol (Priceline) 500 mg uncoated tablet, 48, blister pack 166697 84069011000036109 Paracetamol (Priceline) 500 mg uncoated tablet, 48 83692011000036109 Paracetamol (Priceline) 500 mg uncoated tablet 53428011000036101 Paracetamol (Priceline) 53428011000036101 Paracetamol (Priceline) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +60492011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 60 mL, bottle 150324 56450011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension, 60 mL 53923011000036108 Nurofen for Children Baby 3+ Months strawberry 40 mg/mL oral liquid suspension 20021000168109 Nurofen for Children Baby 3+ Months 20021000168109 Nurofen for Children Baby 3+ Months 63365011000036107 ibuprofen 40 mg/mL oral liquid, 60 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +929081011000036103 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 7, blister pack 166910 928442011000036106 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet, 7 927984011000036103 Pioglitazone (Terry White Chemists) 45 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +17921000036109 Syquet 25 mg film-coated tablet, 60, blister pack 162401 16661000036106 Syquet 25 mg film-coated tablet, 60 15291000036108 Syquet 25 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +17921000036109 Syquet 25 mg film-coated tablet, 60, blister pack 204152 16661000036106 Syquet 25 mg film-coated tablet, 60 15291000036108 Syquet 25 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1029951000168105 Aten 25 mg film-coated tablet, 120, blister pack 197714 1029941000168108 Aten 25 mg film-coated tablet, 120 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029931000168104 atenolol 25 mg tablet, 120 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +19919011000036105 Ciloquin 0.3% eye drops solution, 5 mL, bottle 66567 13164011000036109 Ciloquin 0.3% eye drops solution, 5 mL 6447011000036103 Ciloquin 0.3% eye drops solution 3544011000036105 Ciloquin 3544011000036105 Ciloquin 27583011000036108 ciprofloxacin 0.3% eye drops, 5 mL 22922011000036101 ciprofloxacin 0.3% eye drops 21245011000036105 ciprofloxacin +865581000168104 Amitriptyline (GPPL) 50 mg tablet, 50, blister pack 232138 865571000168102 Amitriptyline (GPPL) 50 mg tablet, 50 865541000168109 Amitriptyline (GPPL) 50 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1122051000168107 Fluquadri 2018 injection suspension, 5 x 0.5 mL syringes 213963 1122041000168105 Fluquadri 2018 injection suspension, 5 x 0.5 mL syringes 1122021000168104 Fluquadri 2018 injection suspension, 0.5 mL syringe 1122011000168106 Fluquadri 2018 1122011000168106 Fluquadri 2018 1122031000168101 influenza quadrivalent adult vaccine 2018 injection, 5 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +1078731000168105 Atomoxetine (GPPL) 40 mg hard capsule, 14, blister pack 234840 1078721000168107 Atomoxetine (GPPL) 40 mg hard capsule, 14 1078691000168103 Atomoxetine (GPPL) 40 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830671000168100 atomoxetine 40 mg capsule, 14 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +17914011000036100 Simvahexal 10 mg film-coated tablet, 30, blister pack 114797 14204011000036109 Simvahexal 10 mg film-coated tablet, 30 7485011000036103 Simvahexal 10 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +60869011000036105 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 100 mL, bottle 59271 56823011000036108 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 100 mL 54090011000036102 Decongestant and Expectorant Cough Medicine (Pharmacist) oral liquid solution, 10 mL 10841000168100 Decongestant and Expectorant Cough Medicine (Pharmacist) 10841000168100 Decongestant and Expectorant Cough Medicine (Pharmacist) 63800011000036104 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62082011000036107 guaifenesin 200 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +17931000036106 Syquet 100 mg film-coated tablet, 90, blister pack 162402 16671000036103 Syquet 100 mg film-coated tablet, 90 15301000036107 Syquet 100 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +17931000036106 Syquet 100 mg film-coated tablet, 90, blister pack 203592 16671000036103 Syquet 100 mg film-coated tablet, 90 15301000036107 Syquet 100 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +805131000168107 Folotyn 40 mg/2 mL injection solution, 2 mL vial 192492 805121000168109 Folotyn 40 mg/2 mL injection solution, 2 mL vial 805101000168100 Folotyn 40 mg/2 mL injection solution, 2 mL vial 805071000168109 Folotyn 805071000168109 Folotyn 805111000168102 pralatrexate 40 mg/2 mL injection, 2 mL vial 805091000168105 pralatrexate 40 mg/2 mL injection, vial 805081000168107 pralatrexate +725881000168109 TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches 725871000168106 TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches 725851000168102 TYR Cooler 10 oral liquid solution, 87 mL pouch 63131000168108 TYR Cooler 10 63131000168108 TYR Cooler 10 725861000168100 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 87 mL pouches 725841000168104 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 87 mL pouch 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +44566011000036107 Bicor 1.25 mg film-coated tablet, 42, blister pack 81603 42019011000036108 Bicor 1.25 mg film-coated tablet, 42 40323011000036105 Bicor 1.25 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 46792011000036103 bisoprolol fumarate 1.25 mg tablet, 42 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +12541000036105 Letrozole (Terry White Chemists) 2.5 mg film-coated tablet, 30, blister pack 163827 7411000036105 Letrozole (Terry White Chemists) 2.5 mg film-coated tablet, 30 3321000036103 Letrozole (Terry White Chemists) 2.5 mg film-coated tablet 571000036105 Letrozole (Terry White Chemists) 571000036105 Letrozole (Terry White Chemists) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +965241000168102 Clarithromycin (GenRx) 500 mg film-coated tablet, 20, blister pack 134857 965231000168106 Clarithromycin (GenRx) 500 mg film-coated tablet, 20 965181000168100 Clarithromycin (GenRx) 500 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 51514011000036103 clarithromycin 500 mg tablet, 20 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +20072011000036103 Floxsig 250 mg capsule, 24, bottle 70641 13302011000036107 Floxsig 250 mg capsule, 24 6586011000036103 Floxsig 250 mg capsule 4443011000036104 Floxsig 4443011000036104 Floxsig 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +104361000036102 Irbesartan (RBX) 75 mg film-coated tablet, 30, blister pack 190475 101571000036100 Irbesartan (RBX) 75 mg film-coated tablet, 30 98151000036101 Irbesartan (RBX) 75 mg film-coated tablet 98101000036102 Irbesartan (RBX) 98101000036102 Irbesartan (RBX) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +969491000168107 Aripiprazole (AN) 30 mg uncoated tablet, 28, blister pack 198208 969481000168109 Aripiprazole (AN) 30 mg uncoated tablet, 28 969471000168106 Aripiprazole (AN) 30 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787781000168103 aripiprazole 30 mg tablet, 28 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +995231000168109 Cepacol Antibacterial Orange Citrus lozenge, 2, blister pack 76287 995221000168106 Cepacol Antibacterial Orange Citrus lozenge, 2 995171000168101 Cepacol Antibacterial Orange Citrus lozenge 37601000168107 Cepacol Antibacterial 37601000168107 Cepacol Antibacterial 995211000168104 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 2 995161000168107 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge 69797011000036101 benzyl alcohol + cetylpyridinium +661111000168109 Risperidone (AN) 4 mg film-coated tablet, 60, blister pack 166685 661101000168106 Risperidone (AN) 4 mg film-coated tablet, 60 661091000168101 Risperidone (AN) 4 mg film-coated tablet 661081000168104 Risperidone (AN) 661081000168104 Risperidone (AN) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +750501000168107 Antenex 5 mg uncoated tablet, 50, blister pack 17605 32370011000036105 Antenex 5 mg uncoated tablet, 50 32248011000036104 Antenex 5 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +839951000168109 Advantan 0.1% cream, 5 g, tube 49380 839941000168107 Advantan 0.1% cream, 5 g 5548011000036107 Advantan 0.1% cream 3513011000036101 Advantan 3513011000036101 Advantan 839931000168103 methylprednisolone aceponate 0.1% cream, 5 g 22586011000036100 methylprednisolone aceponate 0.1% cream 21605011000036100 methylprednisolone +741921000168101 Jakavi 10 mg tablet, 112, blister pack 232702 741911000168108 Jakavi 10 mg tablet, 112 741771000168102 Jakavi 10 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741901000168105 ruxolitinib 10 mg tablet, 112 741761000168108 ruxolitinib 10 mg tablet 146491000036100 ruxolitinib +767681000168105 Microshield Handrub solution, 125 mL, bottle 30945 767671000168107 Microshield Handrub solution, 125 mL 767631000168109 Microshield Handrub solution 65068011000036105 Microshield Handrub 65068011000036105 Microshield Handrub 767661000168101 chlorhexidine gluconate 0.5% + ethanol 70% solution, 125 mL 70161011000036104 chlorhexidine gluconate 0.5% + ethanol 70% solution 69801011000036109 chlorhexidine + ethanol +38071000036103 Escitalopram (MPPL) 5 mg film-coated tablet, 28, blister pack 165830 34401000036107 Escitalopram (MPPL) 5 mg film-coated tablet, 28 33031000036108 Escitalopram (MPPL) 5 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +59858011000036106 Paracetamol Extra (Guardian) uncoated tablet, 96, blister pack 115172 55820011000036103 Paracetamol Extra (Guardian) uncoated tablet, 96 53633011000036106 Paracetamol Extra (Guardian) uncoated tablet 53508011000036102 Paracetamol Extra (Guardian) 53508011000036102 Paracetamol Extra (Guardian) 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +77266011000036103 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials 15473 76682011000036104 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials 76114011000036105 Omnipaque-300 647 mg (iodine 300 mg)/mL injection solution, 10 mL vial 21931000168100 Omnipaque-300 21931000168100 Omnipaque-300 78199011000036100 iohexol 647 mg (iodine 300 mg)/mL injection, 10 x 10 mL vials 77538011000036100 iohexol 647 mg (iodine 300 mg)/mL injection, 10 mL vial 77459011000036103 iohexol +61022011000036100 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 4, blister pack 66743 56965011000036108 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule, 4 54142011000036103 Dimetapp Cold and Flu Day Relief Liquid Cap soft capsule 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 6461000168103 Dimetapp Cold and Flu Day Relief Liquid Cap 63663011000036102 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule, 4 62038011000036103 paracetamol 300 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +763341000168102 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 10 x 2 mL vials 234431 763331000168106 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 10 x 2 mL vials 763281000168103 Tobramycin (Alphapharm) 80 mg/2 mL injection solution, 2 mL vial 763271000168101 Tobramycin (Alphapharm) 763271000168101 Tobramycin (Alphapharm) 46747011000036106 tobramycin 80 mg/2 mL injection, 10 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +828191000168108 Cosentyx 150 mg powder for injection, 1 vial 218798 828181000168105 Cosentyx 150 mg powder for injection, 1 vial 828161000168101 Cosentyx 150 mg powder for injection, 150 mg vial 707151000168107 Cosentyx 707151000168107 Cosentyx 828171000168107 secukinumab 150 mg injection, 1 vial 828151000168103 secukinumab 150 mg injection, vial 707171000168103 secukinumab +982281000168103 Avandia 2 mg film-coated tablet, 112, blister pack 70964 982271000168101 Avandia 2 mg film-coated tablet, 112 982161000168101 Avandia 2 mg film-coated tablet 3736011000036100 Avandia 3736011000036100 Avandia 982261000168107 rosiglitazone 2 mg tablet, 112 982151000168103 rosiglitazone 2 mg tablet 21349011000036100 rosiglitazone +61460011000036104 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 12, blister pack 90630 57385011000036102 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet, 12 54291011000036100 Paracetamol (Nyal) capsule shaped 500 mg uncoated tablet 53173011000036109 Paracetamol (Nyal) 53173011000036109 Paracetamol (Nyal) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +921949011000036109 Urografin 30% intravenous infusion injection, 250 mL bottle 42163 921507011000036103 Urografin 30% intravenous infusion injection, 250 mL bottle 921046011000036106 Urografin 30% intravenous infusion injection, 250 mL bottle 701000168103 Urografin 30% 701000168103 Urografin 30% 922629011000036108 amidotrizoate meglumine 65 g/250 mL + sodium amidotrizoate 10 g/250 mL injection, 250 mL bottle 922119011000036104 amidotrizoate meglumine 65 g/250 mL + sodium amidotrizoate 10 g/250 mL injection, bottle 77441011000036100 amidotrizoic acid +926754011000036100 Nicorette Freshfruit 2 mg chewing gum, 30, blister pack 142476 926153011000036108 Nicorette Freshfruit 2 mg chewing gum, 30 87070011000036102 Nicorette Freshfruit 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 927324011000036103 nicotine 2 mg gum, 30 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +930441000168104 Cavstat 5 mg film-coated tablet, 15, blister pack 234543 930431000168108 Cavstat 5 mg film-coated tablet, 15 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930421000168105 rosuvastatin 5 mg tablet, 15 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1113531000168106 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 10, blister pack 179092 1113521000168108 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 10 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043201000168100 olanzapine 5 mg orally disintegrating tablet, 10 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +986571000168102 Advil Childrens Pain and Fever 2 to 7 Years 100 mg chewable tablet, 20, bottle 178663 986561000168108 Advil Childrens Pain and Fever 2 to 7 Years 100 mg chewable tablet, 20 986541000168109 Advil Childrens Pain and Fever 2 to 7 Years 100 mg chewable tablet 986461000168107 Advil Childrens Pain and Fever 2 to 7 Years 986461000168107 Advil Childrens Pain and Fever 2 to 7 Years 986551000168106 ibuprofen 100 mg chewable tablet, 20 986531000168100 ibuprofen 100 mg chewable tablet 21885011000036105 ibuprofen +60054011000036100 Ibuprofen (Priceline) 200 mg film-coated tablet, 12, blister pack 124621 56016011000036106 Ibuprofen (Priceline) 200 mg film-coated tablet, 12 53759011000036102 Ibuprofen (Priceline) 200 mg film-coated tablet 53413011000036102 Ibuprofen (Priceline) 53413011000036102 Ibuprofen (Priceline) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +667051000168103 Ubistesin 4% / 1 in 200 000 injection solution, 50 x 1.7 mL cartridges 165573 667041000168100 Ubistesin 4% / 1 in 200 000 injection solution, 50 x 1.7 mL cartridges 667021000168106 Ubistesin 4% / 1 in 200 000 injection solution, 1.7 mL cartridge 667001000168102 Ubistesin 4% / 1 in 200 000 667001000168102 Ubistesin 4% / 1 in 200 000 667031000168109 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 200 000 (8.5 microgram/1.7 mL) injection, 50 x 1.7 mL cartridges 667011000168104 articaine hydrochloride 4% (68 mg/1.7 mL) + adrenaline (epinephrine) 1 in 200 000 (8.5 microgram/1.7 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +19516011000036108 Ramace 5 mg uncoated tablet, 30, blister pack 56223 12788011000036103 Ramace 5 mg uncoated tablet, 30 6082011000036100 Ramace 5 mg uncoated tablet 3038011000036104 Ramace 3038011000036104 Ramace 27366011000036101 ramipril 5 mg tablet, 30 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +20740011000036103 Amoxil Duo 1 g film-coated tablet, 14, blister pack 90007 13909011000036106 Amoxil Duo 1 g film-coated tablet, 14 7195011000036103 Amoxil Duo 1 g film-coated tablet 61881000168100 Amoxil Duo 61881000168100 Amoxil Duo 28289011000036109 amoxicillin 1 g tablet, 14 23603011000036106 amoxicillin 1 g tablet 21415011000036100 amoxicillin +19772011000036102 Topamax 25 mg film-coated tablet, 60, blister pack 62709 13030011000036100 Topamax 25 mg film-coated tablet, 60 6317011000036100 Topamax 25 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +925152011000036103 Simvastatin (Pharmacor) 80 mg film-coated tablet, 30, blister pack 123818 924694011000036105 Simvastatin (Pharmacor) 80 mg film-coated tablet, 30 924419011000036108 Simvastatin (Pharmacor) 80 mg film-coated tablet 924384011000036102 Simvastatin (Pharmacor) 924384011000036102 Simvastatin (Pharmacor) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +104681000036104 Irinotecan Hydrochloride Trihydrate (SZ) 40 mg/2 mL concentrated injection, 2 mL vial 173801 101891000036104 Irinotecan Hydrochloride Trihydrate (SZ) 40 mg/2 mL concentrated injection, 2 mL vial 98561000036109 Irinotecan Hydrochloride Trihydrate (SZ) 40 mg/2 mL concentrated injection, 2 mL vial 97971000036109 Irinotecan Hydrochloride Trihydrate (SZ) 97971000036109 Irinotecan Hydrochloride Trihydrate (SZ) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +1021371000168101 Voriconazole (Apo) 50 mg film-coated tablet, 28, blister pack 238281 1021361000168107 Voriconazole (Apo) 50 mg film-coated tablet, 28 1021271000168109 Voriconazole (Apo) 50 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46816011000036101 voriconazole 50 mg tablet, 28 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +933239201000036107 Fentanyl (Sandoz) 50 microgram/hour patch, 3, sachet 152571 933235921000036106 Fentanyl (Sandoz) 50 microgram/hour patch, 3 933234481000036101 Fentanyl (Sandoz) 50 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235931000036108 fentanyl 50 microgram/hour patch, 3 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +972231000168107 Lyzalon 25 mg hard capsule, 20, bottle 224422 972221000168109 Lyzalon 25 mg hard capsule, 20 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +20750011000036101 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 2 mL inert diluent vials), 1 pack, composite pack 90444 13919011000036108 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 2 mL inert diluent vials), 1 pack 7205011000036103 Betaferon (interferon beta-1b 8 million units (250 microgram)) powder for injection, 250 microgram vial 52491000168103 Betaferon 52491000168103 Betaferon 28010011000036108 interferon beta-1b 8 million units (250 microgram) injection [15 vials] (&) inert substance diluent [15 x 2 mL vials], 1 pack 23333011000036108 interferon beta-1b 8 million units (250 microgram) injection, vial 21882011000036102 interferon beta-1b +20750011000036101 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 2 mL inert diluent vials), 1 pack, composite pack 90444 13919011000036108 Betaferon (15 x 8 million units (250 microgram) vials, 15 x 2 mL inert diluent vials), 1 pack 642381000168104 Betaferon (inert substance) diluent, 2 mL vial 52491000168103 Betaferon 52491000168103 Betaferon 28010011000036108 interferon beta-1b 8 million units (250 microgram) injection [15 vials] (&) inert substance diluent [15 x 2 mL vials], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +694381000168101 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll, carton 694371000168104 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll 694351000168108 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape 47011000168100 Nexcare Durable Cloth First Aid Tape (799) 47011000168100 Nexcare Durable Cloth First Aid Tape (799) 694361000168105 tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll 694341000168106 tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape 50731011000036104 tape plaster adhesive hypoallergenic +933213521000036106 Citalopram (IPCA) 10 mg film-coated tablet, 84, blister pack 158868 933203171000036103 Citalopram (IPCA) 10 mg film-coated tablet, 84 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +50657011000036100 Stalevo 200/50/200 film-coated tablet, 30, bottle 146890 49681011000036109 Stalevo 200/50/200 film-coated tablet, 30 48816011000036108 Stalevo 200/50/200 film-coated tablet 11001000168100 Stalevo 200/50/200 11001000168100 Stalevo 200/50/200 51559011000036108 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 30 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +20252011000036108 Glucohexal 500 mg film-coated tablet, 100, blister pack 74633 13462011000036104 Glucohexal 500 mg film-coated tablet, 100 6744011000036104 Glucohexal 500 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20252011000036108 Glucohexal 500 mg film-coated tablet, 100, blister pack 125661 13462011000036104 Glucohexal 500 mg film-coated tablet, 100 6744011000036104 Glucohexal 500 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +43751011000036105 Dormizol 10 mg film-coated tablet, 14, blister pack 117953 41201011000036103 Dormizol 10 mg film-coated tablet, 14 39940011000036106 Dormizol 10 mg film-coated tablet 39564011000036104 Dormizol 39564011000036104 Dormizol 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +61399011000036100 Day plus Night Cold and Flu (Pharmacy Health) (24 x Day tablets, 12 x Night tablets), 36, blister pack 82115 57324011000036106 Day plus Night Cold and Flu (Pharmacy Health) (24 x Day tablets, 12 x Night tablets), 36 54274011000036105 Day plus Night Cold and Flu (Night) (Pharmacy Health) uncoated tablet 23551000168104 Day plus Night Cold and Flu (Pharmacy Health) 23781000168100 Day plus Night Cold and Flu (Night) (Pharmacy Health) 63808011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [24] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [12], 36 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +61399011000036100 Day plus Night Cold and Flu (Pharmacy Health) (24 x Day tablets, 12 x Night tablets), 36, blister pack 82115 57324011000036106 Day plus Night Cold and Flu (Pharmacy Health) (24 x Day tablets, 12 x Night tablets), 36 54273011000036108 Day plus Night Cold and Flu (Day) (Pharmacy Health) uncoated tablet 23551000168104 Day plus Night Cold and Flu (Pharmacy Health) 23661000168101 Day plus Night Cold and Flu (Day) (Pharmacy Health) 63808011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [24] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [12], 36 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +44009011000036101 Octostim 15 microgram/mL injection solution, 10 x 1 mL ampoules 46758 41500011000036101 Octostim 15 microgram/mL injection solution, 10 x 1 mL ampoules 40020011000036101 Octostim 15 microgram/mL injection solution, ampoule 39644011000036100 Octostim 39644011000036100 Octostim 46344011000036101 desmopressin acetate 15 microgram/mL injection, 10 x 1 mL ampoules 45094011000036106 desmopressin acetate 15 microgram/mL injection, ampoule 21750011000036107 desmopressin +933213501000036101 Citalopram (IPCA) 10 mg film-coated tablet, 7, blister pack 158868 933203141000036105 Citalopram (IPCA) 10 mg film-coated tablet, 7 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +920785011000036102 Sotalol Hydrochloride (Sandoz) 80 mg uncoated tablet, 60, blister pack 78710 920464011000036109 Sotalol Hydrochloride (Sandoz) 80 mg uncoated tablet, 60 920198011000036100 Sotalol Hydrochloride (Sandoz) 80 mg uncoated tablet 920110011000036101 Sotalol Hydrochloride (Sandoz) 920110011000036101 Sotalol Hydrochloride (Sandoz) 27997011000036109 sotalol hydrochloride 80 mg tablet, 60 23320011000036103 sotalol hydrochloride 80 mg tablet 21562011000036100 sotalol +793801000168107 Actemra 200 mg/10 mL concentrated injection, 4 x 10 mL vials 149404 793791000168106 Actemra 200 mg/10 mL concentrated injection, 4 x 10 mL vials 82679011000036100 Actemra 200 mg/10 mL concentrated injection, 10 mL vial 82659011000036103 Actemra 82659011000036103 Actemra 793781000168108 tocilizumab 200 mg/10 mL injection, 4 x 10 mL vials 82927011000036107 tocilizumab 200 mg/10 mL injection, vial 82914011000036109 tocilizumab +37429011000036105 Metoclopramide Hydrochloride (Pfizer (Perth)) 10 mg/2 mL injection solution, 10 x 2 mL ampoules 11364 36665011000036100 Metoclopramide Hydrochloride (Pfizer (Perth)) 10 mg/2 mL injection solution, 10 x 2 mL ampoules 36083011000036109 Metoclopramide Hydrochloride (Pfizer (Perth)) 10 mg/2 mL injection solution, 2 mL ampoule 35994011000036103 Metoclopramide Hydrochloride (Pfizer (Perth)) 35994011000036103 Metoclopramide Hydrochloride (Pfizer (Perth)) 27072011000036108 metoclopramide hydrochloride 10 mg/2 mL injection, 10 x 2 mL ampoules 22442011000036102 metoclopramide hydrochloride 10 mg/2 mL injection, ampoule 21569011000036105 metoclopramide +933080011000036107 Tramadol Hydrochloride SR (GA) 100 mg modified release tablet, 20, blister pack 154407 932877011000036109 Tramadol Hydrochloride SR (GA) 100 mg modified release tablet, 20 932738011000036109 Tramadol Hydrochloride SR (GA) 100 mg modified release tablet 24991000168103 Tramadol Hydrochloride SR (GA) 24991000168103 Tramadol Hydrochloride SR (GA) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +85010011000036109 Optive Sensitive eye drops solution, 30 x 0.4 mL unit doses, ampoule 84869011000036105 Optive Sensitive eye drops solution, 30 x 0.4 mL unit doses 84775011000036101 Optive Sensitive eye drops solution, 0.4 mL unit dose 62461000168104 Optive Sensitive 62461000168104 Optive Sensitive 85167011000036102 carmellose sodium 0.5% + glycerol 0.9% eye drops, 30 x 0.4 mL unit doses 85078011000036104 carmellose sodium 0.5% + glycerol 0.9% eye drops, unit dose 52230011000036107 carmellose sodium + glycerol +111211000036106 Nicotinell Step-3 7 mg/24 hours patch, 28, sachet 42627 109481000036100 Nicotinell Step-3 7 mg/24 hours patch, 28 925705011000036108 Nicotinell Step-3 7 mg/24 hours patch 51741000168105 Nicotinell Step-3 51741000168105 Nicotinell Step-3 63758011000036106 nicotine 7 mg/24 hours patch, 28 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +156721000036106 Olanzapine (GH) 10 mg uncoated tablet, 28, blister pack 157857 155761000036107 Olanzapine (GH) 10 mg uncoated tablet, 28 154721000036104 Olanzapine (GH) 10 mg uncoated tablet 154641000036103 Olanzapine (GH) 154641000036103 Olanzapine (GH) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +85511000036102 Fendex ER 2.5 mg modified release tablet, 7, blister pack 184623 84591000036108 Fendex ER 2.5 mg modified release tablet, 7 84071000036103 Fendex ER 2.5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84601000036101 felodipine 2.5 mg modified release tablet, 7 22820011000036107 felodipine 2.5 mg modified release tablet 21440011000036100 felodipine +59986011000036106 Lamisil Dermgel 1% gel, 30 g, tube 121514 55948011000036109 Lamisil Dermgel 1% gel, 30 g 6349011000036104 Lamisil Dermgel 1% gel 39931000168104 Lamisil Dermgel 39931000168104 Lamisil Dermgel 63173011000036105 terbinafine 1% gel, 30 g 22869011000036105 terbinafine 1% gel 21575011000036104 terbinafine +1035531000168105 Aranesp 30 microgram/0.3 mL injection solution, 0.3 mL injection device 122847 1035521000168107 Aranesp 30 microgram/0.3 mL injection solution, 0.3 mL injection device 1035501000168103 Aranesp 30 microgram/0.3 mL injection solution, 0.3 mL injection device 6471000168109 Aranesp 6471000168109 Aranesp 1035511000168100 darbepoetin alfa 30 microgram/0.3 mL injection, 0.3 mL injection device 1035491000168105 darbepoetin alfa 30 microgram/0.3 mL injection device 21234011000036105 darbepoetin alfa +1110791000168109 Midazolam (WP) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 207230 1110781000168106 Midazolam (WP) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1110751000168104 Midazolam (WP) 50 mg/10 mL injection solution, 10 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +660951000168101 Pioglitazone (AN) 30 mg uncoated tablet, 28, blister pack 176381 660941000168103 Pioglitazone (AN) 30 mg uncoated tablet, 28 660931000168107 Pioglitazone (AN) 30 mg uncoated tablet 660861000168106 Pioglitazone (AN) 660861000168106 Pioglitazone (AN) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +658531000168105 Teltartan 40 mg uncoated tablet, 28, blister pack 209341 658521000168107 Teltartan 40 mg uncoated tablet, 28 658511000168100 Teltartan 40 mg uncoated tablet 658501000168103 Teltartan 658501000168103 Teltartan 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +917691000168102 Imigran 6 mg/0.5 mL injection solution, 0.5 mL syringe 38347 917681000168100 Imigran 6 mg/0.5 mL injection solution, 0.5 mL syringe 917661000168109 Imigran 6 mg/0.5 mL injection solution, 0.5 mL syringe 30771000168105 Imigran 30771000168105 Imigran 917671000168103 sumatriptan 6 mg/0.5 mL injection, 0.5 mL syringe 77570011000036104 sumatriptan 6 mg/0.5 mL injection, syringe 21708011000036102 sumatriptan +883491000168102 Betahistine (ZP) 16 mg tablet, 25, blister pack 231721 883481000168100 Betahistine (ZP) 16 mg tablet, 25 883451000168107 Betahistine (ZP) 16 mg tablet 883371000168105 Betahistine (ZP) 883371000168105 Betahistine (ZP) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +19010011000036107 Urex 40 mg uncoated tablet, 100, blister pack 34494 12315011000036108 Urex 40 mg uncoated tablet, 100 5341011000036100 Urex 40 mg uncoated tablet 51141000168106 Urex 51141000168106 Urex 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +768001000168109 HCU Anamix Junior powder for oral liquid, 30 x 36 g sachets 767991000168100 HCU Anamix Junior powder for oral liquid, 30 x 36 g sachets 767971000168101 HCU Anamix Junior powder for oral liquid, 36 g sachet 767951000168105 HCU Anamix Junior 767951000168105 HCU Anamix Junior 767981000168103 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid powder for oral liquid, 30 x 36 g sachets 767961000168107 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid powder for oral liquid, 36 g sachet 87752011000036102 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid +1116911000168100 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 30, blister pack 161825 1116901000168103 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 30 1116831000168101 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 925432011000036100 amlodipine 5 mg + valsartan 320 mg tablet, 30 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +37395011000036109 Xylocaine 2% with Adrenaline 1 in 80 000 Dental injection solution, 500 x 2.2 mL cartridges 12024 36696011000036105 Xylocaine 2% with Adrenaline 1 in 80 000 Dental injection solution, 500 x 2.2 mL cartridges 36086011000036103 Xylocaine 2% with Adrenaline 1 in 80 000 Dental injection solution, 2.2 mL cartridge 55511000168103 Xylocaine 2% with Adrenaline 1 in 80 000 Dental 55511000168103 Xylocaine 2% with Adrenaline 1 in 80 000 Dental 38609011000036107 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, 500 x 2.2 mL cartridges 37875011000036100 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, cartridge 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +81741000036109 Alendronate (Pfizer) 70 mg uncoated tablet, 4, blister pack 171792 80041000036103 Alendronate (Pfizer) 70 mg uncoated tablet, 4 78191000036103 Alendronate (Pfizer) 70 mg uncoated tablet 77751000036107 Alendronate (Pfizer) 77751000036107 Alendronate (Pfizer) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +656361000168107 Candesartan Cilexetil (AN) 32 mg uncoated tablet, 30, bottle 195458 656351000168105 Candesartan Cilexetil (AN) 32 mg uncoated tablet, 30 656341000168108 Candesartan Cilexetil (AN) 32 mg uncoated tablet 655001000168103 Candesartan Cilexetil (AN) 655001000168103 Candesartan Cilexetil (AN) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +1041921000168103 Atorvastatin (DRLA) 40 mg film-coated tablet, 30, blister pack 198828 1041911000168105 Atorvastatin (DRLA) 40 mg film-coated tablet, 30 1041901000168107 Atorvastatin (DRLA) 40 mg film-coated tablet 1040891000168103 Atorvastatin (DRLA) 1040891000168103 Atorvastatin (DRLA) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1114741000168109 Zstar 7.5 mg film-coated tablet, 30, blister pack 239219 1114731000168100 Zstar 7.5 mg film-coated tablet, 30 1114721000168103 Zstar 7.5 mg film-coated tablet 1114711000168105 Zstar 1114711000168105 Zstar 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +752791000168107 Olmesartan/Amlodipine 40/10 (Terry White Chemists) film-coated tablet, 30, blister pack 218237 752781000168109 Olmesartan/Amlodipine 40/10 (Terry White Chemists) film-coated tablet, 30 752771000168106 Olmesartan/Amlodipine 40/10 (Terry White Chemists) film-coated tablet 752761000168100 Olmesartan/Amlodipine 40/10 (Terry White Chemists) 752761000168100 Olmesartan/Amlodipine 40/10 (Terry White Chemists) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +729501000168101 Daklinza 30 mg film-coated tablet, 7, blister pack 222743 729491000168108 Daklinza 30 mg film-coated tablet, 7 729471000168107 Daklinza 30 mg film-coated tablet 729431000168109 Daklinza 729431000168109 Daklinza 729481000168105 daclatasvir 30 mg tablet, 7 729461000168101 daclatasvir 30 mg tablet 729451000168103 daclatasvir +793481000168101 Candesartan HCTZ 32/12.5 (Blooms The Chemist) uncoated tablet, 30, blister pack 259998 793471000168104 Candesartan HCTZ 32/12.5 (Blooms The Chemist) uncoated tablet, 30 793461000168105 Candesartan HCTZ 32/12.5 (Blooms The Chemist) uncoated tablet 793451000168108 Candesartan HCTZ 32/12.5 (Blooms The Chemist) 793451000168108 Candesartan HCTZ 32/12.5 (Blooms The Chemist) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1110471000168102 Nicotinell Ice Mint 4 mg chewing gum, 192, blister pack 279616 1110461000168108 Nicotinell Ice Mint 4 mg chewing gum, 192 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71518011000036107 nicotine 4 mg gum, 192 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +656681000168109 Pravastatin Sodium (AN) 10 mg uncoated tablet, 30, bottle 191705 656671000168106 Pravastatin Sodium (AN) 10 mg uncoated tablet, 30 656661000168100 Pravastatin Sodium (AN) 10 mg uncoated tablet 656481000168106 Pravastatin Sodium (AN) 656481000168106 Pravastatin Sodium (AN) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +20569011000036103 Phenergan 25 mg film-coated tablet, 50, blister pack 80160 13759011000036107 Phenergan 25 mg film-coated tablet, 50 7044011000036102 Phenergan 25 mg film-coated tablet 22661000168108 Phenergan 22661000168108 Phenergan 27922011000036103 promethazine hydrochloride 25 mg tablet, 50 23246011000036109 promethazine hydrochloride 25 mg tablet 21237011000036104 promethazine +1110721000168107 Dormizol CR 12.5 mg modified release tablet, 28, blister pack 120715 1110711000168100 Dormizol CR 12.5 mg modified release tablet, 28 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46189011000036100 zolpidem tartrate 12.5 mg modified release tablet, 28 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +1112891000168103 Allopurinol (TN) 100 mg uncoated tablet, 200, bottle 269656 1112881000168101 Allopurinol (TN) 100 mg uncoated tablet, 200 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +819461000168105 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 10, blister pack 184818 819451000168108 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 10 819441000168106 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 727331000168107 perindopril arginine 10 mg tablet, 10 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +21058011000036106 Simvahexal 5 mg film-coated tablet, 30, bottle 97044 14203011000036107 Simvahexal 5 mg film-coated tablet, 30 7484011000036102 Simvahexal 5 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +78996011000036107 Janumet 50/850 film-coated tablet, 14, blister pack 149021 78842011000036106 Janumet 50/850 film-coated tablet, 14 78651011000036107 Janumet 50/850 film-coated tablet 53121000168104 Janumet 50/850 53121000168104 Janumet 50/850 79233011000036109 sitagliptin 50 mg + metformin hydrochloride 850 mg tablet, 14 79111011000036102 sitagliptin 50 mg + metformin hydrochloride 850 mg tablet 79094011000036105 sitagliptin + metformin +56021000036104 Pantoprazole (MaxRx) 40 mg powder for injection, 5 vials 156569 52891000036108 Pantoprazole (MaxRx) 40 mg powder for injection, 5 vials 49211000036108 Pantoprazole (MaxRx) 40 mg powder for injection, 40 mg vial 48211000036100 Pantoprazole (MaxRx) 48211000036100 Pantoprazole (MaxRx) 52901000036109 pantoprazole 40 mg injection, 5 vials 45023011000036104 pantoprazole 40 mg injection, vial 21563011000036107 pantoprazole +943691000168100 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 100 mL bottles 48233 943681000168103 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 100 mL bottles 943661000168107 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 100 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 943671000168101 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 100 mL bottles 943651000168105 iohexol 755 mg (iodine 350 mg)/mL injection, 100 mL bottle 77459011000036103 iohexol +1097861000168104 Phospho-Soda oral liquid solution, 45 mL, bottle 283520 1097851000168101 Phospho-Soda oral liquid solution, 45 mL 1097841000168103 Phospho-Soda oral liquid solution, bottle 1097831000168107 Phospho-Soda 1097831000168107 Phospho-Soda 1097801000168100 monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, 45 mL 1097781000168104 monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, bottle 1097771000168102 monobasic sodium phosphate + dibasic sodium phosphate +52713011000036103 Simvastatin (Spirit) 10 mg film-coated tablet, 300, bottle 116708 52526011000036102 Simvastatin (Spirit) 10 mg film-coated tablet, 300 52399011000036103 Simvastatin (Spirit) 10 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 46089011000036106 simvastatin 10 mg tablet, 300 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +68870011000036105 Egozite Cradle Cap 6% lotion, 50 mL, bottle 10610 66517011000036108 Egozite Cradle Cap 6% lotion, 50 mL 65299011000036107 Egozite Cradle Cap 6% lotion 65101011000036107 Egozite Cradle Cap 65101011000036107 Egozite Cradle Cap 71249011000036103 salicylic acid 6% lotion, 50 mL 69918011000036108 salicylic acid 6% lotion 52232011000036106 salicylic acid +870561000168108 Desven 50 mg modified release tablet, 28, blister pack 218074 870401000168106 Desven 50 mg modified release tablet, 28 870351000168104 Desven 50 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +752831000168101 Olmesartan/Amlodipine 40/10 (Blooms The Chemist) film-coated tablet, 30, blister pack 218241 752821000168104 Olmesartan/Amlodipine 40/10 (Blooms The Chemist) film-coated tablet, 30 752811000168106 Olmesartan/Amlodipine 40/10 (Blooms The Chemist) film-coated tablet 752801000168108 Olmesartan/Amlodipine 40/10 (Blooms The Chemist) 752801000168108 Olmesartan/Amlodipine 40/10 (Blooms The Chemist) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +759321000168100 Xenical 120 mg hard capsule, 9, blister pack 61598 759311000168107 Xenical 120 mg hard capsule, 9 6274011000036106 Xenical 120 mg hard capsule 4256011000036106 Xenical 4256011000036106 Xenical 759301000168109 orlistat 120 mg capsule, 9 22831011000036103 orlistat 120 mg capsule 21581011000036109 orlistat +933057011000036102 Tramadol Hydrochloride (GA) 50 mg hard capsule, 20, blister pack 141239 932859011000036100 Tramadol Hydrochloride (GA) 50 mg hard capsule, 20 932725011000036100 Tramadol Hydrochloride (GA) 50 mg hard capsule 932707011000036104 Tramadol Hydrochloride (GA) 932707011000036104 Tramadol Hydrochloride (GA) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +1050601000168105 Bupannus 25 microgram/hour patch, 4, sachet 234726 1050591000168103 Bupannus 25 microgram/hour patch, 4 1050561000168105 Bupannus 25 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1048811000168109 buprenorphine 25 microgram/hour patch, 4 775911000168105 buprenorphine 25 microgram/hour patch 21232011000036101 buprenorphine +933239121000036107 Fentanyl (Sandoz) 25 microgram/hour patch, 3, sachet 152569 933235771000036107 Fentanyl (Sandoz) 25 microgram/hour patch, 3 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235781000036109 fentanyl 25 microgram/hour patch, 3 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +12621000036101 Olanzapine ODT (Apo) 10 mg orally disintegrating tablet, 28, bottle 158965 7061000036101 Olanzapine ODT (Apo) 10 mg orally disintegrating tablet, 28 1391000036104 Olanzapine ODT (Apo) 10 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +701691000168101 Hydroxychloroquine (RBX) 200 mg tablet, 100, bottle 186392 701681000168104 Hydroxychloroquine (RBX) 200 mg tablet, 100 701671000168102 Hydroxychloroquine (RBX) 200 mg tablet 701661000168108 Hydroxychloroquine (RBX) 701661000168108 Hydroxychloroquine (RBX) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +1007761000168105 Morphine MR (Mylan) 60 mg modified release tablet, 20, blister pack 225423 1007751000168108 Morphine MR (Mylan) 60 mg modified release tablet, 20 1007741000168106 Morphine MR (Mylan) 60 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 27108011000036105 morphine sulfate pentahydrate 60 mg modified release tablet, 20 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +1119401000168102 Quetiapine (Watson) 300 mg film-coated tablet, 60, blister pack 202265 1119391000168104 Quetiapine (Watson) 300 mg film-coated tablet, 60 1119361000168106 Quetiapine (Watson) 300 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +61571011000036108 Proven 100 mg/5 mL oral liquid suspension, 100 mL, bottle 94372 57493011000036105 Proven 100 mg/5 mL oral liquid suspension, 100 mL 54324011000036102 Proven 100 mg/5 mL oral liquid suspension, 5 mL 53524011000036103 Proven 53524011000036103 Proven 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +658851000168102 Olanzapine ODT (AN) 20 mg orally disintegrating tablet, 28, blister pack 179084 658841000168104 Olanzapine ODT (AN) 20 mg orally disintegrating tablet, 28 658831000168108 Olanzapine ODT (AN) 20 mg orally disintegrating tablet 658541000168101 Olanzapine ODT (AN) 658541000168101 Olanzapine ODT (AN) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +1070051000168100 Rapideine Caplets film-coated tablet, 12, blister pack 83328 1070041000168102 Rapideine Caplets film-coated tablet, 12 1070031000168106 Rapideine Caplets film-coated tablet 1070021000168108 Rapideine Caplets 1070021000168108 Rapideine Caplets 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +60457011000036103 Sleep Aid (Pharmacist) 25 mg tablet, 20, blister pack 149474 56415011000036106 Sleep Aid (Pharmacist) 25 mg tablet, 20 53916011000036105 Sleep Aid (Pharmacist) 25 mg tablet 53353011000036101 Sleep Aid (Pharmacist) 53353011000036101 Sleep Aid (Pharmacist) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +18513011000036104 Pravastatin Sodium (Winthrop) 40 mg uncoated tablet, 30, blister pack 130847 11909011000036103 Pravastatin Sodium (Winthrop) 40 mg uncoated tablet, 30 5152011000036104 Pravastatin Sodium (Winthrop) 40 mg uncoated tablet 3660011000036101 Pravastatin Sodium (Winthrop) 3660011000036101 Pravastatin Sodium (Winthrop) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +999481000168107 Memantine (Apotex) 10 mg film-coated tablet, 14, blister pack 159580 999471000168109 Memantine (Apotex) 10 mg film-coated tablet, 14 999461000168103 Memantine (Apotex) 10 mg film-coated tablet 999451000168100 Memantine (Apotex) 999451000168100 Memantine (Apotex) 38839011000036107 memantine hydrochloride 10 mg tablet, 14 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +74824011000036101 Lisinopril (Ranbaxy) 20 mg uncoated tablet, 30, blister pack 153191 74311011000036109 Lisinopril (Ranbaxy) 20 mg uncoated tablet, 30 73855011000036104 Lisinopril (Ranbaxy) 20 mg uncoated tablet 73751011000036103 Lisinopril (Ranbaxy) 73751011000036103 Lisinopril (Ranbaxy) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +793871000168102 Arnuity Ellipta 200 microgram/actuation powder for inhalation, 14 actuations, blister pack 231103 793861000168108 Arnuity Ellipta 200 microgram/actuation powder for inhalation, 14 actuations 793841000168109 Arnuity Ellipta 200 microgram/actuation powder for inhalation, actuation 793811000168105 Arnuity Ellipta 793811000168105 Arnuity Ellipta 793851000168106 fluticasone furoate 200 microgram/actuation powder for inhalation, 14 actuations 793831000168100 fluticasone furoate 200 microgram/actuation powder for inhalation, actuation 860171000168103 fluticasone furoate +692691000168100 Desfax 50 mg modified release tablet, 28, bottle 218079 692651000168105 Desfax 50 mg modified release tablet, 28 692601000168106 Desfax 50 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +776231000168103 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 45 mL, bottle 231998 776221000168101 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 45 mL 776191000168107 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 774651000168103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 45 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +1115061000168106 Stilnoxium CR 12.5 mg modified release tablet, 21, blister pack 120714 1115051000168109 Stilnoxium CR 12.5 mg modified release tablet, 21 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46188011000036108 zolpidem tartrate 12.5 mg modified release tablet, 21 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +1020731000168107 Aripiprazole (GX) 2 mg uncoated tablet, 30, blister pack 217202 1020721000168109 Aripiprazole (GX) 2 mg uncoated tablet, 30 1020711000168102 Aripiprazole (GX) 2 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +799991000168106 Abyraz 20 mg uncoated tablet, 90, blister pack 159505 799981000168108 Abyraz 20 mg uncoated tablet, 90 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799971000168105 aripiprazole 20 mg tablet, 90 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1012091000168104 Irbesartan (Apotex) 300 mg film-coated tablet, 14, blister pack 169795 1012081000168102 Irbesartan (Apotex) 300 mg film-coated tablet, 14 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777411000168107 irbesartan 300 mg tablet, 14 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +145971000036103 Octagam 5% 10 g/200 mL injection solution, 200 mL bottle 113928 144711000036108 Octagam 5% 10 g/200 mL injection solution, 200 mL bottle 143841000036104 Octagam 5% 10 g/200 mL injection solution, 200 mL bottle 14211000168106 Octagam 5% 14211000168106 Octagam 5% 75358011000036101 normal immunoglobulin 10 g/200 mL injection, 200 mL bottle 75017011000036109 normal immunoglobulin 10 g/200 mL injection, bottle 74965011000036103 normal immunoglobulin +20484011000036106 Diclofenac Sodium (Chemmart) 50 mg enteric tablet, 50, bottle 78431 13684011000036108 Diclofenac Sodium (Chemmart) 50 mg enteric tablet, 50 6967011000036107 Diclofenac Sodium (Chemmart) 50 mg enteric tablet 3797011000036108 Diclofenac Sodium (Chemmart) 3797011000036108 Diclofenac Sodium (Chemmart) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +926351000168108 Progesterone (Orion) 25 mg moulded pessary, 15, jar 21191 926341000168106 Progesterone (Orion) 25 mg moulded pessary, 15 926321000168100 Progesterone (Orion) 25 mg moulded pessary 3508011000036108 Progesterone (Orion) 3508011000036108 Progesterone (Orion) 926331000168102 progesterone 25 mg pessary, 15 926311000168107 progesterone 25 mg pessary 21412011000036108 progesterone +995151000168105 Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16, blister pack 10100 995141000168108 Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16 995121000168102 Cepacol Antibacterial Menthol and Eucalyptus lozenge 45751000168108 Cepacol Antibacterial Menthol and Eucalyptus 45751000168108 Cepacol Antibacterial Menthol and Eucalyptus 995131000168104 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge, 16 995111000168109 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge 69858011000036107 benzyl alcohol + cetylpyridinium + eucalyptus oil + menthol +909071000168103 Celecoxib (Bellwether) 200 mg hard capsule, 120, blister pack 196186 909061000168109 Celecoxib (Bellwether) 200 mg hard capsule, 120 908951000168103 Celecoxib (Bellwether) 200 mg hard capsule 908191000168105 Celecoxib (Bellwether) 908191000168105 Celecoxib (Bellwether) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +650191000168100 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 30, blister pack 202107 650181000168103 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 30 650111000168109 Pritor/Amlodipine 40 mg/10 mg multilayer tablet 650101000168106 Pritor/Amlodipine 40 mg/10 mg 650101000168106 Pritor/Amlodipine 40 mg/10 mg 932429011000036109 telmisartan 40 mg + amlodipine 10 mg tablet, 30 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +977871000168109 Pregabalin (Teva) 50 mg hard capsule, 21, blister pack 229555 977861000168103 Pregabalin (Teva) 50 mg hard capsule, 21 977831000168106 Pregabalin (Teva) 50 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 856051000168102 pregabalin 50 mg capsule, 21 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +868791000168104 Simipex XR 750 microgram modified release tablet, 30, blister pack 225573 868781000168102 Simipex XR 750 microgram modified release tablet, 30 868751000168109 Simipex XR 750 microgram modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 87815011000036100 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 30 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +61417011000036104 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 50 mL, bottle 82433 57342011000036100 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 50 mL 54280011000036106 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 5 mL 53225011000036108 Ibuprofen (Soul Pattinson) 53225011000036108 Ibuprofen (Soul Pattinson) 63869011000036106 ibuprofen 100 mg/5 mL oral liquid, 50 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +652341000168107 Tacrolimus (Pharmacor) 5 mg hard capsule, 50, blister pack 209267 652331000168103 Tacrolimus (Pharmacor) 5 mg hard capsule, 50 652321000168101 Tacrolimus (Pharmacor) 5 mg hard capsule 650951000168107 Tacrolimus (Pharmacor) 650951000168107 Tacrolimus (Pharmacor) 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +1076561000168105 Aripiprazole (Auro) 20 mg uncoated tablet, 30, bottle 198191 1076501000168109 Aripiprazole (Auro) 20 mg uncoated tablet, 30 1076471000168103 Aripiprazole (Auro) 20 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +744571000168109 Abstral 100 microgram sublingual tablet, 10, blister pack 193332 744561000168103 Abstral 100 microgram sublingual tablet, 10 744541000168102 Abstral 100 microgram sublingual tablet 743761000168107 Abstral 743761000168107 Abstral 744551000168100 fentanyl 100 microgram sublingual tablet, 10 744531000168106 fentanyl 100 microgram sublingual tablet 21258011000036102 fentanyl +84359011000036103 Cold Sore (Terry White Chemists) 5% cream, 5 g, tube 161229 84052011000036109 Cold Sore (Terry White Chemists) 5% cream, 5 g 83676011000036100 Cold Sore (Terry White Chemists) 5% cream 83593011000036108 Cold Sore (Terry White Chemists) 83593011000036108 Cold Sore (Terry White Chemists) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +977851000168100 Pregabalin (Teva) 50 mg hard capsule, 14, blister pack 229555 977841000168102 Pregabalin (Teva) 50 mg hard capsule, 14 977831000168106 Pregabalin (Teva) 50 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1076151000168104 Quetiapine (Auro) 25 mg film-coated tablet, 20, blister pack 172840 1076141000168101 Quetiapine (Auro) 25 mg film-coated tablet, 20 1076131000168105 Quetiapine (Auro) 25 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +866461000168104 Amitriptyline (GPPL) 50 mg tablet, 250, bottle 232139 866451000168101 Amitriptyline (GPPL) 50 mg tablet, 250 865541000168109 Amitriptyline (GPPL) 50 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 862961000168107 amitriptyline hydrochloride 50 mg tablet, 250 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +44351011000036107 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 67520 41818011000036100 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 635121000168109 Benefix (inert substance) diluent, 5 mL vial 2121000168104 Benefix 2121000168104 Benefix 46624011000036105 nonacog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +44351011000036107 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 67520 41818011000036100 Benefix (1 x 250 units vial, 1 x 5 mL inert diluent vial), 1 pack 40212011000036102 Benefix (nonacog alfa 250 units) powder for injection, 250 units vial 2121000168104 Benefix 2121000168104 Benefix 46624011000036105 nonacog alfa 250 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 45244011000036108 nonacog alfa 250 units injection, vial 44863011000036102 nonacog alfa +868551000168101 Atomerra 18 mg hard capsule, 14, blister pack 234793 868541000168103 Atomerra 18 mg hard capsule, 14 868511000168102 Atomerra 18 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830341000168103 atomoxetine 18 mg capsule, 14 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +19473011000036101 Asmol Uni-Dose 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 54720 12750011000036109 Asmol Uni-Dose 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6044011000036101 Asmol Uni-Dose 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 24611000168102 Asmol Uni-Dose 24611000168102 Asmol Uni-Dose 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +763661000168105 Oxycodone MR (Chemmart) 20 mg modified release tablet, 20, blister pack 214502 763651000168108 Oxycodone MR (Chemmart) 20 mg modified release tablet, 20 763641000168106 Oxycodone MR (Chemmart) 20 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +982141000168100 Sertraline (Apotex) 50 mg film-coated tablet, 30, blister pack 150243 982131000168109 Sertraline (Apotex) 50 mg film-coated tablet, 30 982121000168106 Sertraline (Apotex) 50 mg film-coated tablet 982111000168104 Sertraline (Apotex) 982111000168104 Sertraline (Apotex) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1076311000168102 Fexo (Chemists' Own) 180 mg film-coated tablet, 50, blister pack 134655 1076301000168100 Fexo (Chemists' Own) 180 mg film-coated tablet, 50 53840011000036109 Fexo (Chemists' Own) 180 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 927419011000036102 fexofenadine hydrochloride 180 mg tablet, 50 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +69675011000036108 Nicabate Clear 21 mg/24 hours patch, 7, sachet 81035 67474011000036100 Nicabate Clear 21 mg/24 hours patch, 7 65676011000036109 Nicabate Clear 21 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 27923011000036105 nicotine 21 mg/24 hours patch, 7 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +733601000168101 Rizatriptan ODT (AN) 10 mg orally disintegrating tablet, 2, blister pack 220024 733591000168108 Rizatriptan ODT (AN) 10 mg orally disintegrating tablet, 2 733571000168107 Rizatriptan ODT (AN) 10 mg orally disintegrating tablet 731711000168106 Rizatriptan ODT (AN) 731711000168106 Rizatriptan ODT (AN) 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +69161011000036102 Dettol Antiseptic Cream cream, 75 g, tube 15362 66961011000036107 Dettol Antiseptic Cream cream, 75 g 65310011000036108 Dettol Antiseptic Cream cream 64972011000036103 Dettol Antiseptic Cream 64972011000036103 Dettol Antiseptic Cream 71534011000036105 chloroxylenol 0.3% + triclosan 0.3% cream, 75 g 70044011000036104 chloroxylenol 0.3% + triclosan 0.3% cream 69758011000036109 chloroxylenol + triclosan +742241000168109 Amitriptyline (Alphapharm) 50 mg film-coated tablet, 50, blister pack 232798 742231000168100 Amitriptyline (Alphapharm) 50 mg film-coated tablet, 50 742191000168109 Amitriptyline (Alphapharm) 50 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +20886011000036105 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 93043 14048011000036102 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 7326011000036107 Gonal-F (follitropin alfa 75 units (5.46 microgram)) powder for injection, 75 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 28106011000036103 follitropin alfa 75 units (5.46 microgram) injection [75 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 23416011000036100 follitropin alfa 75 units (5.46 microgram) injection, 75 units vial 21352011000036107 follitropin alfa +20886011000036105 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 93043 14048011000036102 Gonal-F (1 x 75 units (5.46 microgram) vial, 1 x 1 mL inert diluent syringe), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 28106011000036103 follitropin alfa 75 units (5.46 microgram) injection [75 units vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +145891000036106 Duralock-C 1167.5 mg/2.5 mL solution, 2 x 2.5 mL syringes 144581000036108 Duralock-C 1167.5 mg/2.5 mL solution, 2 x 2.5 mL syringes 143671000036105 Duralock-C 1167.5 mg/2.5 mL solution, 2.5 mL syringe 143291000036106 Duralock-C 143291000036106 Duralock-C 144591000036105 citrate trisodium 1167.5 mg/2.5 mL solution, 2 x 2.5 mL syringes 143681000036107 citrate trisodium 1167.5 mg/2.5 mL solution, syringe 77470011000036106 citric acid +933213341000036109 Citalopram (IPCA) 40 mg film-coated tablet, 28, bottle 158855 933202871000036104 Citalopram (IPCA) 40 mg film-coated tablet, 28 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +37506011000036102 Tramedo SR 150 mg modified release tablet, 20, blister pack 133157 36774011000036100 Tramedo SR 150 mg modified release tablet, 20 36137011000036103 Tramedo SR 150 mg modified release tablet 47831000168100 Tramedo SR 47831000168100 Tramedo SR 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +693011000168107 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet, 100, blister pack 215344 693001000168109 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet, 100 692821000168103 Amitriptyline Hydrochloride (Chemmart) 10 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +85351000036105 Famciclovir (Generic Health) 500 mg film-coated tablet, 56, blister pack 177014 84521000036105 Famciclovir (Generic Health) 500 mg film-coated tablet, 56 84051000036108 Famciclovir (Generic Health) 500 mg film-coated tablet 77971000036104 Famciclovir (Generic Health) 77971000036104 Famciclovir (Generic Health) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +926788011000036104 Cefepime (DBL) 1 g powder for injection, 1 vial 161397 926184011000036104 Cefepime (DBL) 1 g powder for injection, 1 vial 925662011000036107 Cefepime (DBL) 1 g powder for injection, vial 925527011000036108 Cefepime (DBL) 925527011000036108 Cefepime (DBL) 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +937111000168108 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 8, blister pack 191154 937101000168105 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 8 119521000036103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule 119241000036108 Diarrhoea Relief (Pharmacy Action) 119241000036108 Diarrhoea Relief (Pharmacy Action) 933206161000036104 loperamide hydrochloride 2 mg capsule, 8 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +18719011000036100 Lamitrin 5 mg tablet, 56, bottle 114263 11467011000036107 Lamitrin 5 mg tablet, 56 4775011000036107 Lamitrin 5 mg tablet 4282011000036100 Lamitrin 4282011000036100 Lamitrin 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +1069891000168104 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet, 18, blister pack 203128 1069881000168102 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet, 18 1069861000168106 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet 1069851000168109 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) 1069851000168109 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) 1069871000168100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 18 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +73256011000036104 Xyvion 2.5 mg uncoated tablet, 10, blister pack 132518 73056011000036105 Xyvion 2.5 mg uncoated tablet, 10 72968011000036100 Xyvion 2.5 mg uncoated tablet 72915011000036107 Xyvion 72915011000036107 Xyvion 73461011000036101 tibolone 2.5 mg tablet, 10 45180011000036108 tibolone 2.5 mg tablet 44915011000036106 tibolone +695091000168102 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials 47381 695081000168100 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials 695061000168109 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 mL vial 5191000168106 Ultravist-300 5191000168106 Ultravist-300 695071000168103 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 10 mL vials 695051000168107 iopromide 623 mg (iodine 300 mg)/mL injection, 10 mL vial 77425011000036101 iopromide +969261000168101 Aripiprazole (AN) 15 mg uncoated tablet, 56, blister pack 198206 969251000168103 Aripiprazole (AN) 15 mg uncoated tablet, 56 969201000168102 Aripiprazole (AN) 15 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 788101000168106 aripiprazole 15 mg tablet, 56 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +43837011000036100 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 7, bottle 127175 41336011000036108 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 7 39796011000036109 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet 39725011000036109 Zolpidem Tartrate (GenRx) 39725011000036109 Zolpidem Tartrate (GenRx) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +17759011000036100 Egopsoryl TA gel, 30 g, tube 10616 11327011000036106 Egopsoryl TA gel, 30 g 5487011000036109 Egopsoryl TA gel 48031000168106 Egopsoryl TA 48031000168106 Egopsoryl TA 26606011000036109 coal tar solution 5% + phenol 0.5% + precipitated sulfur 0.5% gel, 30 g 22014011000036109 coal tar solution 5% + phenol 0.5% + precipitated sulfur 0.5% gel 32630011000036102 coal tar solution + phenol + precipitated sulfur +939281000168102 Celecoxib (Pfizer) 200 mg hard capsule, 20, blister pack 211501 939271000168100 Celecoxib (Pfizer) 200 mg hard capsule, 20 939241000168107 Celecoxib (Pfizer) 200 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1102041000168100 Fludarabine (Amneal) 50 mg powder for injection, 1 vial 147831 1102031000168109 Fludarabine (Amneal) 50 mg powder for injection, 1 vial 1102021000168106 Fludarabine (Amneal) 50 mg powder for injection, 50 mg vial 1102011000168104 Fludarabine (Amneal) 1102011000168104 Fludarabine (Amneal) 79814011000036105 fludarabine phosphate 50 mg injection, 1 vial 39441011000036101 fludarabine phosphate 50 mg injection, vial 39430011000036109 fludarabine +59909011000036101 Strong Pain Relief (Chemmart) tablet, 24, blister pack 117609 55871011000036109 Strong Pain Relief (Chemmart) tablet, 24 53704011000036105 Strong Pain Relief (Chemmart) tablet 53479011000036108 Strong Pain Relief (Chemmart) 53479011000036108 Strong Pain Relief (Chemmart) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +933213181000036103 Citalopram (IPCA) 40 mg film-coated tablet, 14, blister pack 158854 933202831000036101 Citalopram (IPCA) 40 mg film-coated tablet, 14 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202841000036106 citalopram 40 mg tablet, 14 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +700029961000036107 Microval 30 microgram film-coated tablet, 28 tablets, blister pack 14095011000036103 Microval 30 microgram film-coated tablet, 28 tablets 7372011000036109 Microval 30 microgram film-coated tablet, 1 tablet 3148011000036107 Microval 3148011000036107 Microval 28356011000036100 levonorgestrel 30 microgram tablet, 28 23453011000036101 levonorgestrel 30 microgram tablet 21391011000036105 levonorgestrel +845031000168103 Asacol 800 mg enteric tablet, 60, blister pack 261420 845021000168101 Asacol 800 mg enteric tablet, 60 845001000168105 Asacol 800 mg enteric tablet 844981000168102 Asacol 844981000168102 Asacol 845011000168108 mesalazine 800 mg enteric tablet, 60 844991000168104 mesalazine 800 mg enteric tablet 21351011000036101 mesalazine +967091000168107 Diavance 500/5 film-coated tablet, 90, blister pack 120265 967081000168109 Diavance 500/5 film-coated tablet, 90 966981000168105 Diavance 500/5 film-coated tablet 966971000168107 Diavance 500/5 966971000168107 Diavance 500/5 28197011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet, 90 23509011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet 21813011000036107 metformin + glibenclamide +104841000036107 Irbesartan HCTZ 300/25 (Apo) film-coated tablet, 30, bottle 175210 101971000036107 Irbesartan HCTZ 300/25 (Apo) film-coated tablet, 30 99051000036108 Irbesartan HCTZ 300/25 (Apo) film-coated tablet 45281000168109 Irbesartan HCTZ 300/25 (Apo) 45281000168109 Irbesartan HCTZ 300/25 (Apo) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +827801000168109 Perindopril (AN) 2 mg uncoated tablet, 30, blister pack 212715 827791000168108 Perindopril (AN) 2 mg uncoated tablet, 30 827781000168105 Perindopril (AN) 2 mg uncoated tablet 827771000168107 Perindopril (AN) 827771000168107 Perindopril (AN) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +933213201000036104 Lisinopril (IPCA) 2.5 mg uncoated tablet, 28, blister pack 152715 933201601000036104 Lisinopril (IPCA) 2.5 mg uncoated tablet, 28 933194771000036101 Lisinopril (IPCA) 2.5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 927300011000036104 lisinopril 2.5 mg tablet, 28 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +832141000168100 PKU Restore Orange powder for oral liquid, 60 x 20 g sachets 832131000168109 PKU Restore Orange powder for oral liquid, 60 x 20 g sachets 832111000168104 PKU Restore Orange powder for oral liquid, 20 g sachet 832051000168102 PKU Restore 832051000168102 PKU Restore 832121000168106 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 60 x 20 g sachets 832061000168100 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 20 g sachet 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +44660011000036100 Abilify 5 mg uncoated tablet, 5, blister pack 90925 42112011000036106 Abilify 5 mg uncoated tablet, 5 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46874011000036102 aripiprazole 5 mg tablet, 5 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +74858011000036107 Glucose (Baxter) 5% (50 g/L) injection solution, 12 x 1 L bags 48527 74345011000036102 Glucose (Baxter) 5% (50 g/L) injection solution, 12 x 1 L bags 5440011000036101 Glucose (Baxter) 5% (50 g/L) injection solution, 1 L bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 75448011000036108 glucose 5% (50 g/L) injection, 12 x 1 L bags 22568011000036103 glucose 5% (50 g/L) injection, bag 21354011000036103 glucose +61494011000036106 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 20 mL, bottle 92446 57419011000036107 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution, 20 mL 54298011000036109 Cold and Cough Paediatric Drops (Pharmacist) oral liquid solution 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 59881000168105 Cold and Cough Paediatric Drops (Pharmacist) 63883011000036106 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 20 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +969331000168102 Aripiprazole (AN) 10 mg uncoated tablet, 30, blister pack 198203 969321000168100 Aripiprazole (AN) 10 mg uncoated tablet, 30 969291000168108 Aripiprazole (AN) 10 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +60663011000036101 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 30 mL, bottle 38572 56621011000036104 Difflam Anti-Inflammatory Solution 0.15% mouthwash, 30 mL 5830011000036105 Difflam Anti-Inflammatory Solution 0.15% mouthwash 20531000168100 Difflam Anti-Inflammatory Solution 20531000168100 Difflam Anti-Inflammatory Solution 63473011000036106 benzydamine hydrochloride 0.15% mouthwash, 30 mL 22010011000036104 benzydamine hydrochloride 0.15% mouthwash 21819011000036105 benzydamine +925239011000036106 Rispaccord-0.5 500 microgram film-coated tablet, 60, blister pack 159974 924776011000036104 Rispaccord-0.5 500 microgram film-coated tablet, 60 924474011000036100 Rispaccord-0.5 500 microgram film-coated tablet 48421000168101 Rispaccord-0.5 48421000168101 Rispaccord-0.5 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +682341000168103 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 205579 682331000168107 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 682311000168102 Eleanor 150/30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +682341000168103 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 205579 682331000168107 Eleanor 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 682321000168109 Eleanor 150/30 ED (inert substance) film-coated tablet 682301000168100 Eleanor 150/30 ED 682301000168100 Eleanor 150/30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +969171000168101 Pregabalin (DRLA) 150 mg hard capsule, 60, blister pack 263055 969161000168107 Pregabalin (DRLA) 150 mg hard capsule, 60 969091000168101 Pregabalin (DRLA) 150 mg hard capsule 968811000168109 Pregabalin (DRLA) 968811000168109 Pregabalin (DRLA) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1033561000168103 Atomoxetine (CH) 25 mg hard capsule, 14, blister pack 234819 1033551000168100 Atomoxetine (CH) 25 mg hard capsule, 14 1033511000168101 Atomoxetine (CH) 25 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830451000168107 atomoxetine 25 mg capsule, 14 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +742281000168104 Amitriptyline (Alphapharm) 50 mg film-coated tablet, 1000, blister pack 232798 742271000168102 Amitriptyline (Alphapharm) 50 mg film-coated tablet, 1000 742191000168109 Amitriptyline (Alphapharm) 50 mg film-coated tablet 741991000168104 Amitriptyline (Alphapharm) 741991000168104 Amitriptyline (Alphapharm) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +79664011000036104 Zoton Fastab 30 mg orally disintegrating tablet, 7, blister pack 153701 79496011000036107 Zoton Fastab 30 mg orally disintegrating tablet, 7 79380011000036100 Zoton Fastab 30 mg orally disintegrating tablet 15461000168109 Zoton Fastab 15461000168109 Zoton Fastab 79820011000036107 lansoprazole 30 mg orally disintegrating tablet, 7 79748011000036108 lansoprazole 30 mg orally disintegrating tablet 21491011000036101 lansoprazole +18042011000036101 Sumatab 50 mg film-coated tablet, 2, blister pack 124432 11762011000036102 Sumatab 50 mg film-coated tablet, 2 5552011000036106 Sumatab 50 mg film-coated tablet 4300011000036107 Sumatab 4300011000036107 Sumatab 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +913501000168102 Celecoxib (ZX) 200 mg hard capsule, 30, blister pack 206826 913491000168109 Celecoxib (ZX) 200 mg hard capsule, 30 913481000168106 Celecoxib (ZX) 200 mg hard capsule 906371000168107 Celecoxib (ZX) 906371000168107 Celecoxib (ZX) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +86004011000036103 Lisinopril (DRLA) 5 mg uncoated tablet, 56, blister pack 152720 85652011000036105 Lisinopril (DRLA) 5 mg uncoated tablet, 56 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 83481011000036104 lisinopril 5 mg tablet, 56 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +19550011000036104 Ikorel 10 mg uncoated tablet, 60, blister pack 56845 12822011000036107 Ikorel 10 mg uncoated tablet, 60 6113011000036104 Ikorel 10 mg uncoated tablet 4319011000036104 Ikorel 4319011000036104 Ikorel 27379011000036102 nicorandil 10 mg tablet, 60 22728011000036106 nicorandil 10 mg tablet 21260011000036106 nicorandil +929024011000036105 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 8, blister pack 160640 928385011000036104 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet, 8 927963011000036103 Risedronate Sodium (Terry White Chemists) 35 mg film-coated tablet 927817011000036102 Risedronate Sodium (Terry White Chemists) 927817011000036102 Risedronate Sodium (Terry White Chemists) 929235011000036101 risedronate sodium 35 mg tablet, 8 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1078411000168105 Atomoxetine (GPPL) 100 mg hard capsule, 56, blister pack 234836 1078401000168107 Atomoxetine (GPPL) 100 mg hard capsule, 56 1078331000168106 Atomoxetine (GPPL) 100 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830171000168108 atomoxetine 100 mg capsule, 56 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +69238011000036103 Chlorhexidine Acetate (Baxter) 0.1% (100 mg/100 mL) irrigation solution, 24 x 100 mL bottles 19463 67038011000036101 Chlorhexidine Acetate (Baxter) 0.1% (100 mg/100 mL) irrigation solution, 24 x 100 mL bottles 65393011000036104 Chlorhexidine Acetate (Baxter) 0.1% (100 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71608011000036104 chlorhexidine acetate 0.1% (100 mg/100 mL) solution, 24 x 100 mL bottles 70089011000036108 chlorhexidine acetate 0.1% (100 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +984291000168106 Butafen 200 mg sugar coated tablet, 24, blister pack 126093 984281000168108 Butafen 200 mg sugar coated tablet, 24 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1076241000168109 Quetiapine (Auro) 150 mg film-coated tablet, 90, blister pack 172830 1076231000168100 Quetiapine (Auro) 150 mg film-coated tablet, 90 1075721000168102 Quetiapine (Auro) 150 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 939061000168104 quetiapine 150 mg tablet, 90 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +909211000168100 Cisatracurium (Juno) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 226857 909201000168103 Cisatracurium (Juno) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 909191000168101 Cisatracurium (Juno) 10 mg/5 mL injection solution, 5 mL ampoule 909131000168100 Cisatracurium (Juno) 909131000168100 Cisatracurium (Juno) 161571000036104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL ampoules 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +725161000168105 HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 725151000168108 HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 725131000168102 HCU Lophlex LQ 20 oral liquid solution, 125 mL pouch 35661000168103 HCU Lophlex LQ 20 35661000168103 HCU Lophlex LQ 20 725141000168106 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 125 mL pouches 725121000168100 amino acid formula with vitamins and minerals without methionine oral liquid, 125 mL pouch 50753011000036104 amino acid formula with vitamins and minerals without methionine +933230381000036102 Escitalopram (DRLA) 20 mg film-coated tablet, 10, blister pack 165130 933224271000036101 Escitalopram (DRLA) 20 mg film-coated tablet, 10 933220151000036109 Escitalopram (DRLA) 20 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 933224281000036104 escitalopram 20 mg tablet, 10 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1009851000168108 Oxaliplatin (Apo) 100 mg/20 mL concentrated injection, 20 mL vial 245533 1009841000168106 Oxaliplatin (Apo) 100 mg/20 mL concentrated injection, 20 mL vial 1009831000168102 Oxaliplatin (Apo) 100 mg/20 mL concentrated injection, 20 mL vial 1009251000168109 Oxaliplatin (Apo) 1009251000168109 Oxaliplatin (Apo) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +1110241000168108 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 30, blister pack 219061 1110231000168104 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 30 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1078571000168103 Atomoxetine (GPPL) 18 mg hard capsule, 28, blister pack 234841 1078561000168109 Atomoxetine (GPPL) 18 mg hard capsule, 28 1078511000168106 Atomoxetine (GPPL) 18 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 28014011000036103 atomoxetine 18 mg capsule, 28 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +55791000036107 Anastrozole (Synthon) 1 mg film-coated tablet, 56, blister pack 155176 52581000036109 Anastrozole (Synthon) 1 mg film-coated tablet, 56 15701000036106 Anastrozole (Synthon) 1 mg film-coated tablet 15161000036109 Anastrozole (Synthon) 15161000036109 Anastrozole (Synthon) 52161000036105 anastrozole 1 mg tablet, 56 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +966931000168109 Diavance 500/2.5 film-coated tablet, 90, blister pack 120264 966921000168106 Diavance 500/2.5 film-coated tablet, 90 966821000168103 Diavance 500/2.5 film-coated tablet 966811000168105 Diavance 500/2.5 966811000168105 Diavance 500/2.5 28196011000036101 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet, 90 23508011000036106 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet 21813011000036107 metformin + glibenclamide +981981000168101 Lovenox Forte 120 mg/0.8 mL injection solution, 8 x 0.8 mL syringes 80270 981971000168104 Lovenox Forte 120 mg/0.8 mL injection solution, 8 x 0.8 mL syringes 981961000168105 Lovenox Forte 120 mg/0.8 mL injection solution, 0.8 mL syringe 981881000168107 Lovenox Forte 981881000168107 Lovenox Forte 46704011000036109 enoxaparin sodium 120 mg/0.8 mL injection, 8 x 0.8 mL syringes 45275011000036108 enoxaparin sodium 120 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +20578011000036103 Pendine 400 mg hard capsule, 100, blister pack 80336 13767011000036109 Pendine 400 mg hard capsule, 100 7052011000036108 Pendine 400 mg hard capsule 3027011000036103 Pendine 3027011000036103 Pendine 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +1050461000168109 Bupannus 15 microgram/hour patch, 2, sachet 234724 1050451000168107 Bupannus 15 microgram/hour patch, 2 1050421000168104 Bupannus 15 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 776161000168100 buprenorphine 15 microgram/hour patch, 2 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +1029591000168109 Aten 25 mg film-coated tablet, 30, blister pack 197714 1029581000168106 Aten 25 mg film-coated tablet, 30 1029161000168105 Aten 25 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1029571000168108 atenolol 25 mg tablet, 30 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +60303011000036109 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 4, blister pack 137681 56262011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule, 4 53854011000036101 Dimetapp Cold and Flu Nightime Liquid Cap soft capsule 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 5901000168103 Dimetapp Cold and Flu Nightime Liquid Cap 63274011000036109 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule, 4 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +699041000168108 Zopiclone (Chemmart) 7.5 mg film-coated tablet, 30, blister pack 213074 699031000168104 Zopiclone (Chemmart) 7.5 mg film-coated tablet, 30 699021000168102 Zopiclone (Chemmart) 7.5 mg film-coated tablet 699011000168109 Zopiclone (Chemmart) 699011000168109 Zopiclone (Chemmart) 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +920658011000036105 Octreotide (DBL) 500 microgram/mL injection solution, 5 x 1 mL vials 120736 920370011000036104 Octreotide (DBL) 500 microgram/mL injection solution, 5 x 1 mL vials 920136011000036109 Octreotide (DBL) 500 microgram/mL injection solution, vial 920100011000036104 Octreotide (DBL) 920100011000036104 Octreotide (DBL) 32759011000036101 octreotide 500 microgram/mL injection, 5 x 1 mL vials 32690011000036106 octreotide 500 microgram/mL injection, vial 21316011000036104 octreotide +1119581000168109 Quetiapine XR (Actavis) 200 mg modified release tablet, 60, blister pack 226801 1119571000168106 Quetiapine XR (Actavis) 200 mg modified release tablet, 60 1119461000168101 Quetiapine XR (Actavis) 200 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +784661000168105 Pregabalin (Sandoz) 25 mg hard capsule, 56, blister pack 210049 784651000168108 Pregabalin (Sandoz) 25 mg hard capsule, 56 784641000168106 Pregabalin (Sandoz) 25 mg hard capsule 784381000168107 Pregabalin (Sandoz) 784381000168107 Pregabalin (Sandoz) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +921851011000036104 Propofol (Sandoz) 1 g/100 mL injection emulsion, 100 mL vial 148872 921417011000036106 Propofol (Sandoz) 1 g/100 mL injection emulsion, 100 mL vial 920996011000036101 Propofol (Sandoz) 1 g/100 mL injection emulsion, 100 mL vial 920961011000036109 Propofol (Sandoz) 920961011000036109 Propofol (Sandoz) 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +896281000168106 Imatinib (GH) 100 mg hard capsule, 96, blister pack 281535 896271000168108 Imatinib (GH) 100 mg hard capsule, 96 896191000168101 Imatinib (GH) 100 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 828871000168100 imatinib 100 mg capsule, 96 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1119561000168100 Quetiapine (Watson) 100 mg film-coated tablet, 20, blister pack 202263 1119551000168102 Quetiapine (Watson) 100 mg film-coated tablet, 20 1119541000168104 Quetiapine (Watson) 100 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +871121000168101 Anterone 50 mg uncoated tablet, 20, blister pack 278777 871111000168108 Anterone 50 mg uncoated tablet, 20 871101000168105 Anterone 50 mg uncoated tablet 870241000168107 Anterone 870241000168107 Anterone 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +1033881000168105 Atomoxetine (CH) 40 mg hard capsule, 28, blister pack 234826 1033871000168107 Atomoxetine (CH) 40 mg hard capsule, 28 1033771000168104 Atomoxetine (CH) 40 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 28016011000036106 atomoxetine 40 mg capsule, 28 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +73273011000036108 Jurnista 8 mg modified release tablet, 20, blister pack 141508 73071011000036102 Jurnista 8 mg modified release tablet, 20 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73469011000036102 hydromorphone hydrochloride 8 mg modified release tablet, 20 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +69384011000036109 Deep Heat Arthritis cream, 100 g, tube 35098 67184011000036105 Deep Heat Arthritis cream, 100 g 65523011000036106 Deep Heat Arthritis cream 8011000168109 Deep Heat Arthritis 8011000168109 Deep Heat Arthritis 71746011000036102 methyl salicylate 30% + menthol 8% cream, 100 g 70166011000036109 methyl salicylate 30% + menthol 8% cream 69751011000036100 methyl salicylate + menthol +17965011000036102 Epilim EC 500 mg enteric tablet, 100, blister pack 15370 12087011000036101 Epilim EC 500 mg enteric tablet, 100 4534011000036107 Epilim EC 500 mg enteric tablet 43831000168105 Epilim EC 43831000168105 Epilim EC 27140011000036102 valproate sodium 500 mg enteric tablet, 100 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +1003651000168109 Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60, blister pack 159052 1003641000168107 Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60 1003631000168103 Levetiracetam 1000 (Sandoz) 1 g film-coated tablet 1003621000168101 Levetiracetam 1000 (Sandoz) 1003621000168101 Levetiracetam 1000 (Sandoz) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +44557011000036101 Precedex 200 microgram/2 mL concentrated injection, 5 x 2 mL vials 81323 42010011000036102 Precedex 200 microgram/2 mL concentrated injection, 5 x 2 mL vials 40319011000036103 Precedex 200 microgram/2 mL concentrated injection, 2 mL vial 39573011000036108 Precedex 39573011000036108 Precedex 46783011000036106 dexmedetomidine 200 microgram/2 mL injection, 5 x 2 mL vials 45315011000036108 dexmedetomidine 200 microgram/2 mL injection, vial 44960011000036101 dexmedetomidine +18359011000036105 Tranalpha 500 microgram hard capsule, 28, blister pack 130872 11910011000036107 Tranalpha 500 microgram hard capsule, 28 5775011000036101 Tranalpha 500 microgram hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +18359011000036105 Tranalpha 500 microgram hard capsule, 28, blister pack 198992 11910011000036107 Tranalpha 500 microgram hard capsule, 28 5775011000036101 Tranalpha 500 microgram hard capsule 3633011000036104 Tranalpha 3633011000036104 Tranalpha 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +929116011000036104 Atenolol (Generic Health) 50 mg film-coated tablet, 30, blister pack 166964 928477011000036107 Atenolol (Generic Health) 50 mg film-coated tablet, 30 927993011000036101 Atenolol (Generic Health) 50 mg film-coated tablet 927807011000036100 Atenolol (Generic Health) 927807011000036100 Atenolol (Generic Health) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +61451011000036104 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 12, blister pack 90120 57376011000036102 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 12 54288011000036108 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +105001000036100 Irbesartan (Winthrop) 75 mg film-coated tablet, 30, blister pack 196947 102181000036104 Irbesartan (Winthrop) 75 mg film-coated tablet, 30 99141000036106 Irbesartan (Winthrop) 75 mg film-coated tablet 97591000036103 Irbesartan (Winthrop) 97591000036103 Irbesartan (Winthrop) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1035251000168101 Anti Diarrhoea Plus (Amcal) chewable tablet, 2, blister pack 221948 1035241000168103 Anti Diarrhoea Plus (Amcal) chewable tablet, 2 1035231000168107 Anti Diarrhoea Plus (Amcal) chewable tablet 1035221000168109 Anti Diarrhoea Plus (Amcal) 1035221000168109 Anti Diarrhoea Plus (Amcal) 63672011000036102 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 2 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +933213041000036106 Pantoprazole (I) 40 mg enteric tablet, 5, blister pack 158201 933202701000036101 Pantoprazole (I) 40 mg enteric tablet, 5 933195331000036103 Pantoprazole (I) 40 mg enteric tablet 933193131000036100 Pantoprazole (I) 933193131000036100 Pantoprazole (I) 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +866051000168105 Nezolid 600 mg/300 mL injection solution, 300 mL bag 235010 866041000168108 Nezolid 600 mg/300 mL injection solution, 300 mL bag 866031000168104 Nezolid 600 mg/300 mL injection solution, 300 mL bag 866021000168102 Nezolid 866021000168102 Nezolid 46770011000036109 linezolid 600 mg/300 mL injection, 300 mL bag 45308011000036100 linezolid 600 mg/300 mL injection, bag 44888011000036109 linezolid +44334011000036106 Combivent pressurised inhalation, 100 actuations, metered dose aerosol can 67268 41801011000036107 Combivent pressurised inhalation, 100 actuations 40206011000036101 Combivent pressurised inhalation, actuation 39570011000036100 Combivent 39570011000036100 Combivent 46607011000036105 ipratropium bromide 20 microgram/actuation + salbutamol 100 microgram/actuation pressurised inhalation, 100 actuations 45238011000036100 ipratropium bromide 20 microgram/actuation + salbutamol 100 microgram/actuation pressurised inhalation, actuation 44956011000036106 ipratropium + salbutamol +692531000168103 Desfax 100 mg modified release tablet, 28, blister pack 218061 692521000168101 Desfax 100 mg modified release tablet, 28 692471000168104 Desfax 100 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +866861000168101 Amitriptyline (Mylan) 10 mg film-coated tablet, 50, blister pack 232799 866851000168103 Amitriptyline (Mylan) 10 mg film-coated tablet, 50 866841000168100 Amitriptyline (Mylan) 10 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +21049011000036101 Cephalexin (Chemmart) 500 mg hard capsule, 20, blister pack 133853 14194011000036109 Cephalexin (Chemmart) 500 mg hard capsule, 20 7475011000036105 Cephalexin (Chemmart) 500 mg hard capsule 3701011000036103 Cephalexin (Chemmart) 3701011000036103 Cephalexin (Chemmart) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +21049011000036101 Cephalexin (Chemmart) 500 mg hard capsule, 20, blister pack 96882 14194011000036109 Cephalexin (Chemmart) 500 mg hard capsule, 20 7475011000036105 Cephalexin (Chemmart) 500 mg hard capsule 3701011000036103 Cephalexin (Chemmart) 3701011000036103 Cephalexin (Chemmart) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +933230301000036108 Citalopram (GA) 20 mg film-coated tablet, 14, blister pack 158852 933224341000036100 Citalopram (GA) 20 mg film-coated tablet, 14 933220071000036103 Citalopram (GA) 20 mg film-coated tablet 933219141000036105 Citalopram (GA) 933219141000036105 Citalopram (GA) 932393011000036107 citalopram 20 mg tablet, 14 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +44360011000036107 Cellcept 500 mg powder for injection, 4 vials 68233 41827011000036105 Cellcept 500 mg powder for injection, 4 vials 40216011000036103 Cellcept 500 mg powder for injection, 500 mg vial 4308011000036109 Cellcept 4308011000036109 Cellcept 46633011000036105 mycophenolate mofetil 500 mg injection, 4 vials 45247011000036102 mycophenolate mofetil 500 mg injection, vial 21266011000036109 mycophenolate +793321000168105 Ondansetron ODT (GH) 8 mg orally disintegrating tablet, 10, blister pack 231603 793311000168103 Ondansetron ODT (GH) 8 mg orally disintegrating tablet, 10 793261000168109 Ondansetron ODT (GH) 8 mg orally disintegrating tablet 793251000168107 Ondansetron ODT (GH) 793251000168107 Ondansetron ODT (GH) 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +1010091000168103 Topiramate (AN) 25 mg film-coated tablet, 60, blister pack 157972 686101000168102 Topiramate (AN) 25 mg film-coated tablet, 60 686091000168107 Topiramate (AN) 25 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +1063381000168109 Co-Codamol uncoated tablet, 12, blister pack 179692 1063371000168106 Co-Codamol uncoated tablet, 12 1063361000168100 Co-Codamol uncoated tablet 1063351000168102 Co-Codamol 1063351000168102 Co-Codamol 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +977711000168109 Pregabalin (Teva) 100 mg hard capsule, 56, blister pack 229590 977701000168106 Pregabalin (Teva) 100 mg hard capsule, 56 977651000168101 Pregabalin (Teva) 100 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855011000168105 pregabalin 100 mg capsule, 56 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +19627011000036106 Prograf 5 mg hard capsule, 50, blister pack 58931 12896011000036104 Prograf 5 mg hard capsule, 50 6186011000036108 Prograf 5 mg hard capsule 4131011000036102 Prograf 4131011000036102 Prograf 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +85027011000036101 Venlafaxine XR (Generic Health) 75 mg modified release capsule, 28, blister pack 151884 84892011000036102 Venlafaxine XR (Generic Health) 75 mg modified release capsule, 28 84786011000036101 Venlafaxine XR (Generic Health) 75 mg modified release capsule 58601000168109 Venlafaxine XR (Generic Health) 58601000168109 Venlafaxine XR (Generic Health) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +650031000168100 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 28, blister pack 202106 650021000168103 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 28 649971000168106 Pritor/Amlodipine 40 mg/5 mg multilayer tablet 649951000168102 Pritor/Amlodipine 40 mg/5 mg 649951000168102 Pritor/Amlodipine 40 mg/5 mg 932434011000036105 telmisartan 40 mg + amlodipine 5 mg tablet, 28 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +44163011000036107 Xylocaine 2% with Adrenaline 1 in 80 000 injection solution, 10 x 5 mL ampoules 54520 41639011000036106 Xylocaine 2% with Adrenaline 1 in 80 000 injection solution, 10 x 5 mL ampoules 40118011000036101 Xylocaine 2% with Adrenaline 1 in 80 000 injection solution, 5 mL ampoule 35311000168107 Xylocaine 2% with Adrenaline 1 in 80 000 35311000168107 Xylocaine 2% with Adrenaline 1 in 80 000 46458011000036101 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) + adrenaline (epinephrine) 1 in 80 000 (62.5 microgram/5 mL) injection, 10 x 5 mL ampoules 45167011000036107 lidocaine (lignocaine) hydrochloride 2% (100 mg/5 mL) + adrenaline (epinephrine) 1 in 80 000 (62.5 microgram/5 mL) injection, ampoule 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +718431000168106 Riluzole (Winthrop) 50 mg film-coated tablet, 56, blister pack 215851 718421000168108 Riluzole (Winthrop) 50 mg film-coated tablet, 56 718411000168101 Riluzole (Winthrop) 50 mg film-coated tablet 718401000168104 Riluzole (Winthrop) 718401000168104 Riluzole (Winthrop) 27912011000036108 riluzole 50 mg tablet, 56 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +44728011000036103 Emend 80 mg hard capsule, 2, blister pack 95773 42173011000036107 Emend 80 mg hard capsule, 2 7404011000036101 Emend 80 mg hard capsule 3261011000036105 Emend 3261011000036105 Emend 46934011000036106 aprepitant 80 mg capsule, 2 23472011000036105 aprepitant 80 mg capsule 21632011000036103 aprepitant +943851000168106 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 125 mL bottles 48234 943841000168109 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 10 x 125 mL bottles 943821000168103 Omnipaque-350 755 mg (iodine 350 mg)/mL injection solution, 125 mL bottle 6061000168106 Omnipaque-350 6061000168106 Omnipaque-350 943831000168100 iohexol 755 mg (iodine 350 mg)/mL injection, 10 x 125 mL bottles 943811000168105 iohexol 755 mg (iodine 350 mg)/mL injection, 125 mL bottle 77459011000036103 iohexol +931444011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 55 x 100 mL bags 144609 930623011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 55 x 100 mL bags 929977011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932379011000036100 sodium chloride 0.9% (900 mg/100 mL) injection, 55 x 100 mL bags 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +904961000168106 Amlodipine (SG) 5 mg uncoated tablet, 30, blister pack 225378 904951000168109 Amlodipine (SG) 5 mg uncoated tablet, 30 904941000168107 Amlodipine (SG) 5 mg uncoated tablet 904611000168103 Amlodipine (SG) 904611000168103 Amlodipine (SG) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +652181000168104 Quetia 200 mg film-coated tablet, 20, blister pack 204155 652171000168102 Quetia 200 mg film-coated tablet, 20 652131000168100 Quetia 200 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +19310011000036108 Kinson uncoated tablet, 100, bottle 49481 12600011000036106 Kinson uncoated tablet, 100 4702011000036107 Kinson uncoated tablet 4166011000036100 Kinson 4166011000036100 Kinson 27228011000036104 levodopa 100 mg + carbidopa 25 mg tablet, 100 22588011000036101 levodopa 100 mg + carbidopa 25 mg tablet 21326011000036107 levodopa + carbidopa +61254011000036100 Nicotine (Amcal) 14 mg/24 hours patch, 7, sachet 77119 57190011000036103 Nicotine (Amcal) 14 mg/24 hours patch, 7 54230011000036103 Nicotine (Amcal) 14 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 27925011000036106 nicotine 14 mg/24 hours patch, 7 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +74815011000036108 Somac 40 mg enteric coated granules, 84 sachets 148005 74302011000036101 Somac 40 mg enteric coated granules, 84 sachets 73826011000036107 Somac 40 mg enteric coated granules, 40 mg sachet 10171000168100 Somac 10171000168100 Somac 75418011000036100 pantoprazole 40 mg enteric coated granules, 84 sachets 75050011000036102 pantoprazole 40 mg enteric coated granules, sachet 21563011000036107 pantoprazole +38711000036106 Escilupin 15 mg film-coated tablet, 100, bottle 165867 35081000036106 Escilupin 15 mg film-coated tablet, 100 33131000036107 Escilupin 15 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +60971011000036106 Paracetamol (Pharmacist) 500 mg uncoated tablet, 12, blister pack 62808 56914011000036105 Paracetamol (Pharmacist) 500 mg uncoated tablet, 12 54119011000036100 Paracetamol (Pharmacist) 500 mg uncoated tablet 53276011000036100 Paracetamol (Pharmacist) 53276011000036100 Paracetamol (Pharmacist) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +977691000168106 Pregabalin (Teva) 100 mg hard capsule, 21, blister pack 229590 977681000168108 Pregabalin (Teva) 100 mg hard capsule, 21 977651000168101 Pregabalin (Teva) 100 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854981000168104 pregabalin 100 mg capsule, 21 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +44154011000036101 Ambisome 50 mg powder for injection, 1 vial 53783 41630011000036100 Ambisome 50 mg powder for injection, 1 vial 40111011000036105 Ambisome 50 mg powder for injection, 50 mg vial 39574011000036105 Ambisome 39574011000036105 Ambisome 46449011000036106 amphotericin B (as liposomal) 50 mg injection, 1 vial 45160011000036106 amphotericin B (as liposomal) 50 mg injection, vial 44896011000036106 liposomal amphotericin B +986331000168105 Advil Double Strength Liquid Capsules 400 mg soft capsule, 12, blister pack 207293 986321000168107 Advil Double Strength Liquid Capsules 400 mg soft capsule, 12 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986311000168100 ibuprofen 400 mg capsule, 12 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +1067721000168101 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 30, blister pack 175119 1067711000168108 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet, 30 1067531000168107 Ibuprofen and Codeine Phosphate (Medreich) film-coated tablet 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 1067521000168109 Ibuprofen and Codeine Phosphate (Medreich) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +699701000168109 Stivarga 40 mg tablet, 3 x 28, bottles 200553 699691000168109 Stivarga 40 mg tablet, 3 x 28 699591000168105 Stivarga 40 mg tablet 699521000168108 Stivarga 699521000168108 Stivarga 699681000168106 regorafenib 40 mg tablet, 3 x 28 699571000168109 regorafenib 40 mg tablet 699551000168100 regorafenib +716981000168102 Omepro 20 mg enteric capsule, 90, blister pack 149516 716971000168100 Omepro 20 mg enteric capsule, 90 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716961000168106 omeprazole 20 mg enteric capsule, 90 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +935171000168109 Centevo 125/31.25/200 mg film-coated tablet, 98, bottle 238856 935161000168103 Centevo 125/31.25/200 mg film-coated tablet, 98 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935151000168100 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 98 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +20518011000036105 Metoprolol Tartrate (GenRx) 100 mg uncoated tablet, 60, blister pack 78856 13718011000036109 Metoprolol Tartrate (GenRx) 100 mg uncoated tablet, 60 7000011000036101 Metoprolol Tartrate (GenRx) 100 mg uncoated tablet 3328011000036103 Metoprolol Tartrate (GenRx) 3328011000036103 Metoprolol Tartrate (GenRx) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +1028861000168105 Asartan 8 mg uncoated tablet, 30, blister pack 195378 1028851000168108 Asartan 8 mg uncoated tablet, 30 1028821000168100 Asartan 8 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +933091011000036101 Escitalopram (Generic Health) 20 mg film-coated tablet, 28, blister pack 165880 932894011000036106 Escitalopram (Generic Health) 20 mg film-coated tablet, 28 932750011000036108 Escitalopram (Generic Health) 20 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1115221000168109 Leflunomide (Generic Health) 20 mg film-coated tablet, 30, bottle 210921 1115211000168102 Leflunomide (Generic Health) 20 mg film-coated tablet, 30 1115201000168100 Leflunomide (Generic Health) 20 mg film-coated tablet 1115131000168102 Leflunomide (Generic Health) 1115131000168102 Leflunomide (Generic Health) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +964761000168107 Physiotens 300 microgram film-coated tablet, 14, blister pack 114120 964751000168105 Physiotens 300 microgram film-coated tablet, 14 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964281000168106 moxonidine 300 microgram tablet, 14 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +921834011000036100 Hydrogen Peroxide (Pfizer (Perth)) 3% solution, 30 mL, ampoule 11385 921378011000036108 Hydrogen Peroxide (Pfizer (Perth)) 3% solution, 30 mL 920981011000036107 Hydrogen Peroxide (Pfizer (Perth)) 3% solution 920942011000036106 Hydrogen Peroxide (Pfizer (Perth)) 920942011000036106 Hydrogen Peroxide (Pfizer (Perth)) 78140011000036103 hydrogen peroxide 3% solution, 30 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +44634011000036101 Levitra 10 mg film-coated tablet, 4, blister pack 90499 42087011000036103 Levitra 10 mg film-coated tablet, 4 40349011000036106 Levitra 10 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46854011000036100 vardenafil 10 mg tablet, 4 45333011000036101 vardenafil 10 mg tablet 44856011000036100 vardenafil +12941000036103 Quetiapine (Apo) 200 mg film-coated tablet, 60, blister pack 166064 8071000036108 Quetiapine (Apo) 200 mg film-coated tablet, 60 1431000036108 Quetiapine (Apo) 200 mg film-coated tablet 6221000168109 Quetiapine (Apo) 6221000168109 Quetiapine (Apo) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +802001000168109 Actrapid Innolet 100 units/mL injection solution, 5 x 3 mL cartridges 169621 801991000168107 Actrapid Innolet 100 units/mL injection solution, 5 x 3 mL cartridges 801981000168109 Actrapid Innolet 100 units/mL injection solution, 3 mL cartridge 801971000168106 Actrapid Innolet 801971000168106 Actrapid Innolet 27161011000036100 insulin neutral human 100 units/mL injection, 5 x 3 mL cartridges 22523011000036100 insulin neutral human 100 units/mL injection, cartridge 33644011000036103 insulin neutral human +50691011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack, composite pack 92120 49715011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack 7297011000036105 Peg-Intron Redipen Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 51572011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [196 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +50691011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack, composite pack 92120 49715011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 51572011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [196 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +50691011000036104 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack, composite pack 92120 49715011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 196 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 51572011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [196 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +43683011000036108 Sumatab 100 mg film-coated tablet, 2, blister pack 124439 41314011000036105 Sumatab 100 mg film-coated tablet, 2 39879011000036107 Sumatab 100 mg film-coated tablet 4300011000036107 Sumatab 4300011000036107 Sumatab 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +1113051000168105 Allopurinol (TN) 300 mg uncoated tablet, 60, blister pack 269655 1113041000168108 Allopurinol (TN) 300 mg uncoated tablet, 60 1112951000168100 Allopurinol (TN) 300 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +753151000168108 Oxycodone (GX) 10 mg hard capsule, 60, blister pack 227833 753141000168106 Oxycodone (GX) 10 mg hard capsule, 60 753081000168102 Oxycodone (GX) 10 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +866131000168103 Paracetamol Children's 1 to 5 Years (Apohealth) 120 mg/5 mL oral liquid solution, 200 mL, bottle 227874 866121000168101 Paracetamol Children's 1 to 5 Years (Apohealth) 120 mg/5 mL oral liquid solution, 200 mL 866091000168100 Paracetamol Children's 1 to 5 Years (Apohealth) 120 mg/5 mL oral liquid solution, 5 mL 866081000168103 Paracetamol Children's 1 to 5 Years (Apohealth) 866081000168103 Paracetamol Children's 1 to 5 Years (Apohealth) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +776711000168104 Mometasone (Terry White Chemists) 50 microgram/actuation nasal spray, 140 actuations, pump pack 184658 776701000168102 Mometasone (Terry White Chemists) 50 microgram/actuation nasal spray, 140 actuations 776671000168103 Mometasone (Terry White Chemists) 50 microgram/actuation nasal spray, actuation 776661000168109 Mometasone (Terry White Chemists) 776661000168109 Mometasone (Terry White Chemists) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +19507011000036108 Topamax 100 mg film-coated tablet, 60, bottle 55937 13032011000036101 Topamax 100 mg film-coated tablet, 60 6319011000036107 Topamax 100 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +709851000168106 Fluarix 2015 injection suspension, 1 x 0.5 mL syringe 154660 709841000168109 Fluarix 2015 injection suspension, 1 x 0.5 mL syringe 709831000168100 Fluarix 2015 injection suspension, 0.5 mL syringe 709821000168103 Fluarix 2015 709821000168103 Fluarix 2015 709361000168100 influenza trivalent adult vaccine 2015 injection, 1 x 0.5 mL syringe 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +930921000168104 Xatral 2.5 mg film-coated tablet, 90, blister pack 60096 930911000168106 Xatral 2.5 mg film-coated tablet, 90 930831000168105 Xatral 2.5 mg film-coated tablet 930811000168100 Xatral 930811000168100 Xatral 930901000168108 alfuzosin hydrochloride 2.5 mg tablet, 90 930821000168107 alfuzosin hydrochloride 2.5 mg tablet 926977011000036100 alfuzosin +793391000168107 Ondansetron ODT (GH) 4 mg orally disintegrating tablet, 10, blister pack 231602 793381000168109 Ondansetron ODT (GH) 4 mg orally disintegrating tablet, 10 793331000168108 Ondansetron ODT (GH) 4 mg orally disintegrating tablet 793251000168107 Ondansetron ODT (GH) 793251000168107 Ondansetron ODT (GH) 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +1041831000168109 Atorvastatin (AS) 20 mg film-coated tablet, 20, blister pack 178540 1041821000168106 Atorvastatin (AS) 20 mg film-coated tablet, 20 1041791000168103 Atorvastatin (AS) 20 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841371000168104 atorvastatin 20 mg tablet, 20 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +700029721000036101 Locilan 28 Day 350 microgram uncoated tablet, 28, blister pack 12524011000036104 Locilan 28 Day 350 microgram uncoated tablet, 28 5035011000036100 Locilan 28 Day 350 microgram uncoated tablet 700024631000036109 Locilan 28 Day 700024631000036109 Locilan 28 Day 28349011000036106 norethisterone 350 microgram tablet, 28 22533011000036103 norethisterone 350 microgram tablet 21579011000036102 norethisterone +19987011000036100 Ferrum H 100 mg/2 mL injection solution, 5 x 2 mL ampoules 68110 13228011000036107 Ferrum H 100 mg/2 mL injection solution, 5 x 2 mL ampoules 6510011000036104 Ferrum H 100 mg/2 mL injection solution, 2 mL ampoule 3749011000036105 Ferrum H 3749011000036105 Ferrum H 27984011000036102 iron (as polymaltose) 100 mg/2 mL injection, 5 x 2 mL ampoules 23308011000036109 iron (as polymaltose) 100 mg/2 mL injection, ampoule 21803011000036105 iron polymaltose +20278011000036108 Isosorbide Mononitrate (Chemmart) 60 mg modified release tablet, 30, blister pack 75239 13488011000036104 Isosorbide Mononitrate (Chemmart) 60 mg modified release tablet, 30 6770011000036108 Isosorbide Mononitrate (Chemmart) 60 mg modified release tablet 3230011000036109 Isosorbide Mononitrate (Chemmart) 3230011000036109 Isosorbide Mononitrate (Chemmart) 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +1110881000168102 Quetiapine (DP) 25 mg film-coated tablet, 20, blister pack 202268 1110871000168100 Quetiapine (DP) 25 mg film-coated tablet, 20 1110861000168106 Quetiapine (DP) 25 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +77331000036100 Astromide 140 mg hard capsule, 5, sachet 197466 933224131000036107 Astromide 140 mg hard capsule, 5 933220131000036101 Astromide 140 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +38751000036105 Escitalupin 15 mg film-coated tablet, 30, bottle 165869 35121000036109 Escitalupin 15 mg film-coated tablet, 30 33051000036100 Escitalupin 15 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +928908011000036102 Vaclovir 500 mg film-coated tablet, 10, blister pack 153822 928270011000036105 Vaclovir 500 mg film-coated tablet, 10 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1098021000168104 Paracetamol XR (AH) 665 mg modified release tablet, 96, blister pack 227105 1098011000168106 Paracetamol XR (AH) 665 mg modified release tablet, 96 1094661000168106 Paracetamol XR (AH) 665 mg modified release tablet 1094641000168107 Paracetamol XR (AH) 1094641000168107 Paracetamol XR (AH) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +34816011000036108 Ritalin LA 30 mg modified release capsule, 100, bottle 82958 34391011000036104 Ritalin LA 30 mg modified release capsule, 100 34068011000036109 Ritalin LA 30 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 35235011000036107 methylphenidate hydrochloride 30 mg modified release capsule, 100 34908011000036104 methylphenidate hydrochloride 30 mg modified release capsule 21277011000036101 methylphenidate +18959011000036101 Hypurin Isophane 100 units/mL injection suspension, 1 x 10 mL vial 27803 12267011000036109 Hypurin Isophane 100 units/mL injection suspension, 1 x 10 mL vial 4914011000036106 Hypurin Isophane 100 units/mL injection suspension, 10 mL vial 32958011000036103 Hypurin Isophane 32958011000036103 Hypurin Isophane 27029011000036102 insulin isophane bovine 100 units/mL injection, 1 x 10 mL vial 22402011000036106 insulin isophane bovine 100 units/mL injection, vial 33636011000036107 insulin isophane bovine +69641011000036105 Panadol Rapid 500 mg film-coated tablet, 10, blister pack 123657 67440011000036106 Panadol Rapid 500 mg film-coated tablet, 10 65667011000036101 Panadol Rapid 500 mg film-coated tablet 4501000168107 Panadol Rapid 4501000168107 Panadol Rapid 46257011000036103 paracetamol 500 mg tablet, 10 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +69641011000036105 Panadol Rapid 500 mg film-coated tablet, 10, blister pack 78692 67440011000036106 Panadol Rapid 500 mg film-coated tablet, 10 65667011000036101 Panadol Rapid 500 mg film-coated tablet 4501000168107 Panadol Rapid 4501000168107 Panadol Rapid 46257011000036103 paracetamol 500 mg tablet, 10 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +977551000168102 Aripiprazole (AN) 2 mg uncoated tablet, 28, blister pack 198202 977541000168104 Aripiprazole (AN) 2 mg uncoated tablet, 28 977531000168108 Aripiprazole (AN) 2 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 801611000168108 aripiprazole 2 mg tablet, 28 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +20655011000036103 Kredex 3.125 mg uncoated tablet, 30, blister pack 81646 13835011000036108 Kredex 3.125 mg uncoated tablet, 30 7122011000036102 Kredex 3.125 mg uncoated tablet 3872011000036103 Kredex 3872011000036103 Kredex 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +34825011000036107 Actiq 200 microgram lozenge on handle, 3, blister pack 91598 34400011000036103 Actiq 200 microgram lozenge on handle, 3 34075011000036107 Actiq 200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 35239011000036109 fentanyl 200 microgram lozenge on handle, 3 34910011000036103 fentanyl 200 microgram lozenge on handle 21258011000036102 fentanyl +37352011000036109 Nurocain 2% with Adrenaline 1 in 100 000 Dental injection solution, 100 x 2.2 mL cartridges 11963 36678011000036103 Nurocain 2% with Adrenaline 1 in 100 000 Dental injection solution, 100 x 2.2 mL cartridges 36053011000036102 Nurocain 2% with Adrenaline 1 in 100 000 Dental injection solution, 2.2 mL cartridge 45441000168103 Nurocain 2% with Adrenaline 1 in 100 000 Dental 45441000168103 Nurocain 2% with Adrenaline 1 in 100 000 Dental 38591011000036102 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, 100 x 2.2 mL cartridges 37862011000036101 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, cartridge 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +77283011000036107 Synthamin 17 Amino Acid 10% without Electrolytes intravenous infusion injection, 12 x 500 mL bottles 19446 76699011000036108 Synthamin 17 Amino Acid 10% without Electrolytes intravenous infusion injection, 12 x 500 mL bottles 76124011000036102 Synthamin 17 Amino Acid 10% without Electrolytes intravenous infusion injection, 500 mL bottle 21661000168102 Synthamin 17 Amino Acid 10% without Electrolytes 21661000168102 Synthamin 17 Amino Acid 10% without Electrolytes 78214011000036104 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles 77547011000036102 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle 77452011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +652021000168104 Malean 5 mg tablet, 30, blister pack 196512 652011000168106 Malean 5 mg tablet, 30 652001000168108 Malean 5 mg tablet 651221000168102 Malean 651221000168102 Malean 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +862441000168102 Worm Treatment (Apohealth) 100 mg chewable tablet, 6, blister pack 229073 862431000168106 Worm Treatment (Apohealth) 100 mg chewable tablet, 6 862401000168104 Worm Treatment (Apohealth) 100 mg chewable tablet 862391000168101 Worm Treatment (Apohealth) 862391000168101 Worm Treatment (Apohealth) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +1110311000168101 Nicotinell Ice Mint 4 mg chewing gum, 24, blister pack 279616 1110301000168104 Nicotinell Ice Mint 4 mg chewing gum, 24 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +785301000168103 Memantine (Generic Health) 20 mg film-coated tablet, 42, blister pack 168427 785291000168104 Memantine (Generic Health) 20 mg film-coated tablet, 42 667621000168101 Memantine (Generic Health) 20 mg film-coated tablet 667581000168101 Memantine (Generic Health) 667581000168101 Memantine (Generic Health) 785281000168102 memantine hydrochloride 20 mg tablet, 42 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +81581000036108 Riluzole (Apo) 50 mg film-coated tablet, 56, bottle 168094 80001000036101 Riluzole (Apo) 50 mg film-coated tablet, 56 78951000036105 Riluzole (Apo) 50 mg film-coated tablet 78001000036105 Riluzole (Apo) 78001000036105 Riluzole (Apo) 27912011000036108 riluzole 50 mg tablet, 56 23236011000036105 riluzole 50 mg tablet 21384011000036109 riluzole +44060011000036106 Marcain Epidural Infusion 0.125% (250 mg/200 mL) injection solution, 5 x 200 mL bags 48374 41547011000036108 Marcain Epidural Infusion 0.125% (250 mg/200 mL) injection solution, 5 x 200 mL bags 40054011000036107 Marcain Epidural Infusion 0.125% (250 mg/200 mL) injection solution, 200 mL bag 31131000168101 Marcain Epidural Infusion 31131000168101 Marcain Epidural Infusion 46379011000036104 bupivacaine hydrochloride monohydrate 0.125% (250 mg/200 mL) injection, 5 x 200 mL bags 45116011000036108 bupivacaine hydrochloride monohydrate 0.125% (250 mg/200 mL) injection, bag 37702011000036102 bupivacaine +1012331000168100 Irbesartan (Apotex) 75 mg film-coated tablet, 30, blister pack 169798 1012321000168103 Irbesartan (Apotex) 75 mg film-coated tablet, 30 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +17982011000036107 Cyprohexal 50 mg uncoated tablet, 50, bottle 107330 11370011000036106 Cyprohexal 50 mg uncoated tablet, 50 5347011000036108 Cyprohexal 50 mg uncoated tablet 4006011000036109 Cyprohexal 4006011000036109 Cyprohexal 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +933213021000036103 Pantoprazole (I) 20 mg enteric tablet, 30, blister pack 158200 933202671000036100 Pantoprazole (I) 20 mg enteric tablet, 30 933195311000036107 Pantoprazole (I) 20 mg enteric tablet 933193131000036100 Pantoprazole (I) 933193131000036100 Pantoprazole (I) 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +60954011000036106 Nicotinell Mint 4 mg chewing gum, 96, blister pack 62366 56897011000036107 Nicotinell Mint 4 mg chewing gum, 96 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60954011000036106 Nicotinell Mint 4 mg chewing gum, 96, blister pack 126044 56897011000036107 Nicotinell Mint 4 mg chewing gum, 96 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +999401000168104 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 200630 999391000168101 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28 999351000168106 Drospirenone/EE 3/20 (Apo) (drospirenone 3 mg + ethinylestradiol 20 microgram) film-coated tablet 999341000168109 Drospirenone/EE 3/20 (Apo) 999341000168109 Drospirenone/EE 3/20 (Apo) 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +999401000168104 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 200630 999391000168101 Drospirenone/EE 3/20 (Apo) (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28 999361000168108 Drospirenone/EE 3/20 (Apo) (inert substance) film-coated tablet 999341000168109 Drospirenone/EE 3/20 (Apo) 999341000168109 Drospirenone/EE 3/20 (Apo) 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +59926011000036100 Paracetamol Children's 1 to 5 Years (Your Pharmacy) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL, bottle 119143 55888011000036105 Paracetamol Children's 1 to 5 Years (Your Pharmacy) Colour Free 120 mg/5 mL oral liquid suspension, 200 mL 53637011000036102 Paracetamol Children's 1 to 5 Years (Your Pharmacy) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 60681000168105 Paracetamol Children's 1 to 5 Years (Your Pharmacy) 60681000168105 Paracetamol Children's 1 to 5 Years (Your Pharmacy) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +868871000168108 Simipex XR 1.5 mg modified release tablet, 10, blister pack 225603 868861000168102 Simipex XR 1.5 mg modified release tablet, 10 868851000168104 Simipex XR 1.5 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 756171000168109 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet, 10 87760011000036108 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet 37716011000036100 pramipexole +960511000168105 Ciram 40 mg film-coated tablet, 14, blister pack 158860 960501000168107 Ciram 40 mg film-coated tablet, 14 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202841000036106 citalopram 40 mg tablet, 14 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1044571000168106 Amoxiclav 500/125 (Amneal) film-coated tablet, 60, blister pack 255079 1044561000168100 Amoxiclav 500/125 (Amneal) film-coated tablet, 60 1044511000168103 Amoxiclav 500/125 (Amneal) film-coated tablet 1044501000168101 Amoxiclav 500/125 (Amneal) 1044501000168101 Amoxiclav 500/125 (Amneal) 51545011000036108 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 60 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +701231000168102 Gabapentin (GH) 400 mg capsule, 100, blister pack 219922 701221000168100 Gabapentin (GH) 400 mg capsule, 100 701211000168107 Gabapentin (GH) 400 mg capsule 701201000168109 Gabapentin (GH) 701201000168109 Gabapentin (GH) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +43563011000036103 Simvastatin (DP) 20 mg film-coated tablet, 100, bottle 125781 41324011000036102 Simvastatin (DP) 20 mg film-coated tablet, 100 4533011000036105 Simvastatin (DP) 20 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 46246011000036103 simvastatin 20 mg tablet, 100 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +86895011000036100 Lamotrigine (Apo) 200 mg tablet, 56, blister pack 167524 86777011000036104 Lamotrigine (Apo) 200 mg tablet, 56 86649011000036100 Lamotrigine (Apo) 200 mg tablet 11141000168104 Lamotrigine (Apo) 11141000168104 Lamotrigine (Apo) 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +69007011000036100 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 12 sachets 138697 66809011000036104 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 12 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71439011000036100 paracetamol 1 g powder for oral liquid, 12 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +724831000168107 Alfamino Junior powder for oral liquid, 400 g, can 724821000168109 Alfamino Junior powder for oral liquid, 400 g 724801000168100 Alfamino Junior powder for oral liquid 724761000168108 Alfamino Junior 724761000168108 Alfamino Junior 724811000168102 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides powder for oral liquid, 400 g 724791000168101 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides powder for oral liquid 724781000168104 amino acid formula with fat, carbohydrate, vitamins, minerals, trace elements and medium chain triglycerides +845271000168105 Olmesartan (Alembic) 20 mg film-coated tablet, 30, blister pack 221064 845261000168104 Olmesartan (Alembic) 20 mg film-coated tablet, 30 845251000168101 Olmesartan (Alembic) 20 mg film-coated tablet 845241000168103 Olmesartan (Alembic) 845241000168103 Olmesartan (Alembic) 26566011000036103 olmesartan medoxomil 20 mg tablet, 30 21975011000036107 olmesartan medoxomil 20 mg tablet 32674011000036109 olmesartan +18205011000036109 Ondaz 8 mg/4 mL injection solution, 4 mL ampoule 116425 11518011000036104 Ondaz 8 mg/4 mL injection solution, 4 mL ampoule 4598011000036108 Ondaz 8 mg/4 mL injection solution, 4 mL ampoule 3761000168104 Ondaz 3761000168104 Ondaz 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +793961000168101 Arnuity Ellipta 100 microgram/actuation powder for inhalation, 14 actuations, blister pack 231095 793951000168103 Arnuity Ellipta 100 microgram/actuation powder for inhalation, 14 actuations 793931000168109 Arnuity Ellipta 100 microgram/actuation powder for inhalation, actuation 793811000168105 Arnuity Ellipta 793811000168105 Arnuity Ellipta 793941000168100 fluticasone furoate 100 microgram/actuation powder for inhalation, 14 actuations 793921000168106 fluticasone furoate 100 microgram/actuation powder for inhalation, actuation 860171000168103 fluticasone furoate +975451000168105 Amoxiclav 500/100 (Juno) powder for injection, 600 mg vial 269162 975441000168108 Amoxiclav 500/100 (Juno) powder for injection, 600 mg vial 975421000168102 Amoxiclav 500/100 (Juno) powder for injection, 600 mg vial 975401000168106 Amoxiclav 500/100 (Juno) 975401000168106 Amoxiclav 500/100 (Juno) 975431000168104 amoxicillin 500 mg + clavulanic acid 100 mg injection, 600 mg vial 975411000168109 amoxicillin 500 mg + clavulanic acid 100 mg injection, 600 mg vial 21360011000036101 amoxicillin + clavulanic acid +937271000168106 SalplusF Inhaler 250/25 pressurised inhalation, 120 actuations, metered dose aerosol can 267105 937261000168100 SalplusF Inhaler 250/25 pressurised inhalation, 120 actuations 937251000168102 SalplusF Inhaler 250/25 pressurised inhalation, actuation 937241000168104 SalplusF Inhaler 250/25 937241000168104 SalplusF Inhaler 250/25 26725011000036101 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22120011000036102 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +38431000036106 Escital 10 mg film-coated tablet, 28, blister pack 165850 34761000036103 Escital 10 mg film-coated tablet, 28 32411000036104 Escital 10 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1104371000168103 Mogadon 5 mg uncoated tablet, 30, blister pack 13751 1104361000168109 Mogadon 5 mg uncoated tablet, 30 5371011000036104 Mogadon 5 mg uncoated tablet 3616011000036104 Mogadon 3616011000036104 Mogadon 751001000168106 nitrazepam 5 mg tablet, 30 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +77360011000036106 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 100 mL syringe 61983 76776011000036101 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 100 mL syringe 76175011000036104 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 100 mL syringe 14501000168105 Optiray-350 14501000168105 Optiray-350 78281011000036100 ioversol 741 mg (iodine 350 mg)/mL injection, 100 mL syringe 77591011000036104 ioversol 741 mg (iodine 350 mg)/mL injection, 100 mL syringe 77421011000036103 ioversol +1102361000168104 Qtern 5/10 film-coated tablet, 28, blister pack 255632 1102351000168101 Qtern 5/10 film-coated tablet, 28 1102231000168100 Qtern 5/10 film-coated tablet 1102191000168109 Qtern 5/10 1102191000168109 Qtern 5/10 1102341000168103 saxagliptin 5 mg + dapagliflozin 10 mg tablet, 28 1102221000168103 saxagliptin 5 mg + dapagliflozin 10 mg tablet 1102211000168105 saxagliptin + dapagliflozin +12861000036109 Anzole 1 mg film-coated tablet, 30, blister pack 165974 8031000036106 Anzole 1 mg film-coated tablet, 30 3511000036101 Anzole 1 mg film-coated tablet 431000036107 Anzole 431000036107 Anzole 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +43760011000036105 Stilnox CR 6.25 mg modified release tablet, 14, blister pack 120707 41235011000036107 Stilnox CR 6.25 mg modified release tablet, 14 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46177011000036104 zolpidem tartrate 6.25 mg modified release tablet, 14 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +69204011000036102 Ringer's (Baxter) irrigation solution, 15 x 500 mL bottles 19444 67004011000036100 Ringer's (Baxter) irrigation solution, 15 x 500 mL bottles 65340011000036104 Ringer's (Baxter) irrigation solution, 500 mL bottle 65107011000036104 Ringer's (Baxter) 65107011000036104 Ringer's (Baxter) 71574011000036107 sodium chloride 4.3 g/500 mL + potassium chloride 150 mg/500 mL + calcium chloride dihydrate 165 mg/500 mL solution, 15 x 500 mL bottles 70072011000036107 sodium chloride 4.3 g/500 mL + potassium chloride 150 mg/500 mL + calcium chloride dihydrate 165 mg/500 mL solution, bottle 69841011000036101 sodium chloride + potassium chloride + calcium chloride dihydrate +60063011000036106 Xylocaine Topical 4% lotion, 30 mL, bottle 124858 56025011000036105 Xylocaine Topical 4% lotion, 30 mL 53762011000036102 Xylocaine Topical 4% lotion 59741000168106 Xylocaine Topical 59741000168106 Xylocaine Topical 63195011000036100 lidocaine (lignocaine) hydrochloride 4% lotion, 30 mL 61884011000036103 lidocaine (lignocaine) hydrochloride 4% lotion 21572011000036107 lidocaine (lignocaine) +55701000036104 Synastrozole 1 mg film-coated tablet, 98, blister pack 155175 52451000036101 Synastrozole 1 mg film-coated tablet, 98 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52281000036107 anastrozole 1 mg tablet, 98 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1028901000168104 Period Pain Relief (Blooms The Chemist) 275 mg film-coated tablet, 12, blister pack 135107 1028891000168103 Period Pain Relief (Blooms The Chemist) 275 mg film-coated tablet, 12 1028881000168101 Period Pain Relief (Blooms The Chemist) 275 mg film-coated tablet 1028871000168104 Period Pain Relief (Blooms The Chemist) 1028871000168104 Period Pain Relief (Blooms The Chemist) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +735611000168102 Aldiq 5% cream, 6 x 250 mg sachets 201801 735601000168100 Aldiq 5% cream, 6 x 250 mg sachets 143541000036102 Aldiq 5% cream, 250 mg sachet 143331000036103 Aldiq 143331000036103 Aldiq 932454011000036109 imiquimod 5% cream, 6 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +939601000168108 Celecoxib (Ranbaxy) 200 mg hard capsule, 120, blister pack 212788 939591000168101 Celecoxib (Ranbaxy) 200 mg hard capsule, 120 939451000168105 Celecoxib (Ranbaxy) 200 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +81035011000036107 Carvedilol (Sandoz) 25 mg uncoated tablet, 60, blister pack 104399 80478011000036102 Carvedilol (Sandoz) 25 mg uncoated tablet, 60 80159011000036106 Carvedilol (Sandoz) 25 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +1003731000168106 Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60, blister pack 159271 1003721000168108 Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60 1003711000168101 Levetiracetam 1000 (SZ) 1 g film-coated tablet 1003701000168104 Levetiracetam 1000 (SZ) 1003701000168104 Levetiracetam 1000 (SZ) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +82901011000036109 Metsal Heat Rub gel, 50 g, tube 163793 82795011000036104 Metsal Heat Rub gel, 50 g 82702011000036105 Metsal Heat Rub gel 82661011000036109 Metsal Heat Rub 82661011000036109 Metsal Heat Rub 83012011000036103 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% gel, 50 g 82943011000036100 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% gel 21628011000036103 methyl salicylate + eucalyptus oil + menthol +931617011000036108 Pravista 40 mg film-coated tablet, 30, bottle 163562 930778011000036102 Pravista 40 mg film-coated tablet, 30 930042011000036102 Pravista 40 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +942891000168106 Fluvoxamine (Chemmart) 100 mg film-coated tablet, 30, blister pack 147391 942881000168108 Fluvoxamine (Chemmart) 100 mg film-coated tablet, 30 942871000168105 Fluvoxamine (Chemmart) 100 mg film-coated tablet 942861000168104 Fluvoxamine (Chemmart) 942861000168104 Fluvoxamine (Chemmart) 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +929697011000036103 Valacor 500 mg film-coated tablet, 30, blister pack 177373 929533011000036108 Valacor 500 mg film-coated tablet, 30 929415011000036105 Valacor 500 mg film-coated tablet 929366011000036107 Valacor 929366011000036107 Valacor 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +710731000168103 Strepsils lemon sugar free lozenge, 36, blister pack 153118 710721000168101 Strepsils lemon sugar free lozenge, 36 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1068201000168101 Paracetamol plus Codeine (Meditab) uncoated tablet, 20, blister pack 184463 1068191000168104 Paracetamol plus Codeine (Meditab) uncoated tablet, 20 1068141000168107 Paracetamol plus Codeine (Meditab) uncoated tablet 1068081000168103 Paracetamol plus Codeine (Meditab) 1068081000168103 Paracetamol plus Codeine (Meditab) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +933214321000036103 Tralen 50 mg film-coated tablet, 30, blister pack 160773 933203541000036101 Tralen 50 mg film-coated tablet, 30 933195841000036104 Tralen 50 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +834951000168105 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L, bottle 14277 834941000168108 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L 834921000168102 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid 35901011000036104 Codeine Phosphate Linctus (Biotech) 35901011000036104 Codeine Phosphate Linctus (Biotech) 834931000168104 codeine phosphate hemihydrate 5 mg/mL oral liquid, 2 L 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +19541011000036108 Zyprexa 7.5 mg film-coated tablet, 28, blister pack 56605 12813011000036109 Zyprexa 7.5 mg film-coated tablet, 28 6104011000036104 Zyprexa 7.5 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +650511000168102 Acetylcysteine (Omegapharm) 800 mg/4 mL inhalation solution, 10 x 4 mL vials 172101 650501000168100 Acetylcysteine (Omegapharm) 800 mg/4 mL inhalation solution, 10 x 4 mL vials 26511000036101 Acetylcysteine (Omegapharm) 800 mg/4 mL inhalation solution, 4 mL vial 26341000036106 Acetylcysteine (Omegapharm) 26341000036106 Acetylcysteine (Omegapharm) 650491000168107 acetylcysteine 800 mg/4 mL inhalation solution, 10 x 4 mL vials 26531000036105 acetylcysteine 800 mg/4 mL inhalation solution, vial 21423011000036105 acetylcysteine +839291000168105 Bactroban 2% ointment, 1 g, tube 11145 839281000168107 Bactroban 2% ointment, 1 g 4814011000036103 Bactroban 2% ointment 3296011000036102 Bactroban 3296011000036102 Bactroban 839271000168109 mupirocin 2% ointment, 1 g 22049011000036102 mupirocin 2% ointment 21590011000036101 mupirocin +83400011000036105 Pravastatin Sodium (Sandoz) 80 mg tablet, 30, blister pack 152452 83319011000036107 Pravastatin Sodium (Sandoz) 80 mg tablet, 30 83250011000036103 Pravastatin Sodium (Sandoz) 80 mg tablet 83228011000036100 Pravastatin Sodium (Sandoz) 83228011000036100 Pravastatin Sodium (Sandoz) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +1007441000168103 Morphine MR (Mylan) 100 mg modified release tablet, 20, blister pack 225424 1007431000168107 Morphine MR (Mylan) 100 mg modified release tablet, 20 1007421000168109 Morphine MR (Mylan) 100 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 27109011000036102 morphine sulfate pentahydrate 100 mg modified release tablet, 20 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +43828011000036102 Duac Once Daily gel, 60 g, tube 100707 41096011000036104 Duac Once Daily gel, 60 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46082011000036101 clindamycin 1% + benzoyl peroxide 5% gel, 60 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +18942011000036109 Flagyl S 200 mg/5 mL oral liquid suspension, 100 mL, bottle 27501 12250011000036101 Flagyl S 200 mg/5 mL oral liquid suspension, 100 mL 5777011000036106 Flagyl S 200 mg/5 mL oral liquid suspension, 5 mL 33631000168107 Flagyl S 33631000168107 Flagyl S 27014011000036106 metronidazole 200 mg/5 mL oral liquid, 100 mL 22387011000036104 metronidazole 200 mg/5 mL oral liquid 21482011000036106 metronidazole +972871000168106 Lyzalon 150 mg hard capsule, 56, blister pack 224446 972421000168108 Lyzalon 150 mg hard capsule, 56 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +50295011000036100 MWD Pen Sensor diagnostic strip, 50, bottle 128571 49573011000036107 MWD Pen Sensor diagnostic strip, 50 48752011000036103 MWD Pen Sensor diagnostic strip 52231000168101 MWD Pen Sensor 52231000168101 MWD Pen Sensor 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +964601000168100 Normatens 400 microgram film-coated tablet, 30, blister pack 114124 964591000168107 Normatens 400 microgram film-coated tablet, 30 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 26657011000036102 moxonidine 400 microgram tablet, 30 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +1044891000168105 Pryzex 2.5 mg film-coated tablet, 14, blister pack 178975 1044881000168107 Pryzex 2.5 mg film-coated tablet, 14 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044871000168109 olanzapine 2.5 mg tablet, 14 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +154071000036103 Vicks Vaporub Greaseless cream, 85 g, tube 143951 154041000036105 Vicks Vaporub Greaseless cream, 85 g 153971000036100 Vicks Vaporub Greaseless cream 55641000168103 Vicks Vaporub Greaseless 55641000168103 Vicks Vaporub Greaseless 154051000036108 menthol 2.82% + camphor 5.23% + eucalyptus oil 1.35% cream, 85 g 153981000036103 menthol 2.82% + camphor 5.23% + eucalyptus oil 1.35% cream 69806011000036104 menthol + camphor + eucalyptus oil +60628011000036104 Paedamin Decongestant and Antihistamine Syrup for Children oral liquid solution, 200 mL, bottle 20862 56586011000036107 Paedamin Decongestant and Antihistamine Syrup for Children oral liquid solution, 200 mL 53989011000036104 Paedamin Decongestant and Antihistamine Syrup for Children oral liquid solution, 5 mL 17691000168108 Paedamin Decongestant and Antihistamine Syrup for Children 17691000168108 Paedamin Decongestant and Antihistamine Syrup for Children 63440011000036102 diphenhydramine hydrochloride 12.5 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 61965011000036106 diphenhydramine hydrochloride 12.5 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61812011000036109 diphenhydramine + phenylephrine +794281000168102 Tacrolimus (Sandoz) 750 microgram hard capsule, 90, blister pack 229738 794271000168100 Tacrolimus (Sandoz) 750 microgram hard capsule, 90 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794261000168106 tacrolimus 750 microgram capsule, 90 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +927705011000036107 Axit 45 mg film-coated tablet, 5, bottle 164494 927639011000036107 Axit 45 mg film-coated tablet, 5 927591011000036107 Axit 45 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 927739011000036104 mirtazapine 45 mg tablet, 5 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +897881000168109 Nicotinell Peppermint 4 mg lozenge, 144, blister pack 276926 897871000168106 Nicotinell Peppermint 4 mg lozenge, 144 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897861000168100 nicotine 4 mg lozenge, 144 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +751461000168104 Caldolor 800 mg/8 mL concentrated injection, 10 x 8 mL vials 175191 751451000168101 Caldolor 800 mg/8 mL concentrated injection, 10 x 8 mL vials 751431000168107 Caldolor 800 mg/8 mL concentrated injection, 8 mL vial 751401000168100 Caldolor 751401000168100 Caldolor 751441000168103 ibuprofen 800 mg/8 mL injection, 10 x 8 mL vials 751421000168109 ibuprofen 800 mg/8 mL injection, vial 21885011000036105 ibuprofen +969901000168108 Aripiprazole (AN) 10 mg uncoated tablet, 30, bottle 198192 969321000168100 Aripiprazole (AN) 10 mg uncoated tablet, 30 969291000168108 Aripiprazole (AN) 10 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +727891000168100 Rulide 150 mg film-coated tablet, 2, blister pack 39409 727881000168103 Rulide 150 mg film-coated tablet, 2 5368011000036100 Rulide 150 mg film-coated tablet 27081000168109 Rulide 27081000168109 Rulide 727871000168101 roxithromycin 150 mg tablet, 2 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +768321000168102 Aqueous Cream APF (David Craig) cream, 500 g, jar 768311000168109 Aqueous Cream APF (David Craig) cream, 500 g 768301000168106 Aqueous Cream APF (David Craig) cream 768291000168105 Aqueous Cream APF (David Craig) 768291000168105 Aqueous Cream APF (David Craig) 86998011000036102 emulsifying wax 9% + white soft paraffin + glycerol + liquid paraffin + water purified cream, 500 g 86911011000036105 emulsifying wax 9% + white soft paraffin + glycerol + liquid paraffin + water purified cream 86905011000036105 emulsifying wax + white soft paraffin + glycerol + liquid paraffin + water purified +797501000168100 Citalopram (A) 20 mg film-coated tablet, 100, bottle 158882 797491000168107 Citalopram (A) 20 mg film-coated tablet, 100 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 46708011000036102 citalopram 20 mg tablet, 100 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +655881000168104 Cyproterone Acetate (AN) 100 mg uncoated tablet, 50, blister pack 184233 655551000168109 Cyproterone Acetate (AN) 100 mg uncoated tablet, 50 655541000168107 Cyproterone Acetate (AN) 100 mg uncoated tablet 655531000168103 Cyproterone Acetate (AN) 655531000168103 Cyproterone Acetate (AN) 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +1011691000168100 Atenolol (Amneal) 50 mg film-coated tablet, 30, bottle 77503 917611000168106 Atenolol (Amneal) 50 mg film-coated tablet, 30 917601000168108 Atenolol (Amneal) 50 mg film-coated tablet 917591000168101 Atenolol (Amneal) 917591000168101 Atenolol (Amneal) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +21013011000036106 Enalapril Maleate (GenRx) 10 mg uncoated tablet, 30, blister pack 96331 14159011000036103 Enalapril Maleate (GenRx) 10 mg uncoated tablet, 30 7438011000036102 Enalapril Maleate (GenRx) 10 mg uncoated tablet 3990011000036104 Enalapril Maleate (GenRx) 3990011000036104 Enalapril Maleate (GenRx) 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +928840011000036104 Paclitaxel (DP) 300 mg/50 mL concentrated injection, 50 mL vial 129572 928202011000036101 Paclitaxel (DP) 300 mg/50 mL concentrated injection, 50 mL vial 927861011000036109 Paclitaxel (DP) 300 mg/50 mL concentrated injection, 50 mL vial 927811011000036105 Paclitaxel (DP) 927811011000036105 Paclitaxel (DP) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +925268011000036108 Venlafaxine SR (SCP) 150 mg modified release capsule, 28, blister pack 160298 924805011000036100 Venlafaxine SR (SCP) 150 mg modified release capsule, 28 924499011000036109 Venlafaxine SR (SCP) 150 mg modified release capsule 32511000168107 Venlafaxine SR (SCP) 32511000168107 Venlafaxine SR (SCP) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +725481000168107 Pantoprazole (GH) 40 mg enteric tablet, 30, blister pack 155115 725471000168109 Pantoprazole (GH) 40 mg enteric tablet, 30 725461000168103 Pantoprazole (GH) 40 mg enteric tablet 725421000168108 Pantoprazole (GH) 725421000168108 Pantoprazole (GH) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +931581011000036109 Redichol 20 mg film-coated tablet, 30, bottle 163553 930742011000036104 Redichol 20 mg film-coated tablet, 30 930033011000036108 Redichol 20 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +56111000036107 Lisinopril (DRLA) 2.5 mg uncoated tablet, 30, blister pack 152719 51641000036107 Lisinopril (DRLA) 2.5 mg uncoated tablet, 30 48791000036100 Lisinopril (DRLA) 2.5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 927301011000036106 lisinopril 2.5 mg tablet, 30 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +19472011000036108 Asmol Uni-Dose 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 54719 12749011000036101 Asmol Uni-Dose 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6043011000036103 Asmol Uni-Dose 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 24611000168102 Asmol Uni-Dose 24611000168102 Asmol Uni-Dose 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +69607011000036105 Microshield T 1% solution, 5 L, bottle 71212 67406011000036102 Microshield T 1% solution, 5 L 65648011000036109 Microshield T 1% solution 65053011000036109 Microshield T 65053011000036109 Microshield T 71941011000036101 triclosan 1% solution, 5 L 70255011000036105 triclosan 1% solution 69817011000036103 triclosan +82887011000036105 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30, bottle 157745 11303011000036109 Simvastatin (Terry White Chemists) 40 mg film-coated tablet, 30 4793011000036102 Simvastatin (Terry White Chemists) 40 mg film-coated tablet 3983011000036108 Simvastatin (Terry White Chemists) 3983011000036108 Simvastatin (Terry White Chemists) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +1119741000168108 Quetiapine XR (Actavis) 400 mg modified release tablet, 30, blister pack 226805 1119731000168104 Quetiapine XR (Actavis) 400 mg modified release tablet, 30 1119671000168105 Quetiapine XR (Actavis) 400 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 790841000168102 quetiapine 400 mg modified release tablet, 30 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +44430011000036109 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 3 x 0.5 mL syringes 71931 41886011000036101 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 3 x 0.5 mL syringes 40241011000036103 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 46689011000036104 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, 3 x 0.5 mL syringes 45266011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +44430011000036109 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 3 x 0.5 mL syringes 133809 41886011000036101 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 3 x 0.5 mL syringes 40241011000036103 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 46689011000036104 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, 3 x 0.5 mL syringes 45266011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +33593011000036102 Doxycycline (GenRx) 100 mg uncoated tablet, 7, blister pack 78598 33331011000036106 Doxycycline (GenRx) 100 mg uncoated tablet, 7 33092011000036106 Doxycycline (GenRx) 100 mg uncoated tablet 3262011000036104 Doxycycline (GenRx) 3262011000036104 Doxycycline (GenRx) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +805771000168106 Uptravi 200 microgram film-coated tablet, 140, blister pack 234161 805761000168100 Uptravi 200 microgram film-coated tablet, 140 805681000168104 Uptravi 200 microgram film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 805751000168102 selexipag 200 microgram tablet, 140 805671000168102 selexipag 200 microgram tablet 805661000168108 selexipag +59977011000036101 Sudafed PE Sinus Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24, blister pack 120945 55939011000036102 Sudafed PE Sinus Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24 53728011000036106 Sudafed PE Sinus Day and Night Relief (Night) film-coated tablet 43201000168102 Sudafed PE Sinus Day and Night Relief 43441000168104 Sudafed PE Sinus Day and Night Relief (Night) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +59977011000036101 Sudafed PE Sinus Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24, blister pack 120945 55939011000036102 Sudafed PE Sinus Day and Night Relief (16 x Day tablets, 8 x Night tablets), 24 53727011000036105 Sudafed PE Sinus Day and Night Relief (Day) film-coated tablet 43201000168102 Sudafed PE Sinus Day and Night Relief 43321000168100 Sudafed PE Sinus Day and Night Relief (Day) 63166011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +37479011000036109 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 25 x 1 mL ampoules 12582 36747011000036107 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 25 x 1 mL ampoules 36095011000036109 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, ampoule 20251000168109 Isuprel 20251000168109 Isuprel 38655011000036100 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, 25 x 1 mL ampoules 37908011000036107 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, ampoule 37784011000036105 isoprenaline +37479011000036109 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 25 x 1 mL ampoules 198887 36747011000036107 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, 25 x 1 mL ampoules 36095011000036109 Isuprel 1 in 5000 (200 microgram/mL) concentrated injection, ampoule 20251000168109 Isuprel 20251000168109 Isuprel 38655011000036100 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, 25 x 1 mL ampoules 37908011000036107 isoprenaline hydrochloride 1 in 5000 (200 microgram/mL) injection, ampoule 37784011000036105 isoprenaline +1027581000168103 Neuroccord 25 mg hard capsule, 21, blister pack 235847 1027571000168101 Neuroccord 25 mg hard capsule, 21 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 854731000168102 pregabalin 25 mg capsule, 21 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +17778011000036105 Sodium Valproate (Sandoz) 500 mg enteric tablet, 100, blister pack 134368 11984011000036100 Sodium Valproate (Sandoz) 500 mg enteric tablet, 100 5282011000036108 Sodium Valproate (Sandoz) 500 mg enteric tablet 4312011000036109 Sodium Valproate (Sandoz) 4312011000036109 Sodium Valproate (Sandoz) 27140011000036102 valproate sodium 500 mg enteric tablet, 100 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +136831000036102 Intragam P 3 g/50 mL injection solution, 50 mL vial 68632 136591000036103 Intragam P 3 g/50 mL injection solution, 50 mL vial 136281000036102 Intragam P 3 g/50 mL injection solution, 50 mL vial 46781000168105 Intragam P 46781000168105 Intragam P 75473011000036102 normal immunoglobulin 3 g/50 mL injection, 50 mL vial 75081011000036104 normal immunoglobulin 3 g/50 mL injection, vial 74965011000036103 normal immunoglobulin +921902011000036108 Exforge HCT 10/160/25 film-coated tablet, 14, blister pack 158166 921461011000036104 Exforge HCT 10/160/25 film-coated tablet, 14 921018011000036102 Exforge HCT 10/160/25 film-coated tablet 7471000168106 Exforge HCT 10/160/25 7471000168106 Exforge HCT 10/160/25 922589011000036105 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 14 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +20794011000036101 Ezetrol 10 mg tablet, 30, blister pack 91161 13960011000036101 Ezetrol 10 mg tablet, 30 7246011000036103 Ezetrol 10 mg tablet 3589011000036101 Ezetrol 3589011000036101 Ezetrol 28041011000036106 ezetimibe 10 mg tablet, 30 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +727981000168109 Zyprexa 10 mg film-coated tablet, 7, blister pack 56606 727971000168106 Zyprexa 10 mg film-coated tablet, 7 6105011000036100 Zyprexa 10 mg film-coated tablet 20561000168108 Zyprexa 20561000168108 Zyprexa 933205131000036101 olanzapine 10 mg tablet, 7 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +1109991000168100 Nicotinell Tropical Fruit 4 mg chewing gum, 144, blister pack 279618 1109981000168103 Nicotinell Tropical Fruit 4 mg chewing gum, 144 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71515011000036101 nicotine 4 mg gum, 144 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +864771000168108 Amitriptyline (GXP) 50 mg tablet, 50, blister pack 232132 864761000168102 Amitriptyline (GXP) 50 mg tablet, 50 864731000168105 Amitriptyline (GXP) 50 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +889661000168109 Amisulpride (SCP) 50 mg uncoated tablet, 90, blister pack 234712 889651000168107 Amisulpride (SCP) 50 mg uncoated tablet, 90 889601000168108 Amisulpride (SCP) 50 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +973191000168106 TYR Express 20 powder for oral liquid, 30 x 34 g sachets 973181000168108 TYR Express 20 powder for oral liquid, 30 x 34 g sachets 973161000168104 TYR Express 20 powder for oral liquid, 34 g sachet 973111000168102 TYR Express 20 973111000168102 TYR Express 20 973171000168105 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 30 x 34 g sachets 973151000168101 amino acid formula with vitamins and minerals without phenylalanine and tyrosine powder for oral liquid, 34 g sachet 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +776961000168103 Loceryl Nail Lacquer 5% application, 2.5 mL, bottle 57051 776951000168100 Loceryl Nail Lacquer 5% application, 2.5 mL 6121011000036107 Loceryl Nail Lacquer 5% application 59341000168105 Loceryl Nail Lacquer 59341000168105 Loceryl Nail Lacquer 776941000168102 amorolfine 5% application, 2.5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +972801000168101 Pregabalin (Apotex) 25 mg hard capsule, 20, blister pack 267552 972791000168102 Pregabalin (Apotex) 25 mg hard capsule, 20 972761000168109 Pregabalin (Apotex) 25 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +59686011000036107 Tarka 2/180 modified release tablet, 98, blister pack 104663 55705011000036101 Tarka 2/180 modified release tablet, 98 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63101011000036100 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 98 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +79064011000036108 Curam Duo 400/57 powder for oral liquid, 60 mL, bottle 147109 78829011000036104 Curam Duo 400/57 powder for oral liquid, 60 mL 78643011000036105 Curam Duo 400/57 powder for oral liquid, 5 mL 53491000168109 Curam Duo 400/57 53491000168109 Curam Duo 400/57 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +938641000168100 Celecoxib (Ran) 100 mg hard capsule, 60, blister pack 212785 938631000168109 Celecoxib (Ran) 100 mg hard capsule, 60 938531000168105 Celecoxib (Ran) 100 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +923855011000036107 Gemcitabine (DBL) 1 g/26.3 mL injection solution, 26.3 mL vial 160202 923401011000036109 Gemcitabine (DBL) 1 g/26.3 mL injection solution, 26.3 mL vial 923066011000036109 Gemcitabine (DBL) 1 g/26.3 mL injection solution, 26.3 mL vial 72908011000036104 Gemcitabine (DBL) 72908011000036104 Gemcitabine (DBL) 924185011000036109 gemcitabine 1 g/26.3 mL injection, 26.3 mL vial 923987011000036103 gemcitabine 1 g/26.3 mL injection, vial 21644011000036108 gemcitabine +933102011000036103 Lamictal 25 mg tablet, 21, blister pack 51548 932909011000036103 Lamictal 25 mg tablet, 21 932763011000036109 Lamictal 25 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46985011000036100 lamotrigine 25 mg tablet, 21 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +890751000168108 Canpek 32/25 uncoated tablet, 10, blister pack 198395 890741000168106 Canpek 32/25 uncoated tablet, 10 890701000168109 Canpek 32/25 uncoated tablet 890691000168109 Canpek 32/25 890691000168109 Canpek 32/25 890731000168102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 10 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +37378011000036109 Citanest 0.5% (250 mg/50 mL) injection solution, 50 mL vial 12079 36708011000036103 Citanest 0.5% (250 mg/50 mL) injection solution, 50 mL vial 36145011000036109 Citanest 0.5% (250 mg/50 mL) injection solution, 50 mL vial 45001000168106 Citanest 45001000168106 Citanest 38621011000036103 prilocaine hydrochloride 0.5% (250 mg/50 mL) injection, 50 mL vial 37883011000036106 prilocaine hydrochloride 0.5% (250 mg/50 mL) injection, vial 37761011000036109 prilocaine +930121000168102 Zantac 300 mg effervescent tablet, 30, tube 45995 930111000168109 Zantac 300 mg effervescent tablet, 30 930031000168100 Zantac 300 mg effervescent tablet 3563011000036102 Zantac 3563011000036102 Zantac 930101000168106 ranitidine 300 mg effervescent tablet, 30 930021000168103 ranitidine 300 mg effervescent tablet 21682011000036109 ranitidine +785621000168104 Endone XR 5 mg modified release tablet, 60, blister pack 153598 785611000168106 Endone XR 5 mg modified release tablet, 60 785561000168108 Endone XR 5 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 35245011000036108 oxycodone hydrochloride 5 mg modified release tablet, 60 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +60216011000036109 Tirizine 10 mg film-coated tablet, 30, blister pack 133206 56175011000036102 Tirizine 10 mg film-coated tablet, 30 53823011000036104 Tirizine 10 mg film-coated tablet 53333011000036100 Tirizine 53333011000036100 Tirizine 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +797341000168106 Aciclovir (RBX) 800 mg uncoated tablet, 35, blister pack 182883 797331000168102 Aciclovir (RBX) 800 mg uncoated tablet, 35 797321000168100 Aciclovir (RBX) 800 mg uncoated tablet 796791000168102 Aciclovir (RBX) 796791000168102 Aciclovir (RBX) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +39031000036105 Clopidogrel (RZ) 75 mg film-coated tablet, 28, blister pack 166656 35391000036105 Clopidogrel (RZ) 75 mg film-coated tablet, 28 32761000036105 Clopidogrel (RZ) 75 mg film-coated tablet 32141000036108 Clopidogrel (RZ) 32141000036108 Clopidogrel (RZ) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1027621000168103 Neuroccord 25 mg hard capsule, 84, blister pack 235847 1027611000168105 Neuroccord 25 mg hard capsule, 84 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970161000168109 pregabalin 25 mg capsule, 84 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +18504011000036104 Lax-Tab 5 mg enteric tablet, 200, bottle 119101 11603011000036102 Lax-Tab 5 mg enteric tablet, 200 5429011000036109 Lax-Tab 5 mg enteric tablet 3574011000036106 Lax-Tab 3574011000036106 Lax-Tab 27705011000036106 bisacodyl 5 mg enteric tablet, 200 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +20895011000036104 Permax 250 microgram uncoated tablet, 100, blister pack 93396 14056011000036104 Permax 250 microgram uncoated tablet, 100 7334011000036102 Permax 250 microgram uncoated tablet 3138011000036108 Permax 3138011000036108 Permax 28111011000036105 pergolide 250 microgram tablet, 100 23420011000036105 pergolide 250 microgram tablet 21344011000036101 pergolide +920728011000036104 Pantoprazole (Generic Health) 40 mg enteric tablet, 30, blister pack 191033 920415011000036109 Pantoprazole (Generic Health) 40 mg enteric tablet, 30 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +920728011000036104 Pantoprazole (Generic Health) 40 mg enteric tablet, 30, blister pack 155115 920415011000036109 Pantoprazole (Generic Health) 40 mg enteric tablet, 30 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +960191000168107 Dormizol CR 6.25 mg modified release tablet, 14, blister pack 120712 960181000168109 Dormizol CR 6.25 mg modified release tablet, 14 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46177011000036104 zolpidem tartrate 6.25 mg modified release tablet, 14 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +69365011000036105 Sodium Chloride (Fresenius Kabi) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bag 29745 67165011000036106 Sodium Chloride (Fresenius Kabi) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bag 65228011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 71792011000036107 sodium chloride 0.9% (4.5 g/500 mL) injection, 500 mL bag 70188011000036105 sodium chloride 0.9% (4.5 g/500 mL) injection, bag 21308011000036103 sodium chloride +68717011000036103 Deep Heat Regular Rub cream, 140 g, tube 12821 66714011000036101 Deep Heat Regular Rub cream, 140 g 65257011000036107 Deep Heat Regular Rub cream 13681000168101 Deep Heat Regular Rub 13681000168101 Deep Heat Regular Rub 71396011000036105 methyl salicylate 12.74% + menthol 5.88% cream, 140 g 69993011000036102 methyl salicylate 12.74% + menthol 5.88% cream 69751011000036100 methyl salicylate + menthol +843421000168109 Utrogestan 200 mg shell pessary, 21, blister pack 232824 843411000168102 Utrogestan 200 mg shell pessary, 21 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843401000168100 progesterone 200 mg pessary, 21 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +984771000168103 Tamoxifen (Apo) 10 mg uncoated tablet, 60, blister pack 75586 984761000168109 Tamoxifen (Apo) 10 mg uncoated tablet, 60 984751000168107 Tamoxifen (Apo) 10 mg uncoated tablet 983331000168102 Tamoxifen (Apo) 983331000168102 Tamoxifen (Apo) 27309011000036109 tamoxifen 10 mg tablet, 60 22662011000036108 tamoxifen 10 mg tablet 21494011000036103 tamoxifen +839131000168101 Joncia 50 mg hard capsule, 28, blister pack 176513 839121000168104 Joncia 50 mg hard capsule, 28 839071000168104 Joncia 50 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 839111000168106 milnacipran hydrochloride 50 mg capsule, 28 839061000168105 milnacipran hydrochloride 50 mg capsule 838911000168100 milnacipran +17974011000036107 Oral Rehydration Salts (Terry White Chemists) powder for oral liquid, 10 x 4.9 g sachets 117075 11560011000036100 Oral Rehydration Salts (Terry White Chemists) powder for oral liquid, 10 x 4.9 g sachets 5084011000036106 Oral Rehydration Salts (Terry White Chemists) powder for oral liquid, 4.9 g sachet 3791011000036100 Oral Rehydration Salts (Terry White Chemists) 3791011000036100 Oral Rehydration Salts (Terry White Chemists) 28137011000036109 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 23446011000036105 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +37574011000036100 Glyceryl Trinitrate (DBL) 50 mg/10 mL concentrated injection, 5 x 10 mL ampoules 16341 36841011000036102 Glyceryl Trinitrate (DBL) 50 mg/10 mL concentrated injection, 5 x 10 mL ampoules 36027011000036107 Glyceryl Trinitrate (DBL) 50 mg/10 mL concentrated injection, 10 mL ampoule 35986011000036105 Glyceryl Trinitrate (DBL) 35986011000036105 Glyceryl Trinitrate (DBL) 38799011000036102 glyceryl trinitrate 50 mg/10 mL injection, 5 x 10 mL ampoules 38010011000036107 glyceryl trinitrate 50 mg/10 mL injection, ampoule 21388011000036102 glyceryl trinitrate +105161000036100 Andepra 30 mg enteric capsule, 28, blister pack 179186 102271000036109 Andepra 30 mg enteric capsule, 28 99171000036104 Andepra 30 mg enteric capsule 97861000036108 Andepra 97861000036108 Andepra 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +660311000168101 Isotretinoin (AN) 20 mg soft capsule, 60, blister pack 186340 660301000168104 Isotretinoin (AN) 20 mg soft capsule, 60 660291000168100 Isotretinoin (AN) 20 mg soft capsule 660251000168105 Isotretinoin (AN) 660251000168105 Isotretinoin (AN) 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +1119721000168102 Syzopine 150 mg film-coated tablet, 60, blister pack 162408 1119711000168109 Syzopine 150 mg film-coated tablet, 60 1119701000168106 Syzopine 150 mg film-coated tablet 1119661000168104 Syzopine 1119661000168104 Syzopine 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +19953011000036102 Dilaudid 2 mg/mL injection solution, 5 x 1 mL ampoules 67356 13196011000036103 Dilaudid 2 mg/mL injection solution, 5 x 1 mL ampoules 6479011000036106 Dilaudid 2 mg/mL injection solution, ampoule 3117011000036100 Dilaudid 3117011000036100 Dilaudid 27608011000036109 hydromorphone hydrochloride 2 mg/mL injection, 5 x 1 mL ampoules 22947011000036102 hydromorphone hydrochloride 2 mg/mL injection, ampoule 21480011000036107 hydromorphone +19953011000036102 Dilaudid 2 mg/mL injection solution, 5 x 1 mL ampoules 272632 13196011000036103 Dilaudid 2 mg/mL injection solution, 5 x 1 mL ampoules 6479011000036106 Dilaudid 2 mg/mL injection solution, ampoule 3117011000036100 Dilaudid 3117011000036100 Dilaudid 27608011000036109 hydromorphone hydrochloride 2 mg/mL injection, 5 x 1 mL ampoules 22947011000036102 hydromorphone hydrochloride 2 mg/mL injection, ampoule 21480011000036107 hydromorphone +931715011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution, 500 mL, bottle 176112 930875011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution, 500 mL 930084011000036103 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 2% solution 929919011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 929919011000036105 Avagard Antiseptic Hand and Body Wash with Chlorhexidine Gluconate 71736011000036101 chlorhexidine gluconate 2% solution, 500 mL 70177011000036101 chlorhexidine gluconate 2% solution 21404011000036101 chlorhexidine +87176011000036106 Cranberry-10 000 (Herron) Natural Essentials 400 mg (equivalent to fresh fruit 10 g) film-coated tablet, 30, bottle 119003 87117011000036104 Cranberry-10 000 (Herron) Natural Essentials 400 mg (equivalent to fresh fruit 10 g) film-coated tablet, 30 87063011000036103 Cranberry-10 000 (Herron) Natural Essentials 400 mg (equivalent to fresh fruit 10 g) film-coated tablet 50781000168109 Cranberry-10 000 (Herron) 50781000168109 Cranberry-10 000 (Herron) 87231011000036101 cranberry 400 mg (equivalent to fresh fruit 10 g) tablet, 30 87204011000036106 cranberry 400 mg (equivalent to fresh fruit 10 g) tablet 87199011000036107 cranberry +19446011000036108 Isoptin SR 180 mg modified release tablet, 30, blister pack 54032 12725011000036101 Isoptin SR 180 mg modified release tablet, 30 5206011000036106 Isoptin SR 180 mg modified release tablet 31671000168106 Isoptin SR 31671000168106 Isoptin SR 27315011000036109 verapamil hydrochloride 180 mg modified release tablet, 30 22668011000036106 verapamil hydrochloride 180 mg modified release tablet 21287011000036109 verapamil +61109011000036105 Zantac Relief 150 mg film-coated tablet, 28, blister pack 71786 57052011000036102 Zantac Relief 150 mg film-coated tablet, 28 54175011000036107 Zantac Relief 150 mg film-coated tablet 53535011000036102 Zantac Relief 53535011000036102 Zantac Relief 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +44162011000036100 Calcijex 2 microgram/mL injection solution, 25 x 1 mL ampoules 54453 41638011000036103 Calcijex 2 microgram/mL injection solution, 25 x 1 mL ampoules 40117011000036102 Calcijex 2 microgram/mL injection solution, ampoule 39553011000036105 Calcijex 39553011000036105 Calcijex 46457011000036102 calcitriol 2 microgram/mL injection, 25 x 1 mL ampoules 45166011000036109 calcitriol 2 microgram/mL injection, ampoule 21881011000036108 calcitriol +17948011000036104 Caduet 10/20 film-coated tablet, 30, blister pack 100701 11161011000036103 Caduet 10/20 film-coated tablet, 30 4820011000036101 Caduet 10/20 film-coated tablet 8821000168106 Caduet 10/20 8821000168106 Caduet 10/20 26547011000036107 amlodipine 10 mg + atorvastatin 20 mg tablet, 30 21956011000036102 amlodipine 10 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +926720011000036106 Perindobell 4 mg uncoated tablet, 30, blister pack 125452 926131011000036108 Perindobell 4 mg uncoated tablet, 30 925589011000036108 Perindobell 4 mg uncoated tablet 925554011000036101 Perindobell 925554011000036101 Perindobell 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +977231000168105 Pregabalin (Apotex) 225 mg hard capsule, 60, blister pack 267558 977221000168107 Pregabalin (Apotex) 225 mg hard capsule, 60 977151000168106 Pregabalin (Apotex) 225 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855481000168109 pregabalin 225 mg capsule, 60 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +943051000168104 Fluvoxamine (Terry White Chemists) 100 mg film-coated tablet, 30, blister pack 147393 943041000168101 Fluvoxamine (Terry White Chemists) 100 mg film-coated tablet, 30 943031000168105 Fluvoxamine (Terry White Chemists) 100 mg film-coated tablet 943021000168107 Fluvoxamine (Terry White Chemists) 943021000168107 Fluvoxamine (Terry White Chemists) 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +61184011000036108 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 48, bottle 75200 57411011000036108 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 48 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +34653011000036100 Morphine Sulfate (Phebra) 30 mg/mL injection solution, 5 x 1 mL ampoules 12433 34242011000036107 Morphine Sulfate (Phebra) 30 mg/mL injection solution, 5 x 1 mL ampoules 33983011000036105 Morphine Sulfate (Phebra) 30 mg/mL injection solution, ampoule 33954011000036101 Morphine Sulfate (Phebra) 33954011000036101 Morphine Sulfate (Phebra) 26737011000036109 morphine sulfate pentahydrate 30 mg/mL injection, 5 x 1 mL ampoules 22132011000036100 morphine sulfate pentahydrate 30 mg/mL injection, ampoule 21252011000036100 morphine +20460011000036103 MS Contin 15 mg modified release tablet, 20, blister pack 78208 13662011000036101 MS Contin 15 mg modified release tablet, 20 6945011000036105 MS Contin 15 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 27868011000036104 morphine sulfate pentahydrate 15 mg modified release tablet, 20 23196011000036102 morphine sulfate pentahydrate 15 mg modified release tablet 21252011000036100 morphine +925186011000036109 Sumaccord 50 mg film-coated tablet, 4, blister pack 154819 924723011000036106 Sumaccord 50 mg film-coated tablet, 4 924434011000036102 Sumaccord 50 mg film-coated tablet 924405011000036109 Sumaccord 924405011000036109 Sumaccord 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +32579011000036102 Antenex 5 mg uncoated tablet, 30, blister pack 17605 32374011000036100 Antenex 5 mg uncoated tablet, 30 32248011000036104 Antenex 5 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 32774011000036104 diazepam 5 mg tablet, 30 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +18386011000036106 Ialex 125 mg/5 mL powder for oral liquid, 100 mL, bottle 100145 11138011000036102 Ialex 125 mg/5 mL powder for oral liquid, 100 mL 4557011000036100 Ialex 125 mg/5 mL powder for oral liquid, 5 mL 3841011000036108 Ialex 3841011000036108 Ialex 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +61426011000036105 Paracetamol (Herron) 500 mg uncoated tablet, 36, bottle 82690 57351011000036109 Paracetamol (Herron) 500 mg uncoated tablet, 36 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63944011000036109 paracetamol 500 mg tablet, 36 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +793071000168108 Prodeinextra film-coated tablet, 6, blister pack 205550 793061000168102 Prodeinextra film-coated tablet, 6 793051000168104 Prodeinextra film-coated tablet 793041000168101 Prodeinextra 793041000168101 Prodeinextra 52862011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 6 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +921915011000036103 Alphagan P 0.15% eye drops solution, 5 mL, bottle 158888 921474011000036107 Alphagan P 0.15% eye drops solution, 5 mL 921023011000036103 Alphagan P 0.15% eye drops solution 14471000168104 Alphagan P 14471000168104 Alphagan P 922602011000036105 brimonidine tartrate 0.15% eye drops, 5 mL 922100011000036107 brimonidine tartrate 0.15% eye drops 21861011000036105 brimonidine +788751000168109 Movapo 50 mg/5 mL injection solution, 5 x 5 mL ampoules 142093 788741000168107 Movapo 50 mg/5 mL injection solution, 5 x 5 mL ampoules 788731000168103 Movapo 50 mg/5 mL injection solution, 5 mL ampoule 788721000168101 Movapo 788721000168101 Movapo 51543011000036107 apomorphine hydrochloride hemihydrate 50 mg/5 mL injection, 5 x 5 mL ampoules 50997011000036106 apomorphine hydrochloride hemihydrate 50 mg/5 mL injection, ampoule 21732011000036105 apomorphine +938711000168106 Celecoxib (Ran) 200 mg hard capsule, 10, blister pack 212787 938701000168108 Celecoxib (Ran) 200 mg hard capsule, 10 938691000168108 Celecoxib (Ran) 200 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +44404011000036107 Antabuse 200 mg effervescent tablet, 30, bottle 70468 41864011000036106 Antabuse 200 mg effervescent tablet, 30 40231011000036104 Antabuse 200 mg effervescent tablet 39671011000036102 Antabuse 39671011000036102 Antabuse 796261000168104 disulfiram 200 mg effervescent tablet, 30 796251000168101 disulfiram 200 mg effervescent tablet 44865011000036101 disulfiram +933214301000036108 Tralen 50 mg film-coated tablet, 14, blister pack 160773 933203521000036109 Tralen 50 mg film-coated tablet, 14 933195841000036104 Tralen 50 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 929237011000036106 sertraline 50 mg tablet, 14 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +869191000168109 Pacrolim 500 microgram hard capsule, 100, blister pack 224283 869181000168106 Pacrolim 500 microgram hard capsule, 100 869131000168105 Pacrolim 500 microgram hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +1111201000168102 Quetiapine (Chemmart) 150 mg film-coated tablet, 60, blister pack 166074 1111191000168100 Quetiapine (Chemmart) 150 mg film-coated tablet, 60 1111181000168103 Quetiapine (Chemmart) 150 mg film-coated tablet 421000036105 Quetiapine (Chemmart) 421000036105 Quetiapine (Chemmart) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +977211000168100 Pregabalin (Apotex) 225 mg hard capsule, 56, blister pack 267558 977201000168103 Pregabalin (Apotex) 225 mg hard capsule, 56 977151000168106 Pregabalin (Apotex) 225 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855451000168102 pregabalin 225 mg capsule, 56 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +1051101000168107 Morphine Sulfate (Pharmalab) 10 mg/mL injection solution, 50 x 1 mL ampoules 12431 1051091000168102 Morphine Sulfate (Pharmalab) 10 mg/mL injection solution, 50 x 1 mL ampoules 1051061000168109 Morphine Sulfate (Pharmalab) 10 mg/mL injection solution, ampoule 1051051000168107 Morphine Sulfate (Pharmalab) 1051051000168107 Morphine Sulfate (Pharmalab) 35113011000036103 morphine sulfate pentahydrate 10 mg/mL injection, 50 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +725561000168102 PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches 725551000168104 PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches 725531000168105 PKU Cooler 10 Orange oral liquid solution, 87 mL pouch 3521000168101 PKU Cooler 10 3521000168101 PKU Cooler 10 725541000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL pouches 725521000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1068361000168109 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 36, blister pack 188379 1068351000168107 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 36 1068241000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +802801000168100 Abilify ODT 30 mg orally disintegrating tablet, 10, blister pack 128904 802791000168101 Abilify ODT 30 mg orally disintegrating tablet, 10 802711000168105 Abilify ODT 30 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802781000168104 aripiprazole 30 mg orally disintegrating tablet, 10 802701000168107 aripiprazole 30 mg orally disintegrating tablet 21675011000036108 aripiprazole +771611000168102 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 180562 771601000168100 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 771571000168106 Drospirenone/Ethinyloestradiol (GH) (inert substance) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +771611000168102 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 180562 771601000168100 Drospirenone/Ethinyloestradiol (GH) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 771561000168100 Drospirenone/Ethinyloestradiol (GH) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771551000168102 Drospirenone/Ethinyloestradiol (GH) 771551000168102 Drospirenone/Ethinyloestradiol (GH) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +80032011000036105 Topiramate (Sandoz) 25 mg film-coated tablet, 60, bottle 135762 79948011000036101 Topiramate (Sandoz) 25 mg film-coated tablet, 60 79910011000036107 Topiramate (Sandoz) 25 mg film-coated tablet 79909011000036103 Topiramate (Sandoz) 79909011000036103 Topiramate (Sandoz) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +763021000168105 Oxycodone MR (Chemmart) 15 mg modified release tablet, 20, blister pack 214486 763011000168103 Oxycodone MR (Chemmart) 15 mg modified release tablet, 20 763001000168101 Oxycodone MR (Chemmart) 15 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +1111041000168109 Midazolam (WP) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207237 1111031000168100 Midazolam (WP) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 1110911000168102 Midazolam (WP) 15 mg/3 mL injection solution, 3 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +920767011000036105 Relpax 40 mg film-coated tablet, 4, blister pack 68356 920446011000036107 Relpax 40 mg film-coated tablet, 4 920186011000036100 Relpax 40 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 920863011000036103 eletriptan 40 mg tablet, 4 920828011000036101 eletriptan 40 mg tablet 920818011000036107 eletriptan +860601000168101 Amisulpride (Winthrop) 50 mg uncoated tablet, 50, blister pack 125164 860591000168108 Amisulpride (Winthrop) 50 mg uncoated tablet, 50 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 924159011000036103 amisulpride 50 mg tablet, 50 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +18069011000036104 Vancocin CP 500 mg powder for injection, 1 vial 14658 12054011000036101 Vancocin CP 500 mg powder for injection, 1 vial 5595011000036106 Vancocin CP 500 mg powder for injection, 500 mg vial 24181000168104 Vancocin CP 24181000168104 Vancocin CP 27499011000036100 vancomycin 500 mg injection, 1 vial 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +19783011000036104 Naramig 2.5 mg film-coated tablet, 2, blister pack 62900 13041011000036108 Naramig 2.5 mg film-coated tablet, 2 6327011000036109 Naramig 2.5 mg film-coated tablet 3814011000036100 Naramig 3814011000036100 Naramig 27511011000036105 naratriptan 2.5 mg tablet, 2 22853011000036103 naratriptan 2.5 mg tablet 21479011000036107 naratriptan +43733011000036107 Oruvail SR 100 mg modified release capsule, 50, bottle 124323 41467011000036109 Oruvail SR 100 mg modified release capsule, 50 39993011000036106 Oruvail SR 100 mg modified release capsule 10051000168105 Oruvail SR 10051000168105 Oruvail SR 46315011000036106 ketoprofen 100 mg modified release capsule, 50 45071011000036101 ketoprofen 100 mg modified release capsule 21856011000036108 ketoprofen +1114421000168107 Zolpidem (GH) 10 mg film-coated tablet, 14, blister pack 210960 1114411000168100 Zolpidem (GH) 10 mg film-coated tablet, 14 1114361000168107 Zolpidem (GH) 10 mg film-coated tablet 1114351000168105 Zolpidem (GH) 1114351000168105 Zolpidem (GH) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +59787011000036101 Dymadon 500 mg uncoated tablet, 24, blister pack 114074 55749011000036105 Dymadon 500 mg uncoated tablet, 24 53700011000036100 Dymadon 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +654991000168109 Rosuvastatin (AN) 5 mg film-coated tablet, 30, blister pack 197004 654981000168106 Rosuvastatin (AN) 5 mg film-coated tablet, 30 654971000168108 Rosuvastatin (AN) 5 mg film-coated tablet 654901000168103 Rosuvastatin (AN) 654901000168103 Rosuvastatin (AN) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +60190011000036108 Diarrhoea Relief (Terry White Chemists) 2 mg tablet, 20, blister pack 132051 56149011000036101 Diarrhoea Relief (Terry White Chemists) 2 mg tablet, 20 53808011000036101 Diarrhoea Relief (Terry White Chemists) 2 mg tablet 53437011000036104 Diarrhoea Relief (Terry White Chemists) 53437011000036104 Diarrhoea Relief (Terry White Chemists) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +977371000168100 Aripiprazole (AN) 5 mg uncoated tablet, 60, blister pack 198188 977361000168106 Aripiprazole (AN) 5 mg uncoated tablet, 60 977291000168109 Aripiprazole (AN) 5 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 46876011000036105 aripiprazole 5 mg tablet, 60 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +667691000168104 Xelabine 150 mg film-coated tablet, 30, blister pack 213042 667681000168102 Xelabine 150 mg film-coated tablet, 30 667661000168106 Xelabine 150 mg film-coated tablet 667481000168100 Xelabine 667481000168100 Xelabine 667671000168100 capecitabine 150 mg tablet, 30 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +1102681000168102 Aspramide 5 mg film-coated tablet, 20, blister pack 196499 1102671000168100 Aspramide 5 mg film-coated tablet, 20 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102661000168106 metoclopramide hydrochloride 5 mg tablet, 20 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +797251000168103 Acetec 2.5 mg uncoated tablet, 10, blister pack 75457 797241000168100 Acetec 2.5 mg uncoated tablet, 10 797221000168106 Acetec 2.5 mg uncoated tablet 925507011000036102 Acetec 925507011000036102 Acetec 797231000168109 enalapril maleate 2.5 mg tablet, 10 797211000168104 enalapril maleate 2.5 mg tablet 21317011000036101 enalapril +69178011000036103 Ethical Nutrients Digestion Plus film-coated tablet, 90, bottle 16411 66978011000036106 Ethical Nutrients Digestion Plus film-coated tablet, 90 65209011000036109 Ethical Nutrients Digestion Plus film-coated tablet 65055011000036105 Ethical Nutrients Digestion Plus 65055011000036105 Ethical Nutrients Digestion Plus 71551011000036106 betaine hydrochloride 650 mg + pepsin 31.5 mg + gentiana lutea 20 mg tablet, 90 70058011000036108 betaine hydrochloride 650 mg + pepsin 31.5 mg + gentiana lutea 20 mg tablet 69878011000036109 betaine + pepsin + gentiana lutea +895281000168104 Olmesartan/HCT 40/12.5 (Sandoz) film-coated tablet, 30, blister pack 221124 895271000168102 Olmesartan/HCT 40/12.5 (Sandoz) film-coated tablet, 30 895261000168108 Olmesartan/HCT 40/12.5 (Sandoz) film-coated tablet 895251000168106 Olmesartan/HCT 40/12.5 (Sandoz) 895251000168106 Olmesartan/HCT 40/12.5 (Sandoz) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +79649011000036105 Epiduo 0.1% / 2.5% gel, 30 g, tube 143869 79474011000036107 Epiduo 0.1% / 2.5% gel, 30 g 79355011000036100 Epiduo 0.1% / 2.5% gel 33721000168102 Epiduo 0.1% / 2.5% 33721000168102 Epiduo 0.1% / 2.5% 79805011000036107 adapalene 0.1% + benzoyl peroxide 2.5% gel, 30 g 79740011000036106 adapalene 0.1% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +86116011000036103 Nurofen Zavance capsule shaped 200 mg sugar coated tablet, 12, blister pack 156294 85697011000036100 Nurofen Zavance capsule shaped 200 mg sugar coated tablet, 12 85339011000036106 Nurofen Zavance capsule shaped 200 mg sugar coated tablet 5481000168102 Nurofen Zavance 5481000168102 Nurofen Zavance 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1119881000168107 Quetiapine XR (Actavis) 300 mg modified release tablet, 10, blister pack 226807 1119871000168109 Quetiapine XR (Actavis) 300 mg modified release tablet, 10 1119861000168103 Quetiapine XR (Actavis) 300 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51535011000036107 quetiapine 300 mg modified release tablet, 10 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +926904011000036101 Optimark 4.96 g/15 mL injection solution, 15 mL vial 76654 926298011000036109 Optimark 4.96 g/15 mL injection solution, 15 mL vial 925742011000036109 Optimark 4.96 g/15 mL injection solution, 15 mL vial 6001000168105 Optimark 6001000168105 Optimark 927392011000036103 gadoversetamide 4.96 g/15 mL injection, 15 mL vial 927033011000036104 gadoversetamide 4.96 g/15 mL injection, vial 926966011000036108 gadoversetamide +110961000036106 Meloxiauro 7.5 mg uncoated tablet, 30, blister pack 188881 109231000036100 Meloxiauro 7.5 mg uncoated tablet, 30 106821000036108 Meloxiauro 7.5 mg uncoated tablet 106631000036109 Meloxiauro 106631000036109 Meloxiauro 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +831821000168108 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack 130229 831811000168101 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack 831791000168100 Zostavax (varicella-zoster live vaccine) powder for injection, vial 73774011000036102 Zostavax 73774011000036102 Zostavax 831801000168104 varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack 831781000168103 varicella-zoster live vaccine 19 400 PFU injection, vial 830851000168105 varicella-zoster live vaccine +831821000168108 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack 130229 831811000168101 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack 640261000168103 Zostavax (inert substance) diluent, 0.65 mL syringe 73774011000036102 Zostavax 73774011000036102 Zostavax 831801000168104 varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack 640251000168100 inert substance diluent, 0.65 mL syringe 21220011000036103 inert substance +985931000168100 Advil Double Strength Caplets 400 mg film-coated tablet, 12, blister pack 207376 985921000168103 Advil Double Strength Caplets 400 mg film-coated tablet, 12 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 932368011000036100 ibuprofen 400 mg tablet, 12 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +933214481000036108 Tralen 100 mg film-coated tablet, 30, blister pack 160781 933203781000036102 Tralen 100 mg film-coated tablet, 30 933195881000036108 Tralen 100 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +20587011000036107 C-Flox 500 mg film-coated tablet, 14, blister pack 195203 13775011000036108 C-Flox 500 mg film-coated tablet, 14 7061011000036109 C-Flox 500 mg film-coated tablet 3474011000036103 C-Flox 3474011000036103 C-Flox 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +20587011000036107 C-Flox 500 mg film-coated tablet, 14, blister pack 80525 13775011000036108 C-Flox 500 mg film-coated tablet, 14 7061011000036109 C-Flox 500 mg film-coated tablet 3474011000036103 C-Flox 3474011000036103 C-Flox 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +85036011000036101 Vidaza 100 mg powder for injection, 1 vial 153080 84901011000036102 Vidaza 100 mg powder for injection, 1 vial 84789011000036105 Vidaza 100 mg powder for injection, 100 mg vial 84763011000036109 Vidaza 84763011000036109 Vidaza 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +34806011000036105 MS Contin 15 mg modified release tablet, 60, blister pack 78208 34381011000036103 MS Contin 15 mg modified release tablet, 60 6945011000036105 MS Contin 15 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 35227011000036100 morphine sulfate pentahydrate 15 mg modified release tablet, 60 23196011000036102 morphine sulfate pentahydrate 15 mg modified release tablet 21252011000036100 morphine +1062261000168103 Cold and Flu PE Day (Cipla) uncoated tablet, 24, blister pack 219457 1062251000168100 Cold and Flu PE Day (Cipla) uncoated tablet, 24 1062241000168102 Cold and Flu PE Day (Cipla) uncoated tablet 1062231000168106 Cold and Flu PE Day (Cipla) 1062231000168106 Cold and Flu PE Day (Cipla) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +838991000168109 Joncia 25 mg hard capsule, 28, blister pack 176508 838981000168106 Joncia 25 mg hard capsule, 28 838931000168105 Joncia 25 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 838971000168108 milnacipran hydrochloride 25 mg capsule, 28 838921000168107 milnacipran hydrochloride 25 mg capsule 838911000168100 milnacipran +803121000168108 Abilify ODT 20 mg orally disintegrating tablet, 5, blister pack 128903 803111000168101 Abilify ODT 20 mg orally disintegrating tablet, 5 803091000168109 Abilify ODT 20 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803101000168104 aripiprazole 20 mg orally disintegrating tablet, 5 803081000168106 aripiprazole 20 mg orally disintegrating tablet 21675011000036108 aripiprazole +780091000168103 Fentanyl (Apo) 25 microgram/hour patch, 5, sachet 152574 780081000168101 Fentanyl (Apo) 25 microgram/hour patch, 5 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 26649011000036106 fentanyl 25 microgram/hour patch, 5 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +960031000168107 Stilnoxium CR 6.25 mg modified release tablet, 20, blister pack 120711 960021000168109 Stilnoxium CR 6.25 mg modified release tablet, 20 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46179011000036106 zolpidem tartrate 6.25 mg modified release tablet, 20 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +37361011000036105 Xylocaine 2% (40 mg/2 mL) injection solution, 10 x 2 mL ampoules 12020 36692011000036106 Xylocaine 2% (40 mg/2 mL) injection solution, 10 x 2 mL ampoules 36080011000036101 Xylocaine 2% (40 mg/2 mL) injection solution, 2 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 38605011000036105 lidocaine (lignocaine) hydrochloride 2% (40 mg/2 mL) injection, 10 x 2 mL ampoules 37873011000036101 lidocaine (lignocaine) hydrochloride 2% (40 mg/2 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +60536011000036109 Cold and Flu Relief PE (Amcal) uncoated tablet, 24, blister pack 152038 56494011000036108 Cold and Flu Relief PE (Amcal) uncoated tablet, 24 53941011000036105 Cold and Flu Relief PE (Amcal) uncoated tablet 53311011000036105 Cold and Flu Relief PE (Amcal) 53311011000036105 Cold and Flu Relief PE (Amcal) 63380011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +800151000168106 Abyraz 30 mg uncoated tablet, 14, blister pack 159504 800141000168109 Abyraz 30 mg uncoated tablet, 14 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800131000168100 aripiprazole 30 mg tablet, 14 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +933240081000036103 Elocon 0.1% cream, 50 g, tube 43342 933237231000036109 Elocon 0.1% cream, 50 g 4813011000036100 Elocon 0.1% cream 4301011000036100 Elocon 4301011000036100 Elocon 933237241000036104 mometasone furoate 0.1% cream, 50 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +17761011000036106 Cortef 1% cream, 50 g, tube 12286 11723011000036101 Cortef 1% cream, 50 g 4785011000036100 Cortef 1% cream 3032011000036102 Cortef 3032011000036102 Cortef 28030011000036103 hydrocortisone acetate 1% cream, 50 g 23352011000036100 hydrocortisone acetate 1% cream 21231011000036107 hydrocortisone acetate +716661000168100 Omepro 20 mg enteric capsule, 50, blister pack 149516 716651000168102 Omepro 20 mg enteric capsule, 50 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716641000168104 omeprazole 20 mg enteric capsule, 50 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +984611000168104 Afstyla (1 x 500 units vial, 1 x inert diluent vial), 1 pack, composite pack 271633 984601000168102 Afstyla (1 x 500 units vial, 1 x inert diluent vial), 1 pack 984571000168108 Afstyla (lonoctocog alfa 500 units) powder for injection, 500 units vial 984051000168109 Afstyla 984051000168109 Afstyla 984591000168109 lonoctocog alfa 500 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 984561000168102 lonoctocog alfa 500 units injection, vial 984551000168104 lonoctocog alfa +984611000168104 Afstyla (1 x 500 units vial, 1 x inert diluent vial), 1 pack, composite pack 271633 984601000168102 Afstyla (1 x 500 units vial, 1 x inert diluent vial), 1 pack 984581000168106 Afstyla (inert substance) diluent, vial 984051000168109 Afstyla 984051000168109 Afstyla 984591000168109 lonoctocog alfa 500 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +754111000168105 Xedone 10 mg hard capsule, 60, bottle 227851 754081000168100 Xedone 10 mg hard capsule, 60 754051000168107 Xedone 10 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +77215011000036106 Blistex Daily Conditioning Therapy ointment, 7 g, tube 136304 76631011000036104 Blistex Daily Conditioning Therapy ointment, 7 g 76076011000036104 Blistex Daily Conditioning Therapy ointment 75987011000036101 Blistex Daily Conditioning Therapy 75987011000036101 Blistex Daily Conditioning Therapy 78180011000036105 oxybenzone 3.5% + padimate-O 7.5% ointment, 7 g 77531011000036109 oxybenzone 3.5% + padimate-O 7.5% ointment 77455011000036100 oxybenzone + padimate-O +823231000168106 Cervarix injection suspension, 20 x 0.5 mL syringes 126114 823221000168108 Cervarix injection suspension, 20 x 0.5 mL syringes 823141000168105 Cervarix injection suspension, 0.5 mL syringe 73753011000036102 Cervarix 73753011000036102 Cervarix 823211000168101 human papillomavirus bivalent vaccine injection, 20 x 0.5 mL syringes 823131000168101 human papillomavirus bivalent vaccine injection, 0.5 mL syringe 823121000168104 human papillomavirus bivalent vaccine +933214461000036103 Tralen 100 mg film-coated tablet, 14, blister pack 160781 933203761000036107 Tralen 100 mg film-coated tablet, 14 933195881000036108 Tralen 100 mg film-coated tablet 933193631000036107 Tralen 933193631000036107 Tralen 929239011000036104 sertraline 100 mg tablet, 14 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +34670011000036105 Invega 6 mg modified release tablet, 7, blister pack 130714 34256011000036108 Invega 6 mg modified release tablet, 7 33988011000036100 Invega 6 mg modified release tablet 2081000168101 Invega 2081000168101 Invega 35124011000036109 paliperidone 6 mg modified release tablet, 7 34856011000036101 paliperidone 6 mg modified release tablet 34837011000036104 paliperidone +693581000168105 Amoxyclav 875/125 (AN) film-coated tablet, 10, blister pack 123971 693571000168107 Amoxyclav 875/125 (AN) film-coated tablet, 10 693561000168101 Amoxyclav 875/125 (AN) film-coated tablet 693551000168103 Amoxyclav 875/125 (AN) 693551000168103 Amoxyclav 875/125 (AN) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +39415011000036108 Cosamide 50 mg film-coated tablet, 28, bottle 135219 39298011000036102 Cosamide 50 mg film-coated tablet, 28 39190011000036101 Cosamide 50 mg film-coated tablet 39178011000036105 Cosamide 39178011000036105 Cosamide 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1001811000168108 Amlodipine/Atorvastatin 10/40 (Apotex) film-coated tablet, 30, blister pack 214342 1001801000168105 Amlodipine/Atorvastatin 10/40 (Apotex) film-coated tablet, 30 1001791000168109 Amlodipine/Atorvastatin 10/40 (Apotex) film-coated tablet 1001781000168106 Amlodipine/Atorvastatin 10/40 (Apotex) 1001781000168106 Amlodipine/Atorvastatin 10/40 (Apotex) 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +705101000168102 Glytactin RTD 10 Chocolate containing 10 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 705091000168107 Glytactin RTD 10 Chocolate containing 10 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 705081000168109 Glytactin RTD 10 Chocolate containing 10 g of protein equivalent oral liquid solution, 250 mL carton 705021000168105 Glytactin RTD 10 705021000168105 Glytactin RTD 10 705051000168102 glycomacropeptide and essential amino acids with vitamins and minerals containing 10 g of protein equivalent oral liquid, 30 x 250 mL cartons 705031000168108 glycomacropeptide and essential amino acids with vitamins and minerals containing 10 g of protein equivalent oral liquid, 250 mL carton 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +768501000168102 Fluquadri 2016 injection suspension, 5 x 0.5 mL syringes 213963 768491000168109 Fluquadri 2016 injection suspension, 5 x 0.5 mL syringes 768471000168108 Fluquadri 2016 injection suspension, 0.5 mL syringe 768361000168107 Fluquadri 2016 768361000168107 Fluquadri 2016 768481000168106 influenza quadrivalent adult vaccine 2016 injection, 5 x 0.5 mL syringes 768461000168102 influenza quadrivalent adult vaccine 2016 injection, 0.5 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +61262011000036104 Panadol Gel Tab 500 mg gelatin coated tablet, 48, blister pack 77188 57198011000036101 Panadol Gel Tab 500 mg gelatin coated tablet, 48 54232011000036104 Panadol Gel Tab 500 mg gelatin coated tablet 28731000168106 Panadol Gel Tab 28731000168106 Panadol Gel Tab 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1006151000168107 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 190531 1006141000168105 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 1006131000168101 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 10 mL ampoule 728761000168104 Ropivacaine 1% (Actavis) 728761000168104 Ropivacaine 1% (Actavis) 1005001000168103 ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules 1004981000168106 ropivacaine hydrochloride 100 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +660471000168102 Tramadol Hydrochloride (AN) 50 mg hard capsule, 20, blister pack 190050 660461000168108 Tramadol Hydrochloride (AN) 50 mg hard capsule, 20 660451000168106 Tramadol Hydrochloride (AN) 50 mg hard capsule 660441000168109 Tramadol Hydrochloride (AN) 660441000168109 Tramadol Hydrochloride (AN) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +777121000168108 Neostigmine (Juno) 2.5 mg/mL injection solution, 50 x 1 mL ampoules 219054 777111000168101 Neostigmine (Juno) 2.5 mg/mL injection solution, 50 x 1 mL ampoules 777071000168108 Neostigmine (Juno) 2.5 mg/mL injection solution, ampoule 777061000168102 Neostigmine (Juno) 777061000168102 Neostigmine (Juno) 38594011000036104 neostigmine methylsulfate 2.5 mg/mL injection, 50 x 1 mL ampoules 37865011000036109 neostigmine methylsulfate 2.5 mg/mL injection, ampoule 37705011000036105 neostigmine +862111000168107 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60, bottle 167282 862101000168109 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60 862021000168101 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet 19091000168105 Caltrate 600 mg with Vitamin D 400 IU 19091000168105 Caltrate 600 mg with Vitamin D 400 IU 862091000168104 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 60 862011000168108 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet 733951000168109 calcium + colecalciferol +742561000168105 Reladdin 100 mg powder for injection, 1 vial 228299 742551000168108 Reladdin 100 mg powder for injection, 1 vial 742541000168106 Reladdin 100 mg powder for injection, 100 mg vial 742531000168102 Reladdin 742531000168102 Reladdin 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +1076721000168108 Astazol 5 mg/100 mL injection solution, 100 mL bag 182209 1076711000168101 Astazol 5 mg/100 mL injection solution, 100 mL bag 1076701000168104 Astazol 5 mg/100 mL injection solution, 100 mL bag 1076691000168104 Astazol 1076691000168104 Astazol 731451000168100 zoledronic acid 5 mg/100 mL injection, 100 mL bag 731431000168106 zoledronic acid 5 mg/100 mL injection, bag 21790011000036102 zoledronic acid +111051000036104 Doxorubicin Hydrochloride (SZ) 200 mg/100 mL concentrated injection, 100 mL vial 174245 109331000036107 Doxorubicin Hydrochloride (SZ) 200 mg/100 mL concentrated injection, 100 mL vial 107511000036102 Doxorubicin Hydrochloride (SZ) 200 mg/100 mL concentrated injection, 100 mL vial 106551000036100 Doxorubicin Hydrochloride (SZ) 106551000036100 Doxorubicin Hydrochloride (SZ) 33809011000036103 doxorubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 33680011000036101 doxorubicin hydrochloride 200 mg/100 mL injection, vial 21638011000036100 doxorubicin +43750011000036103 Zorac 0.05% cream, 60 g, tube 101328 41122011000036100 Zorac 0.05% cream, 60 g 39934011000036102 Zorac 0.05% cream 39675011000036100 Zorac 39675011000036100 Zorac 46104011000036100 tazarotene 0.05% cream, 60 g 44986011000036101 tazarotene 0.05% cream 44886011000036105 tazarotene +1119901000168109 Quetiapine XR (Actavis) 300 mg modified release tablet, 30, blister pack 226807 1119891000168105 Quetiapine XR (Actavis) 300 mg modified release tablet, 30 1119861000168103 Quetiapine XR (Actavis) 300 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 795801000168108 quetiapine 300 mg modified release tablet, 30 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +993141000168109 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 280, bottle 201684 993131000168100 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 280 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 993121000168103 clopidogrel 75 mg + aspirin 75 mg tablet, 280 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +821791000168102 Ibavyr 200 mg coated tablet, 28, bottle 243632 821781000168100 Ibavyr 200 mg coated tablet, 28 821761000168109 Ibavyr 200 mg coated tablet 755451000168104 Ibavyr 755451000168104 Ibavyr 821771000168103 ribavirin 200 mg tablet, 28 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +69195011000036103 Darrow's Solution (Baxter) intravenous infusion injection, 12 x 1 L bags 19436 66995011000036106 Darrow's Solution (Baxter) intravenous infusion injection, 12 x 1 L bags 65528011000036101 Darrow's Solution (Baxter) intravenous infusion injection, 1 L bag 65117011000036101 Darrow's Solution (Baxter) 65117011000036101 Darrow's Solution (Baxter) 71565011000036102 sodium lactate 0.59% (5.9 g/L) + sodium chloride 0.4% (4 g/L) + potassium chloride 0.26% (2.6 g/L) injection, 12 x 1 L bags 70067011000036103 sodium lactate 0.59% (5.9 g/L) + sodium chloride 0.4% (4 g/L) + potassium chloride 0.26% (2.6 g/L) injection, bag 860891000168106 sodium lactate + sodium chloride + potassium chloride +754071000168103 Xedone 10 mg hard capsule, 20, blister pack 227852 754061000168109 Xedone 10 mg hard capsule, 20 754051000168107 Xedone 10 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +935581000168102 Celecoxib (SZ) 200 mg hard capsule, 30, blister pack 210631 935571000168100 Celecoxib (SZ) 200 mg hard capsule, 30 935561000168106 Celecoxib (SZ) 200 mg hard capsule 935551000168109 Celecoxib (SZ) 935551000168109 Celecoxib (SZ) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +929668011000036100 Acris Once-a-Week 35 mg film-coated tablet, 1, blister pack 163785 929504011000036102 Acris Once-a-Week 35 mg film-coated tablet, 1 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 22031000168106 Acris Once-a-Week 22031000168106 Acris Once-a-Week 929232011000036109 risedronate sodium 35 mg tablet, 1 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +61639011000036101 Advil 200 mg soft capsule, 10, blister pack 97229 57561011000036104 Advil 200 mg soft capsule, 10 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63926011000036103 ibuprofen 200 mg capsule, 10 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +18078011000036104 Alepam 15 mg uncoated tablet, 25, bottle 17572 32367011000036100 Alepam 15 mg uncoated tablet, 25 32245011000036105 Alepam 15 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 32769011000036106 oxazepam 15 mg tablet, 25 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +32599011000036107 Genotropin Miniquick (7 x 2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76608 32394011000036108 Genotropin Miniquick (7 x 2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 6855011000036100 Genotropin Miniquick (somatropin 2 mg) powder for injection, 2 mg syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32792011000036103 somatropin 2 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 23138011000036106 somatropin 2 mg injection, syringe 21295011000036100 somatropin +32599011000036107 Genotropin Miniquick (7 x 2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76608 32394011000036108 Genotropin Miniquick (7 x 2 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32792011000036103 somatropin 2 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +81000011000036105 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules, blister pack 116832 80483011000036102 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules 80155011000036109 Aridol 10 mg powder for inhalation, 1 capsule 80110011000036106 Aridol 80110011000036106 Aridol 81582011000036108 mannitol 0 mg powder for inhalation [1 capsule] (&) mannitol 5 mg powder for inhalation [1 capsule] (&) mannitol 10 mg powder for inhalation [1 capsule] (&) mannitol 20 mg powder for inhalation [1 capsule] (&) mannitol 40 mg powder for inhalation [15 capsules], 19 capsules 81256011000036105 mannitol 10 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +81000011000036105 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules, blister pack 116832 80483011000036102 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules 80147011000036101 Aridol 40 mg powder for inhalation, 1 capsule 80110011000036106 Aridol 80110011000036106 Aridol 81582011000036108 mannitol 0 mg powder for inhalation [1 capsule] (&) mannitol 5 mg powder for inhalation [1 capsule] (&) mannitol 10 mg powder for inhalation [1 capsule] (&) mannitol 20 mg powder for inhalation [1 capsule] (&) mannitol 40 mg powder for inhalation [15 capsules], 19 capsules 81258011000036109 mannitol 40 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +81000011000036105 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules, blister pack 116832 80483011000036102 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules 80156011000036102 Aridol 20 mg powder for inhalation, 1 capsule 80110011000036106 Aridol 80110011000036106 Aridol 81582011000036108 mannitol 0 mg powder for inhalation [1 capsule] (&) mannitol 5 mg powder for inhalation [1 capsule] (&) mannitol 10 mg powder for inhalation [1 capsule] (&) mannitol 20 mg powder for inhalation [1 capsule] (&) mannitol 40 mg powder for inhalation [15 capsules], 19 capsules 81255011000036103 mannitol 20 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +81000011000036105 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules, blister pack 116832 80483011000036102 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules 80146011000036104 Aridol 0 mg powder for inhalation, 1 capsule 80110011000036106 Aridol 80110011000036106 Aridol 81582011000036108 mannitol 0 mg powder for inhalation [1 capsule] (&) mannitol 5 mg powder for inhalation [1 capsule] (&) mannitol 10 mg powder for inhalation [1 capsule] (&) mannitol 20 mg powder for inhalation [1 capsule] (&) mannitol 40 mg powder for inhalation [15 capsules], 19 capsules 81257011000036108 mannitol 0 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +81000011000036105 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules, blister pack 116832 80483011000036102 Aridol (1 x 0 mg capsule, 1 x 5 mg capsule, 1 x 10 mg capsule, 1 x 20 mg capsule, 15 x 40 mg capsules), 19 capsules 80154011000036105 Aridol 5 mg powder for inhalation, 1 capsule 80110011000036106 Aridol 80110011000036106 Aridol 81582011000036108 mannitol 0 mg powder for inhalation [1 capsule] (&) mannitol 5 mg powder for inhalation [1 capsule] (&) mannitol 10 mg powder for inhalation [1 capsule] (&) mannitol 20 mg powder for inhalation [1 capsule] (&) mannitol 40 mg powder for inhalation [15 capsules], 19 capsules 81254011000036102 mannitol 5 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +33521011000036106 Simvastatin (Generic Health) 80 mg film-coated tablet, 30, blister pack 123819 33264011000036105 Simvastatin (Generic Health) 80 mg film-coated tablet, 30 33030011000036103 Simvastatin (Generic Health) 80 mg film-coated tablet 32971011000036105 Simvastatin (Generic Health) 32971011000036105 Simvastatin (Generic Health) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +60294011000036100 Dimetapp Daytime/Nightime Liquid Cap (36 x Day Liquid capsules, 12 x Night Liquid capsules), 48, blister pack 137255 56253011000036104 Dimetapp Daytime/Nightime Liquid Cap (36 x Day Liquid capsules, 12 x Night Liquid capsules), 48 53852011000036105 Dimetapp Daytime/Nightime (Day Liquid Capsule) soft capsule 2741000168109 Dimetapp Daytime/Nightime Liquid Cap 2861000168104 Dimetapp Daytime/Nightime (Day Liquid Capsule) 63265011000036104 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [36] (&) paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule [12], 48 61906011000036103 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61766011000036107 paracetamol + dextromethorphan +60294011000036100 Dimetapp Daytime/Nightime Liquid Cap (36 x Day Liquid capsules, 12 x Night Liquid capsules), 48, blister pack 137255 56253011000036104 Dimetapp Daytime/Nightime Liquid Cap (36 x Day Liquid capsules, 12 x Night Liquid capsules), 48 53853011000036103 Dimetapp Daytime/Nightime (Night Liquid Capsule) soft capsule 2741000168109 Dimetapp Daytime/Nightime Liquid Cap 2981000168102 Dimetapp Daytime/Nightime (Night Liquid Capsule) 63265011000036104 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [36] (&) paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule [12], 48 61907011000036100 paracetamol 300 mg + dextromethorphan hydrobromide monohydrate 10 mg + doxylamine succinate 6.25 mg capsule 61784011000036101 paracetamol + dextromethorphan + doxylamine +110891000036106 Citalo 20 mg film-coated tablet, 7, bottle 158874 930677011000036105 Citalo 20 mg film-coated tablet, 7 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +791561000168105 Trexject 7.5 mg/0.15 mL injection solution, 6 x 0.15 mL syringes 233714 791551000168108 Trexject 7.5 mg/0.15 mL injection solution, 6 x 0.15 mL syringes 791471000168103 Trexject 7.5 mg/0.15 mL injection solution, 0.15 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791541000168106 methotrexate 7.5 mg/0.15 mL injection, 6 x 0.15 mL syringes 791461000168109 methotrexate 7.5 mg/0.15 mL injection, syringe 21342011000036105 methotrexate +44145011000036100 Clarinase Repetab modified release tablet, 1, blister pack 53516 41621011000036105 Clarinase Repetab modified release tablet, 1 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46440011000036100 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 1 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +981801000168104 Relpax 20 mg film-coated tablet, 4, blister pack 68354 981791000168100 Relpax 20 mg film-coated tablet, 4 981641000168103 Relpax 20 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 981781000168103 eletriptan 20 mg tablet, 4 981631000168107 eletriptan 20 mg tablet 920818011000036107 eletriptan +43992011000036101 Penthrox 999.9 mg/g inhalation solution, 3 mL, bottle 43144 41483011000036102 Penthrox 999.9 mg/g inhalation solution, 3 mL 40008011000036107 Penthrox 999.9 mg/g inhalation solution 39767011000036109 Penthrox 39767011000036109 Penthrox 46329011000036103 methoxyflurane 999.9 mg/g inhalation solution, 3 mL 45084011000036107 methoxyflurane 999.9 mg/g inhalation solution 44935011000036103 methoxyflurane +43615011000036107 Fosrenol 1 g chewable tablet, 15, bottle 106964 41148011000036100 Fosrenol 1 g chewable tablet, 15 39966011000036103 Fosrenol 1 g chewable tablet 39719011000036101 Fosrenol 39719011000036101 Fosrenol 46120011000036101 lanthanum 1 g chewable tablet, 15 44997011000036102 lanthanum 1 g chewable tablet 44962011000036102 lanthanum +83417011000036109 Lyrica 25 mg hard capsule, 56, blister pack 99469 83335011000036102 Lyrica 25 mg hard capsule, 56 83262011000036109 Lyrica 25 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +18789011000036103 Sical 0.25 microgram soft capsule, 100, bottle 126438 11829011000036101 Sical 0.25 microgram soft capsule, 100 4999011000036108 Sical 0.25 microgram soft capsule 4197011000036104 Sical 4197011000036104 Sical 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +682021000168106 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet, 10, blister pack 214453 682011000168104 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet, 10 682001000168102 Pramipexole Hydrochloride (GH) 1 mg uncoated tablet 681841000168103 Pramipexole Hydrochloride (GH) 681841000168103 Pramipexole Hydrochloride (GH) 38826011000036101 pramipexole dihydrochloride monohydrate 1 mg tablet, 10 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +39071000036107 Brilinta 90 mg film-coated tablet, 14, blister pack 167237 35431000036101 Brilinta 90 mg film-coated tablet, 14 32631000036105 Brilinta 90 mg film-coated tablet 32101000036105 Brilinta 32101000036105 Brilinta 35441000036106 ticagrelor 90 mg tablet, 14 32641000036100 ticagrelor 90 mg tablet 39401000036106 ticagrelor +723791000168103 Ozin ODT 20 mg orally disintegrating tablet, 28, blister pack 212897 723781000168101 Ozin ODT 20 mg orally disintegrating tablet, 28 723771000168104 Ozin ODT 20 mg orally disintegrating tablet 723501000168104 Ozin ODT 723501000168104 Ozin ODT 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +81026011000036103 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 40 x 250 mL bags 148935 80559011000036103 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 40 x 250 mL bags 80190011000036105 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 250 mL bag 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 81638011000036106 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, 40 x 250 mL bags 81273011000036101 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +111121000036109 Amoxyclav 875/125 (Pharmacor) film-coated tablet, 10, blister pack 196893 109401000036106 Amoxyclav 875/125 (Pharmacor) film-coated tablet, 10 107431000036105 Amoxyclav 875/125 (Pharmacor) film-coated tablet 58051000168102 Amoxyclav 875/125 (Pharmacor) 58051000168102 Amoxyclav 875/125 (Pharmacor) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +61504011000036101 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 92686 57429011000036102 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 100 mL 54300011000036103 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 5 mL 27401000168107 Ibuprofen for Children (Pharmacist) 27401000168107 Ibuprofen for Children (Pharmacist) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +656271000168109 Mirtazapine ODT (AN) 45 mg orally disintegrating tablet, 30, blister pack 183409 656261000168103 Mirtazapine ODT (AN) 45 mg orally disintegrating tablet, 30 656251000168100 Mirtazapine ODT (AN) 45 mg orally disintegrating tablet 656241000168102 Mirtazapine ODT (AN) 656241000168102 Mirtazapine ODT (AN) 47701000036107 mirtazapine 45 mg orally disintegrating tablet, 30 47571000036107 mirtazapine 45 mg orally disintegrating tablet 21463011000036102 mirtazapine +923701011000036102 Grandicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 147860 923320011000036104 Grandicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 923000011000036107 Grandicrit 1000 units/0.5 mL injection solution, 0.5 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924133011000036100 epoetin lambda 1000 units/0.5 mL injection, 0.5 mL syringe 923957011000036109 epoetin lambda 1000 units/0.5 mL injection, syringe 923930011000036107 epoetin lambda +18412011000036104 Neorecormon 1000 units/0.3 mL injection, 6 x 0.3 mL syringes 104258 11273011000036106 Neorecormon 1000 units/0.3 mL injection, 6 x 0.3 mL syringes 4891011000036100 Neorecormon 1000 units/0.3 mL injection, 0.3 mL syringe 33291000168109 Neorecormon 33291000168109 Neorecormon 26584011000036109 epoetin beta 1000 units/0.3 mL injection, 6 x 0.3 mL syringes 21992011000036109 epoetin beta 1000 units/0.3 mL injection, syringe 21625011000036109 epoetin beta +52182011000036102 Menthol and Eucalyptus BP (extemporaneous) inhalation solution, 50 mL, poison bottle 52066011000036108 Menthol and Eucalyptus BP (extemporaneous) inhalation solution, 50 mL 51967011000036100 Menthol and Eucalyptus BP (extemporaneous) inhalation solution 51943011000036103 Menthol and Eucalyptus BP (extemporaneous) 51943011000036103 Menthol and Eucalyptus BP (extemporaneous) 52314011000036100 menthol 2% + eucalyptus oil 10% inhalation solution, 50 mL 52246011000036109 menthol 2% + eucalyptus oil 10% inhalation solution 52237011000036108 menthol + eucalyptus oil +59994011000036104 Gastrogel-Ranitidine Extra Strength 300 mg film-coated tablet, 10, blister pack 121942 55956011000036107 Gastrogel-Ranitidine Extra Strength 300 mg film-coated tablet, 10 53737011000036108 Gastrogel-Ranitidine Extra Strength 300 mg film-coated tablet 37561000168107 Gastrogel-Ranitidine Extra Strength 37561000168107 Gastrogel-Ranitidine Extra Strength 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +984471000168109 Butafen 200 mg sugar coated tablet, 50, blister pack 126093 984461000168103 Butafen 200 mg sugar coated tablet, 50 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933231661000036107 Strepsils Dry Cough 5 mg lozenge, 2, blister pack 69834 933226281000036107 Strepsils Dry Cough 5 mg lozenge, 2 933221091000036107 Strepsils Dry Cough 5 mg lozenge 53599011000036108 Strepsils Dry Cough 53599011000036108 Strepsils Dry Cough 933226291000036109 dextromethorphan hydrobromide monohydrate 5 mg lozenge, 2 933221101000036103 dextromethorphan hydrobromide monohydrate 5 mg lozenge 61744011000036109 dextromethorphan +924021000168106 Temaze 10 mg uncoated tablet, 7, blister pack 63864 924001000168102 Temaze 10 mg uncoated tablet, 7 6361011000036107 Temaze 10 mg uncoated tablet 3498011000036104 Temaze 3498011000036104 Temaze 923981000168107 temazepam 10 mg tablet, 7 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +863481000168102 Medi Creme cream, 25 g, tube 16131 863471000168100 Medi Creme cream, 25 g 863451000168109 Medi Creme cream 13121000168106 Medi Creme 13121000168106 Medi Creme 863461000168106 lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 25 g 863441000168107 lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream 926963011000036102 lidocaine (lignocaine) + cetrimide + chlorhexidine + hexamidine +694931000168101 Ondansetron (MYX) 4 mg/2 mL injection solution, 10 x 2 mL ampoules 205594 694921000168104 Ondansetron (MYX) 4 mg/2 mL injection solution, 10 x 2 mL ampoules 694911000168106 Ondansetron (MYX) 4 mg/2 mL injection solution, 2 mL ampoule 694901000168108 Ondansetron (MYX) 694901000168108 Ondansetron (MYX) 922698011000036105 ondansetron 4 mg/2 mL injection, 10 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +716741000168109 Pemzo 20 mg enteric capsule, 30, bottle 167315 716711000168105 Pemzo 20 mg enteric capsule, 30 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +938551000168104 Celecoxib (Ran) 100 mg hard capsule, 10, blister pack 212785 938541000168101 Celecoxib (Ran) 100 mg hard capsule, 10 938531000168105 Celecoxib (Ran) 100 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +898201000168104 Strensiq 40 mg/mL injection solution, 12 x 1 mL vials 232546 898191000168102 Strensiq 40 mg/mL injection solution, 12 x 1 mL vials 898141000168105 Strensiq 40 mg/mL injection solution, vial 898031000168102 Strensiq 898031000168102 Strensiq 898181000168100 asfotase alfa 40 mg/mL injection, 12 x 1 mL vials 898131000168101 asfotase alfa 40 mg/mL injection, vial 898041000168106 asfotase alfa +664881000168108 Amlodipine (GH) 5 mg uncoated tablet, 30, blister pack 140104 664871000168105 Amlodipine (GH) 5 mg uncoated tablet, 30 664861000168104 Amlodipine (GH) 5 mg uncoated tablet 664821000168109 Amlodipine (GH) 664821000168109 Amlodipine (GH) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +934211000168107 Centevo 175/43.75/200 mg film-coated tablet, 30, bottle 238858 934201000168109 Centevo 175/43.75/200 mg film-coated tablet, 30 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934191000168106 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 30 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +61596011000036106 Sinus and Nasal Relief (Amcal) 60 mg film-coated tablet, 12, blister pack 95794 57518011000036107 Sinus and Nasal Relief (Amcal) 60 mg film-coated tablet, 12 54336011000036108 Sinus and Nasal Relief (Amcal) 60 mg film-coated tablet 53426011000036100 Sinus and Nasal Relief (Amcal) 53426011000036100 Sinus and Nasal Relief (Amcal) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +33610011000036104 Salofalk Foam 1 g/application enema, 14 applications, aerosol can 95960 33348011000036103 Salofalk Foam 1 g/application enema, 14 applications 33108011000036104 Salofalk Foam 1 g/application enema, 1 application 42861000168106 Salofalk Foam 42861000168106 Salofalk Foam 33825011000036109 mesalazine 1 g/application enema, 14 applications 33691011000036107 mesalazine 1 g/application enema, 1 application 21351011000036101 mesalazine +60236011000036103 Vicks Cough Syrup honey 6.67 mg/5 mL oral liquid solution, 180 mL, bottle 134301 56195011000036108 Vicks Cough Syrup honey 6.67 mg/5 mL oral liquid solution, 180 mL 53834011000036100 Vicks Cough Syrup honey 6.67 mg/5 mL oral liquid solution, 5 mL 53258011000036103 Vicks Cough Syrup 53258011000036103 Vicks Cough Syrup 63962011000036108 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid, 180 mL 62110011000036100 dextromethorphan hydrobromide monohydrate 6.67 mg/5 mL oral liquid 61744011000036109 dextromethorphan +984451000168100 Butafen 200 mg sugar coated tablet, 48, blister pack 126093 984441000168102 Butafen 200 mg sugar coated tablet, 48 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1039181000168104 Atorvastatin (GA) 40 mg film-coated tablet, 10, blister pack 178532 1039171000168102 Atorvastatin (GA) 40 mg film-coated tablet, 10 1039161000168108 Atorvastatin (GA) 40 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1042241000168106 Nicotine (Amcal) 2 mg lozenge, 132, blister pack 213239 1042231000168102 Nicotine (Amcal) 2 mg lozenge, 132 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 898711000168105 nicotine 2 mg lozenge, 132 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +933214621000036109 Levetiracetam (GN) 500 mg film-coated tablet, 60, blister pack 161292 933203981000036104 Levetiracetam (GN) 500 mg film-coated tablet, 60 933196021000036109 Levetiracetam (GN) 500 mg film-coated tablet 933193821000036106 Levetiracetam (GN) 933193821000036106 Levetiracetam (GN) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +1001731000168105 Olanzapine (Apotex) 20 mg film-coated tablet, 28, blister pack 158998 1001721000168107 Olanzapine (Apotex) 20 mg film-coated tablet, 28 1001711000168100 Olanzapine (Apotex) 20 mg film-coated tablet 1000751000168109 Olanzapine (Apotex) 1000751000168109 Olanzapine (Apotex) 6841000036106 olanzapine 20 mg tablet, 28 1361000036106 olanzapine 20 mg tablet 21485011000036103 olanzapine +931454011000036108 Ranitidine (GA) 150 mg film-coated tablet, 60, blister pack 148518 930633011000036103 Ranitidine (GA) 150 mg film-coated tablet, 60 929981011000036108 Ranitidine (GA) 150 mg film-coated tablet 929889011000036103 Ranitidine (GA) 929889011000036103 Ranitidine (GA) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +998841000168106 Perindopril Arginine (Apotex) 10 mg film-coated tablet, 10, blister pack 184817 998831000168102 Perindopril Arginine (Apotex) 10 mg film-coated tablet, 10 998821000168100 Perindopril Arginine (Apotex) 10 mg film-coated tablet 998671000168103 Perindopril Arginine (Apotex) 998671000168103 Perindopril Arginine (Apotex) 727331000168107 perindopril arginine 10 mg tablet, 10 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +19319011000036102 Plaquenil 200 mg film-coated tablet, 100, bottle 50055 12609011000036100 Plaquenil 200 mg film-coated tablet, 100 5648011000036102 Plaquenil 200 mg film-coated tablet 4126011000036109 Plaquenil 4126011000036109 Plaquenil 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +1079691000168109 Sodium Chloride 0.45% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 228198 1079681000168106 Sodium Chloride 0.45% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 1079661000168102 Sodium Chloride 0.45% and Glucose 5% (Baxter) intravenous infusion injection, bag 1079641000168101 Sodium Chloride 0.45% and Glucose 5% (Baxter) 1079641000168101 Sodium Chloride 0.45% and Glucose 5% (Baxter) 1079671000168108 sodium chloride 0.45% (4.5 g/L) + glucose 5% (50 g/L) injection, 1 L bag 1079651000168104 sodium chloride 0.45% (4.5 g/L) + glucose 5% (50 g/L) injection, bag 21257011000036103 sodium chloride + glucose +69650011000036101 Nurofen 5% gel, 20 g, tube 79909 67449011000036100 Nurofen 5% gel, 20 g 65669011000036108 Nurofen 5% gel 5641000168109 Nurofen 5641000168109 Nurofen 71977011000036108 ibuprofen 5% gel, 20 g 70270011000036104 ibuprofen 5% gel 21885011000036105 ibuprofen +788591000168106 Cortiment 9 mg modified release tablet, 80, blister pack 225849 788581000168108 Cortiment 9 mg modified release tablet, 80 788411000168103 Cortiment 9 mg modified release tablet 788391000168103 Cortiment 788391000168103 Cortiment 788571000168105 budesonide 9 mg modified release tablet, 80 788401000168101 budesonide 9 mg modified release tablet 21307011000036104 budesonide +656201000168104 Levetiracetam (AN) 500 mg film-coated tablet, 60, blister pack 189880 656191000168102 Levetiracetam (AN) 500 mg film-coated tablet, 60 656181000168100 Levetiracetam (AN) 500 mg film-coated tablet 656141000168105 Levetiracetam (AN) 656141000168105 Levetiracetam (AN) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +719391000168109 Paclitaxel (Act) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 148035 719381000168106 Paclitaxel (Act) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 719371000168108 Paclitaxel (Act) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 718601000168102 Paclitaxel (Act) 718601000168102 Paclitaxel (Act) 704461000168109 paclitaxel 100 mg/16.67 mL injection, 16.67 mL vial 704441000168105 paclitaxel 100 mg/16.67 mL injection, vial 21604011000036104 paclitaxel +59859011000036103 Xergic 180 mg film-coated tablet, 10, blister pack 115378 55821011000036105 Xergic 180 mg film-coated tablet, 10 53722011000036108 Xergic 180 mg film-coated tablet 4325011000036107 Xergic 4325011000036107 Xergic 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +771471000168107 Exelon-5 4.6 mg/24 hours patch, 7, sachet 133422 771461000168101 Exelon-5 4.6 mg/24 hours patch, 7 36167011000036106 Exelon-5 4.6 mg/24 hours patch 53691000168107 Exelon-5 53691000168107 Exelon-5 771451000168103 rivastigmine 4.6 mg/24 hours patch, 7 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +1036491000168104 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 28, bottle 173501 1036481000168102 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 28 1036471000168100 Atorvastatin (Ranbaxy) 80 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890391000168102 atorvastatin 80 mg tablet, 28 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +73326011000036105 Simvastatin (Apo) 20 mg film-coated tablet, 30, blister pack 149813 73121011000036106 Simvastatin (Apo) 20 mg film-coated tablet, 30 72946011000036105 Simvastatin (Apo) 20 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +73326011000036105 Simvastatin (Apo) 20 mg film-coated tablet, 30, blister pack 223449 73121011000036106 Simvastatin (Apo) 20 mg film-coated tablet, 30 72946011000036105 Simvastatin (Apo) 20 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +32582011000036103 Sodium Chloride (Baxter) 3% (30 g/L) injection solution, 1 L bag 19500 32377011000036106 Sodium Chloride (Baxter) 3% (30 g/L) injection solution, 1 L bag 4459011000036103 Sodium Chloride (Baxter) 3% (30 g/L) injection solution, 1 L bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 32777011000036105 sodium chloride 3% (30 g/L) injection, 1 L bag 22350011000036109 sodium chloride 3% (30 g/L) injection, bag 21308011000036103 sodium chloride +56431000036108 Amline 10 mg uncoated tablet, 30, blister pack 160812 52341000036106 Amline 10 mg uncoated tablet, 30 48921000036100 Amline 10 mg uncoated tablet 48351000036105 Amline 48351000036105 Amline 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +882171000168102 Spedra 50 mg uncoated tablet, 2, blister pack 228474 882161000168108 Spedra 50 mg uncoated tablet, 2 882111000168105 Spedra 50 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882151000168106 avanafil 50 mg tablet, 2 882101000168107 avanafil 50 mg tablet 882091000168102 avanafil +733841000168103 Ketorolac (Juno) 30 mg/mL injection solution, 100 x 1 mL ampoules 211626 733831000168107 Ketorolac (Juno) 30 mg/mL injection solution, 100 x 1 mL ampoules 733791000168101 Ketorolac (Juno) 30 mg/mL injection solution, ampoule 733781000168104 Ketorolac (Juno) 733781000168104 Ketorolac (Juno) 733821000168109 ketorolac trometamol 30 mg/mL injection, 100 x 1 mL ampoules 45060011000036104 ketorolac trometamol 30 mg/mL injection, ampoule 44879011000036107 ketorolac +921919011000036101 Cetirizine Hydrochloride (Trust) 10 mg film-coated tablet, 30, blister pack 160460 921478011000036100 Cetirizine Hydrochloride (Trust) 10 mg film-coated tablet, 30 921026011000036109 Cetirizine Hydrochloride (Trust) 10 mg film-coated tablet 920956011000036107 Cetirizine Hydrochloride (Trust) 920956011000036107 Cetirizine Hydrochloride (Trust) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +929111011000036109 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 28, blister pack 166920 928472011000036105 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 28 927992011000036108 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +653141000168101 Epirubicin Hydrochloride (Act) 10 mg/5 mL concentrated injection, 5 mL vial 146578 653131000168105 Epirubicin Hydrochloride (Act) 10 mg/5 mL concentrated injection, 5 mL vial 653121000168107 Epirubicin Hydrochloride (Act) 10 mg/5 mL concentrated injection, 5 mL vial 47661000168107 Epirubicin Hydrochloride (Act) 47661000168107 Epirubicin Hydrochloride (Act) 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +1122711000168109 Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes 285932 1122701000168106 Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes 1122621000168109 Fluzone High-Dose 2018 injection suspension, 0.5 mL syringe 1085441000168105 Fluzone High-Dose 2018 1085441000168105 Fluzone High-Dose 2018 1122691000168106 influenza trivalent geriatric vaccine 2018 injection, 10 x 0.5 mL syringes 1122611000168102 influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe 1085461000168109 influenza trivalent vaccine 2018 +20705011000036100 Alprax 1 mg uncoated tablet, 50, bottle 82641 13877011000036100 Alprax 1 mg uncoated tablet, 50 7164011000036104 Alprax 1 mg uncoated tablet 3567011000036106 Alprax 3567011000036106 Alprax 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +869431000168101 Atomerra 60 mg hard capsule, 28, blister pack 234808 869411000168106 Atomerra 60 mg hard capsule, 28 869251000168106 Atomerra 60 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1003331000168107 Rivastigmine (Apo) 6 mg hard capsule, 14, blister pack 160571 1003321000168109 Rivastigmine (Apo) 6 mg hard capsule, 14 1002981000168101 Rivastigmine (Apo) 6 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1003311000168102 rivastigmine 6 mg capsule, 14 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +795971000168108 Midazolam (Accord) 5 mg/mL injection solution, 5 x 1 mL ampoules 207231 795961000168102 Midazolam (Accord) 5 mg/mL injection solution, 5 x 1 mL ampoules 795931000168105 Midazolam (Accord) 5 mg/mL injection solution, ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +19138011000036109 Muphoran (1 x 208 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack, composite pack 44019 12438011000036104 Muphoran (1 x 208 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack 5065011000036107 Muphoran (fotemustine 208 mg) powder for injection, 208 mg vial 3134011000036101 Muphoran 3134011000036101 Muphoran 27120011000036104 fotemustine 208 mg injection [1 vial] (&) inert substance diluent [4 mL ampoule], 1 pack 22486011000036106 fotemustine 208 mg injection, vial 21336011000036105 fotemustine +19138011000036109 Muphoran (1 x 208 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack, composite pack 44019 12438011000036104 Muphoran (1 x 208 mg vial, 1 x 4 mL inert diluent ampoule), 1 pack 641961000168101 Muphoran (inert substance) diluent, 4 mL ampoule 3134011000036101 Muphoran 3134011000036101 Muphoran 27120011000036104 fotemustine 208 mg injection [1 vial] (&) inert substance diluent [4 mL ampoule], 1 pack 641951000168103 inert substance diluent, 4 mL ampoule 21220011000036103 inert substance +33538011000036104 Cephalexin (Lupin) 500 mg hard capsule, 20, blister pack 127408 33278011000036106 Cephalexin (Lupin) 500 mg hard capsule, 20 33043011000036107 Cephalexin (Lupin) 500 mg hard capsule 3024011000036109 Cephalexin (Lupin) 3024011000036109 Cephalexin (Lupin) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +797181000168103 Aciclovir (AN) 200 mg uncoated tablet, 25, blister pack 182884 797171000168101 Aciclovir (AN) 200 mg uncoated tablet, 25 797161000168107 Aciclovir (AN) 200 mg uncoated tablet 797081000168104 Aciclovir (AN) 797081000168104 Aciclovir (AN) 28317011000036105 aciclovir 200 mg tablet, 25 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +110801000036103 Pantoprazole (Apo) 40 mg enteric tablet, 30, bottle 156341 84018011000036102 Pantoprazole (Apo) 40 mg enteric tablet, 30 83647011000036101 Pantoprazole (Apo) 40 mg enteric tablet 42791000168109 Pantoprazole (Apo) 42791000168109 Pantoprazole (Apo) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +756901000168102 Duloxetine (Sandoz) 30 mg enteric capsule, 14, blister pack 197161 756891000168101 Duloxetine (Sandoz) 30 mg enteric capsule, 14 756851000168106 Duloxetine (Sandoz) 30 mg enteric capsule 756761000168104 Duloxetine (Sandoz) 756761000168104 Duloxetine (Sandoz) 756881000168104 duloxetine 30 mg enteric capsule, 14 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +44421011000036104 Agenerase 50 mg soft capsule, 480, bottle 71482 41880011000036104 Agenerase 50 mg soft capsule, 480 40237011000036107 Agenerase 50 mg soft capsule 39638011000036108 Agenerase 39638011000036108 Agenerase 46683011000036102 amprenavir 50 mg capsule, 480 45262011000036107 amprenavir 50 mg capsule 44922011000036108 amprenavir +921880011000036102 Sevikar 40/10 film-coated tablet, 10, blister pack 157562 921439011000036106 Sevikar 40/10 film-coated tablet, 10 921011011000036106 Sevikar 40/10 film-coated tablet 56321000168109 Sevikar 40/10 56321000168109 Sevikar 40/10 922567011000036100 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 10 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +1036531000168104 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 100, bottle 173501 1036521000168102 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 100 1036471000168100 Atorvastatin (Ranbaxy) 80 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +925187011000036107 Ceftazidime (Aspen) 2 g powder for injection, 5 vials 154824 924724011000036108 Ceftazidime (Aspen) 2 g powder for injection, 5 vials 924435011000036103 Ceftazidime (Aspen) 2 g powder for injection, 2 g vial 924377011000036100 Ceftazidime (Aspen) 924377011000036100 Ceftazidime (Aspen) 38651011000036102 ceftazidime 2 g injection, 5 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +37565011000036105 Phenobarbitone Sodium (DBL) 20 mg/0.5 mL injection, 5 x 0.5 mL ampoules 16269 36832011000036109 Phenobarbitone Sodium (DBL) 20 mg/0.5 mL injection, 5 x 0.5 mL ampoules 36157011000036102 Phenobarbitone Sodium (DBL) 20 mg/0.5 mL injection, 0.5 mL ampoule 35881011000036106 Phenobarbitone Sodium (DBL) 35881011000036106 Phenobarbitone Sodium (DBL) 38721011000036109 phenobarbital (phenobarbitone) sodium 20 mg/0.5 mL injection, 5 x 0.5 mL ampoules 37952011000036103 phenobarbital (phenobarbitone) sodium 20 mg/0.5 mL injection, ampoule 21578011000036105 phenobarbital (phenobarbitone) +719631000168101 Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses, ampoule 719621000168104 Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses 719601000168108 Artelac 0.2% / 1% eye gel, 600 mg unit dose 55621000168109 Artelac 0.2% / 1% 55621000168109 Artelac 0.2% / 1% 719611000168106 carbomer-980 0.2% + triglyceride lipids 1% eye gel, 30 x 600 mg unit doses 719591000168101 carbomer-980 0.2% + triglyceride lipids 1% eye gel, unit dose 719531000168100 carbomer-980 + triglyceride lipids +19337011000036102 Klacid 500 mg film-coated tablet, 100, bottle 50682 12625011000036106 Klacid 500 mg film-coated tablet, 100 7489011000036101 Klacid 500 mg film-coated tablet 3147011000036106 Klacid 3147011000036106 Klacid 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +44761011000036101 Voltaren 25 mg moulded suppository, 10, blister pack 96810 42206011000036109 Voltaren 25 mg moulded suppository, 10 40389011000036101 Voltaren 25 mg moulded suppository 28551000168108 Voltaren 28551000168108 Voltaren 46966011000036105 diclofenac sodium 25 mg suppository, 10 45362011000036104 diclofenac sodium 25 mg suppository 21288011000036105 diclofenac +993781000168103 Bivalirudin (Apo) 250 mg powder for injection, 10 vials 241713 993771000168101 Bivalirudin (Apo) 250 mg powder for injection, 10 vials 993741000168108 Bivalirudin (Apo) 250 mg powder for injection, 250 mg vial 993671000168105 Bivalirudin (Apo) 993671000168105 Bivalirudin (Apo) 851291000168105 bivalirudin 250 mg injection, 10 vials 21977011000036102 bivalirudin 250 mg injection, vial 21763011000036108 bivalirudin +1109351000168106 Midalim 5 mg/5 mL injection solution, 5 mL ampoule 207223 1109341000168109 Midalim 5 mg/5 mL injection solution, 5 mL ampoule 1109331000168100 Midalim 5 mg/5 mL injection solution, 5 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 664171000168103 midazolam 5 mg/5 mL injection, 5 mL ampoule 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +865491000168100 Amitriptyline (GPPL) 25 mg tablet, 1000, bottle 232137 862731000168101 Amitriptyline (GPPL) 25 mg tablet, 1000 862631000168109 Amitriptyline (GPPL) 25 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +87185011000036106 Nicorette Freshfruit 2 mg chewing gum, 105, blister pack 142476 87122011000036106 Nicorette Freshfruit 2 mg chewing gum, 105 87070011000036102 Nicorette Freshfruit 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87234011000036103 nicotine 2 mg gum, 105 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +901581000168108 Amisulpride (CH) 200 mg uncoated tablet, 30, blister pack 234704 901571000168105 Amisulpride (CH) 200 mg uncoated tablet, 30 901551000168101 Amisulpride (CH) 200 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 901561000168104 amisulpride 200 mg tablet, 30 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +1120061000168108 Tiapine XR 200 mg modified release tablet, 60, blister pack 199873 1120051000168106 Tiapine XR 200 mg modified release tablet, 60 1120041000168109 Tiapine XR 200 mg modified release tablet 1119801000168104 Tiapine XR 1119801000168104 Tiapine XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +843881000168105 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 28, blister pack 218083 843871000168107 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 28 843821000168106 Desvenlafaxine (Sandoz) 50 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52875011000036109 desvenlafaxine 50 mg modified release tablet, 28 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +69454011000036108 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 48526 67254011000036102 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 65577011000036101 Glucose (Baxter) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71804011000036103 glucose 5% (25 g/500 mL) injection, 500 mL bag 70193011000036101 glucose 5% (25 g/500 mL) injection, bag 21354011000036103 glucose +655561000168106 Cyproterone Acetate (AN) 100 mg uncoated tablet, 50, bottle 184234 655551000168109 Cyproterone Acetate (AN) 100 mg uncoated tablet, 50 655541000168107 Cyproterone Acetate (AN) 100 mg uncoated tablet 655531000168103 Cyproterone Acetate (AN) 655531000168103 Cyproterone Acetate (AN) 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +80023011000036100 Topiramate (Apo) 25 mg film-coated tablet, 60, blister pack 124729 79952011000036102 Topiramate (Apo) 25 mg film-coated tablet, 60 79916011000036105 Topiramate (Apo) 25 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +1122231000168105 Influvac Tetra 2018 with 16 mm Needle injection suspension, 1 x 0.5 mL syringe 292237 1122221000168107 Influvac Tetra 2018 with 16 mm Needle injection suspension, 1 x 0.5 mL syringe 1122211000168100 Influvac Tetra 2018 with 16 mm Needle injection suspension, 0.5 mL syringe 1120931000168101 Influvac Tetra 2018 1120931000168101 Influvac Tetra 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +931698011000036108 Simvastatin (Pfizer) 80 mg film-coated tablet, 30, blister pack 170528 930858011000036101 Simvastatin (Pfizer) 80 mg film-coated tablet, 30 930076011000036104 Simvastatin (Pfizer) 80 mg film-coated tablet 929838011000036104 Simvastatin (Pfizer) 929838011000036104 Simvastatin (Pfizer) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18204011000036105 Oroxine 200 microgram uncoated tablet, 200, bottle 10986 11804011000036108 Oroxine 200 microgram uncoated tablet, 200 5111011000036102 Oroxine 200 microgram uncoated tablet 3485011000036106 Oroxine 3485011000036106 Oroxine 28023011000036109 levothyroxine sodium 200 microgram tablet, 200 23346011000036103 levothyroxine sodium 200 microgram tablet 21577011000036109 levothyroxine +1111521000168109 Quetiapine (DP) 300 mg film-coated tablet, 60, blister pack 202271 1111511000168102 Quetiapine (DP) 300 mg film-coated tablet, 60 1111421000168105 Quetiapine (DP) 300 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +110641000036104 Sertraline (DRLA) 100 mg film-coated tablet, 30, blister pack 160777 108801000036102 Sertraline (DRLA) 100 mg film-coated tablet, 30 927967011000036107 Sertraline (DRLA) 100 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +19095011000036102 Norvasc 10 mg uncoated tablet, 30, blister pack 42903 12401011000036101 Norvasc 10 mg uncoated tablet, 30 5645011000036108 Norvasc 10 mg uncoated tablet 4216011000036104 Norvasc 4216011000036104 Norvasc 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +61126011000036106 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 240 mg/5 mL oral liquid solution, 200 mL, bottle 72392 57069011000036102 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 240 mg/5 mL oral liquid solution, 200 mL 54181011000036102 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 240 mg/5 mL oral liquid solution, 5 mL 20861000168105 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 20861000168105 Paracetamol Children's Elixir 5 to 12 Years (Guardian) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +829081000168103 Imatinib (RBX) 400 mg film-coated tablet, 30, blister pack 225491 829071000168101 Imatinib (RBX) 400 mg film-coated tablet, 30 829061000168107 Imatinib (RBX) 400 mg film-coated tablet 828961000168104 Imatinib (RBX) 828961000168104 Imatinib (RBX) 28143011000036104 imatinib 400 mg tablet, 30 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +933213981000036101 Citalopram (Auro) 40 mg film-coated tablet, 30, bottle 153676 933201981000036103 Citalopram (Auro) 40 mg film-coated tablet, 30 933194901000036107 Citalopram (Auro) 40 mg film-coated tablet 12311000168107 Citalopram (Auro) 12311000168107 Citalopram (Auro) 933201991000036101 citalopram 40 mg tablet, 30 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +707031000168102 Morphine (Juno) 10 mg/mL injection solution, 5 x 1 mL ampoules 224246 707021000168100 Morphine (Juno) 10 mg/mL injection solution, 5 x 1 mL ampoules 707001000168109 Morphine (Juno) 10 mg/mL injection solution, ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 707011000168107 morphine hydrochloride trihydrate 10 mg/mL injection, 5 x 1 mL ampoules 706991000168102 morphine hydrochloride trihydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +34757011000036101 Rapifen 1 mg/2 mL injection solution, 5 x 2 mL ampoules 50506 34338011000036100 Rapifen 1 mg/2 mL injection solution, 5 x 2 mL ampoules 34052011000036101 Rapifen 1 mg/2 mL injection solution, 2 mL ampoule 33928011000036109 Rapifen 33928011000036109 Rapifen 35186011000036107 alfentanil 1 mg/2 mL injection, 5 x 2 mL ampoules 34896011000036107 alfentanil 1 mg/2 mL injection, ampoule 34836011000036102 alfentanil +869511000168107 Amitriptyline (Mylan) 50 mg film-coated tablet, 1000, blister pack 232801 869501000168109 Amitriptyline (Mylan) 50 mg film-coated tablet, 1000 866871000168107 Amitriptyline (Mylan) 50 mg film-coated tablet 866741000168106 Amitriptyline (Mylan) 866741000168106 Amitriptyline (Mylan) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +653461000168109 Quetiapine (Pharmacor) 150 mg film-coated tablet, 60, blister pack 204838 653451000168107 Quetiapine (Pharmacor) 150 mg film-coated tablet, 60 653431000168101 Quetiapine (Pharmacor) 150 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +1068681000168106 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 36, blister pack 194227 1068671000168108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 36 88451000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +831251000168104 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 107286 831241000168101 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 689641000168100 Priorix-Tetra (inert substance) diluent, 0.5 mL syringe 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831231000168105 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +831251000168104 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 107286 831241000168101 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 831191000168101 Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831231000168105 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 831181000168104 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +655631000168104 Atorvastatin (AN) 20 mg film-coated tablet, 30, blister pack 198847 655621000168102 Atorvastatin (AN) 20 mg film-coated tablet, 30 655611000168109 Atorvastatin (AN) 20 mg film-coated tablet 655571000168100 Atorvastatin (AN) 655571000168100 Atorvastatin (AN) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +18377011000036101 Nizoral 2% cream, 30 g, tube 13311 11967011000036109 Nizoral 2% cream, 30 g 5158011000036101 Nizoral 2% cream 4145011000036104 Nizoral 4145011000036104 Nizoral 26820011000036108 ketoconazole 2% cream, 30 g 22202011000036107 ketoconazole 2% cream 21500011000036103 ketoconazole +1004461000168106 M-M-R II powder for injection, 10 vials 118451 1004451000168109 M-M-R II powder for injection, 10 vials 831361000168106 M-M-R II (measles + mumps + rubella live vaccine) powder for injection, vial 706311000168107 M-M-R II 706311000168107 M-M-R II 1004441000168107 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, 10 vials 831351000168109 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +921996011000036109 Normafibe 620 mg/g granules, 500 g, carton 58053 921554011000036102 Normafibe 620 mg/g granules, 500 g 921084011000036106 Normafibe 620 mg/g granules 920950011000036109 Normafibe 920950011000036109 Normafibe 922670011000036101 sterculia 620 mg/g granules, 500 g 922149011000036107 sterculia 620 mg/g granules 922042011000036108 sterculia +929714011000036104 Vaxigrip 2011 injection solution, 1 x 0.5 mL syringe 80198 929550011000036104 Vaxigrip 2011 injection solution, 1 x 0.5 mL syringe 929416011000036103 Vaxigrip 2011 injection solution, 0.5 mL syringe 43981000168100 Vaxigrip 2011 43981000168100 Vaxigrip 2011 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +933239841000036106 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 30, blister pack 181204 933237161000036106 Meloxicam (Terry White Chemists) 7.5 mg hard capsule, 30 933234821000036104 Meloxicam (Terry White Chemists) 7.5 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +942571000168107 Mandol 1 g powder for injection, 10 vials 14649 942561000168101 Mandol 1 g powder for injection, 10 vials 942541000168100 Mandol 1 g powder for injection, vial 942471000168108 Mandol 942471000168108 Mandol 942551000168103 cefamandole 1 g injection, 10 vials 942531000168109 cefamandole 1 g injection, vial 942521000168106 cefamandole +933239931000036106 Simvacor 80 mg film-coated tablet, 30, blister pack 182909 933236541000036103 Simvacor 80 mg film-coated tablet, 30 933234881000036103 Simvacor 80 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +55061000036102 Cystitis Relief (Pharmacy Choice) powder for oral liquid, 28 x 4 g sachets 126541 50881000036107 Cystitis Relief (Pharmacy Choice) powder for oral liquid, 28 x 4 g sachets 49471000036101 Cystitis Relief (Pharmacy Choice) powder for oral liquid, 4 g sachet 48461000036104 Cystitis Relief (Pharmacy Choice) 48461000036104 Cystitis Relief (Pharmacy Choice) 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +43716011000036107 Zemplar 1 microgram soft capsule, 28, blister pack 121760 41256011000036104 Zemplar 1 microgram soft capsule, 28 39897011000036109 Zemplar 1 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46195011000036103 paricalcitol 1 microgram capsule, 28 45025011000036103 paricalcitol 1 microgram capsule 44899011000036102 paricalcitol +73791000036105 Famciclovir (Sandoz) 500 mg film-coated tablet, 56, blister pack 162314 71551000036108 Famciclovir (Sandoz) 500 mg film-coated tablet, 56 70101000036109 Famciclovir (Sandoz) 500 mg film-coated tablet 85265011000036105 Famciclovir (Sandoz) 85265011000036105 Famciclovir (Sandoz) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +707111000168106 Morphine (Juno) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 224251 707101000168108 Morphine (Juno) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 707081000168101 Morphine (Juno) 50 mg/5 mL injection solution, 5 mL ampoule 706461000168100 Morphine (Juno) 706461000168100 Morphine (Juno) 707091000168103 morphine hydrochloride trihydrate 50 mg/5 mL injection, 5 x 5 mL ampoules 707071000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, ampoule 21252011000036100 morphine +39391000036108 Lemsip Multi-Relief Cold and Flu hard capsule, 16, blister pack 170629 35881000036104 Lemsip Multi-Relief Cold and Flu hard capsule, 16 32731000036104 Lemsip Multi-Relief Cold and Flu hard capsule 58591000168102 Lemsip Multi-Relief Cold and Flu 58591000168102 Lemsip Multi-Relief Cold and Flu 35891000036102 paracetamol 500 mg + phenylephrine hydrochloride 6.1 mg + guaifenesin 100 mg capsule, 16 32741000036109 paracetamol 500 mg + phenylephrine hydrochloride 6.1 mg + guaifenesin 100 mg capsule 61754011000036107 paracetamol + phenylephrine + guaifenesin +972481000168107 Lyzalon 300 mg hard capsule, 14, bottle 224423 972471000168109 Lyzalon 300 mg hard capsule, 14 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +933239851000036109 Meloxicam (Terry White Chemists) 15 mg hard capsule, 10, blister pack 181205 933237171000036103 Meloxicam (Terry White Chemists) 15 mg hard capsule, 10 933234831000036102 Meloxicam (Terry White Chemists) 15 mg hard capsule 4243011000036103 Meloxicam (Terry White Chemists) 4243011000036103 Meloxicam (Terry White Chemists) 52889011000036100 meloxicam 15 mg capsule, 10 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +694131000168104 Leukosilk (1024) 5 cm x 5 m tape, 1 roll, carton 694121000168102 Leukosilk (1024) 5 cm x 5 m tape, 1 roll 694111000168109 Leukosilk (1024) 5 cm x 5 m tape 19611000168105 Leukosilk (1024) 19611000168105 Leukosilk (1024) 689081000168102 tape plaster adhesive hypoallergenic 5 cm x 5 m tape, 1 roll 689041000168107 tape plaster adhesive hypoallergenic 5 cm x 5 m tape 50731011000036104 tape plaster adhesive hypoallergenic +865171000168106 Amitriptyline (CH) 25 mg tablet, 50, blister pack 232124 865161000168100 Amitriptyline (CH) 25 mg tablet, 50 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +874171000168102 Bicalutamide (SCP) 50 mg film-coated tablet, 28, blister pack 135852 874161000168108 Bicalutamide (SCP) 50 mg film-coated tablet, 28 874151000168106 Bicalutamide (SCP) 50 mg film-coated tablet 874141000168109 Bicalutamide (SCP) 874141000168109 Bicalutamide (SCP) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +60593011000036105 Zadine 1 mg uncoated tablet, 50, blister pack 18228 56551011000036107 Zadine 1 mg uncoated tablet, 50 53968011000036105 Zadine 1 mg uncoated tablet 53132011000036100 Zadine 53132011000036100 Zadine 63417011000036107 azatadine maleate 1 mg tablet, 50 61951011000036102 azatadine maleate 1 mg tablet 61785011000036102 azatadine +721861000168102 Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials 23130 721851000168104 Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials 721841000168101 Retinofluor 10% 1 g/10 mL injection solution, 10 mL vial 721151000168105 Retinofluor 10% 721151000168105 Retinofluor 10% 653701000168104 fluorescein sodium 1 g/10 mL injection, 10 x 10 mL vials 653681000168102 fluorescein sodium 1 g/10 mL injection, vial 44934011000036102 fluorescein +176991000036105 Gabacor 100 mg hard capsule, 100, blister pack 204498 175241000036102 Gabacor 100 mg hard capsule, 100 173631000036109 Gabacor 100 mg hard capsule 924388011000036109 Gabacor 924388011000036109 Gabacor 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +110731000036103 Finasteride (Pharmacy Choice) 5 mg film-coated tablet, 28, blister pack 161630 108941000036109 Finasteride (Pharmacy Choice) 5 mg film-coated tablet, 28 106691000036105 Finasteride (Pharmacy Choice) 5 mg film-coated tablet 106401000036100 Finasteride (Pharmacy Choice) 106401000036100 Finasteride (Pharmacy Choice) 933243481000036102 finasteride 5 mg tablet, 28 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +796771000168103 Aciclovir (Ascent) 800 mg uncoated tablet, 35, blister pack 202880 796761000168109 Aciclovir (Ascent) 800 mg uncoated tablet, 35 796751000168107 Aciclovir (Ascent) 800 mg uncoated tablet 796651000168103 Aciclovir (Ascent) 796651000168103 Aciclovir (Ascent) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +82878011000036101 Simvastatin (Apo) 20 mg film-coated tablet, 30, bottle 157732 73121011000036106 Simvastatin (Apo) 20 mg film-coated tablet, 30 72946011000036105 Simvastatin (Apo) 20 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +82878011000036101 Simvastatin (Apo) 20 mg film-coated tablet, 30, bottle 223453 73121011000036106 Simvastatin (Apo) 20 mg film-coated tablet, 30 72946011000036105 Simvastatin (Apo) 20 mg film-coated tablet 23041000168107 Simvastatin (Apo) 23041000168107 Simvastatin (Apo) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1071171000168104 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 48, blister pack 208284 1071161000168105 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet, 48 1071091000168104 Cold and Flu Relief PE (Pharmacy Action) film-coated tablet 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 1071081000168102 Cold and Flu Relief PE (Pharmacy Action) 63170011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +86142011000036109 Gabatine 800 mg film-coated tablet, 100, blister pack 161571 85750011000036100 Gabatine 800 mg film-coated tablet, 100 85374011000036107 Gabatine 800 mg film-coated tablet 39179011000036102 Gabatine 39179011000036102 Gabatine 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +1096741000168107 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 100, blister pack 287308 1096731000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 100 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1077431000168104 fexofenadine hydrochloride 180 mg tablet, 100 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +50330011000036107 Hydrocoll (900939/1) 15 cm x 15 cm dressing, 10, carton 49380011000036108 Hydrocoll (900939/1) 15 cm x 15 cm dressing, 10 48692011000036104 Hydrocoll (900939/1) 15 cm x 15 cm dressing 25531000168109 Hydrocoll (900939/1) 25531000168109 Hydrocoll (900939/1) 51353011000036108 dressing hydrocolloid superficial wound moderate exudate 15 cm x 15 cm dressing, 10 50876011000036105 dressing hydrocolloid superficial wound moderate exudate 15 cm x 15 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +1105331000168102 Quetiapine (CH) 100 mg film-coated tablet, 60, blister pack 172838 1105321000168100 Quetiapine (CH) 100 mg film-coated tablet, 60 1105271000168107 Quetiapine (CH) 100 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +61553011000036106 Pain (Chemists' Own) uncoated tablet, 48, blister pack 93836 57475011000036100 Pain (Chemists' Own) uncoated tablet, 48 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +81034011000036108 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 60, blister pack 104391 80475011000036108 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 60 80149011000036108 Carvedilol (Sandoz) 6.25 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +906241000168106 Celecoxib (AS) 200 mg hard capsule, 30, blister pack 206823 906231000168102 Celecoxib (AS) 200 mg hard capsule, 30 906221000168100 Celecoxib (AS) 200 mg hard capsule 906191000168106 Celecoxib (AS) 906191000168106 Celecoxib (AS) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +1114011000168107 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 50, blister pack 179086 1114001000168109 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 50 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043101000168109 olanzapine 10 mg orally disintegrating tablet, 50 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +869831000168104 Eplerenone (AN) 25 mg film-coated tablet, 20, blister pack 231448 869821000168102 Eplerenone (AN) 25 mg film-coated tablet, 20 869811000168109 Eplerenone (AN) 25 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 790421000168106 eplerenone 25 mg tablet, 20 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +912681000168103 Amlocor 10 mg tablet, 30, blister pack 195706 912671000168101 Amlocor 10 mg tablet, 30 912661000168107 Amlocor 10 mg tablet 912571000168100 Amlocor 912571000168100 Amlocor 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +73343011000036101 Tiger Balm Oil liniment, 57 mL, bottle 17098 73137011000036100 Tiger Balm Oil liniment, 57 mL 72931011000036101 Tiger Balm Oil liniment 34401000168100 Tiger Balm Oil 34401000168100 Tiger Balm Oil 73517011000036102 camphor 9% + menthol 10% + cajuput oil 7% + mint oil dementholised 6% + clove bud oil 5% liniment, 57 mL 73380011000036102 camphor 9% + menthol 10% + cajuput oil 7% + mint oil dementholised 6% + clove bud oil 5% liniment 73353011000036103 camphor + menthol + cajuput oil + mint oil dementholised + clove bud oil +653301000168100 Epirubicin Hydrochloride (Act) 50 mg/25 mL concentrated injection, 25 mL vial 146597 653291000168101 Epirubicin Hydrochloride (Act) 50 mg/25 mL concentrated injection, 25 mL vial 653281000168104 Epirubicin Hydrochloride (Act) 50 mg/25 mL concentrated injection, 25 mL vial 47661000168107 Epirubicin Hydrochloride (Act) 47661000168107 Epirubicin Hydrochloride (Act) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +37514011000036107 Vitamin A (Janssen-Cilag) 50 000 units soft capsule, 100, bottle 13331 36782011000036100 Vitamin A (Janssen-Cilag) 50 000 units soft capsule, 100 36013011000036107 Vitamin A (Janssen-Cilag) 50 000 units soft capsule 35951011000036105 Vitamin A (Janssen-Cilag) 35951011000036105 Vitamin A (Janssen-Cilag) 38679011000036100 vitamin A 50 000 units capsule, 100 37920011000036101 vitamin A 50 000 units capsule 37787011000036104 vitamin A +927688011000036106 GA Express 15 powder for oral liquid, 30 x 25 g sachets 927621011000036106 GA Express 15 powder for oral liquid, 30 x 25 g sachets 383921000168108 GA Express 15 powder for oral liquid, 25 g sachet 45121000168101 GA Express 15 45121000168101 GA Express 15 927732011000036109 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 30 x 25 g sachets 383651000168107 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 25 g sachet 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +33607011000036101 Uracol powder for oral liquid, 28 x 4 g sachets 94139 33345011000036109 Uracol powder for oral liquid, 28 x 4 g sachets 33105011000036105 Uracol powder for oral liquid, 4 g sachet 32959011000036106 Uracol 32959011000036106 Uracol 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +828921000168109 Glivec 100 mg hard capsule, 120, blister pack 78442 828911000168102 Glivec 100 mg hard capsule, 120 828801000168105 Glivec 100 mg hard capsule 3084011000036104 Glivec 3084011000036104 Glivec 828901000168100 imatinib 100 mg capsule, 120 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1071011000168108 Codalgin Plus uncoated tablet, 20, blister pack 158230 1071001000168105 Codalgin Plus uncoated tablet, 20 1070991000168109 Codalgin Plus uncoated tablet 53232011000036102 Codalgin Plus 53232011000036102 Codalgin Plus 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +20106011000036100 Aciclovir (GenRx) 800 mg tablet, 35, blister pack 71817 13331011000036108 Aciclovir (GenRx) 800 mg tablet, 35 6616011000036109 Aciclovir (GenRx) 800 mg tablet 3828011000036101 Aciclovir (GenRx) 3828011000036101 Aciclovir (GenRx) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +44661011000036107 Abilify 5 mg uncoated tablet, 56, blister pack 90925 42113011000036104 Abilify 5 mg uncoated tablet, 56 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46875011000036103 aripiprazole 5 mg tablet, 56 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +933231341000036101 Sifrol ER 2.25 mg modified release tablet, 30, blister pack 173901 933225431000036103 Sifrol ER 2.25 mg modified release tablet, 30 933220611000036104 Sifrol ER 2.25 mg modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 933225441000036108 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet, 30 933220621000036106 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet 37716011000036100 pramipexole +993861000168103 Candesartan (Apotex) 4 mg tablet, 7, blister pack 184881 993851000168100 Candesartan (Apotex) 4 mg tablet, 7 993831000168106 Candesartan (Apotex) 4 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 993841000168102 candesartan cilexetil 4 mg tablet, 7 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +69042011000036106 QV Flare Up Bath Oil, 20 mL, bottle 142064 66844011000036109 QV Flare Up Bath Oil, 20 mL 65315011000036104 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 65041011000036105 QV Flare Up Bath Oil 71456011000036105 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil, 20 mL 70017011000036104 benzalkonium chloride 2% + light liquid paraffin 65.1% + triclosan 0.7% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +176951000036101 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack, blister pack 203692 175181000036104 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 172661000036105 Rosuzet Composite Pack 3589011000036101 Ezetrol 175191000036102 ezetimibe 10 mg tablet [30] (&) rosuvastatin 20 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +176951000036101 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack, blister pack 203692 175181000036104 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack 173241000036101 Rosuvastatin (MSD) 20 mg film-coated tablet 172661000036105 Rosuzet Composite Pack 172631000036104 Rosuvastatin (MSD) 175191000036102 ezetimibe 10 mg tablet [30] (&) rosuvastatin 20 mg tablet [30], 1 pack 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +936061000168105 Quinapril (Chemmart) 5 mg film-coated tablet, 30, blister pack 133224 936051000168108 Quinapril (Chemmart) 5 mg film-coated tablet, 30 936041000168106 Quinapril (Chemmart) 5 mg film-coated tablet 936031000168102 Quinapril (Chemmart) 936031000168102 Quinapril (Chemmart) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +1113851000168103 Quetiapine (Terry White Chemists) 150 mg film-coated tablet, 60, blister pack 166062 1113841000168100 Quetiapine (Terry White Chemists) 150 mg film-coated tablet, 60 1113831000168109 Quetiapine (Terry White Chemists) 150 mg film-coated tablet 491000036108 Quetiapine (Terry White Chemists) 491000036108 Quetiapine (Terry White Chemists) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +45741000036104 Simipex 250 microgram tablet, 100, blister pack 172018 43061000036101 Simipex 250 microgram tablet, 100 41321000036108 Simipex 250 microgram tablet 40201000036100 Simipex 40201000036100 Simipex 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +929063011000036100 Valaciclovir (GA) 500 mg film-coated tablet, 42, blister pack 162728 928424011000036100 Valaciclovir (GA) 500 mg film-coated tablet, 42 927971011000036109 Valaciclovir (GA) 500 mg film-coated tablet 927808011000036104 Valaciclovir (GA) 927808011000036104 Valaciclovir (GA) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +11981000036100 Carvedilol (GN) 6.25 mg uncoated tablet, 60, blister pack 152438 6701000036101 Carvedilol (GN) 6.25 mg uncoated tablet, 60 1871000036108 Carvedilol (GN) 6.25 mg uncoated tablet 1091000036101 Carvedilol (GN) 1091000036101 Carvedilol (GN) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +39351000036104 Fampyra 10 mg modified release tablet, 56, bottle 170002 35811000036107 Fampyra 10 mg modified release tablet, 56 32951000036109 Fampyra 10 mg modified release tablet 32161000036109 Fampyra 32161000036109 Fampyra 35821000036100 fampridine 10 mg modified release tablet, 56 32961000036107 fampridine 10 mg modified release tablet 39411000036108 fampridine +985291000168107 Advil Mini Caps 200 mg sugar coated tablet, 12, blister pack 104222 985281000168109 Advil Mini Caps 200 mg sugar coated tablet, 12 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1122371000168100 Influvac Tetra 2018 with 25 mm Needle injection suspension, 10 x 0.5 mL syringes 292238 1122361000168106 Influvac Tetra 2018 with 25 mm Needle injection suspension, 10 x 0.5 mL syringes 1122331000168103 Influvac Tetra 2018 with 25 mm Needle injection suspension, 0.5 mL syringe 1120931000168101 Influvac Tetra 2018 1120931000168101 Influvac Tetra 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +891071000168105 Candesartan HCTZ 32/12.5 (GXP) uncoated tablet, 30, bottle 253592 881591000168102 Candesartan HCTZ 32/12.5 (GXP) uncoated tablet, 30 881581000168100 Candesartan HCTZ 32/12.5 (GXP) uncoated tablet 881571000168103 Candesartan HCTZ 32/12.5 (GXP) 881571000168103 Candesartan HCTZ 32/12.5 (GXP) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +981021000168104 Twinrix injection suspension, 1 mL vial 140574 981011000168106 Twinrix injection suspension, 1 mL vial 980991000168107 Twinrix injection suspension, 1 mL vial 73697011000036105 Twinrix 73697011000036105 Twinrix 981001000168108 hepatitis A + hepatitis B adult vaccine injection, 1 mL vial 980981000168109 hepatitis A + hepatitis B adult vaccine injection, 1 mL vial 824501000168100 hepatitis A + hepatitis B vaccine +20451011000036103 Baclohexal 25 mg tablet, 100, bottle 78110 13654011000036102 Baclohexal 25 mg tablet, 100 6937011000036104 Baclohexal 25 mg tablet 3102011000036100 Baclohexal 3102011000036100 Baclohexal 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +655471000168104 Ondansetron ODT (AN) 4 mg orally disintegrating tablet, 10, blister pack 196807 655461000168105 Ondansetron ODT (AN) 4 mg orally disintegrating tablet, 10 655431000168102 Ondansetron ODT (AN) 4 mg orally disintegrating tablet 655421000168100 Ondansetron ODT (AN) 655421000168100 Ondansetron ODT (AN) 69111000036108 ondansetron 4 mg orally disintegrating tablet, 10 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +87701011000036102 Carvedilol (Apo) 6.25 mg film-coated tablet, 60, blister pack 123828 87414011000036109 Carvedilol (Apo) 6.25 mg film-coated tablet, 60 87296011000036101 Carvedilol (Apo) 6.25 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +19437011000036107 Aredia (4 x 15 mg vials, 4 x 5 mL inert diluent ampoules), 1 pack, composite pack 53887 12719011000036109 Aredia (4 x 15 mg vials, 4 x 5 mL inert diluent ampoules), 1 pack 639031000168108 Aredia (inert substance) diluent, 5 mL ampoule 36891000168104 Aredia 36891000168104 Aredia 27310011000036100 pamidronate disodium 15 mg injection [4 vials] (&) inert substance diluent [4 x 5 mL ampoules], 1 pack 636941000168108 inert substance diluent, 5 mL ampoule 21220011000036103 inert substance +19437011000036107 Aredia (4 x 15 mg vials, 4 x 5 mL inert diluent ampoules), 1 pack, composite pack 53887 12719011000036109 Aredia (4 x 15 mg vials, 4 x 5 mL inert diluent ampoules), 1 pack 5979011000036105 Aredia (pamidronate disodium 15 mg) powder for injection, 15 mg vial 36891000168104 Aredia 36891000168104 Aredia 27310011000036100 pamidronate disodium 15 mg injection [4 vials] (&) inert substance diluent [4 x 5 mL ampoules], 1 pack 22663011000036101 pamidronate disodium 15 mg injection, vial 21339011000036101 pamidronate disodium +933213841000036100 Ciprofloxacin (IPC) 500 mg film-coated tablet, 20, blister pack 153184 933201871000036109 Ciprofloxacin (IPC) 500 mg film-coated tablet, 20 933194821000036108 Ciprofloxacin (IPC) 500 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 933199821000036109 ciprofloxacin 500 mg tablet, 20 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +110571000036105 Midazolam (Alphapharm) 5 mg/mL injection solution, 10 x 1 mL ampoules 160207 109151000036101 Midazolam (Alphapharm) 5 mg/mL injection solution, 10 x 1 mL ampoules 107171000036103 Midazolam (Alphapharm) 5 mg/mL injection solution, ampoule 106461000036101 Midazolam (Alphapharm) 106461000036101 Midazolam (Alphapharm) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +768961000168106 Esomeprazole (Sandoz) 20 mg enteric tablet, 14, blister pack 768951000168109 Esomeprazole (Sandoz) 20 mg enteric tablet, 14 704641000168107 Esomeprazole (Sandoz) 20 mg enteric tablet 704101000168103 Esomeprazole (Sandoz) 704101000168103 Esomeprazole (Sandoz) 700031831000036109 esomeprazole 20 mg enteric tablet, 14 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +60158011000036101 Dry Tickly Cough Medicine (Pharmacy Choice) 1 mg/mL oral liquid solution, 200 mL, bottle 130024 56117011000036102 Dry Tickly Cough Medicine (Pharmacy Choice) 1 mg/mL oral liquid solution, 200 mL 53796011000036100 Dry Tickly Cough Medicine (Pharmacy Choice) 1 mg/mL oral liquid solution 61701000168101 Dry Tickly Cough Medicine (Pharmacy Choice) 61701000168101 Dry Tickly Cough Medicine (Pharmacy Choice) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +719711000168104 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 224623 719701000168102 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 719641000168105 Omnitrope (for Surepal-10) 10 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 927338011000036108 somatropin 10 mg/1.5 mL injection, 5 x 1.5 mL cartridges 23613011000036108 somatropin 10 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +854661000168102 Agpen 1 g powder for injection, 5 vials 203937 854651000168104 Agpen 1 g powder for injection, 5 vials 854641000168101 Agpen 1 g powder for injection, vial 854601000168103 Agpen 854601000168103 Agpen 28099011000036101 ampicillin 1 g injection, 5 vials 23407011000036100 ampicillin 1 g injection, vial 21671011000036106 ampicillin +1006711000168105 Ibuprofen (Apo) 400 mg film-coated tablet, 20, blister pack 289218 1006701000168107 Ibuprofen (Apo) 400 mg film-coated tablet, 20 1006671000168106 Ibuprofen (Apo) 400 mg film-coated tablet 1006661000168100 Ibuprofen (Apo) 1006661000168100 Ibuprofen (Apo) 985941000168109 ibuprofen 400 mg tablet, 20 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +1062421000168107 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 24, blister pack 196533 1062411000168100 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 24 1062341000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +938161000168105 Tevatiapine XR 200 mg modified release tablet, 60, blister pack 249772 938151000168108 Tevatiapine XR 200 mg modified release tablet, 60 938141000168106 Tevatiapine XR 200 mg modified release tablet 938101000168109 Tevatiapine XR 938101000168109 Tevatiapine XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +882531000168108 Spedra 200 mg uncoated tablet, 1, blister pack 228476 882521000168105 Spedra 200 mg uncoated tablet, 1 882501000168101 Spedra 200 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882511000168103 avanafil 200 mg tablet, 1 882491000168108 avanafil 200 mg tablet 882091000168102 avanafil +1120201000168102 Tiapine XR 400 mg modified release tablet, 60, blister pack 199890 1120191000168100 Tiapine XR 400 mg modified release tablet, 60 1120181000168103 Tiapine XR 400 mg modified release tablet 1119801000168104 Tiapine XR 1119801000168104 Tiapine XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +60285011000036100 Panadol 500 mg film-coated tablet, 2, blister pack 13591 56244011000036100 Panadol 500 mg film-coated tablet, 2 54012011000036102 Panadol 500 mg film-coated tablet 17311000168105 Panadol 17311000168105 Panadol 63262011000036107 paracetamol 500 mg tablet, 2 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +869751000168100 Atomerra 40 mg hard capsule, 14, blister pack 234814 869741000168102 Atomerra 40 mg hard capsule, 14 869711000168101 Atomerra 40 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830671000168100 atomoxetine 40 mg capsule, 14 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +933213821000036108 Ciprofloxacin (IPC) 500 mg film-coated tablet, 100, blister pack 153184 933201841000036102 Ciprofloxacin (IPC) 500 mg film-coated tablet, 100 933194821000036108 Ciprofloxacin (IPC) 500 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 933199791000036103 ciprofloxacin 500 mg tablet, 100 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +889021000168109 Bindozef 2 g powder for injection, 1 vial 170375 889011000168102 Bindozef 2 g powder for injection, 1 vial 889001000168100 Bindozef 2 g powder for injection, 2 g vial 888961000168107 Bindozef 888961000168107 Bindozef 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +972551000168104 Lyzalon 25 mg hard capsule, 14, blister pack 224435 972201000168100 Lyzalon 25 mg hard capsule, 14 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1077361000168102 Fexo (Amcal) 180 mg film-coated tablet, 70, blister pack 223782 1077351000168104 Fexo (Amcal) 180 mg film-coated tablet, 70 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 1076321000168109 fexofenadine hydrochloride 180 mg tablet, 70 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +69616011000036105 Mylanta 2go Rolltab Peppermint chewable tablet, 60, wrapping 75879 67415011000036106 Mylanta 2go Rolltab Peppermint chewable tablet, 60 65653011000036101 Mylanta 2go Rolltab Peppermint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71951011000036103 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 60 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +59839011000036102 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 100, blister pack 114919 55801011000036100 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 100 53680011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet 29011000168105 Paracetamol Extra Tabsule (Guardian) 29011000168105 Paracetamol Extra Tabsule (Guardian) 63138011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 100 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +822591000168104 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 53569 822581000168102 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack 700151000168108 BCG Vaccine (Sanofi Pasteur) (inert substance) diluent, 1.5 mL vial 73686011000036106 BCG Vaccine (Sanofi Pasteur) 73686011000036106 BCG Vaccine (Sanofi Pasteur) 822571000168100 Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack 646331000168101 inert substance diluent, 1.5 mL vial 21220011000036103 inert substance +822591000168104 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 53569 822581000168102 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack 822561000168106 BCG Vaccine (Sanofi Pasteur) (Mycobacterium bovis (BCG) live vaccine) powder for injection, 1.5 mg vial 73686011000036106 BCG Vaccine (Sanofi Pasteur) 73686011000036106 BCG Vaccine (Sanofi Pasteur) 822571000168100 Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack 822551000168109 Mycobacterium bovis (BCG) live vaccine injection, vial 822541000168107 Mycobacterium bovis (BCG) live vaccine +61630011000036107 Chesty Cough (Guardian) oral liquid solution, 200 mL, bottle 96917 57552011000036100 Chesty Cough (Guardian) oral liquid solution, 200 mL 54346011000036107 Chesty Cough (Guardian) oral liquid solution, 10 mL 53387011000036104 Chesty Cough (Guardian) 53387011000036104 Chesty Cough (Guardian) 63947011000036103 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 200 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +743201000168103 Morphine MR (AN) 60 mg modified release tablet, 60, blister pack 225427 743191000168101 Morphine MR (AN) 60 mg modified release tablet, 60 743141000168109 Morphine MR (AN) 60 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 35167011000036108 morphine sulfate pentahydrate 60 mg modified release tablet, 60 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +19172011000036109 Valpro 200 mg enteric tablet, 100, blister pack 46379 12470011000036103 Valpro 200 mg enteric tablet, 100 5252011000036101 Valpro 200 mg enteric tablet 4239011000036101 Valpro 4239011000036101 Valpro 27139011000036107 valproate sodium 200 mg enteric tablet, 100 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +970221000168108 Lypralin 25 mg hard capsule, 21, blister pack 235874 970211000168101 Lypralin 25 mg hard capsule, 21 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 854731000168102 pregabalin 25 mg capsule, 21 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +60527011000036109 Demazin PE Cold and Flu Night-Time Relief uncoated tablet, 24, blister pack 152029 56485011000036108 Demazin PE Cold and Flu Night-Time Relief uncoated tablet, 24 53938011000036100 Demazin PE Cold and Flu Night-Time Relief uncoated tablet 24251000168104 Demazin PE Cold and Flu Night-Time Relief 24251000168104 Demazin PE Cold and Flu Night-Time Relief 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +846001000168104 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 83093 845991000168100 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 845961000168107 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 73692011000036108 NeisVac-C 73692011000036108 NeisVac-C 845931000168104 meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes 845881000168109 meningococcal C conjugate vaccine injection, 0.5 mL syringe 826391000168106 meningococcal C conjugate vaccine +908111000168101 Celecoxib (Ascent) 200 mg capsule, 60, blister pack 204617 908101000168104 Celecoxib (Ascent) 200 mg capsule, 60 907951000168102 Celecoxib (Ascent) 200 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +925391000168105 Androgel 1% (25 mg/2.5 g) gel, 2 x 2.5 g sachets 96122 925381000168107 Androgel 1% (25 mg/2.5 g) gel, 2 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46943011000036105 testosterone 1% (25 mg/2.5 g) gel, 2 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +972391000168101 Lyzalon 150 mg hard capsule, 14, bottle 224425 972381000168104 Lyzalon 150 mg hard capsule, 14 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 855091000168101 pregabalin 150 mg capsule, 14 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +44027011000036102 Gentamicin (DBL) 60 mg/1.5 mL injection solution, 5 x 1.5 mL ampoules 47267 41516011000036100 Gentamicin (DBL) 60 mg/1.5 mL injection solution, 5 x 1.5 mL ampoules 40030011000036103 Gentamicin (DBL) 60 mg/1.5 mL injection solution, 1.5 mL ampoule 4253011000036100 Gentamicin (DBL) 4253011000036100 Gentamicin (DBL) 46355011000036104 gentamicin 60 mg/1.5 mL injection, 5 x 1.5 mL ampoules 45101011000036100 gentamicin 60 mg/1.5 mL injection, ampoule 21397011000036102 gentamicin +17983011000036100 Cyprohexal 100 mg uncoated tablet, 50, blister pack 107331 11371011000036104 Cyprohexal 100 mg uncoated tablet, 50 5273011000036106 Cyprohexal 100 mg uncoated tablet 4006011000036109 Cyprohexal 4006011000036109 Cyprohexal 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +19414011000036106 Humatrope (1 x 12 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack, composite pack 53365 12698011000036105 Humatrope (1 x 12 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack 639101000168102 Humatrope (inert substance) diluent, 3.15 mL syringe 4137011000036105 Humatrope 4137011000036105 Humatrope 27292011000036106 somatropin 12 mg injection [1 cartridge] (&) inert substance diluent [3.15 mL syringe], 1 pack 639091000168107 inert substance diluent, 3.15 mL syringe 21220011000036103 inert substance +19414011000036106 Humatrope (1 x 12 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack, composite pack 53365 12698011000036105 Humatrope (1 x 12 mg cartridge, 1 x 3.15 mL inert diluent syringe), 1 pack 5226011000036101 Humatrope (somatropin 12 mg) powder for injection, 12 mg cartridge 4137011000036105 Humatrope 4137011000036105 Humatrope 27292011000036106 somatropin 12 mg injection [1 cartridge] (&) inert substance diluent [3.15 mL syringe], 1 pack 23496011000036101 somatropin 12 mg injection, cartridge 21295011000036100 somatropin +50381011000036106 Peg (7425) 15 cm x 1.3 m bandage, 1, carton 49511011000036100 Peg (7425) 15 cm x 1.3 m bandage, 1 48695011000036107 Peg (7425) 15 cm x 1.3 m bandage 38661000168109 Peg (7425) 38661000168109 Peg (7425) 51461011000036105 bandage retention cohesive heavy 15 cm x 1.3 m bandage, 1 50968011000036109 bandage retention cohesive heavy 15 cm x 1.3 m bandage 50704011000036109 bandage retention cohesive heavy +44496011000036102 Tamiflu 75 mg hard capsule, 10, blister pack 76017 41951011000036105 Tamiflu 75 mg hard capsule, 10 40283011000036106 Tamiflu 75 mg hard capsule 39602011000036100 Tamiflu 39602011000036100 Tamiflu 46735011000036102 oseltamivir 75 mg capsule, 10 45290011000036106 oseltamivir 75 mg capsule 44916011000036104 oseltamivir +779771000168102 Fentanyl (Apo) 100 microgram/hour patch, 7, sachet 152575 779761000168108 Fentanyl (Apo) 100 microgram/hour patch, 7 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236301000036106 fentanyl 100 microgram/hour patch, 7 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +50304011000036105 Steripaste (3610) 7.5 cm x 6 m bandage, 1, carton 49304011000036102 Steripaste (3610) 7.5 cm x 6 m bandage, 1 48469011000036105 Steripaste (3610) 7.5 cm x 6 m bandage 32841000168108 Steripaste (3610) 32841000168108 Steripaste (3610) 51290011000036104 bandage zinc paste 7.5 cm x 6 m bandage, 1 50819011000036105 bandage zinc paste 7.5 cm x 6 m bandage 50700011000036104 bandage zinc paste +69374011000036100 Microshield-2 2% solution, 500 mL, bottle 30943 67174011000036101 Microshield-2 2% solution, 500 mL 65559011000036105 Microshield-2 2% solution 23741000168105 Microshield-2 23741000168105 Microshield-2 71736011000036101 chlorhexidine gluconate 2% solution, 500 mL 70177011000036101 chlorhexidine gluconate 2% solution 21404011000036101 chlorhexidine +777601000168106 Karvea 150 mg film-coated tablet, 7, blister pack 101706 777591000168104 Karvea 150 mg film-coated tablet, 7 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 738151000168103 irbesartan 150 mg tablet, 7 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +869601000168105 Atomerra 25 mg hard capsule, 56, blister pack 234813 869591000168103 Atomerra 25 mg hard capsule, 56 869521000168100 Atomerra 25 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830501000168109 atomoxetine 25 mg capsule, 56 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +84272011000036104 Dicarz 6.25 mg film-coated tablet, 60, blister pack 124079 83965011000036102 Dicarz 6.25 mg film-coated tablet, 60 83601011000036101 Dicarz 6.25 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +741231000168106 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 5 x 0.25 mL injection devices 231046 741221000168108 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 5 x 0.25 mL injection devices 741171000168103 Bemfola 150 units (11 microgram)/0.25 mL injection solution, 0.25 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741211000168101 follitropin alfa 150 units (11 microgram)/0.25 mL injection, 5 x 0.25 mL injection devices 741161000168109 follitropin alfa 150 units (11 microgram)/0.25 mL injection, injection device 21352011000036107 follitropin alfa +50623011000036108 Seroquel XR 400 mg modified release tablet, 60, blister pack 138922 49649011000036103 Seroquel XR 400 mg modified release tablet, 60 48798011000036109 Seroquel XR 400 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +19146011000036109 Clopixol Depot 200 mg/mL injection solution, 5 x 1 mL ampoules 45082 12445011000036106 Clopixol Depot 200 mg/mL injection solution, 5 x 1 mL ampoules 5365011000036106 Clopixol Depot 200 mg/mL injection solution, ampoule 63311000168100 Clopixol Depot 63311000168100 Clopixol Depot 27124011000036109 zuclopenthixol decanoate 200 mg/mL injection, 5 x 1 mL ampoules 22490011000036109 zuclopenthixol decanoate 200 mg/mL injection, ampoule 21576011000036106 zuclopenthixol decanoate +929663011000036105 Intanza 2011 injection suspension, 1 x 0.1 mL syringe 150130 929499011000036108 Intanza 2011 injection suspension, 1 x 0.1 mL syringe 929398011000036109 Intanza 2011 injection suspension, 0.1 mL syringe 51021000168101 Intanza 2011 51021000168101 Intanza 2011 929751011000036105 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.1 mL syringe 929725011000036106 influenza trivalent adult vaccine 2011-2012 injection, 0.1 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +933214141000036109 Tramadol Hydrochloride SR (GenRx) 100 mg modified release tablet, 20, blister pack 154404 933202101000036102 Tramadol Hydrochloride SR (GenRx) 100 mg modified release tablet, 20 933195041000036105 Tramadol Hydrochloride SR (GenRx) 100 mg modified release tablet 50941000168101 Tramadol Hydrochloride SR (GenRx) 50941000168101 Tramadol Hydrochloride SR (GenRx) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +110411000036103 Mepilex Border Ag 10 cm x 10 cm dressing, 5, carton 108681000036107 Mepilex Border Ag 10 cm x 10 cm dressing, 5 107541000036101 Mepilex Border Ag 10 cm x 10 cm dressing 111851000036106 Mepilex Border Ag 111851000036106 Mepilex Border Ag 108671000036105 dressing foam with silicone and silver 10 cm x 10 cm dressing, 5 107451000036102 dressing foam with silicone and silver 10 cm x 10 cm dressing 111231000036102 dressing foam with silicone and silver +19371011000036107 MS Contin 5 mg modified release tablet, 20, blister pack 51760 12658011000036101 MS Contin 5 mg modified release tablet, 20 4460011000036102 MS Contin 5 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 27265011000036100 morphine sulfate pentahydrate 5 mg modified release tablet, 20 22621011000036108 morphine sulfate pentahydrate 5 mg modified release tablet 21252011000036100 morphine +933731000168106 Centevo 200/50/200 mg film-coated tablet, 90, bottle 238859 933721000168108 Centevo 200/50/200 mg film-coated tablet, 90 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933711000168101 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 90 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +43624011000036100 Imigran FDT 100 mg film-coated tablet, 4, blister pack 106715 41143011000036105 Imigran FDT 100 mg film-coated tablet, 4 39948011000036108 Imigran FDT 100 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 46116011000036106 sumatriptan 100 mg tablet, 4 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +984931000168104 Rhinocort Aqueous 32 microgram/actuation nasal spray, 120 actuations, pump pack 75655 984921000168102 Rhinocort Aqueous 32 microgram/actuation nasal spray, 120 actuations 984911000168109 Rhinocort Aqueous 32 microgram/actuation nasal spray, actuation 31911000168108 Rhinocort Aqueous 31911000168108 Rhinocort Aqueous 75506011000036106 budesonide 32 microgram/actuation nasal spray, 120 actuations 75105011000036105 budesonide 32 microgram/actuation nasal spray, actuation 21307011000036104 budesonide +77224011000036104 Irinotecan Hydrochloride Trihydrate (Actavis) 100 mg/5 mL concentrated injection, 5 mL vial 144985 76640011000036105 Irinotecan Hydrochloride Trihydrate (Actavis) 100 mg/5 mL concentrated injection, 5 mL vial 76082011000036107 Irinotecan Hydrochloride Trihydrate (Actavis) 100 mg/5 mL concentrated injection, 5 mL vial 76020011000036103 Irinotecan Hydrochloride Trihydrate (Actavis) 76020011000036103 Irinotecan Hydrochloride Trihydrate (Actavis) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +68783011000036109 Chlorhexidine Gluconate Surgical Scrub (Orion) 4% application, 500 mL, bottle 11331 66609011000036109 Chlorhexidine Gluconate Surgical Scrub (Orion) 4% application, 500 mL 65456011000036105 Chlorhexidine Gluconate Surgical Scrub (Orion) 4% application 60971000168101 Chlorhexidine Gluconate Surgical Scrub (Orion) 60971000168101 Chlorhexidine Gluconate Surgical Scrub (Orion) 71331011000036105 chlorhexidine gluconate 4% application, 500 mL 69954011000036105 chlorhexidine gluconate 4% application 21404011000036101 chlorhexidine +1077041000168103 Atomoxetine (AS) 60 mg hard capsule, 28, blister pack 238363 1077031000168107 Atomoxetine (AS) 60 mg hard capsule, 28 1077001000168100 Atomoxetine (AS) 60 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +829401000168100 Metex XR-1000 1 g modified release tablet, 100, blister pack 232639 829391000168102 Metex XR-1000 1 g modified release tablet, 100 829281000168109 Metex XR-1000 1 g modified release tablet 829271000168106 Metex XR-1000 829271000168106 Metex XR-1000 829381000168100 metformin hydrochloride 1 g modified release tablet, 100 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +819941000168100 Adin 10 microgram/actuation nasal spray, 6 mL, pump pack 99860 819931000168109 Adin 10 microgram/actuation nasal spray, 6 mL 819881000168104 Adin 10 microgram/actuation nasal spray, actuation 816101000168106 Adin 816101000168106 Adin 819921000168106 desmopressin acetate 10 microgram/actuation nasal spray, 6 mL 22776011000036108 desmopressin acetate 10 microgram/actuation nasal spray, actuation 21750011000036107 desmopressin +779611000168103 Fentanyl (Apo) 100 microgram/hour patch, 4, sachet 152575 779601000168101 Fentanyl (Apo) 100 microgram/hour patch, 4 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236271000036108 fentanyl 100 microgram/hour patch, 4 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +1005021000168107 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 52398 1005011000168100 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 1004991000168109 Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule 711391000168105 Naropin 1% 711391000168105 Naropin 1% 1005001000168103 ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules 1004981000168106 ropivacaine hydrochloride 100 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +18331000036106 Glucobete 850 mg film-coated tablet, 100, bottle 180433 16891000036103 Glucobete 850 mg film-coated tablet, 100 15761000036105 Glucobete 850 mg film-coated tablet 15181000036104 Glucobete 15181000036104 Glucobete 16901000036102 metformin hydrochloride 850 mg tablet, 100 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +984951000168105 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 60, blister pack 200606 984941000168108 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 60 984841000168104 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet 984781000168100 Cetirizine (Blooms The Chemist) 984781000168100 Cetirizine (Blooms The Chemist) 63288011000036107 cetirizine hydrochloride 10 mg tablet, 60 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +20140011000036109 Zavedos 10 mg hard capsule, 1, bottle 73517 13364011000036102 Zavedos 10 mg hard capsule, 1 6649011000036108 Zavedos 10 mg hard capsule 4217011000036101 Zavedos 4217011000036101 Zavedos 27719011000036105 idarubicin hydrochloride 10 mg capsule, 1 23054011000036108 idarubicin hydrochloride 10 mg capsule 21720011000036108 idarubicin +822911000168104 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 146776 822901000168102 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 822881000168104 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 73722011000036105 Rotarix 73722011000036105 Rotarix 822891000168101 rotavirus live vaccine oral liquid, 1.5 mL syringe 822871000168102 rotavirus live vaccine oral liquid, 1.5 mL syringe 822861000168108 rotavirus live vaccine +687461000168106 Memantine (RBX) 20 mg film-coated tablet, 28, blister pack 201742 687451000168109 Memantine (RBX) 20 mg film-coated tablet, 28 687441000168107 Memantine (RBX) 20 mg film-coated tablet 687401000168105 Memantine (RBX) 687401000168105 Memantine (RBX) 83496011000036105 memantine hydrochloride 20 mg tablet, 28 83436011000036100 memantine hydrochloride 20 mg tablet 37759011000036103 memantine +926926011000036104 Resolve Jock-itch 2% cream, 25 g, tube 90588 926320011000036107 Resolve Jock-itch 2% cream, 25 g 925759011000036101 Resolve Jock-itch 2% cream 925550011000036106 Resolve Jock-itch 925550011000036106 Resolve Jock-itch 922630011000036104 miconazole nitrate 2% cream, 25 g 22195011000036104 miconazole nitrate 2% cream 21454011000036108 miconazole +87718011000036109 Galantyl 24 mg modified release capsule, 28, bottle 157937 87455011000036101 Galantyl 24 mg modified release capsule, 28 87318011000036108 Galantyl 24 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 28250011000036107 galantamine 24 mg modified release capsule, 28 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +994271000168106 Lansoprazole (Apo) 15 mg enteric capsule, 30, strip pack 159346 961451000168101 Lansoprazole (Apo) 15 mg enteric capsule, 30 961411000168102 Lansoprazole (Apo) 15 mg enteric capsule 52481000168101 Lansoprazole (Apo) 52481000168101 Lansoprazole (Apo) 27464011000036103 lansoprazole 15 mg enteric capsule, 30 22811011000036107 lansoprazole 15 mg enteric capsule 21491011000036101 lansoprazole +993461000168101 Lyrica 200 mg hard capsule, 60, bottle 99534 993261000168102 Lyrica 200 mg hard capsule, 60 993151000168106 Lyrica 200 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855321000168100 pregabalin 200 mg capsule, 60 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +889061000168104 Calcitriol (KP) 0.25 microgram soft capsule, 100, blister pack 232769 889051000168101 Calcitriol (KP) 0.25 microgram soft capsule, 100 889041000168103 Calcitriol (KP) 0.25 microgram soft capsule 889031000168107 Calcitriol (KP) 889031000168107 Calcitriol (KP) 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +50212011000036109 Flexidress (650941) 10 cm x 9.1 m bandage, 1, carton 49299011000036109 Flexidress (650941) 10 cm x 9.1 m bandage, 1 48551011000036105 Flexidress (650941) 10 cm x 9.1 m bandage 35261000168101 Flexidress (650941) 35261000168101 Flexidress (650941) 51285011000036109 bandage zinc paste 10 cm x 9.1 m bandage, 1 50814011000036109 bandage zinc paste 10 cm x 9.1 m bandage 50700011000036104 bandage zinc paste +18101011000036109 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (GenRx) uncoated tablet, 30, blister pack 127119 11832011000036109 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (GenRx) uncoated tablet, 30 5418011000036107 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (GenRx) uncoated tablet 19441000168107 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (GenRx) 19441000168107 Perindopril Erbumine/Indapamide Hemihydrate 4/1.25 (GenRx) 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +822111000168101 Paclitaxel (Agila) 30 mg/5 mL concentrated injection, 5 mL vial 176335 822101000168104 Paclitaxel (Agila) 30 mg/5 mL concentrated injection, 5 mL vial 822091000168109 Paclitaxel (Agila) 30 mg/5 mL concentrated injection, 5 mL vial 822081000168106 Paclitaxel (Agila) 822081000168106 Paclitaxel (Agila) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +20414011000036109 Baclo 25 mg tablet, 100, bottle 77568 13621011000036101 Baclo 25 mg tablet, 100 6904011000036102 Baclo 25 mg tablet 4403011000036109 Baclo 4403011000036109 Baclo 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +21031011000036101 Etoposide (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 96641 14176011000036109 Etoposide (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 7456011000036100 Etoposide (Ebewe) 100 mg/5 mL concentrated injection, 5 mL vial 3594011000036103 Etoposide (Ebewe) 3594011000036103 Etoposide (Ebewe) 28192011000036100 etoposide 100 mg/5 mL injection, 5 mL vial 23503011000036101 etoposide 100 mg/5 mL injection, vial 21469011000036104 etoposide +30611011000036107 Epilim Liquid Sugar Free 200 mg/5 mL oral liquid, 300 mL, bottle 74711 30589011000036104 Epilim Liquid Sugar Free 200 mg/5 mL oral liquid, 300 mL 6745011000036100 Epilim Liquid Sugar Free 200 mg/5 mL oral liquid, 5 mL 15891000168100 Epilim Liquid 15891000168100 Epilim Liquid 30615011000036109 valproate sodium 200 mg/5 mL oral liquid, 300 mL 23088011000036109 valproate sodium 200 mg/5 mL oral liquid 21225011000036107 valproate +912861000168108 Candesartan HCTZ 32/25 (DRLA) uncoated tablet, 30, blister pack 198389 912851000168106 Candesartan HCTZ 32/25 (DRLA) uncoated tablet, 30 912801000168107 Candesartan HCTZ 32/25 (DRLA) uncoated tablet 912791000168106 Candesartan HCTZ 32/25 (DRLA) 912791000168106 Candesartan HCTZ 32/25 (DRLA) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +11901000036106 Venlafaxine XR (Apo) 75 mg modified release capsule, 28, blister pack 151878 6621000036104 Venlafaxine XR (Apo) 75 mg modified release capsule, 28 3821000036105 Venlafaxine XR (Apo) 75 mg modified release capsule 56851000168105 Venlafaxine XR (Apo) 56851000168105 Venlafaxine XR (Apo) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +59773011000036100 Fiorinal uncoated tablet, 4, blister pack 10205 55678011000036107 Fiorinal uncoated tablet, 4 53701011000036107 Fiorinal uncoated tablet 20121000168105 Fiorinal 20121000168105 Fiorinal 63090011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg tablet, 4 61853011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +935901000168102 Zolpidem (Apo) 5 mg film-coated tablet, 7, blister pack 127151 935891000168101 Zolpidem (Apo) 5 mg film-coated tablet, 7 935881000168104 Zolpidem (Apo) 5 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 926171000168101 zolpidem tartrate 5 mg tablet, 7 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +923701000168102 Caltrate Vitamin D 25 microgram (1000 units) soft capsule, 60, bottle 179943 923691000168102 Caltrate Vitamin D 25 microgram (1000 units) soft capsule, 60 923681000168100 Caltrate Vitamin D 25 microgram (1000 units) soft capsule 923671000168103 Caltrate Vitamin D 923671000168103 Caltrate Vitamin D 86409011000036109 colecalciferol 25 microgram (1000 units) capsule, 60 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +19763011000036102 Xanax 250 microgram uncoated tablet, 50, blister pack 62558 13023011000036106 Xanax 250 microgram uncoated tablet, 50 6310011000036101 Xanax 250 microgram uncoated tablet 3527011000036101 Xanax 3527011000036101 Xanax 28280011000036103 alprazolam 250 microgram tablet, 50 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +655791000168106 Cyproterone Acetate (AN) 50 mg uncoated tablet, 20, bottle 184227 655711000168102 Cyproterone Acetate (AN) 50 mg uncoated tablet, 20 655701000168100 Cyproterone Acetate (AN) 50 mg uncoated tablet 655531000168103 Cyproterone Acetate (AN) 655531000168103 Cyproterone Acetate (AN) 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +933231021000036107 Famciclovir (Chemmart) 500 mg film-coated tablet, 16, blister pack 172446 933225091000036105 Famciclovir (Chemmart) 500 mg film-coated tablet, 16 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 933225001000036102 famciclovir 500 mg tablet, 16 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +60801011000036105 Imodium Caplet 2 mg uncoated tablet, 3, blister pack 56001 56757011000036103 Imodium Caplet 2 mg uncoated tablet, 3 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63555011000036104 loperamide hydrochloride 2 mg tablet, 3 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +908571000168100 Celecoxib (Lup) 100 mg hard capsule, 10, blister pack 196184 908561000168106 Celecoxib (Lup) 100 mg hard capsule, 10 908551000168109 Celecoxib (Lup) 100 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +796931000168104 Levetiracetam (Accord) 500 mg film-coated tablet, 60, blister pack 189886 796921000168102 Levetiracetam (Accord) 500 mg film-coated tablet, 60 796911000168109 Levetiracetam (Accord) 500 mg film-coated tablet 796781000168100 Levetiracetam (Accord) 796781000168100 Levetiracetam (Accord) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +915041000168105 Movantik 12.5 mg film-coated tablet, 10, blister pack 232030 915031000168101 Movantik 12.5 mg film-coated tablet, 10 915011000168106 Movantik 12.5 mg film-coated tablet 914871000168108 Movantik 914871000168108 Movantik 915021000168104 naloxegol 12.5 mg tablet, 10 915001000168108 naloxegol 12.5 mg tablet 914881000168106 naloxegol +69025011000036101 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 4 sachets 140597 66827011000036100 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 4 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71442011000036109 paracetamol 1 g powder for oral liquid, 4 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +895601000168105 Betavert 16 mg uncoated tablet, 25, blister pack 212080 895591000168103 Betavert 16 mg uncoated tablet, 25 895561000168105 Betavert 16 mg uncoated tablet 895551000168108 Betavert 895551000168108 Betavert 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +73951000036104 Quetiapine (GA) 200 mg film-coated tablet, 60, blister pack 176719 71641000036109 Quetiapine (GA) 200 mg film-coated tablet, 60 69591000036106 Quetiapine (GA) 200 mg film-coated tablet 69421000036107 Quetiapine (GA) 69421000036107 Quetiapine (GA) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +681701000168107 Esomeprazole (Apotex) 40 mg enteric tablet, 15, blister pack 210843 681691000168107 Esomeprazole (Apotex) 40 mg enteric tablet, 15 681661000168100 Esomeprazole (Apotex) 40 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 681491000168109 esomeprazole 40 mg enteric tablet, 15 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +942411000168100 Glucomet-1000 1 g film-coated tablet, 60, blister pack 147410 942401000168103 Glucomet-1000 1 g film-coated tablet, 60 942351000168105 Glucomet-1000 1 g film-coated tablet 942341000168108 Glucomet-1000 942341000168108 Glucomet-1000 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1105171000168101 Midazolam (AN) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 207247 1105161000168107 Midazolam (AN) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1105131000168104 Midazolam (AN) 5 mg/5 mL injection solution, 5 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +923816011000036107 Sulprix 50 mg tablet, 60, blister pack 156047 923362011000036106 Sulprix 50 mg tablet, 60 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +46061000036106 Temozolomide (Orion) 250 mg hard capsule, 5, bottle 179873 43331000036109 Temozolomide (Orion) 250 mg hard capsule, 5 40921000036103 Temozolomide (Orion) 250 mg hard capsule 40411000036104 Temozolomide (Orion) 40411000036104 Temozolomide (Orion) 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +20382011000036108 Aciclovir (Terry White Chemists) 200 mg tablet, 90, blister pack 76898 13590011000036107 Aciclovir (Terry White Chemists) 200 mg tablet, 90 6873011000036103 Aciclovir (Terry White Chemists) 200 mg tablet 3949011000036101 Aciclovir (Terry White Chemists) 3949011000036101 Aciclovir (Terry White Chemists) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +933214161000036105 Tramadol Hydrochloride SR (GenRx) 200 mg modified release tablet, 20, blister pack 154406 933202121000036107 Tramadol Hydrochloride SR (GenRx) 200 mg modified release tablet, 20 933195061000036106 Tramadol Hydrochloride SR (GenRx) 200 mg modified release tablet 50941000168101 Tramadol Hydrochloride SR (GenRx) 50941000168101 Tramadol Hydrochloride SR (GenRx) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +863161000168104 Amitriptyline (AC) 25 mg tablet, 1000, bottle 232108 863101000168100 Amitriptyline (AC) 25 mg tablet, 1000 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +928909011000036105 Vaclovir 500 mg film-coated tablet, 100, blister pack 153822 928271011000036103 Vaclovir 500 mg film-coated tablet, 100 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +19129011000036103 Lamisil 1% cream, 15 g, tube 43524 12432011000036102 Lamisil 1% cream, 15 g 4669011000036105 Lamisil 1% cream 34081000168103 Lamisil 34081000168103 Lamisil 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +792591000168108 Abisart HCT 300/25 film-coated tablet, 7, bottle 215947 792581000168105 Abisart HCT 300/25 film-coated tablet, 7 98831000036101 Abisart HCT 300/25 film-coated tablet 13081000168109 Abisart HCT 300/25 13081000168109 Abisart HCT 300/25 792571000168107 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 7 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +69659011000036107 Gasbusters 200 mg soft capsule, 12, blister pack 80295 67458011000036105 Gasbusters 200 mg soft capsule, 12 65673011000036103 Gasbusters 200 mg soft capsule 65074011000036109 Gasbusters 65074011000036109 Gasbusters 71986011000036103 simethicone 200 mg capsule, 12 70273011000036107 simethicone 200 mg capsule 69826011000036109 simethicone +929646011000036105 Tensocrepe (36307501) 7.5 cm x 2.3 m bandage, 1, wrapping 929476011000036107 Tensocrepe (36307501) 7.5 cm x 2.3 m bandage, 1 929387011000036107 Tensocrepe (36307501) 7.5 cm x 2.3 m bandage 49171000168103 Tensocrepe (36307501) 49171000168103 Tensocrepe (36307501) 51463011000036106 bandage retention cotton crepe 7.5 cm x 2.3 m bandage, 1 50970011000036103 bandage retention cotton crepe 7.5 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +762381000168101 Bosentan (GenRx) 125 mg film-coated tablet, 60, bottle 222210 762371000168104 Bosentan (GenRx) 125 mg film-coated tablet, 60 762361000168105 Bosentan (GenRx) 125 mg film-coated tablet 762351000168108 Bosentan (GenRx) 762351000168108 Bosentan (GenRx) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +50606011000036107 Celsentri 150 mg film-coated tablet, 90, blister pack 137329 49632011000036109 Celsentri 150 mg film-coated tablet, 90 48792011000036106 Celsentri 150 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51524011000036106 maraviroc 150 mg tablet, 90 50990011000036105 maraviroc 150 mg tablet 50741011000036103 maraviroc +37531011000036100 Fansidar uncoated tablet, 3, strip pack 13724 36799011000036109 Fansidar uncoated tablet, 3 36032011000036108 Fansidar uncoated tablet 35938011000036102 Fansidar 35938011000036102 Fansidar 38696011000036101 pyrimethamine 25 mg + sulfadoxine 500 mg tablet, 3 37932011000036104 pyrimethamine 25 mg + sulfadoxine 500 mg tablet 37797011000036103 pyrimethamine + sulfadoxine +843721000168100 Clonidine HCl (MZ) 150 microgram/mL injection solution, 5 x 1 mL ampoules 233725 843711000168107 Clonidine HCl (MZ) 150 microgram/mL injection solution, 5 x 1 mL ampoules 843701000168109 Clonidine HCl (MZ) 150 microgram/mL injection solution, ampoule 843691000168109 Clonidine HCl (MZ) 843691000168109 Clonidine HCl (MZ) 38740011000036100 clonidine hydrochloride 150 microgram/mL injection, 5 x 1 mL ampoules 37967011000036105 clonidine hydrochloride 150 microgram/mL injection, ampoule 21589011000036108 clonidine +59822011000036109 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 96, blister pack 114890 55784011000036101 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 96 53670011000036100 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet 53381011000036107 Ibuprofen (Your Pharmacy) 53381011000036107 Ibuprofen (Your Pharmacy) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +756581000168102 Pramipexole ER (Apo) 750 microgram modified release tablet, 10, blister pack 225621 756571000168100 Pramipexole ER (Apo) 750 microgram modified release tablet, 10 756561000168106 Pramipexole ER (Apo) 750 microgram modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 87814011000036104 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet, 10 87759011000036107 pramipexole dihydrochloride monohydrate 750 microgram modified release tablet 37716011000036100 pramipexole +704781000168107 Macrogol plus Electrolytes (Chemists' Own) powder for oral liquid, 30 sachets 220587 704771000168109 Macrogol plus Electrolytes (Chemists' Own) powder for oral liquid, 30 sachets 704761000168103 Macrogol plus Electrolytes (Chemists' Own) powder for oral liquid, sachet 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +727811000168109 Tritace 5 mg uncoated tablet, 7, blister pack 56538 727801000168106 Tritace 5 mg uncoated tablet, 7 6099011000036109 Tritace 5 mg uncoated tablet 4384011000036103 Tritace 4384011000036103 Tritace 39475011000036103 ramipril 5 mg tablet, 7 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +20714011000036102 Stocrin 30 mg/mL oral liquid solution, 180 mL, bottle 82790 13884011000036102 Stocrin 30 mg/mL oral liquid solution, 180 mL 7170011000036100 Stocrin 30 mg/mL oral liquid solution 4246011000036109 Stocrin 4246011000036109 Stocrin 27991011000036101 efavirenz 30 mg/mL oral liquid, 180 mL 23314011000036100 efavirenz 30 mg/mL oral liquid 21616011000036105 efavirenz +929321000168105 Semi-Daonil 2.5 mg uncoated tablet, 30, blister pack 42691 929311000168103 Semi-Daonil 2.5 mg uncoated tablet, 30 929261000168109 Semi-Daonil 2.5 mg uncoated tablet 929241000168105 Semi-Daonil 929241000168105 Semi-Daonil 929301000168101 glibenclamide 2.5 mg tablet, 30 929251000168107 glibenclamide 2.5 mg tablet 21911011000036104 glibenclamide +46021000036102 Ramipril (Terry White Chemists) 5 mg capsule, 30, blister pack 179039 43291000036101 Ramipril (Terry White Chemists) 5 mg capsule, 30 41051000036100 Ramipril (Terry White Chemists) 5 mg capsule 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +1105011000168105 Midazolam (AN) 15 mg/3 mL injection solution, 3 mL ampoule 207222 1105001000168107 Midazolam (AN) 15 mg/3 mL injection solution, 3 mL ampoule 1104991000168101 Midazolam (AN) 15 mg/3 mL injection solution, 3 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 663931000168100 midazolam 15 mg/3 mL injection, 3 mL ampoule 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +925191011000036100 Pantoprazole (Pharmacor) 40 mg enteric tablet, 30, blister pack 155113 924728011000036101 Pantoprazole (Pharmacor) 40 mg enteric tablet, 30 924438011000036109 Pantoprazole (Pharmacor) 40 mg enteric tablet 924376011000036103 Pantoprazole (Pharmacor) 924376011000036103 Pantoprazole (Pharmacor) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +20440011000036108 Aranesp 20 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 77952 13643011000036102 Aranesp 20 microgram/0.5 mL injection solution, 4 x 0.5 mL syringes 6926011000036100 Aranesp 20 microgram/0.5 mL injection solution, 0.5 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27853011000036100 darbepoetin alfa 20 microgram/0.5 mL injection, 4 x 0.5 mL syringes 23181011000036108 darbepoetin alfa 20 microgram/0.5 mL injection, syringe 21234011000036105 darbepoetin alfa +837301000168101 ADT Vaccine injection suspension, 0.5 mL syringe 113784 837291000168102 ADT Vaccine injection suspension, 0.5 mL syringe 837271000168103 ADT Vaccine injection suspension, 0.5 mL syringe 21291000168107 ADT Vaccine 21291000168107 ADT Vaccine 837281000168100 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 837261000168109 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 21826011000036109 diphtheria + tetanus vaccine +659971000168109 Valaciclovir (AN) 500 mg film-coated tablet, 10, blister pack 173287 659961000168103 Valaciclovir (AN) 500 mg film-coated tablet, 10 659951000168100 Valaciclovir (AN) 500 mg film-coated tablet 659941000168102 Valaciclovir (AN) 659941000168102 Valaciclovir (AN) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +693811000168102 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 100, blister pack 215356 693801000168100 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet, 100 693751000168106 Amitriptyline Hydrochloride (Terry White Chemists) 25 mg film-coated tablet 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 693741000168109 Amitriptyline Hydrochloride (Terry White Chemists) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1045531000168109 Zytiga 500 mg film-coated tablet, 60, blister pack 275372 1045521000168106 Zytiga 500 mg film-coated tablet, 60 1045501000168102 Zytiga 500 mg film-coated tablet 87561000036106 Zytiga 87561000036106 Zytiga 1045511000168104 abiraterone acetate 500 mg tablet, 60 1045491000168109 abiraterone acetate 500 mg tablet 91871000036107 abiraterone +895641000168107 Betavert 16 mg uncoated tablet, 60, blister pack 212080 895631000168103 Betavert 16 mg uncoated tablet, 60 895561000168105 Betavert 16 mg uncoated tablet 895551000168108 Betavert 895551000168108 Betavert 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +69143011000036107 Nicotinell Classic 4 mg chewing gum, 96, blister pack 152894 66943011000036102 Nicotinell Classic 4 mg chewing gum, 96 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +176671000036103 Duloxetine (RBX) 60 mg enteric capsule, 28, blister pack 197166 174881000036106 Duloxetine (RBX) 60 mg enteric capsule, 28 173151000036105 Duloxetine (RBX) 60 mg enteric capsule 172701000036103 Duloxetine (RBX) 172701000036103 Duloxetine (RBX) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +970541000168100 Pregabalin (Apo) 75 mg hard capsule, 20, blister pack 193274 970531000168109 Pregabalin (Apo) 75 mg hard capsule, 20 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +44438011000036106 Midazolam (Pfizer (Perth)) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 72214 41894011000036108 Midazolam (Pfizer (Perth)) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 40249011000036104 Midazolam (Pfizer (Perth)) 5 mg/5 mL injection solution, 5 mL ampoule 39704011000036104 Midazolam (Pfizer (Perth)) 39704011000036104 Midazolam (Pfizer (Perth)) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +745211000168104 Zerbaxa powder for injection, 10 vials 229608 745201000168102 Zerbaxa powder for injection, 10 vials 745181000168103 Zerbaxa powder for injection, vial 745141000168108 Zerbaxa 745141000168108 Zerbaxa 745191000168100 ceftolozane 1 g + tazobactam 500 mg injection, 10 vials 745171000168101 ceftolozane 1 g + tazobactam 500 mg injection, vial 745161000168107 ceftolozane + tazobactam +20808011000036108 Lisinopril (Hexal) 20 mg uncoated tablet, 30, blister pack 91388 13972011000036109 Lisinopril (Hexal) 20 mg uncoated tablet, 30 7258011000036102 Lisinopril (Hexal) 20 mg uncoated tablet 3611011000036109 Lisinopril (Hexal) 3611011000036109 Lisinopril (Hexal) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +176631000036100 Mistrom 100 mg film-coated tablet, 60, blister pack 192770 174841000036102 Mistrom 100 mg film-coated tablet, 60 173341000036109 Mistrom 100 mg film-coated tablet 172791000036106 Mistrom 172791000036106 Mistrom 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +56751000036107 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 250, bottle 164952 53191000036109 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet, 250 39900011000036100 Metformin Hydrochloride (Generic Health) 500 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 53201000036106 metformin hydrochloride 500 mg tablet, 250 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20431011000036102 Lantus 100 units/mL injection solution, 5 x 3 mL cartridges 77737 13634011000036101 Lantus 100 units/mL injection solution, 5 x 3 mL cartridges 6917011000036106 Lantus 100 units/mL injection solution, 3 mL cartridge 52371000168106 Lantus 52371000168106 Lantus 27848011000036108 insulin glargine 100 units/mL injection, 5 x 3 mL cartridges 23176011000036105 insulin glargine 100 units/mL injection, cartridge 21815011000036108 insulin glargine +59790011000036101 Dymadon capsule shaped 500 mg uncoated tablet, 100, blister pack 114080 55752011000036103 Dymadon capsule shaped 500 mg uncoated tablet, 100 53696011000036105 Dymadon capsule shaped 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +959871000168103 Lacosamide (Apo) 150 mg film-coated tablet, 56, blister pack 230197 959861000168109 Lacosamide (Apo) 150 mg film-coated tablet, 56 959831000168101 Lacosamide (Apo) 150 mg film-coated tablet 959641000168109 Lacosamide (Apo) 959641000168109 Lacosamide (Apo) 84631011000036105 lacosamide 150 mg tablet, 56 84430011000036100 lacosamide 150 mg tablet 84408011000036109 lacosamide +1102841000168108 Aspramide 5 mg film-coated tablet, 60, blister pack 196499 1102831000168104 Aspramide 5 mg film-coated tablet, 60 1102621000168101 Aspramide 5 mg film-coated tablet 1039601000168100 Aspramide 1039601000168100 Aspramide 1102821000168102 metoclopramide hydrochloride 5 mg tablet, 60 1102611000168108 metoclopramide hydrochloride 5 mg tablet 21569011000036105 metoclopramide +43819011000036100 Simvabell 40 mg film-coated tablet, 100, bottle 100888 41108011000036105 Simvabell 40 mg film-coated tablet, 100 5411011000036103 Simvabell 40 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46248011000036104 simvastatin 40 mg tablet, 100 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +972711000168106 Pregabalin (Apotex) 75 mg hard capsule, 20, blister pack 267554 972701000168108 Pregabalin (Apotex) 75 mg hard capsule, 20 972671000168107 Pregabalin (Apotex) 75 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +831341000168107 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 107286 831331000168103 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 689641000168100 Priorix-Tetra (inert substance) diluent, 0.5 mL syringe 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831321000168101 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +831341000168107 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 107286 831331000168103 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 831191000168101 Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 688981000168107 Priorix-Tetra 688981000168107 Priorix-Tetra 831321000168101 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 831181000168104 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +19354011000036107 Lamictal 5 mg tablet, 56, blister pack 51547 12656011000036100 Lamictal 5 mg tablet, 56 5580011000036103 Lamictal 5 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +110481000036106 Cystine500 containing 500 mg cystine powder for oral liquid, 30 x 4 g sachets 108471000036108 Cystine500 containing 500 mg cystine powder for oral liquid, 30 x 4 g sachets 312221000168108 Cystine500 containing 500 mg cystine powder for oral liquid, 4 g sachet 106651000036101 Cystine500 106651000036101 Cystine500 51278011000036108 cystine with carbohydrate containing 500 mg cystine powder for oral liquid, 30 x 4 g sachets 311211000168105 cystine with carbohydrate containing 500 mg cystine powder for oral liquid, 4 g sachet 50735011000036102 cystine with carbohydrate +77419011000036109 Dermaveen Moisturising 2% cream, 200 g, tube 97021 76835011000036108 Dermaveen Moisturising 2% cream, 200 g 76200011000036101 Dermaveen Moisturising 2% cream 9661000168105 Dermaveen Moisturising 9661000168105 Dermaveen Moisturising 78339011000036100 colloidal oatmeal 2% cream, 200 g 77615011000036109 colloidal oatmeal 2% cream 77444011000036102 colloidal oatmeal +61587011000036108 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 12, blister pack 95191 57509011000036101 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 12 54331011000036103 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 275 mg film-coated tablet 6071000168100 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 6071000168100 Naproxen Sodium Anti-Inflammatory Pain Relief (Pharmacy Health) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +44196011000036103 Persantin 25 mg sugar coated tablet, 100, tube 55197 41672011000036103 Persantin 25 mg sugar coated tablet, 100 40136011000036106 Persantin 25 mg sugar coated tablet 17331000168100 Persantin 17331000168100 Persantin 46489011000036101 dipyridamole 25 mg tablet, 100 45183011000036100 dipyridamole 25 mg tablet 21674011000036109 dipyridamole +827071000168105 Targin 80/40 mg modified release tablet, 60, blister pack 243272 827061000168104 Targin 80/40 mg modified release tablet, 60 826981000168109 Targin 80/40 mg modified release tablet 826961000168100 Targin 80/40 mg 826961000168100 Targin 80/40 mg 827051000168101 oxycodone hydrochloride 80 mg + naloxone hydrochloride 40 mg modified release tablet, 60 826971000168106 oxycodone hydrochloride 80 mg + naloxone hydrochloride 40 mg modified release tablet 923931011000036100 oxycodone + naloxone +655721000168109 Cyproterone Acetate (AN) 50 mg uncoated tablet, 20, blister pack 184226 655711000168102 Cyproterone Acetate (AN) 50 mg uncoated tablet, 20 655701000168100 Cyproterone Acetate (AN) 50 mg uncoated tablet 655531000168103 Cyproterone Acetate (AN) 655531000168103 Cyproterone Acetate (AN) 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +140281000036101 Gabapentin (Aspen) 100 mg capsule, 100, blister pack 107472 138711000036101 Gabapentin (Aspen) 100 mg capsule, 100 137781000036105 Gabapentin (Aspen) 100 mg capsule 112611000036104 Gabapentin (Aspen) 112611000036104 Gabapentin (Aspen) 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +740871000168102 Fentora 100 microgram orally disintegrating tablet, 28, blister pack 218435 740861000168108 Fentora 100 microgram orally disintegrating tablet, 28 740811000168105 Fentora 100 microgram orally disintegrating tablet 740631000168104 Fentora 740631000168104 Fentora 740851000168106 fentanyl 100 microgram orally disintegrating tablet, 28 740801000168107 fentanyl 100 microgram orally disintegrating tablet 21258011000036102 fentanyl +1122531000168108 Fluarix Tetra 2018 with Detached Needle injection suspension, 1 x 0.5 mL syringe 242512 1122521000168105 Fluarix Tetra 2018 with Detached Needle injection suspension, 1 x 0.5 mL syringe 1122511000168103 Fluarix Tetra 2018 with Detached Needle injection suspension, 0.5 mL syringe 1122401000168102 Fluarix Tetra 2018 1122401000168102 Fluarix Tetra 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +860921000168101 Ambotens 150 mg film-coated tablet, 30, blister pack 190229 860911000168108 Ambotens 150 mg film-coated tablet, 30 860901000168105 Ambotens 150 mg film-coated tablet 860851000168101 Ambotens 860851000168101 Ambotens 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +860921000168101 Ambotens 150 mg film-coated tablet, 30, blister pack 223018 860911000168108 Ambotens 150 mg film-coated tablet, 30 860901000168105 Ambotens 150 mg film-coated tablet 860851000168101 Ambotens 860851000168101 Ambotens 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +86159011000036101 Kepcet 250 mg film-coated tablet, 60, blister pack 165909 85767011000036108 Kepcet 250 mg film-coated tablet, 60 85382011000036107 Kepcet 250 mg film-coated tablet 85281011000036106 Kepcet 85281011000036106 Kepcet 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +933239761000036102 Meloxicam (Chemmart) 7.5 mg hard capsule, 30, blister pack 181200 933237081000036100 Meloxicam (Chemmart) 7.5 mg hard capsule, 30 933234801000036109 Meloxicam (Chemmart) 7.5 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 27846011000036109 meloxicam 7.5 mg capsule, 30 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +50347011000036107 Day plus Night Sinus Relief (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24, blister pack 119049 49542011000036104 Day plus Night Sinus Relief (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24 48595011000036104 Day plus Night Sinus Relief (Night) (Your Pharmacy) tablet 45361000168109 Day plus Night Sinus Relief (Your Pharmacy) 45591000168105 Day plus Night Sinus Relief (Night) (Your Pharmacy) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +50347011000036107 Day plus Night Sinus Relief (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24, blister pack 119049 49542011000036104 Day plus Night Sinus Relief (Your Pharmacy) (16 x Day tablets, 8 x Night tablets), 24 48602011000036101 Day plus Night Sinus Relief (Day) (Your Pharmacy) tablet 45361000168109 Day plus Night Sinus Relief (Your Pharmacy) 45471000168105 Day plus Night Sinus Relief (Day) (Your Pharmacy) 51480011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +18251000036107 Beprol 2.5 mg film-coated tablet, 28, blister pack 175921 16811000036108 Beprol 2.5 mg film-coated tablet, 28 15681000036109 Beprol 2.5 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +933214001000036105 Citalopram (Auro) 10 mg film-coated tablet, 28, blister pack 153679 933202021000036108 Citalopram (Auro) 10 mg film-coated tablet, 28 933194921000036102 Citalopram (Auro) 10 mg film-coated tablet 12311000168107 Citalopram (Auro) 12311000168107 Citalopram (Auro) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +874091000168102 Bicalox 50 mg film-coated tablet, 28, bottle 129119 163681000036100 Bicalox 50 mg film-coated tablet, 28 162041000036106 Bicalox 50 mg film-coated tablet 161991000036105 Bicalox 161991000036105 Bicalox 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +797021000168103 Aciclovir (RBX) 200 mg uncoated tablet, 90, blister pack 182881 797011000168105 Aciclovir (RBX) 200 mg uncoated tablet, 90 796941000168108 Aciclovir (RBX) 200 mg uncoated tablet 796791000168102 Aciclovir (RBX) 796791000168102 Aciclovir (RBX) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +86877011000036101 Topiramate (GA) 25 mg film-coated tablet, 60, blister pack 155203 86761011000036102 Topiramate (GA) 25 mg film-coated tablet, 60 86637011000036108 Topiramate (GA) 25 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +922017011000036104 Neutrafluor-220 0.05% mouthwash, 473 mL, bottle 76067 921575011000036100 Neutrafluor-220 0.05% mouthwash, 473 mL 921096011000036102 Neutrafluor-220 0.05% mouthwash 27641000168106 Neutrafluor-220 27641000168106 Neutrafluor-220 922689011000036101 sodium fluoride 0.05% mouthwash, 473 mL 922160011000036106 sodium fluoride 0.05% mouthwash 61768011000036106 fluoride +835201000168101 Stop-It 2 mg hard capsule, 6, blister pack 199731 835191000168104 Stop-It 2 mg hard capsule, 6 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 823651000168102 loperamide hydrochloride 2 mg capsule, 6 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +1070691000168101 Paracetamol plus Codeine and Calmative (Terry White Chemists) uncoated tablet, 20, blister pack 236817 1070681000168104 Paracetamol plus Codeine and Calmative (Terry White Chemists) uncoated tablet, 20 1070671000168102 Paracetamol plus Codeine and Calmative (Terry White Chemists) uncoated tablet 1070661000168108 Paracetamol plus Codeine and Calmative (Terry White Chemists) 1070661000168108 Paracetamol plus Codeine and Calmative (Terry White Chemists) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +929693011000036107 Metformin (Apo) 500 mg film-coated tablet, 100, blister pack 174815 929529011000036109 Metformin (Apo) 500 mg film-coated tablet, 100 929413011000036109 Metformin (Apo) 500 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +18178011000036109 Clavycillin 875/125 film-coated tablet, 10, blister pack 134513 11987011000036106 Clavycillin 875/125 film-coated tablet, 10 4700011000036108 Clavycillin 875/125 film-coated tablet 23571000168108 Clavycillin 875/125 23571000168108 Clavycillin 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +18178011000036109 Clavycillin 875/125 film-coated tablet, 10, blister pack 163699 11987011000036106 Clavycillin 875/125 film-coated tablet, 10 4700011000036108 Clavycillin 875/125 film-coated tablet 23571000168108 Clavycillin 875/125 23571000168108 Clavycillin 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1002771000168101 Rivastigmine (Apo) 3 mg hard capsule, 100, bottle 160579 1002761000168107 Rivastigmine (Apo) 3 mg hard capsule, 100 1002721000168102 Rivastigmine (Apo) 3 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002751000168105 rivastigmine 3 mg capsule, 100 23029011000036108 rivastigmine 3 mg capsule 21413011000036101 rivastigmine +68766011000036100 Glucose (Phebra) 10% (1 g/10 mL) intravenous infusion injection, 50 x 10 mL ampoules 12403 66674011000036103 Glucose (Phebra) 10% (1 g/10 mL) intravenous infusion injection, 50 x 10 mL ampoules 65405011000036108 Glucose (Phebra) 10% (1 g/10 mL) intravenous infusion injection, 10 mL ampoule 65179011000036104 Glucose (Phebra) 65179011000036104 Glucose (Phebra) 71377011000036104 glucose 10% (1 g/10 mL) injection, 50 x 10 mL ampoules 69979011000036109 glucose 10% (1 g/10 mL) injection, ampoule 21354011000036103 glucose +719951000168100 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 10 x 1.5 mL cartridges 224622 719941000168102 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 10 x 1.5 mL cartridges 719881000168101 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 719931000168106 somatropin 5 mg/1.5 mL injection, 10 x 1.5 mL cartridges 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +891391000168109 Candesartan plus HCTZ 32/25 (Pfizer) uncoated tablet, 30, blister pack 199107 891381000168106 Candesartan plus HCTZ 32/25 (Pfizer) uncoated tablet, 30 891351000168104 Candesartan plus HCTZ 32/25 (Pfizer) uncoated tablet 891341000168101 Candesartan plus HCTZ 32/25 (Pfizer) 891341000168101 Candesartan plus HCTZ 32/25 (Pfizer) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +81017011000036109 Co-Diovan 320/12.5 film-coated tablet, 28, blister pack 135782 80492011000036105 Co-Diovan 320/12.5 film-coated tablet, 28 80163011000036104 Co-Diovan 320/12.5 film-coated tablet 19511000168109 Co-Diovan 320/12.5 19511000168109 Co-Diovan 320/12.5 81588011000036106 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet, 28 81263011000036108 valsartan 320 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +659991000168105 Valaciclovir (AN) 500 mg film-coated tablet, 42, blister pack 173287 659981000168107 Valaciclovir (AN) 500 mg film-coated tablet, 42 659951000168100 Valaciclovir (AN) 500 mg film-coated tablet 659941000168102 Valaciclovir (AN) 659941000168102 Valaciclovir (AN) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +977051000168107 Pregabalin (Apotex) 100 mg hard capsule, 60, blister pack 267555 977041000168105 Pregabalin (Apotex) 100 mg hard capsule, 60 976971000168102 Pregabalin (Apotex) 100 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +68709011000036108 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 21, sachet 129748 66727011000036103 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch, 21 65263011000036107 Nicotine Phase-1 (Chemists' Own) 21 mg/24 hours patch 32721000168108 Nicotine Phase-1 (Chemists' Own) 32721000168108 Nicotine Phase-1 (Chemists' Own) 63762011000036103 nicotine 21 mg/24 hours patch, 21 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +933239531000036103 Amisulpride (Apo) 400 mg film-coated tablet, 50, blister pack 178898 933236851000036102 Amisulpride (Apo) 400 mg film-coated tablet, 50 933234751000036101 Amisulpride (Apo) 400 mg film-coated tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 80067011000036104 amisulpride 400 mg tablet, 50 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +932201000168103 Centevo 50/12.5/200 mg film-coated tablet, 130, bottle 238152 932191000168101 Centevo 50/12.5/200 mg film-coated tablet, 130 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932181000168104 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 130 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +941841000168108 Gemfibrozil (AS) 600 mg film-coated tablet, 60, bottle 147594 941831000168104 Gemfibrozil (AS) 600 mg film-coated tablet, 60 941821000168102 Gemfibrozil (AS) 600 mg film-coated tablet 941811000168109 Gemfibrozil (AS) 941811000168109 Gemfibrozil (AS) 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +61359011000036107 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 96, blister pack 81474 57284011000036107 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 96 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44448011000036105 Doxycycline (Terry White Chemists) 50 mg modified release capsule, 25, blister pack 74011 41904011000036101 Doxycycline (Terry White Chemists) 50 mg modified release capsule, 25 40256011000036105 Doxycycline (Terry White Chemists) 50 mg modified release capsule 4107011000036101 Doxycycline (Terry White Chemists) 4107011000036101 Doxycycline (Terry White Chemists) 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +151911000036105 Lignocaine (Pfizer (Perth)) 2% gel, 10 g, syringe 155647 149991000036101 Lignocaine (Pfizer (Perth)) 2% gel, 10 g 148441000036107 Lignocaine (Pfizer (Perth)) 2% gel 53308011000036104 Lignocaine (Pfizer (Perth)) 53308011000036104 Lignocaine (Pfizer (Perth)) 150001000036101 lidocaine (lignocaine) 2% gel, 10 g 148451000036105 lidocaine (lignocaine) 2% gel 21572011000036107 lidocaine (lignocaine) +45331000036108 Galantamine MR (Apo) 8 mg modified release capsule, 28, blister pack 182030 43481000036102 Galantamine MR (Apo) 8 mg modified release capsule, 28 40681000036109 Galantamine MR (Apo) 8 mg modified release capsule 2801000168100 Galantamine MR (Apo) 2801000168100 Galantamine MR (Apo) 28248011000036107 galantamine 8 mg modified release capsule, 28 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +923693011000036105 Grandicrit 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 147856 923314011000036101 Grandicrit 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 922996011000036105 Grandicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924127011000036106 epoetin lambda 3000 units/0.3 mL injection, 6 x 0.3 mL syringes 923953011000036100 epoetin lambda 3000 units/0.3 mL injection, syringe 923930011000036107 epoetin lambda +37667011000036106 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 32267 36933011000036105 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 36264011000036102 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 19621000168103 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 19621000168103 Cyclopentolate Hydrochloride Minims (Bausch & Lomb) 38814011000036101 cyclopentolate hydrochloride 1% eye drops, 20 x 0.5 mL unit doses 38024011000036105 cyclopentolate hydrochloride 1% eye drops, unit dose 37706011000036103 cyclopentolate +74271000036102 Mirtazapine (Pfizer) 15 mg film-coated tablet, 30, blister pack 183398 71851000036106 Mirtazapine (Pfizer) 15 mg film-coated tablet, 30 69861000036101 Mirtazapine (Pfizer) 15 mg film-coated tablet 69301000036108 Mirtazapine (Pfizer) 69301000036108 Mirtazapine (Pfizer) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +927861000168104 Flunomide 20 mg film-coated tablet, 30, strip pack 123310 927851000168101 Flunomide 20 mg film-coated tablet, 30 927841000168103 Flunomide 20 mg film-coated tablet 927831000168107 Flunomide 927831000168107 Flunomide 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +976391000168102 Strattera 5 mg hard capsule, 28, blister pack 90591 976381000168100 Strattera 5 mg hard capsule, 28 976301000168108 Strattera 5 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 976371000168103 atomoxetine 5 mg capsule, 28 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +18476011000036109 Doxycycline (DBL) 50 mg modified release capsule, 25, bottle 107247 12653011000036106 Doxycycline (DBL) 50 mg modified release capsule, 25 4565011000036104 Doxycycline (DBL) 50 mg modified release capsule 3565011000036101 Doxycycline (DBL) 3565011000036101 Doxycycline (DBL) 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +19647011000036108 Lipitor 20 mg film-coated tablet, 30, bottle 59605 12915011000036104 Lipitor 20 mg film-coated tablet, 30 6205011000036102 Lipitor 20 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +666801000168108 Pramipexole Hydrochloride (AN) 250 microgram tablet, 100, blister pack 172012 666791000168107 Pramipexole Hydrochloride (AN) 250 microgram tablet, 100 666781000168109 Pramipexole Hydrochloride (AN) 250 microgram tablet 666721000168105 Pramipexole Hydrochloride (AN) 666721000168105 Pramipexole Hydrochloride (AN) 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +87193011000036109 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 75554 87131011000036103 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 87077011000036101 Juliet-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 700010021000036100 Juliet-35 ED 700010021000036100 Juliet-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +87193011000036109 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 75554 87131011000036103 Juliet-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 87078011000036100 Juliet-35 ED (inert substance) sugar coated tablet 700010021000036100 Juliet-35 ED 700010021000036100 Juliet-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +841411000168103 Atorvastatin (Amneal) 20 mg film-coated tablet, 30, blister pack 178524 841401000168101 Atorvastatin (Amneal) 20 mg film-coated tablet, 30 841341000168106 Atorvastatin (Amneal) 20 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +892811000168100 Betahistine (GPPL) 16 mg uncoated tablet, 100, blister pack 212085 892801000168103 Betahistine (GPPL) 16 mg uncoated tablet, 100 892711000168108 Betahistine (GPPL) 16 mg uncoated tablet 892701000168105 Betahistine (GPPL) 892701000168105 Betahistine (GPPL) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +60574011000036104 Panadol Children's 120 mg chewable tablet, 4, blister pack 15510 56532011000036102 Panadol Children's 120 mg chewable tablet, 4 53956011000036103 Panadol Children's 120 mg chewable tablet 49251000168100 Panadol Children's 49251000168100 Panadol Children's 63399011000036106 paracetamol 120 mg chewable tablet, 4 61940011000036107 paracetamol 120 mg chewable tablet 21433011000036107 paracetamol +833901000168108 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 1 pack, composite pack 833891000168109 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 1 pack 137861000036105 Bydureon (inert substance) diluent, syringe 137231000036103 Bydureon 137231000036103 Bydureon 833881000168106 exenatide 2 mg modified release injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +833901000168108 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 1 pack, composite pack 833891000168109 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 1 pack 833871000168108 Bydureon (exenatide 2 mg) modified release injection, 2 mg vial 137231000036103 Bydureon 137231000036103 Bydureon 833881000168106 exenatide 2 mg modified release injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 833861000168102 exenatide 2 mg modified release injection, vial 44897011000036109 exenatide +79033011000036101 Bispro 10 mg film-coated tablet, 42, blister pack 130182 78802011000036102 Bispro 10 mg film-coated tablet, 42 78627011000036103 Bispro 10 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79216011000036109 bisoprolol fumarate 10 mg tablet, 42 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +61081011000036102 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 100 mL, bottle 70321 57024011000036105 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 100 mL 54164011000036102 Tussinol for Dry Coughs 15 mg/5 mL oral liquid solution, 5 mL 53414011000036100 Tussinol for Dry Coughs 53414011000036100 Tussinol for Dry Coughs 63750011000036109 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 100 mL 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +140621000036104 Meloxicam (Sandoz) 15 mg hard capsule, 30, blister pack 199662 139421000036106 Meloxicam (Sandoz) 15 mg hard capsule, 30 137651000036108 Meloxicam (Sandoz) 15 mg hard capsule 32204011000036102 Meloxicam (Sandoz) 32204011000036102 Meloxicam (Sandoz) 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +84322011000036109 Sulprix 200 mg tablet, 90, blister pack 156048 84015011000036108 Sulprix 200 mg tablet, 90 83644011000036107 Sulprix 200 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +933230851000036104 Famciclovir (Apo) 500 mg film-coated tablet, 14, blister pack 172443 933224981000036108 Famciclovir (Apo) 500 mg film-coated tablet, 14 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 86443011000036101 famciclovir 500 mg tablet, 14 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +700027411000036106 Amoxycillin (Sandoz) 500 mg hard capsule, 28, blister pack 231000168104 Amoxycillin (Sandoz) 500 mg hard capsule, 28 7277011000036101 Amoxycillin (Sandoz) 500 mg hard capsule 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 700031841000036104 amoxicillin 500 mg capsule, 28 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +875691000168107 Bispro 1.25 mg film-coated tablet, 30, blister pack 130177 875681000168109 Bispro 1.25 mg film-coated tablet, 30 875611000168103 Bispro 1.25 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 46791011000036109 bisoprolol fumarate 1.25 mg tablet, 30 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +17825011000036101 Salazopyrin 500 mg uncoated tablet, 100, bottle 14486 12033011000036102 Salazopyrin 500 mg uncoated tablet, 100 5475011000036106 Salazopyrin 500 mg uncoated tablet 16151000168106 Salazopyrin 16151000168106 Salazopyrin 27402011000036108 sulfasalazine 500 mg tablet, 100 22751011000036101 sulfasalazine 500 mg tablet 21923011000036107 sulfasalazine +970701000168107 Pregabalin (Apo) 300 mg hard capsule, 20, bottle 193254 970631000168108 Pregabalin (Apo) 300 mg hard capsule, 20 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +44281011000036107 Entocort 3 mg modified release capsule, 90, bottle 62812 41752011000036109 Entocort 3 mg modified release capsule, 90 40181011000036107 Entocort 3 mg modified release capsule 39744011000036108 Entocort 39744011000036108 Entocort 46559011000036100 budesonide 3 mg modified release capsule, 90 45217011000036108 budesonide 3 mg modified release capsule 21307011000036104 budesonide +79713011000036105 Diclofenac Sodium (Chemmart) 50 mg enteric tablet, 50, blister pack 160727 13684011000036108 Diclofenac Sodium (Chemmart) 50 mg enteric tablet, 50 6967011000036107 Diclofenac Sodium (Chemmart) 50 mg enteric tablet 3797011000036108 Diclofenac Sodium (Chemmart) 3797011000036108 Diclofenac Sodium (Chemmart) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +933084011000036102 Flucil 125 mg/5 mL powder for oral liquid, 100 mL, bottle 165731 932886011000036104 Flucil 125 mg/5 mL powder for oral liquid, 100 mL 932748011000036108 Flucil 125 mg/5 mL powder for oral liquid, 5 mL 33956011000036109 Flucil 33956011000036109 Flucil 26644011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid, 100 mL 22050011000036105 flucloxacillin 125 mg/5 mL powder for oral liquid 21623011000036108 flucloxacillin +1116521000168102 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 56, blister pack 151628 1116511000168109 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 56 1116421000168101 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 63239011000036108 amlodipine 10 mg + valsartan 160 mg tablet, 56 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +59936011000036102 Paracetamol Children's 5 to 12 Years (Your Pharmacy) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL, bottle 119556 55898011000036106 Paracetamol Children's 5 to 12 Years (Your Pharmacy) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL 53655011000036106 Paracetamol Children's 5 to 12 Years (Your Pharmacy) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 63721000168106 Paracetamol Children's 5 to 12 Years (Your Pharmacy) 63721000168106 Paracetamol Children's 5 to 12 Years (Your Pharmacy) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +60793011000036106 Dry Raspy Cough (Chemists' Own) oral liquid solution, 100 mL, bottle 55538 56749011000036107 Dry Raspy Cough (Chemists' Own) oral liquid solution, 100 mL 54064011000036105 Dry Raspy Cough (Chemists' Own) oral liquid solution, 10 mL 53190011000036108 Dry Raspy Cough (Chemists' Own) 53190011000036108 Dry Raspy Cough (Chemists' Own) 63551011000036101 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62013011000036102 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61761011000036102 chlorphenamine + dextromethorphan + pseudoephedrine +86876011000036104 Topiramate (GA) 200 mg film-coated tablet, 60, bottle 155202 86759011000036108 Topiramate (GA) 200 mg film-coated tablet, 60 86635011000036103 Topiramate (GA) 200 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +13821000036108 Aripiprazole (GH) 20 mg uncoated tablet, 30, blister pack 176813 7461000036107 Aripiprazole (GH) 20 mg uncoated tablet, 30 2771000036109 Aripiprazole (GH) 20 mg uncoated tablet 991000036104 Aripiprazole (GH) 991000036104 Aripiprazole (GH) 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1103551000168102 Quetiapine (Pharmacor) 200 mg film-coated tablet, 20, blister pack 204819 1103541000168104 Quetiapine (Pharmacor) 200 mg film-coated tablet, 20 172871000036101 Quetiapine (Pharmacor) 200 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +18241011000036104 Leucovorin Calcium (DBL) 15 mg uncoated tablet, 10, bottle 16364 12109011000036101 Leucovorin Calcium (DBL) 15 mg uncoated tablet, 10 4808011000036107 Leucovorin Calcium (DBL) 15 mg uncoated tablet 920091011000036103 Leucovorin Calcium (DBL) 920091011000036103 Leucovorin Calcium (DBL) 26919011000036102 folinic acid 15 mg tablet, 10 22296011000036108 folinic acid 15 mg tablet 21617011000036108 folinic acid +925358011000036105 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 500 mL, pump pack 172237 924894011000036101 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 500 mL 924537011000036100 Antimicrobial Hand Gel (Sunnywipes) 70% gel 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 925448011000036103 ethanol 70% gel, 500 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +50411011000036102 S-26 LF powder for oral liquid, 900 g, can 49473011000036103 S-26 LF powder for oral liquid, 900 g 48772011000036101 S-26 LF powder for oral liquid 48322011000036101 S-26 LF 48322011000036101 S-26 LF 51431011000036102 milk powder lactose free formula powder for oral liquid, 900 g 50947011000036101 milk powder lactose free formula powder for oral liquid 50712011000036102 milk powder lactose free formula +1071491000168105 Quepine XR 300 mg modified release tablet, 60, blister pack 199874 1071481000168107 Quepine XR 300 mg modified release tablet, 60 1071471000168109 Quepine XR 300 mg modified release tablet 852351000168101 Quepine XR 852351000168101 Quepine XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +846811000168106 Fluconazole (Alphapharm) 200 mg/100 mL injection solution, 100 mL bag 155335 846801000168108 Fluconazole (Alphapharm) 200 mg/100 mL injection solution, 100 mL bag 58231000036106 Fluconazole (Alphapharm) 200 mg/100 mL injection solution, 100 mL bag 58061000036107 Fluconazole (Alphapharm) 58061000036107 Fluconazole (Alphapharm) 32760011000036100 fluconazole 200 mg/100 mL injection, 100 mL bag 32691011000036104 fluconazole 200 mg/100 mL injection, bag 21365011000036105 fluconazole +18679011000036102 Ondansetron (RL) 4 mg film-coated tablet, 4, blister pack 116414 11511011000036108 Ondansetron (RL) 4 mg film-coated tablet, 4 5560011000036100 Ondansetron (RL) 4 mg film-coated tablet 3915011000036107 Ondansetron (RL) 3915011000036107 Ondansetron (RL) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +18195011000036109 Deca-Durabolin Orgaject 50 mg/mL injection solution, 1 mL syringe 10655 11337011000036109 Deca-Durabolin Orgaject 50 mg/mL injection solution, 1 mL syringe 5396011000036101 Deca-Durabolin Orgaject 50 mg/mL injection solution, syringe 32851000168105 Deca-Durabolin Orgaject 32851000168105 Deca-Durabolin Orgaject 26613011000036101 nandrolone decanoate 50 mg/mL injection, 1 mL syringe 22020011000036106 nandrolone decanoate 50 mg/mL injection, syringe 21449011000036106 nandrolone decanoate +60597011000036101 Benzac W 10% gel, 10 g, tube 18554 56555011000036109 Benzac W 10% gel, 10 g 53971011000036106 Benzac W 10% gel 7001000168107 Benzac W 7001000168107 Benzac W 63421011000036106 benzoyl peroxide 10% gel, 10 g 61954011000036104 benzoyl peroxide 10% gel 61709011000036104 benzoyl peroxide +52174011000036102 Thymol Compound APF (extemporaneous) mouthwash, 200 mL, dispensing bottle 52072011000036102 Thymol Compound APF (extemporaneous) mouthwash, 200 mL 51973011000036102 Thymol Compound APF (extemporaneous) mouthwash 51957011000036109 Thymol Compound APF (extemporaneous) 51957011000036109 Thymol Compound APF (extemporaneous) 52319011000036104 thymol 1.5 mg/mL + benzoic acid 8 mg/mL + sodium bicarbonate 3 mg/mL mouthwash, 200 mL 52251011000036101 thymol 1.5 mg/mL + benzoic acid 8 mg/mL + sodium bicarbonate 3 mg/mL mouthwash 52229011000036103 thymol + benzoic acid + bicarbonate +68987011000036108 Nicotinell Liquorice 2 mg chewing gum, 24, blister pack 136134 66789011000036103 Nicotinell Liquorice 2 mg chewing gum, 24 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +887511000168101 Zinbryta 150 mg/mL injection solution, 1 mL injection device 243873 887501000168104 Zinbryta 150 mg/mL injection solution, 1 mL injection device 887481000168108 Zinbryta 150 mg/mL injection solution, injection device 887331000168101 Zinbryta 887331000168101 Zinbryta 887491000168106 daclizumab 150 mg/mL injection, 1 mL injection device 887471000168105 daclizumab 150 mg/mL injection, injection device 887341000168105 daclizumab +43954011000036100 Imigran 100 mg film-coated tablet, 2, blister pack 38346 41446011000036100 Imigran 100 mg film-coated tablet, 2 39978011000036107 Imigran 100 mg film-coated tablet 30771000168105 Imigran 30771000168105 Imigran 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +933239611000036106 Amisulpride (Apo) 100 mg tablet, 30, blister pack 178904 933236931000036100 Amisulpride (Apo) 100 mg tablet, 30 933234771000036106 Amisulpride (Apo) 100 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +91451000036104 Sleepwell (Pharmacor) 25 mg uncoated tablet, 20, blister pack 179759 89671000036106 Sleepwell (Pharmacor) 25 mg uncoated tablet, 20 87971000036105 Sleepwell (Pharmacor) 25 mg uncoated tablet 87661000036105 Sleepwell (Pharmacor) 87661000036105 Sleepwell (Pharmacor) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +37680011000036107 Sifrol 1 mg uncoated tablet, 100, blister pack 66485 36946011000036100 Sifrol 1 mg uncoated tablet, 100 36274011000036108 Sifrol 1 mg uncoated tablet 4051000168101 Sifrol 4051000168101 Sifrol 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +20442011000036107 Aranesp 40 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 77954 13645011000036101 Aranesp 40 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 6928011000036101 Aranesp 40 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27855011000036104 darbepoetin alfa 40 microgram/0.4 mL injection, 4 x 0.4 mL syringes 23183011000036109 darbepoetin alfa 40 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +37461011000036100 Lasix High Dose 250 mg/25 mL intravenous infusion injection, 5 x 25 mL ampoules 12408 36731011000036100 Lasix High Dose 250 mg/25 mL intravenous infusion injection, 5 x 25 mL ampoules 36184011000036102 Lasix High Dose 250 mg/25 mL intravenous infusion injection, 25 mL ampoule 19131000168107 Lasix High Dose 19131000168107 Lasix High Dose 38641011000036100 furosemide (frusemide) 250 mg/25 mL injection, 5 x 25 mL ampoules 37896011000036104 furosemide (frusemide) 250 mg/25 mL injection, ampoule 21329011000036103 furosemide (frusemide) +754571000168106 Oxycodone (AS) 20 mg hard capsule, 20, blister pack 227845 754531000168108 Oxycodone (AS) 20 mg hard capsule, 20 754521000168105 Oxycodone (AS) 20 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +69677011000036103 Sinus Relief (Nyal) 5 mg/5 mL oral liquid solution, 100 mL, bottle 81452 67476011000036108 Sinus Relief (Nyal) 5 mg/5 mL oral liquid solution, 100 mL 65677011000036107 Sinus Relief (Nyal) 5 mg/5 mL oral liquid solution, 5 mL 65176011000036108 Sinus Relief (Nyal) 65176011000036108 Sinus Relief (Nyal) 72000011000036108 phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 70274011000036109 phenylephrine hydrochloride 5 mg/5 mL oral liquid 37732011000036107 phenylephrine +60420011000036103 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 30, blister pack 145584 56379011000036107 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 30 53895011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule 53491011000036102 Dimetapp PE Nasal Decongestant 53491011000036102 Dimetapp PE Nasal Decongestant 63326011000036109 phenylephrine hydrochloride 10 mg capsule, 30 61918011000036101 phenylephrine hydrochloride 10 mg capsule 37732011000036107 phenylephrine +870151000168102 Aripiprazole (Apo) 30 mg uncoated tablet, 30, blister pack 152905 870141000168104 Aripiprazole (Apo) 30 mg uncoated tablet, 30 870131000168108 Aripiprazole (Apo) 30 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +930191000168100 Sporanox 100 mg hard capsule, 4, blister pack 47012 41527011000036106 Sporanox 100 mg hard capsule, 4 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 46362011000036102 itraconazole 100 mg capsule, 4 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +792041000168106 Co-Phenylcaine Forte nasal spray, 15 mL, pump pack 35208 792031000168102 Co-Phenylcaine Forte nasal spray, 15 mL 791921000168105 Co-Phenylcaine Forte nasal spray 9271000168101 Co-Phenylcaine Forte 9271000168101 Co-Phenylcaine Forte 792021000168100 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 15 mL 791911000168103 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray 74988011000036106 lidocaine (lignocaine) + phenylephrine +19521000036109 Risperidone (Actavis) 2 mg film-coated tablet, 60, blister pack 159976 19161000036106 Risperidone (Actavis) 2 mg film-coated tablet, 60 18531000036102 Risperidone (Actavis) 2 mg film-coated tablet 9261000168107 Risperidone (Actavis) 9261000168107 Risperidone (Actavis) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +803831000168100 Abilify ODT 15 mg orally disintegrating tablet, 98, blister pack 128898 803821000168103 Abilify ODT 15 mg orally disintegrating tablet, 98 803471000168104 Abilify ODT 15 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 803811000168105 aripiprazole 15 mg orally disintegrating tablet, 98 803461000168105 aripiprazole 15 mg orally disintegrating tablet 21675011000036108 aripiprazole +1117531000168102 Donepezil (GH) 10 mg film-coated tablet, 50, blister pack 193667 1117521000168100 Donepezil (GH) 10 mg film-coated tablet, 50 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200911000036101 donepezil hydrochloride 10 mg tablet, 50 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +974031000168108 Pregabalin (Teva) 300 mg hard capsule, 14, blister pack 229603 974021000168105 Pregabalin (Teva) 300 mg hard capsule, 14 974011000168103 Pregabalin (Teva) 300 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +82330011000036103 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent vial), 1 pack, vial 144160 82143011000036103 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent vial), 1 pack 645091000168106 Novoseven RT (inert substance) diluent, 1 mL vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 82534011000036105 eptacog alfa (activated) 1 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +82330011000036103 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent vial), 1 pack, vial 144160 82143011000036103 Novoseven RT (1 x 1 mg vial, 1 x 1 mL inert diluent vial), 1 pack 82012011000036106 Novoseven RT (eptacog alfa (activated) 1 mg) powder for injection, vial 12861000168102 Novoseven RT 12861000168102 Novoseven RT 82534011000036105 eptacog alfa (activated) 1 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 82442011000036109 eptacog alfa (activated) 1 mg injection, vial 44889011000036101 eptacog alfa (activated) +838121000168109 Pneumovax-23 injection solution, 10 x 0.5 mL vials 10507 838111000168102 Pneumovax-23 injection solution, 10 x 0.5 mL vials 838061000168103 Pneumovax-23 injection solution, 0.5 mL vial 57241000168107 Pneumovax-23 57241000168107 Pneumovax-23 838101000168100 pneumococcal 23 valent vaccine injection, 10 x 0.5 mL vials 838051000168100 pneumococcal 23 valent vaccine injection, 0.5 mL vial 838041000168102 pneumococcal 23 valent vaccine +971981000168105 Pregabalin (Apo) 75 mg hard capsule, 14, bottle 193247 970511000168104 Pregabalin (Apo) 75 mg hard capsule, 14 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +19163011000036109 Nicorette 15 mg/16 hours patch, 7, sachet 46060 12462011000036106 Nicorette 15 mg/16 hours patch, 7 5199011000036102 Nicorette 15 mg/16 hours patch 15261000168108 Nicorette 15261000168108 Nicorette 27136011000036103 nicotine 15 mg/16 hours patch, 7 22501011000036106 nicotine 15 mg/16 hours patch 21432011000036100 nicotine +74921011000036106 Rh(D) Immunoglobulin-VF (CSL) 250 units injection solution, 1 vial 76643 74408011000036108 Rh(D) Immunoglobulin-VF (CSL) 250 units injection solution, 1 vial 73930011000036104 Rh(D) Immunoglobulin-VF (CSL) 250 units injection solution, vial 48581000168103 Rh(D) Immunoglobulin-VF (CSL) 48581000168103 Rh(D) Immunoglobulin-VF (CSL) 75505011000036104 anti-D rho immunoglobulin 250 units injection, 1 vial 75104011000036106 anti-D rho immunoglobulin 250 units injection, vial 74975011000036107 anti-D rho immunoglobulin +1005101000168104 Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 186567 1005091000168109 Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 1005081000168106 Ropibam 0.2% 20 mg/10 mL injection solution, 10 mL ampoule 711811000168108 Ropibam 0.2% 711811000168108 Ropibam 0.2% 1004501000168106 ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules 1004481000168102 ropivacaine hydrochloride 20 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +1116481000168102 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 28, blister pack 151628 1116471000168100 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 28 1116421000168101 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 63237011000036101 amlodipine 10 mg + valsartan 160 mg tablet, 28 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +749181000168101 Tacrolimus (AN) 1 mg hard capsule, 10, blister pack 224267 749171000168104 Tacrolimus (AN) 1 mg hard capsule, 10 749161000168105 Tacrolimus (AN) 1 mg hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 749071000168100 tacrolimus 1 mg capsule, 10 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +1100421000168100 Delucon 150 mg film-coated tablet, 60, blister pack 172849 1100411000168107 Delucon 150 mg film-coated tablet, 60 1100371000168106 Delucon 150 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +69471011000036108 Sodium Chloride (Pfizer (Perth)) 0.9% (900 mg/100 mL) intravenous infusion injection, 10 x 100 mL vials 49280 67271011000036102 Sodium Chloride (Pfizer (Perth)) 0.9% (900 mg/100 mL) intravenous infusion injection, 10 x 100 mL vials 65586011000036106 Sodium Chloride (Pfizer (Perth)) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL vial 3918011000036101 Sodium Chloride (Pfizer (Perth)) 3918011000036101 Sodium Chloride (Pfizer (Perth)) 71819011000036100 sodium chloride 0.9% (900 mg/100 mL) injection, 10 x 100 mL vials 70201011000036102 sodium chloride 0.9% (900 mg/100 mL) injection, vial 21308011000036103 sodium chloride +920798011000036109 Amoxycillin/Clavulanic Acid 875/125 (Generic Health) film-coated tablet, 10, strip pack 82832 920477011000036109 Amoxycillin/Clavulanic Acid 875/125 (Generic Health) film-coated tablet, 10 920209011000036108 Amoxycillin/Clavulanic Acid 875/125 (Generic Health) film-coated tablet 52861000168108 Amoxycillin/Clavulanic Acid 875/125 (Generic Health) 52861000168108 Amoxycillin/Clavulanic Acid 875/125 (Generic Health) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +931609011000036103 Pravista 10 mg film-coated tablet, 30, bottle 163560 930770011000036104 Pravista 10 mg film-coated tablet, 30 930040011000036101 Pravista 10 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +68997011000036109 Advate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 136204 66799011000036104 Advate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 633331000168108 Advate (inert substance) diluent, 5 mL vial 65054011000036106 Advate 65054011000036106 Advate 71429011000036102 octocog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +68997011000036109 Advate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, composite pack 136204 66799011000036104 Advate (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 65478011000036106 Advate (octocog alfa 2000 units) powder for injection, 2000 units vial 65054011000036106 Advate 65054011000036106 Advate 71429011000036102 octocog alfa 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 70006011000036100 octocog alfa 2000 units injection, vial 69843011000036100 octocog alfa +59901000036100 Sumatriptan (PS) 50 mg film-coated tablet, 4, blister pack 187213 59021000036109 Sumatriptan (PS) 50 mg film-coated tablet, 4 58251000036103 Sumatriptan (PS) 50 mg film-coated tablet 58151000036105 Sumatriptan (PS) 58151000036105 Sumatriptan (PS) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +60113011000036101 Nurofen Caplet 200 mg sugar coated tablet, 72, blister pack 127287 56072011000036101 Nurofen Caplet 200 mg sugar coated tablet, 72 53777011000036106 Nurofen Caplet 200 mg sugar coated tablet 17551000168104 Nurofen Caplet 17551000168104 Nurofen Caplet 63320011000036106 ibuprofen 200 mg tablet, 72 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +703131000168108 X-Evess (1 x 500 mL Part-1 oral liquid bottle, 1 x 500 mL Part-2 oral liquid bottle), 1 pack 29921 703121000168105 X-Evess (1 x 500 mL Part-1 oral liquid, 1 x 500 mL Part-2 oral liquid), 1 pack 702311000168106 X-Evess Part-1 250 mg/mL oral liquid solution 75948011000036106 X-Evess 702291000168107 X-Evess Part-1 703111000168103 sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack 702301000168108 sodium bicarbonate 250 mg/mL oral liquid 21761011000036107 bicarbonate +703131000168108 X-Evess (1 x 500 mL Part-1 oral liquid bottle, 1 x 500 mL Part-2 oral liquid bottle), 1 pack 29921 703121000168105 X-Evess (1 x 500 mL Part-1 oral liquid, 1 x 500 mL Part-2 oral liquid), 1 pack 702371000168103 X-Evess Part-2 200 mg/mL oral liquid solution 75948011000036106 X-Evess 702351000168107 X-Evess Part-2 703111000168103 sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack 702361000168109 citric acid 200 mg/mL oral liquid 77470011000036106 citric acid +152061000036103 Ceftriaxone (Hospira) 2 g powder for injection, 1 vial 167651 150181000036106 Ceftriaxone (Hospira) 2 g powder for injection, 1 vial 148651000036108 Ceftriaxone (Hospira) 2 g powder for injection, 2 g vial 148061000036102 Ceftriaxone (Hospira) 148061000036102 Ceftriaxone (Hospira) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +140461000036105 Versatis 5% dermal patch, 20, sachet 175178 138981000036107 Versatis 5% dermal patch, 20 137591000036100 Versatis 5% dermal patch 137391000036106 Versatis 137391000036106 Versatis 138991000036109 lidocaine (lignocaine) 5% patch, 20 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +17740011000036109 Tetrabenazine (Orphan) 25 mg uncoated tablet, 112, bottle 13695 11998011000036108 Tetrabenazine (Orphan) 25 mg uncoated tablet, 112 4507011000036105 Tetrabenazine (Orphan) 25 mg uncoated tablet 4162011000036104 Tetrabenazine (Orphan) 4162011000036104 Tetrabenazine (Orphan) 26837011000036107 tetrabenazine 25 mg tablet, 112 22218011000036108 tetrabenazine 25 mg tablet 21497011000036109 tetrabenazine +1117571000168104 Donepezil (GH) 10 mg film-coated tablet, 60, blister pack 193667 1117561000168105 Donepezil (GH) 10 mg film-coated tablet, 60 1117451000168107 Donepezil (GH) 10 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 933200951000036102 donepezil hydrochloride 10 mg tablet, 60 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +662461000168107 Topiramate (GH) 100 mg film-coated tablet, 60, bottle 135797 662451000168105 Topiramate (GH) 100 mg film-coated tablet, 60 662441000168108 Topiramate (GH) 100 mg film-coated tablet 661591000168106 Topiramate (GH) 661591000168106 Topiramate (GH) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +936541000168100 Quinapril (Terry White Chemists) 20 mg film-coated tablet, 30, blister pack 133232 936531000168109 Quinapril (Terry White Chemists) 20 mg film-coated tablet, 30 936521000168106 Quinapril (Terry White Chemists) 20 mg film-coated tablet 936411000168100 Quinapril (Terry White Chemists) 936411000168100 Quinapril (Terry White Chemists) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +50457011000036102 Tubegauz Refill (0501658) bandage, 1, carton 49432011000036107 Tubegauz Refill (0501658) bandage, 1 48519011000036103 Tubegauz Refill (0501658) bandage 47961000168101 Tubegauz Refill (0501658) 47961000168101 Tubegauz Refill (0501658) 51400011000036102 bandage tubular finger bandage, 1 50920011000036104 bandage tubular finger bandage 50768011000036103 bandage tubular finger +61290011000036100 Paracetamol Children 1 to 5 Years (Terry White Chemists) colour free 120 mg/5 mL oral liquid suspension, 100 mL, bottle 78707 57226011000036105 Paracetamol Children 1 to 5 Years (Terry White Chemists) colour free 120 mg/5 mL oral liquid suspension, 100 mL 54246011000036101 Paracetamol Children 1 to 5 Years (Terry White Chemists) colour free 120 mg/5 mL oral liquid suspension, 5 mL 30411000168107 Paracetamol Children 1 to 5 Years (Terry White Chemists) 30411000168107 Paracetamol Children 1 to 5 Years (Terry White Chemists) 26846011000036108 paracetamol 120 mg/5 mL oral liquid, 100 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +933230931000036102 Famciclovir (Apo) 500 mg film-coated tablet, 14, bottle 172445 933224981000036108 Famciclovir (Apo) 500 mg film-coated tablet, 14 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 86443011000036101 famciclovir 500 mg tablet, 14 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +160651000036102 Sotalol Hydrochloride (Apo) 160 mg uncoated tablet, 60, bottle 73846 159571000036105 Sotalol Hydrochloride (Apo) 160 mg uncoated tablet, 60 158091000036107 Sotalol Hydrochloride (Apo) 160 mg uncoated tablet 157711000036101 Sotalol Hydrochloride (Apo) 157711000036101 Sotalol Hydrochloride (Apo) 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +790901000168109 Quetiapine XR (AS) 400 mg modified release tablet, 100, blister pack 226819 790891000168105 Quetiapine XR (AS) 400 mg modified release tablet, 100 790781000168103 Quetiapine XR (AS) 400 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51539011000036109 quetiapine 400 mg modified release tablet, 100 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +907751000168100 Celecoxib (LAPL) 100 mg hard capsule, 10, blister pack 196179 907741000168102 Celecoxib (LAPL) 100 mg hard capsule, 10 907731000168106 Celecoxib (LAPL) 100 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +60391011000036106 Dozile 25 mg tablet, 20, blister pack 143861 56350011000036103 Dozile 25 mg tablet, 20 53886011000036104 Dozile 25 mg tablet 53226011000036101 Dozile 53226011000036101 Dozile 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +59861000036108 Cyclosporin (Sandoz) 25 mg soft capsule, 30, blister pack 186358 58971000036103 Cyclosporin (Sandoz) 25 mg soft capsule, 30 58331000036104 Cyclosporin (Sandoz) 25 mg soft capsule 58081000036102 Cyclosporin (Sandoz) 58081000036102 Cyclosporin (Sandoz) 27972011000036102 ciclosporin 25 mg capsule, 30 23296011000036100 ciclosporin 25 mg capsule 21379011000036104 ciclosporin +69314011000036107 Riotane Concentrate 5% solution, 5 L, bottle 21201 67114011000036108 Riotane Concentrate 5% solution, 5 L 65424011000036103 Riotane Concentrate 5% solution 25881000168108 Riotane Concentrate 25881000168108 Riotane Concentrate 71681011000036107 chlorhexidine gluconate 5% solution, 5 L 70121011000036105 chlorhexidine gluconate 5% solution 21404011000036101 chlorhexidine +60610011000036108 Demazin 6 Hour uncoated tablet, 12, blister pack 18815 56568011000036109 Demazin 6 Hour uncoated tablet, 12 53977011000036103 Demazin 6 Hour uncoated tablet 42401000168107 Demazin 6 Hour 42401000168107 Demazin 6 Hour 63429011000036105 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg tablet, 12 61958011000036106 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg tablet 61737011000036102 pseudoephedrine + chlorphenamine +666641000168109 Salbutamol (Actavis) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135469 666631000168100 Salbutamol (Actavis) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 666621000168103 Salbutamol (Actavis) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 666581000168103 Salbutamol (Actavis) 666581000168103 Salbutamol (Actavis) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +59786011000036104 Dymadon 500 mg uncoated tablet, 100, blister pack 114074 55748011000036102 Dymadon 500 mg uncoated tablet, 100 53700011000036100 Dymadon 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18666011000036101 Diapride 1 mg uncoated tablet, 30, blister pack 107344 11372011000036105 Diapride 1 mg uncoated tablet, 30 5896011000036103 Diapride 1 mg uncoated tablet 3696011000036100 Diapride 3696011000036100 Diapride 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +921953011000036109 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 20 mL vial 47066 921511011000036108 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 20 mL vial 921049011000036102 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 20 mL vial 5231000168102 Isovue-300 5231000168102 Isovue-300 922633011000036107 iopamidol 612 mg (iodine 300 mg)/mL injection, 20 mL vial 922121011000036105 iopamidol 612 mg (iodine 300 mg)/mL injection, 20 mL vial 77457011000036105 iopamidol +929141000168102 Somac 40 mg enteric tablet, 15, blister pack 69792 41850011000036108 Somac 40 mg enteric tablet, 15 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46656011000036103 pantoprazole 40 mg enteric tablet, 15 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1037171000168108 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 6, blister pack 173507 1037161000168102 Atorvastatin (Ranbaxy) 80 mg film-coated tablet, 6 1036471000168100 Atorvastatin (Ranbaxy) 80 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 840961000168104 atorvastatin 80 mg tablet, 6 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +69412011000036108 Microshield-2 2% solution, 1.5 L, bag 47523 67212011000036102 Microshield-2 2% solution, 1.5 L 65559011000036105 Microshield-2 2% solution 23741000168105 Microshield-2 23741000168105 Microshield-2 71763011000036102 chlorhexidine gluconate 2% solution, 1.5 L 70177011000036101 chlorhexidine gluconate 2% solution 21404011000036101 chlorhexidine +766261000168102 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 6 x 0.6 mL syringes 67149 766251000168104 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 6 x 0.6 mL syringes 766201000168103 Fraxiparine Forte 11 400 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766241000168101 nadroparin calcium 11 400 anti-Xa units/0.6 mL injection, 6 x 0.6 mL syringes 766191000168101 nadroparin calcium 11 400 anti-Xa units/0.6 mL injection, syringe 765071000168107 nadroparin +52187011000036100 Salicylic Acid APF (extemporaneous) 2% ointment, 100 g, screw cap jar 52075011000036105 Salicylic Acid APF (extemporaneous) 2% ointment, 100 g 51976011000036108 Salicylic Acid APF (extemporaneous) 2% ointment 63591000168101 Salicylic Acid APF (extemporaneous) 63591000168101 Salicylic Acid APF (extemporaneous) 52322011000036104 salicylic acid 2% ointment, 100 g 52254011000036103 salicylic acid 2% ointment 52232011000036106 salicylic acid +737451000168105 Candesartan HCT 16/12.5 (Auro) uncoated tablet, 30, blister pack 199106 737441000168108 Candesartan HCT 16/12.5 (Auro) uncoated tablet, 30 737431000168104 Candesartan HCT 16/12.5 (Auro) uncoated tablet 737421000168102 Candesartan HCT 16/12.5 (Auro) 737421000168102 Candesartan HCT 16/12.5 (Auro) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1034111000168106 Atomoxetine (CH) 10 mg hard capsule, 14, blister pack 234831 1034101000168108 Atomoxetine (CH) 10 mg hard capsule, 14 1034071000168104 Atomoxetine (CH) 10 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 829921000168103 atomoxetine 10 mg capsule, 14 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1117731000168106 Donepezil (GH) 5 mg film-coated tablet, 14, blister pack 193661 1117721000168108 Donepezil (GH) 5 mg film-coated tablet, 14 1117711000168101 Donepezil (GH) 5 mg film-coated tablet 1117431000168101 Donepezil (GH) 1117431000168101 Donepezil (GH) 1011711000168102 donepezil hydrochloride 5 mg tablet, 14 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +59541000036109 Dencorub Pain Relieving Heat dermal patch, 3, sachet 124857 58711000036107 Dencorub Pain Relieving Heat dermal patch, 3 58271000036108 Dencorub Pain Relieving Heat dermal patch 48321000036104 Dencorub Pain Relieving Heat 48321000036104 Dencorub Pain Relieving Heat 58721000036100 camphor 450 microgram/square cm + menthol 360 microgram/square cm + methyl salicylate 720 microgram/square cm patch, 3 58281000036105 camphor 450 microgram/square cm + menthol 360 microgram/square cm + methyl salicylate 720 microgram/square cm patch 56831000036106 camphor + menthol + methyl salicylate +69344011000036101 Hyalase 1500 units powder for injection, 5 ampoules 27749 67144011000036102 Hyalase 1500 units powder for injection, 5 ampoules 65260011000036104 Hyalase 1500 units powder for injection, 1500 units ampoule 65023011000036108 Hyalase 65023011000036108 Hyalase 71709011000036100 hyaluronidase 1500 units injection, 5 ampoules 70141011000036108 hyaluronidase 1500 units injection, ampoule 69795011000036106 hyaluronidase +37478011000036101 Zantac 50 mg/2 mL injection solution, 5 x 2 mL ampoules 12536 36746011000036109 Zantac 50 mg/2 mL injection solution, 5 x 2 mL ampoules 36109011000036100 Zantac 50 mg/2 mL injection solution, 2 mL ampoule 3563011000036102 Zantac 3563011000036102 Zantac 38654011000036104 ranitidine 50 mg/2 mL injection, 5 x 2 mL ampoules 37907011000036106 ranitidine 50 mg/2 mL injection, ampoule 21682011000036109 ranitidine +13501000036101 Delucon 300 mg film-coated tablet, 60, blister pack 172837 8691000036102 Delucon 300 mg film-coated tablet, 60 1761000036105 Delucon 300 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +885821000168103 Sitagliptin (Blooms The Chemist) 25 mg coated tablet, 28, blister pack 224387 885811000168105 Sitagliptin (Blooms The Chemist) 25 mg coated tablet, 28 885801000168107 Sitagliptin (Blooms The Chemist) 25 mg coated tablet 885731000168107 Sitagliptin (Blooms The Chemist) 885731000168107 Sitagliptin (Blooms The Chemist) 39485011000036105 sitagliptin 25 mg tablet, 28 39439011000036103 sitagliptin 25 mg tablet 39426011000036109 sitagliptin +962181000168108 Ciprofloxacin (GA) 250 mg film-coated tablet, 8, blister pack 148854 962171000168105 Ciprofloxacin (GA) 250 mg film-coated tablet, 8 962161000168104 Ciprofloxacin (GA) 250 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 932364011000036107 ciprofloxacin 250 mg tablet, 8 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +87710011000036107 Galantyl 8 mg modified release capsule, 28, blister pack 157934 87453011000036102 Galantyl 8 mg modified release capsule, 28 87317011000036107 Galantyl 8 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 28248011000036107 galantamine 8 mg modified release capsule, 28 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +972341000168109 Lyzalon 75 mg hard capsule, 56, bottle 224428 972331000168100 Lyzalon 75 mg hard capsule, 56 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +944971000168109 Risperidone (Terry White Chemists) 4 mg film-coated tablet, 60, blister pack 127600 944961000168103 Risperidone (Terry White Chemists) 4 mg film-coated tablet, 60 944951000168100 Risperidone (Terry White Chemists) 4 mg film-coated tablet 944371000168108 Risperidone (Terry White Chemists) 944371000168108 Risperidone (Terry White Chemists) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +749091000168104 Tacoccord 1 mg hard capsule, 10, blister pack 224268 749081000168102 Tacoccord 1 mg hard capsule, 10 749061000168106 Tacoccord 1 mg hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 749071000168100 tacrolimus 1 mg capsule, 10 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +1070281000168101 Cold and Flu Day (Cipla) uncoated tablet, 24, blister pack 216069 1070271000168104 Cold and Flu Day (Cipla) uncoated tablet, 24 1070211000168107 Cold and Flu Day (Cipla) uncoated tablet 1070201000168109 Cold and Flu Day (Cipla) 1070201000168109 Cold and Flu Day (Cipla) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +60159011000036109 Fluzole One 150 mg hard capsule, 1, blister pack 130026 56118011000036101 Fluzole One 150 mg hard capsule, 1 53797011000036102 Fluzole One 150 mg hard capsule 51071000168100 Fluzole One 51071000168100 Fluzole One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +45651000036106 Quetiapine (Stada) 100 mg film-coated tablet, 90, blister pack 170851 42961000036106 Quetiapine (Stada) 100 mg film-coated tablet, 90 41361000036104 Quetiapine (Stada) 100 mg film-coated tablet 40401000036101 Quetiapine (Stada) 40401000036101 Quetiapine (Stada) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1117691000168104 Leflunomide (Generic Health) 10 mg film-coated tablet, 30, bottle 210920 1117681000168102 Leflunomide (Generic Health) 10 mg film-coated tablet, 30 1117671000168100 Leflunomide (Generic Health) 10 mg film-coated tablet 1115131000168102 Leflunomide (Generic Health) 1115131000168102 Leflunomide (Generic Health) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +920680011000036104 Citalopram (Sandoz) 40 mg film-coated tablet, 28, bottle 107062 920357011000036100 Citalopram (Sandoz) 40 mg film-coated tablet, 28 920127011000036109 Citalopram (Sandoz) 40 mg film-coated tablet 920080011000036109 Citalopram (Sandoz) 920080011000036109 Citalopram (Sandoz) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +999631000168109 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 195218 999621000168106 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 999551000168104 Drospirenone/EE 3/30 (Apotex) (inert substance) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999631000168109 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28, blister packs 195218 999621000168106 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 2 x 28 999541000168101 Drospirenone/EE 3/30 (Apotex) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 767471000168109 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 2 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +1116361000168101 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 7, blister pack 158167 1116351000168103 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 7 1116341000168100 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 922593011000036106 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 7 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +104451000036108 Ondansetron (Kabi) 4 mg/2 mL injection solution, 2 mL ampoule 191018 101631000036101 Ondansetron (Kabi) 4 mg/2 mL injection solution, 2 mL ampoule 99341000036108 Ondansetron (Kabi) 4 mg/2 mL injection solution, 2 mL ampoule 97751000036101 Ondansetron (Kabi) 97751000036101 Ondansetron (Kabi) 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +1109101000168109 Nicotinell Tropical Fruit 2 mg chewing gum, 120, blister pack 279617 1109091000168104 Nicotinell Tropical Fruit 2 mg chewing gum, 120 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71509011000036101 nicotine 2 mg gum, 120 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +942071000168104 Sodium Valproate EC (Sanofi) 500 mg enteric tablet, 20, blister pack 140155 942061000168105 Sodium Valproate EC (Sanofi) 500 mg enteric tablet, 20 942011000168107 Sodium Valproate EC (Sanofi) 500 mg enteric tablet 942001000168109 Sodium Valproate EC (Sanofi) 942001000168109 Sodium Valproate EC (Sanofi) 942051000168108 valproate sodium 500 mg enteric tablet, 20 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +1109141000168106 Cloap 75/100 uncoated tablet, 4, blister pack 219058 1109131000168102 Cloap 75/100 uncoated tablet, 4 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82550011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 4 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +19860011000036107 Biodone Forte 5 mg/mL oral liquid solution, 1 L, bottle 64800 13107011000036102 Biodone Forte 5 mg/mL oral liquid solution, 1 L 6391011000036109 Biodone Forte 5 mg/mL oral liquid solution 26611000168109 Biodone Forte 26611000168109 Biodone Forte 27550011000036109 methadone hydrochloride 5 mg/mL oral liquid, 1 L 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +756261000168109 Tecfidera 120 mg enteric capsule, 14, blister pack 197118 756251000168107 Tecfidera 120 mg enteric capsule, 14 756231000168101 Tecfidera 120 mg enteric capsule 143361000036109 Tecfidera 143361000036109 Tecfidera 756241000168105 dimethyl fumarate 120 mg enteric capsule, 14 756221000168104 dimethyl fumarate 120 mg enteric capsule 146501000036107 dimethyl fumarate +34625011000036100 Pethidine Hydrochloride (DBL) 50 mg/mL injection solution, 50 x 1 mL ampoules 107386 34211011000036106 Pethidine Hydrochloride (DBL) 50 mg/mL injection solution, 50 x 1 mL ampoules 33963011000036107 Pethidine Hydrochloride (DBL) 50 mg/mL injection solution, ampoule 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35096011000036104 pethidine hydrochloride 50 mg/mL injection, 50 x 1 mL ampoules 34847011000036100 pethidine hydrochloride 50 mg/mL injection, ampoule 34839011000036106 pethidine +1071651000168103 Cold and Flu PE Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48, blister pack 158504 1071641000168100 Cold and Flu PE Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48 1071611000168104 Cold and Flu PE Day and Night (Night) (Pharmacist) uncoated tablet 1071591000168109 Cold and Flu PE Day and Night (Pharmacist) 1067461000168100 Cold and Flu PE Day and Night (Night) (Pharmacist) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1071651000168103 Cold and Flu PE Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48, blister pack 158504 1071641000168100 Cold and Flu PE Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48 1071601000168102 Cold and Flu PE Day and Night (Day) (Pharmacist) uncoated tablet 1071591000168109 Cold and Flu PE Day and Night (Pharmacist) 1067431000168108 Cold and Flu PE Day and Night (Day) (Pharmacist) 84647011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [32] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [16], 48 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +973671000168102 Pregabalin (GH) 75 mg hard capsule, 56, blister pack 215683 973661000168108 Pregabalin (GH) 75 mg hard capsule, 56 973571000168101 Pregabalin (GH) 75 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1025571000168105 Bisolvon Dry Kids 10 mg/5 mL oral liquid, 125 mL, bottle 176543 1025561000168104 Bisolvon Dry Kids 10 mg/5 mL oral liquid, 125 mL 1025551000168101 Bisolvon Dry Kids 10 mg/5 mL oral liquid, 5 mL 1025541000168103 Bisolvon Dry Kids 1025541000168103 Bisolvon Dry Kids 63683011000036104 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 125 mL 62045011000036105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61744011000036109 dextromethorphan +60737011000036108 Panadol Cold and Flu film-coated tablet, 4, blister pack 49566 56695011000036109 Panadol Cold and Flu film-coated tablet, 4 54037011000036107 Panadol Cold and Flu film-coated tablet 3791000168106 Panadol Cold and Flu 3791000168106 Panadol Cold and Flu 63513011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet, 4 62103011000036106 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + dextromethorphan hydrobromide monohydrate 15 mg tablet 61745011000036108 paracetamol + pseudoephedrine + dextromethorphan +33611011000036106 Vaxigrip Junior 2008 injection solution, 1 x 0.25 mL syringe 97971 33349011000036106 Vaxigrip Junior 2008 injection solution, 1 x 0.25 mL syringe 33109011000036107 Vaxigrip Junior 2008 injection solution, 0.25 mL syringe 14461000168105 Vaxigrip Junior 2008 14461000168105 Vaxigrip Junior 2008 33826011000036102 influenza trivalent child vaccine 2008 injection, 1 x 0.25 mL syringe 33692011000036101 influenza trivalent child vaccine 2008 injection, 0.25 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +91611000036100 Cold and Flu Relief Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24, blister pack 192702 90081000036106 Cold and Flu Relief Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24 88261000036107 Cold and Flu Relief Day and Night (Night) (Pharmacy Action) uncoated tablet 87641000036109 Cold and Flu Relief Day and Night (Pharmacy Action) 59421000168109 Cold and Flu Relief Day and Night (Night) (Pharmacy Action) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +91611000036100 Cold and Flu Relief Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24, blister pack 192702 90081000036106 Cold and Flu Relief Day and Night (Pharmacy Action) (16 x Day tablets, 8 x Night tablets), 24 88231000036101 Cold and Flu Relief Day and Night (Day) (Pharmacy Action) uncoated tablet 87641000036109 Cold and Flu Relief Day and Night (Pharmacy Action) 59541000168102 Cold and Flu Relief Day and Night (Day) (Pharmacy Action) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +19831011000036108 Tramal 50 mg hard capsule, 20, blister pack 64011 13082011000036107 Tramal 50 mg hard capsule, 20 6366011000036102 Tramal 50 mg hard capsule 24551000168102 Tramal 24551000168102 Tramal 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +928901011000036106 Calciprox 0.25 microgram soft capsule, 100, bottle 149505 928263011000036109 Calciprox 0.25 microgram soft capsule, 100 927912011000036109 Calciprox 0.25 microgram soft capsule 927820011000036105 Calciprox 927820011000036105 Calciprox 28325011000036106 calcitriol 0.25 microgram capsule, 100 23637011000036106 calcitriol 0.25 microgram capsule 21881011000036108 calcitriol +1116321000168106 Telmisartan/Amlodipine 40/10 (Apo) uncoated tablet, 28, blister pack 276427 1116311000168104 Telmisartan/Amlodipine 40/10 (Apo) uncoated tablet, 28 1116301000168102 Telmisartan/Amlodipine 40/10 (Apo) uncoated tablet 1116231000168102 Telmisartan/Amlodipine 40/10 (Apo) 1116231000168102 Telmisartan/Amlodipine 40/10 (Apo) 932428011000036101 telmisartan 40 mg + amlodipine 10 mg tablet, 28 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +104611000036107 Donepezil Hydrochloride (GA) 10 mg film-coated tablet, 28, blister pack 193666 101871000036103 Donepezil Hydrochloride (GA) 10 mg film-coated tablet, 28 98531000036103 Donepezil Hydrochloride (GA) 10 mg film-coated tablet 98061000036104 Donepezil Hydrochloride (GA) 98061000036104 Donepezil Hydrochloride (GA) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +861391000168107 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2, blister pack 133507 861381000168109 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2 861361000168100 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 861371000168106 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +777851000168106 Lanzek Zydis 10 mg wafer, 7, blister pack 167688 777841000168109 Lanzek Zydis 10 mg wafer, 7 2491000036102 Lanzek Zydis 10 mg wafer 60181000168101 Lanzek Zydis 60181000168101 Lanzek Zydis 933205231000036105 olanzapine 10 mg wafer, 7 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +736081000168105 Aerius for Children Syrup 500 microgram/mL oral liquid solution, 60 mL, bottle 97260 736071000168107 Aerius for Children Syrup 500 microgram/mL oral liquid solution, 60 mL 736051000168103 Aerius for Children Syrup 500 microgram/mL oral liquid solution 736041000168100 Aerius for Children Syrup 736041000168100 Aerius for Children Syrup 736061000168101 desloratadine 500 microgram/mL oral liquid, 60 mL 62105011000036107 desloratadine 500 microgram/mL oral liquid 61723011000036109 desloratadine +825381000168102 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials 123709 825371000168100 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials 825321000168101 Engerix-B Adult 20 microgram/mL injection suspension, vial 33491000168108 Engerix-B Adult 33491000168108 Engerix-B Adult 825361000168106 hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL vials 825311000168108 hepatitis B adult vaccine 20 microgram/mL injection, vial 825191000168101 hepatitis B vaccine +79006011000036104 Momex SR 60 mg modified release tablet, 20, blister pack 132257 78808011000036104 Momex SR 60 mg modified release tablet, 20 78630011000036101 Momex SR 60 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 27108011000036105 morphine sulfate pentahydrate 60 mg modified release tablet, 20 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +59675011000036107 Anti-Fungal (Amcal) 1% cream, 10 g, tube 102019 55673011000036102 Anti-Fungal (Amcal) 1% cream, 10 g 53621011000036108 Anti-Fungal (Amcal) 1% cream 53464011000036101 Anti-Fungal (Amcal) 53464011000036101 Anti-Fungal (Amcal) 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +45561000036105 Meloxicam (PS) 7.5 mg uncoated tablet, 30, blister pack 189817 43691000036103 Meloxicam (PS) 7.5 mg uncoated tablet, 30 41121000036105 Meloxicam (PS) 7.5 mg uncoated tablet 40151000036106 Meloxicam (PS) 40151000036106 Meloxicam (PS) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +933411000168106 Centevo 150/37.5/200 mg film-coated tablet, 200, bottle 238857 933401000168108 Centevo 150/37.5/200 mg film-coated tablet, 200 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933391000168106 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 200 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +970861000168104 Lypralin 300 mg hard capsule, 56, bottle 235848 970061000168105 Lypralin 300 mg hard capsule, 56 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +972301000168107 Lyzalon 75 mg hard capsule, 14, bottle 224428 972291000168106 Lyzalon 75 mg hard capsule, 14 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854821000168106 pregabalin 75 mg capsule, 14 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +25381000036105 Vfend 40 mg/mL powder for oral liquid, 70 mL, bottle 99016 23161000036103 Vfend 40 mg/mL powder for oral liquid, 70 mL 20331000036103 Vfend 40 mg/mL powder for oral liquid 39743011000036106 Vfend 39743011000036106 Vfend 47004011000036107 voriconazole 40 mg/mL powder for oral liquid, 70 mL 45371011000036100 voriconazole 40 mg/mL powder for oral liquid 44875011000036105 voriconazole +700111000168107 Gemcitabine (Kabi) 200 mg/5.26 mL concentrated injection, 5.26 mL vial 214724 700101000168109 Gemcitabine (Kabi) 200 mg/5.26 mL concentrated injection, 5.26 mL vial 700081000168102 Gemcitabine (Kabi) 200 mg/5.26 mL concentrated injection, 5.26 mL vial 924404011000036105 Gemcitabine (Kabi) 924404011000036105 Gemcitabine (Kabi) 700091000168104 gemcitabine 200 mg/5.26 mL injection, 5.26 mL vial 700071000168100 gemcitabine 200 mg/5.26 mL injection, vial 21644011000036108 gemcitabine +751921000168103 Celestone Chronodose injection suspension, 2 x 1 mL ampoules 18777 751911000168105 Celestone Chronodose injection suspension, 2 x 1 mL ampoules 746321000168108 Celestone Chronodose injection suspension, ampoule 32996011000036108 Celestone Chronodose 32996011000036108 Celestone Chronodose 751901000168107 betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, 2 x 1 mL ampoules 746311000168101 betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, ampoule 21539011000036104 betamethasone acetate + betamethasone sodium phosphate +20315011000036102 PV Carpine 0.5% eye drops solution, 15 mL, bottle 75891 13524011000036106 PV Carpine 0.5% eye drops solution, 15 mL 6807011000036100 PV Carpine 0.5% eye drops solution 3091011000036103 PV Carpine 3091011000036103 PV Carpine 27787011000036100 pilocarpine hydrochloride 0.5% eye drops, 15 mL 23117011000036103 pilocarpine hydrochloride 0.5% eye drops 21254011000036109 pilocarpine +907471000168103 Celecoxib (Lupin) 100 mg hard capsule, 50, blister pack 196181 907451000168107 Celecoxib (Lupin) 100 mg hard capsule, 50 907321000168109 Celecoxib (Lupin) 100 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +61398011000036108 Day plus Night Cold and Flu (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24, blister pack 82115 57323011000036109 Day plus Night Cold and Flu (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24 54274011000036105 Day plus Night Cold and Flu (Night) (Pharmacy Health) uncoated tablet 23551000168104 Day plus Night Cold and Flu (Pharmacy Health) 23781000168100 Day plus Night Cold and Flu (Night) (Pharmacy Health) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +61398011000036108 Day plus Night Cold and Flu (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24, blister pack 82115 57323011000036109 Day plus Night Cold and Flu (Pharmacy Health) (16 x Day tablets, 8 x Night tablets), 24 54273011000036108 Day plus Night Cold and Flu (Day) (Pharmacy Health) uncoated tablet 23551000168104 Day plus Night Cold and Flu (Pharmacy Health) 23661000168101 Day plus Night Cold and Flu (Day) (Pharmacy Health) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +20344011000036107 Salbutamol (Chemmart) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 76221 13553011000036105 Salbutamol (Chemmart) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 6835011000036104 Salbutamol (Chemmart) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 4033011000036107 Salbutamol (Chemmart) 4033011000036107 Salbutamol (Chemmart) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +976641000168101 Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL, bottle 134280 976631000168105 Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL 976611000168100 Compound Benzoin Friar's Balsam (Orion) tincture 696391000168106 Compound Benzoin Friar's Balsam (Orion) 696391000168106 Compound Benzoin Friar's Balsam (Orion) 976621000168107 benzoin Sumatra 100 mg/mL + storax prepared 100 mg/mL + Aloes cape 20 mg/mL tincture, 50 mL 976601000168103 benzoin Sumatra 100 mg/mL + storax prepared 100 mg/mL + Aloes cape 20 mg/mL tincture 688381000168106 benzoin Sumatra + storax prepared + Aloes cape +653961000168100 Methylpred 500 mg powder for injection, 1 vial 145103 653951000168102 Methylpred 500 mg powder for injection, 1 vial 653931000168108 Methylpred 500 mg powder for injection, 500 mg vial 653921000168105 Methylpred 653921000168105 Methylpred 653941000168104 methylprednisolone 500 mg injection, 1 vial 37894011000036107 methylprednisolone 500 mg injection, vial 21605011000036100 methylprednisolone +691411000168101 Amiodarone Hydrochloride (Actavis) 200 mg uncoated tablet, 30, blister pack 217420 691401000168104 Amiodarone Hydrochloride (Actavis) 200 mg uncoated tablet, 30 691391000168101 Amiodarone Hydrochloride (Actavis) 200 mg uncoated tablet 691381000168104 Amiodarone Hydrochloride (Actavis) 691381000168104 Amiodarone Hydrochloride (Actavis) 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +59769011000036105 Advil 200 mg sugar coated tablet, 40, blister pack 104221 55688011000036102 Advil 200 mg sugar coated tablet, 40 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1071811000168103 Logicin Cold and Flu Day/Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 176237 1071801000168101 Logicin Cold and Flu Day/Night (16 x Day tablets, 8 x Night tablets), 24 1071781000168100 Logicin Cold and Flu Day/Night (Day) film-coated tablet 1071751000168107 Logicin Cold and Flu Day/Night 1071761000168109 Logicin Cold and Flu Day/Night (Day) 63252011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62109011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +1071811000168103 Logicin Cold and Flu Day/Night (16 x Day tablets, 8 x Night tablets), 24, blister pack 176237 1071801000168101 Logicin Cold and Flu Day/Night (16 x Day tablets, 8 x Night tablets), 24 1071791000168102 Logicin Cold and Flu Day/Night (Night) film-coated tablet 1071751000168107 Logicin Cold and Flu Day/Night 1071771000168103 Logicin Cold and Flu Day/Night (Night) 63252011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +19830011000036101 Tramal 100 mg/2 mL injection solution, 5 x 2 mL ampoules 64010 13081011000036101 Tramal 100 mg/2 mL injection solution, 5 x 2 mL ampoules 6365011000036109 Tramal 100 mg/2 mL injection solution, 2 mL ampoule 24551000168102 Tramal 24551000168102 Tramal 27537011000036109 tramadol hydrochloride 100 mg/2 mL injection, 5 x 2 mL ampoules 22877011000036109 tramadol hydrochloride 100 mg/2 mL injection, ampoule 21486011000036105 tramadol +764941000168100 Ursodox (Lupin) 250 mg hard capsule, 100, blister pack 232484 764931000168109 Ursodox (Lupin) 250 mg hard capsule, 100 764901000168102 Ursodox (Lupin) 250 mg hard capsule 764881000168104 Ursodox (Lupin) 764881000168104 Ursodox (Lupin) 27577011000036107 ursodeoxycholic acid 250 mg capsule, 100 22916011000036105 ursodeoxycholic acid 250 mg capsule 21849011000036102 ursodeoxycholic acid +907431000168101 Celecoxib (Lupin) 100 mg hard capsule, 30, blister pack 196181 907421000168104 Celecoxib (Lupin) 100 mg hard capsule, 30 907321000168109 Celecoxib (Lupin) 100 mg hard capsule 906351000168103 Celecoxib (Lupin) 906351000168103 Celecoxib (Lupin) 907411000168106 celecoxib 100 mg capsule, 30 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +60207011000036109 Dry Cough Mixture (Pharmacy Choice) oral liquid solution, 200 mL, bottle 132943 56166011000036104 Dry Cough Mixture (Pharmacy Choice) oral liquid solution, 200 mL 53815011000036109 Dry Cough Mixture (Pharmacy Choice) oral liquid solution, 5 mL 43051000168106 Dry Cough Mixture (Pharmacy Choice) 43051000168106 Dry Cough Mixture (Pharmacy Choice) 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +44264011000036107 Singulair 10 mg film-coated tablet, 28, blister pack 61846 41735011000036100 Singulair 10 mg film-coated tablet, 28 40173011000036103 Singulair 10 mg film-coated tablet 4287011000036103 Singulair 4287011000036103 Singulair 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +20799011000036100 Isotretinoin (Terry White Chemists) 20 mg soft capsule, 60, blister pack 91350 13965011000036105 Isotretinoin (Terry White Chemists) 20 mg soft capsule, 60 7251011000036106 Isotretinoin (Terry White Chemists) 20 mg soft capsule 3769011000036103 Isotretinoin (Terry White Chemists) 3769011000036103 Isotretinoin (Terry White Chemists) 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +979651000168109 Zomig 5 mg film-coated tablet, 2, blister pack 61326 979641000168107 Zomig 5 mg film-coated tablet, 2 979621000168101 Zomig 5 mg film-coated tablet 3430011000036105 Zomig 3430011000036105 Zomig 979631000168103 zolmitriptan 5 mg tablet, 2 979611000168108 zolmitriptan 5 mg tablet 21516011000036102 zolmitriptan +59723011000036104 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 48, blister pack 100402 55636011000036105 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet, 48 53721011000036102 Paracetamol Minitab (Pharmacy Health) 500 mg film-coated tablet 10731000168102 Paracetamol Minitab (Pharmacy Health) 10731000168102 Paracetamol Minitab (Pharmacy Health) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +17838011000036105 Filpril 20 mg film-coated tablet, 30, blister pack 123436 11742011000036105 Filpril 20 mg film-coated tablet, 30 4809011000036104 Filpril 20 mg film-coated tablet 2908011000036108 Filpril 2908011000036108 Filpril 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +771971000168104 Clinoleic 20% injection emulsion, 20 x 250 mL bags 97537 771961000168105 Clinoleic 20% injection emulsion, 20 x 250 mL bags 771761000168107 Clinoleic 20% injection emulsion, 250 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 771951000168108 olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 20 x 250 mL bags 771751000168105 olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, bag 926971011000036108 olive oil + soya oil +933230611000036102 Valaciclovir (Generic Health) 500 mg film-coated tablet, 100, blister pack 170178 933224671000036103 Valaciclovir (Generic Health) 500 mg film-coated tablet, 100 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1109261000168104 Cloap 75/100 uncoated tablet, 28, blister pack 219058 1109251000168101 Cloap 75/100 uncoated tablet, 28 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82547011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 28 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +81188011000036103 Vicks Cough Syrup for Chesty Coughs 200 mg/15 mL oral liquid solution, 180 mL, bottle 74809 80690011000036109 Vicks Cough Syrup for Chesty Coughs 200 mg/15 mL oral liquid solution, 180 mL 80238011000036101 Vicks Cough Syrup for Chesty Coughs 200 mg/15 mL oral liquid solution, 15 mL 80131011000036108 Vicks Cough Syrup for Chesty Coughs 80131011000036108 Vicks Cough Syrup for Chesty Coughs 81756011000036101 guaifenesin 200 mg/15 mL oral liquid, 180 mL 81308011000036108 guaifenesin 200 mg/15 mL oral liquid 61763011000036101 guaifenesin +931560011000036104 Cholpra 10 mg film-coated tablet, 100, bottle 163542 930721011000036107 Cholpra 10 mg film-coated tablet, 100 930028011000036101 Cholpra 10 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932414011000036100 pravastatin sodium 10 mg tablet, 100 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +1048771000168109 Bupretec 25 microgram/hour patch, 2, sachet 234734 1048761000168103 Bupretec 25 microgram/hour patch, 2 1048751000168100 Bupretec 25 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 775931000168100 buprenorphine 25 microgram/hour patch, 2 775911000168105 buprenorphine 25 microgram/hour patch 21232011000036101 buprenorphine +926934011000036109 Anti-Inflammatory Pain Relief (Pharmacy Health) 1% gel, 50 g, tube 92107 926328011000036109 Anti-Inflammatory Pain Relief (Pharmacy Health) 1% gel, 50 g 925764011000036105 Anti-Inflammatory Pain Relief (Pharmacy Health) 1% gel 60861000168100 Anti-Inflammatory Pain Relief (Pharmacy Health) 60861000168100 Anti-Inflammatory Pain Relief (Pharmacy Health) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +753201000168100 Oxycodone (GX) 5 mg hard capsule, 20, blister pack 227847 753191000168103 Oxycodone (GX) 5 mg hard capsule, 20 753181000168101 Oxycodone (GX) 5 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +44778011000036102 Reminyl 24 mg modified release capsule, 300, bottle 97886 42223011000036105 Reminyl 24 mg modified release capsule, 300 7537011000036106 Reminyl 24 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46983011000036101 galantamine 24 mg modified release capsule, 300 23564011000036103 galantamine 24 mg modified release capsule 21521011000036100 galantamine +146121000036109 Candesartan Cilexetil (Pharmacor) 32 mg uncoated tablet, 30, bottle 195490 145201000036104 Candesartan Cilexetil (Pharmacor) 32 mg uncoated tablet, 30 143741000036107 Candesartan Cilexetil (Pharmacor) 32 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +85038011000036102 Sprycel 100 mg film-coated tablet, 30, bottle 157352 84903011000036101 Sprycel 100 mg film-coated tablet, 30 84790011000036103 Sprycel 100 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 85183011000036109 dasatinib 100 mg tablet, 30 85087011000036108 dasatinib 100 mg tablet 21627011000036104 dasatinib +963621000168106 Metformin (Apo) 250 mg film-coated tablet, 120, bottle 157206 963601000168102 Metformin (Apo) 250 mg film-coated tablet, 120 963581000168106 Metformin (Apo) 250 mg film-coated tablet 25891000168106 Metformin (Apo) 25891000168106 Metformin (Apo) 963591000168109 metformin hydrochloride 250 mg tablet, 120 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +91771000036101 Atenolol (GH) 50 mg uncoated tablet, 30, blister pack 201777 90301000036102 Atenolol (GH) 50 mg uncoated tablet, 30 87901000036101 Atenolol (GH) 50 mg uncoated tablet 87711000036101 Atenolol (GH) 87711000036101 Atenolol (GH) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1103391000168104 Quetiapine (RBX) 25 mg film-coated tablet, 20, strip pack 166437 1103381000168102 Quetiapine (RBX) 25 mg film-coated tablet, 20 3481000036108 Quetiapine (RBX) 25 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +83021000036100 Meloxicam (Apo) 7.5 mg uncoated tablet, 30, blister pack 127503 82931000036105 Meloxicam (Apo) 7.5 mg uncoated tablet, 30 82831000036100 Meloxicam (Apo) 7.5 mg uncoated tablet 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +61127011000036109 Telfast Decongestant modified release tablet, 10, blister pack 72552 57070011000036104 Telfast Decongestant modified release tablet, 10 54182011000036108 Telfast Decongestant modified release tablet 53507011000036103 Telfast Decongestant 53507011000036103 Telfast Decongestant 63725011000036101 fexofenadine hydrochloride 60 mg + pseudoephedrine hydrochloride 120 mg modified release tablet, 10 62060011000036106 fexofenadine hydrochloride 60 mg + pseudoephedrine hydrochloride 120 mg modified release tablet 61821011000036105 fexofenadine + pseudoephedrine +933239291000036104 Carboplatin (Kabi) 450 mg/45 mL injection solution, 45 mL vial 171241 933236421000036105 Carboplatin (Kabi) 450 mg/45 mL injection solution, 45 mL vial 933234611000036107 Carboplatin (Kabi) 450 mg/45 mL injection solution, 45 mL vial 933234231000036101 Carboplatin (Kabi) 933234231000036101 Carboplatin (Kabi) 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +18322011000036104 Enahexal 5 mg uncoated tablet, 30, blister pack 121813 13732011000036103 Enahexal 5 mg uncoated tablet, 30 7015011000036107 Enahexal 5 mg uncoated tablet 4073011000036109 Enahexal 4073011000036109 Enahexal 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +44824011000036107 Detrusitol 1 mg film-coated tablet, 28, blister pack 99393 42256011000036100 Detrusitol 1 mg film-coated tablet, 28 40407011000036104 Detrusitol 1 mg film-coated tablet 39706011000036107 Detrusitol 39706011000036107 Detrusitol 47009011000036108 tolterodine tartrate 1 mg tablet, 28 45373011000036104 tolterodine tartrate 1 mg tablet 44907011000036104 tolterodine +25141000036103 Atorvastatin (GH) 80 mg film-coated tablet, 30, blister pack 180326 22821000036106 Atorvastatin (GH) 80 mg film-coated tablet, 30 20821000036107 Atorvastatin (GH) 80 mg film-coated tablet 19801000036101 Atorvastatin (GH) 19801000036101 Atorvastatin (GH) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +769231000168102 Clarithromycin (Sandoz) 500 mg film-coated tablet, 14, blister pack 769221000168100 Clarithromycin (Sandoz) 500 mg film-coated tablet, 14 769211000168107 Clarithromycin (Sandoz) 500 mg film-coated tablet 147831000036100 Clarithromycin (Sandoz) 147831000036100 Clarithromycin (Sandoz) 46431011000036106 clarithromycin 500 mg tablet, 14 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +925211011000036103 Glimaccord 2 mg uncoated tablet, 10, blister pack 156405 924748011000036104 Glimaccord 2 mg uncoated tablet, 10 924454011000036103 Glimaccord 2 mg uncoated tablet 924395011000036104 Glimaccord 924395011000036104 Glimaccord 925414011000036104 glimepiride 2 mg tablet, 10 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +1001081000168109 Pregabalin (Apo) 50 mg hard capsule, 100, bottle 193246 1001071000168106 Pregabalin (Apo) 50 mg hard capsule, 100 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1001061000168100 pregabalin 50 mg capsule, 100 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1081841000168106 Hycamtin 1 mg powder for injection, 1 vial 73355 1081831000168102 Hycamtin 1 mg powder for injection, 1 vial 1081811000168107 Hycamtin 1 mg powder for injection, vial 3973011000036103 Hycamtin 3973011000036103 Hycamtin 1081821000168100 topotecan 1 mg injection, 1 vial 1081801000168109 topotecan 1 mg injection, vial 21571011000036101 topotecan +61294011000036105 Ibuprofen (Chemists' Own) 200 mg film-coated tablet, 24, blister pack 79117 57230011000036105 Ibuprofen (Chemists' Own) 200 mg film-coated tablet, 24 54248011000036102 Ibuprofen (Chemists' Own) 200 mg film-coated tablet 53581011000036105 Ibuprofen (Chemists' Own) 53581011000036105 Ibuprofen (Chemists' Own) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +973831000168101 Pregabalin (GH) 25 mg hard capsule, 60, blister pack 215685 973821000168104 Pregabalin (GH) 25 mg hard capsule, 60 973701000168101 Pregabalin (GH) 25 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +838241000168106 Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial 79436 838231000168102 Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial 838221000168100 Granocyte-13 13.4 million units (105 microgram) powder for injection, 105 microgram vial 838211000168107 Granocyte-13 838211000168107 Granocyte-13 27906011000036109 lenograstim 13.4 million units (105 microgram) injection, 1 vial 23231011000036100 lenograstim 13.4 million units (105 microgram) injection, vial 21639011000036108 lenograstim +65751000036106 Doxorubicin Hydrochloride (Novotech) 20 mg/10 mL injection solution, 10 mL vial 107370 63141000036106 Doxorubicin Hydrochloride (Novotech) 20 mg/10 mL injection solution, 10 mL vial 60871000036104 Doxorubicin Hydrochloride (Novotech) 20 mg/10 mL injection solution, 10 mL vial 60281000036101 Doxorubicin Hydrochloride (Novotech) 60281000036101 Doxorubicin Hydrochloride (Novotech) 27168011000036109 doxorubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22530011000036106 doxorubicin hydrochloride 20 mg/10 mL injection, vial 21638011000036100 doxorubicin +740321000168105 Ondansetron (SZ) 8 mg film-coated tablet, 4, blister pack 163439 740311000168103 Ondansetron (SZ) 8 mg film-coated tablet, 4 740301000168101 Ondansetron (SZ) 8 mg film-coated tablet 740221000168104 Ondansetron (SZ) 740221000168104 Ondansetron (SZ) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +898931000168103 Strensiq 12 mg/0.3 mL injection solution, 12 x 0.3 mL vials 266984 898921000168101 Strensiq 12 mg/0.3 mL injection solution, 12 x 0.3 mL vials 898871000168105 Strensiq 12 mg/0.3 mL injection solution, 0.3 mL vial 898031000168102 Strensiq 898031000168102 Strensiq 898911000168108 asfotase alfa 12 mg/0.3 mL injection, 12 x 0.3 mL vials 898861000168104 asfotase alfa 12 mg/0.3 mL injection, vial 898041000168106 asfotase alfa +43780011000036107 Angeliq 1/2 film-coated tablet, 28, blister pack 114816 41163011000036104 Angeliq 1/2 film-coated tablet, 28 39892011000036107 Angeliq 1/2 film-coated tablet 16131000168100 Angeliq 1/2 16131000168100 Angeliq 1/2 46130011000036103 estradiol 1 mg + drospirenone 2 mg tablet, 28 45002011000036104 estradiol 1 mg + drospirenone 2 mg tablet 44878011000036104 estradiol + drospirenone +20615011000036105 Valpam 5 mg uncoated tablet, 50, blister pack 80811 13796011000036109 Valpam 5 mg uncoated tablet, 50 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +25061000036103 Atorvastatin (Chemmart) 80 mg film-coated tablet, 30, blister pack 153725 22181000036101 Atorvastatin (Chemmart) 80 mg film-coated tablet, 30 20251000036102 Atorvastatin (Chemmart) 80 mg film-coated tablet 19741000036106 Atorvastatin (Chemmart) 19741000036106 Atorvastatin (Chemmart) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +17779011000036102 Simvastatin (RL) 20 mg film-coated tablet, 30, bottle 116800 11544011000036100 Simvastatin (RL) 20 mg film-coated tablet, 30 4861011000036102 Simvastatin (RL) 20 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +151831000036106 Alfamino powder for oral liquid, 400 g, can 149831000036107 Alfamino powder for oral liquid, 400 g 148171000036109 Alfamino powder for oral liquid 147901000036103 Alfamino 147901000036103 Alfamino 927290011000036108 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides powder for oral liquid, 400 g 926979011000036107 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides powder for oral liquid 926972011000036102 amino acid synthetic formula supplemented with long chain polyunsaturated fatty acids and medium chain triglycerides +60810011000036100 Demazin Cold Relief Syrup Colour Free oral liquid solution, 15 mL, bottle 57378 56766011000036109 Demazin Cold Relief Syrup Colour Free oral liquid solution, 15 mL 54071011000036102 Demazin Cold Relief Syrup Colour Free oral liquid solution, 5 mL 5951000168104 Demazin Cold Relief Syrup 5951000168104 Demazin Cold Relief Syrup 63557011000036109 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 15 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +1100581000168102 Prochlorperazine (Chemmart Pharmacy) 5 mg uncoated tablet, 10, blister pack 276715 1100571000168100 Prochlorperazine (Chemmart Pharmacy) 5 mg uncoated tablet, 10 1100561000168106 Prochlorperazine (Chemmart Pharmacy) 5 mg uncoated tablet 1100551000168109 Prochlorperazine (Chemmart Pharmacy) 1100551000168109 Prochlorperazine (Chemmart Pharmacy) 924183011000036108 prochlorperazine maleate 5 mg tablet, 10 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +754891000168105 Xedone 20 mg hard capsule, 20, blister pack 227857 754131000168100 Xedone 20 mg hard capsule, 20 754121000168103 Xedone 20 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +104291000036100 Abisart 150 mg film-coated tablet, 30, bottle 170775 101481000036104 Abisart 150 mg film-coated tablet, 30 98721000036106 Abisart 150 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +104291000036100 Abisart 150 mg film-coated tablet, 30, bottle 214580 101481000036104 Abisart 150 mg film-coated tablet, 30 98721000036106 Abisart 150 mg film-coated tablet 11101000168101 Abisart 11101000168101 Abisart 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +151821000036109 Symbicort Rapihaler 200/6 pressurised inhalation, 120 actuations, metered dose aerosol can 115555 149891000036108 Symbicort Rapihaler 200/6 pressurised inhalation, 120 actuations 148071000036105 Symbicort Rapihaler 200/6 pressurised inhalation, actuation 57951000168100 Symbicort Rapihaler 200/6 57951000168100 Symbicort Rapihaler 200/6 149901000036109 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation pressurised inhalation, 120 actuations 148081000036107 budesonide 200 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation pressurised inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +834101000168109 Domperidone (Apo) 10 mg uncoated tablet, 30, blister pack 242333 834091000168104 Domperidone (Apo) 10 mg uncoated tablet, 30 834051000168109 Domperidone (Apo) 10 mg uncoated tablet 834041000168107 Domperidone (Apo) 834041000168107 Domperidone (Apo) 834081000168102 domperidone 10 mg tablet, 30 22433011000036108 domperidone 10 mg tablet 21928011000036102 domperidone +965151000168107 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 42, blister pack 134861 965141000168105 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet, 42 965051000168108 Clarithromycin (Terry White Chemists) 500 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 51516011000036106 clarithromycin 500 mg tablet, 42 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +928809011000036104 Epirubicin Hydrochloride (DBL) 200 mg/100 mL injection solution, 100 mL vial 101583 928171011000036100 Epirubicin Hydrochloride (DBL) 200 mg/100 mL injection solution, 100 mL vial 927848011000036109 Epirubicin Hydrochloride (DBL) 200 mg/100 mL injection solution, 100 mL vial 4322011000036104 Epirubicin Hydrochloride (DBL) 4322011000036104 Epirubicin Hydrochloride (DBL) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +835591000168105 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL, bottle 27219 835581000168107 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL 835571000168109 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid 33935011000036101 Codeine Phosphate Linctus (Gilseal) 33935011000036101 Codeine Phosphate Linctus (Gilseal) 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +68970011000036101 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 5 sachets 134408 66772011000036104 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 5 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71424011000036103 paracetamol 500 mg powder for oral liquid, 5 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +43843011000036105 Mirtazapine (Terry White Chemists) 15 mg film-coated tablet, 30, blister pack 127673 41340011000036109 Mirtazapine (Terry White Chemists) 15 mg film-coated tablet, 30 39783011000036102 Mirtazapine (Terry White Chemists) 15 mg film-coated tablet 32179011000036106 Mirtazapine (Terry White Chemists) 32179011000036106 Mirtazapine (Terry White Chemists) 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +74431000036103 Nizoral 2% shampoo, 6 x 6 mL sachets 47358 72331000036103 Nizoral 2% shampoo, 6 x 6 mL 70371000036102 Nizoral 2% shampoo 4145011000036104 Nizoral 4145011000036104 Nizoral 72341000036108 ketoconazole 2% shampoo, 6 x 6 mL 69971000036100 ketoconazole 2% shampoo 21500011000036103 ketoconazole +795011000168101 Instanyl 50 microgram/actuation nasal spray, 6 x 1 actuation, pump packs 197680 795001000168104 Instanyl 50 microgram/actuation nasal spray, 6 x 1 actuation 794881000168101 Instanyl 50 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 794991000168105 fentanyl 50 microgram/actuation nasal spray, 6 x 1 actuation 794871000168104 fentanyl 50 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +50672011000036100 Paroxetine (Generic Health) 20 mg film-coated tablet, 20, blister pack 153324 49696011000036103 Paroxetine (Generic Health) 20 mg film-coated tablet, 20 48828011000036101 Paroxetine (Generic Health) 20 mg film-coated tablet 48331011000036109 Paroxetine (Generic Health) 48331011000036109 Paroxetine (Generic Health) 51563011000036101 paroxetine 20 mg tablet, 20 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +82336011000036100 Duromine 30 mg modified release capsule, 300, blister pack 76680 82115011000036106 Duromine 30 mg modified release capsule, 300 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82519011000036104 phentermine 30 mg modified release capsule, 300 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +82336011000036100 Duromine 30 mg modified release capsule, 300, blister pack 10940 82115011000036106 Duromine 30 mg modified release capsule, 300 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82519011000036104 phentermine 30 mg modified release capsule, 300 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +146441000036106 Metoprolol Tartrate (Sandoz) 100 mg uncoated tablet, 60, blister pack 62561 145351000036107 Metoprolol Tartrate (Sandoz) 100 mg uncoated tablet, 60 143881000036108 Metoprolol Tartrate (Sandoz) 100 mg uncoated tablet 143381000036104 Metoprolol Tartrate (Sandoz) 143381000036104 Metoprolol Tartrate (Sandoz) 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +20131011000036103 Herceptin IV 150 mg powder for injection, 1 vial 73229 13355011000036109 Herceptin IV 150 mg powder for injection, 1 vial 6640011000036102 Herceptin IV 150 mg powder for injection, 150 mg vial 4161011000036105 Herceptin IV 4161011000036105 Herceptin IV 27711011000036106 trastuzumab 150 mg injection, 1 vial 23046011000036102 trastuzumab 150 mg injection, vial 21530011000036105 trastuzumab +44294011000036109 Actilyse (1 x 10 mg vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 64240 41765011000036107 Actilyse (1 x 10 mg vial, 1 x 10 mL inert diluent vial), 1 pack 635521000168102 Actilyse (inert substance) diluent, 10 mL vial 29761000168106 Actilyse 29761000168106 Actilyse 46572011000036107 alteplase 10 mg injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +44294011000036109 Actilyse (1 x 10 mg vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 64240 41765011000036107 Actilyse (1 x 10 mg vial, 1 x 10 mL inert diluent vial), 1 pack 40187011000036104 Actilyse (alteplase 10 mg) powder for injection, 10 mg vial 29761000168106 Actilyse 29761000168106 Actilyse 46572011000036107 alteplase 10 mg injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 45223011000036108 alteplase 10 mg injection, vial 44903011000036108 alteplase +942161000168109 Sodium Valproate EC (Sanofi) 200 mg enteric tablet, 20, blister pack 140154 942151000168107 Sodium Valproate EC (Sanofi) 200 mg enteric tablet, 20 942101000168108 Sodium Valproate EC (Sanofi) 200 mg enteric tablet 942001000168109 Sodium Valproate EC (Sanofi) 942001000168109 Sodium Valproate EC (Sanofi) 942141000168105 valproate sodium 200 mg enteric tablet, 20 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +838281000168101 Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial 79437 838271000168104 Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial 838261000168105 Granocyte-34 33.6 million units (263 microgram) powder for injection, 263 microgram vial 838251000168108 Granocyte-34 838251000168108 Granocyte-34 27907011000036107 lenograstim 33.6 million units (263 microgram) injection, 1 vial 23232011000036106 lenograstim 33.6 million units (263 microgram) injection, vial 21639011000036108 lenograstim +929005011000036100 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 42, blister pack 158915 928366011000036109 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 42 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +829811000168104 Imatinib (Teva) 400 mg film-coated tablet, 30, blister pack 232242 829801000168102 Imatinib (Teva) 400 mg film-coated tablet, 30 829201000168101 Imatinib (Teva) 400 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 28143011000036104 imatinib 400 mg tablet, 30 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +926830011000036107 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 10, blister pack 176510 926226011000036103 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet, 10 925685011000036101 Metformin Hydrochloride 1000 (Chemmart) 1 g film-coated tablet 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 4471000168101 Metformin Hydrochloride 1000 (Chemmart) 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +65791000036102 Mitozantrone (Novotech) 10 mg/5 mL concentrated injection, 5 mL vial 107326 63101000036108 Mitozantrone (Novotech) 10 mg/5 mL concentrated injection, 5 mL vial 61601000036100 Mitozantrone (Novotech) 10 mg/5 mL concentrated injection, 5 mL vial 60121000036107 Mitozantrone (Novotech) 60121000036107 Mitozantrone (Novotech) 27755011000036101 mitozantrone 10 mg/5 mL injection, 5 mL vial 23086011000036105 mitozantrone 10 mg/5 mL injection, vial 21652011000036102 mitozantrone +13581000036107 Adcirca 20 mg tablet, 56, blister pack 172882 8711000036100 Adcirca 20 mg tablet, 56 1771000036102 Adcirca 20 mg tablet 611000036100 Adcirca 611000036100 Adcirca 8721000036107 tadalafil 20 mg tablet, 56 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +933239211000036109 Glimepiride (Pharmacor) 2 mg uncoated tablet, 10, blister pack 156399 933236331000036104 Glimepiride (Pharmacor) 2 mg uncoated tablet, 10 933234531000036104 Glimepiride (Pharmacor) 2 mg uncoated tablet 933234221000036103 Glimepiride (Pharmacor) 933234221000036103 Glimepiride (Pharmacor) 925414011000036104 glimepiride 2 mg tablet, 10 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +68893011000036106 Metsal AR cream, 100 g, tube 10570 66510011000036107 Metsal AR cream, 100 g 65485011000036107 Metsal AR cream 49361000168107 Metsal AR 49361000168107 Metsal AR 71242011000036108 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream, 100 g 69915011000036102 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream 69781011000036105 eucalyptus oil + menthol liquid + methyl salicylate +748541000168109 Docetaxel (Mayne) 80 mg/4 mL concentrated injection, 4 mL vial 209473 748531000168100 Docetaxel (Mayne) 80 mg/4 mL concentrated injection, 4 mL vial 748521000168103 Docetaxel (Mayne) 80 mg/4 mL concentrated injection, 4 mL vial 748511000168105 Docetaxel (Mayne) 748511000168105 Docetaxel (Mayne) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +697421000168102 Dilart 40 mg film-coated tablet, 28, blister pack 167425 697411000168109 Dilart 40 mg film-coated tablet, 28 697401000168106 Dilart 40 mg film-coated tablet 697391000168109 Dilart 697391000168109 Dilart 63855011000036103 valsartan 40 mg tablet, 28 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +868461000168100 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 33534 868451000168102 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 868441000168104 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 50381000168105 Dianeal PD-4 with Glucose 2.5% System II 50381000168105 Dianeal PD-4 with Glucose 2.5% System II 868351000168108 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag 868331000168102 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +61427011000036108 Paracetamol (Herron) 500 mg uncoated tablet, 48, bottle 82690 57352011000036103 Paracetamol (Herron) 500 mg uncoated tablet, 48 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18408011000036104 Tramedo 50 mg capsule, 20, bottle 114181 11460011000036106 Tramedo 50 mg capsule, 20 5066011000036100 Tramedo 50 mg capsule 4122011000036105 Tramedo 4122011000036105 Tramedo 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +152461000036109 Ziprasidone (Apo) 20 mg hard capsule, 60, blister pack 201057 150771000036108 Ziprasidone (Apo) 20 mg hard capsule, 60 148251000036106 Ziprasidone (Apo) 20 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27569011000036108 ziprasidone 20 mg capsule, 60 22908011000036106 ziprasidone 20 mg capsule 21267011000036107 ziprasidone +152461000036109 Ziprasidone (Apo) 20 mg hard capsule, 60, blister pack 201061 150771000036108 Ziprasidone (Apo) 20 mg hard capsule, 60 148251000036106 Ziprasidone (Apo) 20 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27569011000036108 ziprasidone 20 mg capsule, 60 22908011000036106 ziprasidone 20 mg capsule 21267011000036107 ziprasidone +52214011000036107 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 30, bottle 145178 52099011000036102 Pravastatin Sodium (Apo) 80 mg uncoated tablet, 30 51993011000036106 Pravastatin Sodium (Apo) 80 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +19826011000036101 Temaze 10 mg uncoated tablet, 25, blister pack 63864 13077011000036101 Temaze 10 mg uncoated tablet, 25 6361011000036107 Temaze 10 mg uncoated tablet 3498011000036104 Temaze 3498011000036104 Temaze 28036011000036100 temazepam 10 mg tablet, 25 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +873041000168107 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 19610 873031000168103 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 873011000168108 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 30421000168100 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% 30421000168100 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% 873021000168101 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag 873001000168105 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 84407011000036108 alanine + arginine + glucose + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +44640011000036105 Levitra 20 mg film-coated tablet, 4, blister pack 90500 42093011000036106 Levitra 20 mg film-coated tablet, 4 40350011000036103 Levitra 20 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46860011000036103 vardenafil 20 mg tablet, 4 45334011000036104 vardenafil 20 mg tablet 44856011000036100 vardenafil +941521000168100 Pravastatin (Pharmacy Clinice) 80 mg uncoated tablet, 30, blister pack 145159 941511000168107 Pravastatin (Pharmacy Clinice) 80 mg uncoated tablet, 30 941501000168109 Pravastatin (Pharmacy Clinice) 80 mg uncoated tablet 941491000168102 Pravastatin (Pharmacy Clinice) 941491000168102 Pravastatin (Pharmacy Clinice) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +931626011000036102 Aqium 70% gel, 70 mL, bottle 165368 930787011000036106 Aqium 70% gel, 70 mL 930044011000036106 Aqium 70% gel 65090011000036106 Aqium 65090011000036106 Aqium 932411011000036103 ethanol 70% gel, 70 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +931626011000036102 Aqium 70% gel, 70 mL, bottle 179333 930787011000036106 Aqium 70% gel, 70 mL 930044011000036106 Aqium 70% gel 65090011000036106 Aqium 65090011000036106 Aqium 932411011000036103 ethanol 70% gel, 70 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +840611000168107 Quadracel injection suspension, 0.5 mL vial 91355 840601000168109 Quadracel injection suspension, 0.5 mL vial 840581000168100 Quadracel injection suspension, 0.5 mL vial 73742011000036107 Quadracel 73742011000036107 Quadracel 840591000168102 diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial 840571000168103 diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial 839601000168101 diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine +1108301000168103 Midazolam (Claris) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 216026 1108291000168104 Midazolam (Claris) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 1108261000168106 Midazolam (Claris) 15 mg/3 mL injection solution, 3 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +60022011000036105 Ranitidine Forte (Chemists' Own) 300 mg film-coated tablet, 10, blister pack 123658 55984011000036105 Ranitidine Forte (Chemists' Own) 300 mg film-coated tablet, 10 53747011000036107 Ranitidine Forte (Chemists' Own) 300 mg film-coated tablet 38651000168107 Ranitidine Forte (Chemists' Own) 38651000168107 Ranitidine Forte (Chemists' Own) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +13261000036100 Lanzek Zydis 5 mg wafer, 28, blister pack 167686 8411000036109 Lanzek Zydis 5 mg wafer, 28 2481000036104 Lanzek Zydis 5 mg wafer 60181000168101 Lanzek Zydis 60181000168101 Lanzek Zydis 27713011000036107 olanzapine 5 mg wafer, 28 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +160411000036104 Lukair 10 mg film-coated tablet, 28, blister pack 197285 159181000036103 Lukair 10 mg film-coated tablet, 28 158301000036101 Lukair 10 mg film-coated tablet 123791000036103 Lukair 123791000036103 Lukair 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +928818011000036105 Mylanta 2go Original chewable tablet, 100, blister pack 118511 928184011000036106 Mylanta 2go Original chewable tablet, 100 927840011000036107 Mylanta 2go Original chewable tablet 927794011000036106 Mylanta 2go Original 927794011000036106 Mylanta 2go Original 26696011000036106 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet, 100 22091011000036107 aluminium hydroxide 200 mg + magnesium hydroxide 200 mg + simethicone 20 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +60691011000036100 Voltaren Rapid 25 mg sugar coated tablet, 30, blister pack 42942 56649011000036102 Voltaren Rapid 25 mg sugar coated tablet, 30 54020011000036108 Voltaren Rapid 25 mg sugar coated tablet 39701011000036102 Voltaren Rapid 39701011000036102 Voltaren Rapid 63486011000036107 diclofenac potassium 25 mg tablet, 30 61991011000036106 diclofenac potassium 25 mg tablet 21288011000036105 diclofenac +1035481000168107 Actonel Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Sanofi-Aventis) tablets), 112, blister pack 117667 1035471000168109 Actonel Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Sanofi-Aventis) tablets), 112 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 56751000168100 Actonel Combi 700024831000036105 Actonel Once-a-Week 881341000168102 risedronate sodium 35 mg tablet [16] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [96], 112 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1035481000168107 Actonel Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Sanofi-Aventis) tablets), 112, blister pack 117667 1035471000168109 Actonel Combi (16 x Actonel Once-a-Week tablets, 96 x Calcium Carbonate (Sanofi-Aventis) tablets), 112 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 56751000168100 Actonel Combi 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 881341000168102 risedronate sodium 35 mg tablet [16] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [96], 112 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +43891011000036103 Neupro 4 mg/24 hours patch, 100, sachet 131381 41383011000036105 Neupro 4 mg/24 hours patch, 100 39833011000036107 Neupro 4 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46280011000036108 rotigotine 4 mg/24 hours patch, 100 45052011000036105 rotigotine 4 mg/24 hours patch 44880011000036107 rotigotine +18747011000036101 Perivasc 5 mg uncoated tablet, 30, blister pack 123354 11736011000036105 Perivasc 5 mg uncoated tablet, 30 5483011000036100 Perivasc 5 mg uncoated tablet 4219011000036108 Perivasc 4219011000036108 Perivasc 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +896511000168103 Imatinib (AN) 100 mg hard capsule, 48, blister pack 281365 896501000168101 Imatinib (AN) 100 mg hard capsule, 48 896471000168107 Imatinib (AN) 100 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 828841000168107 imatinib 100 mg capsule, 48 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1048451000168107 Paracetamol Codeine 500/30 (GPPL) tablet, 2, blister pack 220977 1048441000168105 Paracetamol Codeine 500/30 (GPPL) tablet, 2 1048431000168101 Paracetamol Codeine 500/30 (GPPL) tablet 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1048361000168104 Paracetamol Codeine 500/30 (GPPL) 1047211000168109 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 2 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +945451000168109 Ondansetron (Mylan) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 138714 945441000168107 Ondansetron (Mylan) 8 mg/4 mL injection solution, 5 x 4 mL ampoules 945411000168108 Ondansetron (Mylan) 8 mg/4 mL injection solution, 4 mL ampoule 945401000168105 Ondansetron (Mylan) 945401000168105 Ondansetron (Mylan) 924154011000036104 ondansetron 8 mg/4 mL injection, 5 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +996981000168108 Benadryl Chesty Forte oral liquid solution, 200 mL, bottle 251912 996971000168105 Benadryl Chesty Forte oral liquid solution, 200 mL 996921000168109 Benadryl Chesty Forte oral liquid solution, 5 mL 679061000168102 Benadryl Chesty Forte 679061000168102 Benadryl Chesty Forte 989961000168106 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 200 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +61175011000036100 Telfast 30 mg film-coated tablet, 20, blister pack 75139 57118011000036100 Telfast 30 mg film-coated tablet, 20 54204011000036100 Telfast 30 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 63736011000036106 fexofenadine hydrochloride 30 mg tablet, 20 62066011000036109 fexofenadine hydrochloride 30 mg tablet 21394011000036108 fexofenadine +804311000168100 Disprin Original 300 mg tablet, 48, strip pack 59901 804301000168103 Disprin Original 300 mg tablet, 48 804211000168108 Disprin Original 300 mg tablet 44991000168100 Disprin Original 44991000168100 Disprin Original 804291000168104 aspirin 300 mg tablet, 48 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +1112551000168106 Clopithromb 75 mg film-coated tablet, 30, bottle 187043 1111471000168106 Clopithromb 75 mg film-coated tablet, 30 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87801011000036104 clopidogrel 75 mg tablet, 30 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +703491000168100 Isuprel 1 in 5000 (1 mg/5 mL) concentrated injection, 10 x 5 mL ampoules 198888 703481000168103 Isuprel 1 in 5000 (1 mg/5 mL) concentrated injection, 10 x 5 mL ampoules 40046011000036101 Isuprel 1 in 5000 (1 mg/5 mL) concentrated injection, 5 mL ampoule 20251000168109 Isuprel 20251000168109 Isuprel 703471000168101 isoprenaline hydrochloride 1 in 5000 (1 mg/5 mL) injection, 10 x 5 mL ampoules 45112011000036109 isoprenaline hydrochloride 1 in 5000 (1 mg/5 mL) injection, ampoule 37784011000036105 isoprenaline +921962011000036107 Navoban 5 mg hard capsule, 5, blister pack 47518 921520011000036108 Navoban 5 mg hard capsule, 5 5054011000036100 Navoban 5 mg hard capsule 3216011000036101 Navoban 3216011000036101 Navoban 922642011000036101 tropisetron 5 mg capsule, 5 22544011000036100 tropisetron 5 mg capsule 21700011000036104 tropisetron +17924011000036108 Simvastatin (Chemmart) 10 mg film-coated tablet, 30, blister pack 149804 11305011000036105 Simvastatin (Chemmart) 10 mg film-coated tablet, 30 5644011000036109 Simvastatin (Chemmart) 10 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +17924011000036108 Simvastatin (Chemmart) 10 mg film-coated tablet, 30, blister pack 211956 11305011000036105 Simvastatin (Chemmart) 10 mg film-coated tablet, 30 5644011000036109 Simvastatin (Chemmart) 10 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +17924011000036108 Simvastatin (Chemmart) 10 mg film-coated tablet, 30, blister pack 104532 11305011000036105 Simvastatin (Chemmart) 10 mg film-coated tablet, 30 5644011000036109 Simvastatin (Chemmart) 10 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +17924011000036108 Simvastatin (Chemmart) 10 mg film-coated tablet, 30, blister pack 131643 11305011000036105 Simvastatin (Chemmart) 10 mg film-coated tablet, 30 5644011000036109 Simvastatin (Chemmart) 10 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +156811000036105 Caverject (1 x 10 microgram vial, 1 x inert diluent syringe), 1 pack, composite pack 202518 156081000036109 Caverject (1 x 10 microgram vial, 1 x inert diluent syringe), 1 pack 154801000036102 Caverject (alprostadil 10 microgram) powder for injection, 10 microgram vial 43991000168102 Caverject 43991000168102 Caverject 156091000036106 alprostadil 10 microgram injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 154811000036100 alprostadil 10 microgram injection, vial 21478011000036104 alprostadil +156811000036105 Caverject (1 x 10 microgram vial, 1 x inert diluent syringe), 1 pack, composite pack 202518 156081000036109 Caverject (1 x 10 microgram vial, 1 x inert diluent syringe), 1 pack 154771000036100 Caverject (inert substance) diluent, syringe 43991000168102 Caverject 43991000168102 Caverject 156091000036106 alprostadil 10 microgram injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +152471000036101 Ziprasidone (Apo) 40 mg hard capsule, 60, blister pack 201062 150781000036105 Ziprasidone (Apo) 40 mg hard capsule, 60 148271000036101 Ziprasidone (Apo) 40 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27570011000036106 ziprasidone 40 mg capsule, 60 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +152471000036101 Ziprasidone (Apo) 40 mg hard capsule, 60, blister pack 201058 150781000036105 Ziprasidone (Apo) 40 mg hard capsule, 60 148271000036101 Ziprasidone (Apo) 40 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 27570011000036106 ziprasidone 40 mg capsule, 60 22909011000036103 ziprasidone 40 mg capsule 21267011000036107 ziprasidone +20567011000036105 Bonefos 800 mg film-coated tablet, 60, blister pack 181921 13757011000036100 Bonefos 800 mg film-coated tablet, 60 7042011000036106 Bonefos 800 mg film-coated tablet 3256011000036108 Bonefos 3256011000036108 Bonefos 27920011000036102 clodronate sodium 800 mg tablet, 60 23244011000036101 clodronate sodium 800 mg tablet 21247011000036100 clodronate +20567011000036105 Bonefos 800 mg film-coated tablet, 60, blister pack 80130 13757011000036100 Bonefos 800 mg film-coated tablet, 60 7042011000036106 Bonefos 800 mg film-coated tablet 3256011000036108 Bonefos 3256011000036108 Bonefos 27920011000036102 clodronate sodium 800 mg tablet, 60 23244011000036101 clodronate sodium 800 mg tablet 21247011000036100 clodronate +19192011000036104 Tylenol 500 mg uncoated tablet, 100, bottle 46791 12485011000036100 Tylenol 500 mg uncoated tablet, 100 5296011000036108 Tylenol 500 mg uncoated tablet 3080011000036109 Tylenol 3080011000036109 Tylenol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +79645011000036108 Glimepiride (Apo) 3 mg uncoated tablet, 30, blister pack 151572 79491011000036102 Glimepiride (Apo) 3 mg uncoated tablet, 30 79376011000036109 Glimepiride (Apo) 3 mg uncoated tablet 36961000168104 Glimepiride (Apo) 36961000168104 Glimepiride (Apo) 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +79692011000036106 Cyprostat 50 mg uncoated tablet, 20, blister pack 156921 13543011000036107 Cyprostat 50 mg uncoated tablet, 20 6826011000036108 Cyprostat 50 mg uncoated tablet 3019011000036100 Cyprostat 3019011000036100 Cyprostat 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +906921000168107 Celecoxib (GA) 200 mg capsule, 20, blister pack 204619 906911000168100 Celecoxib (GA) 200 mg capsule, 20 906871000168103 Celecoxib (GA) 200 mg capsule 906861000168109 Celecoxib (GA) 906861000168109 Celecoxib (GA) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +68726011000036109 QV Skin Lotion, 20 mL, bottle 10630 66528011000036103 QV Skin Lotion, 20 mL 65232011000036109 QV Skin Lotion 65125011000036100 QV Skin Lotion 65125011000036100 QV Skin Lotion 71260011000036104 glycerol 5% + white soft paraffin 5% lotion, 20 mL 69922011000036100 glycerol 5% + white soft paraffin 5% lotion 69803011000036105 glycerol + white soft paraffin +662781000168105 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 205575 662771000168107 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 662741000168100 Evelyn 150/30 ED (inert substance) film-coated tablet 662621000168104 Evelyn 150/30 ED 662621000168104 Evelyn 150/30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +662781000168105 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 205575 662771000168107 Evelyn 150/30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 662731000168109 Evelyn 150/30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 662621000168104 Evelyn 150/30 ED 662621000168104 Evelyn 150/30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +83341000036106 Curity (4112) eye pad, 12 pads, carton 83171000036102 Curity (4112) eye pad, 12 pads 83081000036104 Curity (4112) eye pad, 1 pad 48491000168104 Curity (4112) 48491000168104 Curity (4112) 51396011000036108 dressing gauze eye pad, 12 pads 83091000036102 dressing gauze eye pad, 1 pad 83371000036104 dressing gauze +20786011000036108 Temtabs 10 mg uncoated tablet, 25, blister pack 91058 13955011000036104 Temtabs 10 mg uncoated tablet, 25 7241011000036108 Temtabs 10 mg uncoated tablet 3039011000036107 Temtabs 3039011000036107 Temtabs 28036011000036100 temazepam 10 mg tablet, 25 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +997301000168102 Meloxicam (Apotex) 15 mg hard capsule, 10, blister pack 181197 997291000168103 Meloxicam (Apotex) 15 mg hard capsule, 10 997281000168101 Meloxicam (Apotex) 15 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 52889011000036100 meloxicam 15 mg capsule, 10 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +834541000168101 Paracetamol plus Codeine 15 (Blooms The Chemist) uncoated tablet, 20, blister pack 274569 834531000168105 Paracetamol plus Codeine 15 (Blooms The Chemist) uncoated tablet, 20 834521000168107 Paracetamol plus Codeine 15 (Blooms The Chemist) uncoated tablet 834511000168100 Paracetamol plus Codeine 15 (Blooms The Chemist) 834511000168100 Paracetamol plus Codeine 15 (Blooms The Chemist) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +774401000168104 Irinotecan (Act) 500 mg/25 mL concentrated injection, 25 mL vial 227307 774391000168101 Irinotecan (Act) 500 mg/25 mL concentrated injection, 25 mL vial 774381000168104 Irinotecan (Act) 500 mg/25 mL concentrated injection, 25 mL vial 774241000168103 Irinotecan (Act) 774241000168103 Irinotecan (Act) 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +18263011000036109 Zabel 250 mg uncoated tablet, 42, blister pack 107325 11368011000036100 Zabel 250 mg uncoated tablet, 42 4856011000036104 Zabel 250 mg uncoated tablet 3087011000036105 Zabel 3087011000036105 Zabel 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +104771000036106 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet, 30, blister pack 175200 102021000036104 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet, 30 99091000036104 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet 6731000168101 Irbesartan HCTZ 300/12.5 (Apo) 6731000168101 Irbesartan HCTZ 300/12.5 (Apo) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104771000036106 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet, 30, blister pack 213303 102021000036104 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet, 30 99091000036104 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet 6731000168101 Irbesartan HCTZ 300/12.5 (Apo) 6731000168101 Irbesartan HCTZ 300/12.5 (Apo) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1040141000168104 Asartan 4 mg uncoated tablet, 30, blister pack 195370 1040131000168108 Asartan 4 mg uncoated tablet, 30 1040101000168101 Asartan 4 mg uncoated tablet 1028811000168107 Asartan 1028811000168107 Asartan 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +933211171000036104 Ablavar 4.88 g/20 mL injection solution, 20 mL vial 115547 933200041000036104 Ablavar 4.88 g/20 mL injection solution, 20 mL vial 933194361000036105 Ablavar 4.88 g/20 mL injection solution, 20 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933200051000036101 gadofosveset trisodium 4.88 g/20 mL injection, 20 mL vial 933194371000036102 gadofosveset trisodium 4.88 g/20 mL injection, vial 933216361000036104 gadofosveset +39380011000036109 Bicalutamide (GA) 50 mg film-coated tablet, 28, bottle 129116 39264011000036107 Bicalutamide (GA) 50 mg film-coated tablet, 28 39216011000036100 Bicalutamide (GA) 50 mg film-coated tablet 39181011000036109 Bicalutamide (GA) 39181011000036109 Bicalutamide (GA) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +1001401000168107 Pregabalin (Apo) 225 mg hard capsule, 100, bottle 193253 1001391000168105 Pregabalin (Apo) 225 mg hard capsule, 100 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1001381000168107 pregabalin 225 mg capsule, 100 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +19998011000036103 Clamoxyl Duo 400/57 powder for oral liquid, 60 mL, bottle 68406 13235011000036104 Clamoxyl Duo 400/57 powder for oral liquid, 60 mL 6517011000036103 Clamoxyl Duo 400/57 powder for oral liquid, 5 mL 28651000168109 Clamoxyl Duo 400/57 28651000168109 Clamoxyl Duo 400/57 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +37650011000036103 Capastat 1 g powder for injection, 1 vial 28633 36916011000036105 Capastat 1 g powder for injection, 1 vial 36247011000036101 Capastat 1 g powder for injection, vial 35868011000036104 Capastat 35868011000036104 Capastat 38801011000036101 capreomycin 1 g injection, 1 vial 38012011000036106 capreomycin 1 g injection, vial 37803011000036107 capreomycin +61659011000036102 Aerius Syrup 500 microgram/mL oral liquid solution, 100 mL, bottle 97260 57581011000036101 Aerius Syrup 500 microgram/mL oral liquid solution, 100 mL 54355011000036102 Aerius Syrup 500 microgram/mL oral liquid solution 38081000168108 Aerius Syrup 38081000168108 Aerius Syrup 63937011000036102 desloratadine 500 microgram/mL oral liquid, 100 mL 62105011000036107 desloratadine 500 microgram/mL oral liquid 61723011000036109 desloratadine +1104121000168101 Quetiapine (Pharmacor) 100 mg film-coated tablet, 60, blister pack 204829 1104111000168108 Quetiapine (Pharmacor) 100 mg film-coated tablet, 60 172851000036106 Quetiapine (Pharmacor) 100 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +19231011000036103 Pharmorubicin 20 mg/10 mL injection solution, 10 mL vial 47355 12521011000036102 Pharmorubicin 20 mg/10 mL injection solution, 10 mL vial 4479011000036100 Pharmorubicin 20 mg/10 mL injection solution, 10 mL vial 24651000168101 Pharmorubicin 24651000168101 Pharmorubicin 27170011000036103 epirubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22532011000036105 epirubicin hydrochloride 20 mg/10 mL injection, vial 21230011000036100 epirubicin +1106291000168100 Alodorm 5 mg uncoated tablet, 1000, bottle 54009 751041000168108 Alodorm 5 mg uncoated tablet, 1000 5420011000036103 Alodorm 5 mg uncoated tablet 4413011000036106 Alodorm 4413011000036106 Alodorm 751031000168104 nitrazepam 5 mg tablet, 1000 22667011000036105 nitrazepam 5 mg tablet 21647011000036102 nitrazepam +160331000036100 Montelukast (Pharmacor) 10 mg film-coated tablet, 28, blister pack 184835 159091000036100 Montelukast (Pharmacor) 10 mg film-coated tablet, 28 158071000036108 Montelukast (Pharmacor) 10 mg film-coated tablet 134131000036102 Montelukast (Pharmacor) 134131000036102 Montelukast (Pharmacor) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +87728011000036103 Risperidone (DRLA) 500 microgram film-coated tablet, 20, blister pack 165514 87494011000036105 Risperidone (DRLA) 500 microgram film-coated tablet, 20 87340011000036102 Risperidone (DRLA) 500 microgram film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +104931000036107 Phenobarbitone (Aspen) 200 mg/mL injection solution, 5 x 1 mL ampoules 175471 102031000036102 Phenobarbitone (Aspen) 200 mg/mL injection solution, 5 x 1 mL ampoules 99351000036106 Phenobarbitone (Aspen) 200 mg/mL injection solution, ampoule 929843011000036105 Phenobarbitone (Aspen) 929843011000036105 Phenobarbitone (Aspen) 102041000036107 phenobarbital (phenobarbitone) 200 mg/mL injection, 5 x 1 mL ampoules 99361000036109 phenobarbital (phenobarbitone) 200 mg/mL injection, ampoule 21578011000036105 phenobarbital (phenobarbitone) +43664011000036107 Zofran 4 mg/2 mL injection solution, 5 x 2 mL syringes 122091 41269011000036103 Zofran 4 mg/2 mL injection solution, 5 x 2 mL syringes 39877011000036100 Zofran 4 mg/2 mL injection solution, 2 mL syringe 2471000168108 Zofran 2471000168108 Zofran 46204011000036102 ondansetron 4 mg/2 mL injection, 5 x 2 mL syringes 45028011000036109 ondansetron 4 mg/2 mL injection, syringe 21545011000036100 ondansetron +1024931000168100 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 60, blister pack 193300 1024921000168103 Pregabalin (Blooms The Chemist) 75 mg hard capsule, 60 1024851000168103 Pregabalin (Blooms The Chemist) 75 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +933231901000036103 Aethoxysklerol 0.5% (10 mg/2 mL) injection solution, 5 x 2 mL ampoules 79118 933226431000036109 Aethoxysklerol 0.5% (10 mg/2 mL) injection solution, 5 x 2 mL ampoules 933221111000036101 Aethoxysklerol 0.5% (10 mg/2 mL) injection solution, 2 mL ampoule 39757011000036100 Aethoxysklerol 39757011000036100 Aethoxysklerol 933226441000036104 lauromacrogol-400 0.5% (10 mg/2 mL) injection, 5 x 2 mL ampoules 933221121000036108 lauromacrogol-400 0.5% (10 mg/2 mL) injection, ampoule 44952011000036107 lauromacrogol-400 +19244011000036104 Navoban 5 mg/5 mL injection solution, 5 mL ampoule 47517 12535011000036103 Navoban 5 mg/5 mL injection solution, 5 mL ampoule 5516011000036103 Navoban 5 mg/5 mL injection solution, 5 mL ampoule 3216011000036101 Navoban 3216011000036101 Navoban 27181011000036102 tropisetron 5 mg/5 mL injection, 5 mL ampoule 22543011000036102 tropisetron 5 mg/5 mL injection, ampoule 21700011000036104 tropisetron +933211191000036100 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash, 250 mL, bottle 11245 933199691000036106 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash, 250 mL 933194231000036106 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 933199701000036106 chlorhexidine gluconate 0.2% mouthwash, 250 mL 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +21030011000036108 Dizole 100 mg hard capsule, 28, blister pack 159620 14175011000036102 Dizole 100 mg hard capsule, 28 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +21030011000036108 Dizole 100 mg hard capsule, 28, blister pack 96495 14175011000036102 Dizole 100 mg hard capsule, 28 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +35658011000036102 PAA 0.2% eye gel, 10 g, tube 35559011000036103 PAA 0.2% eye gel, 10 g 35485011000036101 PAA 0.2% eye gel 35424011000036105 PAA 35424011000036105 PAA 35770011000036107 carbomer-980 0.2% eye gel, 10 g 35711011000036106 carbomer-980 0.2% eye gel 35685011000036104 carbomer-980 +60194011000036103 Head Cold and Allergy Elixir (Pharmacy Choice) oral liquid solution, 100 mL, bottle 132710 56153011000036101 Head Cold and Allergy Elixir (Pharmacy Choice) oral liquid solution, 100 mL 53810011000036100 Head Cold and Allergy Elixir (Pharmacy Choice) oral liquid solution, 5 mL 8701000168109 Head Cold and Allergy Elixir (Pharmacy Choice) 8701000168109 Head Cold and Allergy Elixir (Pharmacy Choice) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +667281000168104 Kaptan 100 mg film-coated tablet, 20, blister pack 202243 667271000168102 Kaptan 100 mg film-coated tablet, 20 667261000168108 Kaptan 100 mg film-coated tablet 667201000168107 Kaptan 667201000168107 Kaptan 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +697261000168106 Pramipexole (Apo) 250 microgram uncoated tablet, 100, bottle 167700 697251000168109 Pramipexole (Apo) 250 microgram uncoated tablet, 100 697241000168107 Pramipexole (Apo) 250 microgram uncoated tablet 697171000168106 Pramipexole (Apo) 697171000168106 Pramipexole (Apo) 38825011000036108 pramipexole dihydrochloride monohydrate 250 microgram tablet, 100 38033011000036105 pramipexole dihydrochloride monohydrate 250 microgram tablet 37716011000036100 pramipexole +1031371000168104 Atomoxetine (GXP) 10 mg hard capsule, 28, blister pack 234816 1031361000168105 Atomoxetine (GXP) 10 mg hard capsule, 28 1031301000168109 Atomoxetine (GXP) 10 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +60943011000036106 Claratyne 10 mg effervescent tablet, 14, tube 62135 56886011000036108 Claratyne 10 mg effervescent tablet, 14 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63630011000036104 loratadine 10 mg effervescent tablet, 14 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +44298011000036102 Stocrin 50 mg hard capsule, 30, bottle 65478 41769011000036109 Stocrin 50 mg hard capsule, 30 40191011000036106 Stocrin 50 mg hard capsule 4246011000036109 Stocrin 4246011000036109 Stocrin 46576011000036106 efavirenz 50 mg capsule, 30 45225011000036109 efavirenz 50 mg capsule 21616011000036105 efavirenz +902861000168105 Candesartan (Actavis) 8 mg uncoated tablet, 30, bottle 195501 902841000168106 Candesartan (Actavis) 8 mg uncoated tablet, 30 902831000168102 Candesartan (Actavis) 8 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +800061000168109 Abyraz 30 mg uncoated tablet, 5, blister pack 159504 800051000168107 Abyraz 30 mg uncoated tablet, 5 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800041000168105 aripiprazole 30 mg tablet, 5 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +920789011000036100 Erythromycin (Mayne Pharma) 250 mg enteric capsule, 25, blister pack 79999 920468011000036102 Erythromycin (Mayne Pharma) 250 mg enteric capsule, 25 920200011000036102 Erythromycin (Mayne Pharma) 250 mg enteric capsule 920073011000036106 Erythromycin (Mayne Pharma) 920073011000036106 Erythromycin (Mayne Pharma) 27918011000036106 erythromycin 250 mg enteric capsule, 25 23242011000036105 erythromycin 250 mg enteric capsule 21889011000036107 erythromycin +85441000036100 Fendex ER 2.5 mg modified release tablet, 30, bottle 184620 84581000036106 Fendex ER 2.5 mg modified release tablet, 30 84071000036103 Fendex ER 2.5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 27474011000036109 felodipine 2.5 mg modified release tablet, 30 22820011000036107 felodipine 2.5 mg modified release tablet 21440011000036100 felodipine +925269011000036100 Elaxine SR 37.5 mg modified release capsule, 28, blister pack 160299 924806011000036107 Elaxine SR 37.5 mg modified release capsule, 28 924500011000036108 Elaxine SR 37.5 mg modified release capsule 8331000168101 Elaxine SR 8331000168101 Elaxine SR 28334011000036109 venlafaxine 37.5 mg modified release capsule, 28 23645011000036100 venlafaxine 37.5 mg modified release capsule 21313011000036105 venlafaxine +840771000168108 Boostrix-IPV injection suspension, 10 x 0.5 mL syringes 96137 840761000168102 Boostrix-IPV injection suspension, 10 x 0.5 mL syringes 840711000168100 Boostrix-IPV injection suspension, 0.5 mL syringe 73764011000036108 Boostrix-IPV 73764011000036108 Boostrix-IPV 840751000168104 diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 10 x 0.5 mL syringes 840701000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 840691000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine +85008011000036108 Mepitel (290510) 5 cm x 7.5 cm dressing, 10, carton 84870011000036108 Mepitel (290510) 5 cm x 7.5 cm dressing, 10 84777011000036106 Mepitel (290510) 5 cm x 7.5 cm dressing 4221000168101 Mepitel (290510) 4221000168101 Mepitel (290510) 85168011000036101 dressing non-adherent with silicone 5 cm x 7.5 cm dressing, 10 85079011000036107 dressing non-adherent with silicone 5 cm x 7.5 cm dressing 85070011000036101 dressing non-adherent with silicone +806571000168108 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet, 10, blister pack 184811 806561000168102 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet, 10 806551000168104 Perindopril Arginine (Chemmart) 2.5 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 727271000168102 perindopril arginine 2.5 mg tablet, 10 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +20199011000036107 Captopril (GenRx) 12.5 mg uncoated tablet, 90, blister pack 74002 13418011000036102 Captopril (GenRx) 12.5 mg uncoated tablet, 90 6700011000036103 Captopril (GenRx) 12.5 mg uncoated tablet 3942011000036106 Captopril (GenRx) 3942011000036106 Captopril (GenRx) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +1072131000168106 Codagesic uncoated tablet, 40, blister pack 235410 1072121000168108 Codagesic uncoated tablet, 40 1072091000168109 Codagesic uncoated tablet 26021000036100 Codagesic 26021000036100 Codagesic 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +904871000168105 Candesartan (CH) 32 mg uncoated tablet, 30, blister pack 195372 904861000168104 Candesartan (CH) 32 mg uncoated tablet, 30 904821000168109 Candesartan (CH) 32 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +1108501000168107 Midazolam (WP) 5 mg/mL injection solution, 10 x 1 mL ampoules 207220 1108491000168100 Midazolam (WP) 5 mg/mL injection solution, 10 x 1 mL ampoules 1108391000168109 Midazolam (WP) 5 mg/mL injection solution, ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +74591000036101 Ionil-T Plus 1% shampoo, 250 mL, bottle 92302 72651000036100 Ionil-T Plus 1% shampoo, 250 mL 70171000036100 Ionil-T Plus 1% shampoo 64965011000036102 Ionil-T Plus 64965011000036102 Ionil-T Plus 72661000036102 refined coal tar 1% shampoo, 250 mL 70181000036103 refined coal tar 1% shampoo 69766011000036102 refined coal tar +933119011000036105 Lamictal 50 mg tablet, 60, bottle 59996 932919011000036101 Lamictal 50 mg tablet, 60 932766011000036103 Lamictal 50 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46989011000036103 lamotrigine 50 mg tablet, 60 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +21128011000036104 Methotrexate (Ebewe) 500 mg/5 mL concentrated injection, 5 mL vial 98546 14271011000036102 Methotrexate (Ebewe) 500 mg/5 mL concentrated injection, 5 mL vial 7557011000036107 Methotrexate (Ebewe) 500 mg/5 mL concentrated injection, 5 mL vial 3132011000036105 Methotrexate (Ebewe) 3132011000036105 Methotrexate (Ebewe) 28265011000036109 methotrexate 500 mg/5 mL injection, 5 mL vial 23579011000036105 methotrexate 500 mg/5 mL injection, vial 21342011000036105 methotrexate +902901000168104 Candesartan (Actavis) 16 mg uncoated tablet, 30, bottle 195480 902881000168101 Candesartan (Actavis) 16 mg uncoated tablet, 30 902871000168104 Candesartan (Actavis) 16 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +69125011000036105 Nicabate Pre-Quit 21 mg/24 hours patch, 14, sachet 151699 66925011000036104 Nicabate Pre-Quit 21 mg/24 hours patch, 14 65375011000036109 Nicabate Pre-Quit 21 mg/24 hours patch 1751000168100 Nicabate Pre-Quit 1751000168100 Nicabate Pre-Quit 71997011000036104 nicotine 21 mg/24 hours patch, 14 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +688601000168108 Vita-D 25 microgram (1000 units) film-coated tablet, 90, bottle 181618 688591000168101 Vita-D 25 microgram (1000 units) film-coated tablet, 90 688561000168108 Vita-D 25 microgram (1000 units) film-coated tablet 86578011000036104 Vita-D 86578011000036104 Vita-D 78150011000036101 colecalciferol 25 microgram (1000 units) tablet, 90 77514011000036102 colecalciferol 25 microgram (1000 units) tablet 77447011000036108 colecalciferol +907201000168107 Celecoxib (BW) 200 mg hard capsule, 60, blister pack 196177 907191000168109 Celecoxib (BW) 200 mg hard capsule, 60 906951000168104 Celecoxib (BW) 200 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +19599011000036103 Rafen 200 mg film-coated tablet, 50, bottle 58500 12870011000036109 Rafen 200 mg film-coated tablet, 50 6161011000036101 Rafen 200 mg film-coated tablet 4196011000036102 Rafen 4196011000036102 Rafen 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +804401000168106 Disprin Max 500 mg tablet, 6, strip pack 53682 804391000168109 Disprin Max 500 mg tablet, 6 804351000168104 Disprin Max 500 mg tablet 22811000168106 Disprin Max 22811000168106 Disprin Max 804381000168106 aspirin 500 mg tablet, 6 62068011000036108 aspirin 500 mg tablet 21719011000036107 aspirin +872801000168108 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 19451 872791000168107 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 872771000168106 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 929877011000036102 Synthamin 9 Amino Acid 5.5% with Electrolytes 929877011000036102 Synthamin 9 Amino Acid 5.5% with Electrolytes 872781000168109 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles 872761000168100 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle 77430011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +804241000168107 Disprin Original 300 mg tablet, 96, strip pack 59901 804231000168103 Disprin Original 300 mg tablet, 96 804211000168108 Disprin Original 300 mg tablet 44991000168100 Disprin Original 44991000168100 Disprin Original 804221000168101 aspirin 300 mg tablet, 96 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +834261000168104 Aspalgin dispersible tablet, 20, blister pack 13431 834251000168101 Aspalgin dispersible tablet, 20 834231000168107 Aspalgin dispersible tablet 4318011000036107 Aspalgin 4318011000036107 Aspalgin 834241000168103 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 20 834221000168109 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet 21831011000036102 aspirin + codeine +933231981000036109 Idaprex Combi 4/1.25 uncoated tablet, 30, blister pack 94527 933226471000036106 Idaprex Combi 4/1.25 uncoated tablet, 30 933221331000036108 Idaprex Combi 4/1.25 uncoated tablet 53481000168106 Idaprex Combi 4/1.25 53481000168106 Idaprex Combi 4/1.25 27742011000036107 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet, 30 23073011000036109 perindopril erbumine 4 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +690771000168106 Amoxycillin and Clavulanic Acid 125/31.25 (Apo) powder for oral liquid, 75 mL, bottle 146991 690761000168100 Amoxycillin and Clavulanic Acid 125/31.25 (Apo) powder for oral liquid, 75 mL 690751000168102 Amoxycillin and Clavulanic Acid 125/31.25 (Apo) powder for oral liquid, 5 mL 690741000168104 Amoxycillin and Clavulanic Acid 125/31.25 (Apo) 690741000168104 Amoxycillin and Clavulanic Acid 125/31.25 (Apo) 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +152381000036105 Nesina 6.25 mg film-coated tablet, 28, blister pack 199541 150621000036102 Nesina 6.25 mg film-coated tablet, 28 148751000036103 Nesina 6.25 mg film-coated tablet 147871000036103 Nesina 147871000036103 Nesina 150631000036100 alogliptin 6.25 mg tablet, 28 148761000036100 alogliptin 6.25 mg tablet 152591000036101 alogliptin +806411000168101 Irbesartan HCTZ 300/25 (Blooms The Chemist) film-coated tablet, 30, blister pack 259612 806401000168104 Irbesartan HCTZ 300/25 (Blooms The Chemist) film-coated tablet, 30 806391000168101 Irbesartan HCTZ 300/25 (Blooms The Chemist) film-coated tablet 806381000168104 Irbesartan HCTZ 300/25 (Blooms The Chemist) 806381000168104 Irbesartan HCTZ 300/25 (Blooms The Chemist) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +920671011000036103 Perindopril Erbumine (GA) 2 mg uncoated tablet, 30, blister pack 203124 920372011000036100 Perindopril Erbumine (GA) 2 mg uncoated tablet, 30 920138011000036108 Perindopril Erbumine (GA) 2 mg uncoated tablet 920105011000036108 Perindopril Erbumine (GA) 920105011000036108 Perindopril Erbumine (GA) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +920671011000036103 Perindopril Erbumine (GA) 2 mg uncoated tablet, 30, blister pack 121634 920372011000036100 Perindopril Erbumine (GA) 2 mg uncoated tablet, 30 920138011000036108 Perindopril Erbumine (GA) 2 mg uncoated tablet 920105011000036108 Perindopril Erbumine (GA) 920105011000036108 Perindopril Erbumine (GA) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +20867011000036106 Ceftriaxone (Mayne Pharma) 2 g powder for injection, 1 vial 92400 14029011000036107 Ceftriaxone (Mayne Pharma) 2 g powder for injection, 1 vial 7305011000036109 Ceftriaxone (Mayne Pharma) 2 g powder for injection, 2 g vial 4238011000036109 Ceftriaxone (Mayne Pharma) 4238011000036109 Ceftriaxone (Mayne Pharma) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +875371000168101 Bisoprolol (AN) 7.5 mg film-coated tablet, 30, blister pack 175913 875361000168107 Bisoprolol (AN) 7.5 mg film-coated tablet, 30 875331000168104 Bisoprolol (AN) 7.5 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 874371000168100 bisoprolol fumarate 7.5 mg tablet, 30 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +1099461000168105 Olanzapine (Chemmart) 20 mg film-coated tablet, 28, blister pack 158984 1099451000168108 Olanzapine (Chemmart) 20 mg film-coated tablet, 28 1099441000168106 Olanzapine (Chemmart) 20 mg film-coated tablet 23681000168105 Olanzapine (Chemmart) 23681000168105 Olanzapine (Chemmart) 6841000036106 olanzapine 20 mg tablet, 28 1361000036106 olanzapine 20 mg tablet 21485011000036103 olanzapine +706161000168107 Mycamine 50 mg powder for injection, 1 vial 196108 706151000168105 Mycamine 50 mg powder for injection, 1 vial 706131000168104 Mycamine 50 mg powder for injection, 50 mg vial 706091000168101 Mycamine 706091000168101 Mycamine 706141000168108 micafungin 50 mg injection, 1 vial 706121000168102 micafungin 50 mg injection, vial 706111000168109 micafungin +69142011000036100 Nicotinell Classic 4 mg chewing gum, 24, blister pack 152894 66942011000036109 Nicotinell Classic 4 mg chewing gum, 24 65470011000036109 Nicotinell Classic 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1116641000168109 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 7, blister pack 151627 1116631000168100 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 7 1116621000168103 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 63235011000036106 amlodipine 5 mg + valsartan 160 mg tablet, 7 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +757361000168103 Palexia SR 25 mg modified release tablet, 56, blister pack 229737 757351000168100 Palexia SR 25 mg modified release tablet, 56 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757341000168102 tapentadol 25 mg modified release tablet, 56 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +77241000036102 Zatamil Hydrogel 0.1% gel, 5 g, tube 195415 76921000036100 Zatamil Hydrogel 0.1% gel, 5 g 76731000036101 Zatamil Hydrogel 0.1% gel 40831000168104 Zatamil Hydrogel 40831000168104 Zatamil Hydrogel 76931000036103 mometasone furoate 0.1% gel, 5 g 76741000036106 mometasone furoate 0.1% gel 21409011000036100 mometasone +82883011000036101 Simvastatin (Chemmart) 40 mg film-coated tablet, 30, bottle 157737 11307011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet, 30 5689011000036100 Simvastatin (Chemmart) 40 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +52792011000036109 Axit 15 mg film-coated tablet, 60, blister pack 97194 52600011000036103 Axit 15 mg film-coated tablet, 60 52439011000036102 Axit 15 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 46481011000036100 mirtazapine 15 mg tablet, 60 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +152141000036103 Prexum 2.5 mg film-coated tablet, 30, bottle 194884 150261000036109 Prexum 2.5 mg film-coated tablet, 30 148191000036108 Prexum 2.5 mg film-coated tablet 147811000036109 Prexum 147811000036109 Prexum 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +904911000168108 Candesartan (CH) 16 mg uncoated tablet, 28, blister pack 195367 904901000168105 Candesartan (CH) 16 mg uncoated tablet, 28 904881000168108 Candesartan (CH) 16 mg uncoated tablet 904751000168106 Candesartan (CH) 904751000168106 Candesartan (CH) 904891000168106 candesartan cilexetil 16 mg tablet, 28 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +740001000168103 Ranitidine (AN) 150 mg film-coated tablet, 60, blister pack 148523 739991000168101 Ranitidine (AN) 150 mg film-coated tablet, 60 739921000168103 Ranitidine (AN) 150 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +696781000168107 Pravastatin (Auro) 20 mg uncoated tablet, 30, blister pack 191697 696771000168109 Pravastatin (Auro) 20 mg uncoated tablet, 30 696761000168103 Pravastatin (Auro) 20 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1005741000168103 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 190558 1005731000168107 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 1005721000168109 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 10 mL ampoule 728591000168104 Ropivacaine 0.2% (Actavis) 728591000168104 Ropivacaine 0.2% (Actavis) 1004501000168106 ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules 1004481000168102 ropivacaine hydrochloride 20 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +1042471000168100 Nicotine (Amcal) 4 mg lozenge, 108, blister pack 213240 1042461000168106 Nicotine (Amcal) 4 mg lozenge, 108 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897771000168103 nicotine 4 mg lozenge, 108 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +105091000036108 Amlo 10 mg uncoated tablet, 30, blister pack 201372 102261000036101 Amlo 10 mg uncoated tablet, 30 98811000036105 Amlo 10 mg uncoated tablet 3312011000036106 Amlo 3312011000036106 Amlo 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +59975011000036106 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 50 mL, bottle 120724 55937011000036109 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension, 50 mL 53666011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief colour free 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63165011000036102 ibuprofen 40 mg/mL oral liquid, 50 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +61209011000036108 Strepfen Intensive cherry 8.75 mg lozenge, 12, blister pack 76192 57145011000036102 Strepfen Intensive cherry 8.75 mg lozenge, 12 54217011000036109 Strepfen Intensive cherry 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63906011000036108 flurbiprofen 8.75 mg lozenge, 12 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +59791011000036108 Dymadon capsule shaped 500 mg uncoated tablet, 24, blister pack 114080 55753011000036105 Dymadon capsule shaped 500 mg uncoated tablet, 24 53696011000036105 Dymadon capsule shaped 500 mg uncoated tablet 4247011000036107 Dymadon 4247011000036107 Dymadon 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1082891000168109 Solian 50 mg uncoated tablet, 60, blister pack 96421 1082881000168106 Solian 50 mg uncoated tablet, 60 1082721000168101 Solian 50 mg uncoated tablet 4321011000036105 Solian 4321011000036105 Solian 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +20396011000036108 Avanza 30 mg film-coated tablet, 30, blister pack 77115 13604011000036109 Avanza 30 mg film-coated tablet, 30 6887011000036104 Avanza 30 mg film-coated tablet 43231000168109 Avanza 43231000168109 Avanza 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +152151000036100 Prexum 5 mg film-coated tablet, 30, bottle 194885 150271000036101 Prexum 5 mg film-coated tablet, 30 148181000036106 Prexum 5 mg film-coated tablet 147811000036109 Prexum 147811000036109 Prexum 26557011000036109 perindopril arginine 5 mg tablet, 30 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +701921000168107 Laxative with Senna (Chemists' Own) film-coated tablet, 90, bottle 218551 701911000168100 Laxative with Senna (Chemists' Own) film-coated tablet, 90 701881000168100 Laxative with Senna (Chemists' Own) film-coated tablet 701871000168103 Laxative with Senna (Chemists' Own) 701871000168103 Laxative with Senna (Chemists' Own) 81748011000036104 docusate sodium 50 mg + sennoside B 8 mg tablet, 90 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +928936011000036109 Topiramate (Lupin) 100 mg film-coated tablet, 60, bottle 155179 928297011000036102 Topiramate (Lupin) 100 mg film-coated tablet, 60 927926011000036100 Topiramate (Lupin) 100 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +697621000168104 Vascalace 1.25 mg capsule, 30, blister pack 203720 697371000168108 Vascalace 1.25 mg capsule, 30 697361000168102 Vascalace 1.25 mg capsule 15171000036101 Vascalace 15171000036101 Vascalace 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +688921000168108 Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll, carton 688911000168101 Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll 688891000168103 Hypafix (71443-0) 2.5 cm x 10 m tape 61781000168109 Hypafix (71443-0) 61781000168109 Hypafix (71443-0) 688901000168104 tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll 688881000168101 tape non woven retention polyacrylate 2.5 cm x 10 m tape 50701011000036106 tape non woven retention polyacrylate +701161000168104 Depreta 30 mg enteric capsule, 100, bottle 199004 701151000168101 Depreta 30 mg enteric capsule, 100 701081000168107 Depreta 30 mg enteric capsule 701041000168102 Depreta 701041000168102 Depreta 669411000168104 duloxetine 30 mg enteric capsule, 100 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +66431000036101 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 200 mL vials 63963 64341000036105 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 10 x 200 mL vials 61461000036104 Iomeron-350 714.4 mg (iodine 350 mg)/mL injection solution, 200 mL vial 8561000168103 Iomeron-350 8561000168103 Iomeron-350 64351000036108 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 10 x 200 mL vials 61471000036107 iomeprol 714.4 mg (iodine 350 mg)/mL injection, 200 mL vial 931793011000036105 iomeprol +154241000036100 Atozet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack, blister pack 196151 150451000036105 Atozet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack 148331000036105 Atorvastatin (MSD) 20 mg film-coated tablet 153961000036108 Atozet Composite Pack 147851000036108 Atorvastatin (MSD) 150461000036108 ezetimibe 10 mg tablet [30] (&) atorvastatin 20 mg tablet [30], 1 pack 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +154241000036100 Atozet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack, blister pack 196151 150451000036105 Atozet Composite Pack (30 x 10 mg tablets, 30 x 20 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 153961000036108 Atozet Composite Pack 3589011000036101 Ezetrol 150461000036108 ezetimibe 10 mg tablet [30] (&) atorvastatin 20 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +696821000168102 Pravastatin (Auro) 20 mg uncoated tablet, 30, bottle 191699 696771000168109 Pravastatin (Auro) 20 mg uncoated tablet, 30 696761000168103 Pravastatin (Auro) 20 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +925177011000036104 Lercan 20 mg film-coated tablet, 28, blister pack 152708 924714011000036100 Lercan 20 mg film-coated tablet, 28 924429011000036103 Lercan 20 mg film-coated tablet 924368011000036107 Lercan 924368011000036107 Lercan 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +19899011000036104 Zocor 10 mg film-coated tablet, 30, blister pack 65976 13146011000036107 Zocor 10 mg film-coated tablet, 30 6429011000036107 Zocor 10 mg film-coated tablet 3904011000036106 Zocor 3904011000036106 Zocor 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +933230291000036109 Revolade 25 mg film-coated tablet, 28, blister pack 158419 933224201000036105 Revolade 25 mg film-coated tablet, 28 933220051000036108 Revolade 25 mg film-coated tablet 933219071000036102 Revolade 933219071000036102 Revolade 933224211000036107 eltrombopag 25 mg tablet, 28 933220061000036106 eltrombopag 25 mg tablet 933232121000036100 eltrombopag +971221000168104 Glivanib 100 mg hard capsule, 96, blister pack 285899 971211000168106 Glivanib 100 mg hard capsule, 96 971141000168102 Glivanib 100 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 828871000168100 imatinib 100 mg capsule, 96 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1042511000168109 Nicotine (Amcal) 4 mg lozenge, 132, blister pack 213240 1042501000168106 Nicotine (Amcal) 4 mg lozenge, 132 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897831000168108 nicotine 4 mg lozenge, 132 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +870391000168109 Desven 50 mg modified release tablet, 14, bottle 218066 870381000168106 Desven 50 mg modified release tablet, 14 870351000168104 Desven 50 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +81166011000036104 Egozite Baby cream, 50 g, tube 56807 80668011000036108 Egozite Baby cream, 50 g 80232011000036104 Egozite Baby cream 80120011000036104 Egozite Baby 80120011000036104 Egozite Baby 81726011000036100 zinc oxide 15% + dimeticone-350 15% + light liquid paraffin 10% cream, 50 g 81302011000036105 zinc oxide 15% + dimeticone-350 15% + light liquid paraffin 10% cream 81228011000036105 zinc oxide + dimeticone-350 + light liquid paraffin +50256011000036101 Comfeel Seasorb Filler (3740) 2 g (40 cm) rope, 6 x 2 g, carton 49521011000036107 Comfeel Seasorb Filler (3740) 2 g (40 cm) rope, 6 x 2 g 48721011000036108 Comfeel Seasorb Filler (3740) 2 g (40 cm) rope, 2 g 27811000168108 Comfeel Seasorb Filler (3740) 27811000168108 Comfeel Seasorb Filler (3740) 51468011000036101 dressing alginate cavity wound 2 g (40 cm) rope, 6 x 2 g 50975011000036107 dressing alginate cavity wound 2 g (40 cm) rope, 2 g 50720011000036108 dressing alginate cavity wound +18494011000036109 Aciclovir (Pharmacor) 800 mg tablet, 35, blister pack 130608 11899011000036107 Aciclovir (Pharmacor) 800 mg tablet, 35 5985011000036101 Aciclovir (Pharmacor) 800 mg tablet 3270011000036107 Aciclovir (Pharmacor) 3270011000036107 Aciclovir (Pharmacor) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +770281000168104 Oralair Continuation Treatment 300 IR sublingual tablet, 90, blister pack 167566 770271000168102 Oralair Continuation Treatment 300 IR sublingual tablet, 90 770221000168103 Oralair Continuation Treatment 300 IR sublingual tablet 769411000168108 Oralair Continuation Treatment 300 IR 769411000168108 Oralair Continuation Treatment 300 IR 770261000168108 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet, 90 770061000168101 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract (total 300 IR) sublingual tablet 769991000168109 Dactylis glomerata pollen extract + Poa pratensis pollen extract + Lolium perenne pollen extract + Anthoxanthum odoratum pollen extract + Phleum pratense pollen extract +1116681000168104 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 28, blister pack 151627 1116671000168102 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 28 1116621000168103 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 63232011000036103 amlodipine 5 mg + valsartan 160 mg tablet, 28 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +43741011000036107 Elapril 5 mg uncoated tablet, 30, blister pack 121758 41253011000036105 Elapril 5 mg uncoated tablet, 30 39828011000036100 Elapril 5 mg uncoated tablet 39617011000036100 Elapril 39617011000036100 Elapril 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +1108781000168105 Midazolam (GenRx) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 217662 1108771000168107 Midazolam (GenRx) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1108761000168101 Midazolam (GenRx) 50 mg/10 mL injection solution, 10 mL ampoule 1108721000168106 Midazolam (GenRx) 1108721000168106 Midazolam (GenRx) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +19415011000036105 Quilonum SR 450 mg modified release tablet, 100, blister pack 53377 12699011000036102 Quilonum SR 450 mg modified release tablet, 100 5635011000036107 Quilonum SR 450 mg modified release tablet 3881000168104 Quilonum SR 3881000168104 Quilonum SR 27293011000036104 lithium carbonate 450 mg modified release tablet, 100 22646011000036101 lithium carbonate 450 mg modified release tablet 21570011000036108 lithium carbonate +19265011000036108 Rimycin 300 mg hard capsule, 10, bottle 48231 12555011000036104 Rimycin 300 mg hard capsule, 10 5666011000036107 Rimycin 300 mg hard capsule 3021011000036106 Rimycin 3021011000036106 Rimycin 27197011000036106 rifampicin 300 mg capsule, 10 22558011000036109 rifampicin 300 mg capsule 21532011000036109 rifampicin +860341000168108 Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle 81700 860331000168104 Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120 860321000168102 Caltrate 1.5 g (calcium 600 mg) film-coated tablet 3700011000036105 Caltrate 3700011000036105 Caltrate 860261000168103 calcium carbonate 1.5 g (calcium 600 mg) tablet, 120 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 745551000168101 calcium +1103711000168109 Quetiapine (GH) 300 mg film-coated tablet, 10, blister pack 179896 1103701000168106 Quetiapine (GH) 300 mg film-coated tablet, 10 2211000036108 Quetiapine (GH) 300 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103691000168106 quetiapine 300 mg tablet, 10 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +967571000168103 Trulicity 1.5 mg/0.5 mL injection solution, 2 x 0.5 mL injection devices 217965 967561000168109 Trulicity 1.5 mg/0.5 mL injection solution, 2 x 0.5 mL injection devices 729761000168107 Trulicity 1.5 mg/0.5 mL injection solution, 0.5 mL injection device 729641000168103 Trulicity 729641000168103 Trulicity 967551000168107 dulaglutide 1.5 mg/0.5 mL injection, 2 x 0.5 mL injection devices 729751000168105 dulaglutide 1.5 mg/0.5 mL injection, injection device 729741000168108 dulaglutide +931508011000036101 Smoflipid 20% intravenous infusion injection, 250 mL, bag 158359 930669011000036106 Smoflipid 20% intravenous infusion injection, 250 mL 930000011000036107 Smoflipid 20% intravenous infusion injection, 250 mL bag 29901000168108 Smoflipid 20% 29901000168108 Smoflipid 20% 932389011000036106 soya oil 15 g/250 mL + medium chain triglycerides 15 g/250 mL + olive oil 12.5 g/250 mL + fish oil natural 7.5 g/250 mL injection, 250 mL 931842011000036107 soya oil 15 g/250 mL + medium chain triglycerides 15 g/250 mL + olive oil 12.5 g/250 mL + fish oil natural 7.5 g/250 mL injection, bag 931792011000036103 soya oil + medium chain triglycerides + olive oil + fish oil natural +971181000168107 Glivanib 100 mg hard capsule, 48, blister pack 285899 971171000168109 Glivanib 100 mg hard capsule, 48 971141000168102 Glivanib 100 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 828841000168107 imatinib 100 mg capsule, 48 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +834381000168104 Aspalgin dispersible tablet, 100, blister pack 13431 834371000168102 Aspalgin dispersible tablet, 100 834231000168107 Aspalgin dispersible tablet 4318011000036107 Aspalgin 4318011000036107 Aspalgin 834361000168108 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 100 834221000168109 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet 21831011000036102 aspirin + codeine +20383011000036101 Norflohexal 400 mg film-coated tablet, 14, blister pack 76899 13591011000036100 Norflohexal 400 mg film-coated tablet, 14 6874011000036101 Norflohexal 400 mg film-coated tablet 3855011000036108 Norflohexal 3855011000036108 Norflohexal 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +915771000168101 Cervarix injection suspension, 10 x 0.5 mL vials 126115 915761000168107 Cervarix injection suspension, 10 x 0.5 mL vials 915711000168109 Cervarix injection suspension, 0.5 mL vial 73753011000036102 Cervarix 73753011000036102 Cervarix 915751000168105 human papillomavirus bivalent vaccine injection, 10 x 0.5 mL vials 915701000168106 human papillomavirus bivalent vaccine injection, 0.5 mL vial 823121000168104 human papillomavirus bivalent vaccine +60275011000036107 Fexo (Chemists' Own) 120 mg film-coated tablet, 30, blister pack 134786 56234011000036101 Fexo (Chemists' Own) 120 mg film-coated tablet, 30 53848011000036106 Fexo (Chemists' Own) 120 mg film-coated tablet 53270011000036103 Fexo (Chemists' Own) 53270011000036103 Fexo (Chemists' Own) 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +19008011000036106 Minax 100 mg uncoated tablet, 60, bottle 34410 12395011000036109 Minax 100 mg uncoated tablet, 60 4708011000036105 Minax 100 mg uncoated tablet 4275011000036101 Minax 4275011000036101 Minax 27897011000036102 metoprolol tartrate 100 mg tablet, 60 23222011000036108 metoprolol tartrate 100 mg tablet 21662011000036107 metoprolol +33589011000036103 Humulin 30/70 injection suspension, 5 x 3 mL syringes 57650 33327011000036101 Humulin 30/70 injection suspension, 5 x 3 mL syringes 6144011000036108 Humulin 30/70 injection suspension, 3 mL syringe 29311000168107 Humulin 30/70 29311000168107 Humulin 30/70 33808011000036106 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, 5 x 3 mL syringes 22743011000036103 insulin neutral human 30 units/mL + insulin isophane human 70 units/mL injection, syringe 33639011000036103 insulin isophane human + insulin neutral human +44109011000036109 Voltaren Ophtha 0.1% eye drops solution, 30 x 0.3 mL unit doses, ampoule 51527 41588011000036103 Voltaren Ophtha 0.1% eye drops solution, 30 x 0.3 mL unit doses 40087011000036107 Voltaren Ophtha 0.1% eye drops solution, 0.3 mL unit dose 39691011000036109 Voltaren Ophtha 39691011000036109 Voltaren Ophtha 46416011000036107 diclofenac sodium 0.1% eye drops, 30 x 0.3 mL unit doses 45142011000036102 diclofenac sodium 0.1% eye drops, unit dose 21288011000036105 diclofenac +1100101000168104 Valganciclovir (Chemmart) 450 mg film-coated tablet, 180, bottle 184307 1100091000168109 Valganciclovir (Chemmart) 450 mg film-coated tablet, 180 1100041000168101 Valganciclovir (Chemmart) 450 mg film-coated tablet 1100031000168105 Valganciclovir (Chemmart) 1100031000168105 Valganciclovir (Chemmart) 1012731000168101 valganciclovir 450 mg tablet, 180 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +887651000168104 Praluent 75 mg/mL injection solution, 1 mL syringe 238304 887641000168101 Praluent 75 mg/mL injection solution, 1 mL syringe 887621000168107 Praluent 75 mg/mL injection solution, syringe 886871000168105 Praluent 886871000168105 Praluent 887631000168105 alirocumab 75 mg/mL injection, 1 mL syringe 887611000168100 alirocumab 75 mg/mL injection, syringe 886881000168108 alirocumab +881211000168109 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device 42980 881201000168106 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose 881191000168108 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, dose 56121000168107 Epipen Jr Auto-Injector 56121000168107 Epipen Jr Auto-Injector 726671000168102 adrenaline (epinephrine) 150 microgram/0.3 mL injection, 1 dose 726651000168106 adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +1025251000168103 Perindopril Combi 5/1.25 (Ardix) film-coated tablet, 10, bottle 269533 1025241000168100 Perindopril Combi 5/1.25 (Ardix) film-coated tablet, 10 1025231000168109 Perindopril Combi 5/1.25 (Ardix) film-coated tablet 1025221000168106 Perindopril Combi 5/1.25 (Ardix) 1025221000168106 Perindopril Combi 5/1.25 (Ardix) 727541000168106 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 10 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +59804011000036106 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 96, blister pack 114361 55766011000036107 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet, 96 53619011000036102 Ibuprofen (Pharmacy Health) 200 mg film-coated tablet 45481000168108 Ibuprofen (Pharmacy Health) 45481000168108 Ibuprofen (Pharmacy Health) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +973351000168103 Pregabalin (Teva) 25 mg hard capsule, 21, blister pack 229552 973341000168100 Pregabalin (Teva) 25 mg hard capsule, 21 973311000168104 Pregabalin (Teva) 25 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 854731000168102 pregabalin 25 mg capsule, 21 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +931551011000036104 Danset 8 mg film-coated tablet, 10, blister pack 163435 930712011000036106 Danset 8 mg film-coated tablet, 10 930025011000036107 Danset 8 mg film-coated tablet 12931000168101 Danset 12931000168101 Danset 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +19762011000036109 Gemhexal 600 mg film-coated tablet, 60, bottle 62537 13110011000036100 Gemhexal 600 mg film-coated tablet, 60 6393011000036105 Gemhexal 600 mg film-coated tablet 3866011000036109 Gemhexal 3866011000036109 Gemhexal 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +1103871000168109 Quetiapine (CH) 25 mg film-coated tablet, 60, blister pack 172841 1103861000168103 Quetiapine (CH) 25 mg film-coated tablet, 60 1103851000168100 Quetiapine (CH) 25 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +973231000168102 Lyzalon 300 mg hard capsule, 56, blister pack 224416 972511000168100 Lyzalon 300 mg hard capsule, 56 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +933091000168108 Centevo 150/37.5/200 mg film-coated tablet, 10, bottle 238857 933081000168105 Centevo 150/37.5/200 mg film-coated tablet, 10 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933071000168107 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 10 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +45241000036106 Simvastatin (DRLA) 20 mg film-coated tablet, 30, bottle 164087 43781000036109 Simvastatin (DRLA) 20 mg film-coated tablet, 30 41161000036101 Simvastatin (DRLA) 20 mg film-coated tablet 40181000036104 Simvastatin (DRLA) 40181000036104 Simvastatin (DRLA) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +19282011000036103 Valium 5 mg uncoated tablet, 50, blister pack 48566 12572011000036109 Valium 5 mg uncoated tablet, 50 5024011000036101 Valium 5 mg uncoated tablet 2980011000036107 Valium 2980011000036107 Valium 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +705521000168104 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g, jar 14195 705511000168106 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g 705491000168101 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream 60471000168109 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) 60471000168109 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) 705501000168108 salicylic acid 3% + precipitated sulfur 3% + aqueous cream, 100 g 705481000168104 salicylic acid 3% + precipitated sulfur 3% + aqueous cream 69871011000036100 salicylic acid + precipitated sulfur + aqueous cream +60575011000036100 Nasal Decongestant PE (Nyal) 10 mg tablet, 24, blister pack 155128 56533011000036109 Nasal Decongestant PE (Nyal) 10 mg tablet, 24 53957011000036100 Nasal Decongestant PE (Nyal) 10 mg tablet 53183011000036104 Nasal Decongestant PE (Nyal) 53183011000036104 Nasal Decongestant PE (Nyal) 63400011000036108 phenylephrine hydrochloride 10 mg tablet, 24 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +791221000168103 Trexject 15 mg/0.3 mL injection solution, 6 x 0.3 mL syringes 233717 791211000168105 Trexject 15 mg/0.3 mL injection solution, 6 x 0.3 mL syringes 791131000168105 Trexject 15 mg/0.3 mL injection solution, 0.3 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791201000168107 methotrexate 15 mg/0.3 mL injection, 6 x 0.3 mL syringes 791121000168107 methotrexate 15 mg/0.3 mL injection, syringe 21342011000036105 methotrexate +1104441000168103 Delucon 300 mg film-coated tablet, 20, blister pack 172837 1104431000168107 Delucon 300 mg film-coated tablet, 20 1761000036105 Delucon 300 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +69296011000036107 Glucose (Baxter) 70% (350 g/500 mL) concentrated injection, 500 mL bag 19505 67096011000036105 Glucose (Baxter) 70% (350 g/500 mL) concentrated injection, 500 mL bag 65435011000036102 Glucose (Baxter) 70% (350 g/500 mL) concentrated injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71664011000036107 glucose 70% (350 g/500 mL) injection, 500 mL bag 70114011000036100 glucose 70% (350 g/500 mL) injection, bag 21354011000036103 glucose +931643011000036106 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 500, bottle 166256 930803011000036103 Pravastatin Sodium (Apo) 20 mg uncoated tablet, 500 930054011000036109 Pravastatin Sodium (Apo) 20 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 932417011000036106 pravastatin sodium 20 mg tablet, 500 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +923710011000036107 Irinotecan Hydrochloride Trihydrate (Baxter) 40 mg/2 mL concentrated injection, 2 mL vial 144708 923284011000036105 Irinotecan Hydrochloride Trihydrate (Baxter) 40 mg/2 mL concentrated injection, 2 mL vial 922973011000036108 Irinotecan Hydrochloride Trihydrate (Baxter) 40 mg/2 mL concentrated injection, 2 mL vial 922941011000036106 Irinotecan Hydrochloride Trihydrate (Baxter) 922941011000036106 Irinotecan Hydrochloride Trihydrate (Baxter) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +84301011000036108 Vimpat 200 mg film-coated tablet, 56, blister pack 151812 83994011000036104 Vimpat 200 mg film-coated tablet, 56 83629011000036105 Vimpat 200 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84629011000036107 lacosamide 200 mg tablet, 56 84429011000036109 lacosamide 200 mg tablet 84408011000036109 lacosamide +84301011000036108 Vimpat 200 mg film-coated tablet, 56, blister pack 196452 83994011000036104 Vimpat 200 mg film-coated tablet, 56 83629011000036105 Vimpat 200 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84629011000036107 lacosamide 200 mg tablet, 56 84429011000036109 lacosamide 200 mg tablet 84408011000036109 lacosamide +928821000168108 Zovirax 200 mg uncoated tablet, 50, blister pack 11014 928811000168101 Zovirax 200 mg uncoated tablet, 50 928781000168103 Zovirax 200 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 27698011000036106 aciclovir 200 mg tablet, 50 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +1008071000168100 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 14 actuations, dry powder inhaler 73725 1008061000168106 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, 14 actuations 1008011000168108 Asmanex Twisthaler 200 microgram/actuation powder for inhalation, actuation 1007991000168101 Asmanex Twisthaler 1007991000168101 Asmanex Twisthaler 1008051000168109 mometasone furoate 200 microgram/actuation powder for inhalation, 14 actuations 1008001000168105 mometasone furoate 200 microgram/actuation powder for inhalation, actuation 21409011000036100 mometasone +873121000168100 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 19610 873111000168107 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 873011000168108 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 30421000168100 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% 30421000168100 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% 873101000168109 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags 873001000168105 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 84407011000036108 alanine + arginine + glucose + glycine + histidine + isoleucine + leucine + lysine + magnesium chloride + methionine + phenylalanine + phosphorus + proline + serine + sodium acetate trihydrate + sodium chloride + threonine + tryptophan + tyrosine + valine +59958011000036102 Nurofen Tension Headache 200 mg tablet, 24, blister pack 120354 55920011000036105 Nurofen Tension Headache 200 mg tablet, 24 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +701761000168100 Frusemide (RBX) 20 mg tablet, 100, bottle 186519 701751000168102 Frusemide (RBX) 20 mg tablet, 100 701741000168104 Frusemide (RBX) 20 mg tablet 701701000168101 Frusemide (RBX) 701701000168101 Frusemide (RBX) 27775011000036103 furosemide (frusemide) 20 mg tablet, 100 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +44362011000036106 Synagis (1 x 100 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 68290 41829011000036103 Synagis (1 x 100 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack 638691000168109 Synagis (inert substance) diluent, 1 mL ampoule 39608011000036102 Synagis 39608011000036102 Synagis 46635011000036106 palivizumab 100 mg injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +44362011000036106 Synagis (1 x 100 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 68290 41829011000036103 Synagis (1 x 100 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack 40218011000036104 Synagis (palivizumab 100 mg) powder for injection, 100 mg vial 39608011000036102 Synagis 39608011000036102 Synagis 46635011000036106 palivizumab 100 mg injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 45249011000036109 palivizumab 100 mg injection, vial 44929011000036103 palivizumab +939511000168105 Celecoxib (Ranbaxy) 200 mg hard capsule, 30, blister pack 212788 939501000168107 Celecoxib (Ranbaxy) 200 mg hard capsule, 30 939451000168105 Celecoxib (Ranbaxy) 200 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +864531000168101 Amitriptyline (AN) 10 mg tablet, 100, blister pack 232116 864521000168104 Amitriptyline (AN) 10 mg tablet, 100 864441000168109 Amitriptyline (AN) 10 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +872631000168100 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 19438 872621000168103 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 872601000168107 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 80123011000036107 Plasma-Lyte 148 Replacement in 5% Glucose 80123011000036107 Plasma-Lyte 148 Replacement in 5% Glucose 872611000168105 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 1 L bag 872591000168100 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, bag 81221011000036101 sodium chloride + sodium gluconate + sodium acetate trihydrate + potassium chloride + magnesium chloride + glucose +1033791000168103 Atomoxetine (CH) 40 mg hard capsule, 7, blister pack 234826 1033781000168101 Atomoxetine (CH) 40 mg hard capsule, 7 1033771000168104 Atomoxetine (CH) 40 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +696941000168104 Atorvastatin (Blooms The Chemist) 80 mg film-coated tablet, 30, blister pack 153719 696931000168108 Atorvastatin (Blooms The Chemist) 80 mg film-coated tablet, 30 696921000168105 Atorvastatin (Blooms The Chemist) 80 mg film-coated tablet 692851000168106 Atorvastatin (Blooms The Chemist) 692851000168106 Atorvastatin (Blooms The Chemist) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +61543011000036108 Pain Tabsule (Chemists' Own) uncoated tablet, 96, blister pack 93812 57468011000036103 Pain Tabsule (Chemists' Own) uncoated tablet, 96 54314011000036105 Pain Tabsule (Chemists' Own) uncoated tablet 4341000168101 Pain Tabsule (Chemists' Own) 4341000168101 Pain Tabsule (Chemists' Own) 63892011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 96 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +60742011000036105 Paraderm Plus cream, 10 g, tube 50451 56700011000036107 Paraderm Plus cream, 10 g 54040011000036105 Paraderm Plus cream 53236011000036103 Paraderm Plus 53236011000036103 Paraderm Plus 63518011000036100 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 10 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +152231000036104 Novatin 25 mg hard capsule, 60, blister pack 196003 150351000036102 Novatin 25 mg hard capsule, 60 148511000036105 Novatin 25 mg hard capsule 147841000036105 Novatin 147841000036105 Novatin 150361000036104 acitretin 25 mg capsule, 60 22633011000036106 acitretin 25 mg capsule 21686011000036108 acitretin +32608011000036106 Aldazine 25 mg film-coated tablet, 90, blister pack 93656 32405011000036102 Aldazine 25 mg film-coated tablet, 90 32255011000036108 Aldazine 25 mg film-coated tablet 3699011000036109 Aldazine 3699011000036109 Aldazine 32803011000036105 thioridazine hydrochloride 25 mg tablet, 90 32706011000036101 thioridazine hydrochloride 25 mg tablet 21637011000036101 thioridazine +870471000168101 Desven 100 mg modified release tablet, 7, bottle 218072 870461000168107 Desven 100 mg modified release tablet, 7 870451000168105 Desven 100 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +697461000168107 Clindamycin (Link) 150 mg hard capsule, 24, blister pack 214526 697451000168105 Clindamycin (Link) 150 mg hard capsule, 24 697441000168108 Clindamycin (Link) 150 mg hard capsule 697431000168104 Clindamycin (Link) 697431000168104 Clindamycin (Link) 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +699631000168105 Stivarga 40 mg tablet, 28, bottle 200553 699621000168107 Stivarga 40 mg tablet, 28 699591000168105 Stivarga 40 mg tablet 699521000168108 Stivarga 699521000168108 Stivarga 699611000168100 regorafenib 40 mg tablet, 28 699571000168109 regorafenib 40 mg tablet 699551000168100 regorafenib +979771000168109 Serc 8 mg uncoated tablet, 10, blister pack 61688 979761000168103 Serc 8 mg uncoated tablet, 10 979751000168100 Serc 8 mg uncoated tablet 39692011000036103 Serc 39692011000036103 Serc 883091000168108 betahistine dihydrochloride 8 mg tablet, 10 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +1108141000168104 Midavel 15 mg/3 mL injection solution, 5 x 3 mL ampoules 207228 1108131000168108 Midavel 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1108101000168101 Midavel 15 mg/3 mL injection solution, 3 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +925220011000036103 Ropicor 2 mg film-coated tablet, 84, bottle 157769 924757011000036103 Ropicor 2 mg film-coated tablet, 84 924459011000036102 Ropicor 2 mg film-coated tablet 2051000168108 Ropicor 2051000168108 Ropicor 46973011000036106 ropinirole 2 mg tablet, 84 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +933093011000036100 Fluorouracil (Ebewe) 5 g/100 mL injection solution, 100 mL vial 166741 932896011000036103 Fluorouracil (Ebewe) 5 g/100 mL injection solution, 100 mL vial 932752011000036107 Fluorouracil (Ebewe) 5 g/100 mL injection solution, 100 mL vial 932710011000036102 Fluorouracil (Ebewe) 932710011000036102 Fluorouracil (Ebewe) 932897011000036100 fluorouracil 5 g/100 mL injection, 100 mL vial 932753011000036100 fluorouracil 5 g/100 mL injection, vial 21481011000036100 fluorouracil +799901000168100 Abyraz 20 mg uncoated tablet, 28, blister pack 159505 799891000168104 Abyraz 20 mg uncoated tablet, 28 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 787681000168108 aripiprazole 20 mg tablet, 28 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +80981011000036100 Resdone 4 mg film-coated tablet, 50, blister pack 147676 80550011000036109 Resdone 4 mg film-coated tablet, 50 80186011000036107 Resdone 4 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81631011000036102 risperidone 4 mg tablet, 50 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +1108661000168109 Midazolam (Claris) 5 mg/mL injection solution, 5 x 1 mL ampoules 216024 1108651000168107 Midazolam (Claris) 5 mg/mL injection solution, 5 x 1 mL ampoules 1108641000168105 Midazolam (Claris) 5 mg/mL injection solution, ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +18447011000036108 Ordine 5 mg/mL oral liquid solution, 200 mL, bottle 150221 11386011000036102 Ordine 5 mg/mL oral liquid solution, 200 mL 5831011000036103 Ordine 5 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 26629011000036108 morphine hydrochloride trihydrate 5 mg/mL oral liquid, 200 mL 22035011000036100 morphine hydrochloride trihydrate 5 mg/mL oral liquid 21252011000036100 morphine +18447011000036108 Ordine 5 mg/mL oral liquid solution, 200 mL, bottle 10784 11386011000036102 Ordine 5 mg/mL oral liquid solution, 200 mL 5831011000036103 Ordine 5 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 26629011000036108 morphine hydrochloride trihydrate 5 mg/mL oral liquid, 200 mL 22035011000036100 morphine hydrochloride trihydrate 5 mg/mL oral liquid 21252011000036100 morphine +44846011000036102 Avastin 400 mg/16 mL concentrated injection, 16 mL vial 99757 42278011000036104 Avastin 400 mg/16 mL concentrated injection, 16 mL vial 40417011000036101 Avastin 400 mg/16 mL concentrated injection, 16 mL vial 39714011000036102 Avastin 39714011000036102 Avastin 47029011000036100 bevacizumab 400 mg/16 mL injection, 16 mL vial 45381011000036108 bevacizumab 400 mg/16 mL injection, vial 44904011000036105 bevacizumab +85601000036100 Rabeprazole Sodium (Stada) 20 mg enteric tablet, 30, blister pack 189753 84731000036102 Rabeprazole Sodium (Stada) 20 mg enteric tablet, 30 84171000036104 Rabeprazole Sodium (Stada) 20 mg enteric tablet 83991000036101 Rabeprazole Sodium (Stada) 83991000036101 Rabeprazole Sodium (Stada) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +840931000168107 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack 132881 840921000168109 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack 840901000168100 Infanrix Hexa 10 microgram powder for injection, 10 microgram vial 12341000168106 Infanrix Hexa 12341000168106 Infanrix Hexa 840911000168102 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 828231000168104 Haemophilus influenzae type b conjugate (PRP-T) vaccine +840931000168107 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack 132881 840921000168109 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack 840891000168104 Infanrix Hexa injection suspension, 0.5 mL syringe 12341000168106 Infanrix Hexa 12341000168106 Infanrix Hexa 840911000168102 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack 836651000168107 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 836641000168105 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine +1022461000168109 Allermax 50 microgram/actuation nasal spray, 65 actuations, pump pack 77401 1022451000168107 Allermax 50 microgram/actuation nasal spray, 65 actuations 1022421000168104 Allermax 50 microgram/actuation nasal spray, actuation 1022411000168106 Allermax 1022411000168106 Allermax 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +17860011000036102 Egocort 1% cream, 50 g, tube 10618 11328011000036107 Egocort 1% cream, 50 g 4520011000036100 Egocort 1% cream 3064011000036102 Egocort 3064011000036102 Egocort 26607011000036107 hydrocortisone 1% cream, 50 g 22015011000036108 hydrocortisone 1% cream 21681011000036103 hydrocortisone +962501000168106 Carvedilol (Watson) 12.5 mg uncoated tablet, 60, blister pack 194079 962491000168104 Carvedilol (Watson) 12.5 mg uncoated tablet, 60 962481000168102 Carvedilol (Watson) 12.5 mg uncoated tablet 911151000168108 Carvedilol (Watson) 911151000168108 Carvedilol (Watson) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +18631011000036103 Amprace 20 mg uncoated tablet, 30, blister pack 11613 11504011000036109 Amprace 20 mg uncoated tablet, 30 5653011000036105 Amprace 20 mg uncoated tablet 4416011000036100 Amprace 4416011000036100 Amprace 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +1025111000168109 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 60, blister pack 193305 1025101000168106 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 60 1025031000168100 Pregabalin (Blooms The Chemist) 300 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +44489011000036107 Ranihexal 50 mg/5 mL injection solution, 5 x 5 mL ampoules 75771 41944011000036105 Ranihexal 50 mg/5 mL injection solution, 5 x 5 mL ampoules 40277011000036105 Ranihexal 50 mg/5 mL injection solution, 5 mL ampoule 2927011000036101 Ranihexal 2927011000036101 Ranihexal 46729011000036102 ranitidine 50 mg/5 mL injection, 5 x 5 mL ampoules 45285011000036101 ranitidine 50 mg/5 mL injection, ampoule 21682011000036109 ranitidine +103721000036109 Hayfever Sinus Relief PE (Chemists' Own) uncoated tablet, 24, blister pack 150872 101051000036101 Hayfever Sinus Relief PE (Chemists' Own) uncoated tablet, 24 98341000036102 Hayfever Sinus Relief PE (Chemists' Own) uncoated tablet 98001000036103 Hayfever Sinus Relief PE (Chemists' Own) 98001000036103 Hayfever Sinus Relief PE (Chemists' Own) 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +801821000168102 Actonate EC Once-a-Week 35 mg enteric tablet, 1, blister pack 166840 801811000168109 Actonate EC Once-a-Week 35 mg enteric tablet, 1 801801000168106 Actonate EC Once-a-Week 35 mg enteric tablet 801791000168105 Actonate EC Once-a-Week 801791000168105 Actonate EC Once-a-Week 700031171000036104 risedronate sodium 35 mg enteric tablet, 1 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +921827011000036108 Quitx Freshmint 4 mg chewing gum, 24, blister pack 143432 921413011000036102 Quitx Freshmint 4 mg chewing gum, 24 920993011000036107 Quitx Freshmint 4 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63639011000036105 nicotine 4 mg gum, 24 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +1098181000168104 Valaciclovir (Auro) 500 mg film-coated tablet, 100, bottle 173285 1098171000168102 Valaciclovir (Auro) 500 mg film-coated tablet, 100 1098001000168108 Valaciclovir (Auro) 500 mg film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +859381000168104 Odefsey film-coated tablet, 30, bottle 260634 859371000168102 Odefsey film-coated tablet, 30 859351000168106 Odefsey film-coated tablet 859281000168108 Odefsey 859281000168108 Odefsey 859361000168108 emtricitabine 200 mg + rilpivirine 25 mg + tenofovir alafenamide 25 mg tablet, 30 859341000168109 emtricitabine 200 mg + rilpivirine 25 mg + tenofovir alafenamide 25 mg tablet 859331000168100 emtricitabine + rilpivirine + tenofovir alafenamide +775841000168100 Targin 30/15 mg modified release tablet, 20, blister pack 216280 775831000168109 Targin 30/15 mg modified release tablet, 20 775811000168104 Targin 30/15 mg modified release tablet 775791000168103 Targin 30/15 mg 775791000168103 Targin 30/15 mg 775821000168106 oxycodone hydrochloride 30 mg + naloxone hydrochloride 15 mg modified release tablet, 20 775801000168102 oxycodone hydrochloride 30 mg + naloxone hydrochloride 15 mg modified release tablet 923931011000036100 oxycodone + naloxone +846491000168104 Progout 100 mg uncoated tablet, 200, bottle 27969 846481000168102 Progout 100 mg uncoated tablet, 200 5743011000036103 Progout 100 mg uncoated tablet 4173011000036104 Progout 4173011000036104 Progout 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +977121000168103 Pregabalin (Apotex) 200 mg hard capsule, 56, blister pack 267557 977111000168105 Pregabalin (Apotex) 200 mg hard capsule, 56 977061000168109 Pregabalin (Apotex) 200 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +83188011000036107 Irinotecan Hydrochloride Trihydrate (Ebewe) 300 mg/15 mL concentrated injection, 15 mL vial 154240 83134011000036107 Irinotecan Hydrochloride Trihydrate (Ebewe) 300 mg/15 mL concentrated injection, 15 mL vial 83077011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 300 mg/15 mL concentrated injection, 15 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 51560011000036109 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, 15 mL vial 51003011000036104 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, vial 21503011000036106 irinotecan +892491000168107 Candesartan HCT 32/25 (Alphapharm) tablet, 30, bottle 206481 892461000168100 Candesartan HCT 32/25 (Alphapharm) tablet, 30 892431000168108 Candesartan HCT 32/25 (Alphapharm) tablet 892421000168105 Candesartan HCT 32/25 (Alphapharm) 892421000168105 Candesartan HCT 32/25 (Alphapharm) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19214011000036105 Flagyl 400 mg uncoated tablet, 21, blister pack 47090 12504011000036105 Flagyl 400 mg uncoated tablet, 21 5955011000036105 Flagyl 400 mg uncoated tablet 6921000168102 Flagyl 6921000168102 Flagyl 27573011000036103 metronidazole 400 mg tablet, 21 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +19214011000036105 Flagyl 400 mg uncoated tablet, 21, blister pack 160174 12504011000036105 Flagyl 400 mg uncoated tablet, 21 5955011000036105 Flagyl 400 mg uncoated tablet 6921000168102 Flagyl 6921000168102 Flagyl 27573011000036103 metronidazole 400 mg tablet, 21 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +34833011000036108 Concerta 36 mg modified release tablet, 28, bottle 93863 34408011000036101 Concerta 36 mg modified release tablet, 28 7354011000036103 Concerta 36 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 35247011000036103 methylphenidate hydrochloride 36 mg modified release tablet, 28 23438011000036105 methylphenidate hydrochloride 36 mg modified release tablet 21277011000036101 methylphenidate +20614011000036106 Valpam 2 mg uncoated tablet, 50, bottle 80810 13795011000036102 Valpam 2 mg uncoated tablet, 50 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +1047771000168108 Bupretec 10 microgram/hour patch, 2, sachet 234731 1047761000168102 Bupretec 10 microgram/hour patch, 2 1047691000168103 Bupretec 10 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 26681011000036100 buprenorphine 10 microgram/hour patch, 2 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +20015011000036101 Vasocardol CD 180 mg modified release capsule, 30, blister pack 68923 13251011000036102 Vasocardol CD 180 mg modified release capsule, 30 6533011000036101 Vasocardol CD 180 mg modified release capsule 33011000168106 Vasocardol CD 33011000168106 Vasocardol CD 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +69620011000036100 Mylanta 2go Rolltab Spearmint chewable tablet, 48, wrapping 75881 67419011000036108 Mylanta 2go Rolltab Spearmint chewable tablet, 48 65655011000036100 Mylanta 2go Rolltab Spearmint chewable tablet 65013011000036104 Mylanta 2go Rolltab 65013011000036104 Mylanta 2go Rolltab 71950011000036105 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet, 48 70259011000036107 calcium carbonate 550 mg + magnesium hydroxide 110 mg chewable tablet 69820011000036106 calcium carbonate + magnesium hydroxide +20378011000036101 Novorapid Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 133445 13586011000036109 Novorapid Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 6869011000036108 Novorapid Flexpen 100 units/mL injection solution, 3 mL cartridge 47811000168105 Novorapid Flexpen 47811000168105 Novorapid Flexpen 27822011000036108 insulin aspart 100 units/mL injection, 5 x 3 mL cartridges 23150011000036105 insulin aspart 100 units/mL injection, cartridge 21699011000036100 insulin aspart +20378011000036101 Novorapid Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 76799 13586011000036109 Novorapid Flexpen 100 units/mL injection solution, 5 x 3 mL cartridges 6869011000036108 Novorapid Flexpen 100 units/mL injection solution, 3 mL cartridge 47811000168105 Novorapid Flexpen 47811000168105 Novorapid Flexpen 27822011000036108 insulin aspart 100 units/mL injection, 5 x 3 mL cartridges 23150011000036105 insulin aspart 100 units/mL injection, cartridge 21699011000036100 insulin aspart +1011681000168103 Solifenacin (Apo) 10 mg film-coated tablet, 30, blister pack 218405 758101000168103 Solifenacin (Apo) 10 mg film-coated tablet, 30 758091000168108 Solifenacin (Apo) 10 mg film-coated tablet 757981000168108 Solifenacin (Apo) 757981000168108 Solifenacin (Apo) 46155011000036106 solifenacin succinate 10 mg tablet, 30 45011011000036107 solifenacin succinate 10 mg tablet 44891011000036101 solifenacin +14311000036105 Bisoprolol Fumarate (Apo) 2.5 mg tablet, 28, blister pack 182106 7931000036108 Bisoprolol Fumarate (Apo) 2.5 mg tablet, 28 1531000036109 Bisoprolol Fumarate (Apo) 2.5 mg tablet 33791000168100 Bisoprolol Fumarate (Apo) 33791000168100 Bisoprolol Fumarate (Apo) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +1047811000168108 Zydol SR 150 mg modified release tablet, 60, blister pack 80726 1047801000168105 Zydol SR 150 mg modified release tablet, 60 7074011000036101 Zydol SR 150 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 38673011000036103 tramadol hydrochloride 150 mg modified release tablet, 60 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +52192011000036101 Mirtazapine (Apo) 45 mg film-coated tablet, 30, blister pack 127685 52083011000036104 Mirtazapine (Apo) 45 mg film-coated tablet, 30 51982011000036100 Mirtazapine (Apo) 45 mg film-coated tablet 11681000168100 Mirtazapine (Apo) 11681000168100 Mirtazapine (Apo) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +768591000168108 Fluquadri Junior 2016 injection suspension, 5 x 0.25 mL syringes 213964 768581000168105 Fluquadri Junior 2016 injection suspension, 5 x 0.25 mL syringes 768561000168101 Fluquadri Junior 2016 injection suspension, 0.25 mL syringe 768541000168100 Fluquadri Junior 2016 768541000168100 Fluquadri Junior 2016 768571000168107 influenza quadrivalent child vaccine 2016 injection, 5 x 0.25 mL syringes 768551000168103 influenza quadrivalent child vaccine 2016 injection, 0.25 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +1102431000168101 Docetaxel (Actavis) 140 mg/7 mL concentrated injection, 7 mL vial 167636 1102421000168104 Docetaxel (Actavis) 140 mg/7 mL concentrated injection, 7 mL vial 1102411000168106 Docetaxel (Actavis) 140 mg/7 mL concentrated injection, 7 mL vial 1102401000168108 Docetaxel (Actavis) 1102401000168108 Docetaxel (Actavis) 932901011000036102 docetaxel 140 mg/7 mL injection, 7 mL vial 932755011000036104 docetaxel 140 mg/7 mL injection, vial 21721011000036101 docetaxel +760011000168109 Betahistine (GH) 16 mg uncoated tablet, 25, blister pack 212076 760001000168106 Betahistine (GH) 16 mg uncoated tablet, 25 759971000168103 Betahistine (GH) 16 mg uncoated tablet 759961000168109 Betahistine (GH) 759961000168109 Betahistine (GH) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +13181000036103 Quetiapine (RBX) 200 mg film-coated tablet, 60, strip pack 166438 8261000036107 Quetiapine (RBX) 200 mg film-coated tablet, 60 2721000036105 Quetiapine (RBX) 200 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +61485011000036106 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 36, blister pack 91993 57410011000036101 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 36 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63944011000036109 paracetamol 500 mg tablet, 36 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +44806011000036109 Fresofol 1% 500 mg/50 mL injection emulsion, 50 mL vial 98271 42240011000036100 Fresofol 1% 500 mg/50 mL injection emulsion, 50 mL vial 40401011000036107 Fresofol 1% 500 mg/50 mL injection emulsion, 50 mL vial 52331000168108 Fresofol 1% 52331000168108 Fresofol 1% 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +915291000168109 Certican 250 microgram dispersible tablet, 60, blister pack 97527 915281000168106 Certican 250 microgram dispersible tablet, 60 915231000168105 Certican 250 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915271000168108 everolimus 250 microgram dispersible tablet, 60 915221000168107 everolimus 250 microgram dispersible tablet 21615011000036103 everolimus +20856011000036100 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92119 14019011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 84 x Rebetol capsules), 1 pack 7296011000036107 Peg-Intron Redipen Injector (peginterferon alfa-2b 120 microgram) powder for injection, 120 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28082011000036105 peginterferon alfa-2b 120 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23391011000036102 peginterferon alfa-2b 120 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20856011000036100 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92119 14019011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 84 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28082011000036105 peginterferon alfa-2b 120 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20856011000036100 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92119 14019011000036102 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 120 microgram packs, 84 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28082011000036105 peginterferon alfa-2b 120 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +735111000168105 Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules 11105 735101000168107 Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules 735091000168102 Lanoxin Infants 50 microgram/2 mL injection solution, 2 mL ampoule 735081000168100 Lanoxin Infants 735081000168100 Lanoxin Infants 38572011000036103 digoxin 50 microgram/2 mL injection, 5 x 2 mL ampoules 37846011000036108 digoxin 50 microgram/2 mL injection, ampoule 21696011000036109 digoxin +59820011000036105 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 48, blister pack 114890 55782011000036105 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 48 53670011000036100 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet 53381011000036107 Ibuprofen (Your Pharmacy) 53381011000036107 Ibuprofen (Your Pharmacy) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +82221000036101 Prabez 20 mg enteric tablet, 30, blister pack 196572 80701000036104 Prabez 20 mg enteric tablet, 30 78131000036104 Prabez 20 mg enteric tablet 77691000036106 Prabez 77691000036106 Prabez 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +82221000036101 Prabez 20 mg enteric tablet, 30, blister pack 187312 80701000036104 Prabez 20 mg enteric tablet, 30 78131000036104 Prabez 20 mg enteric tablet 77691000036106 Prabez 77691000036106 Prabez 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +726531000168104 Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL, injection device 173398 726521000168102 Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL 726511000168109 Norditropin Flexpro 10 mg/1.5 mL injection solution 17991000168100 Norditropin Flexpro 17991000168100 Norditropin Flexpro 726401000168105 somatropin 10 mg/1.5 mL injection, 1.5 mL 726381000168105 somatropin 10 mg/1.5 mL injection 21295011000036100 somatropin +19744011000036105 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62132 12999011000036101 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28 6287011000036108 Brevinor 28 Day (inert substance) uncoated tablet 700011841000036105 Brevinor 28 Day 700011841000036105 Brevinor 28 Day 27492011000036105 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19744011000036105 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62132 12999011000036101 Brevinor 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28 6286011000036105 Brevinor 28 Day (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 700011841000036105 Brevinor 28 Day 700011841000036105 Brevinor 28 Day 27492011000036105 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +942961000168106 Fluvoxamine (Apotex) 50 mg film-coated tablet, 30, blister pack 147396 942951000168109 Fluvoxamine (Apotex) 50 mg film-coated tablet, 30 942941000168107 Fluvoxamine (Apotex) 50 mg film-coated tablet 942901000168105 Fluvoxamine (Apotex) 942901000168105 Fluvoxamine (Apotex) 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +873441000168102 Airzate MDI 50/25 pressurised inhalation, 120 actuations, metered dose aerosol can 208663 873431000168106 Airzate MDI 50/25 pressurised inhalation, 120 actuations 873421000168108 Airzate MDI 50/25 pressurised inhalation, actuation 873411000168101 Airzate MDI 50/25 873411000168101 Airzate MDI 50/25 26723011000036102 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22118011000036106 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +873441000168102 Airzate MDI 50/25 pressurised inhalation, 120 actuations, metered dose aerosol can 208191 873431000168106 Airzate MDI 50/25 pressurised inhalation, 120 actuations 873421000168108 Airzate MDI 50/25 pressurised inhalation, actuation 873411000168101 Airzate MDI 50/25 873411000168101 Airzate MDI 50/25 26723011000036102 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22118011000036106 fluticasone propionate 50 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +61243011000036100 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 200 mL, bottle 77012 57179011000036104 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 200 mL 54226011000036103 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 5 mL 36171000168107 Benadryl for the Family Dry Forte 36171000168107 Benadryl for the Family Dry Forte 63751011000036102 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 200 mL 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +933211491000036107 Fluconazole (Claris) 400 mg/200 mL injection solution, 200 mL vial 133469 933200511000036106 Fluconazole (Claris) 400 mg/200 mL injection solution, 200 mL vial 933194431000036107 Fluconazole (Claris) 400 mg/200 mL injection solution, 200 mL vial 72918011000036101 Fluconazole (Claris) 72918011000036101 Fluconazole (Claris) 933200521000036104 fluconazole 400 mg/200 mL injection, 200 mL vial 933194441000036102 fluconazole 400 mg/200 mL injection, vial 21365011000036105 fluconazole +44443011000036100 Refludan 50 mg powder for injection, 10 vials 73442 41899011000036109 Refludan 50 mg powder for injection, 10 vials 40253011000036104 Refludan 50 mg powder for injection, 50 mg vial 39727011000036104 Refludan 39727011000036104 Refludan 46697011000036107 lepirudin 50 mg injection, 10 vials 45272011000036100 lepirudin 50 mg injection, vial 44947011000036107 lepirudin +1089861000168109 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 30, blister pack 281501 1089851000168107 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 30 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 813261000168106 paracetamol 500 mg + ibuprofen 200 mg tablet, 30 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +752471000168100 Oxycodone (WT) 5 mg hard capsule, 20, blister pack 227864 752311000168104 Oxycodone (WT) 5 mg hard capsule, 20 752301000168102 Oxycodone (WT) 5 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +721141000168108 Keppra-1000 1 g film-coated tablet, 100, blister pack 120513 721131000168104 Keppra-1000 1 g film-coated tablet, 100 720981000168108 Keppra-1000 1 g film-coated tablet 720921000168109 Keppra-1000 720921000168109 Keppra-1000 46174011000036105 levetiracetam 1 g tablet, 100 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +20983011000036107 Tricortone 0.02% cream, 100 g, tube 95811 14129011000036104 Tricortone 0.02% cream, 100 g 7407011000036107 Tricortone 0.02% cream 3302011000036108 Tricortone 3302011000036108 Tricortone 28165011000036106 triamcinolone acetonide 0.02% cream, 100 g 23475011000036102 triamcinolone acetonide 0.02% cream 21377011000036106 triamcinolone +763981000168108 Modafin 100 mg uncoated tablet, 30, blister pack 230327 763941000168103 Modafin 100 mg uncoated tablet, 30 763931000168107 Modafin 100 mg uncoated tablet 763921000168109 Modafin 763921000168109 Modafin 924217011000036100 modafinil 100 mg tablet, 30 23302011000036106 modafinil 100 mg tablet 21838011000036106 modafinil +68825011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (9 g/L) intravenous infusion injection, 1 L bottle 118861 66645011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (9 g/L) intravenous infusion injection, 1 L bottle 65355011000036106 Sodium Chloride (Fresenius Kabi) 0.9% (9 g/L) intravenous infusion injection, 1 L bottle 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 71355011000036106 sodium chloride 0.9% (9 g/L) injection, 1 L bottle 69969011000036101 sodium chloride 0.9% (9 g/L) injection, bottle 21308011000036103 sodium chloride +52722011000036100 Simvastatin (Spirit) 10 mg film-coated tablet, 30, bottle 116708 52525011000036109 Simvastatin (Spirit) 10 mg film-coated tablet, 30 52399011000036103 Simvastatin (Spirit) 10 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +61001011000036101 Aleve 220 mg film-coated tablet, 10, blister pack 63794 56944011000036104 Aleve 220 mg film-coated tablet, 10 54133011000036109 Aleve 220 mg film-coated tablet 53458011000036102 Aleve 53458011000036102 Aleve 63650011000036103 naproxen sodium 220 mg tablet, 10 62035011000036109 naproxen sodium 220 mg tablet 21304011000036105 naproxen +20107011000036102 Risperdal 500 microgram film-coated tablet, 20, blister pack 71849 13332011000036102 Risperdal 500 microgram film-coated tablet, 20 6617011000036107 Risperdal 500 microgram film-coated tablet 15481000168100 Risperdal 15481000168100 Risperdal 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1035161000168105 Atomoxetine (CH) 80 mg hard capsule, 14, blister pack 234859 1035151000168108 Atomoxetine (CH) 80 mg hard capsule, 14 1035121000168100 Atomoxetine (CH) 80 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830561000168105 atomoxetine 80 mg capsule, 14 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +944011000168102 Medformin-1000 1 g film-coated tablet, 10, blister pack 100292 943931000168109 Medformin-1000 1 g film-coated tablet, 10 943921000168106 Medformin-1000 1 g film-coated tablet 943911000168104 Medformin-1000 943911000168104 Medformin-1000 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +20620011000036108 Alprazolam (Chemmart) 1 mg tablet, 50, bottle 80916 13800011000036106 Alprazolam (Chemmart) 1 mg tablet, 50 7086011000036102 Alprazolam (Chemmart) 1 mg tablet 3440011000036109 Alprazolam (Chemmart) 3440011000036109 Alprazolam (Chemmart) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +20741011000036105 Iressa 250 mg film-coated tablet, 30, blister pack 90010 13910011000036102 Iressa 250 mg film-coated tablet, 30 7196011000036105 Iressa 250 mg film-coated tablet 4123011000036103 Iressa 4123011000036103 Iressa 28002011000036109 gefitinib 250 mg tablet, 30 23325011000036107 gefitinib 250 mg tablet 21741011000036103 gefitinib +50285011000036104 Risperidone (Apo) 3 mg film-coated tablet, 60, blister pack 127612 49550011000036101 Risperidone (Apo) 3 mg film-coated tablet, 60 48601011000036107 Risperidone (Apo) 3 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +933211511000036103 Meloxicam (DP) 15 mg uncoated tablet, 30, blister pack 124393 933200351000036103 Meloxicam (DP) 15 mg uncoated tablet, 30 933194321000036101 Meloxicam (DP) 15 mg uncoated tablet 933193671000036109 Meloxicam (DP) 933193671000036109 Meloxicam (DP) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +897971000168101 Nicotinell Peppermint 4 mg lozenge, 216, blister pack 276926 897961000168107 Nicotinell Peppermint 4 mg lozenge, 216 897681000168105 Nicotinell Peppermint 4 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 897951000168105 nicotine 4 mg lozenge, 216 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +759691000168105 Crystaderm 1% cream, 10 g, tube 257332 759681000168107 Crystaderm 1% cream, 10 g 759661000168103 Crystaderm 1% cream 759641000168102 Crystaderm 759641000168102 Crystaderm 759671000168109 hydrogen peroxide 1% cream, 10 g 759651000168100 hydrogen peroxide 1% cream 69793011000036105 hydrogen peroxide +931401000168107 Centevo 75/18.75/200 mg film-coated tablet, 130, bottle 238853 931391000168105 Centevo 75/18.75/200 mg film-coated tablet, 130 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931381000168107 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 130 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +835981000168104 Comfarol Forte uncoated tablet, 20, blister pack 131137 835971000168102 Comfarol Forte uncoated tablet, 20 835961000168108 Comfarol Forte uncoated tablet 34991000168101 Comfarol Forte 34991000168101 Comfarol Forte 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +735201000168103 Pantoprazole Heartburn Relief (Apo) 20 mg enteric tablet, 14, blister pack 156332 735191000168101 Pantoprazole Heartburn Relief (Apo) 20 mg enteric tablet, 14 735161000168108 Pantoprazole Heartburn Relief (Apo) 20 mg enteric tablet 735151000168106 Pantoprazole Heartburn Relief (Apo) 735151000168106 Pantoprazole Heartburn Relief (Apo) 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +885001000168103 Belkyra 20 mg/2 mL injection solution, 4 x 2 mL vials 233201 884991000168109 Belkyra 20 mg/2 mL injection solution, 4 x 2 mL vials 884971000168108 Belkyra 20 mg/2 mL injection solution, 2 mL vial 884901000168103 Belkyra 884901000168103 Belkyra 884981000168106 deoxycholic acid 20 mg/2 mL injection, 4 x 2 mL vials 884961000168102 deoxycholic acid 20 mg/2 mL injection, vial 884951000168104 deoxycholic acid +963141000168106 Formet 250 mg film-coated tablet, 100, bottle 91105 962711000168103 Formet 250 mg film-coated tablet, 100 962681000168104 Formet 250 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 943261000168109 metformin hydrochloride 250 mg tablet, 100 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +701031000168106 Diasp SR modified release capsule, 60, bottle 210808 701021000168108 Diasp SR modified release capsule, 60 701011000168101 Diasp SR modified release capsule 701001000168104 Diasp SR 701001000168104 Diasp SR 27629011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule, 60 22967011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule 21386011000036101 dipyridamole + aspirin +1069391000168105 Hydromorphone (MPL) 2 mg uncoated tablet, 500, bottle 295423 1069381000168107 Hydromorphone (MPL) 2 mg uncoated tablet, 500 1069311000168101 Hydromorphone (MPL) 2 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35193011000036102 hydromorphone hydrochloride 2 mg tablet, 500 22944011000036108 hydromorphone hydrochloride 2 mg tablet 21480011000036107 hydromorphone +896921000168100 Olmesartan HCTZ 40/12.5 (Apotex) film-coated tablet, 30, blister pack 206718 896911000168107 Olmesartan HCTZ 40/12.5 (Apotex) film-coated tablet, 30 896901000168109 Olmesartan HCTZ 40/12.5 (Apotex) film-coated tablet 896891000168105 Olmesartan HCTZ 40/12.5 (Apotex) 896891000168105 Olmesartan HCTZ 40/12.5 (Apotex) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +807051000168106 Perindopril Arginine/Amlodipine 5/10 (Chemmart) uncoated tablet, 30, bottle 224321 807041000168109 Perindopril Arginine/Amlodipine 5/10 (Chemmart) uncoated tablet, 30 807031000168100 Perindopril Arginine/Amlodipine 5/10 (Chemmart) uncoated tablet 806991000168100 Perindopril Arginine/Amlodipine 5/10 (Chemmart) 806991000168100 Perindopril Arginine/Amlodipine 5/10 (Chemmart) 86426011000036105 perindopril arginine 5 mg + amlodipine 10 mg tablet, 30 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +1009351000168104 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet, 10, blister pack 287704 1009341000168101 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet, 10 1009331000168105 Anti-Inflammatory Pain Relief (Apohealth) 25 mg enteric tablet 1009321000168107 Anti-Inflammatory Pain Relief (Apohealth) 1009321000168107 Anti-Inflammatory Pain Relief (Apohealth) 63832011000036105 diclofenac sodium 25 mg enteric tablet, 10 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +1035071000168100 Atomoxetine (CH) 5 mg hard capsule, 28, blister pack 234844 1035061000168106 Atomoxetine (CH) 5 mg hard capsule, 28 1035011000168108 Atomoxetine (CH) 5 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 976371000168103 atomoxetine 5 mg capsule, 28 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +1102591000168103 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet, 10, blister pack 286109 1102581000168101 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet, 10 1101981000168102 Olmesartan HCTZ 40/12.5 (Pharmacor) film-coated tablet 1101971000168100 Olmesartan HCTZ 40/12.5 (Pharmacor) 1101971000168100 Olmesartan HCTZ 40/12.5 (Pharmacor) 852121000168107 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 10 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +66391000036105 Lidocaine (lignocaine hydrochloride 2% with adrenaline 1 in 80 000) (ATO) injection solution, 50 x 2.2 mL cartridges 63667 64271000036109 Lidocaine (lignocaine hydrochloride 2% with adrenaline 1 in 80 000) (ATO) injection solution, 50 x 2.2 mL cartridges 61611000036103 Lidocaine (lignocaine hydrochloride 2% with adrenaline 1 in 80 000) (ATO) injection solution, 2.2 mL cartridge 47911000168104 Lidocaine (lignocaine hydrochloride 2% with adrenaline 1 in 80 000) (ATO) 47911000168104 Lidocaine (lignocaine hydrochloride 2% with adrenaline 1 in 80 000) (ATO) 46403011000036103 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, 50 x 2.2 mL cartridges 37875011000036100 lidocaine (lignocaine) hydrochloride 2% (44 mg/2.2 mL) + adrenaline (epinephrine) 1 in 80 000 (27.5 microgram/2.2 mL) injection, cartridge 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +923865011000036101 Colgate Total Advanced Clean toothpaste, 110 g, tube 163301 923411011000036106 Colgate Total Advanced Clean toothpaste, 110 g 923074011000036107 Colgate Total Advanced Clean toothpaste 56291000168101 Colgate Total Advanced Clean 56291000168101 Colgate Total Advanced Clean 924191011000036106 sodium fluoride 0.24% + triclosan 0.3% toothpaste, 110 g 923991011000036105 sodium fluoride 0.24% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +1111151000168105 Quetiapine (DP) 100 mg film-coated tablet, 20, blister pack 202269 1111141000168108 Quetiapine (DP) 100 mg film-coated tablet, 20 1111131000168104 Quetiapine (DP) 100 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +889431000168104 Bosleer 125 mg film-coated tablet, 500, bottle 235896 889421000168102 Bosleer 125 mg film-coated tablet, 500 889311000168100 Bosleer 125 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884191000168106 bosentan 125 mg tablet, 500 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +859461000168103 Zovirax Dispersible 200 mg tablet, 90, bottle 51430 859451000168100 Zovirax Dispersible 200 mg tablet, 90 859181000168101 Zovirax Dispersible 200 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +801661000168106 Abilify 2 mg uncoated tablet, 30, blister pack 91001 801651000168109 Abilify 2 mg uncoated tablet, 30 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +776001000168100 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 179184 775991000168101 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 775971000168102 Leah (drospirenone 3 mg + ethinylestradiol 20 microgram) uncoated tablet 775961000168108 Leah 775961000168108 Leah 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +776001000168100 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28, blister pack 179184 775991000168101 Leah (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 28 775981000168104 Leah (inert substance) uncoated tablet 775961000168108 Leah 775961000168108 Leah 750601000168108 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +692371000168106 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet, 50, blister pack 215403 692361000168100 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet, 50 692321000168105 Amitriptyline Hydrochloride (Chemmart) 50 mg film-coated tablet 692221000168104 Amitriptyline Hydrochloride (Chemmart) 692221000168104 Amitriptyline Hydrochloride (Chemmart) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +19554011000036109 Viramune 200 mg uncoated tablet, 60, bottle 56891 12826011000036106 Viramune 200 mg uncoated tablet, 60 6117011000036108 Viramune 200 mg uncoated tablet 7221000168106 Viramune 7221000168106 Viramune 27383011000036105 nevirapine 200 mg tablet, 60 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +21075011000036102 Tramadol Hydrochloride (GenRx) 50 mg hard capsule, 20, blister pack 97458 14218011000036104 Tramadol Hydrochloride (GenRx) 50 mg hard capsule, 20 7504011000036108 Tramadol Hydrochloride (GenRx) 50 mg hard capsule 3250011000036105 Tramadol Hydrochloride (GenRx) 3250011000036105 Tramadol Hydrochloride (GenRx) 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +928971011000036102 Valaciclovir (Apo) 500 mg film-coated tablet, 100, blister pack 158911 928332011000036101 Valaciclovir (Apo) 500 mg film-coated tablet, 100 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 27732011000036108 valaciclovir 500 mg tablet, 100 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +103811000036108 Donepezil Hydrochloride (DRLA) 5 mg film-coated tablet, 28, bottle 157120 101181000036107 Donepezil Hydrochloride (DRLA) 5 mg film-coated tablet, 28 98121000036107 Donepezil Hydrochloride (DRLA) 5 mg film-coated tablet 97841000036107 Donepezil Hydrochloride (DRLA) 97841000036107 Donepezil Hydrochloride (DRLA) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +43746011000036102 Fosrenol 750 mg chewable tablet, 15, bottle 106962 41147011000036101 Fosrenol 750 mg chewable tablet, 15 39871011000036108 Fosrenol 750 mg chewable tablet 39719011000036101 Fosrenol 39719011000036101 Fosrenol 46119011000036102 lanthanum 750 mg chewable tablet, 15 44996011000036100 lanthanum 750 mg chewable tablet 44962011000036102 lanthanum +880891000168109 Adrenaject Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device 231707 880881000168106 Adrenaject Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose 880871000168108 Adrenaject Auto-Injector 150 microgram/0.3 mL injection solution, dose 880801000168103 Adrenaject Auto-Injector 880801000168103 Adrenaject Auto-Injector 726671000168102 adrenaline (epinephrine) 150 microgram/0.3 mL injection, 1 dose 726651000168106 adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +922007011000036102 Arthro-Aid Direct cream, 114 g, tube 71841 921565011000036109 Arthro-Aid Direct cream, 114 g 921089011000036107 Arthro-Aid Direct cream 920949011000036101 Arthro-Aid Direct 920949011000036101 Arthro-Aid Direct 922679011000036107 glucosamine sulfate 0.3% + shark cartilage 2% cream, 114 g 922153011000036107 glucosamine sulfate 0.3% + shark cartilage 2% cream 922049011000036103 glucosamine + shark cartilage +928021000168104 Flunomide 10 mg film-coated tablet, 30, strip pack 123308 927991000168104 Flunomide 10 mg film-coated tablet, 30 927981000168102 Flunomide 10 mg film-coated tablet 927831000168107 Flunomide 927831000168107 Flunomide 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +933215831000036106 Metformin Hydrochloride (Terry White Chemists) 850 mg film-coated tablet, 60, blister pack 174820 933203881000036107 Metformin Hydrochloride (Terry White Chemists) 850 mg film-coated tablet, 60 933196411000036109 Metformin Hydrochloride (Terry White Chemists) 850 mg film-coated tablet 9991000168106 Metformin Hydrochloride (Terry White Chemists) 9991000168106 Metformin Hydrochloride (Terry White Chemists) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1026531000168101 Pregabalin (Amneal) 75 mg hard capsule, 200, bottle 235842 1026521000168104 Pregabalin (Amneal) 75 mg hard capsule, 200 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 971481000168101 pregabalin 75 mg capsule, 200 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +997621000168103 Duloxetine (Apotex) 30 mg enteric capsule, 7, blister pack 195348 997611000168105 Duloxetine (Apotex) 30 mg enteric capsule, 7 997601000168107 Duloxetine (Apotex) 30 mg enteric capsule 997521000168102 Duloxetine (Apotex) 997521000168102 Duloxetine (Apotex) 38611011000036105 duloxetine 30 mg enteric capsule, 7 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +1110061000168100 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 7, blister pack 219061 1110051000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 7 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82553011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 7 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +18517011000036108 Rapamune 1 mg sugar coated tablet, 100, blister pack 125629 11811011000036107 Rapamune 1 mg sugar coated tablet, 100 5901011000036102 Rapamune 1 mg sugar coated tablet 3482011000036103 Rapamune 3482011000036103 Rapamune 26779011000036100 sirolimus 1 mg tablet, 100 22166011000036108 sirolimus 1 mg tablet 21862011000036104 sirolimus +697781000168105 Pramipexole (Apo) 1 mg uncoated tablet, 100, blister pack 229628 697191000168107 Pramipexole (Apo) 1 mg uncoated tablet, 100 697181000168109 Pramipexole (Apo) 1 mg uncoated tablet 697171000168106 Pramipexole (Apo) 697171000168106 Pramipexole (Apo) 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +926779011000036101 Colgate Total Whitening toothpaste, 110 g, tube 154433 926176011000036100 Colgate Total Whitening toothpaste, 110 g 925657011000036100 Colgate Total Whitening toothpaste 52691000168100 Colgate Total Whitening 52691000168100 Colgate Total Whitening 927331011000036104 sodium fluoride 0.22% + triclosan 0.3% toothpaste, 110 g 926991011000036101 sodium fluoride 0.22% + triclosan 0.3% toothpaste 923936011000036105 fluoride + triclosan +19796011000036106 Eryc 250 mg enteric capsule, 25, bottle 63154 13054011000036109 Eryc 250 mg enteric capsule, 25 6338011000036108 Eryc 250 mg enteric capsule 3223011000036103 Eryc 3223011000036103 Eryc 27918011000036106 erythromycin 250 mg enteric capsule, 25 23242011000036105 erythromycin 250 mg enteric capsule 21889011000036107 erythromycin +1089701000168101 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 5, blister pack 281501 1089691000168101 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet, 5 1089661000168108 Paracetamol and Ibuprofen (Pharmacy Action) film-coated tablet 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 1089581000168103 Paracetamol and Ibuprofen (Pharmacy Action) 812991000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 5 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +923737011000036101 Quitx Classic 4 mg chewing gum, 96, blister pack 143430 923282011000036101 Quitx Classic 4 mg chewing gum, 96 922971011000036107 Quitx Classic 4 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +893771000168108 Imatinib Adult (Cipla) 100 mg hard capsule, 48, blister pack 231747 893761000168102 Imatinib Adult (Cipla) 100 mg hard capsule, 48 893731000168105 Imatinib Adult (Cipla) 100 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 828841000168107 imatinib 100 mg capsule, 48 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1077911000168101 Atomoxetine (AN) 60 mg hard capsule, 56, blister pack 234830 1077901000168104 Atomoxetine (AN) 60 mg hard capsule, 56 1077831000168102 Atomoxetine (AN) 60 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 830311000168102 atomoxetine 60 mg capsule, 56 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1110101000168102 Midalim 5 mg/mL injection solution, 5 x 1 mL ampoules 207221 1110091000168107 Midalim 5 mg/mL injection solution, 5 x 1 mL ampoules 1110001000168101 Midalim 5 mg/mL injection solution, ampoule 1107761000168100 Midalim 1107761000168100 Midalim 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +181561000036109 Candesartan Cilexetil (Chemmart) 16 mg uncoated tablet, 30, blister pack 210548 181101000036102 Candesartan Cilexetil (Chemmart) 16 mg uncoated tablet, 30 180461000036104 Candesartan Cilexetil (Chemmart) 16 mg uncoated tablet 180271000036106 Candesartan Cilexetil (Chemmart) 180271000036106 Candesartan Cilexetil (Chemmart) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +1030731000168105 Atomoxetine (Genpar) 80 mg hard capsule, 56, blister pack 234856 1030721000168107 Atomoxetine (Genpar) 80 mg hard capsule, 56 1030611000168107 Atomoxetine (Genpar) 80 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830611000168108 atomoxetine 80 mg capsule, 56 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +777051000168104 Inspra 25 mg film-coated tablet, 60, blister pack 100162 777041000168101 Inspra 25 mg film-coated tablet, 60 4780011000036109 Inspra 25 mg film-coated tablet 3018011000036108 Inspra 3018011000036108 Inspra 777031000168105 eplerenone 25 mg tablet, 60 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +933066011000036108 Risedronate Sodium (Sandoz) 35 mg film-coated tablet, 4, blister pack 154854 932884011000036107 Risedronate Sodium (Sandoz) 35 mg film-coated tablet, 4 932744011000036101 Risedronate Sodium (Sandoz) 35 mg film-coated tablet 932706011000036102 Risedronate Sodium (Sandoz) 932706011000036102 Risedronate Sodium (Sandoz) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +742651000168109 Actaze 30 mg uncoated tablet, 7, blister pack 254292 742641000168107 Actaze 30 mg uncoated tablet, 7 742611000168108 Actaze 30 mg uncoated tablet 742601000168105 Actaze 742601000168105 Actaze 929264011000036109 pioglitazone 30 mg tablet, 7 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +920721011000036108 Pantofast 40 mg enteric tablet, 100, blister pack 155106 920408011000036101 Pantofast 40 mg enteric tablet, 100 920167011000036104 Pantofast 40 mg enteric tablet 920103011000036107 Pantofast 920103011000036107 Pantofast 46653011000036109 pantoprazole 40 mg enteric tablet, 100 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +798461000168104 Acimax 40 mg enteric tablet, 30, blister pack 69964 798451000168101 Acimax 40 mg enteric tablet, 30 798401000168100 Acimax 40 mg enteric tablet 3241011000036101 Acimax 3241011000036101 Acimax 798441000168103 omeprazole 40 mg enteric tablet, 30 798391000168102 omeprazole 40 mg enteric tablet 21676011000036101 omeprazole +19047011000036102 Nizoral 200 mg uncoated tablet, 30, blister pack 40317 12355011000036101 Nizoral 200 mg uncoated tablet, 30 5379011000036100 Nizoral 200 mg uncoated tablet 4145011000036104 Nizoral 4145011000036104 Nizoral 27074011000036104 ketoconazole 200 mg tablet, 30 22443011000036109 ketoconazole 200 mg tablet 21500011000036103 ketoconazole +1115521000168107 Quetiapine (Ascent) 300 mg film-coated tablet, 90, blister pack 202261 1115511000168100 Quetiapine (Ascent) 300 mg film-coated tablet, 90 1115461000168103 Quetiapine (Ascent) 300 mg film-coated tablet 1114881000168108 Quetiapine (Ascent) 1114881000168108 Quetiapine (Ascent) 667411000168106 quetiapine 300 mg tablet, 90 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +17768011000036102 Physeptone 10 mg uncoated tablet, 20, bottle 10989 13542011000036100 Physeptone 10 mg uncoated tablet, 20 6825011000036101 Physeptone 10 mg uncoated tablet 3289011000036107 Physeptone 3289011000036107 Physeptone 27795011000036109 methadone hydrochloride 10 mg tablet, 20 23124011000036101 methadone hydrochloride 10 mg tablet 21357011000036109 methadone +910811000168106 Cavstat 10 mg film-coated tablet, 14, blister pack 234485 910801000168108 Cavstat 10 mg film-coated tablet, 14 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910791000168107 rosuvastatin 10 mg tablet, 14 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +701071000168109 Depreta 60 mg enteric capsule, 100, bottle 199002 701061000168103 Depreta 60 mg enteric capsule, 100 701051000168100 Depreta 60 mg enteric capsule 701041000168102 Depreta 701041000168102 Depreta 669621000168109 duloxetine 60 mg enteric capsule, 100 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +755621000168105 Vttack 50 mg film-coated tablet, 28, blister pack 206983 755611000168103 Vttack 50 mg film-coated tablet, 28 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46816011000036101 voriconazole 50 mg tablet, 28 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +721221000168106 Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials 23138 721211000168104 Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials 721201000168102 Retinofluor 25% 1.25 g/5 mL injection solution, 5 mL vial 721191000168100 Retinofluor 25% 721191000168100 Retinofluor 25% 653651000168109 fluorescein sodium 1.25 g/5 mL injection, 10 x 5 mL vials 653631000168103 fluorescein sodium 1.25 g/5 mL injection, vial 44934011000036102 fluorescein +14461000036103 Isotretinoin (Apo) 10 mg soft capsule, 60, blister pack 190940 8271000036104 Isotretinoin (Apo) 10 mg soft capsule, 60 3181000036100 Isotretinoin (Apo) 10 mg soft capsule 32171000168108 Isotretinoin (Apo) 32171000168108 Isotretinoin (Apo) 28043011000036107 isotretinoin 10 mg capsule, 60 23364011000036101 isotretinoin 10 mg capsule 21546011000036107 isotretinoin +971861000168108 Bosentan (Sandoz) 125 mg film-coated tablet, 60, blister pack 242053 971851000168106 Bosentan (Sandoz) 125 mg film-coated tablet, 60 971841000168109 Bosentan (Sandoz) 125 mg film-coated tablet 971831000168100 Bosentan (Sandoz) 971831000168100 Bosentan (Sandoz) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +18684011000036107 Dilantin 30 mg hard capsule, 200, bottle 14306 12020011000036107 Dilantin 30 mg hard capsule, 200 5168011000036107 Dilantin 30 mg hard capsule 2331000168104 Dilantin 2331000168104 Dilantin 26854011000036102 phenytoin sodium 30 mg capsule, 200 22235011000036105 phenytoin sodium 30 mg capsule 21672011000036100 phenytoin +84340011000036107 Ritalin LA 10 mg modified release capsule, 30, bottle 160228 84033011000036101 Ritalin LA 10 mg modified release capsule, 30 83661011000036100 Ritalin LA 10 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 84646011000036101 methylphenidate hydrochloride 10 mg modified release capsule, 30 84433011000036108 methylphenidate hydrochloride 10 mg modified release capsule 21277011000036101 methylphenidate +1076791000168105 Alu-Tab 600 mg uncoated tablet, 100, bottle 213554 1040561000168108 Alu-Tab 600 mg uncoated tablet, 100 1040551000168106 Alu-Tab 600 mg uncoated tablet 65168011000036104 Alu-Tab 65168011000036104 Alu-Tab 71892011000036109 aluminium hydroxide 600 mg tablet, 100 70235011000036106 aluminium hydroxide 600 mg tablet 69849011000036102 aluminium hydroxide +1115361000168108 Tramadol (AN) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 202840 1115351000168106 Tramadol (AN) 100 mg/2 mL injection solution, 5 x 2 mL ampoules 1115341000168109 Tramadol (AN) 100 mg/2 mL injection solution, 2 mL ampoule 1115301000168107 Tramadol (AN) 1115301000168107 Tramadol (AN) 27537011000036109 tramadol hydrochloride 100 mg/2 mL injection, 5 x 2 mL ampoules 22877011000036109 tramadol hydrochloride 100 mg/2 mL injection, ampoule 21486011000036105 tramadol +19773011000036109 Topamax 50 mg film-coated tablet, 60, blister pack 62710 13031011000036107 Topamax 50 mg film-coated tablet, 60 6318011000036104 Topamax 50 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +971821000168103 Valganciclovir (AN) 450 mg film-coated tablet, 60, bottle 262931 971811000168105 Valganciclovir (AN) 450 mg film-coated tablet, 60 971801000168107 Valganciclovir (AN) 450 mg film-coated tablet 971791000168106 Valganciclovir (AN) 971791000168106 Valganciclovir (AN) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +906511000168109 Amisulpride (AN) 200 mg uncoated tablet, 60, blister pack 234701 906501000168106 Amisulpride (AN) 200 mg uncoated tablet, 60 906411000168108 Amisulpride (AN) 200 mg uncoated tablet 906131000168107 Amisulpride (AN) 906131000168107 Amisulpride (AN) 28188011000036103 amisulpride 200 mg tablet, 60 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +81206011000036101 Vytorin 10/10 uncoated tablet, 10, blister pack 98100 80708011000036100 Vytorin 10/10 uncoated tablet, 10 80247011000036103 Vytorin 10/10 uncoated tablet 38111000168103 Vytorin 10/10 38111000168103 Vytorin 10/10 81757011000036103 ezetimibe 10 mg + simvastatin 10 mg tablet, 10 81309011000036100 ezetimibe 10 mg + simvastatin 10 mg tablet 21565011000036108 ezetimibe + simvastatin +86034011000036106 Di-Con One 150 mg hard capsule, 1, blister pack 152841 85673011000036100 Di-Con One 150 mg hard capsule, 1 85325011000036107 Di-Con One 150 mg hard capsule 37941000168101 Di-Con One 37941000168101 Di-Con One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +18079011000036107 Pepcidine 20 mg film-coated tablet, 60, blister pack 10506 11315011000036107 Pepcidine 20 mg film-coated tablet, 60 5889011000036108 Pepcidine 20 mg film-coated tablet 4352011000036100 Pepcidine 4352011000036100 Pepcidine 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +81039011000036109 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 250 mL bag 148935 80555011000036100 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 250 mL bag 80190011000036105 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) intravenous infusion injection, 250 mL bag 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 451000168106 Compound Sodium Lactate (Hartmann's) (Fresenius Kabi) 81634011000036104 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, 250 mL bag 81273011000036101 sodium lactate 0.322% (805 mg/250 mL) + sodium chloride 0.6% (1.5 g/250 mL) + potassium chloride 0.04% (100 mg/250 mL) + calcium chloride dihydrate 0.027% (67.5 mg/250 mL) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +1066581000168106 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 72, blister pack 161545 1066571000168108 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet, 72 1066481000168107 Ibuprofen plus Codeine (Pharmacist Own Formula) film-coated tablet 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 1066471000168109 Ibuprofen plus Codeine (Pharmacist Own Formula) 63148011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 72 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +974511000168106 Pregabalin (Apo) 150 mg hard capsule, 500, bottle 193249 974501000168108 Pregabalin (Apo) 150 mg hard capsule, 500 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 971721000168109 pregabalin 150 mg capsule, 500 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1069551000168107 Hydromorphone (MPL) 8 mg uncoated tablet, 100, bottle 295425 1069541000168105 Hydromorphone (MPL) 8 mg uncoated tablet, 100 1069491000168101 Hydromorphone (MPL) 8 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35198011000036107 hydromorphone hydrochloride 8 mg tablet, 100 22946011000036100 hydromorphone hydrochloride 8 mg tablet 21480011000036107 hydromorphone +44172011000036107 Arima 150 mg film-coated tablet, 10, blister pack 54997 41648011000036104 Arima 150 mg film-coated tablet, 10 40123011000036102 Arima 150 mg film-coated tablet 39674011000036104 Arima 39674011000036104 Arima 46467011000036106 moclobemide 150 mg tablet, 10 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +962981000168106 Arflox 750 mg film-coated tablet, 2, blister pack 92366 962971000168108 Arflox 750 mg film-coated tablet, 2 962951000168104 Arflox 750 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 962961000168102 ciprofloxacin 750 mg tablet, 2 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +944171000168106 Risperidone (Chemmart) 1 mg film-coated tablet, 60, blister pack 127591 944161000168100 Risperidone (Chemmart) 1 mg film-coated tablet, 60 944151000168102 Risperidone (Chemmart) 1 mg film-coated tablet 944101000168101 Risperidone (Chemmart) 944101000168101 Risperidone (Chemmart) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +14551000036102 Prazosin (Apo) 5 mg uncoated tablet, 100, blister pack 73866 8961000036101 Prazosin (Apo) 5 mg uncoated tablet, 100 2461000036109 Prazosin (Apo) 5 mg uncoated tablet 10301000168108 Prazosin (Apo) 10301000168108 Prazosin (Apo) 27729011000036100 prazosin 5 mg tablet, 100 23064011000036100 prazosin 5 mg tablet 21544011000036104 prazosin +37391011000036107 Amoxil 1 g powder for injection, 5 vials 11137 36657011000036101 Amoxil 1 g powder for injection, 5 vials 36117011000036105 Amoxil 1 g powder for injection, vial 3738011000036101 Amoxil 3738011000036101 Amoxil 38575011000036106 amoxicillin 1 g injection, 5 vials 37849011000036104 amoxicillin 1 g injection, vial 21415011000036100 amoxicillin +933238981000036100 Fentanyl (Sandoz) 100 microgram/hour patch, 5, sachet 152576 933236281000036105 Fentanyl (Sandoz) 100 microgram/hour patch, 5 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 26652011000036104 fentanyl 100 microgram/hour patch, 5 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +43809011000036102 Simvabell 20 mg film-coated tablet, 100, bottle 100887 41105011000036104 Simvabell 20 mg film-coated tablet, 100 5386011000036102 Simvabell 20 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46246011000036103 simvastatin 20 mg tablet, 100 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +19001011000036102 Eucerin 6% ointment, 100 g, tube 34154 12308011000036100 Eucerin 6% ointment, 100 g 5395011000036108 Eucerin 6% ointment 3622011000036108 Eucerin 3622011000036108 Eucerin 27055011000036103 wool alcohols 6% ointment, 100 g 22424011000036108 wool alcohols 6% ointment 21752011000036106 wool alcohols +43556011000036101 Refacto (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119165 41211011000036101 Refacto (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack 39888011000036109 Refacto (moroctocog alfa 500 units) powder for injection, 500 units vial 7771000168100 Refacto 7771000168100 Refacto 46162011000036108 moroctocog alfa 500 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45014011000036105 moroctocog alfa 500 units injection, vial 44868011000036107 moroctocog alfa +43556011000036101 Refacto (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119165 41211011000036101 Refacto (1 x 500 units vial, 1 x 4 mL inert diluent syringe), 1 pack 631401000168108 Refacto (inert substance) diluent, 4 mL syringe 7771000168100 Refacto 7771000168100 Refacto 46162011000036108 moroctocog alfa 500 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +30604011000036108 Bactrim Sugar Free oral liquid suspension, 100 mL, bottle 119404 30584011000036100 Bactrim Sugar Free oral liquid suspension, 100 mL 4778011000036101 Bactrim Sugar Free oral liquid suspension, 5 mL 11981000168107 Bactrim 11981000168107 Bactrim 26949011000036105 trimethoprim 40 mg/5 mL + sulfamethoxazole 200 mg/5 mL oral liquid, 100 mL 22324011000036100 trimethoprim 40 mg/5 mL + sulfamethoxazole 200 mg/5 mL oral liquid 21461011000036103 trimethoprim + sulfamethoxazole +77156011000036108 Water for Injections (Fresenius Kabi) injection solution, 1 L bottle 118305 76594011000036102 Water for Injections (Fresenius Kabi) injection solution, 1 L bottle 76052011000036100 Water for Injections (Fresenius Kabi) injection solution, 1 L bottle 75991011000036108 Water for Injections (Fresenius Kabi) 75991011000036108 Water for Injections (Fresenius Kabi) 78148011000036101 water for injections injection, 1 L bottle 77513011000036104 water for injections injection, 1 L bottle 77431011000036101 water for injections +86063011000036104 Cold and Flu PE (Terry White Chemists) uncoated tablet, 24, blister pack (Old Formulation 2015) 157755 85723011000036107 Cold and Flu PE (Terry White Chemists) uncoated tablet, 24 (Old Formulation 2015) 85361011000036104 Cold and Flu PE (Terry White Chemists) uncoated tablet (Old Formulation 2015) 85262011000036102 Cold and Flu PE (Terry White Chemists) 85262011000036102 Cold and Flu PE (Terry White Chemists) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +44051011000036106 Buscopan 10 mg sugar coated tablet, 20, blister pack 48256 41538011000036105 Buscopan 10 mg sugar coated tablet, 20 40047011000036103 Buscopan 10 mg sugar coated tablet 2401000168103 Buscopan 2401000168103 Buscopan 46373011000036102 hyoscine butylbromide 10 mg tablet, 20 45113011000036102 hyoscine butylbromide 10 mg tablet 21580011000036102 hyoscine butylbromide +14541000036100 Prazosin (Apo) 2 mg uncoated tablet, 100, blister pack 73862 8951000036104 Prazosin (Apo) 2 mg uncoated tablet, 100 2471000036101 Prazosin (Apo) 2 mg uncoated tablet 10301000168108 Prazosin (Apo) 10301000168108 Prazosin (Apo) 27728011000036108 prazosin 2 mg tablet, 100 23063011000036102 prazosin 2 mg tablet 21544011000036104 prazosin +837671000168101 Boostrix injection suspension, 0.5 mL syringe 158363 837661000168107 Boostrix injection suspension, 0.5 mL syringe 837641000168108 Boostrix injection suspension, 0.5 mL syringe 73699011000036103 Boostrix 73699011000036103 Boostrix 837651000168105 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 837631000168104 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +837671000168101 Boostrix injection suspension, 0.5 mL syringe 75230 837661000168107 Boostrix injection suspension, 0.5 mL syringe 837641000168108 Boostrix injection suspension, 0.5 mL syringe 73699011000036103 Boostrix 73699011000036103 Boostrix 837651000168105 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 837631000168104 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +841891000168109 Atorvastatin (Amneal) 80 mg film-coated tablet, 40, blister pack 178525 841881000168106 Atorvastatin (Amneal) 80 mg film-coated tablet, 40 841791000168104 Atorvastatin (Amneal) 80 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841871000168108 atorvastatin 80 mg tablet, 40 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +19923011000036103 Bonefos 400 mg hard capsule, 100, bottle 66703 13168011000036102 Bonefos 400 mg hard capsule, 100 6451011000036109 Bonefos 400 mg hard capsule 3256011000036108 Bonefos 3256011000036108 Bonefos 27587011000036104 clodronate sodium 400 mg capsule, 100 22926011000036102 clodronate sodium 400 mg capsule 21247011000036100 clodronate +17987011000036109 Pravastatin Sodium (RL) 20 mg uncoated tablet, 30, blister pack 119209 11610011000036108 Pravastatin Sodium (RL) 20 mg uncoated tablet, 30 5241011000036109 Pravastatin Sodium (RL) 20 mg uncoated tablet 3142011000036109 Pravastatin Sodium (RL) 3142011000036109 Pravastatin Sodium (RL) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1069481000168104 Hydromorphone (MPL) 4 mg uncoated tablet, 500, bottle 295424 1069471000168102 Hydromorphone (MPL) 4 mg uncoated tablet, 500 1069401000168107 Hydromorphone (MPL) 4 mg uncoated tablet 1069301000168104 Hydromorphone (MPL) 1069301000168104 Hydromorphone (MPL) 35196011000036108 hydromorphone hydrochloride 4 mg tablet, 500 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +827481000168103 Prevenar-13 injection suspension, 10 x 0.5 mL syringes 158450 827471000168101 Prevenar-13 injection suspension, 10 x 0.5 mL syringes 827421000168102 Prevenar-13 injection suspension, 0.5 mL syringe 922925011000036105 Prevenar-13 922925011000036105 Prevenar-13 827461000168107 pneumococcal 13 valent conjugate vaccine injection, 10 x 0.5 mL syringes 827411000168109 pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe 827401000168106 pneumococcal 13 valent conjugate vaccine +920662011000036102 Debug Hand Hygiene 0.5% / 70% solution, 75 mL, bottle 135488 920395011000036102 Debug Hand Hygiene 0.5% / 70% solution, 75 mL 920157011000036108 Debug Hand Hygiene 0.5% / 70% solution 8961000168108 Debug Hand Hygiene 0.5% / 70% 8961000168108 Debug Hand Hygiene 0.5% / 70% 920853011000036107 chlorhexidine gluconate 0.5% + isopropyl alcohol 70% solution, 75 mL 920825011000036107 chlorhexidine gluconate 0.5% + isopropyl alcohol 70% solution 920820011000036103 chlorhexidine + isopropyl alcohol +1006061000168105 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 190540 1006051000168108 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 1006041000168106 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 10 mL ampoule 728521000168101 Ropivacaine 0.75% (Actavis) 728521000168101 Ropivacaine 0.75% (Actavis) 1004951000168104 ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules 1004931000168105 ropivacaine hydrochloride 75 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +1026391000168105 Neuroccord 150 mg hard capsule, 84, blister pack 235837 1026381000168107 Neuroccord 150 mg hard capsule, 84 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 969661000168103 pregabalin 150 mg capsule, 84 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +778491000168104 Oxycodone MR (Apo) 10 mg modified release tablet, 28, blister pack 214501 778481000168102 Oxycodone MR (Apo) 10 mg modified release tablet, 28 778451000168109 Oxycodone MR (Apo) 10 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +941271000168102 Escitalopram (Terry White Chemists) 5 mg film-coated tablet, 28, blister pack 146029 941261000168108 Escitalopram (Terry White Chemists) 5 mg film-coated tablet, 28 941251000168106 Escitalopram (Terry White Chemists) 5 mg film-coated tablet 75949011000036103 Escitalopram (Terry White Chemists) 75949011000036103 Escitalopram (Terry White Chemists) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +32540011000036109 Octreotide (Hospira) 100 microgram/mL injection solution, 5 x 1 mL vials 120735 32334011000036102 Octreotide (Hospira) 100 microgram/mL injection solution, 5 x 1 mL vials 32211011000036103 Octreotide (Hospira) 100 microgram/mL injection solution, vial 32198011000036109 Octreotide (Hospira) 32198011000036109 Octreotide (Hospira) 32758011000036109 octreotide 100 microgram/mL injection, 5 x 1 mL vials 32689011000036104 octreotide 100 microgram/mL injection, vial 21316011000036104 octreotide +1042191000168106 Nicotine (Amcal) 2 mg lozenge, 120, blister pack 213239 1042181000168108 Nicotine (Amcal) 2 mg lozenge, 120 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 898681000168109 nicotine 2 mg lozenge, 120 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1111271000168107 Delucon 100 mg film-coated tablet, 100, bottle 172851 1111261000168101 Delucon 100 mg film-coated tablet, 100 1631000036105 Delucon 100 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 1075481000168105 quetiapine 100 mg tablet, 100 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +44005011000036103 Orgaran 750 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL ampoules 46096 41496011000036109 Orgaran 750 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL ampoules 40016011000036106 Orgaran 750 anti-Xa units/0.6 mL injection solution, 0.6 mL ampoule 39612011000036102 Orgaran 39612011000036102 Orgaran 46342011000036105 danaparoid sodium 750 anti-Xa units/0.6 mL injection, 10 x 0.6 mL ampoules 45092011000036102 danaparoid sodium 750 anti-Xa units/0.6 mL injection, ampoule 44909011000036106 danaparoid sodium +931696011000036109 Simvastatin (Pfizer) 20 mg film-coated tablet, 30, blister pack 170526 930856011000036100 Simvastatin (Pfizer) 20 mg film-coated tablet, 30 930074011000036107 Simvastatin (Pfizer) 20 mg film-coated tablet 929838011000036104 Simvastatin (Pfizer) 929838011000036104 Simvastatin (Pfizer) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +971501000168105 Lypralin 75 mg hard capsule, 200, bottle 235866 971491000168103 Lypralin 75 mg hard capsule, 200 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 971481000168101 pregabalin 75 mg capsule, 200 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1011921000168106 Irbesartan (Apotex) 150 mg film-coated tablet, 14, blister pack 169789 1011911000168104 Irbesartan (Apotex) 150 mg film-coated tablet, 14 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777611000168109 irbesartan 150 mg tablet, 14 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +657571000168109 Cephalex 500 mg hard capsule, 20, blister pack 204534 657561000168103 Cephalex 500 mg hard capsule, 20 657551000168100 Cephalex 500 mg hard capsule 154591000036108 Cephalex 154591000036108 Cephalex 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +921860011000036104 Seatone 230 mg hard capsule, 125, bottle 149888 921419011000036104 Seatone 230 mg hard capsule, 125 920998011000036102 Seatone 230 mg hard capsule 920966011000036104 Seatone 920966011000036104 Seatone 922552011000036107 dried green lipped mussel 230 mg capsule, 125 922081011000036109 dried green lipped mussel 230 mg capsule 922034011000036100 dried green lipped mussel +18033011000036107 Marevan 3 mg uncoated tablet, 50, bottle 12513 11788011000036102 Marevan 3 mg uncoated tablet, 50 6002011000036101 Marevan 3 mg uncoated tablet 3189011000036109 Marevan 3189011000036109 Marevan 26771011000036104 warfarin sodium 3 mg tablet, 50 22158011000036101 warfarin sodium 3 mg tablet 21248011000036104 warfarin +807371000168104 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet, 30, blister pack 184821 807361000168105 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet, 30 807301000168109 Perindopril Arginine (Terry White Chemists) 10 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +790101000168107 Oxycontin 40 mg modified release tablet, 120, bottle 200036 790091000168102 Oxycontin 40 mg modified release tablet, 120 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790081000168100 oxycodone hydrochloride 40 mg modified release tablet, 120 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +18592011000036105 Norspan 20 microgram/hour patch, 2, sachet 116650 11535011000036102 Norspan 20 microgram/hour patch, 2 5223011000036107 Norspan 20 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 26682011000036106 buprenorphine 20 microgram/hour patch, 2 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +700801000168101 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL injection device 700791000168102 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL injection device 700771000168103 Plegridy 63 microgram/0.5 mL injection solution, 0.5 mL injection device 686381000168107 Plegridy 686381000168107 Plegridy 700781000168100 peginterferon beta-1a 63 microgram/0.5 mL injection, 0.5 mL injection device 700761000168109 peginterferon beta-1a 63 microgram/0.5 mL injection, injection device 698561000168109 peginterferon beta-1a +833301000168109 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device 235962 833291000168108 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device 833271000168107 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose 137231000036103 Bydureon 137231000036103 Bydureon 833281000168105 exenatide 2 mg/dose + inert substance modified release injection, 1 dual chamber device 833261000168101 exenatide 2 mg/dose + inert substance modified release injection, dose 833251000168103 exenatide + inert substance +1042151000168101 Nicotine (Amcal) 2 mg lozenge, 96, blister pack 213239 1042141000168103 Nicotine (Amcal) 2 mg lozenge, 96 1042091000168105 Nicotine (Amcal) 2 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 150431000036102 nicotine 2 mg lozenge, 96 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +1081041000168103 Alustal House Dust Mites Extract Maintenance injection suspension, 5 mL vial 132680 1081031000168107 Alustal House Dust Mites Extract Maintenance injection suspension, 5 mL vial 1081011000168102 Alustal House Dust Mites Extract Maintenance injection suspension, 5 mL vial 1080971000168102 Alustal House Dust Mites Extract Maintenance 1080971000168102 Alustal House Dust Mites Extract Maintenance 1081021000168109 American house dust mite extract 25 IR/5 mL + European house dust mite extract 25 IR/5 mL injection, 5 mL vial 83428011000036104 American house dust mite extract 25 IR/5 mL + European house dust mite extract 25 IR/5 mL injection, vial 83421011000036108 American house dust mite extract + European house dust mite extract +18955011000036103 Hypurin Neutral 100 units/mL injection solution, 1 x 10 mL vial 27750 12263011000036100 Hypurin Neutral 100 units/mL injection solution, 1 x 10 mL vial 5940011000036103 Hypurin Neutral 100 units/mL injection solution, 10 mL vial 32957011000036104 Hypurin Neutral 32957011000036104 Hypurin Neutral 27025011000036104 insulin neutral bovine 100 units/mL injection, 1 x 10 mL vial 22398011000036102 insulin neutral bovine 100 units/mL injection, vial 33621011000036104 insulin neutral bovine +1068111000168108 Logicin Cold and Flu Relief uncoated tablet, 24, blister pack 174026 1068101000168105 Logicin Cold and Flu Relief uncoated tablet, 24 1068091000168100 Logicin Cold and Flu Relief uncoated tablet 1068071000168101 Logicin Cold and Flu Relief 1068071000168101 Logicin Cold and Flu Relief 63380011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 24 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +906791000168107 Celecoxib (LAPL) 200 mg hard capsule, 20, blister pack 196187 906781000168109 Celecoxib (LAPL) 200 mg hard capsule, 20 906731000168108 Celecoxib (LAPL) 200 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +82061000036103 Cyproterone Acetate (PS) 100 mg uncoated tablet, 50, blister pack 184233 80591000036100 Cyproterone Acetate (PS) 100 mg uncoated tablet, 50 78411000036100 Cyproterone Acetate (PS) 100 mg uncoated tablet 77781000036100 Cyproterone Acetate (PS) 77781000036100 Cyproterone Acetate (PS) 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +66071000036109 Calamine (Faulding) lotion, 200 mL, bottle 106995 63081000036101 Calamine (Faulding) lotion, 200 mL 61051000036107 Calamine (Faulding) lotion 60161000036103 Calamine (Faulding) 60161000036103 Calamine (Faulding) 63091000036104 calamine 15% + zinc oxide 5% lotion, 200 mL 61061000036105 calamine 15% + zinc oxide 5% lotion 81211011000036108 calamine + zinc oxide +870791000168108 Lamotrigine (GH) 50 mg uncoated tablet, 56, blister pack 275001 870781000168105 Lamotrigine (GH) 50 mg uncoated tablet, 56 870771000168107 Lamotrigine (GH) 50 mg uncoated tablet 870701000168102 Lamotrigine (GH) 870701000168102 Lamotrigine (GH) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +978811000168100 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL syringe 80266 978801000168103 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL syringe 978791000168104 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823311000168109 enoxaparin sodium 40 mg/0.4 mL injection, 0.4 mL syringe 33671011000036100 enoxaparin sodium 40 mg/0.4 mL injection, syringe 21553011000036103 enoxaparin sodium +933215511000036100 Olanzapine (LY) 2.5 mg film-coated tablet, 28, blister pack 167679 933204991000036104 Olanzapine (LY) 2.5 mg film-coated tablet, 28 933196131000036105 Olanzapine (LY) 2.5 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +933239061000036104 Fentanyl (Sandoz) 75 microgram/hour patch, 5, sachet 152568 933235661000036105 Fentanyl (Sandoz) 75 microgram/hour patch, 5 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 26651011000036105 fentanyl 75 microgram/hour patch, 5 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +928341000168107 Norgesic uncoated tablet, 24, jar 10574 79507011000036103 Norgesic uncoated tablet, 24 36141011000036107 Norgesic uncoated tablet 35879011000036104 Norgesic 35879011000036104 Norgesic 79825011000036103 orphenadrine citrate 35 mg + paracetamol 450 mg tablet, 24 37832011000036105 orphenadrine citrate 35 mg + paracetamol 450 mg tablet 37748011000036109 orphenadrine citrate + paracetamol +18713011000036103 Oestradiol (Organon) 50 mg implant, 1, tube 14510 12035011000036101 Oestradiol (Organon) 50 mg implant, 1 5705011000036109 Oestradiol (Organon) 50 mg implant 3678011000036107 Oestradiol (Organon) 3678011000036107 Oestradiol (Organon) 26867011000036104 estradiol 50 mg implant, 1 22246011000036104 estradiol 50 mg implant 21238011000036103 estradiol +81901000036108 Famciclovir (GA) 250 mg film-coated tablet, 21, blister pack 177018 80201000036105 Famciclovir (GA) 250 mg film-coated tablet, 21 78291000036109 Famciclovir (GA) 250 mg film-coated tablet 77791000036103 Famciclovir (GA) 77791000036103 Famciclovir (GA) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +839041000168106 Joncia 25 mg hard capsule, 28, bottle 176512 838981000168106 Joncia 25 mg hard capsule, 28 838931000168105 Joncia 25 mg hard capsule 838901000168103 Joncia 838901000168103 Joncia 838971000168108 milnacipran hydrochloride 25 mg capsule, 28 838921000168107 milnacipran hydrochloride 25 mg capsule 838911000168100 milnacipran +44535011000036107 Ramace 10 mg hard capsule, 14, blister pack 79098 41988011000036109 Ramace 10 mg hard capsule, 14 6972011000036103 Ramace 10 mg hard capsule 3038011000036104 Ramace 3038011000036104 Ramace 46763011000036108 ramipril 10 mg capsule, 14 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +61416011000036102 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 82433 57341011000036106 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 200 mL 54280011000036106 Ibuprofen (Soul Pattinson) 100 mg/5 mL oral liquid suspension, 5 mL 53225011000036108 Ibuprofen (Soul Pattinson) 53225011000036108 Ibuprofen (Soul Pattinson) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +19318011000036105 Pulmozyme 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 49822 12608011000036108 Pulmozyme 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 5335011000036104 Pulmozyme 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 4056011000036100 Pulmozyme 4056011000036100 Pulmozyme 27233011000036106 dornase alfa 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 22593011000036105 dornase alfa 2.5 mg/2.5 mL inhalation solution, ampoule 21473011000036109 dornase alfa +933215671000036107 Olanzapine (LY) 5 mg wafer, 28, blister pack 167687 933205191000036100 Olanzapine (LY) 5 mg wafer, 28 933196211000036105 Olanzapine (LY) 5 mg wafer 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 27713011000036107 olanzapine 5 mg wafer, 28 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +933211351000036106 Roflo 500 mg film-coated tablet, 8, blister pack 125323 933200451000036106 Roflo 500 mg film-coated tablet, 8 933194341000036109 Roflo 500 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 933199841000036101 ciprofloxacin 500 mg tablet, 8 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +37374011000036102 Citanest 3% with Adrenaline 1 in 300 000 Dental injection solution, 100 x 2.2 mL cartridges 12081 36712011000036103 Citanest 3% with Adrenaline 1 in 300 000 Dental injection solution, 100 x 2.2 mL cartridges 36115011000036100 Citanest 3% with Adrenaline 1 in 300 000 Dental injection solution, 2.2 mL cartridge 30581000168102 Citanest 3% with Adrenaline 1 in 300 000 Dental 30581000168102 Citanest 3% with Adrenaline 1 in 300 000 Dental 38625011000036101 prilocaine hydrochloride 3% (66 mg/2.2 mL) + adrenaline (epinephrine) 1 in 300 000 (7.26 microgram/2.2 mL) injection, 100 x 2.2 mL cartridges 37885011000036107 prilocaine hydrochloride 3% (66 mg/2.2 mL) + adrenaline (epinephrine) 1 in 300 000 (7.26 microgram/2.2 mL) injection, cartridge 37756011000036107 prilocaine + adrenaline (epinephrine) +66111000036102 Antiseptic Salve (Rawleigh's) ointment, 140 g, can 17770 63581000036106 Antiseptic Salve (Rawleigh's) ointment, 140 g 60901000036104 Antiseptic Salve (Rawleigh's) ointment 60331000036107 Antiseptic Salve (Rawleigh's) 60331000036107 Antiseptic Salve (Rawleigh's) 63591000036108 colophony 13.7% + cresol 1% ointment, 140 g 60911000036102 colophony 13.7% + cresol 1% ointment 66671000036102 colophony + cresol +1063701000168100 Ibuprofen plus Codeine (Pharmacist) film-coated tablet, 30, blister pack 158657 1063691000168100 Ibuprofen plus Codeine (Pharmacist) film-coated tablet, 30 84793011000036106 Ibuprofen plus Codeine (Pharmacist) film-coated tablet 84769011000036107 Ibuprofen plus Codeine (Pharmacist) 84769011000036107 Ibuprofen plus Codeine (Pharmacist) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +59918011000036107 Ibuprofen Children's (Guardian) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 117618 55880011000036108 Ibuprofen Children's (Guardian) 100 mg/5 mL oral liquid suspension, 200 mL 53702011000036101 Ibuprofen Children's (Guardian) 100 mg/5 mL oral liquid suspension, 5 mL 47651000168105 Ibuprofen Children's (Guardian) 47651000168105 Ibuprofen Children's (Guardian) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +19139011000036101 Zinnat 250 mg film-coated tablet, 14, strip pack 44092 12541011000036104 Zinnat 250 mg film-coated tablet, 14 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 27187011000036105 cefuroxime 250 mg tablet, 14 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +933211331000036103 Roflo 500 mg film-coated tablet, 14, blister pack 125323 933200431000036103 Roflo 500 mg film-coated tablet, 14 933194341000036109 Roflo 500 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +974311000168101 Nortritabs 10 mg uncoated tablet, 50, blister pack 220998 974301000168104 Nortritabs 10 mg uncoated tablet, 50 974291000168100 Nortritabs 10 mg uncoated tablet 974101000168102 Nortritabs 974101000168102 Nortritabs 26876011000036107 nortriptyline 10 mg tablet, 50 22255011000036109 nortriptyline 10 mg tablet 21689011000036104 nortriptyline +1023561000168100 Mycophenolate (Sandoz) 250 mg capsule, 100, bottle 148224 6531000036103 Mycophenolate (Sandoz) 250 mg capsule, 100 1351000036108 Mycophenolate (Sandoz) 250 mg capsule 1041000036107 Mycophenolate (Sandoz) 1041000036107 Mycophenolate (Sandoz) 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +152551000036105 Lamisil 1% spray, 30 mL, aerosol can 59716 150911000036100 Lamisil 1% spray, 30 mL 148131000036107 Lamisil 1% spray 34081000168103 Lamisil 34081000168103 Lamisil 63599011000036109 terbinafine hydrochloride 1% spray, 30 mL 62024011000036108 terbinafine hydrochloride 1% spray 21575011000036104 terbinafine +794371000168108 Tacrolimus (Sandoz) 2 mg hard capsule, 7, blister pack 229757 794361000168102 Tacrolimus (Sandoz) 2 mg hard capsule, 7 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794351000168104 tacrolimus 2 mg capsule, 7 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +920816011000036108 Alprazolam (Sandoz) 2 mg uncoated tablet, 50, bottle 98666 920495011000036105 Alprazolam (Sandoz) 2 mg uncoated tablet, 50 920226011000036109 Alprazolam (Sandoz) 2 mg uncoated tablet 920078011000036101 Alprazolam (Sandoz) 920078011000036101 Alprazolam (Sandoz) 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +872071000168109 Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe 29023 872061000168103 Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe 872041000168102 Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe 49981000168102 Glucose Min-I-Jet (CSL) 49981000168102 Glucose Min-I-Jet (CSL) 872051000168100 glucose monohydrate 25 g/50 mL injection, 50 mL syringe 872031000168106 glucose monohydrate 25 g/50 mL injection, syringe 21354011000036103 glucose +944331000168105 Goserelin (AstraZeneca) 3.6 mg implant, 1, syringe 124400 944321000168107 Goserelin (AstraZeneca) 3.6 mg implant, 1 944311000168100 Goserelin (AstraZeneca) 3.6 mg implant 944301000168103 Goserelin (AstraZeneca) 944301000168103 Goserelin (AstraZeneca) 83014011000036107 goserelin 3.6 mg implant, 1 22168011000036107 goserelin 3.6 mg implant 21305011000036109 goserelin +902581000168104 Addaven concentrated injection, 20 x 10 mL ampoules 244493 902571000168102 Addaven concentrated injection, 20 x 10 mL ampoules 902551000168106 Addaven concentrated injection, 10 mL ampoule 900861000168106 Addaven 900861000168106 Addaven 902561000168108 chromic chloride hexahydrate 53.33 microgram/10 mL + cupric chloride dihydrate 1.02 mg/10 mL + ferric chloride hexahydrate 5.4 mg/10 mL + manganese chloride tetrahydrate 198 microgram/10 mL + potassium iodide 166 microgram/10 mL + sodium fluoride 2.1 mg/10 mL + sodium molybdate dihydrate 48.5 microgram/10 mL + sodium selenite 173 microgram/10 mL + zinc chloride 10.5 mg/10 mL injection, 20 x 10 mL ampoules 902541000168109 chromic chloride hexahydrate 53.33 microgram/10 mL + cupric chloride dihydrate 1.02 mg/10 mL + ferric chloride hexahydrate 5.4 mg/10 mL + manganese chloride tetrahydrate 198 microgram/10 mL + potassium iodide 166 microgram/10 mL + sodium fluoride 2.1 mg/10 mL + sodium molybdate dihydrate 48.5 microgram/10 mL + sodium selenite 173 microgram/10 mL + zinc chloride 10.5 mg/10 mL injection, ampoule 902531000168100 chromium + copper + iron + manganese + iodine + fluoride + molybdenum + selenium + zinc +1115681000168105 Tiava XR 200 mg modified release tablet, 60, blister pack 249972 1115671000168107 Tiava XR 200 mg modified release tablet, 60 1115661000168101 Tiava XR 200 mg modified release tablet 1115621000168106 Tiava XR 1115621000168106 Tiava XR 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +17895011000036108 Gabapentin (DBL) 100 mg hard capsule, 100, blister pack 120986 11658011000036100 Gabapentin (DBL) 100 mg hard capsule, 100 4953011000036104 Gabapentin (DBL) 100 mg hard capsule 2909011000036100 Gabapentin (DBL) 2909011000036100 Gabapentin (DBL) 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +68744011000036103 Mylanta 2go Double Strength chewable tablet, 48, blister pack 118508 66641011000036102 Mylanta 2go Double Strength chewable tablet, 48 65303011000036102 Mylanta 2go Double Strength chewable tablet 4781000168105 Mylanta 2go Double Strength 4781000168105 Mylanta 2go Double Strength 71351011000036109 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet, 48 69967011000036108 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 40 mg chewable tablet 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +84369011000036108 Wavesense Jazz diagnostic strip, 50, bottle 165311 84062011000036104 Wavesense Jazz diagnostic strip, 50 83688011000036106 Wavesense Jazz diagnostic strip 15071000168107 Wavesense Jazz 15071000168107 Wavesense Jazz 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +965791000168101 Odomzo 200 mg hard capsule, 30, blister pack 226544 965781000168104 Odomzo 200 mg hard capsule, 30 965721000168103 Odomzo 200 mg hard capsule 965691000168107 Odomzo 965691000168107 Odomzo 965771000168102 sonidegib 200 mg capsule, 30 965711000168105 sonidegib 200 mg capsule 965701000168107 sonidegib +925288011000036105 Docetaxel (Dakota) 80 mg/4 mL concentrated injection, 4 mL vial 161374 924825011000036109 Docetaxel (Dakota) 80 mg/4 mL concentrated injection, 4 mL vial 924517011000036107 Docetaxel (Dakota) 80 mg/4 mL concentrated injection, 4 mL vial 924353011000036106 Docetaxel (Dakota) 924353011000036106 Docetaxel (Dakota) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +844721000168103 Kalydeco 75 mg granules, 14 sachets 269661 844711000168105 Kalydeco 75 mg granules, 14 sachets 844691000168107 Kalydeco 75 mg granules, 75 mg sachet 154531000036107 Kalydeco 154531000036107 Kalydeco 844701000168107 ivacaftor 75 mg granules, 14 sachets 844681000168109 ivacaftor 75 mg granules, sachet 157061000036101 ivacaftor +906831000168101 Celecoxib (LAPL) 200 mg hard capsule, 50, blister pack 196187 906821000168104 Celecoxib (LAPL) 200 mg hard capsule, 50 906731000168108 Celecoxib (LAPL) 200 mg hard capsule 906641000168109 Celecoxib (LAPL) 906641000168109 Celecoxib (LAPL) 745911000168106 celecoxib 200 mg capsule, 50 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +977441000168100 Aripiprazole (AN) 5 mg uncoated tablet, 100, bottle 198198 977431000168109 Aripiprazole (AN) 5 mg uncoated tablet, 100 977291000168109 Aripiprazole (AN) 5 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 977421000168106 aripiprazole 5 mg tablet, 100 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +738171000168107 Avapro 150 mg film-coated tablet, 7, blister pack 101734 738161000168101 Avapro 150 mg film-coated tablet, 7 5344011000036102 Avapro 150 mg film-coated tablet 4249011000036100 Avapro 4249011000036100 Avapro 738151000168103 irbesartan 150 mg tablet, 7 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +974351000168100 Bosentan (GH) 125 mg film-coated tablet, 112, blister pack 235892 974341000168102 Bosentan (GH) 125 mg film-coated tablet, 112 974261000168107 Bosentan (GH) 125 mg film-coated tablet 974251000168105 Bosentan (GH) 974251000168105 Bosentan (GH) 884111000168102 bosentan 125 mg tablet, 112 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +971661000168107 Bosentan (Apo) 125 mg film-coated tablet, 60, blister pack 271513 971651000168105 Bosentan (Apo) 125 mg film-coated tablet, 60 971641000168108 Bosentan (Apo) 125 mg film-coated tablet 971541000168107 Bosentan (Apo) 971541000168107 Bosentan (Apo) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +73290011000036107 Jurnista 16 mg modified release tablet, 60, blister pack 141533 73088011000036101 Jurnista 16 mg modified release tablet, 60 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73486011000036108 hydromorphone hydrochloride 16 mg modified release tablet, 60 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +18730011000036101 Olmetec Plus 20/12.5 mg film-coated tablet, 30, blister pack 115738 11502011000036100 Olmetec Plus 20/12.5 mg film-coated tablet, 30 5800011000036103 Olmetec Plus 20/12.5 mg film-coated tablet 42591000168102 Olmetec Plus 20/12.5 mg 42591000168102 Olmetec Plus 20/12.5 mg 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +735441000168100 Adrenaline (Link) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 210672 735431000168109 Adrenaline (Link) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 735421000168106 Adrenaline (Link) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL syringe 929922011000036105 Adrenaline (Link) 929922011000036105 Adrenaline (Link) 79836011000036108 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, 10 mL syringe 79755011000036104 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, syringe 21823011000036103 adrenaline (epinephrine) +1078071000168106 Atomoxetine (AN) 5 mg hard capsule, 28, blister pack 234828 1078061000168100 Atomoxetine (AN) 5 mg hard capsule, 28 1078011000168103 Atomoxetine (AN) 5 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 976371000168103 atomoxetine 5 mg capsule, 28 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +61324011000036105 Paracetamol (Herron) 500 mg uncoated tablet, 1000, blister pack 80924 57345011000036108 Paracetamol (Herron) 500 mg uncoated tablet, 1000 54282011000036105 Paracetamol (Herron) 500 mg uncoated tablet 53282011000036108 Paracetamol (Herron) 53282011000036108 Paracetamol (Herron) 63953011000036105 paracetamol 500 mg tablet, 1000 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1026211000168109 Neuroccord 150 mg hard capsule, 60, bottle 235841 1026201000168106 Neuroccord 150 mg hard capsule, 60 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +767181000168101 Bleomycin 15K (Cipla) 15 000 international units powder for injection, 1 vial 220440 767171000168104 Bleomycin 15K (Cipla) 15 000 international units powder for injection, 1 vial 767161000168105 Bleomycin 15K (Cipla) 15 000 international units powder for injection, 15 000 international units vial 765691000168104 Bleomycin 15K (Cipla) 765691000168104 Bleomycin 15K (Cipla) 27097011000036101 bleomycin sulfate 15 000 international units injection, 1 vial 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +68698011000036106 Nicotinell Mint 4 mg chewing gum, 192, blister pack 126044 66702011000036107 Nicotinell Mint 4 mg chewing gum, 192 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71518011000036107 nicotine 4 mg gum, 192 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +732381000168109 Implanon 68 mg implant, 1, applicator 70855 13315011000036102 Implanon 68 mg implant, 1 6601011000036101 Implanon 68 mg implant 3339011000036108 Implanon 3339011000036108 Implanon 27685011000036104 etonogestrel 68 mg implant, 1 23022011000036103 etonogestrel 68 mg implant 21832011000036108 etonogestrel +19681011000036107 Aricept 5 mg film-coated tablet, 28, bottle 60175 12941011000036106 Aricept 5 mg film-coated tablet, 28 6231011000036106 Aricept 5 mg film-coated tablet 2960011000036105 Aricept 2960011000036105 Aricept 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +1040781000168105 Astepro 0.15% nasal spray, 4 mL, pump pack 218383 1040771000168107 Astepro 0.15% nasal spray, 4 mL 1040751000168103 Astepro 0.15% nasal spray, actuation 1040731000168109 Astepro 1040731000168109 Astepro 1040761000168101 azelastine hydrochloride 0.15% nasal spray, 4 mL 1040741000168100 azelastine hydrochloride 0.15% nasal spray, actuation 75004011000036100 azelastine +60402011000036106 Febridol Co uncoated tablet, 96, blister pack 144070 56361011000036103 Febridol Co uncoated tablet, 96 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +928945011000036101 Topiramate (LAPL) 25 mg film-coated tablet, 60, bottle 155200 928306011000036105 Topiramate (LAPL) 25 mg film-coated tablet, 60 927935011000036109 Topiramate (LAPL) 25 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +1109741000168105 Cloap 75/100 uncoated tablet, 280, blister pack 219058 1109731000168101 Cloap 75/100 uncoated tablet, 280 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82548011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 280 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +833421000168105 Centrum film-coated tablet, 200, bottle 75827 833411000168103 Centrum film-coated tablet, 200 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833401000168101 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 200 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +734881000168106 Imiquimod (Apo) 5% cream, 6 x 250 mg sachets 168101 734871000168108 Imiquimod (Apo) 5% cream, 6 x 250 mg sachets 78441000036104 Imiquimod (Apo) 5% cream, 250 mg sachet 77981000036102 Imiquimod (Apo) 77981000036102 Imiquimod (Apo) 932454011000036109 imiquimod 5% cream, 6 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +1115841000168104 Serapine 25 mg film-coated tablet, 60, blister pack 204161 1115831000168108 Serapine 25 mg film-coated tablet, 60 1115801000168101 Serapine 25 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +801021000168106 Actonate 75 mg film-coated tablet, 4, blister pack 163749 801011000168104 Actonate 75 mg film-coated tablet, 4 800961000168105 Actonate 75 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 801001000168102 risedronate sodium 75 mg tablet, 4 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +60148011000036103 Zodac 10 mg film-coated tablet, 50, blister pack 129613 56107011000036100 Zodac 10 mg film-coated tablet, 50 53792011000036104 Zodac 10 mg film-coated tablet 53497011000036105 Zodac 53497011000036105 Zodac 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +790581000168109 Inpler 50 mg film-coated tablet, 20, blister pack 231453 790571000168106 Inpler 50 mg film-coated tablet, 20 790551000168102 Inpler 50 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 790561000168100 eplerenone 50 mg tablet, 20 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +1101061000168105 Sitagliptin (Chemmart) 50 mg coated tablet, 28, blister pack 224402 1101051000168108 Sitagliptin (Chemmart) 50 mg coated tablet, 28 1101041000168106 Sitagliptin (Chemmart) 50 mg coated tablet 1101031000168102 Sitagliptin (Chemmart) 1101031000168102 Sitagliptin (Chemmart) 39484011000036106 sitagliptin 50 mg tablet, 28 39438011000036106 sitagliptin 50 mg tablet 39426011000036109 sitagliptin +901941000168105 Amoxycillin (Watson) 250 mg hard capsule, 20, blister pack 198128 901931000168101 Amoxycillin (Watson) 250 mg hard capsule, 20 901921000168104 Amoxycillin (Watson) 250 mg hard capsule 900421000168103 Amoxycillin (Watson) 900421000168103 Amoxycillin (Watson) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +1075421000168106 Atenolol (RBX) 25 mg film-coated tablet, 100, bottle 197758 1075411000168104 Atenolol (RBX) 25 mg film-coated tablet, 100 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029171000168104 atenolol 25 mg tablet, 100 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +1109621000168106 Nicotinell Ice Mint 2 mg chewing gum, 168, blister pack 279615 1109611000168104 Nicotinell Ice Mint 2 mg chewing gum, 168 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71511011000036103 nicotine 2 mg gum, 168 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +923882011000036106 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 28, blister pack 163769 923426011000036109 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 28 923078011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 84673011000036108 lercanidipine hydrochloride 20 mg tablet, 28 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +965951000168109 Arflox 250 mg film-coated tablet, 2, blister pack 92364 963051000168109 Arflox 250 mg film-coated tablet, 2 963041000168107 Arflox 250 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 27061011000036107 ciprofloxacin 250 mg tablet, 2 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +81096011000036105 Dizole 100 mg hard capsule, 50, blister pack 159620 80604011000036102 Dizole 100 mg hard capsule, 50 7455011000036107 Dizole 100 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81672011000036106 fluconazole 100 mg capsule, 50 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +69297011000036105 Glucose (Baxter) 70% (350 g/500 mL) concentrated injection, 18 x 500 mL bags 19505 67097011000036108 Glucose (Baxter) 70% (350 g/500 mL) concentrated injection, 18 x 500 mL bags 65435011000036102 Glucose (Baxter) 70% (350 g/500 mL) concentrated injection, 500 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71665011000036106 glucose 70% (350 g/500 mL) injection, 18 x 500 mL bags 70114011000036100 glucose 70% (350 g/500 mL) injection, bag 21354011000036103 glucose +666001000168104 Gaviscon Infant powder for oral liquid, 30 sachets 56093 665991000168100 Gaviscon Infant powder for oral liquid, 30 sachets 665971000168101 Gaviscon Infant powder for oral liquid, 1 sachet 665931000168104 Gaviscon Infant 665931000168104 Gaviscon Infant 665981000168103 sodium alginate 225 mg + magnesium alginate 87.5 mg powder for oral liquid, 30 sachets 665961000168107 sodium alginate 225 mg + magnesium alginate 87.5 mg powder for oral liquid, 1 sachet 665951000168105 sodium alginate + magnesium alginate +86097011000036106 Levitam 500 mg film-coated tablet, 60, blister pack 143695 85634011000036100 Levitam 500 mg film-coated tablet, 60 85308011000036109 Levitam 500 mg film-coated tablet 6571000168108 Levitam 6571000168108 Levitam 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +933211811000036100 Gemcitabine (Sandoz) 200 mg powder for injection, 1 vial 129341 933200601000036108 Gemcitabine (Sandoz) 200 mg powder for injection, 1 vial 933194401000036100 Gemcitabine (Sandoz) 200 mg powder for injection, 200 mg vial 933193721000036103 Gemcitabine (Sandoz) 933193721000036103 Gemcitabine (Sandoz) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +52739011000036107 Vedilol 3.125 mg uncoated tablet, 30, blister pack 136623 52551011000036108 Vedilol 3.125 mg uncoated tablet, 30 52414011000036108 Vedilol 3.125 mg uncoated tablet 52393011000036101 Vedilol 52393011000036101 Vedilol 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +34770011000036100 Dilaudid 8 mg uncoated tablet, 60, bottle 67355 34351011000036108 Dilaudid 8 mg uncoated tablet, 60 6478011000036103 Dilaudid 8 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35199011000036104 hydromorphone hydrochloride 8 mg tablet, 60 22946011000036100 hydromorphone hydrochloride 8 mg tablet 21480011000036107 hydromorphone +777691000168100 Karvea 150 mg film-coated tablet, 56, blister pack 101706 777681000168103 Karvea 150 mg film-coated tablet, 56 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777671000168101 irbesartan 150 mg tablet, 56 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1077271000168100 Atomoxetine (AS) 10 mg hard capsule, 7, blister pack 238358 1077261000168106 Atomoxetine (AS) 10 mg hard capsule, 7 1077251000168109 Atomoxetine (AS) 10 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +135871000036106 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) uncoated tablet, 30, bottle 196382 135301000036105 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) uncoated tablet, 30 134561000036102 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) uncoated tablet 56581000168101 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) 56581000168101 Candesartan Cilexetil HCT 16/12.5 (Pharmacor) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +790261000168102 Oxycontin 30 mg modified release tablet, 100, bottle 200028 790251000168104 Oxycontin 30 mg modified release tablet, 100 65415011000036105 Oxycontin 30 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790241000168101 oxycodone hydrochloride 30 mg modified release tablet, 100 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +1034431000168105 Worm Treatment (Amcal) 100 mg chewable tablet, 2, blister pack 222321 1034421000168107 Worm Treatment (Amcal) 100 mg chewable tablet, 2 53624011000036106 Worm Treatment (Amcal) 100 mg chewable tablet 53152011000036104 Worm Treatment (Amcal) 53152011000036104 Worm Treatment (Amcal) 75961000036100 mebendazole 100 mg chewable tablet, 2 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +931541011000036102 Reditron 8 mg film-coated tablet, 6, blister pack 163431 930702011000036108 Reditron 8 mg film-coated tablet, 6 930021011000036105 Reditron 8 mg film-coated tablet 28261000168108 Reditron 28261000168108 Reditron 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +998021000168109 Imatinib (Apo) 400 mg film-coated tablet, 30, blister pack 196033 997931000168105 Imatinib (Apo) 400 mg film-coated tablet, 30 997921000168107 Imatinib (Apo) 400 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 28143011000036104 imatinib 400 mg tablet, 30 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +17878011000036108 Progynova 2 mg sugar coated tablet, 56, blister pack 10709 11358011000036106 Progynova 2 mg sugar coated tablet, 56 5977011000036103 Progynova 2 mg sugar coated tablet 3837011000036104 Progynova 3837011000036104 Progynova 26622011000036103 estradiol valerate 2 mg tablet, 56 22028011000036108 estradiol valerate 2 mg tablet 21238011000036103 estradiol +44380011000036109 Stilnox 10 mg film-coated tablet, 7, blister pack 69681 41843011000036103 Stilnox 10 mg film-coated tablet, 7 40226011000036106 Stilnox 10 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +666071000168109 Pacliccord 300 mg/50 mL concentrated injection, 50 mL vial 168524 666061000168103 Pacliccord 300 mg/50 mL concentrated injection, 50 mL vial 666051000168100 Pacliccord 300 mg/50 mL concentrated injection, 50 mL vial 666011000168101 Pacliccord 666011000168101 Pacliccord 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +933211831000036109 Amlodipine (Lupin) 5 mg uncoated tablet, 30, blister pack 139302 933200651000036109 Amlodipine (Lupin) 5 mg uncoated tablet, 30 933194581000036107 Amlodipine (Lupin) 5 mg uncoated tablet 933193801000036101 Amlodipine (Lupin) 933193801000036101 Amlodipine (Lupin) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +841691000168105 Atorvastatin (Amneal) 40 mg film-coated tablet, 20, blister pack 178542 841681000168107 Atorvastatin (Amneal) 40 mg film-coated tablet, 20 841641000168102 Atorvastatin (Amneal) 40 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841671000168109 atorvastatin 40 mg tablet, 20 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +871671000168108 Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets 61530 871661000168102 Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets 871611000168100 Gastrolyte Orange powder for oral liquid, 5.2 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871651000168104 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets 871601000168103 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +871671000168108 Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets 174783 871661000168102 Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets 871611000168100 Gastrolyte Orange powder for oral liquid, 5.2 g sachet 80092011000036103 Gastrolyte 80092011000036103 Gastrolyte 871651000168104 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets 871601000168103 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +897611000168104 Naloxone (Juno) 400 microgram/mL injection solution, 10 x 1 mL ampoules 236005 897601000168102 Naloxone (Juno) 400 microgram/mL injection solution, 10 x 1 mL ampoules 897491000168105 Naloxone (Juno) 400 microgram/mL injection solution, ampoule 893621000168100 Naloxone (Juno) 893621000168100 Naloxone (Juno) 897591000168109 naloxone hydrochloride dihydrate 400 microgram/mL injection, 10 x 1 mL ampoules 897481000168107 naloxone hydrochloride dihydrate 400 microgram/mL injection, ampoule 33627011000036107 naloxone +69171011000036107 Magnesium Chloride (DBL) 480 mg/5 mL concentrated injection, 10 x 5 mL ampoules 16310 66971011000036102 Magnesium Chloride (DBL) 480 mg/5 mL concentrated injection, 10 x 5 mL ampoules 65475011000036100 Magnesium Chloride (DBL) 480 mg/5 mL concentrated injection, 5 mL ampoule 65158011000036105 Magnesium Chloride (DBL) 65158011000036105 Magnesium Chloride (DBL) 71544011000036106 magnesium chloride 480 mg/5 mL injection, 10 x 5 mL ampoules 70053011000036103 magnesium chloride 480 mg/5 mL injection, ampoule 878861000168107 magnesium +87699011000036108 Carvedilol (Apo) 6.25 mg film-coated tablet, 30, blister pack 123828 87413011000036107 Carvedilol (Apo) 6.25 mg film-coated tablet, 30 87296011000036101 Carvedilol (Apo) 6.25 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +14221000036106 Quetiapine (Actavis) 25 mg film-coated tablet, 60, blister pack 179898 7831000036103 Quetiapine (Actavis) 25 mg film-coated tablet, 60 3441000036104 Quetiapine (Actavis) 25 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +60529011000036102 Demazin PE Cold and Flu Night-Time Relief uncoated tablet, 96, blister pack 152029 56487011000036103 Demazin PE Cold and Flu Night-Time Relief uncoated tablet, 96 53938011000036100 Demazin PE Cold and Flu Night-Time Relief uncoated tablet 24251000168104 Demazin PE Cold and Flu Night-Time Relief 24251000168104 Demazin PE Cold and Flu Night-Time Relief 63384011000036106 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 96 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +921826011000036105 Quitx Freshmint 2 mg chewing gum, 24, blister pack 143431 921411011000036103 Quitx Freshmint 2 mg chewing gum, 24 920992011000036100 Quitx Freshmint 2 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +974631000168102 Bosentan (GH) 125 mg film-coated tablet, 100, bottle 235883 974621000168100 Bosentan (GH) 125 mg film-coated tablet, 100 974261000168107 Bosentan (GH) 125 mg film-coated tablet 974251000168105 Bosentan (GH) 974251000168105 Bosentan (GH) 884161000168104 bosentan 125 mg tablet, 100 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1081931000168106 Ralovera 2.5 mg uncoated tablet, 56, blister pack 46527 1081911000168101 Ralovera 2.5 mg uncoated tablet, 56 1081881000168101 Ralovera 2.5 mg uncoated tablet 4418011000036101 Ralovera 4418011000036101 Ralovera 46320011000036109 medroxyprogesterone acetate 2.5 mg tablet, 56 45075011000036104 medroxyprogesterone acetate 2.5 mg tablet 21378011000036107 medroxyprogesterone +69055011000036100 Menthol and Eucalyptus Inhalation (Gold Cross) inhalation solution, 50 mL, bottle 14282 66857011000036101 Menthol and Eucalyptus Inhalation (Gold Cross) inhalation solution, 50 mL 65429011000036102 Menthol and Eucalyptus Inhalation (Gold Cross) inhalation solution 65170011000036105 Menthol and Eucalyptus Inhalation (Gold Cross) 65170011000036105 Menthol and Eucalyptus Inhalation (Gold Cross) 52314011000036100 menthol 2% + eucalyptus oil 10% inhalation solution, 50 mL 52246011000036109 menthol 2% + eucalyptus oil 10% inhalation solution 52237011000036108 menthol + eucalyptus oil +59664011000036102 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 12, blister pack 107036 55725011000036105 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet, 12 53713011000036105 Ibuprofen (Pharmacist Formula) 200 mg film-coated tablet 53160011000036105 Ibuprofen (Pharmacist Formula) 53160011000036105 Ibuprofen (Pharmacist Formula) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60004011000036107 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet, 48, blister pack 123048 55966011000036104 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet, 48 53741011000036104 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet 53519011000036107 Sinutab PE Sinus, Allergy and Pain Relief 53519011000036107 Sinutab PE Sinus, Allergy and Pain Relief 63383011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +14231000036108 Quetiapine (Actavis) 300 mg film-coated tablet, 60, blister pack 179899 7841000036108 Quetiapine (Actavis) 300 mg film-coated tablet, 60 3411000036100 Quetiapine (Actavis) 300 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +925305011000036109 Gemcitabine (Kabi) 200 mg powder for injection, 1 vial 162336 924842011000036104 Gemcitabine (Kabi) 200 mg powder for injection, 1 vial 924525011000036108 Gemcitabine (Kabi) 200 mg powder for injection, 200 mg vial 924404011000036105 Gemcitabine (Kabi) 924404011000036105 Gemcitabine (Kabi) 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +766861000168103 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 211154 766851000168100 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 766831000168106 Micronelle 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 766821000168108 Micronelle 20 ED 766821000168108 Micronelle 20 ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +766861000168103 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 211154 766851000168100 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 766841000168102 Micronelle 20 ED (inert substance) film-coated tablet 766821000168108 Micronelle 20 ED 766821000168108 Micronelle 20 ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +1075101000168107 Atenolol (RBX) 100 mg film-coated tablet, 250, bottle 197762 1075091000168102 Atenolol (RBX) 100 mg film-coated tablet, 250 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1033351000168107 atenolol 100 mg tablet, 250 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +1030091000168107 Atomoxetine (Genpar) 100 mg hard capsule, 28, blister pack 234835 1030081000168109 Atomoxetine (Genpar) 100 mg hard capsule, 28 1029991000168100 Atomoxetine (Genpar) 100 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +655241000168105 Quetiapine (AN) 200 mg film-coated tablet, 60, blister pack 170854 655231000168101 Quetiapine (AN) 200 mg film-coated tablet, 60 655221000168104 Quetiapine (AN) 200 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +69655011000036105 Nurofen 5% gel, 50 g, tube 79909 67454011000036103 Nurofen 5% gel, 50 g 65669011000036108 Nurofen 5% gel 5641000168109 Nurofen 5641000168109 Nurofen 71982011000036102 ibuprofen 5% gel, 50 g 70270011000036104 ibuprofen 5% gel 21885011000036105 ibuprofen +1107501000168106 Syquet 25 mg film-coated tablet, 20, blister pack 204152 1107491000168104 Syquet 25 mg film-coated tablet, 20 15291000036108 Syquet 25 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1072931000168109 Pantoprazole (Generic Health) 20 mg enteric tablet, 56, blister pack 191032 1072921000168106 Pantoprazole (Generic Health) 20 mg enteric tablet, 56 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46677011000036103 pantoprazole 20 mg enteric tablet, 56 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1109301000168107 Cloap 75/100 uncoated tablet, 30, blister pack 219058 1109291000168106 Cloap 75/100 uncoated tablet, 30 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +766901000168109 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 211154 766891000168105 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 766831000168106 Micronelle 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 766821000168108 Micronelle 20 ED 766821000168108 Micronelle 20 ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +766901000168109 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 211154 766891000168105 Micronelle 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 766841000168102 Micronelle 20 ED (inert substance) film-coated tablet 766821000168108 Micronelle 20 ED 766821000168108 Micronelle 20 ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +82364011000036104 Irinotecan Hydrochloride Trihydrate (Alphapharm) 100 mg/5 mL concentrated injection, 5 mL vial 148578 82153011000036100 Irinotecan Hydrochloride Trihydrate (Alphapharm) 100 mg/5 mL concentrated injection, 5 mL vial 82020011000036100 Irinotecan Hydrochloride Trihydrate (Alphapharm) 100 mg/5 mL concentrated injection, 5 mL vial 81987011000036101 Irinotecan Hydrochloride Trihydrate (Alphapharm) 81987011000036101 Irinotecan Hydrochloride Trihydrate (Alphapharm) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +910531000168104 Cefepime (AFT) 500 mg powder for injection, 5 vials 196281 910521000168102 Cefepime (AFT) 500 mg powder for injection, 5 vials 910471000168100 Cefepime (AFT) 500 mg powder for injection, 500 mg vial 134151000036105 Cefepime (AFT) 134151000036105 Cefepime (AFT) 910511000168109 cefepime 500 mg injection, 5 vials 910461000168106 cefepime 500 mg injection, vial 21558011000036108 cefepime +829171000168100 Imatinib (Teva) 100 mg film-coated tablet, 60, blister pack 232234 829161000168106 Imatinib (Teva) 100 mg film-coated tablet, 60 829101000168105 Imatinib (Teva) 100 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 28142011000036106 imatinib 100 mg tablet, 60 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +926847011000036107 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid, 50 mL, bottle 25404 926243011000036107 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid, 50 mL 925694011000036101 Eucalyptus Oil (Thursday Plantation) 1 mL/mL multi-purpose liquid 925508011000036101 Eucalyptus Oil (Thursday Plantation) 925508011000036101 Eucalyptus Oil (Thursday Plantation) 927355011000036103 eucalyptus oil 1 mL/mL liquid, 50 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +33502011000036107 Raptiva (4 x 125 mg vials, 4 x 1.32 mL inert diluent syringes), 1 pack, composite pack 100484 33238011000036108 Raptiva (4 x 125 mg vials, 4 x 1.32 mL inert diluent syringes), 1 pack 33013011000036100 Raptiva (efalizumab 125 mg) powder for injection, 125 mg vial 3007011000036109 Raptiva 3007011000036109 Raptiva 33771011000036109 efalizumab 125 mg injection [4 vials] (&) inert substance diluent [4 x 1.32 mL syringes], 1 pack 33652011000036109 efalizumab 125 mg injection, vial 21716011000036103 efalizumab +33502011000036107 Raptiva (4 x 125 mg vials, 4 x 1.32 mL inert diluent syringes), 1 pack, composite pack 100484 33238011000036108 Raptiva (4 x 125 mg vials, 4 x 1.32 mL inert diluent syringes), 1 pack 630241000168101 Raptiva (inert substance) diluent, 1.32 mL syringe 3007011000036109 Raptiva 3007011000036109 Raptiva 33771011000036109 efalizumab 125 mg injection [4 vials] (&) inert substance diluent [4 x 1.32 mL syringes], 1 pack 630231000168105 inert substance diluent, 1.32 mL syringe 21220011000036103 inert substance +734801000168103 Paracetamol plus Codeine 15 (Apohealth) uncoated tablet, 40, blister pack 229524 734791000168104 Paracetamol plus Codeine 15 (Apohealth) uncoated tablet, 40 734761000168106 Paracetamol plus Codeine 15 (Apohealth) uncoated tablet 734751000168109 Paracetamol plus Codeine 15 (Apohealth) 734751000168109 Paracetamol plus Codeine 15 (Apohealth) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +60045011000036104 Strong Pain Relief (Priceline) uncoated tablet, 48, blister pack 124407 56007011000036106 Strong Pain Relief (Priceline) uncoated tablet, 48 53755011000036104 Strong Pain Relief (Priceline) uncoated tablet 53572011000036108 Strong Pain Relief (Priceline) 53572011000036108 Strong Pain Relief (Priceline) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +21202011000036106 Predsolone 1 mg uncoated tablet, 100, bottle 99791 14340011000036100 Predsolone 1 mg uncoated tablet, 100 7624011000036105 Predsolone 1 mg uncoated tablet 4059011000036109 Predsolone 4059011000036109 Predsolone 33833011000036105 prednisolone 1 mg tablet, 100 33697011000036104 prednisolone 1 mg tablet 21273011000036105 prednisolone +68813011000036105 Adrenaline (AstraZeneca) 1 in 10 000 (1 mg/10 mL) injection solution, 10 x 10 mL ampoules 119194 66646011000036107 Adrenaline (AstraZeneca) 1 in 10 000 (1 mg/10 mL) injection solution, 10 x 10 mL ampoules 65350011000036102 Adrenaline (AstraZeneca) 1 in 10 000 (1 mg/10 mL) injection solution, 10 mL ampoule 4357011000036103 Adrenaline (AstraZeneca) 4357011000036103 Adrenaline (AstraZeneca) 71356011000036104 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, 10 x 10 mL ampoules 69970011000036103 adrenaline (epinephrine) 1 in 10 000 (1 mg/10 mL) injection, ampoule 21823011000036103 adrenaline (epinephrine) +1034751000168106 Atelvia EC Once-a-Week 35 mg enteric tablet, 4, blister pack 166841 1034741000168109 Atelvia EC Once-a-Week 35 mg enteric tablet, 4 1034661000168100 Atelvia EC Once-a-Week 35 mg enteric tablet 1034651000168102 Atelvia EC Once-a-Week 1034651000168102 Atelvia EC Once-a-Week 75621000036104 risedronate sodium 35 mg enteric tablet, 4 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +86189011000036109 Certican 1 mg uncoated tablet, 60, blister pack 97516 85796011000036108 Certican 1 mg uncoated tablet, 60 85407011000036100 Certican 1 mg uncoated tablet 4369011000036100 Certican 4369011000036100 Certican 86478011000036105 everolimus 1 mg tablet, 60 86248011000036105 everolimus 1 mg tablet 21615011000036103 everolimus +926932011000036100 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel, 50 g, tube 91701 926326011000036105 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel, 50 g 925762011000036101 Anti-Inflammatory Pain Relief (Terry White Chemists) 1% gel 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 9681000168101 Anti-Inflammatory Pain Relief (Terry White Chemists) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +908161000168103 Celecoxib (Ascent) 200 mg capsule, 120, blister pack 204617 908151000168100 Celecoxib (Ascent) 200 mg capsule, 120 907951000168102 Celecoxib (Ascent) 200 mg capsule 907611000168108 Celecoxib (Ascent) 907611000168108 Celecoxib (Ascent) 745971000168103 celecoxib 200 mg capsule, 120 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +18863011000036101 Diprosone 0.05% cream, 15 g, tube 18818 12174011000036107 Diprosone 0.05% cream, 15 g 5366011000036104 Diprosone 0.05% cream 10951000168106 Diprosone 10951000168106 Diprosone 27084011000036108 betamethasone (as dipropionate) 0.05% cream, 15 g 22453011000036107 betamethasone (as dipropionate) 0.05% cream 21372011000036109 betamethasone dipropionate +81068011000036106 Iscover 300 mg film-coated tablet, 98, blister pack 151280 80577011000036107 Iscover 300 mg film-coated tablet, 98 80195011000036101 Iscover 300 mg film-coated tablet 3653011000036100 Iscover 3653011000036100 Iscover 81656011000036108 clopidogrel 300 mg tablet, 98 81278011000036106 clopidogrel 300 mg tablet 21802011000036103 clopidogrel +60488011000036105 Nurofen for Children 1 to 5 Years strawberry 100 mg/5 mL oral liquid suspension, 200 mL, bottle 150238 56446011000036109 Nurofen for Children 1 to 5 Years strawberry 100 mg/5 mL oral liquid suspension, 200 mL 53921011000036107 Nurofen for Children 1 to 5 Years strawberry 100 mg/5 mL oral liquid suspension, 5 mL 34281000168109 Nurofen for Children 1 to 5 Years 34281000168109 Nurofen for Children 1 to 5 Years 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +773211000168104 Famvir 500 mg film-coated tablet, 20, blister pack 67391 773201000168102 Famvir 500 mg film-coated tablet, 20 6484011000036101 Famvir 500 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +50343011000036103 XMET Maxamum powder for oral liquid, 500 g, can 49486011000036102 XMET Maxamum powder for oral liquid, 500 g 48671011000036103 XMET Maxamum powder for oral liquid 46321000168107 XMET Maxamum 46321000168107 XMET Maxamum 51443011000036100 amino acid formula with vitamins and minerals without methionine powder for oral liquid, 500 g 50957011000036104 amino acid formula with vitamins and minerals without methionine powder for oral liquid 50753011000036104 amino acid formula with vitamins and minerals without methionine +84403011000036104 Cold and Flu Day and Night (Chemists' Own) (16 x Day tablets, 8 x Night tablets), 24, blister pack 94304 84094011000036105 Cold and Flu Day and Night (Chemists' Own) (16 x Day tablets, 8 x Night tablets), 24 83708011000036101 Cold and Flu Day and Night (Night) (Chemists' Own) film-coated tablet 2611000168103 Cold and Flu Day and Night (Chemists' Own) 2851000168101 Cold and Flu Day and Night (Night) (Chemists' Own) 63252011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +84403011000036104 Cold and Flu Day and Night (Chemists' Own) (16 x Day tablets, 8 x Night tablets), 24, blister pack 94304 84094011000036105 Cold and Flu Day and Night (Chemists' Own) (16 x Day tablets, 8 x Night tablets), 24 83707011000036102 Cold and Flu Day and Night (Day) (Chemists' Own) film-coated tablet 2611000168103 Cold and Flu Day and Night (Chemists' Own) 2731000168100 Cold and Flu Day and Night (Day) (Chemists' Own) 63252011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62109011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +84358011000036106 Cold and Flu Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24, blister pack 161088 84051011000036103 Cold and Flu Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24 83675011000036107 Cold and Flu Day and Night PE (Night) (Terry White Chemists) uncoated tablet 55571000168106 Cold and Flu Day and Night PE (Terry White Chemists) 55811000168101 Cold and Flu Day and Night PE (Night) (Terry White Chemists) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +84358011000036106 Cold and Flu Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24, blister pack 161088 84051011000036103 Cold and Flu Day and Night PE (Terry White Chemists) (16 x Day tablets, 8 x Night tablets), 24 83674011000036108 Cold and Flu Day and Night PE (Day) (Terry White Chemists) uncoated tablet 55571000168106 Cold and Flu Day and Night PE (Terry White Chemists) 55691000168106 Cold and Flu Day and Night PE (Day) (Terry White Chemists) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +161691000036104 Nitrolingual 400 microgram/actuation oral spray, 200 actuations, pump actuated metered dose aerosol 56087 161601000036107 Nitrolingual 400 microgram/actuation oral spray, 200 actuations 161441000036107 Nitrolingual 400 microgram/actuation oral spray, actuation 3285011000036105 Nitrolingual 3285011000036105 Nitrolingual 161611000036109 glyceryl trinitrate 400 microgram/actuation oral spray, 200 actuations 161451000036105 glyceryl trinitrate 400 microgram/actuation oral spray, actuation 21388011000036102 glyceryl trinitrate +14141000036109 Trovas 40 mg film-coated tablet, 30, blister pack 179840 7791000036106 Trovas 40 mg film-coated tablet, 30 2411000036107 Trovas 40 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +20361011000036100 Actos 45 mg uncoated tablet, 28, blister pack 76464 13569011000036103 Actos 45 mg uncoated tablet, 28 6851011000036102 Actos 45 mg uncoated tablet 4390011000036109 Actos 4390011000036109 Actos 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +923797011000036107 Frusemide (Claris) 50 mg/5 mL injection solution, 25 x 5 mL ampoules 155969 923357011000036104 Frusemide (Claris) 50 mg/5 mL injection solution, 25 x 5 mL ampoules 923033011000036108 Frusemide (Claris) 50 mg/5 mL injection solution, 5 mL ampoule 80114011000036101 Frusemide (Claris) 80114011000036101 Frusemide (Claris) 924155011000036100 furosemide (frusemide) 50 mg/5 mL injection, 25 x 5 mL ampoules 923971011000036103 furosemide (frusemide) 50 mg/5 mL injection, ampoule 21329011000036103 furosemide (frusemide) +1068841000168100 Febricod uncoated tablet, 100, bottle 95801 1068831000168109 Febricod uncoated tablet, 100 1068801000168102 Febricod uncoated tablet 1068791000168103 Febricod 1068791000168103 Febricod 63447011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 100 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +80036011000036109 Oxaliplatin (Alphapharm) 100 mg powder for injection, 50 vials 130854 79967011000036109 Oxaliplatin (Alphapharm) 100 mg powder for injection, 50 vials 79919011000036101 Oxaliplatin (Alphapharm) 100 mg powder for injection, 100 mg vial 79907011000036105 Oxaliplatin (Alphapharm) 79907011000036105 Oxaliplatin (Alphapharm) 80063011000036108 oxaliplatin 100 mg injection, 50 vials 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +1081681000168100 Sonata 5 mg hard capsule, 7, blister pack 70003 1081671000168103 Sonata 5 mg hard capsule, 7 1081651000168107 Sonata 5 mg hard capsule 1081561000168108 Sonata 1081561000168108 Sonata 1081661000168109 zaleplon 5 mg capsule, 7 1081641000168105 zaleplon 5 mg capsule 1081631000168101 zaleplon +846091000168105 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 160539 846081000168107 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 846061000168103 Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial 137301000036103 Menitorix 137301000036103 Menitorix 846071000168109 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 846051000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial 846041000168102 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine +846091000168105 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 160539 846081000168107 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 828351000168100 Menitorix (inert substance) diluent, 0.5 mL syringe 137301000036103 Menitorix 137301000036103 Menitorix 846071000168109 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +17808011000036104 Meloxicam (Chemmart) 7.5 mg uncoated tablet, 30, blister pack 127502 11843011000036101 Meloxicam (Chemmart) 7.5 mg uncoated tablet, 30 4844011000036109 Meloxicam (Chemmart) 7.5 mg uncoated tablet 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +893221000168102 Cefepime (Kabi) 2 g powder for injection, 1 vial 227965 893211000168109 Cefepime (Kabi) 2 g powder for injection, 1 vial 893201000168106 Cefepime (Kabi) 2 g powder for injection, 2 g vial 893101000168102 Cefepime (Kabi) 893101000168102 Cefepime (Kabi) 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +87682011000036104 Famciclovir (Apo) 125 mg film-coated tablet, 28, bottle 160558 87478011000036109 Famciclovir (Apo) 125 mg film-coated tablet, 28 87335011000036105 Famciclovir (Apo) 125 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87822011000036103 famciclovir 125 mg tablet, 28 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +95541000036100 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet, 30, blister pack 186049 94431000036105 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet, 30 93691000036106 Fexofenadine Hydrochloride (Terry White Chemists) 180 mg film-coated tablet 93351000036108 Fexofenadine Hydrochloride (Terry White Chemists) 93351000036108 Fexofenadine Hydrochloride (Terry White Chemists) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +21012011000036104 Enalapril Maleate (GenRx) 5 mg uncoated tablet, 30, blister pack 96330 14158011000036106 Enalapril Maleate (GenRx) 5 mg uncoated tablet, 30 7437011000036103 Enalapril Maleate (GenRx) 5 mg uncoated tablet 3990011000036104 Enalapril Maleate (GenRx) 3990011000036104 Enalapril Maleate (GenRx) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +944651000168107 Risperidone (GenRx) 2 mg film-coated tablet, 60, blister pack 127571 944641000168105 Risperidone (GenRx) 2 mg film-coated tablet, 60 944631000168101 Risperidone (GenRx) 2 mg film-coated tablet 943311000168103 Risperidone (GenRx) 943311000168103 Risperidone (GenRx) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +20528011000036104 Travatan 0.004% eye drops solution, 2.5 mL, bottle 79224 13727011000036104 Travatan 0.004% eye drops solution, 2.5 mL 7010011000036103 Travatan 0.004% eye drops solution 4220011000036109 Travatan 4220011000036109 Travatan 27902011000036105 travoprost 0.004% eye drops, 2.5 mL 23227011000036105 travoprost 0.004% eye drops 21389011000036105 travoprost +20528011000036104 Travatan 0.004% eye drops solution, 2.5 mL, bottle 173354 13727011000036104 Travatan 0.004% eye drops solution, 2.5 mL 7010011000036103 Travatan 0.004% eye drops solution 4220011000036109 Travatan 4220011000036109 Travatan 27902011000036105 travoprost 0.004% eye drops, 2.5 mL 23227011000036105 travoprost 0.004% eye drops 21389011000036105 travoprost +18114011000036109 Pravastatin Sodium (Chemmart) 40 mg uncoated tablet, 30, blister pack 118726 11591011000036109 Pravastatin Sodium (Chemmart) 40 mg uncoated tablet, 30 5596011000036104 Pravastatin Sodium (Chemmart) 40 mg uncoated tablet 3588011000036109 Pravastatin Sodium (Chemmart) 3588011000036109 Pravastatin Sodium (Chemmart) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +884541000168108 Bosentan (Sun) 125 mg film-coated tablet, 60, bottle 257759 884511000168109 Bosentan (Sun) 125 mg film-coated tablet, 60 884481000168102 Bosentan (Sun) 125 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +978851000168104 Lovenox 40 mg/0.4 mL injection solution, 15 x 0.4 mL syringes 80266 978841000168101 Lovenox 40 mg/0.4 mL injection solution, 15 x 0.4 mL syringes 978791000168104 Lovenox 40 mg/0.4 mL injection solution, 0.4 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823361000168107 enoxaparin sodium 40 mg/0.4 mL injection, 15 x 0.4 mL syringes 33671011000036100 enoxaparin sodium 40 mg/0.4 mL injection, syringe 21553011000036103 enoxaparin sodium +61358011000036104 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 6, blister pack 81474 57283011000036105 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 6 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63845011000036101 paracetamol 500 mg tablet, 6 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1023881000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 48, blister pack 227168 1023871000168109 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 48 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023861000168103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 48 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +792521000168106 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 20, blister pack 194033 792511000168104 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 20 792431000168105 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +751831000168109 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 60, blister pack 196502 751821000168106 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 60 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 671941000168101 metoclopramide hydrochloride 10 mg tablet, 60 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +68687011000036109 Silic 15 lotion, 200 g, bottle 10637 66542011000036104 Silic 15 lotion, 200 g 65229011000036101 Silic 15 lotion 21301000168108 Silic 15 21301000168108 Silic 15 71274011000036103 dimeticone-350 15% + glycerol 2% lotion, 200 g 69924011000036109 dimeticone-350 15% + glycerol 2% lotion 32614011000036102 dimeticone-350 + glycerol +867421000168106 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 20 x 250 mL bags 241252 867411000168104 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 20 x 250 mL bags 867341000168107 Moxifloxacin (Kabi) 400 mg/250 mL intravenous infusion injection, 250 mL bag 867331000168103 Moxifloxacin (Kabi) 867331000168103 Moxifloxacin (Kabi) 867401000168102 moxifloxacin 400 mg/250 mL injection, 20 x 250 mL bags 33684011000036106 moxifloxacin 400 mg/250 mL injection, bag 21765011000036109 moxifloxacin +1109581000168106 Cloap 75/100 uncoated tablet, 100, blister pack 219058 1109571000168108 Cloap 75/100 uncoated tablet, 100 1109021000168101 Cloap 75/100 uncoated tablet 1108981000168107 Cloap 75/100 1108981000168107 Cloap 75/100 82543011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 100 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +933211671000036105 Ciprofloxacin (BL) 500 mg film-coated tablet, 100, blister pack 114047 933199781000036100 Ciprofloxacin (BL) 500 mg film-coated tablet, 100 933194151000036105 Ciprofloxacin (BL) 500 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 933199791000036103 ciprofloxacin 500 mg tablet, 100 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1043151000168108 Pryzex ODT 10 mg orally disintegrating tablet, 60, blister pack 179076 1043141000168106 Pryzex ODT 10 mg orally disintegrating tablet, 60 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1043131000168102 olanzapine 10 mg orally disintegrating tablet, 60 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +50394011000036108 Atrauman (499513) 7.5 cm x 10 cm dressing, 10, carton 49404011000036106 Atrauman (499513) 7.5 cm x 10 cm dressing, 10 48584011000036102 Atrauman (499513) 7.5 cm x 10 cm dressing 49131000168101 Atrauman (499513) 49131000168101 Atrauman (499513) 51373011000036106 dressing non adherent 7.5 cm x 10 cm dressing, 10 50907011000036109 dressing non adherent 7.5 cm x 10 cm dressing 50699011000036100 dressing non adherent +68762011000036104 Nicotinell Mint 2 mg chewing gum, 120, blister pack 126043 66693011000036109 Nicotinell Mint 2 mg chewing gum, 120 54073011000036101 Nicotinell Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71509011000036101 nicotine 2 mg gum, 120 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +723961000168108 PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets 723951000168106 PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets 723941000168109 PKU Anamix Junior Unflavoured powder for oral liquid, 29 g sachet 30231000168101 PKU Anamix Junior 30231000168101 PKU Anamix Junior 51448011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 29 g sachets 251031000168106 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 29 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +893131000168109 Cefepime (Kabi) 1 g powder for injection, 1 vial 227966 893121000168106 Cefepime (Kabi) 1 g powder for injection, 1 vial 893111000168104 Cefepime (Kabi) 1 g powder for injection, vial 893101000168102 Cefepime (Kabi) 893101000168102 Cefepime (Kabi) 27279011000036106 cefepime 1 g injection, 1 vial 22634011000036108 cefepime 1 g injection, vial 21558011000036108 cefepime +82541000036107 Naloxone Min-I-Jet (CSL) 400 microgram/mL injection solution, 1 mL syringe 29051 80731000036106 Naloxone Min-I-Jet (CSL) 400 microgram/mL injection solution, 1 mL syringe 78871000036109 Naloxone Min-I-Jet (CSL) 400 microgram/mL injection solution, syringe 32995011000036101 Naloxone Min-I-Jet (CSL) 32995011000036101 Naloxone Min-I-Jet (CSL) 80741000036101 naloxone hydrochloride 400 microgram/mL injection, 1 mL syringe 78881000036106 naloxone hydrochloride 400 microgram/mL injection, syringe 33627011000036107 naloxone +933211651000036100 Ciprofloxacin (BL) 250 mg film-coated tablet, 100, blister pack 114046 933199721000036101 Ciprofloxacin (BL) 250 mg film-coated tablet, 100 933194141000036107 Ciprofloxacin (BL) 250 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 932362011000036103 ciprofloxacin 250 mg tablet, 100 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +50585011000036106 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 28, blister pack 134855 49617011000036104 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 28 4947011000036106 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 51517011000036109 clarithromycin 250 mg tablet, 28 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +824741000168107 Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials 147333 824731000168103 Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials 824711000168108 Havrix 1440 ELISA units/mL injection suspension, vial 73776011000036105 Havrix 73776011000036105 Havrix 824721000168101 hepatitis A adult vaccine 1440 ELISA units/mL injection, 10 x 1 mL vials 824701000168105 hepatitis A adult vaccine 1440 ELISA units/mL injection, vial 824641000168102 hepatitis A vaccine +925133011000036106 Scitropin A 5 mg/1.5 mL injection, 1.5 mL cartridge 140322 924695011000036109 Scitropin A 5 mg/1.5 mL injection, 1.5 mL cartridge 924420011000036109 Scitropin A 5 mg/1.5 mL injection, 1.5 mL cartridge 924409011000036106 Scitropin A 924409011000036106 Scitropin A 28298011000036100 somatropin 5 mg/1.5 mL injection, 1.5 mL cartridge 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +698381000168107 Dilart 320 mg film-coated tablet, 28, blister pack 167421 698371000168109 Dilart 320 mg film-coated tablet, 28 698361000168103 Dilart 320 mg film-coated tablet 697391000168109 Dilart 697391000168109 Dilart 63184011000036103 valsartan 320 mg tablet, 28 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +1115881000168109 Quetiapine XR (Sandoz) 50 mg modified release tablet, 60, blister pack 199863 1115871000168106 Quetiapine XR (Sandoz) 50 mg modified release tablet, 60 1115861000168100 Quetiapine XR (Sandoz) 50 mg modified release tablet 1115851000168102 Quetiapine XR (Sandoz) 1115851000168102 Quetiapine XR (Sandoz) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +61600011000036100 Sinus (Terry White Chemists) uncoated tablet, 48, blister pack 95857 57522011000036104 Sinus (Terry White Chemists) uncoated tablet, 48 54338011000036107 Sinus (Terry White Chemists) uncoated tablet 53348011000036109 Sinus (Terry White Chemists) 53348011000036109 Sinus (Terry White Chemists) 63904011000036100 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 48 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +1047491000168101 Bupretec 5 microgram/hour patch, 1, sachet 234730 1047481000168104 Bupretec 5 microgram/hour patch, 1 1047471000168102 Bupretec 5 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1046451000168108 buprenorphine 5 microgram/hour patch, 1 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +31391000036107 Loxip 750 mg film-coated tablet, 14, blister pack 175442 28581000036108 Loxip 750 mg film-coated tablet, 14 27211000036102 Loxip 750 mg film-coated tablet 26181000036100 Loxip 26181000036100 Loxip 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +966111000168101 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 97236 966101000168104 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 966001000168103 Dermapil (inert substance) film-coated tablet 965981000168102 Dermapil 965981000168102 Dermapil 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +966111000168101 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 97236 966101000168104 Dermapil (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 965991000168104 Dermapil (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 965981000168102 Dermapil 965981000168102 Dermapil 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +839721000168103 Adacel Polio injection suspension, 5 x 0.5 mL syringes 106576 839711000168105 Adacel Polio injection suspension, 5 x 0.5 mL syringes 839621000168105 Adacel Polio injection suspension, 0.5 mL syringe 73693011000036101 Adacel Polio 73693011000036101 Adacel Polio 839701000168107 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 5 x 0.5 mL syringes 839611000168103 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 839601000168101 diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine +1116041000168102 Quetiapine XR (Sandoz) 150 mg modified release tablet, 60, blister pack 199865 1116031000168106 Quetiapine XR (Sandoz) 150 mg modified release tablet, 60 1116021000168108 Quetiapine XR (Sandoz) 150 mg modified release tablet 1115851000168102 Quetiapine XR (Sandoz) 1115851000168102 Quetiapine XR (Sandoz) 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +931721000168107 Centevo 100/25/200 mg film-coated tablet, 90, bottle 238855 931711000168100 Centevo 100/25/200 mg film-coated tablet, 90 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931701000168103 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 90 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +61381011000036103 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 50 mL, bottle 81817 57306011000036108 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution, 50 mL 54267011000036105 Congested Cold and Cough Paediatric Drops (Soul Pattinson) oral liquid solution 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 41921000168100 Congested Cold and Cough Paediatric Drops (Soul Pattinson) 63884011000036108 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid, 50 mL 62095011000036100 brompheniramine maleate 400 microgram/mL + phenylephrine hydrochloride 1 mg/mL + dextromethorphan hydrobromide monohydrate 2 mg/mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +18621011000036100 Simvasyn 10 mg film-coated tablet, 30, blister pack 124690 11774011000036100 Simvasyn 10 mg film-coated tablet, 30 4811011000036101 Simvasyn 10 mg film-coated tablet 4188011000036104 Simvasyn 4188011000036104 Simvasyn 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +1068911000168105 Cold and Flu Relief Day/Night (Apohealth) (16 x Day tablets, 8 x Night tablets), 24, blister pack 236266 1068901000168107 Cold and Flu Relief Day/Night (Apohealth) (16 x Day tablets, 8 x Night tablets), 24 1068891000168108 Cold and Flu Relief Day/Night (Night) (Apohealth) uncoated tablet 1068851000168103 Cold and Flu Relief Day/Night (Apohealth) 1068871000168107 Cold and Flu Relief Day/Night (Night) (Apohealth) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +1068911000168105 Cold and Flu Relief Day/Night (Apohealth) (16 x Day tablets, 8 x Night tablets), 24, blister pack 236266 1068901000168107 Cold and Flu Relief Day/Night (Apohealth) (16 x Day tablets, 8 x Night tablets), 24 1068881000168105 Cold and Flu Relief Day/Night (Day) (Apohealth) uncoated tablet 1068851000168103 Cold and Flu Relief Day/Night (Apohealth) 1068861000168101 Cold and Flu Relief Day/Night (Day) (Apohealth) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +104131000036105 Irbesartan (Terry White Chemists) 75 mg tablet, 30, blister pack 169788 101311000036102 Irbesartan (Terry White Chemists) 75 mg tablet, 30 98641000036107 Irbesartan (Terry White Chemists) 75 mg tablet 97711000036100 Irbesartan (Terry White Chemists) 97711000036100 Irbesartan (Terry White Chemists) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +104131000036105 Irbesartan (Terry White Chemists) 75 mg tablet, 30, blister pack 216059 101311000036102 Irbesartan (Terry White Chemists) 75 mg tablet, 30 98641000036107 Irbesartan (Terry White Chemists) 75 mg tablet 97711000036100 Irbesartan (Terry White Chemists) 97711000036100 Irbesartan (Terry White Chemists) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1066741000168105 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 24, blister pack 197884 1066731000168101 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet, 24 1066591000168109 Ibuprofen plus Codeine (Chemmart Pharmacy) film-coated tablet 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 1066551000168104 Ibuprofen plus Codeine (Chemmart Pharmacy) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +706801000168103 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 219146 706791000168104 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 706781000168102 Lenest 20 ED (inert substance) uncoated tablet 706751000168109 Lenest 20 ED 706751000168109 Lenest 20 ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +706801000168103 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 219146 706791000168104 Lenest 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 706771000168100 Lenest 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) uncoated tablet 706751000168109 Lenest 20 ED 706751000168109 Lenest 20 ED 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +18050011000036103 Gabapentin (DBL) 400 mg hard capsule, 100, blister pack 120988 11660011000036109 Gabapentin (DBL) 400 mg hard capsule, 100 5680011000036106 Gabapentin (DBL) 400 mg hard capsule 2909011000036100 Gabapentin (DBL) 2909011000036100 Gabapentin (DBL) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +69102011000036109 Rubesal cream, 25 g, tube 14870 66903011000036107 Rubesal cream, 25 g 65541011000036108 Rubesal cream 65038011000036100 Rubesal 65038011000036100 Rubesal 71497011000036101 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% cream, 25 g 70038011000036107 camphor 0.5% + diethylamine salicylate 10% + menthol 0.75% cream 69779011000036103 camphor + salicylic acid + menthol +1008951000168105 Lisinopril (Apotex) 20 mg tablet, 30, blister pack 143975 1008941000168108 Lisinopril (Apotex) 20 mg tablet, 30 1008931000168104 Lisinopril (Apotex) 20 mg tablet 52382011000036107 Lisinopril (Apotex) 52382011000036107 Lisinopril (Apotex) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1041101000168105 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device 122851 1041091000168100 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device 1041071000168101 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device 41101000168107 Aranesp Sureclick 41101000168107 Aranesp Sureclick 1041081000168103 darbepoetin alfa 40 microgram/0.4 mL injection, 0.4 mL injection device 1041061000168107 darbepoetin alfa 40 microgram/0.4 mL injection, injection device 21234011000036105 darbepoetin alfa +931687011000036106 Gastenz 20 mg enteric tablet, 14, blister pack 169322 930847011000036104 Gastenz 20 mg enteric tablet, 14 930069011000036100 Gastenz 20 mg enteric tablet 929908011000036100 Gastenz 929908011000036100 Gastenz 46671011000036106 pantoprazole 20 mg enteric tablet, 14 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +103971000036106 Arazil 5 mg film-coated tablet, 28, blister pack 167692 101461000036109 Arazil 5 mg film-coated tablet, 28 98351000036104 Arazil 5 mg film-coated tablet 97671000036101 Arazil 97671000036101 Arazil 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +87665011000036109 Ciprofloxacin (GA) 750 mg film-coated tablet, 20, blister pack 148856 87427011000036107 Ciprofloxacin (GA) 750 mg film-coated tablet, 20 87303011000036100 Ciprofloxacin (GA) 750 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 87797011000036107 ciprofloxacin 750 mg tablet, 20 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +84311011000036105 Simponi 50 mg/0.5 mL injection solution, 0.5 mL syringe 153767 84004011000036107 Simponi 50 mg/0.5 mL injection solution, 0.5 mL syringe 83640011000036102 Simponi 50 mg/0.5 mL injection solution, 0.5 mL syringe 83552011000036109 Simponi 83552011000036109 Simponi 84636011000036100 golimumab 50 mg/0.5 mL injection, 0.5 mL syringe 84432011000036101 golimumab 50 mg/0.5 mL injection, syringe 84416011000036108 golimumab +44697011000036101 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack, composite pack 93506 42146011000036100 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack 630591000168107 Gonal-F (inert substance) diluent, 1 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 46907011000036109 follitropin alfa 37.5 units (2.73 microgram) injection [5 x 37.5 units vials] (&) inert substance diluent [5 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44697011000036101 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack, composite pack 93506 42146011000036100 Gonal-F (5 x 37.5 units (2.73 microgram) vials, 5 x 1 mL inert diluent syringes), 1 pack 40364011000036100 Gonal-F (follitropin alfa 37.5 units (2.73 microgram)) powder for injection, 37.5 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 46907011000036109 follitropin alfa 37.5 units (2.73 microgram) injection [5 x 37.5 units vials] (&) inert substance diluent [5 x 1 mL syringes], 1 pack 45341011000036101 follitropin alfa 37.5 units (2.73 microgram) injection, 37.5 units vial 21352011000036107 follitropin alfa +20170011000036108 Prazosin (GenRx) 1 mg uncoated tablet, 100, blister pack 73858 13393011000036102 Prazosin (GenRx) 1 mg uncoated tablet, 100 6678011000036101 Prazosin (GenRx) 1 mg uncoated tablet 3943011000036104 Prazosin (GenRx) 3943011000036104 Prazosin (GenRx) 27727011000036107 prazosin 1 mg tablet, 100 23062011000036109 prazosin 1 mg tablet 21544011000036104 prazosin +974151000168103 Nortritabs 25 mg uncoated tablet, 100, bottle 220985 974141000168100 Nortritabs 25 mg uncoated tablet, 100 974131000168109 Nortritabs 25 mg uncoated tablet 974101000168102 Nortritabs 974101000168102 Nortritabs 967941000168103 nortriptyline 25 mg tablet, 100 22658011000036100 nortriptyline 25 mg tablet 21689011000036104 nortriptyline +966201000168108 Claraderm 0.05% cream, 30 g, tube 18412 966191000168105 Claraderm 0.05% cream, 30 g 966061000168102 Claraderm 0.05% cream 966031000168105 Claraderm 966031000168105 Claraderm 966181000168107 alclometasone dipropionate 0.05% cream, 30 g 966051000168104 alclometasone dipropionate 0.05% cream 966041000168101 alclometasone dipropionate +11891000036105 Venlafaxine XR (Apo) 150 mg modified release capsule, 28, blister pack 151877 6611000036106 Venlafaxine XR (Apo) 150 mg modified release capsule, 28 3831000036107 Venlafaxine XR (Apo) 150 mg modified release capsule 56851000168105 Venlafaxine XR (Apo) 56851000168105 Venlafaxine XR (Apo) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +698221000168102 Dilart HCT 160/25 mg film-coated tablet, 28, blister pack 187400 698211000168109 Dilart HCT 160/25 mg film-coated tablet, 28 698201000168106 Dilart HCT 160/25 mg film-coated tablet 697741000168100 Dilart HCT 160/25 mg 697741000168100 Dilart HCT 160/25 mg 46963011000036104 valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 45360011000036103 valsartan 160 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +61272011000036106 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 100 mL, bottle 77790 57208011000036101 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 100 mL 54238011000036101 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 5 mL 49531000168109 Head Cold and Allergy Elixir (Terry White Chemists) 49531000168109 Head Cold and Allergy Elixir (Terry White Chemists) 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +933211991000036103 Donpesyn 10 mg film-coated tablet, 120, blister pack 142234 933201361000036107 Donpesyn 10 mg film-coated tablet, 120 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200861000036106 donepezil hydrochloride 10 mg tablet, 120 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +752241000168106 Oxycodone (Actavis) 20 mg hard capsule, 20, bottle 227831 752231000168102 Oxycodone (Actavis) 20 mg hard capsule, 20 752221000168100 Oxycodone (Actavis) 20 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +19853011000036108 Staphylex 250 mg hard capsule, 24, bottle 64494 13100011000036103 Staphylex 250 mg hard capsule, 24 6384011000036108 Staphylex 250 mg hard capsule 4347011000036100 Staphylex 4347011000036100 Staphylex 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +20412011000036100 Keppra 500 mg film-coated tablet, 60, blister pack 120509 13619011000036107 Keppra 500 mg film-coated tablet, 60 6902011000036106 Keppra 500 mg film-coated tablet 3677011000036106 Keppra 3677011000036106 Keppra 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +20412011000036100 Keppra 500 mg film-coated tablet, 60, blister pack 77560 13619011000036107 Keppra 500 mg film-coated tablet, 60 6902011000036106 Keppra 500 mg film-coated tablet 3677011000036106 Keppra 3677011000036106 Keppra 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +20654011000036102 Gonal-F Multidose (1 x 1050 units (76.44 microgram) vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 81623 13834011000036109 Gonal-F Multidose (1 x 1050 units (76.44 microgram) vial, 1 x 2 mL inert diluent syringe), 1 pack 7121011000036108 Gonal-F Multidose (follitropin alfa 1050 units (76.44 microgram)) powder for injection, 1050 units vial 1371000168105 Gonal-F 1371000168105 Gonal-F 27960011000036105 follitropin alfa 1050 units (76.44 microgram) injection [1050 units vial] (&) inert substance diluent [2 mL syringe], 1 pack 23284011000036109 follitropin alfa 1050 units (76.44 microgram) injection, 1050 units vial 21352011000036107 follitropin alfa +20654011000036102 Gonal-F Multidose (1 x 1050 units (76.44 microgram) vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 81623 13834011000036109 Gonal-F Multidose (1 x 1050 units (76.44 microgram) vial, 1 x 2 mL inert diluent syringe), 1 pack 635241000168106 Gonal-F (inert substance) diluent, 2 mL syringe 1371000168105 Gonal-F 1371000168105 Gonal-F 27960011000036105 follitropin alfa 1050 units (76.44 microgram) injection [1050 units vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +799101000168102 Accozole 2.5 mg film-coated tablet, 30, blister pack 211121 799091000168107 Accozole 2.5 mg film-coated tablet, 30 799081000168109 Accozole 2.5 mg film-coated tablet 799071000168106 Accozole 799071000168106 Accozole 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +931631000168102 Centevo 100/25/200 mg film-coated tablet, 30, bottle 238855 931621000168100 Centevo 100/25/200 mg film-coated tablet, 30 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931611000168107 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 30 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +13991000036104 Olanzapine (PS) 2.5 mg film-coated tablet, 28, blister pack 178998 7661000036105 Olanzapine (PS) 2.5 mg film-coated tablet, 28 1981000036102 Olanzapine (PS) 2.5 mg film-coated tablet 17601000168102 Olanzapine (PS) 17601000168102 Olanzapine (PS) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +86881000036102 Tisseel Duo 500 solution, 2 mL, dual chamber syringe 81929 86601000036109 Tisseel Duo 500 solution, 2 mL 86021000036108 Tisseel Duo 500 solution 85971000036101 Tisseel Duo 500 85971000036101 Tisseel Duo 500 86611000036106 aprotinin 3000 KI units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL + factor XIII 10 units/mL + fibrinogen 70 mg/mL + fibronectin 2 mg/mL + human thrombin 350 units/mL solution, 2 mL 86031000036105 aprotinin 3000 KI units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL + factor XIII 10 units/mL + fibrinogen 70 mg/mL + fibronectin 2 mg/mL + human thrombin 350 units/mL solution 91921000036102 aprotinin + calcium chloride dihydrate + factor XIII + fibrinogen + fibronectin + human thrombin +1082091000168101 Zirizine 10 mg film-coated tablet, 50, blister pack 286354 1082081000168104 Zirizine 10 mg film-coated tablet, 50 1081941000168102 Zirizine 10 mg film-coated tablet 1081921000168108 Zirizine 1081921000168108 Zirizine 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +86811000036105 Tisseel VH S/D solution, 10 mL, dual chamber syringe 147141 86431000036104 Tisseel VH S/D solution, 10 mL 85981000036104 Tisseel VH S/D solution 85961000036109 Tisseel VH S/D 85961000036109 Tisseel VH S/D 86441000036109 aprotinin 2250 KI units/mL + factor XIII 1.2 units/mL + fibrinogen 72 mg/mL + human thrombin 400 units/mL + calcium chloride dihydrate 3.96 mg (calcium 36 micromoles)/mL solution, 10 mL 85991000036102 aprotinin 2250 KI units/mL + factor XIII 1.2 units/mL + fibrinogen 72 mg/mL + human thrombin 400 units/mL + calcium chloride dihydrate 3.96 mg (calcium 36 micromoles)/mL solution 91891000036106 aprotinin + factor XIII + fibrinogen + human thrombin + calcium chloride dihydrate +1069231000168104 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 30, blister pack 197886 1069221000168102 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 30 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +792681000168109 Abisart HCT 150/12.5 film-coated tablet, 7, bottle 215943 792671000168106 Abisart HCT 150/12.5 film-coated tablet, 7 98791000036109 Abisart HCT 150/12.5 film-coated tablet 27881000168102 Abisart HCT 150/12.5 27881000168102 Abisart HCT 150/12.5 792661000168100 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 7 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +44316011000036109 Simulect (1 x 20 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 66740 41783011000036109 Simulect (1 x 20 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 647281000168106 Simulect (inert substance) diluent, 5 mL ampoule 39745011000036107 Simulect 39745011000036107 Simulect 46589011000036108 basiliximab 20 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 636941000168108 inert substance diluent, 5 mL ampoule 21220011000036103 inert substance +44316011000036109 Simulect (1 x 20 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack, composite pack 66740 41783011000036109 Simulect (1 x 20 mg vial, 1 x 5 mL inert diluent ampoule), 1 pack 40198011000036102 Simulect (basiliximab 20 mg) powder for injection, 20 mg vial 39745011000036107 Simulect 39745011000036107 Simulect 46589011000036108 basiliximab 20 mg injection [1 vial] (&) inert substance diluent [5 mL ampoule], 1 pack 45231011000036109 basiliximab 20 mg injection, vial 44959011000036102 basiliximab +1000681000168107 Flecacor 100 mg uncoated tablet, 60, blister pack 72003 1000671000168109 Flecacor 100 mg uncoated tablet, 60 1000661000168103 Flecacor 100 mg uncoated tablet 1000611000168101 Flecacor 1000611000168101 Flecacor 27642011000036102 flecainide acetate 100 mg tablet, 60 22979011000036105 flecainide acetate 100 mg tablet 21457011000036102 flecainide +726291000168103 Lophlex LQ oral liquid solution, 30 x 125 mL pouches 726281000168101 Lophlex LQ oral liquid solution, 30 x 125 mL pouches 726271000168104 Lophlex LQ oral liquid solution, 125 mL pouch 51551000168104 Lophlex LQ 51551000168104 Lophlex LQ 724241000168102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches 724221000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +933211971000036102 Donpesyn 5 mg film-coated tablet, 84, blister pack 142231 933201311000036105 Donpesyn 5 mg film-coated tablet, 84 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200821000036102 donepezil hydrochloride 5 mg tablet, 84 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +926881011000036106 Ioscan 3.705 g/10 mL oral liquid solution, 50 x 10 mL sachets 65970 926277011000036104 Ioscan 3.705 g/10 mL oral liquid solution, 50 x 10 mL sachets 925722011000036107 Ioscan 3.705 g/10 mL oral liquid solution, 10 mL sachet 925572011000036107 Ioscan 925572011000036107 Ioscan 927379011000036103 sodium amidotrizoate 3.705 g/10 mL oral liquid, 50 x 10 mL sachets 927022011000036108 sodium amidotrizoate 3.705 g/10 mL oral liquid, sachet 77441011000036100 amidotrizoic acid +43988011000036104 Ciproxin IV 200 mg/100 mL intravenous infusion injection, 100 mL vial 43099 41480011000036105 Ciproxin IV 200 mg/100 mL intravenous infusion injection, 100 mL vial 40005011000036101 Ciproxin IV 200 mg/100 mL intravenous infusion injection, 100 mL vial 31831000168107 Ciproxin IV 31831000168107 Ciproxin IV 46326011000036107 ciprofloxacin 200 mg/100 mL injection, 100 mL vial 45081011000036109 ciprofloxacin 200 mg/100 mL injection, vial 21245011000036105 ciprofloxacin +104041000036101 Donepezil Hydrochloride (Terry White Chemists) 5 mg film-coated tablet, 28, blister pack 168329 101501000036109 Donepezil Hydrochloride (Terry White Chemists) 5 mg film-coated tablet, 28 99181000036102 Donepezil Hydrochloride (Terry White Chemists) 5 mg film-coated tablet 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +104041000036101 Donepezil Hydrochloride (Terry White Chemists) 5 mg film-coated tablet, 28, blister pack 213499 101501000036109 Donepezil Hydrochloride (Terry White Chemists) 5 mg film-coated tablet, 28 99181000036102 Donepezil Hydrochloride (Terry White Chemists) 5 mg film-coated tablet 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 98071000036107 Donepezil Hydrochloride (Terry White Chemists) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +725651000168103 PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 725641000168100 PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 725631000168109 PKU Cooler 15 Orange oral liquid solution, 130 mL pouch 8661000168102 PKU Cooler 15 8661000168102 PKU Cooler 15 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +832941000168103 PKU Anamix First Spoon powder for oral liquid, 30 x 12.5 g sachets 832931000168107 PKU Anamix First Spoon powder for oral liquid, 30 x 12.5 g sachets 832911000168102 PKU Anamix First Spoon powder for oral liquid, 12.5 g sachet 832881000168102 PKU Anamix First Spoon 832881000168102 PKU Anamix First Spoon 832921000168109 amino acid formula with vitamins and minerals, low phenylalanine and supplemented with docosahexaenoic acid and arachidonic acid powder for oral liquid, 30 x 12.5 g sachets 832901000168100 amino acid formula with vitamins and minerals, low phenylalanine and supplemented with docosahexaenoic acid and arachidonic acid powder for oral liquid, 12.5 g sachet 832891000168104 amino acid formula with vitamins and minerals, low phenylalanine and supplemented with docosahexaenoic acid and arachidonic acid +925279011000036108 Invega Sustenna 100 mg modified release injection, 1 syringe 160860 924816011000036105 Invega Sustenna 100 mg modified release injection, 1 syringe 924510011000036106 Invega Sustenna 100 mg modified release injection, syringe 26461000168105 Invega Sustenna 26461000168105 Invega Sustenna 925422011000036103 paliperidone 100 mg modified release injection, 1 syringe 925380011000036104 paliperidone 100 mg modified release injection, syringe 34837011000036104 paliperidone +829331000168101 Metex XR-1000 1 g modified release tablet, 60, blister pack 232639 829321000168104 Metex XR-1000 1 g modified release tablet, 60 829281000168109 Metex XR-1000 1 g modified release tablet 829271000168106 Metex XR-1000 829271000168106 Metex XR-1000 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +69505011000036107 Paroven Forte 500 mg uncoated tablet, 60, blister pack 52171 67305011000036102 Paroven Forte 500 mg uncoated tablet, 60 65600011000036101 Paroven Forte 500 mg uncoated tablet 38101000168101 Paroven Forte 38101000168101 Paroven Forte 71851011000036107 oxerutins 500 mg tablet, 60 70214011000036102 oxerutins 500 mg tablet 69757011000036108 oxerutins +835821000168106 Prodeine Forte uncoated tablet, 20, blister pack 93865 835811000168104 Prodeine Forte uncoated tablet, 20 835801000168102 Prodeine Forte uncoated tablet 63481000168103 Prodeine Forte 63481000168103 Prodeine Forte 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +933215991000036100 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application, 25 mL, bottle 56433 933205361000036109 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application, 25 mL 933196571000036102 Tea Tree Oil Antiseptic (Coraki) 1 mL/mL application 7061000168108 Tea Tree Oil Antiseptic (Coraki) 7061000168108 Tea Tree Oil Antiseptic (Coraki) 933205371000036101 melaleuca oil 1 mL/mL application, 25 mL 933196581000036100 melaleuca oil 1 mL/mL application 933216381000036109 melaleuca oil +1111631000168106 Clopithromb 75 mg film-coated tablet, 280, blister pack 187040 1111621000168108 Clopithromb 75 mg film-coated tablet, 280 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 1111611000168101 clopidogrel 75 mg tablet, 280 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1066261000168104 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 15, blister pack 161544 1066251000168101 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 15 1066211000168102 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 652991000168103 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 15 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +907841000168108 Celecoxib (Generic Health) 200 mg hard capsule, 20, blister pack 196183 907831000168104 Celecoxib (Generic Health) 200 mg hard capsule, 20 907781000168107 Celecoxib (Generic Health) 200 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 745881000168106 celecoxib 200 mg capsule, 20 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +60321011000036103 Cetrelief (Generic Health) 10 mg film-coated tablet, 30, blister pack 138826 56280011000036103 Cetrelief (Generic Health) 10 mg film-coated tablet, 30 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +34753011000036105 Sublimaze 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 48264 34334011000036107 Sublimaze 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 34048011000036100 Sublimaze 500 microgram/10 mL injection solution, 10 mL ampoule 33934011000036100 Sublimaze 33934011000036100 Sublimaze 35182011000036108 fentanyl 500 microgram/10 mL injection, 5 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +698261000168107 Levetiracetam IV (Hospira) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 211468 698251000168105 Levetiracetam IV (Hospira) 500 mg/5 mL concentrated injection, 10 x 5 mL vials 698241000168108 Levetiracetam IV (Hospira) 500 mg/5 mL concentrated injection, 5 mL vial 698231000168104 Levetiracetam IV (Hospira) 698231000168104 Levetiracetam IV (Hospira) 120611000036108 levetiracetam 500 mg/5 mL injection, 10 x 5 mL vials 45019011000036106 levetiracetam 500 mg/5 mL injection, vial 21766011000036102 levetiracetam +17906011000036105 Vepesid 100 mg capsule, 10, blister pack 10234 11255011000036109 Vepesid 100 mg capsule, 10 5604011000036100 Vepesid 100 mg capsule 3683011000036107 Vepesid 3683011000036107 Vepesid 26572011000036109 etoposide 100 mg capsule, 10 21980011000036109 etoposide 100 mg capsule 21469011000036104 etoposide +61088011000036106 Dermaid 1% cream, 15 g, tube 70706 57031011000036109 Dermaid 1% cream, 15 g 54165011000036103 Dermaid 1% cream 30751000168101 Dermaid 30751000168101 Dermaid 63705011000036105 hydrocortisone 1% cream, 15 g 22015011000036108 hydrocortisone 1% cream 21681011000036103 hydrocortisone +920730011000036103 Memantine (Apo) 10 mg film-coated tablet, 1000, bottle 159576 920417011000036104 Memantine (Apo) 10 mg film-coated tablet, 1000 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 920858011000036102 memantine hydrochloride 10 mg tablet, 1000 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +1072771000168105 Pantoprazole (Generic Health) 40 mg enteric tablet, 56, blister pack 191033 1072761000168104 Pantoprazole (Generic Health) 40 mg enteric tablet, 56 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46661011000036101 pantoprazole 40 mg enteric tablet, 56 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +60846011000036107 Aspro Clear 300 mg effervescent tablet, 60, strip pack 58566 56802011000036108 Aspro Clear 300 mg effervescent tablet, 60 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 63579011000036104 aspirin 300 mg effervescent tablet, 60 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +103881000036100 Donepezil Hydrochloride (Stada) 5 mg film-coated tablet, 28, blister pack 167191 101241000036109 Donepezil Hydrochloride (Stada) 5 mg film-coated tablet, 28 98421000036101 Donepezil Hydrochloride (Stada) 5 mg film-coated tablet 97801000036109 Donepezil Hydrochloride (Stada) 97801000036109 Donepezil Hydrochloride (Stada) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +50602011000036108 Proviron 25 mg uncoated tablet, 50, blister pack 136196 36635011000036107 Proviron 25 mg uncoated tablet, 50 36188011000036109 Proviron 25 mg uncoated tablet 35984011000036102 Proviron 35984011000036102 Proviron 38555011000036108 mesterolone 25 mg tablet, 50 37834011000036101 mesterolone 25 mg tablet 37717011000036102 mesterolone +79046011000036106 Bispro 2.5 mg film-coated tablet, 7, blister pack 130178 78790011000036101 Bispro 2.5 mg film-coated tablet, 7 78625011000036108 Bispro 2.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79206011000036106 bisoprolol fumarate 2.5 mg tablet, 7 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +835861000168101 Panadeine Forte uncoated tablet, 50, blister pack 73507 835851000168103 Panadeine Forte uncoated tablet, 50 835831000168109 Panadeine Forte uncoated tablet 34821000168106 Panadeine Forte 34821000168106 Panadeine Forte 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +665841000168104 Pedoz Anti-Fungal dusting powder, 375 g, bottle 14840 665831000168108 Pedoz Anti-Fungal dusting powder, 375 g 665781000168100 Pedoz Anti-Fungal dusting powder 664451000168104 Pedoz Anti-Fungal 664451000168104 Pedoz Anti-Fungal 665821000168105 3,4,5,6-tetrabromo-ortho-cresol 1% + zinc undecenoate 5% + undecenoic acid 1% + zinc oxide 5% dusting powder, 375 g 665771000168103 3,4,5,6-tetrabromo-ortho-cresol 1% + zinc undecenoate 5% + undecenoic acid 1% + zinc oxide 5% dusting powder 664561000168101 3,4,5,6-tetrabromo-ortho-cresol + zinc undecenoate + undecenoic acid + zinc oxide +1074941000168105 Atenolol (RBX) 100 mg film-coated tablet, 50, blister pack 197761 1074931000168101 Atenolol (RBX) 100 mg film-coated tablet, 50 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1031891000168109 atenolol 100 mg tablet, 50 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +928954011000036102 Anastrozole (DP) 1 mg film-coated tablet, 30, blister pack 155679 928315011000036101 Anastrozole (DP) 1 mg film-coated tablet, 30 927944011000036106 Anastrozole (DP) 1 mg film-coated tablet 927791011000036108 Anastrozole (DP) 927791011000036108 Anastrozole (DP) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +19174011000036100 Imdur 60 mg modified release tablet, 30, blister pack 46390 12472011000036104 Imdur 60 mg modified release tablet, 30 4482011000036101 Imdur 60 mg modified release tablet 27171000168107 Imdur 27171000168107 Imdur 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +976961000168108 Pregabalin (Apotex) 50 mg hard capsule, 60, blister pack 267553 976951000168106 Pregabalin (Apotex) 50 mg hard capsule, 60 976881000168105 Pregabalin (Apotex) 50 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +68779011000036101 Metsal cream, 500 g, jar 10571 66511011000036100 Metsal cream, 500 g 65330011000036103 Metsal cream 65146011000036109 Metsal 65146011000036109 Metsal 71243011000036101 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream, 500 g 69915011000036102 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream 69781011000036105 eucalyptus oil + menthol liquid + methyl salicylate +775361000168109 Diprosone 0.05% cream, 2 g, tube 18818 775351000168107 Diprosone 0.05% cream, 2 g 5366011000036104 Diprosone 0.05% cream 10951000168106 Diprosone 10951000168106 Diprosone 775341000168105 betamethasone (as dipropionate) 0.05% cream, 2 g 22453011000036107 betamethasone (as dipropionate) 0.05% cream 21372011000036109 betamethasone dipropionate +933216311000036101 Glucose (B Braun) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bottle 98318 933206071000036108 Glucose (B Braun) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bottle 933196901000036100 Glucose (B Braun) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bottle 78600011000036108 Glucose (B Braun) 78600011000036108 Glucose (B Braun) 933206081000036105 glucose 5% (5 g/100 mL) injection, 100 mL bottle 933196911000036103 glucose 5% (5 g/100 mL) injection, bottle 21354011000036103 glucose +43637011000036109 Enbrel 25 mg/0.5 mL injection solution, 4 x 0.5 mL syringes 124421 41313011000036108 Enbrel 25 mg/0.5 mL injection solution, 4 x 0.5 mL syringes 39953011000036100 Enbrel 25 mg/0.5 mL injection solution, 0.5 mL syringe 25701000168107 Enbrel 25701000168107 Enbrel 46239011000036106 etanercept 25 mg/0.5 mL injection, 4 x 0.5 mL syringes 45042011000036108 etanercept 25 mg/0.5 mL injection, syringe 21347011000036107 etanercept +20153011000036103 Moclobemide (Terry White Chemists) 150 mg film-coated tablet, 60, blister pack 73828 13376011000036100 Moclobemide (Terry White Chemists) 150 mg film-coated tablet, 60 6661011000036100 Moclobemide (Terry White Chemists) 150 mg film-coated tablet 4080011000036107 Moclobemide (Terry White Chemists) 4080011000036107 Moclobemide (Terry White Chemists) 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +60212011000036105 Bisolvon Chesty Forte 8 mg/5 mL oral liquid solution, 200 mL, bottle 133204 56171011000036104 Bisolvon Chesty Forte 8 mg/5 mL oral liquid solution, 200 mL 53820011000036107 Bisolvon Chesty Forte 8 mg/5 mL oral liquid solution, 5 mL 13191000168108 Bisolvon Chesty Forte 13191000168108 Bisolvon Chesty Forte 63250011000036101 bromhexine hydrochloride 8 mg/5 mL oral liquid, 200 mL 61902011000036102 bromhexine hydrochloride 8 mg/5 mL oral liquid 61780011000036106 bromhexine +13901000036107 Sequase 25 mg film-coated tablet, 60, blister pack 178485 7561000036106 Sequase 25 mg film-coated tablet, 60 2641000036106 Sequase 25 mg film-coated tablet 481000036106 Sequase 481000036106 Sequase 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +766541000168104 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, 2 x 1 mL syringes 67145 766531000168108 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, 2 x 1 mL syringes 766511000168103 Fraxiparine Forte 19 000 anti-Xa units/mL injection solution, syringe 766171000168102 Fraxiparine Forte 766171000168102 Fraxiparine Forte 766521000168105 nadroparin calcium 19 000 anti-Xa units/mL injection, 2 x 1 mL syringes 766501000168101 nadroparin calcium 19 000 anti-Xa units/mL injection, syringe 765071000168107 nadroparin +50619011000036101 Seroquel XR 300 mg modified release tablet, 100, blister pack 138921 49645011000036100 Seroquel XR 300 mg modified release tablet, 100 48797011000036108 Seroquel XR 300 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51536011000036100 quetiapine 300 mg modified release tablet, 100 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +61013011000036103 Nurofen Cold and Flu with Decongestant film-coated tablet, 48, blister pack 65640 56956011000036109 Nurofen Cold and Flu with Decongestant film-coated tablet, 48 54138011000036104 Nurofen Cold and Flu with Decongestant film-coated tablet 49471000168108 Nurofen Cold and Flu with Decongestant 49471000168108 Nurofen Cold and Flu with Decongestant 63655011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet, 48 52812011000036107 ibuprofen 200 mg + pseudoephedrine hydrochloride 30 mg tablet 52801011000036103 ibuprofen + pseudoephedrine +755851000168101 Vttack 200 mg film-coated tablet, 50, blister pack 206985 755841000168103 Vttack 200 mg film-coated tablet, 50 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46809011000036108 voriconazole 200 mg tablet, 50 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +18793011000036102 Vincristine Sulfate (Pfizer (Perth)) 1 mg/mL injection solution, 5 x 1 mL vials 10828 11388011000036103 Vincristine Sulfate (Pfizer (Perth)) 1 mg/mL injection solution, 5 x 1 mL vials 5972011000036100 Vincristine Sulfate (Pfizer (Perth)) 1 mg/mL injection solution, vial 3033011000036109 Vincristine Sulfate (Pfizer (Perth)) 3033011000036109 Vincristine Sulfate (Pfizer (Perth)) 26911011000036101 vincristine sulfate 1 mg/mL injection, 5 x 1 mL vials 22288011000036106 vincristine sulfate 1 mg/mL injection, vial 21749011000036104 vincristine +837231000168101 Ibuprofen and Codeine (Blooms The Chemist) film-coated tablet, 20, blister pack 200418 837221000168104 Ibuprofen and Codeine (Blooms The Chemist) film-coated tablet, 20 837211000168106 Ibuprofen and Codeine (Blooms The Chemist) film-coated tablet 837201000168108 Ibuprofen and Codeine (Blooms The Chemist) 837201000168108 Ibuprofen and Codeine (Blooms The Chemist) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +735031000168101 Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL, bottle 42757 735021000168104 Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL 735011000168106 Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution 735001000168108 Lanoxin Paediatric Elixir 735001000168108 Lanoxin Paediatric Elixir 27098011000036100 digoxin 50 microgram/mL oral liquid, 60 mL 22466011000036109 digoxin 50 microgram/mL oral liquid 21696011000036109 digoxin +908521000168101 Celecoxib (Lup) 200 mg hard capsule, 60, blister pack 196189 908511000168108 Celecoxib (Lup) 200 mg hard capsule, 60 908421000168100 Celecoxib (Lup) 200 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +907881000168103 Celecoxib (Generic Health) 200 mg hard capsule, 30, blister pack 196183 907871000168101 Celecoxib (Generic Health) 200 mg hard capsule, 30 907781000168107 Celecoxib (Generic Health) 200 mg hard capsule 907721000168108 Celecoxib (Generic Health) 907721000168108 Celecoxib (Generic Health) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +742971000168106 Morphine MR (AN) 30 mg modified release tablet, 20, blister pack 225426 742961000168100 Morphine MR (AN) 30 mg modified release tablet, 20 742931000168108 Morphine MR (AN) 30 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 27107011000036109 morphine sulfate pentahydrate 30 mg modified release tablet, 20 22475011000036106 morphine sulfate pentahydrate 30 mg modified release tablet 21252011000036100 morphine +13911000036109 Sequase 100 mg film-coated tablet, 90, blister pack 178486 7571000036103 Sequase 100 mg film-coated tablet, 90 2661000036107 Sequase 100 mg film-coated tablet 481000036106 Sequase 481000036106 Sequase 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +19928011000036108 Natrilix SR 1.5 mg modified release tablet, 90, blister pack 66849 13172011000036107 Natrilix SR 1.5 mg modified release tablet, 90 6455011000036106 Natrilix SR 1.5 mg modified release tablet 47361000168100 Natrilix SR 47361000168100 Natrilix SR 27590011000036104 indapamide hemihydrate 1.5 mg modified release tablet, 90 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +926898011000036101 Resolve Plus 0.5% / 2% cream, 30 g, tube 75602 926294011000036102 Resolve Plus 0.5% / 2% cream, 30 g 925738011000036108 Resolve Plus 0.5% / 2% cream 60531000168105 Resolve Plus 0.5% / 2% 60531000168105 Resolve Plus 0.5% / 2% 927390011000036102 hydrocortisone 0.5% + miconazole nitrate 2% cream, 30 g 927031011000036100 hydrocortisone 0.5% + miconazole nitrate 2% cream 61804011000036102 hydrocortisone + miconazole +931490011000036108 Topiramate (LAPL) 50 mg film-coated tablet, 60, blister pack 155193 928302011000036106 Topiramate (LAPL) 50 mg film-coated tablet, 60 927931011000036107 Topiramate (LAPL) 50 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +841531000168107 Atorvastatin (Amneal) 10 mg film-coated tablet, 20, blister pack 178535 841521000168109 Atorvastatin (Amneal) 10 mg film-coated tablet, 20 841481000168109 Atorvastatin (Amneal) 10 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841511000168102 atorvastatin 10 mg tablet, 20 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1000031000168100 Pantoprazole Heartburn Relief (Apohealth) 20 mg enteric tablet, 7, blister pack 229698 1000021000168103 Pantoprazole Heartburn Relief (Apohealth) 20 mg enteric tablet, 7 1000011000168105 Pantoprazole Heartburn Relief (Apohealth) 20 mg enteric tablet 999971000168101 Pantoprazole Heartburn Relief (Apohealth) 999971000168101 Pantoprazole Heartburn Relief (Apohealth) 924214011000036106 pantoprazole 20 mg enteric tablet, 7 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +50377011000036106 On-Call Plus diagnostic strip, 25, bottle 49522011000036101 On-Call Plus diagnostic strip, 25 48706011000036108 On-Call Plus diagnostic strip 48439011000036104 On-Call Plus 48439011000036104 On-Call Plus 51469011000036109 glucose indicator blood diagnostic strip, 25 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +724281000168107 PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches 724261000168103 PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches 724231000168106 PKU Lophlex LQ 20 Orange oral liquid solution, 125 mL pouch 56151000168104 PKU Lophlex LQ 20 56151000168104 PKU Lophlex LQ 20 724241000168102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches 724221000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +908481000168101 Celecoxib (Lup) 200 mg hard capsule, 30, blister pack 196189 908471000168104 Celecoxib (Lup) 200 mg hard capsule, 30 908421000168100 Celecoxib (Lup) 200 mg hard capsule 908391000168107 Celecoxib (Lup) 908391000168107 Celecoxib (Lup) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +43682011000036101 Gabaran 800 mg film-coated tablet, 100, bottle 121844 41265011000036100 Gabaran 800 mg film-coated tablet, 100 4651011000036104 Gabaran 800 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +69747011000036106 Ibuprofen Blue Tabsule (Herron) 200 mg film-coated tablet, 24, blister pack 98574 67546011000036104 Ibuprofen Blue Tabsule (Herron) 200 mg film-coated tablet, 24 65696011000036101 Ibuprofen Blue Tabsule (Herron) 200 mg film-coated tablet 8771000168104 Ibuprofen Blue Tabsule (Herron) 8771000168104 Ibuprofen Blue Tabsule (Herron) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +18390011000036109 Retrovir 100 mg capsule, 100, bottle 10969 11394011000036109 Retrovir 100 mg capsule, 100 4714011000036101 Retrovir 100 mg capsule 3895011000036100 Retrovir 3895011000036100 Retrovir 26631011000036106 zidovudine 100 mg capsule, 100 22037011000036105 zidovudine 100 mg capsule 21429011000036108 zidovudine +18390011000036109 Retrovir 100 mg capsule, 100, bottle 178834 11394011000036109 Retrovir 100 mg capsule, 100 4714011000036101 Retrovir 100 mg capsule 3895011000036100 Retrovir 3895011000036100 Retrovir 26631011000036106 zidovudine 100 mg capsule, 100 22037011000036105 zidovudine 100 mg capsule 21429011000036108 zidovudine +21121011000036108 Cholstat 10 mg uncoated tablet, 30, blister pack 98486 14264011000036105 Cholstat 10 mg uncoated tablet, 30 7550011000036106 Cholstat 10 mg uncoated tablet 3920011000036105 Cholstat 3920011000036105 Cholstat 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +18241000036109 Vascalace 10 mg uncoated tablet, 30, bottle 175240 16801000036106 Vascalace 10 mg uncoated tablet, 30 15351000036108 Vascalace 10 mg uncoated tablet 15171000036101 Vascalace 15171000036101 Vascalace 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +1000121000168102 Levonorgestrel-1 (Apo) 1.5 mg uncoated tablet, 1, blister pack 231506 1000111000168109 Levonorgestrel-1 (Apo) 1.5 mg uncoated tablet, 1 1000101000168106 Levonorgestrel-1 (Apo) 1.5 mg uncoated tablet 1000091000168101 Levonorgestrel-1 (Apo) 1000091000168101 Levonorgestrel-1 (Apo) 63349011000036102 levonorgestrel 1.5 mg tablet, 1 61924011000036100 levonorgestrel 1.5 mg tablet 21391011000036105 levonorgestrel +1069071000168106 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 24, blister pack 196531 1069061000168100 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 24 1068991000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +11811000036100 Olanzapine (Sandoz) 10 mg film-coated tablet, 28, blister pack 148451 6551000036106 Olanzapine (Sandoz) 10 mg film-coated tablet, 28 3661000036100 Olanzapine (Sandoz) 10 mg film-coated tablet 1151000036106 Olanzapine (Sandoz) 1151000036106 Olanzapine (Sandoz) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +83413011000036100 Maxalt 10 mg wafer, 2, blister pack 69076 83331011000036104 Maxalt 10 mg wafer, 2 83260011000036105 Maxalt 10 mg wafer 83225011000036106 Maxalt 83225011000036106 Maxalt 83498011000036109 rizatriptan 10 mg wafer, 2 83438011000036101 rizatriptan 10 mg wafer 83422011000036102 rizatriptan +925356011000036106 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 1 L, pump pack 172237 924892011000036105 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 1 L 924537011000036100 Antimicrobial Hand Gel (Sunnywipes) 70% gel 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 925446011000036102 ethanol 70% gel, 1 L 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +43729011000036108 Somac 40 mg powder for injection, 1 vial 121427 41251011000036109 Somac 40 mg powder for injection, 1 vial 39799011000036100 Somac 40 mg powder for injection, 40 mg vial 10171000168100 Somac 10171000168100 Somac 46192011000036106 pantoprazole 40 mg injection, 1 vial 45023011000036104 pantoprazole 40 mg injection, vial 21563011000036107 pantoprazole +52705011000036104 Paracetamol Extra Plus (Guardian) uncoated tablet, 24, blister pack 114674 52521011000036107 Paracetamol Extra Plus (Guardian) uncoated tablet, 24 52403011000036109 Paracetamol Extra Plus (Guardian) uncoated tablet 52380011000036108 Paracetamol Extra Plus (Guardian) 52380011000036108 Paracetamol Extra Plus (Guardian) 52866011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 24 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +874081000168100 Telmisartan HCT 80/25mg (Alem) multilayer tablet, 28, blister pack 246497 874071000168103 Telmisartan HCT 80/25mg (Alem) multilayer tablet, 28 874061000168109 Telmisartan HCT 80/25mg (Alem) multilayer tablet 874051000168107 Telmisartan HCT 80/25mg (Alem) 874051000168107 Telmisartan HCT 80/25mg (Alem) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +82381000036105 Parzol 10 mg enteric tablet, 28, blister pack 189762 80351000036102 Parzol 10 mg enteric tablet, 28 78431000036109 Parzol 10 mg enteric tablet 78041000036108 Parzol 78041000036108 Parzol 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +933216151000036104 Salofalk 2 g/30 mL enema, 7 x 30 mL, bottle 80651 933205781000036103 Salofalk 2 g/30 mL enema, 7 x 30 mL 933196771000036106 Salofalk 2 g/30 mL enema, 30 mL 12771000168100 Salofalk 12771000168100 Salofalk 933205791000036101 mesalazine 2 g/30 mL enema, 7 x 30 mL 933196781000036108 mesalazine 2 g/30 mL enema 21351011000036101 mesalazine +839521000168106 Advantan 0.1% fatty ointment, 50 g, tube 49382 839511000168104 Advantan 0.1% fatty ointment, 50 g 4508011000036106 Advantan 0.1% fatty ointment 3513011000036101 Advantan 3513011000036101 Advantan 839501000168102 methylprednisolone aceponate 0.1% fatty ointment, 50 g 124361000036108 methylprednisolone aceponate 0.1% fatty ointment 21605011000036100 methylprednisolone +1066901000168106 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet, 20, blister pack 169108 1066891000168107 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet, 20 85386011000036106 Ibuprofen plus Codeine (Pharmacy Health) film-coated tablet 85277011000036106 Ibuprofen plus Codeine (Pharmacy Health) 85277011000036106 Ibuprofen plus Codeine (Pharmacy Health) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +20637011000036107 O.R.S. (Aspen) powder for oral liquid, 10 x 4.9 g sachets 81381 13817011000036105 O.R.S. (Aspen) powder for oral liquid, 10 x 4.9 g sachets 7103011000036102 O.R.S. (Aspen) powder for oral liquid, 4.9 g sachet 32189011000036100 O.R.S. (Aspen) 32189011000036100 O.R.S. (Aspen) 28137011000036109 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 23446011000036105 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +20804011000036101 Lisinopril (Hexal) 5 mg uncoated tablet, 30, blister pack 91384 13970011000036105 Lisinopril (Hexal) 5 mg uncoated tablet, 30 7256011000036101 Lisinopril (Hexal) 5 mg uncoated tablet 3611011000036109 Lisinopril (Hexal) 3611011000036109 Lisinopril (Hexal) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +69038011000036105 Panadol Back and Neck Pain Relief 500 mg film-coated tablet, 10, blister pack 141412 66840011000036104 Panadol Back and Neck Pain Relief 500 mg film-coated tablet, 10 65331011000036105 Panadol Back and Neck Pain Relief 500 mg film-coated tablet 5221000168100 Panadol Back and Neck Pain Relief 5221000168100 Panadol Back and Neck Pain Relief 46257011000036103 paracetamol 500 mg tablet, 10 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +45971000036109 Ramipril (Apo) 5 mg capsule, 30, blister pack 179028 43251000036105 Ramipril (Apo) 5 mg capsule, 30 41421000036104 Ramipril (Apo) 5 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +833581000168108 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 833571000168105 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 833551000168101 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension 663071000168101 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) 663071000168101 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) 833561000168104 magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 833541000168103 magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 870941000168102 magnesium trisilicate + belladonna tincture + magnesium carbonate + bicarbonate +858741000168100 Amidep 50 mg film-coated tablet, 100, blister pack 215347 858731000168109 Amidep 50 mg film-coated tablet, 100 858681000168100 Amidep 50 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +997941000168101 Imatinib (Apo) 400 mg film-coated tablet, 30, bottle 196035 997931000168105 Imatinib (Apo) 400 mg film-coated tablet, 30 997921000168107 Imatinib (Apo) 400 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 28143011000036104 imatinib 400 mg tablet, 30 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +751511000168101 Caldolor 400 mg/4 mL concentrated injection, 10 x 4 mL vials 175190 751501000168104 Caldolor 400 mg/4 mL concentrated injection, 10 x 4 mL vials 751481000168108 Caldolor 400 mg/4 mL concentrated injection, 4 mL vial 751401000168100 Caldolor 751401000168100 Caldolor 751491000168106 ibuprofen 400 mg/4 mL injection, 10 x 4 mL vials 751471000168105 ibuprofen 400 mg/4 mL injection, vial 21885011000036105 ibuprofen +837191000168105 Cold and Flu Relief (Pharmacy Action) uncoated tablet, 24, blister pack 203095 837181000168107 Cold and Flu Relief (Pharmacy Action) uncoated tablet, 24 837171000168109 Cold and Flu Relief (Pharmacy Action) uncoated tablet 837161000168103 Cold and Flu Relief (Pharmacy Action) 837161000168103 Cold and Flu Relief (Pharmacy Action) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +732781000168108 Benadryl Original oral liquid solution, 200 mL, bottle 199371 732771000168105 Benadryl Original oral liquid solution, 200 mL 732721000168109 Benadryl Original oral liquid solution 732691000168100 Benadryl Original 732691000168100 Benadryl Original 732761000168104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL oral liquid, 200 mL 732711000168102 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL oral liquid 732701000168100 diphenhydramine + ammonium chloride +60062011000036104 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 500 mL, bottle 124631 56024011000036106 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 500 mL 53761011000036108 Paracetamol 1 to 5 Years (Priceline) colour free 120 mg/5 mL oral liquid suspension, 5 mL 35851000168104 Paracetamol 1 to 5 Years (Priceline) 35851000168104 Paracetamol 1 to 5 Years (Priceline) 63818011000036104 paracetamol 120 mg/5 mL oral liquid, 500 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1006381000168103 Omeprazole (Apo) 20 mg enteric tablet, 5, blister pack 243812 1006371000168101 Omeprazole (Apo) 20 mg enteric tablet, 5 65230011000036105 Omeprazole (Apo) 20 mg enteric tablet 5851000168107 Omeprazole (Apo) 5851000168107 Omeprazole (Apo) 79831011000036103 omeprazole 20 mg enteric tablet, 5 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +12131000036106 Clopidogrel (PS) 75 mg film-coated tablet, 28, blister pack 162329 7271000036100 Clopidogrel (PS) 75 mg film-coated tablet, 28 3801000036100 Clopidogrel (PS) 75 mg film-coated tablet 821000036108 Clopidogrel (PS) 821000036108 Clopidogrel (PS) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +807851000168104 Irbesartan (Apo) 300 mg film-coated tablet, 30, bottle 169800 807811000168100 Irbesartan (Apo) 300 mg film-coated tablet, 30 807801000168103 Irbesartan (Apo) 300 mg film-coated tablet 97951000036104 Irbesartan (Apo) 97951000036104 Irbesartan (Apo) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +1100741000168103 Azafuridine 100 mg powder for injection, 1 vial 227799 1100731000168107 Azafuridine 100 mg powder for injection, 1 vial 1100721000168109 Azafuridine 100 mg powder for injection, 100 mg vial 1100691000168100 Azafuridine 1100691000168100 Azafuridine 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +734391000168103 Ribavirin (Abbvie) 600 mg film-coated tablet, 56, bottle 734381000168101 Ribavirin (Abbvie) 600 mg film-coated tablet, 56 734361000168105 Ribavirin (Abbvie) 600 mg film-coated tablet 733611000168103 Ribavirin (Abbvie) 733611000168103 Ribavirin (Abbvie) 734371000168104 ribavirin 600 mg tablet, 56 734351000168108 ribavirin 600 mg tablet 21714011000036106 ribavirin +928937011000036107 Topiramate (LAPL) 100 mg film-coated tablet, 60, bottle 155181 928298011000036101 Topiramate (LAPL) 100 mg film-coated tablet, 60 927927011000036102 Topiramate (LAPL) 100 mg film-coated tablet 927805011000036105 Topiramate (LAPL) 927805011000036105 Topiramate (LAPL) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +835701000168109 Prodeine 15 uncoated tablet, 20, blister pack 68405 835691000168109 Prodeine 15 uncoated tablet, 20 835681000168106 Prodeine 15 uncoated tablet 2241000168102 Prodeine 15 2241000168102 Prodeine 15 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +835701000168109 Prodeine 15 uncoated tablet, 20, blister pack 153884 835691000168109 Prodeine 15 uncoated tablet, 20 835681000168106 Prodeine 15 uncoated tablet 2241000168102 Prodeine 15 2241000168102 Prodeine 15 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +871351000168107 Indapamide SR (AN) 1.5 mg modified release tablet, 90, blister pack 208008 871341000168105 Indapamide SR (AN) 1.5 mg modified release tablet, 90 871291000168107 Indapamide SR (AN) 1.5 mg modified release tablet 871091000168100 Indapamide SR (AN) 871091000168100 Indapamide SR (AN) 27590011000036104 indapamide hemihydrate 1.5 mg modified release tablet, 90 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +55521000036103 Anastrozole (AU) 1 mg film-coated tablet, 56, blister pack 155174 52141000036109 Anastrozole (AU) 1 mg film-coated tablet, 56 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52161000036105 anastrozole 1 mg tablet, 56 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +933071011000036108 Tramadol Hydrochloride SR (Apo) 100 mg modified release tablet, 20, blister pack 154393 932868011000036102 Tramadol Hydrochloride SR (Apo) 100 mg modified release tablet, 20 932729011000036103 Tramadol Hydrochloride SR (Apo) 100 mg modified release tablet 20051000168101 Tramadol Hydrochloride SR (Apo) 20051000168101 Tramadol Hydrochloride SR (Apo) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +891761000168101 Bicor 7.5 mg film-coated tablet, 30, blister pack 81607 891751000168103 Bicor 7.5 mg film-coated tablet, 30 891701000168102 Bicor 7.5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 874371000168100 bisoprolol fumarate 7.5 mg tablet, 30 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +841441000168104 Atorvastatin (Amneal) 20 mg film-coated tablet, 40, blister pack 178524 841431000168108 Atorvastatin (Amneal) 20 mg film-coated tablet, 40 841341000168106 Atorvastatin (Amneal) 20 mg film-coated tablet 841331000168102 Atorvastatin (Amneal) 841331000168102 Atorvastatin (Amneal) 841421000168105 atorvastatin 20 mg tablet, 40 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1019941000168104 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 56, blister pack 175199 1019931000168108 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 56 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019921000168105 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 56 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +37425011000036108 Indopril 2 mg uncoated tablet, 30, blister pack 125451 36717011000036101 Indopril 2 mg uncoated tablet, 30 36069011000036109 Indopril 2 mg uncoated tablet 35995011000036104 Indopril 35995011000036104 Indopril 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +37425011000036108 Indopril 2 mg uncoated tablet, 30, blister pack 121625 36717011000036101 Indopril 2 mg uncoated tablet, 30 36069011000036109 Indopril 2 mg uncoated tablet 35995011000036104 Indopril 35995011000036104 Indopril 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +20017011000036106 Dinac 25 mg enteric tablet, 50, blister pack 68940 13253011000036101 Dinac 25 mg enteric tablet, 50 6535011000036100 Dinac 25 mg enteric tablet 4054011000036108 Dinac 4054011000036108 Dinac 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +60067011000036102 Bisolvon Chesty 8 mg uncoated tablet, 100, blister pack 17915 56029011000036107 Bisolvon Chesty 8 mg uncoated tablet, 100 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63197011000036105 bromhexine hydrochloride 8 mg tablet, 100 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +60067011000036102 Bisolvon Chesty 8 mg uncoated tablet, 100, blister pack 125375 56029011000036107 Bisolvon Chesty 8 mg uncoated tablet, 100 53764011000036106 Bisolvon Chesty 8 mg uncoated tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 63197011000036105 bromhexine hydrochloride 8 mg tablet, 100 61885011000036104 bromhexine hydrochloride 8 mg tablet 61780011000036106 bromhexine +19932011000036108 Ziagen 300 mg film-coated tablet, 60, blister pack 66878 13176011000036106 Ziagen 300 mg film-coated tablet, 60 6459011000036108 Ziagen 300 mg film-coated tablet 3344011000036108 Ziagen 3344011000036108 Ziagen 27594011000036109 abacavir 300 mg tablet, 60 22933011000036105 abacavir 300 mg tablet 21664011000036103 abacavir +69723011000036100 Aerius 5 mg film-coated tablet, 28, blister pack 91116 67522011000036100 Aerius 5 mg film-coated tablet, 28 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72024011000036109 desloratadine 5 mg tablet, 28 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +974951000168101 Puregon 150 units/0.18 mL injection solution, 0.18 mL cartridge 116842 974941000168103 Puregon 150 units/0.18 mL injection solution, 0.18 mL cartridge 974921000168109 Puregon 150 units/0.18 mL injection solution, 0.18 mL cartridge 2961011000036103 Puregon 2961011000036103 Puregon 974931000168107 follitropin beta 150 units/0.18 mL injection, 0.18 mL cartridge 974911000168102 follitropin beta 150 units/0.18 mL injection, cartridge 21333011000036104 follitropin beta +933215031000036102 Denpax 50 microgram/hour patch, 5, sachet 163064 933204101000036109 Denpax 50 microgram/hour patch, 5 933196271000036104 Denpax 50 microgram/hour patch 933193221000036107 Denpax 933193221000036107 Denpax 26650011000036103 fentanyl 50 microgram/hour patch, 5 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +933212151000036103 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 84, blister pack 142235 933200811000036109 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 84 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200821000036102 donepezil hydrochloride 5 mg tablet, 84 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +50326011000036107 Restore Calcicare (9937) 10 cm x 10 cm medicated dressing, 10, carton 49352011000036100 Restore Calcicare (9937) 10 cm x 10 cm medicated dressing, 10 48517011000036105 Restore Calcicare (9937) 10 cm x 10 cm medicated dressing 63351000168104 Restore Calcicare (9937) 63351000168104 Restore Calcicare (9937) 51330011000036101 dressing alginate superficial wound 10 cm x 10 cm dressing, 10 50857011000036106 dressing alginate superficial wound 10 cm x 10 cm dressing 50715011000036105 dressing alginate superficial wound +13731000036103 Zypine ODT 10 mg wafer, 28, blister pack 175775 8841000036107 Zypine ODT 10 mg wafer, 28 2741000036102 Zypine ODT 10 mg wafer 14381000168109 Zypine ODT 14381000168109 Zypine ODT 27714011000036109 olanzapine 10 mg wafer, 28 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +862611000168104 Mupirocin (Intrapharm) 2% ointment, 15 g, tube 862601000168102 Mupirocin (Intrapharm) 2% ointment, 15 g 862591000168109 Mupirocin (Intrapharm) 2% ointment 862581000168106 Mupirocin (Intrapharm) 862581000168106 Mupirocin (Intrapharm) 26643011000036108 mupirocin 2% ointment, 15 g 22049011000036102 mupirocin 2% ointment 21590011000036101 mupirocin +52717011000036107 Simvastatin (Spirit) 40 mg film-coated tablet, 90, bottle 116713 52533011000036105 Simvastatin (Spirit) 40 mg film-coated tablet, 90 52406011000036103 Simvastatin (Spirit) 40 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 52872011000036101 simvastatin 40 mg tablet, 90 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +1084491000168103 Disodium Edetate 3 g plus Sodium Ascorbate 15 g with Ethanol (Biological Therapies) powder for injection, 1 vial 22259 1084481000168101 Disodium Edetate 3 g plus Sodium Ascorbate 15 g with Ethanol (Biological Therapies) powder for injection, 1 vial 1084461000168105 Disodium Edetate 3 g plus Sodium Ascorbate 15 g with Ethanol (Biological Therapies) powder for injection, vial 1084441000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g with Ethanol (Biological Therapies) 1084441000168106 Disodium Edetate 3 g plus Sodium Ascorbate 15 g with Ethanol (Biological Therapies) 1084471000168104 edetate disodium 3 g + sodium ascorbate 15 g injection, 1 vial 1084451000168108 edetate disodium 3 g + sodium ascorbate 15 g injection, vial 680831000168100 edetic acid + ascorbic acid +19889011000036103 Metronide 200 mg uncoated tablet, 21, blister pack 65540 13136011000036108 Metronide 200 mg uncoated tablet, 21 6419011000036102 Metronide 200 mg uncoated tablet 3492011000036102 Metronide 3492011000036102 Metronide 27574011000036101 metronidazole 200 mg tablet, 21 22913011000036104 metronidazole 200 mg tablet 21482011000036106 metronidazole +19889011000036103 Metronide 200 mg uncoated tablet, 21, blister pack 160173 13136011000036108 Metronide 200 mg uncoated tablet, 21 6419011000036102 Metronide 200 mg uncoated tablet 3492011000036102 Metronide 3492011000036102 Metronide 27574011000036101 metronidazole 200 mg tablet, 21 22913011000036104 metronidazole 200 mg tablet 21482011000036106 metronidazole +55561000036107 Anastrozole (AU) 1 mg film-coated tablet, 98, blister pack 155174 52261000036102 Anastrozole (AU) 1 mg film-coated tablet, 98 49401000036105 Anastrozole (AU) 1 mg film-coated tablet 48111000036109 Anastrozole (AU) 48111000036109 Anastrozole (AU) 52281000036107 anastrozole 1 mg tablet, 98 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +685861000168102 Subutex 400 microgram sublingual tablet, 28, blister pack 76661 685851000168104 Subutex 400 microgram sublingual tablet, 28 685801000168103 Subutex 400 microgram sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685841000168101 buprenorphine 400 microgram sublingual tablet, 28 685791000168104 buprenorphine 400 microgram sublingual tablet 21232011000036101 buprenorphine +929231000168101 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 2 x 100 mL bags 48515 929221000168104 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 2 x 100 mL bags 65570011000036102 Sodium Chloride (Baxter) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 929211000168106 sodium chloride 0.9% (900 mg/100 mL) injection, 2 x 100 mL bags 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +925322011000036108 Clopidogrel (Actavis) 75 mg film-coated tablet, 90, blister pack 164866 924858011000036104 Clopidogrel (Actavis) 75 mg film-coated tablet, 90 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 925444011000036105 clopidogrel 75 mg tablet, 90 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +974991000168106 Urso 50 mg/mL oral liquid suspension, 250 mL, bottle 116751 974981000168108 Urso 50 mg/mL oral liquid suspension, 250 mL 974971000168105 Urso 50 mg/mL oral liquid suspension 968471000168103 Urso 968471000168103 Urso 46722011000036107 ursodeoxycholic acid 50 mg/mL oral liquid, 250 mL 45282011000036109 ursodeoxycholic acid 50 mg/mL oral liquid 21849011000036102 ursodeoxycholic acid +44399011000036104 Scheriproct 0.19% / 0.5% ointment, 30 g, tube 70062 41859011000036102 Scheriproct 0.19% / 0.5% ointment, 30 g 40228011000036105 Scheriproct 0.19% / 0.5% ointment 33811000168101 Scheriproct 0.19% / 0.5% 33811000168101 Scheriproct 0.19% / 0.5% 46665011000036104 prednisolone hexanoate 0.19% + cinchocaine hydrochloride 0.5% ointment, 30 g 45256011000036103 prednisolone hexanoate 0.19% + cinchocaine hydrochloride 0.5% ointment 44941011000036104 prednisolone hexanoate + cinchocaine +86120011000036108 Nurofen Zavance 200 mg sugar coated tablet, 48, blister pack 156293 85696011000036103 Nurofen Zavance 200 mg sugar coated tablet, 48 85350011000036104 Nurofen Zavance 200 mg sugar coated tablet 5481000168102 Nurofen Zavance 5481000168102 Nurofen Zavance 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +32551011000036104 Prezista 300 mg film-coated tablet, 120, bottle 127411 32343011000036103 Prezista 300 mg film-coated tablet, 120 32220011000036103 Prezista 300 mg film-coated tablet 32180011000036106 Prezista 32180011000036106 Prezista 32764011000036105 darunavir 300 mg tablet, 120 32695011000036102 darunavir 300 mg tablet 32622011000036101 darunavir +707531000168109 Propranolol (Apo) 10 mg tablet, 100, bottle 222958 707521000168106 Propranolol (Apo) 10 mg tablet, 100 707511000168104 Propranolol (Apo) 10 mg tablet 707501000168102 Propranolol (Apo) 707501000168102 Propranolol (Apo) 26939011000036109 propranolol hydrochloride 10 mg tablet, 100 22315011000036107 propranolol hydrochloride 10 mg tablet 21392011000036104 propranolol +12211000036106 Quipine 300 mg film-coated tablet, 60, blister pack 162389 7391000036105 Quipine 300 mg film-coated tablet, 60 3031000036103 Quipine 300 mg film-coated tablet 961000036106 Quipine 961000036106 Quipine 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +77312011000036109 Water for Irrigation (Baxter) irrigation solution, 1 L bottle 35657 76728011000036103 Water for Irrigation (Baxter) irrigation solution, 1 L bottle 76145011000036100 Water for Irrigation (Baxter) irrigation solution, 1 L bottle 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78242011000036101 water for irrigation solution, 1 L bottle 77567011000036109 water for irrigation solution, 1 L bottle 77440011000036107 water for irrigation +84381011000036107 Loratadine (Pharmacy Health) 10 mg uncoated tablet, 10, blister pack 167461 84073011000036104 Loratadine (Pharmacy Health) 10 mg uncoated tablet, 10 83696011000036108 Loratadine (Pharmacy Health) 10 mg uncoated tablet 83600011000036108 Loratadine (Pharmacy Health) 83600011000036108 Loratadine (Pharmacy Health) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +79712011000036103 Diclofenac Sodium (Terry White Chemists) 25 mg enteric tablet, 50, blister pack 160726 13687011000036102 Diclofenac Sodium (Terry White Chemists) 25 mg enteric tablet, 50 6970011000036102 Diclofenac Sodium (Terry White Chemists) 25 mg enteric tablet 3969011000036108 Diclofenac Sodium (Terry White Chemists) 3969011000036108 Diclofenac Sodium (Terry White Chemists) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +13811000036101 Aripiprazole (GH) 15 mg uncoated tablet, 30, blister pack 176810 8931000036107 Aripiprazole (GH) 15 mg uncoated tablet, 30 2781000036106 Aripiprazole (GH) 15 mg uncoated tablet 991000036104 Aripiprazole (GH) 991000036104 Aripiprazole (GH) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +69432011000036100 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 48490 67232011000036105 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 65567011000036107 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 21891000168108 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) 21891000168108 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) 71782011000036106 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) + glucose 5% (50 g/L) injection, 12 x 1 L bags 70183011000036100 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) + glucose 5% (50 g/L) injection, bag 861201000168108 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose +43918011000036102 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet, 1, blister pack 136846 41410011000036107 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet, 1 39850011000036103 Fosamax Plus Once Weekly 70 mg/140 microgram uncoated tablet 41041000168105 Fosamax Plus Once Weekly 70 mg/140 microgram 41041000168105 Fosamax Plus Once Weekly 70 mg/140 microgram 46289011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 1 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +724371000168101 PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches 724361000168107 PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches 724351000168105 PKU Lophlex LQ 20 Citrus oral liquid solution, 125 mL pouch 56151000168104 PKU Lophlex LQ 20 56151000168104 PKU Lophlex LQ 20 724241000168102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches 724221000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +43712011000036108 Extine 20 mg film-coated tablet, 30, bottle 120730 11653011000036105 Extine 20 mg film-coated tablet, 30 5098011000036103 Extine 20 mg film-coated tablet 4015011000036100 Extine 4015011000036100 Extine 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +170681000036104 Visacor 5 mg film-coated tablet, 30, blister pack 119127 169731000036107 Visacor 5 mg film-coated tablet, 30 169281000036100 Visacor 5 mg film-coated tablet 168721000036103 Visacor 168721000036103 Visacor 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +60865011000036108 Lorastyne Syrup 1 mg/mL oral liquid solution, 150 mL, bottle 59232 56819011000036101 Lorastyne Syrup 1 mg/mL oral liquid solution, 150 mL 54089011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution 27141000168100 Lorastyne Syrup 27141000168100 Lorastyne Syrup 63589011000036105 loratadine 1 mg/mL oral liquid, 150 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +940791000168100 Cisatracurium (Pfizer) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 195984 940781000168103 Cisatracurium (Pfizer) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 940771000168101 Cisatracurium (Pfizer) 20 mg/10 mL injection solution, 10 mL ampoule 154571000036109 Cisatracurium (Pfizer) 154571000036109 Cisatracurium (Pfizer) 909161000168108 cisatracurium 20 mg/10 mL injection, 5 x 10 mL ampoules 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +931648011000036101 Twynsta 80/5 mg multilayer tablet, 14, blister pack 166263 930808011000036108 Twynsta 80/5 mg multilayer tablet, 14 930057011000036103 Twynsta 80/5 mg multilayer tablet 12411000168103 Twynsta 80/5 mg 12411000168103 Twynsta 80/5 mg 932421011000036105 telmisartan 80 mg + amlodipine 5 mg tablet, 14 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +879931000168101 Briviact 10 mg/mL oral liquid solution, 300 mL, bottle 243793 879921000168104 Briviact 10 mg/mL oral liquid solution, 300 mL 879901000168108 Briviact 10 mg/mL oral liquid solution 876391000168107 Briviact 876391000168107 Briviact 879911000168106 brivaracetam 10 mg/mL oral liquid, 300 mL 879891000168109 brivaracetam 10 mg/mL oral liquid 876401000168109 brivaracetam +921871011000036101 Jurnista 4 mg modified release tablet, 14, blister pack 155995 921430011000036100 Jurnista 4 mg modified release tablet, 14 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 922560011000036101 hydromorphone hydrochloride 4 mg modified release tablet, 14 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +74819011000036105 Sebifin 250 mg uncoated tablet, 28, blister pack 149996 74306011000036102 Sebifin 250 mg uncoated tablet, 28 73788011000036104 Sebifin 250 mg uncoated tablet 73688011000036105 Sebifin 73688011000036105 Sebifin 75420011000036109 terbinafine 250 mg tablet, 28 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +806801000168101 Perindopril Arginine (Chemmart) 5 mg film-coated tablet, 100, blister pack 184810 806791000168102 Perindopril Arginine (Chemmart) 5 mg film-coated tablet, 100 806701000168108 Perindopril Arginine (Chemmart) 5 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 806781000168100 perindopril arginine 5 mg tablet, 100 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +875601000168101 Bispro 7.5 mg film-coated tablet, 100, blister pack 130181 875591000168108 Bispro 7.5 mg film-coated tablet, 100 875451000168104 Bispro 7.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 874401000168102 bisoprolol fumarate 7.5 mg tablet, 100 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +50653011000036109 Strattera 100 mg hard capsule, 28, blister pack 146413 49677011000036109 Strattera 100 mg hard capsule, 28 48815011000036101 Strattera 100 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +929015011000036103 Nivestim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 160108 928376011000036104 Nivestim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 927960011000036106 Nivestim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 929228011000036109 filgrastim 300 microgram/0.5 mL injection, 0.5 mL syringe 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +824101000168106 Basaglar 100 units/mL injection solution, 10 x 3 mL cartridges 215551 824091000168101 Basaglar 100 units/mL injection solution, 10 x 3 mL cartridges 823991000168104 Basaglar 100 units/mL injection solution, 3 mL cartridge 823981000168102 Basaglar 823981000168102 Basaglar 824081000168104 insulin glargine 100 units/mL injection, 10 x 3 mL cartridges 23176011000036105 insulin glargine 100 units/mL injection, cartridge 21815011000036108 insulin glargine +83190011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 40 mg/2 mL concentrated injection, 5 x 2 mL vials 154241 83136011000036104 Irinotecan Hydrochloride Trihydrate (Ebewe) 40 mg/2 mL concentrated injection, 5 x 2 mL vials 83078011000036107 Irinotecan Hydrochloride Trihydrate (Ebewe) 40 mg/2 mL concentrated injection, 2 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83210011000036109 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 5 x 2 mL vials 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +68745011000036104 De-Gas 100 mg soft capsule, 10, blister pack 10395 66499011000036105 De-Gas 100 mg soft capsule, 10 65256011000036109 De-Gas 100 mg soft capsule 65132011000036106 De-Gas 65132011000036106 De-Gas 71231011000036103 simethicone 100 mg capsule, 10 69912011000036105 simethicone 100 mg capsule 69826011000036109 simethicone +55611000036109 Synastrozole 1 mg film-coated tablet, 28, blister pack 155175 52361000036107 Synastrozole 1 mg film-coated tablet, 28 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52061000036109 anastrozole 1 mg tablet, 28 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +13671000036106 Nupentin Tab 800 mg uncoated tablet, 100, blister pack 174062 8781000036108 Nupentin Tab 800 mg uncoated tablet, 100 2431000036103 Nupentin Tab 800 mg uncoated tablet 49501000168102 Nupentin Tab 49501000168102 Nupentin Tab 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +926745011000036104 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 10 mL ampoule 117968 926109011000036102 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 10 mL ampoule 925586011000036104 Flumazenil (Sandoz) 1 mg/10 mL injection solution, 10 mL ampoule 925569011000036105 Flumazenil (Sandoz) 925569011000036105 Flumazenil (Sandoz) 927309011000036105 flumazenil 1 mg/10 mL injection, 10 mL ampoule 45022011000036106 flumazenil 1 mg/10 mL injection, ampoule 37762011000036103 flumazenil +837071000168108 Maxigesic film-coated tablet, 20, blister pack 218785 837061000168102 Maxigesic film-coated tablet, 20 173031000036101 Maxigesic film-coated tablet 172741000036100 Maxigesic 172741000036100 Maxigesic 837051000168104 paracetamol 500 mg + ibuprofen 150 mg tablet, 20 173041000036106 paracetamol 500 mg + ibuprofen 150 mg tablet 177241000036105 paracetamol + ibuprofen +773851000168104 Calamine (David Craig) lotion, 200 mL, pump pack 14291 773841000168101 Calamine (David Craig) lotion, 200 mL 773791000168104 Calamine (David Craig) lotion 773371000168104 Calamine (David Craig) 773371000168104 Calamine (David Craig) 773831000168105 calamine 15% + zinc oxide 5% + phenol 0.4% lotion, 200 mL 773781000168102 calamine 15% + zinc oxide 5% + phenol 0.4% lotion 773771000168100 calamine + zinc oxide + phenol +1113231000168108 Quetiapine (CH) 150 mg film-coated tablet, 60, blister pack 172831 1113221000168105 Quetiapine (CH) 150 mg film-coated tablet, 60 1113211000168103 Quetiapine (CH) 150 mg film-coated tablet 1103751000168105 Quetiapine (CH) 1103751000168105 Quetiapine (CH) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +69713011000036109 Claramax 5 mg film-coated tablet, 50, blister pack 91115 67512011000036105 Claramax 5 mg film-coated tablet, 50 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72028011000036102 desloratadine 5 mg tablet, 50 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +806961000168107 Perindopril Arginine (Chemmart) 10 mg film-coated tablet, 100, blister pack 184822 806951000168105 Perindopril Arginine (Chemmart) 10 mg film-coated tablet, 100 806821000168105 Perindopril Arginine (Chemmart) 10 mg film-coated tablet 806541000168101 Perindopril Arginine (Chemmart) 806541000168101 Perindopril Arginine (Chemmart) 806941000168108 perindopril arginine 10 mg tablet, 100 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +38251000036102 Escitalup 5 mg film-coated tablet, 250, bottle 165839 34581000036100 Escitalup 5 mg film-coated tablet, 250 32881000036105 Escitalup 5 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +82375011000036109 Coplavix 75 mg/100 mg film-coated tablet, 56, blister pack 150443 82164011000036106 Coplavix 75 mg/100 mg film-coated tablet, 56 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82552011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 56 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1054341000168109 Jurnista 4 mg modified release tablet, 30, blister pack 155995 1054331000168100 Jurnista 4 mg modified release tablet, 30 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054321000168103 hydromorphone hydrochloride 4 mg modified release tablet, 30 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +44706011000036107 Famohexal 20 mg film-coated tablet, 60, bottle 94331 14096011000036105 Famohexal 20 mg film-coated tablet, 60 7373011000036102 Famohexal 20 mg film-coated tablet 3772011000036101 Famohexal 3772011000036101 Famohexal 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +920811011000036103 Irinotecan Hydrochloride Trihydrate (DBL) 40 mg/2 mL concentrated injection, 2 mL vial 97881 920490011000036101 Irinotecan Hydrochloride Trihydrate (DBL) 40 mg/2 mL concentrated injection, 2 mL vial 920221011000036104 Irinotecan Hydrochloride Trihydrate (DBL) 40 mg/2 mL concentrated injection, 2 mL vial 32197011000036108 Irinotecan Hydrochloride Trihydrate (DBL) 32197011000036108 Irinotecan Hydrochloride Trihydrate (DBL) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +20720011000036100 Neulasta 6 mg/0.6 mL injection solution, 0.6 mL syringe 82873 13890011000036108 Neulasta 6 mg/0.6 mL injection solution, 0.6 mL syringe 7176011000036102 Neulasta 6 mg/0.6 mL injection solution, 0.6 mL syringe 3896011000036107 Neulasta 3896011000036107 Neulasta 27993011000036100 pegfilgrastim 6 mg/0.6 mL injection, 0.6 mL syringe 23316011000036108 pegfilgrastim 6 mg/0.6 mL injection, syringe 21753011000036104 pegfilgrastim +978281000168105 Rexulti 1 mg film-coated tablet, 10, blister pack 273220 978271000168107 Rexulti 1 mg film-coated tablet, 10 978251000168103 Rexulti 1 mg film-coated tablet 978111000168109 Rexulti 978111000168109 Rexulti 978261000168101 brexpiprazole 1 mg tablet, 10 978241000168100 brexpiprazole 1 mg tablet 978131000168104 brexpiprazole +933212061000036101 Donpesyn 10 mg film-coated tablet, 84, blister pack 142234 933201471000036106 Donpesyn 10 mg film-coated tablet, 84 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200991000036106 donepezil hydrochloride 10 mg tablet, 84 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +140531000036103 Sumatriptan (Sandoz) 50 mg film-coated tablet, 2, blister pack 187214 139111000036107 Sumatriptan (Sandoz) 50 mg film-coated tablet, 2 137491000036101 Sumatriptan (Sandoz) 50 mg film-coated tablet 137411000036106 Sumatriptan (Sandoz) 137411000036106 Sumatriptan (Sandoz) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +1045801000168100 Atorvastatin (Pharmacor) 40 mg film-coated tablet, 30, blister pack 198852 1045791000168101 Atorvastatin (Pharmacor) 40 mg film-coated tablet, 30 1045781000168104 Atorvastatin (Pharmacor) 40 mg film-coated tablet 1045731000168100 Atorvastatin (Pharmacor) 1045731000168100 Atorvastatin (Pharmacor) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +741691000168107 Jakavi 20 mg tablet, 60, bottle 198932 741681000168109 Jakavi 20 mg tablet, 60 143751000036105 Jakavi 20 mg tablet 143281000036109 Jakavi 143281000036109 Jakavi 741671000168106 ruxolitinib 20 mg tablet, 60 143761000036108 ruxolitinib 20 mg tablet 146491000036100 ruxolitinib +50584011000036107 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 2, blister pack 134855 49616011000036102 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet, 2 4947011000036106 Clarithromycin (Terry White Chemists) 250 mg film-coated tablet 4221011000036102 Clarithromycin (Terry White Chemists) 4221011000036102 Clarithromycin (Terry White Chemists) 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +31071000036106 Terbinafine (Sandoz) 250 mg uncoated tablet, 42, blister pack 101685 28251000036104 Terbinafine (Sandoz) 250 mg uncoated tablet, 42 26351000036109 Terbinafine (Sandoz) 250 mg uncoated tablet 26291000036109 Terbinafine (Sandoz) 26291000036109 Terbinafine (Sandoz) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +82873011000036106 Afinitor 5 mg uncoated tablet, 30, blister pack 154661 82780011000036107 Afinitor 5 mg uncoated tablet, 30 82690011000036104 Afinitor 5 mg uncoated tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 83000011000036100 everolimus 5 mg tablet, 30 82937011000036105 everolimus 5 mg tablet 21615011000036103 everolimus +30991000036101 Allerdyne 10 mg uncoated tablet, 50, blister pack 176345 28781000036100 Allerdyne 10 mg uncoated tablet, 50 26941000036107 Allerdyne 10 mg uncoated tablet 26281000036107 Allerdyne 26281000036107 Allerdyne 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +933212221000036104 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 60, blister pack 142236 933200941000036100 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 60 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200951000036102 donepezil hydrochloride 10 mg tablet, 60 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +1024381000168100 Betadine Sore Throat Lozenges Orange lozenge, 36, blister pack 227169 1024371000168103 Betadine Sore Throat Lozenges Orange lozenge, 36 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71507011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 36 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +86179011000036103 Dotarem 2.79 g/10 mL injection solution, 10 mL vial 76925 85786011000036107 Dotarem 2.79 g/10 mL injection solution, 10 mL vial 85400011000036101 Dotarem 2.79 g/10 mL injection solution, 10 mL vial 85269011000036107 Dotarem 85269011000036107 Dotarem 86469011000036105 gadoteric acid 2.79 g/10 mL injection, 10 mL vial 86242011000036107 gadoteric acid 2.79 g/10 mL injection, vial 86191011000036109 gadoteric acid +44124011000036102 Hydroxychloroquine Sulfate (Sanofi-Synthelabo) 200 mg film-coated tablet, 100, bottle 52267 41600011000036107 Hydroxychloroquine Sulfate (Sanofi-Synthelabo) 200 mg film-coated tablet, 100 40092011000036106 Hydroxychloroquine Sulfate (Sanofi-Synthelabo) 200 mg film-coated tablet 39724011000036105 Hydroxychloroquine Sulfate (Sanofi-Synthelabo) 39724011000036105 Hydroxychloroquine Sulfate (Sanofi-Synthelabo) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +661341000168106 Frusemide (AN) 40 mg uncoated tablet, 100, bottle 176038 661331000168102 Frusemide (AN) 40 mg uncoated tablet, 100 661321000168100 Frusemide (AN) 40 mg uncoated tablet 661311000168107 Frusemide (AN) 661311000168107 Frusemide (AN) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +995461000168100 Cepacol Plus with Anaesthetic Original Flavour lozenge, 16, blister pack 10097 995451000168102 Cepacol Plus with Anaesthetic Original Flavour lozenge, 16 995431000168108 Cepacol Plus with Anaesthetic Original Flavour lozenge 34101000168105 Cepacol Plus with Anaesthetic 34101000168105 Cepacol Plus with Anaesthetic 995441000168104 cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge, 16 995421000168105 cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge 61719011000036102 cetylpyridinium + benzocaine +1037261000168108 Atorvastatin (RBX) 80 mg film-coated tablet, 30, bottle 173502 1037221000168103 Atorvastatin (RBX) 80 mg film-coated tablet, 30 1037191000168109 Atorvastatin (RBX) 80 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +18921011000036101 Alpha Keri Oil application, 500 mL, bottle 24618 12229011000036106 Alpha Keri Oil application, 500 mL 5517011000036100 Alpha Keri Oil application 30578011000036102 Alpha Keri Oil 30578011000036102 Alpha Keri Oil 26998011000036109 liquid paraffin 80.7% + lanolin oil 2.64% application, 500 mL 22371011000036104 liquid paraffin 80.7% + lanolin oil 2.64% application 33631011000036102 liquid paraffin + lanolin oil +44245011000036103 Colese 135 mg film-coated tablet, 90, blister pack 59746 12922011000036102 Colese 135 mg film-coated tablet, 90 6212011000036108 Colese 135 mg film-coated tablet 3274011000036102 Colese 3274011000036102 Colese 27905011000036102 mebeverine hydrochloride 135 mg tablet, 90 23230011000036107 mebeverine hydrochloride 135 mg tablet 21801011000036109 mebeverine +20514011000036103 Genotropin (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 78811 13714011000036102 Genotropin (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 6996011000036107 Genotropin (somatropin 5 mg) powder for injection, 5 mg cartridge 3050011000036100 Genotropin 3050011000036100 Genotropin 27895011000036107 somatropin 5 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 23220011000036109 somatropin 5 mg injection, cartridge 21295011000036100 somatropin +20514011000036103 Genotropin (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack, dual chamber composite pack 78811 13714011000036102 Genotropin (1 x 5 mg cartridge, 1 x 1 mL inert diluent cartridge), 1 pack 637991000168102 Genotropin (inert substance) diluent, 1 mL cartridge 3050011000036100 Genotropin 3050011000036100 Genotropin 27895011000036107 somatropin 5 mg injection [1 cartridge] (&) inert substance diluent [1 mL cartridge], 1 pack 630901000168109 inert substance diluent, 1 mL cartridge 21220011000036103 inert substance +842331000168105 Apoc-5Fu 5% cream, 20 g, tube 231556 842321000168107 Apoc-5Fu 5% cream, 20 g 842311000168100 Apoc-5Fu 5% cream 842301000168103 Apoc-5Fu 842301000168103 Apoc-5Fu 26838011000036108 fluorouracil 5% cream, 20 g 22219011000036100 fluorouracil 5% cream 21481011000036100 fluorouracil +1071401000168104 Isentress HD 600 mg film-coated tablet, 60, bottle 280294 1071391000168101 Isentress HD 600 mg film-coated tablet, 60 1071371000168102 Isentress HD 600 mg film-coated tablet 1071351000168106 Isentress HD 1071351000168106 Isentress HD 1071381000168104 raltegravir 600 mg tablet, 60 1071361000168108 raltegravir 600 mg tablet 37767011000036101 raltegravir +60829011000036101 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 16, blister pack 58353 56785011000036104 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 16 54080011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 63568011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule, 16 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +61464011000036109 Paracetamol (Nyal) 500 mg uncoated tablet, 24, blister pack 90632 57389011000036100 Paracetamol (Nyal) 500 mg uncoated tablet, 24 54292011000036106 Paracetamol (Nyal) 500 mg uncoated tablet 53173011000036109 Paracetamol (Nyal) 53173011000036109 Paracetamol (Nyal) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +963391000168101 Aripiprazole (Apo) 15 mg uncoated tablet, 30, bottle 152898 870111000168103 Aripiprazole (Apo) 15 mg uncoated tablet, 30 870101000168101 Aripiprazole (Apo) 15 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 28026011000036103 aripiprazole 15 mg tablet, 30 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +887421000168109 Zinbryta 150 mg/mL injection solution, 3 x 1 mL syringes 243872 887411000168102 Zinbryta 150 mg/mL injection solution, 3 x 1 mL syringes 887361000168109 Zinbryta 150 mg/mL injection solution, syringe 887331000168101 Zinbryta 887331000168101 Zinbryta 887401000168100 daclizumab 150 mg/mL injection, 3 x 1 mL syringes 887351000168107 daclizumab 150 mg/mL injection, syringe 887341000168105 daclizumab +841321000168100 Bansep 20 mg film-coated tablet, 30, blister pack 173503 841311000168107 Bansep 20 mg film-coated tablet, 30 841271000168107 Bansep 20 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +44579011000036106 Amiodarone Hydrochloride (Hospira) 150 mg/3 mL concentrated injection, 10 x 3 mL ampoules 82186 42032011000036106 Amiodarone Hydrochloride (Hospira) 150 mg/3 mL concentrated injection, 10 x 3 mL ampoules 40331011000036106 Amiodarone Hydrochloride (Hospira) 150 mg/3 mL concentrated injection, 3 mL ampoule 39687011000036102 Amiodarone Hydrochloride (Hospira) 39687011000036102 Amiodarone Hydrochloride (Hospira) 38715011000036100 amiodarone hydrochloride 150 mg/3 mL injection, 10 x 3 mL ampoules 37946011000036101 amiodarone hydrochloride 150 mg/3 mL injection, ampoule 21535011000036101 amiodarone +87678011000036106 Famciclovir (Apo) 125 mg film-coated tablet, 56, blister pack 160559 87480011000036101 Famciclovir (Apo) 125 mg film-coated tablet, 56 87335011000036105 Famciclovir (Apo) 125 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87823011000036105 famciclovir 125 mg tablet, 56 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +858421000168102 Amichlor 25 mg film-coated tablet, 100, blister pack 215389 858401000168106 Amichlor 25 mg film-coated tablet, 100 858391000168109 Amichlor 25 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +870301000168103 Anterone 100 mg uncoated tablet, 20, blister pack 278778 870291000168104 Anterone 100 mg uncoated tablet, 20 870251000168109 Anterone 100 mg uncoated tablet 870241000168107 Anterone 870241000168107 Anterone 870281000168102 cyproterone acetate 100 mg tablet, 20 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +929712011000036108 MS Contin 15 mg modified release tablet, 28, blister pack 78208 929548011000036104 MS Contin 15 mg modified release tablet, 28 6945011000036105 MS Contin 15 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 929769011000036104 morphine sulfate pentahydrate 15 mg modified release tablet, 28 23196011000036102 morphine sulfate pentahydrate 15 mg modified release tablet 21252011000036100 morphine +176491000036101 Sildenafil (Apo) 100 mg film-coated tablet, 4, blister pack 164806 174701000036107 Sildenafil (Apo) 100 mg film-coated tablet, 4 173381000036100 Sildenafil (Apo) 100 mg film-coated tablet 172761000036104 Sildenafil (Apo) 172761000036104 Sildenafil (Apo) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +69654011000036106 Nurofen 5% gel, 5 g, tube 79909 67453011000036100 Nurofen 5% gel, 5 g 65669011000036108 Nurofen 5% gel 5641000168109 Nurofen 5641000168109 Nurofen 71981011000036108 ibuprofen 5% gel, 5 g 70270011000036104 ibuprofen 5% gel 21885011000036105 ibuprofen +724611000168103 PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches 724601000168101 PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches 724591000168108 PKU Lophlex LQ 20 Berry oral liquid solution, 125 mL pouch 56151000168104 PKU Lophlex LQ 20 56151000168104 PKU Lophlex LQ 20 724241000168102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches 724221000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1116411000168108 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 28, blister pack 158167 1116401000168105 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet, 28 1116341000168100 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) film-coated tablet 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 1116331000168109 Valsartan/Amlodipine/HCT 160/10/25 (Novartis) 922590011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 28 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +695701000168106 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles 48498 695691000168106 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles 695671000168105 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 75 mL bottle 20471000168101 Ultravist-370 20471000168101 Ultravist-370 695681000168108 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 75 mL bottles 695661000168104 iopromide 769 mg (iodine 370 mg)/mL injection, 75 mL bottle 77425011000036101 iopromide +18071000036106 Shilova 500 mg film-coated tablet, 30, blister pack 173283 16721000036109 Shilova 500 mg film-coated tablet, 30 15391000036104 Shilova 500 mg film-coated tablet 15231000036107 Shilova 15231000036107 Shilova 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +908801000168107 Celecoxib (BW) 100 mg hard capsule, 50, blister pack 196182 908791000168106 Celecoxib (BW) 100 mg hard capsule, 50 908721000168109 Celecoxib (BW) 100 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +18594011000036101 Diltahexal CD 360 mg modified release capsule, 30, blister pack 131302 11920011000036100 Diltahexal CD 360 mg modified release capsule, 30 4770011000036103 Diltahexal CD 360 mg modified release capsule 26391000168107 Diltahexal CD 26391000168107 Diltahexal CD 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +1050011000168104 Tramal 50 mg hard capsule, 50, blister pack 64011 1050001000168102 Tramal 50 mg hard capsule, 50 6366011000036102 Tramal 50 mg hard capsule 24551000168102 Tramal 24551000168102 Tramal 1049991000168102 tramadol hydrochloride 50 mg capsule, 50 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +12311000036100 Zylap 10 mg film-coated tablet, 28, blister pack 163406 7221000036104 Zylap 10 mg film-coated tablet, 28 1661000036104 Zylap 10 mg film-coated tablet 7481000168109 Zylap 7481000168109 Zylap 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +44108011000036101 Voltaren Ophtha 0.1% eye drops solution, 20 x 0.3 mL unit doses, ampoule 51527 41587011000036104 Voltaren Ophtha 0.1% eye drops solution, 20 x 0.3 mL unit doses 40087011000036107 Voltaren Ophtha 0.1% eye drops solution, 0.3 mL unit dose 39691011000036109 Voltaren Ophtha 39691011000036109 Voltaren Ophtha 46415011000036100 diclofenac sodium 0.1% eye drops, 20 x 0.3 mL unit doses 45142011000036102 diclofenac sodium 0.1% eye drops, unit dose 21288011000036105 diclofenac +921963011000036100 Isovue-200 408 mg (iodine 200 mg)/mL injection solution, 10 mL ampoule 47924 921521011000036101 Isovue-200 408 mg (iodine 200 mg)/mL injection solution, 10 mL ampoule 921056011000036108 Isovue-200 408 mg (iodine 200 mg)/mL injection solution, 10 mL ampoule 18391000168100 Isovue-200 18391000168100 Isovue-200 922643011000036108 iopamidol 408 mg (iodine 200 mg)/mL injection, 10 mL ampoule 922128011000036101 iopamidol 408 mg (iodine 200 mg)/mL injection, 10 mL ampoule 77457011000036105 iopamidol +995381000168101 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16, blister pack 57471 995371000168104 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16 995351000168108 Cepacol Plus with Anaesthetic Blackcurrant lozenge 34101000168105 Cepacol Plus with Anaesthetic 34101000168105 Cepacol Plus with Anaesthetic 995361000168105 cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 16 995341000168106 cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge 61719011000036102 cetylpyridinium + benzocaine +1107751000168102 Midazolam (Intas) 15 mg/3 mL injection solution, 3 mL ampoule 207229 1107741000168104 Midazolam (Intas) 15 mg/3 mL injection solution, 3 mL ampoule 1107731000168108 Midazolam (Intas) 15 mg/3 mL injection solution, 3 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 663931000168100 midazolam 15 mg/3 mL injection, 3 mL ampoule 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +170921000036105 Aporyl Anti-Fungal Nail Treatment 5% application, 5 mL, bottle 207878 170161000036104 Aporyl Anti-Fungal Nail Treatment 5% application, 5 mL 169291000036103 Aporyl Anti-Fungal Nail Treatment 5% application 11401000168106 Aporyl Anti-Fungal Nail Treatment 11401000168106 Aporyl Anti-Fungal Nail Treatment 27384011000036107 amorolfine 5% application, 5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +13491000036108 Quetiapine (Pfizer) 300 mg film-coated tablet, 60, bottle 172836 8681000036104 Quetiapine (Pfizer) 300 mg film-coated tablet, 60 1281000036106 Quetiapine (Pfizer) 300 mg film-coated tablet 721000036100 Quetiapine (Pfizer) 721000036100 Quetiapine (Pfizer) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1037081000168105 Voltaren Emulgel 1.16% gel, 50 g, tube 47676 1037071000168107 Voltaren Emulgel 1.16% gel, 50 g 1036991000168109 Voltaren Emulgel 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037061000168101 diclofenac diethylamine 1.16% gel, 50 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +20102011000036104 Neurontin 800 mg film-coated tablet, 100, bottle 71792 13327011000036103 Neurontin 800 mg film-coated tablet, 100 6613011000036103 Neurontin 800 mg film-coated tablet 4344011000036106 Neurontin 4344011000036106 Neurontin 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +44176011000036106 Zovirax Cold Sore 5% cream, 10 g, tube 55006 41652011000036100 Zovirax Cold Sore 5% cream, 10 g 40124011000036100 Zovirax Cold Sore 5% cream 34331000168101 Zovirax Cold Sore 34331000168101 Zovirax Cold Sore 46470011000036101 aciclovir 5% cream, 10 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +871431000168107 Amitriptyline (AC) 50 mg tablet, 100, blister pack 232110 871421000168109 Amitriptyline (AC) 50 mg tablet, 100 862931000168104 Amitriptyline (AC) 50 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 692381000168109 amitriptyline hydrochloride 50 mg tablet, 100 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +721721000168101 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL, bottle 10859 721711000168108 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL 721631000168106 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 5 mL 9371000168109 Panadol Children's Elixir 1 to 5 Years 9371000168109 Panadol Children's Elixir 1 to 5 Years 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +73295011000036103 Jurnista 32 mg modified release tablet, 20, blister pack 141534 73093011000036105 Jurnista 32 mg modified release tablet, 20 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73491011000036104 hydromorphone hydrochloride 32 mg modified release tablet, 20 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +835501000168104 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL, bottle 14277 835491000168106 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL 834921000168102 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid 35901011000036104 Codeine Phosphate Linctus (Biotech) 35901011000036104 Codeine Phosphate Linctus (Biotech) 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 21821011000036104 codeine +55241000036108 Diabact UBT 50 mg uncoated tablet, 1, blister pack 135657 51041000036100 Diabact UBT 50 mg uncoated tablet, 1 48681000036106 Diabact UBT 50 mg uncoated tablet 33671000168105 Diabact UBT 33671000168105 Diabact UBT 51051000036102 urea (13C) 50 mg tablet, 1 48691000036108 urea (13C) 50 mg tablet 56851000036103 urea (13C) +18938011000036108 Methyl Salicylate (Gold Cross) 25% liniment, 100 mL, bottle 27363 12246011000036100 Methyl Salicylate (Gold Cross) 25% liniment, 100 mL 5198011000036105 Methyl Salicylate (Gold Cross) 25% liniment 4351011000036106 Methyl Salicylate (Gold Cross) 4351011000036106 Methyl Salicylate (Gold Cross) 27011011000036108 methyl salicylate 25% liniment, 100 mL 22384011000036105 methyl salicylate 25% liniment 21251011000036106 methyl salicylate +870061000168104 Tevaripiprazole 30 mg uncoated tablet, 30, blister pack 238034 870051000168101 Tevaripiprazole 30 mg uncoated tablet, 30 870041000168103 Tevaripiprazole 30 mg uncoated tablet 869611000168108 Tevaripiprazole 869611000168108 Tevaripiprazole 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +1078871000168100 Atostat 10 mg film-coated tablet, 30, bottle 194106 1078211000168109 Atostat 10 mg film-coated tablet, 30 1078201000168106 Atostat 10 mg film-coated tablet 1078191000168108 Atostat 1078191000168108 Atostat 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +1119291000168109 Quetiapine (Watson) 25 mg film-coated tablet, 20, blister pack 202262 1119281000168106 Quetiapine (Watson) 25 mg film-coated tablet, 20 1119271000168108 Quetiapine (Watson) 25 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +55291000036102 Antiseptic (Pharmacy Choice) cream, 50 g, tube 136256 51101000036102 Antiseptic (Pharmacy Choice) cream, 50 g 48771000036104 Antiseptic (Pharmacy Choice) cream 48491000036106 Antiseptic (Pharmacy Choice) 48491000036106 Antiseptic (Pharmacy Choice) 63520011000036109 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream, 50 g 62000011000036107 chlorhexidine gluconate 0.1% + lidocaine (lignocaine) hydrochloride 1% + bufexamac 5% cream 61776011000036102 chlorhexidine + lidocaine (lignocaine) + bufexamac +1123581000168101 Quetiapine XR (ZP) 50 mg modified release tablet, 100, blister pack 241754 1123571000168104 Quetiapine XR (ZP) 50 mg modified release tablet, 100 1123501000168109 Quetiapine XR (ZP) 50 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51530011000036103 quetiapine 50 mg modified release tablet, 100 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +17751000036100 Simvastatin (Synthon) 20 mg film-coated tablet, 30, blister pack 100865 16451000036105 Simvastatin (Synthon) 20 mg film-coated tablet, 30 15611000036101 Simvastatin (Synthon) 20 mg film-coated tablet 15151000036106 Simvastatin (Synthon) 15151000036106 Simvastatin (Synthon) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +61532011000036100 Amoxycillin (Sandoz) 250 mg/5 mL powder for oral liquid, 60 mL, bottle 93720 57457011000036108 Amoxycillin (Sandoz) 250 mg/5 mL powder for oral liquid, 60 mL 54308011000036101 Amoxycillin (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 63870011000036109 amoxicillin 250 mg/5 mL powder for oral liquid, 60 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +12451000036109 Quetiapine (Sandoz) 300 mg film-coated tablet, 60, blister pack 158106 6781000036107 Quetiapine (Sandoz) 300 mg film-coated tablet, 60 3131000036104 Quetiapine (Sandoz) 300 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +20497011000036104 Metformin Hydrochloride (Terry White Chemists) 500 mg tablet, 100, blister pack 78614 13697011000036101 Metformin Hydrochloride (Terry White Chemists) 500 mg tablet, 100 6979011000036108 Metformin Hydrochloride (Terry White Chemists) 500 mg tablet 9991000168106 Metformin Hydrochloride (Terry White Chemists) 9991000168106 Metformin Hydrochloride (Terry White Chemists) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +37527011000036105 Anagraine uncoated tablet, 8, blister pack 13547 36795011000036107 Anagraine uncoated tablet, 8 36153011000036106 Anagraine uncoated tablet 35953011000036106 Anagraine 35953011000036106 Anagraine 38692011000036100 metoclopramide hydrochloride 5 mg + paracetamol 500 mg tablet, 8 37929011000036107 metoclopramide hydrochloride 5 mg + paracetamol 500 mg tablet 37791011000036106 metoclopramide + paracetamol +1113391000168102 Tinasil 1% cream, 15 g, tube 279463 1113381000168100 Tinasil 1% cream, 15 g 1113351000168107 Tinasil 1% cream 929363011000036101 Tinasil 929363011000036101 Tinasil 27117011000036107 terbinafine hydrochloride 1% cream, 15 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +147401000036105 Afinitor 2.5 mg uncoated tablet, 30, blister pack 177648 147351000036103 Afinitor 2.5 mg uncoated tablet, 30 147321000036109 Afinitor 2.5 mg uncoated tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 147361000036100 everolimus 2.5 mg tablet, 30 147331000036106 everolimus 2.5 mg tablet 21615011000036103 everolimus +18911011000036108 Proctosedyl Rectal ointment, 30 g, tube 21847 12219011000036101 Proctosedyl Rectal ointment, 30 g 4979011000036103 Proctosedyl Rectal ointment 21921000168103 Proctosedyl Rectal 21921000168103 Proctosedyl Rectal 26990011000036107 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment, 30 g 22363011000036105 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment 21414011000036104 hydrocortisone + cinchocaine +704321000168109 Hydroxychloroquine (AN) 200 mg tablet, 100, bottle 223694 704311000168102 Hydroxychloroquine (AN) 200 mg tablet, 100 704301000168100 Hydroxychloroquine (AN) 200 mg tablet 704291000168101 Hydroxychloroquine (AN) 704291000168101 Hydroxychloroquine (AN) 27234011000036108 hydroxychloroquine sulfate 200 mg tablet, 100 22594011000036107 hydroxychloroquine sulfate 200 mg tablet 21509011000036109 hydroxychloroquine +841161000168107 Escitalopram (Blooms The Chemist) 20 mg film-coated tablet, 28, blister pack 272631 841151000168105 Escitalopram (Blooms The Chemist) 20 mg film-coated tablet, 28 841141000168108 Escitalopram (Blooms The Chemist) 20 mg film-coated tablet 841041000168109 Escitalopram (Blooms The Chemist) 841041000168109 Escitalopram (Blooms The Chemist) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +862851000168102 Amitriptyline (AC) 10 mg tablet, 50, blister pack 232105 862841000168104 Amitriptyline (AC) 10 mg tablet, 50 862831000168108 Amitriptyline (AC) 10 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +790831000168106 Acarbose (GPPL) 50 mg tablet, 90, blister pack 226793 790821000168108 Acarbose (GPPL) 50 mg tablet, 90 790811000168101 Acarbose (GPPL) 50 mg tablet 790731000168104 Acarbose (GPPL) 790731000168104 Acarbose (GPPL) 27110011000036106 acarbose 50 mg tablet, 90 22478011000036100 acarbose 50 mg tablet 21888011000036104 acarbose +146351000036101 Vyvanse 50 mg hard capsule, 30, bottle 199226 145091000036100 Vyvanse 50 mg hard capsule, 30 144021000036104 Vyvanse 50 mg hard capsule 143261000036104 Vyvanse 143261000036104 Vyvanse 145101000036109 lisdexamfetamine dimesilate 50 mg capsule, 30 144031000036102 lisdexamfetamine dimesilate 50 mg capsule 146451000036109 lisdexamfetamine +842651000168107 Infanrix injection suspension, 10 x 0.5 mL syringes 142370 842641000168105 Infanrix injection suspension, 10 x 0.5 mL syringes 842591000168101 Infanrix injection suspension, 0.5 mL syringe 842341000168101 Infanrix 842341000168101 Infanrix 842631000168101 diphtheria + tetanus + pertussis 3 component child vaccine injection, 10 x 0.5 mL syringes 842581000168104 diphtheria + tetanus + pertussis 3 component child vaccine injection, 0.5 mL syringe 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +83396011000036104 Nebilet 5 mg tablet, 7, blister pack 148874 83315011000036105 Nebilet 5 mg tablet, 7 83247011000036104 Nebilet 5 mg tablet 83226011000036104 Nebilet 83226011000036104 Nebilet 83488011000036108 nebivolol 5 mg tablet, 7 83431011000036105 nebivolol 5 mg tablet 83418011000036105 nebivolol +1027031000168106 Pregabalin (Amneal) 300 mg hard capsule, 30, bottle 235869 1027021000168108 Pregabalin (Amneal) 300 mg hard capsule, 30 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970831000168107 pregabalin 300 mg capsule, 30 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +933239301000036100 Prozine (Pharmacor) 5 mg uncoated tablet, 100, blister pack 172127 933236551000036100 Prozine (Pharmacor) 5 mg uncoated tablet, 100 933234621000036100 Prozine (Pharmacor) 5 mg uncoated tablet 933234271000036104 Prozine (Pharmacor) 933234271000036104 Prozine (Pharmacor) 924170011000036106 prochlorperazine maleate 5 mg tablet, 100 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +79703011000036108 Allerfexo 120 mg film-coated tablet, 7, blister pack 159415 79519011000036107 Allerfexo 120 mg film-coated tablet, 7 79393011000036107 Allerfexo 120 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 79828011000036109 fexofenadine hydrochloride 120 mg tablet, 7 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +931481011000036100 Plavix 75 mg film-coated tablet, 28, bottle 153236 13703011000036101 Plavix 75 mg film-coated tablet, 28 6985011000036104 Plavix 75 mg film-coated tablet 3475011000036104 Plavix 3475011000036104 Plavix 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +171001000036107 Panadol Rapid 500 mg film-coated tablet, 24, blister pack 78692 170211000036105 Panadol Rapid 500 mg film-coated tablet, 24 65667011000036101 Panadol Rapid 500 mg film-coated tablet 4501000168107 Panadol Rapid 4501000168107 Panadol Rapid 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +882991000168103 Barentec 500 microgram film-coated tablet, 30, blister pack 234765 882981000168101 Barentec 500 microgram film-coated tablet, 30 882971000168104 Barentec 500 microgram film-coated tablet 882931000168102 Barentec 882931000168102 Barentec 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +61035011000036105 Neutrafluor 900 Weekly 0.2% solution, 250 mL, bottle 67258 56978011000036105 Neutrafluor 900 Weekly 0.2% solution, 250 mL 54145011000036106 Neutrafluor 900 Weekly 0.2% solution 50861000168109 Neutrafluor 900 Weekly 50861000168109 Neutrafluor 900 Weekly 63676011000036103 sodium fluoride 0.2% solution, 250 mL 62041011000036108 sodium fluoride 0.2% solution 61768011000036106 fluoride +18577011000036103 Simvastatin (RL) 20 mg film-coated tablet, 30, blister pack 116802 11544011000036100 Simvastatin (RL) 20 mg film-coated tablet, 30 4861011000036102 Simvastatin (RL) 20 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1008301000168107 Cefuroxime (AL) 500 mg film-coated tablet, 2, blister pack 273226 1008291000168106 Cefuroxime (AL) 500 mg film-coated tablet, 2 1008271000168105 Cefuroxime (AL) 500 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 1008281000168108 cefuroxime 500 mg tablet, 2 1008261000168104 cefuroxime 500 mg tablet 21474011000036106 cefuroxime +933239381000036106 Eliquis 2.5 mg film-coated tablet, 100, blister pack 172244 933236651000036101 Eliquis 2.5 mg film-coated tablet, 100 933234631000036103 Eliquis 2.5 mg film-coated tablet 933234191000036106 Eliquis 933234191000036106 Eliquis 933236661000036103 apixaban 2.5 mg tablet, 100 933234641000036108 apixaban 2.5 mg tablet 933240151000036106 apixaban +973741000168104 Pregabalin (GH) 25 mg hard capsule, 20, blister pack 215685 973731000168108 Pregabalin (GH) 25 mg hard capsule, 20 973701000168101 Pregabalin (GH) 25 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +44235011000036104 Flixotide Junior Accuhaler 50 microgram/actuation powder for inhalation, 60 actuations, blister pack 58440 41707011000036101 Flixotide Junior Accuhaler 50 microgram/actuation powder for inhalation, 60 actuations 40154011000036104 Flixotide Junior Accuhaler 50 microgram/actuation powder for inhalation, actuation 40261000168108 Flixotide Junior Accuhaler 40261000168108 Flixotide Junior Accuhaler 76351000036105 fluticasone propionate 50 microgram/actuation powder for inhalation, 60 actuations 76311000036106 fluticasone propionate 50 microgram/actuation powder for inhalation, actuation 861061000168102 fluticasone propionate +1045761000168108 Atorvastatin (Pharmacor) 10 mg film-coated tablet, 30, blister pack 198850 1045751000168106 Atorvastatin (Pharmacor) 10 mg film-coated tablet, 30 1045741000168109 Atorvastatin (Pharmacor) 10 mg film-coated tablet 1045731000168100 Atorvastatin (Pharmacor) 1045731000168100 Atorvastatin (Pharmacor) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +17831000036101 Seronia 300 mg film-coated tablet, 60, blister pack 143717 16551000036109 Seronia 300 mg film-coated tablet, 60 15421000036106 Seronia 300 mg film-coated tablet 15121000036100 Seronia 15121000036100 Seronia 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1116291000168103 Tiava XR 50 mg modified release tablet, 60, blister pack 249932 1116281000168101 Tiava XR 50 mg modified release tablet, 60 1116271000168104 Tiava XR 50 mg modified release tablet 1115621000168106 Tiava XR 1115621000168106 Tiava XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +80962011000036109 Zinc Compound (David Craig) 25% paste, 100 g, jar 14248 80510011000036103 Zinc Compound (David Craig) 25% paste, 100 g 80172011000036104 Zinc Compound (David Craig) 25% paste 80127011000036103 Zinc Compound (David Craig) 80127011000036103 Zinc Compound (David Craig) 81604011000036107 zinc oxide 25% paste, 100 g 81270011000036109 zinc oxide 25% paste 77446011000036105 zinc oxide +69089011000036106 Fluvoxamine Maleate (Apo) 50 mg film-coated tablet, 30, blister pack 147380 66890011000036107 Fluvoxamine Maleate (Apo) 50 mg film-coated tablet, 30 65417011000036100 Fluvoxamine Maleate (Apo) 50 mg film-coated tablet 45821000168106 Fluvoxamine Maleate (Apo) 45821000168106 Fluvoxamine Maleate (Apo) 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +18123011000036103 Clarihexal 250 mg film-coated tablet, 14, bottle 101269 11187011000036108 Clarihexal 250 mg film-coated tablet, 14 5962011000036107 Clarihexal 250 mg film-coated tablet 3421011000036100 Clarihexal 3421011000036100 Clarihexal 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +38161000036107 Escilupin 5 mg film-coated tablet, 100, bottle 165835 34491000036104 Escilupin 5 mg film-coated tablet, 100 33081000036107 Escilupin 5 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +960741000168100 Ciram 40 mg film-coated tablet, 84, bottle 158861 960591000168101 Ciram 40 mg film-coated tablet, 84 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202951000036103 citalopram 40 mg tablet, 84 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +19091011000036104 Carboplatin (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL vial 42853 12397011000036104 Carboplatin (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL vial 5144011000036105 Carboplatin (Pfizer (Perth)) 50 mg/5 mL injection solution, 5 mL vial 3371011000036106 Carboplatin (Pfizer (Perth)) 3371011000036106 Carboplatin (Pfizer (Perth)) 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +12391000036105 Olanzapine (RBX) 7.5 mg uncoated tablet, 28, blister pack 157860 6761000036102 Olanzapine (RBX) 7.5 mg uncoated tablet, 28 2301000036104 Olanzapine (RBX) 7.5 mg uncoated tablet 1591000168103 Olanzapine (RBX) 1591000168103 Olanzapine (RBX) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +929672011000036105 Acris Once-a-Week 35 mg film-coated tablet, 2, blister pack 163785 929508011000036109 Acris Once-a-Week 35 mg film-coated tablet, 2 933195901000036106 Acris Once-a-Week 35 mg film-coated tablet 22031000168106 Acris Once-a-Week 22031000168106 Acris Once-a-Week 929754011000036108 risedronate sodium 35 mg tablet, 2 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +18381011000036101 Amoxil 250 mg chewable tablet, 20, bottle 11131 11421011000036105 Amoxil 250 mg chewable tablet, 20 5310011000036103 Amoxil 250 mg chewable tablet 3738011000036101 Amoxil 3738011000036101 Amoxil 26642011000036101 amoxicillin 250 mg chewable tablet, 20 22048011000036105 amoxicillin 250 mg chewable tablet 21415011000036100 amoxicillin +842691000168102 Dytrex 60 mg enteric capsule, 28, blister pack 199263 842681000168100 Dytrex 60 mg enteric capsule, 28 842671000168103 Dytrex 60 mg enteric capsule 842661000168109 Dytrex 842661000168109 Dytrex 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +68968011000036107 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 3 sachets 134408 66770011000036103 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 3 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71422011000036107 paracetamol 500 mg powder for oral liquid, 3 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +86153011000036104 Robinul 200 microgram/mL injection solution, 5 x 1 mL ampoules 163586 85761011000036100 Robinul 200 microgram/mL injection solution, 5 x 1 mL ampoules 85378011000036100 Robinul 200 microgram/mL injection solution, ampoule 35873011000036102 Robinul 35873011000036102 Robinul 86451011000036104 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, 5 x 1 mL ampoules 86229011000036100 glycopyrronium bromide (glycopyrrolate) 200 microgram/mL injection, ampoule 37771011000036104 glycopyrronium bromide (glycopyrrolate) +82882011000036108 Simvastatin (Chemmart) 20 mg film-coated tablet, 30, bottle 157736 11306011000036103 Simvastatin (Chemmart) 20 mg film-coated tablet, 30 5522011000036107 Simvastatin (Chemmart) 20 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1106221000168102 Maviret film-coated tablet, 84, blister pack 284948 1106211000168109 Maviret film-coated tablet, 84 1106191000168108 Maviret film-coated tablet 1106161000168101 Maviret 1106161000168101 Maviret 1106201000168106 glecaprevir 100 mg + pibrentasvir 40 mg film-coated tablet, 84 1106181000168105 glecaprevir 100 mg + pibrentasvir 40 mg film-coated tablet 1106171000168107 glecaprevir + pibrentasvir +933212311000036100 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 60, blister pack 142237 933201101000036106 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 60 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200781000036106 donepezil hydrochloride 5 mg tablet, 60 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +30605011000036107 Amoxil Forte Sugar Free 250 mg/5 mL powder for oral liquid, 100 mL, bottle 11134 30583011000036102 Amoxil Forte Sugar Free 250 mg/5 mL powder for oral liquid, 100 mL 4542011000036104 Amoxil Forte Sugar Free 250 mg/5 mL powder for oral liquid, 5 mL 53531000168109 Amoxil Forte 53531000168109 Amoxil Forte 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +689971000168101 Zopiclone (Apo) 7.5 mg film-coated tablet, 30, blister pack 213071 689961000168107 Zopiclone (Apo) 7.5 mg film-coated tablet, 30 689951000168105 Zopiclone (Apo) 7.5 mg film-coated tablet 689941000168108 Zopiclone (Apo) 689941000168108 Zopiclone (Apo) 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +836751000168103 Infanrix Penta injection suspension, 0.5 mL syringe 132883 836741000168100 Infanrix Penta injection suspension, 0.5 mL syringe 836731000168109 Infanrix Penta injection suspension, 0.5 mL syringe 73711011000036106 Infanrix Penta 73711011000036106 Infanrix Penta 836701000168102 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 836651000168107 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 836641000168105 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine +1113511000168101 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 7, blister pack 179092 1113501000168104 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 7 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043171000168104 olanzapine 5 mg orally disintegrating tablet, 7 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +19726011000036104 Vitrasert 4.5 mg implant, 1, sachet 61486 12980011000036106 Vitrasert 4.5 mg implant, 1 6269011000036104 Vitrasert 4.5 mg implant 3807011000036108 Vitrasert 3807011000036108 Vitrasert 27481011000036103 ganciclovir 4.5 mg implant, 1 22827011000036108 ganciclovir 4.5 mg implant 21698011000036108 ganciclovir +960901000168104 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet, 60, blister pack 255078 960891000168103 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet, 60 960801000168109 Amoxicillin Clavulanic Acid 500/125 (Mylan) film-coated tablet 960771000168107 Amoxicillin Clavulanic Acid 500/125 (Mylan) 960771000168107 Amoxicillin Clavulanic Acid 500/125 (Mylan) 51545011000036108 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 60 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1019861000168107 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 14, blister pack 175199 1019851000168105 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet, 14 1019761000168103 Irbesartan HCTZ 300 mg/25 mg (Apotex) film-coated tablet 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 1019751000168100 Irbesartan HCTZ 300 mg/25 mg (Apotex) 792601000168101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 14 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +37510011000036102 Orthoclone OKT3 5 mg/5 mL injection solution, 5 mL ampoule 13317 36778011000036107 Orthoclone OKT3 5 mg/5 mL injection solution, 5 mL ampoule 36116011000036107 Orthoclone OKT3 5 mg/5 mL injection solution, 5 mL ampoule 62611000168100 Orthoclone OKT3 62611000168100 Orthoclone OKT3 38675011000036102 muromonab-CD3 5 mg/5 mL injection, 5 mL ampoule 37918011000036105 muromonab-CD3 5 mg/5 mL injection, ampoule 37789011000036106 muromonab-CD3 +888611000168104 Bosentan (Intas) 62.5 mg film-coated tablet, 14, blister pack 235897 888601000168102 Bosentan (Intas) 62.5 mg film-coated tablet, 14 888071000168100 Bosentan (Intas) 62.5 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884311000168104 bosentan 62.5 mg tablet, 14 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +773571000168105 Claratyne Reditab 10 mg orally disintegrating tablet, 30, blister pack 217147 773561000168104 Claratyne Reditab 10 mg orally disintegrating tablet, 30 773401000168101 Claratyne Reditab 10 mg orally disintegrating tablet 773381000168101 Claratyne Reditab 773381000168101 Claratyne Reditab 773551000168101 loratadine 10 mg orally disintegrating tablet, 30 773391000168103 loratadine 10 mg orally disintegrating tablet 21701011000036106 loratadine +1044431000168109 Pryzex 5 mg film-coated tablet, 60, blister pack 178991 1044421000168106 Pryzex 5 mg film-coated tablet, 60 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1044411000168104 olanzapine 5 mg tablet, 60 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +20085011000036104 Zestril 20 mg uncoated tablet, 30, blister pack 70839 13313011000036103 Zestril 20 mg uncoated tablet, 30 6599011000036106 Zestril 20 mg uncoated tablet 4230011000036107 Zestril 4230011000036107 Zestril 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +176401000036109 Mirtazapine (Apo) 30 mg film-coated tablet, 30, bottle 127677 174611000036102 Mirtazapine (Apo) 30 mg film-coated tablet, 30 172961000036102 Mirtazapine (Apo) 30 mg film-coated tablet 11681000168100 Mirtazapine (Apo) 11681000168100 Mirtazapine (Apo) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +146431000036101 Metoprolol Tartrate (Sandoz) 50 mg uncoated tablet, 100, blister pack 62560 145341000036109 Metoprolol Tartrate (Sandoz) 50 mg uncoated tablet, 100 143891000036105 Metoprolol Tartrate (Sandoz) 50 mg uncoated tablet 143381000036104 Metoprolol Tartrate (Sandoz) 143381000036104 Metoprolol Tartrate (Sandoz) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +1002681000168108 Rivastigmine (Apo) 1.5 mg hard capsule, 56, blister pack 160581 1002541000168104 Rivastigmine (Apo) 1.5 mg hard capsule, 56 1002531000168108 Rivastigmine (Apo) 1.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27691011000036102 rivastigmine 1.5 mg capsule, 56 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +18757011000036104 Parlodel 2.5 mg uncoated tablet, 30, blister pack 13367 11975011000036108 Parlodel 2.5 mg uncoated tablet, 30 4620011000036107 Parlodel 2.5 mg uncoated tablet 3938011000036105 Parlodel 3938011000036105 Parlodel 27287011000036107 bromocriptine 2.5 mg tablet, 30 22641011000036106 bromocriptine 2.5 mg tablet 21300011000036100 bromocriptine +17789011000036108 Epirubicin Hydrochloride (Ebewe) 100 mg/50 mL injection solution, 50 mL vial 131951 11926011000036102 Epirubicin Hydrochloride (Ebewe) 100 mg/50 mL injection solution, 50 mL vial 6015011000036106 Epirubicin Hydrochloride (Ebewe) 100 mg/50 mL injection solution, 50 mL vial 3912011000036104 Epirubicin Hydrochloride (Ebewe) 3912011000036104 Epirubicin Hydrochloride (Ebewe) 26804011000036109 epirubicin hydrochloride 100 mg/50 mL injection, 50 mL vial 22188011000036109 epirubicin hydrochloride 100 mg/50 mL injection, vial 21230011000036100 epirubicin +931573011000036100 Cholpra 80 mg film-coated tablet, 30, bottle 163546 930734011000036107 Cholpra 80 mg film-coated tablet, 30 930031011000036107 Cholpra 80 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +146111000036102 Candesartan Cilexetil (Pharmacor) 16 mg uncoated tablet, 30, bottle 195472 145211000036102 Candesartan Cilexetil (Pharmacor) 16 mg uncoated tablet, 30 143921000036101 Candesartan Cilexetil (Pharmacor) 16 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +44022011000036104 Erythromycin (DBL) 1 g powder for injection, 10 vials 47258 41511011000036105 Erythromycin (DBL) 1 g powder for injection, 10 vials 40027011000036100 Erythromycin (DBL) 1 g powder for injection, vial 3331011000036109 Erythromycin (DBL) 3331011000036109 Erythromycin (DBL) 39901000036104 erythromycin (as lactobionate) 1 g injection, 10 vials 22418011000036107 erythromycin (as lactobionate) 1 g injection, vial 21858011000036107 erythromycin lactobionate +61670011000036105 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 25, bottle 97357 57592011000036108 Paracetamol Tabsule (Herron) 500 mg film-coated tablet, 25 54357011000036107 Paracetamol Tabsule (Herron) 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 63943011000036107 paracetamol 500 mg tablet, 25 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1113551000168100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 14, blister pack 179092 1113541000168102 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 14 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043231000168107 olanzapine 5 mg orally disintegrating tablet, 14 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +69379011000036104 Microshield Tincture solution, 500 mL, bottle 30946 67179011000036100 Microshield Tincture solution, 500 mL 65461011000036107 Microshield Tincture solution 64994011000036104 Microshield Tincture 64994011000036104 Microshield Tincture 71741011000036107 chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL 70161011000036104 chlorhexidine gluconate 0.5% + ethanol 70% solution 69801011000036109 chlorhexidine + ethanol +12531000036100 Letrozole (Apo) 2.5 mg film-coated tablet, 30, blister pack 163826 7401000036108 Letrozole (Apo) 2.5 mg film-coated tablet, 30 3211000036104 Letrozole (Apo) 2.5 mg film-coated tablet 63331000168105 Letrozole (Apo) 63331000168105 Letrozole (Apo) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +19879011000036109 Isoptin 40 mg film-coated tablet, 100, blister pack 65502 13126011000036105 Isoptin 40 mg film-coated tablet, 100 6409011000036104 Isoptin 40 mg film-coated tablet 4411000168109 Isoptin 4411000168109 Isoptin 27932011000036100 verapamil hydrochloride 40 mg tablet, 100 23256011000036106 verapamil hydrochloride 40 mg tablet 21287011000036109 verapamil +926860011000036101 Nicotinell Step-1 21 mg/24 hours patch, 7, sachet 42626 926256011000036104 Nicotinell Step-1 21 mg/24 hours patch, 7 925704011000036109 Nicotinell Step-1 21 mg/24 hours patch 29341000168106 Nicotinell Step-1 29341000168106 Nicotinell Step-1 27923011000036105 nicotine 21 mg/24 hours patch, 7 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +1007021000168102 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet, 1000, bottle 281888 1007011000168109 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet, 1000 1006871000168105 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet 1006851000168101 Osteo Relief Paracetamol (Apohealth) 1006851000168101 Osteo Relief Paracetamol (Apohealth) 677961000168106 paracetamol 665 mg modified release tablet, 1000 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +1088901000168105 Ibupane film-coated tablet, 8, blister pack 267396 1088891000168106 Ibupane film-coated tablet, 8 1088821000168109 Ibupane film-coated tablet 1088811000168102 Ibupane 1088811000168102 Ibupane 813051000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 8 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +980771000168109 Desowen 0.05% cream, 60 g, tube 67167 980761000168103 Desowen 0.05% cream, 60 g 980601000168105 Desowen 0.05% cream 39556011000036104 Desowen 39556011000036104 Desowen 980751000168100 desonide 0.05% cream, 60 g 980591000168103 desonide 0.05% cream 44914011000036107 desonide +55331000036105 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 60, blister pack 147409 51141000036104 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet, 60 48901000036105 Metformin Hydrochloride 1000 (Meditab) 1 g film-coated tablet 48431000036105 Metformin Hydrochloride 1000 (Meditab) 48431000036105 Metformin Hydrochloride 1000 (Meditab) 87830011000036104 metformin hydrochloride 1 g tablet, 60 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1080241000168104 Salofalk 1 g enteric tablet, 50, blister pack 285903 1080231000168108 Salofalk 1 g enteric tablet, 50 1080151000168109 Salofalk 1 g enteric tablet 12771000168100 Salofalk 12771000168100 Salofalk 1080221000168105 mesalazine 1 g enteric tablet, 50 1080141000168107 mesalazine 1 g enteric tablet 21351011000036101 mesalazine +50430011000036104 Rixadone 3 mg film-coated tablet, 60, blister pack 199182 49569011000036102 Rixadone 3 mg film-coated tablet, 60 48730011000036103 Rixadone 3 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +50430011000036104 Rixadone 3 mg film-coated tablet, 60, blister pack 127906 49569011000036102 Rixadone 3 mg film-coated tablet, 60 48730011000036103 Rixadone 3 mg film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +933212381000036108 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 50, blister pack 142238 933201171000036102 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 50 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200911000036101 donepezil hydrochloride 10 mg tablet, 50 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +60538011000036108 Cold and Flu Relief PE (Amcal) uncoated tablet, 96, blister pack 152038 56496011000036100 Cold and Flu Relief PE (Amcal) uncoated tablet, 96 53941011000036105 Cold and Flu Relief PE (Amcal) uncoated tablet 53311011000036105 Cold and Flu Relief PE (Amcal) 53311011000036105 Cold and Flu Relief PE (Amcal) 63382011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 96 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +33519011000036100 Simvastatin (Generic Health) 20 mg film-coated tablet, 30, blister pack 123815 33262011000036101 Simvastatin (Generic Health) 20 mg film-coated tablet, 30 33028011000036104 Simvastatin (Generic Health) 20 mg film-coated tablet 32971011000036105 Simvastatin (Generic Health) 32971011000036105 Simvastatin (Generic Health) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +825471000168107 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 123712 825461000168101 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 825441000168100 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 31101000168108 Engerix-B Paediatric 31101000168108 Engerix-B Paediatric 825451000168103 hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe 825431000168109 hepatitis B child vaccine 10 microgram/0.5 mL injection, syringe 825191000168101 hepatitis B vaccine +50549011000036103 Optium diagnostic strip, 100, bottle 133310 49585011000036101 Optium diagnostic strip, 100 48784011000036101 Optium diagnostic strip 62181000168102 Optium 62181000168102 Optium 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +82385011000036102 Duocover 75 mg/100 mg film-coated tablet, 280, blister pack 151075 82174011000036100 Duocover 75 mg/100 mg film-coated tablet, 280 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82548011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 280 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +933100011000036102 Vimpat 15 mg/mL oral liquid solution, 200 mL, bottle 175179 932907011000036105 Vimpat 15 mg/mL oral liquid solution, 200 mL 932761011000036108 Vimpat 15 mg/mL oral liquid solution 83598011000036103 Vimpat 83598011000036103 Vimpat 932908011000036106 lacosamide 15 mg/mL oral liquid, 200 mL 932762011000036102 lacosamide 15 mg/mL oral liquid 84408011000036109 lacosamide +1107591000168100 Cabometyx 60 mg film-coated tablet, 30, bottle 283799 1107581000168103 Cabometyx 60 mg film-coated tablet, 30 1107561000168107 Cabometyx 60 mg film-coated tablet 1107321000168106 Cabometyx 1107321000168106 Cabometyx 1107571000168101 cabozantinib 60 mg tablet, 30 1107551000168105 cabozantinib 60 mg tablet 1107331000168109 cabozantinib +923807011000036107 Sulprix 50 mg tablet, 90, bottle 156045 923363011000036104 Sulprix 50 mg tablet, 90 923034011000036105 Sulprix 50 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 924161011000036109 amisulpride 50 mg tablet, 90 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +802391000168100 Abilify ODT 10 mg orally disintegrating tablet, 7, blister pack 128893 802381000168103 Abilify ODT 10 mg orally disintegrating tablet, 7 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802371000168101 aripiprazole 10 mg orally disintegrating tablet, 7 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +13591000036109 Ondansetron Tabs (Pfizer) 4 mg film-coated tablet, 10, blister pack 173186 8731000036109 Ondansetron Tabs (Pfizer) 4 mg film-coated tablet, 10 2251000036107 Ondansetron Tabs (Pfizer) 4 mg film-coated tablet 14841000168109 Ondansetron Tabs (Pfizer) 14841000168109 Ondansetron Tabs (Pfizer) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +998351000168104 Desloratadine (Apo) 5 mg film-coated tablet, 60, blister pack 202823 998341000168101 Desloratadine (Apo) 5 mg film-coated tablet, 60 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72029011000036105 desloratadine 5 mg tablet, 60 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +1080401000168100 Paracetamol Children's for 6 to 12 Years (Amcal) 240 mg/5 mL oral liquid suspension, 200 mL, bottle 219534 1080391000168102 Paracetamol Children's for 6 to 12 Years (Amcal) 240 mg/5 mL oral liquid suspension, 200 mL 1080381000168100 Paracetamol Children's for 6 to 12 Years (Amcal) 240 mg/5 mL oral liquid suspension, 5 mL 1080371000168103 Paracetamol Children's for 6 to 12 Years (Amcal) 1080371000168103 Paracetamol Children's for 6 to 12 Years (Amcal) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +1047081000168109 Buprenorphine (SZ) 20 microgram/hour patch, 1, sachet 269675 1047071000168106 Buprenorphine (SZ) 20 microgram/hour patch, 1 1047061000168100 Buprenorphine (SZ) 20 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046541000168107 buprenorphine 20 microgram/hour patch, 1 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +77158011000036107 Hydrogen Peroxide (Orion) 6% solution, 100 mL, bottle 11384 76586011000036109 Hydrogen Peroxide (Orion) 6% solution, 100 mL 76043011000036109 Hydrogen Peroxide (Orion) 6% solution 65016011000036105 Hydrogen Peroxide (Orion) 65016011000036105 Hydrogen Peroxide (Orion) 78184011000036100 hydrogen peroxide 6% solution, 100 mL 77534011000036107 hydrogen peroxide 6% solution 69793011000036105 hydrogen peroxide +81116011000036100 Dizole 50 mg hard capsule, 7, blister pack 162640 80621011000036105 Dizole 50 mg hard capsule, 7 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81681011000036108 fluconazole 50 mg capsule, 7 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +43601011000036108 Simvabell 20 mg film-coated tablet, 300, bottle 100887 41107011000036109 Simvabell 20 mg film-coated tablet, 300 5386011000036102 Simvabell 20 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46091011000036106 simvastatin 20 mg tablet, 300 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +1006941000168107 Maxatan 10 mg orally disintegrating tablet, 2, blister pack 222209 1006931000168103 Maxatan 10 mg orally disintegrating tablet, 2 1006901000168105 Maxatan 10 mg orally disintegrating tablet 1006861000168104 Maxatan 1006861000168104 Maxatan 733581000168105 rizatriptan 10 mg orally disintegrating tablet, 2 733561000168101 rizatriptan 10 mg orally disintegrating tablet 83422011000036102 rizatriptan +19588011000036105 Seroquel 25 mg film-coated tablet, 60, blister pack 58112 12859011000036101 Seroquel 25 mg film-coated tablet, 60 6150011000036101 Seroquel 25 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +69242011000036102 Chlorhexidine Acetate (Baxter) 0.1% (1 g/L) irrigation solution, 10 x 1 L bottles 19463 67042011000036100 Chlorhexidine Acetate (Baxter) 0.1% (1 g/L) irrigation solution, 10 x 1 L bottles 65197011000036102 Chlorhexidine Acetate (Baxter) 0.1% (1 g/L) irrigation solution, 1 L bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71612011000036104 chlorhexidine acetate 0.1% (1 g/L) solution, 10 x 1 L bottles 70091011000036108 chlorhexidine acetate 0.1% (1 g/L) solution, bottle 21404011000036101 chlorhexidine +707851000168101 Entyvio 300 mg powder for injection, 1 vial 210048 707841000168103 Entyvio 300 mg powder for injection, 1 vial 707821000168109 Entyvio 300 mg powder for injection, 300 mg vial 707781000168104 Entyvio 707781000168104 Entyvio 707831000168107 vedolizumab 300 mg injection, 1 vial 707811000168102 vedolizumab 300 mg injection, vial 707801000168100 vedolizumab +870621000168104 Desven 100 mg modified release tablet, 7, blister pack 218076 870461000168107 Desven 100 mg modified release tablet, 7 870451000168105 Desven 100 mg modified release tablet 870331000168105 Desven 870331000168105 Desven 52879011000036106 desvenlafaxine 100 mg modified release tablet, 7 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +926762011000036104 Fluconazole-1 (Pharmacy Choice) 150 mg hard capsule, 1, blister pack 152687 926159011000036106 Fluconazole-1 (Pharmacy Choice) 150 mg hard capsule, 1 925647011000036102 Fluconazole-1 (Pharmacy Choice) 150 mg hard capsule 61471000168100 Fluconazole-1 (Pharmacy Choice) 61471000168100 Fluconazole-1 (Pharmacy Choice) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1115041000168107 Stilnoxium CR 12.5 mg modified release tablet, 20, blister pack 120714 1115031000168103 Stilnoxium CR 12.5 mg modified release tablet, 20 1114921000168101 Stilnoxium CR 12.5 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46187011000036107 zolpidem tartrate 12.5 mg modified release tablet, 20 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +928831011000036105 Rispernia 3 mg film-coated tablet, 60, bottle 127924 928193011000036108 Rispernia 3 mg film-coated tablet, 60 927852011000036108 Rispernia 3 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +52785011000036100 Influvac 2009 injection solution, 1 x 0.5 mL syringe 81465 52595011000036102 Influvac 2009 injection solution, 1 x 0.5 mL syringe 52436011000036106 Influvac 2009 injection solution, 0.5 mL syringe 64191000168109 Influvac 2009 64191000168109 Influvac 2009 52901011000036106 influenza trivalent adult vaccine 2009 injection, 1 x 0.5 mL syringe 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +21148011000036102 Zamhexal 500 microgram uncoated tablet, 50, blister pack 98664 14290011000036102 Zamhexal 500 microgram uncoated tablet, 50 7576011000036106 Zamhexal 500 microgram uncoated tablet 3157011000036108 Zamhexal 3157011000036108 Zamhexal 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +840641000168106 Ketorolac (Apo) 10 mg/mL injection solution, 5 x 1 mL ampoules 217078 840631000168102 Ketorolac (Apo) 10 mg/mL injection solution, 5 x 1 mL ampoules 840621000168100 Ketorolac (Apo) 10 mg/mL injection solution, ampoule 815801000168105 Ketorolac (Apo) 815801000168105 Ketorolac (Apo) 46294011000036104 ketorolac trometamol 10 mg/mL injection, 5 x 1 mL ampoules 45059011000036100 ketorolac trometamol 10 mg/mL injection, ampoule 44879011000036107 ketorolac +975751000168103 Amoxiclav 1000/200 (Juno) powder for injection, 50 x 1.2 g vials 269159 975741000168100 Amoxiclav 1000/200 (Juno) powder for injection, 50 x 1.2 g vials 975601000168108 Amoxiclav 1000/200 (Juno) powder for injection, 1.2 g vial 975581000168104 Amoxiclav 1000/200 (Juno) 975581000168104 Amoxiclav 1000/200 (Juno) 975731000168109 amoxicillin 1 g + clavulanic acid 200 mg injection, 50 x 1.2 g vials 975591000168101 amoxicillin 1 g + clavulanic acid 200 mg injection, 1.2 g vial 21360011000036101 amoxicillin + clavulanic acid +50258011000036102 XMTVI Maxamaid powder for oral liquid, 500 g, can 49489011000036106 XMTVI Maxamaid powder for oral liquid, 500 g 48538011000036102 XMTVI Maxamaid powder for oral liquid 29511000168102 XMTVI Maxamaid 29511000168102 XMTVI Maxamaid 51446011000036106 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 500 g 50959011000036106 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +925259011000036105 Sumatriptan (GA) 100 mg film-coated tablet, 2, blister pack 160195 924796011000036107 Sumatriptan (GA) 100 mg film-coated tablet, 2 924491011000036105 Sumatriptan (GA) 100 mg film-coated tablet 924385011000036103 Sumatriptan (GA) 924385011000036103 Sumatriptan (GA) 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +1110701000168103 Dormizol CR 12.5 mg modified release tablet, 21, blister pack 120715 1110691000168103 Dormizol CR 12.5 mg modified release tablet, 21 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46188011000036108 zolpidem tartrate 12.5 mg modified release tablet, 21 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +905101000168109 Amisulpride (AJS) 100 mg uncoated tablet, 90, blister pack 234695 905091000168104 Amisulpride (AJS) 100 mg uncoated tablet, 90 905041000168107 Amisulpride (AJS) 100 mg uncoated tablet 904571000168107 Amisulpride (AJS) 904571000168107 Amisulpride (AJS) 84640011000036104 amisulpride 100 mg tablet, 90 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +933212541000036105 Ranitidine (GN) 300 mg film-coated tablet, 10, blister pack 148526 933202221000036102 Ranitidine (GN) 300 mg film-coated tablet, 10 933195281000036109 Ranitidine (GN) 300 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 63277011000036103 ranitidine 300 mg tablet, 10 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +1054981000168103 Palexia SR 250 mg modified release tablet, 90, blister pack 165357 1054971000168101 Palexia SR 250 mg modified release tablet, 90 134511000036104 Palexia SR 250 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1054961000168107 tapentadol 250 mg modified release tablet, 90 134521000036106 tapentadol 250 mg modified release tablet 135971000036102 tapentadol +929073011000036107 Acpio 30 mg uncoated tablet, 28, blister pack 164426 928434011000036103 Acpio 30 mg uncoated tablet, 28 927978011000036100 Acpio 30 mg uncoated tablet 927772011000036107 Acpio 927772011000036107 Acpio 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +1114761000168108 Ketizenol 300 mg film-coated tablet, 60, blister pack 202257 1114751000168106 Ketizenol 300 mg film-coated tablet, 60 1114651000168102 Ketizenol 300 mg film-coated tablet 1114471000168108 Ketizenol 1114471000168108 Ketizenol 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1078391000168105 Atomoxetine (GPPL) 100 mg hard capsule, 28, blister pack 234836 1078381000168107 Atomoxetine (GPPL) 100 mg hard capsule, 28 1078331000168106 Atomoxetine (GPPL) 100 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +1076221000168103 Quetiapine (Auro) 150 mg film-coated tablet, 60, blister pack 172830 1076211000168105 Quetiapine (Auro) 150 mg film-coated tablet, 60 1075721000168102 Quetiapine (Auro) 150 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +60076011000036105 Ear Clear for Ear Ache ear drops, 12.5 mL, bottle 125789 56037011000036102 Ear Clear for Ear Ache ear drops, 12.5 mL 53765011000036105 Ear Clear for Ear Ache ear drops 53147011000036104 Ear Clear for Ear Ache 53147011000036104 Ear Clear for Ear Ache 63204011000036104 phenazone 5.4% + benzocaine 1.4% ear drops, 12.5 mL 61886011000036106 phenazone 5.4% + benzocaine 1.4% ear drops 61772011000036101 phenazone + benzocaine +13271000036108 Lanzek Zydis 10 mg wafer, 28, blister pack 167688 8421000036102 Lanzek Zydis 10 mg wafer, 28 2491000036102 Lanzek Zydis 10 mg wafer 60181000168101 Lanzek Zydis 60181000168101 Lanzek Zydis 27714011000036109 olanzapine 10 mg wafer, 28 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +18920011000036108 Alpha Keri lotion, 500 mL, bottle 24617 12228011000036103 Alpha Keri lotion, 500 mL 5061011000036105 Alpha Keri lotion 30572011000036100 Alpha Keri 30572011000036100 Alpha Keri 26997011000036108 liquid paraffin 15.2% + lanolin oil 0.56% lotion, 500 mL 22370011000036106 liquid paraffin 15.2% + lanolin oil 0.56% lotion 33631011000036102 liquid paraffin + lanolin oil +975791000168108 M-M-R II (1 x vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack 118449 975781000168105 M-M-R II (1 x vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack 831361000168106 M-M-R II (measles + mumps + rubella live vaccine) powder for injection, vial 706311000168107 M-M-R II 706311000168107 M-M-R II 975771000168107 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack 831351000168109 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +975791000168108 M-M-R II (1 x vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack 118449 975781000168105 M-M-R II (1 x vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack 975761000168101 M-M-R II (inert substance) diluent, 0.7 mL vial 706311000168107 M-M-R II 706311000168107 M-M-R II 975771000168107 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack 638321000168104 inert substance diluent, 0.7 mL vial 21220011000036103 inert substance +83181011000036103 Carvedilol (Generic Health) 6.25 mg uncoated tablet, 30, blister pack 152419 83127011000036104 Carvedilol (Generic Health) 6.25 mg uncoated tablet, 30 83072011000036109 Carvedilol (Generic Health) 6.25 mg uncoated tablet 83061011000036108 Carvedilol (Generic Health) 83061011000036108 Carvedilol (Generic Health) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +1112871000168104 Allopurinol (TN) 100 mg uncoated tablet, 30, bottle 269656 1112501000168107 Allopurinol (TN) 100 mg uncoated tablet, 30 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112491000168100 allopurinol 100 mg tablet, 30 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +12711000036101 Olanzapine (Chemmart) 2.5 mg film-coated tablet, 28, blister pack 158975 6911000036102 Olanzapine (Chemmart) 2.5 mg film-coated tablet, 28 1561000036103 Olanzapine (Chemmart) 2.5 mg film-coated tablet 23681000168105 Olanzapine (Chemmart) 23681000168105 Olanzapine (Chemmart) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +931590011000036101 Redichol 80 mg film-coated tablet, 500, bottle 163555 930751011000036108 Redichol 80 mg film-coated tablet, 500 930035011000036109 Redichol 80 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 52330011000036100 pravastatin sodium 80 mg tablet, 500 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +86188011000036101 Certican 1 mg uncoated tablet, 50, blister pack 97516 85795011000036101 Certican 1 mg uncoated tablet, 50 85407011000036100 Certican 1 mg uncoated tablet 4369011000036100 Certican 4369011000036100 Certican 86477011000036109 everolimus 1 mg tablet, 50 86248011000036105 everolimus 1 mg tablet 21615011000036103 everolimus +12631000036104 Olanzapine ODT (Apo) 20 mg orally disintegrating tablet, 28, bottle 158967 6951000036103 Olanzapine ODT (Apo) 20 mg orally disintegrating tablet, 28 1341000036105 Olanzapine ODT (Apo) 20 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +44398011000036107 Scheriproct 0.19% / 0.5% ointment, 10 g, tube 70062 41858011000036105 Scheriproct 0.19% / 0.5% ointment, 10 g 40228011000036105 Scheriproct 0.19% / 0.5% ointment 33811000168101 Scheriproct 0.19% / 0.5% 33811000168101 Scheriproct 0.19% / 0.5% 46664011000036103 prednisolone hexanoate 0.19% + cinchocaine hydrochloride 0.5% ointment, 10 g 45256011000036103 prednisolone hexanoate 0.19% + cinchocaine hydrochloride 0.5% ointment 44941011000036104 prednisolone hexanoate + cinchocaine +909121000168103 Plasma-Lyte 148 intravenous infusion injection, 500 mL bag 231424 909111000168105 Plasma-Lyte 148 intravenous infusion injection, 500 mL bag 909091000168102 Plasma-Lyte 148 intravenous infusion injection, 500 mL bag 894641000168108 Plasma-Lyte 148 894641000168108 Plasma-Lyte 148 872531000168104 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 500 mL bag 872511000168109 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, bag 81233011000036103 sodium chloride + sodium gluconate + sodium acetate trihydrate + potassium chloride + magnesium chloride +69611011000036100 Konakion MM Paediatric 2 mg/0.2 mL injection solution, 5 x 0.2 mL ampoules 71758 67410011000036102 Konakion MM Paediatric 2 mg/0.2 mL injection solution, 5 x 0.2 mL ampoules 65650011000036109 Konakion MM Paediatric 2 mg/0.2 mL injection solution, 0.2 mL ampoule 63681000168100 Konakion MM Paediatric 63681000168100 Konakion MM Paediatric 71945011000036104 phytomenadione 2 mg/0.2 mL injection, 5 x 0.2 mL ampoules 70257011000036100 phytomenadione 2 mg/0.2 mL injection, ampoule 69775011000036100 phytomenadione +146031000036107 Famciclovir (SCP) 250 mg film-coated tablet, 56, blister pack 176988 144791000036103 Famciclovir (SCP) 250 mg film-coated tablet, 56 143721000036104 Famciclovir (SCP) 250 mg film-coated tablet 143321000036100 Famciclovir (SCP) 143321000036100 Famciclovir (SCP) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1116891000168102 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 28, blister pack 161825 1116881000168100 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 28 1116831000168101 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 925431011000036106 amlodipine 5 mg + valsartan 320 mg tablet, 28 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +703831000168102 Temozolomide (Apo) 250 mg hard capsule, 5, bottle 231526 703821000168100 Temozolomide (Apo) 250 mg hard capsule, 5 703811000168107 Temozolomide (Apo) 250 mg hard capsule 703741000168100 Temozolomide (Apo) 703741000168100 Temozolomide (Apo) 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +808651000168104 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet, 10, blister pack 184807 808641000168101 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet, 10 808631000168105 Perindopril Arginine (Terry White Chemists) 2.5 mg film-coated tablet 807291000168108 Perindopril Arginine (Terry White Chemists) 807291000168108 Perindopril Arginine (Terry White Chemists) 727271000168102 perindopril arginine 2.5 mg tablet, 10 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +19880011000036109 Isoptin 80 mg film-coated tablet, 100, blister pack 65503 13127011000036108 Isoptin 80 mg film-coated tablet, 100 6410011000036108 Isoptin 80 mg film-coated tablet 4411000168109 Isoptin 4411000168109 Isoptin 27933011000036107 verapamil hydrochloride 80 mg tablet, 100 23257011000036109 verapamil hydrochloride 80 mg tablet 21287011000036109 verapamil +827731000168109 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 145887 827721000168106 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 827701000168102 Mencevax ACWY (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial 34311000168106 Mencevax ACWY 34311000168106 Mencevax ACWY 827711000168104 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 827691000168102 meningococcal quadrivalent polysaccharide vaccine injection, vial 827681000168100 meningococcal quadrivalent polysaccharide vaccine +827731000168109 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 145887 827721000168106 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 636621000168106 Mencevax ACWY (inert substance) diluent, 0.5 mL vial 34311000168106 Mencevax ACWY 34311000168106 Mencevax ACWY 827711000168104 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 634321000168107 inert substance diluent, 0.5 mL vial 21220011000036103 inert substance +960581000168104 Lacosamide (Apo) 200 mg film-coated tablet, 56, blister pack 230195 960571000168102 Lacosamide (Apo) 200 mg film-coated tablet, 56 960561000168108 Lacosamide (Apo) 200 mg film-coated tablet 959641000168109 Lacosamide (Apo) 959641000168109 Lacosamide (Apo) 84629011000036107 lacosamide 200 mg tablet, 56 84429011000036109 lacosamide 200 mg tablet 84408011000036109 lacosamide +1108211000168108 Midavel 5 mg/5 mL injection solution, 5 x 5 mL ampoules 207246 1108201000168105 Midavel 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1108171000168106 Midavel 5 mg/5 mL injection solution, 5 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +1078711000168100 Atomoxetine (GPPL) 40 mg hard capsule, 7, blister pack 234840 1078701000168103 Atomoxetine (GPPL) 40 mg hard capsule, 7 1078691000168103 Atomoxetine (GPPL) 40 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +860111000168106 Calcia plus Vitamin D 200 IU chewable tablet, 120, bottle 153218 860101000168108 Calcia plus Vitamin D 200 IU chewable tablet, 120 860081000168101 Calcia plus Vitamin D 200 IU chewable tablet 30241000168105 Calcia plus Vitamin D 200 IU 30241000168105 Calcia plus Vitamin D 200 IU 860091000168103 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet, 120 860071000168104 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet 733951000168109 calcium + colecalciferol +700029951000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 215494 87128011000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029951000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 61771 87128011000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029951000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 215494 87128011000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029951000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28, blister pack 61771 87128011000036109 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 87244011000036102 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +776251000168109 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 50 mL, bottle 231998 776241000168107 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 50 mL 776191000168107 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63604011000036101 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 50 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +1009911000168101 Clopidogrel (Ascent) 75 mg film-coated tablet, 28, blister pack 162330 1009901000168104 Clopidogrel (Ascent) 75 mg film-coated tablet, 28 1009891000168103 Clopidogrel (Ascent) 75 mg film-coated tablet 1009881000168101 Clopidogrel (Ascent) 1009881000168101 Clopidogrel (Ascent) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1106061000168100 Zolpibell 10 mg film-coated tablet, 20, blister pack 119087 1106051000168102 Zolpibell 10 mg film-coated tablet, 20 72953011000036101 Zolpibell 10 mg film-coated tablet 72921011000036103 Zolpibell 72921011000036103 Zolpibell 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1110741000168101 Dormizol CR 12.5 mg modified release tablet, 100, blister pack 120715 1110731000168105 Dormizol CR 12.5 mg modified release tablet, 100 1110581000168100 Dormizol CR 12.5 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46184011000036101 zolpidem tartrate 12.5 mg modified release tablet, 100 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +931757011000036108 Robitussin Chesty Cough Forte oral liquid solution, 100 mL, bottle 76032 930917011000036101 Robitussin Chesty Cough Forte oral liquid solution, 100 mL 930119011000036106 Robitussin Chesty Cough Forte oral liquid solution, 10 mL 44071000168100 Robitussin Chesty Cough Forte 44071000168100 Robitussin Chesty Cough Forte 63946011000036101 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid, 100 mL 62106011000036100 bromhexine hydrochloride 8 mg/10 mL + guaifenesin 200 mg/10 mL oral liquid 61758011000036100 bromhexine + guaifenesin +60933011000036105 Claratyne 10 mg effervescent tablet, 15, blister pack 62125 56887011000036106 Claratyne 10 mg effervescent tablet, 15 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63631011000036106 loratadine 10 mg effervescent tablet, 15 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +61224011000036101 Antifungal Clotrimazole (Soul Pattinson) 1% cream, 30 g, tube 76703 57160011000036101 Antifungal Clotrimazole (Soul Pattinson) 1% cream, 30 g 54220011000036101 Antifungal Clotrimazole (Soul Pattinson) 1% cream 53391011000036106 Antifungal Clotrimazole (Soul Pattinson) 53391011000036106 Antifungal Clotrimazole (Soul Pattinson) 63795011000036108 clotrimazole 1% cream, 30 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +933129011000036100 Elmendos 25 mg tablet, 21, blister pack 98073 932932011000036103 Elmendos 25 mg tablet, 21 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46985011000036100 lamotrigine 25 mg tablet, 21 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +86111011000036108 Levetiracetam (Apo) 500 mg tablet, 500, bottle 156321 85707011000036109 Levetiracetam (Apo) 500 mg tablet, 500 85345011000036105 Levetiracetam (Apo) 500 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 86438011000036107 levetiracetam 500 mg tablet, 500 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +43644011000036102 Sutent 12.5 mg capsule, 28, bottle 123139 41282011000036105 Sutent 12.5 mg capsule, 28 39790011000036106 Sutent 12.5 mg capsule 39776011000036101 Sutent 39776011000036101 Sutent 46217011000036106 sunitinib 12.5 mg capsule, 28 45034011000036100 sunitinib 12.5 mg capsule 44859011000036109 sunitinib +32542011000036108 Dalacin C 150 mg hard capsule, 24, blister pack 12275 32336011000036105 Dalacin C 150 mg hard capsule, 24 32213011000036102 Dalacin C 150 mg hard capsule 10481000168108 Dalacin C 10481000168108 Dalacin C 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +1084811000168105 Nervoderm 5% dermal patch, 30, sachet 280081 1084801000168107 Nervoderm 5% dermal patch, 30 1084751000168101 Nervoderm 5% dermal patch 1084741000168103 Nervoderm 1084741000168103 Nervoderm 139041000036107 lidocaine (lignocaine) 5% patch, 30 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +18989011000036109 Doryx 50 mg modified release capsule, 25, blister pack 29619 12299011000036100 Doryx 50 mg modified release capsule, 25 5210011000036106 Doryx 50 mg modified release capsule 4100011000036102 Doryx 4100011000036102 Doryx 27261011000036102 doxycycline 50 mg modified release capsule, 25 22617011000036109 doxycycline 50 mg modified release capsule 21784011000036108 doxycycline +825951000168108 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 72347 825941000168106 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 825811000168101 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 38281000168102 H-B-Vax II Paediatric 38281000168102 H-B-Vax II Paediatric 825931000168102 hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL vials 825801000168104 hepatitis B child vaccine 5 microgram/0.5 mL injection, vial 825191000168101 hepatitis B vaccine +836391000168109 Acarizax sublingual tablet, 30, blister pack 250392 836381000168106 Acarizax sublingual tablet, 30 836301000168103 Acarizax sublingual tablet 836231000168103 Acarizax 836231000168103 Acarizax 836371000168108 American house dust mite extract + European house dust mite extract (total 12 SQ-HDM) sublingual tablet, 30 836291000168104 American house dust mite extract + European house dust mite extract (total 12 SQ-HDM) sublingual tablet 83421011000036108 American house dust mite extract + European house dust mite extract +60624011000036106 Cortic 0.5% cream, 30 g, tube 19678 56582011000036108 Cortic 0.5% cream, 30 g 53987011000036106 Cortic 0.5% cream 40181000168106 Cortic 40181000168106 Cortic 63438011000036104 hydrocortisone acetate 0.5% cream, 30 g 61964011000036107 hydrocortisone acetate 0.5% cream 21231011000036107 hydrocortisone acetate +909481000168105 Chorit 10 mg film-coated tablet, 6, blister pack 179841 909471000168107 Chorit 10 mg film-coated tablet, 6 909391000168104 Chorit 10 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 841221000168106 atorvastatin 10 mg tablet, 6 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +68677011000036101 Mintec 0.2 mL enteric capsule, 60, blister pack 12993 66739011000036107 Mintec 0.2 mL enteric capsule, 60 65372011000036101 Mintec 0.2 mL enteric capsule 65155011000036104 Mintec 65155011000036104 Mintec 71405011000036108 peppermint oil 0.2 mL enteric capsule, 60 69997011000036106 peppermint oil 0.2 mL enteric capsule 69794011000036107 peppermint oil +1044111000168105 Pryzex 5 mg film-coated tablet, 7, blister pack 178991 1044101000168107 Pryzex 5 mg film-coated tablet, 7 1044091000168102 Pryzex 5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 933205031000036100 olanzapine 5 mg tablet, 7 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +661021000168103 Moclobemide (AN) 150 mg film-coated tablet, 60, blister pack 184084 661011000168105 Moclobemide (AN) 150 mg film-coated tablet, 60 661001000168107 Moclobemide (AN) 150 mg film-coated tablet 660961000168104 Moclobemide (AN) 660961000168104 Moclobemide (AN) 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +86068011000036109 Ezovir 125 mg film-coated tablet, 40, blister pack 157789 85732011000036102 Ezovir 125 mg film-coated tablet, 40 85364011000036101 Ezovir 125 mg film-coated tablet 85254011000036103 Ezovir 85254011000036103 Ezovir 27330011000036105 famciclovir 125 mg tablet, 40 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +933214711000036109 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 100, bottle 163528 933204311000036108 Pravastatin Sodium (DRLA) 40 mg film-coated tablet, 100 933195481000036105 Pravastatin Sodium (DRLA) 40 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +60264011000036102 Fexo (Amcal) 120 mg film-coated tablet, 20, blister pack 134667 56223011000036100 Fexo (Amcal) 120 mg film-coated tablet, 20 53844011000036104 Fexo (Amcal) 120 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 52884011000036101 fexofenadine hydrochloride 120 mg tablet, 20 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +12771000036107 Olanzapine (Apo) 5 mg film-coated tablet, 28, blister pack 158981 7031000036107 Olanzapine (Apo) 5 mg film-coated tablet, 28 2971000036107 Olanzapine (Apo) 5 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +55971000036106 Multaq 400 mg film-coated tablet, 20, blister pack 156373 52781000036101 Multaq 400 mg film-coated tablet, 20 48961000036109 Multaq 400 mg film-coated tablet 48081000036100 Multaq 48081000036100 Multaq 52791000036104 dronedarone 400 mg tablet, 20 48971000036101 dronedarone 400 mg tablet 56861000036100 dronedarone +1025021000168103 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 60, blister pack 193302 1025011000168105 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 60 1024941000168109 Pregabalin (Blooms The Chemist) 150 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1050651000168109 Bupannus 30 microgram/hour patch, 4, sachet 234727 1050641000168107 Bupannus 30 microgram/hour patch, 4 1050611000168108 Bupannus 30 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1048531000168102 buprenorphine 30 microgram/hour patch, 4 772901000168100 buprenorphine 30 microgram/hour patch 21232011000036101 buprenorphine +20034011000036105 Topamax Sprinkle 25 mg hard capsule, 60, bottle 167730 13266011000036104 Topamax Sprinkle 25 mg hard capsule, 60 6548011000036105 Topamax Sprinkle 25 mg hard capsule 20891000168103 Topamax Sprinkle 20891000168103 Topamax Sprinkle 27654011000036109 topiramate 25 mg capsule, 60 22991011000036104 topiramate 25 mg capsule 21458011000036101 topiramate +20034011000036105 Topamax Sprinkle 25 mg hard capsule, 60, bottle 69145 13266011000036104 Topamax Sprinkle 25 mg hard capsule, 60 6548011000036105 Topamax Sprinkle 25 mg hard capsule 20891000168103 Topamax Sprinkle 20891000168103 Topamax Sprinkle 27654011000036109 topiramate 25 mg capsule, 60 22991011000036104 topiramate 25 mg capsule 21458011000036101 topiramate +20325011000036108 Ceftriaxone (Sandoz) 2 g powder for injection, 1 vial 75960 13534011000036108 Ceftriaxone (Sandoz) 2 g powder for injection, 1 vial 6817011000036102 Ceftriaxone (Sandoz) 2 g powder for injection, 2 g vial 4058011000036101 Ceftriaxone (Sandoz) 4058011000036101 Ceftriaxone (Sandoz) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +933231891000036104 Microshield Angel Antimicrobial Hand 48.71% gel, 75 mL, bottle 76989 933226251000036100 Microshield Angel Antimicrobial Hand 48.71% gel, 75 mL 933221081000036105 Microshield Angel Antimicrobial Hand 48.71% gel 50001000168104 Microshield Angel Antimicrobial Hand 50001000168104 Microshield Angel Antimicrobial Hand 71962011000036104 ethanol 48.71% gel, 75 mL 70263011000036100 ethanol 48.71% gel 69846011000036106 ethanol +825791000168100 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials 90624 825781000168103 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials 825731000168104 H-B-Vax II preservative free 10 microgram/mL injection suspension, vial 27541000168105 H-B-Vax II 27541000168105 H-B-Vax II 825771000168101 hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL vials 825721000168102 hepatitis B adult vaccine 10 microgram/mL injection, vial 825191000168101 hepatitis B vaccine +933232071000036100 Sertraline (Sandoz) 100 mg film-coated tablet, 30, blister pack 98698 933226571000036107 Sertraline (Sandoz) 100 mg film-coated tablet, 30 933221501000036106 Sertraline (Sandoz) 100 mg film-coated tablet 933219201000036102 Sertraline (Sandoz) 933219201000036102 Sertraline (Sandoz) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +69722011000036107 Aerius 5 mg film-coated tablet, 25, blister pack 91116 67521011000036106 Aerius 5 mg film-coated tablet, 25 65686011000036102 Aerius 5 mg film-coated tablet 3651000168105 Aerius 3651000168105 Aerius 72023011000036107 desloratadine 5 mg tablet, 25 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +933212631000036104 Ciprofloxacin (GN) 250 mg film-coated tablet, 8, blister pack 148849 933202371000036109 Ciprofloxacin (GN) 250 mg film-coated tablet, 8 933195361000036109 Ciprofloxacin (GN) 250 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 932364011000036107 ciprofloxacin 250 mg tablet, 8 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +977801000168104 Pregabalin (Teva) 200 mg hard capsule, 56, blister pack 229596 977791000168100 Pregabalin (Teva) 200 mg hard capsule, 56 977741000168108 Pregabalin (Teva) 200 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1042061000168103 Atorvastatin (AS) 40 mg film-coated tablet, 40, blister pack 178541 1042051000168100 Atorvastatin (AS) 40 mg film-coated tablet, 40 1041981000168104 Atorvastatin (AS) 40 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841721000168101 atorvastatin 40 mg tablet, 40 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1119171000168102 Quetiapine (Actavis) 150 mg film-coated tablet, 60, blister pack 179901 1119161000168108 Quetiapine (Actavis) 150 mg film-coated tablet, 60 1119091000168102 Quetiapine (Actavis) 150 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 653441000168105 quetiapine 150 mg tablet, 60 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +939261000168106 Celecoxib (Pfizer) 200 mg hard capsule, 10, blister pack 211501 939251000168109 Celecoxib (Pfizer) 200 mg hard capsule, 10 939241000168107 Celecoxib (Pfizer) 200 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 745851000168104 celecoxib 200 mg capsule, 10 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +79677011000036104 Loxalate 20 mg film-coated tablet, 28, bottle 119968 79460011000036106 Loxalate 20 mg film-coated tablet, 28 79365011000036106 Loxalate 20 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +926826011000036107 Metformin 1000 (Apo) 1 g film-coated tablet, 10, blister pack 176509 926222011000036102 Metformin 1000 (Apo) 1 g film-coated tablet, 10 925684011000036100 Metformin 1000 (Apo) 1 g film-coated tablet 22791000168107 Metformin 1000 (Apo) 22791000168107 Metformin 1000 (Apo) 87828011000036100 metformin hydrochloride 1 g tablet, 10 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +17978011000036100 Ciloxan 0.3% ear drops solution, 5 mL, bottle 121897 11703011000036108 Ciloxan 0.3% ear drops solution, 5 mL 5488011000036105 Ciloxan 0.3% ear drops solution 3615011000036106 Ciloxan 3615011000036106 Ciloxan 26742011000036106 ciprofloxacin 0.3% ear drops, 5 mL 22135011000036108 ciprofloxacin 0.3% ear drops 21245011000036105 ciprofloxacin +55931000036109 Multaq 400 mg film-coated tablet, 180, bottle 156356 52681000036105 Multaq 400 mg film-coated tablet, 180 48961000036109 Multaq 400 mg film-coated tablet 48081000036100 Multaq 48081000036100 Multaq 52691000036107 dronedarone 400 mg tablet, 180 48971000036101 dronedarone 400 mg tablet 56861000036100 dronedarone +13351000036107 Quetiaccord 100 mg film-coated tablet, 90, blister pack 170855 8571000036102 Quetiaccord 100 mg film-coated tablet, 90 3671000036108 Quetiaccord 100 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +707931000168103 Alendrobell Plus D3 70 mg/140 microgram uncoated tablet, 4, blister pack 206938 707921000168101 Alendrobell Plus D3 70 mg/140 microgram uncoated tablet, 4 707911000168108 Alendrobell Plus D3 70 mg/140 microgram uncoated tablet 707901000168105 Alendrobell Plus D3 70 mg/140 microgram 707901000168105 Alendrobell Plus D3 70 mg/140 microgram 46290011000036109 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet, 4 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +772201000168106 Tranexamic Acid (Hospira) 1 g/10 mL injection solution, 10 mL ampoule 222160 772191000168108 Tranexamic Acid (Hospira) 1 g/10 mL injection solution, 10 mL ampoule 772181000168105 Tranexamic Acid (Hospira) 1 g/10 mL injection solution, 10 mL ampoule 772171000168107 Tranexamic Acid (Hospira) 772171000168107 Tranexamic Acid (Hospira) 932445011000036105 tranexamic acid 1 g/10 mL injection, 10 mL ampoule 931860011000036103 tranexamic acid 1 g/10 mL injection, ampoule 21746011000036108 tranexamic acid +1112751000168103 Allopurinol (TN) 100 mg uncoated tablet, 45, blister pack 269643 1112741000168100 Allopurinol (TN) 100 mg uncoated tablet, 45 1112481000168103 Allopurinol (TN) 100 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1112731000168109 allopurinol 100 mg tablet, 45 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +931562011000036100 Cholpra 10 mg film-coated tablet, 500, bottle 163542 930723011000036108 Cholpra 10 mg film-coated tablet, 500 930028011000036101 Cholpra 10 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932415011000036101 pravastatin sodium 10 mg tablet, 500 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +1072061000168102 Cold and Flu Relief PE Day/Night (Apohealth) (18 x Day tablets, 6 x Night tablets), 24, blister pack 227573 1072051000168104 Cold and Flu Relief PE Day/Night (Apohealth) (18 x Day tablets, 6 x Night tablets), 24 1072031000168105 Cold and Flu Relief PE Day/Night (Day) (Apohealth) film-coated tablet 1069961000168104 Cold and Flu Relief PE Day/Night (Apohealth) 1071951000168105 Cold and Flu Relief PE Day/Night (Day) (Apohealth) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1072061000168102 Cold and Flu Relief PE Day/Night (Apohealth) (18 x Day tablets, 6 x Night tablets), 24, blister pack 227573 1072051000168104 Cold and Flu Relief PE Day/Night (Apohealth) (18 x Day tablets, 6 x Night tablets), 24 1072041000168101 Cold and Flu Relief PE Day/Night (Night) (Apohealth) film-coated tablet 1069961000168104 Cold and Flu Relief PE Day/Night (Apohealth) 1071961000168107 Cold and Flu Relief PE Day/Night (Night) (Apohealth) 63171011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [18] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [6], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +975631000168101 Amoxiclav 1000/200 (Juno) powder for injection, 1.2 g vial 269159 975621000168104 Amoxiclav 1000/200 (Juno) powder for injection, 1.2 g vial 975601000168108 Amoxiclav 1000/200 (Juno) powder for injection, 1.2 g vial 975581000168104 Amoxiclav 1000/200 (Juno) 975581000168104 Amoxiclav 1000/200 (Juno) 975611000168106 amoxicillin 1 g + clavulanic acid 200 mg injection, 1.2 g vial 975591000168101 amoxicillin 1 g + clavulanic acid 200 mg injection, 1.2 g vial 21360011000036101 amoxicillin + clavulanic acid +43610011000036103 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 50 x 50 mL bags 123038 41274011000036105 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 50 x 50 mL bags 39883011000036104 Ciprofloxacin (Hospira) 100 mg/50 mL injection solution, 50 mL bag 39601011000036106 Ciprofloxacin (Hospira) 39601011000036106 Ciprofloxacin (Hospira) 46209011000036101 ciprofloxacin 100 mg/50 mL injection, 50 x 50 mL bags 45031011000036103 ciprofloxacin 100 mg/50 mL injection, bag 21245011000036105 ciprofloxacin +699271000168106 Actilyse Cathflo (5 x 2 mg vials, 5 x 2.2 mL inert diluent ampoules), 1 pack 142795 699261000168100 Actilyse Cathflo (5 x 2 mg vials, 5 x 2.2 mL inert diluent ampoules), 1 pack 699241000168104 Actilyse Cathflo (inert substance) diluent, 2.2 mL ampoule 699201000168101 Actilyse Cathflo 699201000168101 Actilyse Cathflo 699251000168102 alteplase 2 mg injection [5 vials] (&) inert substance diluent [5 x 2.2 mL ampoules], 1 pack 699231000168108 inert substance diluent, 2.2 mL ampoule 21220011000036103 inert substance +699271000168106 Actilyse Cathflo (5 x 2 mg vials, 5 x 2.2 mL inert diluent ampoules), 1 pack 142795 699261000168100 Actilyse Cathflo (5 x 2 mg vials, 5 x 2.2 mL inert diluent ampoules), 1 pack 699221000168105 Actilyse Cathflo (alteplase 2 mg) powder for injection, 2 mg vial 699201000168101 Actilyse Cathflo 699201000168101 Actilyse Cathflo 699251000168102 alteplase 2 mg injection [5 vials] (&) inert substance diluent [5 x 2.2 mL ampoules], 1 pack 699211000168103 alteplase 2 mg injection, vial 44903011000036108 alteplase +1119131000168100 Quetiapine (Actavis) 150 mg film-coated tablet, 30, blister pack 179901 1119121000168103 Quetiapine (Actavis) 150 mg film-coated tablet, 30 1119091000168102 Quetiapine (Actavis) 150 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 1112651000168107 quetiapine 150 mg tablet, 30 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +60701011000036107 Dimetapp PE Sinus Cold uncoated tablet, 12, blister pack 43458 56659011000036104 Dimetapp PE Sinus Cold uncoated tablet, 12 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63491011000036103 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 12 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +18526011000036102 Physiotens 400 microgram film-coated tablet, 30, blister pack 114121 11459011000036105 Physiotens 400 microgram film-coated tablet, 30 5846011000036107 Physiotens 400 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 26657011000036102 moxonidine 400 microgram tablet, 30 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +931435011000036108 Iodine Weak (David Craig) solution, 500 mL, bottle 14214 930614011000036106 Iodine Weak (David Craig) solution, 500 mL 929973011000036104 Iodine Weak (David Craig) solution 29381000168101 Iodine Weak (David Craig) 29381000168101 Iodine Weak (David Craig) 932370011000036106 iodine 2.5% + potassium iodide 2.5% solution, 500 mL 931836011000036107 iodine 2.5% + potassium iodide 2.5% solution 61782011000036105 iodine +700029871000036108 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11272011000036104 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5104011000036101 Triphasil (inert substance) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029871000036108 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11272011000036104 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5079011000036101 Triphasil (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029871000036108 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11272011000036104 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 5101011000036104 Triphasil (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +700029871000036108 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 11272011000036104 Triphasil (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 4527011000036104 Triphasil (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 3136011000036109 Triphasil 3136011000036109 Triphasil 28347011000036104 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +13411000036103 Anastrol 1 mg film-coated tablet, 30, blister pack 170001 8471000036103 Anastrol 1 mg film-coated tablet, 30 1721000036101 Anastrol 1 mg film-coated tablet 1061000036108 Anastrol 1061000036108 Anastrol 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +61018011000036108 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 100 mL, bottle 66734 56961011000036106 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 100 mL 54141011000036109 Robitussin Dry Cough Forte 30 mg/10 mL oral liquid solution, 10 mL 53246011000036104 Robitussin Dry Cough Forte 53246011000036104 Robitussin Dry Cough Forte 63659011000036109 dextromethorphan hydrobromide monohydrate 30 mg/10 mL oral liquid, 100 mL 62037011000036104 dextromethorphan hydrobromide monohydrate 30 mg/10 mL oral liquid 61744011000036109 dextromethorphan +725011000168108 HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 725001000168105 HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 724981000168102 HCU Anamix Junior LQ oral liquid solution, 125 mL bottle 36621000168100 HCU Anamix Junior LQ 36621000168100 HCU Anamix Junior LQ 724991000168104 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles 724971000168100 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle 87752011000036102 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid +923864011000036100 Salofalk 1 g moulded suppository, 30, strip pack 162341 923410011000036104 Salofalk 1 g moulded suppository, 30 923073011000036105 Salofalk 1 g moulded suppository 12771000168100 Salofalk 12771000168100 Salofalk 924190011000036104 mesalazine 1 g suppository, 30 23566011000036106 mesalazine 1 g suppository 21351011000036101 mesalazine +38571000036109 Escitalopram (Lupin) 15 mg film-coated tablet, 30, bottle 165857 34911000036103 Escitalopram (Lupin) 15 mg film-coated tablet, 30 32901000036108 Escitalopram (Lupin) 15 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 34921000036105 escitalopram 15 mg tablet, 30 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +933215351000036108 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 500, bottle 163527 933204291000036107 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 500 933195461000036100 Pravastatin Sodium (DRLA) 20 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932417011000036106 pravastatin sodium 20 mg tablet, 500 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +928865011000036100 Risperidone (Pharmacor) 2 mg film-coated tablet, 60, blister pack 139812 928227011000036105 Risperidone (Pharmacor) 2 mg film-coated tablet, 60 927885011000036109 Risperidone (Pharmacor) 2 mg film-coated tablet 927799011000036107 Risperidone (Pharmacor) 927799011000036107 Risperidone (Pharmacor) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +68823011000036101 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 880 g, jar 10184 66489011000036106 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 880 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71222011000036106 psyllium husk powder 312.8 mg/g powder for oral liquid, 880 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +44570011000036100 Gabapentin (Chemmart) 400 mg hard capsule, 100, blister pack 81779 42023011000036101 Gabapentin (Chemmart) 400 mg hard capsule, 100 40325011000036106 Gabapentin (Chemmart) 400 mg hard capsule 39677011000036105 Gabapentin (Chemmart) 39677011000036105 Gabapentin (Chemmart) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +19074011000036109 Sandostatin 500 microgram/mL injection solution, 5 x 1 mL ampoules 42191 12382011000036102 Sandostatin 500 microgram/mL injection solution, 5 x 1 mL ampoules 5820011000036107 Sandostatin 500 microgram/mL injection solution, ampoule 40101000168103 Sandostatin 40101000168103 Sandostatin 27089011000036109 octreotide 500 microgram/mL injection, 5 x 1 mL ampoules 22458011000036102 octreotide 500 microgram/mL injection, ampoule 21316011000036104 octreotide +933231991000036106 Paroxetine (Sandoz) 20 mg film-coated tablet, 30, blister pack 82551 42052011000036107 Paroxetine (Sandoz) 20 mg film-coated tablet, 30 40335011000036108 Paroxetine (Sandoz) 20 mg film-coated tablet 39721011000036107 Paroxetine (Sandoz) 39721011000036107 Paroxetine (Sandoz) 27998011000036105 paroxetine 20 mg tablet, 30 23321011000036105 paroxetine 20 mg tablet 21618011000036109 paroxetine +1012001000168105 Irbesartan (Apotex) 150 mg film-coated tablet, 98, blister pack 169789 1011991000168108 Irbesartan (Apotex) 150 mg film-coated tablet, 98 1011841000168109 Irbesartan (Apotex) 150 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777701000168100 irbesartan 150 mg tablet, 98 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +746441000168109 Ceftazidime (Mylan) 1 g powder for injection, 1 vial 154825 746431000168100 Ceftazidime (Mylan) 1 g powder for injection, 1 vial 746421000168103 Ceftazidime (Mylan) 1 g powder for injection, vial 746141000168100 Ceftazidime (Mylan) 746141000168100 Ceftazidime (Mylan) 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +19957011000036106 Dilaudid 1 mg/mL oral liquid, 473 mL, bottle 67360 13200011000036101 Dilaudid 1 mg/mL oral liquid, 473 mL 6483011000036103 Dilaudid 1 mg/mL oral liquid 3117011000036100 Dilaudid 3117011000036100 Dilaudid 27612011000036109 hydromorphone hydrochloride 1 mg/mL oral liquid, 473 mL 22951011000036108 hydromorphone hydrochloride 1 mg/mL oral liquid 21480011000036107 hydromorphone +862211000168102 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120, bottle 196978 862201000168100 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120 862171000168104 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet 14051000168104 Caltrate 600 mg with Vitamin D 500 IU 14051000168104 Caltrate 600 mg with Vitamin D 500 IU 734041000168109 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 120 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +759411000168103 Clozaril 25 mg uncoated tablet, 28, blister pack 50510 759401000168101 Clozaril 25 mg uncoated tablet, 28 7036011000036106 Clozaril 25 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 759391000168103 clozapine 25 mg tablet, 28 23444011000036102 clozapine 25 mg tablet 21222011000036104 clozapine +47251000036100 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 10 x 0.72 mL syringes 61937 46771000036100 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 10 x 0.72 mL syringes 40176011000036109 Fragmin 18 000 anti-Xa units/0.72 mL injection solution, 0.72 mL syringe 3790011000036107 Fragmin 3790011000036107 Fragmin 46781000036103 dalteparin sodium 18 000 anti-Xa units/0.72 mL injection, 10 x 0.72 mL syringes 45212011000036106 dalteparin sodium 18 000 anti-Xa units/0.72 mL injection, syringe 21450011000036103 dalteparin sodium +929107011000036104 Pioglitazone (Chemmart) 15 mg uncoated tablet, 28, blister pack 166918 928468011000036100 Pioglitazone (Chemmart) 15 mg uncoated tablet, 28 927991011000036102 Pioglitazone (Chemmart) 15 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +43567011000036107 Keppra 500 mg film-coated tablet, 10, blister pack 120509 41226011000036103 Keppra 500 mg film-coated tablet, 10 6902011000036106 Keppra 500 mg film-coated tablet 3677011000036106 Keppra 3677011000036106 Keppra 46171011000036107 levetiracetam 500 mg tablet, 10 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +744431000168107 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 33647 744421000168109 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 744381000168100 Diane-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 744371000168103 Diane-35 ED 744371000168103 Diane-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +744431000168107 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 33647 744421000168109 Diane-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 744391000168102 Diane-35 ED (inert substance) sugar coated tablet 744371000168103 Diane-35 ED 744371000168103 Diane-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +874961000168105 Boostrix injection suspension, 0.5 mL vial 158362 874951000168108 Boostrix injection suspension, 0.5 mL vial 874931000168102 Boostrix injection suspension, 0.5 mL vial 73699011000036103 Boostrix 73699011000036103 Boostrix 874941000168106 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL vial 874921000168100 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL vial 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +1046401000168109 Zaldiar effervescent tablet, 100, strip pack 179678 1046391000168107 Zaldiar effervescent tablet, 100 1046221000168104 Zaldiar effervescent tablet 1027811000168106 Zaldiar 1027811000168106 Zaldiar 1046381000168109 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet, 100 1046211000168106 tramadol hydrochloride 37.5 mg + paracetamol 325 mg effervescent tablet 680581000168102 tramadol + paracetamol +81811000036102 Rabeprazole Sodium (Sandoz) 20 mg enteric tablet, 30, blister pack 173080 80081000036107 Rabeprazole Sodium (Sandoz) 20 mg enteric tablet, 30 78781000036101 Rabeprazole Sodium (Sandoz) 20 mg enteric tablet 77811000036102 Rabeprazole Sodium (Sandoz) 77811000036102 Rabeprazole Sodium (Sandoz) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +977761000168107 Pregabalin (Teva) 200 mg hard capsule, 14, blister pack 229596 977751000168105 Pregabalin (Teva) 200 mg hard capsule, 14 977741000168108 Pregabalin (Teva) 200 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855221000168106 pregabalin 200 mg capsule, 14 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1116931000168105 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 56, blister pack 161825 1116921000168107 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet, 56 1116831000168101 Valsartan/Amlodipine 320/5 (Novartis) film-coated tablet 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 1116821000168104 Valsartan/Amlodipine 320/5 (Novartis) 925433011000036107 amlodipine 5 mg + valsartan 320 mg tablet, 56 925385011000036108 amlodipine 5 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +59922011000036104 Paracetamol (Alphapharm) 500 mg uncoated tablet, 24, blister pack 118824 55884011000036103 Paracetamol (Alphapharm) 500 mg uncoated tablet, 24 53628011000036104 Paracetamol (Alphapharm) 500 mg uncoated tablet 53179011000036107 Paracetamol (Alphapharm) 53179011000036107 Paracetamol (Alphapharm) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +55881000036100 Tortrigine DT 200 mg tablet, 56, blister pack 150770 51341000036102 Tortrigine DT 200 mg tablet, 56 49331000036106 Tortrigine DT 200 mg tablet 36451000168106 Tortrigine DT 36451000168106 Tortrigine DT 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +772161000168101 Claratyne 10 mg uncoated tablet, 75, blister pack 34698 772151000168103 Claratyne 10 mg uncoated tablet, 75 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 772141000168100 loratadine 10 mg tablet, 75 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +37459011000036106 Frisium 10 mg uncoated tablet, 5, blister pack 12400 36729011000036103 Frisium 10 mg uncoated tablet, 5 36047011000036109 Frisium 10 mg uncoated tablet 35956011000036100 Frisium 35956011000036100 Frisium 38639011000036102 clobazam 10 mg tablet, 5 37895011000036106 clobazam 10 mg tablet 37793011000036107 clobazam +12951000036100 Olanzapine ODT (Apo) 10 mg orally disintegrating tablet, 28, blister pack 159001 7061000036101 Olanzapine ODT (Apo) 10 mg orally disintegrating tablet, 28 1391000036104 Olanzapine ODT (Apo) 10 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +18132011000036108 Tramedo 50 mg capsule, 20, blister pack 114197 11460011000036106 Tramedo 50 mg capsule, 20 5066011000036100 Tramedo 50 mg capsule 4122011000036105 Tramedo 4122011000036105 Tramedo 28222011000036107 tramadol hydrochloride 50 mg capsule, 20 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +977641000168103 Pregabalin (Teva) 225 mg hard capsule, 21, blister pack 229599 977631000168107 Pregabalin (Teva) 225 mg hard capsule, 21 977391000168104 Pregabalin (Teva) 225 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855411000168103 pregabalin 225 mg capsule, 21 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +842971000168109 Ridaura 3 mg film-coated tablet, 15, bottle 13000 842961000168103 Ridaura 3 mg film-coated tablet, 15 4694011000036106 Ridaura 3 mg film-coated tablet 4425011000036101 Ridaura 4425011000036101 Ridaura 842951000168100 auranofin 3 mg tablet, 15 22185011000036103 auranofin 3 mg tablet 21797011000036101 auranofin +61635011000036103 Paralgin Tabsule 500 mg uncoated tablet, 12, blister pack 97039 57557011000036103 Paralgin Tabsule 500 mg uncoated tablet, 12 54350011000036106 Paralgin Tabsule 500 mg uncoated tablet 16671000168105 Paralgin Tabsule 16671000168105 Paralgin Tabsule 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +883401000168108 Betahistine (ZP) 8 mg tablet, 10, blister pack 231716 883391000168106 Betahistine (ZP) 8 mg tablet, 10 883381000168108 Betahistine (ZP) 8 mg tablet 883371000168105 Betahistine (ZP) 883371000168105 Betahistine (ZP) 883091000168108 betahistine dihydrochloride 8 mg tablet, 10 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +933214871000036109 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 100, bottle 163566 933204471000036109 Pravastatin Sodium (RZ) 40 mg film-coated tablet, 100 933195541000036102 Pravastatin Sodium (RZ) 40 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932418011000036107 pravastatin sodium 40 mg tablet, 100 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +66481000036102 Revasc (10 x 15 mg vials, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 57639 64061000036108 Revasc (10 x 15 mg vials, 10 x 1 mL inert diluent ampoules), 1 pack 633021000168107 Revasc (inert substance) diluent, 1 mL ampoule 60321000036105 Revasc 60321000036105 Revasc 64071000036100 desirudin 15 mg injection [10 vials] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +66481000036102 Revasc (10 x 15 mg vials, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 57639 64061000036108 Revasc (10 x 15 mg vials, 10 x 1 mL inert diluent ampoules), 1 pack 61001000036106 Revasc (desirudin 15 mg) powder for injection, 15 mg vial 60321000036105 Revasc 60321000036105 Revasc 64071000036100 desirudin 15 mg injection [10 vials] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 61021000036101 desirudin 15 mg injection, vial 66811000036107 desirudin +66521000036102 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 240 mg/5 mL oral liquid solution, 100 mL, bottle 59848 64121000036100 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 240 mg/5 mL oral liquid solution, 100 mL 61661000036101 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 240 mg/5 mL oral liquid solution, 5 mL 26031000168105 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 26031000168105 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +18449011000036101 Lamogine 25 mg tablet, 56, blister pack 114258 11463011000036103 Lamogine 25 mg tablet, 56 5029011000036100 Lamogine 25 mg tablet 2998011000036105 Lamogine 2998011000036105 Lamogine 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +1080721000168100 Alpha Keri lotion, 375 mL, bottle 24617 1080711000168107 Alpha Keri lotion, 375 mL 5061011000036105 Alpha Keri lotion 30572011000036100 Alpha Keri 30572011000036100 Alpha Keri 1080701000168109 liquid paraffin 15.2% + lanolin oil 0.56% lotion, 375 mL 22370011000036106 liquid paraffin 15.2% + lanolin oil 0.56% lotion 33631011000036102 liquid paraffin + lanolin oil +929026011000036102 Risedronate (Apo) 35 mg film-coated tablet, 12, blister pack 160642 928387011000036109 Risedronate (Apo) 35 mg film-coated tablet, 12 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1007981000168104 Zavedos 25 mg hard capsule, 1, bottle 73518 1007971000168102 Zavedos 25 mg hard capsule, 1 1007951000168106 Zavedos 25 mg hard capsule 4217011000036101 Zavedos 4217011000036101 Zavedos 1007961000168108 idarubicin hydrochloride 25 mg capsule, 1 1007941000168109 idarubicin hydrochloride 25 mg capsule 21720011000036108 idarubicin +1108051000168101 Midavel 50 mg/10 mL injection solution, 10 mL ampoule 207226 1108041000168103 Midavel 50 mg/10 mL injection solution, 10 mL ampoule 1108031000168107 Midavel 50 mg/10 mL injection solution, 10 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 664091000168103 midazolam 50 mg/10 mL injection, 10 mL ampoule 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +50575011000036104 Durotram XR (once a day) 300 mg modified release tablet, 5, blister pack 134823 49609011000036109 Durotram XR (once a day) 300 mg modified release tablet, 5 48788011000036108 Durotram XR (once a day) 300 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51512011000036107 tramadol hydrochloride 300 mg modified release tablet, 5 50988011000036106 tramadol hydrochloride 300 mg modified release tablet 21486011000036105 tramadol +82384011000036101 Duocover 75 mg/100 mg film-coated tablet, 28, blister pack 151075 82173011000036102 Duocover 75 mg/100 mg film-coated tablet, 28 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82547011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 28 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +923691011000036109 Grandicrit 10 000 units/mL injection solution, 6 x 1 mL syringes 147848 923307011000036109 Grandicrit 10 000 units/mL injection solution, 6 x 1 mL syringes 922992011000036106 Grandicrit 10 000 units/mL injection solution, syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924122011000036109 epoetin lambda 10 000 units/mL injection, 6 x 1 mL syringes 923951011000036101 epoetin lambda 10 000 units/mL injection, syringe 923930011000036107 epoetin lambda +69568011000036102 Dettol Antiseptic Liquid 4.8% solution, 300 mL, bottle 61404 67368011000036107 Dettol Antiseptic Liquid 4.8% solution, 300 mL 65632011000036107 Dettol Antiseptic Liquid 4.8% solution 65186011000036101 Dettol Antiseptic Liquid 65186011000036101 Dettol Antiseptic Liquid 71908011000036100 chloroxylenol 4.8% solution, 300 mL 70243011000036106 chloroxylenol 4.8% solution 69808011000036100 chloroxylenol +733511000168104 Fluorescein (Serb) 500 mg/5 mL injection solution, 10 x 5 mL ampoules 124565 733501000168102 Fluorescein (Serb) 500 mg/5 mL injection solution, 10 x 5 mL ampoules 733471000168108 Fluorescein (Serb) 500 mg/5 mL injection solution, 5 mL ampoule 733461000168102 Fluorescein (Serb) 733461000168102 Fluorescein (Serb) 46241011000036108 fluorescein sodium 500 mg/5 mL injection, 10 x 5 mL ampoules 45043011000036101 fluorescein sodium 500 mg/5 mL injection, ampoule 44934011000036102 fluorescein +69645011000036107 Goanna Arthritis 10% cream, 150 g, tube 78992 67444011000036101 Goanna Arthritis 10% cream, 150 g 65668011000036100 Goanna Arthritis 10% cream 65065011000036104 Goanna Arthritis 65065011000036104 Goanna Arthritis 71972011000036106 trolamine salicylate 10% cream, 150 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +1101631000168108 Odomzo 200 mg hard capsule, 30, bottle 292262 965781000168104 Odomzo 200 mg hard capsule, 30 965721000168103 Odomzo 200 mg hard capsule 965691000168107 Odomzo 965691000168107 Odomzo 965771000168102 sonidegib 200 mg capsule, 30 965711000168105 sonidegib 200 mg capsule 965701000168107 sonidegib +44244011000036102 Colese 135 mg film-coated tablet, 30, blister pack 59746 41716011000036101 Colese 135 mg film-coated tablet, 30 6212011000036108 Colese 135 mg film-coated tablet 3274011000036102 Colese 3274011000036102 Colese 46527011000036108 mebeverine hydrochloride 135 mg tablet, 30 23230011000036107 mebeverine hydrochloride 135 mg tablet 21801011000036109 mebeverine +1015931000168106 Xifaxan 550 mg film-coated tablet, 14, blister pack 183411 1015921000168108 Xifaxan 550 mg film-coated tablet, 14 93521000036107 Xifaxan 550 mg film-coated tablet 93311000036109 Xifaxan 93311000036109 Xifaxan 1015911000168101 rifaximin 550 mg tablet, 14 93531000036109 rifaximin 550 mg tablet 95821000036105 rifaximin +806321000168103 Uptravi 1.6 mg film-coated tablet, 60, blister pack 234164 806311000168105 Uptravi 1.6 mg film-coated tablet, 60 806291000168106 Uptravi 1.6 mg film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 806301000168107 selexipag 1.6 mg tablet, 60 806281000168108 selexipag 1.6 mg tablet 805661000168108 selexipag +79694011000036102 Sinus and Pain Relief (Nyal) tablet, 24, blister pack 157364 79510011000036101 Sinus and Pain Relief (Nyal) tablet, 24 79389011000036106 Sinus and Pain Relief (Nyal) tablet 79352011000036108 Sinus and Pain Relief (Nyal) 79352011000036108 Sinus and Pain Relief (Nyal) 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +1012241000168103 Irbesartan (Apotex) 75 mg film-coated tablet, 7, blister pack 169798 1012231000168107 Irbesartan (Apotex) 75 mg film-coated tablet, 7 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 738121000168106 irbesartan 75 mg tablet, 7 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +1108071000168105 Midavel 50 mg/10 mL injection solution, 5 x 10 mL ampoules 207226 1108061000168104 Midavel 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1108031000168107 Midavel 50 mg/10 mL injection solution, 10 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +55841000036109 Biostate 1000 IU FVIII/2000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 150657 51291000036104 Biostate 1000 IU FVIII/2000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 49571000036100 Biostate 1000 IU FVIII/2000 IU VWF (factor VIII 1000 units + von Willebrand factor 2000 units) powder for injection, 1 vial 60121000168100 Biostate 1000 IU FVIII/2000 IU VWF 60121000168100 Biostate 1000 IU FVIII/2000 IU VWF 51301000036100 factor VIII 1000 units + von Willebrand factor 2000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 49581000036103 factor VIII 1000 units + von Willebrand factor 2000 units injection, 1 vial 69809011000036108 factor VIII + von Willebrand factor +55841000036109 Biostate 1000 IU FVIII/2000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 150657 51291000036104 Biostate 1000 IU FVIII/2000 IU VWF (1 x vial, 1 x 10 mL inert diluent vial), 1 pack 921971000168108 Biostate (inert substance) diluent, 10 mL vial 60121000168100 Biostate 1000 IU FVIII/2000 IU VWF 900871000168100 Biostate 51301000036100 factor VIII 1000 units + von Willebrand factor 2000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +933215191000036102 Ondron ODT 8 mg orally disintegrating tablet, 4, blister pack 163654 933204721000036100 Ondron ODT 8 mg orally disintegrating tablet, 4 933195661000036102 Ondron ODT 8 mg orally disintegrating tablet 10891000168108 Ondron ODT 10891000168108 Ondron ODT 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +44167011000036103 Merrem IV 1 g powder for injection, 10 vials 54674 41643011000036109 Merrem IV 1 g powder for injection, 10 vials 40120011000036105 Merrem IV 1 g powder for injection, vial 45961000168108 Merrem IV 45961000168108 Merrem IV 46462011000036109 meropenem 1 g injection, 10 vials 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +44724011000036105 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 95042 42169011000036102 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent vial), 1 pack 40374011000036106 Luveris (lutropin alfa 75 units) powder for injection, 75 units vial 39654011000036102 Luveris 39654011000036102 Luveris 46930011000036101 lutropin alfa 75 units injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 45349011000036102 lutropin alfa 75 units injection, vial 44973011000036102 lutropin alfa +44724011000036105 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent vial), 1 pack, composite pack 95042 42169011000036102 Luveris (1 x 75 units vial, 1 x 1 mL inert diluent vial), 1 pack 633371000168106 Luveris (inert substance) diluent, 1 mL vial 39654011000036102 Luveris 39654011000036102 Luveris 46930011000036101 lutropin alfa 75 units injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 629831000168101 inert substance diluent, 1 mL vial 21220011000036103 inert substance +1046121000168108 Dermaveen Extra Gentle Soap Free Wash 1% application, 250 mL, bottle 1046111000168101 Dermaveen Extra Gentle Soap Free Wash 1% application, 250 mL 1046101000168104 Dermaveen Extra Gentle Soap Free Wash 1% application 1046091000168109 Dermaveen Extra Gentle Soap Free Wash 1046091000168109 Dermaveen Extra Gentle Soap Free Wash 167841000036102 colloidal oatmeal 1% application, 250 mL 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +60710011000036102 Codiphen uncoated tablet, 96, bottle 43907 56668011000036101 Codiphen uncoated tablet, 96 54026011000036106 Codiphen uncoated tablet 53317011000036102 Codiphen 53317011000036102 Codiphen 63499011000036104 aspirin 250 mg + codeine phosphate hemihydrate 8 mg tablet, 96 61993011000036107 aspirin 250 mg + codeine phosphate hemihydrate 8 mg tablet 21831011000036102 aspirin + codeine +926581000168108 Progesterone (Orion) 50 mg moulded pessary, 15, jar 21194 926571000168105 Progesterone (Orion) 50 mg moulded pessary, 15 926551000168101 Progesterone (Orion) 50 mg moulded pessary 3508011000036108 Progesterone (Orion) 3508011000036108 Progesterone (Orion) 926561000168104 progesterone 50 mg pessary, 15 926541000168103 progesterone 50 mg pessary 21412011000036108 progesterone +911451000168100 Cavstat 20 mg film-coated tablet, 20, blister pack 234514 911441000168102 Cavstat 20 mg film-coated tablet, 20 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911431000168106 rosuvastatin 20 mg tablet, 20 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +1110221000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 28, blister pack 219061 1110211000168109 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 28 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82547011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 28 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +74828011000036108 Lignocaine 0.4% in Glucose 5% (Baxter) intravenous infusion injection, 500 mL bag 19437 74315011000036106 Lignocaine 0.4% in Glucose 5% (Baxter) intravenous infusion injection, 500 mL bag 36214011000036101 Lignocaine 0.4% in Glucose 5% (Baxter) intravenous infusion injection, 500 mL bag 19321000168106 Lignocaine 0.4% in Glucose 5% (Baxter) 19321000168106 Lignocaine 0.4% in Glucose 5% (Baxter) 75425011000036100 lidocaine (lignocaine) hydrochloride 0.4% (2 g/500 mL) + glucose 5% (25 g/500 mL) injection, 500 mL bag 37984011000036101 lidocaine (lignocaine) hydrochloride 0.4% (2 g/500 mL) + glucose 5% (25 g/500 mL) injection, bag 37736011000036106 lidocaine (lignocaine) + glucose +60393011000036107 Vinorelbine (Link Medical Products) 10 mg/mL concentrated injection, 1 mL vial 144030 56352011000036104 Vinorelbine (Link Medical Products) 10 mg/mL concentrated injection, 1 mL vial 53887011000036101 Vinorelbine (Link Medical Products) 10 mg/mL concentrated injection, vial 53400011000036107 Vinorelbine (Link Medical Products) 53400011000036107 Vinorelbine (Link Medical Products) 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +34632011000036106 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 118335 34222011000036105 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 33971011000036101 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 33950011000036106 Metronidazole (Sandoz) 33950011000036106 Metronidazole (Sandoz) 35102011000036107 metronidazole 500 mg/100 mL (0.5%) injection, 100 mL vial 34850011000036104 metronidazole 500 mg/100 mL (0.5%) injection, vial 21482011000036106 metronidazole +931418011000036106 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet, 48, blister pack 119293 930571011000036107 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet, 48 929944011000036103 Ibuprofen Pain Relief (Chemmart) 200 mg film-coated tablet 929904011000036107 Ibuprofen Pain Relief (Chemmart) 929904011000036107 Ibuprofen Pain Relief (Chemmart) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +698991000168106 Coversyl 10 mg film-coated tablet, 30, bottle 101569 11219011000036100 Coversyl 10 mg film-coated tablet, 30 5959011000036107 Coversyl 10 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +874721000168102 Beprol 1.25 mg film-coated tablet, 100, blister pack 175924 874711000168109 Beprol 1.25 mg film-coated tablet, 100 874661000168104 Beprol 1.25 mg film-coated tablet 15251000036104 Beprol 15251000036104 Beprol 46789011000036109 bisoprolol fumarate 1.25 mg tablet, 100 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +50207011000036108 Melolin (66974933) 10 cm x 10 cm dressing, 10, carton 49365011000036102 Melolin (66974933) 10 cm x 10 cm dressing, 10 48715011000036104 Melolin (66974933) 10 cm x 10 cm dressing 54541000168103 Melolin (66974933) 54541000168103 Melolin (66974933) 51339011000036107 dressing non adherent 10 cm x 10 cm dressing, 10 50873011000036104 dressing non adherent 10 cm x 10 cm dressing 50699011000036100 dressing non adherent +43593011000036101 Simvabell 80 mg film-coated tablet, 300, bottle 100889 41113011000036103 Simvabell 80 mg film-coated tablet, 300 4715011000036102 Simvabell 80 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 46095011000036108 simvastatin 80 mg tablet, 300 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +773891000168109 Elovax One Dose 500 mg film-coated tablet, 3, blister pack 204623 773881000168106 Elovax One Dose 500 mg film-coated tablet, 3 773871000168108 Elovax One Dose 500 mg film-coated tablet 773861000168102 Elovax One Dose 773861000168102 Elovax One Dose 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +18766011000036105 Lipostat 80 mg uncoated tablet, 30, blister pack 118592 11583011000036106 Lipostat 80 mg uncoated tablet, 30 4954011000036102 Lipostat 80 mg uncoated tablet 3757011000036101 Lipostat 3757011000036101 Lipostat 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +1084971000168107 Taltz 80 mg/mL injection solution, 3 x 1 mL syringes 253892 1084961000168101 Taltz 80 mg/mL injection solution, 3 x 1 mL syringes 1084881000168104 Taltz 80 mg/mL injection solution, syringe 871151000168109 Taltz 871151000168109 Taltz 1084951000168103 ixekizumab 80 mg/mL injection, 3 x 1 mL syringes 1084871000168102 ixekizumab 80 mg/mL injection, syringe 871171000168100 ixekizumab +859551000168104 Zovirax Dispersible 400 mg tablet, 70, bottle 51432 859541000168101 Zovirax Dispersible 400 mg tablet, 70 859531000168105 Zovirax Dispersible 400 mg tablet 859171000168104 Zovirax Dispersible 859171000168104 Zovirax Dispersible 800451000168103 aciclovir 400 mg tablet, 70 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +926653011000036107 Univent Cipule 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 115652 926099011000036108 Univent Cipule 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 925614011000036102 Univent Cipule 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 5841000168105 Univent Cipule 5841000168105 Univent Cipule 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +80971011000036108 Resdone 4 mg film-coated tablet, 20, blister pack 147676 80548011000036109 Resdone 4 mg film-coated tablet, 20 80186011000036107 Resdone 4 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81629011000036100 risperidone 4 mg tablet, 20 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +44073011000036105 Cytarabine (Pfizer (Perth)) 2 g/20 mL injection solution, 20 mL vial 49285 41560011000036102 Cytarabine (Pfizer (Perth)) 2 g/20 mL injection solution, 20 mL vial 40064011000036104 Cytarabine (Pfizer (Perth)) 2 g/20 mL injection solution, 20 mL vial 3540011000036100 Cytarabine (Pfizer (Perth)) 3540011000036100 Cytarabine (Pfizer (Perth)) 46390011000036103 cytarabine 2 g/20 mL injection, 20 mL vial 45125011000036107 cytarabine 2 g/20 mL injection, vial 21916011000036109 cytarabine +21062011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack, composite pack 97190 14207011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack 7488011000036109 Nexium 20 mg enteric tablet 2941011000036107 Nexium Hp7 2929011000036108 Nexium 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +21062011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack, composite pack 281690 14207011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack 7488011000036109 Nexium 20 mg enteric tablet 2941011000036107 Nexium Hp7 2929011000036108 Nexium 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +21062011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack, composite pack 97190 14207011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack 7489011000036101 Klacid 500 mg film-coated tablet 2941011000036107 Nexium Hp7 3147011000036106 Klacid 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +21062011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack, composite pack 281690 14207011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack 7489011000036101 Klacid 500 mg film-coated tablet 2941011000036107 Nexium Hp7 3147011000036106 Klacid 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +21062011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack, composite pack 97190 14207011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack 6140011000036103 Amoxil 500 mg hard capsule 2941011000036107 Nexium Hp7 3738011000036101 Amoxil 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +21062011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack, composite pack 281690 14207011000036103 Nexium Hp7 (14 x Nexium tablets, 28 x Amoxil capsules, 14 x Klacid tablets), 1 pack 6140011000036103 Amoxil 500 mg hard capsule 2941011000036107 Nexium Hp7 3738011000036101 Amoxil 28214011000036106 esomeprazole 20 mg enteric tablet [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +926895011000036107 Acetec 5 mg uncoated tablet, 30, blister pack 75497 926291011000036100 Acetec 5 mg uncoated tablet, 30 925735011000036102 Acetec 5 mg uncoated tablet 925507011000036102 Acetec 925507011000036102 Acetec 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +86017011000036107 Lisinopril (DRLA) 5 mg uncoated tablet, 10, blister pack 152720 85646011000036107 Lisinopril (DRLA) 5 mg uncoated tablet, 10 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 83477011000036104 lisinopril 5 mg tablet, 10 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +1114561000168101 Quetiapine (Unichem) 25 mg film-coated tablet, 60, blister pack 212135 1114551000168103 Quetiapine (Unichem) 25 mg film-coated tablet, 60 1114541000168100 Quetiapine (Unichem) 25 mg film-coated tablet 1114531000168109 Quetiapine (Unichem) 1114531000168109 Quetiapine (Unichem) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +720581000168100 Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule 106946 720571000168103 Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule 720551000168107 Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule 3557011000036102 Reandron-1000 3557011000036102 Reandron-1000 720561000168109 testosterone undecanoate 1 g/4 mL modified release injection, 4 mL ampoule 720541000168105 testosterone undecanoate 1 g/4 mL modified release injection, ampoule 21393011000036106 testosterone undecanoate +940951000168108 Sertraline (LAPL) 50 mg film-coated tablet, 30, blister pack 147079 940941000168106 Sertraline (LAPL) 50 mg film-coated tablet, 30 940931000168102 Sertraline (LAPL) 50 mg film-coated tablet 940921000168100 Sertraline (LAPL) 940921000168100 Sertraline (LAPL) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1078551000168107 Atomoxetine (GPPL) 18 mg hard capsule, 14, blister pack 234841 1078541000168105 Atomoxetine (GPPL) 18 mg hard capsule, 14 1078511000168106 Atomoxetine (GPPL) 18 mg hard capsule 1078231000168104 Atomoxetine (GPPL) 1078231000168104 Atomoxetine (GPPL) 830341000168103 atomoxetine 18 mg capsule, 14 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +19717011000036105 Dilatrend 12.5 mg uncoated tablet, 60, blister pack 61107 12973011000036108 Dilatrend 12.5 mg uncoated tablet, 60 6262011000036109 Dilatrend 12.5 mg uncoated tablet 4079011000036107 Dilatrend 4079011000036107 Dilatrend 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +86102011000036100 Levitam 250 mg film-coated tablet, 60, blister pack 143659 85633011000036102 Levitam 250 mg film-coated tablet, 60 85307011000036108 Levitam 250 mg film-coated tablet 6571000168108 Levitam 6571000168108 Levitam 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +20548011000036102 Edronax 4 mg uncoated tablet, 60, bottle 79748 13744011000036108 Edronax 4 mg uncoated tablet, 60 7028011000036107 Edronax 4 mg uncoated tablet 3605011000036109 Edronax 3605011000036109 Edronax 27913011000036101 reboxetine 4 mg tablet, 60 23237011000036108 reboxetine 4 mg tablet 21912011000036105 reboxetine +50241011000036108 MSUD Gel powder for oral liquid, 30 x 20 g sachets 49285011000036108 MSUD Gel powder for oral liquid, 30 x 20 g sachets 169871000168105 MSUD Gel powder for oral liquid, 20 g sachet 36231000168104 MSUD Gel 36231000168104 MSUD Gel 51272011000036105 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 30 x 20 g sachets 169681000168109 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 20 g sachet 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +1110901000168100 Quetiapine (DP) 25 mg film-coated tablet, 60, blister pack 202268 1110891000168104 Quetiapine (DP) 25 mg film-coated tablet, 60 1110861000168106 Quetiapine (DP) 25 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +87747011000036102 Gadovist-1.0 4.535 g/7.5 mL injection solution, 5 x 7.5 mL syringes 67046 87513011000036100 Gadovist-1.0 4.535 g/7.5 mL injection solution, 5 x 7.5 mL syringes 87349011000036108 Gadovist-1.0 4.535 g/7.5 mL injection solution, 7.5 mL syringe 55781000168103 Gadovist-1.0 55781000168103 Gadovist-1.0 87834011000036109 gadobutrol 4.535 g/7.5 mL injection, 5 x 7.5 mL syringes 87765011000036104 gadobutrol 4.535 g/7.5 mL injection, syringe 86196011000036104 gadobutrol +1113031000168104 Allopurinol (TN) 300 mg uncoated tablet, 50, blister pack 269655 1113021000168102 Allopurinol (TN) 300 mg uncoated tablet, 50 1112951000168100 Allopurinol (TN) 300 mg uncoated tablet 1112471000168101 Allopurinol (TN) 1112471000168101 Allopurinol (TN) 1113011000168109 allopurinol 300 mg tablet, 50 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +55651000036108 Synastrozole 1 mg film-coated tablet, 500, blister pack 155175 52401000036102 Synastrozole 1 mg film-coated tablet, 500 49371000036108 Synastrozole 1 mg film-coated tablet 48131000036100 Synastrozole 48131000036100 Synastrozole 52131000036104 anastrozole 1 mg tablet, 500 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +858181000168109 Emexlon 10 mg film-coated tablet, 100, blister pack 229659 858171000168106 Emexlon 10 mg film-coated tablet, 100 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 82561011000036104 metoclopramide hydrochloride 10 mg tablet, 100 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +52794011000036100 Axit 15 mg film-coated tablet, 30, bottle 97196 52602011000036104 Axit 15 mg film-coated tablet, 30 52439011000036102 Axit 15 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 28018011000036105 mirtazapine 15 mg tablet, 30 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +1085131000168105 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 228339 1085121000168107 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 1085101000168103 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, bag 1085081000168105 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% and Glucose 5% (Baxter) 1085081000168105 Potassium Chloride 20 mmol/1000 mL and Sodium Chloride 0.9% and Glucose 5% (Baxter) 1085111000168100 potassium chloride 1.49 g (potassium 20 mmol)/L + sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, 1 L bag 1085091000168108 potassium chloride 1.49 g (potassium 20 mmol)/L + sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +1123741000168102 Jadenu 90 mg film-coated tablet, 30, blister pack 286751 1123731000168106 Jadenu 90 mg film-coated tablet, 30 1123711000168101 Jadenu 90 mg film-coated tablet 1123691000168104 Jadenu 1123691000168104 Jadenu 1123721000168108 deferasirox 90 mg tablet, 30 1123701000168104 deferasirox 90 mg tablet 21549011000036103 deferasirox +695341000168107 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle 48508 695331000168103 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle 695311000168108 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle 5191000168106 Ultravist-300 5191000168106 Ultravist-300 695321000168101 iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle 695301000168105 iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle 77425011000036101 iopromide +806161000168105 Uptravi 1.2 mg film-coated tablet, 60, blister pack 234163 806151000168108 Uptravi 1.2 mg film-coated tablet, 60 806131000168102 Uptravi 1.2 mg film-coated tablet 805651000168106 Uptravi 805651000168106 Uptravi 806141000168106 selexipag 1.2 mg tablet, 60 806121000168100 selexipag 1.2 mg tablet 805661000168108 selexipag +1054621000168106 Eleuphrat 0.05% lotion, 30 mL, bottle 41866 1054611000168104 Eleuphrat 0.05% lotion, 30 mL 1054591000168109 Eleuphrat 0.05% lotion 3233011000036101 Eleuphrat 3233011000036101 Eleuphrat 1054601000168102 betamethasone (as dipropionate) 0.05% lotion, 30 mL 1054581000168106 betamethasone (as dipropionate) 0.05% lotion 21372011000036109 betamethasone dipropionate +1116731000168108 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 56, blister pack 151627 1116721000168105 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 56 1116621000168103 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 63234011000036107 amlodipine 5 mg + valsartan 160 mg tablet, 56 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +37442011000036103 Cytarabine (Pfizer (Perth)) 1 g/10 mL injection solution, 10 mL vial 11352 36663011000036101 Cytarabine (Pfizer (Perth)) 1 g/10 mL injection solution, 10 mL vial 36149011000036106 Cytarabine (Pfizer (Perth)) 1 g/10 mL injection solution, 10 mL vial 3540011000036100 Cytarabine (Pfizer (Perth)) 3540011000036100 Cytarabine (Pfizer (Perth)) 38581011000036101 cytarabine 1 g/10 mL injection, 10 mL vial 37854011000036102 cytarabine 1 g/10 mL injection, vial 21916011000036109 cytarabine +929090011000036106 Pioglitazone (Apotex) 45 mg uncoated tablet, 98, blister pack 166913 928451011000036102 Pioglitazone (Apotex) 45 mg uncoated tablet, 98 927986011000036106 Pioglitazone (Apotex) 45 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929262011000036100 pioglitazone 45 mg tablet, 98 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +1042381000168105 Atorvastatin (AS) 80 mg film-coated tablet, 50, blister pack 178526 1042371000168107 Atorvastatin (AS) 80 mg film-coated tablet, 50 1042201000168109 Atorvastatin (AS) 80 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841901000168108 atorvastatin 80 mg tablet, 50 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +73286011000036109 Jurnista 16 mg modified release tablet, 30, blister pack 141533 73084011000036108 Jurnista 16 mg modified release tablet, 30 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73482011000036109 hydromorphone hydrochloride 16 mg modified release tablet, 30 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +733431000168105 Aquacel Foam (420619) 12.5 cm x 12.5 cm dressing, 10, carton 197067 733421000168107 Aquacel Foam (420619) 12.5 cm x 12.5 cm dressing, 10 733401000168103 Aquacel Foam (420619) 12.5 cm x 12.5 cm dressing 733381000168103 Aquacel Foam (420619) 733381000168103 Aquacel Foam (420619) 733411000168100 dressing hydrofibre alternate to alginates 12.5 cm x 12.5 cm dressing, 10 733391000168100 dressing hydrofibre alternate to alginates 12.5 cm x 12.5 cm dressing 50717011000036100 dressing hydrofibre alternate to alginates +858101000168101 Emexlon 10 mg film-coated tablet, 25, blister pack 229659 858091000168106 Emexlon 10 mg film-coated tablet, 25 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 26944011000036109 metoclopramide hydrochloride 10 mg tablet, 25 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +81651000036102 Maxor 20 mg enteric capsule, 30, bottle 144188 80101000036100 Maxor 20 mg enteric capsule, 30 78181000036100 Maxor 20 mg enteric capsule 55631000168107 Maxor 55631000168107 Maxor 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +81651000036102 Maxor 20 mg enteric capsule, 30, bottle 173987 80101000036100 Maxor 20 mg enteric capsule, 30 78181000036100 Maxor 20 mg enteric capsule 55631000168107 Maxor 55631000168107 Maxor 716171000168103 omeprazole 20 mg enteric capsule, 30 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +38801000036102 Escitalopram (Lupin) 20 mg film-coated tablet, 100, bottle 165873 35171000036108 Escitalopram (Lupin) 20 mg film-coated tablet, 100 32921000036103 Escitalopram (Lupin) 20 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1041741000168106 Dry Cough Forte (Amcal) 4 mg/mL oral liquid solution, 100 mL, bottle 210157 1041731000168102 Dry Cough Forte (Amcal) 4 mg/mL oral liquid solution, 100 mL 1041661000168102 Dry Cough Forte (Amcal) 4 mg/mL oral liquid solution 1041591000168105 Dry Cough Forte (Amcal) 1041591000168105 Dry Cough Forte (Amcal) 989701000168107 pholcodine 4 mg/mL oral liquid, 100 mL 154971000036102 pholcodine 4 mg/mL oral liquid 21705011000036108 pholcodine +38481000036105 Escitalupin 10 mg film-coated tablet, 100, bottle 165853 34811000036106 Escitalupin 10 mg film-coated tablet, 100 33071000036105 Escitalupin 10 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1046081000168106 Dermaveen Daily Nourish Soap Free Wash 1% application, 1 L, pump pack 1046071000168108 Dermaveen Daily Nourish Soap Free Wash 1% application, 1 L 1046021000168107 Dermaveen Daily Nourish Soap Free Wash 1% application 1046011000168100 Dermaveen Daily Nourish Soap Free Wash 1046011000168100 Dermaveen Daily Nourish Soap Free Wash 167821000036105 colloidal oatmeal 1% application, 1 L 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +87644011000036100 Perindopril Erbumine (Apo) 8 mg uncoated tablet, 30, blister pack 151913 87440011000036108 Perindopril Erbumine (Apo) 8 mg uncoated tablet, 30 87307011000036109 Perindopril Erbumine (Apo) 8 mg uncoated tablet 10411000168102 Perindopril Erbumine (Apo) 10411000168102 Perindopril Erbumine (Apo) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +1041781000168101 Atorvastatin (AS) 10 mg film-coated tablet, 50, blister pack 178545 1041771000168104 Atorvastatin (AS) 10 mg film-coated tablet, 50 1041631000168105 Atorvastatin (AS) 10 mg film-coated tablet 1041581000168107 Atorvastatin (AS) 1041581000168107 Atorvastatin (AS) 841591000168106 atorvastatin 10 mg tablet, 50 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +43773011000036109 Gabahexal 800 mg film-coated tablet, 100, blister pack 123980 41310011000036100 Gabahexal 800 mg film-coated tablet, 100 39874011000036106 Gabahexal 800 mg film-coated tablet 3614011000036107 Gabahexal 3614011000036107 Gabahexal 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +83387011000036102 Lisinopril (GA) 5 mg uncoated tablet, 84, blister pack 106500 83306011000036101 Lisinopril (GA) 5 mg uncoated tablet, 84 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 83482011000036105 lisinopril 5 mg tablet, 84 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +929707011000036107 MS Contin Suspension 200 mg modified release granules, 28 sachets 65399 929543011000036109 MS Contin Suspension 200 mg modified release granules, 28 sachets 6400011000036105 MS Contin Suspension 200 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 929764011000036100 morphine sulfate pentahydrate 200 mg modified release granules, 28 sachets 22897011000036100 morphine sulfate pentahydrate 200 mg modified release granules, 1 sachet 21252011000036100 morphine +875281000168107 Bisoprolol (AN) 3.75 mg film-coated tablet, 28, blister pack 175914 875271000168109 Bisoprolol (AN) 3.75 mg film-coated tablet, 28 875261000168103 Bisoprolol (AN) 3.75 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 874831000168106 bisoprolol fumarate 3.75 mg tablet, 28 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +19520011000036103 Cilamox 500 mg hard capsule, 20, blister pack 56302 12792011000036100 Cilamox 500 mg hard capsule, 20 6086011000036101 Cilamox 500 mg hard capsule 4046011000036102 Cilamox 4046011000036102 Cilamox 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +59956011000036101 Nurofen Tension Headache 200 mg tablet, 12, blister pack 120354 55918011000036101 Nurofen Tension Headache 200 mg tablet, 12 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +703921000168108 Temozolomide (Apo) 5 mg hard capsule, 5, bottle 231523 703911000168101 Temozolomide (Apo) 5 mg hard capsule, 5 703901000168104 Temozolomide (Apo) 5 mg hard capsule 703741000168100 Temozolomide (Apo) 703741000168100 Temozolomide (Apo) 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +1119451000168103 Quetiapine (Watson) 300 mg film-coated tablet, 90, blister pack 202265 1119441000168100 Quetiapine (Watson) 300 mg film-coated tablet, 90 1119361000168106 Quetiapine (Watson) 300 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 667411000168106 quetiapine 300 mg tablet, 90 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1106041000168104 Zolpibell 10 mg film-coated tablet, 10, blister pack 119087 1106031000168108 Zolpibell 10 mg film-coated tablet, 10 72953011000036101 Zolpibell 10 mg film-coated tablet 72921011000036103 Zolpibell 72921011000036103 Zolpibell 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +789621000168101 Oxycodone (HX) 80 mg modified release tablet, 20, bottle 153596 789611000168108 Oxycodone (HX) 80 mg modified release tablet, 20 789601000168105 Oxycodone (HX) 80 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +1050371000168105 Bupredermal 20 microgram/hour patch, 1, sachet 234744 1050361000168104 Bupredermal 20 microgram/hour patch, 1 1050351000168101 Bupredermal 20 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1046541000168107 buprenorphine 20 microgram/hour patch, 1 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +81671000036107 Cyproterone Acetate (Sandoz) 100 mg uncoated tablet, 50, blister pack 107331 79831000036104 Cyproterone Acetate (Sandoz) 100 mg uncoated tablet, 50 78961000036108 Cyproterone Acetate (Sandoz) 100 mg uncoated tablet 77831000036106 Cyproterone Acetate (Sandoz) 77831000036106 Cyproterone Acetate (Sandoz) 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +943281000168100 Medformin 250 mg film-coated tablet, 100, bottle 100285 943271000168103 Medformin 250 mg film-coated tablet, 100 943221000168104 Medformin 250 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943261000168109 metformin hydrochloride 250 mg tablet, 100 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +20188011000036100 Valtrex 500 mg film-coated tablet, 30, blister pack 73917 13411011000036106 Valtrex 500 mg film-coated tablet, 30 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +69174011000036105 Methylene Blue 50 mg/5 mL injection solution, 5 x 5 mL ampoules 16315 66974011000036104 Methylene Blue 50 mg/5 mL injection solution, 5 x 5 mL ampoules 65308011000036107 Methylene Blue 50 mg/5 mL injection solution, 5 mL ampoule 64997011000036105 Methylene Blue 64997011000036105 Methylene Blue 71547011000036100 methylene blue 50 mg/5 mL injection, 5 x 5 mL ampoules 70055011000036102 methylene blue 50 mg/5 mL injection, ampoule 69830011000036109 methylene blue +939421000168102 Prometax-5 4.6 mg/24 hours patch, 30, sachet 133427 939411000168109 Prometax-5 4.6 mg/24 hours patch, 30 939381000168106 Prometax-5 4.6 mg/24 hours patch 939371000168108 Prometax-5 939371000168108 Prometax-5 38682011000036101 rivastigmine 4.6 mg/24 hours patch, 30 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +61498011000036104 Proven 200 mg film-coated tablet, 20, blister pack 92447 57423011000036100 Proven 200 mg film-coated tablet, 20 54299011000036101 Proven 200 mg film-coated tablet 53524011000036103 Proven 53524011000036103 Proven 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +871031000168104 Clopidogrel (AN) 75 mg film-coated tablet, 112, bottle 187037 871021000168102 Clopidogrel (AN) 75 mg film-coated tablet, 112 660371000168109 Clopidogrel (AN) 75 mg film-coated tablet 660361000168103 Clopidogrel (AN) 660361000168103 Clopidogrel (AN) 87799011000036100 clopidogrel 75 mg tablet, 112 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +50421011000036109 Risperidone (GA) 3 mg film-coated tablet, 60, bottle 127788 49555011000036105 Risperidone (GA) 3 mg film-coated tablet, 60 48624011000036104 Risperidone (GA) 3 mg film-coated tablet 48409011000036109 Risperidone (GA) 48409011000036109 Risperidone (GA) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +1106681000168101 Magmax 500 mg (magnesium 37.4 mg) film-coated tablet, 120, jar 198078 1106671000168104 Magmax 500 mg (magnesium 37.4 mg) film-coated tablet, 120 1106651000168108 Magmax 500 mg (magnesium 37.4 mg) film-coated tablet 1106641000168106 Magmax 1106641000168106 Magmax 1106661000168105 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet, 120 52809011000036104 magnesium aspartate dihydrate 500 mg (magnesium 37.4 mg) tablet 52798011000036107 magnesium aspartate dihydrate +720501000168108 Duodopa intestinal gel, 100 mL, bag 720491000168101 Duodopa intestinal gel, 100 mL 720471000168102 Duodopa intestinal gel 72910011000036103 Duodopa 72910011000036103 Duodopa 720481000168104 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel, 100 mL 720461000168108 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel 21326011000036107 levodopa + carbidopa +973301000168102 Lantim 50/5 eye drops solution, 2.5 mL, bottle 263083 973291000168103 Lantim 50/5 eye drops solution, 2.5 mL 973281000168101 Lantim 50/5 eye drops solution 973261000168105 Lantim 50/5 973261000168105 Lantim 50/5 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +60470011000036102 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 7 sachets 150167 56428011000036106 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 7 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63360011000036103 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 7 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +1106701000168103 Quetiapine (Terry White Chemists) 300 mg film-coated tablet, 100, blister pack 166069 1106691000168103 Quetiapine (Terry White Chemists) 300 mg film-coated tablet, 100 3561000036104 Quetiapine (Terry White Chemists) 300 mg film-coated tablet 491000036108 Quetiapine (Terry White Chemists) 491000036108 Quetiapine (Terry White Chemists) 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1106521000168104 Quetiapine (GH) 100 mg film-coated tablet, 10, blister pack 179895 1106511000168106 Quetiapine (GH) 100 mg film-coated tablet, 10 2221000036101 Quetiapine (GH) 100 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1106501000168108 quetiapine 100 mg tablet, 10 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +43576011000036104 Fluconazole (Hexal) 150 mg hard capsule, 1, blister pack 104290 41135011000036105 Fluconazole (Hexal) 150 mg hard capsule, 1 39858011000036101 Fluconazole (Hexal) 150 mg hard capsule 3059011000036106 Fluconazole (Hexal) 3059011000036106 Fluconazole (Hexal) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1021001000168109 Advil 200 mg effervescent tablet, 40, strip pack 200186 1020991000168108 Advil 200 mg effervescent tablet, 40 1020911000168104 Advil 200 mg effervescent tablet 53215011000036102 Advil 53215011000036102 Advil 1020981000168105 ibuprofen 200 mg effervescent tablet, 40 1020901000168102 ibuprofen 200 mg effervescent tablet 21885011000036105 ibuprofen +943761000168104 Medformin 500 mg film-coated tablet, 10, blister pack 100288 943721000168109 Medformin 500 mg film-coated tablet, 10 943701000168100 Medformin 500 mg film-coated tablet 943201000168108 Medformin 943201000168108 Medformin 943711000168102 metformin hydrochloride 500 mg tablet, 10 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +939581000168104 Celecoxib (Ranbaxy) 200 mg hard capsule, 60, blister pack 212788 939571000168102 Celecoxib (Ranbaxy) 200 mg hard capsule, 60 939451000168105 Celecoxib (Ranbaxy) 200 mg hard capsule 939431000168104 Celecoxib (Ranbaxy) 939431000168104 Celecoxib (Ranbaxy) 745941000168105 celecoxib 200 mg capsule, 60 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +77167011000036102 Supradyn effervescent tablet, 20, tube 117506 76590011000036107 Supradyn effervescent tablet, 20 76050011000036104 Supradyn effervescent tablet 75924011000036102 Supradyn 75924011000036102 Supradyn 78144011000036108 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 80 mg + biotin 200 microgram + calcium (as carbonate) 100 mg + colecalciferol 7.5 microgram + copper (as gluconate) 500 microgram + cyanocobalamin 4 microgram + ferrous sulfate 5 mg (iron 1.5 mg) + folic acid 200 microgram + magnesium (as phosphate dibasic trihydrate) 9 mg + manganese (as sulfate monohydrate) 500 microgram + nicotinamide 40 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 3 mg + riboflavin sodium phosphate 13 mg + monophosphothiamine 11.1 mg + zinc (as sulfate monohydrate) 1 mg effervescent tablet, 20 77511011000036100 dl-alpha-tocopherol 9.11 mg (10 units) + ascorbic acid 80 mg + biotin 200 microgram + calcium (as carbonate) 100 mg + colecalciferol 7.5 microgram + copper (as gluconate) 500 microgram + cyanocobalamin 4 microgram + ferrous sulfate 5 mg (iron 1.5 mg) + folic acid 200 microgram + magnesium (as phosphate dibasic trihydrate) 9 mg + manganese (as sulfate monohydrate) 500 microgram + nicotinamide 40 mg + calcium pantothenate 8 mg + pyridoxine hydrochloride 3 mg + riboflavin sodium phosphate 13 mg + monophosphothiamine 11.1 mg + zinc (as sulfate monohydrate) 1 mg effervescent tablet 77439011000036102 dl-alpha-tocopherol + ascorbic acid + biotin + calcium carbonate + colecalciferol + copper gluconate + cyanocobalamin + ferrous sulfate + folic acid + magnesium phosphate dibasic trihydrate + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + monophosphothiamine + zinc sulfate monohydrate +789141000168101 Gemcitabine (Agila) 1 g powder for injection, 10 vials 177645 789131000168105 Gemcitabine (Agila) 1 g powder for injection, 10 vials 788691000168105 Gemcitabine (Agila) 1 g powder for injection, vial 788601000168104 Gemcitabine (Agila) 788601000168104 Gemcitabine (Agila) 789121000168107 gemcitabine 1 g injection, 10 vials 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +18749011000036108 Nupentin 400 mg hard capsule, 100, bottle 101699 11229011000036105 Nupentin 400 mg hard capsule, 100 5995011000036102 Nupentin 400 mg hard capsule 1181000168106 Nupentin 1181000168106 Nupentin 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +20668011000036103 Cicloral 25 mg capsule, 30, blister pack 81959 13848011000036103 Cicloral 25 mg capsule, 30 7135011000036107 Cicloral 25 mg capsule 3483011000036105 Cicloral 3483011000036105 Cicloral 27972011000036102 ciclosporin 25 mg capsule, 30 23296011000036100 ciclosporin 25 mg capsule 21379011000036104 ciclosporin +60864011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution, 15 mL, bottle 59232 56818011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution, 15 mL 54089011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution 27141000168100 Lorastyne Syrup 27141000168100 Lorastyne Syrup 63588011000036102 loratadine 1 mg/mL oral liquid, 15 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +891941000168102 Betastine 16 mg uncoated tablet, 60, blister pack 212078 891931000168106 Betastine 16 mg uncoated tablet, 60 891861000168105 Betastine 16 mg uncoated tablet 891851000168108 Betastine 891851000168108 Betastine 760051000168105 betahistine dihydrochloride 16 mg tablet, 60 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +77311000036109 Astromide 20 mg hard capsule, 5, sachet 197464 933223771000036105 Astromide 20 mg hard capsule, 5 933219891000036109 Astromide 20 mg hard capsule 933219011000036108 Astromide 933219011000036108 Astromide 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +12851000036106 Olanzapine ODT (Chemmart) 10 mg orally disintegrating tablet, 28, blister pack 158993 7001000036100 Olanzapine ODT (Chemmart) 10 mg orally disintegrating tablet, 28 1931000036101 Olanzapine ODT (Chemmart) 10 mg orally disintegrating tablet 15331000168107 Olanzapine ODT (Chemmart) 15331000168107 Olanzapine ODT (Chemmart) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +20068011000036108 Antroquoril 0.02% cream, 100 g, tube 70406 13298011000036102 Antroquoril 0.02% cream, 100 g 6582011000036102 Antroquoril 0.02% cream 3647011000036107 Antroquoril 3647011000036107 Antroquoril 28033011000036106 betamethasone (as valerate) 0.02% cream, 100 g 23354011000036109 betamethasone (as valerate) 0.02% cream 21366011000036103 betamethasone valerate +1123101000168103 Grazax 75 000 SQ-T orally disintegrating tablet, 90, blister pack 267955 1123091000168108 Grazax 75 000 SQ-T orally disintegrating tablet, 90 1123011000168104 Grazax 75 000 SQ-T orally disintegrating tablet 1120251000168103 Grazax 1120251000168103 Grazax 1123081000168105 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet, 90 1123001000168102 Phleum pratense pollen extract 75 000 SQ-T orally disintegrating tablet 1122991000168103 Phleum pratense pollen extract +1037581000168101 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 500 mL, bottle 57233 1037571000168104 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 500 mL 1037481000168100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 5 mL 26351000168102 Benadryl Cough Medicine for Dry Coughs 26351000168102 Benadryl Cough Medicine for Dry Coughs 1037561000168105 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 500 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +771841000168102 Clinoleic 20% injection emulsion, 500 mL bag 97537 771831000168106 Clinoleic 20% injection emulsion, 500 mL bag 771811000168101 Clinoleic 20% injection emulsion, 500 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 771821000168108 olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 500 mL bag 771801000168104 olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, bag 926971011000036108 olive oil + soya oil +44090011000036109 Lithicarb 250 mg film-coated tablet, 100, bottle 49625 41576011000036109 Lithicarb 250 mg film-coated tablet, 100 40079011000036106 Lithicarb 250 mg film-coated tablet 3104011000036109 Lithicarb 3104011000036109 Lithicarb 46405011000036102 lithium carbonate 250 mg tablet, 100 22400011000036107 lithium carbonate 250 mg tablet 21570011000036108 lithium carbonate +82291000036103 Zypine ODT 20 mg wafer, 28, blister pack 189673 80261000036109 Zypine ODT 20 mg wafer, 28 78751000036108 Zypine ODT 20 mg wafer 14381000168109 Zypine ODT 14381000168109 Zypine ODT 929277011000036109 olanzapine 20 mg wafer, 28 929158011000036105 olanzapine 20 mg wafer 21485011000036103 olanzapine +43877011000036102 Ramipril (Sandoz) 10 mg hard capsule, 7, blister pack 128811 41373011000036100 Ramipril (Sandoz) 10 mg hard capsule, 7 5803011000036106 Ramipril (Sandoz) 10 mg hard capsule 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 46765011000036109 ramipril 10 mg capsule, 7 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +43900011000036102 Ramipril (Generic Health) 1.25 mg hard capsule, 30, blister pack 134787 41392011000036102 Ramipril (Generic Health) 1.25 mg hard capsule, 30 39800011000036106 Ramipril (Generic Health) 1.25 mg hard capsule 39759011000036107 Ramipril (Generic Health) 39759011000036107 Ramipril (Generic Health) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +17856011000036107 Bupropion (RL) 150 mg modified release tablet, 90, blister pack 119665 11627011000036100 Bupropion (RL) 150 mg modified release tablet, 90 4463011000036105 Bupropion (RL) 150 mg modified release tablet 3551011000036105 Bupropion (RL) 3551011000036105 Bupropion (RL) 27772011000036106 bupropion hydrochloride 150 mg modified release tablet, 90 23102011000036103 bupropion hydrochloride 150 mg modified release tablet 21798011000036100 bupropion +801751000168100 Abilify 2 mg uncoated tablet, 90, blister pack 91001 801741000168102 Abilify 2 mg uncoated tablet, 90 801451000168107 Abilify 2 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 801731000168106 aripiprazole 2 mg tablet, 90 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +86015011000036102 Lisinopril (DRLA) 20 mg uncoated tablet, 10, blister pack 152722 85662011000036100 Lisinopril (DRLA) 20 mg uncoated tablet, 10 85321011000036105 Lisinopril (DRLA) 20 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 78124011000036105 lisinopril 20 mg tablet, 10 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1014571000168103 Valsartan (Apotex) 160 mg film-coated tablet, 30, blister pack 185859 1014561000168109 Valsartan (Apotex) 160 mg film-coated tablet, 30 1014451000168106 Valsartan (Apotex) 160 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63790011000036104 valsartan 160 mg tablet, 30 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +20221011000036103 Oxynorm 10 mg hard capsule, 20, blister pack 74143 13438011000036106 Oxynorm 10 mg hard capsule, 20 6720011000036107 Oxynorm 10 mg hard capsule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +1014651000168108 Temozolomide (Apotex) 180 mg hard capsule, 5, bottle 206889 1014641000168106 Temozolomide (Apotex) 180 mg hard capsule, 5 1014631000168102 Temozolomide (Apotex) 180 mg hard capsule 1014191000168108 Temozolomide (Apotex) 1014191000168108 Temozolomide (Apotex) 76851000036100 temozolomide 180 mg capsule, 5 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +20650011000036107 Diabex-1000 1 g film-coated tablet, 90, blister pack 81602 13830011000036104 Diabex-1000 1 g film-coated tablet, 90 7117011000036109 Diabex-1000 1 g film-coated tablet 45461000168104 Diabex-1000 45461000168104 Diabex-1000 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1111061000168108 Quetiapine (DP) 200 mg film-coated tablet, 60, blister pack 202270 1111051000168106 Quetiapine (DP) 200 mg film-coated tablet, 60 1111001000168107 Quetiapine (DP) 200 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +931689011000036104 Claratyne Children's 5 mg chewable tablet, 10, blister pack 169329 930849011000036106 Claratyne Children's 5 mg chewable tablet, 10 930070011000036102 Claratyne Children's 5 mg chewable tablet 1851000168105 Claratyne Children's 1851000168105 Claratyne Children's 932452011000036100 loratadine 5 mg chewable tablet, 10 931862011000036104 loratadine 5 mg chewable tablet 21701011000036106 loratadine +973141000168103 Bosentan (Mylan) 62.5 mg film-coated tablet, 60, blister pack 206775 973131000168107 Bosentan (Mylan) 62.5 mg film-coated tablet, 60 973121000168109 Bosentan (Mylan) 62.5 mg film-coated tablet 973071000168109 Bosentan (Mylan) 973071000168109 Bosentan (Mylan) 28062011000036108 bosentan 62.5 mg tablet, 60 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +1010321000168102 Aprolan 2.5 mg film-coated tablet, 28, blister pack 163399 1010311000168109 Aprolan 2.5 mg film-coated tablet, 28 1010301000168106 Aprolan 2.5 mg film-coated tablet 1010231000168106 Aprolan 1010231000168106 Aprolan 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +843611000168100 Utrogestan 200 mg shell pessary, 56, blister pack 232824 843601000168103 Utrogestan 200 mg shell pessary, 56 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843591000168105 progesterone 200 mg pessary, 56 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +667921000168105 Cilopam-S 10 mg film-coated tablet, 28, blister pack 191884 667911000168103 Cilopam-S 10 mg film-coated tablet, 28 667871000168101 Cilopam-S 10 mg film-coated tablet 172811000036107 Cilopam-S 172811000036107 Cilopam-S 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +933211421000036109 Minirin Melt 240 microgram sublingual wafer, 30, blister pack 121722 933200321000036109 Minirin Melt 240 microgram sublingual wafer, 30 933194031000036101 Minirin Melt 240 microgram sublingual wafer 31411000168100 Minirin Melt 31411000168100 Minirin Melt 933200331000036106 desmopressin 240 microgram sublingual wafer, 30 933194041000036106 desmopressin 240 microgram sublingual wafer 21750011000036107 desmopressin +24501000036108 Valaciclovir (Pfizer) 500 mg film-coated tablet, 10, blister pack 173287 22511000036102 Valaciclovir (Pfizer) 500 mg film-coated tablet, 10 19921000036100 Valaciclovir (Pfizer) 500 mg film-coated tablet 19791000036100 Valaciclovir (Pfizer) 19791000036100 Valaciclovir (Pfizer) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +19057011000036100 Fenac 50 mg enteric tablet, 50, bottle 145816 12365011000036107 Fenac 50 mg enteric tablet, 50 4743011000036105 Fenac 50 mg enteric tablet 4003011000036103 Fenac 4003011000036103 Fenac 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +19057011000036100 Fenac 50 mg enteric tablet, 50, bottle 40933 12365011000036107 Fenac 50 mg enteric tablet, 50 4743011000036105 Fenac 50 mg enteric tablet 4003011000036103 Fenac 4003011000036103 Fenac 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +60556011000036105 Polaramine colour free 2 mg uncoated tablet, 30, blister pack 154653 56514011000036101 Polaramine colour free 2 mg uncoated tablet, 30 53948011000036101 Polaramine colour free 2 mg uncoated tablet 9101000168102 Polaramine 9101000168102 Polaramine 63391011000036107 dexchlorpheniramine maleate 2 mg tablet, 30 61949011000036101 dexchlorpheniramine maleate 2 mg tablet 61749011000036105 dexchlorpheniramine +35641011000036108 Lacri-Lube 1 g/g eye ointment, 3.5 g, tube 35555011000036100 Lacri-Lube 1 g/g eye ointment, 3.5 g 35474011000036109 Lacri-Lube 1 g/g eye ointment 35449011000036109 Lacri-Lube 35449011000036109 Lacri-Lube 35762011000036104 paraffin 1 g/g eye ointment, 3.5 g 35703011000036105 paraffin 1 g/g eye ointment 35692011000036108 paraffin +1002041000168105 Pregabalin (Apo) 200 mg hard capsule, 500, bottle 193252 1002031000168101 Pregabalin (Apo) 200 mg hard capsule, 500 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1002021000168104 pregabalin 200 mg capsule, 500 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +1014891000168104 Valaciclovir (Apotex) 500 mg film-coated tablet, 6, blister pack 158914 1014881000168102 Valaciclovir (Apotex) 500 mg film-coated tablet, 6 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929221011000036100 valaciclovir 500 mg tablet, 6 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +967501000168108 Humira 40 mg/0.4 mL injection solution, 6 x 0.4 mL injection devices 281509 967491000168101 Humira 40 mg/0.4 mL injection solution, 6 x 0.4 mL injection devices 967411000168105 Humira 40 mg/0.4 mL injection solution, 0.4 mL injection device 4142011000036107 Humira 4142011000036107 Humira 967481000168104 adalimumab 40 mg/0.4 mL injection, 6 x 0.4 mL injection devices 967401000168107 adalimumab 40 mg/0.4 mL injection, injection device 21584011000036107 adalimumab +43635011000036104 Duac Once Daily gel, 50 g, tube 100707 41093011000036105 Duac Once Daily gel, 50 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46079011000036100 clindamycin 1% + benzoyl peroxide 5% gel, 50 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +82311000036102 Rabeprazole (Apo) 20 mg enteric tablet, 30, blister pack 245233 80281000036104 Rabeprazole (Apo) 20 mg enteric tablet, 30 78241000036103 Rabeprazole (Apo) 20 mg enteric tablet 77941000036106 Rabeprazole (Apo) 77941000036106 Rabeprazole (Apo) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +82311000036102 Rabeprazole (Apo) 20 mg enteric tablet, 30, blister pack 211961 80281000036104 Rabeprazole (Apo) 20 mg enteric tablet, 30 78241000036103 Rabeprazole (Apo) 20 mg enteric tablet 77941000036106 Rabeprazole (Apo) 77941000036106 Rabeprazole (Apo) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +82311000036102 Rabeprazole (Apo) 20 mg enteric tablet, 30, blister pack 189742 80281000036104 Rabeprazole (Apo) 20 mg enteric tablet, 30 78241000036103 Rabeprazole (Apo) 20 mg enteric tablet 77941000036106 Rabeprazole (Apo) 77941000036106 Rabeprazole (Apo) 27799011000036106 rabeprazole sodium 20 mg enteric tablet, 30 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +24421000036104 Torvastat 80 mg film-coated tablet, 30, blister pack 180323 22811000036104 Torvastat 80 mg film-coated tablet, 30 20681000036107 Torvastat 80 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +931424011000036107 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 10, blister pack 132824 930595011000036103 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 10 929962011000036104 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet 4399011000036103 Ciprofloxacin (Pharmacor) 4399011000036103 Ciprofloxacin (Pharmacor) 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +13171000036100 Quetiapine (RBX) 25 mg film-coated tablet, 60, strip pack 166437 8251000036109 Quetiapine (RBX) 25 mg film-coated tablet, 60 3481000036108 Quetiapine (RBX) 25 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +19299011000036107 Cisplatin (Pfizer (Perth)) 50 mg/50 mL injection solution, 50 mL vial 49301 12589011000036105 Cisplatin (Pfizer (Perth)) 50 mg/50 mL injection solution, 50 mL vial 5728011000036106 Cisplatin (Pfizer (Perth)) 50 mg/50 mL injection solution, 50 mL vial 3306011000036107 Cisplatin (Pfizer (Perth)) 3306011000036107 Cisplatin (Pfizer (Perth)) 27222011000036102 cisplatin 50 mg/50 mL injection, 50 mL vial 22583011000036106 cisplatin 50 mg/50 mL injection, vial 21771011000036102 cisplatin +177131000036109 Perindopril Erbumine (Actavis) 8 mg uncoated tablet, 30, blister pack 212717 175401000036101 Perindopril Erbumine (Actavis) 8 mg uncoated tablet, 30 173441000036102 Perindopril Erbumine (Actavis) 8 mg uncoated tablet 172801000036105 Perindopril Erbumine (Actavis) 172801000036105 Perindopril Erbumine (Actavis) 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +964191000168101 Normatens 200 microgram film-coated tablet, 98, blister pack 114122 964181000168104 Normatens 200 microgram film-coated tablet, 98 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964171000168102 moxonidine 200 microgram tablet, 98 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +69414011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 175 g, jar 47538 67214011000036106 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid, 175 g 65561011000036104 Metamucil Smooth Lemon Lime 578 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71765011000036101 psyllium husk powder 578 mg/g powder for oral liquid, 175 g 70179011000036108 psyllium husk powder 578 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +1010631000168108 Amoxycillin/Clavulanic Acid 500/125 (Actavis) film-coated tablet, 10, strip pack 106488 1010621000168105 Amoxycillin/Clavulanic Acid 500/125 (Actavis) film-coated tablet, 10 1010611000168103 Amoxycillin/Clavulanic Acid 500/125 (Actavis) film-coated tablet 1010601000168101 Amoxycillin/Clavulanic Acid 500/125 (Actavis) 1010601000168101 Amoxycillin/Clavulanic Acid 500/125 (Actavis) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +938621000168106 Celecoxib (Ran) 100 mg hard capsule, 50, blister pack 212785 938611000168104 Celecoxib (Ran) 100 mg hard capsule, 50 938531000168105 Celecoxib (Ran) 100 mg hard capsule 938521000168107 Celecoxib (Ran) 938521000168107 Celecoxib (Ran) 904031000168102 celecoxib 100 mg capsule, 50 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +972821000168105 Pregabalin (Apotex) 25 mg hard capsule, 56, blister pack 267552 972811000168103 Pregabalin (Apotex) 25 mg hard capsule, 56 972761000168109 Pregabalin (Apotex) 25 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +83172011000036100 Vaxigrip Junior 2010 needle free injection solution, 1 x 0.25 mL syringe 129875 83119011000036101 Vaxigrip Junior 2010 needle free injection solution, 1 x 0.25 mL syringe 83065011000036105 Vaxigrip Junior 2010 needle free injection solution, 0.25 mL syringe 3571000168100 Vaxigrip Junior 2010 3571000168100 Vaxigrip Junior 2010 83213011000036101 influenza trivalent child vaccine 2010 injection, 1 x 0.25 mL syringe 83200011000036106 influenza trivalent child vaccine 2010 injection, 0.25 mL syringe 83198011000036108 influenza trivalent vaccine 2010 +60461011000036104 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 150167 56419011000036108 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63351011000036103 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +60023011000036103 Ranitidine Forte (Chemists' Own) 300 mg film-coated tablet, 14, blister pack 123658 55985011000036109 Ranitidine Forte (Chemists' Own) 300 mg film-coated tablet, 14 53747011000036107 Ranitidine Forte (Chemists' Own) 300 mg film-coated tablet 38651000168107 Ranitidine Forte (Chemists' Own) 38651000168107 Ranitidine Forte (Chemists' Own) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +21157011000036101 Addos XR 60 mg modified release tablet, 30, blister pack 98806 14299011000036108 Addos XR 60 mg modified release tablet, 30 7585011000036106 Addos XR 60 mg modified release tablet 30671000168101 Addos XR 30671000168101 Addos XR 28290011000036102 nifedipine 60 mg modified release tablet, 30 23604011000036108 nifedipine 60 mg modified release tablet 21241011000036108 nifedipine +1001641000168106 Olanzapine (Apotex) 15 mg film-coated tablet, 28, blister pack 158996 1001631000168102 Olanzapine (Apotex) 15 mg film-coated tablet, 28 1001621000168100 Olanzapine (Apotex) 15 mg film-coated tablet 1000751000168109 Olanzapine (Apotex) 1000751000168109 Olanzapine (Apotex) 6871000036104 olanzapine 15 mg tablet, 28 1381000036101 olanzapine 15 mg tablet 21485011000036103 olanzapine +1014971000168105 Valaciclovir (Apotex) 500 mg film-coated tablet, 30, blister pack 158914 1014961000168104 Valaciclovir (Apotex) 500 mg film-coated tablet, 30 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +37623011000036105 B.I.P. Paste paste, 50 g, jar 21137 36890011000036101 B.I.P. Paste paste, 50 g 36224011000036109 B.I.P. Paste paste 35992011000036107 B.I.P. Paste 35992011000036107 B.I.P. Paste 38775011000036105 bismuth subnitrate 250 mg/g + iodoform 500 mg/g paste, 50 g 37990011000036107 bismuth subnitrate 250 mg/g + iodoform 500 mg/g paste 37763011000036105 bismuth subnitrate + iodoform +926741000168107 Zinnat 125 mg film-coated tablet, 2, strip pack 44091 917831000168102 Zinnat 125 mg film-coated tablet, 2 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917821000168100 cefuroxime 125 mg tablet, 2 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +38891000036105 Escital 20 mg film-coated tablet, 100, bottle 165881 35261000036108 Escital 20 mg film-coated tablet, 100 32401000036101 Escital 20 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 78190011000036106 escitalopram 20 mg tablet, 100 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1105721000168101 Valpam 5 mg uncoated tablet, 30, bottle 80812 1105651000168100 Valpam 5 mg uncoated tablet, 30 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 32774011000036104 diazepam 5 mg tablet, 30 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +43972011000036106 Saizen (10 x 3 mg vials, 10 x 5 mL inert diluent vials), 1 pack, composite pack 42232 41464011000036103 Saizen (10 x 3 mg vials, 10 x 5 mL inert diluent vials), 1 pack 39990011000036103 Saizen (somatropin 3 mg) powder for injection, 3 mg vial 35491000168107 Saizen 35491000168107 Saizen 46312011000036103 somatropin 3 mg injection [10 vials] (&) inert substance diluent [10 x 5 mL vials], 1 pack 45069011000036105 somatropin 3 mg injection, vial 21295011000036100 somatropin +43972011000036106 Saizen (10 x 3 mg vials, 10 x 5 mL inert diluent vials), 1 pack, composite pack 42232 41464011000036103 Saizen (10 x 3 mg vials, 10 x 5 mL inert diluent vials), 1 pack 640441000168101 Saizen (inert substance) diluent, 5 mL vial 35491000168107 Saizen 35491000168107 Saizen 46312011000036103 somatropin 3 mg injection [10 vials] (&) inert substance diluent [10 x 5 mL vials], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +731181000168101 Inlyta 5 mg film-coated tablet, 60, bottle 184858 731171000168104 Inlyta 5 mg film-coated tablet, 60 155141000036105 Inlyta 5 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 731161000168105 axitinib 5 mg tablet, 60 155151000036108 axitinib 5 mg tablet 157041000036102 axitinib +50249011000036107 Kaltostat (168212) 7.5 cm x 12 cm medicated dressing, 10, carton 49406011000036103 Kaltostat (168212) 7.5 cm x 12 cm medicated dressing, 10 48539011000036105 Kaltostat (168212) 7.5 cm x 12 cm medicated dressing 64011000168104 Kaltostat (168212) 64011000168104 Kaltostat (168212) 51374011000036108 dressing alginate superficial wound 7.5 cm x 12 cm dressing, 10 50895011000036109 dressing alginate superficial wound 7.5 cm x 12 cm dressing 50715011000036105 dressing alginate superficial wound +59905011000036103 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet, 48, blister pack 117528 55867011000036107 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet, 48 53651011000036109 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) tablet 51701000168108 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) 51701000168108 Paracetamol 500 mg plus Codeine Phosphate 10 mg (Your Pharmacy) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +684741000168106 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials 22923 684731000168102 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials 684711000168107 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 50 mL vial 65160011000036101 Calcium Gluconate (Phebra) 65160011000036101 Calcium Gluconate (Phebra) 684721000168100 calcium gluconate monohydrate 4.765 g/50 mL injection, 10 x 50 mL vials 684701000168109 calcium gluconate monohydrate 4.765 g/50 mL injection, vial 69763011000036108 calcium gluconate monohydrate +684741000168106 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials 167944 684731000168102 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials 684711000168107 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 50 mL vial 65160011000036101 Calcium Gluconate (Phebra) 65160011000036101 Calcium Gluconate (Phebra) 684721000168100 calcium gluconate monohydrate 4.765 g/50 mL injection, 10 x 50 mL vials 684701000168109 calcium gluconate monohydrate 4.765 g/50 mL injection, vial 69763011000036108 calcium gluconate monohydrate +1118691000168100 Quetin 25 mg film-coated tablet, 60, blister pack 204841 1118681000168103 Quetin 25 mg film-coated tablet, 60 1118651000168105 Quetin 25 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +808971000168102 Pramipexole XR (GP) 4.5 mg modified release tablet, 10, blister pack 225617 808961000168108 Pramipexole XR (GP) 4.5 mg modified release tablet, 10 808951000168106 Pramipexole XR (GP) 4.5 mg modified release tablet 808201000168101 Pramipexole XR (GP) 808201000168101 Pramipexole XR (GP) 756471000168104 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet, 10 87762011000036107 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet 37716011000036100 pramipexole +19691011000036106 Deptran 10 mg hard capsule, 50, blister pack 60447 12949011000036105 Deptran 10 mg hard capsule, 50 6239011000036105 Deptran 10 mg hard capsule 4412011000036104 Deptran 4412011000036104 Deptran 27462011000036107 doxepin 10 mg capsule, 50 22809011000036109 doxepin 10 mg capsule 21583011000036105 doxepin +933214231000036108 Ralset 50 mg film-coated tablet, 28, blister pack 160771 933203451000036102 Ralset 50 mg film-coated tablet, 28 933195821000036107 Ralset 50 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 46995011000036101 sertraline 50 mg tablet, 28 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +1105741000168107 Valpam 5 mg uncoated tablet, 90, bottle 80812 1105701000168105 Valpam 5 mg uncoated tablet, 90 7082011000036101 Valpam 5 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 750511000168105 diazepam 5 mg tablet, 90 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +1049051000168106 Neodol Forte 500/30 tablet, 20, blister pack 220981 1049041000168109 Neodol Forte 500/30 tablet, 20 1048941000168104 Neodol Forte 500/30 tablet 1048931000168108 Neodol Forte 500/30 1048931000168108 Neodol Forte 500/30 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +19590011000036109 Seroquel 200 mg film-coated tablet, 60, blister pack 58114 12861011000036107 Seroquel 200 mg film-coated tablet, 60 6152011000036102 Seroquel 200 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +835951000168106 Codapane Forte 500/30 uncoated tablet, 20, blister pack 285558 835941000168109 Codapane Forte 500/30 uncoated tablet, 20 835931000168100 Codapane Forte 500/30 uncoated tablet 27331000168106 Codapane Forte 500/30 27331000168106 Codapane Forte 500/30 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +835951000168106 Codapane Forte 500/30 uncoated tablet, 20, blister pack 99732 835941000168109 Codapane Forte 500/30 uncoated tablet, 20 835931000168100 Codapane Forte 500/30 uncoated tablet 27331000168106 Codapane Forte 500/30 27331000168106 Codapane Forte 500/30 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +1022281000168104 Butafen 200 mg film-coated tablet, 50, blister pack 155484 1022271000168102 Butafen 200 mg film-coated tablet, 50 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +13091000036100 Quetiapine (Apo) 25 mg film-coated tablet, 60, blister pack 166082 8161000036104 Quetiapine (Apo) 25 mg film-coated tablet, 60 1481000036107 Quetiapine (Apo) 25 mg film-coated tablet 6221000168109 Quetiapine (Apo) 6221000168109 Quetiapine (Apo) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +933238891000036105 Fentanyl (Sandoz) 12 microgram/hour patch, 4, sachet 152572 933236091000036100 Fentanyl (Sandoz) 12 microgram/hour patch, 4 933234491000036104 Fentanyl (Sandoz) 12 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236101000036109 fentanyl 12 microgram/hour patch, 4 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +37597011000036102 Diprosone OV 0.05% modified cream, 30 g, tube 18825 36864011000036109 Diprosone OV 0.05% modified cream, 30 g 36200011000036108 Diprosone OV 0.05% modified cream 8541000168102 Diprosone OV 8541000168102 Diprosone OV 38751011000036105 betamethasone (as dipropionate) 0.05% modified cream, 30 g 125341000036106 betamethasone (as dipropionate) 0.05% modified cream 21372011000036109 betamethasone dipropionate +69123011000036109 Zovirax Cold Sore 5% cream, 2 g, bottle 150099 41653011000036107 Zovirax Cold Sore 5% cream, 2 g 40124011000036100 Zovirax Cold Sore 5% cream 34331000168101 Zovirax Cold Sore 34331000168101 Zovirax Cold Sore 46471011000036108 aciclovir 5% cream, 2 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +44525011000036105 Ethyol 375 mg powder for injection, 5 vials 78720 41978011000036104 Ethyol 375 mg powder for injection, 5 vials 40299011000036108 Ethyol 375 mg powder for injection, 375 mg vial 39627011000036109 Ethyol 39627011000036109 Ethyol 46757011000036108 amifostine 375 mg injection, 5 vials 45302011000036103 amifostine 375 mg injection, vial 44944011000036101 amifostine +684901000168107 Sunsense Sensitive SPF 50+ lotion, 200 g, tube 193110 684891000168108 Sunsense Sensitive SPF 50+ lotion, 200 g 684841000168100 Sunsense Sensitive SPF 50+ lotion 684811000168104 Sunsense Sensitive SPF 50+ 684811000168104 Sunsense Sensitive SPF 50+ 684881000168105 titanium dioxide 9.8% + zinc oxide 2% lotion, 200 g 684831000168109 titanium dioxide 9.8% + zinc oxide 2% lotion 684821000168106 titanium dioxide + zinc oxide +1001961000168104 Pregabalin (Apo) 200 mg hard capsule, 56, bottle 193252 1001951000168101 Pregabalin (Apo) 200 mg hard capsule, 56 1001901000168100 Pregabalin (Apo) 200 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +928814011000036103 Paracetamol (Home Brand) 500 mg hard capsule, 24, blister pack 114656 928181011000036108 Paracetamol (Home Brand) 500 mg hard capsule, 24 927836011000036106 Paracetamol (Home Brand) 500 mg hard capsule 927765011000036108 Paracetamol (Home Brand) 927765011000036108 Paracetamol (Home Brand) 72039011000036107 paracetamol 500 mg capsule, 24 70282011000036109 paracetamol 500 mg capsule 21433011000036107 paracetamol +44767011000036109 Repreve 2 mg film-coated tablet, 28, blister pack 96870 42212011000036108 Repreve 2 mg film-coated tablet, 28 40393011000036100 Repreve 2 mg film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 46972011000036104 ropinirole 2 mg tablet, 28 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +34702011000036109 Morphine Hydrochloride (Ramprie Labs) 2 mg/mL oral liquid solution, 500 mL, bottle 14714 34286011000036103 Morphine Hydrochloride (Ramprie Labs) 2 mg/mL oral liquid solution, 500 mL 34011011000036104 Morphine Hydrochloride (Ramprie Labs) 2 mg/mL oral liquid solution 33924011000036102 Morphine Hydrochloride (Ramprie Labs) 33924011000036102 Morphine Hydrochloride (Ramprie Labs) 872731000168108 morphine hydrochloride 2 mg/mL oral liquid, 500 mL 872681000168104 morphine hydrochloride 2 mg/mL oral liquid 21252011000036100 morphine +809131000168109 Quetiapine XR (AS) 50 mg modified release tablet, 10, blister pack 241756 809121000168106 Quetiapine XR (AS) 50 mg modified release tablet, 10 809111000168104 Quetiapine XR (AS) 50 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51529011000036107 quetiapine 50 mg modified release tablet, 10 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +82151000036100 Reedos 25 mg tablet, 56, blister pack 187266 80661000036106 Reedos 25 mg tablet, 56 78791000036104 Reedos 25 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +59931011000036107 Decongestant and Antihistamine Mixture (Guardian) oral liquid solution, 200 mL, bottle 119361 55893011000036101 Decongestant and Antihistamine Mixture (Guardian) oral liquid solution, 200 mL 53712011000036103 Decongestant and Antihistamine Mixture (Guardian) oral liquid solution, 5 mL 47821000168103 Decongestant and Antihistamine Mixture (Guardian) 47821000168103 Decongestant and Antihistamine Mixture (Guardian) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +20267011000036101 Pamisol 30 mg/10 mL concentrated injection, 10 mL vial 75107 13477011000036108 Pamisol 30 mg/10 mL concentrated injection, 10 mL vial 6760011000036104 Pamisol 30 mg/10 mL concentrated injection, 10 mL vial 3449011000036103 Pamisol 3449011000036103 Pamisol 27766011000036100 pamidronate disodium 30 mg/10 mL injection, 10 mL vial 23097011000036109 pamidronate disodium 30 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +18311011000036103 Methyl Salicylate Compound (Gold Cross) liniment, 100 mL, bottle 14285 12017011000036104 Methyl Salicylate Compound (Gold Cross) liniment, 100 mL 4931011000036104 Methyl Salicylate Compound (Gold Cross) liniment 3637011000036108 Methyl Salicylate Compound (Gold Cross) 3637011000036108 Methyl Salicylate Compound (Gold Cross) 26851011000036100 methyl salicylate 25% + eucalyptus oil 10% + menthol 4% liniment, 100 mL 22232011000036102 methyl salicylate 25% + eucalyptus oil 10% + menthol 4% liniment 21628011000036103 methyl salicylate + eucalyptus oil + menthol +1007261000168100 Morphine MR (Mylan) 10 mg modified release tablet, 20, blister pack 225421 1007251000168102 Morphine MR (Mylan) 10 mg modified release tablet, 20 1007241000168104 Morphine MR (Mylan) 10 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 26860011000036100 morphine sulfate pentahydrate 10 mg modified release tablet, 20 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +44842011000036101 Curosurf 240 mg/3 mL intratracheal suspension, 3 mL vial 99515 42274011000036106 Curosurf 240 mg/3 mL intratracheal suspension, 3 mL vial 40413011000036105 Curosurf 240 mg/3 mL intratracheal suspension, 3 mL vial 39597011000036108 Curosurf 39597011000036108 Curosurf 47027011000036107 poractant alfa 240 mg/3 mL intratracheal suspension, 3 mL vial 45379011000036101 poractant alfa 240 mg/3 mL intratracheal suspension, vial 44855011000036107 poractant alfa +931630011000036102 Kuvan 100 mg soluble tablet, 30, bottle 165738 930790011000036106 Kuvan 100 mg soluble tablet, 30 930045011000036105 Kuvan 100 mg soluble tablet 929907011000036101 Kuvan 929907011000036101 Kuvan 932413011000036102 sapropterin dihydrochloride 100 mg soluble tablet, 30 931854011000036100 sapropterin dihydrochloride 100 mg soluble tablet 931808011000036100 sapropterin +933214391000036100 Ralset 100 mg film-coated tablet, 28, blister pack 160779 933203691000036108 Ralset 100 mg film-coated tablet, 28 933195861000036103 Ralset 100 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 46996011000036108 sertraline 100 mg tablet, 28 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +1030821000168101 Atomoxetine (Genpar) 5 mg hard capsule, 28, blister pack 234851 1030811000168108 Atomoxetine (Genpar) 5 mg hard capsule, 28 1030761000168102 Atomoxetine (Genpar) 5 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 976371000168103 atomoxetine 5 mg capsule, 28 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +82131000036108 Reedos 100 mg tablet, 56, bottle 187258 80671000036103 Reedos 100 mg tablet, 56 78841000036102 Reedos 100 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +933231491000036102 Idaprex 4 mg uncoated tablet, 30, blister pack 34267 933225671000036104 Idaprex 4 mg uncoated tablet, 30 933220271000036107 Idaprex 4 mg uncoated tablet 933218941000036100 Idaprex 933218941000036100 Idaprex 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +20532011000036104 Enahexal 20 mg uncoated tablet, 30, bottle 79269 13730011000036102 Enahexal 20 mg uncoated tablet, 30 7013011000036106 Enahexal 20 mg uncoated tablet 4073011000036109 Enahexal 4073011000036109 Enahexal 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +20025011000036107 Sotacor 160 mg uncoated tablet, 60, bottle 68965 13260011000036102 Sotacor 160 mg uncoated tablet, 60 6542011000036107 Sotacor 160 mg uncoated tablet 3656011000036106 Sotacor 3656011000036106 Sotacor 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +793091000168109 Prodeinextra film-coated tablet, 12, blister pack 205550 793081000168106 Prodeinextra film-coated tablet, 12 793051000168104 Prodeinextra film-coated tablet 793041000168101 Prodeinextra 793041000168101 Prodeinextra 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +869101000168103 Pacrolim 1 mg hard capsule, 50, blister pack 224268 869091000168108 Pacrolim 1 mg hard capsule, 50 869061000168101 Pacrolim 1 mg hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 749101000168109 tacrolimus 1 mg capsule, 50 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +17876011000036109 Hytrin 5 mg uncoated tablet, 28, blister pack 121318 11665011000036100 Hytrin 5 mg uncoated tablet, 28 4690011000036101 Hytrin 5 mg uncoated tablet 3113011000036109 Hytrin 3113011000036109 Hytrin 26733011000036100 terazosin 5 mg tablet, 28 22128011000036100 terazosin 5 mg tablet 21396011000036100 terazosin +61668011000036104 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet, 25, bottle 97353 57590011000036109 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet, 25 54356011000036109 Paracetamol Tabsule (Herron) vanilla 500 mg film-coated tablet 9551000168107 Paracetamol Tabsule (Herron) 9551000168107 Paracetamol Tabsule (Herron) 63943011000036107 paracetamol 500 mg tablet, 25 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1114241000168102 Rekovelle 72 microgram/2.16 mL injection solution, 2.16 mL cartridge 271653 1114231000168106 Rekovelle 72 microgram/2.16 mL injection solution, 2.16 mL cartridge 1114211000168101 Rekovelle 72 microgram/2.16 mL injection solution, 2.16 mL cartridge 1113721000168100 Rekovelle 1113721000168100 Rekovelle 1114221000168108 follitropin delta 72 microgram/2.16 mL injection, 2.16 mL cartridge 1114201000168104 follitropin delta 72 microgram/2.16 mL injection, cartridge 1113771000168104 follitropin delta +1114441000168101 Zolpidem (GH) 10 mg film-coated tablet, 20, blister pack 210960 1114431000168105 Zolpidem (GH) 10 mg film-coated tablet, 20 1114361000168107 Zolpidem (GH) 10 mg film-coated tablet 1114351000168105 Zolpidem (GH) 1114351000168105 Zolpidem (GH) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +929085011000036101 Pioglitazone (Apotex) 15 mg uncoated tablet, 7, blister pack 166911 928446011000036105 Pioglitazone (Apotex) 15 mg uncoated tablet, 7 927985011000036104 Pioglitazone (Apotex) 15 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929267011000036103 pioglitazone 15 mg tablet, 7 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +927679011000036109 PKU Gel powder for oral liquid, 30 x 24 g sachets 927613011000036103 PKU Gel powder for oral liquid, 30 x 24 g sachets 241731000168105 PKU Gel powder for oral liquid, 24 g sachet 1281000168104 PKU Gel 1281000168104 PKU Gel 927729011000036101 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 24 g sachets 240811000168100 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 24 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +933211581000036106 Ceftriaxone (Lupin) 250 mg powder for injection, 5 vials 104486 933200101000036101 Ceftriaxone (Lupin) 250 mg powder for injection, 5 vials 933194001000036108 Ceftriaxone (Lupin) 250 mg powder for injection, 250 mg vial 32956011000036102 Ceftriaxone (Lupin) 32956011000036102 Ceftriaxone (Lupin) 933200111000036104 ceftriaxone 250 mg injection, 5 vials 933194011000036105 ceftriaxone 250 mg injection, vial 21610011000036107 ceftriaxone +973101000168100 Bosentan (Mylan) 125 mg film-coated tablet, 60, bottle 206776 973091000168105 Bosentan (Mylan) 125 mg film-coated tablet, 60 973081000168107 Bosentan (Mylan) 125 mg film-coated tablet 973071000168109 Bosentan (Mylan) 973071000168109 Bosentan (Mylan) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1023331000168103 Ibuprofen (A) 200 mg film-coated tablet, 84, blister pack 161314 1023321000168101 Ibuprofen (A) 200 mg film-coated tablet, 84 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 984481000168107 ibuprofen 200 mg tablet, 84 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1101471000168108 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 10, blister pack 286356 1101461000168102 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 10 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1048001000168102 Prodeine Forte uncoated tablet, 50, blister pack 93865 1047991000168106 Prodeine Forte uncoated tablet, 50 835801000168102 Prodeine Forte uncoated tablet 63481000168103 Prodeine Forte 63481000168103 Prodeine Forte 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +18458011000036106 Cisplatin (DBL) 10 mg/10 mL injection solution, 10 mL vial 16367 12110011000036105 Cisplatin (DBL) 10 mg/10 mL injection solution, 10 mL vial 5007011000036101 Cisplatin (DBL) 10 mg/10 mL injection solution, 10 mL vial 3785011000036102 Cisplatin (DBL) 3785011000036102 Cisplatin (DBL) 26920011000036101 cisplatin 10 mg/10 mL injection, 10 mL vial 22297011000036106 cisplatin 10 mg/10 mL injection, vial 21771011000036102 cisplatin +961221000168105 Carduran 1 mg uncoated tablet, 30, blister pack 32635 961211000168103 Carduran 1 mg uncoated tablet, 30 961161000168106 Carduran 1 mg uncoated tablet 960961000168103 Carduran 960961000168103 Carduran 961201000168101 doxazosin 1 mg tablet, 30 961151000168109 doxazosin 1 mg tablet 960971000168109 doxazosin +686111000168104 Topiramate (AN) 25 mg film-coated tablet, 60, bottle 157962 686101000168102 Topiramate (AN) 25 mg film-coated tablet, 60 686091000168107 Topiramate (AN) 25 mg film-coated tablet 686051000168102 Topiramate (AN) 686051000168102 Topiramate (AN) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +60746011000036109 Codapane uncoated tablet, 24, blister pack 50763 56704011000036102 Codapane uncoated tablet, 24 54041011000036103 Codapane uncoated tablet 4392011000036108 Codapane 4392011000036108 Codapane 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +1111021000168103 Quetiapine (DP) 200 mg film-coated tablet, 20, blister pack 202270 1111011000168105 Quetiapine (DP) 200 mg film-coated tablet, 20 1111001000168107 Quetiapine (DP) 200 mg film-coated tablet 1110851000168109 Quetiapine (DP) 1110851000168109 Quetiapine (DP) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +50275011000036106 Tubigrip Long Stocking (1483) medium size bandage, 1, carton 49323011000036106 Tubigrip Long Stocking (1483) medium size bandage, 1 48701011000036103 Tubigrip Long Stocking (1483) medium size bandage 59151000168109 Tubigrip Long Stocking (1483) 59151000168109 Tubigrip Long Stocking (1483) 51304011000036103 bandage tubular long stocking medium size bandage, 1 50833011000036101 bandage tubular long stocking medium size bandage 50728011000036105 bandage tubular long stocking +947211000168104 Citlam-S 10 mg film-coated tablet, 28, blister pack 191886 947201000168102 Citlam-S 10 mg film-coated tablet, 28 947121000168102 Citlam-S 10 mg film-coated tablet 945271000168104 Citlam-S 945271000168104 Citlam-S 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +947371000168104 Risdone 2 mg film-coated tablet, 20, blister pack 144280 947361000168105 Risdone 2 mg film-coated tablet, 20 947221000168106 Risdone 2 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 81623011000036103 risperidone 2 mg tablet, 20 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +882031000168101 Bosentan (RBX) 125 mg film-coated tablet, 56, blister pack 257753 882021000168104 Bosentan (RBX) 125 mg film-coated tablet, 56 882011000168106 Bosentan (RBX) 125 mg film-coated tablet 882001000168108 Bosentan (RBX) 882001000168108 Bosentan (RBX) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +60965011000036104 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 48, blister pack 62806 56908011000036101 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 48 54117011000036107 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +697831000168102 Pramipexole (Apo) 125 microgram uncoated tablet, 30, blister pack 229626 697221000168101 Pramipexole (Apo) 125 microgram uncoated tablet, 30 697211000168108 Pramipexole (Apo) 125 microgram uncoated tablet 697171000168106 Pramipexole (Apo) 697171000168106 Pramipexole (Apo) 38830011000036101 pramipexole dihydrochloride monohydrate 125 microgram tablet, 30 38035011000036106 pramipexole dihydrochloride monohydrate 125 microgram tablet 37716011000036100 pramipexole +1018981000168100 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 10 x 5 mL vials 190334 1018971000168103 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 10 x 5 mL vials 1018901000168108 Zoledronic Acid (Apotex) 4 mg/5 mL concentrated injection, 5 mL vial 1018811000168100 Zoledronic Acid (Apotex) 1018811000168100 Zoledronic Acid (Apotex) 1018961000168109 zoledronic acid 4 mg/5 mL injection, 10 x 5 mL vials 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +20944011000036101 Dimirel 2 mg uncoated tablet, 30, blister pack 94476 14099011000036101 Dimirel 2 mg uncoated tablet, 30 7376011000036108 Dimirel 2 mg uncoated tablet 3387011000036106 Dimirel 3387011000036106 Dimirel 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +1114401000168103 Zolpidem (GH) 10 mg film-coated tablet, 7, blister pack 210960 1114391000168100 Zolpidem (GH) 10 mg film-coated tablet, 7 1114361000168107 Zolpidem (GH) 10 mg film-coated tablet 1114351000168105 Zolpidem (GH) 1114351000168105 Zolpidem (GH) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +44312011000036105 ClindaTech 1% solution, 100 mL, bottle 66687 41779011000036101 ClindaTech 1% solution, 100 mL 40197011000036103 ClindaTech 1% solution 39609011000036105 ClindaTech 39609011000036105 ClindaTech 46585011000036106 clindamycin hydrochloride 1% solution, 100 mL 45230011000036102 clindamycin hydrochloride 1% solution 21255011000036108 clindamycin +1044801000168104 Darunavir (Mylan) 600 mg film-coated tablet, 60, bottle 271132 1044791000168100 Darunavir (Mylan) 600 mg film-coated tablet, 60 1044781000168103 Darunavir (Mylan) 600 mg film-coated tablet 1044771000168101 Darunavir (Mylan) 1044771000168101 Darunavir (Mylan) 933243451000036109 darunavir 600 mg tablet, 60 933241381000036109 darunavir 600 mg tablet 32622011000036101 darunavir +869021000168106 Simipex XR 4.5 mg modified release tablet, 10, blister pack 225628 869011000168104 Simipex XR 4.5 mg modified release tablet, 10 869001000168102 Simipex XR 4.5 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 756471000168104 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet, 10 87762011000036107 pramipexole dihydrochloride monohydrate 4.5 mg modified release tablet 37716011000036100 pramipexole +702121000168101 Logem 200 mg tablet, 56, blister pack 99064 702111000168108 Logem 200 mg tablet, 56 702101000168105 Logem 200 mg tablet 701951000168104 Logem 701951000168104 Logem 28297011000036101 lamotrigine 200 mg tablet, 56 23611011000036107 lamotrigine 200 mg tablet 21643011000036106 lamotrigine +1053381000168101 Actiq 1200 microgram lozenge on handle, 6, blister pack 91603 1053371000168104 Actiq 1200 microgram lozenge on handle, 6 34079011000036109 Actiq 1200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053361000168105 fentanyl 1200 microgram lozenge on handle, 6 34914011000036108 fentanyl 1200 microgram lozenge on handle 21258011000036102 fentanyl +1007341000168105 Morphine MR (Mylan) 10 mg modified release tablet, 60, blister pack 225421 1007331000168101 Morphine MR (Mylan) 10 mg modified release tablet, 60 1007241000168104 Morphine MR (Mylan) 10 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +1013601000168107 Ziprasidone (Apo) 80 mg hard capsule, 300, bottle 201055 1013591000168100 Ziprasidone (Apo) 80 mg hard capsule, 300 148281000036104 Ziprasidone (Apo) 80 mg hard capsule 147971000036107 Ziprasidone (Apo) 147971000036107 Ziprasidone (Apo) 1013581000168103 ziprasidone 80 mg capsule, 300 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +13031000036101 Quetiapine (Chemmart) 300 mg film-coated tablet, 60, blister pack 166068 8111000036101 Quetiapine (Chemmart) 300 mg film-coated tablet, 60 1991000036100 Quetiapine (Chemmart) 300 mg film-coated tablet 421000036105 Quetiapine (Chemmart) 421000036105 Quetiapine (Chemmart) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +20935011000036103 Tacidine 150 mg capsule, 60, blister pack 94204 14089011000036100 Tacidine 150 mg capsule, 60 7367011000036100 Tacidine 150 mg capsule 4018011000036106 Tacidine 4018011000036106 Tacidine 28206011000036101 nizatidine 150 mg capsule, 60 23518011000036109 nizatidine 150 mg capsule 21421011000036109 nizatidine +944241000168107 Risperidone (Chemmart) 3 mg film-coated tablet, 60, blister pack 127594 944231000168103 Risperidone (Chemmart) 3 mg film-coated tablet, 60 944221000168101 Risperidone (Chemmart) 3 mg film-coated tablet 944101000168101 Risperidone (Chemmart) 944101000168101 Risperidone (Chemmart) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +77330011000036100 Water for Injections (AstraZeneca) injection solution, 5 x 10 mL ampoules 48351 76746011000036100 Water for Injections (AstraZeneca) injection solution, 5 x 10 mL ampoules 76158011000036108 Water for Injections (AstraZeneca) injection solution, 10 mL ampoule 75978011000036105 Water for Injections (AstraZeneca) 75978011000036105 Water for Injections (AstraZeneca) 78255011000036107 water for injections injection, 5 x 10 mL ampoules 77584011000036100 water for injections injection, 10 mL ampoule 77431011000036101 water for injections +926711011000036106 Period Pain Relief (Chemmart) 275 mg film-coated tablet, 24, blister pack 117603 926102011000036107 Period Pain Relief (Chemmart) 275 mg film-coated tablet, 24 925590011000036101 Period Pain Relief (Chemmart) 275 mg film-coated tablet 925577011000036109 Period Pain Relief (Chemmart) 925577011000036109 Period Pain Relief (Chemmart) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +697871000168104 Dilart HCT 160/12.5 mg film-coated tablet, 28, blister pack 187403 697861000168105 Dilart HCT 160/12.5 mg film-coated tablet, 28 697851000168108 Dilart HCT 160/12.5 mg film-coated tablet 697841000168106 Dilart HCT 160/12.5 mg 697841000168106 Dilart HCT 160/12.5 mg 46960011000036107 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 28 45359011000036104 valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +933238971000036102 Fentanyl (Sandoz) 100 microgram/hour patch, 4, sachet 152576 933236261000036100 Fentanyl (Sandoz) 100 microgram/hour patch, 4 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236271000036108 fentanyl 100 microgram/hour patch, 4 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +82331011000036105 Duromine 30 mg modified release capsule, 30, blister pack 76680 82114011000036107 Duromine 30 mg modified release capsule, 30 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82518011000036107 phentermine 30 mg modified release capsule, 30 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +82331011000036105 Duromine 30 mg modified release capsule, 30, blister pack 10940 82114011000036107 Duromine 30 mg modified release capsule, 30 81996011000036103 Duromine 30 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 82518011000036107 phentermine 30 mg modified release capsule, 30 82435011000036102 phentermine 30 mg modified release capsule 37725011000036101 phentermine +800221000168107 Abyraz 30 mg uncoated tablet, 30, blister pack 159504 800211000168100 Abyraz 30 mg uncoated tablet, 30 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +19452011000036106 Invirase 200 mg hard capsule, 270, bottle 54158 12729011000036104 Invirase 200 mg hard capsule, 270 5384011000036105 Invirase 200 mg hard capsule 3196011000036104 Invirase 3196011000036104 Invirase 27316011000036102 saquinavir 200 mg capsule, 270 22669011000036103 saquinavir 200 mg capsule 21626011000036102 saquinavir +39211000036109 Bronchitol 40 mg powder for inhalation, 140 capsules, blister pack 168002 35621000036101 Bronchitol 40 mg powder for inhalation, 140 capsules 32891000036107 Bronchitol 40 mg powder for inhalation, 1 capsule 32151000036106 Bronchitol 32151000036106 Bronchitol 35631000036104 mannitol 40 mg powder for inhalation, 140 capsules 81258011000036109 mannitol 40 mg powder for inhalation, 1 capsule 69778011000036106 mannitol +50462011000036109 Allevyn Thin (66047576) 5 cm x 6 cm dressing, 10, carton 92774 49396011000036107 Allevyn Thin (66047576) 5 cm x 6 cm dressing, 10 48639011000036101 Allevyn Thin (66047576) 5 cm x 6 cm dressing 35221000168106 Allevyn Thin (66047576) 35221000168106 Allevyn Thin (66047576) 51366011000036105 dressing hydroactive superficial wound light exudate 5 cm x 6 cm dressing, 10 50888011000036104 dressing hydroactive superficial wound light exudate 5 cm x 6 cm dressing 50765011000036109 dressing hydroactive superficial wound light exudate +1122781000168103 Humira 80 mg/0.8 mL injection solution, 0.8 mL injection device 285904 1122771000168101 Humira 80 mg/0.8 mL injection solution, 0.8 mL injection device 1122751000168105 Humira 80 mg/0.8 mL injection solution, 0.8 mL injection device 4142011000036107 Humira 4142011000036107 Humira 1122761000168107 adalimumab 80 mg/0.8 mL injection, 0.8 mL injection device 1122741000168108 adalimumab 80 mg/0.8 mL injection device 21584011000036107 adalimumab +60657011000036101 Wartec 0.5% application, 3 mL, bottle 33694 56615011000036108 Wartec 0.5% application, 3 mL 54010011000036101 Wartec 0.5% application 53465011000036102 Wartec 53465011000036102 Wartec 63467011000036108 podophyllotoxin 0.5% application, 3 mL 61986011000036102 podophyllotoxin 0.5% application 21864011000036108 podophyllotoxin +926917011000036105 Nicobrevin modified release capsule, 48, blister pack 81926 926311011000036107 Nicobrevin modified release capsule, 48 925753011000036104 Nicobrevin modified release capsule 925567011000036103 Nicobrevin 925567011000036103 Nicobrevin 927402011000036109 menthyl valerate 100 mg + quinine 15 mg + camphor 10 mg + eucalyptus oil 10 mg modified release capsule, 48 927042011000036105 menthyl valerate 100 mg + quinine 15 mg + camphor 10 mg + eucalyptus oil 10 mg modified release capsule 926965011000036101 menthyl valerate + quinine + camphor + eucalyptus oil +43782011000036106 Simvastatin (DP) 20 mg film-coated tablet, 30, bottle 199738 11293011000036102 Simvastatin (DP) 20 mg film-coated tablet, 30 4533011000036105 Simvastatin (DP) 20 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +43782011000036106 Simvastatin (DP) 20 mg film-coated tablet, 30, bottle 125781 11293011000036102 Simvastatin (DP) 20 mg film-coated tablet, 30 4533011000036105 Simvastatin (DP) 20 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +17942011000036102 Glimepiride (Sandoz) 3 mg uncoated tablet, 30, blister pack 121788 11692011000036106 Glimepiride (Sandoz) 3 mg uncoated tablet, 30 5532011000036105 Glimepiride (Sandoz) 3 mg uncoated tablet 3850011000036104 Glimepiride (Sandoz) 3850011000036104 Glimepiride (Sandoz) 28149011000036101 glimepiride 3 mg tablet, 30 23458011000036106 glimepiride 3 mg tablet 21280011000036108 glimepiride +656131000168101 Rabeprazole Sodium (AN) 10 mg enteric tablet, 28, blister pack 189244 656121000168104 Rabeprazole Sodium (AN) 10 mg enteric tablet, 28 656111000168106 Rabeprazole Sodium (AN) 10 mg enteric tablet 656061000168105 Rabeprazole Sodium (AN) 656061000168105 Rabeprazole Sodium (AN) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1049411000168103 Novacodone 60 mg modified release tablet, 20, blister pack 227945 1049401000168101 Novacodone 60 mg modified release tablet, 20 1049391000168103 Novacodone 60 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 789691000168104 oxycodone hydrochloride 60 mg modified release tablet, 20 789671000168100 oxycodone hydrochloride 60 mg modified release tablet 21259011000036105 oxycodone +85281000036108 Ceretec 500 microgram powder for injection, 2 vials 10018 84411000036102 Ceretec 500 microgram powder for injection, 2 vials 84151000036109 Ceretec 500 microgram powder for injection, vial 83961000036108 Ceretec 83961000036108 Ceretec 84421000036109 exametazime 500 microgram injection, 2 vials 84161000036107 exametazime 500 microgram injection, vial 85681000036106 exametazime +60343011000036104 Strong Pain with Calmative (Chemmart) uncoated tablet, 40, blister pack 140286 56302011000036105 Strong Pain with Calmative (Chemmart) uncoated tablet, 40 53868011000036102 Strong Pain with Calmative (Chemmart) uncoated tablet 53201011000036101 Strong Pain with Calmative (Chemmart) 53201011000036101 Strong Pain with Calmative (Chemmart) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60343011000036104 Strong Pain with Calmative (Chemmart) uncoated tablet, 40, blister pack 160497 56302011000036105 Strong Pain with Calmative (Chemmart) uncoated tablet, 40 53868011000036102 Strong Pain with Calmative (Chemmart) uncoated tablet 53201011000036101 Strong Pain with Calmative (Chemmart) 53201011000036101 Strong Pain with Calmative (Chemmart) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +758411000168106 Otocomb Otic ear drops solution, 7.5 mL, bottle 56477 758401000168108 Otocomb Otic ear drops solution, 7.5 mL 758391000168106 Otocomb Otic ear drops solution 32951000168102 Otocomb Otic 32951000168102 Otocomb Otic 758331000168107 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL 758311000168102 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops 758201000168107 triamcinolone + neomycin + gramicidin + nystatin +56291000036108 Cystitis Relief (Pharmacist Formula) powder for oral liquid, 28 x 4 g sachets 153900 51791000036109 Cystitis Relief (Pharmacist Formula) powder for oral liquid, 28 x 4 g sachets 49231000036104 Cystitis Relief (Pharmacist Formula) powder for oral liquid, 4 g sachet 48551000036103 Cystitis Relief (Pharmacist Formula) 48551000036103 Cystitis Relief (Pharmacist Formula) 27050011000036107 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 28 x 4 g sachets 22420011000036103 sodium bicarbonate 1.76 g + sodium citrate 630 mg + citric acid 720 mg + tartaric acid 890 mg powder for oral liquid, 4 g sachet 21568011000036102 bicarbonate + citric acid + tartaric acid +689331000168100 Leukopor (2471) 1.25 cm x 5 m tape, 1 roll, carton 689321000168103 Leukopor (2471) 1.25 cm x 5 m tape, 1 roll 689301000168107 Leukopor (2471) 1.25 cm x 5 m tape 5411000168108 Leukopor (2471) 5411000168108 Leukopor (2471) 689311000168105 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll 689291000168106 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape 50731011000036104 tape plaster adhesive hypoallergenic +1088261000168103 Difflam Lozenge Strawberry Sugar Free lozenge, 32, blister pack 280581 1088251000168100 Difflam Lozenge Strawberry Sugar Free lozenge, 32 1088061000168105 Difflam Lozenge Strawberry Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 1088241000168102 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 32 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +18184011000036106 Miacalcic 100 units/mL injection solution, 5 x 1 mL ampoules 13363 11971011000036106 Miacalcic 100 units/mL injection solution, 5 x 1 mL ampoules 5809011000036109 Miacalcic 100 units/mL injection solution, ampoule 3873011000036105 Miacalcic 3873011000036105 Miacalcic 26824011000036103 calcitonin salmon (salcatonin) 100 units/mL injection, 5 x 1 mL ampoules 22206011000036106 calcitonin salmon (salcatonin) 100 units/mL injection, ampoule 21446011000036102 calcitonin salmon (salcatonin) +978761000168106 Lovenox 20 mg/0.2 mL injection solution, 0.2 mL syringe 80265 978751000168109 Lovenox 20 mg/0.2 mL injection solution, 0.2 mL syringe 978741000168107 Lovenox 20 mg/0.2 mL injection solution, 0.2 mL syringe 112571000036109 Lovenox 112571000036109 Lovenox 823951000168109 enoxaparin sodium 20 mg/0.2 mL injection, 0.2 mL syringe 33672011000036106 enoxaparin sodium 20 mg/0.2 mL injection, syringe 21553011000036103 enoxaparin sodium +1114191000168102 Rekovelle 72 microgram/2.16 mL injection solution, 2.16 mL injection device 289312 1114181000168100 Rekovelle 72 microgram/2.16 mL injection solution, 2.16 mL injection device 1114161000168109 Rekovelle 72 microgram/2.16 mL injection solution, 2.16 mL injection device 1113721000168100 Rekovelle 1113721000168100 Rekovelle 1114171000168103 follitropin delta 72 microgram/2.16 mL injection, 2.16 mL injection device 1114151000168107 follitropin delta 72 microgram/2.16 mL injection, injection device 1113771000168104 follitropin delta +882351000168109 Spedra 100 mg uncoated tablet, 1, blister pack 228475 882341000168107 Spedra 100 mg uncoated tablet, 1 882321000168101 Spedra 100 mg uncoated tablet 882071000168103 Spedra 882071000168103 Spedra 882331000168103 avanafil 100 mg tablet, 1 882311000168108 avanafil 100 mg tablet 882091000168102 avanafil +43799011000036102 Acetylcysteine (DBL) 2 g/10 mL concentrated injection, 10 x 10 mL ampoules 121503 41252011000036103 Acetylcysteine (DBL) 2 g/10 mL concentrated injection, 10 x 10 mL ampoules 39957011000036109 Acetylcysteine (DBL) 2 g/10 mL concentrated injection, 10 mL ampoule 39695011000036106 Acetylcysteine (DBL) 39695011000036106 Acetylcysteine (DBL) 38535011000036109 acetylcysteine 2 g/10 mL injection, 10 x 10 mL ampoules 37821011000036101 acetylcysteine 2 g/10 mL injection, ampoule 21423011000036105 acetylcysteine +68953011000036106 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 4 sachets 133242 66755011000036109 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 4 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71423011000036100 paracetamol 500 mg powder for oral liquid, 4 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +18320011000036103 Amoxil 3 g powder for oral liquid, 1 sachet 107410 11377011000036107 Amoxil 3 g powder for oral liquid, 1 sachet 5315011000036107 Amoxil 3 g powder for oral liquid, 3 g sachet 3738011000036101 Amoxil 3738011000036101 Amoxil 26625011000036106 amoxicillin 3 g powder for oral liquid, 1 sachet 22031011000036102 amoxicillin 3 g powder for oral liquid, sachet 21415011000036100 amoxicillin +69515011000036109 Quellada Scabies Treatment 5% lotion, 50 mL, bottle 52603 67315011000036100 Quellada Scabies Treatment 5% lotion, 50 mL 65605011000036105 Quellada Scabies Treatment 5% lotion 11921000168108 Quellada Scabies Treatment 11921000168108 Quellada Scabies Treatment 71861011000036100 permethrin 5% lotion, 50 mL 70219011000036101 permethrin 5% lotion 21537011000036106 permethrin +975911000168101 Amoxiclav 2000/200 (Juno) powder for injection, 10 x 2.2 g vials 269158 975901000168104 Amoxiclav 2000/200 (Juno) powder for injection, 10 x 2.2 g vials 975821000168100 Amoxiclav 2000/200 (Juno) powder for injection, 2.2 g vial 975801000168109 Amoxiclav 2000/200 (Juno) 975801000168109 Amoxiclav 2000/200 (Juno) 975891000168103 amoxicillin 2 g + clavulanic acid 200 mg injection, 10 x 2.2 g vials 975811000168107 amoxicillin 2 g + clavulanic acid 200 mg injection, 2.2 g vial 21360011000036101 amoxicillin + clavulanic acid +1007581000168107 Novacodone 20 mg modified release tablet, 28, blister pack 227942 1007571000168109 Novacodone 20 mg modified release tablet, 28 1007541000168102 Novacodone 20 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +82907011000036101 Etoposide (Pfizer (Perth)) 500 mg/25 mL concentrated injection, 25 mL vial 52986 82799011000036102 Etoposide (Pfizer (Perth)) 500 mg/25 mL concentrated injection, 25 mL vial 82704011000036101 Etoposide (Pfizer (Perth)) 500 mg/25 mL concentrated injection, 25 mL vial 35872011000036109 Etoposide (Pfizer (Perth)) 35872011000036109 Etoposide (Pfizer (Perth)) 46436011000036101 etoposide 500 mg/25 mL injection, 25 mL vial 45154011000036109 etoposide 500 mg/25 mL injection, vial 21469011000036104 etoposide +60899011000036107 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 100 mL, bottle 60408 56853011000036109 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 100 mL 54101011000036101 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 5 mL 56861000168107 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 56861000168107 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +69587011000036101 Bepanthen Antiseptic 0.05% cream, 10 g, tube 66657 67386011000036105 Bepanthen Antiseptic 0.05% cream, 10 g 65640011000036107 Bepanthen Antiseptic 0.05% cream 25631000168108 Bepanthen Antiseptic 25631000168108 Bepanthen Antiseptic 71921011000036104 benzalkonium chloride 0.05% cream, 10 g 70248011000036101 benzalkonium chloride 0.05% cream 50773011000036101 benzalkonium chloride +1117051000168103 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 56, blister pack 161826 1117041000168100 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet, 56 1116951000168104 Valsartan/Amlodipine 320/10 (Novartis) film-coated tablet 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 1116941000168101 Valsartan/Amlodipine 320/10 (Novartis) 925438011000036102 amlodipine 10 mg + valsartan 320 mg tablet, 56 925386011000036101 amlodipine 10 mg + valsartan 320 mg tablet 61712011000036107 amlodipine + valsartan +926952011000036104 Fexotabs 120 mg film-coated tablet, 50, blister pack 98208 926346011000036107 Fexotabs 120 mg film-coated tablet, 50 925775011000036100 Fexotabs 120 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 52885011000036102 fexofenadine hydrochloride 120 mg tablet, 50 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +883721000168108 Cardizem CD 360 mg modified release capsule, 7, bottle 75251 41934011000036109 Cardizem CD 360 mg modified release capsule, 7 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46721011000036101 diltiazem hydrochloride 360 mg modified release capsule, 7 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +50413011000036101 Spenco Dermal Pad (10-561) 10 cm x 10 cm x 12 mm sheet, 1 pad, carton 49452011000036108 Spenco Dermal Pad (10-561) 10 cm x 10 cm x 12 mm sheet, 1 pad 48776011000036102 Spenco Dermal Pad (10-561) 10 cm x 10 cm x 12 mm sheet, 1 pad 5571000168101 Spenco Dermal Pad (10-561) 5571000168101 Spenco Dermal Pad (10-561) 51415011000036108 dressing pressure reducing 10 cm x 10 cm x 12 mm sheet, 1 pad 50935011000036105 dressing pressure reducing 10 cm x 10 cm x 12 mm sheet, 1 pad 50732011000036105 dressing pressure reducing +933231811000036109 Tobi 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 73172 933226111000036108 Tobi 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 933220961000036105 Tobi 300 mg/5 mL inhalation solution, 5 mL ampoule 53931000168103 Tobi 53931000168103 Tobi 933226121000036101 tobramycin 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 933220971000036102 tobramycin 300 mg/5 mL inhalation solution, ampoule 21646011000036100 tobramycin +61069011000036101 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 15 mL, bottle 68601 57012011000036106 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 15 mL 54160011000036107 Benadryl for the Family Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 15221000168103 Benadryl for the Family Chesty Cough and Nasal Congestion 63688011000036109 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 15 mL 62048011000036104 guaifenesin 100 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61743011000036107 guaifenesin + pseudoephedrine +984541000168101 Butafen 200 mg sugar coated tablet, 100, blister pack 126093 984531000168105 Butafen 200 mg sugar coated tablet, 100 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1045031000168102 Pryzex 2.5 mg film-coated tablet, 30, blister pack 178975 1045021000168100 Pryzex 2.5 mg film-coated tablet, 30 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 89731000036103 olanzapine 2.5 mg tablet, 30 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +80980011000036107 Resdone 3 mg film-coated tablet, 60, blister pack 147674 80547011000036108 Resdone 3 mg film-coated tablet, 60 80185011000036100 Resdone 3 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +43557011000036103 Sevoflurane (Baxter) 1 mL/mL inhalation solution, 250 mL, bottle 106647 41139011000036107 Sevoflurane (Baxter) 1 mL/mL inhalation solution, 250 mL 39860011000036105 Sevoflurane (Baxter) 1 mL/mL inhalation solution 39773011000036107 Sevoflurane (Baxter) 39773011000036107 Sevoflurane (Baxter) 46421011000036109 sevoflurane 1 mL/mL inhalation solution, 250 mL 45144011000036106 sevoflurane 1 mL/mL inhalation solution 44873011000036109 sevoflurane +60873011000036100 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet, 60, bottle 59522 56827011000036104 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet, 60 54091011000036109 Ferro-Gradumet 325 mg (iron 105 mg) modified release tablet 53178011000036104 Ferro-Gradumet 53178011000036104 Ferro-Gradumet 63596011000036100 ferrous sulfate 325 mg (iron 105 mg) modified release tablet, 60 62023011000036106 ferrous sulfate 325 mg (iron 105 mg) modified release tablet 61721011000036108 ferrous sulfate +651791000168109 Metrol-XL 190 mg modified release tablet, 30, blister pack 172304 651781000168106 Metrol-XL 190 mg modified release tablet, 30 651771000168108 Metrol-XL 190 mg modified release tablet 651661000168105 Metrol-XL 651661000168105 Metrol-XL 28246011000036108 metoprolol succinate 190 mg modified release tablet, 30 23560011000036108 metoprolol succinate 190 mg modified release tablet 21662011000036107 metoprolol +1117091000168108 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 7, blister pack 158169 1117081000168105 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet, 7 1117071000168107 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) film-coated tablet 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 1117061000168101 Valsartan/Amlodipine/HCT 320/10/25 (Novartis) 922598011000036101 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 7 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +50566011000036101 Durotram XR (once a day) 200 mg modified release tablet, 20, blister pack 134822 49600011000036103 Durotram XR (once a day) 200 mg modified release tablet, 20 48787011000036107 Durotram XR (once a day) 200 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +68832011000036106 Deep Heat Regular Rub cream, 100 g, tube 12821 66713011000036103 Deep Heat Regular Rub cream, 100 g 65257011000036107 Deep Heat Regular Rub cream 13681000168101 Deep Heat Regular Rub 13681000168101 Deep Heat Regular Rub 71395011000036103 methyl salicylate 12.74% + menthol 5.88% cream, 100 g 69993011000036102 methyl salicylate 12.74% + menthol 5.88% cream 69751011000036100 methyl salicylate + menthol +827571000168102 Prevenar injection suspension, 10 x 0.5 mL syringes 118375 827561000168108 Prevenar injection suspension, 10 x 0.5 mL syringes 827511000168105 Prevenar injection suspension, 0.5 mL syringe 73731011000036102 Prevenar 73731011000036102 Prevenar 827551000168106 pneumococcal 7 valent conjugate vaccine injection, 10 x 0.5 mL syringes 827501000168107 pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe 827491000168100 pneumococcal 7 valent conjugate vaccine +975881000168101 Amoxiclav 2000/200 (Juno) powder for injection, 5 x 2.2 g vials 269158 975871000168104 Amoxiclav 2000/200 (Juno) powder for injection, 5 x 2.2 g vials 975821000168100 Amoxiclav 2000/200 (Juno) powder for injection, 2.2 g vial 975801000168109 Amoxiclav 2000/200 (Juno) 975801000168109 Amoxiclav 2000/200 (Juno) 975861000168105 amoxicillin 2 g + clavulanic acid 200 mg injection, 5 x 2.2 g vials 975811000168107 amoxicillin 2 g + clavulanic acid 200 mg injection, 2.2 g vial 21360011000036101 amoxicillin + clavulanic acid +68881011000036106 Kaomagma with Pectin oral liquid suspension, 500 mL, bottle 10399 66505011000036100 Kaomagma with Pectin oral liquid suspension, 500 mL 65225011000036103 Kaomagma with Pectin oral liquid suspension, 10 mL 65064011000036103 Kaomagma with Pectin 65064011000036103 Kaomagma with Pectin 71237011000036106 aluminium hydroxide 144 mg/10 mL + light kaolin 1 g/10 mL + pectin 90 mg/10 mL oral liquid, 500 mL 69913011000036103 aluminium hydroxide 144 mg/10 mL + light kaolin 1 g/10 mL + pectin 90 mg/10 mL oral liquid 69844011000036103 aluminium hydroxide + light kaolin + pectin +962911000168100 Arflox 500 mg film-coated tablet, 10, blister pack 92365 962901000168103 Arflox 500 mg film-coated tablet, 10 962861000168109 Arflox 500 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 933199771000036102 ciprofloxacin 500 mg tablet, 10 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +788501000168100 Cortiment 9 mg modified release tablet, 30, blister pack 225849 788491000168107 Cortiment 9 mg modified release tablet, 30 788411000168103 Cortiment 9 mg modified release tablet 788391000168103 Cortiment 788391000168103 Cortiment 788481000168109 budesonide 9 mg modified release tablet, 30 788401000168101 budesonide 9 mg modified release tablet 21307011000036104 budesonide +980251000168106 Humulin NPH Kwikpen 100 units/mL injection suspension, 5 x 3 mL syringes 64228 980241000168109 Humulin NPH Kwikpen 100 units/mL injection suspension, 5 x 3 mL syringes 980231000168100 Humulin NPH Kwikpen 100 units/mL injection suspension, 3 mL syringe 980161000168102 Humulin NPH Kwikpen 980161000168102 Humulin NPH Kwikpen 27355011000036102 insulin isophane human 100 units/mL injection, 5 x 3 mL syringes 22708011000036103 insulin isophane human 100 units/mL injection, syringe 33643011000036100 insulin isophane human +1032191000168107 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 100, bottle 173488 1032181000168109 Atorvastatin (Ranbaxy) 40 mg film-coated tablet, 100 1032101000168101 Atorvastatin (Ranbaxy) 40 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890291000168107 atorvastatin 40 mg tablet, 100 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +20238011000036105 Ranitidine (Terry White Chemists) 150 mg film-coated tablet, 60, blister pack 121975 13449011000036102 Ranitidine (Terry White Chemists) 150 mg film-coated tablet, 60 6731011000036103 Ranitidine (Terry White Chemists) 150 mg film-coated tablet 4099011000036102 Ranitidine (Terry White Chemists) 4099011000036102 Ranitidine (Terry White Chemists) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +20238011000036105 Ranitidine (Terry White Chemists) 150 mg film-coated tablet, 60, blister pack 74409 13449011000036102 Ranitidine (Terry White Chemists) 150 mg film-coated tablet, 60 6731011000036103 Ranitidine (Terry White Chemists) 150 mg film-coated tablet 4099011000036102 Ranitidine (Terry White Chemists) 4099011000036102 Ranitidine (Terry White Chemists) 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +650421000168105 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 56, blister pack 202108 650411000168103 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 56 650321000168100 Pritor/Amlodipine 80 mg/5 mg multilayer tablet 650241000168100 Pritor/Amlodipine 80 mg/5 mg 650241000168100 Pritor/Amlodipine 80 mg/5 mg 932424011000036108 telmisartan 80 mg + amlodipine 5 mg tablet, 56 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +110821000036108 Citalo 20 mg film-coated tablet, 100, bottle 158874 109041000036100 Citalo 20 mg film-coated tablet, 100 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 46708011000036102 citalopram 20 mg tablet, 100 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +748361000168102 Docetaxel (Intas) 160 mg/8 mL concentrated injection, 8 mL vial 209468 748351000168104 Docetaxel (Intas) 160 mg/8 mL concentrated injection, 8 mL vial 748341000168101 Docetaxel (Intas) 160 mg/8 mL concentrated injection, 8 mL vial 748331000168105 Docetaxel (Intas) 748331000168105 Docetaxel (Intas) 748241000168107 docetaxel 160 mg/8 mL injection, 8 mL vial 748221000168101 docetaxel 160 mg/8 mL injection, vial 21721011000036101 docetaxel +79024011000036101 Lucas' Papaw 3.9% ointment, 200 g, jar 13397 78816011000036100 Lucas' Papaw 3.9% ointment, 200 g 78635011000036105 Lucas' Papaw 3.9% ointment 78612011000036105 Lucas' Papaw 78612011000036105 Lucas' Papaw 79218011000036108 pawpaw 3.9% ointment, 200 g 79106011000036109 pawpaw 3.9% ointment 79089011000036107 pawpaw +1114031000168102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 60, blister pack 179086 1114021000168100 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 60 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043131000168102 olanzapine 10 mg orally disintegrating tablet, 60 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +20480011000036101 Piroxicam (Terry White Chemists) 20 mg dispersible tablet, 25, blister pack 78366 13680011000036103 Piroxicam (Terry White Chemists) 20 mg dispersible tablet, 25 6963011000036103 Piroxicam (Terry White Chemists) 20 mg dispersible tablet 3688011000036102 Piroxicam (Terry White Chemists) 3688011000036102 Piroxicam (Terry White Chemists) 27882011000036100 piroxicam 20 mg dispersible tablet, 25 23210011000036102 piroxicam 20 mg dispersible tablet 21531011000036103 piroxicam +1030501000168108 Atomoxetine (Genpar) 10 mg hard capsule, 14, blister pack 234846 1030491000168101 Atomoxetine (Genpar) 10 mg hard capsule, 14 1030451000168106 Atomoxetine (Genpar) 10 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 829921000168103 atomoxetine 10 mg capsule, 14 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +933231671000036104 Strepsils Dry Cough 5 mg lozenge, 24, blister pack 69834 933226301000036108 Strepsils Dry Cough 5 mg lozenge, 24 933221091000036107 Strepsils Dry Cough 5 mg lozenge 53599011000036108 Strepsils Dry Cough 53599011000036108 Strepsils Dry Cough 933226311000036105 dextromethorphan hydrobromide monohydrate 5 mg lozenge, 24 933221101000036103 dextromethorphan hydrobromide monohydrate 5 mg lozenge 61744011000036109 dextromethorphan +686271000168101 Rosuvastatin (Blooms The Chemist) 40 mg film-coated tablet, 30, blister pack 183072 686261000168107 Rosuvastatin (Blooms The Chemist) 40 mg film-coated tablet, 30 686251000168105 Rosuvastatin (Blooms The Chemist) 40 mg film-coated tablet 686151000168103 Rosuvastatin (Blooms The Chemist) 686151000168103 Rosuvastatin (Blooms The Chemist) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +774081000168102 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 4, blister pack 210274 774071000168100 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 4 774051000168109 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 774061000168106 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet, 4 774041000168107 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet 61758011000036100 bromhexine + guaifenesin +52726011000036101 Zilarex 10 mg film-coated tablet, 30, blister pack 120710 52538011000036100 Zilarex 10 mg film-coated tablet, 30 52400011000036101 Zilarex 10 mg film-coated tablet 52381011000036101 Zilarex 52381011000036101 Zilarex 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +60674011000036105 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 96, blister pack 42331 56632011000036108 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 96 54015011000036105 Paracetamol (Soul Pattinson) 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 63942011000036100 paracetamol 500 mg tablet, 96 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61625011000036100 Nurofen Migraine Pain 200 mg film-coated tablet, 4, blister pack 96215 57547011000036100 Nurofen Migraine Pain 200 mg film-coated tablet, 4 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +840481000168104 Prometrium 100 mg soft capsule, 84, blister pack 232818 840471000168102 Prometrium 100 mg soft capsule, 84 840251000168105 Prometrium 100 mg soft capsule 840231000168104 Prometrium 840231000168104 Prometrium 840461000168108 progesterone 100 mg capsule, 84 840241000168108 progesterone 100 mg capsule 21412011000036108 progesterone +61688011000036102 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 12, blister pack 98576 57609011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 12 54363011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet 1721000168108 Ibuprofen Blue (Herron) 1721000168108 Ibuprofen Blue (Herron) 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +860831000168107 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Reddycal tablets), 1 pack, composite pack 222685 860821000168109 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Reddycal tablets), 1 pack 172301000036102 Alendronate Plus D3 70 mg/140 microgram (DRLA) uncoated tablet 857051000168100 Alendronate plus D3 Cal (DRLA) 39451000168100 Alendronate Plus D3 70 mg/140 microgram (DRLA) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +860831000168107 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Reddycal tablets), 1 pack, composite pack 222685 860821000168109 Alendronate plus D3 Cal (DRLA) (4 x Alendronate Plus D3 70 mg/140 microgram tablets, 24 x Reddycal tablets), 1 pack 848121000168108 Reddycal 1.25 g (calcium 500 mg) film-coated tablet 857051000168100 Alendronate plus D3 Cal (DRLA) 691531000168105 Reddycal 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +59752011000036105 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 100 mL, bottle 10548 55706011000036108 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 100 mL 53715011000036106 Duro-Tuss Cough Liquid Expectorant oral liquid solution, 15 mL 53306011000036103 Duro-Tuss Cough Liquid Expectorant 53306011000036103 Duro-Tuss Cough Liquid Expectorant 63102011000036106 pholcodine 15 mg/15 mL + bromhexine hydrochloride 12 mg/15 mL oral liquid, 100 mL 61857011000036103 pholcodine 15 mg/15 mL + bromhexine hydrochloride 12 mg/15 mL oral liquid 61746011000036101 pholcodine + bromhexine +698031000168108 Zilfojim ODT 8 mg orally disintegrating tablet, 4, blister pack 196809 698021000168105 Zilfojim ODT 8 mg orally disintegrating tablet, 4 698011000168103 Zilfojim ODT 8 mg orally disintegrating tablet 697891000168103 Zilfojim ODT 697891000168103 Zilfojim ODT 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +926694011000036104 Lisoril 5 mg uncoated tablet, 28, blister pack 106495 926070011000036109 Lisoril 5 mg uncoated tablet, 28 925620011000036100 Lisoril 5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 46262011000036105 lisinopril 5 mg tablet, 28 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +81098011000036109 Omeprazole (GenRx) 20 mg enteric tablet, 30, blister pack 159731 33259011000036101 Omeprazole (GenRx) 20 mg enteric tablet, 30 33025011000036105 Omeprazole (GenRx) 20 mg enteric tablet 32977011000036102 Omeprazole (GenRx) 32977011000036102 Omeprazole (GenRx) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +925213011000036102 Glimaccord 4 mg uncoated tablet, 30, blister pack 156407 924750011000036104 Glimaccord 4 mg uncoated tablet, 30 924455011000036104 Glimaccord 4 mg uncoated tablet 924395011000036104 Glimaccord 924395011000036104 Glimaccord 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +111141000036101 Metformin Hydrochloride XR (Chemmart) 500 mg modified release tablet, 120, blister pack 197405 109411000036108 Metformin Hydrochloride XR (Chemmart) 500 mg modified release tablet, 120 106951000036108 Metformin Hydrochloride XR (Chemmart) 500 mg modified release tablet 46161000168100 Metformin Hydrochloride XR (Chemmart) 46161000168100 Metformin Hydrochloride XR (Chemmart) 71365011000036100 metformin hydrochloride 500 mg modified release tablet, 120 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +135641000036103 Flutamide (Mylan) 250 mg tablet, 30, blister pack 134931000036100 Flutamide (Mylan) 250 mg tablet, 30 134351000036107 Flutamide (Mylan) 250 mg tablet 134081000036102 Flutamide (Mylan) 134081000036102 Flutamide (Mylan) 134941000036105 flutamide 250 mg tablet, 30 23649011000036103 flutamide 250 mg tablet 21762011000036101 flutamide +69423011000036105 Intralipid 20% (200 g/L) intravenous infusion injection, 10 x 1 L bottles 48246 67223011000036100 Intralipid 20% (200 g/L) intravenous infusion injection, 10 x 1 L bottles 65563011000036103 Intralipid 20% (200 g/L) intravenous infusion injection, 1 L bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71774011000036106 soya oil 20% (200 g/L) injection, 10 x 1 L bottles 70181011000036101 soya oil 20% (200 g/L) injection, bottle 69767011000036104 soya oil +21189011000036100 Acihexal 200 mg uncoated tablet, 90, blister pack 99420 14327011000036101 Acihexal 200 mg uncoated tablet, 90 7612011000036106 Acihexal 200 mg uncoated tablet 3239011000036103 Acihexal 3239011000036103 Acihexal 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +757041000168104 Leflunomide (Apotex) 20 mg film-coated tablet, 30, bottle 251993 757031000168108 Leflunomide (Apotex) 20 mg film-coated tablet, 30 757021000168105 Leflunomide (Apotex) 20 mg film-coated tablet 755921000168101 Leflunomide (Apotex) 755921000168101 Leflunomide (Apotex) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +754161000168108 Xedone 20 mg hard capsule, 60, bottle 227859 754151000168106 Xedone 20 mg hard capsule, 60 754121000168103 Xedone 20 mg hard capsule 753881000168109 Xedone 753881000168109 Xedone 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +933214551000036102 Levetiracetam (MPPL) 250 mg film-coated tablet, 60, blister pack 161285 933203911000036107 Levetiracetam (MPPL) 250 mg film-coated tablet, 60 933195941000036109 Levetiracetam (MPPL) 250 mg film-coated tablet 933193681000036106 Levetiracetam (MPPL) 933193681000036106 Levetiracetam (MPPL) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +81971000036104 Letrozole (Stada) 2.5 mg film-coated tablet, 30, blister pack 159227 79941000036104 Letrozole (Stada) 2.5 mg film-coated tablet, 30 78851000036104 Letrozole (Stada) 2.5 mg film-coated tablet 77801000036104 Letrozole (Stada) 77801000036104 Letrozole (Stada) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +1045121000168104 Pryzex 2.5 mg film-coated tablet, 60, blister pack 178975 1045111000168106 Pryzex 2.5 mg film-coated tablet, 60 1044841000168102 Pryzex 2.5 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1045101000168108 olanzapine 2.5 mg tablet, 60 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +980291000168101 Murelax 15 mg uncoated tablet, 5, blister pack 75122 980281000168104 Murelax 15 mg uncoated tablet, 5 980261000168108 Murelax 15 mg uncoated tablet 3531011000036106 Murelax 3531011000036106 Murelax 980271000168102 oxazepam 15 mg tablet, 5 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +1105581000168108 Valpam 2 mg uncoated tablet, 100, bottle 80810 1105571000168105 Valpam 2 mg uncoated tablet, 100 7081011000036107 Valpam 2 mg uncoated tablet 3175011000036100 Valpam 3175011000036100 Valpam 1105561000168104 diazepam 2 mg tablet, 100 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +69287011000036109 Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 18 x 500 mL bags 19501 67087011000036107 Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 18 x 500 mL bags 65219011000036106 Sodium Chloride 0.18% and Glucose 4% (Baxter) intravenous infusion injection, 500 mL bag 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 19981000168106 Sodium Chloride 0.18% and Glucose 4% (Baxter) 71655011000036100 sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, 18 x 500 mL bags 70150011000036104 sodium chloride 0.18% (900 mg/500 mL) + glucose 4% (20 g/500 mL) injection, bag 21257011000036103 sodium chloride + glucose +156891000036100 Paracetamol IV (Pfizer) 1 g/100 mL injection solution, 12 x 100 mL bags 193213 155781000036102 Paracetamol IV (Pfizer) 1 g/100 mL injection solution, 12 x 100 mL bags 154731000036102 Paracetamol IV (Pfizer) 1 g/100 mL injection solution, 100 mL bag 45931000168100 Paracetamol IV (Pfizer) 45931000168100 Paracetamol IV (Pfizer) 155791000036100 paracetamol 1 g/100 mL injection, 12 x 100 mL bags 154741000036107 paracetamol 1 g/100 mL injection, bag 21433011000036107 paracetamol +1016171000168100 Aripiprazole (GX) 10 mg uncoated tablet, 100, bottle 217196 1016161000168106 Aripiprazole (GX) 10 mg uncoated tablet, 100 1016151000168109 Aripiprazole (GX) 10 mg uncoated tablet 1016141000168107 Aripiprazole (GX) 1016141000168107 Aripiprazole (GX) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +869421000168104 Eplerenone (AN) 50 mg film-coated tablet, 90, blister pack 231455 869401000168108 Eplerenone (AN) 50 mg film-coated tablet, 90 869331000168107 Eplerenone (AN) 50 mg film-coated tablet 869321000168109 Eplerenone (AN) 869321000168109 Eplerenone (AN) 790641000168103 eplerenone 50 mg tablet, 90 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +59888011000036103 Naproxen Sodium (Guardian) 275 mg film-coated tablet, 24, blister pack 116392 55850011000036104 Naproxen Sodium (Guardian) 275 mg film-coated tablet, 24 53618011000036105 Naproxen Sodium (Guardian) 275 mg film-coated tablet 53432011000036101 Naproxen Sodium (Guardian) 53432011000036101 Naproxen Sodium (Guardian) 63897011000036101 naproxen sodium 275 mg tablet, 24 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +69106011000036108 Blistex Medicated Lip ointment, 8 g, tube 14883 66907011000036103 Blistex Medicated Lip ointment, 8 g 65334011000036108 Blistex Medicated Lip ointment 64950011000036104 Blistex Medicated Lip 64950011000036104 Blistex Medicated Lip 71501011000036100 padimate-O 7.5% + oxybenzone 2% + camphor 1% ointment, 8 g 70039011000036104 padimate-O 7.5% + oxybenzone 2% + camphor 1% ointment 69822011000036105 padimate-O + oxybenzone + camphor +997391000168108 Olanzapine ODT (Apotex) 10 mg orally disintegrating tablet, 28, blister pack 159004 997381000168105 Olanzapine ODT (Apotex) 10 mg orally disintegrating tablet, 28 997371000168107 Olanzapine ODT (Apotex) 10 mg orally disintegrating tablet 997061000168103 Olanzapine ODT (Apotex) 997061000168103 Olanzapine ODT (Apotex) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +1019221000168103 Aripiprazole (Actavis) 15 mg uncoated tablet, 100, bottle 217244 1019211000168105 Aripiprazole (Actavis) 15 mg uncoated tablet, 100 1019181000168106 Aripiprazole (Actavis) 15 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +60991011000036104 Cold and Allergy Syrup (Pharmacist) oral liquid solution, 200 mL, bottle 63335 56934011000036100 Cold and Allergy Syrup (Pharmacist) oral liquid solution, 200 mL 54128011000036102 Cold and Allergy Syrup (Pharmacist) oral liquid solution, 5 mL 45981000168104 Cold and Allergy Syrup (Pharmacist) 45981000168104 Cold and Allergy Syrup (Pharmacist) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +81991000036100 Irinotecan Hydrochloride Trihydrate (Meditab) 100 mg/5 mL concentrated injection, 5 mL vial 167202 79971000036106 Irinotecan Hydrochloride Trihydrate (Meditab) 100 mg/5 mL concentrated injection, 5 mL vial 78501000036103 Irinotecan Hydrochloride Trihydrate (Meditab) 100 mg/5 mL concentrated injection, 5 mL vial 77961000036107 Irinotecan Hydrochloride Trihydrate (Meditab) 77961000036107 Irinotecan Hydrochloride Trihydrate (Meditab) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +961381000168100 Bisoprolol (Apo) 3.75 mg tablet, 56, blister pack 182117 961371000168103 Bisoprolol (Apo) 3.75 mg tablet, 56 961101000168105 Bisoprolol (Apo) 3.75 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 875901000168105 bisoprolol fumarate 3.75 mg tablet, 56 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +836111000168103 Codalgin uncoated tablet, 20, blister pack 13440 836101000168101 Codalgin uncoated tablet, 20 836011000168102 Codalgin uncoated tablet 3521011000036109 Codalgin 3521011000036109 Codalgin 836091000168106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 20 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +1101311000168109 Danzem 60 mg film-coated tablet, 90, blister pack 184087 1101291000168105 Danzem 60 mg film-coated tablet, 90 1101281000168107 Danzem 60 mg film-coated tablet 1101271000168109 Danzem 1101271000168109 Danzem 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +1105421000168105 Seroquel 300 mg film-coated tablet, 20, blister pack 78361 1105411000168103 Seroquel 300 mg film-coated tablet, 20 6960011000036106 Seroquel 300 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +1111501000168100 Clopithromb 75 mg film-coated tablet, 50, blister pack 187040 1111491000168107 Clopithromb 75 mg film-coated tablet, 50 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87803011000036103 clopidogrel 75 mg tablet, 50 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +923846011000036102 Levetiracetam (SZ) 250 mg film-coated tablet, 60, blister pack 159268 923392011000036109 Levetiracetam (SZ) 250 mg film-coated tablet, 60 923056011000036101 Levetiracetam (SZ) 250 mg film-coated tablet 922938011000036101 Levetiracetam (SZ) 922938011000036101 Levetiracetam (SZ) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +61000011000036108 Paracetamol Pain and Fever Drops 1 Month to 2 Years (Chemists' Own) 100 mg/mL oral liquid solution, 20 mL, bottle 63787 56943011000036101 Paracetamol Pain and Fever Drops 1 Month to 2 Years (Chemists' Own) 100 mg/mL oral liquid solution, 20 mL 54132011000036102 Paracetamol Pain and Fever Drops 1 Month to 2 Years (Chemists' Own) 100 mg/mL oral liquid solution 54821000168107 Paracetamol Pain and Fever Drops 1 Month to 2 Years (Chemists' Own) 54821000168107 Paracetamol Pain and Fever Drops 1 Month to 2 Years (Chemists' Own) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +69261011000036104 Chlorhexidine Acetate (Baxter) 0.5% (2.5 g/500 mL) irrigation solution, 500 mL bottle 19474 67061011000036102 Chlorhexidine Acetate (Baxter) 0.5% (2.5 g/500 mL) irrigation solution, 500 mL bottle 65522011000036104 Chlorhexidine Acetate (Baxter) 0.5% (2.5 g/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71631011000036101 chlorhexidine acetate 0.5% (2.5 g/500 mL) solution, 500 mL bottle 70101011000036100 chlorhexidine acetate 0.5% (2.5 g/500 mL) solution, bottle 21404011000036101 chlorhexidine +44776011000036101 Reminyl 16 mg modified release capsule, 300, bottle 97884 42221011000036109 Reminyl 16 mg modified release capsule, 300 7536011000036108 Reminyl 16 mg modified release capsule 4278011000036107 Reminyl 4278011000036107 Reminyl 46981011000036102 galantamine 16 mg modified release capsule, 300 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +835221000168105 Stop-It 2 mg hard capsule, 8, blister pack 199731 835211000168103 Stop-It 2 mg hard capsule, 8 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 933206161000036104 loperamide hydrochloride 2 mg capsule, 8 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +1105401000168101 Seroquel 100 mg film-coated tablet, 60, blister pack 58113 1105391000168103 Seroquel 100 mg film-coated tablet, 60 6151011000036108 Seroquel 100 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 854271000168106 quetiapine 100 mg tablet, 60 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +698151000168103 Azathioprine (GH) 25 mg film-coated tablet, 100, blister pack 219042 698141000168100 Azathioprine (GH) 25 mg film-coated tablet, 100 698131000168109 Azathioprine (GH) 25 mg film-coated tablet 698091000168107 Azathioprine (GH) 698091000168107 Azathioprine (GH) 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +771241000168101 Imigran FDT 50 mg film-coated tablet, 12, blister pack 106714 771231000168105 Imigran FDT 50 mg film-coated tablet, 12 5890011000036101 Imigran FDT 50 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 771221000168107 sumatriptan 50 mg tablet, 12 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +737041000168103 Asartan HCT 32/25 uncoated tablet, 30, blister pack 199095 737031000168107 Asartan HCT 32/25 uncoated tablet, 30 737021000168109 Asartan HCT 32/25 uncoated tablet 736881000168103 Asartan HCT 32/25 736881000168103 Asartan HCT 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +653481000168100 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash, 300 mL, bottle 11245 653471000168103 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash, 300 mL 933194231000036106 Savacol Antiseptic Mouth and Throat Rinse 0.2% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 933203561000036100 chlorhexidine gluconate 0.2% mouthwash, 300 mL 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +1036621000168103 Aranesp with Automatic Needle Guard 500 microgram/mL injection solution, 4 x 1 mL syringes 166096 1036611000168105 Aranesp with Automatic Needle Guard 500 microgram/mL injection solution, 4 x 1 mL syringes 1036581000168103 Aranesp with Automatic Needle Guard 500 microgram/mL injection solution, syringe 6471000168109 Aranesp 6471000168109 Aranesp 968561000168105 darbepoetin alfa 500 microgram/mL injection, 4 x 1 mL syringes 968511000168107 darbepoetin alfa 500 microgram/mL injection, syringe 21234011000036105 darbepoetin alfa +1113671000168108 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 60, blister pack 179092 1113661000168102 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet, 60 15781000036100 Olanzapine ODT (Sandoz) 5 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043431000168106 olanzapine 5 mg orally disintegrating tablet, 60 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +1045161000168109 Amisulpride (Pharmacor) 200 mg uncoated tablet, 30, blister pack 234693 1045151000168107 Amisulpride (Pharmacor) 200 mg uncoated tablet, 30 1045141000168105 Amisulpride (Pharmacor) 200 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 901561000168104 amisulpride 200 mg tablet, 30 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +34719011000036102 Methadone Hydrochloride Syrup (Orion) 250 microgram/mL oral liquid solution, 20 mL, bottle 21173 34303011000036101 Methadone Hydrochloride Syrup (Orion) 250 microgram/mL oral liquid solution, 20 mL 34026011000036101 Methadone Hydrochloride Syrup (Orion) 250 microgram/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35152011000036101 methadone hydrochloride 250 microgram/mL oral liquid, 20 mL 34874011000036107 methadone hydrochloride 250 microgram/mL oral liquid 21357011000036109 methadone +1111541000168103 Clopithromb 75 mg film-coated tablet, 56, blister pack 187040 1111531000168107 Clopithromb 75 mg film-coated tablet, 56 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 87804011000036101 clopidogrel 75 mg tablet, 56 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +1083691000168103 Drixine Adult 0.05% nasal spray, 5 mL, pump pack 26981 74327011000036105 Drixine Adult 0.05% nasal spray, 5 mL 73864011000036106 Drixine Adult 0.05% nasal spray 1631000168103 Drixine Adult 1631000168103 Drixine Adult 75433011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 5 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +56571000036106 Idarubicin Hydrochloride (Ebewe) 20 mg/20 mL concentrated injection, 20 mL vial 162932 52941000036107 Idarubicin Hydrochloride (Ebewe) 20 mg/20 mL concentrated injection, 20 mL vial 49641000036106 Idarubicin Hydrochloride (Ebewe) 20 mg/20 mL concentrated injection, 20 mL vial 927760011000036104 Idarubicin Hydrochloride (Ebewe) 927760011000036104 Idarubicin Hydrochloride (Ebewe) 52951000036105 idarubicin hydrochloride 20 mg/20 mL injection, 20 mL vial 49651000036109 idarubicin hydrochloride 20 mg/20 mL injection, vial 21720011000036108 idarubicin +60565011000036109 Panadeine uncoated tablet, 50, blister pack 15478 56523011000036107 Panadeine uncoated tablet, 50 53950011000036101 Panadeine uncoated tablet 13481000168104 Panadeine 13481000168104 Panadeine 63448011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +946891000168107 Risdone 4 mg film-coated tablet, 56, blister pack 144282 946881000168109 Risdone 4 mg film-coated tablet, 56 946751000168107 Risdone 4 mg film-coated tablet 946561000168102 Risdone 946561000168102 Risdone 946871000168106 risperidone 4 mg tablet, 56 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +18662011000036100 Aylide 4 mg uncoated tablet, 30, blister pack 116862 11554011000036102 Aylide 4 mg uncoated tablet, 30 4880011000036106 Aylide 4 mg uncoated tablet 4143011000036100 Aylide 4143011000036100 Aylide 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +110661000036103 Finasteride (RBX) 5 mg film-coated tablet, 30, blister pack 155237 108821000036107 Finasteride (RBX) 5 mg film-coated tablet, 30 107061000036105 Finasteride (RBX) 5 mg film-coated tablet 106671000036106 Finasteride (RBX) 106671000036106 Finasteride (RBX) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +60058011000036107 Paracetamol Infant Drops (Priceline) Colour Free 100 mg/mL oral liquid solution, 20 mL, bottle 124627 56020011000036101 Paracetamol Infant Drops (Priceline) Colour Free 100 mg/mL oral liquid solution, 20 mL 53760011000036101 Paracetamol Infant Drops (Priceline) Colour Free 100 mg/mL oral liquid solution 53711000168105 Paracetamol Infant Drops (Priceline) 53711000168105 Paracetamol Infant Drops (Priceline) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +61345011000036107 Clotrimazole (Pharmacy Health) 2% cream, 20 g, tube 81472 57270011000036108 Clotrimazole (Pharmacy Health) 2% cream, 20 g 54258011000036100 Clotrimazole (Pharmacy Health) 2% cream 53319011000036109 Clotrimazole (Pharmacy Health) 53319011000036109 Clotrimazole (Pharmacy Health) 28108011000036104 clotrimazole 2% cream, 20 g 23417011000036102 clotrimazole 2% cream 21684011000036100 clotrimazole +18611011000036107 Paracetamol Pain Relief (Chemmart) 500 mg uncoated tablet, 100, blister pack 115529 11497011000036105 Paracetamol Pain Relief (Chemmart) 500 mg uncoated tablet, 100 5245011000036106 Paracetamol Pain Relief (Chemmart) 500 mg uncoated tablet 57661000168109 Paracetamol Pain Relief (Chemmart) 57661000168109 Paracetamol Pain Relief (Chemmart) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1036941000168101 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 28, bottle 173506 1036931000168105 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 28 1036881000168100 Atorvastatin (Ranbaxy) 10 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890061000168107 atorvastatin 10 mg tablet, 28 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +843931000168100 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 14, blister pack 218082 843921000168103 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 14 843891000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1113991000168101 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 40, blister pack 179086 1113981000168104 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 40 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1043071000168100 olanzapine 10 mg orally disintegrating tablet, 40 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +920719011000036102 Pantofast 20 mg enteric tablet, 30, blister pack 155105 920406011000036100 Pantofast 20 mg enteric tablet, 30 920166011000036102 Pantofast 20 mg enteric tablet 920103011000036107 Pantofast 920103011000036107 Pantofast 27683011000036100 pantoprazole 20 mg enteric tablet, 30 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1070781000168109 Paracetamol plus Codeine-15 (Chemplus) uncoated tablet, 20, blister pack 235597 1070771000168106 Paracetamol plus Codeine-15 (Chemplus) uncoated tablet, 20 1070761000168100 Paracetamol plus Codeine-15 (Chemplus) uncoated tablet 1070751000168102 Paracetamol plus Codeine-15 (Chemplus) 1070751000168102 Paracetamol plus Codeine-15 (Chemplus) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +19555011000036108 Viramune 200 mg uncoated tablet, 60, blister pack 56892 12826011000036106 Viramune 200 mg uncoated tablet, 60 6117011000036108 Viramune 200 mg uncoated tablet 7221000168106 Viramune 7221000168106 Viramune 27383011000036105 nevirapine 200 mg tablet, 60 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +749591000168109 Tacrolimus (Actavis) 1 mg hard capsule, 10, blister pack 224269 749581000168106 Tacrolimus (Actavis) 1 mg hard capsule, 10 749571000168108 Tacrolimus (Actavis) 1 mg hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 749071000168100 tacrolimus 1 mg capsule, 10 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +1111821000168107 Midalim 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207234 1111811000168100 Midalim 50 mg/10 mL injection solution, 10 x 10 mL ampoules 1111711000168108 Midalim 50 mg/10 mL injection solution, 10 mL ampoule 1107761000168100 Midalim 1107761000168100 Midalim 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +933211741000036107 Ciprofloxacin (BL) 250 mg film-coated tablet, 10, blister pack 114046 933199711000036108 Ciprofloxacin (BL) 250 mg film-coated tablet, 10 933194141000036107 Ciprofloxacin (BL) 250 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +82366011000036107 Coplavix 75 mg/100 mg film-coated tablet, 100, blister pack 150443 82155011000036104 Coplavix 75 mg/100 mg film-coated tablet, 100 82022011000036101 Coplavix 75 mg/100 mg film-coated tablet 3951000168103 Coplavix 75 mg/100 mg 3951000168103 Coplavix 75 mg/100 mg 82543011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 100 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +18853011000036105 Tinaderm 0.07% pressurised spray, 100 g, aerosol can 18212 12164011000036101 Tinaderm 0.07% pressurised spray, 100 g 4810011000036108 Tinaderm 0.07% pressurised spray 18701000168107 Tinaderm 18701000168107 Tinaderm 26959011000036108 tolnaftate 0.07% spray, 100 g 22334011000036103 tolnaftate 0.07% spray 21680011000036105 tolnaftate +944401000168106 Risperidone (Terry White Chemists) 500 microgram film-coated tablet, 20, blister pack 127596 944391000168109 Risperidone (Terry White Chemists) 500 microgram film-coated tablet, 20 944381000168106 Risperidone (Terry White Chemists) 500 microgram film-coated tablet 944371000168108 Risperidone (Terry White Chemists) 944371000168108 Risperidone (Terry White Chemists) 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +929706011000036109 MS Contin Suspension 100 mg modified release granules, 28 sachets 65398 929542011000036102 MS Contin Suspension 100 mg modified release granules, 28 sachets 6399011000036108 MS Contin Suspension 100 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 929763011000036102 morphine sulfate pentahydrate 100 mg modified release granules, 28 sachets 22896011000036103 morphine sulfate pentahydrate 100 mg modified release granules, 1 sachet 21252011000036100 morphine +702401000168100 X-Evess Part-2 200 mg/mL oral liquid solution, 500 mL, bottle 702391000168102 X-Evess Part-2 200 mg/mL oral liquid solution, 500 mL 702371000168103 X-Evess Part-2 200 mg/mL oral liquid solution 702351000168107 X-Evess Part-2 702351000168107 X-Evess Part-2 702381000168100 citric acid 200 mg/mL oral liquid, 500 mL 702361000168109 citric acid 200 mg/mL oral liquid 77470011000036106 citric acid +1111861000168102 Antiseptic Ointment (Pharmacy Care) 10% ointment, 25 g, tube 271973 1111851000168104 Antiseptic Ointment (Pharmacy Care) 10% ointment, 25 g 1111841000168101 Antiseptic Ointment (Pharmacy Care) 10% ointment 1111831000168105 Antiseptic Ointment (Pharmacy Care) 1111831000168105 Antiseptic Ointment (Pharmacy Care) 71716011000036107 povidone-iodine 10% ointment, 25 g 70146011000036103 povidone-iodine 10% ointment 21660011000036108 povidone-iodine +972501000168103 Lyzalon 300 mg hard capsule, 20, bottle 224423 972491000168105 Lyzalon 300 mg hard capsule, 20 972461000168103 Lyzalon 300 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +929642011000036106 Diazepam (Apo) 5 mg uncoated tablet, 50, blister pack 134590 929491011000036109 Diazepam (Apo) 5 mg uncoated tablet, 50 929393011000036104 Diazepam (Apo) 5 mg uncoated tablet 53191000168102 Diazepam (Apo) 53191000168102 Diazepam (Apo) 28114011000036108 diazepam 5 mg tablet, 50 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +52744011000036107 Fexal 60 mg film-coated tablet, 2, blister pack 140283 52556011000036103 Fexal 60 mg film-coated tablet, 2 52418011000036101 Fexal 60 mg film-coated tablet 52379011000036108 Fexal 52379011000036108 Fexal 52881011000036104 fexofenadine hydrochloride 60 mg tablet, 2 23023011000036105 fexofenadine hydrochloride 60 mg tablet 21394011000036108 fexofenadine +933213911000036109 Levetiracetam (SCP) 250 mg film-coated tablet, 60, blister pack 159250 933203361000036108 Levetiracetam (SCP) 250 mg film-coated tablet, 60 933195471000036108 Levetiracetam (SCP) 250 mg film-coated tablet 933193431000036105 Levetiracetam (SCP) 933193431000036105 Levetiracetam (SCP) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +961701000168109 Bisoprolol (Apo) 1.25 mg tablet, 10, blister pack 182108 961691000168109 Bisoprolol (Apo) 1.25 mg tablet, 10 961571000168109 Bisoprolol (Apo) 1.25 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 46788011000036101 bisoprolol fumarate 1.25 mg tablet, 10 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +792771000168102 Abisart HCT 300/12.5 film-coated tablet, 7, bottle 215945 792761000168108 Abisart HCT 300/12.5 film-coated tablet, 7 98801000036108 Abisart HCT 300/12.5 film-coated tablet 24981000168101 Abisart HCT 300/12.5 24981000168101 Abisart HCT 300/12.5 792751000168106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 7 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +85056011000036100 PicoPrep powder for oral liquid, 250 x 15.55 g sachets 20508 84920011000036100 PicoPrep powder for oral liquid, 250 x 15.55 g sachets 83702011000036104 PicoPrep powder for oral liquid, 15.55 g sachet 83542011000036107 PicoPrep 83542011000036107 PicoPrep 85187011000036100 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 250 x 15.55 g sachets 84441011000036108 picosulfate sodium monohydrate 10 mg + magnesium oxide heavy 3.5 g + citric acid 12 g powder for oral liquid, 15.55 g sachet 84409011000036101 picosulfate + magnesium oxide heavy + citric acid +978921000168104 Piperacillin (Douglas) 2 g powder for injection, 5 vials 63781 978911000168106 Piperacillin (Douglas) 2 g powder for injection, 5 vials 978891000168109 Piperacillin (Douglas) 2 g powder for injection, 2 g vial 978861000168102 Piperacillin (Douglas) 978861000168102 Piperacillin (Douglas) 978901000168108 piperacillin 2 g injection, 5 vials 978881000168106 piperacillin 2 g injection, vial 978871000168108 piperacillin +84313011000036106 Clopidogrel (Sandoz) 75 mg film-coated tablet, 28, blister pack 155046 84006011000036104 Clopidogrel (Sandoz) 75 mg film-coated tablet, 28 83642011000036103 Clopidogrel (Sandoz) 75 mg film-coated tablet 83587011000036100 Clopidogrel (Sandoz) 83587011000036100 Clopidogrel (Sandoz) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +775451000168101 Diprosone 0.05% cream, 5 g, tube 18818 775441000168103 Diprosone 0.05% cream, 5 g 5366011000036104 Diprosone 0.05% cream 10951000168106 Diprosone 10951000168106 Diprosone 775431000168107 betamethasone (as dipropionate) 0.05% cream, 5 g 22453011000036107 betamethasone (as dipropionate) 0.05% cream 21372011000036109 betamethasone dipropionate +1011041000168101 Risedronate (Apotex) 75 mg film-coated tablet, 4, blister pack 181976 1011031000168105 Risedronate (Apotex) 75 mg film-coated tablet, 4 1011001000168103 Risedronate (Apotex) 75 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 801001000168102 risedronate sodium 75 mg tablet, 4 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +925200011000036107 Paclitaxel (Kabi) 300 mg/50 mL concentrated injection, 50 mL vial 156273 924737011000036104 Paclitaxel (Kabi) 300 mg/50 mL concentrated injection, 50 mL vial 924445011000036102 Paclitaxel (Kabi) 300 mg/50 mL concentrated injection, 50 mL vial 924407011000036104 Paclitaxel (Kabi) 924407011000036104 Paclitaxel (Kabi) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +878251000168106 Carvedilol (Blooms The Chemist) 6.25 mg film-coated tablet, 60, blister pack 210730 878241000168109 Carvedilol (Blooms The Chemist) 6.25 mg film-coated tablet, 60 878231000168100 Carvedilol (Blooms The Chemist) 6.25 mg film-coated tablet 878221000168103 Carvedilol (Blooms The Chemist) 878221000168103 Carvedilol (Blooms The Chemist) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +1111701000168105 Allopurinol (TW) 100 mg uncoated tablet, 200, bottle 269649 1111691000168105 Allopurinol (TW) 100 mg uncoated tablet, 200 1111681000168107 Allopurinol (TW) 100 mg uncoated tablet 1111641000168102 Allopurinol (TW) 1111641000168102 Allopurinol (TW) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +20204011000036106 Captopril (Chemmart) 50 mg uncoated tablet, 90, blister pack 74008 13423011000036103 Captopril (Chemmart) 50 mg uncoated tablet, 90 6705011000036107 Captopril (Chemmart) 50 mg uncoated tablet 3676011000036108 Captopril (Chemmart) 3676011000036108 Captopril (Chemmart) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +933231351000036103 Sifrol ER 3.75 mg modified release tablet, 30, blister pack 173921 933225451000036106 Sifrol ER 3.75 mg modified release tablet, 30 933220631000036108 Sifrol ER 3.75 mg modified release tablet 5461000168106 Sifrol ER 5461000168106 Sifrol ER 933225461000036109 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet, 30 933220641000036103 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet 37716011000036100 pramipexole +69518011000036103 Intralipid 30% (150 g/500 mL) intravenous infusion injection, 10 x 500 mL bottles 53540 67318011000036106 Intralipid 30% (150 g/500 mL) intravenous infusion injection, 10 x 500 mL bottles 65608011000036104 Intralipid 30% (150 g/500 mL) intravenous infusion injection, 500 mL bottle 65008011000036106 Intralipid 65008011000036106 Intralipid 71864011000036102 soya oil 30% (150 g/500 mL) injection, 10 x 500 mL bottles 70222011000036101 soya oil 30% (150 g/500 mL) injection, bottle 69767011000036104 soya oil +30751000036108 Finasteride (GA) 1 mg film-coated tablet, 28, blister pack 173216 28541000036104 Finasteride (GA) 1 mg film-coated tablet, 28 26571000036107 Finasteride (GA) 1 mg film-coated tablet 26131000036104 Finasteride (GA) 26131000036104 Finasteride (GA) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +1010961000168106 Adynovate (1 x 2000 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 278729 1010951000168109 Adynovate (1 x 2000 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010681000168109 Adynovate (inert substance) diluent, 2 mL vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010941000168107 rurioctocog alfa pegol 2000 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +1010961000168106 Adynovate (1 x 2000 units vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 278729 1010951000168109 Adynovate (1 x 2000 units vial, 1 x 2 mL inert diluent vial), 1 pack 1010931000168103 Adynovate (rurioctocog alfa pegol 2000 units) powder for injection, 2000 units vial 1010591000168108 Adynovate 1010591000168108 Adynovate 1010941000168107 rurioctocog alfa pegol 2000 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 1010921000168101 rurioctocog alfa pegol 2000 units injection, vial 1010651000168102 rurioctocog alfa pegol +928888011000036108 Ear Care Antiseptic (Rossan) 0.13% lotion, 100 mL, bottle 14391 928250011000036108 Ear Care Antiseptic (Rossan) 0.13% lotion, 100 mL 927903011000036104 Ear Care Antiseptic (Rossan) 0.13% lotion 47881000168104 Ear Care Antiseptic (Rossan) 47881000168104 Ear Care Antiseptic (Rossan) 929211011000036107 benzalkonium chloride 0.13% lotion, 100 mL 929147011000036107 benzalkonium chloride 0.13% lotion 50773011000036101 benzalkonium chloride +843971000168102 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 14, bottle 218077 843851000168103 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 14 843821000168106 Desvenlafaxine (Sandoz) 50 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +963871000168106 Danzetron 4 mg/2 mL injection solution, 2 mL ampoule 107052 963861000168100 Danzetron 4 mg/2 mL injection solution, 2 mL ampoule 963851000168102 Danzetron 4 mg/2 mL injection solution, 2 mL ampoule 957881000168109 Danzetron 957881000168109 Danzetron 28330011000036104 ondansetron 4 mg/2 mL injection, 2 mL ampoule 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +1070921000168107 Analgesic Calmative (Trust) uncoated tablet, 40, blister pack 217762 1070911000168100 Analgesic Calmative (Trust) uncoated tablet, 40 1070341000168100 Analgesic Calmative (Trust) uncoated tablet 1070331000168109 Analgesic Calmative (Trust) 1070331000168109 Analgesic Calmative (Trust) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +927701011000036105 Bicard 10 mg tablet, 28, blister pack 164260 927637011000036100 Bicard 10 mg tablet, 28 927590011000036100 Bicard 10 mg tablet 927569011000036109 Bicard 927569011000036109 Bicard 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +651151000168103 Irbesartan HCT 150/12.5 (Actavis) film-coated tablet, 30, blister pack 189375 651141000168100 Irbesartan HCT 150/12.5 (Actavis) film-coated tablet, 30 651131000168109 Irbesartan HCT 150/12.5 (Actavis) film-coated tablet 651121000168106 Irbesartan HCT 150/12.5 (Actavis) 651121000168106 Irbesartan HCT 150/12.5 (Actavis) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +61291011000036107 Paracetamol Children 1 to 5 Years (Terry White Chemists) colour free 120 mg/5 mL oral liquid suspension, 200 mL, bottle 78707 57227011000036108 Paracetamol Children 1 to 5 Years (Terry White Chemists) colour free 120 mg/5 mL oral liquid suspension, 200 mL 54246011000036101 Paracetamol Children 1 to 5 Years (Terry White Chemists) colour free 120 mg/5 mL oral liquid suspension, 5 mL 30411000168107 Paracetamol Children 1 to 5 Years (Terry White Chemists) 30411000168107 Paracetamol Children 1 to 5 Years (Terry White Chemists) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +1105241000168100 Midazolam (AN) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 207244 1105231000168109 Midazolam (AN) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1105201000168102 Midazolam (AN) 50 mg/10 mL injection solution, 10 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +87746011000036100 Colgout 500 microgram uncoated tablet, 30, bottle 27909 87512011000036107 Colgout 500 microgram uncoated tablet, 30 4720011000036104 Colgout 500 microgram uncoated tablet 3313011000036104 Colgout 3313011000036104 Colgout 87836011000036101 colchicine 500 microgram tablet, 30 23537011000036101 colchicine 500 microgram tablet 21400011000036106 colchicine +886781000168104 Eloctate (1 x 2000 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210524 886771000168102 Eloctate (1 x 2000 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886451000168104 Eloctate (inert substance) diluent, 3 mL syringe 886371000168101 Eloctate 886371000168101 Eloctate 886761000168108 efmoroctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886441000168101 inert substance diluent, 3 mL syringe 21220011000036103 inert substance +886781000168104 Eloctate (1 x 2000 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210524 886771000168102 Eloctate (1 x 2000 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886751000168106 Eloctate (efmoroctocog alfa 2000 units) powder for injection, 2000 units vial 886371000168101 Eloctate 886371000168101 Eloctate 886761000168108 efmoroctocog alfa 2000 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886741000168109 efmoroctocog alfa 2000 units injection, vial 886411000168100 efmoroctocog alfa +61311011000036100 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 5 g, tube 80846 57247011000036105 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream, 5 g 54253011000036105 Canesten Bifonazole Once Daily Anti-Fungal Body 1% cream 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 23261000168104 Canesten Bifonazole Once Daily Anti-Fungal Body 63782011000036101 bifonazole 1% cream, 5 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +82471000036101 Omeprazole (RBX) 20 mg enteric tablet, 30, blister pack 190416 80521000036103 Omeprazole (RBX) 20 mg enteric tablet, 30 78141000036109 Omeprazole (RBX) 20 mg enteric tablet 77721000036101 Omeprazole (RBX) 77721000036101 Omeprazole (RBX) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +996021000168105 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24, blister pack 169046 996011000168103 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24 995991000168102 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 29831000168105 Duro-Tuss Chesty Cough Lozenge 996001000168101 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 995981000168100 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge 86203011000036105 bromhexine + cetylpyridinium +696181000168106 MD-Gastroview solution, 12 x 120 mL, bottles 20011 696171000168108 MD-Gastroview solution, 12 x 120 mL 696061000168101 MD-Gastroview solution 920923011000036102 MD-Gastroview 920923011000036102 MD-Gastroview 696161000168102 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 120 mL 696051000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution 77441011000036100 amidotrizoic acid +754021000168104 Remifentanil (Apo) 1 mg powder for injection, 5 vials 234716 754011000168106 Remifentanil (Apo) 1 mg powder for injection, 5 vials 754001000168108 Remifentanil (Apo) 1 mg powder for injection, vial 753711000168106 Remifentanil (Apo) 753711000168106 Remifentanil (Apo) 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +20523011000036109 Nidem 80 mg uncoated tablet, 100, bottle 79022 13723011000036108 Nidem 80 mg uncoated tablet, 100 7005011000036105 Nidem 80 mg uncoated tablet 3835011000036109 Nidem 3835011000036109 Nidem 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +18391000036107 Aurozapine 45 mg film-coated tablet, 30, blister pack 183397 16971000036106 Aurozapine 45 mg film-coated tablet, 30 15371000036103 Aurozapine 45 mg film-coated tablet 15271000036109 Aurozapine 15271000036109 Aurozapine 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +34693011000036106 Salbutamol (Sandoz) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 140695 34277011000036108 Salbutamol (Sandoz) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 34005011000036104 Salbutamol (Sandoz) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33947011000036105 Salbutamol (Sandoz) 33947011000036105 Salbutamol (Sandoz) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +981051000168107 Twinrix injection suspension, 10 x 1 mL vials 140574 981041000168105 Twinrix injection suspension, 10 x 1 mL vials 980991000168107 Twinrix injection suspension, 1 mL vial 73697011000036105 Twinrix 73697011000036105 Twinrix 981031000168101 hepatitis A + hepatitis B adult vaccine injection, 10 x 1 mL vials 980981000168109 hepatitis A + hepatitis B adult vaccine injection, 1 mL vial 824501000168100 hepatitis A + hepatitis B vaccine +60400011000036107 Febridol Co uncoated tablet, 48, blister pack 144070 56359011000036109 Febridol Co uncoated tablet, 48 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +928836011000036100 Ebegemcit 1 g powder for injection, 1 vial 129351 928198011000036103 Ebegemcit 1 g powder for injection, 1 vial 927857011000036105 Ebegemcit 1 g powder for injection, vial 927797011000036100 Ebegemcit 927797011000036100 Ebegemcit 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +749731000168101 Tacrolimus (Actavis) 500 microgram hard capsule, 10, blister pack 224280 749721000168104 Tacrolimus (Actavis) 500 microgram hard capsule, 10 749711000168106 Tacrolimus (Actavis) 500 microgram hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 749241000168103 tacrolimus 500 microgram capsule, 10 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +18544011000036108 Simvabell 20 mg film-coated tablet, 30, blister pack 100876 11170011000036101 Simvabell 20 mg film-coated tablet, 30 5386011000036102 Simvabell 20 mg film-coated tablet 2923011000036105 Simvabell 2923011000036105 Simvabell 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +933239941000036101 Simvacor 10 mg film-coated tablet, 100, bottle 182910 933236431000036107 Simvacor 10 mg film-coated tablet, 100 933234851000036105 Simvacor 10 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46244011000036106 simvastatin 10 mg tablet, 100 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +55201000036105 Anti-Inflammatory Pain Relief (Pharmacy Choice) 1% gel, 50 g, tube 134541 50981000036104 Anti-Inflammatory Pain Relief (Pharmacy Choice) 1% gel, 50 g 48981000036104 Anti-Inflammatory Pain Relief (Pharmacy Choice) 1% gel 43021000168103 Anti-Inflammatory Pain Relief (Pharmacy Choice) 43021000168103 Anti-Inflammatory Pain Relief (Pharmacy Choice) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +933240021000036104 Simvacor 40 mg film-coated tablet, 30, bottle 182912 933236511000036104 Simvacor 40 mg film-coated tablet, 30 933234871000036100 Simvacor 40 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +69276011000036104 Glycine (Baxter) 1.5% (30 g/2 L) irrigation solution, 2 L bag 19478 67076011000036102 Glycine (Baxter) 1.5% (30 g/2 L) irrigation solution, 2 L bag 65294011000036106 Glycine (Baxter) 1.5% (30 g/2 L) irrigation solution, 2 L bag 65018011000036109 Glycine (Baxter) 65018011000036109 Glycine (Baxter) 71646011000036105 glycine 1.5% (30 g/2 L) solution, 2 L bag 70107011000036108 glycine 1.5% (30 g/2 L) solution, bag 69852011000036109 glycine +43937011000036105 Lamotrigine (Sandoz) Dispersible/Chewable 50 mg tablet, 56, blister pack 187272 41429011000036106 Lamotrigine (Sandoz) Dispersible/Chewable 50 mg tablet, 56 39845011000036109 Lamotrigine (Sandoz) Dispersible/Chewable 50 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +43937011000036105 Lamotrigine (Sandoz) Dispersible/Chewable 50 mg tablet, 56, blister pack 143559 41429011000036106 Lamotrigine (Sandoz) Dispersible/Chewable 50 mg tablet, 56 39845011000036109 Lamotrigine (Sandoz) Dispersible/Chewable 50 mg tablet 39736011000036104 Lamotrigine (Sandoz) 39736011000036104 Lamotrigine (Sandoz) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +732551000168109 Decongestant (Apohealth) 0.05% nasal spray, 20 mL, pump pack 226878 732541000168107 Decongestant (Apohealth) 0.05% nasal spray, 20 mL 732531000168103 Decongestant (Apohealth) 0.05% nasal spray 732521000168101 Decongestant (Apohealth) 732521000168101 Decongestant (Apohealth) 75511011000036104 oxymetazoline hydrochloride 0.05% nasal spray, 20 mL 75108011000036104 oxymetazoline hydrochloride 0.05% nasal spray 21364011000036106 oxymetazoline +1030181000168105 Atomoxetine (Genpar) 40 mg hard capsule, 14, blister pack 234833 1030171000168107 Atomoxetine (Genpar) 40 mg hard capsule, 14 1030141000168100 Atomoxetine (Genpar) 40 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830671000168100 atomoxetine 40 mg capsule, 14 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +912451000168108 Cialis 2.5 mg film-coated tablet, 28, blister pack 128478 912441000168106 Cialis 2.5 mg film-coated tablet, 28 912401000168109 Cialis 2.5 mg film-coated tablet 4234011000036102 Cialis 4234011000036102 Cialis 891251000168109 tadalafil 2.5 mg tablet, 28 891231000168103 tadalafil 2.5 mg tablet 21725011000036104 tadalafil +1002461000168101 Rivastigmine (Apo) 4.5 mg hard capsule, 56, blister pack 160567 1002221000168107 Rivastigmine (Apo) 4.5 mg hard capsule, 56 1002211000168100 Rivastigmine (Apo) 4.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27693011000036101 rivastigmine 4.5 mg capsule, 56 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +1113711000168107 Olanzapine ODT (Torrent) 5 mg orally disintegrating tablet, 28, blister pack 177800 1113701000168109 Olanzapine ODT (Torrent) 5 mg orally disintegrating tablet, 28 1113691000168109 Olanzapine ODT (Torrent) 5 mg orally disintegrating tablet 1113681000168106 Olanzapine ODT (Torrent) 1113681000168106 Olanzapine ODT (Torrent) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +50448011000036103 RCF oral liquid solution, 384 mL can 49263011000036109 RCF oral liquid solution, 384 mL can 198711000168101 RCF oral liquid solution, 384 mL can 48378011000036102 RCF 48378011000036102 RCF 51256011000036107 soy protein and fat formula with vitamins and minerals carbohydrate free oral liquid, 384 mL can 198541000168106 soy protein and fat formula with vitamins and minerals carbohydrate free oral liquid, 384 mL can 50772011000036108 soy protein and fat formula with vitamins and minerals carbohydrate free +1105261000168101 Midazolam (AN) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207244 1105251000168103 Midazolam (AN) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 1105201000168102 Midazolam (AN) 50 mg/10 mL injection solution, 10 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +664151000168107 Midazolam (Act) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207244 664141000168105 Midazolam (Act) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 664081000168101 Midazolam (Act) 50 mg/10 mL injection solution, 10 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +135801000036102 Famciclovir (Auro) 250 mg film-coated tablet, 21, blister pack 195176 135221000036108 Famciclovir (Auro) 250 mg film-coated tablet, 21 134391000036103 Famciclovir (Auro) 250 mg film-coated tablet 112681000036107 Famciclovir (Auro) 112681000036107 Famciclovir (Auro) 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +661821000168107 Bisoprolol (AN) 2.5 mg film-coated tablet, 28, blister pack 175930 661811000168100 Bisoprolol (AN) 2.5 mg film-coated tablet, 28 661801000168103 Bisoprolol (AN) 2.5 mg film-coated tablet 661791000168104 Bisoprolol (AN) 661791000168104 Bisoprolol (AN) 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +60882011000036103 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 25 mL, bottle 59765 56836011000036104 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 25 mL 54094011000036107 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63603011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 25 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +30671000036108 Skinman Soft N application, 500 mL, bottle 179681 29061000036101 Skinman Soft N application, 500 mL 27071000036104 Skinman Soft N application 9041000168104 Skinman Soft N 9041000168104 Skinman Soft N 29071000036109 isopropyl alcohol 76% + benzalkonium chloride 0.13% application, 500 mL 27081000036102 isopropyl alcohol 76% + benzalkonium chloride 0.13% application 31551000036105 isopropyl alcohol + benzalkonium chloride +920766011000036107 Relpax 40 mg film-coated tablet, 2, blister pack 68356 920445011000036100 Relpax 40 mg film-coated tablet, 2 920186011000036100 Relpax 40 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 920862011000036105 eletriptan 40 mg tablet, 2 920828011000036101 eletriptan 40 mg tablet 920818011000036107 eletriptan +43935011000036100 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 60, blister pack 142885 41427011000036104 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet, 60 39817011000036105 Metformin Hydrochloride (Generic Health) 850 mg film-coated tablet 29031000168100 Metformin Hydrochloride (Generic Health) 29031000168100 Metformin Hydrochloride (Generic Health) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1113871000168107 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 7, blister pack 179086 1113861000168101 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet, 7 15771000036102 Olanzapine ODT (Sandoz) 10 mg orally disintegrating tablet 31501000168102 Olanzapine ODT (Sandoz) 31501000168102 Olanzapine ODT (Sandoz) 1042871000168103 olanzapine 10 mg orally disintegrating tablet, 7 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +1077341000168101 Fexo (Amcal) 180 mg film-coated tablet, 60, blister pack 223782 1077331000168105 Fexo (Amcal) 180 mg film-coated tablet, 60 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 1077321000168107 fexofenadine hydrochloride 180 mg tablet, 60 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +929551000168109 Aczone 7.5% gel, 30 g, pump pack 266267 929541000168107 Aczone 7.5% gel, 30 g 929521000168101 Aczone 7.5% gel 929501000168105 Aczone 929501000168105 Aczone 929531000168103 dapsone 7.5% gel, 30 g 929511000168108 dapsone 7.5% gel 21608011000036106 dapsone +928918011000036104 Vaclovir 500 mg film-coated tablet, 60, blister pack 153822 928280011000036104 Vaclovir 500 mg film-coated tablet, 60 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929222011000036106 valaciclovir 500 mg tablet, 60 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +663991000168101 Midazolam (Act) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207222 663981000168104 Midazolam (Act) 15 mg/3 mL injection solution, 10 x 3 mL ampoules 663921000168103 Midazolam (Act) 15 mg/3 mL injection solution, 3 mL ampoule 663741000168106 Midazolam (Act) 663741000168106 Midazolam (Act) 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +44534011000036108 Ramace 10 mg hard capsule, 10, blister pack 79098 41987011000036108 Ramace 10 mg hard capsule, 10 6972011000036103 Ramace 10 mg hard capsule 3038011000036104 Ramace 3038011000036104 Ramace 46762011000036101 ramipril 10 mg capsule, 10 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +56611000036101 Sinus with Antihistamine PE (Pharmacy Health) uncoated tablet, 24, blister pack 163214 53031000036109 Sinus with Antihistamine PE (Pharmacy Health) uncoated tablet, 24 49541000036107 Sinus with Antihistamine PE (Pharmacy Health) uncoated tablet 48171000036103 Sinus with Antihistamine PE (Pharmacy Health) 48171000036103 Sinus with Antihistamine PE (Pharmacy Health) 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +788181000168103 Acarbose (Mylan) 50 mg tablet, 90, blister pack 226796 788171000168101 Acarbose (Mylan) 50 mg tablet, 90 788161000168107 Acarbose (Mylan) 50 mg tablet 788051000168106 Acarbose (Mylan) 788051000168106 Acarbose (Mylan) 27110011000036106 acarbose 50 mg tablet, 90 22478011000036100 acarbose 50 mg tablet 21888011000036104 acarbose +35676011000036104 Gabapentin (Pharmacor) 600 mg film-coated tablet, 500, blister pack 131502 35584011000036105 Gabapentin (Pharmacor) 600 mg film-coated tablet, 500 35488011000036107 Gabapentin (Pharmacor) 600 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 35776011000036105 gabapentin 600 mg tablet, 500 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +931608011000036106 Pravista 10 mg film-coated tablet, 100, bottle 163560 930769011000036102 Pravista 10 mg film-coated tablet, 100 930040011000036101 Pravista 10 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 932414011000036100 pravastatin sodium 10 mg tablet, 100 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +933239701000036101 Meloxicam (Apo) 15 mg hard capsule, 100, blister pack 181194 933237021000036101 Meloxicam (Apo) 15 mg hard capsule, 100 933234791000036105 Meloxicam (Apo) 15 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 52890011000036107 meloxicam 15 mg capsule, 100 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +24741000036101 Volirop 3.125 mg film-coated tablet, 30, bottle 174786 22591000036107 Volirop 3.125 mg film-coated tablet, 30 20301000036105 Volirop 3.125 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +933231431000036103 Folic Acid (Phebra) 5 mg/mL injection solution, 5 x 1 mL vials 22852 933225611000036105 Folic Acid (Phebra) 5 mg/mL injection solution, 5 x 1 mL vials 933220721000036104 Folic Acid (Phebra) 5 mg/mL injection solution, vial 53328011000036107 Folic Acid (Phebra) 53328011000036107 Folic Acid (Phebra) 63442011000036103 folic acid 5 mg/mL injection, 5 x 1 mL vials 61967011000036101 folic acid 5 mg/mL injection, vial 21654011000036106 folic acid +1077021000168109 Atomoxetine (AS) 60 mg hard capsule, 7, blister pack 238363 1077011000168102 Atomoxetine (AS) 60 mg hard capsule, 7 1077001000168100 Atomoxetine (AS) 60 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 816621000168108 atomoxetine 60 mg capsule, 7 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +91131000036102 Morphine Hydrochloride (Phebra) 500 microgram/mL intrathecal injection, 10 x 1 mL vials 89441000036102 Morphine Hydrochloride (Phebra) 500 microgram/mL intrathecal injection, 10 x 1 mL vials 88141000036100 Morphine Hydrochloride (Phebra) 500 microgram/mL intrathecal injection, vial 87681000036100 Morphine Hydrochloride (Phebra) 87681000036100 Morphine Hydrochloride (Phebra) 89451000036104 morphine hydrochloride trihydrate 500 microgram/mL intrathecal injection, 10 x 1 mL vials 88151000036102 morphine hydrochloride trihydrate 500 microgram/mL intrathecal injection, vial 21252011000036100 morphine +1045441000168101 Phlexy-Vits powder for oral liquid, 30 x 7 g sachets 1045431000168105 Phlexy-Vits powder for oral liquid, 30 x 7 g sachets 1045411000168100 Phlexy-Vits powder for oral liquid, 7 g sachet 1045351000168105 Phlexy-Vits 1045351000168105 Phlexy-Vits 1045421000168107 vitamins, minerals and trace elements powder for oral liquid, 30 x 7 g sachets 1045401000168103 vitamins, minerals and trace elements powder for oral liquid, 7 g sachet 1045391000168100 vitamins, minerals and trace elements +972621000168106 Lyzalon 75 mg hard capsule, 60, blister pack 224436 972351000168106 Lyzalon 75 mg hard capsule, 60 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +19898011000036107 Zocor 20 mg film-coated tablet, 30, blister pack 65975 13145011000036100 Zocor 20 mg film-coated tablet, 30 6428011000036104 Zocor 20 mg film-coated tablet 3904011000036106 Zocor 3904011000036106 Zocor 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +984861000168100 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 10, blister pack 200606 984851000168102 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet, 10 984841000168104 Cetirizine (Blooms The Chemist) 10 mg film-coated tablet 984781000168100 Cetirizine (Blooms The Chemist) 984781000168100 Cetirizine (Blooms The Chemist) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +60711011000036109 Stud-100 9.6% spray solution, 12 g, pump actuated aerosol 44057 56669011000036109 Stud-100 9.6% spray solution, 12 g 54027011000036109 Stud-100 9.6% spray solution 53517011000036100 Stud-100 53517011000036100 Stud-100 63500011000036100 lidocaine (lignocaine) 9.6% spray, 12 g 61994011000036109 lidocaine (lignocaine) 9.6% spray 21572011000036107 lidocaine (lignocaine) +927684011000036104 PKU Gel Orange powder for oral liquid, 30 x 24 g sachets 927617011000036107 PKU Gel Orange powder for oral liquid, 30 x 24 g sachets 241011000168103 PKU Gel Orange powder for oral liquid, 24 g sachet 1281000168104 PKU Gel 1281000168104 PKU Gel 927729011000036101 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 24 g sachets 240811000168100 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 24 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1079921000168103 Carvedilol (Auro) 25 mg film-coated tablet, 60, blister pack 174807 1079251000168102 Carvedilol (Auro) 25 mg film-coated tablet, 60 737701000168102 Carvedilol (Auro) 25 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +788341000168106 Oxycodone (HX) 5 mg modified release tablet, 20, bottle 153600 788331000168102 Oxycodone (HX) 5 mg modified release tablet, 20 788321000168100 Oxycodone (HX) 5 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 28126011000036108 oxycodone hydrochloride 5 mg modified release tablet, 20 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +1118171000168109 Serapine 100 mg film-coated tablet, 90, blister pack 204162 1118161000168103 Serapine 100 mg film-coated tablet, 90 1118111000168101 Serapine 100 mg film-coated tablet 1115331000168100 Serapine 1115331000168100 Serapine 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +34768011000036106 Dilaudid 4 mg uncoated tablet, 60, bottle 67354 34349011000036109 Dilaudid 4 mg uncoated tablet, 60 6477011000036104 Dilaudid 4 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35197011000036106 hydromorphone hydrochloride 4 mg tablet, 60 22945011000036107 hydromorphone hydrochloride 4 mg tablet 21480011000036107 hydromorphone +758731000168106 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 210583 758721000168108 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 758621000168101 Chelsea-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) sugar coated tablet 758611000168108 Chelsea-35 ED 758611000168108 Chelsea-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +758731000168106 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 210583 758721000168108 Chelsea-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 758631000168103 Chelsea-35 ED (inert substance) sugar coated tablet 758611000168108 Chelsea-35 ED 758611000168108 Chelsea-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +19144011000036101 Ulcyte 1 g uncoated tablet, 120, bottle 44711 12443011000036105 Ulcyte 1 g uncoated tablet, 120 5515011000036105 Ulcyte 1 g uncoated tablet 3718011000036105 Ulcyte 3718011000036105 Ulcyte 27122011000036100 sucralfate 1 g tablet, 120 22488011000036105 sucralfate 1 g tablet 21909011000036102 sucralfate +176811000036108 Cadivast 10/40 film-coated tablet, 30, bottle 199225 174961000036108 Cadivast 10/40 film-coated tablet, 30 172921000036106 Cadivast 10/40 film-coated tablet 18331000168104 Cadivast 10/40 18331000168104 Cadivast 10/40 26548011000036108 amlodipine 10 mg + atorvastatin 40 mg tablet, 30 21957011000036104 amlodipine 10 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +19656011000036107 Distaph 500 mg hard capsule, 24, blister pack 59656 12920011000036101 Distaph 500 mg hard capsule, 24 6210011000036109 Distaph 500 mg hard capsule 4299011000036109 Distaph 4299011000036109 Distaph 27777011000036108 dicloxacillin 500 mg capsule, 24 23107011000036101 dicloxacillin 500 mg capsule 21398011000036101 dicloxacillin +79059011000036104 Curam Duo 400/57 powder for oral liquid, 150 mL, bottle 147109 78828011000036107 Curam Duo 400/57 powder for oral liquid, 150 mL 78643011000036105 Curam Duo 400/57 powder for oral liquid, 5 mL 53491000168109 Curam Duo 400/57 53491000168109 Curam Duo 400/57 79224011000036109 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 150 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +1049691000168105 Panadeine Forte uncoated tablet, 4, blister pack 73507 1049681000168107 Panadeine Forte uncoated tablet, 4 835831000168109 Panadeine Forte uncoated tablet 34821000168106 Panadeine Forte 34821000168106 Panadeine Forte 1047291000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 4 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +931745011000036101 Hairscience for Dandruff 2% shampoo, 125 mL, bottle 61439 930905011000036109 Hairscience for Dandruff 2% shampoo, 125 mL 930108011000036101 Hairscience for Dandruff 2% shampoo 929891011000036103 Hairscience for Dandruff 929891011000036103 Hairscience for Dandruff 932484011000036103 miconazole 2% shampoo, 125 mL 931881011000036108 miconazole 2% shampoo 21454011000036108 miconazole +805521000168102 Aczicrit 10 000 units/mL injection solution, 6 x 1 mL syringes 147861 805511000168109 Aczicrit 10 000 units/mL injection solution, 6 x 1 mL syringes 805481000168102 Aczicrit 10 000 units/mL injection solution, syringe 803991000168108 Aczicrit 803991000168108 Aczicrit 924122011000036109 epoetin lambda 10 000 units/mL injection, 6 x 1 mL syringes 923951011000036101 epoetin lambda 10 000 units/mL injection, syringe 923930011000036107 epoetin lambda +835791000168103 Dymadon Forte uncoated tablet, 20, blister pack 10956 835781000168101 Dymadon Forte uncoated tablet, 20 835771000168104 Dymadon Forte uncoated tablet 3398011000036108 Dymadon Forte 3398011000036108 Dymadon Forte 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +21215011000036101 Roximycin 150 mg film-coated tablet, 10, blister pack 99937 14350011000036103 Roximycin 150 mg film-coated tablet, 10 7632011000036103 Roximycin 150 mg film-coated tablet 4346011000036103 Roximycin 4346011000036103 Roximycin 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +168271000036106 Dermasoft Sanitising Hand Gel gel, 500 mL, pump pack 118961 167691000036107 Dermasoft Sanitising Hand Gel gel, 500 mL 167511000036101 Dermasoft Sanitising Hand Gel gel 30361000168100 Dermasoft Sanitising Hand Gel 30361000168100 Dermasoft Sanitising Hand Gel 167701000036107 ethanol 70% + triclosan 0.3% gel, 500 mL 167521000036108 ethanol 70% + triclosan 0.3% gel 931785011000036107 ethanol + triclosan +801271000168102 Abbapram 20 mg film-coated tablet, 56, blister pack 151310 801261000168108 Abbapram 20 mg film-coated tablet, 56 801211000168105 Abbapram 20 mg film-coated tablet 801201000168107 Abbapram 801201000168107 Abbapram 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1105101000168106 Midazolam (AN) 5 mg/mL injection solution, 5 x 1 mL ampoules 207224 1105091000168101 Midazolam (AN) 5 mg/mL injection solution, 5 x 1 mL ampoules 1105061000168108 Midazolam (AN) 5 mg/mL injection solution, ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +81107011000036100 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 30 mL, bottle 162435 80612011000036109 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 30 mL 5556011000036105 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution 48231000168102 Duro-Tuss Dry Cough Liquid Regular 48231000168102 Duro-Tuss Dry Cough Liquid Regular 63965011000036100 pholcodine 1 mg/mL oral liquid, 30 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +18902011000036100 Siguent Hycor 1% eye ointment, 5 g, tube 139082 12210011000036107 Siguent Hycor 1% eye ointment, 5 g 5444011000036106 Siguent Hycor 1% eye ointment 3373011000036107 Siguent Hycor 3373011000036107 Siguent Hycor 26983011000036103 hydrocortisone acetate 1% eye ointment, 5 g 22356011000036107 hydrocortisone acetate 1% eye ointment 21231011000036107 hydrocortisone acetate +18902011000036100 Siguent Hycor 1% eye ointment, 5 g, tube 19780 12210011000036107 Siguent Hycor 1% eye ointment, 5 g 5444011000036106 Siguent Hycor 1% eye ointment 3373011000036107 Siguent Hycor 3373011000036107 Siguent Hycor 26983011000036103 hydrocortisone acetate 1% eye ointment, 5 g 22356011000036107 hydrocortisone acetate 1% eye ointment 21231011000036107 hydrocortisone acetate +912091000168109 Cavstat 40 mg film-coated tablet, 84, blister pack 234508 912081000168106 Cavstat 40 mg film-coated tablet, 84 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 912071000168108 rosuvastatin 40 mg tablet, 84 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +903501000168104 Brillior 100 mg hard capsule, 14, blister pack 224341 903491000168106 Brillior 100 mg hard capsule, 14 903481000168108 Brillior 100 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 854951000168106 pregabalin 100 mg capsule, 14 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +87680011000036103 Famciclovir (Apo) 250 mg film-coated tablet, 14, bottle 160560 87481011000036108 Famciclovir (Apo) 250 mg film-coated tablet, 14 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 86449011000036103 famciclovir 250 mg tablet, 14 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +140371000036109 Benlysta 120 mg powder for injection, 1 vial 173077 138811000036107 Benlysta 120 mg powder for injection, 1 vial 137721000036109 Benlysta 120 mg powder for injection, 120 mg vial 137291000036102 Benlysta 137291000036102 Benlysta 138821000036100 belimumab 120 mg injection, 1 vial 137731000036106 belimumab 120 mg injection, vial 140971000036108 belimumab +722041000168103 Hydralyte Orange powder for oral liquid, 10 x 4.9 g sachets 122627 722031000168107 Hydralyte Orange powder for oral liquid, 10 x 4.9 g sachets 722021000168109 Hydralyte Orange powder for oral liquid, 4.9 g sachet 721961000168109 Hydralyte 721961000168109 Hydralyte 721991000168102 sodium chloride 530 mg + potassium citrate monohydrate 440 mg (potassium 4 mmol) + glucose 2.91 g + citric acid 880 mg powder for oral liquid, 10 x 4.9 g sachets 721971000168103 sodium chloride 530 mg + potassium citrate monohydrate 440 mg (potassium 4 mmol) + glucose 2.91 g + citric acid 880 mg powder for oral liquid, 4.9 g sachet 81223011000036100 sodium chloride + potassium citrate monohydrate + glucose + citric acid +840161000168101 Advantan 0.1% ointment, 30 g, tube 49381 840151000168103 Advantan 0.1% ointment, 30 g 4588011000036107 Advantan 0.1% ointment 3513011000036101 Advantan 3513011000036101 Advantan 840141000168100 methylprednisolone aceponate 0.1% ointment, 30 g 22587011000036102 methylprednisolone aceponate 0.1% ointment 21605011000036100 methylprednisolone +1066991000168100 Cold and Flu PE Day and Night (Sandoz) (36 x Day tablets, 12 x Night tablets), 48, blister pack 222849 1066981000168103 Cold and Flu PE Day and Night (Sandoz) (36 x Day tablets, 12 x Night tablets), 48 1066951000168105 Cold and Flu PE Day and Night (Night) (Sandoz) film-coated tablet 1066871000168106 Cold and Flu PE Day and Night (Sandoz) 1066931000168104 Cold and Flu PE Day and Night (Night) (Sandoz) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +1066991000168100 Cold and Flu PE Day and Night (Sandoz) (36 x Day tablets, 12 x Night tablets), 48, blister pack 222849 1066981000168103 Cold and Flu PE Day and Night (Sandoz) (36 x Day tablets, 12 x Night tablets), 48 1066941000168108 Cold and Flu PE Day and Night (Day) (Sandoz) film-coated tablet 1066871000168106 Cold and Flu PE Day and Night (Sandoz) 1066881000168109 Cold and Flu PE Day and Night (Day) (Sandoz) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +59732011000036109 Ranoxyl Heartburn Relief 150 mg film-coated tablet, 28, strip pack 100404 55639011000036101 Ranoxyl Heartburn Relief 150 mg film-coated tablet, 28 53657011000036101 Ranoxyl Heartburn Relief 150 mg film-coated tablet 32121000168107 Ranoxyl Heartburn Relief 32121000168107 Ranoxyl Heartburn Relief 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +110341000036109 Sorbsan Rope (1411) 2 g rope, 1, carton 108481000036105 Sorbsan Rope (1411) 2 g rope, 1 48631011000036100 Sorbsan Rope (1411) 2 g rope 16451000168103 Sorbsan Rope (1411) 16451000168103 Sorbsan Rope (1411) 108491000036107 dressing alginate cavity wound 2 g rope, 1 50973011000036106 dressing alginate cavity wound 2 g rope, 2 g 50720011000036108 dressing alginate cavity wound +1054021000168101 Norspan 5 microgram/hour patch, 1, sachet 116647 1054011000168108 Norspan 5 microgram/hour patch, 1 5815011000036109 Norspan 5 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 1046451000168108 buprenorphine 5 microgram/hour patch, 1 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +961861000168101 Dexamfetamine (Apo) 5 mg uncoated tablet, 100, blister pack 270892 961771000168104 Dexamfetamine (Apo) 5 mg uncoated tablet, 100 961761000168105 Dexamfetamine (Apo) 5 mg uncoated tablet 961601000168103 Dexamfetamine (Apo) 961601000168103 Dexamfetamine (Apo) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +995701000168105 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16, blister pack 72150 995691000168105 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16 995681000168107 Difflam Lozenge Honey and Lemon Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +996421000168103 Amoxy/Clav 500/125 (Apo) film-coated tablet, 2, blister pack 255075 996411000168105 Amoxy/Clav 500/125 (Apo) film-coated tablet, 2 996401000168107 Amoxy/Clav 500/125 (Apo) film-coated tablet 996391000168105 Amoxy/Clav 500/125 (Apo) 996391000168105 Amoxy/Clav 500/125 (Apo) 51544011000036109 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 2 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +81184011000036105 Robitussin Chesty Cough 200 mg soft capsule, 50, blister pack 74414 80686011000036106 Robitussin Chesty Cough 200 mg soft capsule, 50 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81741011000036108 guaifenesin 200 mg capsule, 50 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +110501000036101 Isoleucine50 containing 50 mg isoleucine powder for oral liquid, 30 x 4 g sachets 108451000036103 Isoleucine50 containing 50 mg isoleucine powder for oral liquid, 30 x 4 g sachets 404561000168104 Isoleucine50 containing 50 mg isoleucine powder for oral liquid, 4 g sachet 106521000036106 Isoleucine50 106521000036106 Isoleucine50 51276011000036109 isoleucine with carbohydrate containing 50 mg isoleucine powder for oral liquid, 30 x 4 g sachets 404271000168107 isoleucine with carbohydrate containing 50 mg isoleucine powder for oral liquid, 4 g sachet 50770011000036109 isoleucine with carbohydrate +20926011000036107 Ferriprox 500 mg film-coated tablet, 100, bottle 93946 14080011000036106 Ferriprox 500 mg film-coated tablet, 100 7358011000036105 Ferriprox 500 mg film-coated tablet 2968011000036107 Ferriprox 2968011000036107 Ferriprox 28132011000036107 deferiprone 500 mg tablet, 100 23441011000036100 deferiprone 500 mg tablet 21780011000036103 deferiprone +1021641000168104 Voriconazole (Apo) 200 mg film-coated tablet, 100, blister pack 238282 1021631000168108 Voriconazole (Apo) 200 mg film-coated tablet, 100 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46803011000036105 voriconazole 200 mg tablet, 100 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +82451000036106 Clopidogrel/Aspirin 75/100 (Terry White Chemists) tablet, 30, blister pack 190328 80501000036108 Clopidogrel/Aspirin 75/100 (Terry White Chemists) tablet, 30 78231000036108 Clopidogrel/Aspirin 75/100 (Terry White Chemists) tablet 46691000168102 Clopidogrel/Aspirin 75/100 (Terry White Chemists) 46691000168102 Clopidogrel/Aspirin 75/100 (Terry White Chemists) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +69550011000036106 Regaine Women's Extra Strength 5% application, 60 mL, bottle 59445 67350011000036103 Regaine Women's Extra Strength 5% application, 60 mL 65625011000036101 Regaine Women's Extra Strength 5% application 51531000168105 Regaine Women's Extra Strength 51531000168105 Regaine Women's Extra Strength 63889011000036109 minoxidil 5% application, 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +1036761000168100 Atorvastatin (RBX) 10 mg film-coated tablet, 30, bottle 173508 1036721000168105 Atorvastatin (RBX) 10 mg film-coated tablet, 30 1036691000168101 Atorvastatin (RBX) 10 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +931372011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 100 mL, bottle 10908 930550011000036102 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 100 mL 929926011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid 929899011000036104 Eucalyptus Oil (Bosisto's) 929899011000036104 Eucalyptus Oil (Bosisto's) 927353011000036104 eucalyptus oil 1 mL/mL liquid, 100 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +77177011000036108 Fess 0.704% nasal gel, 15 g, tube 124476 76602011000036100 Fess 0.704% nasal gel, 15 g 76056011000036101 Fess 0.704% nasal gel 5581000168103 Fess 5581000168103 Fess 78156011000036103 sodium chloride 0.704% nasal gel, 15 g 77516011000036105 sodium chloride 0.704% nasal gel 21308011000036103 sodium chloride +18585011000036101 Rocephin 2 g powder for injection, 1 vial 13763 12014011000036105 Rocephin 2 g powder for injection, 1 vial 4569011000036102 Rocephin 2 g powder for injection, 2 g vial 3203011000036105 Rocephin 3203011000036105 Rocephin 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +933231031000036109 Famciclovir (Chemmart) 500 mg film-coated tablet, 20, blister pack 172446 933225101000036101 Famciclovir (Chemmart) 500 mg film-coated tablet, 20 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1079991000168101 Bisoprolol (Auro) 3.75 mg film-coated tablet, 100, blister pack 175918 1079981000168104 Bisoprolol (Auro) 3.75 mg film-coated tablet, 100 1079931000168100 Bisoprolol (Auro) 3.75 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 874891000168105 bisoprolol fumarate 3.75 mg tablet, 100 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +24821000036101 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 12 x 1 L bags 19435 22961000036109 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 12 x 1 L bags 20231000036105 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) injection solution, 1 L bag 1171000168108 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) 1171000168108 Heparin Sodium 2000 IU and Sodium Chloride 0.9% (Baxter) 38765011000036101 heparin sodium 2000 units/L + sodium chloride 0.9% (9 g/L) injection, 12 x 1 L bags 37983011000036103 heparin sodium 2000 units/L + sodium chloride 0.9% (9 g/L) injection, bag 858621000168104 heparin + sodium chloride +1088581000168105 Femrelief One 150 mg hard capsule, 1, blister pack 279996 127491000036104 Femrelief One 150 mg hard capsule, 1 124601000036100 Femrelief One 150 mg hard capsule 38271000168100 Femrelief One 38271000168100 Femrelief One 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1070621000168103 Cold and Flu PE Day and Night (Pharmacist Formula) (16 x Day tablets, 8 x Night tablets), 24, blister pack 205189 1070611000168105 Cold and Flu PE Day and Night (Pharmacist Formula) (16 x Day tablets, 8 x Night tablets), 24 1070581000168103 Cold and Flu PE Day and Night (Day) (Pharmacist Formula) film-coated tablet 1070551000168105 Cold and Flu PE Day and Night (Pharmacist Formula) 1070561000168107 Cold and Flu PE Day and Night (Day) (Pharmacist Formula) 1070601000168107 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1070621000168103 Cold and Flu PE Day and Night (Pharmacist Formula) (16 x Day tablets, 8 x Night tablets), 24, blister pack 205189 1070611000168105 Cold and Flu PE Day and Night (Pharmacist Formula) (16 x Day tablets, 8 x Night tablets), 24 1070591000168100 Cold and Flu PE Day and Night (Night) (Pharmacist Formula) film-coated tablet 1070551000168105 Cold and Flu PE Day and Night (Pharmacist Formula) 1070571000168101 Cold and Flu PE Day and Night (Night) (Pharmacist Formula) 1070601000168107 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +912131000168106 Cavstat 40 mg film-coated tablet, 98, blister pack 234508 912121000168108 Cavstat 40 mg film-coated tablet, 98 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 912111000168101 rosuvastatin 40 mg tablet, 98 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +933239621000036104 Amisulpride (Apo) 100 mg tablet, 50, blister pack 178904 933236941000036105 Amisulpride (Apo) 100 mg tablet, 50 933234771000036106 Amisulpride (Apo) 100 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 84638011000036101 amisulpride 100 mg tablet, 50 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +20189011000036108 Valtrex 500 mg film-coated tablet, 42, blister pack 73917 13412011000036100 Valtrex 500 mg film-coated tablet, 42 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +887101000168105 Praluent 150 mg/mL injection solution, 6 x 1 mL injection devices 238299 887091000168100 Praluent 150 mg/mL injection solution, 6 x 1 mL injection devices 887011000168109 Praluent 150 mg/mL injection solution, injection device 886871000168105 Praluent 886871000168105 Praluent 887081000168103 alirocumab 150 mg/mL injection, 6 x 1 mL injection devices 887001000168106 alirocumab 150 mg/mL injection, injection device 886881000168108 alirocumab +1071261000168104 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet, 18, blister pack 205190 1071251000168101 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet, 18 1071221000168109 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet 1071211000168102 Cold and Flu Day PE (Pharmacist Formula) 1071211000168102 Cold and Flu Day PE (Pharmacist Formula) 1069871000168100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 18 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +668081000168106 Benefix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 203316 668071000168108 Benefix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 668051000168104 Benefix (nonacog alfa 3000 units) powder for injection, 3000 units vial 2121000168104 Benefix 2121000168104 Benefix 668061000168102 nonacog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 668041000168101 nonacog alfa 3000 units injection, vial 44863011000036102 nonacog alfa +668081000168106 Benefix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 203316 668071000168108 Benefix (1 x 3000 units vial, 1 x 5 mL inert diluent syringe), 1 pack 630131000168100 Benefix (inert substance) diluent, 5 mL syringe 2121000168104 Benefix 2121000168104 Benefix 668061000168102 nonacog alfa 3000 units injection [1 vial] (&) inert substance diluent [5 mL syringe], 1 pack 630121000168103 inert substance diluent, 5 mL syringe 21220011000036103 inert substance +18268011000036104 Fluconazole (DBL) 50 mg hard capsule, 28, blister pack 119542 11619011000036102 Fluconazole (DBL) 50 mg hard capsule, 28 5208011000036105 Fluconazole (DBL) 50 mg hard capsule 4135011000036100 Fluconazole (DBL) 4135011000036100 Fluconazole (DBL) 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +923829011000036108 Norvir 100 mg film-coated tablet, 30, bottle 158301 923375011000036107 Norvir 100 mg film-coated tablet, 30 923046011000036103 Norvir 100 mg film-coated tablet 4168011000036101 Norvir 4168011000036101 Norvir 924169011000036108 ritonavir 100 mg tablet, 30 923980011000036104 ritonavir 100 mg tablet 21438011000036102 ritonavir +743061000168109 Morphine MR (AN) 10 mg modified release tablet, 60, blister pack 225425 743051000168107 Morphine MR (AN) 10 mg modified release tablet, 60 743001000168108 Morphine MR (AN) 10 mg modified release tablet 742921000168105 Morphine MR (AN) 742921000168105 Morphine MR (AN) 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +929072011000036100 Acpio 15 mg uncoated tablet, 28, blister pack 164425 928433011000036100 Acpio 15 mg uncoated tablet, 28 927977011000036101 Acpio 15 mg uncoated tablet 927772011000036107 Acpio 927772011000036107 Acpio 27806011000036102 pioglitazone 15 mg tablet, 28 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +1079831000168109 Carvedilol (Auro) 12.5 mg film-coated tablet, 1000, bottle 174803 1079821000168106 Carvedilol (Auro) 12.5 mg film-coated tablet, 1000 737761000168101 Carvedilol (Auro) 12.5 mg film-coated tablet 737461000168107 Carvedilol (Auro) 737461000168107 Carvedilol (Auro) 1079811000168104 carvedilol 12.5 mg tablet, 1000 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +689491000168105 Kaletra oral liquid solution, 60 mL, bottle 689481000168107 Kaletra oral liquid solution, 60 mL 689461000168103 Kaletra oral liquid solution, 5 mL 689441000168102 Kaletra 689441000168102 Kaletra 689471000168109 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 60 mL 689451000168100 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid 21345011000036102 lopinavir + ritonavir +168351000036105 Dermaveen Soap Free Wash 1% application, 5 L, pump pack 159188 167851000036104 Dermaveen Soap Free Wash 1% application, 5 L 167591000036106 Dermaveen Soap Free Wash 1% application 23461000168103 Dermaveen Soap Free Wash 23461000168103 Dermaveen Soap Free Wash 167861000036101 colloidal oatmeal 1% application, 5 L 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +1023651000168101 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 4, blister pack 227168 1023641000168103 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge, 4 1023631000168107 Betadine Sore Throat Lozenges Menthol and Eucalyptus lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71524011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 4 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +737121000168105 Anti-Fungal Nail Treatment (Pharmacy Action) 5% application, 5 mL, bottle 233620 737111000168103 Anti-Fungal Nail Treatment (Pharmacy Action) 5% application, 5 mL 737101000168101 Anti-Fungal Nail Treatment (Pharmacy Action) 5% application 737051000168101 Anti-Fungal Nail Treatment (Pharmacy Action) 737051000168101 Anti-Fungal Nail Treatment (Pharmacy Action) 27384011000036107 amorolfine 5% application, 5 mL 22733011000036104 amorolfine 5% application 21846011000036106 amorolfine +1047681000168101 Paracetamol/Codeine 500/30 (Apo) tablet, 2, blister pack 220980 1047671000168104 Paracetamol/Codeine 500/30 (Apo) tablet, 2 1047661000168105 Paracetamol/Codeine 500/30 (Apo) tablet 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047631000168102 Paracetamol/Codeine 500/30 (Apo) 1047211000168109 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 2 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +18784011000036104 Metformin Hydrochloride (Pharmacor) 500 mg film-coated tablet, 100, blister pack 130319 11892011000036102 Metformin Hydrochloride (Pharmacor) 500 mg film-coated tablet, 100 6000011000036100 Metformin Hydrochloride (Pharmacor) 500 mg film-coated tablet 22901000168103 Metformin Hydrochloride (Pharmacor) 22901000168103 Metformin Hydrochloride (Pharmacor) 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +921987011000036106 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 70 mL vial 53553 921545011000036101 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 70 mL vial 921076011000036105 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 70 mL vial 5231000168102 Isovue-300 5231000168102 Isovue-300 922661011000036103 iopamidol 612 mg (iodine 300 mg)/mL injection, 70 mL vial 922142011000036102 iopamidol 612 mg (iodine 300 mg)/mL injection, 70 mL vial 77457011000036105 iopamidol +1071241000168103 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet, 24, blister pack 205190 1071231000168107 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet, 24 1071221000168109 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet 1071211000168102 Cold and Flu Day PE (Pharmacist Formula) 1071211000168102 Cold and Flu Day PE (Pharmacist Formula) 63169011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +21198011000036109 Vinorelbine (Ebewe) 50 mg/5 mL concentrated injection, 5 mL vial 99724 14336011000036101 Vinorelbine (Ebewe) 50 mg/5 mL concentrated injection, 5 mL vial 7620011000036100 Vinorelbine (Ebewe) 50 mg/5 mL concentrated injection, 5 mL vial 4298011000036101 Vinorelbine (Ebewe) 4298011000036101 Vinorelbine (Ebewe) 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +61679011000036104 Panafen IB 200 mg film-coated tablet, 100, blister pack 97858 57601011000036108 Panafen IB 200 mg film-coated tablet, 100 54360011000036104 Panafen IB 200 mg film-coated tablet 9381000168107 Panafen IB 9381000168107 Panafen IB 63952011000036103 ibuprofen 200 mg tablet, 100 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +931762011000036101 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution, 1.5 L, bottle 79362 930922011000036108 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution, 1.5 L 930122011000036106 Avagard Antiseptic Hand and Body Wash with Triclosan 1% solution 929898011000036107 Avagard Antiseptic Hand and Body Wash with Triclosan 929898011000036107 Avagard Antiseptic Hand and Body Wash with Triclosan 71943011000036100 triclosan 1% solution, 1.5 L 70255011000036105 triclosan 1% solution 69817011000036103 triclosan +91291000036107 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 5 x 100 mL bags 165164 89621000036107 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 5 x 100 mL bags 88181000036109 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 100 mL bag 87621000036101 Metronidazole (Claris) 87621000036101 Metronidazole (Claris) 35101011000036101 metronidazole 500 mg/100 mL (0.5%) injection, 5 x 100 mL bags 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +20247011000036108 Mitozantrone (Pfizer (Perth)) 20 mg/10 mL concentrated injection, 10 mL vial 74510 13458011000036107 Mitozantrone (Pfizer (Perth)) 20 mg/10 mL concentrated injection, 10 mL vial 6740011000036109 Mitozantrone (Pfizer (Perth)) 20 mg/10 mL concentrated injection, 10 mL vial 4370011000036102 Mitozantrone (Pfizer (Perth)) 4370011000036102 Mitozantrone (Pfizer (Perth)) 27985011000036103 mitozantrone 20 mg/10 mL injection, 10 mL vial 23309011000036101 mitozantrone 20 mg/10 mL injection, vial 21652011000036102 mitozantrone +904181000168100 Amoxapin 500 mg hard capsule, 30, blister pack 198129 904171000168103 Amoxapin 500 mg hard capsule, 30 904141000168105 Amoxapin 500 mg hard capsule 904081000168101 Amoxapin 904081000168101 Amoxapin 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +61634011000036102 Demazin Cold and Flu film-coated tablet, 24, blister pack 97036 57556011000036101 Demazin Cold and Flu film-coated tablet, 24 54349011000036103 Demazin Cold and Flu film-coated tablet 58541000168105 Demazin Cold and Flu 58541000168105 Demazin Cold and Flu 63925011000036105 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +135961000036105 Candesartan Cilexetil HCT 32/25 (Pharmacor) uncoated tablet, 30, blister pack 204570 135321000036100 Candesartan Cilexetil HCT 32/25 (Pharmacor) uncoated tablet, 30 134381000036100 Candesartan Cilexetil HCT 32/25 (Pharmacor) uncoated tablet 39411000168101 Candesartan Cilexetil HCT 32/25 (Pharmacor) 39411000168101 Candesartan Cilexetil HCT 32/25 (Pharmacor) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +59940011000036101 Cough and Cold Children's (Chemists' Own) oral liquid solution, 100 mL, bottle 119734 55902011000036102 Cough and Cold Children's (Chemists' Own) oral liquid solution, 100 mL 53663011000036101 Cough and Cold Children's (Chemists' Own) oral liquid solution, 10 mL 53598011000036100 Cough and Cold Children's (Chemists' Own) 53598011000036100 Cough and Cold Children's (Chemists' Own) 63551011000036101 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid, 100 mL 62013011000036102 chlorphenamine maleate 4 mg/10 mL + dextromethorphan hydrobromide monohydrate 20 mg/10 mL + pseudoephedrine hydrochloride 60 mg/10 mL oral liquid 61761011000036102 chlorphenamine + dextromethorphan + pseudoephedrine +753701000168108 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet, 30, blister pack 218261 753651000168103 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet, 30 753641000168100 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet 753631000168109 Olmesartan/Amlodipine 40/10 (Apo) 753631000168109 Olmesartan/Amlodipine 40/10 (Apo) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +650901000168108 Capecitabine (Sandoz) 150 mg film-coated tablet, 60, blister pack 201797 650891000168109 Capecitabine (Sandoz) 150 mg film-coated tablet, 60 650881000168106 Capecitabine (Sandoz) 150 mg film-coated tablet 650871000168108 Capecitabine (Sandoz) 650871000168108 Capecitabine (Sandoz) 27782011000036102 capecitabine 150 mg tablet, 60 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +927221000168108 Aropax 30 mg film-coated tablet, 30, blister pack 57930 927211000168101 Aropax 30 mg film-coated tablet, 30 927101000168108 Aropax 30 mg film-coated tablet 4035011000036108 Aropax 4035011000036108 Aropax 927201000168104 paroxetine 30 mg tablet, 30 927091000168103 paroxetine 30 mg tablet 21618011000036109 paroxetine +933231111000036104 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 20, blister pack 172447 933225181000036107 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 20 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 933225021000036107 famciclovir 500 mg tablet, 20 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +912731000168107 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet, 10, blister pack 198387 912721000168109 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet, 10 912691000168100 Candesartan Hydrochlorothiazide 32/25 (RZ) uncoated tablet 912651000168105 Candesartan Hydrochlorothiazide 32/25 (RZ) 912651000168105 Candesartan Hydrochlorothiazide 32/25 (RZ) 890731000168102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 10 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +17842011000036106 Crestor 10 mg film-coated tablet, 30, blister pack 119128 11604011000036100 Crestor 10 mg film-coated tablet, 30 5500011000036104 Crestor 10 mg film-coated tablet 4031011000036106 Crestor 4031011000036106 Crestor 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +20324011000036109 Ceftriaxone (Sandoz) 1 g powder for injection, 1 vial 75959 13533011000036106 Ceftriaxone (Sandoz) 1 g powder for injection, 1 vial 6816011000036100 Ceftriaxone (Sandoz) 1 g powder for injection, vial 4058011000036101 Ceftriaxone (Sandoz) 4058011000036101 Ceftriaxone (Sandoz) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +840041000168104 Advantan 0.1% cream, 50 g, tube 49380 840031000168108 Advantan 0.1% cream, 50 g 5548011000036107 Advantan 0.1% cream 3513011000036101 Advantan 3513011000036101 Advantan 840021000168105 methylprednisolone aceponate 0.1% cream, 50 g 22586011000036100 methylprednisolone aceponate 0.1% cream 21605011000036100 methylprednisolone +1002281000168106 Amlodipine/Atorvastatin 5/40 (Apotex) film-coated tablet, 30, blister pack 214396 1002271000168108 Amlodipine/Atorvastatin 5/40 (Apotex) film-coated tablet, 30 1002261000168102 Amlodipine/Atorvastatin 5/40 (Apotex) film-coated tablet 1002251000168104 Amlodipine/Atorvastatin 5/40 (Apotex) 1002251000168104 Amlodipine/Atorvastatin 5/40 (Apotex) 26544011000036101 amlodipine 5 mg + atorvastatin 40 mg tablet, 30 21953011000036108 amlodipine 5 mg + atorvastatin 40 mg tablet 21361011000036108 amlodipine + atorvastatin +976361000168109 Strattera 5 mg hard capsule, 14, blister pack 90591 976351000168107 Strattera 5 mg hard capsule, 14 976301000168108 Strattera 5 mg hard capsule 2991011000036101 Strattera 2991011000036101 Strattera 976341000168105 atomoxetine 5 mg capsule, 14 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +995781000168102 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8, blister pack 72150 995771000168100 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8 995681000168107 Difflam Lozenge Honey and Lemon Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995761000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 8 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +843651000168104 Utrogestan 200 mg shell pessary, 84, blister pack 232824 843641000168101 Utrogestan 200 mg shell pessary, 84 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843631000168105 progesterone 200 mg pessary, 84 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +1105081000168104 Midazolam (AN) 5 mg/mL injection solution, 1 mL ampoule 207224 1105071000168102 Midazolam (AN) 5 mg/mL injection solution, 1 mL ampoule 1105061000168108 Midazolam (AN) 5 mg/mL injection solution, ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 664011000168107 midazolam 5 mg/mL injection, 1 mL ampoule 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +1045481000168106 Amisulpride (Pharmacor) 400 mg uncoated tablet, 90, blister pack 234694 1045471000168108 Amisulpride (Pharmacor) 400 mg uncoated tablet, 90 1045361000168107 Amisulpride (Pharmacor) 400 mg uncoated tablet 1045131000168101 Amisulpride (Pharmacor) 1045131000168101 Amisulpride (Pharmacor) 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +931445011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 60 x 100 mL bags 144609 930624011000036103 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 60 x 100 mL bags 929977011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (900 mg/100 mL) intravenous infusion injection, 100 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 932380011000036100 sodium chloride 0.9% (900 mg/100 mL) injection, 60 x 100 mL bags 70186011000036106 sodium chloride 0.9% (900 mg/100 mL) injection, bag 21308011000036103 sodium chloride +44303011000036100 Zeldox 80 mg hard capsule, 60, bottle 65856 13134011000036100 Zeldox 80 mg hard capsule, 60 6417011000036109 Zeldox 80 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 27572011000036105 ziprasidone 80 mg capsule, 60 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +61362011000036107 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 200 mL, bottle 81520 57287011000036101 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 200 mL 54260011000036109 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 100 mg/5 mL oral liquid suspension, 5 mL 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 30691000168100 Ibuprofen Pain and Fever 6 Months to 12 Years (Chemists' Own) 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +747901000168103 Morphine MR (CH) 10 mg modified release tablet, 28, blister pack 225429 747891000168102 Morphine MR (CH) 10 mg modified release tablet, 28 747861000168109 Morphine MR (CH) 10 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 929749011000036106 morphine sulfate pentahydrate 10 mg modified release tablet, 28 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +754341000168107 Oxycodone (Medis) 10 mg hard capsule, 20, bottle 227846 754331000168103 Oxycodone (Medis) 10 mg hard capsule, 20 754321000168101 Oxycodone (Medis) 10 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +835181000168102 Stop-It 2 mg hard capsule, 5, blister pack 199731 835171000168100 Stop-It 2 mg hard capsule, 5 835091000168100 Stop-It 2 mg hard capsule 835081000168103 Stop-It 835081000168103 Stop-It 835161000168106 loperamide hydrochloride 2 mg capsule, 5 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +19821011000036106 Sotahexal 160 mg uncoated tablet, 60, blister pack 63724 13076011000036104 Sotahexal 160 mg uncoated tablet, 60 6360011000036100 Sotahexal 160 mg uncoated tablet 2989011000036101 Sotahexal 2989011000036101 Sotahexal 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +979081000168105 Piperacillin (Douglas) 4 g powder for injection, 1 vial 63782 979071000168107 Piperacillin (Douglas) 4 g powder for injection, 1 vial 979051000168103 Piperacillin (Douglas) 4 g powder for injection, 4 g vial 978861000168102 Piperacillin (Douglas) 978861000168102 Piperacillin (Douglas) 979061000168101 piperacillin 4 g injection, 1 vial 979041000168100 piperacillin 4 g injection, vial 978871000168108 piperacillin +933214071000036101 Gaviscon Aniseed oral liquid suspension, 200 mL, bottle 15383 933202031000036105 Gaviscon Aniseed oral liquid suspension, 200 mL 933194931000036100 Gaviscon Aniseed oral liquid suspension, 10 mL 5001000168104 Gaviscon 5001000168104 Gaviscon 933202041000036100 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid, 200 mL 933194081000036102 sodium alginate 500 mg/10 mL + sodium bicarbonate 267 mg/10 mL + calcium carbonate 160 mg/10 mL oral liquid 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +1066351000168106 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 50, blister pack 220519 1066341000168109 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet, 50 1066271000168105 Pain Relief Analgesic/Calmative (Gold Cross) uncoated tablet 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 1066241000168103 Pain Relief Analgesic/Calmative (Gold Cross) 52868011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 50 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +972781000168100 Pregabalin (Apotex) 25 mg hard capsule, 14, blister pack 267552 972771000168103 Pregabalin (Apotex) 25 mg hard capsule, 14 972761000168109 Pregabalin (Apotex) 25 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +933231171000036105 Temizole 20 mg hard capsule, 5, bottle 172968 933225241000036109 Temizole 20 mg hard capsule, 5 933220461000036100 Temizole 20 mg hard capsule 933219021000036101 Temizole 933219021000036101 Temizole 27645011000036105 temozolomide 20 mg capsule, 5 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +44588011000036108 Vfend 200 mg film-coated tablet, 50, blister pack 82505 42041011000036104 Vfend 200 mg film-coated tablet, 50 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46809011000036108 voriconazole 200 mg tablet, 50 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +933211901000036106 Donpesyn 5 mg film-coated tablet, 120, blister pack 142231 933201231000036108 Donpesyn 5 mg film-coated tablet, 120 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933201031000036103 donepezil hydrochloride 5 mg tablet, 120 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +19579011000036108 Luvox 50 mg film-coated tablet, 30, blister pack 57632 12850011000036107 Luvox 50 mg film-coated tablet, 30 6141011000036105 Luvox 50 mg film-coated tablet 4159011000036104 Luvox 4159011000036104 Luvox 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +741371000168101 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 10 x 0.375 mL injection devices 231051 741361000168107 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 10 x 0.375 mL injection devices 741281000168107 Bemfola 225 units (16.5 microgram)/0.375 mL injection solution, 0.375 mL injection device 741041000168106 Bemfola 741041000168106 Bemfola 741351000168105 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, 10 x 0.375 mL injection devices 741271000168109 follitropin alfa 225 units (16.5 microgram)/0.375 mL injection, injection device 21352011000036107 follitropin alfa +923561000168108 Zolpidem (Apo) 10 mg film-coated tablet, 14, bottle 127178 734981000168100 Zolpidem (Apo) 10 mg film-coated tablet, 14 734971000168103 Zolpidem (Apo) 10 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +37595011000036107 Diprosone OV 0.05% modified ointment, 30 g, tube 18823 36862011000036100 Diprosone OV 0.05% modified ointment, 30 g 36199011000036102 Diprosone OV 0.05% modified ointment 8541000168102 Diprosone OV 8541000168102 Diprosone OV 38749011000036106 betamethasone (as dipropionate) 0.05% modified ointment, 30 g 125571000036107 betamethasone (as dipropionate) 0.05% modified ointment 21372011000036109 betamethasone dipropionate +20952011000036107 Clamohexal 125/31.25 powder for oral liquid, 75 mL, bottle 94700 14107011000036100 Clamohexal 125/31.25 powder for oral liquid, 75 mL 7384011000036109 Clamohexal 125/31.25 powder for oral liquid, 5 mL 57111000168103 Clamohexal 125/31.25 57111000168103 Clamohexal 125/31.25 28155011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 75 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +61166011000036102 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 500 mL, bottle 74682 57109011000036106 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 500 mL 54199011000036104 Paracetamol Children's 5 to 12 Years (Pharmacist) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 34551000168100 Paracetamol Children's 5 to 12 Years (Pharmacist) 63815011000036105 paracetamol 240 mg/5 mL oral liquid, 500 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +779061000168105 Fentanyl (Apo) 75 microgram/hour patch, 10, sachet 152570 779051000168108 Fentanyl (Apo) 75 microgram/hour patch, 10 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235591000036104 fentanyl 75 microgram/hour patch, 10 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +1108891000168103 Midazolam (WP) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 207227 1108881000168101 Midazolam (WP) 5 mg/5 mL injection solution, 5 x 5 mL ampoules 1108851000168108 Midazolam (WP) 5 mg/5 mL injection solution, 5 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 46758011000036109 midazolam 5 mg/5 mL injection, 5 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +60139011000036105 Tefodine 120 mg film-coated tablet, 10, blister pack 129141 56098011000036109 Tefodine 120 mg film-coated tablet, 10 53789011000036105 Tefodine 120 mg film-coated tablet 53099011000036106 Tefodine 53099011000036106 Tefodine 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +717211000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 280, blister pack 149417 717201000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 280 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716501000168102 omeprazole 20 mg enteric capsule, 280 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +151921000036103 Symbicort Rapihaler 50/3 pressurised inhalation, 120 actuations, metered dose aerosol can 158898 149951000036105 Symbicort Rapihaler 50/3 pressurised inhalation, 120 actuations 148231000036103 Symbicort Rapihaler 50/3 pressurised inhalation, actuation 10001000168106 Symbicort Rapihaler 50/3 10001000168106 Symbicort Rapihaler 50/3 149961000036108 budesonide 50 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 3 microgram/actuation pressurised inhalation, 120 actuations 148241000036108 budesonide 50 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 3 microgram/actuation pressurised inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +1011411000168107 Montelukast (Apotex) 5 mg chewable tablet, 28, blister pack 179117 1011401000168109 Montelukast (Apotex) 5 mg chewable tablet, 28 1011341000168104 Montelukast (Apotex) 5 mg chewable tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +682931000168108 Arzerra 1 g/50 mL concentrated injection, 50 mL vial 218896 682921000168105 Arzerra 1 g/50 mL concentrated injection, 50 mL vial 682901000168101 Arzerra 1 g/50 mL concentrated injection, 50 mL vial 682821000168102 Arzerra 682821000168102 Arzerra 682911000168103 ofatumumab 1 g/50 mL injection, 50 mL vial 682891000168100 ofatumumab 1 g/50 mL injection, vial 682831000168104 ofatumumab +931707011000036103 Benadryl Dry Tickly Cough 1 mg/mL oral liquid solution, 200 mL, bottle 174281 930867011000036106 Benadryl Dry Tickly Cough 1 mg/mL oral liquid solution, 200 mL 930081011000036101 Benadryl Dry Tickly Cough 1 mg/mL oral liquid solution 57001000168100 Benadryl Dry Tickly Cough 57001000168100 Benadryl Dry Tickly Cough 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +1062811000168102 Atorvator 40 mg film-coated tablet, 6, blister pack 179830 1062801000168100 Atorvator 40 mg film-coated tablet, 6 1061451000168107 Atorvator 40 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 841061000168108 atorvastatin 40 mg tablet, 6 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +19775011000036105 Topamax 200 mg film-coated tablet, 60, blister pack 62712 13033011000036108 Topamax 200 mg film-coated tablet, 60 6320011000036108 Topamax 200 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +61153011000036104 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 500 mL, bottle 74522 57096011000036109 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 500 mL 54195011000036101 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 911000168102 Paracetamol Children's Concentrated 5 to 12 Years (Soul Pattinson) 63815011000036105 paracetamol 240 mg/5 mL oral liquid, 500 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +18738011000036104 Methoblastin 2.5 mg uncoated tablet, 30, bottle 15418 12093011000036109 Methoblastin 2.5 mg uncoated tablet, 30 5021011000036104 Methoblastin 2.5 mg uncoated tablet 3599011000036102 Methoblastin 3599011000036102 Methoblastin 26910011000036108 methotrexate 2.5 mg tablet, 30 22287011000036105 methotrexate 2.5 mg tablet 21342011000036105 methotrexate +924931000168108 Androgel 1% (50 mg/5 g) gel, 5 g sachet 96130 924921000168105 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 924911000168103 testosterone 1% (50 mg/5 g) gel, 5 g sachet 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +749311000168105 Tacrolimus (AN) 500 microgram hard capsule, 100, blister pack 224277 749301000168107 Tacrolimus (AN) 500 microgram hard capsule, 100 749231000168107 Tacrolimus (AN) 500 microgram hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 27831011000036100 tacrolimus 500 microgram capsule, 100 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +931779011000036103 Concerta 54 mg modified release tablet, 56, bottle 93864 930939011000036101 Concerta 54 mg modified release tablet, 56 7355011000036104 Concerta 54 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932508011000036102 methylphenidate hydrochloride 54 mg modified release tablet, 56 23439011000036102 methylphenidate hydrochloride 54 mg modified release tablet 21277011000036101 methylphenidate +762161000168107 Uniclar Aqueous 50 microgram/actuation nasal spray, 140 actuations, pump pack 199815 762151000168105 Uniclar Aqueous 50 microgram/actuation nasal spray, 140 actuations 762121000168102 Uniclar Aqueous 50 microgram/actuation nasal spray, actuation 762111000168109 Uniclar Aqueous 762111000168109 Uniclar Aqueous 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +966701000168100 Diavance 250/1.25 film-coated tablet, 120, blister pack 120263 966691000168100 Diavance 250/1.25 film-coated tablet, 120 966561000168106 Diavance 250/1.25 film-coated tablet 966551000168109 Diavance 250/1.25 966551000168109 Diavance 250/1.25 966681000168103 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet, 120 23507011000036105 metformin hydrochloride 250 mg + glibenclamide 1.25 mg tablet 21813011000036107 metformin + glibenclamide +13721000036100 Zypine ODT 5 mg wafer, 28, blister pack 175773 8831000036102 Zypine ODT 5 mg wafer, 28 2731000036107 Zypine ODT 5 mg wafer 14381000168109 Zypine ODT 14381000168109 Zypine ODT 27713011000036107 olanzapine 5 mg wafer, 28 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +20468011000036101 Exelon 2 mg/mL oral liquid solution, 120 mL, bottle 78269 13670011000036109 Exelon 2 mg/mL oral liquid solution, 120 mL 6953011000036107 Exelon 2 mg/mL oral liquid solution 4601000168108 Exelon 4601000168108 Exelon 27873011000036102 rivastigmine 2 mg/mL oral liquid, 120 mL 23201011000036107 rivastigmine 2 mg/mL oral liquid 21413011000036101 rivastigmine +19788011000036109 Zofran Zydis 4 mg wafer, 10, blister pack 63054 13046011000036103 Zofran Zydis 4 mg wafer, 10 6332011000036105 Zofran Zydis 4 mg wafer 21371000168103 Zofran Zydis 21371000168103 Zofran Zydis 27516011000036100 ondansetron 4 mg wafer, 10 22858011000036108 ondansetron 4 mg wafer 21545011000036100 ondansetron +1096281000168105 Aleve 24 Hour 660 mg modified release tablet, 16, blister pack 263421 1096271000168107 Aleve 24 Hour 660 mg modified release tablet, 16 1096141000168108 Aleve 24 Hour 660 mg modified release tablet 1096101000168106 Aleve 24 Hour 1096101000168106 Aleve 24 Hour 1096261000168101 naproxen sodium 660 mg modified release tablet, 16 1096131000168104 naproxen sodium 660 mg modified release tablet 21304011000036105 naproxen +20975011000036101 Zimstat 5 mg film-coated tablet, 30, bottle 95677 14121011000036103 Zimstat 5 mg film-coated tablet, 30 7398011000036101 Zimstat 5 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +809291000168100 Perindopril Arginine/Amlodipine 10/5 (Apo) uncoated tablet, 30, bottle 224316 809271000168101 Perindopril Arginine/Amlodipine 10/5 (Apo) uncoated tablet, 30 809261000168107 Perindopril Arginine/Amlodipine 10/5 (Apo) uncoated tablet 809251000168105 Perindopril Arginine/Amlodipine 10/5 (Apo) 809251000168105 Perindopril Arginine/Amlodipine 10/5 (Apo) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +926807011000036104 Dostan 500 microgram uncoated tablet, 2, bottle 170398 926203011000036102 Dostan 500 microgram uncoated tablet, 2 925673011000036107 Dostan 500 microgram uncoated tablet 925516011000036102 Dostan 925516011000036102 Dostan 27271011000036107 cabergoline 500 microgram tablet, 2 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +140641000036107 Zoltrip 2.5 mg film-coated tablet, 2, blister pack 200877 139441000036103 Zoltrip 2.5 mg film-coated tablet, 2 137481000036103 Zoltrip 2.5 mg film-coated tablet 137211000036107 Zoltrip 137211000036107 Zoltrip 27480011000036105 zolmitriptan 2.5 mg tablet, 2 22826011000036105 zolmitriptan 2.5 mg tablet 21516011000036102 zolmitriptan +20939011000036101 Glivec 400 mg film-coated tablet, 30, blister pack 94217 14093011000036104 Glivec 400 mg film-coated tablet, 30 7371011000036103 Glivec 400 mg film-coated tablet 3084011000036104 Glivec 3084011000036104 Glivec 28143011000036104 imatinib 400 mg tablet, 30 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +19571000036108 Agrippal 2012 injection suspension, 1 x 0.5 mL syringe 144670 19051000036107 Agrippal 2012 injection suspension, 1 x 0.5 mL syringe 18571000036100 Agrippal 2012 injection suspension, 0.5 mL syringe 44401000168104 Agrippal 2012 44401000168104 Agrippal 2012 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +648411000168103 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 130 mL, bottle 648401000168101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 130 mL 648381000168101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner 65133011000036104 Neutrogena T/Gel Therapeutic Conditioner 65133011000036104 Neutrogena T/Gel Therapeutic Conditioner 648391000168103 salicylic acid 2% conditioner, 130 mL 648371000168104 salicylic acid 2% conditioner 52232011000036106 salicylic acid +60623011000036109 Cough Suppressant (Amcal) 1 mg/mL oral liquid solution, 200 mL, bottle 19644 56581011000036102 Cough Suppressant (Amcal) 1 mg/mL oral liquid solution, 200 mL 53986011000036108 Cough Suppressant (Amcal) 1 mg/mL oral liquid solution 53434011000036105 Cough Suppressant (Amcal) 53434011000036105 Cough Suppressant (Amcal) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +43882011000036108 Atenolol (GenRx) 50 mg film-coated tablet, 30, bottle 129864 11430011000036100 Atenolol (GenRx) 50 mg film-coated tablet, 30 4851011000036109 Atenolol (GenRx) 50 mg film-coated tablet 3319011000036101 Atenolol (GenRx) 3319011000036101 Atenolol (GenRx) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +786691000168109 Oxycodone MR (Apotex) 15 mg modified release tablet, 60, blister pack 214496 786681000168106 Oxycodone MR (Apotex) 15 mg modified release tablet, 60 786631000168105 Oxycodone MR (Apotex) 15 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 71472011000036108 oxycodone hydrochloride 15 mg modified release tablet, 60 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +796401000168104 Quetiapine (Accord) 200 mg film-coated tablet, 20, blister pack 203593 796391000168101 Quetiapine (Accord) 200 mg film-coated tablet, 20 796381000168104 Quetiapine (Accord) 200 mg film-coated tablet 796271000168105 Quetiapine (Accord) 796271000168105 Quetiapine (Accord) 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +884271000168104 Bosentan (Accord) 62.5 mg film-coated tablet, 100, bottle 235884 884261000168105 Bosentan (Accord) 62.5 mg film-coated tablet, 100 884221000168100 Bosentan (Accord) 62.5 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884251000168108 bosentan 62.5 mg tablet, 100 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +19706011000036109 Topace 25 mg uncoated tablet, 90, blister pack 60876 12963011000036101 Topace 25 mg uncoated tablet, 90 6252011000036104 Topace 25 mg uncoated tablet 4075011000036105 Topace 4075011000036105 Topace 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +151961000036107 Nicorette Invisipatch 15 mg/16 hours patch, 7, sachet 162576 150051000036100 Nicorette Invisipatch 15 mg/16 hours patch, 7 148601000036107 Nicorette Invisipatch 15 mg/16 hours patch 921000168109 Nicorette Invisipatch 921000168109 Nicorette Invisipatch 27136011000036103 nicotine 15 mg/16 hours patch, 7 22501011000036106 nicotine 15 mg/16 hours patch 21432011000036100 nicotine +694491000168107 Cisatracurium (Pfizer) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 195954 694481000168109 Cisatracurium (Pfizer) 10 mg/5 mL injection solution, 5 x 5 mL ampoules 694471000168106 Cisatracurium (Pfizer) 10 mg/5 mL injection solution, 5 mL ampoule 154571000036109 Cisatracurium (Pfizer) 154571000036109 Cisatracurium (Pfizer) 161571000036104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL ampoules 161471000036100 cisatracurium 10 mg/5 mL injection, ampoule 44902011000036101 cisatracurium +13681000036108 Nupentin Tab 600 mg uncoated tablet, 100, blister pack 174063 8791000036105 Nupentin Tab 600 mg uncoated tablet, 100 2371000036108 Nupentin Tab 600 mg uncoated tablet 49501000168102 Nupentin Tab 49501000168102 Nupentin Tab 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +34681011000036106 Subutex FDT 16 mg uncoated tablet, 7, blister pack 134407 34267011000036102 Subutex FDT 16 mg uncoated tablet, 7 33995011000036105 Subutex FDT 16 mg uncoated tablet 26941000168100 Subutex FDT 26941000168100 Subutex FDT 35131011000036108 buprenorphine 16 mg tablet, 7 34860011000036106 buprenorphine 16 mg tablet 21232011000036101 buprenorphine +50496011000036106 Allevyn (66007637) 10 cm x 10 cm dressing, 10, carton 49354011000036109 Allevyn (66007637) 10 cm x 10 cm dressing, 10 48590011000036108 Allevyn (66007637) 10 cm x 10 cm dressing 41831000168106 Allevyn (66007637) 41831000168106 Allevyn (66007637) 51332011000036102 dressing foam heavy exudate 10 cm x 10 cm dressing, 10 50859011000036104 dressing foam heavy exudate 10 cm x 10 cm dressing 50757011000036108 dressing foam heavy exudate +19291011000036108 Permax 50 microgram uncoated tablet, 100, blister pack 49024 12581011000036106 Permax 50 microgram uncoated tablet, 100 5249011000036108 Permax 50 microgram uncoated tablet 3138011000036108 Permax 3138011000036108 Permax 27217011000036109 pergolide 50 microgram tablet, 100 22578011000036106 pergolide 50 microgram tablet 21344011000036101 pergolide +97231000036101 Fluarix 2013 injection suspension, 10 x 0.5 mL syringes 154660 96821000036102 Fluarix 2013 injection suspension, 10 x 0.5 mL syringes 96371000036108 Fluarix 2013 injection suspension, 0.5 mL syringe 36501000168108 Fluarix 2013 36501000168108 Fluarix 2013 96741000036102 influenza trivalent adult vaccine 2013 injection, 10 x 0.5 mL syringes 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +20190011000036101 Valtrex 500 mg film-coated tablet, 10, bottle 73918 13409011000036108 Valtrex 500 mg film-coated tablet, 10 6694011000036100 Valtrex 500 mg film-coated tablet 3821011000036105 Valtrex 3821011000036105 Valtrex 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +727621000168101 Crestor 5 mg film-coated tablet, 7, blister pack 119120 727611000168108 Crestor 5 mg film-coated tablet, 7 5294011000036100 Crestor 5 mg film-coated tablet 4031011000036106 Crestor 4031011000036106 Crestor 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +1104621000168107 Quetiapine (Mylan) 25 mg film-coated tablet, 60, blister pack 162401 1104611000168100 Quetiapine (Mylan) 25 mg film-coated tablet, 60 1104601000168103 Quetiapine (Mylan) 25 mg film-coated tablet 1104591000168105 Quetiapine (Mylan) 1104591000168105 Quetiapine (Mylan) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1062851000168101 Atorvator 20 mg film-coated tablet, 30, bottle 179822 1062781000168104 Atorvator 20 mg film-coated tablet, 30 1062731000168100 Atorvator 20 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +34779011000036106 Oxycontin 40 mg modified release tablet, 60, bottle 68192 34357011000036100 Oxycontin 40 mg modified release tablet, 60 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +1000901000168108 Pregabalin (Apo) 100 mg hard capsule, 100, bottle 193248 1000891000168109 Pregabalin (Apo) 100 mg hard capsule, 100 1000791000168104 Pregabalin (Apo) 100 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 1000881000168106 pregabalin 100 mg capsule, 100 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +69278011000036100 Osmitrol 10% (100 g/L) intravenous infusion injection, 1 L bag 19479 67078011000036103 Osmitrol 10% (100 g/L) intravenous infusion injection, 1 L bag 65368011000036106 Osmitrol 10% (100 g/L) intravenous infusion injection, 1 L bag 65181011000036106 Osmitrol 65181011000036106 Osmitrol 71648011000036109 mannitol 10% (100 g/L) injection, 1 L bag 70108011000036109 mannitol 10% (100 g/L) injection, bag 69778011000036106 mannitol +95771000036103 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 3, blister pack 195918 94671000036109 Azithromycin (Terry White Chemists) 500 mg film-coated tablet, 3 93431000036108 Azithromycin (Terry White Chemists) 500 mg film-coated tablet 93261000036101 Azithromycin (Terry White Chemists) 93261000036101 Azithromycin (Terry White Chemists) 27420011000036100 azithromycin 500 mg tablet, 3 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +936491000168109 Quinapril (GenRx) 20 mg film-coated tablet, 30, blister pack 133229 936471000168108 Quinapril (GenRx) 20 mg film-coated tablet, 30 936461000168102 Quinapril (GenRx) 20 mg film-coated tablet 936451000168104 Quinapril (GenRx) 936451000168104 Quinapril (GenRx) 27078011000036106 quinapril 20 mg tablet, 30 22447011000036100 quinapril 20 mg tablet 21289011000036102 quinapril +1061801000168106 Ramipril (Auro) 1.25 mg hard capsule, 28, blister pack 203703 1061791000168105 Ramipril (Auro) 1.25 mg hard capsule, 28 1060951000168108 Ramipril (Auro) 1.25 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 1061781000168107 ramipril 1.25 mg capsule, 28 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +761841000168106 Daivonex 0.005% ointment, 15 g, tube 46683 761831000168102 Daivonex 0.005% ointment, 15 g 5390011000036104 Daivonex 0.005% ointment 30251000168107 Daivonex 30251000168107 Daivonex 761821000168100 calcipotriol 0.005% ointment, 15 g 22510011000036101 calcipotriol 0.005% ointment 21829011000036100 calcipotriol +812581000168107 Citalopram (Amneal) 10 mg film-coated tablet, 7, blister pack 158879 812571000168109 Citalopram (Amneal) 10 mg film-coated tablet, 7 812561000168103 Citalopram (Amneal) 10 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +966381000168109 Gamunex 10% 2.5 g/25 mL injection solution, 25 mL vial 117237 966371000168106 Gamunex 10% 2.5 g/25 mL injection solution, 25 mL vial 966361000168100 Gamunex 10% 2.5 g/25 mL injection solution, 25 mL vial 966321000168105 Gamunex 10% 966321000168105 Gamunex 10% 114471000036101 normal immunoglobulin 2.5 g/25 mL injection, 25 mL vial 112871000036106 normal immunoglobulin 2.5 g/25 mL injection, vial 74965011000036103 normal immunoglobulin +68915011000036100 Deep Heat Regular Rub cream, 35 g, tube 12821 66715011000036102 Deep Heat Regular Rub cream, 35 g 65257011000036107 Deep Heat Regular Rub cream 13681000168101 Deep Heat Regular Rub 13681000168101 Deep Heat Regular Rub 71397011000036108 methyl salicylate 12.74% + menthol 5.88% cream, 35 g 69993011000036102 methyl salicylate 12.74% + menthol 5.88% cream 69751011000036100 methyl salicylate + menthol +920775011000036109 Nappy-Goo cream, 100 g, tube 75440 920454011000036101 Nappy-Goo cream, 100 g 920191011000036109 Nappy-Goo cream 920098011000036107 Nappy-Goo 920098011000036107 Nappy-Goo 920868011000036108 zinc oxide 10.4% + hamamelis water 10% + melaleuca oil 7.5% cream, 100 g 920830011000036100 zinc oxide 10.4% + hamamelis water 10% + melaleuca oil 7.5% cream 920819011000036104 zinc oxide + hamamelis water + melaleuca oil +91521000036106 Forxiga 10 mg film-coated tablet, 7, blister pack 180147 89821000036108 Forxiga 10 mg film-coated tablet, 7 88021000036109 Forxiga 10 mg film-coated tablet 87591000036104 Forxiga 87591000036104 Forxiga 89831000036105 dapagliflozin 10 mg tablet, 7 88031000036106 dapagliflozin 10 mg tablet 91851000036102 dapagliflozin +926689011000036102 Lisoril 2.5 mg uncoated tablet, 56, blister pack 106491 926068011000036103 Lisoril 2.5 mg uncoated tablet, 56 925631011000036109 Lisoril 2.5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 927303011000036107 lisinopril 2.5 mg tablet, 56 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +923863011000036102 Clopidogrel (GA) 75 mg film-coated tablet, 28, blister pack 204439 923409011000036108 Clopidogrel (GA) 75 mg film-coated tablet, 28 923072011000036103 Clopidogrel (GA) 75 mg film-coated tablet 922931011000036105 Clopidogrel (GA) 922931011000036105 Clopidogrel (GA) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +923863011000036102 Clopidogrel (GA) 75 mg film-coated tablet, 28, blister pack 162330 923409011000036108 Clopidogrel (GA) 75 mg film-coated tablet, 28 923072011000036103 Clopidogrel (GA) 75 mg film-coated tablet 922931011000036105 Clopidogrel (GA) 922931011000036105 Clopidogrel (GA) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +929054011000036106 Galvumet 50/1000 film-coated tablet, 10, blister pack 161218 928415011000036107 Galvumet 50/1000 film-coated tablet, 10 927970011000036102 Galvumet 50/1000 film-coated tablet 14481000168101 Galvumet 50/1000 14481000168101 Galvumet 50/1000 929252011000036105 vildagliptin 50 mg + metformin hydrochloride 1 g tablet, 10 929156011000036106 vildagliptin 50 mg + metformin hydrochloride 1 g tablet 929132011000036106 vildagliptin + metformin +925240011000036101 Rispericor 4 mg film-coated tablet, 60, blister pack 159975 924777011000036101 Rispericor 4 mg film-coated tablet, 60 924475011000036101 Rispericor 4 mg film-coated tablet 45561000168103 Rispericor 45561000168103 Rispericor 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +44850011000036103 Perfalgan 500 mg/50 mL intravenous infusion injection, 50 mL vial 99870 42282011000036106 Perfalgan 500 mg/50 mL intravenous infusion injection, 50 mL vial 40419011000036108 Perfalgan 500 mg/50 mL intravenous infusion injection, 50 mL vial 39596011000036105 Perfalgan 39596011000036105 Perfalgan 47033011000036101 paracetamol 500 mg/50 mL injection, 50 mL vial 45383011000036109 paracetamol 500 mg/50 mL injection, vial 21433011000036107 paracetamol +45511000036108 Roxithromycin (PS) 150 mg film-coated tablet, 10, blister pack 188354 43641000036109 Roxithromycin (PS) 150 mg film-coated tablet, 10 40891000036107 Roxithromycin (PS) 150 mg film-coated tablet 40331000036100 Roxithromycin (PS) 40331000036100 Roxithromycin (PS) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +34720011000036101 Methadone Hydrochloride Syrup (Orion) 2.5 mg/mL oral liquid solution, 20 mL, bottle 21174 34304011000036104 Methadone Hydrochloride Syrup (Orion) 2.5 mg/mL oral liquid solution, 20 mL 34027011000036103 Methadone Hydrochloride Syrup (Orion) 2.5 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35153011000036108 methadone hydrochloride 2.5 mg/mL oral liquid, 20 mL 34875011000036106 methadone hydrochloride 2.5 mg/mL oral liquid 21357011000036109 methadone +1096121000168102 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet, 60, blister pack 286619 1096111000168109 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet, 60 1096071000168102 Iron (Apohealth) 200 mg (iron 65.7 mg) film-coated tablet 1096061000168108 Iron (Apohealth) 1096061000168108 Iron (Apohealth) 933225511000036106 ferrous fumarate 200 mg (iron 65.7 mg) tablet, 60 933220681000036107 ferrous fumarate 200 mg (iron 65.7 mg) tablet 933232111000036107 ferrous fumarate +152051000036101 Ceftriaxone (Hospira) 1 g powder for injection, 1 vial 167648 150171000036109 Ceftriaxone (Hospira) 1 g powder for injection, 1 vial 148661000036106 Ceftriaxone (Hospira) 1 g powder for injection, vial 148061000036102 Ceftriaxone (Hospira) 148061000036102 Ceftriaxone (Hospira) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +931367011000036100 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 30, blister pack 192334 930609011000036105 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 30 929969011000036109 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +931367011000036100 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 30, blister pack 134695 930609011000036105 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 30 929969011000036109 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +19222011000036106 Fluorouracil (DBL) 500 mg/10 mL injection solution, 10 mL vial 47260 12512011000036103 Fluorouracil (DBL) 500 mg/10 mL injection solution, 10 mL vial 5449011000036107 Fluorouracil (DBL) 500 mg/10 mL injection solution, 10 mL vial 3626011000036107 Fluorouracil (DBL) 3626011000036107 Fluorouracil (DBL) 28263011000036108 fluorouracil 500 mg/10 mL injection, 10 mL vial 23577011000036103 fluorouracil 500 mg/10 mL injection, vial 21481011000036100 fluorouracil +1061921000168105 Allevyn Life Non-Bordered (66801749) 16 cm x 16 cm dressing, 10, carton 92774 1061911000168103 Allevyn Life Non-Bordered (66801749) 16 cm x 16 cm dressing, 10 1061891000168100 Allevyn Life Non-Bordered (66801749) 16 cm x 16 cm dressing 1061871000168101 Allevyn Life Non-Bordered (66801749) 1061871000168101 Allevyn Life Non-Bordered (66801749) 1061901000168101 dressing foam with silicone 16 cm x 16 cm dressing, 10 1061881000168103 dressing foam with silicone 16 cm x 16 cm dressing 157031000036107 dressing foam with silicone +774931000168104 Nexazole 40 mg enteric tablet, 100, blister pack 205824 774921000168102 Nexazole 40 mg enteric tablet, 100 774811000168103 Nexazole 40 mg enteric tablet 774551000168104 Nexazole 774551000168104 Nexazole 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +60934011000036107 Claratyne 10 mg effervescent tablet, 2, blister pack 62125 56888011000036107 Claratyne 10 mg effervescent tablet, 2 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63632011000036100 loratadine 10 mg effervescent tablet, 2 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +160641000036100 Nesina Met 12.5 mg/1000 mg film-coated tablet, 56, blister pack 202309 159551000036100 Nesina Met 12.5 mg/1000 mg film-coated tablet, 56 158161000036104 Nesina Met 12.5 mg/1000 mg film-coated tablet 10781000168101 Nesina Met 12.5 mg/1000 mg 10781000168101 Nesina Met 12.5 mg/1000 mg 159561000036102 alogliptin 12.5 mg + metformin hydrochloride 1 g tablet, 56 158171000036107 alogliptin 12.5 mg + metformin hydrochloride 1 g tablet 160701000036106 alogliptin + metformin +1016891000168108 Aripiprazole (AU) 2 mg uncoated tablet, 30, blister pack 217210 1016881000168105 Aripiprazole (AU) 2 mg uncoated tablet, 30 1016871000168107 Aripiprazole (AU) 2 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +43800011000036108 Stilnox CR 12.5 mg modified release tablet, 21, blister pack 120713 41246011000036101 Stilnox CR 12.5 mg modified release tablet, 21 39911011000036109 Stilnox CR 12.5 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46188011000036108 zolpidem tartrate 12.5 mg modified release tablet, 21 45021011000036100 zolpidem tartrate 12.5 mg modified release tablet 44930011000036107 zolpidem +91501000036101 Ozin 10 mg uncoated tablet, 30, bottle 179937 89781000036104 Ozin 10 mg uncoated tablet, 30 2161000036102 Ozin 10 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 89791000036102 olanzapine 10 mg tablet, 30 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +44216011000036100 Ogen 625 microgram uncoated tablet, 7, bottle 56965 41692011000036108 Ogen 625 microgram uncoated tablet, 7 6118011000036109 Ogen 625 microgram uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46509011000036109 oestrone sulfate sodium 625 microgram tablet, 7 22744011000036101 oestrone sulfate sodium 625 microgram tablet 21299011000036103 oestrone sulfate sodium +933214921000036104 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 100, bottle 163567 933204511000036104 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 100 933195551000036104 Pravastatin Sodium (RZ) 80 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 52329011000036109 pravastatin sodium 80 mg tablet, 100 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +82356011000036104 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 144632 82149011000036100 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 82018011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 82539011000036106 sodium chloride 0.9% (2.25 g/250 mL) injection, 35 x 250 mL bags 70187011000036109 sodium chloride 0.9% (2.25 g/250 mL) injection, bag 21308011000036103 sodium chloride +79624011000036106 Cubicin 350 mg powder for injection, 1 vial 143574 79471011000036109 Cubicin 350 mg powder for injection, 1 vial 79359011000036103 Cubicin 350 mg powder for injection, 350 mg vial 79337011000036109 Cubicin 79337011000036109 Cubicin 79802011000036104 daptomycin 350 mg injection, 1 vial 79738011000036109 daptomycin 350 mg injection, vial 79727011000036105 daptomycin +1103661000168104 Quetiapine (GH) 25 mg film-coated tablet, 90, blister pack 179902 1103651000168101 Quetiapine (GH) 25 mg film-coated tablet, 90 2321000036109 Quetiapine (GH) 25 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103641000168103 quetiapine 25 mg tablet, 90 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +786651000168104 Oxycodone MR (Apotex) 15 mg modified release tablet, 20, blister pack 214496 786641000168101 Oxycodone MR (Apotex) 15 mg modified release tablet, 20 786631000168105 Oxycodone MR (Apotex) 15 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +779181000168100 Clinoleic 20% injection emulsion, 12 x 350 mL bags 97537 779171000168103 Clinoleic 20% injection emulsion, 12 x 350 mL bags 779111000168106 Clinoleic 20% injection emulsion, 350 mL bag 36411000168105 Clinoleic 20% 36411000168105 Clinoleic 20% 779161000168109 olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 12 x 350 mL bags 779101000168108 olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, bag 926971011000036108 olive oil + soya oil +933213711000036107 Citalopram (IPCA) 20 mg film-coated tablet, 28, bottle 158872 933203241000036104 Citalopram (IPCA) 20 mg film-coated tablet, 28 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +84263011000036104 Essential Amino Acid Mix powder for oral liquid, 2 x 200 g cans 83955011000036108 Essential Amino Acid Mix powder for oral liquid, 2 x 200 g 83604011000036103 Essential Amino Acid Mix powder for oral liquid 83580011000036101 Essential Amino Acid Mix 83580011000036101 Essential Amino Acid Mix 84610011000036108 essential amino acids formula powder for oral liquid, 2 x 200 g 84423011000036106 essential amino acids formula powder for oral liquid 84412011000036109 essential amino acids formula +959091000168105 Proquad powder for injection, 10 vials 126153 959081000168107 Proquad powder for injection, 10 vials 959031000168106 Proquad (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 958931000168103 Proquad 958931000168103 Proquad 959071000168109 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, 10 vials 959021000168108 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +1062971000168100 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) uncoated tablet, 40, blister pack 140610 1062961000168106 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) uncoated tablet, 40 1062931000168103 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) uncoated tablet 1062921000168101 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) 1062921000168101 Pain Relief Paracetamol plus Codeine with Calmative (Cipla) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +39388011000036106 Tryzan 2.5 mg uncoated tablet, 30, blister pack 129916 39272011000036105 Tryzan 2.5 mg uncoated tablet, 30 39210011000036103 Tryzan 2.5 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +31081000036108 Finasteride (GA) 5 mg film-coated tablet, 30, blister pack 173217 28551000036101 Finasteride (GA) 5 mg film-coated tablet, 30 27001000036108 Finasteride (GA) 5 mg film-coated tablet 26131000036104 Finasteride (GA) 26131000036104 Finasteride (GA) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +992361000168104 Irinotecan (Apo) 100 mg/5 mL concentrated injection, 5 mL vial 246738 992351000168101 Irinotecan (Apo) 100 mg/5 mL concentrated injection, 5 mL vial 992341000168103 Irinotecan (Apo) 100 mg/5 mL concentrated injection, 5 mL vial 992151000168104 Irinotecan (Apo) 992151000168104 Irinotecan (Apo) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +20645011000036101 Fenac 25 mg enteric tablet, 100, bottle 81508 13825011000036106 Fenac 25 mg enteric tablet, 100 7112011000036107 Fenac 25 mg enteric tablet 4003011000036103 Fenac 4003011000036103 Fenac 27952011000036104 diclofenac sodium 25 mg enteric tablet, 100 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +20645011000036101 Fenac 25 mg enteric tablet, 100, bottle 145815 13825011000036106 Fenac 25 mg enteric tablet, 100 7112011000036107 Fenac 25 mg enteric tablet 4003011000036103 Fenac 4003011000036103 Fenac 27952011000036104 diclofenac sodium 25 mg enteric tablet, 100 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +18692011000036102 Solu-Medrol (1 x 1 g vial, 1 x 16 mL inert diluent vial), 1 pack, composite pack 12340 11739011000036101 Solu-Medrol (1 x 1 g vial, 1 x 16 mL inert diluent vial), 1 pack 635721000168105 Solu-Medrol (inert substance) diluent, 16 mL vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 26758011000036106 methylprednisolone 1 g injection [1 vial] (&) inert substance diluent [16 mL vial], 1 pack 635711000168103 inert substance diluent, 16 mL vial 21220011000036103 inert substance +18692011000036102 Solu-Medrol (1 x 1 g vial, 1 x 16 mL inert diluent vial), 1 pack, composite pack 12340 11739011000036101 Solu-Medrol (1 x 1 g vial, 1 x 16 mL inert diluent vial), 1 pack 4573011000036107 Solu-Medrol (methylprednisolone 1 g) powder for injection, vial 16541000168104 Solu-Medrol 16541000168104 Solu-Medrol 26758011000036106 methylprednisolone 1 g injection [1 vial] (&) inert substance diluent [16 mL vial], 1 pack 22145011000036109 methylprednisolone 1 g injection, vial 21605011000036100 methylprednisolone +829601000168103 Tixol 30 mg enteric capsule, 28, blister pack 199256 829591000168105 Tixol 30 mg enteric capsule, 28 829581000168107 Tixol 30 mg enteric capsule 829541000168102 Tixol 829541000168102 Tixol 38610011000036103 duloxetine 30 mg enteric capsule, 28 37876011000036107 duloxetine 30 mg enteric capsule 37715011000036107 duloxetine +1057551000168109 Ramipril (Auro) 10 mg uncoated tablet, 28, blister pack 175220 1057541000168107 Ramipril (Auro) 10 mg uncoated tablet, 28 1057521000168101 Ramipril (Auro) 10 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 1057531000168103 ramipril 10 mg tablet, 28 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +130431000036103 Adesan HCT 16/12.5 uncoated tablet, 30, bottle 163669 127441000036105 Adesan HCT 16/12.5 uncoated tablet, 30 124611000036103 Adesan HCT 16/12.5 uncoated tablet 42751000168104 Adesan HCT 16/12.5 42751000168104 Adesan HCT 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +45431000036100 Norfloxacin (PS) 400 mg film-coated tablet, 14, blister pack 184273 43581000036101 Norfloxacin (PS) 400 mg film-coated tablet, 14 40491000036109 Norfloxacin (PS) 400 mg film-coated tablet 40361000036106 Norfloxacin (PS) 40361000036106 Norfloxacin (PS) 28110011000036103 norfloxacin 400 mg tablet, 14 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +926712011000036100 Perindopril Erbumine (Generic Health) 2 mg uncoated tablet, 30, blister pack 125454 926133011000036109 Perindopril Erbumine (Generic Health) 2 mg uncoated tablet, 30 925609011000036103 Perindopril Erbumine (Generic Health) 2 mg uncoated tablet 925543011000036101 Perindopril Erbumine (Generic Health) 925543011000036101 Perindopril Erbumine (Generic Health) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +79637011000036102 Sculptra 150 mg powder for injection, 1 vial 151888 79493011000036101 Sculptra 150 mg powder for injection, 1 vial 79378011000036108 Sculptra 150 mg powder for injection, 150 mg vial 79333011000036100 Sculptra 79333011000036100 Sculptra 79817011000036104 polylactic acid 150 mg injection, 1 vial 79746011000036109 polylactic acid 150 mg injection, vial 79731011000036100 polylactic acid +19984011000036106 Micardis 80 mg uncoated tablet, 28, blister pack 68053 13225011000036101 Micardis 80 mg uncoated tablet, 28 6507011000036101 Micardis 80 mg uncoated tablet 4415011000036107 Micardis 4415011000036107 Micardis 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +33500011000036108 Terbihexal 250 mg uncoated tablet, 42, bottle 101686 11225011000036108 Terbihexal 250 mg uncoated tablet, 42 5864011000036109 Terbihexal 250 mg uncoated tablet 3919011000036109 Terbihexal 3919011000036109 Terbihexal 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +921907011000036105 Exforge HCT 10/320/25 film-coated tablet, 14, blister pack 158168 921466011000036109 Exforge HCT 10/320/25 film-coated tablet, 14 921019011000036105 Exforge HCT 10/320/25 film-coated tablet 21211000168103 Exforge HCT 10/320/25 21211000168103 Exforge HCT 10/320/25 922594011000036108 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 14 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +926954011000036108 Fexotabs 180 mg film-coated tablet, 30, blister pack 98210 926348011000036106 Fexotabs 180 mg film-coated tablet, 30 925776011000036107 Fexotabs 180 mg film-coated tablet 6901000168106 Fexotabs 6901000168106 Fexotabs 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +761921000168108 Clomid 50 mg uncoated tablet, 5, blister pack 10103 761911000168101 Clomid 50 mg uncoated tablet, 5 5454011000036109 Clomid 50 mg uncoated tablet 3575011000036105 Clomid 3575011000036105 Clomid 28274011000036104 clomifene citrate 50 mg tablet, 5 23588011000036107 clomifene citrate 50 mg tablet 21599011000036107 clomifene +1097331000168104 Voltaren Emulgel No Mess Applicator (1 x 100 g gel, 1 x 120 g gel), 1 pack, tubes 282516 1097321000168102 Voltaren Emulgel No Mess Applicator (1 x 100 g gel, 1 x 120 g gel), 1 pack 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1097311000168109 diclofenac diethylamine 11.6 mg / 1 g gel [100 g] (&) diclofenac diethylamine 11.6 mg / 1 g gel [120 g], 1 pack 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +44088011000036105 Anselol 50 mg film-coated tablet, 30, blister pack 49360 13616011000036103 Anselol 50 mg film-coated tablet, 30 6899011000036105 Anselol 50 mg film-coated tablet 3756011000036104 Anselol 3756011000036104 Anselol 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +140481000036100 Versatis 5% dermal patch, 30, sachet 175178 139031000036102 Versatis 5% dermal patch, 30 137591000036100 Versatis 5% dermal patch 137391000036106 Versatis 137391000036106 Versatis 139041000036107 lidocaine (lignocaine) 5% patch, 30 137601000036107 lidocaine (lignocaine) 5% patch 21572011000036107 lidocaine (lignocaine) +44307011000036109 Differin 0.1% cream, 30 g, tube 66174 41774011000036102 Differin 0.1% cream, 30 g 40194011000036109 Differin 0.1% cream 39740011000036103 Differin 39740011000036103 Differin 46581011000036109 adapalene 0.1% cream, 30 g 45228011000036103 adapalene 0.1% cream 44932011000036106 adapalene +104471000036103 Juvicor 100 mg/40 mg film-coated tablet, 28, blister pack 191481 101661000036107 Juvicor 100 mg/40 mg film-coated tablet, 28 98231000036100 Juvicor 100 mg/40 mg film-coated tablet 56961000168100 Juvicor 100 mg/40 mg 56961000168100 Juvicor 100 mg/40 mg 101671000036104 sitagliptin 100 mg + simvastatin 40 mg tablet, 28 98241000036105 sitagliptin 100 mg + simvastatin 40 mg tablet 105261000036108 sitagliptin + simvastatin +783521000168102 Palexia IR 100 mg film-coated tablet, 14, blister pack 165318 783511000168109 Palexia IR 100 mg film-coated tablet, 14 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783501000168106 tapentadol 100 mg tablet, 14 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +50208011000036109 Phlexy-10 citrus burst powder for oral liquid, 30 x 20 g sachets 49478011000036108 Phlexy-10 citrus burst powder for oral liquid, 30 x 20 g sachets 301871000168104 Phlexy-10 citrus burst powder for oral liquid, 20 g sachet 48301011000036102 Phlexy-10 48301011000036102 Phlexy-10 51472011000036106 amino acid formula without phenylalanine powder for oral liquid, 30 x 20 g sachets 301691000168102 amino acid formula without phenylalanine powder for oral liquid, 20 g sachet 50722011000036107 amino acid formula without phenylalanine +1057511000168108 Levetiracetam 1000 (Auro) 1 g film-coated tablet, 60, bottle 182819 713881000168103 Levetiracetam 1000 (Auro) 1 g film-coated tablet, 60 713871000168101 Levetiracetam 1000 (Auro) 1 g film-coated tablet 713861000168107 Levetiracetam 1000 (Auro) 713861000168107 Levetiracetam 1000 (Auro) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +21129011000036107 Methotrexate (Ebewe) 1 g/10 mL concentrated injection, 10 mL vial 98547 14272011000036108 Methotrexate (Ebewe) 1 g/10 mL concentrated injection, 10 mL vial 7558011000036108 Methotrexate (Ebewe) 1 g/10 mL concentrated injection, 10 mL vial 3132011000036105 Methotrexate (Ebewe) 3132011000036105 Methotrexate (Ebewe) 28266011000036102 methotrexate 1 g/10 mL injection, 10 mL vial 23580011000036105 methotrexate 1 g/10 mL injection, vial 21342011000036105 methotrexate +77250011000036108 Actonel Once-a-Month 150 mg film-coated tablet, 2, blister pack 150618 76666011000036102 Actonel Once-a-Month 150 mg film-coated tablet, 2 76101011000036105 Actonel Once-a-Month 150 mg film-coated tablet 7381000168101 Actonel Once-a-Month 7381000168101 Actonel Once-a-Month 78195011000036102 risedronate sodium 150 mg tablet, 2 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +746031000168108 Diazepam (Chemmart) 2 mg uncoated tablet, 50, blister pack 93668 746021000168105 Diazepam (Chemmart) 2 mg uncoated tablet, 50 746011000168103 Diazepam (Chemmart) 2 mg uncoated tablet 746001000168101 Diazepam (Chemmart) 746001000168101 Diazepam (Chemmart) 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +1121781000168106 Ztab 7.5 mg film-coated tablet, 30, blister pack 239217 1121771000168108 Ztab 7.5 mg film-coated tablet, 30 1121761000168102 Ztab 7.5 mg film-coated tablet 1121751000168104 Ztab 1121751000168104 Ztab 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +757811000168108 Solifenacin (Chemmart) 10 mg film-coated tablet, 30, blister pack 218392 757801000168105 Solifenacin (Chemmart) 10 mg film-coated tablet, 30 757791000168109 Solifenacin (Chemmart) 10 mg film-coated tablet 757781000168106 Solifenacin (Chemmart) 757781000168106 Solifenacin (Chemmart) 46155011000036106 solifenacin succinate 10 mg tablet, 30 45011011000036107 solifenacin succinate 10 mg tablet 44891011000036101 solifenacin +97301000036101 Phenobarbitone Elixir (Orion) 15 mg/5 mL oral liquid solution, 500 mL, bottle 21187 96911000036101 Phenobarbitone Elixir (Orion) 15 mg/5 mL oral liquid solution, 500 mL 96441000036108 Phenobarbitone Elixir (Orion) 15 mg/5 mL oral liquid solution, 5 mL 28881000168103 Phenobarbitone Elixir (Orion) 28881000168103 Phenobarbitone Elixir (Orion) 38780011000036107 phenobarbital (phenobarbitone) 15 mg/5 mL oral liquid, 500 mL 37993011000036104 phenobarbital (phenobarbitone) 15 mg/5 mL oral liquid 21578011000036105 phenobarbital (phenobarbitone) +61418011000036103 Paracetamol Infant and Children's Drops 1 Month to 4 Years (Pharmacy Health) 100 mg/mL oral liquid solution, 20 mL, bottle 82527 57343011000036107 Paracetamol Infant and Children's Drops 1 Month to 4 Years (Pharmacy Health) 100 mg/mL oral liquid solution, 20 mL 54281011000036104 Paracetamol Infant and Children's Drops 1 Month to 4 Years (Pharmacy Health) 100 mg/mL oral liquid solution 14241000168105 Paracetamol Infant and Children's Drops 1 Month to 4 Years (Pharmacy Health) 14241000168105 Paracetamol Infant and Children's Drops 1 Month to 4 Years (Pharmacy Health) 63841011000036103 paracetamol 100 mg/mL oral liquid, 20 mL 62088011000036105 paracetamol 100 mg/mL oral liquid 21433011000036107 paracetamol +988071000168109 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 100 mL, bottle 178433 988061000168103 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 100 mL 988001000168104 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 5 mL 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +52200011000036100 Carboplatin (Baxter) 450 mg/45 mL injection solution, 45 mL vial 140399 52088011000036109 Carboplatin (Baxter) 450 mg/45 mL injection solution, 45 mL vial 51984011000036109 Carboplatin (Baxter) 450 mg/45 mL injection solution, 45 mL vial 51933011000036104 Carboplatin (Baxter) 51933011000036104 Carboplatin (Baxter) 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +52223011000036101 Leucovorin Calcium (Pfizer (Perth)) 100 mg/10 mL injection solution, 10 x 10 mL ampoules 61887 52108011000036100 Leucovorin Calcium (Pfizer (Perth)) 100 mg/10 mL injection solution, 10 x 10 mL ampoules 51999011000036109 Leucovorin Calcium (Pfizer (Perth)) 100 mg/10 mL injection solution, 10 mL ampoule 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 3477011000036109 Leucovorin Calcium (Pfizer (Perth)) 52334011000036105 folinic acid 100 mg/10 mL injection, 10 x 10 mL ampoules 52259011000036102 folinic acid 100 mg/10 mL injection, ampoule 21617011000036108 folinic acid +928881011000036104 Enalapril Maleate (GH) 5 mg uncoated tablet, 30, blister pack 142936 928243011000036103 Enalapril Maleate (GH) 5 mg uncoated tablet, 30 927898011000036102 Enalapril Maleate (GH) 5 mg uncoated tablet 927800011000036101 Enalapril Maleate (GH) 927800011000036101 Enalapril Maleate (GH) 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +20151011000036104 Diaformin 850 mg film-coated tablet, 60, blister pack 73808 13374011000036108 Diaformin 850 mg film-coated tablet, 60 6659011000036106 Diaformin 850 mg film-coated tablet 42011000168103 Diaformin 42011000168103 Diaformin 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +779221000168108 Bupradex 8 mg sublingual tablet, 7, blister pack 152477 779211000168101 Bupradex 8 mg sublingual tablet, 7 779201000168104 Bupradex 8 mg sublingual tablet 779151000168107 Bupradex 779151000168107 Bupradex 685641000168102 buprenorphine 8 mg sublingual tablet, 7 685621000168108 buprenorphine 8 mg sublingual tablet 21232011000036101 buprenorphine +87736011000036104 Risperidone (DRLA) 4 mg film-coated tablet, 20, blister pack 165537 87502011000036109 Risperidone (DRLA) 4 mg film-coated tablet, 20 87344011000036107 Risperidone (DRLA) 4 mg film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 81629011000036100 risperidone 4 mg tablet, 20 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +967681000168101 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 150537 967671000168104 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24 967661000168105 Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) uncoated tablet 57271000168100 Cold and Flu Day and Night Relief (Blooms The Chemist) 57511000168105 Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +967681000168101 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 150537 967671000168104 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24 53926011000036102 Cold and Flu Day and Night Relief (Day) (Blooms The Chemist) uncoated tablet 57271000168100 Cold and Flu Day and Night Relief (Blooms The Chemist) 57391000168109 Cold and Flu Day and Night Relief (Day) (Blooms The Chemist) 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +19055011000036105 Inza 500 mg tablet, 50, bottle 40929 12363011000036106 Inza 500 mg tablet, 50 5467011000036107 Inza 500 mg tablet 3504011000036101 Inza 3504011000036101 Inza 27554011000036104 naproxen 500 mg tablet, 50 22893011000036109 naproxen 500 mg tablet 21304011000036105 naproxen +653911000168103 Zinc, Starch and Talc Dusting Powder APF (extemporaneous) dusting powder, 100 g, screw cap jar 653901000168101 Zinc, Starch and Talc Dusting Powder APF (extemporaneous) dusting powder, 100 g 653881000168103 Zinc, Starch and Talc Dusting Powder APF (extemporaneous) dusting powder 653831000168104 Zinc, Starch and Talc Dusting Powder APF (extemporaneous) 653831000168104 Zinc, Starch and Talc Dusting Powder APF (extemporaneous) 653891000168100 zinc oxide 25% + starch 25% + talc 50% dusting powder, 100 g 653871000168101 zinc oxide 25% + starch 25% + talc 50% dusting powder 653861000168107 zinc oxide + starch + talc +91661000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 20, blister pack 193421 90151000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 20 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +91661000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 20, blister pack 210587 90151000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 20 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +20255011000036100 Visudyne 15 mg powder for injection, 1 vial 74902 13465011000036107 Visudyne 15 mg powder for injection, 1 vial 6747011000036105 Visudyne 15 mg powder for injection, 15 mg vial 3016011000036109 Visudyne 3016011000036109 Visudyne 27759011000036104 verteporfin 15 mg injection, 1 vial 23090011000036108 verteporfin 15 mg injection, vial 21817011000036103 verteporfin +69151011000036109 Strepsils lemon sugar free lozenge, 8, blister pack 153118 66951011000036100 Strepsils lemon sugar free lozenge, 8 65352011000036103 Strepsils lemon sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +931485011000036103 Topira-Lax 25 mg film-coated tablet, 60, blister pack 155180 928308011000036109 Topira-Lax 25 mg film-coated tablet, 60 927937011000036104 Topira-Lax 25 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +21175011000036109 Movalis 7.5 mg uncoated tablet, 30, blister pack 99152 14316011000036107 Movalis 7.5 mg uncoated tablet, 30 7602011000036108 Movalis 7.5 mg uncoated tablet 4074011000036106 Movalis 4074011000036106 Movalis 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +19454011000036102 Zerit 20 mg hard capsule, 60, bottle 54299 12731011000036101 Zerit 20 mg hard capsule, 60 6026011000036107 Zerit 20 mg hard capsule 4053011000036106 Zerit 4053011000036106 Zerit 27318011000036103 stavudine 20 mg capsule, 60 22671011000036107 stavudine 20 mg capsule 21314011000036107 stavudine +777901000168102 Levophed 1 in 1000 (4 mg/4 mL) concentrated injection, 10 x 4 mL vials 183622 777891000168101 Levophed 1 in 1000 (4 mg/4 mL) concentrated injection, 10 x 4 mL vials 777871000168102 Levophed 1 in 1000 (4 mg/4 mL) concentrated injection, 4 mL vial 35950011000036103 Levophed 35950011000036103 Levophed 777881000168104 noradrenaline (norepinephrine) 1 in 1000 (4 mg/4 mL) injection, 10 x 4 mL vials 777861000168108 noradrenaline (norepinephrine) 1 in 1000 (4 mg/4 mL) injection, vial 37760011000036102 noradrenaline (norepinephrine) +1094681000168102 Paracetamol XR (AH) 665 mg modified release tablet, 100, bottle 227110 1094671000168100 Paracetamol XR (AH) 665 mg modified release tablet, 100 1094661000168106 Paracetamol XR (AH) 665 mg modified release tablet 1094641000168107 Paracetamol XR (AH) 1094641000168107 Paracetamol XR (AH) 677931000168103 paracetamol 665 mg modified release tablet, 100 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +1057231000168101 Levetiracetam (Auro) 500 mg film-coated tablet, 60, bottle 182818 713771000168109 Levetiracetam (Auro) 500 mg film-coated tablet, 60 713761000168103 Levetiracetam (Auro) 500 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +779341000168108 Inlyta 3 mg film-coated tablet, 28, blister pack 213873 779331000168104 Inlyta 3 mg film-coated tablet, 28 779311000168109 Inlyta 3 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 779321000168102 axitinib 3 mg tablet, 28 779301000168106 axitinib 3 mg tablet 157041000036102 axitinib +59795011000036105 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 15 g, tube 114309 55757011000036101 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 15 g 53720011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63126011000036100 bifonazole 1% gel, 15 g 61865011000036102 bifonazole 1% gel 21899011000036106 bifonazole +84348011000036109 Stalevo 125/31.25/200 film-coated tablet, 30, bottle 160687 84041011000036101 Stalevo 125/31.25/200 film-coated tablet, 30 83665011000036103 Stalevo 125/31.25/200 film-coated tablet 2301000168106 Stalevo 125/31.25/200 2301000168106 Stalevo 125/31.25/200 84653011000036105 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 30 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +91681000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 20, blister pack 194227 90171000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet, 20 88451000036108 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) uncoated tablet 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 19591000168100 Paracetamol plus Codeine 500 mg/15 mg (Pharmacy Action) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +748991000168105 Cisatracurium (Accord) 150 mg/30 mL injection solution, 30 mL vial 222413 748981000168107 Cisatracurium (Accord) 150 mg/30 mL injection solution, 30 mL vial 748971000168109 Cisatracurium (Accord) 150 mg/30 mL injection solution, 30 mL vial 747971000168108 Cisatracurium (Accord) 747971000168108 Cisatracurium (Accord) 161591000036100 cisatracurium 150 mg/30 mL injection, 30 mL vial 161501000036108 cisatracurium 150 mg/30 mL injection, vial 44902011000036101 cisatracurium +746111000168104 Cholstat 40 mg uncoated tablet, 10, blister pack 98489 746101000168102 Cholstat 40 mg uncoated tablet, 10 7552011000036105 Cholstat 40 mg uncoated tablet 3920011000036105 Cholstat 3920011000036105 Cholstat 746091000168107 pravastatin sodium 40 mg tablet, 10 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +1005471000168104 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags 206686 1005461000168105 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags 1005451000168108 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 200 mL bag 713301000168100 Ropivacaine (Pfizer) 713301000168100 Ropivacaine (Pfizer) 1004651000168106 ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags 1004631000168100 ropivacaine hydrochloride 400 mg/200 mL injection, bag 44857011000036102 ropivacaine +39371011000036105 Keppra 100 mg/mL oral liquid solution, 300 mL, bottle 120499 39259011000036103 Keppra 100 mg/mL oral liquid solution, 300 mL 39214011000036108 Keppra 100 mg/mL oral liquid solution 3677011000036106 Keppra 3677011000036106 Keppra 39462011000036104 levetiracetam 100 mg/mL oral liquid, 300 mL 39434011000036104 levetiracetam 100 mg/mL oral liquid 21766011000036102 levetiracetam +1070301000168102 Rapideine Caplets uncoated tablet, 48, blister pack 82094 1070291000168103 Rapideine Caplets uncoated tablet, 48 1070241000168106 Rapideine Caplets uncoated tablet 1070021000168108 Rapideine Caplets 1070021000168108 Rapideine Caplets 63852011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 48 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +714511000168109 Rixubis (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204766 714501000168106 Rixubis (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 714471000168100 Rixubis (nonacog gamma 1000 units) powder for injection, 1000 units vial 714001000168104 Rixubis 714001000168104 Rixubis 714481000168102 nonacog gamma 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 714461000168106 nonacog gamma 1000 units injection, vial 714081000168107 nonacog gamma +714511000168109 Rixubis (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204766 714501000168106 Rixubis (1 x 1000 units vial, 1 x 5 mL inert diluent vial), 1 pack 714111000168102 Rixubis (inert substance) diluent, 5 mL vial 714001000168104 Rixubis 714001000168104 Rixubis 714481000168102 nonacog gamma 1000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +147391000036107 Benefiber 1 g/g powder for oral liquid, 350 g, jar 144621000036108 Benefiber 1 g/g powder for oral liquid, 350 g 143551000036104 Benefiber 1 g/g powder for oral liquid 143351000036106 Benefiber 143351000036106 Benefiber 144631000036105 wheat dextrin 1 g/g powder for oral liquid, 350 g 143561000036101 wheat dextrin 1 g/g powder for oral liquid 146531000036100 wheat dextrin +37693011000036100 Ebixa 10 mg film-coated tablet, 30, blister pack 82026 36959011000036107 Ebixa 10 mg film-coated tablet, 30 36282011000036108 Ebixa 10 mg film-coated tablet 19751000168102 Ebixa 19751000168102 Ebixa 38840011000036102 memantine hydrochloride 10 mg tablet, 30 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +79641011000036106 Gliclazide MR (Chemmart) 30 mg modified release tablet, 100, blister pack 151304 79486011000036106 Gliclazide MR (Chemmart) 30 mg modified release tablet, 100 79371011000036104 Gliclazide MR (Chemmart) 30 mg modified release tablet 48041000168102 Gliclazide MR (Chemmart) 48041000168102 Gliclazide MR (Chemmart) 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +933230711000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet, 90, blister pack 170178 933224831000036104 Valaciclovir (Generic Health) 500 mg film-coated tablet, 90 933220361000036109 Valaciclovir (Generic Health) 500 mg film-coated tablet 933219301000036109 Valaciclovir (Generic Health) 933219301000036109 Valaciclovir (Generic Health) 929224011000036102 valaciclovir 500 mg tablet, 90 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +966541000168107 Pheburane 483 mg/g granules, 174 g, bottle 273750 966531000168103 Pheburane 483 mg/g granules, 174 g 966511000168108 Pheburane 483 mg/g granules 966481000168101 Pheburane 966481000168101 Pheburane 966521000168101 sodium phenylbutyrate 483 mg/g granules, 174 g 966501000168105 sodium phenylbutyrate 483 mg/g granules 966491000168103 sodium phenylbutyrate +926680011000036108 Lisoril 2.5 mg uncoated tablet, 84, blister pack 106491 926069011000036106 Lisoril 2.5 mg uncoated tablet, 84 925631011000036109 Lisoril 2.5 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 927304011000036109 lisinopril 2.5 mg tablet, 84 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +795121000168109 Instanyl 100 microgram/actuation nasal spray, 1 actuation, pump pack 197688 795111000168102 Instanyl 100 microgram/actuation nasal spray, 1 actuation 795091000168105 Instanyl 100 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795101000168100 fentanyl 100 microgram/actuation nasal spray, 1 actuation 154901000036106 fentanyl 100 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +74911011000036104 Red Back Spider Antivenom (CSL) 500 units injection solution, 1 vial 74893 74398011000036101 Red Back Spider Antivenom (CSL) 500 units injection solution, 1 vial 73921011000036109 Red Back Spider Antivenom (CSL) 500 units injection solution, vial 73778011000036109 Red Back Spider Antivenom (CSL) 73778011000036109 Red Back Spider Antivenom (CSL) 75495011000036107 red back spider antivenom 500 units injection, 1 vial 75095011000036103 red back spider antivenom 500 units injection, vial 74987011000036105 red back spider antivenom +658321000168103 Cephalexin (AN) 500 mg capsule, 20, blister pack 148201 658311000168105 Cephalexin (AN) 500 mg capsule, 20 658301000168107 Cephalexin (AN) 500 mg capsule 658231000168107 Cephalexin (AN) 658231000168107 Cephalexin (AN) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +694331000168102 Mepitac (298400) 4 cm x 1.5 m tape, 1 roll, carton 694321000168100 Mepitac (298400) 4 cm x 1.5 m tape, 1 roll 694301000168109 Mepitac (298400) 4 cm x 1.5 m tape 52101000168104 Mepitac (298400) 52101000168104 Mepitac (298400) 694311000168107 tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll 694291000168108 tape plaster adhesive with silicone 4 cm x 1.5 m tape 85068011000036107 tape plaster adhesive with silicone +933230751000036108 Nicabate P 4 mg chewing gum, 96, blister pack 171310 933224871000036102 Nicabate P 4 mg chewing gum, 96 933220401000036104 Nicabate P 4 mg chewing gum 9751000168104 Nicabate P 9751000168104 Nicabate P 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +69497011000036109 Dulcolax 5 mg enteric tablet, 50, blister pack 50792 67297011000036101 Dulcolax 5 mg enteric tablet, 50 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 71939011000036103 bisacodyl 5 mg enteric tablet, 50 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +69497011000036109 Dulcolax 5 mg enteric tablet, 50, blister pack 155405 67297011000036101 Dulcolax 5 mg enteric tablet, 50 65595011000036100 Dulcolax 5 mg enteric tablet 5971000168108 Dulcolax 5971000168108 Dulcolax 71939011000036103 bisacodyl 5 mg enteric tablet, 50 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +864261000168107 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags 144669 864251000168105 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags 864231000168104 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 864241000168108 glucose monohydrate 5% (2.5 g/50 mL) injection, 40 x 50 mL bags 864221000168102 glucose monohydrate 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +1120661000168103 Xque XR 50 mg modified release tablet, 100, blister pack 241752 1120651000168100 Xque XR 50 mg modified release tablet, 100 1120581000168108 Xque XR 50 mg modified release tablet 1120261000168101 Xque XR 1120261000168101 Xque XR 51530011000036103 quetiapine 50 mg modified release tablet, 100 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +1002551000168102 Rivastigmine (Apo) 1.5 mg hard capsule, 56, bottle 160570 1002541000168104 Rivastigmine (Apo) 1.5 mg hard capsule, 56 1002531000168108 Rivastigmine (Apo) 1.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27691011000036102 rivastigmine 1.5 mg capsule, 56 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +1107681000168104 Midazolam (Intas) 50 mg/10 mL injection solution, 10 mL ampoule 207235 1107671000168102 Midazolam (Intas) 50 mg/10 mL injection solution, 10 mL ampoule 1107661000168108 Midazolam (Intas) 50 mg/10 mL injection solution, 10 mL ampoule 1107651000168106 Midazolam (Intas) 1107651000168106 Midazolam (Intas) 664091000168103 midazolam 50 mg/10 mL injection, 10 mL ampoule 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +61235011000036100 Tri-Profen 200 mg film-coated tablet, 12, blister pack 76986 57171011000036103 Tri-Profen 200 mg film-coated tablet, 12 54224011000036106 Tri-Profen 200 mg film-coated tablet 53358011000036106 Tri-Profen 53358011000036106 Tri-Profen 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +61205011000036106 Strong Pain (Pharmacist) uncoated tablet, 24, blister pack 75646 57141011000036104 Strong Pain (Pharmacist) uncoated tablet, 24 54216011000036106 Strong Pain (Pharmacist) uncoated tablet 53175011000036105 Strong Pain (Pharmacist) 53175011000036105 Strong Pain (Pharmacist) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +18486011000036102 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10695 11350011000036109 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 4 x 28 4525011000036109 Microgynon 50 ED (levonorgestrel 125 microgram + ethinylestradiol 50 microgram) sugar coated tablet 700016051000036109 Microgynon 50 ED 700016051000036109 Microgynon 50 ED 26618011000036106 levonorgestrel 125 microgram + ethinylestradiol 50 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22024011000036101 levonorgestrel 125 microgram + ethinylestradiol 50 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +18486011000036102 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10695 11350011000036109 Microgynon 50 ED (21 x 125 microgram/50 microgram tablets, 7 x inert tablets), 4 x 28 4624011000036102 Microgynon 50 ED (inert substance) sugar coated tablet 700016051000036109 Microgynon 50 ED 700016051000036109 Microgynon 50 ED 26618011000036106 levonorgestrel 125 microgram + ethinylestradiol 50 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +727441000168105 Olmetec 40 mg film-coated tablet, 10, blister pack 102139 727431000168101 Olmetec 40 mg film-coated tablet, 10 4474011000036101 Olmetec 40 mg film-coated tablet 3066011000036105 Olmetec 3066011000036105 Olmetec 727421000168104 olmesartan medoxomil 40 mg tablet, 10 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +59966011000036109 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 100 mL, bottle 120723 55928011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 100 mL 53694011000036102 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63363011000036106 ibuprofen 40 mg/mL oral liquid, 100 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +18849011000036105 Dulcolax 10 mg moulded suppository, 10, strip pack 17926 12160011000036106 Dulcolax 10 mg moulded suppository, 10 5276011000036100 Dulcolax 10 mg moulded suppository 5971000168108 Dulcolax 5971000168108 Dulcolax 27141011000036109 bisacodyl 10 mg suppository, 10 22506011000036101 bisacodyl 10 mg suppository 21264011000036101 bisacodyl +757671000168104 Ceptolate 250 mg hard capsule, 500, bottle 165767 757661000168105 Ceptolate 250 mg hard capsule, 500 1591000036105 Ceptolate 250 mg hard capsule 521000036106 Ceptolate 521000036106 Ceptolate 757651000168108 mycophenolate mofetil 250 mg capsule, 500 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +1054431000168106 Jurnista 4 mg modified release tablet, 50, blister pack 155995 1054421000168108 Jurnista 4 mg modified release tablet, 50 82692011000036100 Jurnista 4 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 1054411000168101 hydromorphone hydrochloride 4 mg modified release tablet, 50 82939011000036103 hydromorphone hydrochloride 4 mg modified release tablet 21480011000036107 hydromorphone +86032011000036102 Coveram 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 154438 85678011000036105 Coveram 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30 85329011000036109 Coveram 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet 43001000168107 Coveram 5mg/5mg (perindopril arginine/amlodipine) 43001000168107 Coveram 5mg/5mg (perindopril arginine/amlodipine) 86424011000036102 perindopril arginine 5 mg + amlodipine 5 mg tablet, 30 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +933213391000036103 Lisinopril (IPCA) 10 mg uncoated tablet, 30, blister pack 152717 933201691000036107 Lisinopril (IPCA) 10 mg uncoated tablet, 30 933194791000036102 Lisinopril (IPCA) 10 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +924731000168106 Carvedilol (DRLA) 25 mg film-coated tablet, 500, bottle 166015 924721000168108 Carvedilol (DRLA) 25 mg film-coated tablet, 500 924671000168100 Carvedilol (DRLA) 25 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924711000168101 carvedilol 25 mg tablet, 500 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +19771011000036108 Ventolin Inhaler CFC-Free 100 microgram/actuation pressurised inhalation, 200 actuations, metered dose aerosol can 62695 13029011000036109 Ventolin Inhaler CFC-Free 100 microgram/actuation pressurised inhalation, 200 actuations 6316011000036103 Ventolin Inhaler CFC-Free 100 microgram/actuation pressurised inhalation, actuation 52411000168107 Ventolin Inhaler 52411000168107 Ventolin Inhaler 27601011000036100 salbutamol 100 microgram/actuation pressurised inhalation, 200 actuations 22940011000036103 salbutamol 100 microgram/actuation pressurised inhalation, actuation 21493011000036100 salbutamol +83001000036105 GlucoDr diagnostic strip, 50, bottle 82921000036108 GlucoDr diagnostic strip, 50 82861000036106 GlucoDr diagnostic strip 8641000168101 GlucoDr 8641000168101 GlucoDr 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +20858011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 92120 14021011000036108 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack 7297011000036105 Peg-Intron Redipen Injector (peginterferon alfa-2b 150 microgram) powder for injection, 150 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28084011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [168 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23392011000036108 peginterferon alfa-2b 150 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20858011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 92120 14021011000036108 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28084011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [168 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20858011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack, composite pack 92120 14021011000036108 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 150 microgram packs, 168 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28084011000036101 peginterferon alfa-2b 150 microgram injection [4 x 150 microgram cartridges] (&) ribavirin 200 mg capsule [168 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +890211000168103 Bansep 10 mg film-coated tablet, 30, bottle 173504 841251000168103 Bansep 10 mg film-coated tablet, 30 841211000168104 Bansep 10 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +69017011000036102 Glyade MR 30 mg modified release tablet, 20, blister pack 139728 66819011000036102 Glyade MR 30 mg modified release tablet, 20 65203011000036106 Glyade MR 30 mg modified release tablet 27901000168100 Glyade MR 27901000168100 Glyade MR 71436011000036109 gliclazide 30 mg modified release tablet, 20 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +1009721000168106 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4, blister pack 158906 1001151000168103 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4 1001141000168100 Valaciclovir 1000 (Apo) 1 g film-coated tablet 1001131000168109 Valaciclovir 1000 (Apo) 1001131000168109 Valaciclovir 1000 (Apo) 927387011000036102 valaciclovir 1 g tablet, 4 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +1052981000168108 Fentanyl (Aspen) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 170929 1052971000168105 Fentanyl (Aspen) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 703391000168109 Fentanyl (Aspen) 100 microgram/2 mL injection solution, 2 mL ampoule 123941000036106 Fentanyl (Aspen) 123941000036106 Fentanyl (Aspen) 35181011000036102 fentanyl 100 microgram/2 mL injection, 10 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +65881000036109 Surgical Spirit solution, 100 mL, bottle 14726 63461000036100 Surgical Spirit solution, 100 mL 61501000036104 Surgical Spirit solution 60531000036103 Surgical Spirit 60531000036103 Surgical Spirit 63471000036108 ethanol 96% + methyl salicylate 0.5% solution, 100 mL 61511000036102 ethanol 96% + methyl salicylate 0.5% solution 66871000036101 ethanol + methyl salicylate +1104781000168101 Hemlibra 60 mg/0.4 mL injection solution, 0.4 mL vial 293760 1104771000168104 Hemlibra 60 mg/0.4 mL injection solution, 0.4 mL vial 1104751000168108 Hemlibra 60 mg/0.4 mL injection solution, 0.4 mL vial 1104651000168104 Hemlibra 1104651000168104 Hemlibra 1104761000168105 emicizumab 60 mg/0.4 mL injection, 0.4 mL vial 1104741000168106 emicizumab 60 mg/0.4 mL injection, vial 1104681000168106 emicizumab +1040011000168102 Atorvastatin (Ascent) 20 mg film-coated tablet, 10, blister pack 178544 1040001000168100 Atorvastatin (Ascent) 20 mg film-coated tablet, 10 1039991000168103 Atorvastatin (Ascent) 20 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +714601000168107 Rixubis (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204765 714591000168100 Rixubis (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack 714571000168101 Rixubis (nonacog gamma 3000 units) powder for injection, 3000 units vial 714001000168104 Rixubis 714001000168104 Rixubis 714581000168103 nonacog gamma 3000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 714561000168107 nonacog gamma 3000 units injection, vial 714081000168107 nonacog gamma +714601000168107 Rixubis (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204765 714591000168100 Rixubis (1 x 3000 units vial, 1 x 5 mL inert diluent vial), 1 pack 714111000168102 Rixubis (inert substance) diluent, 5 mL vial 714001000168104 Rixubis 714001000168104 Rixubis 714581000168103 nonacog gamma 3000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +792311000168109 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) uncoated tablet, 20, blister pack 200691 792301000168106 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) uncoated tablet, 20 792291000168105 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) uncoated tablet 792281000168107 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) 792281000168107 Paracetamol plus Codeine 500 mg/10 mg (Pharmacy Action) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +679871000168102 Movectro 10 mg uncoated tablet, 9, blister pack 166483 679861000168108 Movectro 10 mg uncoated tablet, 9 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679851000168106 cladribine 10 mg tablet, 9 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +1018261000168101 Amisulpride (Apotex) 200 mg tablet, 90, blister pack 178905 1018251000168103 Amisulpride (Apotex) 200 mg tablet, 90 1018201000168102 Amisulpride (Apotex) 200 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +1104941000168109 Quetiapine (Mylan) 100 mg film-coated tablet, 90, blister pack 162402 1104931000168100 Quetiapine (Mylan) 100 mg film-coated tablet, 90 1104921000168103 Quetiapine (Mylan) 100 mg film-coated tablet 1104591000168105 Quetiapine (Mylan) 1104591000168105 Quetiapine (Mylan) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +818041000168105 Decozol 2% oral gel, 40 g, tube 231828 818031000168101 Decozol 2% oral gel, 40 g 817981000168102 Decozol 2% oral gel 817961000168106 Decozol 817961000168106 Decozol 818021000168104 miconazole 2% oral gel, 40 g 817971000168100 miconazole 2% oral gel 21454011000036108 miconazole +84302011000036102 Vimpat 150 mg film-coated tablet, 14, blister pack 151814 83995011000036100 Vimpat 150 mg film-coated tablet, 14 83630011000036101 Vimpat 150 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84630011000036103 lacosamide 150 mg tablet, 14 84430011000036100 lacosamide 150 mg tablet 84408011000036109 lacosamide +84302011000036102 Vimpat 150 mg film-coated tablet, 14, blister pack 196451 83995011000036100 Vimpat 150 mg film-coated tablet, 14 83630011000036101 Vimpat 150 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84630011000036103 lacosamide 150 mg tablet, 14 84430011000036100 lacosamide 150 mg tablet 84408011000036109 lacosamide +1061641000168107 Olanzapine ODT (Auro) 20 mg orally disintegrating tablet, 28, blister pack 212894 1061631000168103 Olanzapine ODT (Auro) 20 mg orally disintegrating tablet, 28 1061621000168101 Olanzapine ODT (Auro) 20 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 68731000036106 olanzapine 20 mg orally disintegrating tablet, 28 68701000036104 olanzapine 20 mg orally disintegrating tablet 21485011000036103 olanzapine +21158011000036100 Diabex XR 500 mg modified release tablet, 90, blister pack 98982 14300011000036106 Diabex XR 500 mg modified release tablet, 90 7586011000036104 Diabex XR 500 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 28291011000036109 metformin hydrochloride 500 mg modified release tablet, 90 23605011000036107 metformin hydrochloride 500 mg modified release tablet 21614011000036102 metformin +20812011000036108 Famotidine (Terry White Chemists) 20 mg film-coated tablet, 60, blister pack 91511 13975011000036101 Famotidine (Terry White Chemists) 20 mg film-coated tablet, 60 7261011000036104 Famotidine (Terry White Chemists) 20 mg film-coated tablet 4260011000036101 Famotidine (Terry White Chemists) 4260011000036101 Famotidine (Terry White Chemists) 28145011000036103 famotidine 20 mg tablet, 60 23454011000036104 famotidine 20 mg tablet 21348011000036108 famotidine +923912011000036103 Strong Pain Relief (Chemmart) capsule shaped uncoated tablet, 24, blister pack 167855 923456011000036108 Strong Pain Relief (Chemmart) capsule shaped uncoated tablet, 24 923091011000036102 Strong Pain Relief (Chemmart) capsule shaped uncoated tablet 53479011000036108 Strong Pain Relief (Chemmart) 53479011000036108 Strong Pain Relief (Chemmart) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +32600011000036109 Genotropin Miniquick (7 x 1.8 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76610 32395011000036107 Genotropin Miniquick (7 x 1.8 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 6856011000036107 Genotropin Miniquick (somatropin 1.8 mg) powder for injection, 1.8 mg syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32793011000036105 somatropin 1.8 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 23139011000036103 somatropin 1.8 mg injection, syringe 21295011000036100 somatropin +32600011000036109 Genotropin Miniquick (7 x 1.8 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76610 32395011000036107 Genotropin Miniquick (7 x 1.8 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32793011000036105 somatropin 1.8 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +50611011000036100 Irinotecan Hydrochloride Trihydrate (GA) 100 mg/5 mL concentrated injection, 5 mL vial 137450 49637011000036106 Irinotecan Hydrochloride Trihydrate (GA) 100 mg/5 mL concentrated injection, 5 mL vial 48794011000036102 Irinotecan Hydrochloride Trihydrate (GA) 100 mg/5 mL concentrated injection, 5 mL vial 927829011000036104 Irinotecan Hydrochloride Trihydrate (GA) 927829011000036104 Irinotecan Hydrochloride Trihydrate (GA) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +748911000168101 Cisatracurium (Accord) 5 mg/2.5 mL injection solution, 2.5 mL vial 222412 748901000168104 Cisatracurium (Accord) 5 mg/2.5 mL injection solution, 2.5 mL vial 748881000168101 Cisatracurium (Accord) 5 mg/2.5 mL injection solution, 2.5 mL vial 747971000168108 Cisatracurium (Accord) 747971000168108 Cisatracurium (Accord) 748891000168103 cisatracurium 5 mg/2.5 mL injection, 2.5 mL vial 679391000168107 cisatracurium 5 mg/2.5 mL injection, vial 44902011000036101 cisatracurium +1011271000168103 Montelukast (Apotex) 4 mg chewable tablet, 4, blister pack 179108 1011261000168109 Montelukast (Apotex) 4 mg chewable tablet, 4 1011241000168105 Montelukast (Apotex) 4 mg chewable tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 1011251000168107 montelukast 4 mg chewable tablet, 4 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +18820011000036101 Metrogyl 200 mg uncoated tablet, 21, bottle 17654 12138011000036103 Metrogyl 200 mg uncoated tablet, 21 5446011000036103 Metrogyl 200 mg uncoated tablet 4091011000036101 Metrogyl 4091011000036101 Metrogyl 27574011000036101 metronidazole 200 mg tablet, 21 22913011000036104 metronidazole 200 mg tablet 21482011000036106 metronidazole +677151000168107 Dorzolamide/Timolol 20/5 (Sandoz) eye drops solution, 5 mL, bottle 211972 677141000168105 Dorzolamide/Timolol 20/5 (Sandoz) eye drops solution, 5 mL 677131000168101 Dorzolamide/Timolol 20/5 (Sandoz) eye drops solution 677121000168104 Dorzolamide/Timolol 20/5 (Sandoz) 677121000168104 Dorzolamide/Timolol 20/5 (Sandoz) 27578011000036108 dorzolamide 2% + timolol 0.5% eye drops, 5 mL 22917011000036108 dorzolamide 2% + timolol 0.5% eye drops 21483011000036104 dorzolamide + timolol +881701000168103 Cansartan HCTZ 32/25 uncoated tablet, 30, bottle 253377 881691000168103 Cansartan HCTZ 32/25 uncoated tablet, 30 881681000168101 Cansartan HCTZ 32/25 uncoated tablet 881671000168104 Cansartan HCTZ 32/25 881671000168104 Cansartan HCTZ 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +829761000168105 Berocca Performance Original effervescent tablet, 30, bottle 129631 829751000168108 Berocca Performance Original effervescent tablet, 30 829701000168109 Berocca Performance Original effervescent tablet 920935011000036104 Berocca Performance 920935011000036104 Berocca Performance 829741000168106 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 30 829691000168109 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet 829681000168106 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc +829761000168105 Berocca Performance Original effervescent tablet, 30, bottle 193893 829751000168108 Berocca Performance Original effervescent tablet, 30 829701000168109 Berocca Performance Original effervescent tablet 920935011000036104 Berocca Performance 920935011000036104 Berocca Performance 829741000168106 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 30 829691000168109 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet 829681000168106 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc +60721011000036102 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 2.5% eye drops solution, 20 x 0.5 mL unit doses, tube 46174 56679011000036101 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 2.5% eye drops solution, 20 x 0.5 mL unit doses 54030011000036106 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 2.5% eye drops solution, 0.5 mL unit dose 25451000168104 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 25451000168104 Phenylephrine Hydrochloride Minims (Bausch & Lomb) 63505011000036109 phenylephrine hydrochloride 2.5% eye drops, 20 x 0.5 mL unit doses 61996011000036101 phenylephrine hydrochloride 2.5% eye drops, unit dose 37732011000036107 phenylephrine +59799011000036107 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 5 g, tube 114309 55761011000036102 Canesten Bifonazole Once Daily Athlete's Foot 1% gel, 5 g 53720011000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% gel 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63130011000036100 bifonazole 1% gel, 5 g 61865011000036102 bifonazole 1% gel 21899011000036106 bifonazole +1036951000168104 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 30, bottle 173506 1036911000168100 Atorvastatin (Ranbaxy) 10 mg film-coated tablet, 30 1036881000168100 Atorvastatin (Ranbaxy) 10 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +20422011000036105 Aspirin (DBL) 100 mg uncoated tablet, 112, blister pack 77596 13629011000036102 Aspirin (DBL) 100 mg uncoated tablet, 112 6912011000036109 Aspirin (DBL) 100 mg uncoated tablet 3892011000036108 Aspirin (DBL) 3892011000036108 Aspirin (DBL) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +20422011000036105 Aspirin (DBL) 100 mg uncoated tablet, 112, blister pack 167775 13629011000036102 Aspirin (DBL) 100 mg uncoated tablet, 112 6912011000036109 Aspirin (DBL) 100 mg uncoated tablet 3892011000036108 Aspirin (DBL) 3892011000036108 Aspirin (DBL) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +104631000036103 Irinotecan Hydrochloride Trihydrate (SZ) 100 mg/5 mL concentrated injection, 5 mL vial 172624 101791000036108 Irinotecan Hydrochloride Trihydrate (SZ) 100 mg/5 mL concentrated injection, 5 mL vial 98371000036109 Irinotecan Hydrochloride Trihydrate (SZ) 100 mg/5 mL concentrated injection, 5 mL vial 97971000036109 Irinotecan Hydrochloride Trihydrate (SZ) 97971000036109 Irinotecan Hydrochloride Trihydrate (SZ) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +650941000168105 Methadone Syrup (Aspen) 5 mg/mL oral liquid solution, 200 mL, bottle 49372 650931000168101 Methadone Syrup (Aspen) 5 mg/mL oral liquid solution, 200 mL 650921000168104 Methadone Syrup (Aspen) 5 mg/mL oral liquid solution 650911000168106 Methadone Syrup (Aspen) 650911000168106 Methadone Syrup (Aspen) 27551011000036102 methadone hydrochloride 5 mg/mL oral liquid, 200 mL 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +813701000168102 Adin Melt 120 microgram sublingual wafer, 100, blister pack 121724 813691000168102 Adin Melt 120 microgram sublingual wafer, 100 813611000168106 Adin Melt 120 microgram sublingual wafer 813381000168106 Adin Melt 813381000168106 Adin Melt 71371011000036107 desmopressin 120 microgram sublingual wafer, 100 69977011000036102 desmopressin 120 microgram sublingual wafer 21750011000036107 desmopressin +85064011000036100 Cellcept 500 mg film-coated tablet, 50, blister pack 82372 84928011000036103 Cellcept 500 mg film-coated tablet, 50 7149011000036105 Cellcept 500 mg film-coated tablet 4308011000036109 Cellcept 4308011000036109 Cellcept 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +931724011000036103 Synthamin 9 Amino Acid 5.5% without Electrolytes intravenous infusion injection, 500 mL bottle 19452 930884011000036102 Synthamin 9 Amino Acid 5.5% without Electrolytes intravenous infusion injection, 500 mL bottle 930089011000036102 Synthamin 9 Amino Acid 5.5% without Electrolytes intravenous infusion injection, 500 mL bottle 929880011000036109 Synthamin 9 Amino Acid 5.5% without Electrolytes 929880011000036109 Synthamin 9 Amino Acid 5.5% without Electrolytes 932467011000036107 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle 931867011000036102 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle 77452011000036108 alanine + arginine + glycine + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + tyrosine + valine +933213551000036100 Citalopram (IPCA) 10 mg film-coated tablet, 14, bottle 158869 933203001000036106 Citalopram (IPCA) 10 mg film-coated tablet, 14 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203011000036108 citalopram 10 mg tablet, 14 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +925182011000036105 Disinfectant Hand Rub (Alsoft Health Care) solution, 1 L, bottle 153574 924719011000036104 Disinfectant Hand Rub (Alsoft Health Care) solution, 1 L 924432011000036106 Disinfectant Hand Rub (Alsoft Health Care) solution 924363011000036102 Disinfectant Hand Rub (Alsoft Health Care) 924363011000036102 Disinfectant Hand Rub (Alsoft Health Care) 925408011000036108 benzalkonium chloride 0.1% + ethanol 66% solution, 1 L 925372011000036109 benzalkonium chloride 0.1% + ethanol 66% solution 925369011000036107 benzalkonium chloride + ethanol +1106151000168103 Nu-Lax Fruit Laxative bar, 40 g, wrapping 185759 1106141000168100 Nu-Lax Fruit Laxative bar, 40 g 1106121000168106 Nu-Lax Fruit Laxative bar 10061000168107 Nu-Lax Fruit Laxative 10061000168107 Nu-Lax Fruit Laxative 1106131000168109 senna leaf powder 1 g/10 g + fig 3 g/10 g + date 3 g/10 g bar, 40 g 1106111000168104 senna leaf powder 1 g/10 g + fig 3 g/10 g + date 3 g/10 g bar 82425011000036104 senna leaf powder + fig + date +1040091000168106 Atorvastatin (Ascent) 20 mg film-coated tablet, 50, blister pack 178544 1040081000168108 Atorvastatin (Ascent) 20 mg film-coated tablet, 50 1039991000168103 Atorvastatin (Ascent) 20 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841451000168102 atorvastatin 20 mg tablet, 50 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +68954011000036108 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 5 sachets 133242 66756011000036102 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 5 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71424011000036103 paracetamol 500 mg powder for oral liquid, 5 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +932061000168109 Centevo 50/12.5/200 mg film-coated tablet, 50, bottle 238152 932051000168107 Centevo 50/12.5/200 mg film-coated tablet, 50 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932041000168105 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 50 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +104311000036104 Tropisetron (AFT) 5 mg/5 mL injection solution, 5 mL ampoule 189944 102371000036103 Tropisetron (AFT) 5 mg/5 mL injection solution, 5 mL ampoule 98171000036106 Tropisetron (AFT) 5 mg/5 mL injection solution, 5 mL ampoule 97681000036104 Tropisetron (AFT) 97681000036104 Tropisetron (AFT) 27181011000036102 tropisetron 5 mg/5 mL injection, 5 mL ampoule 22543011000036102 tropisetron 5 mg/5 mL injection, ampoule 21700011000036104 tropisetron +884351000168103 Bosentan (Accord) 62.5 mg film-coated tablet, 56, blister pack 235882 884341000168100 Bosentan (Accord) 62.5 mg film-coated tablet, 56 884221000168100 Bosentan (Accord) 62.5 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +757591000168102 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 20, blister pack 123670 757581000168100 Ranitidine (Chemists' Own) 150 mg film-coated tablet, 20 757531000168101 Ranitidine (Chemists' Own) 150 mg film-coated tablet 757521000168104 Ranitidine (Chemists' Own) 757521000168104 Ranitidine (Chemists' Own) 46864011000036108 ranitidine 150 mg tablet, 20 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +130271000036102 Camino Pro Bettermilk powder for oral liquid, 28 x 49 g sachets 127191000036106 Camino Pro Bettermilk powder for oral liquid, 28 x 49 g sachets 545501000168104 Camino Pro Bettermilk powder for oral liquid, 49 g sachet 123821000036109 Camino Pro Bettermilk 123821000036109 Camino Pro Bettermilk 127201000036108 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 28 x 49 g sachets 545261000168100 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 49 g sachet 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +929685011000036109 Vexazone 15 mg uncoated tablet, 7, blister pack 164345 929521011000036105 Vexazone 15 mg uncoated tablet, 7 929406011000036101 Vexazone 15 mg uncoated tablet 929365011000036100 Vexazone 929365011000036100 Vexazone 929267011000036103 pioglitazone 15 mg tablet, 7 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +17851011000036102 Serenace 500 microgram uncoated tablet, 100, bottle 10259 11260011000036107 Serenace 500 microgram uncoated tablet, 100 5924011000036105 Serenace 500 microgram uncoated tablet 3608011000036103 Serenace 3608011000036103 Serenace 26576011000036108 haloperidol 500 microgram tablet, 100 21984011000036104 haloperidol 500 microgram tablet 21443011000036108 haloperidol +20785011000036101 Cortival-1/2 0.05% ointment, 15 g, tube 91055 13954011000036103 Cortival-1/2 0.05% ointment, 15 g 7240011000036101 Cortival-1/2 0.05% ointment 44681000168105 Cortival-1/2 44681000168105 Cortival-1/2 28035011000036107 betamethasone (as valerate) 0.05% ointment, 15 g 23356011000036101 betamethasone (as valerate) 0.05% ointment 21366011000036103 betamethasone valerate +933130011000036109 Elmendos 25 mg tablet, 42, blister pack 98073 932933011000036105 Elmendos 25 mg tablet, 42 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 46986011000036107 lamotrigine 25 mg tablet, 42 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +65801000036103 Mitozantrone (Novotech) 25 mg/12.5 mL concentrated injection, 12.5 mL vial 107329 63121000036103 Mitozantrone (Novotech) 25 mg/12.5 mL concentrated injection, 12.5 mL vial 61621000036105 Mitozantrone (Novotech) 25 mg/12.5 mL concentrated injection, 12.5 mL vial 60121000036107 Mitozantrone (Novotech) 60121000036107 Mitozantrone (Novotech) 27781011000036108 mitozantrone 25 mg/12.5 mL injection, 12.5 mL vial 23111011000036106 mitozantrone 25 mg/12.5 mL injection, vial 21652011000036102 mitozantrone +17864011000036107 Sofradex ear drops, 8 mL, bottle 13539 11997011000036107 Sofradex ear drops, 8 mL 4455011000036100 Sofradex ear drops 3931011000036101 Sofradex 3931011000036101 Sofradex 27119011000036100 framycetin sulfate 0.5% + gramicidin 0.005% + dexamethasone 0.05% ear drops, 8 mL 22485011000036104 framycetin sulfate 0.5% + gramicidin 0.005% + dexamethasone 0.05% ear drops 21593011000036109 framycetin sulfate + gramicidin + dexamethasone +925318011000036100 Clopidogrel (Actavis) 75 mg film-coated tablet, 50, blister pack 164866 924854011000036106 Clopidogrel (Actavis) 75 mg film-coated tablet, 50 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 87803011000036103 clopidogrel 75 mg tablet, 50 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +44837011000036103 Enablex 15 mg modified release tablet, 28, blister pack 99439 42269011000036104 Enablex 15 mg modified release tablet, 28 40411011000036109 Enablex 15 mg modified release tablet 39770011000036104 Enablex 39770011000036104 Enablex 47022011000036105 darifenacin 15 mg modified release tablet, 28 45377011000036108 darifenacin 15 mg modified release tablet 44860011000036105 darifenacin +1057391000168107 Ramipril (Auro) 2.5 mg uncoated tablet, 30, blister pack 175226 1057381000168109 Ramipril (Auro) 2.5 mg uncoated tablet, 30 1057341000168104 Ramipril (Auro) 2.5 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +60266011000036105 Fexo (Guardian) 120 mg film-coated tablet, 10, blister pack 134668 56225011000036104 Fexo (Guardian) 120 mg film-coated tablet, 10 53845011000036100 Fexo (Guardian) 120 mg film-coated tablet 53537011000036107 Fexo (Guardian) 53537011000036107 Fexo (Guardian) 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +33568011000036109 Fluvax 2008 injection suspension, 10 x 0.5 mL syringes 145707 33306011000036109 Fluvax 2008 injection suspension, 10 x 0.5 mL syringes 33067011000036105 Fluvax 2008 injection suspension, 0.5 mL syringe 52341000168104 Fluvax 2008 52341000168104 Fluvax 2008 33819011000036101 influenza trivalent adult vaccine 2008 injection, 10 x 0.5 mL syringes 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +923808011000036108 Sulprix 100 mg tablet, 100, bottle 156046 84007011000036101 Sulprix 100 mg tablet, 100 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 84637011000036102 amisulpride 100 mg tablet, 100 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +73344011000036104 Paralice pressurised spray, 100 g, aerosol can 20918 73138011000036104 Paralice pressurised spray, 100 g 72945011000036103 Paralice pressurised spray 72911011000036105 Paralice 72911011000036105 Paralice 73518011000036101 bioallethrin 0.66% + piperonyl butoxide 2.64% spray, 100 g 73381011000036109 bioallethrin 0.66% + piperonyl butoxide 2.64% spray 73354011000036101 bioallethrin + piperonyl butoxide +1022591000168103 Betadine Antiseptic 10% solution, 100 mL, bottle 29562 1022581000168101 Betadine Antiseptic 10% solution, 100 mL 1022551000168108 Betadine Antiseptic 10% solution 30211000168106 Betadine Antiseptic 30211000168106 Betadine Antiseptic 71675011000036102 povidone-iodine 10% solution, 100 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +60866011000036101 Lorastyne Syrup 1 mg/mL oral liquid solution, 35 mL, bottle 59232 56820011000036100 Lorastyne Syrup 1 mg/mL oral liquid solution, 35 mL 54089011000036109 Lorastyne Syrup 1 mg/mL oral liquid solution 27141000168100 Lorastyne Syrup 27141000168100 Lorastyne Syrup 63590011000036103 loratadine 1 mg/mL oral liquid, 35 mL 62022011000036104 loratadine 1 mg/mL oral liquid 21701011000036106 loratadine +18657011000036107 Provera 200 mg uncoated tablet, 60, blister pack 12333 11734011000036102 Provera 200 mg uncoated tablet, 60 5442011000036102 Provera 200 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 26755011000036100 medroxyprogesterone acetate 200 mg tablet, 60 22142011000036101 medroxyprogesterone acetate 200 mg tablet 21378011000036107 medroxyprogesterone +992961000168100 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 14, blister pack 201680 992951000168102 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 14 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992941000168104 clopidogrel 75 mg + aspirin 75 mg tablet, 14 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +1121141000168100 Quetiapine XR (Medis) 200 mg modified release tablet, 100, blister pack 226802 1121131000168109 Quetiapine XR (Medis) 200 mg modified release tablet, 100 1121061000168100 Quetiapine XR (Medis) 200 mg modified release tablet 1121051000168102 Quetiapine XR (Medis) 1121051000168102 Quetiapine XR (Medis) 51533011000036106 quetiapine 200 mg modified release tablet, 100 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +933215401000036101 Hexachlorophane Cleansing (Orion) 3% lotion, 200 g, bottle 21251 933204831000036105 Hexachlorophane Cleansing (Orion) 3% lotion, 200 g 933196451000036108 Hexachlorophane Cleansing (Orion) 3% lotion 61981000168106 Hexachlorophane Cleansing (Orion) 61981000168106 Hexachlorophane Cleansing (Orion) 933204841000036100 hexachlorophene 3% lotion, 200 g 933196461000036106 hexachlorophene 3% lotion 933216391000036106 hexachlorophene +18438011000036105 Oxaliplatin (Winthrop) 50 mg powder for injection, 1 vial 122550 11714011000036107 Oxaliplatin (Winthrop) 50 mg powder for injection, 1 vial 5711011000036109 Oxaliplatin (Winthrop) 50 mg powder for injection, 50 mg vial 3597011000036109 Oxaliplatin (Winthrop) 3597011000036109 Oxaliplatin (Winthrop) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +20340011000036102 Trileptal 600 mg film-coated tablet, 100, blister pack 76202 13549011000036105 Trileptal 600 mg film-coated tablet, 100 6831011000036101 Trileptal 600 mg film-coated tablet 4244011000036101 Trileptal 4244011000036101 Trileptal 27802011000036101 oxcarbazepine 600 mg tablet, 100 23130011000036109 oxcarbazepine 600 mg tablet 21420011000036102 oxcarbazepine +864401000168107 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags 144669 864391000168105 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags 864231000168104 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 864381000168107 glucose monohydrate 5% (2.5 g/50 mL) injection, 65 x 50 mL bags 864221000168102 glucose monohydrate 5% (2.5 g/50 mL) injection, bag 21354011000036103 glucose +80960011000036105 Zinc (Gold Cross) 15% ointment, 500 g, jar 14072 80500011000036101 Zinc (Gold Cross) 15% ointment, 500 g 80166011000036105 Zinc (Gold Cross) 15% ointment 80119011000036100 Zinc (Gold Cross) 80119011000036100 Zinc (Gold Cross) 81596011000036108 zinc oxide 15% ointment, 500 g 81266011000036102 zinc oxide 15% ointment 77446011000036105 zinc oxide +33615011000036108 Lyrica 75 mg hard capsule, 56, blister pack 99520 33353011000036106 Lyrica 75 mg hard capsule, 56 33111011000036105 Lyrica 75 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +992681000168102 Bisoprolol (Apotex) 5 mg tablet, 56, blister pack 182129 992671000168100 Bisoprolol (Apotex) 5 mg tablet, 56 992561000168105 Bisoprolol (Apotex) 5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79211011000036104 bisoprolol fumarate 5 mg tablet, 56 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +1039771000168101 Atorvastatin (Ascent) 10 mg film-coated tablet, 20, blister pack 178530 1039761000168107 Atorvastatin (Ascent) 10 mg film-coated tablet, 20 1039731000168104 Atorvastatin (Ascent) 10 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841511000168102 atorvastatin 10 mg tablet, 20 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +20387011000036105 Eprex 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 76970 13595011000036103 Eprex 5000 units/0.5 mL injection solution, 6 x 0.5 mL syringes 6878011000036108 Eprex 5000 units/0.5 mL injection solution, 0.5 mL syringe 3309011000036103 Eprex 3309011000036103 Eprex 27825011000036100 epoetin alfa 5000 units/0.5 mL injection, 6 x 0.5 mL syringes 23153011000036102 epoetin alfa 5000 units/0.5 mL injection, syringe 21294011000036104 epoetin alfa +104791000036105 Irbesartan HCTZ 300/25 (Apo) film-coated tablet, 30, blister pack 175202 101971000036107 Irbesartan HCTZ 300/25 (Apo) film-coated tablet, 30 99051000036108 Irbesartan HCTZ 300/25 (Apo) film-coated tablet 45281000168109 Irbesartan HCTZ 300/25 (Apo) 45281000168109 Irbesartan HCTZ 300/25 (Apo) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104791000036105 Irbesartan HCTZ 300/25 (Apo) film-coated tablet, 30, blister pack 213305 101971000036107 Irbesartan HCTZ 300/25 (Apo) film-coated tablet, 30 99051000036108 Irbesartan HCTZ 300/25 (Apo) film-coated tablet 45281000168109 Irbesartan HCTZ 300/25 (Apo) 45281000168109 Irbesartan HCTZ 300/25 (Apo) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1027161000168104 Esomeprazole (Pharmacor) 20 mg enteric tablet, 30, blister pack 210855 1027151000168101 Esomeprazole (Pharmacor) 20 mg enteric tablet, 30 1027101000168100 Esomeprazole (Pharmacor) 20 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +705971000168105 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL, pump pack 705961000168104 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 705951000168101 glycerol 10% + cetomacrogol aqueous cream, 325 mL 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +1106471000168102 Imrest 7.5 mg film-coated tablet, 100, blister pack 99794 1106461000168108 Imrest 7.5 mg film-coated tablet, 100 7626011000036102 Imrest 7.5 mg film-coated tablet 4237011000036108 Imrest 4237011000036108 Imrest 1106451000168106 zopiclone 7.5 mg tablet, 100 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +931716011000036103 Strong Pain (Pharmacist Formula) uncoated tablet, 20, blister pack 176303 930876011000036103 Strong Pain (Pharmacist Formula) uncoated tablet, 20 930085011000036104 Strong Pain (Pharmacist Formula) uncoated tablet 929902011000036103 Strong Pain (Pharmacist Formula) 929902011000036103 Strong Pain (Pharmacist Formula) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +791671000168100 Trexject 20 mg/0.4 mL injection solution, 0.4 mL syringe 233719 791661000168106 Trexject 20 mg/0.4 mL injection solution, 0.4 mL syringe 791641000168107 Trexject 20 mg/0.4 mL injection solution, 0.4 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791651000168109 methotrexate 20 mg/0.4 mL injection, 0.4 mL syringe 791631000168103 methotrexate 20 mg/0.4 mL injection, syringe 21342011000036105 methotrexate +50564011000036109 Durotram XR (once a day) 200 mg modified release tablet, 10, blister pack 134822 49598011000036108 Durotram XR (once a day) 200 mg modified release tablet, 10 48787011000036107 Durotram XR (once a day) 200 mg modified release tablet 12211000168104 Durotram XR 12211000168104 Durotram XR 51502011000036109 tramadol hydrochloride 200 mg modified release tablet, 10 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +778701000168101 Oxycodone MR (Chemmart) 40 mg modified release tablet, 60, blister pack 160095 778691000168101 Oxycodone MR (Chemmart) 40 mg modified release tablet, 60 778581000168103 Oxycodone MR (Chemmart) 40 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +1123311000168102 Quetiapine XR (ZP) 200 mg modified release tablet, 100, blister pack 226803 1123301000168100 Quetiapine XR (ZP) 200 mg modified release tablet, 100 1123231000168100 Quetiapine XR (ZP) 200 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51533011000036106 quetiapine 200 mg modified release tablet, 100 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +705931000168107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg, jar 705921000168109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 75920011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) 705911000168102 glycerol 10% + cetomacrogol aqueous cream, 1 kg 705711000168100 glycerol 10% + cetomacrogol aqueous cream 77469011000036108 glycerol + cetomacrogol aqueous cream +60583011000036106 Sodium Nitrite (DBL) 300 mg/10 mL injection solution, 5 x 10 mL ampoules 16290 56541011000036109 Sodium Nitrite (DBL) 300 mg/10 mL injection solution, 5 x 10 mL ampoules 53963011000036100 Sodium Nitrite (DBL) 300 mg/10 mL injection solution, 10 mL ampoule 53578011000036106 Sodium Nitrite (DBL) 53578011000036106 Sodium Nitrite (DBL) 63407011000036109 sodium nitrite 300 mg/10 mL injection, 5 x 10 mL ampoules 61946011000036105 sodium nitrite 300 mg/10 mL injection, ampoule 61730011000036103 sodium nitrite +79705011000036109 Allerfexo 180 mg film-coated tablet, 20, blister pack 159416 79521011000036101 Allerfexo 180 mg film-coated tablet, 20 79394011000036109 Allerfexo 180 mg film-coated tablet 79348011000036109 Allerfexo 79348011000036109 Allerfexo 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +19638011000036105 Exorex Psoriasis Medication 1% w/w lotion, 100 mL, bottle 59347 12907011000036106 Exorex Psoriasis Medication 1% w/w lotion, 100 mL 6197011000036107 Exorex Psoriasis Medication 1% w/w lotion 51791000168102 Exorex Psoriasis Medication 51791000168102 Exorex Psoriasis Medication 27430011000036102 prepared coal tar 1% w/w lotion, 100 mL 22777011000036106 prepared coal tar 1% w/w lotion 33626011000036109 prepared coal tar +18922011000036107 Betoptic 0.5% eye drops solution, 5 mL, bottle 25272 12230011000036102 Betoptic 0.5% eye drops solution, 5 mL 5713011000036105 Betoptic 0.5% eye drops solution 32051000168103 Betoptic 32051000168103 Betoptic 27347011000036105 betaxolol 0.5% eye drops, 5 mL 22700011000036100 betaxolol 0.5% eye drops 21729011000036102 betaxolol +923877011000036100 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 500, bottle 163765 923421011000036104 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet, 500 923077011000036101 Lercanidipine Hydrochloride (Apo) 10 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 924195011000036108 lercanidipine hydrochloride 10 mg tablet, 500 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +881301000168104 Actonate Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Aventis Pharma) tablets), 28, blister pack 163756 881291000168100 Actonate Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Aventis Pharma) tablets), 28 881231000168104 Calcium Carbonate (Aventis Pharma) 1.25 g (calcium 500 mg) film-coated tablet 881151000168103 Actonate Combi 881221000168102 Calcium Carbonate (Aventis Pharma) 852601000168105 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +881301000168104 Actonate Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Aventis Pharma) tablets), 28, blister pack 163756 881291000168100 Actonate Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Aventis Pharma) tablets), 28 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 881151000168103 Actonate Combi 700024831000036105 Actonel Once-a-Week 852601000168105 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1001221000168102 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 250, bottle 158907 1001211000168109 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 250 1001141000168100 Valaciclovir 1000 (Apo) 1 g film-coated tablet 1001131000168109 Valaciclovir 1000 (Apo) 1001131000168109 Valaciclovir 1000 (Apo) 1001201000168106 valaciclovir 1 g tablet, 250 927028011000036106 valaciclovir 1 g tablet 21929011000036105 valaciclovir +82909011000036108 Zedace 12.5 mg uncoated tablet, 90, blister pack 57369 82801011000036101 Zedace 12.5 mg uncoated tablet, 90 82705011000036102 Zedace 12.5 mg uncoated tablet 82655011000036100 Zedace 82655011000036100 Zedace 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +60601011000036103 Posalfilin ointment, 10 g, tube 18660 56559011000036106 Posalfilin ointment, 10 g 53973011000036107 Posalfilin ointment 53595011000036106 Posalfilin 53595011000036106 Posalfilin 63425011000036108 podophyllum resin 20% + salicylic acid 25% ointment, 10 g 61956011000036107 podophyllum resin 20% + salicylic acid 25% ointment 61801011000036100 podophyllum resin + salicylic acid +1061441000168105 Atorvator 80 mg film-coated tablet, 30, blister pack 179843 1061271000168102 Atorvator 80 mg film-coated tablet, 30 1061241000168109 Atorvator 80 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +79675011000036109 Finnacar 5 mg film-coated tablet, 30, blister pack 143402 79469011000036100 Finnacar 5 mg film-coated tablet, 30 79360011000036102 Finnacar 5 mg film-coated tablet 79339011000036102 Finnacar 79339011000036102 Finnacar 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +43904011000036107 Ramipril (Generic Health) 5 mg hard capsule, 30, blister pack 134797 41396011000036103 Ramipril (Generic Health) 5 mg hard capsule, 30 39784011000036100 Ramipril (Generic Health) 5 mg hard capsule 39759011000036107 Ramipril (Generic Health) 39759011000036107 Ramipril (Generic Health) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +1022911000168103 Epiduo Forte gel, 5 g, tube 273181 1022901000168101 Epiduo Forte gel, 5 g 1022701000168104 Epiduo Forte gel 1022681000168102 Epiduo Forte 1022681000168102 Epiduo Forte 1022891000168100 adapalene 0.3% + benzoyl peroxide 2.5% gel, 5 g 1022691000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +654551000168105 Mizart HCT 40/12.5 mg multilayer tablet, 28, blister pack 171090 654541000168108 Mizart HCT 40/12.5 mg multilayer tablet, 28 654531000168104 Mizart HCT 40/12.5 mg multilayer tablet 654521000168102 Mizart HCT 40/12.5 mg 654521000168102 Mizart HCT 40/12.5 mg 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +675781000168106 Celecoxib (AN) 200 mg hard capsule, 30, blister pack 206844 675771000168108 Celecoxib (AN) 200 mg hard capsule, 30 675761000168102 Celecoxib (AN) 200 mg hard capsule 675721000168107 Celecoxib (AN) 675721000168107 Celecoxib (AN) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +44071011000036109 Heparin Sodium (Pfizer (Perth)) 25 000 units/5 mL injection solution, 50 x 5 mL ampoules 49236 41558011000036106 Heparin Sodium (Pfizer (Perth)) 25 000 units/5 mL injection solution, 50 x 5 mL ampoules 40062011000036108 Heparin Sodium (Pfizer (Perth)) 25 000 units/5 mL injection solution, 5 mL ampoule 3815011000036101 Heparin Sodium (Pfizer (Perth)) 3815011000036101 Heparin Sodium (Pfizer (Perth)) 46388011000036102 heparin sodium 25 000 units/5 mL injection, 50 x 5 mL ampoules 45123011000036106 heparin sodium 25 000 units/5 mL injection, ampoule 858661000168109 heparin +783081000168107 Palexia IR 75 mg film-coated tablet, 5, blister pack 165317 783071000168109 Palexia IR 75 mg film-coated tablet, 5 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783061000168103 tapentadol 75 mg tablet, 5 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +50577011000036109 Clarithromycin (GenRx) 250 mg film-coated tablet, 100, blister pack 134853 49624011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet, 100 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +714281000168101 Mirtazapine (Auro) 30 mg film-coated tablet, 60, blister pack 183377 714271000168104 Mirtazapine (Auro) 30 mg film-coated tablet, 60 714241000168106 Mirtazapine (Auro) 30 mg film-coated tablet 714231000168102 Mirtazapine (Auro) 714231000168102 Mirtazapine (Auro) 46150011000036102 mirtazapine 30 mg tablet, 60 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +17787011000036101 Lasix M 20 mg uncoated tablet, 50, bottle 12409 11758011000036105 Lasix M 20 mg uncoated tablet, 50 5301011000036108 Lasix M 20 mg uncoated tablet 62221000168105 Lasix M 62221000168105 Lasix M 26834011000036101 furosemide (frusemide) 20 mg tablet, 50 23105011000036106 furosemide (frusemide) 20 mg tablet 21329011000036103 furosemide (frusemide) +61337011000036101 Panadol Mini Cap 500 mg gelatin coated tablet, 12, blister pack 81007 57262011000036100 Panadol Mini Cap 500 mg gelatin coated tablet, 12 54256011000036104 Panadol Mini Cap 500 mg gelatin coated tablet 25261000168103 Panadol Mini Cap 25261000168103 Panadol Mini Cap 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +992641000168107 Bisoprolol (Apotex) 5 mg tablet, 30, blister pack 182129 992631000168103 Bisoprolol (Apotex) 5 mg tablet, 30 992561000168105 Bisoprolol (Apotex) 5 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 79209011000036102 bisoprolol fumarate 5 mg tablet, 30 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +705651000168108 Noxafil 100 mg modified release tablet, 96, blister pack 216283 705641000168106 Noxafil 100 mg modified release tablet, 96 705541000168105 Noxafil 100 mg modified release tablet 39709011000036103 Noxafil 39709011000036103 Noxafil 705631000168102 posaconazole 100 mg modified release tablet, 96 705531000168101 posaconazole 100 mg modified release tablet 44898011000036105 posaconazole +746351000168100 Celestone Chronodose injection suspension, 5 x 1 mL ampoules 18777 746341000168102 Celestone Chronodose injection suspension, 5 x 1 mL ampoules 746321000168108 Celestone Chronodose injection suspension, ampoule 32996011000036108 Celestone Chronodose 32996011000036108 Celestone Chronodose 746331000168106 betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, 5 x 1 mL ampoules 746311000168101 betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, ampoule 21539011000036104 betamethasone acetate + betamethasone sodium phosphate +1014241000168108 Temozolomide (Apotex) 140 mg hard capsule, 5, bottle 206880 1014231000168104 Temozolomide (Apotex) 140 mg hard capsule, 5 1014221000168102 Temozolomide (Apotex) 140 mg hard capsule 1014191000168108 Temozolomide (Apotex) 1014191000168108 Temozolomide (Apotex) 52327011000036102 temozolomide 140 mg capsule, 5 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +926816011000036104 Reaptan 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 170798 926212011000036107 Reaptan 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 30 925678011000036102 Reaptan 10mg/5mg (perindopril arginine/amlodipine) uncoated tablet 53051000168108 Reaptan 10mg/5mg (perindopril arginine/amlodipine) 53051000168108 Reaptan 10mg/5mg (perindopril arginine/amlodipine) 86428011000036109 perindopril arginine 10 mg + amlodipine 5 mg tablet, 30 86219011000036105 perindopril arginine 10 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +60982011000036109 Sudafed Sinus plus Pain Relief uncoated tablet, 4, blister pack 63230 56925011000036103 Sudafed Sinus plus Pain Relief uncoated tablet, 4 54123011000036107 Sudafed Sinus plus Pain Relief uncoated tablet 53113011000036101 Sudafed Sinus plus Pain Relief 53113011000036101 Sudafed Sinus plus Pain Relief 63643011000036108 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +59731011000036103 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 12, blister pack 100678 55641011000036104 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 12 53667011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet 53194011000036103 Paracetamol Pain Relief (Amcal) 53194011000036103 Paracetamol Pain Relief (Amcal) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +933147011000036109 Elmendos 25 mg tablet, 56, blister pack 98073 932939011000036108 Elmendos 25 mg tablet, 56 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +933147011000036109 Elmendos 25 mg tablet, 56, blister pack 98081 932939011000036108 Elmendos 25 mg tablet, 56 932778011000036107 Elmendos 25 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28294011000036107 lamotrigine 25 mg tablet, 56 23608011000036101 lamotrigine 25 mg tablet 21643011000036106 lamotrigine +783111000168102 Palexia IR 75 mg film-coated tablet, 10, blister pack 165317 783101000168100 Palexia IR 75 mg film-coated tablet, 10 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783091000168105 tapentadol 75 mg tablet, 10 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +68941000036104 Sodium Sulphate (NPM) 200 mg (sulfate 135.2 mg) uncoated tablet, 84, bottle 16892 68911000036100 Sodium Sulphate (NPM) 200 mg (sulfate 135.2 mg) uncoated tablet, 84 60681000036103 Sodium Sulphate (NPM) 200 mg (sulfate 135.2 mg) uncoated tablet 60511000036107 Sodium Sulphate (NPM) 60511000036107 Sodium Sulphate (NPM) 68921000036107 sodium sulfate 200 mg (sulfate 135.2 mg) tablet, 84 60691000036101 sodium sulfate 200 mg (sulfate 135.2 mg) tablet 66791000036106 sodium sulfate +778421000168101 Oxycodone MR (Apo) 20 mg modified release tablet, 20, blister pack 214499 778411000168108 Oxycodone MR (Apo) 20 mg modified release tablet, 20 778381000168105 Oxycodone MR (Apo) 20 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +988711000168103 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 20, blister pack 135089 988701000168101 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 20 988691000168101 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet 988681000168104 Paracetamol (Blooms The Chemist) 988681000168104 Paracetamol (Blooms The Chemist) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +86867011000036107 Ozidal 500 microgram film-coated tablet, 60, blister pack 148964 86753011000036105 Ozidal 500 microgram film-coated tablet, 60 76093011000036101 Ozidal 500 microgram film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +171741000036107 Liposomal Doxorubicin (Sun) 20 mg/10 mL concentrated injection, 10 mL vial 202826 171641000036103 Liposomal Doxorubicin (Sun) 20 mg/10 mL concentrated injection, 10 mL vial 171581000036106 Liposomal Doxorubicin (Sun) 20 mg/10 mL concentrated injection, 10 mL vial 171541000036102 Liposomal Doxorubicin (Sun) 171541000036102 Liposomal Doxorubicin (Sun) 114371000036108 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, 10 mL vial 113031000036106 doxorubicin hydrochloride (as pegylated liposomal) 20 mg/10 mL injection, vial 116981000036104 doxorubicin hydrochloride (as pegylated liposomal) +50402011000036105 Tensopress (66004348) 10 cm x 3 m high stretch bandage, 1, carton 49312011000036109 Tensopress (66004348) 10 cm x 3 m high stretch bandage, 1 48738011000036101 Tensopress (66004348) 10 cm x 3 m high stretch bandage 20031000168107 Tensopress (66004348) 20031000168107 Tensopress (66004348) 51294011000036109 bandage compression 10 cm x 3 m high stretch bandage, 1 50823011000036103 bandage compression 10 cm x 3 m high stretch bandage 50716011000036103 bandage compression +787011000168106 Palladone XL 16 mg modified release capsule, 10, bottle 116607 787001000168108 Palladone XL 16 mg modified release capsule, 10 786981000168104 Palladone XL 16 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 786991000168101 hydromorphone hydrochloride 16 mg modified release capsule, 10 786971000168102 hydromorphone hydrochloride 16 mg modified release capsule 21480011000036107 hydromorphone +1018581000168108 Aripiprazole (Actavis) 5 mg uncoated tablet, 250, bottle 217188 1018571000168105 Aripiprazole (Actavis) 5 mg uncoated tablet, 250 1018541000168103 Aripiprazole (Actavis) 5 mg uncoated tablet 1018531000168107 Aripiprazole (Actavis) 1018531000168107 Aripiprazole (Actavis) 1015321000168107 aripiprazole 5 mg tablet, 250 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +60014011000036109 Diovan 320 mg film-coated tablet, 56, blister pack 123357 55976011000036109 Diovan 320 mg film-coated tablet, 56 53744011000036101 Diovan 320 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63186011000036106 valsartan 320 mg tablet, 56 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +84331011000036101 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 24, blister pack 197885 84024011000036101 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 24 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +84331011000036101 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 24, blister pack 158155 84024011000036101 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 24 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1104141000168107 Quetiapine (Pharmacor) 25 mg film-coated tablet, 20, blister pack 204843 1104131000168103 Quetiapine (Pharmacor) 25 mg film-coated tablet, 20 172861000036109 Quetiapine (Pharmacor) 25 mg film-coated tablet 172641000036109 Quetiapine (Pharmacor) 172641000036109 Quetiapine (Pharmacor) 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +13361000036105 Quetiaccord 300 mg film-coated tablet, 60, blister pack 170857 8581000036100 Quetiaccord 300 mg film-coated tablet, 60 3691000036107 Quetiaccord 300 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +933230431000036109 Saphris 10 mg sublingual wafer, 100, blister pack 166561 933224391000036106 Saphris 10 mg sublingual wafer, 100 933220161000036107 Saphris 10 mg sublingual wafer 933218931000036105 Saphris 933218931000036105 Saphris 933224401000036109 asenapine 10 mg sublingual wafer, 100 933220171000036104 asenapine 10 mg sublingual wafer 933232091000036101 asenapine +160321000036102 Montelukast (Pharmacor) 10 mg film-coated tablet, 14, blister pack 184835 159081000036102 Montelukast (Pharmacor) 10 mg film-coated tablet, 14 158071000036108 Montelukast (Pharmacor) 10 mg film-coated tablet 134131000036102 Montelukast (Pharmacor) 134131000036102 Montelukast (Pharmacor) 159021000036103 montelukast 10 mg tablet, 14 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +654371000168107 Simvastatin (AN) 40 mg film-coated tablet, 30, blister pack 170527 654361000168101 Simvastatin (AN) 40 mg film-coated tablet, 30 654351000168103 Simvastatin (AN) 40 mg film-coated tablet 654281000168101 Simvastatin (AN) 654281000168101 Simvastatin (AN) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +923759011000036107 Gaviscon Peppermint chewable tablet, 48, blister pack 119282 923268011000036100 Gaviscon Peppermint chewable tablet, 48 922961011000036102 Gaviscon Peppermint chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924102011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 48 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +923759011000036107 Gaviscon Peppermint chewable tablet, 48, blister pack 156041 923268011000036100 Gaviscon Peppermint chewable tablet, 48 922961011000036102 Gaviscon Peppermint chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924102011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 48 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +1123471000168103 Quetiapine XR (ZP) 400 mg modified release tablet, 30, blister pack 226804 1123461000168109 Quetiapine XR (ZP) 400 mg modified release tablet, 30 1123411000168106 Quetiapine XR (ZP) 400 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 790841000168102 quetiapine 400 mg modified release tablet, 30 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +950021000168102 Frusemide (Sanofi) 40 mg tablet, 250, bottle 144452 950011000168109 Frusemide (Sanofi) 40 mg tablet, 250 949911000168102 Frusemide (Sanofi) 40 mg tablet 939651000168107 Frusemide (Sanofi) 939651000168107 Frusemide (Sanofi) 946361000168108 furosemide (frusemide) 40 mg tablet, 250 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +18670011000036108 Anzatax 100 mg/16.7 mL concentrated injection, 16.7 mL vial 106458 11333011000036100 Anzatax 100 mg/16.7 mL concentrated injection, 16.7 mL vial 5246011000036104 Anzatax 100 mg/16.7 mL concentrated injection, 16.7 mL vial 3081011000036102 Anzatax 3081011000036102 Anzatax 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +1061281000168104 Atorvator 80 mg film-coated tablet, 30, bottle 179852 1061271000168102 Atorvator 80 mg film-coated tablet, 30 1061241000168109 Atorvator 80 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +19154011000036103 Odrik 2 mg hard capsule, 28, blister pack 45488 12453011000036108 Odrik 2 mg hard capsule, 28 4925011000036104 Odrik 2 mg hard capsule 3036011000036103 Odrik 3036011000036103 Odrik 27128011000036102 trandolapril 2 mg capsule, 28 22494011000036104 trandolapril 2 mg capsule 21447011000036104 trandolapril +933214761000036106 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 30, bottle 163529 933204361000036105 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 30 933195501000036100 Pravastatin Sodium (DRLA) 80 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +931358011000036105 Aspirin Low Dose (Nyal) 100 mg enteric tablet, 84, blister pack 128238 930587011000036107 Aspirin Low Dose (Nyal) 100 mg enteric tablet, 84 929955011000036101 Aspirin Low Dose (Nyal) 100 mg enteric tablet 35711000168108 Aspirin Low Dose (Nyal) 35711000168108 Aspirin Low Dose (Nyal) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +91821000036108 Gabapentin (Pfizer) 800 mg film-coated tablet, 100, blister pack 80337 90361000036103 Gabapentin (Pfizer) 800 mg film-coated tablet, 100 88051000036103 Gabapentin (Pfizer) 800 mg film-coated tablet 87631000036104 Gabapentin (Pfizer) 87631000036104 Gabapentin (Pfizer) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +50479011000036107 Restore Calcicare Rope (9940) 2 g (30 cm) rope, 5 x 2 g, carton 49520011000036100 Restore Calcicare Rope (9940) 2 g (30 cm) rope, 5 x 2 g 48680011000036104 Restore Calcicare Rope (9940) 2 g (30 cm) rope, 2 g 10571000168109 Restore Calcicare Rope (9940) 10571000168109 Restore Calcicare Rope (9940) 51467011000036102 dressing alginate cavity wound 2 g (30 cm) rope, 5 x 2 g 50974011000036108 dressing alginate cavity wound 2 g (30 cm) rope, 2 g 50720011000036108 dressing alginate cavity wound +87184011000036107 Nicorette Freshmint 4 mg chewing gum, 105, blister pack 115010 87116011000036102 Nicorette Freshmint 4 mg chewing gum, 105 87061011000036104 Nicorette Freshmint 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87233011000036100 nicotine 4 mg gum, 105 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +20559011000036108 Clozaril 100 mg uncoated tablet, 100, bottle 79930 13750011000036101 Clozaril 100 mg uncoated tablet, 100 7035011000036104 Clozaril 100 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 28136011000036106 clozapine 100 mg tablet, 100 23445011000036103 clozapine 100 mg tablet 21222011000036104 clozapine +740091000168109 Ranitidine (AN) 300 mg film-coated tablet, 30, blister pack 148526 740081000168106 Ranitidine (AN) 300 mg film-coated tablet, 30 740011000168100 Ranitidine (AN) 300 mg film-coated tablet 739911000168105 Ranitidine (AN) 739911000168105 Ranitidine (AN) 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +787171000168102 Palladone XL 32 mg modified release capsule, 10, bottle 116609 787161000168108 Palladone XL 32 mg modified release capsule, 10 787141000168109 Palladone XL 32 mg modified release capsule 786961000168108 Palladone XL 786961000168108 Palladone XL 787151000168106 hydromorphone hydrochloride 32 mg modified release capsule, 10 787131000168100 hydromorphone hydrochloride 32 mg modified release capsule 21480011000036107 hydromorphone +682291000168101 Jardiance 25 mg film-coated tablet, 30, blister pack 208827 682281000168104 Jardiance 25 mg film-coated tablet, 30 682261000168108 Jardiance 25 mg film-coated tablet 682181000168106 Jardiance 682181000168106 Jardiance 682271000168102 empagliflozin 25 mg tablet, 30 682251000168106 empagliflozin 25 mg tablet 682191000168109 empagliflozin +926741011000036101 Nicotine (Guardian) 14 mg/24 hours patch, 7, sachet 114851 926096011000036104 Nicotine (Guardian) 14 mg/24 hours patch, 7 925638011000036100 Nicotine (Guardian) 14 mg/24 hours patch 924357011000036102 Nicotine (Guardian) 924357011000036102 Nicotine (Guardian) 27925011000036106 nicotine 14 mg/24 hours patch, 7 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +50312011000036103 Contreet Foam Adhesive (9632) 12.5 cm x 12.5 cm hydroactive dressing, 5, carton 49422011000036109 Contreet Foam Adhesive (9632) 12.5 cm x 12.5 cm hydroactive dressing, 5 48677011000036106 Contreet Foam Adhesive (9632) 12.5 cm x 12.5 cm hydroactive dressing 56111000168100 Contreet Foam Adhesive (9632) 56111000168100 Contreet Foam Adhesive (9632) 51390011000036105 dressing with silver 12.5 cm x 12.5 cm hydroactive dressing, 5 50911011000036104 dressing with silver 12.5 cm x 12.5 cm hydroactive dressing 50760011000036100 dressing with silver +152331000036106 Amoxyclav 875/125 (GH) film-coated tablet, 10, blister pack 198111 150561000036107 Amoxyclav 875/125 (GH) film-coated tablet, 10 148871000036102 Amoxyclav 875/125 (GH) film-coated tablet 53021000168100 Amoxyclav 875/125 (GH) 53021000168100 Amoxyclav 875/125 (GH) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +69549011000036103 Albumex-4 20 g/500 mL intravenous infusion injection, 500 mL vial 59155 67349011000036106 Albumex-4 20 g/500 mL intravenous infusion injection, 500 mL vial 65624011000036100 Albumex-4 20 g/500 mL intravenous infusion injection, 500 mL vial 18981000168102 Albumex-4 18981000168102 Albumex-4 71894011000036100 albumin human 20 g/500 mL injection, 500 mL vial 70237011000036101 albumin human 20 g/500 mL injection, vial 69754011000036102 albumin human +812901000168107 Citalopram (Amneal) 20 mg film-coated tablet, 28, blister pack 158881 812891000168108 Citalopram (Amneal) 20 mg film-coated tablet, 28 812841000168100 Citalopram (Amneal) 20 mg film-coated tablet 812551000168100 Citalopram (Amneal) 812551000168100 Citalopram (Amneal) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +68988011000036109 Nicotinell Liquorice 2 mg chewing gum, 96, blister pack 136134 66790011000036105 Nicotinell Liquorice 2 mg chewing gum, 96 65423011000036100 Nicotinell Liquorice 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +712231000168105 Finasteride (Apo) 1 mg film-coated tablet, 28, blister pack 155233 712221000168107 Finasteride (Apo) 1 mg film-coated tablet, 28 712211000168100 Finasteride (Apo) 1 mg film-coated tablet 106641000036104 Finasteride (Apo) 106641000036104 Finasteride (Apo) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +19890011000036105 Tolvon 10 mg film-coated tablet, 50, blister pack 65541 13137011000036106 Tolvon 10 mg film-coated tablet, 50 6420011000036101 Tolvon 10 mg film-coated tablet 4057011000036102 Tolvon 4057011000036102 Tolvon 27575011000036102 mianserin hydrochloride 10 mg tablet, 50 22914011000036102 mianserin hydrochloride 10 mg tablet 21371011000036103 mianserin +84267011000036108 Zan-Extra 10/10 film-coated tablet, 28, blister pack 120955 83960011000036106 Zan-Extra 10/10 film-coated tablet, 28 36154011000036108 Zan-Extra 10/10 film-coated tablet 61151000168101 Zan-Extra 10/10 61151000168101 Zan-Extra 10/10 84614011000036103 lercanidipine hydrochloride 10 mg + enalapril maleate 10 mg tablet, 28 37887011000036102 lercanidipine hydrochloride 10 mg + enalapril maleate 10 mg tablet 37713011000036106 lercanidipine + enalapril +60519011000036107 Benadryl PE for the Family Chesty Cough and Nasal Congestion oral liquid solution, 100 mL, bottle 151717 56477011000036106 Benadryl PE for the Family Chesty Cough and Nasal Congestion oral liquid solution, 100 mL 53935011000036106 Benadryl PE for the Family Chesty Cough and Nasal Congestion oral liquid solution, 5 mL 44451000168100 Benadryl PE for the Family Chesty Cough and Nasal Congestion 44451000168100 Benadryl PE for the Family Chesty Cough and Nasal Congestion 63378011000036109 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 61932011000036107 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61724011000036106 guaifenesin + phenylephrine +60382011000036101 Acid and Heartburn Relief (GenRx) 150 mg film-coated tablet, 14, blister pack 143188 56341011000036107 Acid and Heartburn Relief (GenRx) 150 mg film-coated tablet, 14 53884011000036107 Acid and Heartburn Relief (GenRx) 150 mg film-coated tablet 53139011000036105 Acid and Heartburn Relief (GenRx) 53139011000036105 Acid and Heartburn Relief (GenRx) 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +925231011000036107 Letrozole (Pharmacor) 2.5 mg film-coated tablet, 30, blister pack 159589 924768011000036108 Letrozole (Pharmacor) 2.5 mg film-coated tablet, 30 924467011000036100 Letrozole (Pharmacor) 2.5 mg film-coated tablet 924362011000036109 Letrozole (Pharmacor) 924362011000036109 Letrozole (Pharmacor) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +847181000168106 Creon Micro enteric coated granules, 20 g, bottle 166118 847171000168108 Creon Micro enteric coated granules, 20 g 847151000168104 Creon Micro enteric coated granules 19901000168103 Creon Micro 19901000168103 Creon Micro 847161000168102 lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules, 20 g 847141000168101 lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules 847131000168105 lipase + amylase + protease +924291000168101 Hyqvia (1 x IG 30 g/300 mL vial, 1 x HY 2400 units/15 mL vial), 1 pack, composite pack 235178 924281000168104 Hyqvia (1 x IG 30 g/300 mL vial, 1 x HY 2400 units/15 mL vial), 1 pack 924261000168108 HY 2400 units/15 mL injection solution, 15 mL vial 923831000168102 Hyqvia 923861000168105 HY 924271000168102 normal immunoglobulin 30 g/300 mL injection [300 mL vial] (&) vorhyaluronidase alfa 2400 units/15 mL injection [15 mL vial], 1 pack 924251000168106 vorhyaluronidase alfa 2400 units/15 mL injection, vial 923881000168101 vorhyaluronidase alfa +924291000168101 Hyqvia (1 x IG 30 g/300 mL vial, 1 x HY 2400 units/15 mL vial), 1 pack, composite pack 235178 924281000168104 Hyqvia (1 x IG 30 g/300 mL vial, 1 x HY 2400 units/15 mL vial), 1 pack 924241000168109 IG 30 g/300 mL injection solution, 300 mL vial 923831000168102 Hyqvia 923851000168108 IG 924271000168102 normal immunoglobulin 30 g/300 mL injection [300 mL vial] (&) vorhyaluronidase alfa 2400 units/15 mL injection [15 mL vial], 1 pack 924231000168100 normal immunoglobulin 30 g/300 mL injection, vial 74965011000036103 normal immunoglobulin +1057071000168108 Atorvastatin (ZAZ) 80 mg film-coated tablet, 90, bottle 217180 1057061000168102 Atorvastatin (ZAZ) 80 mg film-coated tablet, 90 1056961000168103 Atorvastatin (ZAZ) 80 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1057031000168105 Raloxifene (Auro) 60 mg tablet, 7, blister pack 203696 1057021000168107 Raloxifene (Auro) 60 mg tablet, 7 1057011000168100 Raloxifene (Auro) 60 mg tablet 1056951000168100 Raloxifene (Auro) 1056951000168100 Raloxifene (Auro) 933203811000036104 raloxifene hydrochloride 60 mg tablet, 7 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +797931000168101 Aciclovir (AN) 800 mg uncoated tablet, 35, blister pack 182886 797921000168104 Aciclovir (AN) 800 mg uncoated tablet, 35 797911000168106 Aciclovir (AN) 800 mg uncoated tablet 797081000168104 Aciclovir (AN) 797081000168104 Aciclovir (AN) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +61350011000036101 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 16, blister pack 81474 57275011000036104 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 16 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63793011000036107 paracetamol 500 mg tablet, 16 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19406011000036101 Taxol 150 mg/25 mL concentrated injection, 25 mL vial 53249 12690011000036108 Taxol 150 mg/25 mL concentrated injection, 25 mL vial 5571011000036102 Taxol 150 mg/25 mL concentrated injection, 25 mL vial 3399011000036100 Taxol 3399011000036100 Taxol 28269011000036106 paclitaxel 150 mg/25 mL injection, 25 mL vial 23583011000036102 paclitaxel 150 mg/25 mL injection, vial 21604011000036104 paclitaxel +18832011000036104 Resprim uncoated tablet, 10, blister pack 17681 12146011000036103 Resprim uncoated tablet, 10 4941011000036103 Resprim uncoated tablet 2681000168109 Resprim 2681000168109 Resprim 26946011000036101 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet, 10 22321011000036103 trimethoprim 80 mg + sulfamethoxazole 400 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +933230391000036100 Escitalopram (DRLA) 20 mg film-coated tablet, 28, blister pack 165130 933224291000036102 Escitalopram (DRLA) 20 mg film-coated tablet, 28 933220151000036109 Escitalopram (DRLA) 20 mg film-coated tablet 933219091000036103 Escitalopram (DRLA) 933219091000036103 Escitalopram (DRLA) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +18503011000036101 Heparin Sodium (DBL) 35 000 units/35 mL injection solution, 35 mL vial 16345 12107011000036108 Heparin Sodium (DBL) 35 000 units/35 mL injection solution, 35 mL vial 4849011000036105 Heparin Sodium (DBL) 35 000 units/35 mL injection solution, 35 mL vial 4435011000036104 Heparin Sodium (DBL) 4435011000036104 Heparin Sodium (DBL) 26917011000036109 heparin sodium 35 000 units/35 mL injection, 35 mL vial 22294011000036100 heparin sodium 35 000 units/35 mL injection, vial 858661000168109 heparin +152371000036108 Nesina 25 mg film-coated tablet, 28, blister pack 199539 150601000036107 Nesina 25 mg film-coated tablet, 28 148881000036100 Nesina 25 mg film-coated tablet 147871000036103 Nesina 147871000036103 Nesina 150611000036109 alogliptin 25 mg tablet, 28 148891000036103 alogliptin 25 mg tablet 152591000036101 alogliptin +33602011000036103 Influvac 2008 injection solution, 10 x 0.5 mL syringes 81465 33340011000036100 Influvac 2008 injection solution, 10 x 0.5 mL syringes 33099011000036101 Influvac 2008 injection solution, 0.5 mL syringe 28481000168100 Influvac 2008 28481000168100 Influvac 2008 33819011000036101 influenza trivalent adult vaccine 2008 injection, 10 x 0.5 mL syringes 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +971291000168102 Glivanib 400 mg hard capsule, 24, blister pack 285900 971281000168100 Glivanib 400 mg hard capsule, 24 971271000168103 Glivanib 400 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 893871000168100 imatinib 400 mg capsule, 24 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +44388011000036106 Somac 40 mg enteric tablet, 140, bottle 69791 41849011000036100 Somac 40 mg enteric tablet, 140 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46655011000036105 pantoprazole 40 mg enteric tablet, 140 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1063491000168103 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 10, blister pack 155753 1063481000168101 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet, 10 1063471000168104 Pain Relief Ibuprofen Plus (Cipla) film-coated tablet 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 1063431000168102 Pain Relief Ibuprofen Plus (Cipla) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +1091391000168108 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 20, blister pack 285250 1091381000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 20 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813201000168105 paracetamol 500 mg + ibuprofen 200 mg tablet, 20 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1035581000168106 Aranesp 50 microgram/0.5 mL injection solution, 0.5 mL injection device 122850 1035571000168108 Aranesp 50 microgram/0.5 mL injection solution, 0.5 mL injection device 1035551000168104 Aranesp 50 microgram/0.5 mL injection solution, 0.5 mL injection device 6471000168109 Aranesp 6471000168109 Aranesp 1035561000168102 darbepoetin alfa 50 microgram/0.5 mL injection, 0.5 mL injection device 1035541000168101 darbepoetin alfa 50 microgram/0.5 mL injection device 21234011000036105 darbepoetin alfa +37658011000036101 Moxacin 125 mg/5 mL powder for oral liquid, 100 mL, bottle 31866 36924011000036105 Moxacin 125 mg/5 mL powder for oral liquid, 100 mL 36255011000036109 Moxacin 125 mg/5 mL powder for oral liquid, 5 mL 4292011000036104 Moxacin 4292011000036104 Moxacin 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +1029091000168104 Arimizole 1 mg film-coated tablet, 30, blister pack 174014 1029081000168102 Arimizole 1 mg film-coated tablet, 30 1029071000168100 Arimizole 1 mg film-coated tablet 1029061000168106 Arimizole 1029061000168106 Arimizole 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +821331000168100 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack 153108 821321000168103 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack 646151000168109 Acam2000 (inert substance) diluent, 0.6 mL vial 922958011000036100 Acam2000 922958011000036100 Acam2000 821311000168105 smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack 646141000168107 inert substance diluent, 0.6 mL vial 21220011000036103 inert substance +821331000168100 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack 153108 821321000168103 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack 821301000168107 Acam2000 (smallpox live vaccine) powder for injection, vial 922958011000036100 Acam2000 922958011000036100 Acam2000 821311000168105 smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack 821291000168106 smallpox live vaccine injection, vial 821281000168108 smallpox live vaccine +43899011000036104 Neupro 8 mg/24 hours patch, 7, sachet 131383 41391011000036108 Neupro 8 mg/24 hours patch, 7 39865011000036101 Neupro 8 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46288011000036105 rotigotine 8 mg/24 hours patch, 7 45054011000036101 rotigotine 8 mg/24 hours patch 44880011000036107 rotigotine +926818011000036100 Reaptan 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30, bottle 170799 926214011000036103 Reaptan 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet, 30 925679011000036105 Reaptan 10mg/10mg (perindopril arginine/amlodipine) uncoated tablet 25471000168108 Reaptan 10mg/10mg (perindopril arginine/amlodipine) 25471000168108 Reaptan 10mg/10mg (perindopril arginine/amlodipine) 86430011000036105 perindopril arginine 10 mg + amlodipine 10 mg tablet, 30 86220011000036106 perindopril arginine 10 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +69472011000036102 Potassium Chloride Sterile (Pfizer (Perth)) 2 g (potassium 26.8 mmol)/8 mL concentrated injection, 50 x 8 mL ampoules 49282 67272011000036108 Potassium Chloride Sterile (Pfizer (Perth)) 2 g (potassium 26.8 mmol)/8 mL concentrated injection, 50 x 8 mL ampoules 65587011000036109 Potassium Chloride Sterile (Pfizer (Perth)) 2 g (potassium 26.8 mmol)/8 mL concentrated injection, 8 mL ampoule 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 71820011000036104 potassium chloride 2 g (potassium 26.8 mmol)/8 mL injection, 50 x 8 mL ampoules 70202011000036108 potassium chloride 2 g (potassium 26.8 mmol)/8 mL injection, ampoule 21274011000036107 potassium chloride +971451000168108 Lypralin 75 mg hard capsule, 30, bottle 235866 971441000168106 Lypralin 75 mg hard capsule, 30 969751000168109 Lypralin 75 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 971431000168102 pregabalin 75 mg capsule, 30 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +85421000036108 Fendex ER 5 mg modified release tablet, 500, bottle 184619 84861000036103 Fendex ER 5 mg modified release tablet, 500 84081000036101 Fendex ER 5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84871000036106 felodipine 5 mg modified release tablet, 500 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +1069821000168101 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 36, blister pack 211368 1069811000168108 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 36 1069671000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069801000168105 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 36 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +757271000168101 Palexia SR 25 mg modified release tablet, 30, blister pack 229737 757261000168107 Palexia SR 25 mg modified release tablet, 30 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757251000168105 tapentadol 25 mg modified release tablet, 30 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +13401000036100 Letrozole (Sandoz) 2.5 mg film-coated tablet, 30, blister pack 172124 8621000036100 Letrozole (Sandoz) 2.5 mg film-coated tablet, 30 2991000036106 Letrozole (Sandoz) 2.5 mg film-coated tablet 1141000036108 Letrozole (Sandoz) 1141000036108 Letrozole (Sandoz) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +61389011000036104 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 12, blister pack 81957 57314011000036103 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet, 12 54270011000036100 Period Pain Relief (Pharmacy Health) 275 mg film-coated tablet 53531011000036104 Period Pain Relief (Pharmacy Health) 53531011000036104 Period Pain Relief (Pharmacy Health) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +86884011000036103 Favic 500 mg film-coated tablet, 3, blister pack 159619 86766011000036107 Favic 500 mg film-coated tablet, 3 86640011000036106 Favic 500 mg film-coated tablet 86581011000036100 Favic 86581011000036100 Favic 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +44653011000036104 Ceftazidime (Sandoz) 2 g powder for injection, 10 vials 90916 42105011000036100 Ceftazidime (Sandoz) 2 g powder for injection, 10 vials 40353011000036106 Ceftazidime (Sandoz) 2 g powder for injection, 2 g vial 39747011000036102 Ceftazidime (Sandoz) 39747011000036102 Ceftazidime (Sandoz) 46868011000036101 ceftazidime 2 g injection, 10 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +933213231000036106 Citalopram (IPCA) 40 mg film-coated tablet, 7, blister pack 158854 933202921000036109 Citalopram (IPCA) 40 mg film-coated tablet, 7 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202931000036106 citalopram 40 mg tablet, 7 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +1091231000168102 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 5, blister pack 285250 1091221000168100 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 5 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 812991000168101 paracetamol 500 mg + ibuprofen 200 mg tablet, 5 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +20306011000036106 Onkotrone 25 mg/12.5 mL concentrated injection, 12.5 mL vial 75724 13515011000036104 Onkotrone 25 mg/12.5 mL concentrated injection, 12.5 mL vial 6797011000036100 Onkotrone 25 mg/12.5 mL concentrated injection, 12.5 mL vial 3966011000036104 Onkotrone 3966011000036104 Onkotrone 27781011000036108 mitozantrone 25 mg/12.5 mL injection, 12.5 mL vial 23111011000036106 mitozantrone 25 mg/12.5 mL injection, vial 21652011000036102 mitozantrone +929071011000036106 Pioglitazone (Generic Health) 45 mg uncoated tablet, 28, blister pack 164424 928432011000036107 Pioglitazone (Generic Health) 45 mg uncoated tablet, 28 927976011000036104 Pioglitazone (Generic Health) 45 mg uncoated tablet 927792011000036102 Pioglitazone (Generic Health) 927792011000036102 Pioglitazone (Generic Health) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +130751000036104 Pantoprazole (Sun) 40 mg powder for injection, 1 vial 172172 127721000036107 Pantoprazole (Sun) 40 mg powder for injection, 1 vial 124681000036106 Pantoprazole (Sun) 40 mg powder for injection, 40 mg vial 124181000036101 Pantoprazole (Sun) 124181000036101 Pantoprazole (Sun) 46192011000036106 pantoprazole 40 mg injection, 1 vial 45023011000036104 pantoprazole 40 mg injection, vial 21563011000036107 pantoprazole +706251000168103 Finasteride (MSD) 1 mg film-coated tablet, 28, blister pack 201196 706241000168100 Finasteride (MSD) 1 mg film-coated tablet, 28 706231000168109 Finasteride (MSD) 1 mg film-coated tablet 706221000168106 Finasteride (MSD) 706221000168106 Finasteride (MSD) 46554011000036101 finasteride 1 mg tablet, 28 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +778261000168105 Oxycodone MR (Apo) 30 mg modified release tablet, 60, blister pack 214490 778251000168108 Oxycodone MR (Apo) 30 mg modified release tablet, 60 778171000168105 Oxycodone MR (Apo) 30 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 71474011000036104 oxycodone hydrochloride 30 mg modified release tablet, 60 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +929120011000036109 Oxycontin 10 mg modified release tablet, 28, bottle 68188 928480011000036100 Oxycontin 10 mg modified release tablet, 28 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +929120011000036109 Oxycontin 10 mg modified release tablet, 28, bottle 200037 928480011000036100 Oxycontin 10 mg modified release tablet, 28 6511011000036106 Oxycontin 10 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +884031000168106 Betahistine (Medis) 16 mg tablet, 100, blister pack 231717 884021000168108 Betahistine (Medis) 16 mg tablet, 100 883971000168106 Betahistine (Medis) 16 mg tablet 883891000168100 Betahistine (Medis) 883891000168100 Betahistine (Medis) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +932381000168102 Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL, aerosol can 73426 932371000168100 Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL 932351000168109 Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam 932331000168103 Fluoride (Laclede) 932331000168103 Fluoride (Laclede) 932361000168106 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL 932341000168107 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam 61768011000036106 fluoride +44289011000036106 Ethyol 500 mg powder for injection, 6 vials 63789 41760011000036103 Ethyol 500 mg powder for injection, 6 vials 40184011000036105 Ethyol 500 mg powder for injection, 500 mg vial 39627011000036109 Ethyol 39627011000036109 Ethyol 46567011000036103 amifostine 500 mg injection, 6 vials 45220011000036100 amifostine 500 mg injection, vial 44944011000036101 amifostine +20006011000036105 Pravachol 10 mg uncoated tablet, 30, blister pack 68706 13242011000036106 Pravachol 10 mg uncoated tablet, 30 6524011000036101 Pravachol 10 mg uncoated tablet 3848011000036104 Pravachol 3848011000036104 Pravachol 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +727121000168107 Atacand 8 mg uncoated tablet, 7, blister pack 64107 727111000168100 Atacand 8 mg uncoated tablet, 7 6368011000036103 Atacand 8 mg uncoated tablet 3659011000036102 Atacand 3659011000036102 Atacand 727101000168103 candesartan cilexetil 8 mg tablet, 7 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +1056871000168104 Atorvastatin (ZAZ) 20 mg film-coated tablet, 10, blister pack 185038 1056861000168105 Atorvastatin (ZAZ) 20 mg film-coated tablet, 10 1056851000168108 Atorvastatin (ZAZ) 20 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +69703011000036107 Claramax 5 mg film-coated tablet, 1, blister pack 91115 67502011000036107 Claramax 5 mg film-coated tablet, 1 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72017011000036107 desloratadine 5 mg tablet, 1 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +786811000168104 Oxycodone MR (Apotex) 20 mg modified release tablet, 28, blister pack 214493 786801000168102 Oxycodone MR (Apotex) 20 mg modified release tablet, 28 786771000168104 Oxycodone MR (Apotex) 20 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +66531000036100 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 240 mg/5 mL oral liquid solution, 200 mL, bottle 59848 64131000036103 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 240 mg/5 mL oral liquid solution, 200 mL 61661000036101 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 240 mg/5 mL oral liquid solution, 5 mL 26031000168105 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 26031000168105 Paracetamol Children's Elixir 5 to 12 Years (Amcal) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +933213071000036104 Pantoprazole (A) 40 mg enteric tablet, 5, blister pack 158203 933202741000036103 Pantoprazole (A) 40 mg enteric tablet, 5 933195351000036106 Pantoprazole (A) 40 mg enteric tablet 933193241000036104 Pantoprazole (A) 933193241000036104 Pantoprazole (A) 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +924451000168107 Carvedilol (DRLA) 6.25 mg film-coated tablet, 100, bottle 166013 924441000168105 Carvedilol (DRLA) 6.25 mg film-coated tablet, 100 924421000168104 Carvedilol (DRLA) 6.25 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924431000168101 carvedilol 6.25 mg tablet, 100 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +1035981000168103 Aranesp with Automatic Needle Guard 300 microgram/0.6 mL injection solution, 0.6 mL syringe 166093 1035971000168101 Aranesp with Automatic Needle Guard 300 microgram/0.6 mL injection solution, 0.6 mL syringe 1035961000168107 Aranesp with Automatic Needle Guard 300 microgram/0.6 mL injection solution, 0.6 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983991000168102 darbepoetin alfa 300 microgram/0.6 mL injection, 0.6 mL syringe 983971000168103 darbepoetin alfa 300 microgram/0.6 mL injection, syringe 21234011000036105 darbepoetin alfa +34797011000036108 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 76049 34372011000036100 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 100 mL 34064011000036102 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 33949011000036103 Cefaclor (Sandoz) 33949011000036103 Cefaclor (Sandoz) 35219011000036102 cefaclor 250 mg/5 mL powder for oral liquid, 100 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +19822011000036100 Captopril (Douglas) 12.5 mg uncoated tablet, 90, blister pack 63775 13611011000036108 Captopril (Douglas) 12.5 mg uncoated tablet, 90 6894011000036109 Captopril (Douglas) 12.5 mg uncoated tablet 4305011000036103 Captopril (Douglas) 4305011000036103 Captopril (Douglas) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +778221000168100 Endone XR 10 mg modified release tablet, 20, blister pack 153604 778211000168107 Endone XR 10 mg modified release tablet, 20 778201000168109 Endone XR 10 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +921941011000036105 Castor Oil (Gold Cross) 1 mL/mL liquid, 100 mL, bottle 27324 921500011000036104 Castor Oil (Gold Cross) 1 mL/mL liquid, 100 mL 921041011000036101 Castor Oil (Gold Cross) 1 mL/mL liquid 920954011000036104 Castor Oil (Gold Cross) 920954011000036104 Castor Oil (Gold Cross) 922622011000036103 castor oil 1 mL/mL liquid, 100 mL 922114011000036100 castor oil 1 mL/mL liquid 922050011000036106 castor oil +1040331000168105 Atorvastatin (Ascent) 80 mg film-coated tablet, 50, blister pack 178531 1040321000168107 Atorvastatin (Ascent) 80 mg film-coated tablet, 50 1040231000168103 Atorvastatin (Ascent) 80 mg film-coated tablet 1039431000168109 Atorvastatin (Ascent) 1039431000168109 Atorvastatin (Ascent) 841901000168108 atorvastatin 80 mg tablet, 50 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1052661000168105 Palexia SR 200 mg modified release tablet, 100, blister pack 165356 1052651000168108 Palexia SR 200 mg modified release tablet, 100 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052641000168106 tapentadol 200 mg modified release tablet, 100 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +931673011000036107 Cyklokapron 1 g/10 mL injection solution, 10 x 10 mL ampoules 166415 930833011000036107 Cyklokapron 1 g/10 mL injection solution, 10 x 10 mL ampoules 930061011000036104 Cyklokapron 1 g/10 mL injection solution, 10 mL ampoule 3979011000036100 Cyklokapron 3979011000036100 Cyklokapron 932446011000036103 tranexamic acid 1 g/10 mL injection, 10 x 10 mL ampoules 931860011000036103 tranexamic acid 1 g/10 mL injection, ampoule 21746011000036108 tranexamic acid +77216011000036104 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 10 x 10 mL vials 137325 76632011000036105 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 10 x 10 mL vials 76077011000036101 Calcium Chloride (Phebra) 1 g/10 mL injection solution, 10 mL vial 65081011000036103 Calcium Chloride (Phebra) 65081011000036103 Calcium Chloride (Phebra) 78181011000036103 calcium chloride dihydrate 1 g/10 mL injection, 10 x 10 mL vials 77532011000036103 calcium chloride dihydrate 1 g/10 mL injection, vial 69845011000036104 calcium chloride dihydrate +748761000168101 Morphine (JN) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 224244 748751000168103 Morphine (JN) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 748741000168100 Morphine (JN) 50 mg/5 mL injection solution, 5 mL ampoule 746641000168106 Morphine (JN) 746641000168106 Morphine (JN) 707091000168103 morphine hydrochloride trihydrate 50 mg/5 mL injection, 5 x 5 mL ampoules 707071000168104 morphine hydrochloride trihydrate 50 mg/5 mL injection, ampoule 21252011000036100 morphine +18267011000036100 Tagamet 400 mg film-coated tablet, 60, blister pack 13017 11891011000036108 Tagamet 400 mg film-coated tablet, 60 5042011000036107 Tagamet 400 mg film-coated tablet 3003011000036100 Tagamet 3003011000036100 Tagamet 27866011000036103 cimetidine 400 mg tablet, 60 23194011000036105 cimetidine 400 mg tablet 21427011000036101 cimetidine +925248011000036104 Sumatriptan (Generic Health) 50 mg film-coated tablet, 4, blister pack 160186 924785011000036104 Sumatriptan (Generic Health) 50 mg film-coated tablet, 4 924482011000036100 Sumatriptan (Generic Health) 50 mg film-coated tablet 924393011000036100 Sumatriptan (Generic Health) 924393011000036100 Sumatriptan (Generic Health) 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +69322011000036108 Magnesium Sulfate (Phebra) 2.5 g/5 mL concentrated injection, 10 x 5 mL vials 23076 67122011000036109 Magnesium Sulfate (Phebra) 2.5 g/5 mL concentrated injection, 10 x 5 mL vials 65243011000036101 Magnesium Sulfate (Phebra) 2.5 g/5 mL concentrated injection, 5 mL vial 65012011000036106 Magnesium Sulfate (Phebra) 65012011000036106 Magnesium Sulfate (Phebra) 71687011000036104 magnesium sulfate heptahydrate 2.5 g/5 mL injection, 10 x 5 mL vials 70126011000036100 magnesium sulfate heptahydrate 2.5 g/5 mL injection, vial 69777011000036105 magnesium sulfate heptahydrate +950341000168105 Xalkori 200 mg hard capsule, 60, bottle 190966 688301000168103 Xalkori 200 mg hard capsule, 60 688281000168102 Xalkori 200 mg hard capsule 688241000168107 Xalkori 688241000168107 Xalkori 688291000168104 crizotinib 200 mg capsule, 60 688271000168100 crizotinib 200 mg capsule 688261000168106 crizotinib +748671000168103 Taxoccord 160 mg/8 mL concentrated injection, 8 mL vial 209466 748661000168109 Taxoccord 160 mg/8 mL concentrated injection, 8 mL vial 748651000168107 Taxoccord 160 mg/8 mL concentrated injection, 8 mL vial 748131000168108 Taxoccord 748131000168108 Taxoccord 748241000168107 docetaxel 160 mg/8 mL injection, 8 mL vial 748221000168101 docetaxel 160 mg/8 mL injection, vial 21721011000036101 docetaxel +84280011000036109 Nordip 10 mg uncoated tablet, 30, blister pack 133146 83973011000036105 Nordip 10 mg uncoated tablet, 30 83612011000036105 Nordip 10 mg uncoated tablet 83546011000036106 Nordip 83546011000036106 Nordip 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +61303011000036101 Regaine Men's Regular Strength 2% application, 60 mL, bottle 79911 57239011000036104 Regaine Men's Regular Strength 2% application, 60 mL 54250011000036102 Regaine Men's Regular Strength 2% application 12441000168104 Regaine Men's Regular Strength 12441000168104 Regaine Men's Regular Strength 63964011000036104 minoxidil 2% application, 60 mL 62111011000036107 minoxidil 2% application 21642011000036104 minoxidil +105111000036102 Abisart HCT 150/12.5 film-coated tablet, 30, bottle 176858 102171000036101 Abisart HCT 150/12.5 film-coated tablet, 30 98791000036109 Abisart HCT 150/12.5 film-coated tablet 27881000168102 Abisart HCT 150/12.5 27881000168102 Abisart HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +105111000036102 Abisart HCT 150/12.5 film-coated tablet, 30, bottle 215943 102171000036101 Abisart HCT 150/12.5 film-coated tablet, 30 98791000036109 Abisart HCT 150/12.5 film-coated tablet 27881000168102 Abisart HCT 150/12.5 27881000168102 Abisart HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +714831000168101 Pioglitazone (Auro) 30 mg uncoated tablet, 28, blister pack 176386 714821000168104 Pioglitazone (Auro) 30 mg uncoated tablet, 28 714811000168106 Pioglitazone (Auro) 30 mg uncoated tablet 713631000168103 Pioglitazone (Auro) 713631000168103 Pioglitazone (Auro) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +1095801000168105 Zertine 10 mg film-coated tablet, 14, blister pack 287404 1095791000168109 Zertine 10 mg film-coated tablet, 14 1081371000168108 Zertine 10 mg film-coated tablet 1081361000168102 Zertine 1081361000168102 Zertine 1095781000168106 cetirizine hydrochloride 10 mg tablet, 14 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +933232081000036103 Pentasa 1 g compressed suppository, 30, blister pack 98034 933226531000036105 Pentasa 1 g compressed suppository, 30 7539011000036104 Pentasa 1 g compressed suppository 3593011000036100 Pentasa 3593011000036100 Pentasa 924190011000036104 mesalazine 1 g suppository, 30 23566011000036106 mesalazine 1 g suppository 21351011000036101 mesalazine +33529011000036105 Sertraline (Generic Health) 100 mg film-coated tablet, 30, blister pack 124856 33270011000036109 Sertraline (Generic Health) 100 mg film-coated tablet, 30 33035011000036107 Sertraline (Generic Health) 100 mg film-coated tablet 32979011000036109 Sertraline (Generic Health) 32979011000036109 Sertraline (Generic Health) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +19038011000036100 Abbocillin V 250 mg/5 mL oral liquid suspension, 100 mL, bottle 40109 12343011000036100 Abbocillin V 250 mg/5 mL oral liquid suspension, 100 mL 5843011000036101 Abbocillin V 250 mg/5 mL oral liquid suspension, 5 mL 1071000168107 Abbocillin V 1071000168107 Abbocillin V 27116011000036109 phenoxymethylpenicillin 250 mg/5 mL oral liquid, 100 mL 22482011000036107 phenoxymethylpenicillin 250 mg/5 mL oral liquid 21370011000036105 phenoxymethylpenicillin +933041000168100 Lamisil 125 mg uncoated tablet, 28, blister pack 43522 933031000168109 Lamisil 125 mg uncoated tablet, 28 933011000168104 Lamisil 125 mg uncoated tablet 34081000168103 Lamisil 34081000168103 Lamisil 933021000168106 terbinafine 125 mg tablet, 28 933001000168102 terbinafine 125 mg tablet 21575011000036104 terbinafine +66611000036108 Perskindol Cool 7% gel, 100 mL, tube 76861 64401000036101 Perskindol Cool 7% gel, 100 mL 61481000036109 Perskindol Cool 7% gel 43341000168106 Perskindol Cool 43341000168106 Perskindol Cool 64411000036104 menthol 7% gel, 100 mL 61491000036106 menthol 7% gel 52233011000036104 menthol +104951000036104 Duloxetine (Apo) 60 mg enteric capsule, 28, bottle 195362 102121000036100 Duloxetine (Apo) 60 mg enteric capsule, 28 98211000036109 Duloxetine (Apo) 60 mg enteric capsule 97941000036102 Duloxetine (Apo) 97941000036102 Duloxetine (Apo) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +1027401000168105 Neuroccord 75 mg hard capsule, 84, blister pack 235849 1027391000168108 Neuroccord 75 mg hard capsule, 84 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 969841000168101 pregabalin 75 mg capsule, 84 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +33619011000036105 Lyrica 300 mg hard capsule, 56, blister pack 99537 33355011000036107 Lyrica 300 mg hard capsule, 56 33113011000036106 Lyrica 300 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 33832011000036103 pregabalin 300 mg capsule, 56 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +933215241000036102 Tronz 8 mg film-coated tablet, 4, blister pack 163437 933204191000036101 Tronz 8 mg film-coated tablet, 4 933196341000036103 Tronz 8 mg film-coated tablet 933193581000036105 Tronz 933193581000036105 Tronz 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +19839011000036107 Xydep 50 mg film-coated tablet, 30, blister pack 64385 13090011000036109 Xydep 50 mg film-coated tablet, 30 6374011000036104 Xydep 50 mg film-coated tablet 3859011000036105 Xydep 3859011000036105 Xydep 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +688871000168104 Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll, wrapping 688861000168105 Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll 688841000168106 Elastoplast Tape (1004) 10 cm x 2.5 m tape 54901000168108 Elastoplast Tape (1004) 54901000168108 Elastoplast Tape (1004) 688851000168108 tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll 688831000168102 tape plaster adhesive elastic 10 cm x 2.5 m tape 50730011000036106 tape plaster adhesive elastic +18070011000036101 Procur 50 mg uncoated tablet, 50, blister pack 101530 11212011000036105 Procur 50 mg uncoated tablet, 50 5040011000036108 Procur 50 mg uncoated tablet 4023011000036105 Procur 4023011000036105 Procur 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +19809011000036102 Etoposide (DBL) 100 mg/5 mL concentrated injection, 5 mL vial 63441 13066011000036109 Etoposide (DBL) 100 mg/5 mL concentrated injection, 5 mL vial 6350011000036107 Etoposide (DBL) 100 mg/5 mL concentrated injection, 5 mL vial 3774011000036105 Etoposide (DBL) 3774011000036105 Etoposide (DBL) 28192011000036100 etoposide 100 mg/5 mL injection, 5 mL vial 23503011000036101 etoposide 100 mg/5 mL injection, vial 21469011000036104 etoposide +1106631000168102 Calcium (Health Plus Vitamins) 1.5 g (calcium 600 mg) film-coated tablet, 120, jar 202099 1106621000168100 Calcium (Health Plus Vitamins) 1.5 g (calcium 600 mg) film-coated tablet, 120 1106611000168107 Calcium (Health Plus Vitamins) 1.5 g (calcium 600 mg) film-coated tablet 1106601000168109 Calcium (Health Plus Vitamins) 1106601000168109 Calcium (Health Plus Vitamins) 860261000168103 calcium carbonate 1.5 g (calcium 600 mg) tablet, 120 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 745551000168101 calcium +710541000168103 Strepsils Sore Throat and Blocked Nose lozenge, 16, blister pack 14973 710531000168107 Strepsils Sore Throat and Blocked Nose lozenge, 16 710521000168109 Strepsils Sore Throat and Blocked Nose lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71502011000036106 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge, 16 70040011000036109 amylmetacresol 600 microgram + dichlorobenzyl alcohol 1.2 mg + menthol 8 mg lozenge 69851011000036103 amylmetacresol + dichlorobenzyl alcohol + menthol +60755011000036104 Codral Original Cold and Flu uncoated tablet, 4, blister pack 51771 56713011000036102 Codral Original Cold and Flu uncoated tablet, 4 54045011000036101 Codral Original Cold and Flu uncoated tablet 16111000168105 Codral Original Cold and Flu 16111000168105 Codral Original Cold and Flu 63522011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 4 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +658641000168100 Telmisartan (Pharmacor) 40 mg uncoated tablet, 28, blister pack 211905 658631000168109 Telmisartan (Pharmacor) 40 mg uncoated tablet, 28 658621000168106 Telmisartan (Pharmacor) 40 mg uncoated tablet 658611000168104 Telmisartan (Pharmacor) 658611000168104 Telmisartan (Pharmacor) 27630011000036100 telmisartan 40 mg tablet, 28 22968011000036105 telmisartan 40 mg tablet 21777011000036105 telmisartan +68949011000036106 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 11 sachets 133242 66751011000036107 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 11 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71419011000036107 paracetamol 500 mg powder for oral liquid, 11 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +61650011000036108 Butalgin 200 mg film-coated tablet, 24, blister pack 97230 57572011000036103 Butalgin 200 mg film-coated tablet, 24 54352011000036105 Butalgin 200 mg film-coated tablet 53146011000036102 Butalgin 53146011000036102 Butalgin 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +20323011000036107 Cefazolin (Sandoz) 1 g powder for injection, 1 vial 75956 13532011000036104 Cefazolin (Sandoz) 1 g powder for injection, 1 vial 6815011000036107 Cefazolin (Sandoz) 1 g powder for injection, vial 3337011000036101 Cefazolin (Sandoz) 3337011000036101 Cefazolin (Sandoz) 27792011000036101 cefazolin 1 g injection, 1 vial 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +923708011000036106 Oxaliplatin (Baxter) 100 mg powder for injection, 1 vial 150078 923331011000036108 Oxaliplatin (Baxter) 100 mg powder for injection, 1 vial 923008011000036109 Oxaliplatin (Baxter) 100 mg powder for injection, 100 mg vial 922922011000036102 Oxaliplatin (Baxter) 922922011000036102 Oxaliplatin (Baxter) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +59714011000036105 Tarka 2/180 modified release tablet, 28, blister pack 104663 55699011000036109 Tarka 2/180 modified release tablet, 28 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63095011000036105 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 28 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +866731000168102 Amitriptyline (RS) 50 mg tablet, 1000, blister pack 232144 866721000168100 Amitriptyline (RS) 50 mg tablet, 1000 866651000168104 Amitriptyline (RS) 50 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +45191000036106 Omeprazole (PS) 20 mg enteric tablet, 30, bottle 149424 933244101000036102 Omeprazole (PS) 20 mg enteric tablet, 30 933241511000036105 Omeprazole (PS) 20 mg enteric tablet 933240931000036101 Omeprazole (PS) 933240931000036101 Omeprazole (PS) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +82322011000036102 Hydrogen Peroxide (David Craig) 3% solution, 175 mL, bottle 14218 82137011000036108 Hydrogen Peroxide (David Craig) 3% solution, 175 mL 82006011000036107 Hydrogen Peroxide (David Craig) 3% solution 76018011000036107 Hydrogen Peroxide (David Craig) 76018011000036107 Hydrogen Peroxide (David Craig) 82528011000036101 hydrogen peroxide 3% solution, 175 mL 69956011000036102 hydrogen peroxide 3% solution 69793011000036105 hydrogen peroxide +864581000168100 Amitriptyline (AN) 50 mg tablet, 50, blister pack 232120 864571000168103 Amitriptyline (AN) 50 mg tablet, 50 864541000168105 Amitriptyline (AN) 50 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +80973011000036109 Resdone 2 mg film-coated tablet, 30, blister pack 147673 80541011000036100 Resdone 2 mg film-coated tablet, 30 80184011000036104 Resdone 2 mg film-coated tablet 80117011000036107 Resdone 80117011000036107 Resdone 81624011000036101 risperidone 2 mg tablet, 30 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +783201000168109 Palexia IR 75 mg film-coated tablet, 28, blister pack 165317 783191000168106 Palexia IR 75 mg film-coated tablet, 28 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783181000168108 tapentadol 75 mg tablet, 28 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +1014471000168102 Valsartan (Apotex) 160 mg film-coated tablet, 7, blister pack 185859 1014461000168108 Valsartan (Apotex) 160 mg film-coated tablet, 7 1014451000168106 Valsartan (Apotex) 160 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63792011000036100 valsartan 160 mg tablet, 7 62079011000036108 valsartan 160 mg tablet 61720011000036101 valsartan +797611000168101 Orabase Protective paste, 5 g, tube 797601000168104 Orabase Protective paste, 5 g 797581000168108 Orabase Protective paste 37781000168109 Orabase Protective 37781000168109 Orabase Protective 797591000168106 carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste, 5 g 797571000168105 carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste 86902011000036102 carmellose sodium + gelatin + pectin +692641000168108 Desfax 50 mg modified release tablet, 14, blister pack 218075 692631000168104 Desfax 50 mg modified release tablet, 14 692601000168106 Desfax 50 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +20974011000036100 Zimstat 80 mg film-coated tablet, 30, blister pack 95676 14125011000036101 Zimstat 80 mg film-coated tablet, 30 7402011000036105 Zimstat 80 mg film-coated tablet 3436011000036108 Zimstat 3436011000036108 Zimstat 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +20606011000036101 Zydol SR 150 mg modified release tablet, 20, blister pack 80726 13788011000036107 Zydol SR 150 mg modified release tablet, 20 7074011000036101 Zydol SR 150 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +20790011000036106 Formet 850 mg film-coated tablet, 60, blister pack 193137 13957011000036109 Formet 850 mg film-coated tablet, 60 7243011000036109 Formet 850 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +20790011000036106 Formet 850 mg film-coated tablet, 60, blister pack 91111 13957011000036109 Formet 850 mg film-coated tablet, 60 7243011000036109 Formet 850 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +1035901000168106 Aranesp 300 microgram/0.6 mL injection solution, 0.6 mL injection device 122859 1035891000168107 Aranesp 300 microgram/0.6 mL injection solution, 0.6 mL injection device 1035871000168106 Aranesp 300 microgram/0.6 mL injection solution, 0.6 mL injection device 6471000168109 Aranesp 6471000168109 Aranesp 1035881000168109 darbepoetin alfa 300 microgram/0.6 mL injection, 0.6 mL injection device 1035861000168100 darbepoetin alfa 300 microgram/0.6 mL injection device 21234011000036105 darbepoetin alfa +130911000036101 Famlo 250 mg film-coated tablet, 21, bottle 176995 127841000036107 Famlo 250 mg film-coated tablet, 21 124791000036100 Famlo 250 mg film-coated tablet 123871000036108 Famlo 123871000036108 Famlo 27248011000036102 famciclovir 250 mg tablet, 21 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +18331011000036107 Eutroxsig 200 microgram uncoated tablet, 200, blister pack 125503 13933011000036104 Eutroxsig 200 microgram uncoated tablet, 200 7221011000036105 Eutroxsig 200 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 28023011000036109 levothyroxine sodium 200 microgram tablet, 200 23346011000036103 levothyroxine sodium 200 microgram tablet 21577011000036109 levothyroxine +1108161000168100 Midavel 15 mg/3 mL injection solution, 10 x 3 mL ampoules 207228 1108151000168102 Midavel 15 mg/3 mL injection solution, 10 x 3 mL ampoules 1108101000168101 Midavel 15 mg/3 mL injection solution, 3 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 46759011000036101 midazolam 15 mg/3 mL injection, 10 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +60682011000036105 Lemsip Pharmacy Flu Strength Nightime powder for oral liquid, 10 sachets 42690 56640011000036108 Lemsip Pharmacy Flu Strength Nightime powder for oral liquid, 10 sachets 54018011000036104 Lemsip Pharmacy Flu Strength Nightime powder for oral liquid, 1 sachet 53462011000036105 Lemsip Pharmacy Flu Strength Nightime 53462011000036105 Lemsip Pharmacy Flu Strength Nightime 63477011000036102 chlorphenamine maleate 4 mg + dextromethorphan hydrobromide monohydrate 15 mg + paracetamol 650 mg + pseudoephedrine hydrochloride 30 mg powder for oral liquid, 10 sachets 61989011000036106 chlorphenamine maleate 4 mg + dextromethorphan hydrobromide monohydrate 15 mg + paracetamol 650 mg + pseudoephedrine hydrochloride 30 mg powder for oral liquid, 1 sachet 61747011000036103 chlorphenamine + dextromethorphan + paracetamol + pseudoephedrine +729131000168100 Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL, bottle 13758 729121000168103 Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL 729101000168107 Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution 19081000168107 Rivotril 19081000168107 Rivotril 729111000168105 clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid, 10 mL 729091000168102 clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid 21226011000036100 clonazepam +1020271000168103 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 112, blister pack 190327 1020261000168109 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 112 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82544011000036106 clopidogrel 75 mg + aspirin 100 mg tablet, 112 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +152241000036109 Novatin 10 mg hard capsule, 100, blister pack 196006 150371000036107 Novatin 10 mg hard capsule, 100 148501000036108 Novatin 10 mg hard capsule 147841000036105 Novatin 147841000036105 Novatin 27277011000036104 acitretin 10 mg capsule, 100 22632011000036104 acitretin 10 mg capsule 21686011000036108 acitretin +19372011000036101 Plendil ER 2.5 mg modified release tablet, 30, blister pack 51774 12659011000036109 Plendil ER 2.5 mg modified release tablet, 30 5124011000036107 Plendil ER 2.5 mg modified release tablet 12021000168103 Plendil ER 12021000168103 Plendil ER 27474011000036109 felodipine 2.5 mg modified release tablet, 30 22820011000036107 felodipine 2.5 mg modified release tablet 21440011000036100 felodipine +1001541000168105 Olanzapine (Apotex) 10 mg film-coated tablet, 28, blister pack 158982 1001531000168101 Olanzapine (Apotex) 10 mg film-coated tablet, 28 1001521000168104 Olanzapine (Apotex) 10 mg film-coated tablet 1000751000168109 Olanzapine (Apotex) 1000751000168109 Olanzapine (Apotex) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +17770011000036108 Fluzole 200 mg hard capsule, 28, blister pack 120778 11657011000036101 Fluzole 200 mg hard capsule, 28 4581011000036103 Fluzole 200 mg hard capsule 57311000168100 Fluzole 57311000168100 Fluzole 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +85581000036105 Razit 20 mg enteric tablet, 28, blister pack 189239 84701000036109 Razit 20 mg enteric tablet, 28 84221000036108 Razit 20 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 84711000036106 rabeprazole sodium 20 mg enteric tablet, 28 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +18254011000036103 Simvastatin (Chemmart) 80 mg film-coated tablet, 30, blister pack 211959 11308011000036104 Simvastatin (Chemmart) 80 mg film-coated tablet, 30 4662011000036100 Simvastatin (Chemmart) 80 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18254011000036103 Simvastatin (Chemmart) 80 mg film-coated tablet, 30, blister pack 104535 11308011000036104 Simvastatin (Chemmart) 80 mg film-coated tablet, 30 4662011000036100 Simvastatin (Chemmart) 80 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18254011000036103 Simvastatin (Chemmart) 80 mg film-coated tablet, 30, blister pack 149807 11308011000036104 Simvastatin (Chemmart) 80 mg film-coated tablet, 30 4662011000036100 Simvastatin (Chemmart) 80 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +18254011000036103 Simvastatin (Chemmart) 80 mg film-coated tablet, 30, blister pack 131649 11308011000036104 Simvastatin (Chemmart) 80 mg film-coated tablet, 30 4662011000036100 Simvastatin (Chemmart) 80 mg film-coated tablet 3008011000036105 Simvastatin (Chemmart) 3008011000036105 Simvastatin (Chemmart) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +34754011000036107 Sublimaze 1000 microgram/20 mL injection solution, 5 x 20 mL ampoules 48265 34335011000036106 Sublimaze 1000 microgram/20 mL injection solution, 5 x 20 mL ampoules 34049011000036108 Sublimaze 1000 microgram/20 mL injection solution, 20 mL ampoule 33934011000036100 Sublimaze 33934011000036100 Sublimaze 35183011000036101 fentanyl 1000 microgram/20 mL injection, 5 x 20 mL ampoules 34893011000036101 fentanyl 1000 microgram/20 mL injection, ampoule 21258011000036102 fentanyl +929103011000036108 Pioglitazone (Chemmart) 30 mg uncoated tablet, 28, blister pack 166917 928464011000036107 Pioglitazone (Chemmart) 30 mg uncoated tablet, 28 927990011000036109 Pioglitazone (Chemmart) 30 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +60198011000036105 Congested Cold and Cough Elixir (Priceline) oral liquid solution, 200 mL, bottle 132871 56157011000036105 Congested Cold and Cough Elixir (Priceline) oral liquid solution, 200 mL 53812011000036101 Congested Cold and Cough Elixir (Priceline) oral liquid solution, 5 mL 23561000168102 Congested Cold and Cough Elixir (Priceline) 23561000168102 Congested Cold and Cough Elixir (Priceline) 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +931416011000036107 Lemsip Max Cold and Flu with Decongestant blackcurrant powder for oral liquid, 10 sachets 133863 930603011000036107 Lemsip Max Cold and Flu with Decongestant blackcurrant powder for oral liquid, 10 sachets 929965011000036107 Lemsip Max Cold and Flu with Decongestant blackcurrant powder for oral liquid, 1 sachet 929917011000036103 Lemsip Max Cold and Flu with Decongestant 929917011000036103 Lemsip Max Cold and Flu with Decongestant 932365011000036106 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 10 sachets 931833011000036101 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 1 sachet 61800011000036107 phenylephrine + paracetamol +680351000168102 Ribomustin 25 mg powder for injection, 1 vial 211685 680341000168104 Ribomustin 25 mg powder for injection, 1 vial 680321000168105 Ribomustin 25 mg powder for injection, 25 mg vial 680271000168103 Ribomustin 680271000168103 Ribomustin 680331000168108 bendamustine hydrochloride 25 mg injection, 1 vial 680311000168103 bendamustine hydrochloride 25 mg injection, vial 680301000168101 bendamustine +60999011000036100 Decongestant and Antihistamine Elixir (Soul Pattinson) oral liquid solution, 200 mL, bottle 63549 56942011000036108 Decongestant and Antihistamine Elixir (Soul Pattinson) oral liquid solution, 200 mL 54131011000036108 Decongestant and Antihistamine Elixir (Soul Pattinson) oral liquid solution, 5 mL 59561000168103 Decongestant and Antihistamine Elixir (Soul Pattinson) 59561000168103 Decongestant and Antihistamine Elixir (Soul Pattinson) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +43848011000036100 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 10, blister pack 128034 41344011000036104 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet, 10 39801011000036104 Paracetamol (Pharmacy Choice) 500 mg uncoated tablet 39566011000036107 Paracetamol (Pharmacy Choice) 39566011000036107 Paracetamol (Pharmacy Choice) 46257011000036103 paracetamol 500 mg tablet, 10 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +933215081000036103 Ostran-ODT 8 mg orally disintegrating tablet, 10, blister pack 163648 933204631000036109 Ostran-ODT 8 mg orally disintegrating tablet, 10 933195621000036106 Ostran-ODT 8 mg orally disintegrating tablet 24041000168105 Ostran-ODT 24041000168105 Ostran-ODT 69131000036104 ondansetron 8 mg orally disintegrating tablet, 10 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +876961000168101 Aldara 5% cream, 3 x 250 mg sachets 64798 876951000168103 Aldara 5% cream, 3 x 250 mg sachets 6389011000036109 Aldara 5% cream, 250 mg sachet 3048011000036100 Aldara 3048011000036100 Aldara 876941000168100 imiquimod 5% cream, 3 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +779021000168100 Fentanyl (Apo) 75 microgram/hour patch, 7, sachet 152570 779011000168107 Fentanyl (Apo) 75 microgram/hour patch, 7 778901000168103 Fentanyl (Apo) 75 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235681000036100 fentanyl 75 microgram/hour patch, 7 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +50513011000036108 Lisinopril (Generic Health) 10 mg uncoated tablet, 30, blister pack 128161 49572011000036100 Lisinopril (Generic Health) 10 mg uncoated tablet, 30 48507011000036107 Lisinopril (Generic Health) 10 mg uncoated tablet 35443011000036106 Lisinopril (Generic Health) 35443011000036106 Lisinopril (Generic Health) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +1026761000168102 Esomeprazole (Pharmacor) 40 mg enteric tablet, 100, blister pack 210850 1026751000168104 Esomeprazole (Pharmacor) 40 mg enteric tablet, 100 1026571000168103 Esomeprazole (Pharmacor) 40 mg enteric tablet 1026561000168109 Esomeprazole (Pharmacor) 1026561000168109 Esomeprazole (Pharmacor) 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1123791000168105 Jadenu 180 mg film-coated tablet, 30, blister pack 286761 1123781000168107 Jadenu 180 mg film-coated tablet, 30 1123761000168103 Jadenu 180 mg film-coated tablet 1123691000168104 Jadenu 1123691000168104 Jadenu 1123771000168109 deferasirox 180 mg tablet, 30 1123751000168100 deferasirox 180 mg tablet 21549011000036103 deferasirox +37487011000036105 Meloxicam (Winthrop) 15 mg uncoated tablet, 30, blister pack 127741 36755011000036104 Meloxicam (Winthrop) 15 mg uncoated tablet, 30 36044011000036103 Meloxicam (Winthrop) 15 mg uncoated tablet 35876011000036108 Meloxicam (Winthrop) 35876011000036108 Meloxicam (Winthrop) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +731321000168103 Clindamyk 150 mg hard capsule, 24, blister pack 214371 731311000168105 Clindamyk 150 mg hard capsule, 24 731301000168107 Clindamyk 150 mg hard capsule 731291000168106 Clindamyk 731291000168106 Clindamyk 32788011000036101 clindamycin 150 mg capsule, 24 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +130591000036101 Vimovo modified release tablet, 6, bottle 170577 127561000036105 Vimovo modified release tablet, 6 124621000036105 Vimovo modified release tablet 123691000036106 Vimovo 123691000036106 Vimovo 127571000036102 naproxen 500 mg + esomeprazole 20 mg modified release tablet, 6 124631000036107 naproxen 500 mg + esomeprazole 20 mg modified release tablet 132071000036107 naproxen + esomeprazole +780431000168105 Fentanyl (Apo) 50 microgram/hour patch, 10, sachet 152573 780421000168107 Fentanyl (Apo) 50 microgram/hour patch, 10 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235891000036102 fentanyl 50 microgram/hour patch, 10 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +1105991000168102 Cranberry 10 000 (Health Plus Vitamins) 400 mg (equivalent to fresh fruit 10 g) uncoated tablet, 120, jar 206117 1105981000168100 Cranberry 10 000 (Health Plus Vitamins) 400 mg (equivalent to fresh fruit 10 g) uncoated tablet, 120 1105961000168109 Cranberry 10 000 (Health Plus Vitamins) 400 mg (equivalent to fresh fruit 10 g) uncoated tablet 1105951000168107 Cranberry 10 000 (Health Plus Vitamins) 1105951000168107 Cranberry 10 000 (Health Plus Vitamins) 1105971000168103 cranberry 400 mg (equivalent to fresh fruit 10 g) tablet, 120 87204011000036106 cranberry 400 mg (equivalent to fresh fruit 10 g) tablet 87199011000036107 cranberry +68932011000036100 Mylanta Original oral liquid suspension, 750 mL, bottle 122007 66666011000036101 Mylanta Original oral liquid suspension, 750 mL 65235011000036101 Mylanta Original oral liquid suspension, 5 mL 34911000168105 Mylanta Original 34911000168105 Mylanta Original 71374011000036105 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid, 750 mL 22136011000036101 aluminium hydroxide 200 mg/5 mL + magnesium hydroxide 200 mg/5 mL + simethicone 20 mg/5 mL oral liquid 33628011000036108 aluminium hydroxide + magnesium hydroxide + simethicone +1121621000168100 Canesten Extra cream, 15 g, tube 273715 1121611000168107 Canesten Extra cream, 15 g 1121601000168109 Canesten Extra cream 1121591000168102 Canesten Extra 1121591000168102 Canesten Extra 751341000168105 hydrocortisone 1% + clotrimazole 1% cream, 15 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +61316011000036105 Diovan 80 mg film-coated tablet, 56, blister pack 80868 57252011000036105 Diovan 80 mg film-coated tablet, 56 54254011000036107 Diovan 80 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63786011000036102 valsartan 80 mg tablet, 56 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +37577011000036106 Leucovorin Calcium (DBL) 15 mg/2 mL injection solution, 5 x 2 mL ampoules 16351 36844011000036104 Leucovorin Calcium (DBL) 15 mg/2 mL injection solution, 5 x 2 mL ampoules 36026011000036109 Leucovorin Calcium (DBL) 15 mg/2 mL injection solution, 2 mL ampoule 920091011000036103 Leucovorin Calcium (DBL) 920091011000036103 Leucovorin Calcium (DBL) 38732011000036100 folinic acid 15 mg/2 mL injection, 5 x 2 mL ampoules 37961011000036102 folinic acid 15 mg/2 mL injection, ampoule 21617011000036108 folinic acid +1061121000168107 Levetiracetam (Auro) 100 mg/mL oral liquid solution, 300 mL, bottle 225918 1061111000168100 Levetiracetam (Auro) 100 mg/mL oral liquid solution, 300 mL 1061101000168103 Levetiracetam (Auro) 100 mg/mL oral liquid solution 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 39462011000036104 levetiracetam 100 mg/mL oral liquid, 300 mL 39434011000036104 levetiracetam 100 mg/mL oral liquid 21766011000036102 levetiracetam +69733011000036103 Resolve Itch Cleansing 1.6% gel, 10 g, tube 92662 67532011000036102 Resolve Itch Cleansing 1.6% gel, 10 g 65689011000036106 Resolve Itch Cleansing 1.6% gel 65058011000036104 Resolve Itch Cleansing 65058011000036104 Resolve Itch Cleansing 72033011000036109 tar 1.6% gel, 10 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +654231000168102 Zinc, Starch and Talc Dusting Powder BPC (extemporaneous) dusting powder, 100 g, screw cap jar 654221000168100 Zinc, Starch and Talc Dusting Powder BPC (extemporaneous) dusting powder, 100 g 654211000168107 Zinc, Starch and Talc Dusting Powder BPC (extemporaneous) dusting powder 654201000168109 Zinc, Starch and Talc Dusting Powder BPC (extemporaneous) 654201000168109 Zinc, Starch and Talc Dusting Powder BPC (extemporaneous) 653891000168100 zinc oxide 25% + starch 25% + talc 50% dusting powder, 100 g 653871000168101 zinc oxide 25% + starch 25% + talc 50% dusting powder 653861000168107 zinc oxide + starch + talc +81088011000036108 Bisolvon Chesty 8 mg soluble tablet, 24, blister pack 158944 80596011000036101 Bisolvon Chesty 8 mg soluble tablet, 24 80206011000036108 Bisolvon Chesty 8 mg soluble tablet 3091000168109 Bisolvon Chesty 3091000168109 Bisolvon Chesty 81664011000036108 bromhexine hydrochloride 8 mg soluble tablet, 24 88351000036100 bromhexine hydrochloride 8 mg soluble tablet 61780011000036106 bromhexine +68920011000036102 Dencorub Arthritis 10% cream, 10 g, tube 10148 66475011000036102 Dencorub Arthritis 10% cream, 10 g 65359011000036108 Dencorub Arthritis 10% cream 64979011000036108 Dencorub Arthritis 64979011000036108 Dencorub Arthritis 71209011000036109 trolamine salicylate 10% cream, 10 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +116561000036100 Rosuvastatin (Sandoz) 5 mg film-coated tablet, 30, blister pack 183577 114851000036108 Rosuvastatin (Sandoz) 5 mg film-coated tablet, 30 112831000036109 Rosuvastatin (Sandoz) 5 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +935691000168100 Dapa-Tabs 2.5 mg film-coated tablet, 90, blister pack 62367 935681000168103 Dapa-Tabs 2.5 mg film-coated tablet, 90 935671000168101 Dapa-Tabs 2.5 mg film-coated tablet 3166011000036102 Dapa-Tabs 3166011000036102 Dapa-Tabs 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +818681000168108 Quetiapine XR (Apo) 200 mg modified release tablet, 30, blister pack 226821 818671000168105 Quetiapine XR (Apo) 200 mg modified release tablet, 30 818641000168103 Quetiapine XR (Apo) 200 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 790941000168106 quetiapine 200 mg modified release tablet, 30 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +18249011000036100 Karvea 150 mg film-coated tablet, 30, bottle 101707 11232011000036102 Karvea 150 mg film-coated tablet, 30 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +37561011000036108 Retrieve 0.05% cream, 50 g, tube 15553 36828011000036109 Retrieve 0.05% cream, 50 g 36139011000036105 Retrieve 0.05% cream 35957011000036102 Retrieve 35957011000036102 Retrieve 38717011000036105 tretinoin 0.05% cream, 50 g 37948011000036102 tretinoin 0.05% cream 37794011000036109 tretinoin +59748011000036106 Panafen Plus film-coated tablet, 24, blister pack 106616 55722011000036102 Panafen Plus film-coated tablet, 24 53642011000036100 Panafen Plus film-coated tablet 53591011000036109 Panafen Plus 53591011000036109 Panafen Plus 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +683731000168104 Methotrexate (MYX) 50 mg/2 mL injection solution, 2 mL vial 213736 683721000168102 Methotrexate (MYX) 50 mg/2 mL injection solution, 2 mL vial 683711000168109 Methotrexate (MYX) 50 mg/2 mL injection solution, 2 mL vial 683701000168106 Methotrexate (MYX) 683701000168106 Methotrexate (MYX) 648971000168103 methotrexate 50 mg/2 mL injection, 2 mL vial 22291011000036103 methotrexate 50 mg/2 mL injection, vial 21342011000036105 methotrexate +688051000168101 Budenofalk 2 mg/application enema, 14 applications, aerosol can 688041000168103 Budenofalk 2 mg/application enema, 14 applications 157961000036102 Budenofalk 2 mg/application enema 143301000036105 Budenofalk 143301000036105 Budenofalk 688031000168107 budesonide 2 mg/application enema, 14 applications 157971000036105 budesonide 2 mg/application enema 21307011000036104 budesonide +1026441000168109 Pregabalin (Amneal) 25 mg hard capsule, 14, bottle 235853 1025631000168106 Pregabalin (Amneal) 25 mg hard capsule, 14 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +718211000168102 Meropenem (Ranbaxy) 1 g powder for injection, 5 vials 167024 718201000168100 Meropenem (Ranbaxy) 1 g powder for injection, 5 vials 718161000168105 Meropenem (Ranbaxy) 1 g powder for injection, vial 718151000168108 Meropenem (Ranbaxy) 718151000168108 Meropenem (Ranbaxy) 718191000168103 meropenem 1 g injection, 5 vials 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +17886011000036102 Visken 5 mg uncoated tablet, 100, bottle 13394 11980011000036105 Visken 5 mg uncoated tablet, 100 6022011000036108 Visken 5 mg uncoated tablet 3925011000036101 Visken 3925011000036101 Visken 26933011000036106 pindolol 5 mg tablet, 100 22310011000036103 pindolol 5 mg tablet 21768011000036103 pindolol +69162011000036108 Alka-Seltzer Regular Flavour effervescent tablet, 20, strip pack 15683 66962011000036101 Alka-Seltzer Regular Flavour effervescent tablet, 20 65319011000036102 Alka-Seltzer Regular Flavour effervescent tablet 64952011000036100 Alka-Seltzer 64952011000036100 Alka-Seltzer 71535011000036109 aspirin 324 mg + sodium bicarbonate 1.9 g + citric acid 1.05 g effervescent tablet, 20 70045011000036100 aspirin 324 mg + sodium bicarbonate 1.9 g + citric acid 1.05 g effervescent tablet 69762011000036101 aspirin + bicarbonate + citric acid +37659011000036109 Moxacin 250 mg/5 mL powder for oral liquid, 100 mL, bottle 31870 36925011000036109 Moxacin 250 mg/5 mL powder for oral liquid, 100 mL 36256011000036102 Moxacin 250 mg/5 mL powder for oral liquid, 5 mL 4292011000036104 Moxacin 4292011000036104 Moxacin 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +86181011000036105 Glamin intravenous infusion injection, 250 mL bottle 77749 85788011000036106 Glamin intravenous infusion injection, 250 mL bottle 85402011000036102 Glamin intravenous infusion injection, 250 mL bottle 85245011000036102 Glamin 85245011000036102 Glamin 86471011000036101 alanine 4 g/250 mL + arginine 2.83 g/250 mL + aspartic acid 850 mg/250 mL + glutamic acid 1.4 g/250 mL + glycylglutamine monohydrate 7.57 g/250 mL (equivalent to 2.57 g of glycine and 5 g of glutamine ) + glycyltyrosine dihydrate 860 mg/250 mL (equivalent to 235 mg of glycine and 570 mg of tyrosine ) + histidine 1.7 g/250 mL + isoleucine 1.4 g/250 mL + leucine 1.98 g/250 mL + lysine 2.25 g/250 mL + methionine 1.4 g/250 mL + phenylalanine 1.46 g/250 mL + proline 1.7 g/250 mL + serine 1.13 g/250 mL + threonine 1.4 g/250 mL + tryptophan 475 mg/250 mL + valine 1.83 g/250 mL injection, 250 mL bottle 86244011000036103 alanine 4 g/250 mL + arginine 2.83 g/250 mL + aspartic acid 850 mg/250 mL + glutamic acid 1.4 g/250 mL + glycylglutamine monohydrate 7.57 g/250 mL (equivalent to 2.57 g of glycine and 5 g of glutamine ) + glycyltyrosine dihydrate 860 mg/250 mL (equivalent to 235 mg of glycine and 570 mg of tyrosine ) + histidine 1.7 g/250 mL + isoleucine 1.4 g/250 mL + leucine 1.98 g/250 mL + lysine 2.25 g/250 mL + methionine 1.4 g/250 mL + phenylalanine 1.46 g/250 mL + proline 1.7 g/250 mL + serine 1.13 g/250 mL + threonine 1.4 g/250 mL + tryptophan 475 mg/250 mL + valine 1.83 g/250 mL injection, bottle 86194011000036107 alanine + arginine + aspartic acid + glutamic acid + glycylglutamine monohydrate + glycyltyrosine dihydrate + histidine + isoleucine + leucine + lysine + methionine + phenylalanine + proline + serine + threonine + tryptophan + valine +66211000036106 Mentholaire Vaporizer Fluid inhalation solution, 100 mL, bottle 43303 63891000036105 Mentholaire Vaporizer Fluid inhalation solution, 100 mL 61381000036103 Mentholaire Vaporizer Fluid inhalation solution 34271000168106 Mentholaire Vaporizer Fluid 34271000168106 Mentholaire Vaporizer Fluid 63901000036106 methyl salicylate 1.3% + camphor 0.59% + menthol 9.76% + eucalyptus oil 10.4% inhalation solution, 100 mL 61391000036101 methyl salicylate 1.3% + camphor 0.59% + menthol 9.76% + eucalyptus oil 10.4% inhalation solution 69773011000036101 methyl salicylate + camphor + menthol + eucalyptus oil +38941000036109 Escilupin 20 mg film-coated tablet, 28, blister pack 165884 35311000036100 Escilupin 20 mg film-coated tablet, 28 33151000036104 Escilupin 20 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +14321000036103 Bisoprolol Fumarate (Chemmart) 10 mg tablet, 28, blister pack 182111 7941000036103 Bisoprolol Fumarate (Chemmart) 10 mg tablet, 28 2131000036108 Bisoprolol Fumarate (Chemmart) 10 mg tablet 671000036106 Bisoprolol Fumarate (Chemmart) 671000036106 Bisoprolol Fumarate (Chemmart) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +1090911000168109 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 70, blister pack 286355 1090901000168106 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet, 70 1090751000168107 Cetirizine (Priceline Pharmacy) 10 mg film-coated tablet 1090741000168105 Cetirizine (Priceline Pharmacy) 1090741000168105 Cetirizine (Priceline Pharmacy) 1082121000168102 cetirizine hydrochloride 10 mg tablet, 70 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1052101000168102 Oxylieve MR 80 mg modified release tablet, 20, blister pack 153610 1052091000168107 Oxylieve MR 80 mg modified release tablet, 20 1052081000168109 Oxylieve MR 80 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 27636011000036102 oxycodone hydrochloride 80 mg modified release tablet, 20 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +889331000168105 Bosleer 125 mg film-coated tablet, 14, blister pack 235893 889321000168107 Bosleer 125 mg film-coated tablet, 14 889311000168100 Bosleer 125 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884061000168103 bosentan 125 mg tablet, 14 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1056391000168109 Riximyo 500 mg/50 mL concentrated injection, 50 mL vial 281781 1056381000168106 Riximyo 500 mg/50 mL concentrated injection, 50 mL vial 1056371000168108 Riximyo 500 mg/50 mL concentrated injection, 50 mL vial 1056361000168102 Riximyo 1056361000168102 Riximyo 27458011000036104 rituximab 500 mg/50 mL injection, 50 mL vial 22805011000036107 rituximab 500 mg/50 mL injection, vial 21460011000036105 rituximab +103741000036101 Pamidronate Disodium (Strides) 90 mg/10 mL concentrated injection, 10 mL vial 145153 101071000036106 Pamidronate Disodium (Strides) 90 mg/10 mL concentrated injection, 10 mL vial 98701000036101 Pamidronate Disodium (Strides) 90 mg/10 mL concentrated injection, 10 mL vial 97771000036106 Pamidronate Disodium (Strides) 97771000036106 Pamidronate Disodium (Strides) 27768011000036101 pamidronate disodium 90 mg/10 mL injection, 10 mL vial 23099011000036102 pamidronate disodium 90 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +37417011000036107 Locacorten-Vioform 0.02% / 1% ear drops, 7.5 mL, bottle 11040 36646011000036101 Locacorten-Vioform 0.02% / 1% ear drops, 7.5 mL 36021011000036104 Locacorten-Vioform 0.02% / 1% ear drops 1001000168102 Locacorten-Vioform 0.02% / 1% 1001000168102 Locacorten-Vioform 0.02% / 1% 38564011000036101 flumetasone pivalate 0.02% + clioquinol 1% ear drops, 7.5 mL 37840011000036105 flumetasone pivalate 0.02% + clioquinol 1% ear drops 37780011000036100 flumetasone pivalate + clioquinol +918511000168106 Anastrozole (MGH) 1 mg film-coated tablet, 30, blister pack 167646 918501000168108 Anastrozole (MGH) 1 mg film-coated tablet, 30 918491000168101 Anastrozole (MGH) 1 mg film-coated tablet 918481000168104 Anastrozole (MGH) 918481000168104 Anastrozole (MGH) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +798571000168109 Abyraz 10 mg uncoated tablet, 20, blister pack 159503 798561000168103 Abyraz 10 mg uncoated tablet, 20 798201000168101 Abyraz 10 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 798551000168100 aripiprazole 10 mg tablet, 20 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +66201000036109 Oral-Eze application, 5 mL, bottle 39771 63811000036100 Oral-Eze application, 5 mL 60801000036108 Oral-Eze application 60131000036109 Oral-Eze 60131000036109 Oral-Eze 63821000036107 benzocaine 7.5% + clove bud oil 19% + ethanol 18% application, 5 mL 60811000036105 benzocaine 7.5% + clove bud oil 19% + ethanol 18% application 66931000036108 benzocaine + clove bud oil + ethanol +933215721000036101 Olanzapine (LY) 10 mg wafer, 7, blister pack 167689 933205251000036102 Olanzapine (LY) 10 mg wafer, 7 933196231000036101 Olanzapine (LY) 10 mg wafer 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 933205231000036105 olanzapine 10 mg wafer, 7 23049011000036106 olanzapine 10 mg wafer 21485011000036103 olanzapine +888281000168108 Bosentan (Intas) 125 mg film-coated tablet, 14, blister pack 235887 888271000168105 Bosentan (Intas) 125 mg film-coated tablet, 14 888261000168104 Bosentan (Intas) 125 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884061000168103 bosentan 125 mg tablet, 14 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +922761000168105 Celecoxib (CH) 100 mg hard capsule, 60, blister pack 206840 922751000168108 Celecoxib (CH) 100 mg hard capsule, 60 922741000168106 Celecoxib (CH) 100 mg hard capsule 922701000168109 Celecoxib (CH) 922701000168109 Celecoxib (CH) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +1098131000168100 Antiseptic (Amcal) 10% solution, 15 mL, bottle 269423 1098121000168103 Antiseptic (Amcal) 10% solution, 15 mL 1098111000168105 Antiseptic (Amcal) 10% solution 1098101000168107 Antiseptic (Amcal) 1098101000168107 Antiseptic (Amcal) 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +18543011000036106 Amlodipine (Sandoz) 10 mg uncoated tablet, 30, bottle 124583 11769011000036107 Amlodipine (Sandoz) 10 mg uncoated tablet, 30 4817011000036109 Amlodipine (Sandoz) 10 mg uncoated tablet 3220011000036106 Amlodipine (Sandoz) 3220011000036106 Amlodipine (Sandoz) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +68678011000036100 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 96, blister pack 152935 66722011000036100 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 96 65506011000036105 Nicotine (Chemists' Own) Mint 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +68678011000036100 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 96, blister pack 129740 66722011000036100 Nicotine (Chemists' Own) Mint 2 mg chewing gum, 96 65506011000036105 Nicotine (Chemists' Own) Mint 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +68897011000036102 Savlon cream, 75 g, tube 11247 66596011000036109 Savlon cream, 75 g 65221011000036100 Savlon cream 64957011000036103 Savlon 64957011000036103 Savlon 71319011000036102 chlorhexidine hydrochloride 0.1% + cetrimide 0.5% cream, 75 g 69947011000036101 chlorhexidine hydrochloride 0.1% + cetrimide 0.5% cream 69756011000036105 chlorhexidine + cetrimide +61027011000036103 Ferro-Grad C modified release tablet, 90, bottle 66841 56970011000036108 Ferro-Grad C modified release tablet, 90 54143011000036105 Ferro-Grad C modified release tablet 53373011000036103 Ferro-Grad C 53373011000036103 Ferro-Grad C 63668011000036107 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet, 90 62039011000036106 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet 61817011000036106 ferrous sulfate + ascorbic acid +933212911000036104 Prava 20 mg uncoated tablet, 30, blister pack 156360 933202591000036102 Prava 20 mg uncoated tablet, 30 933195181000036102 Prava 20 mg uncoated tablet 933193911000036107 Prava 933193911000036107 Prava 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +142741000036104 Zyrtec 5 mg/5 mL oral liquid solution, 150 mL, bottle 60948 142541000036109 Zyrtec 5 mg/5 mL oral liquid solution, 150 mL 142421000036102 Zyrtec 5 mg/5 mL oral liquid solution, 5 mL 3383011000036102 Zyrtec 3383011000036102 Zyrtec 142551000036107 cetirizine hydrochloride 5 mg/5 mL oral liquid, 150 mL 39891000036100 cetirizine hydrochloride 5 mg/5 mL oral liquid 21373011000036102 cetirizine +732281000168100 Zoledasta 5 mg/100 mL injection solution, 100 mL vial 205929 732271000168103 Zoledasta 5 mg/100 mL injection solution, 100 mL vial 732261000168109 Zoledasta 5 mg/100 mL injection solution, 100 mL vial 732251000168107 Zoledasta 732251000168107 Zoledasta 51495011000036109 zoledronic acid 5 mg/100 mL injection, 100 mL vial 50987011000036105 zoledronic acid 5 mg/100 mL injection, vial 21790011000036102 zoledronic acid +847541000168106 Creon 5000 enteric capsule, 100, bottle 80973 847531000168102 Creon 5000 enteric capsule, 100 847511000168107 Creon 5000 enteric capsule 847491000168102 Creon 5000 847491000168102 Creon 5000 847521000168100 lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule, 100 847501000168109 lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule 847131000168105 lipase + amylase + protease +181431000036104 Arginine5000 containing 5 g arginine powder for oral liquid, 30 x 7.6 g sachets 180931000036103 Arginine5000 containing 5 g arginine powder for oral liquid, 30 x 7.6 g sachets 311641000168107 Arginine5000 containing 5 g arginine powder for oral liquid, 7.6 g sachet 180331000036102 Arginine5000 180331000036102 Arginine5000 180941000036108 arginine with carbohydrate containing 5 g arginine powder for oral liquid, 30 x 7.6 g sachets 311361000168104 arginine with carbohydrate containing 5 g arginine powder for oral liquid, 7.6 g sachet 77468011000036100 arginine with carbohydrate +923809011000036100 Sulprix 100 mg tablet, 30, bottle 156046 84008011000036100 Sulprix 100 mg tablet, 30 83643011000036105 Sulprix 100 mg tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 28187011000036104 amisulpride 100 mg tablet, 30 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +14361000036107 Bisoprolol Fumarate (Terry White Chemists) 10 mg tablet, 28, blister pack 182120 7981000036107 Bisoprolol Fumarate (Terry White Chemists) 10 mg tablet, 28 3621000036109 Bisoprolol Fumarate (Terry White Chemists) 10 mg tablet 1181000036104 Bisoprolol Fumarate (Terry White Chemists) 1181000036104 Bisoprolol Fumarate (Terry White Chemists) 27959011000036109 bisoprolol fumarate 10 mg tablet, 28 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +18641011000036102 Cytarabine (Pfizer (Perth)) 100 mg/5 mL injection solution, 5 x 5 mL vials 11351 11449011000036107 Cytarabine (Pfizer (Perth)) 100 mg/5 mL injection solution, 5 x 5 mL vials 5828011000036109 Cytarabine (Pfizer (Perth)) 100 mg/5 mL injection solution, 5 mL vial 3540011000036100 Cytarabine (Pfizer (Perth)) 3540011000036100 Cytarabine (Pfizer (Perth)) 26654011000036108 cytarabine 100 mg/5 mL injection, 5 x 5 mL vials 22058011000036107 cytarabine 100 mg/5 mL injection, vial 21916011000036109 cytarabine +928984011000036108 Valaciclovir (Chemmart) 500 mg film-coated tablet, 10, blister pack 158913 928345011000036105 Valaciclovir (Chemmart) 500 mg film-coated tablet, 10 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +918471000168102 Anastrozole (SCP) 1 mg film-coated tablet, 30, blister pack 167643 918461000168108 Anastrozole (SCP) 1 mg film-coated tablet, 30 918451000168106 Anastrozole (SCP) 1 mg film-coated tablet 918441000168109 Anastrozole (SCP) 918441000168109 Anastrozole (SCP) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +933215811000036102 Metformin Hydrochloride (Chemmart) 850 mg film-coated tablet, 60, blister pack 174818 933203861000036102 Metformin Hydrochloride (Chemmart) 850 mg film-coated tablet, 60 933196391000036109 Metformin Hydrochloride (Chemmart) 850 mg film-coated tablet 18621000168105 Metformin Hydrochloride (Chemmart) 18621000168105 Metformin Hydrochloride (Chemmart) 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +61534011000036109 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 200 mL, bottle 93726 57459011000036101 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 200 mL 54309011000036109 Cold and Cough Elixir (Pharmacy Health) oral liquid solution, 5 mL 39631000168109 Cold and Cough Elixir (Pharmacy Health) 39631000168109 Cold and Cough Elixir (Pharmacy Health) 63881011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 200 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +1052421000168103 Palexia SR 150 mg modified release tablet, 56, blister pack 165347 1052411000168105 Palexia SR 150 mg modified release tablet, 56 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052401000168107 tapentadol 150 mg modified release tablet, 56 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +11711000036106 Cosmegen 500 microgram powder for injection, 1 vial 10463 6411000036108 Cosmegen 500 microgram powder for injection, 1 vial 1801000036104 Cosmegen 500 microgram powder for injection, 500 microgram vial 861000036104 Cosmegen 861000036104 Cosmegen 6421000036101 dactinomycin (actinomycin D) 500 microgram injection, 1 vial 1821000036109 dactinomycin (actinomycin D) 500 microgram injection, vial 14571000036107 dactinomycin (actinomycin D) +61171011000036102 Rapideine Day (Soul Pattinson) uncoated tablet, 48, blister pack 74726 57114011000036107 Rapideine Day (Soul Pattinson) uncoated tablet, 48 54201011000036103 Rapideine Day (Soul Pattinson) uncoated tablet 52385011000036104 Rapideine Day (Soul Pattinson) 52385011000036104 Rapideine Day (Soul Pattinson) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +705331000168106 Elocon Alcohol Free 0.1% cream, 5 g, tube 212416 705321000168108 Elocon Alcohol Free 0.1% cream, 5 g 705301000168104 Elocon Alcohol Free 0.1% cream 4301011000036100 Elocon 4301011000036100 Elocon 705311000168101 mometasone furoate 0.1% cream, 5 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +985781000168101 Avonex (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack, composite pack 98006 985771000168104 Avonex (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 641621000168102 Avonex (inert substance) diluent, 1.1 mL syringe 20651000168107 Avonex 20651000168107 Avonex 985731000168102 interferon beta-1a 12 million units (60 microgram) injection [4 vials] (&) inert substance diluent [4 x 1.1 mL syringes], 1 pack 641611000168109 inert substance diluent, 1.1 mL syringe 21220011000036103 inert substance +985781000168101 Avonex (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack, composite pack 98006 985771000168104 Avonex (4 x 12 million units (60 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 985761000168105 Avonex (interferon beta-1a 12 million units (60 microgram)) powder for injection, 60 microgram vial 20651000168107 Avonex 20651000168107 Avonex 985731000168102 interferon beta-1a 12 million units (60 microgram) injection [4 vials] (&) inert substance diluent [4 x 1.1 mL syringes], 1 pack 985711000168107 interferon beta-1a 12 million units (60 microgram) injection, vial 21462011000036109 interferon beta-1a +60929011000036106 Nurofen 200 mg sugar coated tablet, 96, blister pack 127272 56883011000036102 Nurofen 200 mg sugar coated tablet, 96 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60929011000036106 Nurofen 200 mg sugar coated tablet, 96, blister pack 61869 56883011000036102 Nurofen 200 mg sugar coated tablet, 96 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +709621000168102 Fluvax 2015 injection suspension, 1 x 0.5 mL syringe 117397 709611000168109 Fluvax 2015 injection suspension, 1 x 0.5 mL syringe 709601000168106 Fluvax 2015 injection suspension, 0.5 mL syringe 709541000168107 Fluvax 2015 709541000168107 Fluvax 2015 709361000168100 influenza trivalent adult vaccine 2015 injection, 1 x 0.5 mL syringe 709341000168104 influenza trivalent adult vaccine 2015 injection, 0.5 mL syringe 709331000168108 influenza trivalent vaccine 2015 +18399011000036103 Lamogine 100 mg tablet, 56, blister pack 114260 11465011000036102 Lamogine 100 mg tablet, 56 5212011000036105 Lamogine 100 mg tablet 2998011000036105 Lamogine 2998011000036105 Lamogine 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +888201000168100 Tagrisso 80 mg film-coated tablet, 30, blister pack 255492 888191000168103 Tagrisso 80 mg film-coated tablet, 30 888171000168104 Tagrisso 80 mg film-coated tablet 888141000168106 Tagrisso 888141000168106 Tagrisso 888181000168101 osimertinib 80 mg tablet, 30 888161000168105 osimertinib 80 mg tablet 888151000168108 osimertinib +648731000168103 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet, 6, blister pack 77011 648721000168101 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet, 6 54225011000036105 Sudafed Sinus 12 Hour Relief 120 mg film-coated tablet 53141011000036107 Sudafed Sinus 12 Hour Relief 53141011000036107 Sudafed Sinus 12 Hour Relief 648711000168108 pseudoephedrine hydrochloride 120 mg tablet, 6 62071011000036109 pseudoephedrine hydrochloride 120 mg tablet 21540011000036109 pseudoephedrine +1056711000168104 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet, 20, blister pack 196806 1056701000168102 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet, 20 1056651000168107 Ondansetron ODT (Auro) 8 mg orally disintegrating tablet 1056641000168105 Ondansetron ODT (Auro) 1056641000168105 Ondansetron ODT (Auro) 698061000168100 ondansetron 8 mg orally disintegrating tablet, 20 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +18059011000036109 Rocephin 1 g powder for injection, 1 vial 13762 12013011000036108 Rocephin 1 g powder for injection, 1 vial 5738011000036109 Rocephin 1 g powder for injection, vial 3203011000036105 Rocephin 3203011000036105 Rocephin 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +1063971000168107 Mydol 15 uncoated tablet, 30, blister pack 188381 1063961000168101 Mydol 15 uncoated tablet, 30 1063931000168109 Mydol 15 uncoated tablet 1063901000168102 Mydol 15 1063901000168102 Mydol 15 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +923750011000036101 Novicrit 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 147837 923300011000036108 Novicrit 8000 units/0.8 mL injection solution, 6 x 0.8 mL syringes 922986011000036109 Novicrit 8000 units/0.8 mL injection solution, 0.8 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924131011000036101 epoetin lambda 8000 units/0.8 mL injection, 6 x 0.8 mL syringes 923955011000036104 epoetin lambda 8000 units/0.8 mL injection, syringe 923930011000036107 epoetin lambda +80996011000036106 Epirubicin Hydrochloride (Actavis) 200 mg/100 mL injection solution, 100 mL vial 146599 80533011000036100 Epirubicin Hydrochloride (Actavis) 200 mg/100 mL injection solution, 100 mL vial 80181011000036102 Epirubicin Hydrochloride (Actavis) 200 mg/100 mL injection solution, 100 mL vial 933193151000036108 Epirubicin Hydrochloride (Actavis) 933193151000036108 Epirubicin Hydrochloride (Actavis) 26805011000036108 epirubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 22189011000036101 epirubicin hydrochloride 200 mg/100 mL injection, vial 21230011000036100 epirubicin +784481000168104 Remifentanil (AFT) 1 mg powder for injection, 5 vials 193697 784471000168102 Remifentanil (AFT) 1 mg powder for injection, 5 vials 784461000168108 Remifentanil (AFT) 1 mg powder for injection, vial 784451000168106 Remifentanil (AFT) 784451000168106 Remifentanil (AFT) 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +935531000168103 Colazide 750 mg hard capsule, 280, bottle 77358 935521000168101 Colazide 750 mg hard capsule, 280 932481000168105 Colazide 750 mg hard capsule 3072011000036104 Colazide 3072011000036104 Colazide 935511000168108 balsalazide sodium 750 mg capsule, 280 23166011000036100 balsalazide sodium 750 mg capsule 21908011000036105 balsalazide +1060841000168102 Ramipril (Auro) 2.5 mg hard capsule, 30, blister pack 203722 1060831000168106 Ramipril (Auro) 2.5 mg hard capsule, 30 1060791000168100 Ramipril (Auro) 2.5 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +50305011000036109 Comprilan (01027-00) 8 cm x 5 m short stretch bandage, 1, carton 49324011000036108 Comprilan (01027-00) 8 cm x 5 m short stretch bandage, 1 48774011000036105 Comprilan (01027-00) 8 cm x 5 m short stretch bandage 30521000168101 Comprilan (01027-00) 30521000168101 Comprilan (01027-00) 51305011000036104 bandage compression 8 cm x 5 m short stretch bandage, 1 50834011000036104 bandage compression 8 cm x 5 m short stretch bandage 50716011000036103 bandage compression +116721000036103 Cavstat 5 mg film-coated tablet, 30, blister pack 234543 115041000036100 Cavstat 5 mg film-coated tablet, 30 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +116721000036103 Cavstat 5 mg film-coated tablet, 30, blister pack 186378 115041000036100 Cavstat 5 mg film-coated tablet, 30 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +668881000168104 Advate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack 100386 668871000168102 Advate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack 929937011000036105 Advate (octocog alfa 1000 units) powder for injection, 1000 units vial 65054011000036106 Advate 65054011000036106 Advate 668861000168108 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 931816011000036101 octocog alfa 1000 units injection, vial 69843011000036100 octocog alfa +668881000168104 Advate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack 100386 668871000168102 Advate (1 x 1000 units vial, 1 x 2 mL inert diluent vial), 1 pack 668391000168107 Advate (inert substance) diluent, 2 mL vial 65054011000036106 Advate 65054011000036106 Advate 668861000168108 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +59967011000036107 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 200 mL, bottle 120723 55929011000036104 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension, 200 mL 53694011000036102 Dimetapp Infant's Ibuprofen Pain and Fever Relief 40 mg/mL oral liquid suspension 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 53540011000036105 Dimetapp Infant's Ibuprofen Pain and Fever Relief 63162011000036105 ibuprofen 40 mg/mL oral liquid, 200 mL 61927011000036106 ibuprofen 40 mg/mL oral liquid 21885011000036105 ibuprofen +14411000036100 Atorvastatin (Pfizer) 20 mg film-coated tablet, 30, blister pack 182947 8181000036109 Atorvastatin (Pfizer) 20 mg film-coated tablet, 30 2071000036106 Atorvastatin (Pfizer) 20 mg film-coated tablet 771000036101 Atorvastatin (Pfizer) 771000036101 Atorvastatin (Pfizer) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +14451000036101 Anastrozole (Terry White Chemists) 1 mg film-coated tablet, 30, bottle 186004 8221000036103 Anastrozole (Terry White Chemists) 1 mg film-coated tablet, 30 2831000036100 Anastrozole (Terry White Chemists) 1 mg film-coated tablet 631000036109 Anastrozole (Terry White Chemists) 631000036109 Anastrozole (Terry White Chemists) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +59725011000036103 Tarka 2/180 modified release tablet, 30, blister pack 104663 55701011000036103 Tarka 2/180 modified release tablet, 30 53649011000036105 Tarka 2/180 modified release tablet 13841000168107 Tarka 2/180 13841000168107 Tarka 2/180 63097011000036100 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet, 30 61856011000036101 trandolapril 2 mg + verapamil hydrochloride 180 mg modified release tablet 21883011000036109 trandolapril + verapamil +50547011000036105 Tazocin EF 4g / 500mg powder for injection, 4.5 g vial 132525 49584011000036100 Tazocin EF 4g / 500mg powder for injection, 4.5 g vial 48783011000036103 Tazocin EF 4g / 500mg powder for injection, 4.5 g vial 30491000168103 Tazocin EF 4g / 500mg 30491000168103 Tazocin EF 4g / 500mg 46368011000036104 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +82201000036106 Reedos 50 mg tablet, 56, bottle 187283 80691000036104 Reedos 50 mg tablet, 56 78861000036101 Reedos 50 mg tablet 77931000036101 Reedos 77931000036101 Reedos 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +760961000168108 Olmesartan/Amlodipine 40/5 (Chemmart) film-coated tablet, 30, blister pack 218238 760951000168106 Olmesartan/Amlodipine 40/5 (Chemmart) film-coated tablet, 30 760941000168109 Olmesartan/Amlodipine 40/5 (Chemmart) film-coated tablet 760931000168100 Olmesartan/Amlodipine 40/5 (Chemmart) 760931000168100 Olmesartan/Amlodipine 40/5 (Chemmart) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +80028011000036105 Tamate 200 mg film-coated tablet, 60, blister pack 150444 79972011000036100 Tamate 200 mg film-coated tablet, 60 79922011000036101 Tamate 200 mg film-coated tablet 79904011000036104 Tamate 79904011000036104 Tamate 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +39021000036108 Coldguard Cold and Flu (Pharmacist Formula) uncoated tablet, 24, blister pack 166324 35381000036108 Coldguard Cold and Flu (Pharmacist Formula) uncoated tablet, 24 32501000036102 Coldguard Cold and Flu (Pharmacist Formula) uncoated tablet 32131000036103 Coldguard Cold and Flu (Pharmacist Formula) 32131000036103 Coldguard Cold and Flu (Pharmacist Formula) 63955011000036106 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet, 24 62108011000036101 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet 61727011000036100 chlorphenamine + paracetamol +751331000168101 Penta-vite Multivitamins for Infants 0 to 3 Years oral liquid solution, 30 mL, bottle 186925 751321000168104 Penta-vite Multivitamins for Infants 0 to 3 Years oral liquid solution, 30 mL 751301000168108 Penta-vite Multivitamins for Infants 0 to 3 Years oral liquid solution, 0.45 mL 751271000168106 Penta-vite Multivitamins for Infants 0 to 3 Years 751271000168106 Penta-vite Multivitamins for Infants 0 to 3 Years 751311000168106 thiamine hydrochloride 540 microgram/0.45 mL + riboflavin sodium phosphate 1.1 mg (riboflavin 800 microgram)/0.45 mL + nicotinamide 7.1 mg/0.45 mL + pyridoxine hydrochloride 135 microgram/0.45 mL + ascorbic acid 42.8 mg/0.45 mL + colecalciferol 10.1 microgram (404 units)/0.45 mL + retinol palmitate 490 microgram/0.45 mL oral liquid, 30 mL 751291000168107 thiamine hydrochloride 540 microgram/0.45 mL + riboflavin sodium phosphate 1.1 mg (riboflavin 800 microgram)/0.45 mL + nicotinamide 7.1 mg/0.45 mL + pyridoxine hydrochloride 135 microgram/0.45 mL + ascorbic acid 42.8 mg/0.45 mL + colecalciferol 10.1 microgram (404 units)/0.45 mL + retinol palmitate 490 microgram/0.45 mL oral liquid 751281000168109 thiamine + riboflavin + nicotinamide + pyridoxine + ascorbic acid + colecalciferol + retinol palmitate +764171000168109 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet, 28, blister pack 214491 764161000168103 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet, 28 764131000168106 Oxycodone MR (Terry White Chemists) 15 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +181511000036107 Candesartan Cilexetil (Terry White Chemists) 4 mg uncoated tablet, 30, blister pack 210533 181051000036102 Candesartan Cilexetil (Terry White Chemists) 4 mg uncoated tablet, 30 180381000036103 Candesartan Cilexetil (Terry White Chemists) 4 mg uncoated tablet 180361000036108 Candesartan Cilexetil (Terry White Chemists) 180361000036108 Candesartan Cilexetil (Terry White Chemists) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +177181000036108 Maxigesic film-coated tablet, 30, blister pack 218785 175471000036105 Maxigesic film-coated tablet, 30 173031000036101 Maxigesic film-coated tablet 172741000036100 Maxigesic 172741000036100 Maxigesic 175481000036107 paracetamol 500 mg + ibuprofen 150 mg tablet, 30 173041000036106 paracetamol 500 mg + ibuprofen 150 mg tablet 177241000036105 paracetamol + ibuprofen +103831000036104 Donepezil Hydrochloride (DRLA) 10 mg film-coated tablet, 28, bottle 157137 101191000036109 Donepezil Hydrochloride (DRLA) 10 mg film-coated tablet, 28 98131000036109 Donepezil Hydrochloride (DRLA) 10 mg film-coated tablet 97841000036107 Donepezil Hydrochloride (DRLA) 97841000036107 Donepezil Hydrochloride (DRLA) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +60566011000036102 Panadol Children's 6 Months to 5 Years 125 mg moulded suppository, 20, bottle 15486 56524011000036109 Panadol Children's 6 Months to 5 Years 125 mg moulded suppository, 20 53951011000036108 Panadol Children's 6 Months to 5 Years 125 mg moulded suppository 8671000168108 Panadol Children's 6 Months to 5 Years 8671000168108 Panadol Children's 6 Months to 5 Years 63394011000036105 paracetamol 125 mg suppository, 20 61936011000036106 paracetamol 125 mg suppository 21433011000036107 paracetamol +21003011000036109 Lisinopril (GenRx) 5 mg tablet, 30, blister pack 142487 14149011000036101 Lisinopril (GenRx) 5 mg tablet, 30 7428011000036100 Lisinopril (GenRx) 5 mg tablet 3751011000036109 Lisinopril (GenRx) 3751011000036109 Lisinopril (GenRx) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +21003011000036109 Lisinopril (GenRx) 5 mg tablet, 30, blister pack 96320 14149011000036101 Lisinopril (GenRx) 5 mg tablet, 30 7428011000036100 Lisinopril (GenRx) 5 mg tablet 3751011000036109 Lisinopril (GenRx) 3751011000036109 Lisinopril (GenRx) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +931571011000036101 Cholpra 40 mg film-coated tablet, 90, bottle 163545 930732011000036103 Cholpra 40 mg film-coated tablet, 90 930030011000036100 Cholpra 40 mg film-coated tablet 929856011000036102 Cholpra 929856011000036102 Cholpra 932408011000036109 pravastatin sodium 40 mg tablet, 90 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +19096011000036109 Coras 60 mg uncoated tablet, 90, bottle 42908 12402011000036107 Coras 60 mg uncoated tablet, 90 4786011000036107 Coras 60 mg uncoated tablet 2970011000036101 Coras 2970011000036101 Coras 27726011000036109 diltiazem hydrochloride 60 mg tablet, 90 23061011000036103 diltiazem hydrochloride 60 mg tablet 21270011000036102 diltiazem +13081000036102 Quetiapine (Chemmart) 100 mg film-coated tablet, 90, blister pack 166079 8151000036102 Quetiapine (Chemmart) 100 mg film-coated tablet, 90 1811000036102 Quetiapine (Chemmart) 100 mg film-coated tablet 421000036105 Quetiapine (Chemmart) 421000036105 Quetiapine (Chemmart) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +933212751000036102 Sertraline (Auro) 50 mg film-coated tablet, 30, blister pack 149396 933202481000036100 Sertraline (Auro) 50 mg film-coated tablet, 30 933195431000036106 Sertraline (Auro) 50 mg film-coated tablet 30901000168102 Sertraline (Auro) 30901000168102 Sertraline (Auro) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +19338011000036101 Quinate 300 mg film-coated tablet, 50, bottle 50707 12626011000036104 Quinate 300 mg film-coated tablet, 50 5135011000036108 Quinate 300 mg film-coated tablet 3627011000036105 Quinate 3627011000036105 Quinate 27346011000036107 quinine sulfate dihydrate 300 mg tablet, 50 22699011000036101 quinine sulfate dihydrate 300 mg tablet 21513011000036108 quinine +785691000168102 Oxycodone (Sandoz) 40 mg modified release tablet, 20, bottle 153607 785681000168100 Oxycodone (Sandoz) 40 mg modified release tablet, 20 676341000168106 Oxycodone (Sandoz) 40 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27635011000036109 oxycodone hydrochloride 40 mg modified release tablet, 20 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +66291000036101 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 12 x 100 mL vials 49423 64181000036104 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 12 x 100 mL vials 61261000036103 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 100 mL vial 28191000168109 Optiray-320 28191000168109 Optiray-320 64191000036102 ioversol 678 mg (iodine 320 mg)/mL injection, 12 x 100 mL vials 61271000036106 ioversol 678 mg (iodine 320 mg)/mL injection, 100 mL vial 77421011000036103 ioversol +968801000168106 Leukoscan 310 microgram powder for injection, 1 vial 82071 968791000168105 Leukoscan 310 microgram powder for injection, 1 vial 968771000168109 Leukoscan 310 microgram powder for injection, 310 microgram vial 968741000168102 Leukoscan 968741000168102 Leukoscan 968781000168107 sulesomab 310 microgram injection, 1 vial 968761000168103 sulesomab 310 microgram injection, vial 968751000168100 sulesomab +1017941000168106 Arizole 2 mg uncoated tablet, 30, blister pack 198211 1016041000168108 Arizole 2 mg uncoated tablet, 30 1016031000168104 Arizole 2 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +923771000168107 Doprilamide 2/0.625 uncoated tablet, 30, blister pack 132334 923761000168101 Doprilamide 2/0.625 uncoated tablet, 30 923741000168100 Doprilamide 2/0.625 uncoated tablet 923551000168106 Doprilamide 2/0.625 923551000168106 Doprilamide 2/0.625 923751000168103 perindopril erbumine 2 mg + indapamide hemihydrate 625 microgram tablet, 30 923731000168109 perindopril erbumine 2 mg + indapamide hemihydrate 625 microgram tablet 21796011000036104 perindopril + indapamide +864721000168107 Amitriptyline (GXP) 10 mg tablet, 100, blister pack 232128 864711000168100 Amitriptyline (GXP) 10 mg tablet, 100 864681000168101 Amitriptyline (GXP) 10 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +864901000168100 Amitriptyline (GXP) 25 mg tablet, 100, blister pack 232130 864891000168104 Amitriptyline (GXP) 25 mg tablet, 100 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +60474011000036107 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 10 sachets 150168 56432011000036106 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 10 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63352011000036109 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 10 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +68724011000036101 Nicotinell Fruit 4 mg chewing gum, 144, blister pack 126017 66689011000036108 Nicotinell Fruit 4 mg chewing gum, 144 54114011000036101 Nicotinell Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71515011000036101 nicotine 4 mg gum, 144 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +933215881000036105 Rivacol 0.2% mouthwash, 200 mL, bottle 19339 933204211000036102 Rivacol 0.2% mouthwash, 200 mL 933196441000036105 Rivacol 0.2% mouthwash 65188011000036102 Rivacol 65188011000036102 Rivacol 933199671000036107 chlorhexidine gluconate 0.2% mouthwash, 200 mL 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +764251000168107 Mersyndol Daystrength uncoated tablet, 40, blister pack 59985 764241000168105 Mersyndol Daystrength uncoated tablet, 40 54099011000036108 Mersyndol Daystrength uncoated tablet 44331000168100 Mersyndol Daystrength 44331000168100 Mersyndol Daystrength 764231000168101 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 40 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +59869011000036108 Diarrhoea Relief (Chemists' Own) 2 mg uncoated tablet, 20, blister pack 115538 55831011000036107 Diarrhoea Relief (Chemists' Own) 2 mg uncoated tablet, 20 53638011000036101 Diarrhoea Relief (Chemists' Own) 2 mg uncoated tablet 53104011000036101 Diarrhoea Relief (Chemists' Own) 53104011000036101 Diarrhoea Relief (Chemists' Own) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +21147011000036103 Zamhexal 250 microgram uncoated tablet, 50, blister pack 98663 14289011000036109 Zamhexal 250 microgram uncoated tablet, 50 7575011000036104 Zamhexal 250 microgram uncoated tablet 3157011000036108 Zamhexal 3157011000036108 Zamhexal 28280011000036103 alprazolam 250 microgram tablet, 50 23594011000036101 alprazolam 250 microgram tablet 21284011000036103 alprazolam +37469011000036101 Celica 20 mg film-coated tablet, 28, bottle 124757 36737011000036108 Celica 20 mg film-coated tablet, 28 36131011000036106 Celica 20 mg film-coated tablet 35945011000036109 Celica 35945011000036109 Celica 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +730911000168100 Vimizim 5 mg/5 mL concentrated injection, 5 mL vial 215523 730901000168103 Vimizim 5 mg/5 mL concentrated injection, 5 mL vial 730881000168100 Vimizim 5 mg/5 mL concentrated injection, 5 mL vial 730721000168105 Vimizim 730721000168105 Vimizim 730891000168102 elosulfase alfa 5 mg/5 mL injection, 5 mL vial 730871000168103 elosulfase alfa 5 mg/5 mL injection, vial 730861000168109 elosulfase alfa +18854011000036107 Normacol Plus granules, 500 g, carton 18655 12165011000036102 Normacol Plus granules, 500 g 5791011000036105 Normacol Plus granules 3486011000036104 Normacol Plus 3486011000036104 Normacol Plus 26960011000036109 rhamnus frangula 80 mg/g + sterculia 620 mg/g granules, 500 g 22335011000036104 rhamnus frangula 80 mg/g + sterculia 620 mg/g granules 21778011000036106 rhamnus frangula + sterculia +968641000168107 Disodium Pamidronate (Hexal) 60 mg/10 mL concentrated injection, 10 mL vial 101287 968631000168103 Disodium Pamidronate (Hexal) 60 mg/10 mL concentrated injection, 10 mL vial 968621000168101 Disodium Pamidronate (Hexal) 60 mg/10 mL concentrated injection, 10 mL vial 968111000168100 Disodium Pamidronate (Hexal) 968111000168100 Disodium Pamidronate (Hexal) 27767011000036102 pamidronate disodium 60 mg/10 mL injection, 10 mL vial 23098011000036105 pamidronate disodium 60 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +69208011000036109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 24 x 100 mL bottles 19458 67008011000036107 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 24 x 100 mL bottles 65451011000036100 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) irrigation solution, 100 mL bottle 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 1321000168109 Chlorhexidine Acetate 0.015% and Cetrimide 0.15% (Baxter) 71578011000036100 chlorhexidine acetate 0.015% (15 mg/100 mL) + cetrimide 0.15% (150 mg/100 mL) solution, 24 x 100 mL bottles 70074011000036103 chlorhexidine acetate 0.015% (15 mg/100 mL) + cetrimide 0.15% (150 mg/100 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +818841000168102 Quetiapine XR (Apo) 400 mg modified release tablet, 10, blister pack 226800 818831000168106 Quetiapine XR (Apo) 400 mg modified release tablet, 10 818821000168108 Quetiapine XR (Apo) 400 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51538011000036101 quetiapine 400 mg modified release tablet, 10 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +59840011000036107 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 20, blister pack 114919 55802011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet, 20 53680011000036106 Paracetamol Extra Tabsule (Guardian) uncoated tablet 29011000168105 Paracetamol Extra Tabsule (Guardian) 29011000168105 Paracetamol Extra Tabsule (Guardian) 63139011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 20 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +69646011000036100 Goanna Arthritis 10% cream, 20 g, tube 78992 67445011000036102 Goanna Arthritis 10% cream, 20 g 65668011000036100 Goanna Arthritis 10% cream 65065011000036104 Goanna Arthritis 65065011000036104 Goanna Arthritis 71973011000036104 trolamine salicylate 10% cream, 20 g 70269011000036102 trolamine salicylate 10% cream 69814011000036109 trolamine +785531000168100 Endone XR 80 mg modified release tablet, 28, blister pack 153610 785521000168103 Endone XR 80 mg modified release tablet, 28 785491000168100 Endone XR 80 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +19073011000036107 Leucovorin Calcium (DBL) 50 mg/5 mL injection solution, 5 mL vial 42148 12381011000036108 Leucovorin Calcium (DBL) 50 mg/5 mL injection solution, 5 mL vial 5435011000036109 Leucovorin Calcium (DBL) 50 mg/5 mL injection solution, 5 mL vial 920091011000036103 Leucovorin Calcium (DBL) 920091011000036103 Leucovorin Calcium (DBL) 27088011000036101 folinic acid 50 mg/5 mL injection, 5 mL vial 22457011000036103 folinic acid 50 mg/5 mL injection, vial 21617011000036108 folinic acid +37440011000036102 Citanest Dental 4% (88 mg/2.2 mL) injection solution, 100 x 2.2 mL cartridges 12082 36713011000036105 Citanest Dental 4% (88 mg/2.2 mL) injection solution, 100 x 2.2 mL cartridges 36158011000036101 Citanest Dental 4% (88 mg/2.2 mL) injection solution, 2.2 mL cartridge 57041000168103 Citanest Dental 57041000168103 Citanest Dental 38626011000036108 prilocaine hydrochloride 4% (88 mg/2.2 mL) injection, 100 x 2.2 mL cartridges 37886011000036100 prilocaine hydrochloride 4% (88 mg/2.2 mL) injection, cartridge 37761011000036109 prilocaine +885231000168101 Rocuronium (Baxter) 100 mg/10 mL injection solution, 10 mL vial 169603 885221000168104 Rocuronium (Baxter) 100 mg/10 mL injection solution, 10 mL vial 885201000168108 Rocuronium (Baxter) 100 mg/10 mL injection solution, 10 mL vial 885151000168100 Rocuronium (Baxter) 885151000168100 Rocuronium (Baxter) 885211000168106 rocuronium bromide 100 mg/10 mL injection, 10 mL vial 45194011000036104 rocuronium bromide 100 mg/10 mL injection, vial 44919011000036108 rocuronium +18612011000036101 Daktarin 2% cream, 70 g, tube 13284 11945011000036107 Daktarin 2% cream, 70 g 5037011000036105 Daktarin 2% cream 431000168100 Daktarin 431000168100 Daktarin 26813011000036109 miconazole nitrate 2% cream, 70 g 22195011000036104 miconazole nitrate 2% cream 21454011000036108 miconazole +50334011000036102 Algisite M (66000520) 10 cm x 10 cm medicated dressing, 10, carton 49351011000036106 Algisite M (66000520) 10 cm x 10 cm medicated dressing, 10 48699011000036109 Algisite M (66000520) 10 cm x 10 cm medicated dressing 53381000168103 Algisite M (66000520) 53381000168103 Algisite M (66000520) 51330011000036101 dressing alginate superficial wound 10 cm x 10 cm dressing, 10 50857011000036106 dressing alginate superficial wound 10 cm x 10 cm dressing 50715011000036105 dressing alginate superficial wound +19580011000036108 Luvox 100 mg film-coated tablet, 30, blister pack 57633 12851011000036100 Luvox 100 mg film-coated tablet, 30 6142011000036104 Luvox 100 mg film-coated tablet 4159011000036104 Luvox 4159011000036104 Luvox 28004011000036100 fluvoxamine maleate 100 mg tablet, 30 23327011000036102 fluvoxamine maleate 100 mg tablet 21713011000036109 fluvoxamine +13041000036106 Olanzapine (Terry White Chemists) 5 mg film-coated tablet, 28, blister pack 159007 7101000036104 Olanzapine (Terry White Chemists) 5 mg film-coated tablet, 28 1901000036108 Olanzapine (Terry White Chemists) 5 mg film-coated tablet 15211000168105 Olanzapine (Terry White Chemists) 15211000168105 Olanzapine (Terry White Chemists) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +44342011000036103 Novonorm 500 microgram uncoated tablet, 15, blister pack 67270 41809011000036106 Novonorm 500 microgram uncoated tablet, 15 40208011000036102 Novonorm 500 microgram uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46615011000036103 repaglinide 500 microgram tablet, 15 45240011000036103 repaglinide 500 microgram tablet 44883011000036104 repaglinide +65971000036103 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet, 7, blister pack 119095 63291000036106 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet, 7 61151000036108 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet 60311000036103 Zolpidem Tartrate (Synthon) 60311000036103 Zolpidem Tartrate (Synthon) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +20663011000036108 Gabapentin (GenRx) 400 mg hard capsule, 100, blister pack 81777 13843011000036108 Gabapentin (GenRx) 400 mg hard capsule, 100 7130011000036103 Gabapentin (GenRx) 400 mg hard capsule 3416011000036102 Gabapentin (GenRx) 3416011000036102 Gabapentin (GenRx) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +43628011000036107 Stilnox CR 6.25 mg modified release tablet, 21, blister pack 120707 41238011000036101 Stilnox CR 6.25 mg modified release tablet, 21 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46180011000036106 zolpidem tartrate 6.25 mg modified release tablet, 21 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +983061000168108 Cetirizine (AN) 10 mg film-coated tablet, 28, blister pack 126249 983051000168106 Cetirizine (AN) 10 mg film-coated tablet, 28 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 63285011000036101 cetirizine hydrochloride 10 mg tablet, 28 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +69133011000036106 Nicotinell Classic 2 mg chewing gum, 192, blister pack 152893 66933011000036103 Nicotinell Classic 2 mg chewing gum, 192 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71513011000036102 nicotine 2 mg gum, 192 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +902491000168100 Candesartan (GPPL) 32 mg uncoated tablet, 30, blister pack 195462 902361000168102 Candesartan (GPPL) 32 mg uncoated tablet, 30 902351000168104 Candesartan (GPPL) 32 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +87627011000036109 Oxaliplatin (DBL) 100 mg/20 mL concentrated injection, 20 mL vial 131758 87422011000036105 Oxaliplatin (DBL) 100 mg/20 mL concentrated injection, 20 mL vial 87301011000036101 Oxaliplatin (DBL) 100 mg/20 mL concentrated injection, 20 mL vial 3002011000036107 Oxaliplatin (DBL) 3002011000036107 Oxaliplatin (DBL) 26562011000036102 oxaliplatin 100 mg/20 mL injection, 20 mL vial 21971011000036105 oxaliplatin 100 mg/20 mL injection, vial 21543011000036101 oxaliplatin +648891000168109 Circadin 2 mg modified release tablet, 30, blister pack 153959 648881000168106 Circadin 2 mg modified release tablet, 30 923021011000036105 Circadin 2 mg modified release tablet 922948011000036102 Circadin 922948011000036102 Circadin 648871000168108 melatonin 2 mg modified release tablet, 30 923964011000036106 melatonin 2 mg modified release tablet 923927011000036105 melatonin +785731000168109 Oxycodone (Sandoz) 40 mg modified release tablet, 60, bottle 153607 785721000168106 Oxycodone (Sandoz) 40 mg modified release tablet, 60 676341000168106 Oxycodone (Sandoz) 40 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +679231000168101 Benadryl PE Dry Cough and Nasal Congestion oral liquid solution, 200 mL, bottle 150510 679221000168104 Benadryl PE Dry Cough and Nasal Congestion oral liquid solution, 200 mL 679191000168105 Benadryl PE Dry Cough and Nasal Congestion oral liquid solution, 5 mL 679181000168107 Benadryl PE Dry Cough and Nasal Congestion 679181000168107 Benadryl PE Dry Cough and Nasal Congestion 63367011000036102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 61928011000036107 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61803011000036104 dextromethorphan + phenylephrine +33597011000036106 Vaxigrip 2008 injection solution, 1 x 0.5 mL syringe 80198 33335011000036108 Vaxigrip 2008 injection solution, 1 x 0.5 mL syringe 33096011000036105 Vaxigrip 2008 injection solution, 0.5 mL syringe 25501000168102 Vaxigrip 2008 25501000168102 Vaxigrip 2008 33818011000036109 influenza trivalent adult vaccine 2008 injection, 1 x 0.5 mL syringe 33686011000036103 influenza trivalent adult vaccine 2008 injection, 0.5 mL syringe 33630011000036109 influenza trivalent vaccine 2008 +931588011000036100 Redichol 80 mg film-coated tablet, 100, bottle 163555 930749011000036109 Redichol 80 mg film-coated tablet, 100 930035011000036109 Redichol 80 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 52329011000036109 pravastatin sodium 80 mg tablet, 100 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +883711000168101 Bicalutamide (Ameda) 50 mg film-coated tablet, 28, blister pack 273903 883701000168104 Bicalutamide (Ameda) 50 mg film-coated tablet, 28 883691000168104 Bicalutamide (Ameda) 50 mg film-coated tablet 883681000168102 Bicalutamide (Ameda) 883681000168102 Bicalutamide (Ameda) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +933215561000036103 Olanzapine (LY) 5 mg film-coated tablet, 7, blister pack 167681 933205051000036108 Olanzapine (LY) 5 mg film-coated tablet, 7 933196151000036102 Olanzapine (LY) 5 mg film-coated tablet 16001000168108 Olanzapine (LY) 16001000168108 Olanzapine (LY) 933205031000036100 olanzapine 5 mg tablet, 7 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +687751000168102 Allopurinol (Apo) 100 mg uncoated tablet, 200, bottle 218874 687741000168104 Allopurinol (Apo) 100 mg uncoated tablet, 200 687731000168108 Allopurinol (Apo) 100 mg uncoated tablet 687691000168101 Allopurinol (Apo) 687691000168101 Allopurinol (Apo) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +850511000168108 Temozolomide (Amneal) 140 mg hard capsule, 20, sachet 206215 850501000168105 Temozolomide (Amneal) 140 mg hard capsule, 20 850471000168104 Temozolomide (Amneal) 140 mg hard capsule 850331000168108 Temozolomide (Amneal) 850331000168108 Temozolomide (Amneal) 164351000036104 temozolomide 140 mg capsule, 20 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +44705011000036100 Tacidine 300 mg capsule, 60, bottle 94207 42152011000036102 Tacidine 300 mg capsule, 60 7368011000036104 Tacidine 300 mg capsule 4018011000036106 Tacidine 4018011000036106 Tacidine 46913011000036103 nizatidine 300 mg capsule, 60 23520011000036100 nizatidine 300 mg capsule 21421011000036109 nizatidine +37509011000036106 Tramedo SR 200 mg modified release tablet, 60, blister pack 133158 36777011000036106 Tramedo SR 200 mg modified release tablet, 60 36094011000036105 Tramedo SR 200 mg modified release tablet 47831000168100 Tramedo SR 47831000168100 Tramedo SR 38674011000036101 tramadol hydrochloride 200 mg modified release tablet, 60 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +1073771000168102 Terbinafine (Terry White Chemists) 250 mg uncoated tablet, 42, blister pack 100028 1073761000168108 Terbinafine (Terry White Chemists) 250 mg uncoated tablet, 42 1073751000168106 Terbinafine (Terry White Chemists) 250 mg uncoated tablet 1073741000168109 Terbinafine (Terry White Chemists) 1073741000168109 Terbinafine (Terry White Chemists) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +82041000036104 Cyproterone Acetate (PS) 50 mg uncoated tablet, 20, bottle 184227 80571000036104 Cyproterone Acetate (PS) 50 mg uncoated tablet, 20 78481000036108 Cyproterone Acetate (PS) 50 mg uncoated tablet 77781000036100 Cyproterone Acetate (PS) 77781000036100 Cyproterone Acetate (PS) 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +853481000168105 Alphastat 40 mg film-coated tablet, 30, bottle 187392 853461000168101 Alphastat 40 mg film-coated tablet, 30 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +853481000168105 Alphastat 40 mg film-coated tablet, 30, bottle 212164 853461000168101 Alphastat 40 mg film-coated tablet, 30 853421000168106 Alphastat 40 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +43674011000036101 Ciprofloxacin (Aspen) 200 mg/100 mL intravenous infusion injection, 10 x 100 mL bags 114735 41161011000036100 Ciprofloxacin (Aspen) 200 mg/100 mL intravenous infusion injection, 10 x 100 mL bags 39823011000036105 Ciprofloxacin (Aspen) 200 mg/100 mL intravenous infusion injection, 100 mL bag 39632011000036105 Ciprofloxacin (Aspen) 39632011000036105 Ciprofloxacin (Aspen) 46210011000036105 ciprofloxacin 200 mg/100 mL injection, 10 x 100 mL bags 45032011000036109 ciprofloxacin 200 mg/100 mL injection, bag 21245011000036105 ciprofloxacin +931261000168107 Centevo 75/18.75/200 mg film-coated tablet, 50, bottle 238853 931251000168105 Centevo 75/18.75/200 mg film-coated tablet, 50 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931241000168108 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 50 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +39261000036106 Lipitor 40 mg film-coated tablet, 10, blister pack 168342 35721000036108 Lipitor 40 mg film-coated tablet, 10 6206011000036109 Lipitor 40 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 35731000036105 atorvastatin 40 mg tablet, 10 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +926877011000036106 Resolve Tinea 2% powder, 20 g, bottle 54136 926273011000036108 Resolve Tinea 2% powder, 20 g 925718011000036104 Resolve Tinea 2% powder 920946011000036105 Resolve Tinea 920946011000036105 Resolve Tinea 927377011000036105 miconazole nitrate 2% powder, 20 g 927020011000036109 miconazole nitrate 2% powder 21454011000036108 miconazole +44158011000036108 Differin 0.1% gel, 30 g, tube 53918 41634011000036105 Differin 0.1% gel, 30 g 40114011000036108 Differin 0.1% gel 39740011000036103 Differin 39740011000036103 Differin 46453011000036106 adapalene 0.1% gel, 30 g 45163011000036103 adapalene 0.1% gel 44932011000036106 adapalene +867871000168109 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags 16750 867861000168103 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags 867811000168101 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 867851000168100 glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags 867801000168104 glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +19499011000036108 Napamide 2.5 mg film-coated tablet, 90, blister pack 55355 12775011000036102 Napamide 2.5 mg film-coated tablet, 90 6069011000036107 Napamide 2.5 mg film-coated tablet 4110011000036104 Napamide 4110011000036104 Napamide 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +1108411000168109 Midazolam (WP) 5 mg/mL injection solution, 1 mL ampoule 207220 1108401000168106 Midazolam (WP) 5 mg/mL injection solution, 1 mL ampoule 1108391000168109 Midazolam (WP) 5 mg/mL injection solution, ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 664011000168107 midazolam 5 mg/mL injection, 1 mL ampoule 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +715201000168108 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g, tube 101999 715191000168105 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g 715181000168107 Clotrimazole 6 Day (Guardian) 1% vaginal cream 28141000168101 Clotrimazole 6 Day (Guardian) 28141000168101 Clotrimazole 6 Day (Guardian) 714941000168101 clotrimazole 1% vaginal cream, 20 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +69738011000036108 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 18, blister pack 92684 67537011000036100 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 18 65690011000036104 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 72038011000036104 paracetamol 500 mg capsule, 18 70282011000036109 paracetamol 500 mg capsule 21433011000036107 paracetamol +739691000168109 Eltroxin 50 microgram tablet, 200, bottle 206960 739681000168106 Eltroxin 50 microgram tablet, 200 739671000168108 Eltroxin 50 microgram tablet 739521000168108 Eltroxin 739521000168108 Eltroxin 28021011000036108 levothyroxine sodium 50 microgram tablet, 200 23344011000036106 levothyroxine sodium 50 microgram tablet 21577011000036109 levothyroxine +918311000168101 Andex 1 mg film-coated tablet, 30, blister pack 165975 918301000168104 Andex 1 mg film-coated tablet, 30 918291000168100 Andex 1 mg film-coated tablet 918281000168103 Andex 918281000168103 Andex 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +928958011000036109 Pioglitazone (Pharmacor) 45 mg uncoated tablet, 28, blister pack 156715 928319011000036104 Pioglitazone (Pharmacor) 45 mg uncoated tablet, 28 927948011000036104 Pioglitazone (Pharmacor) 45 mg uncoated tablet 927785011000036106 Pioglitazone (Pharmacor) 927785011000036106 Pioglitazone (Pharmacor) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +43916011000036101 Trandolapril (DP) 4 mg hard capsule, 28, blister pack 135983 41408011000036106 Trandolapril (DP) 4 mg hard capsule, 28 39922011000036108 Trandolapril (DP) 4 mg hard capsule 39661011000036107 Trandolapril (DP) 39661011000036107 Trandolapril (DP) 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +69047011000036108 Thymol Compound (David Craig) mouthwash, 200 mL, bottle 14233 66849011000036105 Thymol Compound (David Craig) mouthwash, 200 mL 65425011000036104 Thymol Compound (David Craig) mouthwash 65048011000036101 Thymol Compound (David Craig) 65048011000036101 Thymol Compound (David Craig) 52319011000036104 thymol 1.5 mg/mL + benzoic acid 8 mg/mL + sodium bicarbonate 3 mg/mL mouthwash, 200 mL 52251011000036101 thymol 1.5 mg/mL + benzoic acid 8 mg/mL + sodium bicarbonate 3 mg/mL mouthwash 52229011000036103 thymol + benzoic acid + bicarbonate +653271000168102 Doxorubicin Hydrochloride (MYX) 10 mg/5 mL concentrated injection, 5 mL vial 174249 653261000168108 Doxorubicin Hydrochloride (MYX) 10 mg/5 mL concentrated injection, 5 mL vial 653251000168106 Doxorubicin Hydrochloride (MYX) 10 mg/5 mL concentrated injection, 5 mL vial 172771000036107 Doxorubicin Hydrochloride (MYX) 172771000036107 Doxorubicin Hydrochloride (MYX) 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +34715011000036104 Methadone Hydrochloride Syrup (Orion) 1.5 mg/mL oral liquid solution, 20 mL, bottle 21167 34299011000036106 Methadone Hydrochloride Syrup (Orion) 1.5 mg/mL oral liquid solution, 20 mL 34022011000036100 Methadone Hydrochloride Syrup (Orion) 1.5 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35148011000036100 methadone hydrochloride 1.5 mg/mL oral liquid, 20 mL 34870011000036102 methadone hydrochloride 1.5 mg/mL oral liquid 21357011000036109 methadone +79037011000036105 Bispro 10 mg film-coated tablet, 30, blister pack 130182 78801011000036108 Bispro 10 mg film-coated tablet, 30 78627011000036103 Bispro 10 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79215011000036102 bisoprolol fumarate 10 mg tablet, 30 23283011000036107 bisoprolol fumarate 10 mg tablet 21839011000036103 bisoprolol +1056591000168101 Atorvastatin (Ran) 20 mg film-coated tablet, 28, bottle 179825 1056581000168104 Atorvastatin (Ran) 20 mg film-coated tablet, 28 1056551000168106 Atorvastatin (Ran) 20 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890321000168104 atorvastatin 20 mg tablet, 28 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +69289011000036102 Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 19502 67089011000036100 Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 12 x 1 L bags 65416011000036103 Sodium Chloride 0.9% and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 4991000168105 Sodium Chloride 0.9% and Glucose 5% (Baxter) 4991000168105 Sodium Chloride 0.9% and Glucose 5% (Baxter) 71657011000036105 sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, 12 x 1 L bags 70111011000036103 sodium chloride 0.9% (9 g/L) + glucose 5% (50 g/L) injection, bag 21257011000036103 sodium chloride + glucose +69663011000036100 Gasbusters 200 mg soft capsule, 30, blister pack 80295 67462011000036102 Gasbusters 200 mg soft capsule, 30 65673011000036103 Gasbusters 200 mg soft capsule 65074011000036109 Gasbusters 65074011000036109 Gasbusters 71990011000036100 simethicone 200 mg capsule, 30 70273011000036107 simethicone 200 mg capsule 69826011000036109 simethicone +916821000168102 Amitriptyline (RS) 10 mg tablet, 250, bottle 232141 916811000168109 Amitriptyline (RS) 10 mg tablet, 250 866491000168106 Amitriptyline (RS) 10 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +20133011000036102 Zyprexa Zydis 5 mg wafer, 28, blister pack 73388 13357011000036104 Zyprexa Zydis 5 mg wafer, 28 6642011000036103 Zyprexa Zydis 5 mg wafer 15881000168103 Zyprexa Zydis 15881000168103 Zyprexa Zydis 27713011000036107 olanzapine 5 mg wafer, 28 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +931682011000036109 Maxiclear Sinus and Pain Relief uncoated tablet, 30, blister pack 167173 930842011000036101 Maxiclear Sinus and Pain Relief uncoated tablet, 30 930065011000036102 Maxiclear Sinus and Pain Relief uncoated tablet 929912011000036100 Maxiclear Sinus and Pain Relief 929912011000036100 Maxiclear Sinus and Pain Relief 83003011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 30 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +19257011000036107 Imovane 7.5 mg film-coated tablet, 30, blister pack 165934 12547011000036107 Imovane 7.5 mg film-coated tablet, 30 5421011000036105 Imovane 7.5 mg film-coated tablet 3857011000036103 Imovane 3857011000036103 Imovane 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +19257011000036107 Imovane 7.5 mg film-coated tablet, 30, blister pack 48020 12547011000036107 Imovane 7.5 mg film-coated tablet, 30 5421011000036105 Imovane 7.5 mg film-coated tablet 3857011000036103 Imovane 3857011000036103 Imovane 28332011000036100 zopiclone 7.5 mg tablet, 30 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +785891000168103 Oxycodone (Sandoz) 20 mg modified release tablet, 60, bottle 153618 785881000168101 Oxycodone (Sandoz) 20 mg modified release tablet, 60 676371000168104 Oxycodone (Sandoz) 20 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +815871000168100 Granisetron (GenRx) 1 mg/mL injection solution, 5 x 1 mL ampoules 217087 815861000168106 Granisetron (GenRx) 1 mg/mL injection solution, 5 x 1 mL ampoules 815851000168109 Granisetron (GenRx) 1 mg/mL injection solution, ampoule 815841000168107 Granisetron (GenRx) 815841000168107 Granisetron (GenRx) 46134011000036108 granisetron 1 mg/mL injection, 5 x 1 mL ampoules 45003011000036106 granisetron 1 mg/mL injection, ampoule 21431011000036106 granisetron +928899011000036101 Oxaliplatin (Link Medical Products) 150 mg powder for injection, 1 vial 148409 928261011000036108 Oxaliplatin (Link Medical Products) 150 mg powder for injection, 1 vial 927910011000036105 Oxaliplatin (Link Medical Products) 150 mg powder for injection, 150 mg vial 83235011000036108 Oxaliplatin (Link Medical Products) 83235011000036108 Oxaliplatin (Link Medical Products) 929212011000036101 oxaliplatin 150 mg injection, 1 vial 929148011000036108 oxaliplatin 150 mg injection, vial 21543011000036101 oxaliplatin +929052011000036102 Galvumet 50/850 film-coated tablet, 360, blister pack 161217 928413011000036106 Galvumet 50/850 film-coated tablet, 360 927969011000036100 Galvumet 50/850 film-coated tablet 9411000168105 Galvumet 50/850 9411000168105 Galvumet 50/850 929250011000036106 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet, 360 929155011000036104 vildagliptin 50 mg + metformin hydrochloride 850 mg tablet 929132011000036106 vildagliptin + metformin +970011000168107 Pregabalin (Apo) 25 mg hard capsule, 20, blister pack 193255 970001000168109 Pregabalin (Apo) 25 mg hard capsule, 20 969941000168105 Pregabalin (Apo) 25 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +44642011000036109 Levitra 20 mg film-coated tablet, 8, blister pack 90500 42095011000036107 Levitra 20 mg film-coated tablet, 8 40350011000036103 Levitra 20 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46862011000036104 vardenafil 20 mg tablet, 8 45334011000036104 vardenafil 20 mg tablet 44856011000036100 vardenafil +1021951000168109 Atelvia 35 mg film-coated tablet, 10, blister pack 163753 1021941000168107 Atelvia 35 mg film-coated tablet, 10 1021871000168105 Atelvia 35 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 929753011000036106 risedronate sodium 35 mg tablet, 10 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +653111000168100 Epirubicin Hydrochloride (Act) 20 mg/10 mL concentrated injection, 10 mL vial 146596 653101000168103 Epirubicin Hydrochloride (Act) 20 mg/10 mL concentrated injection, 10 mL vial 653091000168108 Epirubicin Hydrochloride (Act) 20 mg/10 mL concentrated injection, 10 mL vial 47661000168107 Epirubicin Hydrochloride (Act) 47661000168107 Epirubicin Hydrochloride (Act) 27170011000036103 epirubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22532011000036105 epirubicin hydrochloride 20 mg/10 mL injection, vial 21230011000036100 epirubicin +60900011000036109 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 200 mL, bottle 60408 56854011000036106 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 200 mL 54101011000036101 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 5 mL 56861000168107 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 56861000168107 Paracetamol Pain and Fever 5 to 12 Years (Chemists' Own) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +1039131000168100 Atorvastatin (GA) 20 mg film-coated tablet, 40, blister pack 178538 1039121000168103 Atorvastatin (GA) 20 mg film-coated tablet, 40 1039051000168107 Atorvastatin (GA) 20 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841421000168105 atorvastatin 20 mg tablet, 40 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +77343011000036109 Water for Injections (Pfizer (Perth)) injection solution, 10 x 100 mL vials 49298 76759011000036107 Water for Injections (Pfizer (Perth)) injection solution, 10 x 100 mL vials 76169011000036105 Water for Injections (Pfizer (Perth)) injection solution, 100 mL vial 75983011000036105 Water for Injections (Pfizer (Perth)) 75983011000036105 Water for Injections (Pfizer (Perth)) 78266011000036108 water for injections injection, 10 x 100 mL vials 77586011000036108 water for injections injection, 100 mL vial 77431011000036101 water for injections +921814011000036105 South Australian Shark Cartilage 500 mg hard capsule, 100, bottle 122300 921390011000036104 South Australian Shark Cartilage 500 mg hard capsule, 100 920976011000036109 South Australian Shark Cartilage 500 mg hard capsule 920967011000036101 South Australian Shark Cartilage 920967011000036101 South Australian Shark Cartilage 922534011000036102 shark cartilage 500 mg capsule, 100 922073011000036100 shark cartilage 500 mg capsule 922056011000036109 shark cartilage +916981000168109 Amitriptyline (RS) 50 mg tablet, 50, bottle 232145 866681000168106 Amitriptyline (RS) 50 mg tablet, 50 866651000168104 Amitriptyline (RS) 50 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +66121000036109 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution, 50 mL, bottle 14488 63391000036102 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution, 50 mL 61081000036100 Eucalyptus Oil (True Blue) 1 mL/mL inhalation solution 60391000036108 Eucalyptus Oil (True Blue) 60391000036108 Eucalyptus Oil (True Blue) 73520011000036105 eucalyptus oil 1 mL/mL inhalation solution, 50 mL 73382011000036103 eucalyptus oil 1 mL/mL inhalation solution 73351011000036104 eucalyptus oil +82874011000036108 Afinitor 10 mg uncoated tablet, 30, blister pack 154663 82781011000036100 Afinitor 10 mg uncoated tablet, 30 82691011000036106 Afinitor 10 mg uncoated tablet 82660011000036102 Afinitor 82660011000036102 Afinitor 83001011000036107 everolimus 10 mg tablet, 30 82938011000036106 everolimus 10 mg tablet 21615011000036103 everolimus +1055161000168106 Tramadol SR (Sandoz) 100 mg modified release tablet, 20, blister pack 99239 926350011000036106 Tramadol SR (Sandoz) 100 mg modified release tablet, 20 925777011000036105 Tramadol SR (Sandoz) 100 mg modified release tablet 32631000168103 Tramadol SR (Sandoz) 32631000168103 Tramadol SR (Sandoz) 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +77320011000036103 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 100 mL vial 47071 76736011000036104 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 100 mL vial 76151011000036104 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 100 mL vial 35921000168104 Isovue-370 35921000168104 Isovue-370 78249011000036106 iopamidol 755 mg (iodine 370 mg)/mL injection, 100 mL vial 77572011000036100 iopamidol 755 mg (iodine 370 mg)/mL injection, 100 mL vial 77457011000036105 iopamidol +60537011000036107 Cold and Flu Relief PE (Amcal) uncoated tablet, 48, blister pack 152038 56495011000036107 Cold and Flu Relief PE (Amcal) uncoated tablet, 48 53941011000036105 Cold and Flu Relief PE (Amcal) uncoated tablet 53311011000036105 Cold and Flu Relief PE (Amcal) 53311011000036105 Cold and Flu Relief PE (Amcal) 63381011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet, 48 61933011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +929112011000036103 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 50, blister pack 166920 928473011000036103 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet, 50 927992011000036108 Pioglitazone (Terry White Chemists) 15 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929266011000036101 pioglitazone 15 mg tablet, 50 23134011000036104 pioglitazone 15 mg tablet 21416011000036107 pioglitazone +729631000168107 Fess 0.704% nasal spray, 30 mL, pump pack 76558011000036100 Fess 0.704% nasal spray, 30 mL 76031011000036107 Fess 0.704% nasal spray 5581000168103 Fess 5581000168103 Fess 78115011000036103 sodium chloride 0.704% nasal spray, 30 mL 77493011000036107 sodium chloride 0.704% nasal spray 21308011000036103 sodium chloride +43691011000036106 Angeliq 1/2 film-coated tablet, 56, blister pack 114816 41164011000036102 Angeliq 1/2 film-coated tablet, 56 39892011000036107 Angeliq 1/2 film-coated tablet 16131000168100 Angeliq 1/2 16131000168100 Angeliq 1/2 46131011000036105 estradiol 1 mg + drospirenone 2 mg tablet, 56 45002011000036104 estradiol 1 mg + drospirenone 2 mg tablet 44878011000036104 estradiol + drospirenone +648771000168100 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 100 mL, bottle 178302 648761000168106 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 100 mL 648751000168109 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 5 mL 5541000168108 Panadol Children's 5 to 12 Years 5541000168108 Panadol Children's 5 to 12 Years 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +705011000168103 Glytactin RTD 15 Chocolate containing 15 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 705001000168101 Glytactin RTD 15 Chocolate containing 15 g of protein equivalent oral liquid solution, 30 x 250 mL cartons 704991000168107 Glytactin RTD 15 Chocolate containing 15 g of protein equivalent oral liquid solution, 250 mL carton 704931000168108 Glytactin RTD 15 704931000168108 Glytactin RTD 15 704961000168100 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent oral liquid, 30 x 250 mL cartons 704941000168104 glycomacropeptide and essential amino acids with vitamins and minerals containing 15 g of protein equivalent oral liquid, 250 mL carton 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +756951000168103 Olanzacor 7.5 mg film-coated tablet, 28, blister pack 207851 756941000168100 Olanzacor 7.5 mg film-coated tablet, 28 756931000168109 Olanzacor 7.5 mg film-coated tablet 756671000168101 Olanzacor 756671000168101 Olanzacor 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +986101000168101 Advil Double Strength Caplets 400 mg film-coated tablet, 40, blister pack 207376 986091000168106 Advil Double Strength Caplets 400 mg film-coated tablet, 40 985851000168103 Advil Double Strength Caplets 400 mg film-coated tablet 985841000168100 Advil Double Strength Caplets 985841000168100 Advil Double Strength Caplets 986081000168108 ibuprofen 400 mg tablet, 40 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +683571000168106 Vpriv 400 units powder for injection, 1 vial 180965 683561000168100 Vpriv 400 units powder for injection, 1 vial 683541000168104 Vpriv 400 units powder for injection, 400 units vial 683501000168101 Vpriv 683501000168101 Vpriv 683551000168102 velaglucerase alfa 400 units injection, 1 vial 683531000168108 velaglucerase alfa 400 units injection, vial 683521000168105 velaglucerase alfa +916941000168104 Carvedilol (SCP) 6.25 mg uncoated tablet, 60, blister pack 194262 916931000168108 Carvedilol (SCP) 6.25 mg uncoated tablet, 60 916901000168101 Carvedilol (SCP) 6.25 mg uncoated tablet 916891000168100 Carvedilol (SCP) 916891000168100 Carvedilol (SCP) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +61626011000036107 Nurofen Migraine Pain 200 mg film-coated tablet, 40, blister pack 96215 57548011000036104 Nurofen Migraine Pain 200 mg film-coated tablet, 40 54345011000036100 Nurofen Migraine Pain 200 mg film-coated tablet 8791000168103 Nurofen Migraine Pain 8791000168103 Nurofen Migraine Pain 63922011000036102 ibuprofen 200 mg tablet, 40 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +160141000036108 Cefaclor (Apo) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 226396 158881000036103 Cefaclor (Apo) 125 mg/5 mL powder for oral liquid, 100 mL 157991000036109 Cefaclor (Apo) 125 mg/5 mL powder for oral liquid, 5 mL 157761000036104 Cefaclor (Apo) 157761000036104 Cefaclor (Apo) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +160141000036108 Cefaclor (Apo) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 169110 158881000036103 Cefaclor (Apo) 125 mg/5 mL powder for oral liquid, 100 mL 157991000036109 Cefaclor (Apo) 125 mg/5 mL powder for oral liquid, 5 mL 157761000036104 Cefaclor (Apo) 157761000036104 Cefaclor (Apo) 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +18439011000036102 Predsol Retention 20 mg/100 mL enema, 7 x 100 mL, bag 12518 11793011000036106 Predsol Retention 20 mg/100 mL enema, 7 x 100 mL 5868011000036102 Predsol Retention 20 mg/100 mL enema, 100 mL 63261000168106 Predsol Retention 63261000168106 Predsol Retention 26772011000036105 prednisolone (as sodium phosphate) 20 mg/100 mL enema, 7 x 100 mL 22159011000036109 prednisolone (as sodium phosphate) 20 mg/100 mL enema 21374011000036100 prednisolone sodium phosphate +52725011000036108 Zilarex 10 mg film-coated tablet, 10, blister pack 120710 52537011000036101 Zilarex 10 mg film-coated tablet, 10 52400011000036101 Zilarex 10 mg film-coated tablet 52381011000036101 Zilarex 52381011000036101 Zilarex 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +84297011000036106 Ozpan 40 mg enteric tablet, 30, blister pack 151291 83990011000036109 Ozpan 40 mg enteric tablet, 30 83625011000036108 Ozpan 40 mg enteric tablet 83553011000036102 Ozpan 83553011000036102 Ozpan 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +651901000168100 Capecitabine (DRLA) 500 mg film-coated tablet, 120, blister pack 200933 651891000168104 Capecitabine (DRLA) 500 mg film-coated tablet, 120 651881000168102 Capecitabine (DRLA) 500 mg film-coated tablet 651841000168107 Capecitabine (DRLA) 651841000168107 Capecitabine (DRLA) 27783011000036109 capecitabine 500 mg tablet, 120 23113011000036107 capecitabine 500 mg tablet 21356011000036106 capecitabine +21193011000036104 Navelbine 30 mg soft capsule, 1, blister pack 99558 14331011000036106 Navelbine 30 mg soft capsule, 1 7615011000036103 Navelbine 30 mg soft capsule 4394011000036104 Navelbine 4394011000036104 Navelbine 28322011000036103 vinorelbine 30 mg capsule, 1 23634011000036100 vinorelbine 30 mg capsule 21269011000036100 vinorelbine +896781000168103 Olmesartan HCTZ 20/12.5 (Apotex) film-coated tablet, 30, blister pack 206466 896771000168101 Olmesartan HCTZ 20/12.5 (Apotex) film-coated tablet, 30 896761000168107 Olmesartan HCTZ 20/12.5 (Apotex) film-coated tablet 896751000168105 Olmesartan HCTZ 20/12.5 (Apotex) 896751000168105 Olmesartan HCTZ 20/12.5 (Apotex) 26676011000036103 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22072011000036106 olmesartan medoxomil 20 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +1011821000168103 Quetiapine (Apotex) 100 mg film-coated tablet, 90, blister pack 166075 1011811000168105 Quetiapine (Apotex) 100 mg film-coated tablet, 90 1011801000168107 Quetiapine (Apotex) 100 mg film-coated tablet 732141000168102 Quetiapine (Apotex) 732141000168102 Quetiapine (Apotex) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +1121461000168108 Sequase XR 150 mg modified release tablet, 60, blister pack 212504 1121451000168106 Sequase XR 150 mg modified release tablet, 60 1121441000168109 Sequase XR 150 mg modified release tablet 1121431000168100 Sequase XR 1121431000168100 Sequase XR 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +739771000168104 Eltroxin 100 microgram tablet, 200, bottle 206963 739761000168105 Eltroxin 100 microgram tablet, 200 739751000168108 Eltroxin 100 microgram tablet 739521000168108 Eltroxin 739521000168108 Eltroxin 28022011000036102 levothyroxine sodium 100 microgram tablet, 200 23345011000036105 levothyroxine sodium 100 microgram tablet 21577011000036109 levothyroxine +44613011000036109 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 20, blister pack 90128 42066011000036103 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 20 40345011000036109 Sinutab Sinus, Allergy and Pain Relief uncoated tablet 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 46833011000036101 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 20 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +61188011000036101 Ranitic (Hexal) 150 mg film-coated tablet, 28, blister pack 75206 57124011000036104 Ranitic (Hexal) 150 mg film-coated tablet, 28 54206011000036108 Ranitic (Hexal) 150 mg film-coated tablet 53331011000036101 Ranitic (Hexal) 53331011000036101 Ranitic (Hexal) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +1063811000168105 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 12, blister pack 159329 1063801000168107 Ibuprofen plus Codeine (Pharmacor) film-coated tablet, 12 1063791000168106 Ibuprofen plus Codeine (Pharmacor) film-coated tablet 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 1063761000168104 Ibuprofen plus Codeine (Pharmacor) 63143011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 12 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +923931000168106 Hyqvia (1 x IG 2.5 g/25 mL vial, 1 x HY 200 units/1.25 mL vial), 1 pack, composite pack 235178 923921000168108 Hyqvia (1 x IG 2.5 g/25 mL vial, 1 x HY 200 units/1.25 mL vial), 1 pack 923901000168104 HY 200 units/1.25 mL injection solution, 1.25 mL vial 923831000168102 Hyqvia 923861000168105 HY 923911000168101 normal immunoglobulin 2.5 g/25 mL injection [25 mL vial] (&) vorhyaluronidase alfa 200 units/1.25 mL injection [1.25 mL vial], 1 pack 923891000168103 vorhyaluronidase alfa 200 units/1.25 mL injection, vial 923881000168101 vorhyaluronidase alfa +923931000168106 Hyqvia (1 x IG 2.5 g/25 mL vial, 1 x HY 200 units/1.25 mL vial), 1 pack, composite pack 235178 923921000168108 Hyqvia (1 x IG 2.5 g/25 mL vial, 1 x HY 200 units/1.25 mL vial), 1 pack 923871000168104 IG 2.5 g/25 mL injection solution, 25 mL vial 923831000168102 Hyqvia 923851000168108 IG 923911000168101 normal immunoglobulin 2.5 g/25 mL injection [25 mL vial] (&) vorhyaluronidase alfa 200 units/1.25 mL injection [1.25 mL vial], 1 pack 112871000036106 normal immunoglobulin 2.5 g/25 mL injection, vial 74965011000036103 normal immunoglobulin +819001000168103 Combigesic film-coated tablet, 6, blister pack 268812 818981000168101 Combigesic film-coated tablet, 6 818951000168108 Combigesic film-coated tablet 818911000168107 Combigesic 818911000168107 Combigesic 813021000168109 paracetamol 500 mg + ibuprofen 200 mg tablet, 6 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +1103981000168101 Quetiapine (GH) 200 mg film-coated tablet, 50, blister pack 179897 1103971000168104 Quetiapine (GH) 200 mg film-coated tablet, 50 2201000036106 Quetiapine (GH) 200 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1103961000168105 quetiapine 200 mg tablet, 50 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +899441000168107 Fluquadri 2017 injection suspension, 5 x 0.5 mL syringes 213963 899431000168103 Fluquadri 2017 injection suspension, 5 x 0.5 mL syringes 899411000168108 Fluquadri 2017 injection suspension, 0.5 mL syringe 899321000168106 Fluquadri 2017 899321000168106 Fluquadri 2017 899421000168101 influenza quadrivalent adult vaccine 2017 injection, 5 x 0.5 mL syringes 899401000168105 influenza quadrivalent adult vaccine 2017 injection, 0.5 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +813221000168101 Nuromol film-coated tablet, 20, blister pack 225322 813211000168108 Nuromol film-coated tablet, 20 812801000168102 Nuromol film-coated tablet 812781000168101 Nuromol 812781000168101 Nuromol 813201000168105 paracetamol 500 mg + ibuprofen 200 mg tablet, 20 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +669041000168105 Macrovic powder for oral liquid, 2 sachets 220583 669031000168101 Macrovic powder for oral liquid, 2 sachets 669011000168106 Macrovic powder for oral liquid, sachet 668291000168102 Macrovic 668291000168102 Macrovic 669021000168104 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 2 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +79711011000036109 Diclofenac Sodium (Terry White Chemists) 50 mg enteric tablet, 50, blister pack 160725 13688011000036101 Diclofenac Sodium (Terry White Chemists) 50 mg enteric tablet, 50 6971011000036109 Diclofenac Sodium (Terry White Chemists) 50 mg enteric tablet 3969011000036108 Diclofenac Sodium (Terry White Chemists) 3969011000036108 Diclofenac Sodium (Terry White Chemists) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +933215651000036102 Olanzapine (Lilly) 5 mg wafer, 28, blister pack 167686 933205161000036107 Olanzapine (Lilly) 5 mg wafer, 28 933196201000036108 Olanzapine (Lilly) 5 mg wafer 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 27713011000036107 olanzapine 5 mg wafer, 28 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +674981000168109 Simponi 100 mg/mL injection solution, 1 mL syringe 208278 674971000168106 Simponi 100 mg/mL injection solution, 1 mL syringe 674951000168102 Simponi 100 mg/mL injection solution, syringe 83552011000036109 Simponi 83552011000036109 Simponi 674961000168100 golimumab 100 mg/mL injection, 1 mL syringe 674941000168104 golimumab 100 mg/mL injection, syringe 84416011000036108 golimumab +751091000168100 Dapsone (Alphapharm) 100 mg uncoated tablet, 100, bottle 17608 751081000168103 Dapsone (Alphapharm) 100 mg uncoated tablet, 100 751071000168101 Dapsone (Alphapharm) 100 mg uncoated tablet 751061000168107 Dapsone (Alphapharm) 751061000168107 Dapsone (Alphapharm) 26596011000036100 dapsone 100 mg tablet, 100 22004011000036107 dapsone 100 mg tablet 21608011000036106 dapsone +18197011000036104 Perindo 4 mg uncoated tablet, 30, blister pack 121748 11687011000036107 Perindo 4 mg uncoated tablet, 30 5155011000036107 Perindo 4 mg uncoated tablet 3491011000036108 Perindo 3491011000036108 Perindo 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +44175011000036104 Arima 150 mg film-coated tablet, 90, blister pack 54997 41651011000036106 Arima 150 mg film-coated tablet, 90 40123011000036102 Arima 150 mg film-coated tablet 39674011000036104 Arima 39674011000036104 Arima 46469011000036104 moclobemide 150 mg tablet, 90 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +1009081000168108 Rivastigmine (Apotex) 4.5 mg hard capsule, 56, blister pack 160569 1009071000168105 Rivastigmine (Apotex) 4.5 mg hard capsule, 56 1009021000168109 Rivastigmine (Apotex) 4.5 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 27693011000036101 rivastigmine 4.5 mg capsule, 56 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +781671000168101 Karvea 75 mg film-coated tablet, 7, blister pack 101702 781661000168107 Karvea 75 mg film-coated tablet, 7 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 738121000168106 irbesartan 75 mg tablet, 7 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +21020011000036105 Enalapril Maleate (Terry White Chemists) 20 mg uncoated tablet, 30, blister pack 96338 14166011000036104 Enalapril Maleate (Terry White Chemists) 20 mg uncoated tablet, 30 7445011000036109 Enalapril Maleate (Terry White Chemists) 20 mg uncoated tablet 3999011000036105 Enalapril Maleate (Terry White Chemists) 3999011000036105 Enalapril Maleate (Terry White Chemists) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +121381000036100 Amoxycillin and Clavulanic Acid 875/125 (Apo) film-coated tablet, 10, blister pack 163696 120271000036100 Amoxycillin and Clavulanic Acid 875/125 (Apo) film-coated tablet, 10 119751000036103 Amoxycillin and Clavulanic Acid 875/125 (Apo) film-coated tablet 63471000168101 Amoxycillin and Clavulanic Acid 875/125 (Apo) 63471000168101 Amoxycillin and Clavulanic Acid 875/125 (Apo) 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +50518011000036103 Glucocare Super Sensor diagnostic strip, 50, bottle 49250011000036108 Glucocare Super Sensor diagnostic strip, 50 48588011000036109 Glucocare Super Sensor diagnostic strip 34031000168104 Glucocare Super Sensor 34031000168104 Glucocare Super Sensor 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +747391000168108 Junomorph 10 mg/mL injection solution, 5 x 1 mL ampoules 224253 747381000168105 Junomorph 10 mg/mL injection solution, 5 x 1 mL ampoules 747371000168107 Junomorph 10 mg/mL injection solution, ampoule 747261000168105 Junomorph 747261000168105 Junomorph 707011000168107 morphine hydrochloride trihydrate 10 mg/mL injection, 5 x 1 mL ampoules 706991000168102 morphine hydrochloride trihydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +1056071000168105 Erelzi 25 mg/0.5 mL injection solution, 4 x 0.5 mL syringes 281783 1056061000168104 Erelzi 25 mg/0.5 mL injection solution, 4 x 0.5 mL syringes 1056051000168101 Erelzi 25 mg/0.5 mL injection solution, 0.5 mL syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 46239011000036106 etanercept 25 mg/0.5 mL injection, 4 x 0.5 mL syringes 45042011000036108 etanercept 25 mg/0.5 mL injection, syringe 21347011000036107 etanercept +928916011000036103 Vaclovir 500 mg film-coated tablet, 480, blister pack 153822 928278011000036107 Vaclovir 500 mg film-coated tablet, 480 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 929220011000036107 valaciclovir 500 mg tablet, 480 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +61234011000036104 Nicotine (Amcal) Fruit 2 mg chewing gum, 96, blister pack 152934 57170011000036105 Nicotine (Amcal) Fruit 2 mg chewing gum, 96 54223011000036109 Nicotine (Amcal) Fruit 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +61234011000036104 Nicotine (Amcal) Fruit 2 mg chewing gum, 96, blister pack 76845 57170011000036105 Nicotine (Amcal) Fruit 2 mg chewing gum, 96 54223011000036109 Nicotine (Amcal) Fruit 2 mg chewing gum 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +20461011000036105 MS Contin 200 mg modified release tablet, 20, blister pack 78209 13663011000036108 MS Contin 200 mg modified release tablet, 20 6946011000036103 MS Contin 200 mg modified release tablet 5771000168106 MS Contin 5771000168106 MS Contin 27869011000036107 morphine sulfate pentahydrate 200 mg modified release tablet, 20 23197011000036104 morphine sulfate pentahydrate 200 mg modified release tablet 21252011000036100 morphine +44429011000036100 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 71931 41885011000036108 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 40241011000036103 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 46688011000036107 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, 12 x 0.5 mL syringes 45266011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +44429011000036100 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 133809 41885011000036108 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 12 x 0.5 mL syringes 40241011000036103 Rebif 6 million units (22 microgram)/0.5 mL injection solution, 0.5 mL syringe 2943011000036108 Rebif 2943011000036108 Rebif 46688011000036107 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, 12 x 0.5 mL syringes 45266011000036106 interferon beta-1a 6 million units (22 microgram)/0.5 mL injection, syringe 21462011000036109 interferon beta-1a +928813011000036100 Sunspot (John Plunkett) 5% cream, 100 g, jar 11630 928182011000036102 Sunspot (John Plunkett) 5% cream, 100 g 927846011000036105 Sunspot (John Plunkett) 5% cream 927803011000036109 Sunspot (John Plunkett) 927803011000036109 Sunspot (John Plunkett) 929200011000036103 salicylic acid 5% cream, 100 g 929140011000036106 salicylic acid 5% cream 52232011000036106 salicylic acid +1017531000168108 Raloxifene (Apotex) 60 mg film-coated tablet, 28, blister pack 184798 1017521000168105 Raloxifene (Apotex) 60 mg film-coated tablet, 28 1017491000168108 Raloxifene (Apotex) 60 mg film-coated tablet 1017481000168105 Raloxifene (Apotex) 1017481000168105 Raloxifene (Apotex) 27548011000036109 raloxifene hydrochloride 60 mg tablet, 28 22888011000036100 raloxifene hydrochloride 60 mg tablet 21492011000036107 raloxifene +34732011000036104 Pholcodine Linctus (Orion) 1 mg/mL oral liquid solution, 100 mL, bottle 42858 34316011000036105 Pholcodine Linctus (Orion) 1 mg/mL oral liquid solution, 100 mL 34038011000036104 Pholcodine Linctus (Orion) 1 mg/mL oral liquid solution 33945011000036100 Pholcodine Linctus (Orion) 33945011000036100 Pholcodine Linctus (Orion) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +933062011000036109 Valvala 500 mg film-coated tablet, 10, blister pack 154465 932880011000036102 Valvala 500 mg film-coated tablet, 10 932741011000036104 Valvala 500 mg film-coated tablet 932700011000036100 Valvala 932700011000036100 Valvala 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +50461011000036103 Combiderm (651031) 10 cm x 10 cm (foam alternative) dressing, 10, carton 49348011000036104 Combiderm (651031) 10 cm x 10 cm (foam alternative) dressing, 10 48574011000036106 Combiderm (651031) 10 cm x 10 cm (foam alternative) dressing 21831000168109 Combiderm (651031) 21831000168109 Combiderm (651031) 51327011000036103 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 10 cm x 10 cm (foam alternative) dressing, 10 50854011000036100 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 10 cm x 10 cm (foam alternative) dressing 50713011000036109 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam +43945011000036104 Sertratrust 100 mg film-coated tablet, 30, blister pack 147078 41437011000036101 Sertratrust 100 mg film-coated tablet, 30 39791011000036104 Sertratrust 100 mg film-coated tablet 39676011000036107 Sertratrust 39676011000036107 Sertratrust 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +60220011000036104 Restavit 25 mg uncoated tablet, 20, blister pack 13336 56179011000036100 Restavit 25 mg uncoated tablet, 20 53827011000036108 Restavit 25 mg uncoated tablet 53322011000036109 Restavit 53322011000036109 Restavit 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +19707011000036107 Duride 60 mg modified release tablet, 30, blister pack 60907 12964011000036104 Duride 60 mg modified release tablet, 30 6253011000036106 Duride 60 mg modified release tablet 3668011000036104 Duride 3668011000036104 Duride 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +820211000168107 Vagiclear 1% vaginal cream, 10 g, tube 820201000168109 Vagiclear 1% vaginal cream, 10 g 820181000168108 Vagiclear 1% vaginal cream 820141000168103 Vagiclear 820141000168103 Vagiclear 820191000168106 clotrimazole 1% vaginal cream, 10 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +50276011000036104 Rispa 500 microgram film-coated tablet, 100, blister pack 127880 49557011000036100 Rispa 500 microgram film-coated tablet, 100 48600011000036100 Rispa 500 microgram film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 51482011000036102 risperidone 500 microgram tablet, 100 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +39405011000036106 Quinapril (Generic Health) 5 mg film-coated tablet, 30, blister pack 133199 39289011000036106 Quinapril (Generic Health) 5 mg film-coated tablet, 30 39206011000036103 Quinapril (Generic Health) 5 mg film-coated tablet 39184011000036107 Quinapril (Generic Health) 39184011000036107 Quinapril (Generic Health) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +1107521000168102 Syquet 200 mg film-coated tablet, 20, blister pack 203593 1107511000168109 Syquet 200 mg film-coated tablet, 20 15311000036109 Syquet 200 mg film-coated tablet 15261000036101 Syquet 15261000036101 Syquet 652161000168108 quetiapine 200 mg tablet, 20 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +68978011000036104 Nurofen Period Pain 200 mg film-coated tablet, 24, blister pack 134618 66780011000036109 Nurofen Period Pain 200 mg film-coated tablet, 24 65504011000036102 Nurofen Period Pain 200 mg film-coated tablet 24371000168100 Nurofen Period Pain 24371000168100 Nurofen Period Pain 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +953311000168101 Gabapentin (AN) 400 mg hard capsule, 10, blister pack 263842 953301000168104 Gabapentin (AN) 400 mg hard capsule, 10 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953291000168100 gabapentin 400 mg capsule, 10 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +751731000168102 Brevibloc 2.5 g/10 mL concentrated injection, 10 mL ampoule 43493 751721000168100 Brevibloc 2.5 g/10 mL concentrated injection, 10 mL ampoule 751701000168109 Brevibloc 2.5 g/10 mL concentrated injection, 10 mL ampoule 39685011000036107 Brevibloc 39685011000036107 Brevibloc 751711000168107 esmolol hydrochloride 2.5 g/10 mL injection, 10 mL ampoule 751691000168109 esmolol hydrochloride 2.5 g/10 mL injection, ampoule 44945011000036102 esmolol +86838011000036103 Disodium Edetate (Phebra) 30 mg/mL concentrated injection, 10 x 1 mL vials 86731011000036105 Disodium Edetate (Phebra) 30 mg/mL concentrated injection, 10 x 1 mL vials 86619011000036108 Disodium Edetate (Phebra) 30 mg/mL concentrated injection, vial 86585011000036103 Disodium Edetate (Phebra) 86585011000036103 Disodium Edetate (Phebra) 87001011000036100 edetate disodium 30 mg/mL injection, 10 x 1 mL vials 86914011000036108 edetate disodium 30 mg/mL injection, vial 85074011000036106 edetic acid +19465011000036109 Tomudex 2 mg powder for injection, 1 vial 54638 12742011000036106 Tomudex 2 mg powder for injection, 1 vial 6036011000036105 Tomudex 2 mg powder for injection, 2 mg vial 3150011000036107 Tomudex 3150011000036107 Tomudex 27327011000036108 raltitrexed 2 mg injection, 1 vial 22680011000036106 raltitrexed 2 mg injection, vial 21754011000036102 raltitrexed +933216131000036107 Propofol (HX) 1 g/100 mL injection emulsion, 100 mL vial 79585 933205771000036100 Propofol (HX) 1 g/100 mL injection emulsion, 100 mL vial 933196761000036103 Propofol (HX) 1 g/100 mL injection emulsion, 100 mL vial 933193851000036100 Propofol (HX) 933193851000036100 Propofol (HX) 38833011000036109 propofol 1 g/100 mL injection, 100 mL vial 38038011000036100 propofol 1 g/100 mL injection, vial 37750011000036109 propofol +1034701000168107 Atelvia EC Once-a-Week 35 mg enteric tablet, 2, blister pack 166841 1034691000168107 Atelvia EC Once-a-Week 35 mg enteric tablet, 2 1034661000168100 Atelvia EC Once-a-Week 35 mg enteric tablet 1034651000168102 Atelvia EC Once-a-Week 1034651000168102 Atelvia EC Once-a-Week 801831000168104 risedronate sodium 35 mg enteric tablet, 2 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +899761000168100 Mucoclear 3% (120 mg/4 mL) inhalation solution, 20 x 4 mL ampoules 209499 899751000168102 Mucoclear 3% (120 mg/4 mL) inhalation solution, 20 x 4 mL ampoules 899731000168108 Mucoclear 3% (120 mg/4 mL) inhalation solution, 4 mL ampoule 899581000168103 Mucoclear 899581000168103 Mucoclear 899741000168104 sodium chloride 3% (120 mg/4 mL) inhalation solution, 20 x 4 mL ampoules 899721000168105 sodium chloride 3% (120 mg/4 mL) inhalation solution, ampoule 21308011000036103 sodium chloride +95631000036106 Nevirapine (RBX) 200 mg uncoated tablet, 100, blister pack 195528 94511000036102 Nevirapine (RBX) 200 mg uncoated tablet, 100 93601000036103 Nevirapine (RBX) 200 mg uncoated tablet 93341000036105 Nevirapine (RBX) 93341000036105 Nevirapine (RBX) 94521000036109 nevirapine 200 mg tablet, 100 22732011000036106 nevirapine 200 mg tablet 21551011000036104 nevirapine +923081000168108 Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 280, bottle 190325 923071000168105 Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 280 923061000168104 Clopidogrel/Aspirin 75/100 (Apo) coated tablet 62631000168105 Clopidogrel/Aspirin 75/100 (Apo) 62631000168105 Clopidogrel/Aspirin 75/100 (Apo) 82548011000036104 clopidogrel 75 mg + aspirin 100 mg tablet, 280 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +918791000168109 Rosuvastatin (Generic Health) 40 mg film-coated tablet, 30, blister pack 210833 918781000168106 Rosuvastatin (Generic Health) 40 mg film-coated tablet, 30 918771000168108 Rosuvastatin (Generic Health) 40 mg film-coated tablet 918641000168106 Rosuvastatin (Generic Health) 918641000168106 Rosuvastatin (Generic Health) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +929001011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 20, blister pack 158915 928362011000036105 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet, 20 927958011000036102 Valaciclovir (Terry White Chemists) 500 mg film-coated tablet 927782011000036103 Valaciclovir (Terry White Chemists) 927782011000036103 Valaciclovir (Terry White Chemists) 929217011000036104 valaciclovir 500 mg tablet, 20 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +95611000036102 Panadol Optizorb 500 mg film-coated tablet, 50, blister pack 186245 94501000036104 Panadol Optizorb 500 mg film-coated tablet, 50 93671000036107 Panadol Optizorb 500 mg film-coated tablet 18201000168104 Panadol Optizorb 18201000168104 Panadol Optizorb 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18981011000036105 Flopen 500 mg powder for injection, 5 vials 29392 12289011000036104 Flopen 500 mg powder for injection, 5 vials 4773011000036106 Flopen 500 mg powder for injection, 500 mg vial 3750011000036102 Flopen 3750011000036102 Flopen 28100011000036101 flucloxacillin 500 mg injection, 5 vials 23408011000036104 flucloxacillin 500 mg injection, vial 21623011000036108 flucloxacillin +1072951000168103 Pantoprazole (Generic Health) 20 mg enteric tablet, 60, blister pack 191032 1072941000168100 Pantoprazole (Generic Health) 20 mg enteric tablet, 60 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46678011000036102 pantoprazole 20 mg enteric tablet, 60 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +44596011000036105 Vfend 50 mg film-coated tablet, 30, blister pack 82507 42049011000036100 Vfend 50 mg film-coated tablet, 30 40334011000036109 Vfend 50 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46817011000036103 voriconazole 50 mg tablet, 30 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +69081011000036107 Canesten Clotrimazole Anti-Fungal 1% cream, 50 g, tube 145387 66882011000036105 Canesten Clotrimazole Anti-Fungal 1% cream, 50 g 65515011000036101 Canesten Clotrimazole Anti-Fungal 1% cream 25741000168109 Canesten Clotrimazole Anti-Fungal 25741000168109 Canesten Clotrimazole Anti-Fungal 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +781991000168108 Voriconazole (Alphapharm) 50 mg film-coated tablet, 14, blister pack 206984 781981000168105 Voriconazole (Alphapharm) 50 mg film-coated tablet, 14 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46813011000036107 voriconazole 50 mg tablet, 14 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +135891000036105 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) uncoated tablet, 30, bottle 196447 135311000036107 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) uncoated tablet, 30 134371000036102 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) uncoated tablet 16351000168109 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) 16351000168109 Candesartan Cilexetil HCT 32/12.5 (Pharmacor) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +918831000168103 Doxycycline (Apo) 50 mg uncoated tablet, 25, blister pack 78597 918821000168101 Doxycycline (Apo) 50 mg uncoated tablet, 25 918811000168108 Doxycycline (Apo) 50 mg uncoated tablet 918801000168105 Doxycycline (Apo) 918801000168105 Doxycycline (Apo) 28277011000036105 doxycycline 50 mg tablet, 25 23591011000036104 doxycycline 50 mg tablet 21784011000036108 doxycycline +19200011000036103 Kalma 1 mg uncoated tablet, 50, blister pack 46840 12490011000036105 Kalma 1 mg uncoated tablet, 50 5340011000036107 Kalma 1 mg uncoated tablet 3585011000036103 Kalma 3585011000036103 Kalma 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +1064291000168104 Strong Pain Relief (Trust) uncoated tablet, 20, blister pack 201679 1064281000168102 Strong Pain Relief (Trust) uncoated tablet, 20 1064231000168103 Strong Pain Relief (Trust) uncoated tablet 1064221000168101 Strong Pain Relief (Trust) 1064221000168101 Strong Pain Relief (Trust) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +19223011000036104 Zofran 8 mg/4 mL injection solution, 4 mL ampoule 47264 12513011000036105 Zofran 8 mg/4 mL injection solution, 4 mL ampoule 5196011000036106 Zofran 8 mg/4 mL injection solution, 4 mL ampoule 2471000168108 Zofran 2471000168108 Zofran 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +653411000168106 Ferinject 100 mg/2 mL injection solution, 5 x 2 mL vials 162636 653401000168108 Ferinject 100 mg/2 mL injection solution, 5 x 2 mL vials 653351000168101 Ferinject 100 mg/2 mL injection solution, 2 mL vial 48071000036102 Ferinject 48071000036102 Ferinject 653391000168106 iron (as ferric carboxymaltose) 100 mg/2 mL injection, 5 x 2 mL vials 653341000168103 iron (as ferric carboxymaltose) 100 mg/2 mL injection, vial 56811000036102 ferric carboxymaltose +60071011000036100 Vermox 100 mg uncoated tablet, 2, blister pack 125654 56033011000036106 Vermox 100 mg uncoated tablet, 2 4928011000036105 Vermox 100 mg uncoated tablet 19531000168104 Vermox 19531000168104 Vermox 63642011000036101 mebendazole 100 mg tablet, 2 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +69531011000036103 Egozite Protective Baby 15% lotion, 250 mL, bottle 56806 67331011000036106 Egozite Protective Baby 15% lotion, 250 mL 65615011000036107 Egozite Protective Baby 15% lotion 65110011000036102 Egozite Protective Baby 65110011000036102 Egozite Protective Baby 71876011000036100 dimeticone-350 15% lotion, 250 mL 70228011000036103 dimeticone-350 15% lotion 69855011000036101 dimeticone-350 +926654011000036109 Univent Cipule 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 115657 926100011000036108 Univent Cipule 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 925613011000036104 Univent Cipule 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 5841000168105 Univent Cipule 5841000168105 Univent Cipule 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +1025801000168103 Pregabalin (Amneal) 25 mg hard capsule, 21, blister pack 235857 1025791000168104 Pregabalin (Amneal) 25 mg hard capsule, 21 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 854731000168102 pregabalin 25 mg capsule, 21 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1060321000168101 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 84, blister pack 234539 1060311000168108 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 84 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911641000168100 rosuvastatin 20 mg tablet, 84 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +60053011000036102 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 200 mL, bottle 12460 56015011000036104 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 200 mL 53758011000036105 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 120 mg/5 mL oral liquid suspension, 5 mL 26681000168103 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 26681000168103 Paracetamol Pain and Fever 1 to 5 Years (Chemists' Own) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +44434011000036104 Viramune 10 mg/mL oral liquid suspension, 240 mL, bottle 72099 41890011000036103 Viramune 10 mg/mL oral liquid suspension, 240 mL 40245011000036101 Viramune 10 mg/mL oral liquid suspension 7221000168106 Viramune 7221000168106 Viramune 46692011000036105 nevirapine 10 mg/mL oral liquid, 240 mL 45268011000036105 nevirapine 10 mg/mL oral liquid 21551011000036104 nevirapine +69323011000036101 Magnesium Sulfate (Phebra) 5 g/10 mL concentrated injection, 10 x 10 mL vials 23076 67123011000036102 Magnesium Sulfate (Phebra) 5 g/10 mL concentrated injection, 10 x 10 mL vials 65386011000036109 Magnesium Sulfate (Phebra) 5 g/10 mL concentrated injection, 10 mL vial 65012011000036106 Magnesium Sulfate (Phebra) 65012011000036106 Magnesium Sulfate (Phebra) 71688011000036103 magnesium sulfate heptahydrate 5 g/10 mL injection, 10 x 10 mL vials 70127011000036102 magnesium sulfate heptahydrate 5 g/10 mL injection, vial 69777011000036105 magnesium sulfate heptahydrate +69323011000036101 Magnesium Sulfate (Phebra) 5 g/10 mL concentrated injection, 10 x 10 mL vials 160885 67123011000036102 Magnesium Sulfate (Phebra) 5 g/10 mL concentrated injection, 10 x 10 mL vials 65386011000036109 Magnesium Sulfate (Phebra) 5 g/10 mL concentrated injection, 10 mL vial 65012011000036106 Magnesium Sulfate (Phebra) 65012011000036106 Magnesium Sulfate (Phebra) 71688011000036103 magnesium sulfate heptahydrate 5 g/10 mL injection, 10 x 10 mL vials 70127011000036102 magnesium sulfate heptahydrate 5 g/10 mL injection, vial 69777011000036105 magnesium sulfate heptahydrate +1060361000168106 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 100, blister pack 234539 1058771000168106 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 100 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910711000168103 rosuvastatin 20 mg tablet, 100 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +928890011000036107 Trandolapril (Pharmacor) 500 microgram capsule, 28, blister pack 145231 928252011000036107 Trandolapril (Pharmacor) 500 microgram capsule, 28 927905011000036103 Trandolapril (Pharmacor) 500 microgram capsule 927809011000036107 Trandolapril (Pharmacor) 927809011000036107 Trandolapril (Pharmacor) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +37971000036101 Escitalopram (Lupin) 5 mg film-coated tablet, 30, bottle 165825 34291000036100 Escitalopram (Lupin) 5 mg film-coated tablet, 30 32931000036101 Escitalopram (Lupin) 5 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +34824011000036108 Flucil 500 mg powder for injection, 5 vials 90879 34399011000036100 Flucil 500 mg powder for injection, 5 vials 34074011000036108 Flucil 500 mg powder for injection, 500 mg vial 33956011000036109 Flucil 33956011000036109 Flucil 28100011000036101 flucloxacillin 500 mg injection, 5 vials 23408011000036104 flucloxacillin 500 mg injection, vial 21623011000036108 flucloxacillin +83392011000036103 Nebilet 10 mg tablet, 28, blister pack 148875 83316011000036103 Nebilet 10 mg tablet, 28 83248011000036103 Nebilet 10 mg tablet 83226011000036104 Nebilet 83226011000036104 Nebilet 83489011000036100 nebivolol 10 mg tablet, 28 83432011000036104 nebivolol 10 mg tablet 83418011000036105 nebivolol +31491000036102 Actiq 800 microgram lozenge on handle, 9, blister pack 91602 29351000036101 Actiq 800 microgram lozenge on handle, 9 34078011000036101 Actiq 800 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 29361000036103 fentanyl 800 microgram lozenge on handle, 9 34913011000036106 fentanyl 800 microgram lozenge on handle 21258011000036102 fentanyl +69104011000036100 Blistex Medicated Lip ointment, 2.25 g, tube 14883 66905011000036108 Blistex Medicated Lip ointment, 2.25 g 65334011000036108 Blistex Medicated Lip ointment 64950011000036104 Blistex Medicated Lip 64950011000036104 Blistex Medicated Lip 71499011000036108 padimate-O 7.5% + oxybenzone 2% + camphor 1% ointment, 2.25 g 70039011000036104 padimate-O 7.5% + oxybenzone 2% + camphor 1% ointment 69822011000036105 padimate-O + oxybenzone + camphor +68862011000036102 Panadol Cold and Flu Max lemon 1 g powder for oral liquid, 10 sachets 131524 66742011000036103 Panadol Cold and Flu Max lemon 1 g powder for oral liquid, 10 sachets 65220011000036107 Panadol Cold and Flu Max lemon 1 g powder for oral liquid, 1 sachet 3961000168101 Panadol Cold and Flu Max 3961000168101 Panadol Cold and Flu Max 71932011000036108 paracetamol 1 g powder for oral liquid, 10 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +86187011000036102 Certican 1 mg uncoated tablet, 120, blister pack 97516 85794011000036100 Certican 1 mg uncoated tablet, 120 85407011000036100 Certican 1 mg uncoated tablet 4369011000036100 Certican 4369011000036100 Certican 86476011000036106 everolimus 1 mg tablet, 120 86248011000036105 everolimus 1 mg tablet 21615011000036103 everolimus +135731000036102 Lorazepam (Apo) 2.5 mg uncoated tablet, 50, blister pack 173223 135121000036103 Lorazepam (Apo) 2.5 mg uncoated tablet, 50 134201000036104 Lorazepam (Apo) 2.5 mg uncoated tablet 134101000036109 Lorazepam (Apo) 134101000036109 Lorazepam (Apo) 38547011000036100 lorazepam 2.5 mg tablet, 50 37827011000036109 lorazepam 2.5 mg tablet 37711011000036105 lorazepam +786331000168101 Oxynorm 200 mg/20 mL injection solution, 4 x 20 mL ampoules 152412 786321000168104 Oxynorm 200 mg/20 mL injection solution, 4 x 20 mL ampoules 786301000168108 Oxynorm 200 mg/20 mL injection solution, 20 mL ampoule 4209011000036106 Oxynorm 4209011000036106 Oxynorm 786311000168106 oxycodone hydrochloride 200 mg/20 mL injection, 4 x 20 mL ampoules 786291000168107 oxycodone hydrochloride 200 mg/20 mL injection, ampoule 21259011000036105 oxycodone +933216041000036103 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 3 L, bottle 160736 933205631000036108 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 3 L 933196661000036109 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 933205641000036103 chlorhexidine gluconate 0.12% mouthwash, 3 L 933196671000036101 chlorhexidine gluconate 0.12% mouthwash 21404011000036101 chlorhexidine +933216041000036103 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 3 L, bottle 66275 933205631000036108 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 3 L 933196661000036109 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 933205641000036103 chlorhexidine gluconate 0.12% mouthwash, 3 L 933196671000036101 chlorhexidine gluconate 0.12% mouthwash 21404011000036101 chlorhexidine +12031000036107 Zypine 10 mg film-coated tablet, 28, blister pack 154617 7141000036101 Zypine 10 mg film-coated tablet, 28 3231000036108 Zypine 10 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +721911000168106 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL, bottle 20231 721901000168108 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL 721451000168102 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 63439011000036107 paracetamol 120 mg/5 mL oral liquid, 20 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +721911000168106 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL, bottle 178300 721901000168108 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL 721451000168102 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL 27951000168101 Panadol Children's 1 to 5 Years 27951000168101 Panadol Children's 1 to 5 Years 63439011000036107 paracetamol 120 mg/5 mL oral liquid, 20 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +45751000036101 Simipex 1 mg tablet, 100, blister pack 172021 43071000036109 Simipex 1 mg tablet, 100 41241000036108 Simipex 1 mg tablet 40201000036100 Simipex 40201000036100 Simipex 38827011000036103 pramipexole dihydrochloride monohydrate 1 mg tablet, 100 38034011000036107 pramipexole dihydrochloride monohydrate 1 mg tablet 37716011000036100 pramipexole +732601000168106 Arixtra 5 mg/0.4 mL injection solution, 7 x 0.4 mL syringes 97798 732591000168104 Arixtra 5 mg/0.4 mL injection solution, 7 x 0.4 mL syringes 732571000168100 Arixtra 5 mg/0.4 mL injection solution, 0.4 mL syringe 3651011000036101 Arixtra 3651011000036101 Arixtra 732581000168102 fondaparinux sodium 5 mg/0.4 mL injection, 7 x 0.4 mL syringes 732561000168106 fondaparinux sodium 5 mg/0.4 mL injection, syringe 21445011000036109 fondaparinux +1000261000168101 Tadalafil (Apo) 10 mg film-coated tablet, 4, blister pack 205852 1000251000168103 Tadalafil (Apo) 10 mg film-coated tablet, 4 1000241000168100 Tadalafil (Apo) 10 mg film-coated tablet 1000221000168106 Tadalafil (Apo) 1000221000168106 Tadalafil (Apo) 28012011000036107 tadalafil 10 mg tablet, 4 23335011000036109 tadalafil 10 mg tablet 21725011000036104 tadalafil +781871000168102 Rosuvastatin (Amneal) 40 mg film-coated tablet, 30, blister pack 183647 781861000168108 Rosuvastatin (Amneal) 40 mg film-coated tablet, 30 781851000168106 Rosuvastatin (Amneal) 40 mg film-coated tablet 781711000168102 Rosuvastatin (Amneal) 781711000168102 Rosuvastatin (Amneal) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +20168011000036102 Prazosin (Terry White Chemists) 1 mg uncoated tablet, 100, blister pack 73855 13391011000036103 Prazosin (Terry White Chemists) 1 mg uncoated tablet, 100 6676011000036100 Prazosin (Terry White Chemists) 1 mg uncoated tablet 2969011000036104 Prazosin (Terry White Chemists) 2969011000036104 Prazosin (Terry White Chemists) 27727011000036107 prazosin 1 mg tablet, 100 23062011000036109 prazosin 1 mg tablet 21544011000036104 prazosin +884671000168102 Lamitan 100 mg tablet, 56, blister pack 150753 884661000168108 Lamitan 100 mg tablet, 56 884651000168106 Lamitan 100 mg tablet 884551000168105 Lamitan 884551000168105 Lamitan 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +37544011000036101 Isentress 400 mg film-coated tablet, 60, bottle 140238 36812011000036101 Isentress 400 mg film-coated tablet, 60 36030011000036109 Isentress 400 mg film-coated tablet 35892011000036104 Isentress 35892011000036104 Isentress 38705011000036102 raltegravir 400 mg tablet, 60 37939011000036109 raltegravir 400 mg tablet 37767011000036101 raltegravir +953151000168103 Gabapentin (AN) 300 mg hard capsule, 100, blister pack 263841 953141000168100 Gabapentin (AN) 300 mg hard capsule, 100 952971000168103 Gabapentin (AN) 300 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +786171000168100 Suboxone 12/3 sublingual film, 28, sachet 211120 786161000168106 Suboxone 12/3 sublingual film, 28 786141000168107 Suboxone 12/3 sublingual film 786121000168101 Suboxone 12/3 786121000168101 Suboxone 12/3 786151000168109 buprenorphine 12 mg + naloxone 3 mg sublingual film, 28 786131000168103 buprenorphine 12 mg + naloxone 3 mg sublingual film 21739011000036100 buprenorphine + naloxone +176941000036104 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 5 mg tablets), 1 pack, blister pack 203690 175161000036109 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 5 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 172661000036105 Rosuzet Composite Pack 3589011000036101 Ezetrol 175171000036101 ezetimibe 10 mg tablet [30] (&) rosuvastatin 5 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +176941000036104 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 5 mg tablets), 1 pack, blister pack 203690 175161000036109 Rosuzet Composite Pack (30 x 10 mg tablets, 30 x 5 mg tablets), 1 pack 173281000036105 Rosuvastatin (MSD) 5 mg film-coated tablet 172661000036105 Rosuzet Composite Pack 172631000036104 Rosuvastatin (MSD) 175171000036101 ezetimibe 10 mg tablet [30] (&) rosuvastatin 5 mg tablet [30], 1 pack 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +18140011000036108 Neo-Mercazole 5 mg multilayer tablet, 100, bottle 12121 11662011000036108 Neo-Mercazole 5 mg multilayer tablet, 100 5624011000036106 Neo-Mercazole 5 mg multilayer tablet 3184011000036108 Neo-Mercazole 3184011000036108 Neo-Mercazole 26730011000036108 carbimazole 5 mg tablet, 100 22125011000036106 carbimazole 5 mg tablet 21822011000036105 carbimazole +18140011000036108 Neo-Mercazole 5 mg multilayer tablet, 100, bottle 194296 11662011000036108 Neo-Mercazole 5 mg multilayer tablet, 100 5624011000036106 Neo-Mercazole 5 mg multilayer tablet 3184011000036108 Neo-Mercazole 3184011000036108 Neo-Mercazole 26730011000036108 carbimazole 5 mg tablet, 100 22125011000036106 carbimazole 5 mg tablet 21822011000036105 carbimazole +39341000036102 Oxaliplatin (Pharmacor) 50 mg/10 mL concentrated injection, 10 mL vial 169425 35801000036105 Oxaliplatin (Pharmacor) 50 mg/10 mL concentrated injection, 10 mL vial 32861000036100 Oxaliplatin (Pharmacor) 50 mg/10 mL concentrated injection, 10 mL vial 32311000036109 Oxaliplatin (Pharmacor) 32311000036109 Oxaliplatin (Pharmacor) 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +52178011000036109 Aluminium Acetate APF (extemporaneous) 0.6 mL/mL (equivalent to aluminium acetate 8%) ear drops, 15 mL, dropper container 52059011000036109 Aluminium Acetate APF (extemporaneous) 0.6 mL/mL (equivalent to aluminium acetate 8%) ear drops, 15 mL 51960011000036101 Aluminium Acetate APF (extemporaneous) 0.6 mL/mL (equivalent to aluminium acetate 8%) ear drops 56251000168106 Aluminium Acetate APF (extemporaneous) 56251000168106 Aluminium Acetate APF (extemporaneous) 52308011000036109 aluminium acetate solution 0.6 mL/mL (equivalent to aluminium acetate 8%) ear drops, 15 mL 52240011000036106 aluminium acetate solution 0.6 mL/mL (equivalent to aluminium acetate 8%) ear drops 52227011000036105 aluminium acetate solution +116401000036103 Rosuvastatin (Apo) 20 mg film-coated tablet, 30, blister pack 183057 114741000036102 Rosuvastatin (Apo) 20 mg film-coated tablet, 30 113341000036103 Rosuvastatin (Apo) 20 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +717571000168109 Pemzo 20 mg enteric capsule, 7, blister pack 149517 717561000168103 Pemzo 20 mg enteric capsule, 7 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716871000168105 omeprazole 20 mg enteric capsule, 7 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +926842011000036105 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 10 x 20 mL vials 20034 926238011000036101 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 10 x 20 mL vials 925691011000036104 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 20 mL vial 28191000168109 Optiray-320 28191000168109 Optiray-320 927350011000036107 ioversol 678 mg (iodine 320 mg)/mL injection, 10 x 20 mL vials 927000011000036100 ioversol 678 mg (iodine 320 mg)/mL injection, 20 mL vial 77421011000036103 ioversol +865361000168102 Amitriptyline (CH) 50 mg tablet, 10, blister pack 232126 865351000168104 Amitriptyline (CH) 50 mg tablet, 10 865281000168102 Amitriptyline (CH) 50 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 742201000168107 amitriptyline hydrochloride 50 mg tablet, 10 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +1051701000168106 Palexia SR 50 mg modified release tablet, 60, blister pack 165332 1051691000168106 Palexia SR 50 mg modified release tablet, 60 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051681000168108 tapentadol 50 mg modified release tablet, 60 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +1073111000168106 Vyvanse 20 mg hard capsule, 30, bottle 284019 1073101000168108 Vyvanse 20 mg hard capsule, 30 1073081000168101 Vyvanse 20 mg hard capsule 143261000036104 Vyvanse 143261000036104 Vyvanse 1073091000168103 lisdexamfetamine dimesilate 20 mg capsule, 30 1073071000168104 lisdexamfetamine dimesilate 20 mg capsule 146451000036109 lisdexamfetamine +11991000036103 Carvedilol (GN) 12.5 mg uncoated tablet, 60, blister pack 152439 6711000036104 Carvedilol (GN) 12.5 mg uncoated tablet, 60 1881000036105 Carvedilol (GN) 12.5 mg uncoated tablet 1091000036101 Carvedilol (GN) 1091000036101 Carvedilol (GN) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +888931000168104 Bosentan (Astron) 62.5 mg film-coated tablet, 56, blister pack 235895 888921000168102 Bosentan (Astron) 62.5 mg film-coated tablet, 56 888831000168108 Bosentan (Astron) 62.5 mg film-coated tablet 888691000168108 Bosentan (Astron) 888691000168108 Bosentan (Astron) 878901000168101 bosentan 62.5 mg tablet, 56 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +933088011000036109 Escitalopram (Generic Health) 10 mg film-coated tablet, 28, blister pack 165848 932891011000036108 Escitalopram (Generic Health) 10 mg film-coated tablet, 28 932749011000036100 Escitalopram (Generic Health) 10 mg film-coated tablet 932709011000036106 Escitalopram (Generic Health) 932709011000036106 Escitalopram (Generic Health) 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +987431000168102 Urorec 4 mg hard capsule, 30, blister pack 275256 987421000168100 Urorec 4 mg hard capsule, 30 987371000168106 Urorec 4 mg hard capsule 987341000168104 Urorec 987341000168104 Urorec 987411000168107 silodosin 4 mg capsule, 30 987361000168100 silodosin 4 mg capsule 987351000168102 silodosin +86054011000036105 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 96, blister pack 158156 85738011000036104 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet, 96 85366011000036109 Ibuprofen plus Codeine (Terry White Chemists) film-coated tablet 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 85278011000036107 Ibuprofen plus Codeine (Terry White Chemists) 83005011000036109 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 96 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +970331000168104 Pregabalin (Apo) 150 mg hard capsule, 56, blister pack 193276 970321000168102 Pregabalin (Apo) 150 mg hard capsule, 56 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +20052011000036100 Glucohexal 850 mg film-coated tablet, 60, bottle 148270 13282011000036101 Glucohexal 850 mg film-coated tablet, 60 6565011000036107 Glucohexal 850 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +20052011000036100 Glucohexal 850 mg film-coated tablet, 60, bottle 69659 13282011000036101 Glucohexal 850 mg film-coated tablet, 60 6565011000036107 Glucohexal 850 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +60912011000036106 Emla 5% patch, 20, carton 60820 56866011000036106 Emla 5% patch, 20 54106011000036106 Emla 5% patch 9941000168103 Emla 5% 9941000168103 Emla 5% 63618011000036106 lidocaine (lignocaine) 25 mg/g + prilocaine 2.5% patch, 20 62029011000036109 lidocaine (lignocaine) 25 mg/g + prilocaine 2.5% patch 61738011000036101 lidocaine (lignocaine) + prilocaine +683411000168104 Resotrans 1 mg film-coated tablet, 28, blister pack 176747 683401000168102 Resotrans 1 mg film-coated tablet, 28 683381000168102 Resotrans 1 mg film-coated tablet 683341000168107 Resotrans 683341000168107 Resotrans 683391000168104 prucalopride 1 mg tablet, 28 683371000168100 prucalopride 1 mg tablet 683361000168106 prucalopride +176861000036105 Lemtrada 12 mg/1.2 mL concentrated injection, 1.2 mL vial 200941 175031000036102 Lemtrada 12 mg/1.2 mL concentrated injection, 1.2 mL vial 173311000036108 Lemtrada 12 mg/1.2 mL concentrated injection, 1.2 mL vial 172581000036101 Lemtrada 172581000036101 Lemtrada 175041000036107 alemtuzumab 12 mg/1.2 mL injection, 1.2 mL vial 173321000036101 alemtuzumab 12 mg/1.2 mL injection, vial 44950011000036108 alemtuzumab +786211000168103 Dipyridamole/Aspirin 200/25 (Terry White Chemists) modified release capsule, 60, bottle 210812 786201000168101 Dipyridamole/Aspirin 200/25 (Terry White Chemists) modified release capsule, 60 786191000168104 Dipyridamole/Aspirin 200/25 (Terry White Chemists) modified release capsule 786181000168102 Dipyridamole/Aspirin 200/25 (Terry White Chemists) 786181000168102 Dipyridamole/Aspirin 200/25 (Terry White Chemists) 27629011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule, 60 22967011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule 21386011000036101 dipyridamole + aspirin +34652011000036107 Morphine Sulfate (Phebra) 10 mg/mL injection solution, 50 x 1 mL ampoules 12431 34241011000036101 Morphine Sulfate (Phebra) 10 mg/mL injection solution, 50 x 1 mL ampoules 33982011000036103 Morphine Sulfate (Phebra) 10 mg/mL injection solution, ampoule 33954011000036101 Morphine Sulfate (Phebra) 33954011000036101 Morphine Sulfate (Phebra) 35113011000036103 morphine sulfate pentahydrate 10 mg/mL injection, 50 x 1 mL ampoules 21963011000036104 morphine sulfate pentahydrate 10 mg/mL injection, ampoule 21252011000036100 morphine +848141000168102 Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 219773 848131000168106 Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48 848121000168108 Reddycal 1.25 g (calcium 500 mg) film-coated tablet 691531000168105 Reddycal 691531000168105 Reddycal 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +1008761000168109 Risedronate (Apotex) 35 mg film-coated tablet, 12, blister pack 160636 1008751000168107 Risedronate (Apotex) 35 mg film-coated tablet, 12 1008481000168107 Risedronate (Apotex) 35 mg film-coated tablet 1008471000168109 Risedronate (Apotex) 1008471000168109 Risedronate (Apotex) 929233011000036102 risedronate sodium 35 mg tablet, 12 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +20917011000036101 Oxycontin 5 mg modified release tablet, 20, blister pack 93732 14071011000036107 Oxycontin 5 mg modified release tablet, 20 7349011000036100 Oxycontin 5 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 28126011000036108 oxycodone hydrochloride 5 mg modified release tablet, 20 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +91201000036104 Monistat-7 2% vaginal cream, 40 g, tube 13307 89501000036101 Monistat-7 2% vaginal cream, 40 g 88461000036106 Monistat-7 2% vaginal cream 87601000036106 Monistat-7 87601000036106 Monistat-7 89511000036104 miconazole nitrate 2% vaginal cream, 40 g 88471000036103 miconazole nitrate 2% vaginal cream 21454011000036108 miconazole +68770011000036107 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bottle 118486 66636011000036108 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bottle 65439011000036100 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bottle 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 71346011000036101 glucose 5% (50 g/L) injection, 1 L bottle 69965011000036103 glucose 5% (50 g/L) injection, bottle 21354011000036103 glucose +79072011000036106 Ramipril (Terry White Chemists) 2.5 mg tablet, 30, blister pack 150896 78854011000036104 Ramipril (Terry White Chemists) 2.5 mg tablet, 30 78660011000036107 Ramipril (Terry White Chemists) 2.5 mg tablet 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +79072011000036106 Ramipril (Terry White Chemists) 2.5 mg tablet, 30, blister pack 231167 78854011000036104 Ramipril (Terry White Chemists) 2.5 mg tablet, 30 78660011000036107 Ramipril (Terry White Chemists) 2.5 mg tablet 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +95471000036106 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet, 10, blister pack 185976 94361000036108 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet, 10 93661000036104 Fexofenadine Hydrochloride (Pharmacy Choice) 120 mg film-coated tablet 93211000036103 Fexofenadine Hydrochloride (Pharmacy Choice) 93211000036103 Fexofenadine Hydrochloride (Pharmacy Choice) 52882011000036105 fexofenadine hydrochloride 120 mg tablet, 10 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +833211000168104 Centrum film-coated tablet, 115, bottle 75827 833201000168102 Centrum film-coated tablet, 115 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833191000168100 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 115 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +14091000036102 Olanzapine ODT (GA) 5 mg orally disintegrating tablet, 28, blister pack 179090 7741000036100 Olanzapine ODT (GA) 5 mg orally disintegrating tablet, 28 3711000036109 Olanzapine ODT (GA) 5 mg orally disintegrating tablet 26831000168100 Olanzapine ODT (GA) 26831000168100 Olanzapine ODT (GA) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +20577011000036104 Pendine 300 mg hard capsule, 100, blister pack 80335 13766011000036106 Pendine 300 mg hard capsule, 100 7051011000036102 Pendine 300 mg hard capsule 3027011000036103 Pendine 3027011000036103 Pendine 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +43708011000036108 Gabaran 600 mg film-coated tablet, 100, bottle 121834 41264011000036104 Gabaran 600 mg film-coated tablet, 100 4826011000036103 Gabaran 600 mg film-coated tablet 4184011000036106 Gabaran 4184011000036106 Gabaran 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +786051000168105 Fentanyl (Watson) 100 microgram/hour patch, 5, sachet 190798 786041000168108 Fentanyl (Watson) 100 microgram/hour patch, 5 786031000168104 Fentanyl (Watson) 100 microgram/hour patch 785901000168104 Fentanyl (Watson) 785901000168104 Fentanyl (Watson) 26652011000036104 fentanyl 100 microgram/hour patch, 5 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +82521000036104 Gastrex 2 mg hard capsule, 12, blister pack 196267 80721000036109 Gastrex 2 mg hard capsule, 12 78731000036100 Gastrex 2 mg hard capsule 77901000036108 Gastrex 77901000036108 Gastrex 27212011000036107 loperamide hydrochloride 2 mg capsule, 12 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +37891000036109 Epicin 10 mg/5 mL concentrated injection, 5 mL vial 165690 34181000036109 Epicin 10 mg/5 mL concentrated injection, 5 mL vial 32771000036102 Epicin 10 mg/5 mL concentrated injection, 5 mL vial 32261000036101 Epicin 32261000036101 Epicin 27069011000036106 epirubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22437011000036104 epirubicin hydrochloride 10 mg/5 mL injection, vial 21230011000036100 epirubicin +21061011000036109 Simvahexal 40 mg film-coated tablet, 30, bottle 97051 14206011000036101 Simvahexal 40 mg film-coated tablet, 30 7487011000036108 Simvahexal 40 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +104151000036102 Irbesartan (Chemmart) 75 mg tablet, 30, blister pack 216056 101331000036106 Irbesartan (Chemmart) 75 mg tablet, 30 98821000036103 Irbesartan (Chemmart) 75 mg tablet 97631000036103 Irbesartan (Chemmart) 97631000036103 Irbesartan (Chemmart) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +104151000036102 Irbesartan (Chemmart) 75 mg tablet, 30, blister pack 169791 101331000036106 Irbesartan (Chemmart) 75 mg tablet, 30 98821000036103 Irbesartan (Chemmart) 75 mg tablet 97631000036103 Irbesartan (Chemmart) 97631000036103 Irbesartan (Chemmart) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +657681000168106 Telmisartan/HCT 80mg/12.5mg (Sandoz) film-coated tablet, 28, blister pack 201359 657671000168108 Telmisartan/HCT 80mg/12.5mg (Sandoz) film-coated tablet, 28 657661000168102 Telmisartan/HCT 80mg/12.5mg (Sandoz) film-coated tablet 657651000168104 Telmisartan/HCT 80mg/12.5mg (Sandoz) 657651000168104 Telmisartan/HCT 80mg/12.5mg (Sandoz) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +86170011000036109 Iodine 1% in Alcohol 70% (Orion) application, 100 mL, bottle 21232 85778011000036101 Iodine 1% in Alcohol 70% (Orion) application, 100 mL 85392011000036108 Iodine 1% in Alcohol 70% (Orion) application 56911000168103 Iodine 1% in Alcohol 70% (Orion) 56911000168103 Iodine 1% in Alcohol 70% (Orion) 86462011000036100 potassium iodide 1% + iodine 1% + ethanol 70% application, 100 mL 86235011000036100 potassium iodide 1% + iodine 1% + ethanol 70% application 86197011000036101 iodine + ethanol +20536011000036100 Colofac 135 mg sugar coated tablet, 90, blister pack 79335 13734011000036107 Colofac 135 mg sugar coated tablet, 90 7017011000036102 Colofac 135 mg sugar coated tablet 4179011000036101 Colofac 4179011000036101 Colofac 27905011000036102 mebeverine hydrochloride 135 mg tablet, 90 23230011000036107 mebeverine hydrochloride 135 mg tablet 21801011000036109 mebeverine +933841000168108 Centevo 200/50/200 mg film-coated tablet, 150, bottle 238859 933831000168104 Centevo 200/50/200 mg film-coated tablet, 150 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933821000168102 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 150 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +14131000036104 Trovas 20 mg film-coated tablet, 30, bottle 179834 7761000036104 Trovas 20 mg film-coated tablet, 30 2421000036100 Trovas 20 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +957401000168104 Amlodipine (Genepharm) 10 mg uncoated tablet, 30, blister pack 135139 957391000168101 Amlodipine (Genepharm) 10 mg uncoated tablet, 30 957381000168104 Amlodipine (Genepharm) 10 mg uncoated tablet 940991000168103 Amlodipine (Genepharm) 940991000168103 Amlodipine (Genepharm) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +91181000036103 Cyproterone Acetate (Sandoz) 50 mg uncoated tablet, 20, bottle 107330 89471000036109 Cyproterone Acetate (Sandoz) 50 mg uncoated tablet, 20 88621000036100 Cyproterone Acetate (Sandoz) 50 mg uncoated tablet 77831000036106 Cyproterone Acetate (Sandoz) 77831000036106 Cyproterone Acetate (Sandoz) 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +82908011000036100 Zoladex 10.8 mg implant, 1, syringe 55242 82800011000036108 Zoladex 10.8 mg implant, 1 4709011000036102 Zoladex 10.8 mg implant 3435011000036101 Zoladex 3435011000036101 Zoladex 83015011000036106 goserelin 10.8 mg implant, 1 22169011000036104 goserelin 10.8 mg implant 21305011000036109 goserelin +86861000036107 Artiss solution, 4 mL, dual chamber syringe 163515 86531000036103 Artiss solution, 4 mL 86041000036100 Artiss solution 85941000036108 Artiss 85941000036108 Artiss 86541000036108 aprotinin 3000 KI units/mL + factor XIII 10 units/mL + fibrinogen 110 mg/mL + human thrombin 4 units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL solution, 4 mL 86051000036102 aprotinin 3000 KI units/mL + factor XIII 10 units/mL + fibrinogen 110 mg/mL + human thrombin 4 units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL solution 91891000036106 aprotinin + factor XIII + fibrinogen + human thrombin + calcium chloride dihydrate +848181000168107 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 24 x Reddycal tablets), 1 pack, composite pack 222679 848171000168109 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 24 x Reddycal tablets), 1 pack 172301000036102 Alendronate Plus D3 70 mg/140 microgram (DRLA) uncoated tablet 691591000168109 Reddymax Plus D-Cal 39451000168100 Alendronate Plus D3 70 mg/140 microgram (DRLA) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +848181000168107 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 24 x Reddycal tablets), 1 pack, composite pack 222679 848171000168109 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 24 x Reddycal tablets), 1 pack 848121000168108 Reddycal 1.25 g (calcium 500 mg) film-coated tablet 691591000168109 Reddymax Plus D-Cal 691531000168105 Reddycal 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +103991000036105 Arazil 10 mg film-coated tablet, 28, bottle 167694 101451000036106 Arazil 10 mg film-coated tablet, 28 98361000036101 Arazil 10 mg film-coated tablet 97671000036101 Arazil 97671000036101 Arazil 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +687431000168103 Memantine (RBX) 10 mg film-coated tablet, 56, blister pack 201743 687421000168101 Memantine (RBX) 10 mg film-coated tablet, 56 687411000168108 Memantine (RBX) 10 mg film-coated tablet 687401000168105 Memantine (RBX) 687401000168105 Memantine (RBX) 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +46151000036109 Atorvastatin (SCP) 80 mg film-coated tablet, 30, blister pack 180331 43431000036101 Atorvastatin (SCP) 80 mg film-coated tablet, 30 40811000036102 Atorvastatin (SCP) 80 mg film-coated tablet 40271000036109 Atorvastatin (SCP) 40271000036109 Atorvastatin (SCP) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +739371000168103 Fintab 1 mg film-coated tablet, 126, blister pack 173216 739361000168109 Fintab 1 mg film-coated tablet, 126 739341000168105 Fintab 1 mg film-coated tablet 739321000168104 Fintab 739321000168104 Fintab 739351000168107 finasteride 1 mg tablet, 126 45216011000036105 finasteride 1 mg tablet 21896011000036102 finasteride +60428011000036101 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 3 sachets 146071 56387011000036108 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 3 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63333011000036101 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 3 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +1015201000168105 Aripiprazole (GH) 5 mg uncoated tablet, 30, blister pack 176806 1015191000168107 Aripiprazole (GH) 5 mg uncoated tablet, 30 1015181000168109 Aripiprazole (GH) 5 mg uncoated tablet 991000036104 Aripiprazole (GH) 991000036104 Aripiprazole (GH) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +59944011000036106 Sudafed PE Sinus and Pain Relief film-coated tablet, 48, blister pack 119994 55906011000036103 Sudafed PE Sinus and Pain Relief film-coated tablet, 48 53711011000036109 Sudafed PE Sinus and Pain Relief film-coated tablet 53525011000036104 Sudafed PE Sinus and Pain Relief 53525011000036104 Sudafed PE Sinus and Pain Relief 63181011000036101 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 48 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +14001000036105 Olanzapine (PS) 10 mg film-coated tablet, 28, blister pack 179000 7671000036102 Olanzapine (PS) 10 mg film-coated tablet, 28 1891000036107 Olanzapine (PS) 10 mg film-coated tablet 17601000168102 Olanzapine (PS) 17601000168102 Olanzapine (PS) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +14041000036108 Ramipril (Terry White Chemists) 10 mg capsule, 30, blister pack 179017 7691000036103 Ramipril (Terry White Chemists) 10 mg capsule, 30 3811000036103 Ramipril (Terry White Chemists) 10 mg capsule 78593011000036108 Ramipril (Terry White Chemists) 78593011000036108 Ramipril (Terry White Chemists) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +68689011000036102 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 1.21 kg, jar 10184 66481011000036107 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 1.21 kg 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71214011000036105 psyllium husk powder 312.8 mg/g powder for oral liquid, 1.21 kg 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +933216291000036102 Robitussin Chesty Cough 200 mg/10 mL oral liquid solution, 200 mL, bottle 98291 933206031000036106 Robitussin Chesty Cough 200 mg/10 mL oral liquid solution, 200 mL 933196861000036108 Robitussin Chesty Cough 200 mg/10 mL oral liquid solution, 10 mL 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 933206041000036101 guaifenesin 200 mg/10 mL oral liquid, 200 mL 933196871000036100 guaifenesin 200 mg/10 mL oral liquid 61763011000036101 guaifenesin +652951000168108 Panadeine uncoated tablet, 40, blister pack 15478 652941000168106 Panadeine uncoated tablet, 40 53950011000036101 Panadeine uncoated tablet 13481000168104 Panadeine 13481000168104 Panadeine 652931000168102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +60895011000036105 Mersyndol Daystrength uncoated tablet, 2, blister pack 59985 56849011000036109 Mersyndol Daystrength uncoated tablet, 2 54099011000036108 Mersyndol Daystrength uncoated tablet 44331000168100 Mersyndol Daystrength 44331000168100 Mersyndol Daystrength 63610011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 2 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +44768011000036105 Repreve 2 mg film-coated tablet, 84, blister pack 96870 42213011000036101 Repreve 2 mg film-coated tablet, 84 40393011000036100 Repreve 2 mg film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 46973011000036106 ropinirole 2 mg tablet, 84 45366011000036100 ropinirole 2 mg tablet 44882011000036106 ropinirole +756531000168103 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, 2 sachets 220585 756521000168101 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, 2 sachets 704791000168105 Macrogol plus Electrolytes (Chemists' Own) Flavoured powder for oral liquid, sachet 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 704751000168100 Macrogol plus Electrolytes (Chemists' Own) 669021000168104 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 2 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +933215971000036104 Aggrastat 12.5 mg/50 mL concentrated injection, 50 mL vial 65162 933205511000036103 Aggrastat 12.5 mg/50 mL concentrated injection, 50 mL vial 933196611000036107 Aggrastat 12.5 mg/50 mL concentrated injection, 50 mL vial 3644011000036101 Aggrastat 3644011000036101 Aggrastat 27553011000036101 tirofiban 12.5 mg/50 mL injection, 50 mL vial 22892011000036102 tirofiban 12.5 mg/50 mL injection, vial 21609011000036103 tirofiban +18433011000036100 Inspra 50 mg film-coated tablet, 30, blister pack 100163 11143011000036108 Inspra 50 mg film-coated tablet, 30 5967011000036109 Inspra 50 mg film-coated tablet 3018011000036108 Inspra 3018011000036108 Inspra 26534011000036102 eplerenone 50 mg tablet, 30 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +31171000036105 Irbesartan (Sigma) 150 mg film-coated tablet, 30, blister pack 171463 28411000036104 Irbesartan (Sigma) 150 mg film-coated tablet, 30 26661000036100 Irbesartan (Sigma) 150 mg film-coated tablet 26081000036104 Irbesartan (Sigma) 26081000036104 Irbesartan (Sigma) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +18525011000036109 Vepesid 50 mg capsule, 20, blister pack 10233 11254011000036105 Vepesid 50 mg capsule, 20 4836011000036100 Vepesid 50 mg capsule 3683011000036107 Vepesid 3683011000036107 Vepesid 26571011000036103 etoposide 50 mg capsule, 20 21979011000036109 etoposide 50 mg capsule 21469011000036104 etoposide +44723011000036108 Chirocaine 250 mg/200 mL injection solution, 5 x 200 mL bags 94482 42168011000036105 Chirocaine 250 mg/200 mL injection solution, 5 x 200 mL bags 40373011000036109 Chirocaine 250 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46929011000036105 levobupivacaine 250 mg/200 mL injection, 5 x 200 mL bags 45348011000036105 levobupivacaine 250 mg/200 mL injection, bag 44881011000036100 levobupivacaine +931503011000036106 Omacor 1 g soft capsule, 28, bottle 155717 930664011000036105 Omacor 1 g soft capsule, 28 929995011000036109 Omacor 1 g soft capsule 929850011000036100 Omacor 929850011000036100 Omacor 932385011000036109 omega-3-acid ethyl esters-90 1 g capsule, 28 931840011000036108 omega-3-acid ethyl esters-90 1 g capsule 931804011000036107 omega-3-acid ethyl esters-90 +897101000168109 Sodium Ascorbate (Biological Therapies) 30 g/100 mL injection solution, 100 mL vial 47757 897091000168104 Sodium Ascorbate (Biological Therapies) 30 g/100 mL injection solution, 100 mL vial 897071000168100 Sodium Ascorbate (Biological Therapies) 30 g/100 mL injection solution, 100 mL vial 60491000036103 Sodium Ascorbate (Biological Therapies) 60491000036103 Sodium Ascorbate (Biological Therapies) 897081000168102 sodium ascorbate 30 g/100 mL injection, 100 mL vial 897061000168106 sodium ascorbate 30 g/100 mL injection, vial 77435011000036104 ascorbic acid +95451000036101 Ostelin Vitamin D 25 microgram (1000 units)/0.5 mL oral liquid solution, 50 mL, bottle 183897 94331000036102 Ostelin Vitamin D 25 microgram (1000 units)/0.5 mL oral liquid solution, 50 mL 93451000036100 Ostelin Vitamin D 25 microgram (1000 units)/0.5 mL oral liquid solution, 0.5 mL 53321000168102 Ostelin Vitamin D 53321000168102 Ostelin Vitamin D 94341000036107 colecalciferol 25 microgram (1000 units)/0.5 mL oral liquid, 50 mL 93461000036102 colecalciferol 25 microgram (1000 units)/0.5 mL oral liquid 77447011000036108 colecalciferol +658001000168105 Ramipril (AN) 10 mg uncoated tablet, 30, bottle 175225 657771000168104 Ramipril (AN) 10 mg uncoated tablet, 30 657761000168105 Ramipril (AN) 10 mg uncoated tablet 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +1025881000168106 Neuroccord 300 mg hard capsule, 500, bottle 235861 1025871000168108 Neuroccord 300 mg hard capsule, 500 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 970771000168102 pregabalin 300 mg capsule, 500 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +931494011000036103 Topiramate (Lupin) 100 mg film-coated tablet, 60, blister pack 155206 928297011000036102 Topiramate (Lupin) 100 mg film-coated tablet, 60 927926011000036100 Topiramate (Lupin) 100 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +50484011000036102 GlucoOz diagnostic strip, 50, bottle 100532 49538011000036100 GlucoOz diagnostic strip, 50 48745011000036108 GlucoOz diagnostic strip 48352011000036102 GlucoOz 48352011000036102 GlucoOz 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +923611000168106 Topiramate (Chemmart) 100 mg film-coated tablet, 60, blister pack 124739 923601000168108 Topiramate (Chemmart) 100 mg film-coated tablet, 60 923591000168101 Topiramate (Chemmart) 100 mg film-coated tablet 922471000168105 Topiramate (Chemmart) 922471000168105 Topiramate (Chemmart) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +968321000168109 Repreve 1 mg film-coated tablet, 84, blister pack 96869 968311000168102 Repreve 1 mg film-coated tablet, 84 968271000168102 Repreve 1 mg film-coated tablet 39696011000036104 Repreve 39696011000036104 Repreve 968301000168100 ropinirole 1 mg tablet, 84 938851000168102 ropinirole 1 mg tablet 44882011000036106 ropinirole +1064131000168108 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 20, blister pack 196532 1064121000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 20 1064071000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +923741011000036105 Gaviscon Lemon chewable tablet, 48, blister pack 156038 923266011000036104 Gaviscon Lemon chewable tablet, 48 922964011000036104 Gaviscon Lemon chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924102011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 48 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +923741011000036105 Gaviscon Lemon chewable tablet, 48, blister pack 119280 923266011000036104 Gaviscon Lemon chewable tablet, 48 922964011000036104 Gaviscon Lemon chewable tablet 5001000168104 Gaviscon 5001000168104 Gaviscon 924102011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet, 48 923945011000036102 sodium alginate 250 mg + sodium bicarbonate 133.5 mg + calcium carbonate 80 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +86849011000036107 Lanolin (Orion) ointment, 20 g, tube 86735011000036107 Lanolin (Orion) ointment, 20 g 86606011000036102 Lanolin (Orion) ointment 86594011000036103 Lanolin (Orion) 86594011000036103 Lanolin (Orion) 87005011000036103 liquid paraffin + water purified + wool fat 60% ointment, 20 g 86918011000036101 liquid paraffin + water purified + wool fat 60% ointment 86898011000036106 liquid paraffin + water purified + wool fat +103901000036102 Irbesartan (Sandoz) 75 mg film-coated tablet, 30, bottle 167404 101261000036105 Irbesartan (Sandoz) 75 mg film-coated tablet, 30 99411000036102 Irbesartan (Sandoz) 75 mg film-coated tablet 98031000036105 Irbesartan (Sandoz) 98031000036105 Irbesartan (Sandoz) 27521011000036103 irbesartan 75 mg tablet, 30 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +104061000036100 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet, 28, bottle 168331 101521000036104 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet, 28 99371000036101 Donepezil Hydrochloride (Apo) 10 mg film-coated tablet 97731000036109 Donepezil Hydrochloride (Apo) 97731000036109 Donepezil Hydrochloride (Apo) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +61137011000036107 Actifed CC Dry Cough 1 mg/mL oral liquid solution, 200 mL, bottle 72948 57080011000036105 Actifed CC Dry Cough 1 mg/mL oral liquid solution, 200 mL 54188011000036106 Actifed CC Dry Cough 1 mg/mL oral liquid solution 7921000168104 Actifed CC Dry Cough 7921000168104 Actifed CC Dry Cough 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +81025011000036105 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 60, bottle 104395 80475011000036108 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 60 80149011000036108 Carvedilol (Sandoz) 6.25 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +970491000168109 Pregabalin (Apo) 150 mg hard capsule, 60, blister pack 193276 970481000168106 Pregabalin (Apo) 150 mg hard capsule, 60 970271000168109 Pregabalin (Apo) 150 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +931417011000036105 Lemsip Max Cold and Flu with Decongestant lemon powder for oral liquid, 10 sachets 133862 930602011000036100 Lemsip Max Cold and Flu with Decongestant lemon powder for oral liquid, 10 sachets 929964011000036108 Lemsip Max Cold and Flu with Decongestant lemon powder for oral liquid, 1 sachet 929917011000036103 Lemsip Max Cold and Flu with Decongestant 929917011000036103 Lemsip Max Cold and Flu with Decongestant 932365011000036106 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 10 sachets 931833011000036101 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 1 sachet 61800011000036107 phenylephrine + paracetamol +44526011000036103 Midazolam (Sandoz) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 78971 41979011000036107 Midazolam (Sandoz) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 40300011000036106 Midazolam (Sandoz) 5 mg/5 mL injection solution, 5 mL ampoule 39557011000036101 Midazolam (Sandoz) 39557011000036101 Midazolam (Sandoz) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +715561000168106 Clozole (Chemists' Own) 1% vaginal cream, 35 g, tube 64917 715551000168109 Clozole (Chemists' Own) 1% vaginal cream, 35 g 715541000168107 Clozole (Chemists' Own) 1% vaginal cream 53325011000036101 Clozole (Chemists' Own) 53325011000036101 Clozole (Chemists' Own) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +1072791000168106 Pantoprazole (Generic Health) 40 mg enteric tablet, 60, blister pack 191033 1072781000168108 Pantoprazole (Generic Health) 40 mg enteric tablet, 60 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46662011000036107 pantoprazole 40 mg enteric tablet, 60 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1034621000168105 Antifungal (Amcal) 1% cream, 20 g, tube 220197 1034611000168103 Antifungal (Amcal) 1% cream, 20 g 1034601000168101 Antifungal (Amcal) 1% cream 1034591000168108 Antifungal (Amcal) 1034591000168108 Antifungal (Amcal) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +897021000168101 Amlodipine (ULL) 5 mg tablet, 30, blister pack 212150 897011000168108 Amlodipine (ULL) 5 mg tablet, 30 897001000168105 Amlodipine (ULL) 5 mg tablet 896991000168103 Amlodipine (ULL) 896991000168103 Amlodipine (ULL) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +59777011000036109 Lignocaine Hydrochloride Sterile (Orion) 2% gel, 10 g, tube 10833 55733011000036106 Lignocaine Hydrochloride Sterile (Orion) 2% gel, 10 g 53686011000036109 Lignocaine Hydrochloride Sterile (Orion) 2% gel 6991000168100 Lignocaine Hydrochloride Sterile (Orion) 6991000168100 Lignocaine Hydrochloride Sterile (Orion) 63211011000036100 lidocaine (lignocaine) hydrochloride 2% gel, 10 g 61889011000036102 lidocaine (lignocaine) hydrochloride 2% gel 21572011000036107 lidocaine (lignocaine) +37625011000036106 Brilliant Green and Crystal Violet Paint (Orion) paint, 25 mL, bottle 21140 36891011000036108 Brilliant Green and Crystal Violet Paint (Orion) paint, 25 mL 36225011000036108 Brilliant Green and Crystal Violet Paint (Orion) paint 35916011000036107 Brilliant Green and Crystal Violet Paint (Orion) 35916011000036107 Brilliant Green and Crystal Violet Paint (Orion) 38776011000036103 brilliant green 0.5% + crystal violet 0.5% paint, 25 mL 37991011000036100 brilliant green 0.5% + crystal violet 0.5% paint 37733011000036100 brilliant green + crystal violet +37383011000036109 Norgesic uncoated tablet, 500, jar 10574 36633011000036106 Norgesic uncoated tablet, 500 36141011000036107 Norgesic uncoated tablet 35879011000036104 Norgesic 35879011000036104 Norgesic 38553011000036107 orphenadrine citrate 35 mg + paracetamol 450 mg tablet, 500 37832011000036105 orphenadrine citrate 35 mg + paracetamol 450 mg tablet 37748011000036109 orphenadrine citrate + paracetamol +923844011000036105 Metformin Hydrochloride 1000 (Pharmacor) 1 g film-coated tablet, 90, blister pack 158538 923390011000036105 Metformin Hydrochloride 1000 (Pharmacor) 1 g film-coated tablet, 90 923054011000036109 Metformin Hydrochloride 1000 (Pharmacor) 1 g film-coated tablet 61001000168104 Metformin Hydrochloride 1000 (Pharmacor) 61001000168104 Metformin Hydrochloride 1000 (Pharmacor) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +1064091000168106 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 10, blister pack 196532 1064081000168108 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet, 10 1064071000168105 Paracetamol plus Codeine-15 (Pharmacy Choice) uncoated tablet 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 1064061000168104 Paracetamol plus Codeine-15 (Pharmacy Choice) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +18041011000036107 Fosipril 20 mg uncoated tablet, 30, blister pack 100060 11133011000036107 Fosipril 20 mg uncoated tablet, 30 5097011000036104 Fosipril 20 mg uncoated tablet 4037011000036103 Fosipril 4037011000036103 Fosipril 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +82891011000036103 Dimetapp PE Sinus Pain and Allergy uncoated tablet, 30, blister pack 160362 82785011000036103 Dimetapp PE Sinus Pain and Allergy uncoated tablet, 30 82695011000036108 Dimetapp PE Sinus Pain and Allergy uncoated tablet 82667011000036101 Dimetapp PE Sinus Pain and Allergy 82667011000036101 Dimetapp PE Sinus Pain and Allergy 83004011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 30 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +46071000036103 Temozolomide (Orion) 5 mg hard capsule, 5, bottle 179874 43341000036104 Temozolomide (Orion) 5 mg hard capsule, 5 40951000036109 Temozolomide (Orion) 5 mg hard capsule 40411000036104 Temozolomide (Orion) 40411000036104 Temozolomide (Orion) 27646011000036103 temozolomide 5 mg capsule, 5 22983011000036102 temozolomide 5 mg capsule 21595011000036105 temozolomide +60347011000036108 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 40, blister pack 160499 56306011000036109 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 40 53870011000036108 Strong Pain with Calmative (Terry White Chemists) uncoated tablet 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60347011000036108 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 40, blister pack 140288 56306011000036109 Strong Pain with Calmative (Terry White Chemists) uncoated tablet, 40 53870011000036108 Strong Pain with Calmative (Terry White Chemists) uncoated tablet 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 53203011000036100 Strong Pain with Calmative (Terry White Chemists) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +60411011000036103 Clofeme One Step (1 x One Step pessary, 1 x Thrush Treatment cream), 1 pack, composite pack 144397 56370011000036101 Clofeme One Step (1 x One Step pessary, 1 x Thrush Treatment cream), 1 pack 53892011000036102 Clofeme One Step 500 mg pessary 16061000168109 Clofeme One Step 16061000168109 Clofeme One Step 63321011000036104 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [10 g], 1 pack 23397011000036105 clotrimazole 500 mg pessary 21684011000036100 clotrimazole +60411011000036103 Clofeme One Step (1 x One Step pessary, 1 x Thrush Treatment cream), 1 pack, composite pack 144397 56370011000036101 Clofeme One Step (1 x One Step pessary, 1 x Thrush Treatment cream), 1 pack 53891011000036108 Clofeme Thrush Treatment 1% cream 16061000168109 Clofeme One Step 3811000168105 Clofeme Thrush Treatment 63321011000036104 clotrimazole 500 mg pessary [1] (&) clotrimazole 1% cream [10 g], 1 pack 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +651421000168103 Cyrotone 50 mg uncoated tablet, 20, blister pack 184194 651411000168105 Cyrotone 50 mg uncoated tablet, 20 651401000168107 Cyrotone 50 mg uncoated tablet 651331000168106 Cyrotone 651331000168106 Cyrotone 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +20969011000036107 Eleva 100 mg film-coated tablet, 30, bottle 95584 14120011000036105 Eleva 100 mg film-coated tablet, 30 7397011000036102 Eleva 100 mg film-coated tablet 3268011000036101 Eleva 3268011000036101 Eleva 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +81030011000036103 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 30, bottle 104395 80474011000036109 Carvedilol (Sandoz) 6.25 mg uncoated tablet, 30 80149011000036108 Carvedilol (Sandoz) 6.25 mg uncoated tablet 80133011000036109 Carvedilol (Sandoz) 80133011000036109 Carvedilol (Sandoz) 35132011000036102 carvedilol 6.25 mg tablet, 30 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +168361000036108 Dermaveen Soap Free Wash 1% application, 50 mL, tube 159188 167871000036109 Dermaveen Soap Free Wash 1% application, 50 mL 167591000036106 Dermaveen Soap Free Wash 1% application 23461000168103 Dermaveen Soap Free Wash 23461000168103 Dermaveen Soap Free Wash 167881000036106 colloidal oatmeal 1% application, 50 mL 167601000036104 colloidal oatmeal 1% application 77444011000036102 colloidal oatmeal +683091000168102 Cisatracurium (AFT) 150 mg/30 mL injection solution, 30 mL vial 191834 683081000168100 Cisatracurium (AFT) 150 mg/30 mL injection solution, 30 mL vial 683071000168103 Cisatracurium (AFT) 150 mg/30 mL injection solution, 30 mL vial 682941000168104 Cisatracurium (AFT) 682941000168104 Cisatracurium (AFT) 161591000036100 cisatracurium 150 mg/30 mL injection, 30 mL vial 161501000036108 cisatracurium 150 mg/30 mL injection, vial 44902011000036101 cisatracurium +34749011000036105 Kapanol 20 mg modified release capsule, 60, blister pack 48134 34330011000036102 Kapanol 20 mg modified release capsule, 60 4575011000036108 Kapanol 20 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 35178011000036101 morphine sulfate pentahydrate 20 mg modified release capsule, 60 22553011000036104 morphine sulfate pentahydrate 20 mg modified release capsule 21252011000036100 morphine +918671000168104 Rosuvastatin (Generic Health) 10 mg film-coated tablet, 7, blister pack 210827 918661000168105 Rosuvastatin (Generic Health) 10 mg film-coated tablet, 7 918651000168108 Rosuvastatin (Generic Health) 10 mg film-coated tablet 918641000168106 Rosuvastatin (Generic Health) 918641000168106 Rosuvastatin (Generic Health) 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +992041000168100 Famciclovir (Apotex) 125 mg film-coated tablet, 56, blister pack 160557 992031000168109 Famciclovir (Apotex) 125 mg film-coated tablet, 56 991961000168106 Famciclovir (Apotex) 125 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 87823011000036105 famciclovir 125 mg tablet, 56 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +1008621000168106 Cefuroxime (AL) 250 mg film-coated tablet, 6, blister pack 273227 1008611000168104 Cefuroxime (AL) 250 mg film-coated tablet, 6 1008581000168106 Cefuroxime (AL) 250 mg film-coated tablet 1008251000168101 Cefuroxime (AL) 1008251000168101 Cefuroxime (AL) 951981000168107 cefuroxime 250 mg tablet, 6 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +1064251000168109 Strong Pain Relief (Trust) uncoated tablet, 10, blister pack 201679 1064241000168107 Strong Pain Relief (Trust) uncoated tablet, 10 1064231000168103 Strong Pain Relief (Trust) uncoated tablet 1064221000168101 Strong Pain Relief (Trust) 1064221000168101 Strong Pain Relief (Trust) 63319011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 10 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +95291000036109 Oxaliplatin PFI (Kabi) 50 mg powder for injection, 1 vial 148405 94131000036100 Oxaliplatin PFI (Kabi) 50 mg powder for injection, 1 vial 93541000036104 Oxaliplatin PFI (Kabi) 50 mg powder for injection, 50 mg vial 18491000168109 Oxaliplatin PFI (Kabi) 18491000168109 Oxaliplatin PFI (Kabi) 26786011000036102 oxaliplatin 50 mg injection, 1 vial 22172011000036102 oxaliplatin 50 mg injection, vial 21543011000036101 oxaliplatin +833531000168107 Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 833521000168109 Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 833501000168100 Kaolin Mixture BPC (extemporaneous) oral liquid suspension 663751000168108 Kaolin Mixture BPC (extemporaneous) 663751000168108 Kaolin Mixture BPC (extemporaneous) 833511000168102 light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 833491000168107 light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 870911000168101 light kaolin + magnesium carbonate + bicarbonate +933079011000036107 Tramadol Hydrochloride SR (Terry White Chemists) 200 mg modified release tablet, 20, blister pack 154403 932876011000036106 Tramadol Hydrochloride SR (Terry White Chemists) 200 mg modified release tablet, 20 932737011000036108 Tramadol Hydrochloride SR (Terry White Chemists) 200 mg modified release tablet 50711000168103 Tramadol Hydrochloride SR (Terry White Chemists) 50711000168103 Tramadol Hydrochloride SR (Terry White Chemists) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +657361000168109 Exemestane (AN) 25 mg sugar coated tablet, 30, blister pack 177311 657351000168107 Exemestane (AN) 25 mg sugar coated tablet, 30 657341000168105 Exemestane (AN) 25 mg sugar coated tablet 657331000168101 Exemestane (AN) 657331000168101 Exemestane (AN) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +86043011000036105 Mezavant 1.2 g modified release tablet, 60, blister pack 155172 85688011000036100 Mezavant 1.2 g modified release tablet, 60 85334011000036105 Mezavant 1.2 g modified release tablet 85289011000036105 Mezavant 85289011000036105 Mezavant 86432011000036109 mesalazine 1.2 g modified release tablet, 60 86221011000036104 mesalazine 1.2 g modified release tablet 21351011000036101 mesalazine +19309011000036104 Advantan 0.1% fatty ointment, 15 g, tube 49382 12599011000036109 Advantan 0.1% fatty ointment, 15 g 4508011000036106 Advantan 0.1% fatty ointment 3513011000036101 Advantan 3513011000036101 Advantan 128811000036105 methylprednisolone aceponate 0.1% fatty ointment, 15 g 124361000036108 methylprednisolone aceponate 0.1% fatty ointment 21605011000036100 methylprednisolone +19125011000036100 Serevent 25 microgram/actuation pressurised inhalation, 120 actuations, metered dose aerosol can 43409 12428011000036102 Serevent 25 microgram/actuation pressurised inhalation, 120 actuations 4886011000036109 Serevent 25 microgram/actuation pressurised inhalation, actuation 29301000168109 Serevent 29301000168109 Serevent 27115011000036102 salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22481011000036101 salmeterol 25 microgram/actuation pressurised inhalation, actuation 21854011000036100 salmeterol +69462011000036109 Sodium Chloride (Phebra) 20% (10 g/50 mL) concentrated injection, 50 x 50 mL vials 48630 67262011000036101 Sodium Chloride (Phebra) 20% (10 g/50 mL) concentrated injection, 50 x 50 mL vials 65581011000036101 Sodium Chloride (Phebra) 20% (10 g/50 mL) concentrated injection, 50 mL vial 64963011000036103 Sodium Chloride (Phebra) 64963011000036103 Sodium Chloride (Phebra) 71812011000036105 sodium chloride 20% (10 g/50 mL) injection, 50 x 50 mL vials 70197011000036105 sodium chloride 20% (10 g/50 mL) injection, vial 21308011000036103 sodium chloride +992001000168102 Famciclovir (Apotex) 125 mg film-coated tablet, 28, blister pack 160557 991991000168104 Famciclovir (Apotex) 125 mg film-coated tablet, 28 991961000168106 Famciclovir (Apotex) 125 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 87822011000036103 famciclovir 125 mg tablet, 28 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +87690011000036102 Famciclovir (Apo) 250 mg film-coated tablet, 14, blister pack 160556 87481011000036108 Famciclovir (Apo) 250 mg film-coated tablet, 14 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 86449011000036103 famciclovir 250 mg tablet, 14 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +44031011000036107 Cytarabine (DBL) 2 g/20 mL injection solution, 20 mL vial 47286 41520011000036105 Cytarabine (DBL) 2 g/20 mL injection solution, 20 mL vial 40034011000036108 Cytarabine (DBL) 2 g/20 mL injection solution, 20 mL vial 35924011000036107 Cytarabine (DBL) 35924011000036107 Cytarabine (DBL) 46390011000036103 cytarabine 2 g/20 mL injection, 20 mL vial 45125011000036107 cytarabine 2 g/20 mL injection, vial 21916011000036109 cytarabine +818521000168105 Afolia 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 262648 818511000168103 Afolia 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 818501000168101 Afolia 300 units (22 microgram)/0.5 mL injection solution, 0.5 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741401000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, 0.5 mL injection device 741381000168103 follitropin alfa 300 units (22 microgram)/0.5 mL injection, injection device 21352011000036107 follitropin alfa +32532011000036109 Vancomycin (Sandoz) 1 g powder for injection, 1 vial 100011 32325011000036100 Vancomycin (Sandoz) 1 g powder for injection, 1 vial 32208011000036109 Vancomycin (Sandoz) 1 g powder for injection, vial 32195011000036103 Vancomycin (Sandoz) 32195011000036103 Vancomycin (Sandoz) 27498011000036108 vancomycin 1 g injection, 1 vial 22841011000036102 vancomycin 1 g injection, vial 21381011000036106 vancomycin +747311000168104 Junomorph 20 mg/mL injection solution, 10 x 1 mL ampoules 224248 747301000168102 Junomorph 20 mg/mL injection solution, 10 x 1 mL ampoules 747271000168104 Junomorph 20 mg/mL injection solution, ampoule 747261000168105 Junomorph 747261000168105 Junomorph 706881000168106 morphine hydrochloride trihydrate 20 mg/mL injection, 10 x 1 mL ampoules 706831000168105 morphine hydrochloride trihydrate 20 mg/mL injection, ampoule 21252011000036100 morphine +816351000168108 Adronat 5 mg uncoated tablet, 30, blister pack 119097 816341000168106 Adronat 5 mg uncoated tablet, 30 816311000168107 Adronat 5 mg uncoated tablet 816251000168103 Adronat 816251000168103 Adronat 46637011000036101 alendronate 5 mg tablet, 30 45251011000036108 alendronate 5 mg tablet 21736011000036109 alendronate +18313011000036102 Prilace 1.25 mg uncoated tablet, 30, blister pack 121854 11697011000036108 Prilace 1.25 mg uncoated tablet, 30 4688011000036100 Prilace 1.25 mg uncoated tablet 3737011000036102 Prilace 3737011000036102 Prilace 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +1000581000168108 Tadalafil (Apo) 20 mg film-coated tablet, 4, blister pack 205886 1000571000168105 Tadalafil (Apo) 20 mg film-coated tablet, 4 1000561000168104 Tadalafil (Apo) 20 mg film-coated tablet 1000221000168106 Tadalafil (Apo) 1000221000168106 Tadalafil (Apo) 27945011000036109 tadalafil 20 mg tablet, 4 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +926671011000036109 Zelitrex 500 mg film-coated tablet, 30, blister pack 128739 926143011000036105 Zelitrex 500 mg film-coated tablet, 30 925639011000036108 Zelitrex 500 mg film-coated tablet 925537011000036106 Zelitrex 925537011000036106 Zelitrex 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +91341000036109 Vinorelbine (AS) 50 mg/5 mL concentrated injection, 5 mL vial 177542 89901000036107 Vinorelbine (AS) 50 mg/5 mL concentrated injection, 5 mL vial 87871000036101 Vinorelbine (AS) 50 mg/5 mL concentrated injection, 5 mL vial 87691000036103 Vinorelbine (AS) 87691000036103 Vinorelbine (AS) 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +920657011000036109 Octreotide (DBL) 50 microgram/mL injection solution, 5 x 1 mL vials 120734 920368011000036105 Octreotide (DBL) 50 microgram/mL injection solution, 5 x 1 mL vials 920134011000036101 Octreotide (DBL) 50 microgram/mL injection solution, vial 920100011000036104 Octreotide (DBL) 920100011000036104 Octreotide (DBL) 32757011000036108 octreotide 50 microgram/mL injection, 5 x 1 mL vials 32688011000036107 octreotide 50 microgram/mL injection, vial 21316011000036104 octreotide +132031000036105 Nicorette Inhalator 15 mg breath activated inhalation, 4 cartridges 80874 128861000036107 Nicorette Inhalator 15 mg breath activated inhalation, 4 cartridges 125251000036100 Nicorette Inhalator 15 mg breath activated inhalation, cartridge 24091000168102 Nicorette Inhalator 24091000168102 Nicorette Inhalator 128871000036104 nicotine 15 mg breath activated inhalation, 4 cartridges 125261000036102 nicotine 15 mg breath activated inhalation, cartridge 21432011000036100 nicotine +928967011000036104 Cetirizine Hydrochloride (Pharmacy Health) 10 mg film-coated tablet, 10, blister pack 156885 928328011000036101 Cetirizine Hydrochloride (Pharmacy Health) 10 mg film-coated tablet, 10 927954011000036109 Cetirizine Hydrochloride (Pharmacy Health) 10 mg film-coated tablet 927764011000036109 Cetirizine Hydrochloride (Pharmacy Health) 927764011000036109 Cetirizine Hydrochloride (Pharmacy Health) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +82361000036100 Rabeprazole Sodium (GA) 10 mg enteric tablet, 28, blister pack 189758 80331000036105 Rabeprazole Sodium (GA) 10 mg enteric tablet, 28 78321000036103 Rabeprazole Sodium (GA) 10 mg enteric tablet 77911000036105 Rabeprazole Sodium (GA) 77911000036105 Rabeprazole Sodium (GA) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +876231000168101 Brufen Syrup 100 mg/5 mL oral liquid suspension, 100 mL, bottle 43666 876221000168104 Brufen Syrup 100 mg/5 mL oral liquid suspension, 100 mL 876211000168106 Brufen Syrup 100 mg/5 mL oral liquid suspension, 5 mL 876201000168108 Brufen Syrup 876201000168108 Brufen Syrup 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +73281011000036104 Jurnista 16 mg modified release tablet, 10, blister pack 141533 73079011000036103 Jurnista 16 mg modified release tablet, 10 72935011000036104 Jurnista 16 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73477011000036103 hydromorphone hydrochloride 16 mg modified release tablet, 10 73371011000036101 hydromorphone hydrochloride 16 mg modified release tablet 21480011000036107 hydromorphone +850151000168100 Imatinib (Apotex) 100 mg hard capsule, 60, blister pack 261054 850141000168102 Imatinib (Apotex) 100 mg hard capsule, 60 850131000168106 Imatinib (Apotex) 100 mg hard capsule 848961000168101 Imatinib (Apotex) 848961000168101 Imatinib (Apotex) 830821000168102 imatinib 100 mg capsule, 60 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +18416011000036100 Carboplatin (Ebewe) 450 mg/45 mL injection, 45 mL vial 104403 11289011000036103 Carboplatin (Ebewe) 450 mg/45 mL injection, 45 mL vial 4731011000036108 Carboplatin (Ebewe) 450 mg/45 mL injection, 45 mL vial 3914011000036108 Carboplatin (Ebewe) 3914011000036108 Carboplatin (Ebewe) 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +33511011000036104 Questran Lite 4 g powder for oral liquid, 50 sachets 11971 33254011000036102 Questran Lite 4 g powder for oral liquid, 50 sachets 33021011000036108 Questran Lite 4 g powder for oral liquid, 4.7 g sachet 35521000168109 Questran Lite 35521000168109 Questran Lite 33782011000036107 colestyramine 4 g powder for oral liquid, 50 sachets 33656011000036108 colestyramine 4 g powder for oral liquid, 4.7 g sachet 21442011000036101 colestyramine +81192011000036100 Senna-Col (Amcal) film-coated tablet, 30, bottle 81753 80694011000036104 Senna-Col (Amcal) film-coated tablet, 30 80240011000036104 Senna-Col (Amcal) film-coated tablet 80104011000036103 Senna-Col (Amcal) 80104011000036103 Senna-Col (Amcal) 81746011000036103 docusate sodium 50 mg + sennoside B 8 mg tablet, 30 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +1017211000168100 Macrogol-Half plus Electrolytes (Apo) powder for oral liquid, 30 sachets 204651 1017201000168103 Macrogol-Half plus Electrolytes (Apo) powder for oral liquid, 30 sachets 1017191000168101 Macrogol-Half plus Electrolytes (Apo) powder for oral liquid, 1 sachet 1017061000168109 Macrogol-Half plus Electrolytes (Apo) 1017061000168109 Macrogol-Half plus Electrolytes (Apo) 674121000168107 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 30 sachets 674101000168103 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 1 sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +1004971000168108 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 52400 1004961000168102 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 1004941000168101 Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule 711491000168101 Naropin 0.75% 711491000168101 Naropin 0.75% 1004951000168104 ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules 1004931000168105 ropivacaine hydrochloride 75 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +20260011000036102 Piroxicam (Chemmart) 10 mg capsule, 50, blister pack 75037 13470011000036107 Piroxicam (Chemmart) 10 mg capsule, 50 6753011000036103 Piroxicam (Chemmart) 10 mg capsule 2915011000036100 Piroxicam (Chemmart) 2915011000036100 Piroxicam (Chemmart) 27762011000036104 piroxicam 10 mg capsule, 50 23093011000036100 piroxicam 10 mg capsule 21531011000036103 piroxicam +50392011000036104 Lyofoam Extra (603088) 10 cm x 10 cm dressing, 10, carton 49355011000036108 Lyofoam Extra (603088) 10 cm x 10 cm dressing, 10 48663011000036109 Lyofoam Extra (603088) 10 cm x 10 cm dressing 57381000168106 Lyofoam Extra (603088) 57381000168106 Lyofoam Extra (603088) 51332011000036102 dressing foam heavy exudate 10 cm x 10 cm dressing, 10 50859011000036104 dressing foam heavy exudate 10 cm x 10 cm dressing 50757011000036108 dressing foam heavy exudate +18900011000036104 Sigmacort 1% ointment, 30 g, tube 19779 12208011000036106 Sigmacort 1% ointment, 30 g 5095011000036109 Sigmacort 1% ointment 3068011000036109 Sigmacort 3068011000036109 Sigmacort 28031011000036105 hydrocortisone acetate 1% ointment, 30 g 23353011000036107 hydrocortisone acetate 1% ointment 21231011000036107 hydrocortisone acetate +931537011000036106 Reditron 4 mg film-coated tablet, 4, blister pack 163430 930698011000036100 Reditron 4 mg film-coated tablet, 4 930020011000036103 Reditron 4 mg film-coated tablet 28261000168108 Reditron 28261000168108 Reditron 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +987151000168100 Act-3 200 mg soft capsule, 48, blister pack 77290 987141000168102 Act-3 200 mg soft capsule, 48 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63933011000036106 ibuprofen 200 mg capsule, 48 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +901451000168102 Amisulpride (CH) 100 mg uncoated tablet, 60, blister pack 234708 901441000168104 Amisulpride (CH) 100 mg uncoated tablet, 60 901411000168103 Amisulpride (CH) 100 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +914421000168105 Amoxyclav 500/125 (Sandoz) film-coated tablet, 2, blister pack 255079 914411000168103 Amoxyclav 500/125 (Sandoz) film-coated tablet, 2 914401000168101 Amoxyclav 500/125 (Sandoz) film-coated tablet 914391000168103 Amoxyclav 500/125 (Sandoz) 914391000168103 Amoxyclav 500/125 (Sandoz) 51544011000036109 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 2 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +19735011000036108 Astrix 100 mg uncoated tablet, 112, blister pack 194208 12990011000036107 Astrix 100 mg uncoated tablet, 112 6278011000036104 Astrix 100 mg uncoated tablet 3721011000036108 Astrix 3721011000036108 Astrix 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +19735011000036108 Astrix 100 mg uncoated tablet, 112, blister pack 61723 12990011000036107 Astrix 100 mg uncoated tablet, 112 6278011000036104 Astrix 100 mg uncoated tablet 3721011000036108 Astrix 3721011000036108 Astrix 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +61407011000036102 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 100 mL, bottle 82400 57332011000036104 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 100 mL 54278011000036103 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 63813011000036109 paracetamol 240 mg/5 mL oral liquid, 100 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +899841000168105 Afluria Quad 2017 injection suspension, 1 x 0.5 mL syringe 262428 899831000168101 Afluria Quad 2017 injection suspension, 1 x 0.5 mL syringe 899811000168106 Afluria Quad 2017 injection suspension, 0.5 mL syringe 899801000168108 Afluria Quad 2017 899801000168108 Afluria Quad 2017 899821000168104 influenza quadrivalent adult vaccine 2017 injection, 1 x 0.5 mL syringe 899401000168105 influenza quadrivalent adult vaccine 2017 injection, 0.5 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +987111000168101 Act-3 200 mg soft capsule, 30, blister pack 77290 987101000168104 Act-3 200 mg soft capsule, 30 986991000168105 Act-3 200 mg soft capsule 986981000168107 Act-3 986981000168107 Act-3 63931011000036105 ibuprofen 200 mg capsule, 30 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +17932011000036101 Meloxicam (GenRx) 15 mg uncoated tablet, 30, blister pack 127504 11844011000036104 Meloxicam (GenRx) 15 mg uncoated tablet, 30 4934011000036101 Meloxicam (GenRx) 15 mg uncoated tablet 4356011000036101 Meloxicam (GenRx) 4356011000036101 Meloxicam (GenRx) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +751651000168104 Bugesic 100 mg/5 mL oral liquid suspension, 200 mL, bottle 80886 751641000168101 Bugesic 100 mg/5 mL oral liquid suspension, 200 mL 751591000168105 Bugesic 100 mg/5 mL oral liquid suspension, 5 mL 53403011000036104 Bugesic 53403011000036104 Bugesic 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +917101000168101 Carvedilol (SCP) 25 mg uncoated tablet, 60, blister pack 194264 917091000168106 Carvedilol (SCP) 25 mg uncoated tablet, 60 917081000168108 Carvedilol (SCP) 25 mg uncoated tablet 916891000168100 Carvedilol (SCP) 916891000168100 Carvedilol (SCP) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +95311000036105 Oxaliplatin PFI (Kabi) 150 mg powder for injection, 1 vial 148409 94151000036108 Oxaliplatin PFI (Kabi) 150 mg powder for injection, 1 vial 93561000036103 Oxaliplatin PFI (Kabi) 150 mg powder for injection, 150 mg vial 18491000168109 Oxaliplatin PFI (Kabi) 18491000168109 Oxaliplatin PFI (Kabi) 929212011000036101 oxaliplatin 150 mg injection, 1 vial 929148011000036108 oxaliplatin 150 mg injection, vial 21543011000036101 oxaliplatin +91361000036105 Gemcitabine (AS) 1 g powder for injection, 1 vial 177645 89921000036102 Gemcitabine (AS) 1 g powder for injection, 1 vial 88561000036105 Gemcitabine (AS) 1 g powder for injection, vial 87721000036108 Gemcitabine (AS) 87721000036108 Gemcitabine (AS) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +69370011000036105 Colonlytely Lemon powder for oral liquid, 70 g sachet 29995 67170011000036106 Colonlytely Lemon powder for oral liquid, 70 g sachet 65529011000036109 Colonlytely Lemon powder for oral liquid, 70 g sachet 36071000168106 Colonlytely 36071000168106 Colonlytely 71732011000036100 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid, 70 g sachet 70157011000036103 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid, 70 g sachet 52802011000036109 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + bicarbonate +649411000168106 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 30, blister pack 202109 649401000168108 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 30 649331000168107 Pritor/Amlodipine 80 mg/10 mg multilayer tablet 649321000168109 Pritor/Amlodipine 80 mg/10 mg 649321000168109 Pritor/Amlodipine 80 mg/10 mg 932441011000036108 telmisartan 80 mg + amlodipine 10 mg tablet, 30 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +933216201000036105 Actiq 200 microgram lozenge on handle, 30, blister pack 91598 933205831000036109 Actiq 200 microgram lozenge on handle, 30 34075011000036107 Actiq 200 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 933205841000036104 fentanyl 200 microgram lozenge on handle, 30 34910011000036103 fentanyl 200 microgram lozenge on handle 21258011000036102 fentanyl +649371000168105 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 14, blister pack 202109 649361000168104 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 14 649331000168107 Pritor/Amlodipine 80 mg/10 mg multilayer tablet 649321000168109 Pritor/Amlodipine 80 mg/10 mg 649321000168109 Pritor/Amlodipine 80 mg/10 mg 932439011000036106 telmisartan 80 mg + amlodipine 10 mg tablet, 14 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +21211011000036103 Zofran 8 mg film-coated tablet, 4, blister pack 9981 14346011000036102 Zofran 8 mg film-coated tablet, 4 7629011000036106 Zofran 8 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +18797011000036106 Xanax 500 microgram uncoated tablet, 50, bottle 12350 11745011000036102 Xanax 500 microgram uncoated tablet, 50 5996011000036109 Xanax 500 microgram uncoated tablet 3527011000036101 Xanax 3527011000036101 Xanax 28281011000036105 alprazolam 500 microgram tablet, 50 23595011000036102 alprazolam 500 microgram tablet 21284011000036103 alprazolam +176541000036106 Sildenafil (Terry White Chemists) 50 mg film-coated tablet, 4, blister pack 164820 174751000036108 Sildenafil (Terry White Chemists) 50 mg film-coated tablet, 4 173531000036108 Sildenafil (Terry White Chemists) 50 mg film-coated tablet 172591000036104 Sildenafil (Terry White Chemists) 172591000036104 Sildenafil (Terry White Chemists) 27546011000036105 sildenafil 50 mg tablet, 4 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +1058831000168101 Ondansetron (Auro) 4 mg film-coated tablet, 4, blister pack 173184 1058821000168104 Ondansetron (Auro) 4 mg film-coated tablet, 4 1058811000168106 Ondansetron (Auro) 4 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +87177011000036109 Nicorette Classic 4 mg chewing gum, 105, blister pack 12516 87119011000036106 Nicorette Classic 4 mg chewing gum, 105 87067011000036107 Nicorette Classic 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87233011000036100 nicotine 4 mg gum, 105 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +921761000168100 Cefaclor (Ran) 375 mg modified release tablet, 10, blister pack 182067 921751000168102 Cefaclor (Ran) 375 mg modified release tablet, 10 921741000168104 Cefaclor (Ran) 375 mg modified release tablet 921731000168108 Cefaclor (Ran) 921731000168108 Cefaclor (Ran) 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +849741000168108 Itranox 100 mg hard capsule, 4, blister pack 244432 849731000168104 Itranox 100 mg hard capsule, 4 849721000168102 Itranox 100 mg hard capsule 849661000168104 Itranox 849661000168104 Itranox 46362011000036102 itraconazole 100 mg capsule, 4 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +1024281000168109 Betadine Sore Throat Lozenges Orange lozenge, 8, blister pack 227169 1024271000168106 Betadine Sore Throat Lozenges Orange lozenge, 8 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71526011000036100 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 8 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +19909011000036108 Ducene 2 mg uncoated tablet, 50, blister pack 66125 13154011000036101 Ducene 2 mg uncoated tablet, 50 6437011000036102 Ducene 2 mg uncoated tablet 3800011000036107 Ducene 3800011000036107 Ducene 27940011000036100 diazepam 2 mg tablet, 50 23264011000036106 diazepam 2 mg tablet 21688011000036107 diazepam +883221000168103 Betahistine (GX) 16 mg tablet, 25, blister pack 231712 883211000168105 Betahistine (GX) 16 mg tablet, 25 883181000168106 Betahistine (GX) 16 mg tablet 883061000168101 Betahistine (GX) 883061000168101 Betahistine (GX) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1061731000168106 Atorvastatin (GX) 80 mg film-coated tablet, 100, bottle 217179 1061721000168108 Atorvastatin (GX) 80 mg film-coated tablet, 100 1061691000168104 Atorvastatin (GX) 80 mg film-coated tablet 1061681000168102 Atorvastatin (GX) 1061681000168102 Atorvastatin (GX) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +68673011000036105 Zonegran 25 mg capsule, 56, blister pack 125869 66680011000036102 Zonegran 25 mg capsule, 56 65321011000036108 Zonegran 25 mg capsule 65180011000036104 Zonegran 65180011000036104 Zonegran 71383011000036103 zonisamide 25 mg capsule, 56 69985011000036100 zonisamide 25 mg capsule 69755011000036103 zonisamide +20733011000036105 Allopurinol (Terry White Chemists) 300 mg uncoated tablet, 60, blister pack 83102 13902011000036101 Allopurinol (Terry White Chemists) 300 mg uncoated tablet, 60 7188011000036108 Allopurinol (Terry White Chemists) 300 mg uncoated tablet 3500011000036106 Allopurinol (Terry White Chemists) 3500011000036106 Allopurinol (Terry White Chemists) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +20733011000036105 Allopurinol (Terry White Chemists) 300 mg uncoated tablet, 60, blister pack 219905 13902011000036101 Allopurinol (Terry White Chemists) 300 mg uncoated tablet, 60 7188011000036108 Allopurinol (Terry White Chemists) 300 mg uncoated tablet 3500011000036106 Allopurinol (Terry White Chemists) 3500011000036106 Allopurinol (Terry White Chemists) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +736211000168105 Afeme Duo 1% cream, 10 g, tube 736201000168107 Afeme Duo 1% cream, 10 g 736191000168109 Afeme Duo 1% cream 736151000168104 Afeme Duo 736151000168104 Afeme Duo 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +84367011000036101 Salpraz 40 mg enteric tablet, 30, blister pack 163886 84060011000036103 Salpraz 40 mg enteric tablet, 30 83686011000036107 Salpraz 40 mg enteric tablet 38031000168107 Salpraz 38031000168107 Salpraz 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +95701000036107 Azithromycin (Chemmart) 500 mg film-coated tablet, 1, blister pack 195916 94601000036100 Azithromycin (Chemmart) 500 mg film-coated tablet, 1 93411000036104 Azithromycin (Chemmart) 500 mg film-coated tablet 93221000036105 Azithromycin (Chemmart) 93221000036105 Azithromycin (Chemmart) 46128011000036104 azithromycin 500 mg tablet, 1 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +87691011000036109 Famciclovir (Apo) 125 mg film-coated tablet, 10, blister pack 160559 87477011000036108 Famciclovir (Apo) 125 mg film-coated tablet, 10 87335011000036105 Famciclovir (Apo) 125 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87821011000036109 famciclovir 125 mg tablet, 10 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +844341000168108 Prozac 20 mg tablet, 28, blister pack 61081 844331000168104 Prozac 20 mg tablet, 28 844311000168109 Prozac 20 mg tablet 2954011000036108 Prozac 2954011000036108 Prozac 844321000168102 fluoxetine 20 mg tablet, 28 844301000168106 fluoxetine 20 mg tablet 21411011000036102 fluoxetine +17923011000036106 Durogesic 100 microgram/hour patch, 5, sachet 112371 11444011000036106 Durogesic 100 microgram/hour patch, 5 4519011000036101 Durogesic 100 microgram/hour patch 3568011000036107 Durogesic 3568011000036107 Durogesic 26652011000036104 fentanyl 100 microgram/hour patch, 5 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +878881000168103 Bosentan (Ran) 125 mg film-coated tablet, 60, bottle 257734 878871000168101 Bosentan (Ran) 125 mg film-coated tablet, 60 878821000168102 Bosentan (Ran) 125 mg film-coated tablet 878811000168109 Bosentan (Ran) 878811000168109 Bosentan (Ran) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +954911000168104 Trandolapril (Chemmart) 500 microgram capsule, 28, blister pack 135961 954901000168102 Trandolapril (Chemmart) 500 microgram capsule, 28 954891000168101 Trandolapril (Chemmart) 500 microgram capsule 951451000168105 Trandolapril (Chemmart) 951451000168105 Trandolapril (Chemmart) 27126011000036101 trandolapril 500 microgram capsule, 28 22492011000036108 trandolapril 500 microgram capsule 21447011000036104 trandolapril +44206011000036103 Uromitexan 600 mg film-coated tablet, 50, blister pack 56482 41682011000036107 Uromitexan 600 mg film-coated tablet, 50 40142011000036106 Uromitexan 600 mg film-coated tablet 4340011000036101 Uromitexan 4340011000036101 Uromitexan 46499011000036102 mesna 600 mg tablet, 50 45189011000036102 mesna 600 mg tablet 21302011000036101 mesna +686931000168107 Samsca 15 mg tablet, 10, blister pack 176602 686921000168109 Samsca 15 mg tablet, 10 686901000168100 Samsca 15 mg tablet 686861000168106 Samsca 686861000168106 Samsca 686911000168102 tolvaptan 15 mg tablet, 10 686891000168104 tolvaptan 15 mg tablet 686881000168102 tolvaptan +882901000168109 Candesartan HCTZ 16/12.5 (GPPL) uncoated tablet, 30, blister pack 253492 882891000168105 Candesartan HCTZ 16/12.5 (GPPL) uncoated tablet, 30 882881000168107 Candesartan HCTZ 16/12.5 (GPPL) uncoated tablet 882871000168109 Candesartan HCTZ 16/12.5 (GPPL) 882871000168109 Candesartan HCTZ 16/12.5 (GPPL) 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +37353011000036102 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 10 x 10 mL vials 11939 36673011000036108 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 10 x 10 mL vials 36070011000036107 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 10 mL vial 3151000168100 Marcain 0.5% with Adrenaline 1 in 200 000 3151000168100 Marcain 0.5% with Adrenaline 1 in 200 000 38586011000036106 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) + adrenaline (epinephrine) 1 in 200 000 (50 microgram/10 mL) injection, 10 x 10 mL vials 37858011000036109 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) + adrenaline (epinephrine) 1 in 200 000 (50 microgram/10 mL) injection, vial 37718011000036101 bupivacaine + adrenaline (epinephrine) +18718011000036108 Miacalcic 50 units/mL injection solution, 5 x 1 mL ampoules 13364 11972011000036100 Miacalcic 50 units/mL injection solution, 5 x 1 mL ampoules 5792011000036104 Miacalcic 50 units/mL injection solution, ampoule 3873011000036105 Miacalcic 3873011000036105 Miacalcic 26825011000036104 calcitonin salmon (salcatonin) 50 units/mL injection, 5 x 1 mL ampoules 22207011000036109 calcitonin salmon (salcatonin) 50 units/mL injection, ampoule 21446011000036102 calcitonin salmon (salcatonin) +1093081000168108 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 20, blister pack 282022 1093071000168105 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 20 1093041000168103 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +926915011000036100 Xatral SR 10 mg modified release tablet, 30, blister pack 81900 926309011000036109 Xatral SR 10 mg modified release tablet, 30 925752011000036106 Xatral SR 10 mg modified release tablet 33861000168103 Xatral SR 33861000168103 Xatral SR 927400011000036105 alfuzosin hydrochloride 10 mg modified release tablet, 30 927041011000036104 alfuzosin hydrochloride 10 mg modified release tablet 926977011000036100 alfuzosin +69530011000036105 Egozite Protective Baby 15% lotion, 200 mL, bottle 56806 67330011000036104 Egozite Protective Baby 15% lotion, 200 mL 65615011000036107 Egozite Protective Baby 15% lotion 65110011000036102 Egozite Protective Baby 65110011000036102 Egozite Protective Baby 71875011000036107 dimeticone-350 15% lotion, 200 mL 70228011000036103 dimeticone-350 15% lotion 69855011000036101 dimeticone-350 +925250011000036104 Sumatriptan (Apo) 50 mg film-coated tablet, 2, blister pack 160188 924787011000036109 Sumatriptan (Apo) 50 mg film-coated tablet, 2 924484011000036109 Sumatriptan (Apo) 50 mg film-coated tablet 5701000168101 Sumatriptan (Apo) 5701000168101 Sumatriptan (Apo) 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +1104551000168100 Normison 10 mg uncoated tablet, 100, blister pack 41637 1104541000168102 Normison 10 mg uncoated tablet, 100 4641011000036102 Normison 10 mg uncoated tablet 2981011000036100 Normison 2981011000036100 Normison 1104531000168106 temazepam 10 mg tablet, 100 23357011000036103 temazepam 10 mg tablet 21825011000036102 temazepam +1015701000168102 Aripiprazole (Medis) 10 mg uncoated tablet, 100, bottle 217236 1015691000168102 Aripiprazole (Medis) 10 mg uncoated tablet, 100 1015401000168106 Aripiprazole (Medis) 10 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +933120011000036106 Lamictal 2 mg tablet, 30, bottle 77098 932922011000036101 Lamictal 2 mg tablet, 30 932771011000036103 Lamictal 2 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 47005011000036106 lamotrigine 2 mg tablet, 30 45372011000036106 lamotrigine 2 mg tablet 21643011000036106 lamotrigine +1000991000168102 Pregabalin (Apo) 50 mg hard capsule, 14, bottle 193246 1000981000168100 Pregabalin (Apo) 50 mg hard capsule, 14 1000971000168103 Pregabalin (Apo) 50 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +20432011000036108 Cardinorm 100 mg uncoated tablet, 30, blister pack 77738 13635011000036102 Cardinorm 100 mg uncoated tablet, 30 6918011000036107 Cardinorm 100 mg uncoated tablet 3670011000036105 Cardinorm 3670011000036105 Cardinorm 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +38381000036104 Escitalopram (MPPL) 10 mg film-coated tablet, 30, bottle 165845 34711000036100 Escitalopram (MPPL) 10 mg film-coated tablet, 30 32981000036102 Escitalopram (MPPL) 10 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +717161000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 15, bottle 167313 717141000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 15 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716341000168108 omeprazole 20 mg enteric capsule, 15 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +926771011000036100 ZepAllergy 10 mg film-coated tablet, 50, blister pack 153579 926168011000036109 ZepAllergy 10 mg film-coated tablet, 50 925653011000036109 ZepAllergy 10 mg film-coated tablet 925523011000036104 ZepAllergy 925523011000036104 ZepAllergy 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +43555011000036108 Stilnox CR 6.25 mg modified release tablet, 20, blister pack 120707 41237011000036102 Stilnox CR 6.25 mg modified release tablet, 20 39885011000036103 Stilnox CR 6.25 mg modified release tablet 861000168106 Stilnox CR 861000168106 Stilnox CR 46179011000036106 zolpidem tartrate 6.25 mg modified release tablet, 20 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +1034061000168105 Aripra 30 mg uncoated tablet, 30, blister pack 217226 1034051000168108 Aripra 30 mg uncoated tablet, 30 1034041000168106 Aripra 30 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +931380011000036104 Serdolect 12 mg film-coated tablet, 28, blister pack 127484 930582011000036105 Serdolect 12 mg film-coated tablet, 28 929950011000036105 Serdolect 12 mg film-coated tablet 929832011000036102 Serdolect 929832011000036102 Serdolect 932356011000036107 sertindole 12 mg tablet, 28 931828011000036108 sertindole 12 mg tablet 931786011000036100 sertindole +965261000168103 Clarithromycin (GenRx) 500 mg film-coated tablet, 28, blister pack 134857 965251000168100 Clarithromycin (GenRx) 500 mg film-coated tablet, 28 965181000168100 Clarithromycin (GenRx) 500 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 46432011000036100 clarithromycin 500 mg tablet, 28 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +17971000036108 Arianna 1 mg film-coated tablet, 30, blister pack 158023 16641000036105 Arianna 1 mg film-coated tablet, 30 15801000036104 Arianna 1 mg film-coated tablet 15081000036103 Arianna 15081000036103 Arianna 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +933230841000036102 Famciclovir (Apo) 500 mg film-coated tablet, 12, blister pack 172443 933224961000036103 Famciclovir (Apo) 500 mg film-coated tablet, 12 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 933224971000036106 famciclovir 500 mg tablet, 12 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +61477011000036109 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 100, blister pack 91993 57402011000036100 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 100 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +176621000036102 Levactam 500 mg film-coated tablet, 60, blister pack 177056 174831000036107 Levactam 500 mg film-coated tablet, 60 172971000036105 Levactam 500 mg film-coated tablet 172831000036103 Levactam 172831000036103 Levactam 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +170691000036102 Visacor 10 mg film-coated tablet, 30, blister pack 119129 169741000036102 Visacor 10 mg film-coated tablet, 30 169251000036107 Visacor 10 mg film-coated tablet 168721000036103 Visacor 168721000036103 Visacor 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +19019011000036101 Ovestin Ovula 500 microgram moulded pessary, 15, strip pack 35632 12324011000036101 Ovestin Ovula 500 microgram moulded pessary, 15 5544011000036100 Ovestin Ovula 500 microgram moulded pessary 21411000168102 Ovestin Ovula 21411000168102 Ovestin Ovula 27062011000036101 estriol 500 microgram pessary, 15 22430011000036100 estriol 500 microgram pessary 21663011000036100 estriol +782351000168106 Voriconazole (Alphapharm) 200 mg film-coated tablet, 50, blister pack 206993 782341000168109 Voriconazole (Alphapharm) 200 mg film-coated tablet, 50 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46809011000036108 voriconazole 200 mg tablet, 50 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +38301000036105 Escitalopram (Lupin) 10 mg film-coated tablet, 30, bottle 165841 34631000036103 Escitalopram (Lupin) 10 mg film-coated tablet, 30 32911000036105 Escitalopram (Lupin) 10 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 78189011000036104 escitalopram 10 mg tablet, 30 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +896141000168109 Imatinib (GH) 400 mg hard capsule, 96, blister pack 281536 896131000168100 Imatinib (GH) 400 mg hard capsule, 96 896061000168109 Imatinib (GH) 400 mg hard capsule 896031000168101 Imatinib (GH) 896031000168101 Imatinib (GH) 893951000168101 imatinib 400 mg capsule, 96 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +1017121000168103 Aripiprazole (AU) 10 mg uncoated tablet, 100, bottle 217248 1017111000168105 Aripiprazole (AU) 10 mg uncoated tablet, 100 1016981000168104 Aripiprazole (AU) 10 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +932151000168106 Centevo 50/12.5/200 mg film-coated tablet, 98, bottle 238152 932141000168109 Centevo 50/12.5/200 mg film-coated tablet, 98 931941000168103 Centevo 50/12.5/200 mg film-coated tablet 931931000168107 Centevo 50/12.5/200 mg 931931000168107 Centevo 50/12.5/200 mg 932131000168100 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 98 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +920271000168105 Citalopram (APL) 20 mg film-coated tablet, 30, bottle 184688 920261000168104 Citalopram (APL) 20 mg film-coated tablet, 30 920181000168101 Citalopram (APL) 20 mg film-coated tablet 920141000168106 Citalopram (APL) 920141000168106 Citalopram (APL) 933202011000036101 citalopram 20 mg tablet, 30 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +85018011000036106 Cytarabine (Pfizer (Perth)) 100 mg/5 mL injection solution, 5 mL vial 11351 84875011000036104 Cytarabine (Pfizer (Perth)) 100 mg/5 mL injection solution, 5 mL vial 5828011000036109 Cytarabine (Pfizer (Perth)) 100 mg/5 mL injection solution, 5 mL vial 3540011000036100 Cytarabine (Pfizer (Perth)) 3540011000036100 Cytarabine (Pfizer (Perth)) 85173011000036104 cytarabine 100 mg/5 mL injection, 5 mL vial 22058011000036107 cytarabine 100 mg/5 mL injection, vial 21916011000036109 cytarabine +60080011000036101 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 2, blister pack 184469 56041011000036106 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 2 53767011000036100 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet 53168011000036107 Worming Tablet (Pharmacy Choice) 53168011000036107 Worming Tablet (Pharmacy Choice) 75961000036100 mebendazole 100 mg chewable tablet, 2 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +60080011000036101 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 2, blister pack 126488 56041011000036106 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet, 2 53767011000036100 Worming Tablet (Pharmacy Choice) 100 mg chewable tablet 53168011000036107 Worming Tablet (Pharmacy Choice) 53168011000036107 Worming Tablet (Pharmacy Choice) 75961000036100 mebendazole 100 mg chewable tablet, 2 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +44497011000036104 Estraderm MX 75 microgram/24 hours patch, 2, sachet 76117 41952011000036104 Estraderm MX 75 microgram/24 hours patch, 2 40284011000036108 Estraderm MX 75 microgram/24 hours patch 9331000168106 Estraderm MX 9331000168106 Estraderm MX 46736011000036109 estradiol 75 microgram/24 hours patch, 2 23547011000036102 estradiol 75 microgram/24 hours patch 21238011000036103 estradiol +677221000168108 Galantamine SR (AN) 8 mg modified release capsule, 28, blister pack 182042 677211000168101 Galantamine SR (AN) 8 mg modified release capsule, 28 677201000168104 Galantamine SR (AN) 8 mg modified release capsule 675861000168106 Galantamine SR (AN) 675861000168106 Galantamine SR (AN) 28248011000036107 galantamine 8 mg modified release capsule, 28 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +921920011000036100 CoQ10 (Blackmores) 75 mg soft capsule, 30, bottle 163425 921479011000036108 CoQ10 (Blackmores) 75 mg soft capsule, 30 921027011000036107 CoQ10 (Blackmores) 75 mg soft capsule 920941011000036100 CoQ10 (Blackmores) 920941011000036100 CoQ10 (Blackmores) 922606011000036109 ubidecarenone 75 mg capsule, 30 922103011000036104 ubidecarenone 75 mg capsule 77424011000036100 ubidecarenone +851111000168106 Lomotil uncoated tablet, 8, blister pack 74475 851101000168108 Lomotil uncoated tablet, 8 851051000168108 Lomotil uncoated tablet 3447011000036105 Lomotil 3447011000036105 Lomotil 851091000168103 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 8 851001000168109 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet 850991000168108 diphenoxylate + atropine sulfate monohydrate +1018171000168101 Amisulpride (Apotex) 400 mg film-coated tablet, 90, blister pack 178897 1018161000168107 Amisulpride (Apotex) 400 mg film-coated tablet, 90 1018091000168101 Amisulpride (Apotex) 400 mg film-coated tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 80068011000036103 amisulpride 400 mg tablet, 90 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +782311000168105 Voriconazole (Alphapharm) 200 mg film-coated tablet, 28, blister pack 206993 782301000168107 Voriconazole (Alphapharm) 200 mg film-coated tablet, 28 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46807011000036101 voriconazole 200 mg tablet, 28 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +928822011000036102 Epirubicin Hydrochloride (Novotech) 50 mg/25 mL injection solution, 25 mL vial 107350 928176011000036105 Epirubicin Hydrochloride (Novotech) 50 mg/25 mL injection solution, 25 mL vial 927833011000036100 Epirubicin Hydrochloride (Novotech) 50 mg/25 mL injection solution, 25 mL vial 927793011000036109 Epirubicin Hydrochloride (Novotech) 927793011000036109 Epirubicin Hydrochloride (Novotech) 27996011000036106 epirubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 23319011000036104 epirubicin hydrochloride 50 mg/25 mL injection, vial 21230011000036100 epirubicin +19533011000036108 Predsol 5 mg moulded suppository, 10, blister pack 56510 12805011000036108 Predsol 5 mg moulded suppository, 10 6096011000036100 Predsol 5 mg moulded suppository 55021000168104 Predsol 55021000168104 Predsol 27363011000036107 prednisolone (as sodium phosphate) 5 mg suppository, 10 22715011000036106 prednisolone (as sodium phosphate) 5 mg suppository 21374011000036100 prednisolone sodium phosphate +891811000168107 Bicor 7.5 mg film-coated tablet, 56, blister pack 81607 891801000168109 Bicor 7.5 mg film-coated tablet, 56 891701000168102 Bicor 7.5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 875561000168101 bisoprolol fumarate 7.5 mg tablet, 56 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +1058881000168100 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 30, bottle 234520 1058871000168103 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 30 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +850061000168102 Vzole 200 mg film-coated tablet, 14, bottle 238241 849701000168106 Vzole 200 mg film-coated tablet, 14 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46804011000036107 voriconazole 200 mg tablet, 14 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +60672011000036101 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 24, blister pack 42331 56630011000036109 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 24 54015011000036105 Paracetamol (Soul Pattinson) 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +87632011000036105 Topiramate (RBX) 200 mg film-coated tablet, 60, bottle 157973 87460011000036103 Topiramate (RBX) 200 mg film-coated tablet, 60 87322011000036100 Topiramate (RBX) 200 mg film-coated tablet 87292011000036100 Topiramate (RBX) 87292011000036100 Topiramate (RBX) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +20115011000036109 Attenta 10 mg uncoated tablet, 100, blister pack 72215 13340011000036102 Attenta 10 mg uncoated tablet, 100 6625011000036108 Attenta 10 mg uncoated tablet 3503011000036103 Attenta 3503011000036103 Attenta 27703011000036105 methylphenidate hydrochloride 10 mg tablet, 100 23038011000036102 methylphenidate hydrochloride 10 mg tablet 21277011000036101 methylphenidate +982581000168100 Vinorelbine (Pierre Fabre) 80 mg soft capsule, 1, blister pack 99566 982571000168103 Vinorelbine (Pierre Fabre) 80 mg soft capsule, 1 982551000168107 Vinorelbine (Pierre Fabre) 80 mg soft capsule 982521000168104 Vinorelbine (Pierre Fabre) 982521000168104 Vinorelbine (Pierre Fabre) 982561000168109 vinorelbine 80 mg capsule, 1 982541000168105 vinorelbine 80 mg capsule 21269011000036100 vinorelbine +933213641000036104 Citalopram (IPCA) 20 mg film-coated tablet, 56, blister pack 158871 933203271000036106 Citalopram (IPCA) 20 mg film-coated tablet, 56 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +926051000168106 Celmuno 500 mg film-coated tablet, 50, blister pack 174868 926041000168109 Celmuno 500 mg film-coated tablet, 50 926031000168100 Celmuno 500 mg film-coated tablet 925991000168106 Celmuno 925991000168106 Celmuno 85195011000036109 mycophenolate mofetil 500 mg tablet, 50 23303011000036104 mycophenolate mofetil 500 mg tablet 21266011000036109 mycophenolate +69085011000036109 Oilatum Plus bath oil, 500 mL, bottle 14540 66886011000036109 Oilatum Plus bath oil, 500 mL 65371011000036107 Oilatum Plus bath oil 65096011000036109 Oilatum Plus 65096011000036109 Oilatum Plus 71487011000036102 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil, 500 mL 70030011000036105 benzalkonium chloride 6% + light liquid paraffin 52.5% + triclosan 2% bath oil 69768011000036103 benzalkonium chloride + light liquid paraffin + triclosan +926673011000036105 Zelitrex 500 mg film-coated tablet, 10, blister pack 128739 926140011000036102 Zelitrex 500 mg film-coated tablet, 10 925639011000036108 Zelitrex 500 mg film-coated tablet 925537011000036106 Zelitrex 925537011000036106 Zelitrex 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +683001000168108 Cisatracurium (AFT) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 191832 682991000168107 Cisatracurium (AFT) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 682951000168102 Cisatracurium (AFT) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 682941000168104 Cisatracurium (AFT) 682941000168104 Cisatracurium (AFT) 682981000168109 cisatracurium 5 mg/2.5 mL injection, 2.5 mL ampoule 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +59668011000036109 Advil 200 mg sugar coated tablet, 48, blister pack 104221 55689011000036105 Advil 200 mg sugar coated tablet, 48 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +787771000168101 Arizole 20 mg uncoated tablet, 60, blister pack 198193 787761000168107 Arizole 20 mg uncoated tablet, 60 787561000168100 Arizole 20 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787751000168105 aripiprazole 20 mg tablet, 60 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1121871000168100 Sequase XR 300 mg modified release tablet, 60, blister pack 212514 1121861000168106 Sequase XR 300 mg modified release tablet, 60 1121851000168109 Sequase XR 300 mg modified release tablet 1121431000168100 Sequase XR 1121431000168100 Sequase XR 51537011000036102 quetiapine 300 mg modified release tablet, 60 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +933230801000036100 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 28, blister pack 172126 933224921000036107 Prochlorperazine Maleate (GH) 5 mg uncoated tablet, 28 933220411000036102 Prochlorperazine Maleate (GH) 5 mg uncoated tablet 933219291000036105 Prochlorperazine Maleate (GH) 933219291000036105 Prochlorperazine Maleate (GH) 924173011000036103 prochlorperazine maleate 5 mg tablet, 28 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +923827011000036101 Gaviscon Dual Action chewable tablet, 16, blister pack 158116 923373011000036106 Gaviscon Dual Action chewable tablet, 16 923044011000036106 Gaviscon Dual Action chewable tablet 47081000168106 Gaviscon Dual Action 47081000168106 Gaviscon Dual Action 924167011000036101 sodium alginate 250 mg + sodium bicarbonate 106.5 mg + calcium carbonate 187.5 mg chewable tablet, 16 923978011000036107 sodium alginate 250 mg + sodium bicarbonate 106.5 mg + calcium carbonate 187.5 mg chewable tablet 21740011000036105 sodium alginate + bicarbonate + calcium carbonate +652771000168101 Tacrolimus (Pharmacor) 1 mg hard capsule, 100, blister pack 209266 652761000168107 Tacrolimus (Pharmacor) 1 mg hard capsule, 100 652751000168105 Tacrolimus (Pharmacor) 1 mg hard capsule 650951000168107 Tacrolimus (Pharmacor) 650951000168107 Tacrolimus (Pharmacor) 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +917261000168106 Fluticasone plus Salmeterol 125/25 (Cipla) pressurised inhalation, 120 actuations, metered dose aerosol can 267106 917251000168109 Fluticasone plus Salmeterol 125/25 (Cipla) pressurised inhalation, 120 actuations 917241000168107 Fluticasone plus Salmeterol 125/25 (Cipla) pressurised inhalation, actuation 917231000168103 Fluticasone plus Salmeterol 125/25 (Cipla) 917231000168103 Fluticasone plus Salmeterol 125/25 (Cipla) 26724011000036100 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22119011000036103 fluticasone propionate 125 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +891571000168102 Bicor 3.75 mg film-coated tablet, 30, blister pack 81605 891561000168108 Bicor 3.75 mg film-coated tablet, 30 891491000168100 Bicor 3.75 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 874861000168103 bisoprolol fumarate 3.75 mg tablet, 30 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +857371000168107 Trevicta 350 mg/1.75 mL modified release injection, 1.75 mL syringe 261411 857361000168101 Trevicta 350 mg/1.75 mL modified release injection, 1.75 mL syringe 857341000168100 Trevicta 350 mg/1.75 mL modified release injection, 1.75 mL syringe 856551000168107 Trevicta 856551000168107 Trevicta 857351000168103 paliperidone 350 mg/1.75 mL modified release injection, 1.75 mL syringe 857331000168109 paliperidone 350 mg/1.75 mL modified release injection, syringe 34837011000036104 paliperidone +59884011000036105 Acid and Heartburn Relief (Terry White Chemists) 150 mg film-coated tablet, 28, strip pack 116351 55846011000036103 Acid and Heartburn Relief (Terry White Chemists) 150 mg film-coated tablet, 28 53648011000036102 Acid and Heartburn Relief (Terry White Chemists) 150 mg film-coated tablet 53187011000036108 Acid and Heartburn Relief (Terry White Chemists) 53187011000036108 Acid and Heartburn Relief (Terry White Chemists) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +20527011000036100 Somatuline LA (1 x 30 mg vial, 1 x 2 mL diluent ampoule), 1 pack, composite pack 79153 13726011000036102 Somatuline LA (1 x 30 mg vial, 1 x 2 mL diluent ampoule), 1 pack 7008011000036104 Somatuline LA (lanreotide 30 mg) modified release injection, 30 mg vial 39321000168103 Somatuline LA 39321000168103 Somatuline LA 27901011000036104 lanreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 23226011000036107 lanreotide 30 mg modified release injection, vial 21278011000036100 lanreotide +20527011000036100 Somatuline LA (1 x 30 mg vial, 1 x 2 mL diluent ampoule), 1 pack, composite pack 79153 13726011000036102 Somatuline LA (1 x 30 mg vial, 1 x 2 mL diluent ampoule), 1 pack 638191000168104 Somatuline LA (inert substance) diluent, 2 mL ampoule 39321000168103 Somatuline LA 39321000168103 Somatuline LA 27901011000036104 lanreotide 30 mg modified release injection [1 vial] (&) inert substance diluent [2 mL ampoule], 1 pack 634671000168103 inert substance diluent, 2 mL ampoule 21220011000036103 inert substance +20200011000036101 Captopril (Terry White Chemists) 25 mg uncoated tablet, 90, blister pack 74003 13419011000036105 Captopril (Terry White Chemists) 25 mg uncoated tablet, 90 6701011000036105 Captopril (Terry White Chemists) 25 mg uncoated tablet 4036011000036101 Captopril (Terry White Chemists) 4036011000036101 Captopril (Terry White Chemists) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +649531000168102 Latanoprost/Timolol 50/5 (Apo) eye drops solution, 2.5 mL, bottle 210787 649521000168100 Latanoprost/Timolol 50/5 (Apo) eye drops solution, 2.5 mL 649511000168107 Latanoprost/Timolol 50/5 (Apo) eye drops solution 649501000168109 Latanoprost/Timolol 50/5 (Apo) 649501000168109 Latanoprost/Timolol 50/5 (Apo) 27928011000036100 latanoprost 0.005% + timolol 0.5% eye drops, 2.5 mL 23252011000036107 latanoprost 0.005% + timolol 0.5% eye drops 21804011000036107 latanoprost + timolol +1058671000168102 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 90, bottle 234464 1058661000168108 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 90 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910581000168103 rosuvastatin 40 mg tablet, 90 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +69298011000036106 Zostrix 0.025% cream, 45 g, tube 19658 67098011000036109 Zostrix 0.025% cream, 45 g 65486011000036100 Zostrix 0.025% cream 57621000168104 Zostrix 57621000168104 Zostrix 71666011000036104 capsaicin 0.025% cream, 45 g 70115011000036101 capsaicin 0.025% cream 69821011000036104 capsaicin +886191000168102 Tadalafil (Blooms The Chemist) 20 mg film-coated tablet, 4, blister pack 205877 886181000168100 Tadalafil (Blooms The Chemist) 20 mg film-coated tablet, 4 886171000168103 Tadalafil (Blooms The Chemist) 20 mg film-coated tablet 885831000168100 Tadalafil (Blooms The Chemist) 885831000168100 Tadalafil (Blooms The Chemist) 27945011000036109 tadalafil 20 mg tablet, 4 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +648521000168109 Veletri 500 microgram powder for injection, 1 vial 208316 648511000168102 Veletri 500 microgram powder for injection, 1 vial 648491000168107 Veletri 500 microgram powder for injection, 500 microgram vial 648431000168108 Veletri 648431000168108 Veletri 648501000168100 epoprostenol 500 microgram injection, 1 vial 23254011000036103 epoprostenol 500 microgram injection, vial 21703011000036107 epoprostenol +917301000168103 Fluticasone plus Salmeterol 250/25 (Cipla) pressurised inhalation, 120 actuations, metered dose aerosol can 267107 917291000168104 Fluticasone plus Salmeterol 250/25 (Cipla) pressurised inhalation, 120 actuations 917281000168102 Fluticasone plus Salmeterol 250/25 (Cipla) pressurised inhalation, actuation 917271000168100 Fluticasone plus Salmeterol 250/25 (Cipla) 917271000168100 Fluticasone plus Salmeterol 250/25 (Cipla) 26725011000036101 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, 120 actuations 22120011000036102 fluticasone propionate 250 microgram/actuation + salmeterol 25 microgram/actuation pressurised inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +887321000168104 Cansartan HCTZ 16/12.5 uncoated tablet, 30, blister pack 253372 887311000168106 Cansartan HCTZ 16/12.5 uncoated tablet, 30 887301000168108 Cansartan HCTZ 16/12.5 uncoated tablet 887291000168107 Cansartan HCTZ 16/12.5 887291000168107 Cansartan HCTZ 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +68784011000036106 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 330 g, jar 10184 66483011000036108 Metamucil Granular Orange 312.8 mg/g powder for oral liquid, 330 g 65327011000036100 Metamucil Granular Orange 312.8 mg/g powder for oral liquid 7551000168101 Metamucil Granular 7551000168101 Metamucil Granular 71216011000036102 psyllium husk powder 312.8 mg/g powder for oral liquid, 330 g 69905011000036104 psyllium husk powder 312.8 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +34697011000036102 Dilasig 12.5 mg film-coated tablet, 60, blister pack 141461 34281011000036108 Dilasig 12.5 mg film-coated tablet, 60 34008011000036105 Dilasig 12.5 mg film-coated tablet 33959011000036100 Dilasig 33959011000036100 Dilasig 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +816671000168109 Atomoxetine (Amneal) 80 mg hard capsule, 7, blister pack 238340 816661000168103 Atomoxetine (Amneal) 80 mg hard capsule, 7 816651000168100 Atomoxetine (Amneal) 80 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1015841000168106 Aripiprazole (ZP) 30 mg uncoated tablet, 30, blister pack 217245 1015831000168102 Aripiprazole (ZP) 30 mg uncoated tablet, 30 1015821000168100 Aripiprazole (ZP) 30 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +43974011000036102 Oruvail SR 100 mg modified release capsule, 10, blister pack 42421 41466011000036106 Oruvail SR 100 mg modified release capsule, 10 39993011000036106 Oruvail SR 100 mg modified release capsule 10051000168105 Oruvail SR 10051000168105 Oruvail SR 46314011000036107 ketoprofen 100 mg modified release capsule, 10 45071011000036101 ketoprofen 100 mg modified release capsule 21856011000036108 ketoprofen +878741000168102 Midazolam (B Braun) 50 mg/50 mL intravenous infusion injection, 10 x 50 mL bottles 225697 878731000168106 Midazolam (B Braun) 50 mg/50 mL intravenous infusion injection, 10 x 50 mL bottles 878711000168101 Midazolam (B Braun) 50 mg/50 mL intravenous infusion injection, 50 mL bottle 873561000168102 Midazolam (B Braun) 873561000168102 Midazolam (B Braun) 878721000168108 midazolam 50 mg/50 mL injection, 10 x 50 mL bottles 878701000168104 midazolam 50 mg/50 mL injection, bottle 37721011000036103 midazolam +52730011000036101 Vaxigrip Junior 2009 needle free injection solution, 1 x 0.25 mL syringe 129875 52542011000036104 Vaxigrip Junior 2009 needle free injection solution, 1 x 0.25 mL syringe 52409011000036107 Vaxigrip Junior 2009 needle free injection solution, 0.25 mL syringe 24841000168102 Vaxigrip Junior 2009 24841000168102 Vaxigrip Junior 2009 52906011000036101 influenza trivalent child vaccine 2009 injection, 1 x 0.25 mL syringe 52814011000036103 influenza trivalent child vaccine 2009 injection, 0.25 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +1061851000168105 Ramipril (Auro) 5 mg hard capsule, 30, bottle 203706 1060771000168101 Ramipril (Auro) 5 mg hard capsule, 30 1060731000168104 Ramipril (Auro) 5 mg hard capsule 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +44343011000036105 Novonorm 500 microgram uncoated tablet, 30, blister pack 67270 41810011000036102 Novonorm 500 microgram uncoated tablet, 30 40208011000036102 Novonorm 500 microgram uncoated tablet 4911000168101 Novonorm 4911000168101 Novonorm 46616011000036105 repaglinide 500 microgram tablet, 30 45240011000036103 repaglinide 500 microgram tablet 44883011000036104 repaglinide +682681000168102 Esomeprazole (Actavis) 20 mg enteric capsule, 30, bottle 206006 682671000168100 Esomeprazole (Actavis) 20 mg enteric capsule, 30 682651000168109 Esomeprazole (Actavis) 20 mg enteric capsule 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 682661000168106 esomeprazole 20 mg enteric capsule, 30 682641000168107 esomeprazole 20 mg enteric capsule 21697011000036107 esomeprazole +35639011000036106 Vistil Forte 3% eye drops solution, 15 mL, bottle 35576011000036109 Vistil Forte 3% eye drops solution, 15 mL 35462011000036107 Vistil Forte 3% eye drops solution 47571000168100 Vistil Forte 47571000168100 Vistil Forte 35773011000036104 polyvinyl alcohol 3% eye drops, 15 mL 35714011000036109 polyvinyl alcohol 3% eye drops 35687011000036109 polyvinyl alcohol +954751000168101 Captopril (WL) 50 mg uncoated tablet, 90, bottle 56653 954741000168103 Captopril (WL) 50 mg uncoated tablet, 90 954731000168107 Captopril (WL) 50 mg uncoated tablet 954581000168102 Captopril (WL) 954581000168102 Captopril (WL) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +21057011000036105 Gopten 4 mg hard capsule, 28, blister pack 96969 14202011000036100 Gopten 4 mg hard capsule, 28 7483011000036104 Gopten 4 mg hard capsule 4026011000036104 Gopten 4026011000036104 Gopten 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +933212131000036106 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 60, blister pack 142235 933200771000036109 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 60 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200781000036106 donepezil hydrochloride 5 mg tablet, 60 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +17750011000036106 Hyforil 20/12.5 mg uncoated tablet, 30, blister pack 124589 11771011000036103 Hyforil 20/12.5 mg uncoated tablet, 30 5229011000036105 Hyforil 20/12.5 mg uncoated tablet 10181000168102 Hyforil 20/12.5 mg 10181000168102 Hyforil 20/12.5 mg 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +78987011000036109 Tinexa 500 microgram uncoated tablet, 2, bottle 132561 78812011000036104 Tinexa 500 microgram uncoated tablet, 2 78632011000036102 Tinexa 500 microgram uncoated tablet 78597011000036104 Tinexa 78597011000036104 Tinexa 27271011000036107 cabergoline 500 microgram tablet, 2 22627011000036100 cabergoline 500 microgram tablet 21526011000036105 cabergoline +931426011000036104 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 20, blister pack 132824 930598011000036109 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet, 20 929962011000036104 Ciprofloxacin (Pharmacor) 250 mg film-coated tablet 4399011000036103 Ciprofloxacin (Pharmacor) 4399011000036103 Ciprofloxacin (Pharmacor) 932363011000036105 ciprofloxacin 250 mg tablet, 20 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +933212201000036109 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 50, blister pack 142236 933200901000036103 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet, 50 933194871000036107 Donepezil Hydrochloride (Synthon) 10 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200911000036101 donepezil hydrochloride 10 mg tablet, 50 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +995611000168101 Difflam Lozenge Double Mint Sugar Free lozenge, 16, blister pack 58319 995601000168104 Difflam Lozenge Double Mint Sugar Free lozenge, 16 995581000168108 Difflam Lozenge Double Mint Sugar Free lozenge 13711000168100 Difflam Lozenge 13711000168100 Difflam Lozenge 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 61739011000036109 benzydamine + cetylpyridinium +969691000168105 Aripiprazole (AN) 30 mg uncoated tablet, 30, bottle 198201 969501000168100 Aripiprazole (AN) 30 mg uncoated tablet, 30 969471000168106 Aripiprazole (AN) 30 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +37566011000036103 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 5 x 5 mL ampoules 16273 36833011000036102 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 5 x 5 mL ampoules 36097011000036104 Paraldehyde (Phebra) 5 mL/5 mL injection solution, 5 mL ampoule 35928011000036100 Paraldehyde (Phebra) 35928011000036100 Paraldehyde (Phebra) 38722011000036103 paraldehyde 5 mL/5 mL injection, 5 x 5 mL ampoules 37953011000036105 paraldehyde 5 mL/5 mL injection, ampoule 37730011000036108 paraldehyde +733101000168108 Algivon Plus (CR4231) 2.5 cm x 20 cm ribbon, 5, carton 203994 733091000168103 Algivon Plus (CR4231) 2.5 cm x 20 cm ribbon, 5 733071000168104 Algivon Plus (CR4231) 2.5 cm x 20 cm ribbon 733031000168102 Algivon Plus (CR4231) 733031000168102 Algivon Plus (CR4231) 733081000168101 dressing alginate with manuka honey 2.5 cm x 20 cm ribbon, 5 733061000168105 dressing alginate with manuka honey 2.5 cm x 20 cm ribbon 733051000168108 dressing alginate with manuka honey +849781000168103 Vzole 200 mg film-coated tablet, 20, blister pack 238242 849771000168101 Vzole 200 mg film-coated tablet, 20 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46806011000036104 voriconazole 200 mg tablet, 20 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +1033021000168102 Ramipril (Apotex) 10 mg capsule, 7, blister pack 179036 1033011000168109 Ramipril (Apotex) 10 mg capsule, 7 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 46765011000036109 ramipril 10 mg capsule, 7 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +33549011000036108 Quinapril (Apo) 5 mg film-coated tablet, 30, blister pack 133219 33287011000036102 Quinapril (Apo) 5 mg film-coated tablet, 30 33049011000036105 Quinapril (Apo) 5 mg film-coated tablet 17791000168102 Quinapril (Apo) 17791000168102 Quinapril (Apo) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +884181000168108 Bosentan (Accord) 125 mg film-coated tablet, 100, bottle 235883 884171000168105 Bosentan (Accord) 125 mg film-coated tablet, 100 884051000168100 Bosentan (Accord) 125 mg film-coated tablet 884041000168102 Bosentan (Accord) 884041000168102 Bosentan (Accord) 884161000168104 bosentan 125 mg tablet, 100 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +61048011000036100 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 4, blister pack 67365 56991011000036108 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 4 54148011000036100 Period Pain Relief (Pharmacist) 275 mg film-coated tablet 53313011000036106 Period Pain Relief (Pharmacist) 53313011000036106 Period Pain Relief (Pharmacist) 63739011000036102 naproxen sodium 275 mg tablet, 4 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +44736011000036104 Testogel 1% (25 mg/2.5 g) gel, 14 x 2.5 g sachets 96129 42181011000036103 Testogel 1% (25 mg/2.5 g) gel, 14 x 2.5 g sachets 40377011000036100 Testogel 1% (25 mg/2.5 g) gel, 2.5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 46942011000036103 testosterone 1% (25 mg/2.5 g) gel, 14 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +59704011000036108 Panafen IB Mini Cap 200 mg gelatin coated tablet, 12, blister pack 104660 55695011000036107 Panafen IB Mini Cap 200 mg gelatin coated tablet, 12 53654011000036107 Panafen IB Mini Cap 200 mg gelatin coated tablet 41591000168107 Panafen IB Mini Cap 41591000168107 Panafen IB Mini Cap 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1012691000168108 Valganciclovir (Apotex) 450 mg film-coated tablet, 60, bottle 184312 999431000168106 Valganciclovir (Apotex) 450 mg film-coated tablet, 60 999421000168108 Valganciclovir (Apotex) 450 mg film-coated tablet 999411000168101 Valganciclovir (Apotex) 999411000168101 Valganciclovir (Apotex) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +37523011000036101 Syntometrine injection solution, 5 x 1 mL ampoules 13396 36791011000036105 Syntometrine injection solution, 5 x 1 mL ampoules 36010011000036104 Syntometrine injection solution, ampoule 36002011000036103 Syntometrine 36002011000036103 Syntometrine 38688011000036103 oxytocin 5 units/mL + ergometrine maleate 500 microgram/mL injection, 5 x 1 mL ampoules 37927011000036100 oxytocin 5 units/mL + ergometrine maleate 500 microgram/mL injection, ampoule 37779011000036100 oxytocin + ergometrine +787811000168101 Arizole 30 mg uncoated tablet, 30, blister pack 198196 787631000168107 Arizole 30 mg uncoated tablet, 30 787621000168109 Arizole 30 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +1096051000168106 Terbinafine Anti Fungal (Amcal) 1% cream, 30 g, tube 234926 1096041000168109 Terbinafine Anti Fungal (Amcal) 1% cream, 30 g 1096031000168100 Terbinafine Anti Fungal (Amcal) 1% cream 1096021000168103 Terbinafine Anti Fungal (Amcal) 1096021000168103 Terbinafine Anti Fungal (Amcal) 932349011000036101 terbinafine hydrochloride 1% cream, 30 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +82415011000036105 Glutose-15 402 mg/g oral gel, 37.5 g, tube 53951 82204011000036108 Glutose-15 402 mg/g oral gel, 37.5 g 82040011000036103 Glutose-15 402 mg/g oral gel 35321000168100 Glutose-15 35321000168100 Glutose-15 82569011000036100 glucose 402 mg/g oral gel, 37.5 g 82455011000036103 glucose 402 mg/g oral gel 21354011000036103 glucose +1050181000168106 Oxycodone (Wockhardt) 10 mg/mL injection solution, 5 x 1 mL ampoules 277847 1050171000168108 Oxycodone (Wockhardt) 10 mg/mL injection solution, 5 x 1 mL ampoules 1050161000168102 Oxycodone (Wockhardt) 10 mg/mL injection solution, ampoule 1050121000168107 Oxycodone (Wockhardt) 1050121000168107 Oxycodone (Wockhardt) 35093011000036105 oxycodone hydrochloride 10 mg/mL injection, 5 x 1 mL ampoules 34845011000036105 oxycodone hydrochloride 10 mg/mL injection, ampoule 21259011000036105 oxycodone +61176011000036107 Panadeine Caplet film-coated tablet, 12, blister pack 75184 57119011000036108 Panadeine Caplet film-coated tablet, 12 54205011000036101 Panadeine Caplet film-coated tablet 17001000168105 Panadeine Caplet 17001000168105 Panadeine Caplet 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +131871000036109 Montelukast (RBX) 4 mg chewable tablet, 28, blister pack 184831 128161000036103 Montelukast (RBX) 4 mg chewable tablet, 28 124381000036103 Montelukast (RBX) 4 mg chewable tablet 124131000036100 Montelukast (RBX) 124131000036100 Montelukast (RBX) 27758011000036107 montelukast 4 mg chewable tablet, 28 23089011000036101 montelukast 4 mg chewable tablet 21884011000036106 montelukast +1009491000168100 Rivastigmine 5 (Apo) 4.6 mg/24 hours patch, 7, sachet 233748 1009481000168103 Rivastigmine 5 (Apo) 4.6 mg/24 hours patch, 7 1009471000168101 Rivastigmine 5 (Apo) 4.6 mg/24 hours patch 1009461000168107 Rivastigmine 5 (Apo) 1009461000168107 Rivastigmine 5 (Apo) 771451000168103 rivastigmine 4.6 mg/24 hours patch, 7 37922011000036102 rivastigmine 4.6 mg/24 hours patch 21413011000036101 rivastigmine +69667011000036109 Nicabate Clear 7 mg/24 hours patch, 7, sachet 81033 67466011000036103 Nicabate Clear 7 mg/24 hours patch, 7 65674011000036101 Nicabate Clear 7 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 27924011000036107 nicotine 7 mg/24 hours patch, 7 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +1058761000168100 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 90, bottle 234496 1058751000168102 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 90 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 910681000168104 rosuvastatin 20 mg tablet, 90 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +920739011000036109 Memantine (Apo) 10 mg film-coated tablet, 56, blister pack 159582 920422011000036106 Memantine (Apo) 10 mg film-coated tablet, 56 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38842011000036103 memantine hydrochloride 10 mg tablet, 56 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +929035011000036106 Sertraline (DRLA) 50 mg film-coated tablet, 10, blister pack 160766 928396011000036107 Sertraline (DRLA) 50 mg film-coated tablet, 10 927966011000036109 Sertraline (DRLA) 50 mg film-coated tablet 927784011000036107 Sertraline (DRLA) 927784011000036107 Sertraline (DRLA) 929236011000036108 sertraline 50 mg tablet, 10 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +966471000168104 Gamunex 10% 20 g/200 mL injection solution, 200 mL vial 117240 966461000168105 Gamunex 10% 20 g/200 mL injection solution, 200 mL vial 966451000168108 Gamunex 10% 20 g/200 mL injection solution, 200 mL vial 966321000168105 Gamunex 10% 966321000168105 Gamunex 10% 108931000036104 normal immunoglobulin 20 g/200 mL injection, 200 mL vial 107191000036104 normal immunoglobulin 20 g/200 mL injection, vial 74965011000036103 normal immunoglobulin +1038491000168103 Vimpat 200 mg/20 mL injection solution, 20 mL vial 151815 1038481000168101 Vimpat 200 mg/20 mL injection solution, 20 mL vial 923011011000036103 Vimpat 200 mg/20 mL injection solution, 20 mL vial 83598011000036103 Vimpat 83598011000036103 Vimpat 1038471000168104 lacosamide 200 mg/20 mL injection, 20 mL vial 923960011000036101 lacosamide 200 mg/20 mL injection, vial 84408011000036109 lacosamide +920756011000036104 Captopril (Sandoz) 50 mg film-coated tablet, 90, bottle 60109 920439011000036104 Captopril (Sandoz) 50 mg film-coated tablet, 90 920180011000036103 Captopril (Sandoz) 50 mg film-coated tablet 920077011000036102 Captopril (Sandoz) 920077011000036102 Captopril (Sandoz) 27833011000036104 captopril 50 mg tablet, 90 23161011000036105 captopril 50 mg tablet 21533011000036102 captopril +700027201000036105 Nexium 20 mg enteric tablet, 14, blister pack 74133 181000168105 Nexium 20 mg enteric tablet, 14 7488011000036109 Nexium 20 mg enteric tablet 2929011000036108 Nexium 2929011000036108 Nexium 700031831000036109 esomeprazole 20 mg enteric tablet, 14 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +52773011000036106 Fluarix 2009 injection suspension, 10 x 0.5 mL syringes 154660 52583011000036102 Fluarix 2009 injection suspension, 10 x 0.5 mL syringes 52430011000036108 Fluarix 2009 injection suspension, 0.5 mL syringe 6981000168103 Fluarix 2009 6981000168103 Fluarix 2009 52902011000036100 influenza trivalent adult vaccine 2009 injection, 10 x 0.5 mL syringes 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +969371000168104 Aripiprazole (AN) 10 mg uncoated tablet, 60, blister pack 198203 969361000168105 Aripiprazole (AN) 10 mg uncoated tablet, 60 969291000168108 Aripiprazole (AN) 10 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787431000168109 aripiprazole 10 mg tablet, 60 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +59831011000036101 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 50, blister pack 114906 55793011000036104 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 50 53626011000036103 Paracetamol (Your Pharmacy) 500 mg uncoated tablet 53318011000036101 Paracetamol (Your Pharmacy) 53318011000036101 Paracetamol (Your Pharmacy) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +928972011000036108 Valaciclovir (Apo) 500 mg film-coated tablet, 2, blister pack 158911 928333011000036108 Valaciclovir (Apo) 500 mg film-coated tablet, 2 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 927316011000036103 valaciclovir 500 mg tablet, 2 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +69196011000036105 Plasma-Lyte 56 Maintenance in 5% Glucose intravenous infusion injection, 1 L bag 19441 66996011000036104 Plasma-Lyte 56 Maintenance in 5% Glucose intravenous infusion injection, 1 L bag 65201011000036105 Plasma-Lyte 56 Maintenance in 5% Glucose intravenous infusion injection, 1 L bag 65118011000036100 Plasma-Lyte 56 Maintenance in 5% Glucose 65118011000036100 Plasma-Lyte 56 Maintenance in 5% Glucose 71566011000036109 sodium chloride 2.34 g/L + potassium acetate 1.28 g (potassium 13 mmol)/L + magnesium acetate tetrahydrate 320 mg/L + glucose 5% (50 g/L) injection, 1 L bag 70068011000036102 sodium chloride 2.34 g/L + potassium acetate 1.28 g (potassium 13 mmol)/L + magnesium acetate tetrahydrate 320 mg/L + glucose 5% (50 g/L) injection, bag 69847011000036109 sodium chloride + potassium + magnesium acetate tetrahydrate + glucose +733241000168102 Arginaid Lemon powder for oral liquid, 14 x 9.2 g sachets 733231000168106 Arginaid Lemon powder for oral liquid, 14 x 9.2 g sachets 733211000168101 Arginaid Lemon powder for oral liquid, 9.2 g sachet 733171000168103 Arginaid 733171000168103 Arginaid 733221000168108 protein formula with arginine, vitamin C and E powder for oral liquid, 14 x 9.2 g sachets 733201000168104 protein formula with arginine, vitamin C and E powder for oral liquid, 9.2 g sachet 733191000168102 protein formula with arginine, vitamin C and E +1018351000168108 Amisulpride (Apotex) 100 mg tablet, 60, blister pack 178907 1018341000168106 Amisulpride (Apotex) 100 mg tablet, 60 1018291000168108 Amisulpride (Apotex) 100 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 84639011000036109 amisulpride 100 mg tablet, 60 23498011000036102 amisulpride 100 mg tablet 21522011000036106 amisulpride +60980011000036105 Demazin Cold Relief Paediatric Oral Drops Colour Free oral liquid solution, 50 mL, bottle 63198 56923011000036104 Demazin Cold Relief Paediatric Oral Drops Colour Free oral liquid solution, 50 mL 54122011000036100 Demazin Cold Relief Paediatric Oral Drops Colour Free oral liquid solution, 5 mL 18051000168108 Demazin Cold Relief Paediatric Oral Drops 18051000168108 Demazin Cold Relief Paediatric Oral Drops 63710011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 50 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +50382011000036100 Restore Plus (9956) 10 cm x 10 cm dressing, 5, carton 49374011000036107 Restore Plus (9956) 10 cm x 10 cm dressing, 5 48658011000036105 Restore Plus (9956) 10 cm x 10 cm dressing 60131000168102 Restore Plus (9956) 60131000168102 Restore Plus (9956) 51347011000036101 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing, 5 50871011000036100 dressing hydrocolloid superficial wound moderate exudate 10 cm x 10 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +19362011000036108 Menorest 100 microgram/24 hours patch, 8, sachet 51624 12649011000036106 Menorest 100 microgram/24 hours patch, 8 5816011000036102 Menorest 100 microgram/24 hours patch 4116011000036101 Menorest 4116011000036101 Menorest 28324011000036107 estradiol 100 microgram/24 hours patch, 8 23636011000036108 estradiol 100 microgram/24 hours patch 21238011000036103 estradiol +995331000168102 Cepacol Mint 0.05% mouthwash, 500 mL, bottle 10104 995321000168100 Cepacol Mint 0.05% mouthwash, 500 mL 995291000168108 Cepacol Mint 0.05% mouthwash 32331000168107 Cepacol 32331000168107 Cepacol 995001000168107 cetylpyridinium chloride 0.05% mouthwash, 500 mL 994951000168106 cetylpyridinium chloride 0.05% mouthwash 69862011000036104 cetylpyridinium +865771000168107 Amitriptyline (PN) 10 mg tablet, 50, blister pack 232146 865761000168101 Amitriptyline (PN) 10 mg tablet, 50 865751000168103 Amitriptyline (PN) 10 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 27689011000036102 amitriptyline hydrochloride 10 mg tablet, 50 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +86124011000036103 Levetiracetam (Chemmart) 500 mg tablet, 60, blister pack 156316 85701011000036101 Levetiracetam (Chemmart) 500 mg tablet, 60 85342011000036102 Levetiracetam (Chemmart) 500 mg tablet 85284011000036109 Levetiracetam (Chemmart) 85284011000036109 Levetiracetam (Chemmart) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +170871000036100 Metoprolol Tartrate (Actavis) 50 mg film-coated tablet, 100, blister pack 192782 170031000036106 Metoprolol Tartrate (Actavis) 50 mg film-coated tablet, 100 168971000036101 Metoprolol Tartrate (Actavis) 50 mg film-coated tablet 168841000036103 Metoprolol Tartrate (Actavis) 168841000036103 Metoprolol Tartrate (Actavis) 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +933212361000036103 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 28, blister pack 142238 933201151000036107 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 28 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +923331000168105 Zolpidem (Chemmart) 10 mg film-coated tablet, 7, blister pack 127172 923321000168107 Zolpidem (Chemmart) 10 mg film-coated tablet, 7 923311000168100 Zolpidem (Chemmart) 10 mg film-coated tablet 923301000168103 Zolpidem (Chemmart) 923301000168103 Zolpidem (Chemmart) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1093311000168100 Voltaren Emulgel No Mess Applicator 1.16% gel, 60 g, tube 282516 1093301000168103 Voltaren Emulgel No Mess Applicator 1.16% gel, 60 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1093291000168104 diclofenac diethylamine 1.16% gel, 60 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +82346011000036101 Volibris 10 mg film-coated tablet, 30, blister pack 143739 82141011000036104 Volibris 10 mg film-coated tablet, 30 82010011000036107 Volibris 10 mg film-coated tablet 81978011000036105 Volibris 81978011000036105 Volibris 82532011000036101 ambrisentan 10 mg tablet, 30 82440011000036105 ambrisentan 10 mg tablet 82428011000036105 ambrisentan +884501000168106 Bosentan (Sun) 125 mg film-coated tablet, 56, blister pack 257752 884491000168104 Bosentan (Sun) 125 mg film-coated tablet, 56 884481000168102 Bosentan (Sun) 125 mg film-coated tablet 884391000168108 Bosentan (Sun) 884391000168108 Bosentan (Sun) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +85028011000036100 Pravastatin Sodium (Sandoz) 40 mg tablet, 30, blister pack 152450 84893011000036109 Pravastatin Sodium (Sandoz) 40 mg tablet, 30 84787011000036103 Pravastatin Sodium (Sandoz) 40 mg tablet 83228011000036100 Pravastatin Sodium (Sandoz) 83228011000036100 Pravastatin Sodium (Sandoz) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +991081000168101 Bisoprolol (Apotex) 1.25 mg tablet, 30, blister pack 182109 991071000168104 Bisoprolol (Apotex) 1.25 mg tablet, 30 990981000168105 Bisoprolol (Apotex) 1.25 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 46791011000036109 bisoprolol fumarate 1.25 mg tablet, 30 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +104541000036109 Irbesat 150 mg film-coated tablet, 30, blister pack 192815 101751000036104 Irbesat 150 mg film-coated tablet, 30 98861000036107 Irbesat 150 mg film-coated tablet 98041000036100 Irbesat 98041000036100 Irbesat 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1064411000168109 Paracetamol plus Codeine and Calmative (Discount Drug Stores) uncoated tablet, 20, blister pack 241852 1064401000168106 Paracetamol plus Codeine and Calmative (Discount Drug Stores) uncoated tablet, 20 1064391000168109 Paracetamol plus Codeine and Calmative (Discount Drug Stores) uncoated tablet 1064381000168106 Paracetamol plus Codeine and Calmative (Discount Drug Stores) 1064381000168106 Paracetamol plus Codeine and Calmative (Discount Drug Stores) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +116241000036104 Water for Injections (Fresenius Kabi) injection solution, 20 x 500 mL bags 144809 114601000036108 Water for Injections (Fresenius Kabi) injection solution, 20 x 500 mL bags 112951000036107 Water for Injections (Fresenius Kabi) injection solution, 500 mL bag 75991011000036108 Water for Injections (Fresenius Kabi) 75991011000036108 Water for Injections (Fresenius Kabi) 114611000036105 water for injections injection, 20 x 500 mL bags 112961000036105 water for injections injection, 500 mL bag 77431011000036101 water for injections +991041000168106 Bisoprolol (Apotex) 1.25 mg tablet, 10, blister pack 182109 991031000168102 Bisoprolol (Apotex) 1.25 mg tablet, 10 990981000168105 Bisoprolol (Apotex) 1.25 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 46788011000036101 bisoprolol fumarate 1.25 mg tablet, 10 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +1101901000168105 Tobramycin (Sun) 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 285709 1101891000168106 Tobramycin (Sun) 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 1101881000168108 Tobramycin (Sun) 300 mg/5 mL inhalation solution, 5 mL ampoule 1101871000168105 Tobramycin (Sun) 1101871000168105 Tobramycin (Sun) 933226121000036101 tobramycin 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 933220971000036102 tobramycin 300 mg/5 mL inhalation solution, ampoule 21646011000036100 tobramycin +933246921000036101 Pantoprazole (PS) 40 mg enteric tablet, 14, blister pack 158197 933243751000036102 Pantoprazole (PS) 40 mg enteric tablet, 14 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46654011000036106 pantoprazole 40 mg enteric tablet, 14 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +12441000036106 Quetiapine (Sandoz) 200 mg film-coated tablet, 60, bottle 158105 6771000036105 Quetiapine (Sandoz) 200 mg film-coated tablet, 60 2821000036102 Quetiapine (Sandoz) 200 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1006841000168103 Ataris 20 mg film-coated tablet, 30, bottle 164964 1006831000168107 Ataris 20 mg film-coated tablet, 30 1006821000168109 Ataris 20 mg film-coated tablet 1006781000168104 Ataris 1006781000168104 Ataris 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +687181000168108 Abilify Maintena (1 x 300 mg vial, 1 x 2 mL diluent vial), 1 pack 211122 687171000168105 Abilify Maintena (1 x 300 mg vial, 1 x 2 mL diluent vial), 1 pack 687151000168101 Abilify Maintena (aripiprazole 300 mg) modified release injection, 300 mg vial 686711000168100 Abilify Maintena 686711000168100 Abilify Maintena 687161000168104 aripiprazole 300 mg modified release injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 687141000168103 aripiprazole 300 mg modified release injection, vial 21675011000036108 aripiprazole +687181000168108 Abilify Maintena (1 x 300 mg vial, 1 x 2 mL diluent vial), 1 pack 211122 687171000168105 Abilify Maintena (1 x 300 mg vial, 1 x 2 mL diluent vial), 1 pack 686741000168101 Abilify Maintena (inert substance) diluent, 2 mL vial 686711000168100 Abilify Maintena 686711000168100 Abilify Maintena 687161000168104 aripiprazole 300 mg modified release injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +933212291000036101 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 50, blister pack 142237 933201071000036101 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 50 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933200741000036102 donepezil hydrochloride 5 mg tablet, 50 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +18728011000036102 Pravastatin (DP) 40 mg uncoated tablet, 30, blister pack 118734 11597011000036101 Pravastatin (DP) 40 mg uncoated tablet, 30 5736011000036105 Pravastatin (DP) 40 mg uncoated tablet 3957011000036105 Pravastatin (DP) 3957011000036105 Pravastatin (DP) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +59917011000036106 Ibuprofen Children's (Guardian) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 117618 55879011000036108 Ibuprofen Children's (Guardian) 100 mg/5 mL oral liquid suspension, 100 mL 53702011000036101 Ibuprofen Children's (Guardian) 100 mg/5 mL oral liquid suspension, 5 mL 47651000168105 Ibuprofen Children's (Guardian) 47651000168105 Ibuprofen Children's (Guardian) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +37634011000036109 Alcaine 0.5% eye drops solution, 15 mL, bottle 24299 36900011000036109 Alcaine 0.5% eye drops solution, 15 mL 36233011000036109 Alcaine 0.5% eye drops solution 35920011000036102 Alcaine 35920011000036102 Alcaine 38785011000036103 proxymetacaine hydrochloride 0.5% eye drops, 15 mL 37998011000036109 proxymetacaine hydrochloride 0.5% eye drops 37786011000036102 proxymetacaine +121701000036105 Fresofol 1% MCT/LCT 500 mg/50 mL injection emulsion, 10 x 50 mL vials 193609 120711000036101 Fresofol 1% MCT/LCT 500 mg/50 mL injection emulsion, 10 x 50 mL vials 119381000036109 Fresofol 1% MCT/LCT 500 mg/50 mL injection emulsion, 50 mL vial 16441000168100 Fresofol 1% MCT/LCT 16441000168100 Fresofol 1% MCT/LCT 120721000036108 propofol 500 mg/50 mL injection, 10 x 50 mL vials 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +17760011000036104 Pepcidine 40 mg film-coated tablet, 30, blister pack 10504 11314011000036108 Pepcidine 40 mg film-coated tablet, 30 5920011000036100 Pepcidine 40 mg film-coated tablet 4352011000036100 Pepcidine 4352011000036100 Pepcidine 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +831131000168100 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 97843 831121000168103 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831111000168105 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831131000168100 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 65862 831121000168103 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 73748011000036105 Priorix 73748011000036105 Priorix 831111000168105 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 831021000168104 measles + mumps + rubella live vaccine +831131000168100 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 97843 831121000168103 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 636301000168107 Priorix (inert substance) diluent, 0.5 mL ampoule 73748011000036105 Priorix 73748011000036105 Priorix 831111000168105 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +831131000168100 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 65862 831121000168103 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 636301000168107 Priorix (inert substance) diluent, 0.5 mL ampoule 73748011000036105 Priorix 73748011000036105 Priorix 831111000168105 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 636091000168104 inert substance diluent, 0.5 mL ampoule 21220011000036103 inert substance +60963011000036100 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 12, blister pack 62806 56906011000036100 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet, 12 54117011000036107 Extra Strength Pain Relief (Pharmacist Formula) uncoated tablet 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 53089011000036107 Extra Strength Pain Relief (Pharmacist Formula) 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +61065011000036103 Travacalm HO 300 microgram uncoated tablet, 10, strip pack 68450 57008011000036106 Travacalm HO 300 microgram uncoated tablet, 10 54158011000036103 Travacalm HO 300 microgram uncoated tablet 53382011000036101 Travacalm HO 53382011000036101 Travacalm HO 63811011000036108 hyoscine hydrobromide trihydrate 300 microgram tablet, 10 62084011000036103 hyoscine hydrobromide trihydrate 300 microgram tablet 61734011000036108 hyoscine hydrobromide trihydrate +1011181000168107 Montelukast (Apotex) 10 mg film-coated tablet, 28, blister pack 170245 1011171000168109 Montelukast (Apotex) 10 mg film-coated tablet, 28 1011121000168108 Montelukast (Apotex) 10 mg film-coated tablet 1011111000168101 Montelukast (Apotex) 1011111000168101 Montelukast (Apotex) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +20269011000036108 Pamisol 90 mg/10 mL concentrated injection, 10 mL vial 75109 13479011000036101 Pamisol 90 mg/10 mL concentrated injection, 10 mL vial 6762011000036100 Pamisol 90 mg/10 mL concentrated injection, 10 mL vial 3449011000036103 Pamisol 3449011000036103 Pamisol 27768011000036101 pamidronate disodium 90 mg/10 mL injection, 10 mL vial 23099011000036102 pamidronate disodium 90 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +933246601000036101 Lisinopril (PS) 5 mg uncoated tablet, 30, blister pack 152712 933243241000036107 Lisinopril (PS) 5 mg uncoated tablet, 30 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 28177011000036107 lisinopril 5 mg tablet, 30 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +104561000036105 Irbesatzide 150/12.5 film-coated tablet, 30, blister pack 192827 101771000036109 Irbesatzide 150/12.5 film-coated tablet, 30 99021000036102 Irbesatzide 150/12.5 film-coated tablet 62731000168102 Irbesatzide 150/12.5 62731000168102 Irbesatzide 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +74875011000036103 Normal Immunoglobulin-VF (CSL) 320 mg/2 mL injection solution, 2 mL vial 61215 74362011000036102 Normal Immunoglobulin-VF (CSL) 320 mg/2 mL injection solution, 2 mL vial 73893011000036106 Normal Immunoglobulin-VF (CSL) 320 mg/2 mL injection solution, 2 mL vial 15111000168100 Normal Immunoglobulin-VF (CSL) 15111000168100 Normal Immunoglobulin-VF (CSL) 75462011000036102 normal immunoglobulin 320 mg/2 mL injection, 2 mL vial 75073011000036108 normal immunoglobulin 320 mg/2 mL injection, vial 74965011000036103 normal immunoglobulin +652541000168104 Sildenafil PHT (Apo) 20 mg film-coated tablet, 90, blister pack 164810 652471000168107 Sildenafil PHT (Apo) 20 mg film-coated tablet, 90 652461000168101 Sildenafil PHT (Apo) 20 mg film-coated tablet 652451000168103 Sildenafil PHT (Apo) 652451000168103 Sildenafil PHT (Apo) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +933246881000036108 Pantoprazole (PS) 20 mg enteric tablet, 50, blister pack 158196 933243711000036101 Pantoprazole (PS) 20 mg enteric tablet, 50 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46676011000036101 pantoprazole 20 mg enteric tablet, 50 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +19121011000036102 Elocon 0.1% cream, 45 g, tube 43342 12424011000036109 Elocon 0.1% cream, 45 g 4813011000036100 Elocon 0.1% cream 4301011000036100 Elocon 4301011000036100 Elocon 27112011000036105 mometasone furoate 0.1% cream, 45 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +956441000168100 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 6 x 200 mL bottles 49606 956431000168109 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 6 x 200 mL bottles 956411000168104 Visipaque 550 mg (iodine 270 mg)/mL injection solution, 200 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 956421000168106 iodixanol 550 mg (iodine 270 mg)/mL injection, 6 x 200 mL bottles 956401000168102 iodixanol 550 mg (iodine 270 mg)/mL injection, 200 mL bottle 922032011000036109 iodixanol +762011000168105 Cyanocobalamin (Biological Therapies) 20 mg/2 mL injection solution, 6 x 2 mL vials 22407 762001000168107 Cyanocobalamin (Biological Therapies) 20 mg/2 mL injection solution, 6 x 2 mL vials 761951000168100 Cyanocobalamin (Biological Therapies) 20 mg/2 mL injection solution, 2 mL vial 761931000168106 Cyanocobalamin (Biological Therapies) 761931000168106 Cyanocobalamin (Biological Therapies) 761991000168105 cyanocobalamin 20 mg/2 mL injection, 6 x 2 mL vials 761941000168102 cyanocobalamin 20 mg/2 mL injection, vial 77442011000036106 cyanocobalamin +50597011000036100 Amlodipine (Chemmart) 5 mg uncoated tablet, 30, bottle 135151 34270011000036107 Amlodipine (Chemmart) 5 mg uncoated tablet, 30 33998011000036104 Amlodipine (Chemmart) 5 mg uncoated tablet 33922011000036106 Amlodipine (Chemmart) 33922011000036106 Amlodipine (Chemmart) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +920802011000036106 Ceftriaxone (DBL) 1 g powder for injection, 5 vials 92399 920481011000036109 Ceftriaxone (DBL) 1 g powder for injection, 5 vials 920212011000036100 Ceftriaxone (DBL) 1 g powder for injection, vial 920083011000036101 Ceftriaxone (DBL) 920083011000036101 Ceftriaxone (DBL) 28091011000036100 ceftriaxone 1 g injection, 5 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +17973011000036105 Amisulpride (Winthrop) 400 mg film-coated tablet, 60, blister pack 125165 11790011000036103 Amisulpride (Winthrop) 400 mg film-coated tablet, 60 5919011000036101 Amisulpride (Winthrop) 400 mg film-coated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +986701000168102 Advil Childrens Pain and Fever 7 to 12 Years 100 mg chewable tablet, 40, bottle 178662 986691000168102 Advil Childrens Pain and Fever 7 to 12 Years 100 mg chewable tablet, 40 986661000168109 Advil Childrens Pain and Fever 7 to 12 Years 100 mg chewable tablet 986651000168107 Advil Childrens Pain and Fever 7 to 12 Years 986651000168107 Advil Childrens Pain and Fever 7 to 12 Years 986581000168104 ibuprofen 100 mg chewable tablet, 40 986531000168100 ibuprofen 100 mg chewable tablet 21885011000036105 ibuprofen +60809011000036109 Demazin Cold Relief Syrup Colour Free oral liquid solution, 100 mL, bottle 57378 56765011000036102 Demazin Cold Relief Syrup Colour Free oral liquid solution, 100 mL 54071011000036102 Demazin Cold Relief Syrup Colour Free oral liquid solution, 5 mL 5951000168104 Demazin Cold Relief Syrup 5951000168104 Demazin Cold Relief Syrup 63796011000036101 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 100 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +747631000168100 Morphine MR (SCP) 10 mg modified release tablet, 60, blister pack 225421 747621000168103 Morphine MR (SCP) 10 mg modified release tablet, 60 747571000168101 Morphine MR (SCP) 10 mg modified release tablet 747561000168107 Morphine MR (SCP) 747561000168107 Morphine MR (SCP) 35133011000036109 morphine sulfate pentahydrate 10 mg modified release tablet, 60 22240011000036102 morphine sulfate pentahydrate 10 mg modified release tablet 21252011000036100 morphine +68775011000036103 Zostrix HP 0.075% cream, 45 g, tube 10344 66498011000036102 Zostrix HP 0.075% cream, 45 g 65527011000036102 Zostrix HP 0.075% cream 56461000168109 Zostrix HP 56461000168109 Zostrix HP 71230011000036105 capsaicin 0.075% cream, 45 g 69911011000036104 capsaicin 0.075% cream 69821011000036104 capsaicin +921921000168107 Ceftazidime (Kabi) 2 g powder for injection, 1 vial 223569 921911000168100 Ceftazidime (Kabi) 2 g powder for injection, 1 vial 921901000168103 Ceftazidime (Kabi) 2 g powder for injection, 2 g vial 921821000168104 Ceftazidime (Kabi) 921821000168104 Ceftazidime (Kabi) 38650011000036109 ceftazidime 2 g injection, 1 vial 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +1024191000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 48, blister pack 227167 1024181000168102 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 48 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023861000168103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 48 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +656881000168108 Telmisartan (DRLA) 80 mg uncoated tablet, 28, blister pack 197309 656871000168105 Telmisartan (DRLA) 80 mg uncoated tablet, 28 656861000168104 Telmisartan (DRLA) 80 mg uncoated tablet 656831000168107 Telmisartan (DRLA) 656831000168107 Telmisartan (DRLA) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +1070231000168102 Cold and Flu Day (Cipla) uncoated tablet, 12, blister pack 216069 1070221000168100 Cold and Flu Day (Cipla) uncoated tablet, 12 1070211000168107 Cold and Flu Day (Cipla) uncoated tablet 1070201000168109 Cold and Flu Day (Cipla) 1070201000168109 Cold and Flu Day (Cipla) 63809011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 12 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +25371000036108 Cilex 250 mg/5 mL powder for oral liquid, 100 mL, bottle 91910 23151000036101 Cilex 250 mg/5 mL powder for oral liquid, 100 mL 20181000036102 Cilex 250 mg/5 mL powder for oral liquid, 5 mL 3195011000036106 Cilex 3195011000036106 Cilex 28273011000036101 cefalexin 250 mg/5 mL powder for oral liquid, 100 mL 23587011000036106 cefalexin 250 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +684211000168103 Irbesartan HCT 300/12.5 (Actavis) film-coated tablet, 30, blister pack 189385 684201000168101 Irbesartan HCT 300/12.5 (Actavis) film-coated tablet, 30 684191000168104 Irbesartan HCT 300/12.5 (Actavis) film-coated tablet 684181000168102 Irbesartan HCT 300/12.5 (Actavis) 684181000168102 Irbesartan HCT 300/12.5 (Actavis) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +44719011000036101 Chirocaine 125 mg/200 mL injection solution, 5 x 200 mL bags 94481 42164011000036103 Chirocaine 125 mg/200 mL injection solution, 5 x 200 mL bags 40372011000036102 Chirocaine 125 mg/200 mL injection solution, 200 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46925011000036108 levobupivacaine 125 mg/200 mL injection, 5 x 200 mL bags 45347011000036109 levobupivacaine 125 mg/200 mL injection, bag 44881011000036100 levobupivacaine +12401000036108 Quetiapine (Sandoz) 200 mg film-coated tablet, 60, blister pack 158099 6771000036105 Quetiapine (Sandoz) 200 mg film-coated tablet, 60 2821000036102 Quetiapine (Sandoz) 200 mg film-coated tablet 1161000036109 Quetiapine (Sandoz) 1161000036109 Quetiapine (Sandoz) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +933246561000036101 Lisinopril (PS) 5 mg uncoated tablet, 10, blister pack 152712 933243201000036109 Lisinopril (PS) 5 mg uncoated tablet, 10 933241341000036100 Lisinopril (PS) 5 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 83477011000036104 lisinopril 5 mg tablet, 10 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +43768011000036107 Voltfast 50 mg powder for oral liquid, 30 sachets 123192 41298011000036109 Voltfast 50 mg powder for oral liquid, 30 sachets 39846011000036102 Voltfast 50 mg powder for oral liquid, 50 mg sachet 39682011000036104 Voltfast 39682011000036104 Voltfast 46233011000036108 diclofenac potassium 50 mg powder for oral liquid, 30 sachets 45038011000036107 diclofenac potassium 50 mg powder for oral liquid, sachet 21288011000036105 diclofenac +73334011000036100 Fluconazole (Apo) 200 mg hard capsule, 28, blister pack 151630 73128011000036102 Fluconazole (Apo) 200 mg hard capsule, 28 72949011000036101 Fluconazole (Apo) 200 mg hard capsule 59141000168107 Fluconazole (Apo) 59141000168107 Fluconazole (Apo) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +61280011000036101 FGF modified release tablet, 60, bottle 77937 57216011000036102 FGF modified release tablet, 60 54240011000036104 FGF modified release tablet 53418011000036107 FGF 53418011000036107 FGF 63768011000036100 ferrous sulfate 250 mg (iron 80 mg) + folic acid 300 microgram modified release tablet, 60 62075011000036106 ferrous sulfate 250 mg (iron 80 mg) + folic acid 300 microgram modified release tablet 61711011000036101 ferrous sulfate + folic acid +60329011000036104 Robitussin Cough and Chest Congestion oral liquid solution, 25 mL, bottle 13884 56288011000036101 Robitussin Cough and Chest Congestion oral liquid solution, 25 mL 53861011000036106 Robitussin Cough and Chest Congestion oral liquid solution, 5 mL 53223011000036107 Robitussin Cough and Chest Congestion 53223011000036107 Robitussin Cough and Chest Congestion 63293011000036103 guaifenesin 100 mg/5 mL + dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 25 mL 61911011000036105 guaifenesin 100 mg/5 mL + dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61793011000036104 guaifenesin + dextromethorphan +728901000168102 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 205625 728891000168101 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 728861000168108 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 669531000168108 somatropin 15 mg/1.5 mL injection, 5 x 1.5 mL cartridges 23614011000036105 somatropin 15 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +104401000036107 Irbesartan (DRLA) 300 mg film-coated tablet, 30, bottle 190488 101611000036105 Irbesartan (DRLA) 300 mg film-coated tablet, 30 99061000036106 Irbesartan (DRLA) 300 mg film-coated tablet 97871000036100 Irbesartan (DRLA) 97871000036100 Irbesartan (DRLA) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +37981000036104 Escitalopram (Lupin) 5 mg film-coated tablet, 28, blister pack 165826 34311000036104 Escitalopram (Lupin) 5 mg film-coated tablet, 28 32931000036101 Escitalopram (Lupin) 5 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +1030051000168102 Atomoxetine (Genpar) 100 mg hard capsule, 14, blister pack 234835 1030041000168104 Atomoxetine (Genpar) 100 mg hard capsule, 14 1029991000168100 Atomoxetine (Genpar) 100 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830121000168107 atomoxetine 100 mg capsule, 14 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +787971000168104 Atelvia Once-a-Month 150 mg film-coated tablet, 2, blister pack 163755 787961000168105 Atelvia Once-a-Month 150 mg film-coated tablet, 2 787931000168102 Atelvia Once-a-Month 150 mg film-coated tablet 787921000168100 Atelvia Once-a-Month 787921000168100 Atelvia Once-a-Month 78195011000036102 risedronate sodium 150 mg tablet, 2 77536011000036104 risedronate sodium 150 mg tablet 21476011000036103 risedronate +1051461000168101 Palexia SR 50 mg modified release tablet, 7, blister pack 165332 1051451000168103 Palexia SR 50 mg modified release tablet, 7 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051441000168100 tapentadol 50 mg modified release tablet, 7 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +104381000036107 Irbesartan (RBX) 300 mg film-coated tablet, 30, blister pack 190482 101591000036101 Irbesartan (RBX) 300 mg film-coated tablet, 30 98321000036105 Irbesartan (RBX) 300 mg film-coated tablet 98101000036102 Irbesartan (RBX) 98101000036102 Irbesartan (RBX) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +1055701000168109 Debrisoft (33223) 10 cm x 10 cm pad, 5, blister pack 251693 1055691000168109 Debrisoft (33223) 10 cm x 10 cm pad, 5 1055671000168108 Debrisoft (33223) 10 cm x 10 cm pad 1055651000168104 Debrisoft (33223) 1055651000168104 Debrisoft (33223) 1055681000168106 pad wound debridement 10 cm x 10 cm pad, 5 1055661000168102 pad wound debridement 10 cm x 10 cm pad 1055591000168105 pad wound debridement +77377011000036101 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 10 x 75 mL syringes 70059 76793011000036103 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 10 x 75 mL syringes 76182011000036103 Optiray-350 741 mg (iodine 350 mg)/mL injection solution, 75 mL syringe 14501000168105 Optiray-350 14501000168105 Optiray-350 78297011000036109 ioversol 741 mg (iodine 350 mg)/mL injection, 10 x 75 mL syringes 77597011000036107 ioversol 741 mg (iodine 350 mg)/mL injection, 75 mL syringe 77421011000036103 ioversol +931726011000036106 Dexamphetamine Sulfate (Aspen) 5 mg uncoated tablet, 100, bottle 19684 930886011000036105 Dexamphetamine Sulfate (Aspen) 5 mg uncoated tablet, 100 930090011000036109 Dexamphetamine Sulfate (Aspen) 5 mg uncoated tablet 929846011000036104 Dexamphetamine Sulfate (Aspen) 929846011000036104 Dexamphetamine Sulfate (Aspen) 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +52756011000036102 Movalis 15 mg hard capsule, 100, blister pack 142229 52568011000036105 Movalis 15 mg hard capsule, 100 52421011000036103 Movalis 15 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 52890011000036107 meloxicam 15 mg capsule, 100 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +1024111000168108 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 24, blister pack 227167 1024101000168105 Betadine Sore Throat Lozenges Honey and Lemon lozenge, 24 1023971000168104 Betadine Sore Throat Lozenges Honey and Lemon lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +50339011000036101 Tegaderm Island Transparent (3586) 9 cm x 10 cm dressing, 1, carton 49346011000036103 Tegaderm Island Transparent (3586) 9 cm x 10 cm dressing, 1 48689011000036105 Tegaderm Island Transparent (3586) 9 cm x 10 cm dressing 62601000168103 Tegaderm Island Transparent (3586) 62601000168103 Tegaderm Island Transparent (3586) 51325011000036108 dressing film island 9 cm x 10 cm dressing, 1 50852011000036109 dressing film island 9 cm x 10 cm dressing 50727011000036109 dressing film island +19601011000036108 Moxacin 500 mg hard capsule, 20, blister pack 58510 12871011000036102 Moxacin 500 mg hard capsule, 20 6162011000036107 Moxacin 500 mg hard capsule 4292011000036104 Moxacin 4292011000036104 Moxacin 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +848501000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 165943 848491000168103 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 85275011000036101 Bonecal 85275011000036101 Bonecal 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +121541000036103 Paracetamol (Pharmacy Action) 500 mg uncoated tablet, 24, blister pack 192004 120461000036107 Paracetamol (Pharmacy Action) 500 mg uncoated tablet, 24 119531000036101 Paracetamol (Pharmacy Action) 500 mg uncoated tablet 119251000036106 Paracetamol (Pharmacy Action) 119251000036106 Paracetamol (Pharmacy Action) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +18394011000036104 Humulin R Regular 100 units/mL injection solution, 1 x 10 mL vial 14635 12049011000036103 Humulin R Regular 100 units/mL injection solution, 1 x 10 mL vial 5186011000036105 Humulin R Regular 100 units/mL injection solution, 10 mL vial 17171000168104 Humulin R Regular 17171000168104 Humulin R Regular 27056011000036105 insulin neutral human 100 units/mL injection, 1 x 10 mL vial 22425011000036107 insulin neutral human 100 units/mL injection, vial 33644011000036103 insulin neutral human +18865011000036100 Drixine Adult 0.05% nasal drops solution, 15 mL, bottle 18835 12176011000036104 Drixine Adult 0.05% nasal drops solution, 15 mL 4626011000036105 Drixine Adult 0.05% nasal drops solution 1631000168103 Drixine Adult 1631000168103 Drixine Adult 26964011000036104 oxymetazoline hydrochloride 0.05% nasal drops, 15 mL 22339011000036102 oxymetazoline hydrochloride 0.05% nasal drops 21364011000036106 oxymetazoline +917581000168104 Amikacin (SXP) 500 mg/2 mL injection solution, 10 x 2 mL ampoules 262734 917571000168102 Amikacin (SXP) 500 mg/2 mL injection solution, 10 x 2 mL ampoules 917541000168109 Amikacin (SXP) 500 mg/2 mL injection solution, 2 mL ampoule 917531000168100 Amikacin (SXP) 917531000168100 Amikacin (SXP) 917371000168108 amikacin 500 mg/2 mL injection, 10 x 2 mL ampoules 917321000168107 amikacin 500 mg/2 mL injection, ampoule 37805011000036108 amikacin +934731000168108 Zantac 75 mg film-coated tablet, 6, blister pack 55238 934721000168105 Zantac 75 mg film-coated tablet, 6 934701000168101 Zantac 75 mg film-coated tablet 3563011000036102 Zantac 3563011000036102 Zantac 934711000168103 ranitidine 75 mg tablet, 6 934691000168101 ranitidine 75 mg tablet 21682011000036109 ranitidine +933246651000036100 Lisinopril (PS) 10 mg uncoated tablet, 100, blister pack 152713 933243291000036101 Lisinopril (PS) 10 mg uncoated tablet, 100 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 86418011000036103 lisinopril 10 mg tablet, 100 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +969531000168107 Aripiprazole (AN) 30 mg uncoated tablet, 56, blister pack 198208 969521000168109 Aripiprazole (AN) 30 mg uncoated tablet, 56 969471000168106 Aripiprazole (AN) 30 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787821000168108 aripiprazole 30 mg tablet, 56 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +931363011000036109 Pevaryl for Athlete's Foot 1% cream, 20 g, tube 128676 930588011000036108 Pevaryl for Athlete's Foot 1% cream, 20 g 929956011000036108 Pevaryl for Athlete's Foot 1% cream 53081000168101 Pevaryl for Athlete's Foot 53081000168101 Pevaryl for Athlete's Foot 63221011000036107 econazole nitrate 1% cream, 20 g 61893011000036101 econazole nitrate 1% cream 37773011000036103 econazole +844181000168100 Combantrin-1 with Mebendazole 100 mg tablet, 2, blister pack 57119 844171000168103 Combantrin-1 with Mebendazole 100 mg tablet, 2 844141000168105 Combantrin-1 with Mebendazole 100 mg tablet 53266011000036105 Combantrin-1 with Mebendazole 53266011000036105 Combantrin-1 with Mebendazole 63642011000036101 mebendazole 100 mg tablet, 2 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +44052011000036100 Marcain 0.5% (100 mg/20 mL) injection solution, 5 x 20 mL ampoules 48328 41539011000036102 Marcain 0.5% (100 mg/20 mL) injection solution, 5 x 20 mL ampoules 40048011000036102 Marcain 0.5% (100 mg/20 mL) injection solution, 20 mL ampoule 12651000168100 Marcain 12651000168100 Marcain 46374011000036100 bupivacaine hydrochloride monohydrate 0.5% (100 mg/20 mL) injection, 5 x 20 mL ampoules 45114011000036100 bupivacaine hydrochloride monohydrate 0.5% (100 mg/20 mL) injection, ampoule 37702011000036102 bupivacaine +68879011000036104 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 24, blister pack 129747 66724011000036109 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 24 65236011000036108 Nicotine (Chemists' Own) Fruit 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63746011000036105 nicotine 2 mg gum, 24 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +917461000168107 Allopurinol (Apotex) 100 mg uncoated tablet, 200, bottle 269652 917451000168105 Allopurinol (Apotex) 100 mg uncoated tablet, 200 917441000168108 Allopurinol (Apotex) 100 mg uncoated tablet 917401000168106 Allopurinol (Apotex) 917401000168106 Allopurinol (Apotex) 28007011000036106 allopurinol 100 mg tablet, 200 23330011000036100 allopurinol 100 mg tablet 21408011000036108 allopurinol +933246691000036109 Lisinopril (PS) 10 mg uncoated tablet, 50, blister pack 152713 933243331000036109 Lisinopril (PS) 10 mg uncoated tablet, 50 933241351000036102 Lisinopril (PS) 10 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 86420011000036107 lisinopril 10 mg tablet, 50 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +921961000168102 Ceftazidime (Kabi) 2 g powder for injection, 10 vials 223569 921951000168104 Ceftazidime (Kabi) 2 g powder for injection, 10 vials 921901000168103 Ceftazidime (Kabi) 2 g powder for injection, 2 g vial 921821000168104 Ceftazidime (Kabi) 921821000168104 Ceftazidime (Kabi) 46868011000036101 ceftazidime 2 g injection, 10 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +717441000168103 Pemzo 20 mg enteric capsule, 60, blister pack 149517 717431000168107 Pemzo 20 mg enteric capsule, 60 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716831000168107 omeprazole 20 mg enteric capsule, 60 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +933213481000036106 Citalopram (IPCA) 10 mg film-coated tablet, 56, blister pack 158868 933203101000036107 Citalopram (IPCA) 10 mg film-coated tablet, 56 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933203131000036100 citalopram 10 mg tablet, 56 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +104701000036102 Irbesartan/HCT 300/25 (Sandoz) film-coated tablet, 30, bottle 174728 101911000036101 Irbesartan/HCT 300/25 (Sandoz) film-coated tablet, 30 99311000036107 Irbesartan/HCT 300/25 (Sandoz) film-coated tablet 18011000168107 Irbesartan/HCT 300/25 (Sandoz) 18011000168107 Irbesartan/HCT 300/25 (Sandoz) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +691521000168107 Ikotab 20 mg tablet, 60, blister pack 218689 691511000168100 Ikotab 20 mg tablet, 60 691501000168103 Ikotab 20 mg tablet 691461000168103 Ikotab 691461000168103 Ikotab 27380011000036102 nicorandil 20 mg tablet, 60 22729011000036103 nicorandil 20 mg tablet 21260011000036106 nicorandil +816831000168105 Pemetrexed (RZ) 100 mg powder for injection, 1 vial 236055 816821000168107 Pemetrexed (RZ) 100 mg powder for injection, 1 vial 816811000168100 Pemetrexed (RZ) 100 mg powder for injection, 100 mg vial 816801000168103 Pemetrexed (RZ) 816801000168103 Pemetrexed (RZ) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +727531000168102 Volibris 5 mg film-coated tablet, 10, blister pack 143743 727521000168100 Volibris 5 mg film-coated tablet, 10 82011011000036100 Volibris 5 mg film-coated tablet 81978011000036105 Volibris 81978011000036105 Volibris 727511000168107 ambrisentan 5 mg tablet, 10 82441011000036103 ambrisentan 5 mg tablet 82428011000036105 ambrisentan +921801000168108 Dexafet 5 mg uncoated tablet, 100, blister pack 270974 921791000168107 Dexafet 5 mg uncoated tablet, 100 921781000168109 Dexafet 5 mg uncoated tablet 921771000168106 Dexafet 921771000168106 Dexafet 26980011000036106 dexamfetamine sulfate 5 mg tablet, 100 22353011000036101 dexamfetamine sulfate 5 mg tablet 21235011000036109 dexamfetamine +1032701000168102 Anti Diarrhoea (Amcal) 2 mg hard capsule, 12, blister pack 205128 1032691000168102 Anti Diarrhoea (Amcal) 2 mg hard capsule, 12 1032581000168104 Anti Diarrhoea (Amcal) 2 mg hard capsule 53546011000036108 Anti Diarrhoea (Amcal) 53546011000036108 Anti Diarrhoea (Amcal) 27212011000036107 loperamide hydrochloride 2 mg capsule, 12 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +17881000036102 Letrozole (Synthon) 2.5 mg film-coated tablet, 30, blister pack 153510 16651000036108 Letrozole (Synthon) 2.5 mg film-coated tablet, 30 15581000036108 Letrozole (Synthon) 2.5 mg film-coated tablet 15131000036103 Letrozole (Synthon) 15131000036103 Letrozole (Synthon) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +73308011000036101 Jurnista 64 mg modified release tablet, 30, blister pack 141535 73106011000036106 Jurnista 64 mg modified release tablet, 30 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73504011000036106 hydromorphone hydrochloride 64 mg modified release tablet, 30 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +920710011000036108 Ciprofloxacin (DBL) 200 mg/100 mL intravenous infusion injection, 10 x 100 mL bags 123041 920380011000036105 Ciprofloxacin (DBL) 200 mg/100 mL intravenous infusion injection, 10 x 100 mL bags 920145011000036101 Ciprofloxacin (DBL) 200 mg/100 mL intravenous infusion injection, 100 mL bag 920086011000036107 Ciprofloxacin (DBL) 920086011000036107 Ciprofloxacin (DBL) 46210011000036105 ciprofloxacin 200 mg/100 mL injection, 10 x 100 mL bags 45032011000036109 ciprofloxacin 200 mg/100 mL injection, bag 21245011000036105 ciprofloxacin +38061000036106 Escitalopram (MPPL) 5 mg film-coated tablet, 30, bottle 165829 34391000036109 Escitalopram (MPPL) 5 mg film-coated tablet, 30 33031000036108 Escitalopram (MPPL) 5 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +878561000168105 Propranolol (Blooms The Chemist) 10 mg tablet, 100, bottle 222946 878551000168108 Propranolol (Blooms The Chemist) 10 mg tablet, 100 878541000168106 Propranolol (Blooms The Chemist) 10 mg tablet 878501000168109 Propranolol (Blooms The Chemist) 878501000168109 Propranolol (Blooms The Chemist) 26939011000036109 propranolol hydrochloride 10 mg tablet, 100 22315011000036107 propranolol hydrochloride 10 mg tablet 21392011000036104 propranolol +86886011000036106 Favic 500 mg film-coated tablet, 56, blister pack 159619 86768011000036106 Favic 500 mg film-coated tablet, 56 86640011000036106 Favic 500 mg film-coated tablet 86581011000036100 Favic 86581011000036100 Favic 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +652611000168102 Irprestan 300 mg film-coated tablet, 30, blister pack 190227 652601000168100 Irprestan 300 mg film-coated tablet, 30 652591000168107 Irprestan 300 mg film-coated tablet 650741000168107 Irprestan 650741000168107 Irprestan 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +917621000168104 Atenolol (Amneal) 50 mg film-coated tablet, 30, blister pack 147638 917611000168106 Atenolol (Amneal) 50 mg film-coated tablet, 30 917601000168108 Atenolol (Amneal) 50 mg film-coated tablet 917591000168101 Atenolol (Amneal) 917591000168101 Atenolol (Amneal) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +20304011000036103 Tobramycin (DBL) 80 mg/2 mL injection solution, 5 x 2 mL vials 75686 13513011000036100 Tobramycin (DBL) 80 mg/2 mL injection solution, 5 x 2 mL vials 6795011000036105 Tobramycin (DBL) 80 mg/2 mL injection solution, 2 mL vial 3698011000036101 Tobramycin (DBL) 3698011000036101 Tobramycin (DBL) 27780011000036101 tobramycin 80 mg/2 mL injection, 5 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +87186011000036104 Nicorette Freshfruit 4 mg chewing gum, 105, blister pack 142472 87121011000036100 Nicorette Freshfruit 4 mg chewing gum, 105 87069011000036100 Nicorette Freshfruit 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87233011000036100 nicotine 4 mg gum, 105 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +928880011000036106 Valaciclovir (RBX) 500 mg film-coated tablet, 42, blister pack 142803 928242011000036105 Valaciclovir (RBX) 500 mg film-coated tablet, 42 927897011000036103 Valaciclovir (RBX) 500 mg film-coated tablet 927814011000036108 Valaciclovir (RBX) 927814011000036108 Valaciclovir (RBX) 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +656721000168103 Telmisartan HCTZ 80/25mg (Apo) multilayer tablet, 28, blister pack 208063 656711000168105 Telmisartan HCTZ 80/25mg (Apo) multilayer tablet, 28 656701000168107 Telmisartan HCTZ 80/25mg (Apo) multilayer tablet 656691000168107 Telmisartan HCTZ 80/25mg (Apo) 656691000168107 Telmisartan HCTZ 80/25mg (Apo) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +656721000168103 Telmisartan HCTZ 80/25mg (Apo) multilayer tablet, 28, blister pack 198235 656711000168105 Telmisartan HCTZ 80/25mg (Apo) multilayer tablet, 28 656701000168107 Telmisartan HCTZ 80/25mg (Apo) multilayer tablet 656691000168107 Telmisartan HCTZ 80/25mg (Apo) 656691000168107 Telmisartan HCTZ 80/25mg (Apo) 63315011000036108 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet, 28 61917011000036102 telmisartan 80 mg + hydrochlorothiazide 25 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +73299011000036101 Jurnista 32 mg modified release tablet, 40, blister pack 141534 73097011000036101 Jurnista 32 mg modified release tablet, 40 72933011000036100 Jurnista 32 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73495011000036102 hydromorphone hydrochloride 32 mg modified release tablet, 40 73372011000036107 hydromorphone hydrochloride 32 mg modified release tablet 21480011000036107 hydromorphone +933212521000036102 Ranitidine (GN) 150 mg film-coated tablet, 28, blister pack 148523 933202201000036107 Ranitidine (GN) 150 mg film-coated tablet, 28 933195271000036107 Ranitidine (GN) 150 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +933230521000036108 Levitaccord 250 mg film-coated tablet, 60, blister pack 168789 933224561000036107 Levitaccord 250 mg film-coated tablet, 60 933220281000036109 Levitaccord 250 mg film-coated tablet 42001000168101 Levitaccord 42001000168101 Levitaccord 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +52721011000036106 Strong Pain Relief (Pharmacy Health) capsule shaped uncoated tablet, 50, bottle 100403 52515011000036103 Strong Pain Relief (Pharmacy Health) capsule shaped uncoated tablet, 50 52404011000036106 Strong Pain Relief (Pharmacy Health) capsule shaped uncoated tablet 52395011000036100 Strong Pain Relief (Pharmacy Health) 52395011000036100 Strong Pain Relief (Pharmacy Health) 52904011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 50 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +86098011000036107 Lisinopril (GA) 10 mg uncoated tablet, 50, blister pack 106501 85617011000036104 Lisinopril (GA) 10 mg uncoated tablet, 50 85296011000036100 Lisinopril (GA) 10 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 86420011000036107 lisinopril 10 mg tablet, 50 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +20098011000036106 Integrilin 20 mg/10 mL injection solution, 10 mL vial 71540 13325011000036108 Integrilin 20 mg/10 mL injection solution, 10 mL vial 6611011000036104 Integrilin 20 mg/10 mL injection solution, 10 mL vial 4071011000036108 Integrilin 4071011000036108 Integrilin 27695011000036100 eptifibatide 20 mg/10 mL injection, 10 mL vial 23032011000036100 eptifibatide 20 mg/10 mL injection, vial 21223011000036106 eptifibatide +819481000168101 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 30, blister pack 184818 819471000168104 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 30 819441000168106 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +1027251000168108 Neuroccord 75 mg hard capsule, 30, bottle 235854 1027241000168106 Neuroccord 75 mg hard capsule, 30 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 971431000168102 pregabalin 75 mg capsule, 30 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +59695011000036101 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 100, blister pack 100678 55640011000036106 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet, 100 53667011000036105 Paracetamol Pain Relief (Amcal) 500 mg uncoated tablet 53194011000036103 Paracetamol Pain Relief (Amcal) 53194011000036103 Paracetamol Pain Relief (Amcal) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +61108011000036102 Zantac Relief 150 mg film-coated tablet, 2, blister pack 71786 57051011000036108 Zantac Relief 150 mg film-coated tablet, 2 54175011000036107 Zantac Relief 150 mg film-coated tablet 53535011000036102 Zantac Relief 53535011000036102 Zantac Relief 63963011000036101 ranitidine 150 mg tablet, 2 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +20672011000036108 Endoxan 2 g powder for injection, 1 vial 82128 13852011000036104 Endoxan 2 g powder for injection, 1 vial 7139011000036109 Endoxan 2 g powder for injection, 2 g vial 3255011000036101 Endoxan 3255011000036101 Endoxan 27976011000036103 cyclophosphamide 2 g injection, 1 vial 23300011000036107 cyclophosphamide 2 g injection, vial 21733011000036103 cyclophosphamide +926852011000036107 Antitussive with Diphenhydramine Cough Medicine for the Family (Gold Cross) oral liquid solution, 200 mL, bottle 27287 926248011000036102 Antitussive with Diphenhydramine Cough Medicine for the Family (Gold Cross) oral liquid solution, 200 mL 925698011000036108 Antitussive with Diphenhydramine Cough Medicine for the Family (Gold Cross) oral liquid solution, 5 mL 17641000168100 Antitussive with Diphenhydramine Cough Medicine for the Family (Gold Cross) 17641000168100 Antitussive with Diphenhydramine Cough Medicine for the Family (Gold Cross) 63300011000036102 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 200 mL 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +782791000168102 Palexia IR 50 mg film-coated tablet, 20, blister pack 165310 782781000168100 Palexia IR 50 mg film-coated tablet, 20 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782771000168103 tapentadol 50 mg tablet, 20 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +12721000036108 Olanzapine (Apo) 20 mg film-coated tablet, 28, blister pack 158976 6921000036109 Olanzapine (Apo) 20 mg film-coated tablet, 28 2511000036106 Olanzapine (Apo) 20 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 6841000036106 olanzapine 20 mg tablet, 28 1361000036106 olanzapine 20 mg tablet 21485011000036103 olanzapine +44565011000036100 Bicor 1.25 mg film-coated tablet, 30, blister pack 81603 42018011000036100 Bicor 1.25 mg film-coated tablet, 30 40323011000036105 Bicor 1.25 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 46791011000036109 bisoprolol fumarate 1.25 mg tablet, 30 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +20441011000036101 Aranesp 30 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 77953 13644011000036100 Aranesp 30 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 6927011000036102 Aranesp 30 microgram/0.3 mL injection solution, 0.3 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27854011000036103 darbepoetin alfa 30 microgram/0.3 mL injection, 4 x 0.3 mL syringes 23182011000036102 darbepoetin alfa 30 microgram/0.3 mL injection, syringe 21234011000036105 darbepoetin alfa +960531000168100 Ciram 40 mg film-coated tablet, 28, blister pack 158860 960521000168103 Ciram 40 mg film-coated tablet, 28 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +104721000036107 Irbesartan/HCT 300/12.5 (Sandoz) film-coated tablet, 30, bottle 174730 101901000036103 Irbesartan/HCT 300/12.5 (Sandoz) film-coated tablet, 30 99291000036106 Irbesartan/HCT 300/12.5 (Sandoz) film-coated tablet 52801000168107 Irbesartan/HCT 300/12.5 (Sandoz) 52801000168107 Irbesartan/HCT 300/12.5 (Sandoz) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +44583011000036103 Vfend 200 mg film-coated tablet, 14, blister pack 82505 42036011000036105 Vfend 200 mg film-coated tablet, 14 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46804011000036107 voriconazole 200 mg tablet, 14 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +922024011000036102 Wagner 1000 Plus Glucosamine hard capsule, 50, bottle 98506 921582011000036104 Wagner 1000 Plus Glucosamine hard capsule, 50 921098011000036103 Wagner 1000 Plus Glucosamine hard capsule 920938011000036105 Wagner 1000 Plus Glucosamine 920938011000036105 Wagner 1000 Plus Glucosamine 922695011000036104 ascorbic acid 50 mg + citrus bioflavonoids extract 50 mg + cupric sulfate pentahydrate 649 microgram (copper 166 microgram) + glucosamine sulfate potassium chloride 1 g + manganese amino acid chelate 5 mg (manganese 500 microgram) + zinc (as oxide) 2 mg capsule, 50 922162011000036105 ascorbic acid 50 mg + citrus bioflavonoids extract 50 mg + cupric sulfate pentahydrate 649 microgram (copper 166 microgram) + glucosamine sulfate potassium chloride 1 g + manganese amino acid chelate 5 mg (manganese 500 microgram) + zinc (as oxide) 2 mg capsule 922040011000036109 ascorbic acid + citrus bioflavonoids extract + cupric sulfate pentahydrate + glucosamine + manganese amino acid chelate + zinc oxide +780621000168105 Fentanyl (Apo) 12 microgram/hour patch, 5, sachet 152577 780611000168103 Fentanyl (Apo) 12 microgram/hour patch, 5 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 26685011000036103 fentanyl 12 microgram/hour patch, 5 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +925331011000036100 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 7, blister pack 165914 924867011000036109 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet, 7 924534011000036106 Lercanidipine Hydrochloride (Sandoz) 20 mg film-coated tablet 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 924391011000036101 Lercanidipine Hydrochloride (Sandoz) 925445011000036109 lercanidipine hydrochloride 20 mg tablet, 7 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +933230481000036108 Saphris 5 mg sublingual wafer, 60, blister pack 166562 933224491000036101 Saphris 5 mg sublingual wafer, 60 933220181000036102 Saphris 5 mg sublingual wafer 933218931000036105 Saphris 933218931000036105 Saphris 933224501000036108 asenapine 5 mg sublingual wafer, 60 933220191000036100 asenapine 5 mg sublingual wafer 933232091000036101 asenapine +69598011000036104 Lemsip Max 1 g powder for oral liquid, 10 sachets 69865 67397011000036109 Lemsip Max 1 g powder for oral liquid, 10 sachets 65646011000036105 Lemsip Max 1 g powder for oral liquid, 1 sachet 1561000168105 Lemsip Max 1561000168105 Lemsip Max 71932011000036108 paracetamol 1 g powder for oral liquid, 10 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +750681000168100 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 133649 750671000168103 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tabletss), 3 x 28 750591000168101 Yaz (inert substance) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +750681000168100 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tablets), 3 x 28, blister packs 133649 750671000168103 Yaz (24 x 3 mg/20 microgram tablets, 4 x inert tabletss), 3 x 28 750581000168104 Yaz (drospirenone 3 mg + ethinylestradiol 20 microgram) uncoated tablet 750571000168102 Yaz 750571000168102 Yaz 750661000168109 drospirenone 3 mg + ethinylestradiol 20 microgram tablet [24] (&) inert substance tablet [4], 3 x 28 88421000036102 drospirenone 3 mg + ethinylestradiol 20 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +725111000168107 MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 725101000168109 MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 725081000168102 MSUD Lophlex LQ 20 oral liquid solution, 125 mL pouch 62281000168109 MSUD Lophlex LQ 20 62281000168109 MSUD Lophlex LQ 20 725091000168104 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 125 mL pouches 725071000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 125 mL pouch 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +1033341000168105 Aten 100 mg film-coated tablet, 100, bottle 197719 1033331000168101 Aten 100 mg film-coated tablet, 100 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1033321000168104 atenolol 100 mg tablet, 100 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +61031011000036108 Imodium Advanced chewable tablet, 2, blister pack 66848 56974011000036103 Imodium Advanced chewable tablet, 2 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63672011000036102 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 2 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +650211000168104 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 56, blister pack 202107 650201000168102 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 56 650111000168109 Pritor/Amlodipine 40 mg/10 mg multilayer tablet 650101000168106 Pritor/Amlodipine 40 mg/10 mg 650101000168106 Pritor/Amlodipine 40 mg/10 mg 932430011000036100 telmisartan 40 mg + amlodipine 10 mg tablet, 56 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +712141000168109 Perindopril (Sandoz) 2 mg tablet, 30, blister pack 147561 712131000168100 Perindopril (Sandoz) 2 mg tablet, 30 712121000168103 Perindopril (Sandoz) 2 mg tablet 712111000168105 Perindopril (Sandoz) 712111000168105 Perindopril (Sandoz) 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +851471000168108 Entecavir (Mylan) 1 mg film-coated tablet, 30, blister pack 220091 851461000168102 Entecavir (Mylan) 1 mg film-coated tablet, 30 851451000168104 Entecavir (Mylan) 1 mg film-coated tablet 851431000168105 Entecavir (Mylan) 851431000168105 Entecavir (Mylan) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +18505011000036100 Lisinobell 10 mg uncoated tablet, 30, bottle 107313 11365011000036106 Lisinobell 10 mg uncoated tablet, 30 5313011000036106 Lisinobell 10 mg uncoated tablet 3209011000036108 Lisinobell 3209011000036108 Lisinobell 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +1001271000168101 Valaciclovir (Apo) 500 mg film-coated tablet, 240, bottle 158910 928335011000036109 Valaciclovir (Apo) 500 mg film-coated tablet, 240 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929218011000036103 valaciclovir 500 mg tablet, 240 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +35656011000036101 Refresh Liquigel 1% eye drops solution, 15 mL, bottle 35566011000036104 Refresh Liquigel 1% eye drops solution, 15 mL 35480011000036105 Refresh Liquigel 1% eye drops solution 35448011000036101 Refresh Liquigel 35448011000036101 Refresh Liquigel 35763011000036106 carmellose sodium 1% eye drops, 15 mL 35704011000036107 carmellose sodium 1% eye drops 35688011000036105 carmellose sodium +17751011000036104 Marevan 1 mg uncoated tablet, 50, bottle 12511 11786011000036101 Marevan 1 mg uncoated tablet, 50 5479011000036108 Marevan 1 mg uncoated tablet 3189011000036109 Marevan 3189011000036109 Marevan 27094011000036107 warfarin sodium 1 mg tablet, 50 22463011000036103 warfarin sodium 1 mg tablet 21248011000036104 warfarin +12761000036104 Olanzapine ODT (Terry White Chemists) 5 mg orally disintegrating tablet, 28, blister pack 158980 6941000036101 Olanzapine ODT (Terry White Chemists) 5 mg orally disintegrating tablet, 28 3521000036108 Olanzapine ODT (Terry White Chemists) 5 mg orally disintegrating tablet 12841000168101 Olanzapine ODT (Terry White Chemists) 12841000168101 Olanzapine ODT (Terry White Chemists) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +17991011000036102 Zolacos CP (1 x 10.8 mg implant, 84 x 50 mg tablets), 1 pack, composite pack 125687 11815011000036109 Zolacos CP (1 x 10.8 mg implant, 84 x 50 mg tablets), 1 pack 6037011000036108 Cosudex 50 mg film-coated tablet, 1 tablet 3314011000036102 ZolaCos 4172011000036106 Cosudex 26783011000036108 goserelin 10.8 mg implant [1 implant] (&) bicalutamide 50 mg tablet [84], 1 pack 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +17991011000036102 Zolacos CP (1 x 10.8 mg implant, 84 x 50 mg tablets), 1 pack, composite pack 125687 11815011000036109 Zolacos CP (1 x 10.8 mg implant, 84 x 50 mg tablets), 1 pack 4709011000036102 Zoladex 10.8 mg implant 3314011000036102 ZolaCos 3435011000036101 Zoladex 26783011000036108 goserelin 10.8 mg implant [1 implant] (&) bicalutamide 50 mg tablet [84], 1 pack 22169011000036104 goserelin 10.8 mg implant 21305011000036109 goserelin +1061411000168106 Atorvator 80 mg film-coated tablet, 6, blister pack 179843 1061401000168108 Atorvator 80 mg film-coated tablet, 6 1061241000168109 Atorvator 80 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 840961000168104 atorvastatin 80 mg tablet, 6 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +43829011000036105 Fucidin 250 mg film-coated tablet, 12, blister pack 125822 41330011000036105 Fucidin 250 mg film-coated tablet, 12 4644011000036104 Fucidin 250 mg film-coated tablet 20071000168105 Fucidin 20071000168105 Fucidin 46252011000036100 sodium fusidate 250 mg tablet, 12 22434011000036105 sodium fusidate 250 mg tablet 21917011000036107 fusidate +21066011000036104 Liprachol 10 mg uncoated tablet, 30, blister pack 97240 14210011000036101 Liprachol 10 mg uncoated tablet, 30 7493011000036100 Liprachol 10 mg uncoated tablet 4223011000036101 Liprachol 4223011000036101 Liprachol 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +1119381000168102 Quetiapine (Watson) 300 mg film-coated tablet, 20, blister pack 202265 1119371000168100 Quetiapine (Watson) 300 mg film-coated tablet, 20 1119361000168106 Quetiapine (Watson) 300 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +733741000168109 Arginaid Extra Orange oral liquid solution, 27 x 237 mL cartons 733731000168100 Arginaid Extra Orange oral liquid solution, 27 x 237 mL cartons 733711000168105 Arginaid Extra Orange oral liquid solution, 237 mL carton 732861000168108 Arginaid Extra 732861000168108 Arginaid Extra 733721000168103 protein formula with arginine, vitamin C, E and zinc oral liquid, 27 x 237 mL cartons 733701000168107 protein formula with arginine, vitamin C, E and zinc oral liquid, 237 mL carton 733691000168107 protein formula with arginine, vitamin C, E and zinc +828071000168106 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 204478 828061000168100 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 827701000168102 Mencevax ACWY (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial 34311000168106 Mencevax ACWY 34311000168106 Mencevax ACWY 828051000168102 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 827691000168102 meningococcal quadrivalent polysaccharide vaccine injection, vial 827681000168100 meningococcal quadrivalent polysaccharide vaccine +828071000168106 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 204478 828061000168100 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 703271000168100 Mencevax ACWY (inert substance) diluent, 0.5 mL syringe 34311000168106 Mencevax ACWY 34311000168106 Mencevax ACWY 828051000168102 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +918101000168102 Lisinopril (Apo) 10 mg tablet, 1000, bottle 144028 918091000168107 Lisinopril (Apo) 10 mg tablet, 1000 927904011000036102 Lisinopril (Apo) 10 mg tablet 96231000036104 Lisinopril (Apo) 96231000036104 Lisinopril (Apo) 918081000168109 lisinopril 10 mg tablet, 1000 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +1026851000168109 Pregabalin (Amneal) 150 mg hard capsule, 200, bottle 235880 1026841000168107 Pregabalin (Amneal) 150 mg hard capsule, 200 1026641000168106 Pregabalin (Amneal) 150 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 971691000168100 pregabalin 150 mg capsule, 200 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +61579011000036107 Pain (Capital Chemist) uncoated tablet, 96, blister pack 94553 57501011000036100 Pain (Capital Chemist) uncoated tablet, 96 54328011000036109 Pain (Capital Chemist) uncoated tablet 53159011000036109 Pain (Capital Chemist) 53159011000036109 Pain (Capital Chemist) 63892011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 96 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +1104231000168108 Alepam 15 mg uncoated tablet, 90, bottle 17572 32371011000036103 Alepam 15 mg uncoated tablet, 90 32245011000036105 Alepam 15 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 32771011000036102 oxazepam 15 mg tablet, 90 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +1029411000168101 Asthakast 5 mg chewable tablet, 28, blister pack 189231 1029401000168104 Asthakast 5 mg chewable tablet, 28 1029391000168101 Asthakast 5 mg chewable tablet 157791000036106 Asthakast 157791000036106 Asthakast 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +892211000168104 Betahist 16 mg uncoated tablet, 25, blister pack 212079 892201000168102 Betahist 16 mg uncoated tablet, 25 892171000168101 Betahist 16 mg uncoated tablet 892161000168107 Betahist 892161000168107 Betahist 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1059271000168109 Atomoxetine (Medis) 60 mg hard capsule, 28, blister pack 238332 1059261000168103 Atomoxetine (Medis) 60 mg hard capsule, 28 1059231000168106 Atomoxetine (Medis) 60 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 28017011000036109 atomoxetine 60 mg capsule, 28 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +156621000036104 Allevyn Life (66801067) 10.3 cm x 10.3 cm dressing, 10, carton 92774 155601000036100 Allevyn Life (66801067) 10.3 cm x 10.3 cm dressing, 10 154991000036103 Allevyn Life (66801067) 10.3 cm x 10.3 cm dressing 62481000168108 Allevyn Life (66801067) 62481000168108 Allevyn Life (66801067) 155611000036103 dressing foam with silicone 10.3 cm x 10.3 cm dressing, 10 155001000036106 dressing foam with silicone 10.3 cm x 10.3 cm dressing 157031000036107 dressing foam with silicone +34688011000036102 Amlodipine (Terry White Chemists) 5 mg uncoated tablet, 30, bottle 135155 34272011000036106 Amlodipine (Terry White Chemists) 5 mg uncoated tablet, 30 34000011000036108 Amlodipine (Terry White Chemists) 5 mg uncoated tablet 33931011000036103 Amlodipine (Terry White Chemists) 33931011000036103 Amlodipine (Terry White Chemists) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +935051000168104 Centevo 125/31.25/200 mg film-coated tablet, 30, bottle 238856 935041000168101 Centevo 125/31.25/200 mg film-coated tablet, 30 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 84653011000036105 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 30 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +37421011000036106 Xylocaine 1% with Adrenaline 1 in 100 000 injection solution, 50 x 5 mL ampoules 12017 36691011000036100 Xylocaine 1% with Adrenaline 1 in 100 000 injection solution, 50 x 5 mL ampoules 36169011000036104 Xylocaine 1% with Adrenaline 1 in 100 000 injection solution, 5 mL ampoule 13741000168101 Xylocaine 1% with Adrenaline 1 in 100 000 13741000168101 Xylocaine 1% with Adrenaline 1 in 100 000 38604011000036106 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) + adrenaline (epinephrine) 1 in 100 000 (50 microgram/5 mL) injection, 50 x 5 mL ampoules 37872011000036108 lidocaine (lignocaine) hydrochloride 1% (50 mg/5 mL) + adrenaline (epinephrine) 1 in 100 000 (50 microgram/5 mL) injection, ampoule 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +650171000168101 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 28, blister pack 202107 650161000168107 Pritor/Amlodipine 40 mg/10 mg multilayer tablet, 28 650111000168109 Pritor/Amlodipine 40 mg/10 mg multilayer tablet 650101000168106 Pritor/Amlodipine 40 mg/10 mg 650101000168106 Pritor/Amlodipine 40 mg/10 mg 932428011000036101 telmisartan 40 mg + amlodipine 10 mg tablet, 28 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +85491000036106 Fendex ER 10 mg modified release tablet, 7, blister pack 184622 84561000036101 Fendex ER 10 mg modified release tablet, 7 84091000036104 Fendex ER 10 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84571000036109 felodipine 10 mg modified release tablet, 7 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +81721000036101 Vita-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 172663 80071000036105 Vita-B12 1 mg/mL injection solution, 3 x 1 mL ampoules 78251000036100 Vita-B12 1 mg/mL injection solution, ampoule 78061000036109 Vita-B12 78061000036109 Vita-B12 26736011000036106 hydroxocobalamin 1 mg/mL injection, 3 x 1 mL ampoules 22131011000036106 hydroxocobalamin 1 mg/mL injection, ampoule 21828011000036108 hydroxocobalamin +735571000168106 Aldara 5% cream, 6 x 250 mg sachets 64798 735561000168100 Aldara 5% cream, 6 x 250 mg sachets 6389011000036109 Aldara 5% cream, 250 mg sachet 3048011000036100 Aldara 3048011000036100 Aldara 932454011000036109 imiquimod 5% cream, 6 x 250 mg sachets 22889011000036108 imiquimod 5% cream, sachet 21715011000036105 imiquimod +69153011000036105 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid, 528 g, jar 153182 66953011000036104 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid, 528 g 65251011000036104 Metamucil Smooth Wild Berry 568 mg/g powder for oral liquid 22011000168101 Metamucil Smooth 22011000168101 Metamucil Smooth 71528011000036101 psyllium husk powder 568 mg/g powder for oral liquid, 528 g 70043011000036101 psyllium husk powder 568 mg/g powder for oral liquid 21683011000036102 psyllium husk powder +933212611000036108 Ciprofloxacin (GN) 250 mg film-coated tablet, 14, blister pack 148849 933202351000036104 Ciprofloxacin (GN) 250 mg film-coated tablet, 14 933195361000036109 Ciprofloxacin (GN) 250 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +929698011000036102 Valacor 500 mg film-coated tablet, 42, blister pack 177373 929534011000036105 Valacor 500 mg film-coated tablet, 42 929415011000036105 Valacor 500 mg film-coated tablet 929366011000036107 Valacor 929366011000036107 Valacor 27734011000036104 valaciclovir 500 mg tablet, 42 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1012051000168109 Irbesartan (Apotex) 300 mg film-coated tablet, 5, blister pack 169795 1012041000168107 Irbesartan (Apotex) 300 mg film-coated tablet, 5 1012011000168108 Irbesartan (Apotex) 300 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777361000168100 irbesartan 300 mg tablet, 5 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +60277011000036102 Panadol Caplet 500 mg film-coated tablet, 16, blister pack 13590 56236011000036109 Panadol Caplet 500 mg film-coated tablet, 16 53849011000036103 Panadol Caplet 500 mg film-coated tablet 29141000168108 Panadol Caplet 29141000168108 Panadol Caplet 63793011000036107 paracetamol 500 mg tablet, 16 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +716481000168106 Pemzo 20 mg enteric capsule, 28, bottle 167315 716431000168105 Pemzo 20 mg enteric capsule, 28 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716411000168100 omeprazole 20 mg enteric capsule, 28 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +919951000168106 Cilopam 40 mg film-coated tablet, 14, bottle 158867 919941000168109 Cilopam 40 mg film-coated tablet, 14 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202841000036106 citalopram 40 mg tablet, 14 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +992771000168109 Lyrica 100 mg hard capsule, 60, blister pack 99524 991281000168107 Lyrica 100 mg hard capsule, 60 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 855041000168109 pregabalin 100 mg capsule, 60 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +896461000168101 Imatinib (AN) 400 mg hard capsule, 180, blister pack 281366 896451000168103 Imatinib (AN) 400 mg hard capsule, 180 896341000168107 Imatinib (AN) 400 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 894011000168100 imatinib 400 mg capsule, 180 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +817151000168107 Tobramycin (AN) 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 241214 817141000168105 Tobramycin (AN) 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 817131000168101 Tobramycin (AN) 300 mg/5 mL inhalation solution, 5 mL ampoule 817121000168104 Tobramycin (AN) 817121000168104 Tobramycin (AN) 933226121000036101 tobramycin 300 mg/5 mL inhalation solution, 56 x 5 mL ampoules 933220971000036102 tobramycin 300 mg/5 mL inhalation solution, ampoule 21646011000036100 tobramycin +933247011000036107 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 100, blister pack 158413 933243841000036108 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 100 933241491000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet 933241021000036106 Prochlorperazine Maleate (PS) 933241021000036106 Prochlorperazine Maleate (PS) 924170011000036106 prochlorperazine maleate 5 mg tablet, 100 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +1061371000168105 Olanzapine (Auro) 5 mg uncoated tablet, 30, bottle 179933 1061361000168104 Olanzapine (Auro) 5 mg uncoated tablet, 30 713901000168101 Olanzapine (Auro) 5 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 89751000036106 olanzapine 5 mg tablet, 30 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +727211000168105 Zeldox 80 mg hard capsule, 20, blister pack 65529 727201000168107 Zeldox 80 mg hard capsule, 20 6417011000036109 Zeldox 80 mg hard capsule 2171000168103 Zeldox 2171000168103 Zeldox 727191000168109 ziprasidone 80 mg capsule, 20 22911011000036100 ziprasidone 80 mg capsule 21267011000036107 ziprasidone +952101000168106 Diclofenac (Amneal) 25 mg enteric tablet, 20, blister pack 272878 952091000168101 Diclofenac (Amneal) 25 mg enteric tablet, 20 952081000168104 Diclofenac (Amneal) 25 mg enteric tablet 952071000168102 Diclofenac (Amneal) 952071000168102 Diclofenac (Amneal) 63834011000036101 diclofenac sodium 25 mg enteric tablet, 20 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +77411011000036105 Trental 400 mg modified release tablet, 50, blister pack 81197 76827011000036101 Trental 400 mg modified release tablet, 50 76195011000036105 Trental 400 mg modified release tablet 75929011000036101 Trental 75929011000036101 Trental 78331011000036104 pentoxifylline (oxpentifylline) 400 mg modified release tablet, 50 77610011000036100 pentoxifylline (oxpentifylline) 400 mg modified release tablet 77456011000036107 pentoxifylline (oxpentifylline) +1059201000168104 Diclofenac (Pharmacor) 50 mg enteric tablet, 20, blister pack 272887 1059191000168102 Diclofenac (Pharmacor) 50 mg enteric tablet, 20 1059161000168109 Diclofenac (Pharmacor) 50 mg enteric tablet 1059151000168107 Diclofenac (Pharmacor) 1059151000168107 Diclofenac (Pharmacor) 952161000168107 diclofenac sodium 50 mg enteric tablet, 20 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +60012011000036100 Diovan 320 mg film-coated tablet, 28, blister pack 123357 55974011000036101 Diovan 320 mg film-coated tablet, 28 53744011000036101 Diovan 320 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63184011000036103 valsartan 320 mg tablet, 28 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +104881000036103 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet, 30, bottle 175214 102021000036104 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet, 30 99091000036104 Irbesartan HCTZ 300/12.5 (Apo) film-coated tablet 6731000168101 Irbesartan HCTZ 300/12.5 (Apo) 6731000168101 Irbesartan HCTZ 300/12.5 (Apo) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +1069911000168102 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet, 24, blister pack 203128 1069901000168100 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet, 24 1069861000168106 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) film-coated tablet 1069851000168109 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) 1069851000168109 Paracetamol 500 mg, Codeine Phosphate Hemihydrate 9.5 mg Phenylepherine Hydrochloride 5 mg (Medreich) 63169011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +819321000168105 Spren 100 mg uncoated tablet, 30, blister pack 62261 819311000168103 Spren 100 mg uncoated tablet, 30 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 63600011000036106 aspirin 100 mg tablet, 30 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +819321000168105 Spren 100 mg uncoated tablet, 30, blister pack 178592 819311000168103 Spren 100 mg uncoated tablet, 30 41211000036107 Spren 100 mg uncoated tablet 40171000036101 Spren 40171000036101 Spren 63600011000036106 aspirin 100 mg tablet, 30 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +862161000168105 Cal-600 plus D film-coated tablet, 60, bottle 174625 862151000168108 Cal-600 plus D film-coated tablet, 60 862121000168100 Cal-600 plus D film-coated tablet 681111000168106 Cal-600 plus D 681111000168106 Cal-600 plus D 733981000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +982101000168102 Zofran 24 mg film-coated tablet, 5, blister pack 68430 982091000168107 Zofran 24 mg film-coated tablet, 5 982041000168104 Zofran 24 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 982081000168109 ondansetron 24 mg tablet, 5 982031000168108 ondansetron 24 mg tablet 21545011000036100 ondansetron +1007801000168102 Morphine MR (Mylan) 60 mg modified release tablet, 28, blister pack 225423 1007791000168103 Morphine MR (Mylan) 60 mg modified release tablet, 28 1007741000168106 Morphine MR (Mylan) 60 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 929757011000036102 morphine sulfate pentahydrate 60 mg modified release tablet, 28 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +887881000168105 Visine Advanced eye drops solution, 15 mL, bottle 72111 887871000168107 Visine Advanced eye drops solution, 15 mL 887861000168101 Visine Advanced eye drops solution 887851000168103 Visine Advanced 887851000168103 Visine Advanced 63720011000036105 dextran-70 0.1% + macrogol-400 1% + povidone 1% + tetryzoline hydrochloride 0.05% eye drops, 15 mL 62058011000036102 dextran-70 0.1% + macrogol-400 1% + povidone 1% + tetryzoline hydrochloride 0.05% eye drops 61792011000036106 dextran-70 + macrogol-400 + povidone + tetryzoline +60483011000036100 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 8 sachets 150168 56441011000036104 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 8 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63361011000036105 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 8 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +677951000168109 Osteo Paracetamol (Apo) 665 mg modified release tablet, 100, bottle 227117 677941000168107 Osteo Paracetamol (Apo) 665 mg modified release tablet, 100 677901000168105 Osteo Paracetamol (Apo) 665 mg modified release tablet 677891000168106 Osteo Paracetamol (Apo) 677891000168106 Osteo Paracetamol (Apo) 677931000168103 paracetamol 665 mg modified release tablet, 100 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +933213161000036108 Pravastatin Sodium (Hexal) 20 mg tablet, 30, blister pack 152461 933201581000036109 Pravastatin Sodium (Hexal) 20 mg tablet, 30 933194731000036103 Pravastatin Sodium (Hexal) 20 mg tablet 933193451000036102 Pravastatin Sodium (Hexal) 933193451000036102 Pravastatin Sodium (Hexal) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +716521000168106 Pemzo 20 mg enteric capsule, 280, blister pack 149517 716511000168104 Pemzo 20 mg enteric capsule, 280 716241000168102 Pemzo 20 mg enteric capsule 924390011000036108 Pemzo 924390011000036108 Pemzo 716501000168102 omeprazole 20 mg enteric capsule, 280 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +1052751000168104 Palexia SR 200 mg modified release tablet, 56, blister pack 165356 1052741000168101 Palexia SR 200 mg modified release tablet, 56 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052731000168105 tapentadol 200 mg modified release tablet, 56 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +913541000168100 Amlodipine (Alkem) 10 mg tablet, 7, blister pack 215705 913531000168109 Amlodipine (Alkem) 10 mg tablet, 7 913511000168104 Amlodipine (Alkem) 10 mg tablet 913041000168106 Amlodipine (Alkem) 913041000168106 Amlodipine (Alkem) 913521000168106 amlodipine 10 mg tablet, 7 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +933213321000036101 Citalopram (IPCA) 40 mg film-coated tablet, 250, bottle 158855 933202851000036109 Citalopram (IPCA) 40 mg film-coated tablet, 250 933195401000036104 Citalopram (IPCA) 40 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 933202861000036107 citalopram 40 mg tablet, 250 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +19087011000036106 Bisacodyl (Fleet) 10 mg moulded suppository, 12, strip pack 42663 12393011000036108 Bisacodyl (Fleet) 10 mg moulded suppository, 12 4577011000036103 Bisacodyl (Fleet) 10 mg moulded suppository 3194011000036107 Bisacodyl (Fleet) 3194011000036107 Bisacodyl (Fleet) 27142011000036103 bisacodyl 10 mg suppository, 12 22506011000036101 bisacodyl 10 mg suppository 21264011000036101 bisacodyl +686541000168105 Laxative with Senna (Pharmacy Action) film-coated tablet, 200, bottle 200805 686531000168101 Laxative with Senna (Pharmacy Action) film-coated tablet, 200 686491000168101 Laxative with Senna (Pharmacy Action) film-coated tablet 686481000168104 Laxative with Senna (Pharmacy Action) 686481000168104 Laxative with Senna (Pharmacy Action) 686521000168104 docusate sodium 50 mg + sennoside B 8 mg tablet, 200 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +866411000168102 Amitriptyline (GPPL) 10 mg tablet, 250, bottle 232135 866401000168100 Amitriptyline (GPPL) 10 mg tablet, 250 865411000168109 Amitriptyline (GPPL) 10 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +37498011000036107 Fucidin 2% ointment, 10 g, tube 12990 36766011000036103 Fucidin 2% ointment, 10 g 36022011000036105 Fucidin 2% ointment 20071000168105 Fucidin 20071000168105 Fucidin 38666011000036104 sodium fusidate 2% ointment, 10 g 37914011000036103 sodium fusidate 2% ointment 21917011000036107 fusidate +928949011000036104 Topiramate (Lupin) 25 mg film-coated tablet, 60, bottle 155208 928310011000036105 Topiramate (Lupin) 25 mg film-coated tablet, 60 927939011000036106 Topiramate (Lupin) 25 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +74841011000036101 Tubersol 50 tuberculin units/mL injection solution, 1 mL vial 28624 74328011000036106 Tubersol 50 tuberculin units/mL injection solution, 1 mL vial 73859011000036102 Tubersol 50 tuberculin units/mL injection solution, vial 73762011000036104 Tubersol 73762011000036104 Tubersol 75434011000036102 tuberculin PPD (Mantoux) acellular intradermal skin test 50 tuberculin units/mL injection, 1 mL vial 75054011000036107 tuberculin PPD (Mantoux) acellular intradermal skin test 50 tuberculin units/mL injection, vial 74973011000036106 tuberculin PPD (Mantoux) acellular intradermal skin test +921862011000036100 Glucosamine Sulfate 1000mg (Biosource) 1 g hard capsule, 200, bottle 150686 921421011000036105 Glucosamine Sulfate 1000mg (Biosource) 1 g hard capsule, 200 920999011000036105 Glucosamine Sulfate 1000mg (Biosource) 1 g hard capsule 14331000168108 Glucosamine Sulfate 1000mg (Biosource) 14331000168108 Glucosamine Sulfate 1000mg (Biosource) 922554011000036103 glucosamine sulfate potassium chloride 1 g capsule, 200 922082011000036103 glucosamine sulfate potassium chloride 1 g capsule 69813011000036107 glucosamine +984271000168105 Butafen 200 mg sugar coated tablet, 20, blister pack 126093 984261000168104 Butafen 200 mg sugar coated tablet, 20 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +887961000168108 Hexvix (1 x 85 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 259252 887951000168106 Hexvix (1 x 85 mg vial, 1 x 50 mL inert diluent vial), 1 pack 887921000168103 Hexvix (hexaminolevulinate 85 mg) powder for injection, 85 mg vial 887891000168108 Hexvix 887891000168108 Hexvix 887941000168109 hexaminolevulinate 85 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 887911000168105 hexaminolevulinate 85 mg injection, vial 887901000168107 hexaminolevulinate +887961000168108 Hexvix (1 x 85 mg vial, 1 x 50 mL inert diluent vial), 1 pack, composite pack 259252 887951000168106 Hexvix (1 x 85 mg vial, 1 x 50 mL inert diluent vial), 1 pack 887931000168100 Hexvix (inert substance) diluent, 50 mL vial 887891000168108 Hexvix 887891000168108 Hexvix 887941000168109 hexaminolevulinate 85 mg injection [1 vial] (&) inert substance diluent [50 mL vial], 1 pack 636721000168104 inert substance diluent, 50 mL vial 21220011000036103 inert substance +933149011000036102 Elmendos 100 mg tablet, 56, blister pack 98083 932941011000036105 Elmendos 100 mg tablet, 56 932774011000036100 Elmendos 100 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +933149011000036102 Elmendos 100 mg tablet, 56, blister pack 98075 932941011000036105 Elmendos 100 mg tablet, 56 932774011000036100 Elmendos 100 mg tablet 4397011000036105 Elmendos 4397011000036105 Elmendos 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +931397011000036102 Paracetamol Children's 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 200 mL, bottle 117612 930566011000036107 Paracetamol Children's 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 200 mL 929932011000036108 Paracetamol Children's 5 to 12 Years (Chemists' Own) 240 mg/5 mL oral liquid suspension, 5 mL 7131000168104 Paracetamol Children's 5 to 12 Years (Chemists' Own) 7131000168104 Paracetamol Children's 5 to 12 Years (Chemists' Own) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +50237011000036104 Tubigrip Long Stocking (1484) large size bandage, 1, carton 49319011000036104 Tubigrip Long Stocking (1484) large size bandage, 1 48691011000036105 Tubigrip Long Stocking (1484) large size bandage 55871000168109 Tubigrip Long Stocking (1484) 55871000168109 Tubigrip Long Stocking (1484) 51300011000036108 bandage tubular long stocking large size bandage, 1 50829011000036100 bandage tubular long stocking large size bandage 50728011000036105 bandage tubular long stocking +43572011000036103 Gabahexal 600 mg film-coated tablet, 100, blister pack 123972 41309011000036109 Gabahexal 600 mg film-coated tablet, 100 39821011000036109 Gabahexal 600 mg film-coated tablet 3614011000036107 Gabahexal 3614011000036107 Gabahexal 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +986421000168102 Advil Double Strength Liquid Capsules 400 mg soft capsule, 30, blister pack 207293 986411000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule, 30 986251000168109 Advil Double Strength Liquid Capsules 400 mg soft capsule 986241000168107 Advil Double Strength Liquid Capsules 986241000168107 Advil Double Strength Liquid Capsules 986401000168106 ibuprofen 400 mg capsule, 30 49611000036105 ibuprofen 400 mg capsule 21885011000036105 ibuprofen +69230011000036100 Chlorhexidine Acetate (Baxter) 0.05% (50 mg/100 mL) irrigation solution, 24 x 100 mL bottles 19461 67030011000036103 Chlorhexidine Acetate (Baxter) 0.05% (50 mg/100 mL) irrigation solution, 24 x 100 mL bottles 65287011000036101 Chlorhexidine Acetate (Baxter) 0.05% (50 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71600011000036101 chlorhexidine acetate 0.05% (50 mg/100 mL) solution, 24 x 100 mL bottles 70085011000036106 chlorhexidine acetate 0.05% (50 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +931639011000036108 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 30, bottle 166255 930799011000036100 Pravastatin Sodium (Apo) 10 mg uncoated tablet, 30 930053011000036107 Pravastatin Sodium (Apo) 10 mg uncoated tablet 1581000168101 Pravastatin Sodium (Apo) 1581000168101 Pravastatin Sodium (Apo) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +44171011000036101 Cozaar 50 mg film-coated tablet, 8, blister pack 54809 41647011000036100 Cozaar 50 mg film-coated tablet, 8 40122011000036109 Cozaar 50 mg film-coated tablet 39592011000036106 Cozaar 39592011000036106 Cozaar 46466011000036108 losartan potassium 50 mg tablet, 8 45171011000036109 losartan potassium 50 mg tablet 44887011000036108 losartan +883621000168101 Betahistine (AS) 16 mg tablet, 10, blister pack 231718 883611000168108 Betahistine (AS) 16 mg tablet, 10 883601000168105 Betahistine (AS) 16 mg tablet 883521000168100 Betahistine (AS) 883521000168100 Betahistine (AS) 46539011000036104 betahistine dihydrochloride 16 mg tablet, 10 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +38621000036106 Escitalopram (MPPL) 15 mg film-coated tablet, 100, bottle 165861 34981000036106 Escitalopram (MPPL) 15 mg film-coated tablet, 100 32971000036104 Escitalopram (MPPL) 15 mg film-coated tablet 32251000036104 Escitalopram (MPPL) 32251000036104 Escitalopram (MPPL) 34901000036100 escitalopram 15 mg tablet, 100 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +960691000168102 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet, 60, blister pack 255073 960681000168100 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet, 60 960621000168104 Amoxicillin Clavulanic Acid 875/125 (Mylan) film-coated tablet 960611000168106 Amoxicillin Clavulanic Acid 875/125 (Mylan) 960611000168106 Amoxicillin Clavulanic Acid 875/125 (Mylan) 914061000168108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 60 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +849421000168106 Vzole 50 mg film-coated tablet, 2, bottle 238240 849141000168109 Vzole 50 mg film-coated tablet, 2 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46814011000036109 voriconazole 50 mg tablet, 2 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +761371000168108 Xifaxan 200 mg film-coated tablet, 9, blister pack 222643 761361000168102 Xifaxan 200 mg film-coated tablet, 9 761341000168101 Xifaxan 200 mg film-coated tablet 93311000036109 Xifaxan 93311000036109 Xifaxan 761351000168104 rifaximin 200 mg tablet, 9 761331000168105 rifaximin 200 mg tablet 95821000036105 rifaximin +926886011000036101 Optiray-320 Ultraject 678 mg (iodine 320 mg)/mL injection solution, 20 x 75 mL syringes 73580 926282011000036105 Optiray-320 Ultraject 678 mg (iodine 320 mg)/mL injection solution, 20 x 75 mL syringes 925726011000036106 Optiray-320 Ultraject 678 mg (iodine 320 mg)/mL injection solution, 75 mL syringe 19551000168105 Optiray-320 Ultraject 19551000168105 Optiray-320 Ultraject 927384011000036108 ioversol 678 mg (iodine 320 mg)/mL injection, 20 x 75 mL syringes 927026011000036107 ioversol 678 mg (iodine 320 mg)/mL injection, 75 mL syringe 77421011000036103 ioversol +658571000168108 Olanzapine ODT (AN) 15 mg orally disintegrating tablet, 28, blister pack 179085 658561000168102 Olanzapine ODT (AN) 15 mg orally disintegrating tablet, 28 658551000168104 Olanzapine ODT (AN) 15 mg orally disintegrating tablet 658541000168101 Olanzapine ODT (AN) 658541000168101 Olanzapine ODT (AN) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +81078011000036103 Cephalexin (Generic Health) 250 mg capsule, 20, blister pack 154380 80587011000036104 Cephalexin (Generic Health) 250 mg capsule, 20 80202011000036109 Cephalexin (Generic Health) 250 mg capsule 79349011000036101 Cephalexin (Generic Health) 79349011000036101 Cephalexin (Generic Health) 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +930621000168108 Cavstat 5 mg film-coated tablet, 60, blister pack 234543 930611000168101 Cavstat 5 mg film-coated tablet, 60 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 930601000168104 rosuvastatin 5 mg tablet, 60 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +68656011000036101 Strepsils strawberry sugar free lozenge, 2, blister pack 101403 66465011000036106 Strepsils strawberry sugar free lozenge, 2 65493011000036105 Strepsils strawberry sugar free lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71521011000036105 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 2 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +703731000168109 Ciprofloxacin (Apo) 500 mg film-coated tablet, 14, blister pack 135651 703721000168106 Ciprofloxacin (Apo) 500 mg film-coated tablet, 14 703711000168104 Ciprofloxacin (Apo) 500 mg film-coated tablet 703671000168103 Ciprofloxacin (Apo) 703671000168103 Ciprofloxacin (Apo) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1093401000168106 Voltaren Emulgel No Mess Applicator 1.16% gel, 150 g, tube 282516 1093391000168109 Voltaren Emulgel No Mess Applicator 1.16% gel, 150 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1037131000168105 diclofenac diethylamine 1.16% gel, 150 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +933212681000036100 Ciprofloxacin (GN) 500 mg film-coated tablet, 8, blister pack 148852 933202421000036101 Ciprofloxacin (GN) 500 mg film-coated tablet, 8 933195371000036101 Ciprofloxacin (GN) 500 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 933199841000036101 ciprofloxacin 500 mg tablet, 8 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +20124011000036102 Closyn 25 mg uncoated tablet, 100, blister pack 73030 13348011000036100 Closyn 25 mg uncoated tablet, 100 6633011000036109 Closyn 25 mg uncoated tablet 4434011000036103 Closyn 4434011000036103 Closyn 28135011000036104 clozapine 25 mg tablet, 100 23444011000036102 clozapine 25 mg tablet 21222011000036104 clozapine +933246971000036102 Pantoprazole (PS) 40 mg enteric tablet, 5, blister pack 158197 933243801000036105 Pantoprazole (PS) 40 mg enteric tablet, 5 933241481000036103 Pantoprazole (PS) 40 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46659011000036107 pantoprazole 40 mg enteric tablet, 5 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +920675011000036101 Quinapril (GA) 5 mg film-coated tablet, 30, blister pack 133233 920387011000036106 Quinapril (GA) 5 mg film-coated tablet, 30 920150011000036107 Quinapril (GA) 5 mg film-coated tablet 920106011000036101 Quinapril (GA) 920106011000036101 Quinapril (GA) 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +926491000168107 Zithromax 250 mg film-coated tablet, 30, blister pack 58795 926481000168109 Zithromax 250 mg film-coated tablet, 30 926371000168104 Zithromax 250 mg film-coated tablet 3528011000036100 Zithromax 3528011000036100 Zithromax 926471000168106 azithromycin 250 mg tablet, 30 926361000168105 azithromycin 250 mg tablet 21518011000036103 azithromycin +20132011000036109 Renitec Plus 20/6 uncoated tablet, 30, blister pack 73359 13356011000036102 Renitec Plus 20/6 uncoated tablet, 30 6641011000036109 Renitec Plus 20/6 uncoated tablet 31621000168105 Renitec Plus 20/6 31621000168105 Renitec Plus 20/6 27712011000036100 enalapril maleate 20 mg + hydrochlorothiazide 6 mg tablet, 30 23047011000036104 enalapril maleate 20 mg + hydrochlorothiazide 6 mg tablet 21508011000036101 enalapril + hydrochlorothiazide +104861000036108 Irbesartan HCTZ 300/25 (Terry White Chemists) film-coated tablet, 30, blister pack 216085 101991000036106 Irbesartan HCTZ 300/25 (Terry White Chemists) film-coated tablet, 30 98621000036104 Irbesartan HCTZ 300/25 (Terry White Chemists) film-coated tablet 26081000168106 Irbesartan HCTZ 300/25 (Terry White Chemists) 26081000168106 Irbesartan HCTZ 300/25 (Terry White Chemists) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +104861000036108 Irbesartan HCTZ 300/25 (Terry White Chemists) film-coated tablet, 30, blister pack 175212 101991000036106 Irbesartan HCTZ 300/25 (Terry White Chemists) film-coated tablet, 30 98621000036104 Irbesartan HCTZ 300/25 (Terry White Chemists) film-coated tablet 26081000168106 Irbesartan HCTZ 300/25 (Terry White Chemists) 26081000168106 Irbesartan HCTZ 300/25 (Terry White Chemists) 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +87700011000036109 Carvedilol (Apo) 12.5 mg film-coated tablet, 60, blister pack 123836 87415011000036108 Carvedilol (Apo) 12.5 mg film-coated tablet, 60 87297011000036103 Carvedilol (Apo) 12.5 mg film-coated tablet 30921000168106 Carvedilol (Apo) 30921000168106 Carvedilol (Apo) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +896381000168102 Imatinib (AN) 400 mg hard capsule, 30, blister pack 281366 896371000168100 Imatinib (AN) 400 mg hard capsule, 30 896341000168107 Imatinib (AN) 400 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 830781000168107 imatinib 400 mg capsule, 30 830761000168103 imatinib 400 mg capsule 21401011000036104 imatinib +18068011000036107 Cordilox SR 240 mg modified release tablet, 30, blister pack 10681 11344011000036102 Cordilox SR 240 mg modified release tablet, 30 5770011000036105 Cordilox SR 240 mg modified release tablet 22581000168103 Cordilox SR 22581000168103 Cordilox SR 33790011000036109 verapamil hydrochloride 240 mg modified release tablet, 30 33662011000036104 verapamil hydrochloride 240 mg modified release tablet 21287011000036109 verapamil +19164011000036106 Nuelin SR 250 mg modified release tablet, 100, bottle 46069 12463011000036104 Nuelin SR 250 mg modified release tablet, 100 4717011000036107 Nuelin SR 250 mg modified release tablet 31931000168103 Nuelin SR 31931000168103 Nuelin SR 27137011000036100 theophylline 250 mg modified release tablet, 100 22502011000036100 theophylline 250 mg modified release tablet 21367011000036100 theophylline +61074011000036108 Micanol 1% cream, 50 g, tube 69562 57017011000036108 Micanol 1% cream, 50 g 54162011000036106 Micanol 1% cream 53198011000036105 Micanol 53198011000036105 Micanol 63693011000036100 dithranol 1% cream, 50 g 62050011000036104 dithranol 1% cream 61732011000036104 dithranol +853161000168108 Gabapen 400 mg hard capsule, 100, blister pack 204502 853151000168106 Gabapen 400 mg hard capsule, 100 853141000168109 Gabapen 400 mg hard capsule 853011000168106 Gabapen 853011000168106 Gabapen 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +686701000168103 Metformin XR 1000 (Apo) 1 g modified release tablet, 60, blister pack 281210 686691000168103 Metformin XR 1000 (Apo) 1 g modified release tablet, 60 686681000168101 Metformin XR 1000 (Apo) 1 g modified release tablet 686671000168104 Metformin XR 1000 (Apo) 686671000168104 Metformin XR 1000 (Apo) 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +686701000168103 Metformin XR 1000 (Apo) 1 g modified release tablet, 60, blister pack 218270 686691000168103 Metformin XR 1000 (Apo) 1 g modified release tablet, 60 686681000168101 Metformin XR 1000 (Apo) 1 g modified release tablet 686671000168104 Metformin XR 1000 (Apo) 686671000168104 Metformin XR 1000 (Apo) 87807011000036107 metformin hydrochloride 1 g modified release tablet, 60 87754011000036106 metformin hydrochloride 1 g modified release tablet 21614011000036102 metformin +1036071000168109 Atorvastatin (RBX) 40 mg film-coated tablet, 28, bottle 173499 1036061000168103 Atorvastatin (RBX) 40 mg film-coated tablet, 28 1036011000168101 Atorvastatin (RBX) 40 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890251000168102 atorvastatin 40 mg tablet, 28 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +83382011000036104 Lisinopril (GA) 5 mg uncoated tablet, 14, blister pack 106500 83301011000036106 Lisinopril (GA) 5 mg uncoated tablet, 14 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 83479011000036106 lisinopril 5 mg tablet, 14 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +18933011000036103 Tobrex 0.3% eye ointment, 3.5 g, tube 25364 12241011000036105 Tobrex 0.3% eye ointment, 3.5 g 4982011000036104 Tobrex 0.3% eye ointment 3114011000036106 Tobrex 3114011000036106 Tobrex 27006011000036101 tobramycin 0.3% eye ointment, 3.5 g 22379011000036100 tobramycin 0.3% eye ointment 21646011000036100 tobramycin +868191000168100 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags 16847 868181000168103 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags 868131000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 10581000168107 Dianeal PD-4 with Glucose 2.5% 10581000168107 Dianeal PD-4 with Glucose 2.5% 868171000168101 glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags 868121000168102 glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +787611000168102 Arizole 20 mg uncoated tablet, 100, bottle 198178 787601000168100 Arizole 20 mg uncoated tablet, 100 787561000168100 Arizole 20 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787591000168107 aripiprazole 20 mg tablet, 100 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +87657011000036108 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 48, blister pack 126538 87418011000036102 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet, 48 53771011000036103 Ibuprofen (Pharmacy Choice) 200 mg film-coated tablet 53155011000036107 Ibuprofen (Pharmacy Choice) 53155011000036107 Ibuprofen (Pharmacy Choice) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +849461000168101 Vzole 50 mg film-coated tablet, 20, bottle 238240 849201000168103 Vzole 50 mg film-coated tablet, 20 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46815011000036108 voriconazole 50 mg tablet, 20 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +82414011000036106 Myambutol 100 mg film-coated tablet, 56, bottle 47887 82203011000036106 Myambutol 100 mg film-coated tablet, 56 40042011000036100 Myambutol 100 mg film-coated tablet 39578011000036103 Myambutol 39578011000036103 Myambutol 82568011000036108 ethambutol hydrochloride 100 mg tablet, 56 45108011000036109 ethambutol hydrochloride 100 mg tablet 44949011000036100 ethambutol +761611000168106 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid, 500 mL, bottle 14085 761601000168108 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid, 500 mL 761551000168106 Eucalyptus Oil (David Craig) 1 mL/mL multi-purpose liquid 761511000168105 Eucalyptus Oil (David Craig) 761511000168105 Eucalyptus Oil (David Craig) 932340011000036107 eucalyptus oil 1 mL/mL liquid, 500 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +761691000168102 Codapane Xtra uncoated tablet, 12, blister pack 199680 761681000168100 Codapane Xtra uncoated tablet, 12 761641000168105 Codapane Xtra uncoated tablet 761631000168101 Codapane Xtra 761631000168101 Codapane Xtra 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +21092011000036100 Amohexal 500 mg hard capsule, 20, blister pack 97592 14235011000036102 Amohexal 500 mg hard capsule, 20 7521011000036100 Amohexal 500 mg hard capsule 3095011000036101 Amohexal 3095011000036101 Amohexal 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +964781000168103 Physiotens 300 microgram film-coated tablet, 28, blister pack 114120 964771000168101 Physiotens 300 microgram film-coated tablet, 28 964701000168106 Physiotens 300 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 964311000168108 moxonidine 300 microgram tablet, 28 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +37369011000036109 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.25% (50 mg/20 mL) injection solution, 5 x 20 mL vials 11314 36661011000036102 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.25% (50 mg/20 mL) injection solution, 5 x 20 mL vials 36103011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 0.25% (50 mg/20 mL) injection solution, 20 mL vial 35985011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 35985011000036103 Bupivacaine Hydrochloride (Pfizer (Perth)) 38579011000036108 bupivacaine hydrochloride 0.25% (50 mg/20 mL) injection, 5 x 20 mL vials 37852011000036106 bupivacaine hydrochloride 0.25% (50 mg/20 mL) injection, vial 37702011000036102 bupivacaine +60877011000036109 Aspirin (Amcal) 100 mg uncoated tablet, 112, blister pack 231440 56831011000036109 Aspirin (Amcal) 100 mg uncoated tablet, 112 54093011000036105 Aspirin (Amcal) 100 mg uncoated tablet 53388011000036103 Aspirin (Amcal) 53388011000036103 Aspirin (Amcal) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +60877011000036109 Aspirin (Amcal) 100 mg uncoated tablet, 112, blister pack 59728 56831011000036109 Aspirin (Amcal) 100 mg uncoated tablet, 112 54093011000036105 Aspirin (Amcal) 100 mg uncoated tablet 53388011000036103 Aspirin (Amcal) 53388011000036103 Aspirin (Amcal) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +60877011000036109 Aspirin (Amcal) 100 mg uncoated tablet, 112, blister pack 164178 56831011000036109 Aspirin (Amcal) 100 mg uncoated tablet, 112 54093011000036105 Aspirin (Amcal) 100 mg uncoated tablet 53388011000036103 Aspirin (Amcal) 53388011000036103 Aspirin (Amcal) 27845011000036102 aspirin 100 mg tablet, 112 23173011000036104 aspirin 100 mg tablet 21719011000036107 aspirin +934571000168101 Obizur (10 x 500 units vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 236475 934561000168107 Obizur (10 x 500 units vials, 10 x 1 mL inert diluent syringes), 1 pack 932441000168100 Obizur (inert substance) diluent, 1 mL syringe 932401000168102 Obizur 932401000168102 Obizur 934551000168105 susoctocog alfa 500 units injection [10 vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +934571000168101 Obizur (10 x 500 units vials, 10 x 1 mL inert diluent syringes), 1 pack, composite pack 236475 934561000168107 Obizur (10 x 500 units vials, 10 x 1 mL inert diluent syringes), 1 pack 932431000168109 Obizur (susoctocog alfa 500 units) powder for injection, 500 units vial 932401000168102 Obizur 932401000168102 Obizur 934551000168105 susoctocog alfa 500 units injection [10 vials] (&) inert substance diluent [10 x 1 mL syringes], 1 pack 932421000168106 susoctocog alfa 500 units injection, vial 932411000168104 susoctocog alfa +750921000168108 Nicotinell Step-2 14 mg/24 hours patch, 21, sachet 42625 750911000168101 Nicotinell Step-2 14 mg/24 hours patch, 21 925703011000036107 Nicotinell Step-2 14 mg/24 hours patch 46531000168100 Nicotinell Step-2 46531000168100 Nicotinell Step-2 63759011000036103 nicotine 14 mg/24 hours patch, 21 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +782511000168100 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 50 vials 209478 782501000168103 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 50 vials 782421000168108 Thiopental Sodium (Omegapharm) 470 mg powder for injection, 470 mg vial 782401000168104 Thiopental Sodium (Omegapharm) 782401000168104 Thiopental Sodium (Omegapharm) 782491000168105 thiopental sodium 470 mg injection, 50 vials 782411000168101 thiopental sodium 470 mg injection, vial 44938011000036109 thiopental +52173011000036104 Salicylic Acid BP (extemporaneous) 2% ointment, 100 g, screw cap jar 52077011000036100 Salicylic Acid BP (extemporaneous) 2% ointment, 100 g 51978011000036107 Salicylic Acid BP (extemporaneous) 2% ointment 62511000168101 Salicylic Acid BP (extemporaneous) 62511000168101 Salicylic Acid BP (extemporaneous) 52322011000036104 salicylic acid 2% ointment, 100 g 52254011000036103 salicylic acid 2% ointment 52232011000036106 salicylic acid +933247291000036109 Saizen 20 mg/2.5 mL injection solution, 5 x 2.5 mL cartridges 166479 933244011000036101 Saizen 20 mg/2.5 mL injection solution, 5 x 2.5 mL cartridges 933241611000036109 Saizen 20 mg/2.5 mL injection solution, 2.5 mL cartridge 35491000168107 Saizen 35491000168107 Saizen 933244021000036108 somatropin 20 mg/2.5 mL injection, 5 x 2.5 mL cartridges 933241621000036102 somatropin 20 mg/2.5 mL injection, cartridge 21295011000036100 somatropin +920111000168107 Cilopam 40 mg film-coated tablet, 500, bottle 158867 920101000168109 Cilopam 40 mg film-coated tablet, 500 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202891000036100 citalopram 40 mg tablet, 500 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +44180011000036102 Anzemet 25 mg/1.25 mL injection solution, 1.25 mL ampoule 55061 41656011000036101 Anzemet 25 mg/1.25 mL injection solution, 1.25 mL ampoule 40126011000036108 Anzemet 25 mg/1.25 mL injection solution, 1.25 mL ampoule 4210011000036102 Anzemet 4210011000036102 Anzemet 46474011000036106 dolasetron mesilate monohydrate 25 mg/1.25 mL injection, 1.25 mL ampoule 45174011000036107 dolasetron mesilate monohydrate 25 mg/1.25 mL injection, ampoule 21471011000036108 dolasetron +1061211000168105 Atorvator 10 mg film-coated tablet, 30, bottle 179854 1061201000168107 Atorvator 10 mg film-coated tablet, 30 1061171000168108 Atorvator 10 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +20064011000036101 Seretide Accuhaler 500/50 powder for inhalation, 60 actuations, blister pack 70174 13294011000036109 Seretide Accuhaler 500/50 powder for inhalation, 60 actuations 6578011000036109 Seretide Accuhaler 500/50 powder for inhalation, actuation 34681000168106 Seretide Accuhaler 500/50 34681000168106 Seretide Accuhaler 500/50 27673011000036105 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, 60 actuations 23010011000036109 fluticasone propionate 500 microgram/actuation + salmeterol 50 microgram/actuation powder for inhalation, actuation 861471000168104 fluticasone propionate + salmeterol +704051000168103 Nexole 40 mg enteric tablet, 30, blister pack 210853 704041000168100 Nexole 40 mg enteric tablet, 30 704031000168109 Nexole 40 mg enteric tablet 704021000168106 Nexole 704021000168106 Nexole 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +925284011000036103 Votrient 200 mg film-coated tablet, 90, bottle 161282 924821011000036107 Votrient 200 mg film-coated tablet, 90 924513011000036103 Votrient 200 mg film-coated tablet 924364011000036100 Votrient 924364011000036100 Votrient 925426011000036104 pazopanib 200 mg tablet, 90 925382011000036100 pazopanib 200 mg tablet 925371011000036103 pazopanib +926760011000036103 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 18, blister pack 151473 85762011000036106 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet, 18 85379011000036108 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) uncoated tablet 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 31801000168100 Paracetamol 500 mg and Codeine Phosphate 10 mg Gold Plus (Herron) 86452011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 18 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +900571000168103 Amoxycillin (WT) 250 mg hard capsule, 30, blister pack 198123 900561000168109 Amoxycillin (WT) 250 mg hard capsule, 30 900521000168104 Amoxycillin (WT) 250 mg hard capsule 900511000168106 Amoxycillin (WT) 900511000168106 Amoxycillin (WT) 900551000168107 amoxicillin 250 mg capsule, 30 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +47201000036101 Ceptolate 250 mg hard capsule, 50, blister pack 165766 46671000036105 Ceptolate 250 mg hard capsule, 50 1591000036105 Ceptolate 250 mg hard capsule 521000036106 Ceptolate 521000036106 Ceptolate 46681000036107 mycophenolate mofetil 250 mg capsule, 50 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +785481000168103 Ordine 40 mg/mL oral liquid solution, 200 mL, bottle 10783 785471000168101 Ordine 40 mg/mL oral liquid solution, 200 mL 785451000168105 Ordine 40 mg/mL oral liquid solution 2912011000036108 Ordine 2912011000036108 Ordine 785461000168107 morphine hydrochloride trihydrate 40 mg/mL oral liquid, 200 mL 785441000168108 morphine hydrochloride trihydrate 40 mg/mL oral liquid 21252011000036100 morphine +650011000168105 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 14, blister pack 202106 650001000168107 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 14 649971000168106 Pritor/Amlodipine 40 mg/5 mg multilayer tablet 649951000168102 Pritor/Amlodipine 40 mg/5 mg 649951000168102 Pritor/Amlodipine 40 mg/5 mg 932433011000036108 telmisartan 40 mg + amlodipine 5 mg tablet, 14 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +43606011000036103 Coralan 7.5 mg film-coated tablet, 14, blister pack 107301 41153011000036108 Coralan 7.5 mg film-coated tablet, 14 39965011000036105 Coralan 7.5 mg film-coated tablet 39619011000036107 Coralan 39619011000036107 Coralan 46124011000036106 ivabradine 7.5 mg tablet, 14 44999011000036109 ivabradine 7.5 mg tablet 44871011000036108 ivabradine +18539011000036108 Sprycel 20 mg film-coated tablet, 60, bottle 125557 11805011000036107 Sprycel 20 mg film-coated tablet, 60 5414011000036100 Sprycel 20 mg film-coated tablet 3453011000036103 Sprycel 3453011000036103 Sprycel 26775011000036102 dasatinib 20 mg tablet, 60 22162011000036109 dasatinib 20 mg tablet 21627011000036104 dasatinib +920071000168100 Cilopam 40 mg film-coated tablet, 100, bottle 158867 920061000168106 Cilopam 40 mg film-coated tablet, 100 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202801000036108 citalopram 40 mg tablet, 100 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +34662011000036102 Fluconazole (DBL) 100 mg hard capsule, 28, strip pack 125201 11620011000036101 Fluconazole (DBL) 100 mg hard capsule, 28 4753011000036108 Fluconazole (DBL) 100 mg hard capsule 4135011000036100 Fluconazole (DBL) 4135011000036100 Fluconazole (DBL) 28191011000036106 fluconazole 100 mg capsule, 28 23502011000036108 fluconazole 100 mg capsule 21365011000036105 fluconazole +61545011000036109 Pain (Chemists' Own) uncoated tablet, 100, bottle 93828 57471011000036102 Pain (Chemists' Own) uncoated tablet, 100 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 52903011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 100 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +154251000036102 Atozet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack, blister pack 196152 150471000036100 Atozet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack 7246011000036103 Ezetrol 10 mg tablet 153961000036108 Atozet Composite Pack 3589011000036101 Ezetrol 150481000036103 ezetimibe 10 mg tablet [30] (&) atorvastatin 40 mg tablet [30], 1 pack 23362011000036105 ezetimibe 10 mg tablet 21930011000036101 ezetimibe +154251000036102 Atozet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack, blister pack 196152 150471000036100 Atozet Composite Pack (30 x 10 mg tablets, 30 x 40 mg tablets), 1 pack 148311000036101 Atorvastatin (MSD) 40 mg film-coated tablet 153961000036108 Atozet Composite Pack 147851000036108 Atorvastatin (MSD) 150481000036103 ezetimibe 10 mg tablet [30] (&) atorvastatin 40 mg tablet [30], 1 pack 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +931656011000036103 Twynsta 40/10 mg multilayer tablet, 30, blister pack 166264 930816011000036107 Twynsta 40/10 mg multilayer tablet, 30 930058011000036102 Twynsta 40/10 mg multilayer tablet 23641000168100 Twynsta 40/10 mg 23641000168100 Twynsta 40/10 mg 932429011000036109 telmisartan 40 mg + amlodipine 10 mg tablet, 30 931857011000036106 telmisartan 40 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +678111000168105 Xtandi 40 mg soft capsule, 112, blister pack 210494 678101000168107 Xtandi 40 mg soft capsule, 112 678081000168100 Xtandi 40 mg soft capsule 678051000168107 Xtandi 678051000168107 Xtandi 678091000168102 enzalutamide 40 mg capsule, 112 678071000168103 enzalutamide 40 mg capsule 678061000168109 enzalutamide +700029781000036100 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12351011000036103 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 5015011000036108 Levlen ED (inert substance) sugar coated tablet 700023311000036106 Levlen ED 700023311000036106 Levlen ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +700029781000036100 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 12351011000036103 Levlen ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 5191011000036101 Levlen ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700023311000036106 Levlen ED 700023311000036106 Levlen ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +86115011000036105 Azarga eye drops, 5 mL, bottle 156500 85714011000036101 Azarga eye drops, 5 mL 85349011000036107 Azarga eye drops 85253011000036100 Azarga 85253011000036100 Azarga 86441011000036102 brinzolamide 1% + timolol 0.5% eye drops, 5 mL 86224011000036101 brinzolamide 1% + timolol 0.5% eye drops 86201011000036109 brinzolamide + timolol +38701000036109 Escital 15 mg film-coated tablet, 28, blister pack 165866 35071000036109 Escital 15 mg film-coated tablet, 28 32381000036101 Escital 15 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +68707011000036101 Pinetarsol 2.3% bath oil, 2.5 L, bottle 10632 66536011000036104 Pinetarsol 2.3% bath oil, 2.5 L 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71268011000036102 tar 2.3% bath oil, 2.5 L 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +781101000168104 Fentanyl (Aspen) 250 microgram/5 mL injection solution, 10 x 5 mL ampoules 170930 781091000168109 Fentanyl (Aspen) 250 microgram/5 mL injection solution, 10 x 5 mL ampoules 781051000168104 Fentanyl (Aspen) 250 microgram/5 mL injection solution, 5 mL ampoule 123941000036106 Fentanyl (Aspen) 123941000036106 Fentanyl (Aspen) 752411000168108 fentanyl 250 microgram/5 mL injection, 10 x 5 mL ampoules 752391000168108 fentanyl 250 microgram/5 mL injection, ampoule 21258011000036102 fentanyl +923798011000036108 Frusemide (Claris) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 155969 923358011000036103 Frusemide (Claris) 50 mg/5 mL injection solution, 5 x 5 mL ampoules 923033011000036108 Frusemide (Claris) 50 mg/5 mL injection solution, 5 mL ampoule 80114011000036101 Frusemide (Claris) 80114011000036101 Frusemide (Claris) 924156011000036107 furosemide (frusemide) 50 mg/5 mL injection, 5 x 5 mL ampoules 923971011000036103 furosemide (frusemide) 50 mg/5 mL injection, ampoule 21329011000036103 furosemide (frusemide) +719131000168108 Clopidogrel/Aspirin 75/100 (Sandoz) uncoated tablet, 30, blister pack 219057 719121000168105 Clopidogrel/Aspirin 75/100 (Sandoz) uncoated tablet, 30 719111000168103 Clopidogrel/Aspirin 75/100 (Sandoz) uncoated tablet 719101000168101 Clopidogrel/Aspirin 75/100 (Sandoz) 719101000168101 Clopidogrel/Aspirin 75/100 (Sandoz) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +19173011000036102 Valpro 500 mg enteric tablet, 100, blister pack 46380 12471011000036105 Valpro 500 mg enteric tablet, 100 4635011000036101 Valpro 500 mg enteric tablet 4239011000036101 Valpro 4239011000036101 Valpro 27140011000036102 valproate sodium 500 mg enteric tablet, 100 22505011000036108 valproate sodium 500 mg enteric tablet 21225011000036107 valproate +650051000168106 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 30, blister pack 202106 650041000168109 Pritor/Amlodipine 40 mg/5 mg multilayer tablet, 30 649971000168106 Pritor/Amlodipine 40 mg/5 mg multilayer tablet 649951000168102 Pritor/Amlodipine 40 mg/5 mg 649951000168102 Pritor/Amlodipine 40 mg/5 mg 932435011000036109 telmisartan 40 mg + amlodipine 5 mg tablet, 30 931858011000036107 telmisartan 40 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +86064011000036102 Fleet Ready-to-Use enema, 118 mL, bottle 146795 85636011000036108 Fleet Ready-to-Use enema, 118 mL 85310011000036105 Fleet Ready-to-Use enema, 118 mL 85249011000036100 Fleet Ready-to-Use 85249011000036100 Fleet Ready-to-Use 86412011000036101 monobasic sodium phosphate monohydrate 19 g/118 mL + dibasic sodium phosphate heptahydrate 7 g/118 mL enema, 118 mL 86212011000036100 monobasic sodium phosphate monohydrate 19 g/118 mL + dibasic sodium phosphate heptahydrate 7 g/118 mL enema 86200011000036102 monobasic sodium phosphate monohydrate + dibasic sodium phosphate heptahydrate +931489011000036101 Topiramate (Lupin) 200 mg film-coated tablet, 60, blister pack 155192 928309011000036101 Topiramate (Lupin) 200 mg film-coated tablet, 60 927938011000036103 Topiramate (Lupin) 200 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +921954011000036106 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 100 mL vial 47069 921512011000036102 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 100 mL vial 921050011000036105 Isovue-300 612 mg (iodine 300 mg)/mL injection solution, 100 mL vial 5231000168102 Isovue-300 5231000168102 Isovue-300 922634011000036109 iopamidol 612 mg (iodine 300 mg)/mL injection, 100 mL vial 922122011000036104 iopamidol 612 mg (iodine 300 mg)/mL injection, 100 mL vial 77457011000036105 iopamidol +917901000168104 Zinnat 125 mg film-coated tablet, 14, blister pack 47620 917891000168103 Zinnat 125 mg film-coated tablet, 14 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917881000168101 cefuroxime 125 mg tablet, 14 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +669451000168103 Citalopram (AN) 40 mg film-coated tablet, 30, bottle 171339 669441000168100 Citalopram (AN) 40 mg film-coated tablet, 30 662271000168100 Citalopram (AN) 40 mg film-coated tablet 662261000168106 Citalopram (AN) 662261000168106 Citalopram (AN) 933201991000036101 citalopram 40 mg tablet, 30 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +931553011000036103 Danset 8 mg film-coated tablet, 6, blister pack 163435 930714011000036102 Danset 8 mg film-coated tablet, 6 930025011000036107 Danset 8 mg film-coated tablet 12931000168101 Danset 12931000168101 Danset 927340011000036105 ondansetron 8 mg tablet, 6 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +857411000168108 Beconase Aq 50 microgram/actuation nasal spray, 100 actuations, pump pack 12483 857401000168105 Beconase Aq 50 microgram/actuation nasal spray, 100 actuations 857391000168108 Beconase Aq 50 microgram/actuation nasal spray, actuation 857381000168105 Beconase Aq 857381000168105 Beconase Aq 75482011000036100 beclometasone dipropionate 50 microgram/actuation nasal spray, 100 actuations 75087011000036107 beclometasone dipropionate 50 microgram/actuation nasal spray, actuation 21435011000036108 beclometasone +794071000168105 Tacrolimus (Sandoz) 750 microgram hard capsule, 10, blister pack 229738 794061000168104 Tacrolimus (Sandoz) 750 microgram hard capsule, 10 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794051000168101 tacrolimus 750 microgram capsule, 10 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +69187011000036107 Tinaderm 1% dusting powder, 20 g, bottle 18222 66987011000036102 Tinaderm 1% dusting powder, 20 g 65525011000036107 Tinaderm 1% dusting powder 18701000168107 Tinaderm 18701000168107 Tinaderm 71560011000036106 tolnaftate 1% dusting powder, 20 g 70066011000036101 tolnaftate 1% dusting powder 21680011000036105 tolnaftate +853801000168104 Alphastat 20 mg film-coated tablet, 30, bottle 187393 853771000168101 Alphastat 20 mg film-coated tablet, 30 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +853801000168104 Alphastat 20 mg film-coated tablet, 30, bottle 212162 853771000168101 Alphastat 20 mg film-coated tablet, 30 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +85651000036104 Dutran 100 microgram/hour patch, 5, sachet 190793 84781000036103 Dutran 100 microgram/hour patch, 5 84061000036106 Dutran 100 microgram/hour patch 83931000036102 Dutran 83931000036102 Dutran 26652011000036104 fentanyl 100 microgram/hour patch, 5 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +18385011000036104 Glucomet 850 mg film-coated tablet, 60, blister pack 115137 11484011000036103 Glucomet 850 mg film-coated tablet, 60 4612011000036101 Glucomet 850 mg film-coated tablet 4140011000036108 Glucomet 4140011000036108 Glucomet 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +691041000168107 Perindopril Erbumine (Blooms The Chemist) 4 mg uncoated tablet, 30, blister pack 151915 691031000168103 Perindopril Erbumine (Blooms The Chemist) 4 mg uncoated tablet, 30 691021000168101 Perindopril Erbumine (Blooms The Chemist) 4 mg uncoated tablet 690951000168104 Perindopril Erbumine (Blooms The Chemist) 690951000168104 Perindopril Erbumine (Blooms The Chemist) 26807011000036103 perindopril erbumine 4 mg tablet, 30 22191011000036101 perindopril erbumine 4 mg tablet 21362011000036102 perindopril +1061091000168108 Olanzapine ODT (Auro) 15 mg orally disintegrating tablet, 28, blister pack 212900 1061081000168105 Olanzapine ODT (Auro) 15 mg orally disintegrating tablet, 28 1061041000168100 Olanzapine ODT (Auro) 15 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 68741000036101 olanzapine 15 mg orally disintegrating tablet, 28 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +1058951000168104 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 100, bottle 234520 1058941000168101 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 100 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911121000168100 rosuvastatin 10 mg tablet, 100 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1001591000168102 Naloxone Min-I-Jet (UCB) 2 mg/5 mL injection solution, 5 mL syringe 48535 1001581000168100 Naloxone Min-I-Jet (UCB) 2 mg/5 mL injection solution, 5 mL syringe 1001571000168103 Naloxone Min-I-Jet (UCB) 2 mg/5 mL injection solution, 5 mL syringe 1001481000168104 Naloxone Min-I-Jet (UCB) 1001481000168104 Naloxone Min-I-Jet (UCB) 33805011000036100 naloxone hydrochloride 2 mg/5 mL injection, 5 mL syringe 33677011000036108 naloxone hydrochloride 2 mg/5 mL injection, syringe 33627011000036107 naloxone +918061000168100 Angiomax 100 mg powder for injection, 10 vials 102154 918051000168102 Angiomax 100 mg powder for injection, 10 vials 918001000168101 Angiomax 100 mg powder for injection, 100 mg vial 3849011000036107 Angiomax 3849011000036107 Angiomax 918041000168104 bivalirudin 100 mg injection, 10 vials 917991000168105 bivalirudin 100 mg injection, vial 21763011000036108 bivalirudin +712551000168102 Flucloxacillin (Apo) 500 mg capsule, 24, blister pack 226374 712541000168104 Flucloxacillin (Apo) 500 mg capsule, 24 712531000168108 Flucloxacillin (Apo) 500 mg capsule 712491000168108 Flucloxacillin (Apo) 712491000168108 Flucloxacillin (Apo) 27677011000036101 flucloxacillin 500 mg capsule, 24 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +1104391000168102 Delucon 25 mg film-coated tablet, 20, blister pack 172833 1104381000168100 Delucon 25 mg film-coated tablet, 20 1651000036102 Delucon 25 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1033741000168106 Atomoxetine (GXP) 18 mg hard capsule, 56, blister pack 234838 1033731000168102 Atomoxetine (GXP) 18 mg hard capsule, 56 1033661000168102 Atomoxetine (GXP) 18 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830391000168106 atomoxetine 18 mg capsule, 56 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +933247331000036101 Risperidone (Pfizer) 500 microgram film-coated tablet, 60, blister pack 166682 933244061000036104 Risperidone (Pfizer) 500 microgram film-coated tablet, 60 933241651000036108 Risperidone (Pfizer) 500 microgram film-coated tablet 933240791000036103 Risperidone (Pfizer) 933240791000036103 Risperidone (Pfizer) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +1052511000168106 Palexia SR 150 mg modified release tablet, 30, blister pack 165347 1052501000168108 Palexia SR 150 mg modified release tablet, 30 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052491000168101 tapentadol 150 mg modified release tablet, 30 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +782631000168109 Eumovate 0.05% cream, 30 g, tube 178288 782621000168106 Eumovate 0.05% cream, 30 g 782561000168102 Eumovate 0.05% cream 782551000168104 Eumovate 782551000168104 Eumovate 63150011000036104 clobetasone butyrate 0.05% cream, 30 g 61871011000036109 clobetasone butyrate 0.05% cream 61820011000036103 clobetasone +883301000168100 Betahistavert 16 mg uncoated tablet, 25, blister pack 227606 883291000168101 Betahistavert 16 mg uncoated tablet, 25 883261000168108 Betahistavert 16 mg uncoated tablet 883251000168106 Betahistavert 883251000168106 Betahistavert 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +925267011000036107 Venlafaxine SR (SCP) 75 mg modified release capsule, 28, blister pack 160297 924804011000036104 Venlafaxine SR (SCP) 75 mg modified release capsule, 28 924498011000036101 Venlafaxine SR (SCP) 75 mg modified release capsule 32511000168107 Venlafaxine SR (SCP) 32511000168107 Venlafaxine SR (SCP) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +649851000168105 Rosuvastatin (DRLA) 5 mg film-coated tablet, 30, blister pack 210836 649841000168108 Rosuvastatin (DRLA) 5 mg film-coated tablet, 30 649831000168104 Rosuvastatin (DRLA) 5 mg film-coated tablet 649571000168104 Rosuvastatin (DRLA) 649571000168104 Rosuvastatin (DRLA) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +69024011000036100 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 3 sachets 140597 66826011000036103 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 3 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71441011000036103 paracetamol 1 g powder for oral liquid, 3 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +933247201000036101 Finpro 5 mg film-coated tablet, 28, blister pack 161627 933243471000036104 Finpro 5 mg film-coated tablet, 28 933241501000036108 Finpro 5 mg film-coated tablet 933240901000036108 Finpro 933240901000036108 Finpro 933243481000036102 finasteride 5 mg tablet, 28 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +19327011000036100 Clozaril 25 mg uncoated tablet, 100, blister pack 50510 13751011000036108 Clozaril 25 mg uncoated tablet, 100 7036011000036106 Clozaril 25 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 28135011000036104 clozapine 25 mg tablet, 100 23444011000036102 clozapine 25 mg tablet 21222011000036104 clozapine +60003011000036105 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet, 24, blister pack 123048 55965011000036106 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet, 24 53741011000036104 Sinutab PE Sinus, Allergy and Pain Relief film-coated tablet 53519011000036107 Sinutab PE Sinus, Allergy and Pain Relief 53519011000036107 Sinutab PE Sinus, Allergy and Pain Relief 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +787451000168103 Arizole 10 mg uncoated tablet, 60, blister pack 198179 787441000168100 Arizole 10 mg uncoated tablet, 60 787341000168107 Arizole 10 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787431000168109 aripiprazole 10 mg tablet, 60 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +84350011000036109 Loratadine (Chemmart) 10 mg uncoated tablet, 10, blister pack 160830 84043011000036100 Loratadine (Chemmart) 10 mg uncoated tablet, 10 83667011000036108 Loratadine (Chemmart) 10 mg uncoated tablet 83581011000036108 Loratadine (Chemmart) 83581011000036108 Loratadine (Chemmart) 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +85019011000036103 Frusemide (Claris) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 148003 84890011000036101 Frusemide (Claris) 20 mg/2 mL injection solution, 5 x 2 mL ampoules 80188011000036106 Frusemide (Claris) 20 mg/2 mL injection solution, 2 mL ampoule 80114011000036101 Frusemide (Claris) 80114011000036101 Frusemide (Claris) 26762011000036103 furosemide (frusemide) 20 mg/2 mL injection, 5 x 2 mL ampoules 22149011000036106 furosemide (frusemide) 20 mg/2 mL injection, ampoule 21329011000036103 furosemide (frusemide) +60517011000036100 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 30 mL, bottle 151334 56475011000036101 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 30 mL 53933011000036105 Nurofen for Children 1 to 5 Years orange 100 mg/5 mL oral liquid suspension, 5 mL 34281000168109 Nurofen for Children 1 to 5 Years 34281000168109 Nurofen for Children 1 to 5 Years 63641011000036107 ibuprofen 100 mg/5 mL oral liquid, 30 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +686771000168108 Abilify Maintena (1 x 400 mg vial, 1 x 2 mL diluent vial), 1 pack 211150 686761000168102 Abilify Maintena (1 x 400 mg vial, 1 x 2 mL diluent vial), 1 pack 686731000168105 Abilify Maintena (aripiprazole 400 mg) modified release injection, 400 mg vial 686711000168100 Abilify Maintena 686711000168100 Abilify Maintena 686751000168104 aripiprazole 400 mg modified release injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 686721000168107 aripiprazole 400 mg modified release injection, vial 21675011000036108 aripiprazole +686771000168108 Abilify Maintena (1 x 400 mg vial, 1 x 2 mL diluent vial), 1 pack 211150 686761000168102 Abilify Maintena (1 x 400 mg vial, 1 x 2 mL diluent vial), 1 pack 686741000168101 Abilify Maintena (inert substance) diluent, 2 mL vial 686711000168100 Abilify Maintena 686711000168100 Abilify Maintena 686751000168104 aripiprazole 400 mg modified release injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 635831000168101 inert substance diluent, 2 mL vial 21220011000036103 inert substance +920231000168107 Citalopram (APL) 40 mg film-coated tablet, 28, blister pack 184689 920221000168109 Citalopram (APL) 40 mg film-coated tablet, 28 920211000168102 Citalopram (APL) 40 mg film-coated tablet 920141000168106 Citalopram (APL) 920141000168106 Citalopram (APL) 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +784801000168105 Ondansetron (GH) 4 mg film-coated tablet, 4, blister pack 231645 784791000168109 Ondansetron (GH) 4 mg film-coated tablet, 4 784781000168106 Ondansetron (GH) 4 mg film-coated tablet 784771000168108 Ondansetron (GH) 784771000168108 Ondansetron (GH) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +887561000168103 Cansartan HCTZ 32/25 uncoated tablet, 30, blister pack 253374 881691000168103 Cansartan HCTZ 32/25 uncoated tablet, 30 881681000168101 Cansartan HCTZ 32/25 uncoated tablet 881671000168104 Cansartan HCTZ 32/25 881671000168104 Cansartan HCTZ 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +866181000168102 Paracetamol Soluble (Pharmacy Care) 500 mg effervescent tablet, 20, strip pack 220688 866171000168100 Paracetamol Soluble (Pharmacy Care) 500 mg effervescent tablet, 20 866161000168106 Paracetamol Soluble (Pharmacy Care) 500 mg effervescent tablet 866151000168109 Paracetamol Soluble (Pharmacy Care) 866151000168109 Paracetamol Soluble (Pharmacy Care) 83211000036104 paracetamol 500 mg effervescent tablet, 20 83101000036106 paracetamol 500 mg effervescent tablet 21433011000036107 paracetamol +787491000168108 Arizole 10 mg uncoated tablet, 100, bottle 198197 787481000168105 Arizole 10 mg uncoated tablet, 100 787341000168107 Arizole 10 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1038091000168109 Intuniv 3 mg modified release tablet, 28, blister pack 275314 1038081000168106 Intuniv 3 mg modified release tablet, 28 1038061000168102 Intuniv 3 mg modified release tablet 1037851000168105 Intuniv 1037851000168105 Intuniv 1038071000168108 guanfacine 3 mg modified release tablet, 28 1038051000168104 guanfacine 3 mg modified release tablet 1037871000168101 guanfacine +874631000168107 Beezole 40 mg enteric tablet, 56, blister pack 205829 874621000168109 Beezole 40 mg enteric tablet, 56 874551000168102 Beezole 40 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 774891000168107 esomeprazole 40 mg enteric tablet, 56 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1012371000168102 Irbesartan (Apotex) 75 mg film-coated tablet, 98, blister pack 169798 1012361000168108 Irbesartan (Apotex) 75 mg film-coated tablet, 98 1012181000168101 Irbesartan (Apotex) 75 mg film-coated tablet 1011831000168100 Irbesartan (Apotex) 1011831000168100 Irbesartan (Apotex) 777301000168101 irbesartan 75 mg tablet, 98 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +44651011000036100 Ceftazidime (Sandoz) 1 g powder for injection, 5 vials 90915 42103011000036101 Ceftazidime (Sandoz) 1 g powder for injection, 5 vials 40352011000036104 Ceftazidime (Sandoz) 1 g powder for injection, vial 39747011000036102 Ceftazidime (Sandoz) 39747011000036102 Ceftazidime (Sandoz) 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +43623011000036102 Fosinopril Sodium (GenRx) 10 mg uncoated tablet, 30, bottle 119860 11630011000036103 Fosinopril Sodium (GenRx) 10 mg uncoated tablet, 30 4936011000036109 Fosinopril Sodium (GenRx) 10 mg uncoated tablet 2930011000036104 Fosinopril Sodium (GenRx) 2930011000036104 Fosinopril Sodium (GenRx) 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +18556011000036103 Anginine 600 microgram sublingual tablet, 100, bottle 11086 11418011000036107 Anginine 600 microgram sublingual tablet, 100 5180011000036107 Anginine 600 microgram sublingual tablet 3935011000036104 Anginine 3935011000036104 Anginine 28141011000036100 glyceryl trinitrate 600 microgram sublingual tablet, 100 23450011000036109 glyceryl trinitrate 600 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +18556011000036103 Anginine 600 microgram sublingual tablet, 100, bottle 227783 11418011000036107 Anginine 600 microgram sublingual tablet, 100 5180011000036107 Anginine 600 microgram sublingual tablet 3935011000036104 Anginine 3935011000036104 Anginine 28141011000036100 glyceryl trinitrate 600 microgram sublingual tablet, 100 23450011000036109 glyceryl trinitrate 600 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +1018671000168109 Arthro-Aid One a Day 1.5 g film-coated tablet, 60, bottle 148208 1018661000168103 Arthro-Aid One a Day 1.5 g film-coated tablet, 60 1018641000168102 Arthro-Aid One a Day 1.5 g film-coated tablet 1018621000168108 Arthro-Aid One a Day 1018621000168108 Arthro-Aid One a Day 1018651000168100 glucosamine hydrochloride 1.5 g tablet, 60 1018631000168106 glucosamine hydrochloride 1.5 g tablet 69813011000036107 glucosamine +684691000168109 Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials 22923 684681000168106 Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials 684661000168102 Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 mL vial 65160011000036101 Calcium Gluconate (Phebra) 65160011000036101 Calcium Gluconate (Phebra) 684671000168108 calcium gluconate monohydrate 953 mg/10 mL injection, 10 x 10 mL vials 684651000168104 calcium gluconate monohydrate 953 mg/10 mL injection, vial 69763011000036108 calcium gluconate monohydrate +19130011000036107 Tamosin 20 mg uncoated tablet, 60, bottle 43527 12433011000036109 Tamosin 20 mg uncoated tablet, 60 4974011000036104 Tamosin 20 mg uncoated tablet 3115011000036105 Tamosin 3115011000036105 Tamosin 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +933213001000036108 Pantoprazole (IPCA) 40 mg enteric tablet, 30, blister pack 158199 933202651000036105 Pantoprazole (IPCA) 40 mg enteric tablet, 30 933195301000036105 Pantoprazole (IPCA) 40 mg enteric tablet 933193271000036106 Pantoprazole (IPCA) 933193271000036106 Pantoprazole (IPCA) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1102381000168108 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet, 30, blister pack 286105 1102371000168105 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet, 30 1102281000168104 Olmesartan HCTZ 40/25 (Pharmacor) film-coated tablet 1102201000168107 Olmesartan HCTZ 40/25 (Pharmacor) 1102201000168107 Olmesartan HCTZ 40/25 (Pharmacor) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +17905011000036103 Ulcaid 150 mg film-coated tablet, 60, blister pack 116927 11557011000036108 Ulcaid 150 mg film-coated tablet, 60 5989011000036104 Ulcaid 150 mg film-coated tablet 4401011000036108 Ulcaid 4401011000036108 Ulcaid 28217011000036100 ranitidine 150 mg tablet, 60 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +695291000168109 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles 48507 695281000168106 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles 695261000168102 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 100 mL bottle 5191000168106 Ultravist-300 5191000168106 Ultravist-300 695271000168108 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 100 mL bottles 695251000168104 iopromide 623 mg (iodine 300 mg)/mL injection, 100 mL bottle 77425011000036101 iopromide +105021000036105 Irbesartan (Winthrop) 150 mg film-coated tablet, 30, blister pack 196948 102191000036102 Irbesartan (Winthrop) 150 mg film-coated tablet, 30 99101000036108 Irbesartan (Winthrop) 150 mg film-coated tablet 97591000036103 Irbesartan (Winthrop) 97591000036103 Irbesartan (Winthrop) 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +652061000168109 Quetia 25 mg film-coated tablet, 20, blister pack 204153 652051000168107 Quetia 25 mg film-coated tablet, 20 652031000168101 Quetia 25 mg film-coated tablet 651291000168100 Quetia 651291000168100 Quetia 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +105041000036102 Irbesartan HCT 150/12.5 (Winthrop) film-coated tablet, 30, blister pack 196956 102211000036103 Irbesartan HCT 150/12.5 (Winthrop) film-coated tablet, 30 98161000036103 Irbesartan HCT 150/12.5 (Winthrop) film-coated tablet 48201000168109 Irbesartan HCT 150/12.5 (Winthrop) 48201000168109 Irbesartan HCT 150/12.5 (Winthrop) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +933247241000036103 Saizen 6 mg/1.03 mL injection solution, 1.03 mL cartridge 166475 933243911000036104 Saizen 6 mg/1.03 mL injection solution, 1.03 mL cartridge 933241571000036104 Saizen 6 mg/1.03 mL injection solution, 1.03 mL cartridge 35491000168107 Saizen 35491000168107 Saizen 933243921000036106 somatropin 6 mg/1.03 mL injection, 1.03 mL cartridge 933241581000036102 somatropin 6 mg/1.03 mL injection, cartridge 21295011000036100 somatropin +19036011000036104 Genox 20 mg uncoated tablet, 60, blister pack 40065 12341011000036101 Genox 20 mg uncoated tablet, 60 5778011000036107 Genox 20 mg uncoated tablet 3564011000036100 Genox 3564011000036100 Genox 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +853761000168107 Alphastat 20 mg film-coated tablet, 7, blister pack 212161 853751000168105 Alphastat 20 mg film-coated tablet, 7 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +853761000168107 Alphastat 20 mg film-coated tablet, 7, blister pack 187388 853751000168105 Alphastat 20 mg film-coated tablet, 7 853741000168108 Alphastat 20 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +1003691000168104 Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60, blister pack 159266 1003681000168102 Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60 1003671000168100 Levetiracetam 1000 (SCP) 1 g film-coated tablet 1003661000168106 Levetiracetam 1000 (SCP) 1003661000168106 Levetiracetam 1000 (SCP) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +37532011000036106 Fansidar uncoated tablet, 9, strip pack 13724 36800011000036103 Fansidar uncoated tablet, 9 36032011000036108 Fansidar uncoated tablet 35938011000036102 Fansidar 35938011000036102 Fansidar 38697011000036103 pyrimethamine 25 mg + sulfadoxine 500 mg tablet, 9 37932011000036104 pyrimethamine 25 mg + sulfadoxine 500 mg tablet 37797011000036103 pyrimethamine + sulfadoxine +21109011000036104 Pentasa 1 g/100 mL enema, 7 x 100 mL, bottle 98033 14252011000036106 Pentasa 1 g/100 mL enema, 7 x 100 mL 7538011000036107 Pentasa 1 g/100 mL enema, 100 mL 3593011000036100 Pentasa 3593011000036100 Pentasa 28251011000036100 mesalazine 1 g/100 mL enema, 7 x 100 mL 23565011000036104 mesalazine 1 g/100 mL enema 21351011000036101 mesalazine +923890011000036108 Nicorette Icy Mint 2 mg chewing gum, 105, blister pack 165904 923434011000036104 Nicorette Icy Mint 2 mg chewing gum, 105 923081011000036101 Nicorette Icy Mint 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 87234011000036103 nicotine 2 mg gum, 105 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +780981000168102 Oxycodone MR (GenRx) 20 mg modified release tablet, 20, blister pack 214495 780971000168100 Oxycodone MR (GenRx) 20 mg modified release tablet, 20 780961000168106 Oxycodone MR (GenRx) 20 mg modified release tablet 779621000168105 Oxycodone MR (GenRx) 779621000168105 Oxycodone MR (GenRx) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +926789011000036107 Cefepime (DBL) 2 g powder for injection, 1 vial 161412 926185011000036100 Cefepime (DBL) 2 g powder for injection, 1 vial 925663011000036100 Cefepime (DBL) 2 g powder for injection, 2 g vial 925527011000036108 Cefepime (DBL) 925527011000036108 Cefepime (DBL) 27280011000036106 cefepime 2 g injection, 1 vial 22635011000036107 cefepime 2 g injection, vial 21558011000036108 cefepime +883941000168104 Betahistine (Medis) 8 mg tablet, 25, blister pack 231720 883931000168108 Betahistine (Medis) 8 mg tablet, 25 883901000168101 Betahistine (Medis) 8 mg tablet 883891000168100 Betahistine (Medis) 883891000168100 Betahistine (Medis) 883121000168107 betahistine dihydrochloride 8 mg tablet, 25 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +19979011000036101 Clopine 100 mg uncoated tablet, 100, blister pack 67948 14084011000036101 Clopine 100 mg uncoated tablet, 100 7362011000036102 Clopine 100 mg uncoated tablet 3146011000036108 Clopine 3146011000036108 Clopine 28136011000036106 clozapine 100 mg tablet, 100 23445011000036103 clozapine 100 mg tablet 21222011000036104 clozapine +852161000168102 Olmesartan HCT 40/12.5 (Myl) film-coated tablet, 30, blister pack 273577 852151000168104 Olmesartan HCT 40/12.5 (Myl) film-coated tablet, 30 852111000168100 Olmesartan HCT 40/12.5 (Myl) film-coated tablet 852101000168103 Olmesartan HCT 40/12.5 (Myl) 852101000168103 Olmesartan HCT 40/12.5 (Myl) 26675011000036105 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet, 30 22071011000036100 olmesartan medoxomil 40 mg + hydrochlorothiazide 12.5 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +734061000168108 Caltrate Bone Health film-coated tablet, 120, bottle 214784 734051000168106 Caltrate Bone Health film-coated tablet, 120 733971000168100 Caltrate Bone Health film-coated tablet 730111000168102 Caltrate Bone Health 730111000168102 Caltrate Bone Health 734041000168109 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 120 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +81179011000036100 Robitussin Chesty Cough 200 mg soft capsule, 18, blister pack 74414 80681011000036101 Robitussin Chesty Cough 200 mg soft capsule, 18 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81736011000036102 guaifenesin 200 mg capsule, 18 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +60798011000036101 Imodium Caplet 2 mg uncoated tablet, 16, blister pack 56001 56754011000036109 Imodium Caplet 2 mg uncoated tablet, 16 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63554011000036103 loperamide hydrochloride 2 mg tablet, 16 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +50658011000036104 Camptosar 300 mg/15 mL concentrated injection, 15 mL vial 146909 49682011000036103 Camptosar 300 mg/15 mL concentrated injection, 15 mL vial 48817011000036106 Camptosar 300 mg/15 mL concentrated injection, 15 mL vial 2965011000036101 Camptosar 2965011000036101 Camptosar 51560011000036109 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, 15 mL vial 51003011000036104 irinotecan hydrochloride trihydrate 300 mg/15 mL injection, vial 21503011000036106 irinotecan +831771000168101 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack 90140 831761000168107 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack 638331000168101 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines (inert substance) diluent, 0.7 mL vial 40011000168104 Varivax Refrigerated 73763011000036106 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines 831751000168105 varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack 638321000168104 inert substance diluent, 0.7 mL vial 21220011000036103 inert substance +831771000168101 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack 90140 831761000168107 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack 831711000168109 Varivax Refrigerated (varicella-zoster live vaccine) powder for injection, vial 40011000168104 Varivax Refrigerated 40011000168104 Varivax Refrigerated 831751000168105 varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack 831701000168106 varicella-zoster live vaccine 1350 PFU injection, vial 830851000168105 varicella-zoster live vaccine +856131000168109 Algerika 50 mg hard capsule, 60, blister pack 229557 856121000168106 Algerika 50 mg hard capsule, 60 856011000168103 Algerika 50 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 856111000168104 pregabalin 50 mg capsule, 60 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +1093881000168101 Tramadol/Paracetamol 37.5/325 (Apotex) film-coated tablet, 50, blister pack 280698 1093871000168104 Tramadol/Paracetamol 37.5/325 (Apotex) film-coated tablet, 50 1093841000168106 Tramadol/Paracetamol 37.5/325 (Apotex) film-coated tablet 1093831000168102 Tramadol/Paracetamol 37.5/325 (Apotex) 1093831000168102 Tramadol/Paracetamol 37.5/325 (Apotex) 680641000168108 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 50 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +860421000168107 Amisulpride (Winthrop) 50 mg uncoated tablet, 2, blister pack 125164 860411000168100 Amisulpride (Winthrop) 50 mg uncoated tablet, 2 860391000168100 Amisulpride (Winthrop) 50 mg uncoated tablet 3202011000036103 Amisulpride (Winthrop) 3202011000036103 Amisulpride (Winthrop) 860401000168103 amisulpride 50 mg tablet, 2 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1022101000168103 Atelvia 30 mg film-coated tablet, 14, blister pack 163752 1022091000168108 Atelvia 30 mg film-coated tablet, 14 1022081000168105 Atelvia 30 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 800891000168105 risedronate sodium 30 mg tablet, 14 23072011000036102 risedronate sodium 30 mg tablet 21476011000036103 risedronate +1053471000168106 Actiq 800 microgram lozenge on handle, 6, blister pack 91602 1053461000168100 Actiq 800 microgram lozenge on handle, 6 34078011000036101 Actiq 800 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 1053451000168102 fentanyl 800 microgram lozenge on handle, 6 34913011000036106 fentanyl 800 microgram lozenge on handle 21258011000036102 fentanyl +19086011000036108 Bleomycin Sulfate (DBL) 15 000 international units powder for injection, 1 vial 42569 12392011000036101 Bleomycin Sulfate (DBL) 15 000 international units powder for injection, 1 vial 5394011000036109 Bleomycin Sulfate (DBL) 15 000 international units powder for injection, 15 000 international units vial 3159011000036101 Bleomycin Sulfate (DBL) 3159011000036101 Bleomycin Sulfate (DBL) 27097011000036101 bleomycin sulfate 15 000 international units injection, 1 vial 23152011000036109 bleomycin sulfate 15 000 international units injection, vial 857781000168109 bleomycin +843541000168102 Utrogestan 200 mg shell pessary, 42, blister pack 232824 843531000168106 Utrogestan 200 mg shell pessary, 42 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843521000168108 progesterone 200 mg pessary, 42 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +20921011000036102 Concerta 18 mg modified release tablet, 30, bottle 93862 14075011000036109 Concerta 18 mg modified release tablet, 30 7353011000036100 Concerta 18 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 28128011000036107 methylphenidate hydrochloride 18 mg modified release tablet, 30 23437011000036109 methylphenidate hydrochloride 18 mg modified release tablet 21277011000036101 methylphenidate +136851000036105 Intragam P 600 mg/10 mL injection solution, 10 mL vial 68635 136611000036107 Intragam P 600 mg/10 mL injection solution, 10 mL vial 136261000036107 Intragam P 600 mg/10 mL injection solution, 10 mL vial 46781000168105 Intragam P 46781000168105 Intragam P 75475011000036101 normal immunoglobulin 600 mg/10 mL injection, 10 mL vial 75083011000036103 normal immunoglobulin 600 mg/10 mL injection, vial 74965011000036103 normal immunoglobulin +981461000168101 Pritor 80 mg uncoated tablet, 28, blister pack 68055 981451000168103 Pritor 80 mg uncoated tablet, 28 981411000168104 Pritor 80 mg uncoated tablet 981201000168103 Pritor 981201000168103 Pritor 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +18000011000036106 Nilstat Cream Pessary 100 000 units shell pessary, 15, bottle 15102 12069011000036105 Nilstat Cream Pessary 100 000 units shell pessary, 15 5387011000036104 Nilstat Cream Pessary 100 000 units shell pessary 61951000168104 Nilstat Cream Pessary 61951000168104 Nilstat Cream Pessary 26893011000036105 nystatin 100 000 units pessary, 15 22271011000036105 nystatin 100 000 units pessary 21669011000036102 nystatin +50393011000036106 Risperidone (Apo) 4 mg film-coated tablet, 60, bottle 127617 49551011000036108 Risperidone (Apo) 4 mg film-coated tablet, 60 48754011000036107 Risperidone (Apo) 4 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27155011000036109 risperidone 4 mg tablet, 60 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +33547011000036101 Gabapentin (GenRx) 800 mg film-coated tablet, 100, bottle 131509 33285011000036107 Gabapentin (GenRx) 800 mg film-coated tablet, 100 33047011000036103 Gabapentin (GenRx) 800 mg film-coated tablet 3416011000036102 Gabapentin (GenRx) 3416011000036102 Gabapentin (GenRx) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +869151000168104 Pacrolim 500 microgram hard capsule, 10, blister pack 224283 869141000168101 Pacrolim 500 microgram hard capsule, 10 869131000168105 Pacrolim 500 microgram hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 749241000168103 tacrolimus 500 microgram capsule, 10 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +993371000168100 Clarithromycin (Apotex) 250 mg film-coated tablet, 100, blister pack 174943 993361000168106 Clarithromycin (Apotex) 250 mg film-coated tablet, 100 993291000168109 Clarithromycin (Apotex) 250 mg film-coated tablet 993281000168106 Clarithromycin (Apotex) 993281000168106 Clarithromycin (Apotex) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +925366011000036103 Nicabate 2 mg lozenge, 36, blister pack 81977 924902011000036104 Nicabate 2 mg lozenge, 36 924543011000036105 Nicabate 2 mg lozenge 28411000168106 Nicabate 28411000168106 Nicabate 922525011000036100 nicotine 2 mg lozenge, 36 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +50586011000036104 Clarithromycin (Chemmart) 500 mg film-coated tablet, 100, blister pack 134860 49618011000036103 Clarithromycin (Chemmart) 500 mg film-coated tablet, 100 48790011000036107 Clarithromycin (Chemmart) 500 mg film-coated tablet 4404011000036106 Clarithromycin (Chemmart) 4404011000036106 Clarithromycin (Chemmart) 27242011000036100 clarithromycin 500 mg tablet, 100 23527011000036104 clarithromycin 500 mg tablet 21836011000036107 clarithromycin +797131000168104 Aciclovir (AN) 400 mg uncoated tablet, 100, blister pack 182885 797121000168102 Aciclovir (AN) 400 mg uncoated tablet, 100 797091000168101 Aciclovir (AN) 400 mg uncoated tablet 797081000168104 Aciclovir (AN) 797081000168104 Aciclovir (AN) 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +864811000168108 Amitriptyline (GXP) 50 mg tablet, 1000, blister pack 232132 864801000168105 Amitriptyline (GXP) 50 mg tablet, 1000 864731000168105 Amitriptyline (GXP) 50 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +60121011000036109 Loratadine (Chemists' Own) 10 mg tablet, 50, blister pack 127572 56080011000036106 Loratadine (Chemists' Own) 10 mg tablet, 50 53781011000036106 Loratadine (Chemists' Own) 10 mg tablet 53461011000036104 Loratadine (Chemists' Own) 53461011000036104 Loratadine (Chemists' Own) 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +780181000168100 Fentanyl (Apo) 50 microgram/hour patch, 1, sachet 152573 780171000168103 Fentanyl (Apo) 50 microgram/hour patch, 1 780161000168109 Fentanyl (Apo) 50 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235871000036101 fentanyl 50 microgram/hour patch, 1 22054011000036100 fentanyl 50 microgram/hour patch 21258011000036102 fentanyl +131071000036101 Candesartan Cilexetil (GH) 4 mg uncoated tablet, 30, blister pack 195447 128341000036102 Candesartan Cilexetil (GH) 4 mg uncoated tablet, 30 124901000036105 Candesartan Cilexetil (GH) 4 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +18573011000036107 Acquin 5 mg film-coated tablet, 30, blister pack 118750 11598011000036100 Acquin 5 mg film-coated tablet, 30 5103011000036103 Acquin 5 mg film-coated tablet 3174011000036104 Acquin 3174011000036104 Acquin 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +18573011000036107 Acquin 5 mg film-coated tablet, 30, blister pack 192146 11598011000036100 Acquin 5 mg film-coated tablet, 30 5103011000036103 Acquin 5 mg film-coated tablet 3174011000036104 Acquin 3174011000036104 Acquin 27076011000036107 quinapril 5 mg tablet, 30 22445011000036105 quinapril 5 mg tablet 21289011000036102 quinapril +59830011000036108 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 48, blister pack 114906 55792011000036106 Paracetamol (Your Pharmacy) 500 mg uncoated tablet, 48 53626011000036103 Paracetamol (Your Pharmacy) 500 mg uncoated tablet 53318011000036101 Paracetamol (Your Pharmacy) 53318011000036101 Paracetamol (Your Pharmacy) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +785601000168108 Endone XR 5 mg modified release tablet, 28, blister pack 153598 785591000168101 Endone XR 5 mg modified release tablet, 28 785561000168108 Endone XR 5 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 929278011000036105 oxycodone hydrochloride 5 mg modified release tablet, 28 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +817631000168108 Dynoval 5/10 (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 200816 817621000168105 Dynoval 5/10 (perindopril arginine/amlodipine) uncoated tablet, 10 817611000168103 Dynoval 5/10 (perindopril arginine/amlodipine) uncoated tablet 817601000168101 Dynoval 5/10 (perindopril arginine/amlodipine) 817601000168101 Dynoval 5/10 (perindopril arginine/amlodipine) 86425011000036103 perindopril arginine 5 mg + amlodipine 10 mg tablet, 10 86218011000036102 perindopril arginine 5 mg + amlodipine 10 mg tablet 86190011000036102 perindopril + amlodipine +852201000168107 Olmesartan/Amlodipine 20/5 (Myl) film-coated tablet, 10, blister pack 273618 852191000168109 Olmesartan/Amlodipine 20/5 (Myl) film-coated tablet, 10 852181000168106 Olmesartan/Amlodipine 20/5 (Myl) film-coated tablet 852171000168108 Olmesartan/Amlodipine 20/5 (Myl) 852171000168108 Olmesartan/Amlodipine 20/5 (Myl) 922571011000036103 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet, 10 922091011000036108 olmesartan medoxomil 20 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +1011731000168107 Donepezil (Apotex) 5 mg film-coated tablet, 14, blister pack 168335 1011721000168109 Donepezil (Apotex) 5 mg film-coated tablet, 14 1011701000168100 Donepezil (Apotex) 5 mg film-coated tablet 1011531000168103 Donepezil (Apotex) 1011531000168103 Donepezil (Apotex) 1011711000168102 donepezil hydrochloride 5 mg tablet, 14 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +50321011000036102 Risperidone (Apo) 3 mg film-coated tablet, 60, bottle 127613 49550011000036101 Risperidone (Apo) 3 mg film-coated tablet, 60 48601011000036107 Risperidone (Apo) 3 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27154011000036105 risperidone 3 mg tablet, 60 22516011000036103 risperidone 3 mg tablet 21338011000036109 risperidone +931761011000036107 Fluorocare-200 0.022% mouthwash, 473 mL, bottle 78339 930921011000036102 Fluorocare-200 0.022% mouthwash, 473 mL 930121011000036100 Fluorocare-200 0.022% mouthwash 39261000168104 Fluorocare-200 39261000168104 Fluorocare-200 932494011000036104 sodium fluoride 0.022% mouthwash, 473 mL 931888011000036104 sodium fluoride 0.022% mouthwash 61768011000036106 fluoride +1068221000168105 Paracetamol plus Codeine (Meditab) uncoated tablet, 24, blister pack 184463 1068211000168103 Paracetamol plus Codeine (Meditab) uncoated tablet, 24 1068141000168107 Paracetamol plus Codeine (Meditab) uncoated tablet 1068081000168103 Paracetamol plus Codeine (Meditab) 1068081000168103 Paracetamol plus Codeine (Meditab) 52331011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 24 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +69463011000036102 Pinetarsol 1.6% gel, 500 g, bottle 49103 67263011000036108 Pinetarsol 1.6% gel, 500 g 65583011000036100 Pinetarsol 1.6% gel 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71813011000036103 tar 1.6% gel, 500 g 70281011000036103 tar 1.6% gel 21402011000036105 tar +651651000168108 Xolair 150 mg/mL injection solution, 1 mL syringe 201126 651641000168106 Xolair 150 mg/mL injection solution, 1 mL syringe 651621000168100 Xolair 150 mg/mL injection solution, syringe 39611011000036108 Xolair 39611011000036108 Xolair 651631000168102 omalizumab 150 mg/mL injection, 1 mL syringe 651611000168107 omalizumab 150 mg/mL injection, syringe 44858011000036101 omalizumab +86151011000036100 Nurofen Zavance Liquid Capsule 200 mg soft capsule, 20, blister pack 163477 85759011000036106 Nurofen Zavance Liquid Capsule 200 mg soft capsule, 20 85377011000036101 Nurofen Zavance Liquid Capsule 200 mg soft capsule 1251000168106 Nurofen Zavance Liquid Capsule 1251000168106 Nurofen Zavance Liquid Capsule 63929011000036107 ibuprofen 200 mg capsule, 20 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +69633011000036105 Aspro Clear Extra Strength 500 mg effervescent tablet, 16, strip pack 77594 67432011000036106 Aspro Clear Extra Strength 500 mg effervescent tablet, 16 65660011000036102 Aspro Clear Extra Strength 500 mg effervescent tablet 33281000168106 Aspro Clear Extra Strength 33281000168106 Aspro Clear Extra Strength 83301000036108 aspirin 500 mg effervescent tablet, 16 83121000036101 aspirin 500 mg effervescent tablet 21719011000036107 aspirin +44479011000036101 Cardizem CD 360 mg modified release capsule, 7, blister pack 75252 41934011000036109 Cardizem CD 360 mg modified release capsule, 7 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46721011000036101 diltiazem hydrochloride 360 mg modified release capsule, 7 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +1022181000168106 Butafen 200 mg film-coated tablet, 20, blister pack 155484 1022171000168108 Butafen 200 mg film-coated tablet, 20 1022031000168109 Butafen 200 mg film-coated tablet 984061000168106 Butafen 984061000168106 Butafen 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1094201000168107 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 500 mL, pump pack 281338 1094191000168109 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution, 500 mL 1094111000168100 Antimicrobial Hand Sanitiser Rub (Elyptol) 70% solution 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094091000168108 Antimicrobial Hand Sanitiser Rub (Elyptol) 1094181000168106 ethanol 70% solution, 500 mL 1094101000168103 ethanol 70% solution 69846011000036106 ethanol +19397011000036108 Sunscreen SPF 15 (Hamilton) cream, 100 g, tube 52909 12682011000036106 Sunscreen SPF 15 (Hamilton) cream, 100 g 5833011000036102 Sunscreen SPF 15 (Hamilton) cream 59281000168109 Sunscreen SPF 15 (Hamilton) 59281000168109 Sunscreen SPF 15 (Hamilton) 27283011000036103 butyl methoxydibenzoylmethane 1.5% + octyl methoxycinnamate 7.5% + octyl salicylate 4% cream, 100 g 22638011000036101 butyl methoxydibenzoylmethane 1.5% + octyl methoxycinnamate 7.5% + octyl salicylate 4% cream 21468011000036107 butyl methoxydibenzoylmethane + octyl methoxycinnamate + octyl salicylate +960211000168108 Dormizol CR 6.25 mg modified release tablet, 20, blister pack 120712 960201000168105 Dormizol CR 6.25 mg modified release tablet, 20 960111000168103 Dormizol CR 6.25 mg modified release tablet 960101000168101 Dormizol CR 960101000168101 Dormizol CR 46179011000036106 zolpidem tartrate 6.25 mg modified release tablet, 20 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +60193011000036100 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet, 8, blister pack 132577 56152011000036108 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet, 8 53809011000036109 Diarrhoea Relief (Priceline) 2.15 mg uncoated tablet 53526011000036106 Diarrhoea Relief (Priceline) 53526011000036106 Diarrhoea Relief (Priceline) 63807011000036103 loperamide hydrochloride 2.15 mg tablet, 8 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +18815011000036104 Deptran 50 mg film-coated tablet, 50, blister pack 17637 12135011000036109 Deptran 50 mg film-coated tablet, 50 4636011000036108 Deptran 50 mg film-coated tablet 4412011000036104 Deptran 4412011000036104 Deptran 26942011000036100 doxepin 50 mg tablet, 50 22318011000036101 doxepin 50 mg tablet 21583011000036105 doxepin +1016021000168102 Xifaxan 550 mg film-coated tablet, 60, blister pack 183411 1016011000168109 Xifaxan 550 mg film-coated tablet, 60 93521000036107 Xifaxan 550 mg film-coated tablet 93311000036109 Xifaxan 93311000036109 Xifaxan 1016001000168106 rifaximin 550 mg tablet, 60 93531000036109 rifaximin 550 mg tablet 95821000036105 rifaximin +20869011000036104 Talam 20 mg film-coated tablet, 28, blister pack 92725 14031011000036105 Talam 20 mg film-coated tablet, 28 7307011000036104 Talam 20 mg film-coated tablet 3427011000036108 Talam 3427011000036108 Talam 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +20869011000036104 Talam 20 mg film-coated tablet, 28, blister pack 212219 14031011000036105 Talam 20 mg film-coated tablet, 28 7307011000036104 Talam 20 mg film-coated tablet 3427011000036108 Talam 3427011000036108 Talam 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +37430011000036101 Xylocaine 0.5% (25 mg/5 mL) injection solution, 10 x 5 mL ampoules 12009 36684011000036101 Xylocaine 0.5% (25 mg/5 mL) injection solution, 10 x 5 mL ampoules 36123011000036105 Xylocaine 0.5% (25 mg/5 mL) injection solution, 5 mL ampoule 2651000168102 Xylocaine 2651000168102 Xylocaine 38597011000036105 lidocaine (lignocaine) hydrochloride 0.5% (25 mg/5 mL) injection, 10 x 5 mL ampoules 37868011000036103 lidocaine (lignocaine) hydrochloride 0.5% (25 mg/5 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +69051011000036102 Senega and Ammonia Mixture (David Craig) oral liquid solution, 5 L, bottle 14242 66853011000036105 Senega and Ammonia Mixture (David Craig) oral liquid solution, 5 L 65337011000036102 Senega and Ammonia Mixture (David Craig) oral liquid solution 65017011000036108 Senega and Ammonia Mixture (David Craig) 65017011000036108 Senega and Ammonia Mixture (David Craig) 71463011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 5 L 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +19155011000036104 Protaphane 100 units/mL injection suspension, 1 x 10 mL vial 169637 12454011000036105 Protaphane 100 units/mL injection suspension, 1 x 10 mL vial 5964011000036103 Protaphane 100 units/mL injection suspension, 10 mL vial 16911000168107 Protaphane 16911000168107 Protaphane 27129011000036105 insulin isophane human 100 units/mL injection, 1 x 10 mL vial 22495011000036100 insulin isophane human 100 units/mL injection, vial 33643011000036100 insulin isophane human +19155011000036104 Protaphane 100 units/mL injection suspension, 1 x 10 mL vial 45703 12454011000036105 Protaphane 100 units/mL injection suspension, 1 x 10 mL vial 5964011000036103 Protaphane 100 units/mL injection suspension, 10 mL vial 16911000168107 Protaphane 16911000168107 Protaphane 27129011000036105 insulin isophane human 100 units/mL injection, 1 x 10 mL vial 22495011000036100 insulin isophane human 100 units/mL injection, vial 33643011000036100 insulin isophane human +69221011000036105 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 500 mL bottle 19460 67021011000036108 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 500 mL bottle 65364011000036104 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) irrigation solution, 500 mL bottle 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 12961000168109 Chlorhexidine Acetate 0.05% and Cetrimide 0.5% (Baxter) 71591011000036102 chlorhexidine acetate 0.05% (250 mg/500 mL) + cetrimide 0.5% (2.5 g/500 mL) solution, 500 mL bottle 70081011000036109 chlorhexidine acetate 0.05% (250 mg/500 mL) + cetrimide 0.5% (2.5 g/500 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +44044011000036106 Tazocin 4g / 500mg powder for injection, 4.5 g vial 48067 41533011000036100 Tazocin 4g / 500mg powder for injection, 4.5 g vial 40045011000036108 Tazocin 4g / 500mg powder for injection, 4.5 g vial 16581000168109 Tazocin 4g / 500mg 16581000168109 Tazocin 4g / 500mg 46368011000036104 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 45111011000036103 piperacillin 4 g + tazobactam 500 mg injection, 4.5 g vial 44928011000036106 piperacillin + tazobactam +61253011000036102 Nicotine (Amcal) 14 mg/24 hours patch, 28, sachet 77119 57189011000036105 Nicotine (Amcal) 14 mg/24 hours patch, 28 54230011000036103 Nicotine (Amcal) 14 mg/24 hours patch 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 63760011000036102 nicotine 14 mg/24 hours patch, 28 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +968731000168106 Simvastatin (Spirit) 5 mg film-coated tablet, 300, bottle 116707 968721000168108 Simvastatin (Spirit) 5 mg film-coated tablet, 300 968651000168109 Simvastatin (Spirit) 5 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 46087011000036104 simvastatin 5 mg tablet, 300 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +105181000036105 Senega and Ammonia Mixture (Gold Cross) oral liquid solution, 500 mL, bottle 27261 102291000036108 Senega and Ammonia Mixture (Gold Cross) oral liquid solution, 500 mL 5302011000036102 Senega and Ammonia Mixture (Gold Cross) oral liquid solution 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 81684011000036106 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 500 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +21039011000036102 Ciprofloxacin (GenRx) 250 mg film-coated tablet, 14, blister pack 135911 14184011000036105 Ciprofloxacin (GenRx) 250 mg film-coated tablet, 14 7465011000036101 Ciprofloxacin (GenRx) 250 mg film-coated tablet 3968011000036100 Ciprofloxacin (GenRx) 3968011000036100 Ciprofloxacin (GenRx) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +21039011000036102 Ciprofloxacin (GenRx) 250 mg film-coated tablet, 14, blister pack 96872 14184011000036105 Ciprofloxacin (GenRx) 250 mg film-coated tablet, 14 7465011000036101 Ciprofloxacin (GenRx) 250 mg film-coated tablet 3968011000036100 Ciprofloxacin (GenRx) 3968011000036100 Ciprofloxacin (GenRx) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +650691000168105 Captopril (Apo) 25 mg uncoated tablet, 90, blister pack 74004 650681000168107 Captopril (Apo) 25 mg uncoated tablet, 90 650671000168109 Captopril (Apo) 25 mg uncoated tablet 650661000168103 Captopril (Apo) 650661000168103 Captopril (Apo) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +918421000168103 Anastrodex 1 mg film-coated tablet, 30, blister pack 174012 918411000168105 Anastrodex 1 mg film-coated tablet, 30 918401000168107 Anastrodex 1 mg film-coated tablet 918391000168105 Anastrodex 918391000168105 Anastrodex 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +87709011000036103 Galantyl 8 mg modified release capsule, 30, blister pack 157934 87454011000036100 Galantyl 8 mg modified release capsule, 30 87317011000036107 Galantyl 8 mg modified release capsule 87281011000036107 Galantyl 87281011000036107 Galantyl 46978011000036101 galantamine 8 mg modified release capsule, 30 23562011000036107 galantamine 8 mg modified release capsule 21521011000036100 galantamine +793111000168101 Prodeinextra film-coated tablet, 20, blister pack 205550 793101000168104 Prodeinextra film-coated tablet, 20 793051000168104 Prodeinextra film-coated tablet 793041000168101 Prodeinextra 793041000168101 Prodeinextra 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +785641000168105 Oxycodone (Sandoz) 10 mg modified release tablet, 20, bottle 153592 785631000168101 Oxycodone (Sandoz) 10 mg modified release tablet, 20 676311000168107 Oxycodone (Sandoz) 10 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +105201000036109 Irbesartan HCT 300/12.5 (Stada) tablet, 30, blister pack 186253 102311000036109 Irbesartan HCT 300/12.5 (Stada) tablet, 30 98441000036109 Irbesartan HCT 300/12.5 (Stada) tablet 39361000168108 Irbesartan HCT 300/12.5 (Stada) 39361000168108 Irbesartan HCT 300/12.5 (Stada) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +794161000168100 Tacrolimus (Sandoz) 750 microgram hard capsule, 28, blister pack 229738 794151000168102 Tacrolimus (Sandoz) 750 microgram hard capsule, 28 794011000168102 Tacrolimus (Sandoz) 750 microgram hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794141000168104 tacrolimus 750 microgram capsule, 28 794001000168100 tacrolimus 750 microgram capsule 21380011000036104 tacrolimus +923721000168106 Caltrate Vitamin D 25 microgram (1000 units) soft capsule, 300, bottle 179943 923711000168104 Caltrate Vitamin D 25 microgram (1000 units) soft capsule, 300 923681000168100 Caltrate Vitamin D 25 microgram (1000 units) soft capsule 923671000168103 Caltrate Vitamin D 923671000168103 Caltrate Vitamin D 919501000168104 colecalciferol 25 microgram (1000 units) capsule, 300 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +50373011000036102 Combiderm (651027) 15 cm x 18 cm (foam alternative) dressing, 5, carton 49349011000036107 Combiderm (651027) 15 cm x 18 cm (foam alternative) dressing, 5 48717011000036109 Combiderm (651027) 15 cm x 18 cm (foam alternative) dressing 54261000168101 Combiderm (651027) 54261000168101 Combiderm (651027) 51328011000036102 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 15 cm x 18 cm (foam alternative) dressing, 5 50855011000036101 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam 15 cm x 18 cm (foam alternative) dressing 50713011000036109 dressing hydroactive superficial wound high exudate semi-permeable absorbent foam +863761000168100 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 144672 863751000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 863671000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863741000168104 glucose monohydrate 5% (12.5 g/250 mL) injection, 30 x 250 mL bags 863661000168108 glucose monohydrate 5% (12.5 g/250 mL) injection, bag 21354011000036103 glucose +928827011000036100 Naglazyme 5 mg/5 mL injection solution, 5 mL vial 125598 928189011000036107 Naglazyme 5 mg/5 mL injection solution, 5 mL vial 927837011000036109 Naglazyme 5 mg/5 mL injection solution, 5 mL vial 927798011000036104 Naglazyme 927798011000036104 Naglazyme 929204011000036108 galsulfase 5 mg/5 mL injection, 5 mL vial 929142011000036105 galsulfase 5 mg/5 mL injection, vial 929136011000036105 galsulfase +17804011000036106 Morphine Sulfate (DBL) 30 mg/mL injection solution, 5 x 1 mL ampoules 121755 11689011000036100 Morphine Sulfate (DBL) 30 mg/mL injection solution, 5 x 1 mL ampoules 5759011000036102 Morphine Sulfate (DBL) 30 mg/mL injection solution, ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 26737011000036109 morphine sulfate pentahydrate 30 mg/mL injection, 5 x 1 mL ampoules 22132011000036100 morphine sulfate pentahydrate 30 mg/mL injection, ampoule 21252011000036100 morphine +681721000168103 Esomeprazole (Apotex) 40 mg enteric tablet, 30, blister pack 210843 681711000168105 Esomeprazole (Apotex) 40 mg enteric tablet, 30 681661000168100 Esomeprazole (Apotex) 40 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +1059721000168103 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 30, blister pack 234468 1059021000168100 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 30 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +32553011000036103 Meloxibell 15 mg uncoated tablet, 30, blister pack 127414 32345011000036102 Meloxibell 15 mg uncoated tablet, 30 32222011000036104 Meloxibell 15 mg uncoated tablet 32181011000036104 Meloxibell 32181011000036104 Meloxibell 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +933211561000036101 Atenolol (Apo) 50 mg uncoated tablet, 30, bottle 129862 933200641000036106 Atenolol (Apo) 50 mg uncoated tablet, 30 933194261000036100 Atenolol (Apo) 50 mg uncoated tablet 9511000168106 Atenolol (Apo) 9511000168106 Atenolol (Apo) 27840011000036106 atenolol 50 mg tablet, 30 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +1097171000168103 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 30, blister pack 286508 1097161000168109 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet, 30 1097001000168109 Ibuprofen Double Strength (Medreich) 400 mg film-coated tablet 1096981000168100 Ibuprofen Double Strength (Medreich) 1096981000168100 Ibuprofen Double Strength (Medreich) 27938011000036102 ibuprofen 400 mg tablet, 30 23262011000036102 ibuprofen 400 mg tablet 21885011000036105 ibuprofen +34679011000036104 Subutex FDT 8 mg uncoated tablet, 7, blister pack 134405 34265011000036107 Subutex FDT 8 mg uncoated tablet, 7 33994011000036106 Subutex FDT 8 mg uncoated tablet 26941000168100 Subutex FDT 26941000168100 Subutex FDT 27820011000036109 buprenorphine 8 mg tablet, 7 23148011000036105 buprenorphine 8 mg tablet 21232011000036101 buprenorphine +998661000168109 Esomeprazole (Apo) 40 mg enteric tablet, 100, blister pack 205823 998651000168107 Esomeprazole (Apo) 40 mg enteric tablet, 100 998561000168108 Esomeprazole (Apo) 40 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +60844011000036104 Aspro Clear 300 mg effervescent tablet, 40, strip pack 58566 56800011000036109 Aspro Clear 300 mg effervescent tablet, 40 54084011000036108 Aspro Clear 300 mg effervescent tablet 18221000168108 Aspro Clear 18221000168108 Aspro Clear 63577011000036106 aspirin 300 mg effervescent tablet, 40 83141000036109 aspirin 300 mg effervescent tablet 21719011000036107 aspirin +1027491000168104 Neuroccord 25 mg hard capsule, 56, bottle 235872 1027481000168102 Neuroccord 25 mg hard capsule, 56 1027411000168108 Neuroccord 25 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +889561000168108 Amisulpride (CH) 50 mg uncoated tablet, 60, blister pack 234692 889551000168106 Amisulpride (CH) 50 mg uncoated tablet, 60 889521000168103 Amisulpride (CH) 50 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 924160011000036102 amisulpride 50 mg tablet, 60 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +952741000168107 Fluzole 150 mg hard capsule, 1, blister pack 120776 952731000168103 Fluzole 150 mg hard capsule, 1 952721000168101 Fluzole 150 mg hard capsule 57311000168100 Fluzole 57311000168100 Fluzole 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +20509011000036104 Kaletra 133.3/33.3 soft capsule, 90, bottle 78629 13709011000036103 Kaletra 133.3/33.3 soft capsule, 90 6991011000036102 Kaletra 133.3/33.3 soft capsule 54191000168100 Kaletra 133.3/33.3 54191000168100 Kaletra 133.3/33.3 27891011000036105 lopinavir 133.3 mg + ritonavir 33.3 mg capsule, 90 23216011000036104 lopinavir 133.3 mg + ritonavir 33.3 mg capsule 21345011000036102 lopinavir + ritonavir +826381000168108 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack 10495 826371000168105 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack 826321000168109 Meruvax II (rubella live vaccine) powder for injection, vial 73729011000036100 Meruvax II 73729011000036100 Meruvax II 826361000168104 rubella live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack 826311000168102 rubella live vaccine injection, vial 826301000168100 rubella live vaccine +826381000168108 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack 10495 826371000168105 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack 634331000168105 Meruvax II (inert substance) diluent, 0.5 mL vial 73729011000036100 Meruvax II 73729011000036100 Meruvax II 826361000168104 rubella live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack 634321000168107 inert substance diluent, 0.5 mL vial 21220011000036103 inert substance +44018011000036107 Isotrex 0.05% gel, 30 g, tube 47053 41507011000036100 Isotrex 0.05% gel, 30 g 40025011000036105 Isotrex 0.05% gel 39756011000036103 Isotrex 39756011000036103 Isotrex 46349011000036100 isotretinoin 0.05% gel, 30 g 45099011000036107 isotretinoin 0.05% gel 21546011000036107 isotretinoin +933231481000036104 Idaprex 2 mg uncoated tablet, 30, blister pack 34266 933225661000036107 Idaprex 2 mg uncoated tablet, 30 933220261000036104 Idaprex 2 mg uncoated tablet 933218941000036100 Idaprex 933218941000036100 Idaprex 26806011000036101 perindopril erbumine 2 mg tablet, 30 22190011000036108 perindopril erbumine 2 mg tablet 21362011000036102 perindopril +79004011000036107 Momex SR 60 mg modified release tablet, 60, blister pack 132257 78809011000036107 Momex SR 60 mg modified release tablet, 60 78630011000036101 Momex SR 60 mg modified release tablet 10831000168109 Momex SR 10831000168109 Momex SR 35167011000036108 morphine sulfate pentahydrate 60 mg modified release tablet, 60 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +44456011000036108 Doxycycline (GenRx) 100 mg modified release capsule, 7, blister pack 74018 41912011000036108 Doxycycline (GenRx) 100 mg modified release capsule, 7 40261011000036107 Doxycycline (GenRx) 100 mg modified release capsule 3262011000036104 Doxycycline (GenRx) 3262011000036104 Doxycycline (GenRx) 27260011000036109 doxycycline 100 mg modified release capsule, 7 22616011000036106 doxycycline 100 mg modified release capsule 21784011000036108 doxycycline +650651000168100 Cocaine Hydrochloride 25% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) paste, 100 g, jar 650641000168102 Cocaine Hydrochloride 25% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) paste, 100 g 650621000168108 Cocaine Hydrochloride 25% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) paste 650601000168104 Cocaine Hydrochloride 25% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) 650601000168104 Cocaine Hydrochloride 25% and Adrenaline Acid Tartrate 0.18% APF (extemporaneous) 650631000168106 cocaine hydrochloride 25% + adrenaline (epinephrine) acid tartrate 0.18% paste, 100 g 650611000168101 cocaine hydrochloride 25% + adrenaline (epinephrine) acid tartrate 0.18% paste 648911000168106 cocaine + adrenaline (epinephrine) +933214281000036107 Reditra 50 mg film-coated tablet, 30, blister pack 160772 933203501000036104 Reditra 50 mg film-coated tablet, 30 933195831000036109 Reditra 50 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +18530011000036102 Depo-Provera 50 mg/mL injection suspension, 1 mL vial 12301 11730011000036107 Depo-Provera 50 mg/mL injection suspension, 1 mL vial 5438011000036103 Depo-Provera 50 mg/mL injection suspension, vial 3830011000036100 Depo-Provera 3830011000036100 Depo-Provera 26752011000036108 medroxyprogesterone acetate 50 mg/mL injection, 1 mL vial 22139011000036105 medroxyprogesterone acetate 50 mg/mL injection, vial 21378011000036107 medroxyprogesterone +20604011000036109 Zydol SR 100 mg modified release tablet, 20, blister pack 80724 13786011000036108 Zydol SR 100 mg modified release tablet, 20 7072011000036105 Zydol SR 100 mg modified release tablet 14791000168106 Zydol SR 14791000168106 Zydol SR 28311011000036102 tramadol hydrochloride 100 mg modified release tablet, 20 23625011000036103 tramadol hydrochloride 100 mg modified release tablet 21486011000036105 tramadol +1105831000168105 Diazepam (DBL) 10 mg/2 mL injection solution, 50 x 2 mL ampoules 115049 1105821000168107 Diazepam (DBL) 10 mg/2 mL injection solution, 50 x 2 mL ampoules 4992011000036103 Diazepam (DBL) 10 mg/2 mL injection solution, 2 mL ampoule 3252011000036109 Diazepam (DBL) 3252011000036109 Diazepam (DBL) 1105811000168100 diazepam 10 mg/2 mL injection, 50 x 2 mL ampoules 22065011000036107 diazepam 10 mg/2 mL injection, ampoule 21688011000036107 diazepam +1010541000168100 Aprolan 10 mg film-coated tablet, 28, blister pack 163402 1010531000168109 Aprolan 10 mg film-coated tablet, 28 1010521000168106 Aprolan 10 mg film-coated tablet 1010231000168106 Aprolan 1010231000168106 Aprolan 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +18023011000036105 Karvea 150 mg film-coated tablet, 30, blister pack 101706 11232011000036102 Karvea 150 mg film-coated tablet, 30 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 27523011000036102 irbesartan 150 mg tablet, 30 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +61040011000036102 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 20, blister pack 67363 56983011000036105 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet, 20 54147011000036101 Period Pain Relief (Pharmacist Formula) 275 mg film-coated tablet 53575011000036100 Period Pain Relief (Pharmacist Formula) 53575011000036100 Period Pain Relief (Pharmacist Formula) 63677011000036100 naproxen sodium 275 mg tablet, 20 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +122501000036108 Actisorb Plus (MAP105) 10.5 cm x 10.5 cm dressing, 1, carton 122301000036103 Actisorb Plus (MAP105) 10.5 cm x 10.5 cm dressing, 1 122221000036100 Actisorb Plus (MAP105) 10.5 cm x 10.5 cm dressing 18911000168108 Actisorb Plus (MAP105) 18911000168108 Actisorb Plus (MAP105) 51320011000036104 dressing activated charcoal malodorous wound 10.5 cm x 10.5 cm dressing, 1 50848011000036105 dressing activated charcoal malodorous wound 10.5 cm x 10.5 cm dressing 50710011000036101 dressing activated charcoal malodorous wound +46161000036107 Atorvastatin (Stada) 20 mg film-coated tablet, 30, blister pack 180332 43441000036106 Atorvastatin (Stada) 20 mg film-coated tablet, 30 40781000036100 Atorvastatin (Stada) 20 mg film-coated tablet 40251000036104 Atorvastatin (Stada) 40251000036104 Atorvastatin (Stada) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +955801000168106 Conray-280 600 mg (iodine 280 mg)/mL injection solution, 10 x 50 mL vials 51542 955791000168105 Conray-280 600 mg (iodine 280 mg)/mL injection solution, 10 x 50 mL vials 955771000168109 Conray-280 600 mg (iodine 280 mg)/mL injection solution, 50 mL vial 955511000168107 Conray-280 955511000168107 Conray-280 955781000168107 iotalamate meglumine 600 mg (iodine 280 mg)/mL injection, 10 x 50 mL vials 955761000168103 iotalamate meglumine 600 mg (iodine 280 mg)/mL injection, 50 mL vial 955751000168100 iotalamic acid +1068381000168100 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 40, blister pack 188379 1068371000168103 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet, 40 1068241000168104 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) uncoated tablet 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 1068231000168108 Paracetamol 500 mg and Codeine Phosphate Hemihydrate 15 mg (Medreich) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +165711000036100 Topra 40 mg enteric tablet, 30, bottle 191578 163841000036108 Topra 40 mg enteric tablet, 30 162051000036109 Topra 40 mg enteric tablet 161951000036101 Topra 161951000036101 Topra 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +994371000168103 Citalopram (Apo) 20 mg film-coated tablet, 500, bottle 233166 994361000168109 Citalopram (Apo) 20 mg film-coated tablet, 500 78654011000036105 Citalopram (Apo) 20 mg film-coated tablet 78588011000036104 Citalopram (Apo) 78588011000036104 Citalopram (Apo) 933203261000036103 citalopram 20 mg tablet, 500 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +933231441000036108 Targocid (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack, composite pack 47886 933225921000036108 Targocid (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack 634511000168105 Targocid (inert substance) diluent, 3 mL ampoule 39589011000036100 Targocid 39589011000036100 Targocid 932386011000036102 teicoplanin 400 mg injection [1 vial] (&) inert substance diluent [3 mL ampoule], 1 pack 632311000168109 inert substance diluent, 3 mL ampoule 21220011000036103 inert substance +933231441000036108 Targocid (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack, composite pack 47886 933225921000036108 Targocid (1 x 400 mg vial, 1 x 3 mL inert diluent ampoule), 1 pack 40040011000036104 Targocid (teicoplanin 400 mg) powder for injection, 400 mg vial 39589011000036100 Targocid 39589011000036100 Targocid 932386011000036102 teicoplanin 400 mg injection [1 vial] (&) inert substance diluent [3 mL ampoule], 1 pack 45107011000036108 teicoplanin 400 mg injection, vial 44926011000036107 teicoplanin +830491000168102 Atomoxetine (Apo) 25 mg hard capsule, 28, blister pack 234804 830481000168100 Atomoxetine (Apo) 25 mg hard capsule, 28 830421000168104 Atomoxetine (Apo) 25 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +18729011000036105 Neo-Cytamen 1 mg/mL injection solution, 2 x 1 mL ampoules 10226 11251011000036107 Neo-Cytamen 1 mg/mL injection solution, 2 x 1 mL ampoules 4864011000036104 Neo-Cytamen 1 mg/mL injection solution, ampoule 3775011000036109 Neo-Cytamen 3775011000036109 Neo-Cytamen 26569011000036107 hydroxocobalamin 1 mg/mL injection, 2 x 1 mL ampoules 22131011000036106 hydroxocobalamin 1 mg/mL injection, ampoule 21828011000036108 hydroxocobalamin +1096851000168104 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 2, blister pack 287475 1096841000168101 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 2 1096831000168105 Strepsils Extra Honey and Lemon 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72002011000036107 hexylresorcinol 2.4 mg lozenge, 2 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +68792011000036101 Bosisto's Eucalyptus Rub cream, 125 g, tube 10909 66571011000036106 Bosisto's Eucalyptus Rub cream, 125 g 65505011000036103 Bosisto's Eucalyptus Rub cream 65060011000036108 Bosisto's Eucalyptus Rub 65060011000036108 Bosisto's Eucalyptus Rub 71294011000036106 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream, 125 g 69935011000036105 methyl salicylate 7.5% + eucalyptus oil 9% + menthol 3% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +895181000168106 Olmertan Combi 40/25 film-coated tablet, 30, blister pack 221131 895171000168108 Olmertan Combi 40/25 film-coated tablet, 30 895161000168102 Olmertan Combi 40/25 film-coated tablet 895121000168107 Olmertan Combi 40/25 895121000168107 Olmertan Combi 40/25 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +59876011000036109 Mylanta Ranitidine 24 Hour Action 300 mg film-coated tablet, 7, blister pack 116268 55838011000036103 Mylanta Ranitidine 24 Hour Action 300 mg film-coated tablet, 7 53660011000036109 Mylanta Ranitidine 24 Hour Action 300 mg film-coated tablet 23171000168104 Mylanta Ranitidine 24 Hour Action 23171000168104 Mylanta Ranitidine 24 Hour Action 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +44701011000036102 Fabrazyme 5 mg powder for injection, 1 vial 94000 42150011000036101 Fabrazyme 5 mg powder for injection, 1 vial 40369011000036104 Fabrazyme 5 mg powder for injection, 5 mg vial 39652011000036106 Fabrazyme 39652011000036106 Fabrazyme 46911011000036104 agalsidase beta 5 mg injection, 1 vial 45344011000036103 agalsidase beta 5 mg injection, vial 44867011000036106 agalsidase beta +899531000168104 Fluquadri Junior 2017 injection suspension, 5 x 0.25 mL syringes 213964 899521000168102 Fluquadri Junior 2017 injection suspension, 5 x 0.25 mL syringes 899501000168106 Fluquadri Junior 2017 injection suspension, 0.25 mL syringe 899481000168102 Fluquadri Junior 2017 899481000168102 Fluquadri Junior 2017 899511000168109 influenza quadrivalent child vaccine 2017 injection, 5 x 0.25 mL syringes 899491000168104 influenza quadrivalent child vaccine 2017 injection, 0.25 mL syringe 899391000168108 influenza quadrivalent vaccine 2017 +1092511000168101 Antiseptic Solution (Chemists' Own) 10% solution, 15 mL, bottle 281502 1092501000168104 Antiseptic Solution (Chemists' Own) 10% solution, 15 mL 1092491000168106 Antiseptic Solution (Chemists' Own) 10% solution 1092481000168108 Antiseptic Solution (Chemists' Own) 1092481000168108 Antiseptic Solution (Chemists' Own) 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +1050741000168102 Bupredermal 15 microgram/hour patch, 2, sachet 234743 1050731000168106 Bupredermal 15 microgram/hour patch, 2 1050721000168108 Bupredermal 15 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 776161000168100 buprenorphine 15 microgram/hour patch, 2 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +37557011000036109 Lanoxin 250 microgram uncoated tablet, 100, blister pack 15333 11419011000036104 Lanoxin 250 microgram uncoated tablet, 100 5724011000036104 Lanoxin 250 microgram uncoated tablet 3340011000036103 Lanoxin 3340011000036103 Lanoxin 28006011000036108 digoxin 250 microgram tablet, 100 23329011000036109 digoxin 250 microgram tablet 21696011000036109 digoxin +852071000168107 Olmesartan HCT 40/25 (Myl) film-coated tablet, 10, blister pack 273578 852061000168101 Olmesartan HCT 40/25 (Myl) film-coated tablet, 10 852051000168103 Olmesartan HCT 40/25 (Myl) film-coated tablet 852041000168100 Olmesartan HCT 40/25 (Myl) 852041000168100 Olmesartan HCT 40/25 (Myl) 727451000168107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 10 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +933247611000036102 Cefazolin (Sandoz) 1 g powder for injection, 10 vials 75956 933244511000036107 Cefazolin (Sandoz) 1 g powder for injection, 10 vials 6815011000036107 Cefazolin (Sandoz) 1 g powder for injection, vial 3337011000036101 Cefazolin (Sandoz) 3337011000036101 Cefazolin (Sandoz) 26880011000036103 cefazolin 1 g injection, 10 vials 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +37387011000036100 Xylocaine 0.5% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 12008 36683011000036103 Xylocaine 0.5% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 36143011000036108 Xylocaine 0.5% with Adrenaline 1 in 200 000 injection solution, 20 mL vial 52971000168107 Xylocaine 0.5% with Adrenaline 1 in 200 000 52971000168107 Xylocaine 0.5% with Adrenaline 1 in 200 000 38596011000036107 lidocaine (lignocaine) hydrochloride 0.5% (100 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, 5 x 20 mL vials 37867011000036104 lidocaine (lignocaine) hydrochloride 0.5% (100 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, vial 37708011000036104 lidocaine (lignocaine) + adrenaline (epinephrine) +929017011000036108 Nivestim 300 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 160108 928378011000036100 Nivestim 300 microgram/0.5 mL injection solution, 5 x 0.5 mL syringes 927960011000036106 Nivestim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 929230011000036105 filgrastim 300 microgram/0.5 mL injection, 5 x 0.5 mL syringes 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +676261000168101 Dipyridamole/Aspirin 200/25 (Apo) modified release capsule, 60, bottle 210813 676251000168103 Dipyridamole/Aspirin 200/25 (Apo) modified release capsule, 60 676241000168100 Dipyridamole/Aspirin 200/25 (Apo) modified release capsule 675991000168106 Dipyridamole/Aspirin 200/25 (Apo) 675991000168106 Dipyridamole/Aspirin 200/25 (Apo) 27629011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule, 60 22967011000036109 dipyridamole 200 mg + aspirin 25 mg modified release capsule 21386011000036101 dipyridamole + aspirin +677791000168101 Osteomol 665 mg modified release tablet, 96, bottle 227075 677781000168104 Osteomol 665 mg modified release tablet, 96 677771000168102 Osteomol 665 mg modified release tablet 677761000168108 Osteomol 677761000168108 Osteomol 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +50220011000036103 Comfeel (4701) paste, 50 g, tube 49430011000036108 Comfeel (4701) paste, 50 g 48598011000036105 Comfeel (4701) paste 34741000168106 Comfeel (4701) 34741000168106 Comfeel (4701) 51398011000036107 dressing hydrocolloid cavity wound paste, 50 g 50918011000036108 dressing hydrocolloid cavity wound paste 50740011000036105 dressing hydrocolloid cavity wound +857731000168108 Allermom Aqueous 50 microgram/actuation nasal spray, 120 actuations, pump pack 233572 857721000168105 Allermom Aqueous 50 microgram/actuation nasal spray, 120 actuations 857671000168102 Allermom Aqueous 50 microgram/actuation nasal spray, actuation 857651000168106 Allermom Aqueous 857651000168106 Allermom Aqueous 857711000168103 mometasone furoate 50 microgram/actuation nasal spray, 120 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +933231801000036107 Diclofenac Sodium (Sandoz) 25 mg enteric tablet, 50, blister pack 63664 933226221000036106 Diclofenac Sodium (Sandoz) 25 mg enteric tablet, 50 933221071000036108 Diclofenac Sodium (Sandoz) 25 mg enteric tablet 933218871000036103 Diclofenac Sodium (Sandoz) 933218871000036103 Diclofenac Sodium (Sandoz) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +21177011000036104 Brinzoquin 1% eye drops, 5 mL, bottle 99179 14318011000036106 Brinzoquin 1% eye drops, 5 mL 7604011000036104 Brinzoquin 1% eye drops 3988011000036103 Brinzoquin 3988011000036103 Brinzoquin 28309011000036100 brinzolamide 1% eye drops, 5 mL 23623011000036104 brinzolamide 1% eye drops 21710011000036101 brinzolamide +920797011000036108 Alprazolam (GA) 2 mg tablet, 50, bottle 82799 920476011000036106 Alprazolam (GA) 2 mg tablet, 50 920208011000036100 Alprazolam (GA) 2 mg tablet 920075011000036107 Alprazolam (GA) 920075011000036107 Alprazolam (GA) 28283011000036106 alprazolam 2 mg tablet, 50 23597011000036107 alprazolam 2 mg tablet 21284011000036103 alprazolam +792951000168109 Flecainide (Sandoz) 100 mg uncoated tablet, 60, blister pack 232474 792941000168107 Flecainide (Sandoz) 100 mg uncoated tablet, 60 792931000168103 Flecainide (Sandoz) 100 mg uncoated tablet 792851000168101 Flecainide (Sandoz) 792851000168101 Flecainide (Sandoz) 27642011000036102 flecainide acetate 100 mg tablet, 60 22979011000036105 flecainide acetate 100 mg tablet 21457011000036102 flecainide +926724011000036101 Prothrombinex-VF (1 x vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 124381 926123011000036107 Prothrombinex-VF (1 x vial, 1 x 20 mL inert diluent vial), 1 pack 640511000168104 Prothrombinex-VF (inert substance) diluent, 20 mL vial 46281000168102 Prothrombinex-VF 46281000168102 Prothrombinex-VF 927315011000036105 factor II 500 units + factor IX 500 units + factor X 500 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 639231000168104 inert substance diluent, 20 mL vial 21220011000036103 inert substance +926724011000036101 Prothrombinex-VF (1 x vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 124381 926123011000036107 Prothrombinex-VF (1 x vial, 1 x 20 mL inert diluent vial), 1 pack 925630011000036102 Prothrombinex-VF (factor II 500 units + factor IX 500 units + factor X 500 units) powder for injection, vial 46281000168102 Prothrombinex-VF 46281000168102 Prothrombinex-VF 927315011000036105 factor II 500 units + factor IX 500 units + factor X 500 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 926987011000036108 factor II 500 units + factor IX 500 units + factor X 500 units injection, vial 926968011000036107 factor II + factor IX + factor X +869241000168109 Pacrolim 5 mg hard capsule, 50, blister pack 224271 869231000168100 Pacrolim 5 mg hard capsule, 50 869201000168107 Pacrolim 5 mg hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 27423011000036108 tacrolimus 5 mg capsule, 50 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +156941000036101 Enalapril Maleate (Apo) 20 mg tablet, 30, blister pack 196504 155971000036101 Enalapril Maleate (Apo) 20 mg tablet, 30 154711000036106 Enalapril Maleate (Apo) 20 mg tablet 154461000036100 Enalapril Maleate (Apo) 154461000036100 Enalapril Maleate (Apo) 28182011000036101 enalapril maleate 20 mg tablet, 30 23492011000036100 enalapril maleate 20 mg tablet 21317011000036101 enalapril +860701000168107 Ambotens HCT 300/25 film-coated tablet, 30, blister pack 189376 860691000168107 Ambotens HCT 300/25 film-coated tablet, 30 860681000168109 Ambotens HCT 300/25 film-coated tablet 860671000168106 Ambotens HCT 300/25 860671000168106 Ambotens HCT 300/25 26796011000036101 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet, 30 22182011000036106 irbesartan 300 mg + hydrochlorothiazide 25 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +60585011000036107 Polaramine Repetab 6 mg modified release tablet, 40, blister pack 18195 56543011000036105 Polaramine Repetab 6 mg modified release tablet, 40 53964011000036103 Polaramine Repetab 6 mg modified release tablet 34221000168105 Polaramine Repetab 34221000168105 Polaramine Repetab 63409011000036102 dexchlorpheniramine maleate 6 mg modified release tablet, 40 61947011000036108 dexchlorpheniramine maleate 6 mg modified release tablet 61749011000036105 dexchlorpheniramine +856411000168105 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle 856401000168107 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet, 24 856391000168105 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet 856381000168107 Calcium (GH) 856381000168107 Calcium (GH) 847931000168108 calcium carbonate 1.25 g (calcium 500 mg) tablet, 24 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +964301000168105 Normatens 300 microgram film-coated tablet, 14, blister pack 114123 964291000168109 Normatens 300 microgram film-coated tablet, 14 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964281000168106 moxonidine 300 microgram tablet, 14 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +967271000168101 Tramadol (Sandoz) 50 mg/mL injection solution, 5 x 1 mL ampoules 102012 967261000168107 Tramadol (Sandoz) 50 mg/mL injection solution, 5 x 1 mL ampoules 967251000168105 Tramadol (Sandoz) 50 mg/mL injection solution, ampoule 87293011000036107 Tramadol (Sandoz) 87293011000036107 Tramadol (Sandoz) 73524011000036100 tramadol hydrochloride 50 mg/mL injection, 5 x 1 mL ampoules 73384011000036107 tramadol hydrochloride 50 mg/mL injection, ampoule 21486011000036105 tramadol +654711000168103 Glimepiride (AN) 4 mg uncoated tablet, 30, blister pack 156407 654701000168101 Glimepiride (AN) 4 mg uncoated tablet, 30 654691000168101 Glimepiride (AN) 4 mg uncoated tablet 654591000168100 Glimepiride (AN) 654591000168100 Glimepiride (AN) 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +785761000168101 Oxycodone (Sandoz) 5 mg modified release tablet, 28, bottle 153613 679361000168100 Oxycodone (Sandoz) 5 mg modified release tablet, 28 679351000168102 Oxycodone (Sandoz) 5 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929278011000036105 oxycodone hydrochloride 5 mg modified release tablet, 28 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +18864011000036104 Diprosone 0.05% ointment, 15 g, tube 144098 12175011000036106 Diprosone 0.05% ointment, 15 g 5175011000036105 Diprosone 0.05% ointment 10951000168106 Diprosone 10951000168106 Diprosone 27083011000036106 betamethasone (as dipropionate) 0.05% ointment, 15 g 22452011000036100 betamethasone (as dipropionate) 0.05% ointment 21372011000036109 betamethasone dipropionate +18864011000036104 Diprosone 0.05% ointment, 15 g, tube 18821 12175011000036106 Diprosone 0.05% ointment, 15 g 5175011000036105 Diprosone 0.05% ointment 10951000168106 Diprosone 10951000168106 Diprosone 27083011000036106 betamethasone (as dipropionate) 0.05% ointment, 15 g 22452011000036100 betamethasone (as dipropionate) 0.05% ointment 21372011000036109 betamethasone dipropionate +1068061000168107 Codral Multi Action uncoated tablet, 48, blister pack 170441 1068051000168105 Codral Multi Action uncoated tablet, 48 1067931000168101 Codral Multi Action uncoated tablet 1067901000168108 Codral Multi Action 1067901000168108 Codral Multi Action 1068041000168108 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet, 48 1067921000168104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg + chlorphenamine maleate 2 mg tablet 1067911000168106 paracetamol + codeine + phenylephrine + chlorphenamine +921161000168104 Cilopam 20 mg film-coated tablet, 250, bottle 158865 921151000168101 Cilopam 20 mg film-coated tablet, 250 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 46709011000036105 citalopram 20 mg tablet, 250 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +61613011000036105 Nurofen Liquid Capsule 200 mg soft capsule, 30, blister pack 96115 57535011000036109 Nurofen Liquid Capsule 200 mg soft capsule, 30 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63931011000036105 ibuprofen 200 mg capsule, 30 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +960051000168101 Stilnoxium CR 6.25 mg modified release tablet, 21, blister pack 120711 960041000168103 Stilnoxium CR 6.25 mg modified release tablet, 21 959931000168105 Stilnoxium CR 6.25 mg modified release tablet 959921000168107 Stilnoxium CR 959921000168107 Stilnoxium CR 46180011000036106 zolpidem tartrate 6.25 mg modified release tablet, 21 45020011000036107 zolpidem tartrate 6.25 mg modified release tablet 44930011000036107 zolpidem +160231000036107 Crosuva 10 mg film-coated tablet, 30, blister pack 183642 158971000036109 Crosuva 10 mg film-coated tablet, 30 158251000036109 Crosuva 10 mg film-coated tablet 157751000036102 Crosuva 157751000036102 Crosuva 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +934091000168105 Serevent Disks 50 microgram powder for inhalation, 60 unit doses, blister pack 43410 934081000168107 Serevent Disks 50 microgram powder for inhalation, 60 unit doses 934061000168103 Serevent Disks 50 microgram powder for inhalation, 50 microgram unit dose 934041000168102 Serevent Disks 934041000168102 Serevent Disks 934071000168109 salmeterol 50 microgram powder for inhalation, 60 unit doses 934051000168100 salmeterol 50 microgram powder for inhalation, unit dose 21854011000036100 salmeterol +60827011000036108 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 12, blister pack 58353 56783011000036100 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule, 12 54080011000036103 Dimetapp Cold and Flu Night Relief Liquid Cap soft capsule 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 6911000168109 Dimetapp Cold and Flu Night Relief Liquid Cap 63566011000036103 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule, 12 62019011000036104 dextromethorphan hydrobromide monohydrate 10 mg + pseudoephedrine hydrochloride 30 mg + paracetamol 300 mg + doxylamine succinate 6.25 mg capsule 61710011000036108 dextromethorphan + pseudoephedrine + paracetamol + doxylamine +1059401000168103 Atomoxetine (Medis) 80 mg hard capsule, 7, blister pack 238333 1059391000168100 Atomoxetine (Medis) 80 mg hard capsule, 7 1059381000168103 Atomoxetine (Medis) 80 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +19498011000036100 Febridol 500 mg uncoated tablet, 100, blister pack 213738 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19498011000036100 Febridol 500 mg uncoated tablet, 100, blister pack 287228 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19498011000036100 Febridol 500 mg uncoated tablet, 100, blister pack 55349 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19498011000036100 Febridol 500 mg uncoated tablet, 100, blister pack 207316 12774011000036101 Febridol 500 mg uncoated tablet, 100 6068011000036104 Febridol 500 mg uncoated tablet 37281000168101 Febridol 37281000168101 Febridol 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +981621000168109 Desowen 0.05% ointment, 60 g, tube 67174 981611000168102 Desowen 0.05% ointment, 60 g 981371000168100 Desowen 0.05% ointment 39556011000036104 Desowen 39556011000036104 Desowen 981601000168100 desonide 0.05% ointment, 60 g 981361000168106 desonide 0.05% ointment 44914011000036107 desonide +926737011000036105 Lisinopril (GA) 2.5 mg uncoated tablet, 28, blister pack 106498 926085011000036107 Lisinopril (GA) 2.5 mg uncoated tablet, 28 925598011000036104 Lisinopril (GA) 2.5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 927300011000036104 lisinopril 2.5 mg tablet, 28 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +85331000036102 Lucassin 850 microgram powder for injection, 12 vials 176845 84491000036107 Lucassin 850 microgram powder for injection, 12 vials 84021000036102 Lucassin 850 microgram powder for injection, 850 microgram vial 84001000036107 Lucassin 84001000036107 Lucassin 84501000036100 terlipressin 850 microgram injection, 12 vials 84031000036100 terlipressin 850 microgram injection, vial 85671000036109 terlipressin +131231000036108 Candesartan Cilexetil (GA) 8 mg uncoated tablet, 30, blister pack 195491 128301000036100 Candesartan Cilexetil (GA) 8 mg uncoated tablet, 30 124861000036102 Candesartan Cilexetil (GA) 8 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +929098011000036108 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 98, blister pack 166915 928459011000036103 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet, 98 927988011000036105 Pioglitazone (Terry White Chemists) 30 mg uncoated tablet 927781011000036109 Pioglitazone (Terry White Chemists) 927781011000036109 Pioglitazone (Terry White Chemists) 929265011000036108 pioglitazone 30 mg tablet, 98 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +37522011000036108 Syntocinon 5 units/mL injection solution, 5 x 1 mL ampoules 13395 36790011000036103 Syntocinon 5 units/mL injection solution, 5 x 1 mL ampoules 36160011000036105 Syntocinon 5 units/mL injection solution, ampoule 35899011000036109 Syntocinon 35899011000036109 Syntocinon 38687011000036104 oxytocin 5 units/mL injection, 5 x 1 mL ampoules 37926011000036103 oxytocin 5 units/mL injection, ampoule 37765011000036106 oxytocin +20722011000036101 Valcyte 450 mg film-coated tablet, 60, bottle 82903 13892011000036107 Valcyte 450 mg film-coated tablet, 60 7178011000036103 Valcyte 450 mg film-coated tablet 2958011000036101 Valcyte 2958011000036101 Valcyte 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +1024841000168100 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 60, blister pack 193298 1024831000168109 Pregabalin (Blooms The Chemist) 25 mg hard capsule, 60 1024761000168105 Pregabalin (Blooms The Chemist) 25 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 854781000168101 pregabalin 25 mg capsule, 60 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +925199011000036101 Paclitaxel (Kabi) 100 mg/16.7 mL concentrated injection, 5 x 16.7 mL vials 156272 924736011000036102 Paclitaxel (Kabi) 100 mg/16.7 mL concentrated injection, 5 x 16.7 mL vials 924444011000036101 Paclitaxel (Kabi) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 924407011000036104 Paclitaxel (Kabi) 924407011000036104 Paclitaxel (Kabi) 925411011000036102 paclitaxel 100 mg/16.7 mL injection, 5 x 16.7 mL vials 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +920711011000036101 Ciprofloxacin (DBL) 100 mg/50 mL intravenous infusion injection, 10 x 50 mL bags 123038 920378011000036102 Ciprofloxacin (DBL) 100 mg/50 mL intravenous infusion injection, 10 x 50 mL bags 920144011000036100 Ciprofloxacin (DBL) 100 mg/50 mL intravenous infusion injection, 50 mL bag 920086011000036107 Ciprofloxacin (DBL) 920086011000036107 Ciprofloxacin (DBL) 46207011000036108 ciprofloxacin 100 mg/50 mL injection, 10 x 50 mL bags 45031011000036103 ciprofloxacin 100 mg/50 mL injection, bag 21245011000036105 ciprofloxacin +165621000036100 Agrippal 2014 injection suspension, 1 x 0.5 mL syringe 144670 163701000036103 Agrippal 2014 injection suspension, 1 x 0.5 mL syringe 162061000036107 Agrippal 2014 injection suspension, 0.5 mL syringe 5961000168102 Agrippal 2014 5961000168102 Agrippal 2014 163631000036104 influenza trivalent adult vaccine 2014 injection, 1 x 0.5 mL syringe 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +87666011000036102 Ciprofloxacin (GA) 750 mg film-coated tablet, 8, blister pack 148856 87428011000036108 Ciprofloxacin (GA) 750 mg film-coated tablet, 8 87303011000036100 Ciprofloxacin (GA) 750 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 87798011000036108 ciprofloxacin 750 mg tablet, 8 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +933214441000036104 Reditra 100 mg film-coated tablet, 30, blister pack 160780 933203741000036106 Reditra 100 mg film-coated tablet, 30 933195871000036106 Reditra 100 mg film-coated tablet 933193551000036103 Reditra 933193551000036103 Reditra 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +931634011000036107 Aranesp with Automatic Needle Guard 30 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 166092 930794011000036101 Aranesp with Automatic Needle Guard 30 microgram/0.3 mL injection solution, 4 x 0.3 mL syringes 930049011000036107 Aranesp with Automatic Needle Guard 30 microgram/0.3 mL injection solution, 0.3 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27854011000036103 darbepoetin alfa 30 microgram/0.3 mL injection, 4 x 0.3 mL syringes 23182011000036102 darbepoetin alfa 30 microgram/0.3 mL injection, syringe 21234011000036105 darbepoetin alfa +719491000168100 Acivision 3% eye ointment, 4.5 g, tube 719481000168103 Acivision 3% eye ointment, 4.5 g 719471000168101 Acivision 3% eye ointment 719461000168107 Acivision 719461000168107 Acivision 26635011000036108 aciclovir 3% eye ointment, 4.5 g 22041011000036101 aciclovir 3% eye ointment 21239011000036106 aciclovir +24321000036108 Cadatin 5/20 film-coated tablet, 30, blister pack 179137 22721000036103 Cadatin 5/20 film-coated tablet, 30 20121000036103 Cadatin 5/20 film-coated tablet 55241000168101 Cadatin 5/20 55241000168101 Cadatin 5/20 26543011000036103 amlodipine 5 mg + atorvastatin 20 mg tablet, 30 21952011000036101 amlodipine 5 mg + atorvastatin 20 mg tablet 21361011000036108 amlodipine + atorvastatin +60945011000036107 Claratyne 10 mg effervescent tablet, 2, tube 62135 56888011000036107 Claratyne 10 mg effervescent tablet, 2 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63632011000036100 loratadine 10 mg effervescent tablet, 2 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +883861000168107 Betahistine (Actavis) 16 mg tablet, 25, blister pack 231719 883851000168105 Betahistine (Actavis) 16 mg tablet, 25 883821000168102 Betahistine (Actavis) 16 mg tablet 883671000168100 Betahistine (Actavis) 883671000168100 Betahistine (Actavis) 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +1023551000168102 Aripiprazole (Teva) 5 mg uncoated tablet, 30, blister pack 237892 1023541000168104 Aripiprazole (Teva) 5 mg uncoated tablet, 30 1023531000168108 Aripiprazole (Teva) 5 mg uncoated tablet 1023011000168106 Aripiprazole (Teva) 1023011000168106 Aripiprazole (Teva) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +20391011000036103 Auspril 10 mg uncoated tablet, 30, blister pack 77036 13599011000036101 Auspril 10 mg uncoated tablet, 30 6882011000036101 Auspril 10 mg uncoated tablet 3629011000036103 Auspril 3629011000036103 Auspril 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +20391011000036103 Auspril 10 mg uncoated tablet, 30, blister pack 121757 13599011000036101 Auspril 10 mg uncoated tablet, 30 6882011000036101 Auspril 10 mg uncoated tablet 3629011000036103 Auspril 3629011000036103 Auspril 28181011000036107 enalapril maleate 10 mg tablet, 30 23491011000036106 enalapril maleate 10 mg tablet 21317011000036101 enalapril +19996011000036102 Lioresal 25 mg uncoated tablet, 100, blister pack 68365 13233011000036100 Lioresal 25 mg uncoated tablet, 100 6515011000036108 Lioresal 25 mg uncoated tablet 3860011000036106 Lioresal 3860011000036106 Lioresal 28087011000036107 baclofen 25 mg tablet, 100 23395011000036100 baclofen 25 mg tablet 21227011000036102 baclofen +69060011000036102 Whitfield's (Gold Cross) ointment, 500 g, jar 14293 66862011000036108 Whitfield's (Gold Cross) ointment, 500 g 65317011000036109 Whitfield's (Gold Cross) ointment 64954011000036109 Whitfield's (Gold Cross) 64954011000036109 Whitfield's (Gold Cross) 71470011000036109 benzoic acid 6% + salicylic acid 3% ointment, 500 g 52252011000036107 benzoic acid 6% + salicylic acid 3% ointment 52238011000036109 benzoic acid + salicylic acid +30603011000036106 Septrin sugar free oral liquid suspension, 100 mL, bottle 11000 30581011000036103 Septrin sugar free oral liquid suspension, 100 mL 4906011000036101 Septrin sugar free oral liquid suspension, 5 mL 19341000168100 Septrin 19341000168100 Septrin 26949011000036105 trimethoprim 40 mg/5 mL + sulfamethoxazole 200 mg/5 mL oral liquid, 100 mL 22324011000036100 trimethoprim 40 mg/5 mL + sulfamethoxazole 200 mg/5 mL oral liquid 21461011000036103 trimethoprim + sulfamethoxazole +849101000168107 Itracap 100 mg hard capsule, 28, blister pack 244472 849091000168102 Itracap 100 mg hard capsule, 28 849021000168104 Itracap 100 mg hard capsule 849011000168106 Itracap 849011000168106 Itracap 848911000168104 itraconazole 100 mg capsule, 28 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +990441000168106 Paracetamol Children's Concentrated 5 to 12 Years (Blooms The Chemist) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL, bottle 192007 990431000168102 Paracetamol Children's Concentrated 5 to 12 Years (Blooms The Chemist) Colour Free 240 mg/5 mL oral liquid suspension, 200 mL 990421000168100 Paracetamol Children's Concentrated 5 to 12 Years (Blooms The Chemist) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 990411000168107 Paracetamol Children's Concentrated 5 to 12 Years (Blooms The Chemist) 990411000168107 Paracetamol Children's Concentrated 5 to 12 Years (Blooms The Chemist) 27229011000036107 paracetamol 240 mg/5 mL oral liquid, 200 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +20287011000036104 Indapamide Hemihydrate (Terry White Chemists) 2.5 mg film-coated tablet, 90, blister pack 167029 13496011000036102 Indapamide Hemihydrate (Terry White Chemists) 2.5 mg film-coated tablet, 90 6778011000036105 Indapamide Hemihydrate (Terry White Chemists) 2.5 mg film-coated tablet 2953011000036106 Indapamide Hemihydrate (Terry White Chemists) 2953011000036106 Indapamide Hemihydrate (Terry White Chemists) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +20287011000036104 Indapamide Hemihydrate (Terry White Chemists) 2.5 mg film-coated tablet, 90, blister pack 75571 13496011000036102 Indapamide Hemihydrate (Terry White Chemists) 2.5 mg film-coated tablet, 90 6778011000036105 Indapamide Hemihydrate (Terry White Chemists) 2.5 mg film-coated tablet 2953011000036106 Indapamide Hemihydrate (Terry White Chemists) 2953011000036106 Indapamide Hemihydrate (Terry White Chemists) 27774011000036102 indapamide hemihydrate 2.5 mg tablet, 90 23104011000036107 indapamide hemihydrate 2.5 mg tablet 21855011000036101 indapamide +44053011000036107 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 48329 41540011000036107 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 5 x 20 mL vials 40049011000036105 Marcain 0.5% with Adrenaline 1 in 200 000 injection solution, 20 mL vial 3151000168100 Marcain 0.5% with Adrenaline 1 in 200 000 3151000168100 Marcain 0.5% with Adrenaline 1 in 200 000 46375011000036101 bupivacaine hydrochloride monohydrate 0.5% (100 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, 5 x 20 mL vials 45115011000036101 bupivacaine hydrochloride monohydrate 0.5% (100 mg/20 mL) + adrenaline (epinephrine) 1 in 200 000 (100 microgram/20 mL) injection, vial 37718011000036101 bupivacaine + adrenaline (epinephrine) +993051000168107 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 50, blister pack 201680 993041000168105 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet, 50 992841000168108 Clopidogrel/Aspirin 75/75 (Apo) film-coated tablet 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 992821000168102 Clopidogrel/Aspirin 75/75 (Apo) 993031000168101 clopidogrel 75 mg + aspirin 75 mg tablet, 50 992831000168104 clopidogrel 75 mg + aspirin 75 mg tablet 82432011000036105 clopidogrel + aspirin +990401000168109 Paracetamol Children's 1 to 5 Years (Blooms The Chemist) Colour Free 120 mg/5 mL oral liquid solution, 200 mL, bottle 191028 990391000168107 Paracetamol Children's 1 to 5 Years (Blooms The Chemist) Colour Free 120 mg/5 mL oral liquid solution, 200 mL 990381000168109 Paracetamol Children's 1 to 5 Years (Blooms The Chemist) Colour Free 120 mg/5 mL oral liquid solution, 5 mL 990371000168106 Paracetamol Children's 1 to 5 Years (Blooms The Chemist) 990371000168106 Paracetamol Children's 1 to 5 Years (Blooms The Chemist) 63816011000036103 paracetamol 120 mg/5 mL oral liquid, 200 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +931437011000036103 Oraqix oral gel, 20 x 1.7 g cartridges 143855 930616011000036103 Oraqix oral gel, 20 x 1.7 g 929975011000036103 Oraqix oral gel 929830011000036101 Oraqix 929830011000036101 Oraqix 932372011000036105 lidocaine (lignocaine) 2.5% + prilocaine 2.5% oral gel, 20 x 1.7 g 931838011000036106 lidocaine (lignocaine) 2.5% + prilocaine 2.5% oral gel 61738011000036101 lidocaine (lignocaine) + prilocaine +68818011000036100 Coloxyl Drops 100 mg/mL oral liquid solution, 30 mL, bottle 124463 66677011000036109 Coloxyl Drops 100 mg/mL oral liquid solution, 30 mL 65389011000036100 Coloxyl Drops 100 mg/mL oral liquid solution, drop 64966011000036109 Coloxyl Drops 64966011000036109 Coloxyl Drops 71380011000036106 poloxamer 100 mg/mL oral liquid, 30 mL 69982011000036108 poloxamer 100 mg/mL oral liquid, drop 69805011000036106 poloxamer +669131000168100 Macrovic Flavoured Lemon powder for oral liquid, 2 sachets 220581 669121000168103 Macrovic Flavoured Lemon powder for oral liquid, 2 sachets 669111000168105 Macrovic Flavoured Lemon powder for oral liquid, sachet 668291000168102 Macrovic 668291000168102 Macrovic 669021000168104 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 2 sachets 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 32631011000036109 macrogol-3350 + sodium chloride + bicarbonate + potassium chloride +50203011000036104 Duoderm Gel (H7990), 10 x 15 g tubes 158690 49459011000036103 Duoderm Gel (H7990), 10 x 15 g 171091000168106 Duoderm Gel (H7990) gel 52221000168104 Duoderm Gel (H7990) 52221000168104 Duoderm Gel (H7990) 51420011000036106 dressing hydrogel amorphous gel, 10 x 15 g 50938011000036104 dressing hydrogel amorphous gel 50771011000036102 dressing hydrogel amorphous +932561000168100 Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL, aerosol can 73424 932551000168102 Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL 932541000168104 Fluoride (Laclede) Moose Mallow Flavour foam 932331000168103 Fluoride (Laclede) 932331000168103 Fluoride (Laclede) 932361000168106 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL 932341000168107 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam 61768011000036106 fluoride +921978011000036102 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 100 mL bottles 49597 921536011000036109 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 10 x 100 mL bottles 921068011000036101 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 100 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 922655011000036107 iodixanol 652 mg (iodine 320 mg)/mL injection, 10 x 100 mL bottles 922138011000036103 iodixanol 652 mg (iodine 320 mg)/mL injection, 100 mL bottle 922032011000036109 iodixanol +719451000168105 Diclofenac Sodium (GA) 25 mg enteric tablet, 50, blister pack 68940 56399011000036102 Diclofenac Sodium (GA) 25 mg enteric tablet, 50 53902011000036108 Diclofenac Sodium (GA) 25 mg enteric tablet 53267011000036108 Diclofenac Sodium (GA) 53267011000036108 Diclofenac Sodium (GA) 27884011000036109 diclofenac sodium 25 mg enteric tablet, 50 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +20054011000036109 Arava 20 mg film-coated tablet, 30 tablets, blister pack 69693 13284011000036105 Arava 20 mg film-coated tablet, 30 tablets 6567011000036102 Arava 20 mg film-coated tablet, 1 tablet 3730011000036103 Arava 3730011000036103 Arava 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +69394011000036108 Eno powder for oral liquid, 200 g, jar 40655 67194011000036109 Eno powder for oral liquid, 200 g 65237011000036106 Eno powder for oral liquid 65094011000036101 Eno 65094011000036101 Eno 71753011000036106 citric acid 436 mg/g + sodium bicarbonate 464 mg/g + sodium carbonate 100 mg/g powder for oral liquid, 200 g 70170011000036102 citric acid 436 mg/g + sodium bicarbonate 464 mg/g + sodium carbonate 100 mg/g powder for oral liquid 69783011000036106 citric acid + bicarbonate + carbonate +716801000168100 Omepro 20 mg enteric capsule, 56, bottle 167314 716761000168108 Omepro 20 mg enteric capsule, 56 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716751000168106 omeprazole 20 mg enteric capsule, 56 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +20045011000036105 Novorapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 69366 13277011000036107 Novorapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 6559011000036104 Novorapid Penfill 100 units/mL injection solution, 3 mL cartridge 35151000168105 Novorapid Penfill 35151000168105 Novorapid Penfill 27822011000036108 insulin aspart 100 units/mL injection, 5 x 3 mL cartridges 23150011000036105 insulin aspart 100 units/mL injection, cartridge 21699011000036100 insulin aspart +20045011000036105 Novorapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 133444 13277011000036107 Novorapid Penfill 100 units/mL injection solution, 5 x 3 mL cartridges 6559011000036104 Novorapid Penfill 100 units/mL injection solution, 3 mL cartridge 35151000168105 Novorapid Penfill 35151000168105 Novorapid Penfill 27822011000036108 insulin aspart 100 units/mL injection, 5 x 3 mL cartridges 23150011000036105 insulin aspart 100 units/mL injection, cartridge 21699011000036100 insulin aspart +814661000168106 Meropenem (Apo) 500 mg powder for injection, 10 vials 218844 814651000168109 Meropenem (Apo) 500 mg powder for injection, 10 vials 814641000168107 Meropenem (Apo) 500 mg powder for injection, 500 mg vial 814601000168105 Meropenem (Apo) 814601000168105 Meropenem (Apo) 46463011000036102 meropenem 500 mg injection, 10 vials 45170011000036102 meropenem 500 mg injection, vial 44940011000036106 meropenem +37496011000036108 Lamotrigine (Generic Health) 100 mg tablet, 56, blister pack 129761 36764011000036106 Lamotrigine (Generic Health) 100 mg tablet, 56 36085011000036105 Lamotrigine (Generic Health) 100 mg tablet 35966011000036108 Lamotrigine (Generic Health) 35966011000036108 Lamotrigine (Generic Health) 28296011000036104 lamotrigine 100 mg tablet, 56 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +925571000168103 Androgel 1% (25 mg/2.5 g) gel, 60 x 2.5 g sachets 96122 925561000168109 Androgel 1% (25 mg/2.5 g) gel, 60 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925551000168107 testosterone 1% (25 mg/2.5 g) gel, 60 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +988751000168102 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 48, blister pack 135089 988741000168104 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet, 48 988691000168101 Paracetamol (Blooms The Chemist) 500 mg uncoated tablet 988681000168104 Paracetamol (Blooms The Chemist) 988681000168104 Paracetamol (Blooms The Chemist) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +24411000036106 Contour diagnostic strip, 100, bottle 22021000036101 Contour diagnostic strip, 100 20891000036105 Contour diagnostic strip 19731000036101 Contour 19731000036101 Contour 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +830331000168107 Atomoxetine (Apo) 60 mg hard capsule, 56, blister pack 234788 830321000168109 Atomoxetine (Apo) 60 mg hard capsule, 56 830201000168107 Atomoxetine (Apo) 60 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830311000168102 atomoxetine 60 mg capsule, 56 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +18968011000036103 Megafol 500 microgram uncoated tablet, 100, bottle 27951 12276011000036101 Megafol 500 microgram uncoated tablet, 100 4526011000036102 Megafol 500 microgram uncoated tablet 2925011000036106 Megafol 2925011000036106 Megafol 27037011000036107 folic acid 500 microgram tablet, 100 22410011000036105 folic acid 500 microgram tablet 21654011000036106 folic acid +60130011000036104 Sinus Pain Relief (Priceline) uncoated tablet, 24, blister pack 127665 56089011000036100 Sinus Pain Relief (Priceline) uncoated tablet, 24 53785011000036108 Sinus Pain Relief (Priceline) uncoated tablet 53269011000036101 Sinus Pain Relief (Priceline) 53269011000036101 Sinus Pain Relief (Priceline) 63917011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 45331011000036102 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 44951011000036101 paracetamol + pseudoephedrine +736711000168101 Evotaz film-coated tablet, 30, bottle 229476 736701000168104 Evotaz film-coated tablet, 30 736681000168102 Evotaz film-coated tablet 736651000168109 Evotaz 736651000168109 Evotaz 736691000168104 atazanavir 300 mg + cobicistat 150 mg tablet, 30 736671000168100 atazanavir 300 mg + cobicistat 150 mg tablet 736661000168106 atazanavir + cobicistat +933211401000036104 Roflo 750 mg film-coated tablet, 20, blister pack 125324 933200491000036102 Roflo 750 mg film-coated tablet, 20 933194351000036107 Roflo 750 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 87797011000036107 ciprofloxacin 750 mg tablet, 20 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +156901000036104 Stribild film-coated tablet, 30, bottle 194081 155801000036101 Stribild film-coated tablet, 30 154661000036102 Stribild film-coated tablet 154481000036105 Stribild 154481000036105 Stribild 155811000036104 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg + elvitegravir 150 mg + cobicistat 150 mg tablet, 30 154671000036105 tenofovir disoproxil fumarate 300 mg + emtricitabine 200 mg + elvitegravir 150 mg + cobicistat 150 mg tablet 851371000168101 tenofovir disoproxil + emtricitabine + elvitegravir + cobicistat +17896011000036101 Crestor 5 mg film-coated tablet, 30, blister pack 119120 11602011000036109 Crestor 5 mg film-coated tablet, 30 5294011000036100 Crestor 5 mg film-coated tablet 4031011000036106 Crestor 4031011000036106 Crestor 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +68743011000036100 Metsal cream, 50 g, tube 10569 66509011000036103 Metsal cream, 50 g 65330011000036103 Metsal cream 65146011000036109 Metsal 65146011000036109 Metsal 71241011000036102 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream, 50 g 69915011000036102 eucalyptus oil 8.8% + menthol liquid 3.8% + methyl salicylate 28.3% cream 69781011000036105 eucalyptus oil + menthol liquid + methyl salicylate +82861011000036100 Actemra 80 mg/4 mL concentrated injection, 4 mL vial 149403 82768011000036107 Actemra 80 mg/4 mL concentrated injection, 4 mL vial 82678011000036108 Actemra 80 mg/4 mL concentrated injection, 4 mL vial 82659011000036103 Actemra 82659011000036103 Actemra 82989011000036107 tocilizumab 80 mg/4 mL injection, 4 mL vial 82926011000036109 tocilizumab 80 mg/4 mL injection, vial 82914011000036109 tocilizumab +37404011000036103 Chlorpromazine Hydrochloride Mixture Forte (Orion) 10 mg/mL oral liquid solution, 500 mL, bottle 11347 36662011000036108 Chlorpromazine Hydrochloride Mixture Forte (Orion) 10 mg/mL oral liquid solution, 500 mL 36006011000036104 Chlorpromazine Hydrochloride Mixture Forte (Orion) 10 mg/mL oral liquid solution 40871000168101 Chlorpromazine Hydrochloride Mixture Forte (Orion) 40871000168101 Chlorpromazine Hydrochloride Mixture Forte (Orion) 38580011000036108 chlorpromazine hydrochloride 10 mg/mL oral liquid, 500 mL 37853011000036104 chlorpromazine hydrochloride 10 mg/mL oral liquid 21310011000036102 chlorpromazine +658891000168107 Mizart 80 mg uncoated tablet, 28, blister pack 180995 658881000168109 Mizart 80 mg uncoated tablet, 28 658871000168106 Mizart 80 mg uncoated tablet 658861000168100 Mizart 658861000168100 Mizart 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +19754011000036108 Abbocillin VK Filmtab 500 mg film-coated tablet, 25, bottle 62361 13015011000036101 Abbocillin VK Filmtab 500 mg film-coated tablet, 25 6304011000036109 Abbocillin VK Filmtab 500 mg film-coated tablet 55311000168108 Abbocillin VK Filmtab 55311000168108 Abbocillin VK Filmtab 27496011000036109 phenoxymethylpenicillin 500 mg tablet, 25 22839011000036104 phenoxymethylpenicillin 500 mg tablet 21370011000036105 phenoxymethylpenicillin +898241000168102 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet, 500, bottle 195276 898231000168106 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet, 500 134441000036102 Candesartan/HCT 32 mg/12.5 mg (Sandoz) tablet 58461000168108 Candesartan/HCT 32 mg/12.5 mg (Sandoz) 58461000168108 Candesartan/HCT 32 mg/12.5 mg (Sandoz) 898221000168108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 500 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +984431000168106 Lonsurf 20/8.19 film-coated tablet, 60, blister pack 273238 984421000168108 Lonsurf 20/8.19 film-coated tablet, 60 984341000168109 Lonsurf 20/8.19 film-coated tablet 984301000168107 Lonsurf 20/8.19 984301000168107 Lonsurf 20/8.19 984411000168101 trifluridine 20 mg + tipiracil 8.19 mg tablet, 60 984331000168100 trifluridine 20 mg + tipiracil 8.19 mg tablet 984151000168108 trifluridine + tipiracil +890851000168103 Canpek 16/12.5 uncoated tablet, 10, blister pack 198392 890841000168100 Canpek 16/12.5 uncoated tablet, 10 890791000168103 Canpek 16/12.5 uncoated tablet 890781000168101 Canpek 16/12.5 890781000168101 Canpek 16/12.5 890831000168109 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 10 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +860741000168109 Ambotens HCT 150/12.5 film-coated tablet, 30, blister pack 189380 860731000168100 Ambotens HCT 150/12.5 film-coated tablet, 30 860721000168103 Ambotens HCT 150/12.5 film-coated tablet 860711000168105 Ambotens HCT 150/12.5 860711000168105 Ambotens HCT 150/12.5 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +856451000168106 Aliquen 100 mg film-coated tablet, 90, blister pack 204856 856441000168109 Aliquen 100 mg film-coated tablet, 90 854241000168104 Aliquen 100 mg film-coated tablet 853171000168102 Aliquen 853171000168102 Aliquen 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +921231000168102 Cilopam 20 mg film-coated tablet, 1000, bottle 158865 921221000168100 Cilopam 20 mg film-coated tablet, 1000 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203211000036100 citalopram 20 mg tablet, 1000 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +18521011000036107 Procur 100 mg uncoated tablet, 50, blister pack 101532 11213011000036103 Procur 100 mg uncoated tablet, 50 5404011000036102 Procur 100 mg uncoated tablet 4023011000036105 Procur 4023011000036105 Procur 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +131551000036102 Meropenem (Kabi) 1 g powder for injection, 10 vials 196966 128531000036103 Meropenem (Kabi) 1 g powder for injection, 10 vials 125411000036100 Meropenem (Kabi) 1 g powder for injection, vial 123761000036105 Meropenem (Kabi) 123761000036105 Meropenem (Kabi) 46462011000036109 meropenem 1 g injection, 10 vials 45169011000036100 meropenem 1 g injection, vial 44940011000036106 meropenem +829121000168101 Imatinib (Teva) 100 mg film-coated tablet, 100, bottle 232227 829111000168108 Imatinib (Teva) 100 mg film-coated tablet, 100 829101000168105 Imatinib (Teva) 100 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 829031000168104 imatinib 100 mg tablet, 100 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +786281000168109 Isoniazid (Arrow) 100 mg uncoated tablet, 1000, bottle 13455 786271000168106 Isoniazid (Arrow) 100 mg uncoated tablet, 1000 786231000168108 Isoniazid (Arrow) 100 mg uncoated tablet 786221000168105 Isoniazid (Arrow) 786221000168105 Isoniazid (Arrow) 786261000168100 isoniazid 100 mg tablet, 1000 22214011000036101 isoniazid 100 mg tablet 21726011000036106 isoniazid +933213961000036106 Savacol Antiseptic Mouth and Throat Rinse Alcohol Free 0.2% mouthwash, 300 mL, bottle 159649 933203551000036103 Savacol Antiseptic Mouth and Throat Rinse Alcohol Free 0.2% mouthwash, 300 mL 933195561000036101 Savacol Antiseptic Mouth and Throat Rinse Alcohol Free 0.2% mouthwash 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 38631000168101 Savacol Antiseptic Mouth and Throat Rinse 933203561000036100 chlorhexidine gluconate 0.2% mouthwash, 300 mL 933194121000036104 chlorhexidine gluconate 0.2% mouthwash 21404011000036101 chlorhexidine +760321000168104 Sildenafil (DRLA) 25 mg film-coated tablet, 8, blister pack 186282 760311000168106 Sildenafil (DRLA) 25 mg film-coated tablet, 8 760241000168104 Sildenafil (DRLA) 25 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760301000168108 sildenafil 25 mg tablet, 8 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +779861000168104 Fentanyl (Apo) 100 microgram/hour patch, 10, sachet 152575 779851000168101 Fentanyl (Apo) 100 microgram/hour patch, 10 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236191000036101 fentanyl 100 microgram/hour patch, 10 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +900043011000036107 MMA/PA Express 15 powder for oral liquid, 30 x 25 g sachets 900022011000036102 MMA/PA Express 15 powder for oral liquid, 30 x 25 g sachets 412531000168101 MMA/PA Express 15 powder for oral liquid, 25 g sachet 64181000168106 MMA/PA Express 15 64181000168106 MMA/PA Express 15 900057011000036101 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 30 x 25 g sachets 412341000168102 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine powder for oral liquid, 25 g sachet 50751011000036100 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine +1062531000168109 Cold and Flu Relief PE (Amcal) film-coated tablet, 24, blister pack 223840 1062521000168106 Cold and Flu Relief PE (Amcal) film-coated tablet, 24 1062511000168104 Cold and Flu Relief PE (Amcal) film-coated tablet 53311011000036105 Cold and Flu Relief PE (Amcal) 53311011000036105 Cold and Flu Relief PE (Amcal) 63169011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 24 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +19463011000036108 Cyprone 50 mg uncoated tablet, 50, blister pack 54562 12740011000036107 Cyprone 50 mg uncoated tablet, 50 6034011000036102 Cyprone 50 mg uncoated tablet 4359011000036105 Cyprone 4359011000036105 Cyprone 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +19463011000036108 Cyprone 50 mg uncoated tablet, 50, blister pack 266552 12740011000036107 Cyprone 50 mg uncoated tablet, 50 6034011000036102 Cyprone 50 mg uncoated tablet 4359011000036105 Cyprone 4359011000036105 Cyprone 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +826951000168102 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 199742 826941000168104 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 703631000168101 Nimenrix (inert substance) diluent, 0.5 mL syringe 703601000168108 Nimenrix 703601000168108 Nimenrix 826931000168108 meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +826951000168102 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 199742 826941000168104 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 826921000168105 Nimenrix (meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine) powder for injection, vial 703601000168108 Nimenrix 703601000168108 Nimenrix 826931000168108 meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 826911000168103 meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection, vial 826521000168100 meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine +993731000168104 Atenolol (Apo) 50 mg film-coated tablet, 250, bottle 214940 993721000168102 Atenolol (Apo) 50 mg film-coated tablet, 250 993641000168103 Atenolol (Apo) 50 mg film-coated tablet 9511000168106 Atenolol (Apo) 9511000168106 Atenolol (Apo) 993711000168109 atenolol 50 mg tablet, 250 23168011000036101 atenolol 50 mg tablet 21624011000036105 atenolol +779821000168109 Ephedrine Instillation APF (extemporaneous) 1% nasal spray, 15 mL, pump pack 779811000168102 Ephedrine Instillation APF (extemporaneous) 1% nasal spray, 15 mL 779791000168101 Ephedrine Instillation APF (extemporaneous) 1% nasal spray 777131000168106 Ephedrine Instillation APF (extemporaneous) 777131000168106 Ephedrine Instillation APF (extemporaneous) 779801000168100 ephedrine hydrochloride 1% nasal spray, 15 mL 779781000168104 ephedrine hydrochloride 1% nasal spray 37740011000036107 ephedrine +1021861000168104 Atelvia 75 mg film-coated tablet, 8, blister pack 163754 1021851000168101 Atelvia 75 mg film-coated tablet, 8 1021781000168104 Atelvia 75 mg film-coated tablet 1021681000168109 Atelvia 1021681000168109 Atelvia 801061000168101 risedronate sodium 75 mg tablet, 8 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +45921000036105 Ramipril (Chemmart) 1.25 mg capsule, 30, blister pack 179013 43211000036106 Ramipril (Chemmart) 1.25 mg capsule, 30 41281000036104 Ramipril (Chemmart) 1.25 mg capsule 78587011000036100 Ramipril (Chemmart) 78587011000036100 Ramipril (Chemmart) 32761011000036107 ramipril 1.25 mg capsule, 30 32692011000036105 ramipril 1.25 mg capsule 21395011000036107 ramipril +60619011000036102 Coldguard Cold and Flu with Antihistamine uncoated tablet, 20, bottle 18926 56577011000036102 Coldguard Cold and Flu with Antihistamine uncoated tablet, 20 53983011000036102 Coldguard Cold and Flu with Antihistamine uncoated tablet 53424011000036108 Coldguard Cold and Flu with Antihistamine 53424011000036108 Coldguard Cold and Flu with Antihistamine 63436011000036103 atropa belladonna 7.5 mg + chlorphenamine maleate 1 mg + codeine phosphate hemihydrate 7.5 mg + paracetamol 250 mg + pseudoephedrine hydrochloride 30 mg tablet, 20 61962011000036103 atropa belladonna 7.5 mg + chlorphenamine maleate 1 mg + codeine phosphate hemihydrate 7.5 mg + paracetamol 250 mg + pseudoephedrine hydrochloride 30 mg tablet 61810011000036105 atropa belladonna + chlorphenamine + codeine + paracetamol + pseudoephedrine +21022011000036109 Stalevo 100/25/200 film-coated tablet, 100, bottle 96395 14168011000036100 Stalevo 100/25/200 film-coated tablet, 100 7447011000036104 Stalevo 100/25/200 film-coated tablet 3681000168103 Stalevo 100/25/200 3681000168103 Stalevo 100/25/200 28184011000036105 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 100 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +994011000168109 Candesartan (Apotex) 16 mg tablet, 7, blister pack 191763 994001000168106 Candesartan (Apotex) 16 mg tablet, 7 993981000168101 Candesartan (Apotex) 16 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 993991000168103 candesartan cilexetil 16 mg tablet, 7 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +878101000168103 Bosentan (Apotex) 125 mg film-coated tablet, 60, bottle 222215 878091000168108 Bosentan (Apotex) 125 mg film-coated tablet, 60 878081000168105 Bosentan (Apotex) 125 mg film-coated tablet 878041000168100 Bosentan (Apotex) 878041000168100 Bosentan (Apotex) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +61144011000036100 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet, 16, blister pack 73573 57087011000036106 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet, 16 54192011000036109 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet 53186011000036105 Diarrhoea Relief (Pharmacist) 53186011000036105 Diarrhoea Relief (Pharmacist) 63805011000036108 loperamide hydrochloride 2.15 mg tablet, 16 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +920911000168109 Cilopam 40 mg film-coated tablet, 84, blister pack 158866 920011000168108 Cilopam 40 mg film-coated tablet, 84 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202951000036103 citalopram 40 mg tablet, 84 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +20930011000036107 Clopine 100 mg uncoated tablet, 100, bottle 93973 14084011000036101 Clopine 100 mg uncoated tablet, 100 7362011000036102 Clopine 100 mg uncoated tablet 3146011000036108 Clopine 3146011000036108 Clopine 28136011000036106 clozapine 100 mg tablet, 100 23445011000036103 clozapine 100 mg tablet 21222011000036104 clozapine +20423011000036103 Mobic 7.5 mg uncoated tablet, 30, blister pack 77694 13630011000036106 Mobic 7.5 mg uncoated tablet, 30 6913011000036102 Mobic 7.5 mg uncoated tablet 3572011000036102 Mobic 3572011000036102 Mobic 28307011000036107 meloxicam 7.5 mg tablet, 30 23621011000036100 meloxicam 7.5 mg tablet 21678011000036102 meloxicam +25051000036101 Atorvastatin (Terry White Chemists) 40 mg film-coated tablet, 30, blister pack 153724 22171000036103 Atorvastatin (Terry White Chemists) 40 mg film-coated tablet, 30 20861000036103 Atorvastatin (Terry White Chemists) 40 mg film-coated tablet 19761000036107 Atorvastatin (Terry White Chemists) 19761000036107 Atorvastatin (Terry White Chemists) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +18709011000036102 Murelax 30 mg uncoated tablet, 25, blister pack 12952 11877011000036109 Murelax 30 mg uncoated tablet, 25 5917011000036108 Murelax 30 mg uncoated tablet 3531011000036106 Murelax 3531011000036106 Murelax 32770011000036109 oxazepam 30 mg tablet, 25 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +779541000168100 Fentanyl (Apo) 100 microgram/hour patch, 2, sachet 152575 779531000168109 Fentanyl (Apo) 100 microgram/hour patch, 2 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236211000036102 fentanyl 100 microgram/hour patch, 2 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +24961000036103 Atorvastatin (Terry White Chemists) 80 mg film-coated tablet, 30, blister pack 153739 22271000036106 Atorvastatin (Terry White Chemists) 80 mg film-coated tablet, 30 20841000036104 Atorvastatin (Terry White Chemists) 80 mg film-coated tablet 19761000036107 Atorvastatin (Terry White Chemists) 19761000036107 Atorvastatin (Terry White Chemists) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +44447011000036109 Fosamax 10 mg uncoated tablet, 8, blister pack 73520 41903011000036103 Fosamax 10 mg uncoated tablet, 8 40255011000036103 Fosamax 10 mg uncoated tablet 2922011000036103 Fosamax 2922011000036103 Fosamax 46701011000036106 alendronate 10 mg tablet, 8 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +45841000036107 Quetiapine (Synthon) 200 mg film-coated tablet, 60, blister pack 176711 43141000036101 Quetiapine (Synthon) 200 mg film-coated tablet, 60 40831000036106 Quetiapine (Synthon) 200 mg film-coated tablet 40241000036102 Quetiapine (Synthon) 40241000036102 Quetiapine (Synthon) 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +12081000036106 Zypine 2.5 mg film-coated tablet, 28, bottle 154622 7131000036106 Zypine 2.5 mg film-coated tablet, 28 3201000036101 Zypine 2.5 mg film-coated tablet 2721000168103 Zypine 2721000168103 Zypine 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +933931000168108 Centevo 200/50/200 mg film-coated tablet, 250, bottle 238859 933921000168105 Centevo 200/50/200 mg film-coated tablet, 250 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 933911000168103 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 250 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +931621011000036107 Pravista 80 mg film-coated tablet, 30, bottle 163563 930782011000036109 Pravista 80 mg film-coated tablet, 30 930043011000036109 Pravista 80 mg film-coated tablet 929854011000036105 Pravista 929854011000036105 Pravista 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +785961000168103 Fentanyl (Watson) 25 microgram/hour patch, 5, sachet 190795 785951000168100 Fentanyl (Watson) 25 microgram/hour patch, 5 785941000168102 Fentanyl (Watson) 25 microgram/hour patch 785901000168104 Fentanyl (Watson) 785901000168104 Fentanyl (Watson) 26649011000036106 fentanyl 25 microgram/hour patch, 5 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +20296011000036101 Tamoxifen (Terry White Chemists) 20 mg uncoated tablet, 60, blister pack 75587 13505011000036101 Tamoxifen (Terry White Chemists) 20 mg uncoated tablet, 60 6787011000036101 Tamoxifen (Terry White Chemists) 20 mg uncoated tablet 3478011000036105 Tamoxifen (Terry White Chemists) 3478011000036105 Tamoxifen (Terry White Chemists) 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +18951011000036100 Stemetil 12.5 mg/mL injection solution, 10 x 1 mL ampoules 27555 12259011000036107 Stemetil 12.5 mg/mL injection solution, 10 x 1 mL ampoules 5789011000036105 Stemetil 12.5 mg/mL injection solution, ampoule 4309011000036101 Stemetil 4309011000036101 Stemetil 27022011000036107 prochlorperazine mesilate 12.5 mg/mL injection, 10 x 1 mL ampoules 22395011000036108 prochlorperazine mesilate 12.5 mg/mL injection, ampoule 21262011000036105 prochlorperazine +61409011000036109 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 50 mL, bottle 82400 57334011000036108 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 50 mL 54278011000036103 Paracetamol Children's 5 to 12 Years (Pharmacy Health) Colour Free 240 mg/5 mL oral liquid suspension, 5 mL 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 40391000168106 Paracetamol Children's 5 to 12 Years (Pharmacy Health) 63814011000036106 paracetamol 240 mg/5 mL oral liquid, 50 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +655601000168106 Atorvastatin (AN) 10 mg film-coated tablet, 30, blister pack 198846 655591000168104 Atorvastatin (AN) 10 mg film-coated tablet, 30 655581000168102 Atorvastatin (AN) 10 mg film-coated tablet 655571000168100 Atorvastatin (AN) 655571000168100 Atorvastatin (AN) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +44035011000036109 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack, dual chamber composite pack 167895 41524011000036100 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack 648091000168101 Solu-Cortef Act-O-Vial (inert substance) diluent, 4 mL vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 46359011000036102 hydrocortisone (as sodium succinate) 500 mg injection [1 vial] (&) inert substance diluent [4 mL vial], 1 pack 633691000168100 inert substance diluent, 4 mL vial 21220011000036103 inert substance +44035011000036109 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack, dual chamber composite pack 47650 41524011000036100 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack 648091000168101 Solu-Cortef Act-O-Vial (inert substance) diluent, 4 mL vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 46359011000036102 hydrocortisone (as sodium succinate) 500 mg injection [1 vial] (&) inert substance diluent [4 mL vial], 1 pack 633691000168100 inert substance diluent, 4 mL vial 21220011000036103 inert substance +44035011000036109 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack, dual chamber composite pack 167895 41524011000036100 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack 40038011000036101 Solu-Cortef Act-O-Vial (hydrocortisone (as sodium succinate) 500 mg) powder for injection, 500 mg vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 46359011000036102 hydrocortisone (as sodium succinate) 500 mg injection [1 vial] (&) inert substance diluent [4 mL vial], 1 pack 45105011000036103 hydrocortisone (as sodium succinate) 500 mg injection, vial 21524011000036102 hydrocortisone sodium succinate +44035011000036109 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack, dual chamber composite pack 47650 41524011000036100 Solu-Cortef Act-O-Vial (1 x 500 mg vial, 1 x 4 mL inert diluent vial), 1 pack 40038011000036101 Solu-Cortef Act-O-Vial (hydrocortisone (as sodium succinate) 500 mg) powder for injection, 500 mg vial 48381000168105 Solu-Cortef Act-O-Vial 48381000168105 Solu-Cortef Act-O-Vial 46359011000036102 hydrocortisone (as sodium succinate) 500 mg injection [1 vial] (&) inert substance diluent [4 mL vial], 1 pack 45105011000036103 hydrocortisone (as sodium succinate) 500 mg injection, vial 21524011000036102 hydrocortisone sodium succinate +34817011000036106 Ritalin LA 30 mg modified release capsule, 30, bottle 82958 34392011000036105 Ritalin LA 30 mg modified release capsule, 30 34068011000036109 Ritalin LA 30 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 35236011000036100 methylphenidate hydrochloride 30 mg modified release capsule, 30 34908011000036104 methylphenidate hydrochloride 30 mg modified release capsule 21277011000036101 methylphenidate +50649011000036109 Eutroxsig 75 microgram uncoated tablet, 200, bottle 144114 49674011000036103 Eutroxsig 75 microgram uncoated tablet, 200 48813011000036102 Eutroxsig 75 microgram uncoated tablet 4066011000036108 Eutroxsig 4066011000036108 Eutroxsig 51552011000036103 levothyroxine sodium 75 microgram tablet, 200 50999011000036104 levothyroxine sodium 75 microgram tablet 21577011000036109 levothyroxine +18127011000036107 Pravastatin Sodium (Terry White Chemists) 20 mg uncoated tablet, 30, blister pack 118728 11593011000036105 Pravastatin Sodium (Terry White Chemists) 20 mg uncoated tablet, 30 5378011000036108 Pravastatin Sodium (Terry White Chemists) 20 mg uncoated tablet 3101011000036106 Pravastatin Sodium (Terry White Chemists) 3101011000036106 Pravastatin Sodium (Terry White Chemists) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +79055011000036101 Paclitaxel (Actavis) 300 mg/50 mL concentrated injection, 50 mL vial 148037 78839011000036102 Paclitaxel (Actavis) 300 mg/50 mL concentrated injection, 50 mL vial 78649011000036108 Paclitaxel (Actavis) 300 mg/50 mL concentrated injection, 50 mL vial 78596011000036102 Paclitaxel (Actavis) 78596011000036102 Paclitaxel (Actavis) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +61167011000036104 Ibuprofen (Herron) 200 mg film-coated tablet, 24, blister pack 74712 57110011000036102 Ibuprofen (Herron) 200 mg film-coated tablet, 24 54200011000036105 Ibuprofen (Herron) 200 mg film-coated tablet 53265011000036103 Ibuprofen (Herron) 53265011000036103 Ibuprofen (Herron) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +854721000168100 Algerika 25 mg hard capsule, 14, blister pack 229554 854711000168107 Algerika 25 mg hard capsule, 14 854691000168109 Algerika 25 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 854701000168109 pregabalin 25 mg capsule, 14 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +874131000168100 Bicalox 50 mg film-coated tablet, 500, bottle 129119 874121000168103 Bicalox 50 mg film-coated tablet, 500 162041000036106 Bicalox 50 mg film-coated tablet 161991000036105 Bicalox 161991000036105 Bicalox 39466011000036100 bicalutamide 50 mg tablet, 500 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +989391000168100 Cansolve 1% cream, 10 g, tube 989381000168103 Cansolve 1% cream, 10 g 989371000168101 Cansolve 1% cream 989361000168107 Cansolve 989361000168107 Cansolve 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +19774011000036106 Topamax 100 mg film-coated tablet, 60, blister pack 62711 13032011000036101 Topamax 100 mg film-coated tablet, 60 6319011000036107 Topamax 100 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +953381000168107 Gabapentin (AN) 400 mg hard capsule, 30, blister pack 263842 953371000168109 Gabapentin (AN) 400 mg hard capsule, 30 953281000168103 Gabapentin (AN) 400 mg hard capsule 660791000168109 Gabapentin (AN) 660791000168109 Gabapentin (AN) 953361000168103 gabapentin 400 mg capsule, 30 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +1058191000168106 Atorvastatin (Ran) 10 mg film-coated tablet, 28, bottle 179853 1058181000168108 Atorvastatin (Ran) 10 mg film-coated tablet, 28 1056501000168107 Atorvastatin (Ran) 10 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 890061000168107 atorvastatin 10 mg tablet, 28 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +963821000168105 Danzetron 4 mg film-coated tablet, 4, blister pack 107049 963811000168103 Danzetron 4 mg film-coated tablet, 4 963801000168101 Danzetron 4 mg film-coated tablet 957881000168109 Danzetron 957881000168109 Danzetron 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +20742011000036104 Faverin 50 mg film-coated tablet, 30, blister pack 90057 13911011000036109 Faverin 50 mg film-coated tablet, 30 7197011000036108 Faverin 50 mg film-coated tablet 3891011000036102 Faverin 3891011000036102 Faverin 28003011000036102 fluvoxamine maleate 50 mg tablet, 30 23326011000036100 fluvoxamine maleate 50 mg tablet 21713011000036109 fluvoxamine +1019631000168103 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 14, blister pack 175208 1019621000168101 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 14 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 792781000168104 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 14 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +920961000168107 Cilopam 10 mg film-coated tablet, 28, bottle 158863 920531000168105 Cilopam 10 mg film-coated tablet, 28 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +869471000168103 Atomerra 60 mg hard capsule, 56, blister pack 234808 869461000168109 Atomerra 60 mg hard capsule, 56 869251000168106 Atomerra 60 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830311000168102 atomoxetine 60 mg capsule, 56 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +788091000168101 Acarbose (Mylan) 100 mg tablet, 90, blister pack 226797 788081000168104 Acarbose (Mylan) 100 mg tablet, 90 788071000168102 Acarbose (Mylan) 100 mg tablet 788051000168106 Acarbose (Mylan) 788051000168106 Acarbose (Mylan) 27111011000036104 acarbose 100 mg tablet, 90 22479011000036108 acarbose 100 mg tablet 21888011000036104 acarbose +44753011000036109 Co-Diovan 80/12.5 film-coated tablet, 56, blister pack 96740 42198011000036108 Co-Diovan 80/12.5 film-coated tablet, 56 40385011000036103 Co-Diovan 80/12.5 film-coated tablet 34621000168107 Co-Diovan 80/12.5 34621000168107 Co-Diovan 80/12.5 46958011000036103 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 56 45358011000036107 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +921001000168104 Cilopam 10 mg film-coated tablet, 100, bottle 158863 920991000168100 Cilopam 10 mg film-coated tablet, 100 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202971000036108 citalopram 10 mg tablet, 100 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +994051000168105 Candesartan (Apotex) 16 mg tablet, 30, blister pack 191763 994041000168108 Candesartan (Apotex) 16 mg tablet, 30 993981000168101 Candesartan (Apotex) 16 mg tablet 993821000168108 Candesartan (Apotex) 993821000168108 Candesartan (Apotex) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +61244011000036103 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 30 mL, bottle 77012 57180011000036104 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 30 mL 54226011000036103 Benadryl for the Family Dry Forte 15 mg/5 mL oral liquid solution, 5 mL 36171000168107 Benadryl for the Family Dry Forte 36171000168107 Benadryl for the Family Dry Forte 63752011000036108 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid, 30 mL 62072011000036103 dextromethorphan hydrobromide monohydrate 15 mg/5 mL oral liquid 61744011000036109 dextromethorphan +959571000168101 Ranitidine (WT) 300 mg film-coated tablet, 7, blister pack 82325 959561000168107 Ranitidine (WT) 300 mg film-coated tablet, 7 959551000168105 Ranitidine (WT) 300 mg film-coated tablet 959541000168108 Ranitidine (WT) 959541000168108 Ranitidine (WT) 63895011000036106 ranitidine 300 mg tablet, 7 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +897521000168107 Naloxone (Juno) 400 microgram/mL injection solution, 1 mL ampoule 236005 897511000168100 Naloxone (Juno) 400 microgram/mL injection solution, 1 mL ampoule 897491000168105 Naloxone (Juno) 400 microgram/mL injection solution, ampoule 893621000168100 Naloxone (Juno) 893621000168100 Naloxone (Juno) 897501000168103 naloxone hydrochloride dihydrate 400 microgram/mL injection, 1 mL ampoule 897481000168107 naloxone hydrochloride dihydrate 400 microgram/mL injection, ampoule 33627011000036107 naloxone +933211721000036104 Ciprofloxacin (BL) 250 mg film-coated tablet, 8, blister pack 114046 933199751000036107 Ciprofloxacin (BL) 250 mg film-coated tablet, 8 933194141000036107 Ciprofloxacin (BL) 250 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 932364011000036107 ciprofloxacin 250 mg tablet, 8 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +69094011000036109 Panadol Sinus Relief PE uncoated tablet, 24, blister pack 147590 66895011000036103 Panadol Sinus Relief PE uncoated tablet, 24 65533011000036108 Panadol Sinus Relief PE uncoated tablet 53411000168100 Panadol Sinus Relief PE 53411000168100 Panadol Sinus Relief PE 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +918861000168106 Doxycycline (Apo) 100 mg uncoated tablet, 7, blister pack 78598 918851000168109 Doxycycline (Apo) 100 mg uncoated tablet, 7 918841000168107 Doxycycline (Apo) 100 mg uncoated tablet 918801000168105 Doxycycline (Apo) 918801000168105 Doxycycline (Apo) 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +794641000168105 Tacrolimus (Sandoz) 2 mg hard capsule, 100, blister pack 229757 794631000168101 Tacrolimus (Sandoz) 2 mg hard capsule, 100 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794621000168104 tacrolimus 2 mg capsule, 100 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +1036711000168103 Atorvastatin (RBX) 10 mg film-coated tablet, 6, blister pack 173500 1036701000168101 Atorvastatin (RBX) 10 mg film-coated tablet, 6 1036691000168101 Atorvastatin (RBX) 10 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 841221000168106 atorvastatin 10 mg tablet, 6 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +87727011000036104 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 90, blister pack 164469 87493011000036108 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet, 90 87339011000036107 Metformin Hydrochloride 1000 (Generic Health) 1 g film-coated tablet 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 6851000168102 Metformin Hydrochloride 1000 (Generic Health) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +33558011000036103 Cephabell 250 mg hard capsule, 20, blister pack 139044 33296011000036104 Cephabell 250 mg hard capsule, 20 33058011000036100 Cephabell 250 mg hard capsule 32988011000036106 Cephabell 32988011000036106 Cephabell 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +61201011000036109 Aspirin Extra Strength (Bayer) 500 mg tablet, 120, blister pack 75502 57137011000036108 Aspirin Extra Strength (Bayer) 500 mg tablet, 120 54214011000036103 Aspirin Extra Strength (Bayer) 500 mg tablet 42541000168105 Aspirin Extra Strength (Bayer) 42541000168105 Aspirin Extra Strength (Bayer) 63740011000036107 aspirin 500 mg tablet, 120 62068011000036108 aspirin 500 mg tablet 21719011000036107 aspirin +779701000168107 Fentanyl (Apo) 100 microgram/hour patch, 5, sachet 152575 779691000168107 Fentanyl (Apo) 100 microgram/hour patch, 5 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 26652011000036104 fentanyl 100 microgram/hour patch, 5 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +955321000168109 Ceftriaxone (Mylan) 2 g powder for injection, 1 vial 148223 955311000168102 Ceftriaxone (Mylan) 2 g powder for injection, 1 vial 955301000168100 Ceftriaxone (Mylan) 2 g powder for injection, 2 g vial 955231000168100 Ceftriaxone (Mylan) 955231000168100 Ceftriaxone (Mylan) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +61486011000036104 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 48, blister pack 91993 57411011000036108 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 48 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +19962011000036104 Kliovance film-coated tablet, 28, dial dispenser pack 67440 13205011000036105 Kliovance film-coated tablet, 28 6487011000036107 Kliovance film-coated tablet 4118011000036102 Kliovance 4118011000036102 Kliovance 27617011000036106 estradiol 1 mg + norethisterone acetate 500 microgram tablet, 28 22955011000036105 estradiol 1 mg + norethisterone acetate 500 microgram tablet 21228011000036101 estradiol + norethisterone acetate +44804011000036101 Vytorin 10/20 uncoated tablet, 5, blister pack 98111 42238011000036102 Vytorin 10/20 uncoated tablet, 5 40399011000036102 Vytorin 10/20 uncoated tablet 36271000168101 Vytorin 10/20 36271000168101 Vytorin 10/20 46994011000036100 ezetimibe 10 mg + simvastatin 20 mg tablet, 5 45368011000036101 ezetimibe 10 mg + simvastatin 20 mg tablet 21565011000036108 ezetimibe + simvastatin +694011000168105 Leukopor (2472) 2.5 cm x 5 m tape, 1 roll, carton 694001000168107 Leukopor (2472) 2.5 cm x 5 m tape, 1 roll 693981000168102 Leukopor (2472) 2.5 cm x 5 m tape 59391000168102 Leukopor (2472) 59391000168102 Leukopor (2472) 693991000168104 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll 693971000168100 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape 50731011000036104 tape plaster adhesive hypoallergenic +166031000036100 Peg-Intron Clearclick Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204813 164221000036102 Peg-Intron Clearclick Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162581000036107 Peg-Intron Clearclick Injector (peginterferon alfa-2b 100 microgram) powder for injection, 100 microgram cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46901000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23390011000036109 peginterferon alfa-2b 100 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +166031000036100 Peg-Intron Clearclick Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 204813 164221000036102 Peg-Intron Clearclick Injector (4 x 100 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 11661000168109 Peg-Intron Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 46901000036106 peginterferon alfa-2b 100 microgram injection [4 x 100 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +1122351000168109 Influvac Tetra 2018 with 25 mm Needle injection suspension, 1 x 0.5 mL syringe 292238 1122341000168107 Influvac Tetra 2018 with 25 mm Needle injection suspension, 1 x 0.5 mL syringe 1122331000168103 Influvac Tetra 2018 with 25 mm Needle injection suspension, 0.5 mL syringe 1120931000168101 Influvac Tetra 2018 1120931000168101 Influvac Tetra 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +44352011000036101 Reductil 10 mg hard capsule, 15, blister pack 68115 41819011000036108 Reductil 10 mg hard capsule, 15 40214011000036106 Reductil 10 mg hard capsule 39616011000036103 Reductil 39616011000036103 Reductil 46625011000036109 sibutramine hydrochloride 10 mg capsule, 15 45245011000036107 sibutramine hydrochloride 10 mg capsule 44877011000036100 sibutramine +50356011000036106 Rispa 2 mg film-coated tablet, 60, blister pack 127884 49563011000036100 Rispa 2 mg film-coated tablet, 60 48620011000036109 Rispa 2 mg film-coated tablet 48318011000036109 Rispa 48318011000036109 Rispa 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +140861000036107 Tamsulosin Hydrochloride SR (Sandoz) 400 microgram modified release tablet, 30, blister pack 196007 139341000036105 Tamsulosin Hydrochloride SR (Sandoz) 400 microgram modified release tablet, 30 137451000036105 Tamsulosin Hydrochloride SR (Sandoz) 400 microgram modified release tablet 20811000168107 Tamsulosin Hydrochloride SR (Sandoz) 20811000168107 Tamsulosin Hydrochloride SR (Sandoz) 33777011000036101 tamsulosin hydrochloride 400 microgram modified release tablet, 30 33655011000036101 tamsulosin hydrochloride 400 microgram modified release tablet 33648011000036105 tamsulosin +886681000168109 Eloctate (1 x 1500 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210522 886671000168106 Eloctate (1 x 1500 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886651000168102 Eloctate (efmoroctocog alfa 1500 units) powder for injection, 1500 units vial 886371000168101 Eloctate 886371000168101 Eloctate 886661000168100 efmoroctocog alfa 1500 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886641000168104 efmoroctocog alfa 1500 units injection, vial 886411000168100 efmoroctocog alfa +886681000168109 Eloctate (1 x 1500 units vial, 1 x 3 mL inert diluent syringe), 1 pack, composite pack 210522 886671000168106 Eloctate (1 x 1500 units vial, 1 x 3 mL inert diluent syringe), 1 pack 886451000168104 Eloctate (inert substance) diluent, 3 mL syringe 886371000168101 Eloctate 886371000168101 Eloctate 886661000168100 efmoroctocog alfa 1500 units injection [1 vial] (&) inert substance diluent [3 mL syringe], 1 pack 886441000168101 inert substance diluent, 3 mL syringe 21220011000036103 inert substance +43693011000036107 Clarithro 250 mg film-coated tablet, 14, blister pack 117197 11563011000036108 Clarithro 250 mg film-coated tablet, 14 4718011000036108 Clarithro 250 mg film-coated tablet 4200011000036100 Clarithro 4200011000036100 Clarithro 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +68852011000036107 Potassium Chloride Sterile (Pfizer (Perth)) 1 g (potassium 13.4 mmol)/4 mL concentrated injection, 50 x 4 mL ampoules 10811 66560011000036108 Potassium Chloride Sterile (Pfizer (Perth)) 1 g (potassium 13.4 mmol)/4 mL concentrated injection, 50 x 4 mL ampoules 65259011000036100 Potassium Chloride Sterile (Pfizer (Perth)) 1 g (potassium 13.4 mmol)/4 mL concentrated injection, 4 mL ampoule 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 11891000168103 Potassium Chloride Sterile (Pfizer (Perth)) 71286011000036104 potassium chloride 1 g (potassium 13.4 mmol)/4 mL injection, 50 x 4 mL ampoules 69931011000036108 potassium chloride 1 g (potassium 13.4 mmol)/4 mL injection, ampoule 21274011000036107 potassium chloride +79646011000036101 Glimepiride (Apo) 2 mg uncoated tablet, 30, blister pack 151571 79490011000036109 Glimepiride (Apo) 2 mg uncoated tablet, 30 79375011000036102 Glimepiride (Apo) 2 mg uncoated tablet 36961000168104 Glimepiride (Apo) 36961000168104 Glimepiride (Apo) 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +925211000168109 Androgel 1% (50 mg/5 g) gel, 90 x 5 g sachets 96130 925201000168106 Androgel 1% (50 mg/5 g) gel, 90 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925191000168108 testosterone 1% (50 mg/5 g) gel, 90 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +989671000168106 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 60, blister pack 199859 989661000168100 Loratadine (Blooms The Chemist) 10 mg uncoated tablet, 60 989571000168107 Loratadine (Blooms The Chemist) 10 mg uncoated tablet 989561000168101 Loratadine (Blooms The Chemist) 989561000168101 Loratadine (Blooms The Chemist) 772111000168104 loratadine 10 mg tablet, 60 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +865451000168105 Amitriptyline (GPPL) 10 mg tablet, 100, blister pack 232134 865441000168108 Amitriptyline (GPPL) 10 mg tablet, 100 865411000168109 Amitriptyline (GPPL) 10 mg tablet 862621000168106 Amitriptyline (GPPL) 862621000168106 Amitriptyline (GPPL) 692991000168108 amitriptyline hydrochloride 10 mg tablet, 100 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +921071000168109 Cilopam 20 mg film-coated tablet, 7, bottle 158865 920601000168102 Cilopam 20 mg film-coated tablet, 7 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +659691000168102 Candesartan Cilexetil HCTZ 32/12.5 (AN) uncoated tablet, 30, blister pack 204587 659501000168107 Candesartan Cilexetil HCTZ 32/12.5 (AN) uncoated tablet, 30 659491000168100 Candesartan Cilexetil HCTZ 32/12.5 (AN) uncoated tablet 659481000168103 Candesartan Cilexetil HCTZ 32/12.5 (AN) 659481000168103 Candesartan Cilexetil HCTZ 32/12.5 (AN) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +844021000168100 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 14, bottle 218069 843921000168103 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 14 843891000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +18786011000036107 Terbinafine (GenRx) 250 mg uncoated tablet, 42, blister pack 100025 11131011000036106 Terbinafine (GenRx) 250 mg uncoated tablet, 42 5726011000036107 Terbinafine (GenRx) 250 mg uncoated tablet 3619011000036108 Terbinafine (GenRx) 3619011000036108 Terbinafine (GenRx) 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +933213801000036103 Ciprofloxacin (IPC) 250 mg film-coated tablet, 8, blister pack 153183 933201821000036105 Ciprofloxacin (IPC) 250 mg film-coated tablet, 8 933194811000036101 Ciprofloxacin (IPC) 250 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 932364011000036107 ciprofloxacin 250 mg tablet, 8 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +925411000168105 Androgel 1% (25 mg/2.5 g) gel, 7 x 2.5 g sachets 96122 925401000168107 Androgel 1% (25 mg/2.5 g) gel, 7 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46947011000036101 testosterone 1% (25 mg/2.5 g) gel, 7 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +77241011000036104 Ozidal 1 mg film-coated tablet, 6, blister pack 148967 76657011000036108 Ozidal 1 mg film-coated tablet, 6 76094011000036104 Ozidal 1 mg film-coated tablet 75932011000036109 Ozidal 75932011000036109 Ozidal 78193011000036103 risperidone 1 mg tablet, 6 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +869561000168105 Atomerra 25 mg hard capsule, 14, blister pack 234813 869551000168108 Atomerra 25 mg hard capsule, 14 869521000168100 Atomerra 25 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830451000168107 atomoxetine 25 mg capsule, 14 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +925371000168109 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 96122 925361000168103 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46939011000036107 testosterone 1% (25 mg/2.5 g) gel, 2.5 g sachet 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +44110011000036100 Voltaren Ophtha 0.1% eye drops solution, 40 x 0.3 mL unit doses, ampoule 51527 41589011000036106 Voltaren Ophtha 0.1% eye drops solution, 40 x 0.3 mL unit doses 40087011000036107 Voltaren Ophtha 0.1% eye drops solution, 0.3 mL unit dose 39691011000036109 Voltaren Ophtha 39691011000036109 Voltaren Ophtha 46417011000036105 diclofenac sodium 0.1% eye drops, 40 x 0.3 mL unit doses 45142011000036102 diclofenac sodium 0.1% eye drops, unit dose 21288011000036105 diclofenac +843861000168101 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 14, blister pack 218083 843851000168103 Desvenlafaxine (Sandoz) 50 mg modified release tablet, 14 843821000168106 Desvenlafaxine (Sandoz) 50 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52874011000036105 desvenlafaxine 50 mg modified release tablet, 14 52807011000036106 desvenlafaxine 50 mg modified release tablet 52799011000036104 desvenlafaxine +69160011000036109 Dettol Antiseptic Cream cream, 30 g, tube 15362 66960011000036100 Dettol Antiseptic Cream cream, 30 g 65310011000036108 Dettol Antiseptic Cream cream 64972011000036103 Dettol Antiseptic Cream 64972011000036103 Dettol Antiseptic Cream 71533011000036108 chloroxylenol 0.3% + triclosan 0.3% cream, 30 g 70044011000036104 chloroxylenol 0.3% + triclosan 0.3% cream 69758011000036109 chloroxylenol + triclosan +59867011000036101 Anti Diarrhoea (Guardian) 2 mg uncoated tablet, 20, blister pack 115533 55829011000036109 Anti Diarrhoea (Guardian) 2 mg uncoated tablet, 20 53703011000036108 Anti Diarrhoea (Guardian) 2 mg uncoated tablet 53135011000036108 Anti Diarrhoea (Guardian) 53135011000036108 Anti Diarrhoea (Guardian) 63821011000036101 loperamide hydrochloride 2 mg tablet, 20 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +727851000168105 Cardizem CD 240 mg modified release capsule, 7, blister pack 46822 41502011000036102 Cardizem CD 240 mg modified release capsule, 7 5362011000036103 Cardizem CD 240 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46640011000036103 diltiazem hydrochloride 240 mg modified release capsule, 7 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +43836011000036103 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 20, bottle 127175 41335011000036101 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet, 20 39796011000036109 Zolpidem Tartrate (GenRx) 10 mg film-coated tablet 39725011000036109 Zolpidem Tartrate (GenRx) 39725011000036109 Zolpidem Tartrate (GenRx) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +69685011000036101 Strepsils Extra 2.4 mg lozenge, 24, blister pack 82802 67484011000036109 Strepsils Extra 2.4 mg lozenge, 24 65679011000036100 Strepsils Extra 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 72003011000036100 hexylresorcinol 2.4 mg lozenge, 24 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +687501000168106 Cosdor eye drops solution, 5 mL, bottle 217250 687491000168104 Cosdor eye drops solution, 5 mL 687481000168102 Cosdor eye drops solution 687471000168100 Cosdor 687471000168100 Cosdor 27578011000036108 dorzolamide 2% + timolol 0.5% eye drops, 5 mL 22917011000036108 dorzolamide 2% + timolol 0.5% eye drops 21483011000036104 dorzolamide + timolol +44361011000036100 Synagis (1 x 50 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 68289 41828011000036106 Synagis (1 x 50 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack 40217011000036100 Synagis (palivizumab 50 mg) powder for injection, 50 mg vial 39608011000036102 Synagis 39608011000036102 Synagis 46634011000036107 palivizumab 50 mg injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 45248011000036101 palivizumab 50 mg injection, vial 44929011000036103 palivizumab +44361011000036100 Synagis (1 x 50 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 68289 41828011000036106 Synagis (1 x 50 mg vial, 1 x 1 mL inert diluent ampoule), 1 pack 638691000168109 Synagis (inert substance) diluent, 1 mL ampoule 39608011000036102 Synagis 39608011000036102 Synagis 46634011000036107 palivizumab 50 mg injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +24731000036106 Volirop 25 mg film-coated tablet, 60, bottle 174789 22571000036108 Volirop 25 mg film-coated tablet, 60 20221000036108 Volirop 25 mg film-coated tablet 19841000036103 Volirop 19841000036103 Volirop 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +931552011000036105 Danset 8 mg film-coated tablet, 4, blister pack 163435 930713011000036104 Danset 8 mg film-coated tablet, 4 930025011000036107 Danset 8 mg film-coated tablet 12931000168101 Danset 12931000168101 Danset 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +84394011000036109 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 20 mL, bottle 46223 84086011000036103 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution, 20 mL 76150011000036106 Penta-vite Multi-Vitamins for Infants 0 to 3 Years oral liquid solution 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 8611000168100 Penta-vite Multi-Vitamins for Infants 0 to 3 Years 84669011000036103 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid, 20 mL 77571011000036106 ascorbic acid 95 mg/mL + colecalciferol 22.5 microgram/mL + dexpanthenol 640 microgram/mL + nicotinamide 15.8 mg/mL + pyridoxine hydrochloride 300 microgram/mL + retinol palmitate 1.98 mg (3600 units)/mL + riboflavin 1.8 mg/mL + thiamine hydrochloride 1.2 mg/mL oral liquid 77428011000036107 ascorbic acid + colecalciferol + dexpanthenol + nicotinamide + pyridoxine + retinol palmitate + riboflavin + thiamine +655831000168100 Cyproterone Acetate (AN) 50 mg uncoated tablet, 50, bottle 184227 655731000168107 Cyproterone Acetate (AN) 50 mg uncoated tablet, 50 655701000168100 Cyproterone Acetate (AN) 50 mg uncoated tablet 655531000168103 Cyproterone Acetate (AN) 655531000168103 Cyproterone Acetate (AN) 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +831451000168103 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 20765 831441000168100 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 830921000168105 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 21.5 g sachet 85260011000036101 Go Kit Plus 829671000168108 Magnesium Citrate (Fresenius Kabi) 831431000168109 bisacodyl 5 mg enteric tablet [3] (&) bisacodyl 10 mg suppository [1] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 830911000168103 magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet 870891000168103 magnesium carbonate + citric acid +831451000168103 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 20765 831441000168100 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 85390011000036109 Bisacodyl (Fresenius Kabi) 5 mg enteric tablet 85260011000036101 Go Kit Plus 85273011000036102 Bisacodyl (Fresenius Kabi) 831431000168109 bisacodyl 5 mg enteric tablet [3] (&) bisacodyl 10 mg suppository [1] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +831451000168103 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 20765 831441000168100 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 85389011000036102 Bisacodyl (Fresenius Kabi) 10 mg suppository 85260011000036101 Go Kit Plus 85273011000036102 Bisacodyl (Fresenius Kabi) 831431000168109 bisacodyl 5 mg enteric tablet [3] (&) bisacodyl 10 mg suppository [1] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 22506011000036101 bisacodyl 10 mg suppository 21264011000036101 bisacodyl +1057671000168101 Ramipril (Auro) 1.25 mg uncoated tablet, 28, blister pack 175235 1057661000168107 Ramipril (Auro) 1.25 mg uncoated tablet, 28 1057641000168108 Ramipril (Auro) 1.25 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 1057651000168105 ramipril 1.25 mg tablet, 28 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +1058311000168104 Esomeprazole (SZ) 20 mg enteric tablet, 100, blister pack 207581 1058301000168102 Esomeprazole (SZ) 20 mg enteric tablet, 100 1058231000168102 Esomeprazole (SZ) 20 mg enteric tablet 1058221000168100 Esomeprazole (SZ) 1058221000168100 Esomeprazole (SZ) 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +44153011000036103 Citanest 2% (100 mg/5 mL) injection solution, 10 x 5 mL ampoules 53722 41629011000036109 Citanest 2% (100 mg/5 mL) injection solution, 10 x 5 mL ampoules 40110011000036103 Citanest 2% (100 mg/5 mL) injection solution, 5 mL ampoule 45001000168106 Citanest 45001000168106 Citanest 46448011000036103 prilocaine hydrochloride 2% (100 mg/5 mL) injection, 10 x 5 mL ampoules 45159011000036105 prilocaine hydrochloride 2% (100 mg/5 mL) injection, ampoule 37761011000036109 prilocaine +921481000168102 Cinacalcet (Apotex) 90 mg film-coated tablet, 28, blister pack 240293 921471000168100 Cinacalcet (Apotex) 90 mg film-coated tablet, 28 921461000168106 Cinacalcet (Apotex) 90 mg film-coated tablet 921421000168101 Cinacalcet (Apotex) 921421000168101 Cinacalcet (Apotex) 38845011000036106 cinacalcet 90 mg tablet, 28 38045011000036107 cinacalcet 90 mg tablet 37755011000036100 cinacalcet +1096531000168107 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 30, blister pack 287308 1096521000168109 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 30 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +39424011000036101 Fludara 10 mg film-coated tablet, 20, blister pack 81998 39307011000036109 Fludara 10 mg film-coated tablet, 20 39219011000036109 Fludara 10 mg film-coated tablet 39183011000036105 Fludara 39183011000036105 Fludara 39495011000036109 fludarabine phosphate 10 mg tablet, 20 39442011000036107 fludarabine phosphate 10 mg tablet 39430011000036109 fludarabine +19703011000036103 Kytril 2 mg film-coated tablet, 1, blister pack 60872 12960011000036109 Kytril 2 mg film-coated tablet, 1 6250011000036103 Kytril 2 mg film-coated tablet 3372011000036100 Kytril 3372011000036100 Kytril 27472011000036100 granisetron 2 mg tablet, 1 22819011000036106 granisetron 2 mg tablet 21431011000036106 granisetron +60141011000036107 Tefodine 120 mg film-coated tablet, 30, blister pack 129141 56100011000036101 Tefodine 120 mg film-coated tablet, 30 53789011000036105 Tefodine 120 mg film-coated tablet 53099011000036106 Tefodine 53099011000036106 Tefodine 27527011000036106 fexofenadine hydrochloride 120 mg tablet, 30 22867011000036103 fexofenadine hydrochloride 120 mg tablet 21394011000036108 fexofenadine +18291000036103 Olanzapine ODT (Generic Health) 10 mg orally disintegrating tablet, 28, blister pack 177793 16851000036107 Olanzapine ODT (Generic Health) 10 mg orally disintegrating tablet, 28 15731000036104 Olanzapine ODT (Generic Health) 10 mg orally disintegrating tablet 33321000168101 Olanzapine ODT (Generic Health) 33321000168101 Olanzapine ODT (Generic Health) 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +60150011000036103 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 36, bottle 129739 56109011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet, 36 54363011000036107 Ibuprofen Blue (Herron) 200 mg film-coated tablet 1721000168108 Ibuprofen Blue (Herron) 1721000168108 Ibuprofen Blue (Herron) 63920011000036101 ibuprofen 200 mg tablet, 36 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1057711000168102 Ramipril (Auro) 2.5 mg uncoated tablet, 30, bottle 175229 1057381000168109 Ramipril (Auro) 2.5 mg uncoated tablet, 30 1057341000168104 Ramipril (Auro) 2.5 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27365011000036108 ramipril 2.5 mg tablet, 30 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +933214121000036101 Ceftazidime (Alphapharm) 1 g powder for injection, 1 vial 154398 933202081000036109 Ceftazidime (Alphapharm) 1 g powder for injection, 1 vial 933194941000036105 Ceftazidime (Alphapharm) 1 g powder for injection, vial 933193321000036104 Ceftazidime (Alphapharm) 933193321000036104 Ceftazidime (Alphapharm) 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +863121000168109 Amitriptyline (AC) 25 mg tablet, 50, bottle 232108 863041000168102 Amitriptyline (AC) 25 mg tablet, 50 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +794801000168109 Candesartan (Blooms The Chemist) 4 mg uncoated tablet, 30, blister pack 260096 794791000168108 Candesartan (Blooms The Chemist) 4 mg uncoated tablet, 30 794781000168105 Candesartan (Blooms The Chemist) 4 mg uncoated tablet 794681000168100 Candesartan (Blooms The Chemist) 794681000168100 Candesartan (Blooms The Chemist) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +60518011000036104 Decongestant PE (Soul Pattinson) 10 mg tablet, 24, blister pack 151633 56476011000036108 Decongestant PE (Soul Pattinson) 10 mg tablet, 24 53934011000036107 Decongestant PE (Soul Pattinson) 10 mg tablet 53114011000036104 Decongestant PE (Soul Pattinson) 53114011000036104 Decongestant PE (Soul Pattinson) 63400011000036108 phenylephrine hydrochloride 10 mg tablet, 24 61941011000036100 phenylephrine hydrochloride 10 mg tablet 37732011000036107 phenylephrine +50692011000036105 Amoxycillin (Sandoz) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 93721 49716011000036109 Amoxycillin (Sandoz) 125 mg/5 mL powder for oral liquid, 100 mL 48843011000036109 Amoxycillin (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +685331000168102 Flovir 125 mg film-coated tablet, 10, blister pack 195177 685321000168100 Flovir 125 mg film-coated tablet, 10 685311000168107 Flovir 125 mg film-coated tablet 685301000168109 Flovir 685301000168109 Flovir 87821011000036109 famciclovir 125 mg tablet, 10 22683011000036103 famciclovir 125 mg tablet 21221011000036105 famciclovir +1019451000168107 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 30, blister pack 175215 1019441000168105 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 30 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 27659011000036105 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 30 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +927680011000036109 GA Gel powder for oral liquid, 30 x 24 g sachets 927619011000036100 GA Gel powder for oral liquid, 30 x 24 g sachets 385181000168105 GA Gel powder for oral liquid, 24 g sachet 75999011000036107 GA Gel 75999011000036107 GA Gel 927730011000036105 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 30 x 24 g sachets 384941000168104 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 24 g sachet 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +18994011000036107 Imuran 50 mg film-coated tablet, 100, blister pack 31398 12301011000036109 Imuran 50 mg film-coated tablet, 100 4677011000036109 Imuran 50 mg film-coated tablet 3070011000036103 Imuran 3070011000036103 Imuran 28097011000036108 azathioprine 50 mg tablet, 100 23405011000036105 azathioprine 50 mg tablet 21702011000036100 azathioprine +819961000168101 Ramipril (AN) 10 mg hard capsule, 28, blister pack 203711 819951000168103 Ramipril (AN) 10 mg hard capsule, 28 817901000168105 Ramipril (AN) 10 mg hard capsule 657411000168102 Ramipril (AN) 657411000168102 Ramipril (AN) 46764011000036105 ramipril 10 mg capsule, 28 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +18403011000036109 Parlodel 2.5 mg uncoated tablet, 60, bottle 13340 11976011000036101 Parlodel 2.5 mg uncoated tablet, 60 4620011000036107 Parlodel 2.5 mg uncoated tablet 3938011000036105 Parlodel 3938011000036105 Parlodel 27286011000036109 bromocriptine 2.5 mg tablet, 60 22641011000036106 bromocriptine 2.5 mg tablet 21300011000036100 bromocriptine +59985011000036104 Codral Day and Night Cold and Flu (36 x Day tablets, 12 x Night tablets), 48, blister pack 121311 55947011000036108 Codral Day and Night Cold and Flu (36 x Day tablets, 12 x Night tablets), 48 53732011000036106 Codral Day and Night Cold and Flu (Day) film-coated tablet 51421000168108 Codral Day and Night Cold and Flu 51541000168101 Codral Day and Night Cold and Flu (Day) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +59985011000036104 Codral Day and Night Cold and Flu (36 x Day tablets, 12 x Night tablets), 48, blister pack 121311 55947011000036108 Codral Day and Night Cold and Flu (36 x Day tablets, 12 x Night tablets), 48 53733011000036104 Codral Day and Night Cold and Flu (Night) film-coated tablet 51421000168108 Codral Day and Night Cold and Flu 51671000168107 Codral Day and Night Cold and Flu (Night) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +852391000168106 Entecavir (Sandoz) 500 microgram film-coated tablet, 30, bottle 227415 851951000168109 Entecavir (Sandoz) 500 microgram film-coated tablet, 30 851941000168107 Entecavir (Sandoz) 500 microgram film-coated tablet 851901000168105 Entecavir (Sandoz) 851901000168105 Entecavir (Sandoz) 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +50615011000036103 Seroquel XR 200 mg modified release tablet, 10, blister pack 138920 49641011000036102 Seroquel XR 200 mg modified release tablet, 10 48796011000036105 Seroquel XR 200 mg modified release tablet 1551000168108 Seroquel XR 1551000168108 Seroquel XR 51532011000036104 quetiapine 200 mg modified release tablet, 10 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +37396011000036102 Duromine 40 mg modified release capsule, 30, blister pack 10942 36641011000036106 Duromine 40 mg modified release capsule, 30 36082011000036102 Duromine 40 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 38559011000036105 phentermine 40 mg modified release capsule, 30 37837011000036107 phentermine 40 mg modified release capsule 37725011000036101 phentermine +1058351000168103 Esomeprazole (SZ) 40 mg enteric tablet, 7, blister pack 207578 1058341000168100 Esomeprazole (SZ) 40 mg enteric tablet, 7 1058331000168109 Esomeprazole (SZ) 40 mg enteric tablet 1058221000168100 Esomeprazole (SZ) 1058221000168100 Esomeprazole (SZ) 681411000168100 esomeprazole 40 mg enteric tablet, 7 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +43759011000036109 Zorac 0.05% cream, 3.5 g, tube 101328 41120011000036104 Zorac 0.05% cream, 3.5 g 39934011000036102 Zorac 0.05% cream 39675011000036100 Zorac 39675011000036100 Zorac 46102011000036109 tazarotene 0.05% cream, 3.5 g 44986011000036101 tazarotene 0.05% cream 44886011000036105 tazarotene +921511000168109 Cinacalcet (Apotex) 60 mg film-coated tablet, 28, blister pack 240297 921501000168106 Cinacalcet (Apotex) 60 mg film-coated tablet, 28 921491000168104 Cinacalcet (Apotex) 60 mg film-coated tablet 921421000168101 Cinacalcet (Apotex) 921421000168101 Cinacalcet (Apotex) 38844011000036107 cinacalcet 60 mg tablet, 28 38044011000036108 cinacalcet 60 mg tablet 37755011000036100 cinacalcet +1092191000168104 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations, aerosol cans 197127 1092181000168102 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations 1091941000168101 Nicorette Quickmist Freshmint 1 mg/actuation oral spray 39021000168101 Nicorette Quickmist 39021000168101 Nicorette Quickmist 150541000036106 nicotine 1 mg/actuation oral spray, 2 x 150 actuations 148801000036106 nicotine 1 mg/actuation oral spray, 1 actuation 21432011000036100 nicotine +998621000168104 Esomeprazole (Apo) 40 mg enteric tablet, 30, blister pack 205823 998611000168106 Esomeprazole (Apo) 40 mg enteric tablet, 30 998561000168108 Esomeprazole (Apo) 40 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +24641000036105 Biso 2.5 mg tablet, 28, blister pack 164259 22701000036108 Biso 2.5 mg tablet, 28 20341000036108 Biso 2.5 mg tablet 19861000036102 Biso 19861000036102 Biso 27957011000036102 bisoprolol fumarate 2.5 mg tablet, 28 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +933212041000036102 Donpesyn 10 mg film-coated tablet, 60, blister pack 142234 933201451000036101 Donpesyn 10 mg film-coated tablet, 60 933194851000036102 Donpesyn 10 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200951000036102 donepezil hydrochloride 10 mg tablet, 60 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +69599011000036107 Lemsip Max 1 g powder for oral liquid, 5 sachets 69865 67398011000036105 Lemsip Max 1 g powder for oral liquid, 5 sachets 65646011000036105 Lemsip Max 1 g powder for oral liquid, 1 sachet 1561000168105 Lemsip Max 1561000168105 Lemsip Max 71933011000036101 paracetamol 1 g powder for oral liquid, 5 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +39375011000036107 Sebivo 600 mg film-coated tablet, 28, blister pack 126089 39260011000036102 Sebivo 600 mg film-coated tablet, 28 39202011000036102 Sebivo 600 mg film-coated tablet 39188011000036100 Sebivo 39188011000036100 Sebivo 39463011000036106 telbivudine 600 mg tablet, 28 39435011000036100 telbivudine 600 mg tablet 39425011000036102 telbivudine +1105191000168100 Midazolam (AN) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207247 1105181000168103 Midazolam (AN) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 1105131000168104 Midazolam (AN) 5 mg/5 mL injection solution, 5 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +80049011000036104 Sulprix 400 mg film-coated tablet, 100, blister pack 152460 79977011000036103 Sulprix 400 mg film-coated tablet, 100 79927011000036104 Sulprix 400 mg film-coated tablet 79905011000036100 Sulprix 79905011000036100 Sulprix 80066011000036102 amisulpride 400 mg tablet, 100 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +69357011000036109 Magnoplasm paste, 100 g, jar 29623 67157011000036105 Magnoplasm paste, 100 g 65391011000036100 Magnoplasm paste 65071011000036106 Magnoplasm 65071011000036106 Magnoplasm 71720011000036102 glycerol 44% + magnesium sulfate dried 48% paste, 100 g 70147011000036100 glycerol 44% + magnesium sulfate dried 48% paste 69810011000036104 glycerol + magnesium sulfate dried +894861000168108 Plasma-Lyte 148 intravenous infusion injection, 1 L bag 231425 894851000168106 Plasma-Lyte 148 intravenous infusion injection, 1 L bag 894841000168109 Plasma-Lyte 148 intravenous infusion injection, 1 L bag 894641000168108 Plasma-Lyte 148 894641000168108 Plasma-Lyte 148 872481000168102 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, 1 L bag 872461000168106 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, bag 81233011000036103 sodium chloride + sodium gluconate + sodium acetate trihydrate + potassium chloride + magnesium chloride +131961000036108 Gymiso 200 microgram tablet, 4, blister pack 188015 127961000036101 Gymiso 200 microgram tablet, 4 124331000036102 Gymiso 200 microgram tablet 123981000036102 Gymiso 123981000036102 Gymiso 127971000036109 misoprostol 200 microgram tablet, 4 22876011000036106 misoprostol 200 microgram tablet 21520011000036107 misoprostol +11761000036108 Sertraline (Pfizer) 100 mg film-coated tablet, 30, blister pack 114743 6451000036107 Sertraline (Pfizer) 100 mg film-coated tablet, 30 3071000036101 Sertraline (Pfizer) 100 mg film-coated tablet 711000036107 Sertraline (Pfizer) 711000036107 Sertraline (Pfizer) 28286011000036100 sertraline 100 mg tablet, 30 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +933246281000036109 Allevyn Ag Gentle Border (66800462) 12.5 cm x 12.5 cm medicated dressing, 10, carton 169184 933242851000036102 Allevyn Ag Gentle Border (66800462) 12.5 cm x 12.5 cm medicated dressing, 10 933241131000036107 Allevyn Ag Gentle Border (66800462) 12.5 cm x 12.5 cm medicated dressing 58521000168104 Allevyn Ag Gentle Border (66800462) 58521000168104 Allevyn Ag Gentle Border (66800462) 933242811000036101 dressing foam with silver 12.5 cm x 12.5 cm dressing, 10 933241071000036105 dressing foam with silver 12.5 cm x 12.5 cm dressing 933247641000036101 dressing foam with silver +933231161000036102 Temizole 100 mg hard capsule, 5, bottle 172964 933225231000036104 Temizole 100 mg hard capsule, 5 933220451000036103 Temizole 100 mg hard capsule 933219021000036101 Temizole 933219021000036101 Temizole 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +762331000168102 Curash Medicated Nappy Rash 20% cream, 100 g, tube 62680 762321000168100 Curash Medicated Nappy Rash 20% cream, 100 g 762301000168109 Curash Medicated Nappy Rash 20% cream 762281000168105 Curash Medicated Nappy Rash 762281000168105 Curash Medicated Nappy Rash 762311000168107 zinc oxide 20% cream, 100 g 762291000168108 zinc oxide 20% cream 77446011000036105 zinc oxide +889241000168107 Bosleer 62.5 mg film-coated tablet, 500, bottle 235885 889231000168103 Bosleer 62.5 mg film-coated tablet, 500 889181000168109 Bosleer 62.5 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 884281000168101 bosentan 62.5 mg tablet, 500 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +20731011000036109 Allopurinol (Chemmart) 300 mg uncoated tablet, 60, blister pack 83098 13900011000036100 Allopurinol (Chemmart) 300 mg uncoated tablet, 60 7186011000036109 Allopurinol (Chemmart) 300 mg uncoated tablet 4158011000036107 Allopurinol (Chemmart) 4158011000036107 Allopurinol (Chemmart) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +20731011000036109 Allopurinol (Chemmart) 300 mg uncoated tablet, 60, blister pack 219913 13900011000036100 Allopurinol (Chemmart) 300 mg uncoated tablet, 60 7186011000036109 Allopurinol (Chemmart) 300 mg uncoated tablet 4158011000036107 Allopurinol (Chemmart) 4158011000036107 Allopurinol (Chemmart) 28008011000036107 allopurinol 300 mg tablet, 60 23331011000036107 allopurinol 300 mg tablet 21408011000036108 allopurinol +91271000036108 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 100 mL bag 165164 89601000036102 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 100 mL bag 88181000036109 Metronidazole (Claris) 500 mg/100 mL (0.5%) injection solution, 100 mL bag 87621000036101 Metronidazole (Claris) 87621000036101 Metronidazole (Claris) 32778011000036106 metronidazole 500 mg/100 mL (0.5%) injection, 100 mL bag 22354011000036104 metronidazole 500 mg/100 mL (0.5%) injection, bag 21482011000036106 metronidazole +920751000168107 Cilopam 20 mg film-coated tablet, 84, blister pack 158864 920741000168105 Cilopam 20 mg film-coated tablet, 84 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 932395011000036108 citalopram 20 mg tablet, 84 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +989351000168105 Ibuprofen (Black and Gold) 200 mg sugar coated tablet, 24, blister pack 165316 989341000168108 Ibuprofen (Black and Gold) 200 mg sugar coated tablet, 24 989331000168104 Ibuprofen (Black and Gold) 200 mg sugar coated tablet 989321000168102 Ibuprofen (Black and Gold) 989321000168102 Ibuprofen (Black and Gold) 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60741011000036104 Panadeine Rapid soluble tablet, 20, strip pack 50138 56699011000036106 Panadeine Rapid soluble tablet, 20 54039011000036100 Panadeine Rapid soluble tablet 41411000168104 Panadeine Rapid 41411000168104 Panadeine Rapid 63517011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg soluble tablet, 20 88211000036105 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg soluble tablet 21286011000036106 paracetamol + codeine +1096371000168104 Femzol-1 150 mg hard capsule, 1, blister pack 286567 1096361000168105 Femzol-1 150 mg hard capsule, 1 1096351000168108 Femzol-1 150 mg hard capsule 1096341000168106 Femzol-1 1096341000168106 Femzol-1 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +933211881000036108 Pravastatin Sodium (Lupin) 80 mg film-coated tablet, 30, blister pack 139590 933200701000036100 Pravastatin Sodium (Lupin) 80 mg film-coated tablet, 30 933194651000036101 Pravastatin Sodium (Lupin) 80 mg film-coated tablet 933193951000036106 Pravastatin Sodium (Lupin) 933193951000036106 Pravastatin Sodium (Lupin) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +1002231000168105 Rivastigmine (Apo) 4.5 mg hard capsule, 56, bottle 160566 1002221000168107 Rivastigmine (Apo) 4.5 mg hard capsule, 56 1002211000168100 Rivastigmine (Apo) 4.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 27693011000036101 rivastigmine 4.5 mg capsule, 56 23030011000036104 rivastigmine 4.5 mg capsule 21413011000036101 rivastigmine +889161000168100 Flucloxacillin (Blooms The Chemist) 500 mg capsule, 48, blister pack 226383 889151000168102 Flucloxacillin (Blooms The Chemist) 500 mg capsule, 48 889111000168103 Flucloxacillin (Blooms The Chemist) 500 mg capsule 879491000168107 Flucloxacillin (Blooms The Chemist) 879491000168107 Flucloxacillin (Blooms The Chemist) 889141000168104 flucloxacillin 500 mg capsule, 48 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +1105031000168100 Midazolam (AN) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 207222 1105021000168103 Midazolam (AN) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 1104991000168101 Midazolam (AN) 15 mg/3 mL injection solution, 3 mL ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +925204011000036102 Pravaccord 20 mg uncoated tablet, 30, blister pack 156359 924741011000036108 Pravaccord 20 mg uncoated tablet, 30 924448011000036108 Pravaccord 20 mg uncoated tablet 924396011000036106 Pravaccord 924396011000036106 Pravaccord 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +131711000036109 Clopidogrel (GA) 75 mg film-coated tablet, 28, bottle 204440 923409011000036108 Clopidogrel (GA) 75 mg film-coated tablet, 28 923072011000036103 Clopidogrel (GA) 75 mg film-coated tablet 922931011000036105 Clopidogrel (GA) 922931011000036105 Clopidogrel (GA) 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +44710011000036107 Chirocaine 62.5 mg/100 mL injection solution, 5 x 100 mL bags 94479 42155011000036105 Chirocaine 62.5 mg/100 mL injection solution, 5 x 100 mL bags 40370011000036101 Chirocaine 62.5 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46916011000036109 levobupivacaine 62.5 mg/100 mL injection, 5 x 100 mL bags 45345011000036104 levobupivacaine 62.5 mg/100 mL injection, bag 44881011000036100 levobupivacaine +61210011000036104 Strepfen Intensive cherry 8.75 mg lozenge, 16, blister pack 76192 57146011000036109 Strepfen Intensive cherry 8.75 mg lozenge, 16 54217011000036109 Strepfen Intensive cherry 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63907011000036106 flurbiprofen 8.75 mg lozenge, 16 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +86133011000036103 Levetiracetam (Apo) 500 mg tablet, 60, bottle 156321 85708011000036105 Levetiracetam (Apo) 500 mg tablet, 60 85345011000036105 Levetiracetam (Apo) 500 mg tablet 991000168106 Levetiracetam (Apo) 991000168106 Levetiracetam (Apo) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +933231121000036106 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 28, blister pack 172447 933225191000036109 Famciclovir (Terry White Chemists) 500 mg film-coated tablet, 28 933220441000036101 Famciclovir (Terry White Chemists) 500 mg film-coated tablet 933218961000036104 Famciclovir (Terry White Chemists) 933218961000036104 Famciclovir (Terry White Chemists) 933225041000036104 famciclovir 500 mg tablet, 28 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +60636011000036100 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 50, bottle 24142 56594011000036100 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 50 54015011000036105 Paracetamol (Soul Pattinson) 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 46261011000036104 paracetamol 500 mg tablet, 50 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +925051000168102 Androgel 1% (50 mg/5 g) gel, 10 x 5 g sachets 96130 925041000168104 Androgel 1% (50 mg/5 g) gel, 10 x 5 g sachets 924901000168101 Androgel 1% (50 mg/5 g) gel, 5 g sachet 924891000168100 Androgel 924891000168100 Androgel 925031000168108 testosterone 1% (50 mg/5 g) gel, 10 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +933246241000036100 Fluconazole (Claris) 100 mg/50 mL injection solution, 50 mL vial 133463 933242871000036107 Fluconazole (Claris) 100 mg/50 mL injection solution, 50 mL vial 72925011000036101 Fluconazole (Claris) 100 mg/50 mL injection solution, 50 mL vial 72918011000036101 Fluconazole (Claris) 72918011000036101 Fluconazole (Claris) 27177011000036102 fluconazole 100 mg/50 mL injection, 50 mL vial 22539011000036100 fluconazole 100 mg/50 mL injection, vial 21365011000036105 fluconazole +165941000036102 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 204807 164141000036104 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 179461000036104 Pegatron Combination Therapy with Clearclick Injector 3301011000036102 Rebetol 28078011000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [84 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +165941000036102 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 204807 164141000036104 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack 162601000036102 Peg-Intron Clearclick Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28078011000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [84 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +165941000036102 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 204807 164141000036104 Pegatron Combination Therapy with Clearclick Injector (4 x Peg-Intron Clearclick Injector 80 microgram packs, 84 x Rebetol capsules), 1 pack 162621000036107 Peg-Intron Clearclick Injector (inert substance) diluent, 0.5 mL cartridge 179461000036104 Pegatron Combination Therapy with Clearclick Injector 11661000168109 Peg-Intron Clearclick Injector 28078011000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) ribavirin 200 mg capsule [84 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +754291000168109 Oxycodone (Medis) 5 mg hard capsule, 60, blister pack 227840 754281000168106 Oxycodone (Medis) 5 mg hard capsule, 60 754251000168104 Oxycodone (Medis) 5 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +1070711000168103 Paracetamol plus Codeine and Calmative (Terry White Chemists) uncoated tablet, 40, blister pack 236817 1070701000168101 Paracetamol plus Codeine and Calmative (Terry White Chemists) uncoated tablet, 40 1070671000168102 Paracetamol plus Codeine and Calmative (Terry White Chemists) uncoated tablet 1070661000168108 Paracetamol plus Codeine and Calmative (Terry White Chemists) 1070661000168108 Paracetamol plus Codeine and Calmative (Terry White Chemists) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1062691000168107 Rapideine Extra uncoated tablet, 40, blister pack 220728 1062681000168109 Rapideine Extra uncoated tablet, 40 1062551000168103 Rapideine Extra uncoated tablet 1062541000168100 Rapideine Extra 1062541000168100 Rapideine Extra 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1062651000168102 Rapideine Extra uncoated tablet, 30, blister pack 220728 1062641000168104 Rapideine Extra uncoated tablet, 30 1062551000168103 Rapideine Extra uncoated tablet 1062541000168100 Rapideine Extra 1062541000168100 Rapideine Extra 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +37741000036106 Respaz 4 mg film-coated tablet, 20, blister pack 165542 34031000036106 Respaz 4 mg film-coated tablet, 20 32521000036107 Respaz 4 mg film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 81629011000036100 risperidone 4 mg tablet, 20 22517011000036100 risperidone 4 mg tablet 21338011000036109 risperidone +1021541000168100 Voriconazole (Apo) 200 mg film-coated tablet, 20, blister pack 238282 1021531000168109 Voriconazole (Apo) 200 mg film-coated tablet, 20 1021461000168102 Voriconazole (Apo) 200 mg film-coated tablet 1021261000168103 Voriconazole (Apo) 1021261000168103 Voriconazole (Apo) 46806011000036104 voriconazole 200 mg tablet, 20 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +37661000036101 Respaz 500 microgram film-coated tablet, 20, blister pack 165538 33941000036104 Respaz 500 microgram film-coated tablet, 20 32551000036101 Respaz 500 microgram film-coated tablet 32201000036100 Respaz 32201000036100 Respaz 27699011000036103 risperidone 500 microgram tablet, 20 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +140321000036105 Roxithromycin (SCP) 300 mg film-coated tablet, 5, blister pack 133757 138761000036104 Roxithromycin (SCP) 300 mg film-coated tablet, 5 137681000036101 Roxithromycin (SCP) 300 mg film-coated tablet 137331000036105 Roxithromycin (SCP) 137331000036105 Roxithromycin (SCP) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +33556011000036102 Ozcef 250 mg/5 mL powder for oral liquid, 75 mL, bottle 137889 33294011000036107 Ozcef 250 mg/5 mL powder for oral liquid, 75 mL 33056011000036104 Ozcef 250 mg/5 mL powder for oral liquid, 5 mL 3555011000036107 Ozcef 3555011000036107 Ozcef 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +33556011000036102 Ozcef 250 mg/5 mL powder for oral liquid, 75 mL, bottle 169128 33294011000036107 Ozcef 250 mg/5 mL powder for oral liquid, 75 mL 33056011000036104 Ozcef 250 mg/5 mL powder for oral liquid, 5 mL 3555011000036107 Ozcef 3555011000036107 Ozcef 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +1068541000168102 Paracetamol plus Codeine (Sandoz) uncoated tablet, 20, blister pack 212684 1068531000168106 Paracetamol plus Codeine (Sandoz) uncoated tablet, 20 1068521000168108 Paracetamol plus Codeine (Sandoz) uncoated tablet 1068511000168101 Paracetamol plus Codeine (Sandoz) 1068511000168101 Paracetamol plus Codeine (Sandoz) 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +17887011000036104 Monace 10 mg uncoated tablet, 30, bottle 101899 11242011000036103 Monace 10 mg uncoated tablet, 30 4901011000036106 Monace 10 mg uncoated tablet 3242011000036107 Monace 3242011000036107 Monace 27148011000036100 fosinopril sodium 10 mg tablet, 30 22511011000036108 fosinopril sodium 10 mg tablet 21668011000036105 fosinopril +920711000168106 Aciclovir (Apo) 200 mg tablet, 50, blister pack 159140 920701000168108 Aciclovir (Apo) 200 mg tablet, 50 920671000168107 Aciclovir (Apo) 200 mg tablet 920661000168101 Aciclovir (Apo) 920661000168101 Aciclovir (Apo) 27698011000036106 aciclovir 200 mg tablet, 50 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +50632011000036103 Apomine 50 mg/5 mL injection solution, 5 x 5 mL ampoules 142093 49658011000036108 Apomine 50 mg/5 mL injection solution, 5 x 5 mL ampoules 48806011000036105 Apomine 50 mg/5 mL injection solution, 5 mL ampoule 30841000168109 Apomine 30841000168109 Apomine 51543011000036107 apomorphine hydrochloride hemihydrate 50 mg/5 mL injection, 5 x 5 mL ampoules 50997011000036106 apomorphine hydrochloride hemihydrate 50 mg/5 mL injection, ampoule 21732011000036105 apomorphine +660011000168103 Valaciclovir (AN) 500 mg film-coated tablet, 30, blister pack 173287 660001000168101 Valaciclovir (AN) 500 mg film-coated tablet, 30 659951000168100 Valaciclovir (AN) 500 mg film-coated tablet 659941000168102 Valaciclovir (AN) 659941000168102 Valaciclovir (AN) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +11801000036102 Olanzapine (Sandoz) 2.5 mg film-coated tablet, 28, blister pack 148450 6541000036108 Olanzapine (Sandoz) 2.5 mg film-coated tablet, 28 3681000036105 Olanzapine (Sandoz) 2.5 mg film-coated tablet 1151000036106 Olanzapine (Sandoz) 1151000036106 Olanzapine (Sandoz) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +61135011000036102 Rectinol HC ointment, 30 g, tube 72940 57078011000036102 Rectinol HC ointment, 30 g 54187011000036105 Rectinol HC ointment 53340011000036107 Rectinol HC 53340011000036107 Rectinol HC 26990011000036107 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment, 30 g 22363011000036105 hydrocortisone 0.5% + cinchocaine hydrochloride 0.5% ointment 21414011000036104 hydrocortisone + cinchocaine +78989011000036102 Ganfort 0.3/5 eye drops solution, 3 mL, bottle 147830 78835011000036104 Ganfort 0.3/5 eye drops solution, 3 mL 78645011000036106 Ganfort 0.3/5 eye drops solution 13531000168101 Ganfort 0.3/5 13531000168101 Ganfort 0.3/5 79230011000036101 bimatoprost 0.03% + timolol 0.5% eye drops, 3 mL 79109011000036100 bimatoprost 0.03% + timolol 0.5% eye drops 79097011000036104 bimatoprost + timolol +140301000036100 Gabapentin (Aspen) 400 mg capsule, 100, blister pack 107498 138731000036105 Gabapentin (Aspen) 400 mg capsule, 100 137771000036108 Gabapentin (Aspen) 400 mg capsule 112611000036104 Gabapentin (Aspen) 112611000036104 Gabapentin (Aspen) 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +43984011000036106 Mivacron 20 mg/10 mL injection solution, 5 x 10 mL ampoules 42947 41476011000036101 Mivacron 20 mg/10 mL injection solution, 5 x 10 mL ampoules 40001011000036103 Mivacron 20 mg/10 mL injection solution, 10 mL ampoule 39761011000036101 Mivacron 39761011000036101 Mivacron 46322011000036108 mivacurium chloride 20 mg/10 mL injection, 5 x 10 mL ampoules 45077011000036109 mivacurium chloride 20 mg/10 mL injection, ampoule 44971011000036103 mivacurium +899291000168103 Brenzys Auto-Injector 50 mg/mL injection solution, 1 mL injection device 245253 899281000168101 Brenzys Auto-Injector 50 mg/mL injection solution, 1 mL injection device 899261000168105 Brenzys Auto-Injector 50 mg/mL injection solution, injection device 899251000168108 Brenzys Auto-Injector 899251000168108 Brenzys Auto-Injector 899271000168104 etanercept 50 mg/mL injection, 1 mL injection device 897981000168103 etanercept 50 mg/mL injection, injection device 21347011000036107 etanercept +1059881000168108 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 7, blister pack 234479 1059871000168105 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 7 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 811981000168106 rosuvastatin 10 mg tablet, 7 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +52191011000036107 Mirtazapine (Apo) 45 mg film-coated tablet, 30, bottle 127684 52083011000036104 Mirtazapine (Apo) 45 mg film-coated tablet, 30 51982011000036100 Mirtazapine (Apo) 45 mg film-coated tablet 11681000168100 Mirtazapine (Apo) 11681000168100 Mirtazapine (Apo) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +52703011000036100 Simvastatin (Spirit) 10 mg film-coated tablet, 90, bottle 116708 52527011000036104 Simvastatin (Spirit) 10 mg film-coated tablet, 90 52399011000036103 Simvastatin (Spirit) 10 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 52870011000036100 simvastatin 10 mg tablet, 90 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +32590011000036101 Fybogel orange 3.5 g powder for oral liquid, 30 sachets 52110 32385011000036108 Fybogel orange 3.5 g powder for oral liquid, 30 sachets 5748011000036108 Fybogel orange 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 32785011000036107 dry psyllium husk 3.5 g powder for oral liquid, 30 sachets 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +32590011000036101 Fybogel orange 3.5 g powder for oral liquid, 30 sachets 106708 32385011000036108 Fybogel orange 3.5 g powder for oral liquid, 30 sachets 5748011000036108 Fybogel orange 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 32785011000036107 dry psyllium husk 3.5 g powder for oral liquid, 30 sachets 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +912821000168103 Candesartan HCTZ 32/25 (DRLA) uncoated tablet, 7, blister pack 198389 912811000168105 Candesartan HCTZ 32/25 (DRLA) uncoated tablet, 7 912801000168107 Candesartan HCTZ 32/25 (DRLA) uncoated tablet 912791000168106 Candesartan HCTZ 32/25 (DRLA) 912791000168106 Candesartan HCTZ 32/25 (DRLA) 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +166261000036104 Amlodipine (Spirit) 10 mg uncoated tablet, 30, blister pack 96962 164521000036100 Amlodipine (Spirit) 10 mg uncoated tablet, 30 162301000036106 Amlodipine (Spirit) 10 mg uncoated tablet 161871000036102 Amlodipine (Spirit) 161871000036102 Amlodipine (Spirit) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +34618011000036100 Tussinol Linctus 1 mg/mL oral liquid solution, 100 mL, bottle 10755 34214011000036109 Tussinol Linctus 1 mg/mL oral liquid solution, 100 mL 33967011000036103 Tussinol Linctus 1 mg/mL oral liquid solution 33960011000036104 Tussinol Linctus 33960011000036104 Tussinol Linctus 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +59850011000036109 Strong Pain Relief (Amcal) uncoated tablet, 48, blister pack 115171 55812011000036109 Strong Pain Relief (Amcal) uncoated tablet, 48 53671011000036107 Strong Pain Relief (Amcal) uncoated tablet 53433011000036108 Strong Pain Relief (Amcal) 53433011000036108 Strong Pain Relief (Amcal) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +50529011000036101 Risperidone (Apo) 2 mg film-coated tablet, 60, blister pack 127610 49549011000036109 Risperidone (Apo) 2 mg film-coated tablet, 60 48712011000036107 Risperidone (Apo) 2 mg film-coated tablet 631000168102 Risperidone (Apo) 631000168102 Risperidone (Apo) 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +921391000168108 Ciaxone 250 mg film-coated tablet, 2, blister pack 90908 921381000168105 Ciaxone 250 mg film-coated tablet, 2 921371000168107 Ciaxone 250 mg film-coated tablet 921121000168109 Ciaxone 921121000168109 Ciaxone 27061011000036107 ciprofloxacin 250 mg tablet, 2 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +12121000036109 Anastrozole (PS) 1 mg film-coated tablet, 30, blister pack 155679 6581000036104 Anastrozole (PS) 1 mg film-coated tablet, 30 2521000036104 Anastrozole (PS) 1 mg film-coated tablet 811000036101 Anastrozole (PS) 811000036101 Anastrozole (PS) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +77342011000036102 Water for Injections (Pfizer (Perth)) injection solution, 30 x 20 mL ampoules 49288 76758011000036104 Water for Injections (Pfizer (Perth)) injection solution, 30 x 20 mL ampoules 76168011000036102 Water for Injections (Pfizer (Perth)) injection solution, 20 mL ampoule 75983011000036105 Water for Injections (Pfizer (Perth)) 75983011000036105 Water for Injections (Pfizer (Perth)) 78265011000036101 water for injections injection, 30 x 20 mL ampoules 77585011000036101 water for injections injection, 20 mL ampoule 77431011000036101 water for injections +60818011000036103 Nicotinell Fruit 2 mg chewing gum, 12, blister pack 58059 56774011000036107 Nicotinell Fruit 2 mg chewing gum, 12 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +60818011000036103 Nicotinell Fruit 2 mg chewing gum, 12, blister pack 126013 56774011000036107 Nicotinell Fruit 2 mg chewing gum, 12 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63745011000036103 nicotine 2 mg gum, 12 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +878421000168104 Baltine 60 mg enteric capsule, 7, blister pack 210679 878411000168106 Baltine 60 mg enteric capsule, 7 878401000168108 Baltine 60 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 38613011000036106 duloxetine 60 mg enteric capsule, 7 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +69068011000036100 Mylanta 2go Antacid Dual Action chewable tablet, 10, blister pack 14378 66870011000036100 Mylanta 2go Antacid Dual Action chewable tablet, 10 65467011000036104 Mylanta 2go Antacid Dual Action chewable tablet 64987011000036109 Mylanta 2go Antacid Dual Action 64987011000036109 Mylanta 2go Antacid Dual Action 71475011000036100 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet, 10 70025011000036103 alginic acid 215 mg + magaldrate 371 mg + sodium bicarbonate 234 mg chewable tablet 69870011000036107 alginic acid + magaldrate + bicarbonate +1056301000168103 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10, carton 1056291000168104 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10 1056271000168100 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon 57741000168100 Sorbact Gauze (S98120) 57741000168100 Sorbact Gauze (S98120) 1056281000168102 dressing hydrophobic 5 cm x 200 cm ribbon, 10 1056261000168106 dressing hydrophobic 5 cm x 200 cm ribbon 1055281000168109 dressing hydrophobic +1058471000168100 Ondansetron (Auro) 8 mg film-coated tablet, 10, blister pack 173182 1058461000168106 Ondansetron (Auro) 8 mg film-coated tablet, 10 1058451000168109 Ondansetron (Auro) 8 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 28337011000036103 ondansetron 8 mg tablet, 10 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +34826011000036100 Actiq 400 microgram lozenge on handle, 3, blister pack 91600 34401011000036105 Actiq 400 microgram lozenge on handle, 3 34076011000036100 Actiq 400 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 35240011000036104 fentanyl 400 microgram lozenge on handle, 3 34911011000036105 fentanyl 400 microgram lozenge on handle 21258011000036102 fentanyl +920871000168106 Cilopam 40 mg film-coated tablet, 28, blister pack 158866 919961000168108 Cilopam 40 mg film-coated tablet, 28 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 28113011000036106 citalopram 40 mg tablet, 28 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +61452011000036105 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 24, blister pack 90120 57377011000036104 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet, 24 54288011000036108 Paracetamol (Soul Pattinson) capsule shaped 500 mg film-coated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +987661000168107 Codral Original Day and Night Cold and Flu (32 x Day tablets, 16 x Night tablets), 48, blister pack 51772 987651000168105 Codral Original Day and Night Cold and Flu (32 x Day tablets, 16 x Night tablets), 48 987611000168109 Codral Original Day and Night Cold and Flu (Day) uncoated tablet 987581000168102 Codral Original Day and Night Cold and Flu 987591000168104 Codral Original Day and Night Cold and Flu (Day) 664791000168101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [32] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [16], 48 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +987661000168107 Codral Original Day and Night Cold and Flu (32 x Day tablets, 16 x Night tablets), 48, blister pack 51772 987651000168105 Codral Original Day and Night Cold and Flu (32 x Day tablets, 16 x Night tablets), 48 987621000168102 Codral Original Day and Night Cold and Flu (Night) uncoated tablet 987581000168102 Codral Original Day and Night Cold and Flu 987601000168106 Codral Original Day and Night Cold and Flu (Night) 664791000168101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [32] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [16], 48 664691000168107 pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet 664681000168109 pseudoephedrine + paracetamol + triprolidine +44062011000036105 Survanta 200 mg/8 mL intratracheal suspension, 8 mL vial 48406 41549011000036101 Survanta 200 mg/8 mL intratracheal suspension, 8 mL vial 40056011000036104 Survanta 200 mg/8 mL intratracheal suspension, 8 mL vial 39590011000036107 Survanta 39590011000036107 Survanta 46381011000036106 beractant 200 mg/8 mL intratracheal suspension, 8 mL vial 45118011000036107 beractant 200 mg/8 mL intratracheal suspension, vial 44961011000036108 beractant +77311011000036103 Water for Irrigation (Baxter) irrigation solution, 15 x 500 mL bottles 35657 76727011000036104 Water for Irrigation (Baxter) irrigation solution, 15 x 500 mL bottles 76144011000036104 Water for Irrigation (Baxter) irrigation solution, 500 mL bottle 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78241011000036107 water for irrigation solution, 15 x 500 mL bottles 77566011000036106 water for irrigation solution, 500 mL bottle 77440011000036107 water for irrigation +84276011000036100 Norvapine 10 mg uncoated tablet, 30, blister pack 125854 83969011000036100 Norvapine 10 mg uncoated tablet, 30 83609011000036102 Norvapine 10 mg uncoated tablet 83558011000036107 Norvapine 83558011000036107 Norvapine 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +931635011000036106 Aranesp with Automatic Needle Guard 40 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 166094 930795011000036102 Aranesp with Automatic Needle Guard 40 microgram/0.4 mL injection solution, 4 x 0.4 mL syringes 930050011000036104 Aranesp with Automatic Needle Guard 40 microgram/0.4 mL injection solution, 0.4 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 27855011000036104 darbepoetin alfa 40 microgram/0.4 mL injection, 4 x 0.4 mL syringes 23183011000036109 darbepoetin alfa 40 microgram/0.4 mL injection, syringe 21234011000036105 darbepoetin alfa +19661000036101 Influvac 2012 injection suspension, 1 x 0.5 mL syringe 81465 19221000036107 Influvac 2012 injection suspension, 1 x 0.5 mL syringe 18651000036109 Influvac 2012 injection suspension, 0.5 mL syringe 34491000168106 Influvac 2012 34491000168106 Influvac 2012 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +933230891000036108 Famciclovir (Apo) 500 mg film-coated tablet, 3, blister pack 172443 933224951000036101 Famciclovir (Apo) 500 mg film-coated tablet, 3 933220421000036109 Famciclovir (Apo) 500 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 86444011000036104 famciclovir 500 mg tablet, 3 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +61225011000036102 Antifungal Clotrimazole (Soul Pattinson) 1% cream, 50 g, tube 76703 57161011000036108 Antifungal Clotrimazole (Soul Pattinson) 1% cream, 50 g 54220011000036101 Antifungal Clotrimazole (Soul Pattinson) 1% cream 53391011000036106 Antifungal Clotrimazole (Soul Pattinson) 53391011000036106 Antifungal Clotrimazole (Soul Pattinson) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +757901000168100 Solifenacin (Chemmart) 5 mg film-coated tablet, 30, blister pack 218393 757891000168104 Solifenacin (Chemmart) 5 mg film-coated tablet, 30 757881000168102 Solifenacin (Chemmart) 5 mg film-coated tablet 757781000168106 Solifenacin (Chemmart) 757781000168106 Solifenacin (Chemmart) 46153011000036105 solifenacin succinate 5 mg tablet, 30 45010011000036100 solifenacin succinate 5 mg tablet 44891011000036101 solifenacin +97281000036102 Norcuron (50 x 4 mg ampoules, 50 x 1 mL inert diluent ampoules), 1 pack, composite pack 18629 96881000036101 Norcuron (50 x 4 mg ampoules, 50 x 1 mL inert diluent ampoules), 1 pack 645451000168105 Norcuron (inert substance) diluent, 1 mL ampoule 35981011000036100 Norcuron 35981011000036100 Norcuron 96891000036104 vecuronium bromide 4 mg injection [50 ampoules] (&) inert substance diluent [50 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +97281000036102 Norcuron (50 x 4 mg ampoules, 50 x 1 mL inert diluent ampoules), 1 pack, composite pack 18629 96881000036101 Norcuron (50 x 4 mg ampoules, 50 x 1 mL inert diluent ampoules), 1 pack 36196011000036106 Norcuron (vecuronium bromide 4 mg) powder for injection, 4 mg ampoule 35981011000036100 Norcuron 35981011000036100 Norcuron 96891000036104 vecuronium bromide 4 mg injection [50 ampoules] (&) inert substance diluent [50 x 1 mL ampoules], 1 pack 37970011000036100 vecuronium bromide 4 mg injection, ampoule 37741011000036100 vecuronium +19745011000036109 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62133 13001011000036100 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28 6288011000036109 Norimin 28 Day (norethisterone 500 microgram + ethinylestradiol 35 microgram) uncoated tablet 700023331000036102 Norimin 28 Day 700023331000036102 Norimin 28 Day 27492011000036105 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +19745011000036109 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 62133 13001011000036100 Norimin 28 Day (21 x 500 microgram/35 microgram tablets, 7 x inert tablets), 4 x 28 6289011000036101 Norimin 28 Day (inert substance) uncoated tablet 700023331000036102 Norimin 28 Day 700023331000036102 Norimin 28 Day 27492011000036105 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +886101000168108 Candesan Combi 16/12.5 uncoated tablet, 30, blister pack 204577 886091000168103 Candesan Combi 16/12.5 uncoated tablet, 30 886081000168101 Candesan Combi 16/12.5 uncoated tablet 886071000168104 Candesan Combi 16/12.5 886071000168104 Candesan Combi 16/12.5 27817011000036101 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 30 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +892851000168104 Rehydration Formula Effervescent (Pharmacy Care) Blackcurrant effervescent tablet, 20, tube 221767 892841000168101 Rehydration Formula Effervescent (Pharmacy Care) Blackcurrant effervescent tablet, 20 892831000168105 Rehydration Formula Effervescent (Pharmacy Care) Blackcurrant effervescent tablet 892821000168107 Rehydration Formula Effervescent (Pharmacy Care) 892821000168107 Rehydration Formula Effervescent (Pharmacy Care) 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 81232011000036105 sodium chloride + potassium chloride + glucose + citric acid + bicarbonate +1054531000168105 Oxycodone (Sandoz) 10 mg modified release tablet, 60, blister pack 153597 785661000168109 Oxycodone (Sandoz) 10 mg modified release tablet, 60 676311000168107 Oxycodone (Sandoz) 10 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +982511000168106 Relpax 40 mg film-coated tablet, 30, bottle 68357 982501000168108 Relpax 40 mg film-coated tablet, 30 920186011000036100 Relpax 40 mg film-coated tablet 920109011000036105 Relpax 920109011000036105 Relpax 982491000168101 eletriptan 40 mg tablet, 30 920828011000036101 eletriptan 40 mg tablet 920818011000036107 eletriptan +1016711000168107 Atomoxetine (Apotex) 10 mg hard capsule, 28, blister pack 199914 1016701000168109 Atomoxetine (Apotex) 10 mg hard capsule, 28 1016691000168109 Atomoxetine (Apotex) 10 mg hard capsule 1013681000168104 Atomoxetine (Apotex) 1013681000168104 Atomoxetine (Apotex) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +86045011000036106 Amlodipine (DRLA) 5 mg tablet, 14, blister pack 147596 85638011000036107 Amlodipine (DRLA) 5 mg tablet, 14 85311011000036103 Amlodipine (DRLA) 5 mg tablet 85261011000036108 Amlodipine (DRLA) 85261011000036108 Amlodipine (DRLA) 84622011000036102 amlodipine 5 mg tablet, 14 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +77220011000036109 Hydrogen Peroxide (David Craig) 6% solution, 175 mL, bottle 14217 76636011000036109 Hydrogen Peroxide (David Craig) 6% solution, 175 mL 76079011000036108 Hydrogen Peroxide (David Craig) 6% solution 76018011000036107 Hydrogen Peroxide (David Craig) 76018011000036107 Hydrogen Peroxide (David Craig) 78185011000036101 hydrogen peroxide 6% solution, 175 mL 77534011000036107 hydrogen peroxide 6% solution 69793011000036105 hydrogen peroxide +760791000168103 Remsima 100 mg powder for injection, 1 vial 217065 760781000168101 Remsima 100 mg powder for injection, 1 vial 760771000168104 Remsima 100 mg powder for injection, 100 mg vial 760761000168105 Remsima 760761000168105 Remsima 27724011000036101 infliximab 100 mg injection, 1 vial 23059011000036109 infliximab 100 mg injection, vial 21926011000036101 infliximab +765121000168107 Fraxiparine 9500 anti-Xa units/mL injection solution, 2 x 1 mL syringes 51313 765111000168100 Fraxiparine 9500 anti-Xa units/mL injection solution, 2 x 1 mL syringes 765091000168108 Fraxiparine 9500 anti-Xa units/mL injection solution, syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765101000168103 nadroparin calcium 9500 anti-Xa units/mL injection, 2 x 1 mL syringes 765081000168105 nadroparin calcium 9500 anti-Xa units/mL injection, syringe 765071000168107 nadroparin +933271000168102 Centevo 150/37.5/200 mg film-coated tablet, 98, bottle 238857 933261000168108 Centevo 150/37.5/200 mg film-coated tablet, 98 933061000168101 Centevo 150/37.5/200 mg film-coated tablet 933051000168103 Centevo 150/37.5/200 mg 933051000168103 Centevo 150/37.5/200 mg 933251000168106 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet, 98 23495011000036108 levodopa 150 mg + carbidopa 37.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +45371000036105 Galantamine MR (Apo) 16 mg modified release capsule, 28, blister pack 182041 43521000036102 Galantamine MR (Apo) 16 mg modified release capsule, 28 40791000036103 Galantamine MR (Apo) 16 mg modified release capsule 2801000168100 Galantamine MR (Apo) 2801000168100 Galantamine MR (Apo) 28249011000036104 galantamine 16 mg modified release capsule, 28 23563011000036100 galantamine 16 mg modified release capsule 21521011000036100 galantamine +970721000168103 Pregabalin (Apo) 300 mg hard capsule, 60, bottle 193254 970671000168106 Pregabalin (Apo) 300 mg hard capsule, 60 970601000168101 Pregabalin (Apo) 300 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +965351000168105 Zavedos 20 mg powder for injection, 1 vial 49936 965341000168108 Zavedos 20 mg powder for injection, 1 vial 965321000168102 Zavedos 20 mg powder for injection, 20 mg vial 4217011000036101 Zavedos 4217011000036101 Zavedos 965331000168104 idarubicin hydrochloride 20 mg injection, 1 vial 965311000168109 idarubicin hydrochloride 20 mg injection, vial 21720011000036108 idarubicin +50303011000036108 Mepilex Border (295300) 10 cm x 10 cm dressing, 5, carton 49366011000036109 Mepilex Border (295300) 10 cm x 10 cm dressing, 5 48617011000036101 Mepilex Border (295300) 10 cm x 10 cm dressing 46181000168109 Mepilex Border (295300) 46181000168109 Mepilex Border (295300) 51340011000036102 dressing foam with silicone heavy exudate 10 cm x 10 cm dressing, 5 50864011000036108 dressing foam with silicone heavy exudate 10 cm x 10 cm dressing 50761011000036107 dressing foam with silicone heavy exudate +43699011000036105 Nexavar 200 mg film-coated tablet, 60, blister pack 123158 41295011000036103 Nexavar 200 mg film-coated tablet, 60 39863011000036102 Nexavar 200 mg film-coated tablet 39561011000036102 Nexavar 39561011000036102 Nexavar 46230011000036100 sorafenib 200 mg tablet, 60 45037011000036106 sorafenib 200 mg tablet 44870011000036101 sorafenib +983561000168104 Cephalexin (Apotex) 500 mg capsule, 20, blister pack 159291 983551000168101 Cephalexin (Apotex) 500 mg capsule, 20 983541000168103 Cephalexin (Apotex) 500 mg capsule 983531000168107 Cephalexin (Apotex) 983531000168107 Cephalexin (Apotex) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +60224011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge, 24, blister pack 133376 56183011000036108 Strepfen Intensive honey and lemon 8.75 mg lozenge, 24 53828011000036109 Strepfen Intensive honey and lemon 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63909011000036104 flurbiprofen 8.75 mg lozenge, 24 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +97321000036106 Vaxigrip 2013 injection suspension, 10 x 0.5 mL syringes 80198 96931000036105 Vaxigrip 2013 injection suspension, 10 x 0.5 mL syringes 96431000036103 Vaxigrip 2013 injection suspension, 0.5 mL syringe 10151000168109 Vaxigrip 2013 10151000168109 Vaxigrip 2013 96741000036102 influenza trivalent adult vaccine 2013 injection, 10 x 0.5 mL syringes 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +43810011000036106 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 200 mL vial 116892 41183011000036101 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 200 mL vial 39820011000036102 Ciprofloxacin (Sandoz) 400 mg/200 mL intravenous infusion injection, 200 mL vial 4231011000036100 Ciprofloxacin (Sandoz) 4231011000036100 Ciprofloxacin (Sandoz) 46147011000036103 ciprofloxacin 400 mg/200 mL injection, 200 mL vial 45009011000036109 ciprofloxacin 400 mg/200 mL injection, vial 21245011000036105 ciprofloxacin +19261011000036106 Kapanol 100 mg modified release capsule, 20, blister pack 48136 12551011000036101 Kapanol 100 mg modified release capsule, 20 5235011000036105 Kapanol 100 mg modified release capsule 3981011000036107 Kapanol 3981011000036107 Kapanol 27193011000036102 morphine sulfate pentahydrate 100 mg modified release capsule, 20 22555011000036103 morphine sulfate pentahydrate 100 mg modified release capsule 21252011000036100 morphine +17855011000036100 Carvedilol (Terry White Chemists) 12.5 mg film-coated tablet, 60, blister pack 133043 11960011000036108 Carvedilol (Terry White Chemists) 12.5 mg film-coated tablet, 60 4621011000036100 Carvedilol (Terry White Chemists) 12.5 mg film-coated tablet 3269011000036109 Carvedilol (Terry White Chemists) 3269011000036109 Carvedilol (Terry White Chemists) 27963011000036102 carvedilol 12.5 mg tablet, 60 23287011000036103 carvedilol 12.5 mg tablet 21470011000036101 carvedilol +795351000168103 Instanyl 200 microgram/actuation nasal spray, 6 x 1 actuation, pump packs 197689 795341000168100 Instanyl 200 microgram/actuation nasal spray, 6 x 1 actuation 795261000168105 Instanyl 200 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 795331000168109 fentanyl 200 microgram/actuation nasal spray, 6 x 1 actuation 795251000168108 fentanyl 200 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +151871000036108 Riodine Povidone-Iodine Concentrated Gargle 7.5% mouthwash, 15 mL, bottle 10827 149871000036109 Riodine Povidone-Iodine Concentrated Gargle 7.5% mouthwash, 15 mL 148351000036102 Riodine Povidone-Iodine Concentrated Gargle 7.5% mouthwash 1211000168105 Riodine Povidone-Iodine Concentrated Gargle 1211000168105 Riodine Povidone-Iodine Concentrated Gargle 71849011000036108 povidone-iodine 7.5% mouthwash, 15 mL 70212011000036106 povidone-iodine 7.5% mouthwash 21660011000036108 povidone-iodine +97251000036109 Intanza 2013 injection suspension, 10 x 0.1 mL syringes 150130 96791000036108 Intanza 2013 injection suspension, 10 x 0.1 mL syringes 96391000036107 Intanza 2013 injection suspension, 0.1 mL syringe 20081000168108 Intanza 2013 20081000168108 Intanza 2013 96801000036107 influenza trivalent adult vaccine 2013 injection, 10 x 0.1 mL syringes 96401000036105 influenza trivalent adult vaccine 2013 injection, 0.1 mL syringe 97351000036100 influenza trivalent vaccine 2013 +933213571000036105 Citalopram (IPCA) 10 mg film-coated tablet, 28, bottle 158869 933203051000036107 Citalopram (IPCA) 10 mg film-coated tablet, 28 933195411000036102 Citalopram (IPCA) 10 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +65741000036108 Doxorubicin Hydrochloride (Novotech) 50 mg/25 mL injection solution, 25 mL vial 107371 63151000036109 Doxorubicin Hydrochloride (Novotech) 50 mg/25 mL injection solution, 25 mL vial 60841000036106 Doxorubicin Hydrochloride (Novotech) 50 mg/25 mL injection solution, 25 mL vial 60281000036101 Doxorubicin Hydrochloride (Novotech) 60281000036101 Doxorubicin Hydrochloride (Novotech) 27169011000036101 doxorubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 22531011000036104 doxorubicin hydrochloride 50 mg/25 mL injection, vial 21638011000036100 doxorubicin +59801000036109 Ceftriaxone (AFT) 500 mg powder for injection, 1 vial 185099 58891000036106 Ceftriaxone (AFT) 500 mg powder for injection, 1 vial 58371000036102 Ceftriaxone (AFT) 500 mg powder for injection, 500 mg vial 26001000036105 Ceftriaxone (AFT) 26001000036105 Ceftriaxone (AFT) 26661011000036103 ceftriaxone 500 mg injection, 1 vial 22061011000036105 ceftriaxone 500 mg injection, vial 21610011000036107 ceftriaxone +963501000168103 Aripiprazole (Apo) 2 mg uncoated tablet, 30, blister pack 152903 963491000168105 Aripiprazole (Apo) 2 mg uncoated tablet, 30 963481000168107 Aripiprazole (Apo) 2 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +69458011000036101 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) intravenous infusion injection, 500 mL bag 48568 67258011000036109 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) intravenous infusion injection, 500 mL bag 65579011000036108 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) intravenous infusion injection, 500 mL bag 20771000168107 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 20771000168107 Potassium Chloride 0.15% and Sodium Chloride 0.45% and Glucose 2.5% (Baxter) 71808011000036105 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, 500 mL bag 70195011000036100 potassium chloride 750 mg (potassium 10 mmol)/500 mL + sodium chloride 0.45% (2.25 g/500 mL) + glucose 2.5% (12.5 g/500 mL) injection, bag 69764011000036105 potassium chloride + sodium chloride + glucose +30901000036109 Aspirin EC (Chemmart) 100 mg enteric tablet, 168, blister pack 172167 28511000036100 Aspirin EC (Chemmart) 100 mg enteric tablet, 168 26781000036101 Aspirin EC (Chemmart) 100 mg enteric tablet 48411000168108 Aspirin EC (Chemmart) 48411000168108 Aspirin EC (Chemmart) 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +916371000168105 ADT Booster injection suspension, 0.5 mL vial 130906 916361000168104 ADT Booster injection suspension, 0.5 mL vial 916341000168103 ADT Booster injection suspension, 0.5 mL vial 12781000168102 ADT Booster 12781000168102 ADT Booster 916351000168101 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL vial 916331000168107 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL vial 21826011000036109 diphtheria + tetanus vaccine +1053161000168107 Lamotrigine (SZ) 50 mg tablet, 56, blister pack 143559 1053151000168105 Lamotrigine (SZ) 50 mg tablet, 56 1053141000168108 Lamotrigine (SZ) 50 mg tablet 1053131000168104 Lamotrigine (SZ) 1053131000168104 Lamotrigine (SZ) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +97211000036105 Agrippal 2013 injection suspension, 10 x 0.5 mL syringes 144670 96761000036101 Agrippal 2013 injection suspension, 10 x 0.5 mL syringes 96411000036107 Agrippal 2013 injection suspension, 0.5 mL syringe 3501000168105 Agrippal 2013 3501000168105 Agrippal 2013 96741000036102 influenza trivalent adult vaccine 2013 injection, 10 x 0.5 mL syringes 96381000036105 influenza trivalent adult vaccine 2013 injection, 0.5 mL syringe 97351000036100 influenza trivalent vaccine 2013 +18339011000036106 Lisinobell 10 mg uncoated tablet, 30, blister pack 107310 11365011000036106 Lisinobell 10 mg uncoated tablet, 30 5313011000036106 Lisinobell 10 mg uncoated tablet 3209011000036108 Lisinobell 3209011000036108 Lisinobell 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +959161000168104 Proquad (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack 126157 959151000168101 Proquad (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 959031000168106 Proquad (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 958931000168103 Proquad 958931000168103 Proquad 959141000168103 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, [10 vials] (&) inert substance diluent [10 syringes], 1 pack 959021000168108 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, vial 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine +959161000168104 Proquad (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack 126157 959151000168101 Proquad (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 959101000168100 Proquad (inert substance) diluent, syringe 958931000168103 Proquad 958931000168103 Proquad 959141000168103 measles 1000 TCID50 units + mumps 20 000 TCID50 units + rubella 1000 TCID50 units + varicella-zoster 9772 PFU live vaccine injection, [10 vials] (&) inert substance diluent [10 syringes], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +68843011000036103 Fybogel regular 3.5 g powder for oral liquid, 10 sachets 106707 66550011000036101 Fybogel regular 3.5 g powder for oral liquid, 10 sachets 5784011000036109 Fybogel regular 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 71280011000036102 dry psyllium husk 3.5 g powder for oral liquid, 10 sachets 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +91471000036109 Ozin 2.5 mg uncoated tablet, 30, bottle 179919 89721000036100 Ozin 2.5 mg uncoated tablet, 30 1471000036105 Ozin 2.5 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 89731000036103 olanzapine 2.5 mg tablet, 30 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +18777011000036102 Buspar 10 mg uncoated tablet, 50, blister pack 12073 11654011000036107 Buspar 10 mg uncoated tablet, 50 5926011000036102 Buspar 10 mg uncoated tablet 3690011000036103 Buspar 3690011000036103 Buspar 26727011000036106 buspirone hydrochloride 10 mg tablet, 50 22122011000036103 buspirone hydrochloride 10 mg tablet 21325011000036100 buspirone +17796011000036103 Ransim 40 mg film-coated tablet, 30, blister pack 120616 11645011000036108 Ransim 40 mg film-coated tablet, 30 5945011000036107 Ransim 40 mg film-coated tablet 4405011000036105 Ransim 4405011000036105 Ransim 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +921691000168101 Cefkor 125 mg/5 mL powder for oral liquid, 100 mL, bottle 75560 921681000168104 Cefkor 125 mg/5 mL powder for oral liquid, 100 mL 921671000168102 Cefkor 125 mg/5 mL powder for oral liquid, 5 mL 921661000168108 Cefkor 921661000168108 Cefkor 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +933239571000036101 Amisulpride (Apo) 200 mg tablet, 50, blister pack 178902 933236891000036106 Amisulpride (Apo) 200 mg tablet, 50 933234761000036103 Amisulpride (Apo) 200 mg tablet 11071000168105 Amisulpride (Apo) 11071000168105 Amisulpride (Apo) 84642011000036100 amisulpride 200 mg tablet, 50 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +887151000168109 Praluent 150 mg/mL injection solution, 1 mL syringe 238305 887141000168107 Praluent 150 mg/mL injection solution, 1 mL syringe 887121000168101 Praluent 150 mg/mL injection solution, syringe 886871000168105 Praluent 886871000168105 Praluent 887131000168103 alirocumab 150 mg/mL injection, 1 mL syringe 887111000168108 alirocumab 150 mg/mL injection, syringe 886881000168108 alirocumab +714651000168106 Metformin 1000 (Auro) 1 g film-coated tablet, 20, blister pack 180443 714641000168109 Metformin 1000 (Auro) 1 g film-coated tablet, 20 714621000168103 Metformin 1000 (Auro) 1 g film-coated tablet 714611000168105 Metformin 1000 (Auro) 714611000168105 Metformin 1000 (Auro) 714631000168100 metformin hydrochloride 1 g tablet, 20 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +786671000168108 Oxycodone MR (Apotex) 15 mg modified release tablet, 28, blister pack 214496 786661000168102 Oxycodone MR (Apotex) 15 mg modified release tablet, 28 786631000168105 Oxycodone MR (Apotex) 15 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 929209011000036109 oxycodone hydrochloride 15 mg modified release tablet, 28 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +933591000168103 Centevo 200/50/200 mg film-coated tablet, 10, bottle 238859 933581000168101 Centevo 200/50/200 mg film-coated tablet, 10 933571000168104 Centevo 200/50/200 mg film-coated tablet 933561000168105 Centevo 200/50/200 mg 933561000168105 Centevo 200/50/200 mg 51557011000036101 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 10 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +160551000036101 Kadcyla 160 mg powder for injection, 1 vial 201622 159371000036102 Kadcyla 160 mg powder for injection, 1 vial 158021000036109 Kadcyla 160 mg powder for injection, 160 mg vial 157721000036108 Kadcyla 157721000036108 Kadcyla 159381000036100 trastuzumab emtansine 160 mg injection, 1 vial 158031000036106 trastuzumab emtansine 160 mg injection, vial 160691000036106 trastuzumab emtansine +749221000168109 Tacrolimus (AN) 1 mg hard capsule, 100, blister pack 224267 749211000168102 Tacrolimus (AN) 1 mg hard capsule, 100 749161000168105 Tacrolimus (AN) 1 mg hard capsule 749151000168108 Tacrolimus (AN) 749151000168108 Tacrolimus (AN) 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +19480011000036103 Ceclor 125 mg/5 mL powder for oral liquid, 100 mL, bottle 54899 12757011000036105 Ceclor 125 mg/5 mL powder for oral liquid, 100 mL 6051011000036101 Ceclor 125 mg/5 mL powder for oral liquid, 5 mL 53821000168109 Ceclor 53821000168109 Ceclor 28175011000036102 cefaclor 125 mg/5 mL powder for oral liquid, 100 mL 23485011000036109 cefaclor 125 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +1116501000168106 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 30, blister pack 151628 1116491000168104 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet, 30 1116421000168101 Valsartan/Amlodipine 160/10 (Novartis) film-coated tablet 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 1116391000168108 Valsartan/Amlodipine 160/10 (Novartis) 63238011000036100 amlodipine 10 mg + valsartan 160 mg tablet, 30 61899011000036103 amlodipine 10 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +1025391000168103 Biocol Medicated Throat Blackcurrant lozenge, 24, blister pack 42955 1025381000168101 Biocol Medicated Throat Blackcurrant lozenge, 24 1025371000168104 Biocol Medicated Throat Blackcurrant lozenge 1025311000168107 Biocol Medicated Throat 1025311000168107 Biocol Medicated Throat 1025341000168106 benzyl alcohol 12 mg + cetylpyridinium chloride 2 mg lozenge, 24 1025321000168100 benzyl alcohol 12 mg + cetylpyridinium chloride 2 mg lozenge 69797011000036101 benzyl alcohol + cetylpyridinium +920749011000036105 Methadone Hydrochloride Syrup (Sigma) 5 mg/mL oral liquid solution, 1 L, bottle 49372 920432011000036109 Methadone Hydrochloride Syrup (Sigma) 5 mg/mL oral liquid solution, 1 L 920175011000036100 Methadone Hydrochloride Syrup (Sigma) 5 mg/mL oral liquid solution 43691000168105 Methadone Hydrochloride Syrup (Sigma) 43691000168105 Methadone Hydrochloride Syrup (Sigma) 27550011000036109 methadone hydrochloride 5 mg/mL oral liquid, 1 L 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +720451000168106 Toujeo Solostar 300 units/mL injection solution, 5 x 1.5 mL injection devices 223457 720441000168109 Toujeo Solostar 300 units/mL injection solution, 5 x 1.5 mL injection devices 720361000168103 Toujeo Solostar 300 units/mL injection solution, 1.5 mL injection device 720341000168102 Toujeo Solostar 720341000168102 Toujeo Solostar 720431000168100 insulin glargine 300 units/mL injection, 5 x 1.5 mL injection devices 720351000168100 insulin glargine 300 units/mL injection, injection device 21815011000036108 insulin glargine +1104641000168101 Midazolam (Alphapharm) 5 mg/mL injection solution, 5 x 1 mL ampoules 160207 1104631000168105 Midazolam (Alphapharm) 5 mg/mL injection solution, 5 x 1 mL ampoules 107171000036103 Midazolam (Alphapharm) 5 mg/mL injection solution, ampoule 106461000036101 Midazolam (Alphapharm) 106461000036101 Midazolam (Alphapharm) 46784011000036108 midazolam 5 mg/mL injection, 5 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +13861000036104 Venlafaxine XR (Chemmart) 75 mg modified release capsule, 28, blister pack 177458 7521000036102 Venlafaxine XR (Chemmart) 75 mg modified release capsule, 28 1781000036100 Venlafaxine XR (Chemmart) 75 mg modified release capsule 28841000168108 Venlafaxine XR (Chemmart) 28841000168108 Venlafaxine XR (Chemmart) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +91431000036107 Robitussin Head Cold and Sinus uncoated tablet, 24, blister pack 179218 89651000036101 Robitussin Head Cold and Sinus uncoated tablet, 24 88291000036100 Robitussin Head Cold and Sinus uncoated tablet 87801000036105 Robitussin Head Cold and Sinus 87801000036105 Robitussin Head Cold and Sinus 63180011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet, 24 61879011000036108 phenylephrine hydrochloride 5 mg + paracetamol 500 mg tablet 61800011000036107 phenylephrine + paracetamol +19621000036105 Fluarix 2012 injection suspension, 1 x 0.5 mL syringe 154660 19071000036102 Fluarix 2012 injection suspension, 1 x 0.5 mL syringe 18611000036105 Fluarix 2012 injection suspension, 0.5 mL syringe 50551000168105 Fluarix 2012 50551000168105 Fluarix 2012 929771011000036108 influenza trivalent adult vaccine 2011-2012 injection, 1 x 0.5 mL syringe 929727011000036101 influenza trivalent adult vaccine 2011-2012 injection, 0.5 mL syringe 929719011000036103 influenza trivalent vaccine 2011-2012 +924591000168103 Carvedilol (DRLA) 3.125 mg film-coated tablet, 500, bottle 166009 924581000168101 Carvedilol (DRLA) 3.125 mg film-coated tablet, 500 924531000168102 Carvedilol (DRLA) 3.125 mg film-coated tablet 924411000168106 Carvedilol (DRLA) 924411000168106 Carvedilol (DRLA) 924571000168104 carvedilol 3.125 mg tablet, 500 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +178051000036101 Iodosorb 50% ointment, 20 g, tube 178061000036103 Iodosorb 50% ointment, 20 g 6322011000036107 Iodosorb 50% ointment 28461000168109 Iodosorb 28461000168109 Iodosorb 178071000036106 cadexomer-iodine 50% ointment, 20 g 22849011000036103 cadexomer-iodine 50% ointment 21550011000036106 cadexomer-iodine +816581000168108 Atomoxetine (Amneal) 25 mg hard capsule, 28, blister pack 238337 816571000168105 Atomoxetine (Amneal) 25 mg hard capsule, 28 816491000168107 Atomoxetine (Amneal) 25 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +691271000168105 Amlodipine (AN) 10 mg uncoated tablet, 30, blister pack 186307 691261000168104 Amlodipine (AN) 10 mg uncoated tablet, 30 691251000168101 Amlodipine (AN) 10 mg uncoated tablet 691231000168107 Amlodipine (AN) 691231000168107 Amlodipine (AN) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +653821000168102 Magnevist 9.38 g/20 mL injection solution, 5 x 20 mL syringes 54669 653811000168109 Magnevist 9.38 g/20 mL injection solution, 5 x 20 mL syringes 653791000168105 Magnevist 9.38 g/20 mL injection solution, 20 mL syringe 920916011000036100 Magnevist 920916011000036100 Magnevist 653801000168106 gadopentetate dimeglumine 9.38 g/20 mL injection, 5 x 20 mL syringes 653781000168107 gadopentetate dimeglumine 9.38 g/20 mL injection, syringe 922037011000036106 gadopentetic acid +766491000168108 Reddycitidine 100 mg powder for injection, 1 vial 231947 766481000168105 Reddycitidine 100 mg powder for injection, 1 vial 766471000168107 Reddycitidine 100 mg powder for injection, 100 mg vial 766401000168102 Reddycitidine 766401000168102 Reddycitidine 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +60430011000036100 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 5 sachets 146071 56389011000036101 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 5 sachets 53896011000036103 Lemsip Max Flu Strength Daytime lemon powder for oral liquid, 1 sachet 53290011000036105 Lemsip Max Flu Strength Daytime 53290011000036105 Lemsip Max Flu Strength Daytime 63719011000036109 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 5 sachets 62057011000036103 paracetamol 1 g + pseudoephedrine hydrochloride 60 mg powder for oral liquid, 1 sachet 44951011000036101 paracetamol + pseudoephedrine +890351000168107 Bansep 20 mg film-coated tablet, 30, bottle 173494 841311000168107 Bansep 20 mg film-coated tablet, 30 841271000168107 Bansep 20 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +60211011000036104 Cold and Flu (Pharmacy Choice) uncoated tablet, 24, blister pack 133186 56170011000036106 Cold and Flu (Pharmacy Choice) uncoated tablet, 24 53819011000036106 Cold and Flu (Pharmacy Choice) uncoated tablet 53105011000036102 Cold and Flu (Pharmacy Choice) 53105011000036102 Cold and Flu (Pharmacy Choice) 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +844271000168109 Worming Tablet (Chemmart) 100 mg tablet, 2, blister pack 119654 844261000168103 Worming Tablet (Chemmart) 100 mg tablet, 2 844251000168100 Worming Tablet (Chemmart) 100 mg tablet 60291000036104 Worming Tablet (Chemmart) 60291000036104 Worming Tablet (Chemmart) 63642011000036101 mebendazole 100 mg tablet, 2 22204011000036103 mebendazole 100 mg tablet 21850011000036105 mebendazole +30941000036107 Olanzapine (Pharmacor) 5 mg film-coated tablet, 28, blister pack 177121 28881000036105 Olanzapine (Pharmacor) 5 mg film-coated tablet, 28 26851000036104 Olanzapine (Pharmacor) 5 mg film-coated tablet 26111000036108 Olanzapine (Pharmacor) 26111000036108 Olanzapine (Pharmacor) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +60005011000036106 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 100 mL, bottle 123258 55967011000036101 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 100 mL 53742011000036105 Ibuprofen for Children (Priceline) 100 mg/5 mL oral liquid suspension, 5 mL 11351000168104 Ibuprofen for Children (Priceline) 11351000168104 Ibuprofen for Children (Priceline) 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +160591000036105 Kombiglyze XR 5/1000 modified release tablet, 7, blister pack 202208 159451000036104 Kombiglyze XR 5/1000 modified release tablet, 7 157831000036103 Kombiglyze XR 5/1000 modified release tablet 8301000168108 Kombiglyze XR 5/1000 8301000168108 Kombiglyze XR 5/1000 159461000036101 saxagliptin 5 mg + metformin hydrochloride 1 g modified release tablet, 7 157841000036108 saxagliptin 5 mg + metformin hydrochloride 1 g modified release tablet 160681000036109 saxagliptin + metformin +1020131000168106 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 28, blister pack 190327 1020121000168108 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 28 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82547011000036100 clopidogrel 75 mg + aspirin 100 mg tablet, 28 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +927971000168100 Narcan Neonatal 40 microgram/2 mL injection solution, 5 x 2 mL ampoules 57305 927961000168106 Narcan Neonatal 40 microgram/2 mL injection solution, 5 x 2 mL ampoules 927941000168107 Narcan Neonatal 40 microgram/2 mL injection solution, 2 mL ampoule 927781000168104 Narcan Neonatal 927781000168104 Narcan Neonatal 927951000168109 naloxone hydrochloride 40 microgram/2 mL injection, 5 x 2 mL ampoules 927931000168103 naloxone hydrochloride 40 microgram/2 mL injection, ampoule 33627011000036107 naloxone +988021000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 25 mL, bottle 178433 988011000168101 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 25 mL 988001000168104 Advil Childrens Pain and Fever Relief 2 to 12 Years 100 mg/5 mL oral liquid suspension, 5 mL 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 987991000168108 Advil Childrens Pain and Fever Relief 2 to 12 Years 774941000168108 ibuprofen 100 mg/5 mL oral liquid, 25 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +69327011000036105 Benzac AC 2.5% modified gel, 10 g, tube 25270 67127011000036106 Benzac AC 2.5% modified gel, 10 g 65432011000036105 Benzac AC 2.5% modified gel 17681000168105 Benzac AC 17681000168105 Benzac AC 71692011000036100 benzoyl peroxide 2.5% modified gel, 10 g 70131011000036107 benzoyl peroxide 2.5% modified gel 61709011000036104 benzoyl peroxide +50509011000036109 Elastocrepe (36102520) 5 cm x 2.3 m bandage, 1, wrapping 49513011000036104 Elastocrepe (36102520) 5 cm x 2.3 m bandage, 1 48563011000036102 Elastocrepe (36102520) 5 cm x 2.3 m bandage 57461000168107 Elastocrepe (36102520) 57461000168107 Elastocrepe (36102520) 51462011000036104 bandage retention cotton crepe 5 cm x 2.3 m bandage, 1 50969011000036101 bandage retention cotton crepe 5 cm x 2.3 m bandage 50725011000036104 bandage retention cotton crepe +921551000168105 Caspofungin (Sandoz) 70 mg powder for injection, 1 vial 255332 921541000168108 Caspofungin (Sandoz) 70 mg powder for injection, 1 vial 921531000168104 Caspofungin (Sandoz) 70 mg powder for injection, 70 mg vial 921521000168102 Caspofungin (Sandoz) 921521000168102 Caspofungin (Sandoz) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +1042571000168101 Nicotine (Amcal) 4 mg lozenge, 168, blister pack 213240 1042561000168107 Nicotine (Amcal) 4 mg lozenge, 168 1042391000168108 Nicotine (Amcal) 4 mg lozenge 53342011000036106 Nicotine (Amcal) 53342011000036106 Nicotine (Amcal) 897921000168102 nicotine 4 mg lozenge, 168 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +933239431000036104 Pioglitazone (GA) 30 mg uncoated tablet, 28, blister pack 173453 933236741000036108 Pioglitazone (GA) 30 mg uncoated tablet, 28 933234661000036109 Pioglitazone (GA) 30 mg uncoated tablet 933234241000036106 Pioglitazone (GA) 933234241000036106 Pioglitazone (GA) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +970881000168108 Lypralin 300 mg hard capsule, 60, bottle 235848 970101000168108 Lypralin 300 mg hard capsule, 60 969971000168103 Lypralin 300 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +979381000168108 Paracetamol (CA) 500 mg uncoated tablet, 24, blister pack 197677 979371000168105 Paracetamol (CA) 500 mg uncoated tablet, 24 979261000168108 Paracetamol (CA) 500 mg uncoated tablet 979221000168103 Paracetamol (CA) 979221000168103 Paracetamol (CA) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1103681000168108 Quetiapine (GH) 25 mg film-coated tablet, 100, blister pack 179902 1103671000168105 Quetiapine (GH) 25 mg film-coated tablet, 100 2321000036109 Quetiapine (GH) 25 mg film-coated tablet 981000036101 Quetiapine (GH) 981000036101 Quetiapine (GH) 1076631000168103 quetiapine 25 mg tablet, 100 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +963341000168109 Symbicort Rapihaler 100/6 pressurised inhalation, 2 x 120 actuations, metered dose aerosol cans 115552 963331000168100 Symbicort Rapihaler 100/6 pressurised inhalation, 2 x 120 actuations 963281000168108 Symbicort Rapihaler 100/6 pressurised inhalation, actuation 963261000168104 Symbicort Rapihaler 100/6 963261000168104 Symbicort Rapihaler 100/6 963321000168103 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation pressurised inhalation, 2 x 120 actuations 963271000168105 budesonide 100 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 6 microgram/actuation pressurised inhalation, actuation 21281011000036101 budesonide + formoterol (eformoterol) +933214941000036107 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 500, bottle 163567 933204531000036108 Pravastatin Sodium (RZ) 80 mg film-coated tablet, 500 933195551000036104 Pravastatin Sodium (RZ) 80 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 52330011000036100 pravastatin sodium 80 mg tablet, 500 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +853071000168103 Gabapen 300 mg hard capsule, 100, blister pack 204499 853061000168109 Gabapen 300 mg hard capsule, 100 853051000168107 Gabapen 300 mg hard capsule 853011000168106 Gabapen 853011000168106 Gabapen 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +911941000168108 Cavstat 40 mg film-coated tablet, 42, blister pack 234508 911931000168104 Cavstat 40 mg film-coated tablet, 42 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911921000168102 rosuvastatin 40 mg tablet, 42 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1066141000168106 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 12, blister pack 210587 1066131000168102 Calmative Pain Relief (Pharmacy Action) uncoated tablet, 12 88341000036103 Calmative Pain Relief (Pharmacy Action) uncoated tablet 87821000036100 Calmative Pain Relief (Pharmacy Action) 87821000036100 Calmative Pain Relief (Pharmacy Action) 63866011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 12 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1042651000168106 Humalog Kwikpen 200 units/mL injection solution, 5 x 3 mL injection devices 226893 1042641000168109 Humalog Kwikpen 200 units/mL injection solution, 5 x 3 mL injection devices 1042591000168100 Humalog Kwikpen 200 units/mL injection solution, 3 mL injection device 59991000168101 Humalog Kwikpen 59991000168101 Humalog Kwikpen 1042631000168100 insulin lispro 200 units/mL injection, 5 x 3 mL injection devices 1042581000168103 insulin lispro 200 units/mL injection, 3 mL injection device 21851011000036103 insulin lispro +926925011000036106 Anti-Inflammatory (Amcal) 1% gel, 50 g, tube 90462 926319011000036106 Anti-Inflammatory (Amcal) 1% gel, 50 g 925758011000036109 Anti-Inflammatory (Amcal) 1% gel 925536011000036108 Anti-Inflammatory (Amcal) 925536011000036108 Anti-Inflammatory (Amcal) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +926925011000036106 Anti-Inflammatory (Amcal) 1% gel, 50 g, tube 223207 926319011000036106 Anti-Inflammatory (Amcal) 1% gel, 50 g 925758011000036109 Anti-Inflammatory (Amcal) 1% gel 925536011000036108 Anti-Inflammatory (Amcal) 925536011000036108 Anti-Inflammatory (Amcal) 72015011000036102 diclofenac sodium 1% gel, 50 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +92911000036100 Viscotears Gel PF 0.2% eye drops solution, 30 x 600 mg unit doses, ampoule 92771000036108 Viscotears Gel PF 0.2% eye drops solution, 30 x 600 mg unit doses 92671000036103 Viscotears Gel PF 0.2% eye drops solution, 600 mg unit dose 63811000168107 Viscotears Gel PF 63811000168107 Viscotears Gel PF 92781000036105 carbomer-980 0.2% eye drops, 30 x 600 mg unit doses 92681000036101 carbomer-980 0.2% eye drops, unit dose 35685011000036104 carbomer-980 +846631000168100 Alendro 10 mg uncoated tablet, 30, blister pack 100688 846621000168103 Alendro 10 mg uncoated tablet, 30 846611000168105 Alendro 10 mg uncoated tablet 846571000168101 Alendro 846571000168101 Alendro 46700011000036104 alendronate 10 mg tablet, 30 45274011000036109 alendronate 10 mg tablet 21736011000036109 alendronate +69177011000036104 Zinc Chloride (DBL) 10.6 mg/2 mL concentrated injection, 5 x 2 mL ampoules 16383 66977011000036105 Zinc Chloride (DBL) 10.6 mg/2 mL concentrated injection, 5 x 2 mL ampoules 65273011000036100 Zinc Chloride (DBL) 10.6 mg/2 mL concentrated injection, 2 mL ampoule 65067011000036109 Zinc Chloride (DBL) 65067011000036109 Zinc Chloride (DBL) 71550011000036104 zinc chloride 10.6 mg/2 mL injection, 5 x 2 mL ampoules 70057011000036107 zinc chloride 10.6 mg/2 mL injection, ampoule 69760011000036100 zinc chloride +1057601000168106 Atorvastatin (Ran) 80 mg film-coated tablet, 30, blister pack 179828 1057591000168104 Atorvastatin (Ran) 80 mg film-coated tablet, 30 1057581000168102 Atorvastatin (Ran) 80 mg film-coated tablet 1056491000168100 Atorvastatin (Ran) 1056491000168100 Atorvastatin (Ran) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1095071000168106 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 80, blister pack 287306 1095061000168100 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet, 80 989001000168109 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 180 mg film-coated tablet 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 988671000168102 Fexofenadine Hayfever and Allergy Relief (Blooms The Chemist) 1077371000168108 fexofenadine hydrochloride 180 mg tablet, 80 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +60528011000036105 Demazin PE Cold and Flu Night-Time Relief uncoated tablet, 48, blister pack 152029 56486011000036101 Demazin PE Cold and Flu Night-Time Relief uncoated tablet, 48 53938011000036100 Demazin PE Cold and Flu Night-Time Relief uncoated tablet 24251000168104 Demazin PE Cold and Flu Night-Time Relief 24251000168104 Demazin PE Cold and Flu Night-Time Relief 63383011000036109 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +18293011000036106 Physiotens 200 microgram film-coated tablet, 30, blister pack 114119 11458011000036102 Physiotens 200 microgram film-coated tablet, 30 4521011000036107 Physiotens 200 microgram film-coated tablet 4125011000036102 Physiotens 4125011000036102 Physiotens 26656011000036100 moxonidine 200 microgram tablet, 30 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +61578011000036104 Pain (Capital Chemist) uncoated tablet, 48, blister pack 94553 57500011000036107 Pain (Capital Chemist) uncoated tablet, 48 54328011000036109 Pain (Capital Chemist) uncoated tablet 53159011000036109 Pain (Capital Chemist) 53159011000036109 Pain (Capital Chemist) 63891011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet, 48 62097011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 9.6 mg tablet 21286011000036106 paracetamol + codeine +928910011000036101 Vaclovir 500 mg film-coated tablet, 2, blister pack 153822 928272011000036109 Vaclovir 500 mg film-coated tablet, 2 927919011000036104 Vaclovir 500 mg film-coated tablet 927770011000036108 Vaclovir 927770011000036108 Vaclovir 927316011000036103 valaciclovir 500 mg tablet, 2 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +923719011000036101 Pantoprazole (Sandoz) 40 mg powder for injection, 1 vial 147377 923291011000036106 Pantoprazole (Sandoz) 40 mg powder for injection, 1 vial 922980011000036106 Pantoprazole (Sandoz) 40 mg powder for injection, 40 mg vial 83562011000036104 Pantoprazole (Sandoz) 83562011000036104 Pantoprazole (Sandoz) 46192011000036106 pantoprazole 40 mg injection, 1 vial 45023011000036104 pantoprazole 40 mg injection, vial 21563011000036107 pantoprazole +717071000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 100, blister pack 149417 717061000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 100 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716251000168100 omeprazole 20 mg enteric capsule, 100 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +920501000168103 Cilopam 10 mg film-coated tablet, 7, blister pack 158862 920491000168105 Cilopam 10 mg film-coated tablet, 7 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203161000036106 citalopram 10 mg tablet, 7 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +1099341000168104 Mometasone Nasal Allergy Relief (Amcal) 50 microgram/actuation nasal spray, 140 actuations, pump pack 255812 1099331000168108 Mometasone Nasal Allergy Relief (Amcal) 50 microgram/actuation nasal spray, 140 actuations 1099301000168101 Mometasone Nasal Allergy Relief (Amcal) 50 microgram/actuation nasal spray, actuation 1099291000168102 Mometasone Nasal Allergy Relief (Amcal) 1099291000168102 Mometasone Nasal Allergy Relief (Amcal) 46748011000036107 mometasone furoate 50 microgram/actuation nasal spray, 140 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +933213731000036103 Citalopram (IPCA) 20 mg film-coated tablet, 56, bottle 158872 933203271000036106 Citalopram (IPCA) 20 mg film-coated tablet, 56 933195421000036109 Citalopram (IPCA) 20 mg film-coated tablet 933193161000036106 Citalopram (IPCA) 933193161000036106 Citalopram (IPCA) 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1037211000168105 Atorvastatin (RBX) 80 mg film-coated tablet, 6, blister pack 173512 1037201000168107 Atorvastatin (RBX) 80 mg film-coated tablet, 6 1037191000168109 Atorvastatin (RBX) 80 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 840961000168104 atorvastatin 80 mg tablet, 6 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +732011000168100 Cranberry 10 000+ (Bio-Organics) hard capsule, 90, bottle 91302 732001000168103 Cranberry 10 000+ (Bio-Organics) hard capsule, 90 731891000168107 Cranberry 10 000+ (Bio-Organics) hard capsule 731861000168100 Cranberry 10 000+ (Bio-Organics) 731861000168100 Cranberry 10 000+ (Bio-Organics) 731991000168100 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule, 90 731881000168109 cranberry 400 mg (equivalent to fresh fruit 10 g) + ascorbic acid 100 mg capsule 77453011000036101 cranberry + ascorbic acid +50522011000036106 Sorbsan Rope (1411) 2 g rope, 5 x 2 g, carton 49518011000036109 Sorbsan Rope (1411) 2 g rope, 5 x 2 g 48631011000036100 Sorbsan Rope (1411) 2 g rope 16451000168103 Sorbsan Rope (1411) 16451000168103 Sorbsan Rope (1411) 51466011000036100 dressing alginate cavity wound 2 g rope, 5 x 2 g 50973011000036106 dressing alginate cavity wound 2 g rope, 2 g 50720011000036108 dressing alginate cavity wound +931465011000036101 Fosinopril Sodium HCTZ 10/12.5 mg (Apo) uncoated tablet, 30, blister pack 151945 930644011000036100 Fosinopril Sodium HCTZ 10/12.5 mg (Apo) uncoated tablet, 30 929988011000036104 Fosinopril Sodium HCTZ 10/12.5 mg (Apo) uncoated tablet 50441000168107 Fosinopril Sodium HCTZ 10/12.5 mg (Apo) 50441000168107 Fosinopril Sodium HCTZ 10/12.5 mg (Apo) 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1099321000168105 Mometasone Nasal Allergy Relief (Amcal) 50 microgram/actuation nasal spray, 65 actuations, pump pack 255812 1099311000168103 Mometasone Nasal Allergy Relief (Amcal) 50 microgram/actuation nasal spray, 65 actuations 1099301000168101 Mometasone Nasal Allergy Relief (Amcal) 50 microgram/actuation nasal spray, actuation 1099291000168102 Mometasone Nasal Allergy Relief (Amcal) 1099291000168102 Mometasone Nasal Allergy Relief (Amcal) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +1013781000168109 Valsartan (Apotex) 40 mg film-coated tablet, 28, blister pack 185857 1013771000168106 Valsartan (Apotex) 40 mg film-coated tablet, 28 1013691000168101 Valsartan (Apotex) 40 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63855011000036103 valsartan 40 mg tablet, 28 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +19474011000036104 Acenorm 25 mg uncoated tablet, 90, bottle 54722 12751011000036102 Acenorm 25 mg uncoated tablet, 90 6045011000036102 Acenorm 25 mg uncoated tablet 4183011000036109 Acenorm 4183011000036109 Acenorm 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +749141000168106 Tacoccord 1 mg hard capsule, 100, blister pack 224268 749131000168102 Tacoccord 1 mg hard capsule, 100 749061000168106 Tacoccord 1 mg hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +929181000168107 Somac 40 mg enteric tablet, 60, blister pack 69792 41856011000036106 Somac 40 mg enteric tablet, 60 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46662011000036107 pantoprazole 40 mg enteric tablet, 60 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +683961000168105 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28, blister packs 168332 683951000168108 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28 113471000036103 Zoely (inert substance) film-coated tablet 112561000036101 Zoely 112561000036101 Zoely 683941000168106 nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet [24] (&) inert substance tablet [4], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +683961000168105 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28, blister packs 168332 683951000168108 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28 113481000036101 Zoely (estradiol 1.5 mg + nomegestrol acetate 2.5 mg) film-coated tablet 112561000036101 Zoely 112561000036101 Zoely 683941000168106 nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet [24] (&) inert substance tablet [4], 3 x 28 113491000036104 nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet 117001000036109 nomegestrol + estradiol +983721000168101 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 50 mL, bottle 203353 983711000168108 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 50 mL 983701000168105 Ibuprofen (Blooms The Chemist) 100 mg/5 mL oral liquid suspension, 5 mL 810831000168108 Ibuprofen (Blooms The Chemist) 810831000168108 Ibuprofen (Blooms The Chemist) 63869011000036106 ibuprofen 100 mg/5 mL oral liquid, 50 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +786761000168105 Oxycodone MR (Apotex) 10 mg modified release tablet, 60, blister pack 214503 786751000168108 Oxycodone MR (Apotex) 10 mg modified release tablet, 60 786701000168109 Oxycodone MR (Apotex) 10 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 35203011000036102 oxycodone hydrochloride 10 mg modified release tablet, 60 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +1008211000168102 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, 30 actuations, dry powder inhaler 73726 1008201000168100 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, 30 actuations 1008151000168108 Asmanex Twisthaler 400 microgram/actuation powder for inhalation, actuation 1007991000168101 Asmanex Twisthaler 1007991000168101 Asmanex Twisthaler 1008191000168103 mometasone furoate 400 microgram/actuation powder for inhalation, 30 actuations 1008141000168106 mometasone furoate 400 microgram/actuation powder for inhalation, actuation 21409011000036100 mometasone +1074641000168102 Cefazolin (Auro) 500 mg powder for injection, 1 vial 174066 1074631000168106 Cefazolin (Auro) 500 mg powder for injection, 1 vial 1074621000168108 Cefazolin (Auro) 500 mg powder for injection, 500 mg vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 942491000168109 cefazolin 500 mg injection, 1 vial 32930011000036101 cefazolin 500 mg injection, vial 21621011000036107 cefazolin +69026011000036108 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 5 sachets 140597 66828011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 5 sachets 65377011000036104 Lemsip Max Cold and Flu blackcurrant 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71933011000036101 paracetamol 1 g powder for oral liquid, 5 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1070321000168106 Rapideine Caplets uncoated tablet, 96, blister pack 82094 1070311000168104 Rapideine Caplets uncoated tablet, 96 1070241000168106 Rapideine Caplets uncoated tablet 1070021000168108 Rapideine Caplets 1070021000168108 Rapideine Caplets 63853011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 96 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +933058011000036101 Vinorelbine (Kabi) 10 mg/mL concentrated injection, 1 mL vial 144030 932860011000036104 Vinorelbine (Kabi) 10 mg/mL concentrated injection, 1 mL vial 932742011000036105 Vinorelbine (Kabi) 10 mg/mL concentrated injection, vial 932704011000036105 Vinorelbine (Kabi) 932704011000036105 Vinorelbine (Kabi) 28240011000036105 vinorelbine 10 mg/mL injection, 1 mL vial 23554011000036106 vinorelbine 10 mg/mL injection, vial 21269011000036100 vinorelbine +1112091000168106 Syquet XR 150 mg modified release tablet, 60, blister pack 199885 1112081000168108 Syquet XR 150 mg modified release tablet, 60 1112071000168105 Syquet XR 150 mg modified release tablet 1111931000168101 Syquet XR 1111931000168101 Syquet XR 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +1020091000168109 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 7, blister pack 190327 1020081000168106 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet, 7 1020031000168105 Clopidogrel/Aspirin 75/100 (Apotex) coated tablet 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 1020021000168107 Clopidogrel/Aspirin 75/100 (Apotex) 82553011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 7 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +926856011000036106 Fluorescein Sodium Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 32228 926252011000036103 Fluorescein Sodium Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 925701011000036106 Fluorescein Sodium Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 53601000168101 Fluorescein Sodium Minims (Bausch & Lomb) 53601000168101 Fluorescein Sodium Minims (Bausch & Lomb) 927359011000036101 fluorescein sodium 1% eye drops, 20 x 0.5 mL unit doses 927007011000036104 fluorescein sodium 1% eye drops, unit dose 44934011000036102 fluorescein +895831000168104 Beriplex P/N 500 IU (1 x vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 156459 895821000168102 Beriplex P/N 500 IU (1 x vial, 1 x 20 mL inert diluent vial), 1 pack 895791000168105 Beriplex P/N 500 IU (factor II 400 units + factor VII 200 units + factor IX 400 units + factor X 440 units + protein C 300 units + protein S 240 units) powder for injection, vial 892351000168108 Beriplex P/N 500 IU 892351000168108 Beriplex P/N 500 IU 895811000168109 factor II 400 units + factor VII 200 units + factor IX 400 units + factor X 440 units + protein C 300 units + protein S 240 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 895781000168107 factor II 400 units + factor VII 200 units + factor IX 400 units + factor X 440 units + protein C 300 units + protein S 240 units injection, vial 891151000168102 factor II + factor VII + factor IX + factor X + protein C + protein S +895831000168104 Beriplex P/N 500 IU (1 x vial, 1 x 20 mL inert diluent vial), 1 pack, composite pack 156459 895821000168102 Beriplex P/N 500 IU (1 x vial, 1 x 20 mL inert diluent vial), 1 pack 895801000168106 Beriplex P/N (inert substance) diluent, 20 mL vial 892351000168108 Beriplex P/N 500 IU 895711000168101 Beriplex P/N 895811000168109 factor II 400 units + factor VII 200 units + factor IX 400 units + factor X 440 units + protein C 300 units + protein S 240 units injection [1 vial] (&) inert substance diluent [20 mL vial], 1 pack 639231000168104 inert substance diluent, 20 mL vial 21220011000036103 inert substance +68928011000036100 Dermalife 0.11% ointment, 50 g, tube 11358 66610011000036100 Dermalife 0.11% ointment, 50 g 65373011000036108 Dermalife 0.11% ointment 65042011000036104 Dermalife 65042011000036104 Dermalife 71332011000036104 retinol palmitate 0.11% ointment, 50 g 69955011000036109 retinol palmitate 0.11% ointment 69876011000036105 retinol palmitate +34815011000036101 Ritalin LA 20 mg modified release capsule, 30, bottle 82957 34390011000036106 Ritalin LA 20 mg modified release capsule, 30 34067011000036108 Ritalin LA 20 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 35234011000036108 methylphenidate hydrochloride 20 mg modified release capsule, 30 34907011000036100 methylphenidate hydrochloride 20 mg modified release capsule 21277011000036101 methylphenidate +19958011000036107 Famvir 500 mg film-coated tablet, 30, blister pack 67391 13201011000036108 Famvir 500 mg film-coated tablet, 30 6484011000036101 Famvir 500 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 27613011000036102 famciclovir 500 mg tablet, 30 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +783381000168105 Palexia IR 75 mg film-coated tablet, 90, blister pack 165317 783371000168107 Palexia IR 75 mg film-coated tablet, 90 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783361000168101 tapentadol 75 mg tablet, 90 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +1121801000168105 Mepreze 20 mg enteric tablet, 14, blister pack 252682 1121791000168109 Mepreze 20 mg enteric tablet, 14 1121721000168107 Mepreze 20 mg enteric tablet 1121711000168100 Mepreze 1121711000168100 Mepreze 700031831000036109 esomeprazole 20 mg enteric tablet, 14 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +69442011000036101 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bag 48519 67242011000036109 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bag 65572011000036103 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) intravenous infusion injection, 500 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71792011000036107 sodium chloride 0.9% (4.5 g/500 mL) injection, 500 mL bag 70188011000036105 sodium chloride 0.9% (4.5 g/500 mL) injection, bag 21308011000036103 sodium chloride +1074801000168103 Instanyl 200 microgram/actuation nasal spray, 10 actuations, pump pack 197692 1074791000168104 Instanyl 200 microgram/actuation nasal spray, 10 actuations 795261000168105 Instanyl 200 microgram/actuation nasal spray, actuation 794861000168105 Instanyl 794861000168105 Instanyl 1074781000168102 fentanyl 200 microgram/actuation nasal spray, 10 actuations 795251000168108 fentanyl 200 microgram/actuation nasal spray, actuation 21258011000036102 fentanyl +69510011000036100 Dry Cough Medicine (Nyal) 15 mg/10 mL oral liquid solution, 100 mL, bottle 52355 67310011000036109 Dry Cough Medicine (Nyal) 15 mg/10 mL oral liquid solution, 100 mL 65603011000036109 Dry Cough Medicine (Nyal) 15 mg/10 mL oral liquid solution, 10 mL 65190011000036103 Dry Cough Medicine (Nyal) 65190011000036103 Dry Cough Medicine (Nyal) 71856011000036102 pentoxyverine citrate 15 mg/10 mL oral liquid, 100 mL 70217011000036108 pentoxyverine citrate 15 mg/10 mL oral liquid 69784011000036108 pentoxyverine citrate +50470011000036101 Surgical Lubricating Gel (Biotech) jelly, 60 g, tube 49424011000036100 Surgical Lubricating Gel (Biotech) jelly, 60 g 48622011000036108 Surgical Lubricating Gel (Biotech) jelly 48320011000036100 Surgical Lubricating Gel (Biotech) 48320011000036100 Surgical Lubricating Gel (Biotech) 51392011000036109 lubricating agent jelly, 60 g 50913011000036103 lubricating agent jelly 50706011000036101 lubricating agent +824051000168106 Basaglar 100 units/mL injection solution, 2 x 3 mL cartridges 215551 824041000168109 Basaglar 100 units/mL injection solution, 2 x 3 mL cartridges 823991000168104 Basaglar 100 units/mL injection solution, 3 mL cartridge 823981000168102 Basaglar 823981000168102 Basaglar 824031000168100 insulin glargine 100 units/mL injection, 2 x 3 mL cartridges 23176011000036105 insulin glargine 100 units/mL injection, cartridge 21815011000036108 insulin glargine +60754011000036103 Codral Original Cold and Flu uncoated tablet, 24, blister pack 51771 56712011000036109 Codral Original Cold and Flu uncoated tablet, 24 54045011000036101 Codral Original Cold and Flu uncoated tablet 16111000168105 Codral Original Cold and Flu 16111000168105 Codral Original Cold and Flu 63810011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet, 24 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +39401011000036109 Januvia 100 mg film-coated tablet, 28, blister pack 133182 39285011000036109 Januvia 100 mg film-coated tablet, 28 39194011000036106 Januvia 100 mg film-coated tablet 39185011000036106 Januvia 39185011000036106 Januvia 39482011000036102 sitagliptin 100 mg tablet, 28 39437011000036105 sitagliptin 100 mg tablet 39426011000036109 sitagliptin +930231000168109 Sporanox 100 mg hard capsule, 28, blister pack 47012 930221000168106 Sporanox 100 mg hard capsule, 28 5115011000036100 Sporanox 100 mg hard capsule 3606011000036102 Sporanox 3606011000036102 Sporanox 848911000168104 itraconazole 100 mg capsule, 28 22518011000036104 itraconazole 100 mg capsule 21903011000036100 itraconazole +928835011000036107 Ebegemcit 200 mg powder for injection, 1 vial 129350 928197011000036104 Ebegemcit 200 mg powder for injection, 1 vial 927856011000036107 Ebegemcit 200 mg powder for injection, 200 mg vial 927797011000036100 Ebegemcit 927797011000036100 Ebegemcit 27232011000036104 gemcitabine 200 mg injection, 1 vial 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +60973011000036107 Paracetamol (Pharmacist) 500 mg uncoated tablet, 48, blister pack 62808 56916011000036102 Paracetamol (Pharmacist) 500 mg uncoated tablet, 48 54119011000036100 Paracetamol (Pharmacist) 500 mg uncoated tablet 53276011000036100 Paracetamol (Pharmacist) 53276011000036100 Paracetamol (Pharmacist) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +972001000168105 Pregabalin (Apo) 75 mg hard capsule, 56, bottle 193247 970561000168101 Pregabalin (Apo) 75 mg hard capsule, 56 970501000168102 Pregabalin (Apo) 75 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1112251000168109 Syquet XR 50 mg modified release tablet, 60, blister pack 199887 1112241000168107 Syquet XR 50 mg modified release tablet, 60 1112231000168103 Syquet XR 50 mg modified release tablet 1111931000168101 Syquet XR 1111931000168101 Syquet XR 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +25281000036100 Amoxycillin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 97628 23061000036104 Amoxycillin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL 19951000036106 Amoxycillin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 5 mL 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +25281000036100 Amoxycillin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 76228 23061000036104 Amoxycillin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 100 mL 19951000036106 Amoxycillin (Terry White Chemists) 125 mg/5 mL powder for oral liquid, 5 mL 3697011000036102 Amoxycillin (Terry White Chemists) 3697011000036102 Amoxycillin (Terry White Chemists) 28238011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 100 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +842421000168102 Infanrix injection suspension, 10 x 0.5 mL vials 142369 842411000168109 Infanrix injection suspension, 10 x 0.5 mL vials 842361000168102 Infanrix injection suspension, 0.5 mL vial 842341000168101 Infanrix 842341000168101 Infanrix 842401000168106 diphtheria + tetanus + pertussis 3 component child vaccine injection, 10 x 0.5 mL vials 842351000168104 diphtheria + tetanus + pertussis 3 component child vaccine injection, 0.5 mL vial 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine +18280011000036104 Telzir 700 mg film-coated tablet, 60, bottle 101604 11222011000036100 Telzir 700 mg film-coated tablet, 60 5935011000036106 Telzir 700 mg film-coated tablet 3867011000036107 Telzir 3867011000036107 Telzir 26560011000036101 fosamprenavir 700 mg tablet, 60 21969011000036101 fosamprenavir 700 mg tablet 21811011000036106 fosamprenavir +45611000036107 Pravastatin Sodium (PS) 80 mg film-coated tablet, 30, blister pack 190393 43741000036100 Pravastatin Sodium (PS) 80 mg film-coated tablet, 30 41451000036105 Pravastatin Sodium (PS) 80 mg film-coated tablet 40261000036101 Pravastatin Sodium (PS) 40261000036101 Pravastatin Sodium (PS) 26699011000036102 pravastatin sodium 80 mg tablet, 30 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +68774011000036102 Nicotinell Fruit 2 mg chewing gum, 144, blister pack 126013 66684011000036107 Nicotinell Fruit 2 mg chewing gum, 144 54074011000036104 Nicotinell Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71510011000036105 nicotine 2 mg gum, 144 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +69694011000036101 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 1.5 L, bottle 90412 67493011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 1.5 L 65683011000036108 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 72008011000036105 povidone-iodine 0.75% application, 1.5 L 70277011000036103 povidone-iodine 0.75% application 21660011000036108 povidone-iodine +68958011000036101 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 9 sachets 133242 66760011000036107 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 9 sachets 65537011000036104 Lemsip Cold and Flu lemon and menthol 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71428011000036105 paracetamol 500 mg powder for oral liquid, 9 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +1051551000168102 Palexia SR 50 mg modified release tablet, 20, blister pack 165332 1051541000168104 Palexia SR 50 mg modified release tablet, 20 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051531000168108 tapentadol 50 mg modified release tablet, 20 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +861431000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2, blister pack 132931 861421000168100 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2 861411000168107 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 25461000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory 861371000168106 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2 861221000168104 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge 61713011000036100 lidocaine (lignocaine) + benzydamine + dichlorobenzyl alcohol +931921000168109 Centevo 100/25/200 mg film-coated tablet, 250, bottle 238855 931911000168102 Centevo 100/25/200 mg film-coated tablet, 250 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931901000168100 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 250 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +60339011000036102 C-Zine (Chemists' Own) 10 mg film-coated tablet, 10, blister pack 139462 56298011000036100 C-Zine (Chemists' Own) 10 mg film-coated tablet, 10 53866011000036101 C-Zine (Chemists' Own) 10 mg film-coated tablet 53377011000036107 C-Zine (Chemists' Own) 53377011000036107 C-Zine (Chemists' Own) 33778011000036100 cetirizine hydrochloride 10 mg tablet, 10 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1014101000168102 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 100 mL vial 205927 1014091000168107 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 100 mL vial 1014081000168109 Zoledronic Acid (Apo) 4 mg/100 mL injection solution, 100 mL vial 731221000168109 Zoledronic Acid (Apo) 731221000168109 Zoledronic Acid (Apo) 90001000036100 zoledronic acid 4 mg/100 mL injection, 100 mL vial 88441000036105 zoledronic acid 4 mg/100 mL injection, vial 21790011000036102 zoledronic acid +1060111000168105 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 100, blister pack 234479 1058941000168101 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 100 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911121000168100 rosuvastatin 10 mg tablet, 100 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +45601000036105 Pravastatin Sodium (PS) 40 mg film-coated tablet, 30, blister pack 190392 43731000036105 Pravastatin Sodium (PS) 40 mg film-coated tablet, 30 41441000036107 Pravastatin Sodium (PS) 40 mg film-coated tablet 40261000036101 Pravastatin Sodium (PS) 40261000036101 Pravastatin Sodium (PS) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +973691000168101 Pregabalin (GH) 75 mg hard capsule, 60, blister pack 215683 973681000168104 Pregabalin (GH) 75 mg hard capsule, 60 973571000168101 Pregabalin (GH) 75 mg hard capsule 973381000168105 Pregabalin (GH) 973381000168105 Pregabalin (GH) 854901000168107 pregabalin 75 mg capsule, 60 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +933213411000036103 Lisinopril (IPCA) 10 mg uncoated tablet, 56, blister pack 152717 933201701000036107 Lisinopril (IPCA) 10 mg uncoated tablet, 56 933194791000036102 Lisinopril (IPCA) 10 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 86421011000036100 lisinopril 10 mg tablet, 56 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +920815011000036101 Alprazolam (Sandoz) 1 mg uncoated tablet, 50, blister pack 98665 920494011000036106 Alprazolam (Sandoz) 1 mg uncoated tablet, 50 920225011000036102 Alprazolam (Sandoz) 1 mg uncoated tablet 920078011000036101 Alprazolam (Sandoz) 920078011000036101 Alprazolam (Sandoz) 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +20268011000036100 Pamisol 60 mg/10 mL concentrated injection, 10 mL vial 75108 13478011000036109 Pamisol 60 mg/10 mL concentrated injection, 10 mL vial 6761011000036106 Pamisol 60 mg/10 mL concentrated injection, 10 mL vial 3449011000036103 Pamisol 3449011000036103 Pamisol 27767011000036102 pamidronate disodium 60 mg/10 mL injection, 10 mL vial 23098011000036105 pamidronate disodium 60 mg/10 mL injection, vial 21339011000036101 pamidronate disodium +1109121000168100 Nicotinell Tropical Fruit 2 mg chewing gum, 144, blister pack 279617 1109111000168107 Nicotinell Tropical Fruit 2 mg chewing gum, 144 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71510011000036105 nicotine 2 mg gum, 144 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +931543011000036101 Ostran 4 mg film-coated tablet, 4, blister pack 163432 930704011000036104 Ostran 4 mg film-coated tablet, 4 930022011000036104 Ostran 4 mg film-coated tablet 29491000168107 Ostran 29491000168107 Ostran 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +760551000168100 Sildenafil (DRLA) 50 mg film-coated tablet, 8, blister pack 186293 760541000168102 Sildenafil (DRLA) 50 mg film-coated tablet, 8 760471000168105 Sildenafil (DRLA) 50 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 760531000168106 sildenafil 50 mg tablet, 8 22886011000036104 sildenafil 50 mg tablet 21529011000036101 sildenafil +18395011000036100 Haemaccel intravenous infusion injection, 500 mL bottle 12401 11754011000036103 Haemaccel intravenous infusion injection, 500 mL bottle 5188011000036109 Haemaccel intravenous infusion injection, 500 mL bottle 3168011000036103 Haemaccel 3168011000036103 Haemaccel 26761011000036109 polygeline 17.5 g/500 mL + potassium 99.71 mg (2.6 mmol)/500 mL + sodium 1.67 g/500 mL + calcium 125 mg/500 mL + chloride 2.574 g/500 mL injection, 500 mL bottle 22148011000036103 polygeline 17.5 g/500 mL + potassium 99.71 mg (2.6 mmol)/500 mL + sodium 1.67 g/500 mL + calcium 125 mg/500 mL + chloride 2.574 g/500 mL injection, bottle 21871011000036100 polygeline + potassium + sodium + calcium + chloride +662571000168102 Telmisartan (Apo) 80 mg uncoated tablet, 28, bottle 189910 662561000168108 Telmisartan (Apo) 80 mg uncoated tablet, 28 662551000168106 Telmisartan (Apo) 80 mg uncoated tablet 662541000168109 Telmisartan (Apo) 662541000168109 Telmisartan (Apo) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +972321000168103 Lyzalon 75 mg hard capsule, 20, bottle 224428 972311000168105 Lyzalon 75 mg hard capsule, 20 972281000168108 Lyzalon 75 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903141000168107 pregabalin 75 mg capsule, 20 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1034151000168107 Atomoxetine (CH) 10 mg hard capsule, 56, blister pack 234831 1034141000168105 Atomoxetine (CH) 10 mg hard capsule, 56 1034071000168104 Atomoxetine (CH) 10 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 829971000168102 atomoxetine 10 mg capsule, 56 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +13541000036103 Delucon 200 mg film-coated tablet, 60, blister pack 172847 8671000036101 Delucon 200 mg film-coated tablet, 60 1601000036103 Delucon 200 mg film-coated tablet 851000036102 Delucon 851000036102 Delucon 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +146301000036102 Sevikar HCT 40/10/12.5 film-coated tablet, 30, blister pack 199005 144971000036104 Sevikar HCT 40/10/12.5 film-coated tablet, 30 143571000036109 Sevikar HCT 40/10/12.5 film-coated tablet 25691000168107 Sevikar HCT 40/10/12.5 25691000168107 Sevikar HCT 40/10/12.5 144981000036102 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 143581000036106 olmesartan medoxomil 40 mg + amlodipine 10 mg + hydrochlorothiazide 12.5 mg tablet 146481000036102 olmesartan + amlodipine + hydrochlorothiazide +919041000168108 Temolide 20 mg hard capsule, 20, bottle 192679 919031000168104 Temolide 20 mg hard capsule, 20 919001000168106 Temolide 20 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 164291000036104 temozolomide 20 mg capsule, 20 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +87197011000036100 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 93607 87137011000036106 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 87084011000036103 Estelle-35 ED (inert substance) film-coated tablet 700020231000036104 Estelle-35 ED 700020231000036104 Estelle-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +87197011000036100 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 93607 87137011000036106 Estelle-35 ED (21 x 2 mg/35 microgram tablets, 7 x inert tablets), 3 x 28 87083011000036100 Estelle-35 ED (cyproterone acetate 2 mg + ethinylestradiol 35 microgram) film-coated tablet 700020231000036104 Estelle-35 ED 700020231000036104 Estelle-35 ED 87243011000036104 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87211011000036105 cyproterone acetate 2 mg + ethinylestradiol 35 microgram tablet 87201011000036108 cyproterone + ethinylestradiol +18276011000036108 Meloxicam (Chemmart) 15 mg uncoated tablet, 30, blister pack 127507 11846011000036107 Meloxicam (Chemmart) 15 mg uncoated tablet, 30 4896011000036105 Meloxicam (Chemmart) 15 mg uncoated tablet 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 28308011000036108 meloxicam 15 mg tablet, 30 23622011000036106 meloxicam 15 mg tablet 21678011000036102 meloxicam +928927011000036109 Valaciclovir (SZ) 500 mg film-coated tablet, 30, blister pack 154460 928289011000036105 Valaciclovir (SZ) 500 mg film-coated tablet, 30 927923011000036106 Valaciclovir (SZ) 500 mg film-coated tablet 927819011000036109 Valaciclovir (SZ) 927819011000036109 Valaciclovir (SZ) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +68761011000036105 QV Cream, 500 g, jar 11618 66628011000036109 QV Cream, 500 g 65500011000036107 QV Cream 65191011000036105 QV Cream 65191011000036105 QV Cream 71339011000036109 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream, 500 g 69959011000036106 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream 69769011000036106 glycerol + light liquid paraffin + white soft paraffin +44841011000036107 Curosurf 120 mg/1.5 mL intratracheal suspension, 1.5 mL vial 99514 42273011000036109 Curosurf 120 mg/1.5 mL intratracheal suspension, 1.5 mL vial 40412011000036103 Curosurf 120 mg/1.5 mL intratracheal suspension, 1.5 mL vial 39597011000036108 Curosurf 39597011000036108 Curosurf 47026011000036109 poractant alfa 120 mg/1.5 mL intratracheal suspension, 1.5 mL vial 45378011000036109 poractant alfa 120 mg/1.5 mL intratracheal suspension, vial 44855011000036107 poractant alfa +893091000168107 Betahistine (GXP) 16 mg uncoated tablet, 100, blister pack 212082 893081000168109 Betahistine (GXP) 16 mg uncoated tablet, 100 892991000168102 Betahistine (GXP) 16 mg uncoated tablet 892981000168100 Betahistine (GXP) 892981000168100 Betahistine (GXP) 46540011000036109 betahistine dihydrochloride 16 mg tablet, 100 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +25321000036109 Cephalexin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 98638 23101000036102 Cephalexin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL 20591000036108 Cephalexin (Chemmart) 125 mg/5 mL powder for oral liquid, 5 mL 3701011000036103 Cephalexin (Chemmart) 3701011000036103 Cephalexin (Chemmart) 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +25321000036109 Cephalexin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL, bottle 160871 23101000036102 Cephalexin (Chemmart) 125 mg/5 mL powder for oral liquid, 100 mL 20591000036108 Cephalexin (Chemmart) 125 mg/5 mL powder for oral liquid, 5 mL 3701011000036103 Cephalexin (Chemmart) 3701011000036103 Cephalexin (Chemmart) 28272011000036108 cefalexin 125 mg/5 mL powder for oral liquid, 100 mL 23586011000036108 cefalexin 125 mg/5 mL powder for oral liquid 21224011000036108 cefalexin +50624011000036105 Siguent Hycor 1% eye ointment, 2.5 g, tube 139082 49650011000036106 Siguent Hycor 1% eye ointment, 2.5 g 5444011000036106 Siguent Hycor 1% eye ointment 3373011000036107 Siguent Hycor 3373011000036107 Siguent Hycor 51541011000036106 hydrocortisone acetate 1% eye ointment, 2.5 g 22356011000036107 hydrocortisone acetate 1% eye ointment 21231011000036107 hydrocortisone acetate +885861000168108 Tadalafil (Blooms The Chemist) 10 mg film-coated tablet, 4, blister pack 205853 885851000168106 Tadalafil (Blooms The Chemist) 10 mg film-coated tablet, 4 885841000168109 Tadalafil (Blooms The Chemist) 10 mg film-coated tablet 885831000168100 Tadalafil (Blooms The Chemist) 885831000168100 Tadalafil (Blooms The Chemist) 28012011000036107 tadalafil 10 mg tablet, 4 23335011000036109 tadalafil 10 mg tablet 21725011000036104 tadalafil +60904011000036104 Robitussin EX Colour Free 100 mg/5 mL oral liquid solution, 200 mL, bottle 60752 56858011000036104 Robitussin EX Colour Free 100 mg/5 mL oral liquid solution, 200 mL 54103011000036100 Robitussin EX Colour Free 100 mg/5 mL oral liquid solution, 5 mL 53237011000036100 Robitussin EX 53237011000036100 Robitussin EX 63614011000036104 guaifenesin 100 mg/5 mL oral liquid, 200 mL 62028011000036101 guaifenesin 100 mg/5 mL oral liquid 61763011000036101 guaifenesin +999671000168107 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 195218 999661000168101 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 999551000168104 Drospirenone/EE 3/30 (Apotex) (inert substance) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +999671000168107 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 195218 999661000168101 Drospirenone/EE 3/30 (Apotex) (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 4 x 28 999541000168101 Drospirenone/EE 3/30 (Apotex) (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 999491000168105 Drospirenone/EE 3/30 (Apotex) 999491000168105 Drospirenone/EE 3/30 (Apotex) 767521000168107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +1057281000168100 Atorvastatin (Medis) 80 mg film-coated tablet, 30, blister pack 217181 1057271000168103 Atorvastatin (Medis) 80 mg film-coated tablet, 30 1057241000168105 Atorvastatin (Medis) 80 mg film-coated tablet 1057221000168104 Atorvastatin (Medis) 1057221000168104 Atorvastatin (Medis) 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +19000011000036109 Anamorph 30 mg uncoated tablet, 20, blister pack 34032 12307011000036101 Anamorph 30 mg uncoated tablet, 20 5893011000036109 Anamorph 30 mg uncoated tablet 3088011000036106 Anamorph 3088011000036106 Anamorph 27054011000036102 morphine sulfate pentahydrate 30 mg tablet, 20 22423011000036106 morphine sulfate pentahydrate 30 mg tablet 21252011000036100 morphine +91591000036109 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 50, blister pack 192334 90061000036101 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet, 50 929969011000036109 Cetirizine Hydrochloride (Pharmacy Choice) 10 mg film-coated tablet 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 929918011000036102 Cetirizine Hydrochloride (Pharmacy Choice) 63286011000036108 cetirizine hydrochloride 10 mg tablet, 50 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +852751000168100 Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28, blister pack 166939 852741000168102 Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28 69651000036103 Risedronate EC (Winthrop) 35 mg enteric tablet 69361000036107 Risedronate EC Combi (Winthrop) 69381000036102 Risedronate EC (Winthrop) 852701000168104 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +852751000168100 Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28, blister pack 166939 852741000168102 Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28 852731000168106 Calcium Carbonate (Winthrop) 1.25 g (calcium 500 mg) film-coated tablet 69361000036107 Risedronate EC Combi (Winthrop) 69431000036109 Calcium Carbonate (Winthrop) 852701000168104 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +816741000168107 Atomoxetine (Amneal) 100 mg hard capsule, 7, blister pack 238341 816731000168103 Atomoxetine (Amneal) 100 mg hard capsule, 7 816721000168101 Atomoxetine (Amneal) 100 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +60944011000036108 Claratyne 10 mg effervescent tablet, 15, tube 62135 56887011000036106 Claratyne 10 mg effervescent tablet, 15 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 63631011000036106 loratadine 10 mg effervescent tablet, 15 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +61307011000036105 Postinor-2 750 microgram tablet, 2, blister pack 79952 57243011000036101 Postinor-2 750 microgram tablet, 2 54252011000036103 Postinor-2 750 microgram tablet 15811000168109 Postinor-2 15811000168109 Postinor-2 63842011000036109 levonorgestrel 750 microgram tablet, 2 62089011000036102 levonorgestrel 750 microgram tablet 21391011000036105 levonorgestrel +783611000168105 Palexia IR 100 mg film-coated tablet, 30, blister pack 165318 783601000168107 Palexia IR 100 mg film-coated tablet, 30 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783591000168100 tapentadol 100 mg tablet, 30 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +708711000168109 Atozet 10 mg/10 mg tablet, 30, blister pack 216961 708701000168106 Atozet 10 mg/10 mg tablet, 30 708681000168108 Atozet 10 mg/10 mg tablet 708661000168104 Atozet 10 mg/10 mg 708661000168104 Atozet 10 mg/10 mg 708691000168106 ezetimibe 10 mg + atorvastatin 10 mg tablet, 30 708671000168105 ezetimibe 10 mg + atorvastatin 10 mg tablet 708601000168100 ezetimibe + atorvastatin +923745011000036107 Tazopip 2 g/0.25 g powder for injection, 2.25 g vial 144969 923286011000036102 Tazopip 2 g/0.25 g powder for injection, 2.25 g vial 922975011000036109 Tazopip 2 g/0.25 g powder for injection, 2.25 g vial 47371000168106 Tazopip 2 g/0.25 g 47371000168106 Tazopip 2 g/0.25 g 924112011000036104 piperacillin 2 g + tazobactam 250 mg injection, 2.25 g vial 923946011000036109 piperacillin 2 g + tazobactam 250 mg injection, 2.25 g vial 44928011000036106 piperacillin + tazobactam +45691000036102 Cyprocur 100 mg uncoated tablet, 50, blister pack 170917 43001000036100 Cyprocur 100 mg uncoated tablet, 50 41111000036103 Cyprocur 100 mg uncoated tablet 40221000036105 Cyprocur 40221000036105 Cyprocur 27250011000036102 cyproterone acetate 100 mg tablet, 50 22608011000036107 cyproterone acetate 100 mg tablet 21694011000036101 cyproterone +87681011000036105 Famciclovir (Apo) 250 mg film-coated tablet, 28, bottle 160560 87484011000036106 Famciclovir (Apo) 250 mg film-coated tablet, 28 87336011000036103 Famciclovir (Apo) 250 mg film-coated tablet 2791000168101 Famciclovir (Apo) 2791000168101 Famciclovir (Apo) 87824011000036107 famciclovir 250 mg tablet, 28 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +789411000168106 Oxycodone (HX) 10 mg modified release tablet, 20, bottle 153603 789401000168108 Oxycodone (HX) 10 mg modified release tablet, 20 789391000168106 Oxycodone (HX) 10 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +1077451000168105 Fexo (Amcal) 180 mg film-coated tablet, 100, blister pack 223782 1077441000168108 Fexo (Amcal) 180 mg film-coated tablet, 100 53842011000036108 Fexo (Amcal) 180 mg film-coated tablet 53326011000036108 Fexo (Amcal) 53326011000036108 Fexo (Amcal) 1077431000168104 fexofenadine hydrochloride 180 mg tablet, 100 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +717391000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 60, bottle 167313 717361000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 60 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 716831000168107 omeprazole 20 mg enteric capsule, 60 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +19634011000036103 Lipex 40 mg film-coated tablet, 30, blister pack 59273 12903011000036102 Lipex 40 mg film-coated tablet, 30 6193011000036103 Lipex 40 mg film-coated tablet 3298011000036103 Lipex 3298011000036103 Lipex 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +45521000036101 Roxithromycin (PS) 300 mg film-coated tablet, 5, blister pack 188355 43651000036107 Roxithromycin (PS) 300 mg film-coated tablet, 5 40901000036108 Roxithromycin (PS) 300 mg film-coated tablet 40331000036100 Roxithromycin (PS) 40331000036100 Roxithromycin (PS) 28341011000036107 roxithromycin 300 mg tablet, 5 23651011000036104 roxithromycin 300 mg tablet 21724011000036103 roxithromycin +818181000168104 Adenosine (Mylan) 6 mg/2 mL injection solution, 5 x 2 mL syringes 152015 818171000168102 Adenosine (Mylan) 6 mg/2 mL injection solution, 5 x 2 mL syringes 818151000168106 Adenosine (Mylan) 6 mg/2 mL injection solution, 2 mL syringe 818051000168107 Adenosine (Mylan) 818051000168107 Adenosine (Mylan) 818161000168108 adenosine 6 mg/2 mL injection, 5 x 2 mL syringes 818141000168109 adenosine 6 mg/2 mL injection, syringe 44942011000036105 adenosine +962221000168100 Ciprofloxacin (GA) 250 mg film-coated tablet, 14, blister pack 148854 962211000168107 Ciprofloxacin (GA) 250 mg film-coated tablet, 14 962161000168104 Ciprofloxacin (GA) 250 mg film-coated tablet 83231011000036106 Ciprofloxacin (GA) 83231011000036106 Ciprofloxacin (GA) 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +91631000036109 Solveasy Tinea 1% spray, 16 mL, aerosol can 192849 90101000036104 Solveasy Tinea 1% spray, 16 mL 88501000036106 Solveasy Tinea 1% spray 31871000168105 Solveasy Tinea 31871000168105 Solveasy Tinea 90111000036102 terbinafine hydrochloride 1% spray, 16 mL 62024011000036108 terbinafine hydrochloride 1% spray 21575011000036104 terbinafine +954981000168105 Ranitidine (GN) 300 mg film-coated tablet, 180, bottle 148527 954971000168107 Ranitidine (GN) 300 mg film-coated tablet, 180 933195281000036109 Ranitidine (GN) 300 mg film-coated tablet 933193591000036107 Ranitidine (GN) 933193591000036107 Ranitidine (GN) 946491000168105 ranitidine 300 mg tablet, 180 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +37513011000036105 Retin-A 0.01% gel, 45 g, tube 13324 36781011000036106 Retin-A 0.01% gel, 45 g 36129011000036108 Retin-A 0.01% gel 35932011000036100 Retin-A 35932011000036100 Retin-A 38678011000036108 tretinoin 0.01% gel, 45 g 37919011000036102 tretinoin 0.01% gel 37794011000036109 tretinoin +39384011000036104 Tryzan 1.25 mg uncoated tablet, 30, blister pack 129873 39268011000036100 Tryzan 1.25 mg uncoated tablet, 30 39208011000036104 Tryzan 1.25 mg uncoated tablet 3401011000036105 Tryzan 3401011000036105 Tryzan 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +69304011000036105 Hirudoid 0.3% cream, 20 g, tube 21033 67104011000036106 Hirudoid 0.3% cream, 20 g 65437011000036107 Hirudoid 0.3% cream 64958011000036102 Hirudoid 64958011000036102 Hirudoid 71672011000036105 heparinoids 0.3% cream, 20 g 70119011000036104 heparinoids 0.3% cream 69837011000036105 heparinoids +1094751000168100 Hayfever Allergy Relief Cetirizine (Coles) 10 mg film-coated tablet, 5, blister pack 287406 1094741000168102 Hayfever Allergy Relief Cetirizine (Coles) 10 mg film-coated tablet, 5 1094731000168106 Hayfever Allergy Relief Cetirizine (Coles) 10 mg film-coated tablet 1094651000168109 Hayfever Allergy Relief Cetirizine (Coles) 1094651000168109 Hayfever Allergy Relief Cetirizine (Coles) 1081381000168106 cetirizine hydrochloride 10 mg tablet, 5 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +44311011000036104 ClindaTech 1% solution, 10 mL, bottle 66687 41778011000036109 ClindaTech 1% solution, 10 mL 40197011000036103 ClindaTech 1% solution 39609011000036105 ClindaTech 39609011000036105 ClindaTech 46584011000036107 clindamycin hydrochloride 1% solution, 10 mL 45230011000036102 clindamycin hydrochloride 1% solution 21255011000036108 clindamycin +753241000168103 Oxycodone (GX) 5 mg hard capsule, 60, bottle 227853 753211000168102 Oxycodone (GX) 5 mg hard capsule, 60 753181000168101 Oxycodone (GX) 5 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +20965011000036105 Clopine 200 mg tablet, 100, bottle 95561 14118011000036101 Clopine 200 mg tablet, 100 7395011000036107 Clopine 200 mg tablet 3146011000036108 Clopine 3146011000036108 Clopine 28162011000036103 clozapine 200 mg tablet, 100 23471011000036104 clozapine 200 mg tablet 21222011000036104 clozapine +91791000036102 Gabapentin (Pfizer) 100 mg hard capsule, 100, blister pack 80334 90331000036109 Gabapentin (Pfizer) 100 mg hard capsule, 100 88061000036100 Gabapentin (Pfizer) 100 mg hard capsule 87631000036104 Gabapentin (Pfizer) 87631000036104 Gabapentin (Pfizer) 27889011000036105 gabapentin 100 mg capsule, 100 23214011000036107 gabapentin 100 mg capsule 21444011000036105 gabapentin +786441000168103 Fentanyl (Sandoz) 37 microgram/hour patch, 5, sachet 152567 786431000168107 Fentanyl (Sandoz) 37 microgram/hour patch, 5 786341000168105 Fentanyl (Sandoz) 37 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 780841000168103 fentanyl 37 microgram/hour patch, 5 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +146161000036100 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet, 48, blister pack 196020 145241000036101 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet, 48 143431000036106 Ibuprofen (Pharmacy Action) 200 mg film-coated tablet 143441000036101 Ibuprofen (Pharmacy Action) 143441000036101 Ibuprofen (Pharmacy Action) 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +77207011000036104 Liquid Vitamin E Micelle E (Bioglan) 115 mg (156 units)/mL oral liquid solution, 50 mL, bottle 134715 76623011000036100 Liquid Vitamin E Micelle E (Bioglan) 115 mg (156 units)/mL oral liquid solution, 50 mL 76069011000036100 Liquid Vitamin E Micelle E (Bioglan) 115 mg (156 units)/mL oral liquid solution 20931000168106 Liquid Vitamin E Micelle E (Bioglan) 20931000168106 Liquid Vitamin E Micelle E (Bioglan) 78176011000036101 d-alpha-tocopheryl acetate 115 mg (156 units)/mL oral liquid, 50 mL 77528011000036103 d-alpha-tocopheryl acetate 115 mg (156 units)/mL oral liquid 77464011000036107 d-alpha-tocopheryl acetate +933239251000036108 Glimepiride (Pharmacor) 4 mg uncoated tablet, 30, blister pack 156404 933236371000036102 Glimepiride (Pharmacor) 4 mg uncoated tablet, 30 933234551000036107 Glimepiride (Pharmacor) 4 mg uncoated tablet 933234221000036103 Glimepiride (Pharmacor) 933234221000036103 Glimepiride (Pharmacor) 28150011000036109 glimepiride 4 mg tablet, 30 23459011000036103 glimepiride 4 mg tablet 21280011000036108 glimepiride +898791000168101 Nicotinell Peppermint 2 mg lozenge, 156, blister pack 276925 898781000168104 Nicotinell Peppermint 2 mg lozenge, 156 898581000168105 Nicotinell Peppermint 2 mg lozenge 4731000168109 Nicotinell 4731000168109 Nicotinell 898771000168102 nicotine 2 mg lozenge, 156 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +649801000168106 Sumatran 50 mg film-coated tablet, 4, blister pack 187216 649791000168105 Sumatran 50 mg film-coated tablet, 4 649761000168103 Sumatran 50 mg film-coated tablet 649751000168100 Sumatran 649751000168100 Sumatran 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +777811000168105 Lanzek 10 mg film-coated tablet, 7, blister pack 167684 777801000168107 Lanzek 10 mg film-coated tablet, 7 2341000036101 Lanzek 10 mg film-coated tablet 9311000168101 Lanzek 9311000168101 Lanzek 933205131000036101 olanzapine 10 mg tablet, 7 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +61098011000036107 Neutrafluor 5000 Plus 1.1% toothpaste, 56 g, tube 71490 57041011000036105 Neutrafluor 5000 Plus 1.1% toothpaste, 56 g 54170011000036103 Neutrafluor 5000 Plus 1.1% toothpaste 3561000168106 Neutrafluor 5000 Plus 3561000168106 Neutrafluor 5000 Plus 63712011000036104 sodium fluoride 1.1% toothpaste, 56 g 62053011000036107 sodium fluoride 1.1% toothpaste 61768011000036106 fluoride +86160011000036100 Kepcet 500 mg film-coated tablet, 60, blister pack 165910 85768011000036109 Kepcet 500 mg film-coated tablet, 60 85383011000036100 Kepcet 500 mg film-coated tablet 85281011000036106 Kepcet 85281011000036106 Kepcet 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +933101011000036109 Virazide 6 g powder for inhalation, 1 vial 18225 932898011000036104 Virazide 6 g powder for inhalation, 1 vial 932745011000036102 Virazide 6 g powder for inhalation, 6 g vial 35867011000036100 Virazide 35867011000036100 Virazide 932899011000036107 ribavirin 6 g powder for inhalation, 1 vial 932746011000036109 ribavirin 6 g powder for inhalation, vial 21714011000036106 ribavirin +59721000036107 Zetlam 100 mg film-coated tablet, 84, bottle 180504 58771000036101 Zetlam 100 mg film-coated tablet, 84 58361000036105 Zetlam 100 mg film-coated tablet 58041000036106 Zetlam 58041000036106 Zetlam 58781000036104 lamivudine 100 mg tablet, 84 22927011000036104 lamivudine 100 mg tablet 21665011000036104 lamivudine +921851000168107 Ceftazidime (Kabi) 1 g powder for injection, 1 vial 223563 921841000168105 Ceftazidime (Kabi) 1 g powder for injection, 1 vial 921831000168101 Ceftazidime (Kabi) 1 g powder for injection, vial 921821000168104 Ceftazidime (Kabi) 921821000168104 Ceftazidime (Kabi) 38648011000036109 ceftazidime 1 g injection, 1 vial 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +1065891000168102 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 10, blister pack 220730 1065881000168100 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 10 1065871000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 761651000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 10 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +21149011000036105 Zamhexal 1 mg uncoated tablet, 50, blister pack 98665 14291011000036109 Zamhexal 1 mg uncoated tablet, 50 7577011000036109 Zamhexal 1 mg uncoated tablet 3157011000036108 Zamhexal 3157011000036108 Zamhexal 28282011000036104 alprazolam 1 mg tablet, 50 23596011000036109 alprazolam 1 mg tablet 21284011000036103 alprazolam +1057301000168101 Atorvastatin (Medis) 80 mg film-coated tablet, 90, bottle 217183 1057291000168102 Atorvastatin (Medis) 80 mg film-coated tablet, 90 1057241000168105 Atorvastatin (Medis) 80 mg film-coated tablet 1057221000168104 Atorvastatin (Medis) 1057221000168104 Atorvastatin (Medis) 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +913311000168109 Cisatracurium (AJS) 10 mg/5 mL injection solution, 5 x 5 mL vials 180282 913301000168106 Cisatracurium (AJS) 10 mg/5 mL injection solution, 5 x 5 mL vials 913291000168105 Cisatracurium (AJS) 10 mg/5 mL injection solution, 5 mL vial 913251000168100 Cisatracurium (AJS) 913251000168100 Cisatracurium (AJS) 679471000168104 cisatracurium 10 mg/5 mL injection, 5 x 5 mL vials 679451000168108 cisatracurium 10 mg/5 mL injection, vial 44902011000036101 cisatracurium +1109281000168108 Nicotinell Tropical Fruit 2 mg chewing gum, 204, blister pack 279617 1109271000168105 Nicotinell Tropical Fruit 2 mg chewing gum, 204 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897531000168105 nicotine 2 mg gum, 204 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +782101000168109 Voriconazole (Alphapharm) 50 mg film-coated tablet, 50, blister pack 206984 782091000168104 Voriconazole (Alphapharm) 50 mg film-coated tablet, 50 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46818011000036102 voriconazole 50 mg tablet, 50 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +921871000168103 Ceftazidime (Kabi) 1 g powder for injection, 5 vials 223563 921861000168109 Ceftazidime (Kabi) 1 g powder for injection, 5 vials 921831000168101 Ceftazidime (Kabi) 1 g powder for injection, vial 921821000168104 Ceftazidime (Kabi) 921821000168104 Ceftazidime (Kabi) 38649011000036101 ceftazidime 1 g injection, 5 vials 37903011000036102 ceftazidime 1 g injection, vial 37781011000036107 ceftazidime +816901000168108 Espler 25 mg film-coated tablet, 20, blister pack 231454 816891000168109 Espler 25 mg film-coated tablet, 20 816881000168106 Espler 25 mg film-coated tablet 815961000168104 Espler 815961000168104 Espler 790421000168106 eplerenone 25 mg tablet, 20 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +91751000036106 Tramadol Hydrochloride SR (Generic Health) 200 mg modified release tablet, 20, blister pack 194541 90271000036100 Tramadol Hydrochloride SR (Generic Health) 200 mg modified release tablet, 20 88321000036106 Tramadol Hydrochloride SR (Generic Health) 200 mg modified release tablet 19731000168108 Tramadol Hydrochloride SR (Generic Health) 19731000168108 Tramadol Hydrochloride SR (Generic Health) 28313011000036101 tramadol hydrochloride 200 mg modified release tablet, 20 23627011000036108 tramadol hydrochloride 200 mg modified release tablet 21486011000036105 tramadol +777831000168100 Lanzek Zydis 5 mg wafer, 7, blister pack 167686 777821000168103 Lanzek Zydis 5 mg wafer, 7 2481000036104 Lanzek Zydis 5 mg wafer 60181000168101 Lanzek Zydis 60181000168101 Lanzek Zydis 933205181000036102 olanzapine 5 mg wafer, 7 23048011000036103 olanzapine 5 mg wafer 21485011000036103 olanzapine +19363011000036101 Aurorix 300 mg film-coated tablet, 60, blister pack 51626 12650011000036103 Aurorix 300 mg film-coated tablet, 60 5799011000036109 Aurorix 300 mg film-coated tablet 4157011000036106 Aurorix 4157011000036106 Aurorix 27872011000036109 moclobemide 300 mg tablet, 60 23200011000036100 moclobemide 300 mg tablet 21734011000036101 moclobemide +656791000168101 Famciclovir (AN) 250 mg film-coated tablet, 20, blister pack 195181 656781000168104 Famciclovir (AN) 250 mg film-coated tablet, 20 656771000168102 Famciclovir (AN) 250 mg film-coated tablet 656521000168106 Famciclovir (AN) 656521000168106 Famciclovir (AN) 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1042891000168102 Pryzex ODT 10 mg orally disintegrating tablet, 7, blister pack 179076 1042881000168100 Pryzex ODT 10 mg orally disintegrating tablet, 7 1042861000168109 Pryzex ODT 10 mg orally disintegrating tablet 1042851000168107 Pryzex ODT 1042851000168107 Pryzex ODT 1042871000168103 olanzapine 10 mg orally disintegrating tablet, 7 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +800811000168101 Actonate 5 mg film-coated tablet, 14, blister pack 163746 800801000168104 Actonate 5 mg film-coated tablet, 14 800751000168105 Actonate 5 mg film-coated tablet 800591000168107 Actonate 800591000168107 Actonate 800791000168100 risedronate sodium 5 mg tablet, 14 23071011000036108 risedronate sodium 5 mg tablet 21476011000036103 risedronate +921979011000036105 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 6 x 200 mL bottles 49599 921537011000036107 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 6 x 200 mL bottles 921069011000036109 Visipaque 652 mg (iodine 320 mg)/mL injection solution, 200 mL bottle 920924011000036100 Visipaque 920924011000036100 Visipaque 922656011000036100 iodixanol 652 mg (iodine 320 mg)/mL injection, 6 x 200 mL bottles 922139011000036106 iodixanol 652 mg (iodine 320 mg)/mL injection, 200 mL bottle 922032011000036109 iodixanol +1074481000168109 Cefazolin (Auro) 1 g powder for injection, 1 vial 174072 1074471000168106 Cefazolin (Auro) 1 g powder for injection, 1 vial 1074461000168100 Cefazolin (Auro) 1 g powder for injection, vial 1074451000168102 Cefazolin (Auro) 1074451000168102 Cefazolin (Auro) 27792011000036101 cefazolin 1 g injection, 1 vial 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +1103271000168108 Quetiapine (AN) 300 mg film-coated tablet, 20, blister pack 170856 1103261000168102 Quetiapine (AN) 300 mg film-coated tablet, 20 655251000168107 Quetiapine (AN) 300 mg film-coated tablet 655151000168100 Quetiapine (AN) 655151000168100 Quetiapine (AN) 651341000168102 quetiapine 300 mg tablet, 20 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +43827011000036103 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 20, blister pack 119091 41208011000036107 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 20 39842011000036101 Zolpidem Tartrate (DP) 10 mg film-coated tablet 39735011000036106 Zolpidem Tartrate (DP) 39735011000036106 Zolpidem Tartrate (DP) 46647011000036102 zolpidem tartrate 10 mg tablet, 20 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +18061011000036103 Avandamet 4/1000 film-coated tablet, 56, blister pack 115459 11492011000036108 Avandamet 4/1000 film-coated tablet, 56 4657011000036107 Avandamet 4/1000 film-coated tablet 61131000168107 Avandamet 4/1000 61131000168107 Avandamet 4/1000 26669011000036104 rosiglitazone 4 mg + metformin hydrochloride 1 g tablet, 56 22068011000036101 rosiglitazone 4 mg + metformin hydrochloride 1 g tablet 21426011000036104 rosiglitazone + metformin +688461000168107 Vita-D 25 microgram (1000 units) soft capsule, 400, bottle 204225 688441000168108 Vita-D 25 microgram (1000 units) soft capsule, 400 86643011000036103 Vita-D 25 microgram (1000 units) soft capsule 86578011000036104 Vita-D 86578011000036104 Vita-D 688421000168102 colecalciferol 25 microgram (1000 units) capsule, 400 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +19784011000036102 Crixivan 200 mg hard capsule, 360, bottle 62901 13042011000036102 Crixivan 200 mg hard capsule, 360 6328011000036105 Crixivan 200 mg hard capsule 3537011000036103 Crixivan 3537011000036103 Crixivan 27512011000036104 indinavir 200 mg capsule, 360 22854011000036101 indinavir 200 mg capsule 21424011000036107 indinavir +18892011000036106 Phenobarbitone (Sigma) 30 mg uncoated tablet, 200, bottle 19758 12200011000036109 Phenobarbitone (Sigma) 30 mg uncoated tablet, 200 5991011000036104 Phenobarbitone (Sigma) 30 mg uncoated tablet 3723011000036109 Phenobarbitone (Sigma) 3723011000036109 Phenobarbitone (Sigma) 26982011000036105 phenobarbital (phenobarbitone) 30 mg tablet, 200 22355011000036100 phenobarbital (phenobarbitone) 30 mg tablet 21578011000036105 phenobarbital (phenobarbitone) +44507011000036106 Chirocaine 50 mg/10 mL injection solution, 10 x 10 mL ampoules 76862 41962011000036109 Chirocaine 50 mg/10 mL injection solution, 10 x 10 mL ampoules 40290011000036102 Chirocaine 50 mg/10 mL injection solution, 10 mL ampoule 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46743011000036102 levobupivacaine 50 mg/10 mL injection, 10 x 10 mL ampoules 45295011000036102 levobupivacaine 50 mg/10 mL injection, ampoule 44881011000036100 levobupivacaine +782081000168102 Voriconazole (Alphapharm) 50 mg film-coated tablet, 30, blister pack 206984 782071000168100 Voriconazole (Alphapharm) 50 mg film-coated tablet, 30 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46817011000036103 voriconazole 50 mg tablet, 30 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +783701000168101 Palexia IR 100 mg film-coated tablet, 56, blister pack 165318 783691000168101 Palexia IR 100 mg film-coated tablet, 56 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783681000168104 tapentadol 100 mg tablet, 56 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +962131000168107 Loxalate 5 mg film-coated tablet, 28, blister pack 119961 962121000168109 Loxalate 5 mg film-coated tablet, 28 962111000168102 Loxalate 5 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 34321000036106 escitalopram 5 mg tablet, 28 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +60614011000036103 Aspirin (Bayer) 300 mg uncoated tablet, 20, blister pack 18841 56572011000036104 Aspirin (Bayer) 300 mg uncoated tablet, 20 53979011000036105 Aspirin (Bayer) 300 mg uncoated tablet 53252011000036101 Aspirin (Bayer) 53252011000036101 Aspirin (Bayer) 63576011000036108 aspirin 300 mg tablet, 20 22789011000036105 aspirin 300 mg tablet 21719011000036107 aspirin +904651000168102 Amlodipine (SG) 10 mg uncoated tablet, 30, blister pack 225379 904641000168104 Amlodipine (SG) 10 mg uncoated tablet, 30 904631000168108 Amlodipine (SG) 10 mg uncoated tablet 904611000168103 Amlodipine (SG) 904611000168103 Amlodipine (SG) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +959391000168108 Ciram 10 mg film-coated tablet, 84, blister pack 158856 959381000168105 Ciram 10 mg film-coated tablet, 84 959291000168103 Ciram 10 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +679781000168108 Movectro 10 mg uncoated tablet, 6, blister pack 166483 679761000168104 Movectro 10 mg uncoated tablet, 6 679631000168104 Movectro 10 mg uncoated tablet 679611000168109 Movectro 679611000168109 Movectro 679741000168103 cladribine 10 mg tablet, 6 679621000168102 cladribine 10 mg tablet 21886011000036103 cladribine +980821000168102 Favint 18 microgram powder for inhalation, 60 capsules, blister pack 98765 980811000168109 Favint 18 microgram powder for inhalation, 60 capsules 980711000168101 Favint 18 microgram powder for inhalation, 1 capsule 980671000168100 Favint 980671000168100 Favint 980801000168106 tiotropium 18 microgram powder for inhalation, 60 capsules 23277011000036106 tiotropium 18 microgram powder for inhalation, 1 capsule 21484011000036102 tiotropium +37586011000036101 Catapres 150 microgram/mL injection solution, 5 x 1 mL ampoules 17919 36853011000036103 Catapres 150 microgram/mL injection solution, 5 x 1 mL ampoules 36193011000036100 Catapres 150 microgram/mL injection solution, ampoule 3655011000036104 Catapres 3655011000036104 Catapres 38740011000036100 clonidine hydrochloride 150 microgram/mL injection, 5 x 1 mL ampoules 37967011000036105 clonidine hydrochloride 150 microgram/mL injection, ampoule 21589011000036108 clonidine +19376011000036102 Minitran 5 mg/24 hours patch, 30, sachet 52028 12663011000036102 Minitran 5 mg/24 hours patch, 30 4763011000036104 Minitran 5 mg/24 hours patch 2932011000036100 Minitran 2932011000036100 Minitran 27276011000036102 glyceryl trinitrate 5 mg/24 hours patch, 30 22631011000036105 glyceryl trinitrate 5 mg/24 hours patch 21388011000036102 glyceryl trinitrate +1065981000168106 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 30, blister pack 220730 1065971000168108 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet, 30 1065871000168103 Pain Relief Extra Strength (Priceline Pharmacy) uncoated tablet 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 1065861000168109 Pain Relief Extra Strength (Priceline Pharmacy) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +973851000168107 Pregabalin (Teva) 150 mg hard capsule, 56, blister pack 229593 973841000168105 Pregabalin (Teva) 150 mg hard capsule, 56 973751000168102 Pregabalin (Teva) 150 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +788041000168109 Arizole 15 mg uncoated tablet, 28, blister pack 198204 788031000168100 Arizole 15 mg uncoated tablet, 28 787501000168101 Arizole 15 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 788021000168103 aripiprazole 15 mg tablet, 28 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +983881000168106 Aranesp 15 microgram/0.38 mL injection solution, 4 x 0.38 mL syringes 77951 983871000168108 Aranesp 15 microgram/0.38 mL injection solution, 4 x 0.38 mL syringes 983821000168107 Aranesp 15 microgram/0.38 mL injection solution, 0.38 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 983861000168102 darbepoetin alfa 15 microgram/0.38 mL injection, 4 x 0.38 mL syringes 983811000168100 darbepoetin alfa 15 microgram/0.38 mL injection, syringe 21234011000036105 darbepoetin alfa +936401000168103 Cephalkem 500 mg hard capsule, 20, blister pack 204536 936391000168100 Cephalkem 500 mg hard capsule, 20 936381000168103 Cephalkem 500 mg hard capsule 936341000168108 Cephalkem 936341000168108 Cephalkem 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +937841000168100 Paclitaxin 300 mg/50 mL concentrated injection, 50 mL vial 153507 937831000168109 Paclitaxin 300 mg/50 mL concentrated injection, 50 mL vial 937821000168106 Paclitaxin 300 mg/50 mL concentrated injection, 50 mL vial 937581000168107 Paclitaxin 937581000168107 Paclitaxin 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +869971000168106 Atomerra 100 mg hard capsule, 7, blister pack 234811 869961000168100 Atomerra 100 mg hard capsule, 7 869951000168102 Atomerra 100 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +1099161000168103 Sunsense Ultra SPF 50+ lotion, 60 mL, bottle 279170 1099151000168100 Sunsense Ultra SPF 50+ lotion, 60 mL 1099131000168106 Sunsense Ultra SPF 50+ lotion 683971000168104 Sunsense Ultra SPF 50+ 683971000168104 Sunsense Ultra SPF 50+ 1099141000168102 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion, 60 mL 1099121000168108 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion 1099111000168101 bemotrizinol + octocrylene + diethylamino hydroxybenzoyl hexyl benzoate + titanium dioxide +1099981000168105 Clarant 250 mg film-coated tablet, 10, blister pack 184264 1099971000168107 Clarant 250 mg film-coated tablet, 10 1099941000168100 Clarant 250 mg film-coated tablet 1099931000168109 Clarant 1099931000168109 Clarant 58841000036100 clarithromycin 250 mg tablet, 10 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +61157011000036108 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 500 mL, bottle 74523 57100011000036100 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 500 mL 54196011000036108 Paracetamol Children's 1 to 5 Years (Soul Pattinson) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 39721000168104 Paracetamol Children's 1 to 5 Years (Soul Pattinson) 63818011000036104 paracetamol 120 mg/5 mL oral liquid, 500 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +19813011000036103 Doxylin 100 mg film-coated tablet, 7, bottle 63510 13069011000036100 Doxylin 100 mg film-coated tablet, 7 6353011000036104 Doxylin 100 mg film-coated tablet 3714011000036103 Doxylin 3714011000036103 Doxylin 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +20816011000036107 K-Sol effervescent tablet, 60, tube 91558 13979011000036104 K-Sol effervescent tablet, 60 7265011000036102 K-Sol effervescent tablet 3160011000036100 K-Sol 3160011000036100 K-Sol 28045011000036108 potassium chloride 595 mg + potassium bicarbonate 384 mg + potassium carbonate 152 mg (total potassium 14 mmol) effervescent tablet, 60 23366011000036109 potassium chloride 595 mg + potassium bicarbonate 384 mg + potassium carbonate 152 mg (total potassium 14 mmol) effervescent tablet 21261011000036104 potassium chloride + potassium bicarbonate + potassium carbonate +68911011000036102 QV Cream, 250 g, jar 11618 66627011000036108 QV Cream, 250 g 65500011000036107 QV Cream 65191011000036105 QV Cream 65191011000036105 QV Cream 71338011000036101 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream, 250 g 69959011000036106 glycerol 10% + light liquid paraffin 10% + white soft paraffin 5% cream 69769011000036106 glycerol + light liquid paraffin + white soft paraffin +1112571000168102 Clopithromb 75 mg film-coated tablet, 90, bottle 187043 1112561000168108 Clopithromb 75 mg film-coated tablet, 90 1111301000168109 Clopithromb 75 mg film-coated tablet 1111281000168105 Clopithromb 1111281000168105 Clopithromb 925444011000036105 clopidogrel 75 mg tablet, 90 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +13221000036109 Lanzek 2.5 mg film-coated tablet, 28, blister pack 167678 8371000036105 Lanzek 2.5 mg film-coated tablet, 28 2291000036103 Lanzek 2.5 mg film-coated tablet 9311000168101 Lanzek 9311000168101 Lanzek 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +86006011000036106 Lisinopril (DRLA) 10 mg uncoated tablet, 50, blister pack 152721 85659011000036100 Lisinopril (DRLA) 10 mg uncoated tablet, 50 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 86420011000036107 lisinopril 10 mg tablet, 50 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +60673011000036108 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 48, blister pack 42331 56631011000036102 Paracetamol (Soul Pattinson) 500 mg uncoated tablet, 48 54015011000036105 Paracetamol (Soul Pattinson) 500 mg uncoated tablet 53158011000036101 Paracetamol (Soul Pattinson) 53158011000036101 Paracetamol (Soul Pattinson) 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +984041000168107 Aranesp 300 microgram/0.6 mL injection solution, 4 x 0.6 mL syringes 77961 984031000168103 Aranesp 300 microgram/0.6 mL injection solution, 4 x 0.6 mL syringes 983981000168100 Aranesp 300 microgram/0.6 mL injection solution, 0.6 mL syringe 6471000168109 Aranesp 6471000168109 Aranesp 984021000168101 darbepoetin alfa 300 microgram/0.6 mL injection, 4 x 0.6 mL syringes 983971000168103 darbepoetin alfa 300 microgram/0.6 mL injection, syringe 21234011000036105 darbepoetin alfa +1005561000168106 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 162866 1005551000168109 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 1005541000168107 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 10 mL ampoule 711561000168109 Ropivacaine (Sandoz) 711561000168109 Ropivacaine (Sandoz) 1004501000168106 ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules 1004481000168102 ropivacaine hydrochloride 20 mg/10 mL injection, ampoule 44857011000036102 ropivacaine +1072171000168109 Codasig uncoated tablet, 20, blister pack 226290 1072161000168103 Codasig uncoated tablet, 20 1072151000168100 Codasig uncoated tablet 1072141000168102 Codasig 1072141000168102 Codasig 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +962701000168101 Formet 250 mg film-coated tablet, 10, blister pack 91106 962691000168101 Formet 250 mg film-coated tablet, 10 962681000168104 Formet 250 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 943231000168101 metformin hydrochloride 250 mg tablet, 10 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +1104321000168104 Antenex 5 mg uncoated tablet, 1000, bottle 17583 1104311000168106 Antenex 5 mg uncoated tablet, 1000 32248011000036104 Antenex 5 mg uncoated tablet 3533011000036107 Antenex 3533011000036107 Antenex 1104301000168108 diazepam 5 mg tablet, 1000 23423011000036102 diazepam 5 mg tablet 21688011000036107 diazepam +50325011000036100 Spenco Dermal Pad (10-553) 10 cm x 10 cm x 3 mm sheet, 1 pad, carton 49453011000036101 Spenco Dermal Pad (10-553) 10 cm x 10 cm x 3 mm sheet, 1 pad 48678011000036107 Spenco Dermal Pad (10-553) 10 cm x 10 cm x 3 mm sheet, 1 pad 19381000168105 Spenco Dermal Pad (10-553) 19381000168105 Spenco Dermal Pad (10-553) 51416011000036101 dressing pressure reducing 10 cm x 10 cm x 3 mm sheet, 1 pad 50936011000036103 dressing pressure reducing 10 cm x 10 cm x 3 mm sheet, 1 pad 50732011000036105 dressing pressure reducing +60305011000036105 Nurolasts Period Pain 275 mg film-coated tablet, 20, blister pack 137943 56264011000036105 Nurolasts Period Pain 275 mg film-coated tablet, 20 53855011000036102 Nurolasts Period Pain 275 mg film-coated tablet 26751000168101 Nurolasts Period Pain 26751000168101 Nurolasts Period Pain 63677011000036100 naproxen sodium 275 mg tablet, 20 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +911301000168107 Caspofungin (KP) 70 mg powder for injection, 1 vial 269938 911291000168106 Caspofungin (KP) 70 mg powder for injection, 1 vial 911281000168108 Caspofungin (KP) 70 mg powder for injection, 70 mg vial 911271000168105 Caspofungin (KP) 911271000168105 Caspofungin (KP) 46739011000036100 caspofungin 70 mg injection, 1 vial 45291011000036104 caspofungin 70 mg injection, vial 44892011000036107 caspofungin +59744011000036104 Advil 200 mg sugar coated tablet, 90, blister pack 104221 55692011000036104 Advil 200 mg sugar coated tablet, 90 53705011000036109 Advil 200 mg sugar coated tablet 53215011000036102 Advil 53215011000036102 Advil 63093011000036109 ibuprofen 200 mg tablet, 90 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +870611000168106 Atomerra 80 mg hard capsule, 14, blister pack 234815 870601000168108 Atomerra 80 mg hard capsule, 14 870571000168102 Atomerra 80 mg hard capsule 868501000168100 Atomerra 868501000168100 Atomerra 830561000168105 atomoxetine 80 mg capsule, 14 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +1035441000168102 Actonel Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Sanofi-Aventis) tablets), 14, blister pack 117667 1035431000168106 Actonel Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Sanofi-Aventis) tablets), 14 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 56751000168100 Actonel Combi 700024831000036105 Actonel Once-a-Week 881261000168107 risedronate sodium 35 mg tablet [2] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [12], 14 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +1035441000168102 Actonel Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Sanofi-Aventis) tablets), 14, blister pack 117667 1035431000168106 Actonel Combi (2 x Actonel Once-a-Week tablets, 12 x Calcium Carbonate (Sanofi-Aventis) tablets), 14 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 56751000168100 Actonel Combi 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 881261000168107 risedronate sodium 35 mg tablet [2] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [12], 14 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +79041011000036101 Bispro 5 mg film-coated tablet, 56, blister pack 130180 78796011000036103 Bispro 5 mg film-coated tablet, 56 78626011000036101 Bispro 5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 79211011000036104 bisoprolol fumarate 5 mg tablet, 56 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +921988011000036107 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 70 mL vial 53567 921546011000036108 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 70 mL vial 921077011000036108 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 70 mL vial 35921000168104 Isovue-370 35921000168104 Isovue-370 922662011000036109 iopamidol 755 mg (iodine 370 mg)/mL injection, 70 mL vial 922143011000036109 iopamidol 755 mg (iodine 370 mg)/mL injection, 70 mL vial 77457011000036105 iopamidol +754931000168102 Torvastat 40 mg film-coated tablet, 30, bottle 194116 22441000036100 Torvastat 40 mg film-coated tablet, 30 20401000036104 Torvastat 40 mg film-coated tablet 19701000036108 Torvastat 19701000036108 Torvastat 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +18361011000036104 Ciprofloxacin (Genepharm) 750 mg film-coated tablet, 14, blister pack 114045 11456011000036101 Ciprofloxacin (Genepharm) 750 mg film-coated tablet, 14 5758011000036105 Ciprofloxacin (Genepharm) 750 mg film-coated tablet 3463011000036107 Ciprofloxacin (Genepharm) 3463011000036107 Ciprofloxacin (Genepharm) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +50492011000036107 Lyofoam Flat (603092) 7.5 cm x 7.5 cm dressing, 10, carton 49407011000036100 Lyofoam Flat (603092) 7.5 cm x 7.5 cm dressing, 10 48635011000036103 Lyofoam Flat (603092) 7.5 cm x 7.5 cm dressing 22471000168100 Lyofoam Flat (603092) 22471000168100 Lyofoam Flat (603092) 51375011000036107 dressing foam moderate exudate 7.5 cm x 7.5 cm dressing, 10 50896011000036102 dressing foam moderate exudate 7.5 cm x 7.5 cm dressing 50698011000036108 dressing foam moderate exudate +933231941000036100 Medroxyprogesterone Acetate (Sandoz) 10 mg uncoated tablet, 30, blister pack 79252 933226401000036102 Medroxyprogesterone Acetate (Sandoz) 10 mg uncoated tablet, 30 933221171000036107 Medroxyprogesterone Acetate (Sandoz) 10 mg uncoated tablet 933219131000036100 Medroxyprogesterone Acetate (Sandoz) 933219131000036100 Medroxyprogesterone Acetate (Sandoz) 27904011000036101 medroxyprogesterone acetate 10 mg tablet, 30 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +879151000168105 Briviact 10 mg film-coated tablet, 14, blister pack 243794 879141000168108 Briviact 10 mg film-coated tablet, 14 879121000168102 Briviact 10 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 879131000168104 brivaracetam 10 mg tablet, 14 879111000168109 brivaracetam 10 mg tablet 876401000168109 brivaracetam +896551000168102 Imatinib (AN) 100 mg hard capsule, 96, blister pack 281365 896541000168104 Imatinib (AN) 100 mg hard capsule, 96 896471000168107 Imatinib (AN) 100 mg hard capsule 896331000168103 Imatinib (AN) 896331000168103 Imatinib (AN) 828871000168100 imatinib 100 mg capsule, 96 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +911541000168101 Cavstat 20 mg film-coated tablet, 50, blister pack 234514 911531000168105 Cavstat 20 mg film-coated tablet, 50 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911521000168107 rosuvastatin 20 mg tablet, 50 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +923702011000036108 Grandicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 147851 923309011000036102 Grandicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 922994011000036102 Grandicrit 9000 units/0.9 mL injection solution, 0.9 mL syringe 922955011000036106 Grandicrit 922955011000036106 Grandicrit 924123011000036102 epoetin lambda 9000 units/0.9 mL injection, 0.9 mL syringe 923952011000036107 epoetin lambda 9000 units/0.9 mL injection, syringe 923930011000036107 epoetin lambda +152421000036100 Invokana 300 mg film-coated tablet, 30, blister pack 200180 150691000036104 Invokana 300 mg film-coated tablet, 30 148391000036106 Invokana 300 mg film-coated tablet 147801000036107 Invokana 147801000036107 Invokana 150701000036104 canagliflozin 300 mg tablet, 30 148401000036109 canagliflozin 300 mg tablet 152601000036108 canagliflozin +35679011000036108 Gabapentin (Pharmacor) 800 mg film-coated tablet, 100, blister pack 156108 35585011000036109 Gabapentin (Pharmacor) 800 mg film-coated tablet, 100 35489011000036104 Gabapentin (Pharmacor) 800 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +35679011000036108 Gabapentin (Pharmacor) 800 mg film-coated tablet, 100, blister pack 131518 35585011000036109 Gabapentin (Pharmacor) 800 mg film-coated tablet, 100 35489011000036104 Gabapentin (Pharmacor) 800 mg film-coated tablet 4227011000036105 Gabapentin (Pharmacor) 4227011000036105 Gabapentin (Pharmacor) 27929011000036108 gabapentin 800 mg tablet, 100 23253011000036100 gabapentin 800 mg tablet 21444011000036105 gabapentin +988661000168108 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 100, blister pack 277252 988651000168106 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet, 100 988581000168103 Paracetamol Pain Relief (Blooms The Chemist) 500 mg film-coated tablet 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 988571000168101 Paracetamol Pain Relief (Blooms The Chemist) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +799921000168109 Abyraz 20 mg uncoated tablet, 30, blister pack 159505 799911000168102 Abyraz 20 mg uncoated tablet, 30 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1025071000168102 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 20, blister pack 193305 1025061000168108 Pregabalin (Blooms The Chemist) 300 mg hard capsule, 20 1025031000168100 Pregabalin (Blooms The Chemist) 300 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 903711000168107 pregabalin 300 mg capsule, 20 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +61162011000036101 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 500 mL, bottle 74631 57105011000036109 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 500 mL 54198011000036107 Paracetamol Children's 1 to 5 Years (Pharmacist) Colour Free 120 mg/5 mL oral liquid suspension, 5 mL 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 22801000168108 Paracetamol Children's 1 to 5 Years (Pharmacist) 63818011000036104 paracetamol 120 mg/5 mL oral liquid, 500 mL 22227011000036103 paracetamol 120 mg/5 mL oral liquid 21433011000036107 paracetamol +928844011000036109 Paclitaxel (GA) 300 mg/50 mL concentrated injection, 50 mL vial 129576 928206011000036102 Paclitaxel (GA) 300 mg/50 mL concentrated injection, 50 mL vial 927865011000036106 Paclitaxel (GA) 300 mg/50 mL concentrated injection, 50 mL vial 927810011000036103 Paclitaxel (GA) 927810011000036103 Paclitaxel (GA) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +44632011000036105 Levitra 10 mg film-coated tablet, 12, blister pack 90499 42085011000036108 Levitra 10 mg film-coated tablet, 12 40349011000036106 Levitra 10 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46852011000036109 vardenafil 10 mg tablet, 12 45333011000036101 vardenafil 10 mg tablet 44856011000036100 vardenafil +152511000036106 Crampeze Night Cramps Forte film-coated tablet, 30, blister pack 202870 150831000036104 Crampeze Night Cramps Forte film-coated tablet, 30 148411000036106 Crampeze Night Cramps Forte film-coated tablet 147771000036109 Crampeze Night Cramps Forte 147771000036109 Crampeze Night Cramps Forte 150851000036107 rutoside 250 mg + magnesium (as oxide heavy) 150 mg + feverfew 150 mg + copper + calcium pantothenate 20 mg + nicotinamide 20 mg + thiamine hydrochloride 20 mg + d-alpha-tocopheryl acid succinate 150 units + colecalciferol 400 units tablet, 30 148421000036104 rutoside 250 mg + magnesium (as oxide heavy) 150 mg + feverfew 150 mg + copper + calcium pantothenate 20 mg + nicotinamide 20 mg + thiamine hydrochloride 20 mg + d-alpha-tocopheryl acid succinate 150 units + colecalciferol 400 units tablet 152611000036105 rutoside + magnesium oxide heavy + feverfew + copper + calcium pantothenate + nicotinamide + thiamine + d-alpha-tocopheryl acid succinate + colecalciferol +933230571000036107 Gilenya 500 microgram hard capsule, 7, blister pack 169890 933224621000036102 Gilenya 500 microgram hard capsule, 7 933220321000036100 Gilenya 500 microgram hard capsule 933218951000036102 Gilenya 933218951000036102 Gilenya 933224631000036100 fingolimod 500 microgram capsule, 7 933220331000036103 fingolimod 500 microgram capsule 933232161000036109 fingolimod +982191000168108 Avandia 2 mg film-coated tablet, 14, blister pack 70964 982181000168105 Avandia 2 mg film-coated tablet, 14 982161000168101 Avandia 2 mg film-coated tablet 3736011000036100 Avandia 3736011000036100 Avandia 982171000168107 rosiglitazone 2 mg tablet, 14 982151000168103 rosiglitazone 2 mg tablet 21349011000036100 rosiglitazone +720771000168108 Midazolam (Apotex) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 217659 720761000168102 Midazolam (Apotex) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 720751000168104 Midazolam (Apotex) 50 mg/10 mL injection solution, 10 mL ampoule 720651000168108 Midazolam (Apotex) 720651000168108 Midazolam (Apotex) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +789571000168104 Oxycodone (HX) 40 mg modified release tablet, 28, bottle 153594 789561000168105 Oxycodone (HX) 40 mg modified release tablet, 28 789531000168102 Oxycodone (HX) 40 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 929274011000036103 oxycodone hydrochloride 40 mg modified release tablet, 28 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +990491000168103 Lyrica 25 mg hard capsule, 56, bottle 99478 83335011000036102 Lyrica 25 mg hard capsule, 56 83262011000036109 Lyrica 25 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +60189011000036101 Diarrhoea Relief (Terry White Chemists) 2 mg tablet, 10, blister pack 132051 56148011000036109 Diarrhoea Relief (Terry White Chemists) 2 mg tablet, 10 53808011000036101 Diarrhoea Relief (Terry White Chemists) 2 mg tablet 53437011000036104 Diarrhoea Relief (Terry White Chemists) 53437011000036104 Diarrhoea Relief (Terry White Chemists) 63819011000036107 loperamide hydrochloride 2 mg tablet, 10 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +18845011000036108 Atrovent 250 microgram/mL inhalation solution, 20 mL, bottle 39953 12157011000036103 Atrovent 250 microgram/mL inhalation solution, 20 mL 4503011000036101 Atrovent 250 microgram/mL inhalation solution 3536011000036101 Atrovent 3536011000036101 Atrovent 46831011000036102 ipratropium bromide 250 microgram/mL inhalation solution, 20 mL 22328011000036107 ipratropium bromide 250 microgram/mL inhalation solution 21512011000036101 ipratropium +18845011000036108 Atrovent 250 microgram/mL inhalation solution, 20 mL, bottle 17910 12157011000036103 Atrovent 250 microgram/mL inhalation solution, 20 mL 4503011000036101 Atrovent 250 microgram/mL inhalation solution 3536011000036101 Atrovent 3536011000036101 Atrovent 46831011000036102 ipratropium bromide 250 microgram/mL inhalation solution, 20 mL 22328011000036107 ipratropium bromide 250 microgram/mL inhalation solution 21512011000036101 ipratropium +825581000168109 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials 123710 825571000168106 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials 825521000168105 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 31101000168108 Engerix-B Paediatric 31101000168108 Engerix-B Paediatric 825561000168100 hepatitis B child vaccine 10 microgram/0.5 mL injection, 25 x 0.5 mL vials 825511000168103 hepatitis B child vaccine 10 microgram/0.5 mL injection, vial 825191000168101 hepatitis B vaccine +117701000036106 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 63486 117621000036108 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 113071000036108 Microlevlen ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) sugar coated tablet 51131000168102 Microlevlen ED 51131000168102 Microlevlen ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +117701000036106 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 63486 117621000036108 Microlevlen ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 3 x 28 113101000036103 Microlevlen ED (inert substance) sugar coated tablet 51131000168102 Microlevlen ED 51131000168102 Microlevlen ED 117631000036105 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +69395011000036107 Eno Lemon powder for oral liquid, 100 g, jar 40656 67195011000036108 Eno Lemon powder for oral liquid, 100 g 65532011000036101 Eno Lemon powder for oral liquid 65094011000036101 Eno 65094011000036101 Eno 71754011000036108 citric acid 432 mg/g + sodium bicarbonate 458 mg/g + sodium carbonate 100 mg/g powder for oral liquid, 100 g 70171011000036109 citric acid 432 mg/g + sodium bicarbonate 458 mg/g + sodium carbonate 100 mg/g powder for oral liquid 69783011000036106 citric acid + bicarbonate + carbonate +61273011000036104 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 200 mL, bottle 77790 57209011000036109 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 200 mL 54238011000036101 Head Cold and Allergy Elixir (Terry White Chemists) oral liquid solution, 5 mL 49531000168109 Head Cold and Allergy Elixir (Terry White Chemists) 49531000168109 Head Cold and Allergy Elixir (Terry White Chemists) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +748501000168107 Morphine MR (CH) 60 mg modified release tablet, 60, blister pack 225431 748491000168100 Morphine MR (CH) 60 mg modified release tablet, 60 748441000168108 Morphine MR (CH) 60 mg modified release tablet 747851000168107 Morphine MR (CH) 747851000168107 Morphine MR (CH) 35167011000036108 morphine sulfate pentahydrate 60 mg modified release tablet, 60 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +43878011000036101 Ramipril (Winthrop) 10 mg uncoated tablet, 30, blister pack 128852 41374011000036103 Ramipril (Winthrop) 10 mg uncoated tablet, 30 39854011000036108 Ramipril (Winthrop) 10 mg uncoated tablet 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +1091301000168102 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 10, blister pack 285250 1091291000168103 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet, 10 1091171000168105 Paracetamol 500mg and Ibuprofen 200mg (David Craig) film-coated tablet 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 1091161000168104 Paracetamol 500mg and Ibuprofen 200mg (David Craig) 813111000168103 paracetamol 500 mg + ibuprofen 200 mg tablet, 10 812791000168103 paracetamol 500 mg + ibuprofen 200 mg tablet 177241000036105 paracetamol + ibuprofen +821241000168103 Signifor LAR (1 x 60 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 225274 821231000168107 Signifor LAR (1 x 60 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 821101000168109 Signifor LAR (inert substance) diluent, 2 mL syringe 821061000168106 Signifor LAR 821061000168106 Signifor LAR 821221000168109 pasireotide 60 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 631011000168104 inert substance diluent, 2 mL syringe 21220011000036103 inert substance +821241000168103 Signifor LAR (1 x 60 mg vial, 1 x 2 mL inert diluent syringe), 1 pack, composite pack 225274 821231000168107 Signifor LAR (1 x 60 mg vial, 1 x 2 mL inert diluent syringe), 1 pack 821211000168102 Signifor LAR (pasireotide 60 mg) modified release injection, 60 mg vial 821061000168106 Signifor LAR 821061000168106 Signifor LAR 821221000168109 pasireotide 60 mg modified release injection [1 vial] (&) inert substance diluent [2 mL syringe], 1 pack 821201000168100 pasireotide 60 mg modified release injection, vial 177231000036100 pasireotide +933239111000036100 Fentanyl (Sandoz) 25 microgram/hour patch, 2, sachet 152569 933235751000036102 Fentanyl (Sandoz) 25 microgram/hour patch, 2 933234471000036103 Fentanyl (Sandoz) 25 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235761000036104 fentanyl 25 microgram/hour patch, 2 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +1065731000168108 Febridol Co uncoated tablet, 40, bottle 196355 1065721000168105 Febridol Co uncoated tablet, 40 53889011000036108 Febridol Co uncoated tablet 4251000168109 Febridol Co 4251000168109 Febridol Co 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +967041000168104 Diavance 500/5 film-coated tablet, 30, blister pack 120265 967031000168108 Diavance 500/5 film-coated tablet, 30 966981000168105 Diavance 500/5 film-coated tablet 966971000168107 Diavance 500/5 966971000168107 Diavance 500/5 967021000168105 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet, 30 23509011000036103 metformin hydrochloride 500 mg + glibenclamide 5 mg tablet 21813011000036107 metformin + glibenclamide +145981000036101 Elmore Oil liniment, 125 mL, bottle 107300 144641000036100 Elmore Oil liniment, 125 mL 143481000036105 Elmore Oil liniment 143471000036108 Elmore Oil 143471000036108 Elmore Oil 144651000036102 eucalyptus radiata 3.86% + melaleuca oil 4.25% liniment, 125 mL 143491000036107 eucalyptus radiata 3.86% + melaleuca oil 4.25% liniment 146461000036107 eucalyptus radiata + melaleuca oil +1035841000168104 Atorvastatin (RBX) 20 mg film-coated tablet, 100, bottle 173509 1035831000168108 Atorvastatin (RBX) 20 mg film-coated tablet, 100 1035751000168107 Atorvastatin (RBX) 20 mg film-coated tablet 1035741000168105 Atorvastatin (RBX) 1035741000168105 Atorvastatin (RBX) 890361000168109 atorvastatin 20 mg tablet, 100 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +19329011000036107 Nitro-Dur 10 mg/24 hours patch, 30, sachet 50561 12617011000036105 Nitro-Dur 10 mg/24 hours patch, 30 5119011000036103 Nitro-Dur 10 mg/24 hours patch 4271011000036103 Nitro-Dur 4271011000036103 Nitro-Dur 27268011000036106 glyceryl trinitrate 10 mg/24 hours patch, 30 22624011000036106 glyceryl trinitrate 10 mg/24 hours patch 21388011000036102 glyceryl trinitrate +50474011000036106 Tubifast (2438) blue 10 m large limb size bandage, 1, carton 49318011000036107 Tubifast (2438) blue 10 m large limb size bandage, 1 48528011000036100 Tubifast (2438) blue 10 m large limb size bandage 26141000168102 Tubifast (2438) 26141000168102 Tubifast (2438) 51299011000036105 bandage tubular light weight 10 m large limb size bandage, 1 50828011000036108 bandage tubular light weight 10 m large limb size bandage 50703011000036107 bandage tubular light weight +1057121000168108 Atorvastatin (ZAZ) 80 mg film-coated tablet, 100, bottle 217180 1057111000168101 Atorvastatin (ZAZ) 80 mg film-coated tablet, 100 1056961000168103 Atorvastatin (ZAZ) 80 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 890431000168107 atorvastatin 80 mg tablet, 100 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +20160011000036104 Sotalol Hydrochloride (Chemmart) 160 mg uncoated tablet, 60, bottle 73844 13383011000036101 Sotalol Hydrochloride (Chemmart) 160 mg uncoated tablet, 60 6668011000036109 Sotalol Hydrochloride (Chemmart) 160 mg uncoated tablet 4190011000036100 Sotalol Hydrochloride (Chemmart) 4190011000036100 Sotalol Hydrochloride (Chemmart) 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +60789011000036105 Unisom Sleepgel 50 mg soft capsule, 2, blister pack 55323 56748011000036104 Unisom Sleepgel 50 mg soft capsule, 2 54063011000036108 Unisom Sleepgel 50 mg soft capsule 14531000168103 Unisom Sleepgel 14531000168103 Unisom Sleepgel 63550011000036108 diphenhydramine hydrochloride 50 mg capsule, 2 62012011000036109 diphenhydramine hydrochloride 50 mg capsule 61716011000036106 diphenhydramine +17877011000036107 Onsetron 4 mg film-coated tablet, 10, blister pack 121359 11667011000036105 Onsetron 4 mg film-coated tablet, 10 5214011000036101 Onsetron 4 mg film-coated tablet 7751000168109 Onsetron 7751000168109 Onsetron 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +34711011000036101 Methadone Hydrochloride Syrup (Orion) 750 microgram/mL oral liquid solution, 20 mL, bottle 21161 34295011000036109 Methadone Hydrochloride Syrup (Orion) 750 microgram/mL oral liquid solution, 20 mL 34018011000036108 Methadone Hydrochloride Syrup (Orion) 750 microgram/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35144011000036107 methadone hydrochloride 750 microgram/mL oral liquid, 20 mL 34866011000036109 methadone hydrochloride 750 microgram/mL oral liquid 21357011000036109 methadone +924201000168107 Hyqvia (1 x IG 20 g/200 mL vial, 1 x HY 1600 units/10 mL vial), 1 pack, composite pack 235178 924191000168109 Hyqvia (1 x IG 20 g/200 mL vial, 1 x HY 1600 units/10 mL vial), 1 pack 924171000168108 HY 1600 units/10 mL injection solution, 10 mL vial 923831000168102 Hyqvia 923861000168105 HY 924181000168106 normal immunoglobulin 20 g/200 mL injection [200 mL vial] (&) vorhyaluronidase alfa 1600 units/10 mL injection [10 mL vial], 1 pack 924161000168102 vorhyaluronidase alfa 1600 units/10 mL injection, vial 923881000168101 vorhyaluronidase alfa +924201000168107 Hyqvia (1 x IG 20 g/200 mL vial, 1 x HY 1600 units/10 mL vial), 1 pack, composite pack 235178 924191000168109 Hyqvia (1 x IG 20 g/200 mL vial, 1 x HY 1600 units/10 mL vial), 1 pack 924151000168104 IG 20 g/200 mL injection solution, 200 mL vial 923831000168102 Hyqvia 923851000168108 IG 924181000168106 normal immunoglobulin 20 g/200 mL injection [200 mL vial] (&) vorhyaluronidase alfa 1600 units/10 mL injection [10 mL vial], 1 pack 107191000036104 normal immunoglobulin 20 g/200 mL injection, vial 74965011000036103 normal immunoglobulin +988341000168100 Risedronate (Apo) 75 mg film-coated tablet, 30, bottle 181977 988331000168109 Risedronate (Apo) 75 mg film-coated tablet, 30 988231000168102 Risedronate (Apo) 75 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 988321000168106 risedronate sodium 75 mg tablet, 30 800951000168108 risedronate sodium 75 mg tablet 21476011000036103 risedronate +962771000168106 Loxalate 5 mg film-coated tablet, 30, bottle 119963 962141000168103 Loxalate 5 mg film-coated tablet, 30 962111000168102 Loxalate 5 mg film-coated tablet 79334011000036103 Loxalate 79334011000036103 Loxalate 34301000036101 escitalopram 5 mg tablet, 30 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +931765011000036109 Primene 10% intravenous infusion injection, 250 mL, bottle 79618 930925011000036100 Primene 10% intravenous infusion injection, 250 mL 930123011000036104 Primene 10% intravenous infusion injection, 250 mL bottle 48121000168109 Primene 10% 48121000168109 Primene 10% 932495011000036100 alanine 2 g/250 mL + arginine 2.1 g/250 mL + aspartic acid 1.5 g/250 mL + cysteine 472.5 mg/250 mL + glutamic acid 2.5 g/250 mL + glycine 1 g/250 mL + histidine 950 mg/250 mL + isoleucine 1.675 g/250 mL + leucine 2.5 g/250 mL + lysine 2.75 g/250 mL + methionine 600 mg/250 mL + ornithine monohydrochloride 795 mg/250 mL + phenylalanine 1.05 g/250 mL + proline 750 mg/250 mL + serine 1 g/250 mL + taurine 150 mg/250 mL + threonine 925 mg/250 mL + tryptophan 500 mg/250 mL + tyrosine 112.5 mg/250 mL + valine 1.9 g/250 mL injection, 250 mL 931889011000036107 alanine 2 g/250 mL + arginine 2.1 g/250 mL + aspartic acid 1.5 g/250 mL + cysteine 472.5 mg/250 mL + glutamic acid 2.5 g/250 mL + glycine 1 g/250 mL + histidine 950 mg/250 mL + isoleucine 1.675 g/250 mL + leucine 2.5 g/250 mL + lysine 2.75 g/250 mL + methionine 600 mg/250 mL + ornithine monohydrochloride 795 mg/250 mL + phenylalanine 1.05 g/250 mL + proline 750 mg/250 mL + serine 1 g/250 mL + taurine 150 mg/250 mL + threonine 925 mg/250 mL + tryptophan 500 mg/250 mL + tyrosine 112.5 mg/250 mL + valine 1.9 g/250 mL injection, bottle 931789011000036109 alanine + arginine + aspartic acid + cysteine + glutamic acid + glycine + histidine + isoleucine + leucine + lysine + methionine + ornithine + phenylalanine + proline + serine + taurine + threonine + tryptophan + tyrosine + valine +19064011000036103 Tegretol 100 mg uncoated tablet, 200, blister pack 41846 12372011000036106 Tegretol 100 mg uncoated tablet, 200 4908011000036102 Tegretol 100 mg uncoated tablet 2231000168106 Tegretol 2231000168106 Tegretol 27871011000036103 carbamazepine 100 mg tablet, 200 23199011000036106 carbamazepine 100 mg tablet 21319011000036108 carbamazepine +1074161000168107 Ciprofloxacin (Auro) 750 mg film-coated tablet, 14, blister pack 175439 1074151000168105 Ciprofloxacin (Auro) 750 mg film-coated tablet, 14 1074141000168108 Ciprofloxacin (Auro) 750 mg film-coated tablet 717841000168100 Ciprofloxacin (Auro) 717841000168100 Ciprofloxacin (Auro) 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +920021000168101 Cilopam 40 mg film-coated tablet, 84, bottle 158867 920011000168108 Cilopam 40 mg film-coated tablet, 84 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202951000036103 citalopram 40 mg tablet, 84 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +714331000168109 Rixubis (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204768 714321000168106 Rixubis (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 714301000168102 Rixubis (nonacog gamma 2000 units) powder for injection, 2000 units vial 714001000168104 Rixubis 714001000168104 Rixubis 714311000168104 nonacog gamma 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 714291000168103 nonacog gamma 2000 units injection, vial 714081000168107 nonacog gamma +714331000168109 Rixubis (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack, vial 204768 714321000168106 Rixubis (1 x 2000 units vial, 1 x 5 mL inert diluent vial), 1 pack 714111000168102 Rixubis (inert substance) diluent, 5 mL vial 714001000168104 Rixubis 714001000168104 Rixubis 714311000168104 nonacog gamma 2000 units injection [1 vial] (&) inert substance diluent [5 mL vial], 1 pack 632381000168103 inert substance diluent, 5 mL vial 21220011000036103 inert substance +757181000168105 Palexia SR 25 mg modified release tablet, 14, blister pack 229737 757171000168107 Palexia SR 25 mg modified release tablet, 14 757091000168107 Palexia SR 25 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 757161000168101 tapentadol 25 mg modified release tablet, 14 757081000168109 tapentadol 25 mg modified release tablet 135971000036102 tapentadol +984201000168100 Lonsurf 15/6.14 film-coated tablet, 20, blister pack 273239 984191000168103 Lonsurf 15/6.14 film-coated tablet, 20 984171000168104 Lonsurf 15/6.14 film-coated tablet 984101000168109 Lonsurf 15/6.14 984101000168109 Lonsurf 15/6.14 984181000168101 trifluridine 15 mg + tipiracil 6.14 mg tablet, 20 984161000168105 trifluridine 15 mg + tipiracil 6.14 mg tablet 984151000168108 trifluridine + tipiracil +1022821000168102 Epiduo Forte gel, 60 g, pump pack 273168 1022811000168109 Epiduo Forte gel, 60 g 1022701000168104 Epiduo Forte gel 1022681000168102 Epiduo Forte 1022681000168102 Epiduo Forte 1022801000168106 adapalene 0.3% + benzoyl peroxide 2.5% gel, 60 g 1022691000168104 adapalene 0.3% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +714421000168101 Mirtazapine (Auro) 45 mg film-coated tablet, 60, blister pack 183394 714401000168105 Mirtazapine (Auro) 45 mg film-coated tablet, 60 714341000168100 Mirtazapine (Auro) 45 mg film-coated tablet 714231000168102 Mirtazapine (Auro) 714231000168102 Mirtazapine (Auro) 46151011000036109 mirtazapine 45 mg tablet, 60 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +18593011000036103 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 100 mL, bottle 10547 11323011000036102 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 100 mL 5556011000036105 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution 48231000168102 Duro-Tuss Dry Cough Liquid Regular 48231000168102 Duro-Tuss Dry Cough Liquid Regular 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +18593011000036103 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 100 mL, bottle 162435 11323011000036102 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution, 100 mL 5556011000036105 Duro-Tuss Dry Cough Liquid Regular 1 mg/mL oral liquid solution 48231000168102 Duro-Tuss Dry Cough Liquid Regular 48231000168102 Duro-Tuss Dry Cough Liquid Regular 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +939211000168108 Ondansetron (Sandoz) 4 mg film-coated tablet, 4, blister pack 132572 939201000168105 Ondansetron (Sandoz) 4 mg film-coated tablet, 4 939191000168107 Ondansetron (Sandoz) 4 mg film-coated tablet 938961000168107 Ondansetron (Sandoz) 938961000168107 Ondansetron (Sandoz) 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +1123491000168102 Quetiapine XR (ZP) 400 mg modified release tablet, 60, blister pack 226804 1123481000168100 Quetiapine XR (ZP) 400 mg modified release tablet, 60 1123411000168106 Quetiapine XR (ZP) 400 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +864311000168101 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 47389 864301000168104 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 864281000168103 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 864291000168100 glucose monohydrate 5% (50 g/L) injection, 1 L bag 864271000168101 glucose monohydrate 5% (50 g/L) injection, bag 21354011000036103 glucose +931652011000036102 Twynsta 80/5 mg multilayer tablet, 7, blister pack 166263 930812011000036108 Twynsta 80/5 mg multilayer tablet, 7 930057011000036103 Twynsta 80/5 mg multilayer tablet 12411000168103 Twynsta 80/5 mg 12411000168103 Twynsta 80/5 mg 932425011000036107 telmisartan 80 mg + amlodipine 5 mg tablet, 7 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +928962011000036101 Pioglitazone (Pharmacor) 30 mg uncoated tablet, 28, blister pack 156718 928323011000036106 Pioglitazone (Pharmacor) 30 mg uncoated tablet, 28 927950011000036104 Pioglitazone (Pharmacor) 30 mg uncoated tablet 927785011000036106 Pioglitazone (Pharmacor) 927785011000036106 Pioglitazone (Pharmacor) 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +1048501000168109 Bupretec 30 microgram/hour patch, 2, sachet 234735 1048491000168102 Bupretec 30 microgram/hour patch, 2 1048481000168100 Bupretec 30 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 772921000168109 buprenorphine 30 microgram/hour patch, 2 772901000168100 buprenorphine 30 microgram/hour patch 21232011000036101 buprenorphine +680101000168104 Irinotecan Hydrochloride Trihydrate (Kabi) 500 mg/25 mL concentrated injection, 25 mL vial 206416 680091000168109 Irinotecan Hydrochloride Trihydrate (Kabi) 500 mg/25 mL concentrated injection, 25 mL vial 680081000168106 Irinotecan Hydrochloride Trihydrate (Kabi) 500 mg/25 mL concentrated injection, 25 mL vial 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 933219321000036104 Irinotecan Hydrochloride Trihydrate (Kabi) 32765011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, 25 mL vial 32696011000036109 irinotecan hydrochloride trihydrate 500 mg/25 mL injection, vial 21503011000036106 irinotecan +1104161000168106 Alepam 30 mg uncoated tablet, 50, bottle 17573 1104151000168109 Alepam 30 mg uncoated tablet, 50 32246011000036103 Alepam 30 mg uncoated tablet 2924011000036107 Alepam 2924011000036107 Alepam 1103821000168108 oxazepam 30 mg tablet, 50 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +18109011000036108 Ceftriaxone (ICP) 1 g powder for injection, 1 vial 114501 11476011000036104 Ceftriaxone (ICP) 1 g powder for injection, 1 vial 4857011000036101 Ceftriaxone (ICP) 1 g powder for injection, vial 3437011000036106 Ceftriaxone (ICP) 3437011000036106 Ceftriaxone (ICP) 27793011000036108 ceftriaxone 1 g injection, 1 vial 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +933211151000036109 Ablavar 2.44 g/10 mL injection solution, 10 x 10 mL vials 115498 933199941000036106 Ablavar 2.44 g/10 mL injection solution, 10 x 10 mL vials 933194381000036100 Ablavar 2.44 g/10 mL injection solution, 10 mL vial 933193171000036103 Ablavar 933193171000036103 Ablavar 933199951000036109 gadofosveset trisodium 2.44 g/10 mL injection, 10 x 10 mL vials 933194391000036103 gadofosveset trisodium 2.44 g/10 mL injection, vial 933216361000036104 gadofosveset +59808011000036104 Strong Pain Relief Plus (Amcal) uncoated tablet, 20, blister pack 224164 55770011000036100 Strong Pain Relief Plus (Amcal) uncoated tablet, 20 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +59808011000036104 Strong Pain Relief Plus (Amcal) uncoated tablet, 20, blister pack 157881 55770011000036100 Strong Pain Relief Plus (Amcal) uncoated tablet, 20 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +59808011000036104 Strong Pain Relief Plus (Amcal) uncoated tablet, 20, blister pack 114715 55770011000036100 Strong Pain Relief Plus (Amcal) uncoated tablet, 20 53688011000036108 Strong Pain Relief Plus (Amcal) uncoated tablet 53571011000036102 Strong Pain Relief Plus (Amcal) 53571011000036102 Strong Pain Relief Plus (Amcal) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +43672011000036105 Zemplar 1 microgram soft capsule, 30, bottle 121761 41257011000036101 Zemplar 1 microgram soft capsule, 30 39897011000036109 Zemplar 1 microgram soft capsule 39753011000036109 Zemplar 39753011000036109 Zemplar 46196011000036105 paricalcitol 1 microgram capsule, 30 45025011000036103 paricalcitol 1 microgram capsule 44899011000036102 paricalcitol +18683011000036105 Epirubicin Hydrochloride (DBL) 50 mg powder for injection, 1 vial 120400 11639011000036109 Epirubicin Hydrochloride (DBL) 50 mg powder for injection, 1 vial 5130011000036104 Epirubicin Hydrochloride (DBL) 50 mg powder for injection, 50 mg vial 4322011000036104 Epirubicin Hydrochloride (DBL) 4322011000036104 Epirubicin Hydrochloride (DBL) 26719011000036109 epirubicin hydrochloride 50 mg injection, 1 vial 22114011000036104 epirubicin hydrochloride 50 mg injection, vial 21230011000036100 epirubicin +933214781000036101 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 90, bottle 163529 933204381000036100 Pravastatin Sodium (DRLA) 80 mg film-coated tablet, 90 933195501000036100 Pravastatin Sodium (DRLA) 80 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932409011000036101 pravastatin sodium 80 mg tablet, 90 22094011000036105 pravastatin sodium 80 mg tablet 21606011000036107 pravastatin +32570011000036108 Cifran 750 mg film-coated tablet, 14, blister pack 135662 32361011000036108 Cifran 750 mg film-coated tablet, 14 32238011000036103 Cifran 750 mg film-coated tablet 32193011000036104 Cifran 32193011000036104 Cifran 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +829991000168101 Atomoxetine (Apo) 10 mg hard capsule, 56, blister pack 234800 829981000168104 Atomoxetine (Apo) 10 mg hard capsule, 56 829891000168108 Atomoxetine (Apo) 10 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 829971000168102 atomoxetine 10 mg capsule, 56 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +1108481000168103 Midazolam (Claris) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 216027 1108471000168101 Midazolam (Claris) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 1108461000168107 Midazolam (Claris) 50 mg/10 mL injection solution, 10 mL ampoule 1108221000168101 Midazolam (Claris) 1108221000168101 Midazolam (Claris) 46761011000036107 midazolam 50 mg/10 mL injection, 5 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +160271000036109 Monteccord 10 mg film-coated tablet, 28, blister pack 184828 159031000036101 Monteccord 10 mg film-coated tablet, 28 157871000036101 Monteccord 10 mg film-coated tablet 157781000036109 Monteccord 157781000036109 Monteccord 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +86897011000036105 Accu-Chek Active diagnostic strip, 100, bottle 79458 86779011000036106 Accu-Chek Active diagnostic strip, 100 48840011000036101 Accu-Chek Active diagnostic strip 32741000168102 Accu-Chek Active 32741000168102 Accu-Chek Active 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +68906011000036109 Pinetarsol 2.3% bath oil, 50 mL, bottle 10632 66540011000036103 Pinetarsol 2.3% bath oil, 50 mL 65264011000036109 Pinetarsol 2.3% bath oil 3350011000036101 Pinetarsol 3350011000036101 Pinetarsol 71272011000036107 tar 2.3% bath oil, 50 mL 69923011000036107 tar 2.3% bath oil 21402011000036105 tar +18858011000036100 Canesten Clotrimazole 1% lotion, 20 mL, bottle 18700 12169011000036100 Canesten Clotrimazole 1% lotion, 20 mL 4741011000036109 Canesten Clotrimazole 1% lotion 4270011000036105 Canesten Clotrimazole 4270011000036105 Canesten Clotrimazole 26962011000036108 clotrimazole 1% lotion, 20 mL 22337011000036109 clotrimazole 1% lotion 21684011000036100 clotrimazole +890111000168108 Bicalutamide (CH) 50 mg film-coated tablet, 100, bottle 129114 890101000168105 Bicalutamide (CH) 50 mg film-coated tablet, 100 877441000168109 Bicalutamide (CH) 50 mg film-coated tablet 877001000168101 Bicalutamide (CH) 877001000168101 Bicalutamide (CH) 39486011000036103 bicalutamide 50 mg tablet, 100 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +44473011000036104 Cetrotide (1 x 3 mg vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 74889 41929011000036108 Cetrotide (1 x 3 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 640971000168100 Cetrotide (inert substance) diluent, 1 mL syringe 39577011000036104 Cetrotide 39577011000036104 Cetrotide 46716011000036103 cetrorelix 3 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +44473011000036104 Cetrotide (1 x 3 mg vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 74889 41929011000036108 Cetrotide (1 x 3 mg vial, 1 x 1 mL inert diluent syringe), 1 pack 40269011000036106 Cetrotide (cetrorelix 3 mg) powder for injection, 3 mg vial 39577011000036104 Cetrotide 39577011000036104 Cetrotide 46716011000036103 cetrorelix 3 mg injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 45280011000036105 cetrorelix 3 mg injection, vial 44872011000036102 cetrorelix +18477011000036107 Fosinopril Sodium/HCT 20/12.5 (Sandoz) uncoated tablet, 30, bottle 124852 11781011000036106 Fosinopril Sodium/HCT 20/12.5 (Sandoz) uncoated tablet, 30 5963011000036100 Fosinopril Sodium/HCT 20/12.5 (Sandoz) uncoated tablet 59161000168106 Fosinopril Sodium/HCT 20/12.5 (Sandoz) 59161000168106 Fosinopril Sodium/HCT 20/12.5 (Sandoz) 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +1099821000168103 Clarithrom 250 mg film-coated tablet, 2, blister pack 184265 1099811000168105 Clarithrom 250 mg film-coated tablet, 2 1099801000168107 Clarithrom 250 mg film-coated tablet 1099701000168100 Clarithrom 1099701000168100 Clarithrom 51513011000036100 clarithromycin 250 mg tablet, 2 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +19818011000036108 Suvalan 50 mg film-coated tablet, 2, blister pack 63592 13073011000036105 Suvalan 50 mg film-coated tablet, 2 6357011000036108 Suvalan 50 mg film-coated tablet 3454011000036101 Suvalan 3454011000036101 Suvalan 27534011000036103 sumatriptan 50 mg tablet, 2 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +85401000036103 Fendex ER 5 mg modified release tablet, 100, bottle 184619 84841000036104 Fendex ER 5 mg modified release tablet, 100 84081000036101 Fendex ER 5 mg modified release tablet 28901000168101 Fendex ER 28901000168101 Fendex ER 84851000036101 felodipine 5 mg modified release tablet, 100 22821011000036100 felodipine 5 mg modified release tablet 21440011000036100 felodipine +34724011000036106 Methadone Hydrochloride Syrup (Orion) 3.5 mg/mL oral liquid solution, 20 mL, bottle 21178 34308011000036106 Methadone Hydrochloride Syrup (Orion) 3.5 mg/mL oral liquid solution, 20 mL 34031011000036108 Methadone Hydrochloride Syrup (Orion) 3.5 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35157011000036104 methadone hydrochloride 3.5 mg/mL oral liquid, 20 mL 34879011000036108 methadone hydrochloride 3.5 mg/mL oral liquid 21357011000036109 methadone +44478011000036109 Cardizem CD 360 mg modified release capsule, 30, blister pack 75252 13612011000036102 Cardizem CD 360 mg modified release capsule, 30 6895011000036108 Cardizem CD 360 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 27836011000036105 diltiazem hydrochloride 360 mg modified release capsule, 30 23164011000036108 diltiazem hydrochloride 360 mg modified release capsule 21270011000036102 diltiazem +782971000168101 Palexia IR 50 mg film-coated tablet, 60, blister pack 165310 782961000168107 Palexia IR 50 mg film-coated tablet, 60 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782951000168105 tapentadol 50 mg tablet, 60 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +997021000168108 Celecoxib (Apotex) 200 mg hard capsule, 30, blister pack 203436 997011000168101 Celecoxib (Apotex) 200 mg hard capsule, 30 997001000168104 Celecoxib (Apotex) 200 mg hard capsule 996991000168106 Celecoxib (Apotex) 996991000168106 Celecoxib (Apotex) 27624011000036108 celecoxib 200 mg capsule, 30 22962011000036107 celecoxib 200 mg capsule 21566011000036101 celecoxib +60292011000036109 Strong Pain Plus (Pharmacy Choice) uncoated tablet, 48, blister pack 136681 56251011000036100 Strong Pain Plus (Pharmacy Choice) uncoated tablet, 48 53851011000036104 Strong Pain Plus (Pharmacy Choice) uncoated tablet 53193011000036100 Strong Pain Plus (Pharmacy Choice) 53193011000036100 Strong Pain Plus (Pharmacy Choice) 63803011000036107 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 48 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1031421000168105 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 28, bottle 173482 1031411000168103 Atorvastatin (Ranbaxy) 20 mg film-coated tablet, 28 1031401000168101 Atorvastatin (Ranbaxy) 20 mg film-coated tablet 1031351000168108 Atorvastatin (Ranbaxy) 1031351000168108 Atorvastatin (Ranbaxy) 890321000168104 atorvastatin 20 mg tablet, 28 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +922171000168100 Topiramate (GenRx) 100 mg film-coated tablet, 60, blister pack 124647 922161000168106 Topiramate (GenRx) 100 mg film-coated tablet, 60 922151000168109 Topiramate (GenRx) 100 mg film-coated tablet 922041000168108 Topiramate (GenRx) 922041000168108 Topiramate (GenRx) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +791421000168104 Trexject 10 mg/0.2 mL injection solution, 12 x 0.2 mL syringes 233715 791411000168106 Trexject 10 mg/0.2 mL injection solution, 12 x 0.2 mL syringes 791301000168100 Trexject 10 mg/0.2 mL injection solution, 0.2 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791401000168108 methotrexate 10 mg/0.2 mL injection, 12 x 0.2 mL syringes 791291000168101 methotrexate 10 mg/0.2 mL injection, syringe 21342011000036105 methotrexate +860061000168105 Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120, bottle 80764 860051000168108 Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120 860031000168102 Citracal 1.19 g (calcium 250 mg) film-coated tablet 3884011000036103 Citracal 3884011000036103 Citracal 860041000168106 calcium citrate 1.19 g (calcium 250 mg) tablet, 120 860021000168100 calcium citrate 1.19 g (calcium 250 mg) tablet 745551000168101 calcium +1052841000168107 Palexia SR 200 mg modified release tablet, 30, blister pack 165356 1052831000168103 Palexia SR 200 mg modified release tablet, 30 134491000036108 Palexia SR 200 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052821000168101 tapentadol 200 mg modified release tablet, 30 134501000036101 tapentadol 200 mg modified release tablet 135971000036102 tapentadol +1056981000168107 Atorvastatin (ZAZ) 80 mg film-coated tablet, 10, blister pack 217172 1056971000168109 Atorvastatin (ZAZ) 80 mg film-coated tablet, 10 1056961000168103 Atorvastatin (ZAZ) 80 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 35751000036102 atorvastatin 80 mg tablet, 10 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +933213251000036103 Lisinopril (IPCA) 2.5 mg uncoated tablet, 56, blister pack 152715 933201621000036109 Lisinopril (IPCA) 2.5 mg uncoated tablet, 56 933194771000036101 Lisinopril (IPCA) 2.5 mg uncoated tablet 933193111000036109 Lisinopril (IPCA) 933193111000036109 Lisinopril (IPCA) 927303011000036107 lisinopril 2.5 mg tablet, 56 926982011000036106 lisinopril 2.5 mg tablet 21465011000036101 lisinopril +1018081000168104 Amisulpride (Apotex) 50 mg tablet, 100, blister pack 178893 1018071000168102 Amisulpride (Apotex) 50 mg tablet, 100 1018021000168103 Amisulpride (Apotex) 50 mg tablet 1018011000168105 Amisulpride (Apotex) 1018011000168105 Amisulpride (Apotex) 924157011000036105 amisulpride 50 mg tablet, 100 923972011000036109 amisulpride 50 mg tablet 21522011000036106 amisulpride +1116661000168108 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 14, blister pack 151627 1116651000168106 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet, 14 1116621000168103 Valsartan/Amlodipine 160/5 (Novartis) film-coated tablet 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 1116611000168105 Valsartan/Amlodipine 160/5 (Novartis) 63231011000036109 amlodipine 5 mg + valsartan 160 mg tablet, 14 61898011000036106 amlodipine 5 mg + valsartan 160 mg tablet 61712011000036107 amlodipine + valsartan +931669011000036102 Twynsta 80/10 mg multilayer tablet, 56, blister pack 166266 930829011000036108 Twynsta 80/10 mg multilayer tablet, 56 930060011000036106 Twynsta 80/10 mg multilayer tablet 7561000168104 Twynsta 80/10 mg 7561000168104 Twynsta 80/10 mg 932442011000036102 telmisartan 80 mg + amlodipine 10 mg tablet, 56 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +52222011000036108 Febridol Plus uncoated tablet, 96, blister pack 154874 52107011000036101 Febridol Plus uncoated tablet, 96 51998011000036101 Febridol Plus uncoated tablet 44291000168106 Febridol Plus 44291000168106 Febridol Plus 52333011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 96 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +956031000168101 Ramipril Titration Pack (Winthrop) (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack, blister pack 128855 956021000168104 Ramipril Titration Pack (Winthrop) (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack 5242011000036103 Ramipril (Winthrop) 2.5 mg uncoated tablet 955421000168104 Ramipril Titration Pack (Winthrop) 3275011000036103 Ramipril (Winthrop) 28102011000036102 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg capsule [10], 1 pack 23410011000036103 ramipril 2.5 mg tablet 21395011000036107 ramipril +956031000168101 Ramipril Titration Pack (Winthrop) (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack, blister pack 128855 956021000168104 Ramipril Titration Pack (Winthrop) (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack 5797011000036102 Ramipril (Winthrop) 5 mg uncoated tablet 955421000168104 Ramipril Titration Pack (Winthrop) 3275011000036103 Ramipril (Winthrop) 28102011000036102 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg capsule [10], 1 pack 23411011000036105 ramipril 5 mg tablet 21395011000036107 ramipril +956031000168101 Ramipril Titration Pack (Winthrop) (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack, blister pack 128855 956021000168104 Ramipril Titration Pack (Winthrop) (7 x 2.5 mg tablets, 21 x 5 mg tablets, 10 x 10 mg capsules), 1 pack 933219401000036103 Ramipril (Winthrop) 10 mg hard capsule 955421000168104 Ramipril Titration Pack (Winthrop) 3275011000036103 Ramipril (Winthrop) 28102011000036102 ramipril 2.5 mg tablet [7] (&) ramipril 5 mg tablet [21] (&) ramipril 10 mg capsule [10], 1 pack 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +783291000168103 Palexia IR 75 mg film-coated tablet, 50, blister pack 165317 783281000168101 Palexia IR 75 mg film-coated tablet, 50 783051000168100 Palexia IR 75 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783271000168104 tapentadol 75 mg tablet, 50 783041000168102 tapentadol 75 mg tablet 135971000036102 tapentadol +800491000168108 Acyclo-V 400 mg film-coated tablet, 100, blister pack 50493 800481000168105 Acyclo-V 400 mg film-coated tablet, 100 800441000168100 Acyclo-V 400 mg film-coated tablet 3992011000036100 Acyclo-V 3992011000036100 Acyclo-V 795891000168102 aciclovir 400 mg tablet, 100 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +1014381000168107 Valsartan (Apotex) 320 mg film-coated tablet, 56, blister pack 185860 1014371000168109 Valsartan (Apotex) 320 mg film-coated tablet, 56 1014251000168105 Valsartan (Apotex) 320 mg film-coated tablet 1013671000168102 Valsartan (Apotex) 1013671000168102 Valsartan (Apotex) 63186011000036106 valsartan 320 mg tablet, 56 61880011000036108 valsartan 320 mg tablet 61720011000036101 valsartan +18177011000036108 Sustanon 250 injection solution, 1 mL ampoule 14521 12041011000036102 Sustanon 250 injection solution, 1 mL ampoule 4510011000036107 Sustanon 250 injection solution, ampoule 4109011000036108 Sustanon 250 4109011000036108 Sustanon 250 26873011000036101 testosterone propionate 30 mg/mL + testosterone phenylpropionate 60 mg/mL + testosterone isocaproate 60 mg/mL + testosterone decanoate 100 mg/mL injection, 1 mL ampoule 22252011000036101 testosterone propionate 30 mg/mL + testosterone phenylpropionate 60 mg/mL + testosterone isocaproate 60 mg/mL + testosterone decanoate 100 mg/mL injection, ampoule 21695011000036102 testosterone propionate + testosterone phenylpropionate + testosterone isocaproate + testosterone decanoate +705421000168103 Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g, jar 14065 705411000168105 Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g 705391000168105 Salicylic Acid 2% in Aqueous Cream (David Craig) cream 61581000168103 Salicylic Acid 2% in Aqueous Cream (David Craig) 61581000168103 Salicylic Acid 2% in Aqueous Cream (David Craig) 705401000168107 salicylic acid 2% + aqueous cream, 100 g 705381000168107 salicylic acid 2% + aqueous cream 69824011000036101 salicylic acid + aqueous cream +924361000168104 Cefotaxime (Hexal) 500 mg powder for injection, 10 vials 94243 924351000168101 Cefotaxime (Hexal) 500 mg powder for injection, 10 vials 924321000168109 Cefotaxime (Hexal) 500 mg powder for injection, 500 mg vial 924311000168102 Cefotaxime (Hexal) 924311000168102 Cefotaxime (Hexal) 46755011000036103 cefotaxime 500 mg injection, 10 vials 45301011000036109 cefotaxime 500 mg injection, vial 21327011000036105 cefotaxime +855311000168107 Algerika 200 mg hard capsule, 56, blister pack 229598 855301000168109 Algerika 200 mg hard capsule, 56 855211000168104 Algerika 200 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855291000168108 pregabalin 200 mg capsule, 56 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +152191000036109 Candesartan Cilexetil (Auro) 8 mg uncoated tablet, 30, blister pack 195373 150311000036101 Candesartan Cilexetil (Auro) 8 mg uncoated tablet, 30 148691000036104 Candesartan Cilexetil (Auro) 8 mg uncoated tablet 147891000036104 Candesartan Cilexetil (Auro) 147891000036104 Candesartan Cilexetil (Auro) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +843061000168107 Fluoxetine (Blooms The Chemist) 20 mg hard capsule, 28, blister pack 73882 843051000168105 Fluoxetine (Blooms The Chemist) 20 mg hard capsule, 28 843041000168108 Fluoxetine (Blooms The Chemist) 20 mg hard capsule 843001000168106 Fluoxetine (Blooms The Chemist) 843001000168106 Fluoxetine (Blooms The Chemist) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +731371000168102 Zoledronic Acid (Apo) 4 mg/5 mL concentrated injection, 5 mL vial 190337 731361000168108 Zoledronic Acid (Apo) 4 mg/5 mL concentrated injection, 5 mL vial 731351000168106 Zoledronic Acid (Apo) 4 mg/5 mL concentrated injection, 5 mL vial 731221000168109 Zoledronic Acid (Apo) 731221000168109 Zoledronic Acid (Apo) 28024011000036106 zoledronic acid 4 mg/5 mL injection, 5 mL vial 23347011000036100 zoledronic acid 4 mg/5 mL injection, vial 21790011000036102 zoledronic acid +954661000168107 Captopril (WL) 12.5 mg uncoated tablet, 90, bottle 56651 954651000168105 Captopril (WL) 12.5 mg uncoated tablet, 90 954641000168108 Captopril (WL) 12.5 mg uncoated tablet 954581000168102 Captopril (WL) 954581000168102 Captopril (WL) 27835011000036103 captopril 12.5 mg tablet, 90 23163011000036106 captopril 12.5 mg tablet 21533011000036102 captopril +21197011000036108 Estraderm 50 microgram/24 hours patch, 8, sachet 9971 14335011000036108 Estraderm 50 microgram/24 hours patch, 8 7619011000036101 Estraderm 50 microgram/24 hours patch 4174011000036102 Estraderm 4174011000036102 Estraderm 28326011000036104 estradiol 50 microgram/24 hours patch, 8 23638011000036107 estradiol 50 microgram/24 hours patch 21238011000036103 estradiol +45051000036103 Olanzapine (Stada) 2.5 mg tablet, 28, blister pack 152170 42831000036105 Olanzapine (Stada) 2.5 mg tablet, 28 40941000036106 Olanzapine (Stada) 2.5 mg tablet 20741000168100 Olanzapine (Stada) 20741000168100 Olanzapine (Stada) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +788931000168101 Diabex XR 750 mg modified release tablet, 10, blister pack 142230 788921000168104 Diabex XR 750 mg modified release tablet, 10 788901000168108 Diabex XR 750 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 788911000168106 metformin hydrochloride 750 mg modified release tablet, 10 788891000168109 metformin hydrochloride 750 mg modified release tablet 21614011000036102 metformin +902721000168106 Brillior 50 mg hard capsule, 20, blister pack 224339 902711000168104 Brillior 50 mg hard capsule, 20 902671000168103 Brillior 50 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 902701000168102 pregabalin 50 mg capsule, 20 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +19445011000036101 Isoptin SR 180 mg modified release tablet, 30, bottle 54031 12725011000036101 Isoptin SR 180 mg modified release tablet, 30 5206011000036106 Isoptin SR 180 mg modified release tablet 31671000168106 Isoptin SR 31671000168106 Isoptin SR 27315011000036109 verapamil hydrochloride 180 mg modified release tablet, 30 22668011000036106 verapamil hydrochloride 180 mg modified release tablet 21287011000036109 verapamil +50556011000036109 Aclasta 5 mg/100 mL intravenous infusion injection, 100 mL vial 134664 49590011000036106 Aclasta 5 mg/100 mL intravenous infusion injection, 100 mL vial 48785011000036102 Aclasta 5 mg/100 mL intravenous infusion injection, 100 mL vial 48342011000036104 Aclasta 48342011000036104 Aclasta 51495011000036109 zoledronic acid 5 mg/100 mL injection, 100 mL vial 50987011000036105 zoledronic acid 5 mg/100 mL injection, vial 21790011000036102 zoledronic acid +1031731000168103 Aten 100 mg film-coated tablet, 10, blister pack 197718 1031721000168101 Aten 100 mg film-coated tablet, 10 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031711000168108 atenolol 100 mg tablet, 10 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +791101000168103 Quetiapine XR (AS) 300 mg modified release tablet, 100, blister pack 226822 791091000168108 Quetiapine XR (AS) 300 mg modified release tablet, 100 791011000168104 Quetiapine XR (AS) 300 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51536011000036100 quetiapine 300 mg modified release tablet, 100 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +18811011000036101 Deralin 10 mg film-coated tablet, 100, bottle 17612 12132011000036101 Deralin 10 mg film-coated tablet, 100 5700011000036100 Deralin 10 mg film-coated tablet 3863011000036103 Deralin 3863011000036103 Deralin 26939011000036109 propranolol hydrochloride 10 mg tablet, 100 22315011000036107 propranolol hydrochloride 10 mg tablet 21392011000036104 propranolol +933215261000036101 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 100, bottle 163525 933204231000036106 Pravastatin Sodium (DRLA) 10 mg film-coated tablet, 100 933195451000036103 Pravastatin Sodium (DRLA) 10 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932414011000036100 pravastatin sodium 10 mg tablet, 100 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +152101000036101 Flutiform 125 microgram/5 microgram pressurised inhalation, 120 actuations, metered dose aerosol can 177873 150211000036107 Flutiform 125 microgram/5 microgram pressurised inhalation, 120 actuations 148111000036103 Flutiform 125 microgram/5 microgram pressurised inhalation, actuation 43751000168109 Flutiform 125 microgram/5 microgram 43751000168109 Flutiform 125 microgram/5 microgram 150221000036100 fluticasone propionate 125 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 5 microgram/actuation pressurised inhalation, 120 actuations 148121000036105 fluticasone propionate 125 microgram/actuation + formoterol (eformoterol) fumarate dihydrate 5 microgram/actuation pressurised inhalation, actuation 861531000168103 fluticasone propionate + formoterol (eformoterol) +731411000168101 Tirostat 12.5 mg/50 mL concentrated injection, 50 mL vial 209215 731401000168104 Tirostat 12.5 mg/50 mL concentrated injection, 50 mL vial 731391000168101 Tirostat 12.5 mg/50 mL concentrated injection, 50 mL vial 731381000168104 Tirostat 731381000168104 Tirostat 27553011000036101 tirofiban 12.5 mg/50 mL injection, 50 mL vial 22892011000036102 tirofiban 12.5 mg/50 mL injection, vial 21609011000036103 tirofiban +920806011000036105 Famotidine (Sandoz) 40 mg film-coated tablet, 30, blister pack 94332 920485011000036106 Famotidine (Sandoz) 40 mg film-coated tablet, 30 920216011000036101 Famotidine (Sandoz) 40 mg film-coated tablet 920079011000036109 Famotidine (Sandoz) 920079011000036109 Famotidine (Sandoz) 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +1052601000168109 Palexia SR 150 mg modified release tablet, 10, blister pack 165347 1052591000168102 Palexia SR 150 mg modified release tablet, 10 134471000036109 Palexia SR 150 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1052581000168100 tapentadol 150 mg modified release tablet, 10 134481000036106 tapentadol 150 mg modified release tablet 135971000036102 tapentadol +791901000168101 Trexject 25 mg/0.5 mL injection solution, 6 x 0.5 mL syringes 233721 791891000168100 Trexject 25 mg/0.5 mL injection solution, 6 x 0.5 mL syringes 791811000168109 Trexject 25 mg/0.5 mL injection solution, 0.5 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791881000168103 methotrexate 25 mg/0.5 mL injection, 6 x 0.5 mL syringes 791801000168106 methotrexate 25 mg/0.5 mL injection, syringe 21342011000036105 methotrexate +61560011000036105 Dry Cough Mixture (Terry White Chemists) oral liquid solution, 100 mL, bottle 94137 57482011000036104 Dry Cough Mixture (Terry White Chemists) oral liquid solution, 100 mL 54320011000036107 Dry Cough Mixture (Terry White Chemists) oral liquid solution, 5 mL 57711000168104 Dry Cough Mixture (Terry White Chemists) 57711000168104 Dry Cough Mixture (Terry White Chemists) 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +1051151000168106 Fentanyl (GH) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 201872 1051141000168109 Fentanyl (GH) 100 microgram/2 mL injection solution, 10 x 2 mL ampoules 701631000168100 Fentanyl (GH) 100 microgram/2 mL injection solution, 2 mL ampoule 701591000168100 Fentanyl (GH) 701591000168100 Fentanyl (GH) 35181011000036102 fentanyl 100 microgram/2 mL injection, 10 x 2 mL ampoules 34892011000036108 fentanyl 100 microgram/2 mL injection, ampoule 21258011000036102 fentanyl +68945011000036109 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch, 7, sachet 129750 66735011000036105 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch, 7 65482011000036104 Nicotine Phase-3 (Chemists' Own) 7 mg/24 hours patch 22501000168106 Nicotine Phase-3 (Chemists' Own) 22501000168106 Nicotine Phase-3 (Chemists' Own) 27924011000036107 nicotine 7 mg/24 hours patch, 7 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +44679011000036103 Copegus 200 mg film-coated tablet, 168 tablets, bottle 91841 42128011000036103 Copegus 200 mg film-coated tablet, 168 tablets 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 3042011000036103 Copegus 3042011000036103 Copegus 46890011000036100 ribavirin 200 mg tablet, 168 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +680261000168109 Clindamycin (Chemmart) 150 mg hard capsule, 100, blister pack 214365 680251000168107 Clindamycin (Chemmart) 150 mg hard capsule, 100 678911000168107 Clindamycin (Chemmart) 150 mg hard capsule 678901000168109 Clindamycin (Chemmart) 678901000168109 Clindamycin (Chemmart) 922536011000036105 clindamycin 150 mg capsule, 100 32703011000036107 clindamycin 150 mg capsule 21255011000036108 clindamycin +973371000168107 Pregabalin (Teva) 25 mg hard capsule, 56, blister pack 229552 973361000168101 Pregabalin (Teva) 25 mg hard capsule, 56 973311000168104 Pregabalin (Teva) 25 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +979861000168107 Losec 40 mg enteric tablet, 30, blister pack 63418 979851000168105 Losec 40 mg enteric tablet, 30 979821000168102 Losec 40 mg enteric tablet 3618011000036100 Losec 3618011000036100 Losec 798441000168103 omeprazole 40 mg enteric tablet, 30 798391000168102 omeprazole 40 mg enteric tablet 21676011000036101 omeprazole +68688011000036105 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 96, blister pack 152937 66725011000036108 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 96 65236011000036108 Nicotine (Chemists' Own) Fruit 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +68688011000036105 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 96, blister pack 129747 66725011000036108 Nicotine (Chemists' Own) Fruit 2 mg chewing gum, 96 65236011000036108 Nicotine (Chemists' Own) Fruit 2 mg chewing gum 65091011000036104 Nicotine (Chemists' Own) 65091011000036104 Nicotine (Chemists' Own) 63747011000036108 nicotine 2 mg gum, 96 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +868921000168104 Simipex XR 2.25 mg modified release tablet, 10, blister pack 225626 868911000168106 Simipex XR 2.25 mg modified release tablet, 10 868901000168108 Simipex XR 2.25 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 756041000168101 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet, 10 933220621000036106 pramipexole dihydrochloride monohydrate 2.25 mg modified release tablet 37716011000036100 pramipexole +933110011000036104 Lamictal 100 mg tablet, 60, bottle 51740 932914011000036102 Lamictal 100 mg tablet, 60 932764011000036106 Lamictal 100 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46990011000036105 lamotrigine 100 mg tablet, 60 23610011000036100 lamotrigine 100 mg tablet 21643011000036106 lamotrigine +1105851000168104 Zolpidem (AN) 10 mg film-coated tablet, 7, blister pack 131917 1105841000168101 Zolpidem (AN) 10 mg film-coated tablet, 7 698831000168103 Zolpidem (AN) 10 mg film-coated tablet 698821000168101 Zolpidem (AN) 698821000168101 Zolpidem (AN) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +656471000168108 Mirtazapine (AN) 30 mg film-coated tablet, 30, blister pack 183399 656461000168102 Mirtazapine (AN) 30 mg film-coated tablet, 30 656451000168104 Mirtazapine (AN) 30 mg film-coated tablet 656371000168101 Mirtazapine (AN) 656371000168101 Mirtazapine (AN) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +864631000168102 Amitriptyline (AN) 50 mg tablet, 50, bottle 232121 864571000168103 Amitriptyline (AN) 50 mg tablet, 50 864541000168105 Amitriptyline (AN) 50 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 27544011000036102 amitriptyline hydrochloride 50 mg tablet, 50 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +933213091000036100 Pravastatin Sodium (HX) 20 mg tablet, 30, blister pack 152453 933201521000036108 Pravastatin Sodium (HX) 20 mg tablet, 30 933194671000036106 Pravastatin Sodium (HX) 20 mg tablet 933193361000036108 Pravastatin Sodium (HX) 933193361000036108 Pravastatin Sodium (HX) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1033831000168109 Strong Pain Relief Extra (Amcal) uncoated tablet, 24, blister pack 208319 1033821000168106 Strong Pain Relief Extra (Amcal) uncoated tablet, 24 1033571000168109 Strong Pain Relief Extra (Amcal) uncoated tablet 1033541000168102 Strong Pain Relief Extra (Amcal) 1033541000168102 Strong Pain Relief Extra (Amcal) 760591000168105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 24 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +18040011000036100 Aclin 100 mg uncoated tablet, 50, bottle 17587 12121011000036105 Aclin 100 mg uncoated tablet, 50 4607011000036102 Aclin 100 mg uncoated tablet 3035011000036105 Aclin 3035011000036105 Aclin 26931011000036105 sulindac 100 mg tablet, 50 22308011000036104 sulindac 100 mg tablet 21275011000036106 sulindac +868241000168100 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 33515 868231000168109 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 868211000168104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 868221000168106 glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag 868201000168102 glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +684601000168103 Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses, ampoule 55364 684591000168105 Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses 684571000168109 Ocufen 0.03% eye drops solution, 0.4 mL unit dose 4028011000036100 Ocufen 4028011000036100 Ocufen 684581000168107 flurbiprofen sodium dihydrate 0.03% eye drops, 5 x 0.4 mL unit doses 684561000168103 flurbiprofen sodium dihydrate 0.03% eye drops, unit dose 21717011000036100 flurbiprofen +1069841000168107 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 40, blister pack 211368 1069831000168103 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet, 40 1069671000168104 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) uncoated tablet 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 1069661000168105 Paracetamol 500 mg and Codeine Phosphate 8 mg (Medreich) 652931000168102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +69523011000036104 Dermeze ointment, 150 g, jar 54259 67323011000036105 Dermeze ointment, 150 g 65611011000036105 Dermeze ointment 65171011000036103 Dermeze 65171011000036103 Dermeze 71868011000036109 liquid paraffin 50% + white soft paraffin 50% ointment, 150 g 70224011000036105 liquid paraffin 50% + white soft paraffin 50% ointment 69750011000036107 liquid paraffin + white soft paraffin +962611000168105 Zinnat 250 mg/5 mL powder for oral liquid, 50 mL, bottle 81301 962601000168107 Zinnat 250 mg/5 mL powder for oral liquid, 50 mL 962581000168103 Zinnat 250 mg/5 mL powder for oral liquid, 5 mL 4288011000036102 Zinnat 4288011000036102 Zinnat 962591000168100 cefuroxime 250 mg/5 mL powder for oral liquid, 50 mL 962571000168101 cefuroxime 250 mg/5 mL powder for oral liquid 21474011000036106 cefuroxime +786831000168109 Oxycodone MR (Apotex) 20 mg modified release tablet, 60, blister pack 214493 786821000168106 Oxycodone MR (Apotex) 20 mg modified release tablet, 60 786771000168104 Oxycodone MR (Apotex) 20 mg modified release tablet 778521000168102 Oxycodone MR (Apotex) 778521000168102 Oxycodone MR (Apotex) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +37697011000036109 Sensipar 60 mg film-coated tablet, 28, blister pack 98404 36963011000036100 Sensipar 60 mg film-coated tablet, 28 36284011000036104 Sensipar 60 mg film-coated tablet 35979011000036107 Sensipar 35979011000036107 Sensipar 38844011000036107 cinacalcet 60 mg tablet, 28 38044011000036108 cinacalcet 60 mg tablet 37755011000036100 cinacalcet +1065571000168101 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 10, blister pack 190420 1065561000168107 Analgesic Calmative (Discount Drug Stores) uncoated tablet, 10 1065551000168105 Analgesic Calmative (Discount Drug Stores) uncoated tablet 1065541000168108 Analgesic Calmative (Discount Drug Stores) 1065541000168108 Analgesic Calmative (Discount Drug Stores) 1063731000168107 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 10 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +20897011000036109 Celapram 10 mg film-coated tablet, 28, blister pack 93542 14057011000036101 Celapram 10 mg film-coated tablet, 28 7335011000036103 Celapram 10 mg film-coated tablet 3143011000036102 Celapram 3143011000036102 Celapram 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +920720011000036101 Pantofast 40 mg enteric tablet, 10, blister pack 155106 920407011000036102 Pantofast 40 mg enteric tablet, 10 920167011000036104 Pantofast 40 mg enteric tablet 920103011000036107 Pantofast 920103011000036107 Pantofast 920856011000036101 pantoprazole 40 mg enteric tablet, 10 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +966881000168104 Diavance 500/2.5 film-coated tablet, 30, blister pack 120264 966871000168102 Diavance 500/2.5 film-coated tablet, 30 966821000168103 Diavance 500/2.5 film-coated tablet 966811000168105 Diavance 500/2.5 966811000168105 Diavance 500/2.5 966861000168108 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet, 30 23508011000036106 metformin hydrochloride 500 mg + glibenclamide 2.5 mg tablet 21813011000036107 metformin + glibenclamide +971201000168108 Glivanib 100 mg hard capsule, 60, blister pack 285899 971191000168105 Glivanib 100 mg hard capsule, 60 971141000168102 Glivanib 100 mg hard capsule 971131000168106 Glivanib 971131000168106 Glivanib 830821000168102 imatinib 100 mg capsule, 60 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +920688011000036102 Fluconazole (Sandoz) 50 mg hard capsule, 28, blister pack 104285 920349011000036109 Fluconazole (Sandoz) 50 mg hard capsule, 28 920120011000036108 Fluconazole (Sandoz) 50 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 28190011000036104 fluconazole 50 mg capsule, 28 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +856041000168104 Algerika 50 mg hard capsule, 14, blister pack 229557 856031000168108 Algerika 50 mg hard capsule, 14 856011000168103 Algerika 50 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 856021000168105 pregabalin 50 mg capsule, 14 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +981871000168109 Levetiracetam (Apotex) 250 mg film-coated tablet, 60, blister pack 156323 981861000168103 Levetiracetam (Apotex) 250 mg film-coated tablet, 60 981851000168100 Levetiracetam (Apotex) 250 mg film-coated tablet 981711000168109 Levetiracetam (Apotex) 981711000168109 Levetiracetam (Apotex) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +1091621000168103 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 30, bottle 283615 819471000168104 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet, 30 819441000168106 Perindopril Arginine (Blooms The Chemist) 10 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 26558011000036105 perindopril arginine 10 mg tablet, 30 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +753161000168105 Oxycodone (GX) 10 mg hard capsule, 20, bottle 227863 753091000168104 Oxycodone (GX) 10 mg hard capsule, 20 753081000168102 Oxycodone (GX) 10 mg hard capsule 753001000168105 Oxycodone (GX) 753001000168105 Oxycodone (GX) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +887551000168100 Zinbryta 150 mg/mL injection solution, 3 x 1 mL injection devices 243873 887541000168102 Zinbryta 150 mg/mL injection solution, 3 x 1 mL injection devices 887481000168108 Zinbryta 150 mg/mL injection solution, injection device 887331000168101 Zinbryta 887331000168101 Zinbryta 887531000168106 daclizumab 150 mg/mL injection, 3 x 1 mL injection devices 887471000168105 daclizumab 150 mg/mL injection, injection device 887341000168105 daclizumab +929664011000036107 Ondansetron (Alphapharm) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 155842 929500011000036107 Ondansetron (Alphapharm) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 929399011000036101 Ondansetron (Alphapharm) 4 mg/2 mL injection solution, 2 mL ampoule 929370011000036100 Ondansetron (Alphapharm) 929370011000036100 Ondansetron (Alphapharm) 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +20597011000036108 Salofalk 4 g/60 mL enema, 7 x 60 mL, bottle 80652 13779011000036105 Salofalk 4 g/60 mL enema, 7 x 60 mL 7065011000036106 Salofalk 4 g/60 mL enema, 60 mL 12771000168100 Salofalk 12771000168100 Salofalk 27935011000036108 mesalazine 4 g/60 mL enema, 7 x 60 mL 23259011000036102 mesalazine 4 g/60 mL enema 21351011000036101 mesalazine +20884011000036102 Adefin 10 mg film-coated tablet, 60, blister pack 92999 14046011000036101 Adefin 10 mg film-coated tablet, 60 7324011000036104 Adefin 10 mg film-coated tablet 61521000168102 Adefin 61521000168102 Adefin 28104011000036106 nifedipine 10 mg tablet, 60 23414011000036108 nifedipine 10 mg tablet 21241011000036108 nifedipine +73335011000036101 Ondansetron (Apo) 4 mg film-coated tablet, 10, blister pack 152187 73129011000036105 Ondansetron (Apo) 4 mg film-coated tablet, 10 72944011000036102 Ondansetron (Apo) 4 mg film-coated tablet 33231000168105 Ondansetron (Apo) 33231000168105 Ondansetron (Apo) 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +928861011000036102 Rancet 10 mg film-coated tablet, 30, blister pack 138827 928223011000036101 Rancet 10 mg film-coated tablet, 30 927881011000036107 Rancet 10 mg film-coated tablet 927773011000036100 Rancet 927773011000036100 Rancet 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +928953011000036104 Finaccord 5 mg film-coated tablet, 30, blister pack 155237 928314011000036100 Finaccord 5 mg film-coated tablet, 30 927943011000036109 Finaccord 5 mg film-coated tablet 927824011000036100 Finaccord 927824011000036100 Finaccord 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +45201000036108 GA1 Anamix Infant powder for oral liquid, 400 g, can 42771000036101 GA1 Anamix Infant powder for oral liquid, 400 g 41541000036106 GA1 Anamix Infant powder for oral liquid 32321000168109 GA1 Anamix Infant 32321000168109 GA1 Anamix Infant 51252011000036108 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 400 g 50955011000036109 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +855401000168101 Algerika 225 mg hard capsule, 14, blister pack 229601 855391000168103 Algerika 225 mg hard capsule, 14 855371000168104 Algerika 225 mg hard capsule 854681000168106 Algerika 854681000168106 Algerika 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +877461000168108 Bicalutamide (CH) 50 mg film-coated tablet, 28, blister pack 129101 877451000168106 Bicalutamide (CH) 50 mg film-coated tablet, 28 877441000168109 Bicalutamide (CH) 50 mg film-coated tablet 877001000168101 Bicalutamide (CH) 877001000168101 Bicalutamide (CH) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +20803011000036103 Liprace 20 mg uncoated tablet, 30, blister pack 91380 13969011000036107 Liprace 20 mg uncoated tablet, 30 7255011000036108 Liprace 20 mg uncoated tablet 2975011000036105 Liprace 2975011000036105 Liprace 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1018761000168106 Azithromycin (Apotex) 500 mg film-coated tablet, 2, blister pack 195915 1018751000168109 Azithromycin (Apotex) 500 mg film-coated tablet, 2 1018721000168101 Azithromycin (Apotex) 500 mg film-coated tablet 1018681000168107 Azithromycin (Apotex) 1018681000168107 Azithromycin (Apotex) 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +32591011000036108 Fybogel regular 3.5 g powder for oral liquid, 30 sachets 106707 32386011000036101 Fybogel regular 3.5 g powder for oral liquid, 30 sachets 5784011000036109 Fybogel regular 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 32785011000036107 dry psyllium husk 3.5 g powder for oral liquid, 30 sachets 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +32591011000036108 Fybogel regular 3.5 g powder for oral liquid, 30 sachets 52119 32386011000036101 Fybogel regular 3.5 g powder for oral liquid, 30 sachets 5784011000036109 Fybogel regular 3.5 g powder for oral liquid, 3.5 g sachet 3259011000036104 Fybogel 3259011000036104 Fybogel 32785011000036107 dry psyllium husk 3.5 g powder for oral liquid, 30 sachets 22626011000036103 dry psyllium husk 3.5 g powder for oral liquid, sachet 21835011000036100 dry psyllium husk +921971011000036106 Pethidine Hydrochloride (AstraZeneca) 100 mg/2 mL injection solution, 50 x 2 mL ampoules 48345 921529011000036102 Pethidine Hydrochloride (AstraZeneca) 100 mg/2 mL injection solution, 50 x 2 mL ampoules 921063011000036106 Pethidine Hydrochloride (AstraZeneca) 100 mg/2 mL injection solution, 2 mL ampoule 920940011000036107 Pethidine Hydrochloride (AstraZeneca) 920940011000036107 Pethidine Hydrochloride (AstraZeneca) 35098011000036100 pethidine hydrochloride 100 mg/2 mL injection, 50 x 2 mL ampoules 34848011000036104 pethidine hydrochloride 100 mg/2 mL injection, ampoule 34839011000036106 pethidine +1023061000168109 Ibuprofen (A) 200 mg film-coated tablet, 10, blister pack 161314 1023051000168107 Ibuprofen (A) 200 mg film-coated tablet, 10 1022981000168109 Ibuprofen (A) 200 mg film-coated tablet 1022971000168106 Ibuprofen (A) 1022971000168106 Ibuprofen (A) 63918011000036105 ibuprofen 200 mg tablet, 10 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +859741000168105 Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60, bottle 59914 859731000168101 Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60 859711000168106 Cal Sup 1.25 g (calcium 500 mg) chewable tablet 2913011000036101 Cal Sup 2913011000036101 Cal Sup 859721000168104 calcium carbonate 1.25 g (calcium 500 mg) chewable tablet, 60 859701000168108 calcium carbonate 1.25 g (calcium 500 mg) chewable tablet 745551000168101 calcium +50286011000036106 Neocate powder for oral liquid, 400 g, can 49466011000036104 Neocate powder for oral liquid, 400 g 48557011000036102 Neocate powder for oral liquid 49351000168105 Neocate 49351000168105 Neocate 51426011000036109 amino acid synthetic formula powder for oral liquid, 400 g 50943011000036105 amino acid synthetic formula powder for oral liquid 50729011000036102 amino acid synthetic formula +20413011000036107 Keppra 250 mg film-coated tablet, 60, blister pack 77561 13620011000036108 Keppra 250 mg film-coated tablet, 60 6903011000036104 Keppra 250 mg film-coated tablet 3677011000036106 Keppra 3677011000036106 Keppra 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +20413011000036107 Keppra 250 mg film-coated tablet, 60, blister pack 120508 13620011000036108 Keppra 250 mg film-coated tablet, 60 6903011000036104 Keppra 250 mg film-coated tablet 3677011000036106 Keppra 3677011000036106 Keppra 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +1037531000168102 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 100 mL, bottle 57233 1037521000168100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 100 mL 1037481000168100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 5 mL 26351000168102 Benadryl Cough Medicine for Dry Coughs 26351000168102 Benadryl Cough Medicine for Dry Coughs 63798011000036102 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid, 100 mL 62081011000036101 dextromethorphan hydrobromide monohydrate 10 mg/5 mL + diphenhydramine hydrochloride 12.5 mg/5 mL oral liquid 61742011000036100 dextromethorphan + diphenhydramine +20229011000036104 MS Mono 60 mg modified release capsule, 10, blister pack 74154 13442011000036107 MS Mono 60 mg modified release capsule, 10 6724011000036102 MS Mono 60 mg modified release capsule 3006011000036106 MS Mono 3006011000036106 MS Mono 27749011000036102 morphine sulfate pentahydrate 60 mg modified release capsule, 10 23080011000036107 morphine sulfate pentahydrate 60 mg modified release capsule 21252011000036100 morphine +924521000168100 Ramipril (Hexal) 1.25 mg uncoated tablet, 30, bottle 122017 924511000168107 Ramipril (Hexal) 1.25 mg uncoated tablet, 30 924501000168109 Ramipril (Hexal) 1.25 mg uncoated tablet 924461000168109 Ramipril (Hexal) 924461000168109 Ramipril (Hexal) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +1100141000168102 Axycillin 500 mg hard capsule, 20, blister pack 198130 1100131000168106 Axycillin 500 mg hard capsule, 20 1100121000168108 Axycillin 500 mg hard capsule 1100111000168101 Axycillin 1100111000168101 Axycillin 28237011000036107 amoxicillin 500 mg capsule, 20 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +795511000168109 Camino Pro Bettermilk powder for oral liquid, 30 x 49 g sachets 795501000168106 Camino Pro Bettermilk powder for oral liquid, 30 x 49 g sachets 545501000168104 Camino Pro Bettermilk powder for oral liquid, 49 g sachet 123821000036109 Camino Pro Bettermilk 123821000036109 Camino Pro Bettermilk 795491000168104 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 30 x 49 g sachets 545261000168100 glycomacropeptide and essential amino acids with vitamins and minerals powder for oral liquid, 49 g sachet 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +1031101000168106 Frusemide (AS) 40 mg uncoated tablet, 100, bottle 176042 1031091000168101 Frusemide (AS) 40 mg uncoated tablet, 100 1031081000168104 Frusemide (AS) 40 mg uncoated tablet 1030481000168104 Frusemide (AS) 1030481000168104 Frusemide (AS) 27776011000036105 furosemide (frusemide) 40 mg tablet, 100 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +847411000168106 Creon 25 000 enteric capsule, 100, bottle 158452 847401000168108 Creon 25 000 enteric capsule, 100 847381000168108 Creon 25 000 enteric capsule 847361000168104 Creon 25 000 847361000168104 Creon 25 000 847391000168106 lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule, 100 847371000168105 lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule 847131000168105 lipase + amylase + protease +32604011000036104 Genotropin Miniquick (7 x 1 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76614 32399011000036109 Genotropin Miniquick (7 x 1 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 6860011000036102 Genotropin Miniquick (somatropin 1 mg) powder for injection, syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32797011000036101 somatropin 1 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 23143011000036100 somatropin 1 mg injection, syringe 21295011000036100 somatropin +32604011000036104 Genotropin Miniquick (7 x 1 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 76614 32399011000036109 Genotropin Miniquick (7 x 1 mg syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 18151000168107 Genotropin Miniquick 18151000168107 Genotropin Miniquick 32797011000036101 somatropin 1 mg injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 633431000168102 inert substance diluent, 0.25 mL syringe 21220011000036103 inert substance +1025151000168105 Simvastatin (GN) 10 mg film-coated tablet, 30, blister pack 131651 1025141000168108 Simvastatin (GN) 10 mg film-coated tablet, 30 1025131000168104 Simvastatin (GN) 10 mg film-coated tablet 1025121000168102 Simvastatin (GN) 1025121000168102 Simvastatin (GN) 28211011000036108 simvastatin 10 mg tablet, 30 23523011000036108 simvastatin 10 mg tablet 21242011000036102 simvastatin +69506011000036100 Albalon Relief 0.12% eye drops solution, 15 x 0.4 mL unit doses, ampoule 52293 67306011000036109 Albalon Relief 0.12% eye drops solution, 15 x 0.4 mL unit doses 65601011000036108 Albalon Relief 0.12% eye drops solution, 0.4 mL unit dose 65103011000036108 Albalon Relief 65103011000036108 Albalon Relief 71852011000036101 phenylephrine hydrochloride 0.12% eye drops, 15 x 0.4 mL unit doses 70215011000036103 phenylephrine hydrochloride 0.12% eye drops, unit dose 37732011000036107 phenylephrine +45291000036100 Latanoprost (Terry White Chemists) 0.005% eye drops solution, 2.5 mL, bottle 164492 42901000036107 Latanoprost (Terry White Chemists) 0.005% eye drops solution, 2.5 mL 41031000036108 Latanoprost (Terry White Chemists) 0.005% eye drops solution 40161000036109 Latanoprost (Terry White Chemists) 40161000036109 Latanoprost (Terry White Chemists) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +863991000168109 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags 144671 863981000168106 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags 863841000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 13861000168106 Glucose (Fresenius Kabi) 13861000168106 Glucose (Fresenius Kabi) 863971000168108 glucose monohydrate 5% (5 g/100 mL) injection, 60 x 100 mL bags 863831000168101 glucose monohydrate 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +45281000036102 Latanoprost (Apo) 0.005% eye drops solution, 2.5 mL, bottle 164491 42891000036106 Latanoprost (Apo) 0.005% eye drops solution, 2.5 mL 41081000036107 Latanoprost (Apo) 0.005% eye drops solution 40341000036105 Latanoprost (Apo) 40341000036105 Latanoprost (Apo) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +45281000036102 Latanoprost (Apo) 0.005% eye drops solution, 2.5 mL, bottle 200060 42891000036106 Latanoprost (Apo) 0.005% eye drops solution, 2.5 mL 41081000036107 Latanoprost (Apo) 0.005% eye drops solution 40341000036105 Latanoprost (Apo) 40341000036105 Latanoprost (Apo) 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +860381000168103 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100, bottle 165284 860371000168101 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100 860351000168105 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet 81983011000036105 Calci-Tab 81983011000036105 Calci-Tab 860361000168107 calcium carbonate 1.5 g (calcium 600 mg) tablet, 100 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 745551000168101 calcium +1056821000168100 Atorvastatin (ZAZ) 10 mg film-coated tablet, 10, blister pack 185029 1056811000168107 Atorvastatin (ZAZ) 10 mg film-coated tablet, 10 1056801000168109 Atorvastatin (ZAZ) 10 mg film-coated tablet 1056771000168107 Atorvastatin (ZAZ) 1056771000168107 Atorvastatin (ZAZ) 35691000036103 atorvastatin 10 mg tablet, 10 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +933212931000036108 Prava 10 mg uncoated tablet, 30, blister pack 156363 933202631000036102 Prava 10 mg uncoated tablet, 30 933195201000036103 Prava 10 mg uncoated tablet 933193911000036107 Prava 933193911000036107 Prava 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +82870011000036103 Mircera 30 microgram/0.3 mL injection solution, 0.3 mL syringe 153810 82777011000036100 Mircera 30 microgram/0.3 mL injection solution, 0.3 mL syringe 82687011000036104 Mircera 30 microgram/0.3 mL injection solution, 0.3 mL syringe 82658011000036106 Mircera 82658011000036106 Mircera 82997011000036104 epoetin beta 30 microgram/0.3 mL injection, 0.3 mL syringe 82934011000036104 epoetin beta 30 microgram/0.3 mL injection, syringe 21625011000036109 epoetin beta +18828011000036104 Teril 200 mg uncoated tablet, 200, bottle 17674 12142011000036102 Teril 200 mg uncoated tablet, 200 6019011000036108 Teril 200 mg uncoated tablet 2939011000036105 Teril 2939011000036105 Teril 27870011000036105 carbamazepine 200 mg tablet, 200 23198011000036103 carbamazepine 200 mg tablet 21319011000036108 carbamazepine +43895011000036101 Neupro 6 mg/24 hours patch, 28, sachet 131382 41387011000036101 Neupro 6 mg/24 hours patch, 28 39951011000036101 Neupro 6 mg/24 hours patch 39766011000036106 Neupro 39766011000036106 Neupro 46284011000036103 rotigotine 6 mg/24 hours patch, 28 45053011000036103 rotigotine 6 mg/24 hours patch 44880011000036107 rotigotine +44379011000036109 Stilnox 10 mg film-coated tablet, 28, blister pack 69681 41842011000036105 Stilnox 10 mg film-coated tablet, 28 40226011000036106 Stilnox 10 mg film-coated tablet 39643011000036102 Stilnox 39643011000036102 Stilnox 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +68842011000036105 De-Gas 100 mg soft capsule, 24, blister pack 10395 66500011000036109 De-Gas 100 mg soft capsule, 24 65256011000036109 De-Gas 100 mg soft capsule 65132011000036106 De-Gas 65132011000036106 De-Gas 71232011000036109 simethicone 100 mg capsule, 24 69912011000036105 simethicone 100 mg capsule 69826011000036109 simethicone +922351000168107 Monace HCT 10/12.5 uncoated tablet, 30, blister pack 131913 922341000168105 Monace HCT 10/12.5 uncoated tablet, 30 922331000168101 Monace HCT 10/12.5 uncoated tablet 922271000168106 Monace HCT 10/12.5 922271000168106 Monace HCT 10/12.5 27650011000036104 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet, 30 22987011000036106 fosinopril sodium 10 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +938891000168107 Appese 1 mg film-coated tablet, 28, blister pack 140834 938881000168109 Appese 1 mg film-coated tablet, 28 938861000168100 Appese 1 mg film-coated tablet 4841000168106 Appese 4841000168106 Appese 938871000168106 ropinirole 1 mg tablet, 28 938851000168102 ropinirole 1 mg tablet 44882011000036106 ropinirole +774521000168107 DeWorm (Trust) 100 mg chewable tablet, 2, blister pack 175665 774511000168100 DeWorm (Trust) 100 mg chewable tablet, 2 774501000168103 DeWorm (Trust) 100 mg chewable tablet 774321000168103 DeWorm (Trust) 774321000168103 DeWorm (Trust) 75961000036100 mebendazole 100 mg chewable tablet, 2 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +1048181000168106 Bupretec 20 microgram/hour patch, 4, sachet 234733 1048171000168108 Bupretec 20 microgram/hour patch, 4 1048081000168105 Bupretec 20 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1046591000168104 buprenorphine 20 microgram/hour patch, 4 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +85561000036100 Razit 10 mg enteric tablet, 30, bottle 189237 84661000036102 Razit 10 mg enteric tablet, 30 84211000036101 Razit 10 mg enteric tablet 83981000036103 Razit 83981000036103 Razit 84671000036105 rabeprazole sodium 10 mg enteric tablet, 30 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +79684011000036101 Nicabate Mini 1.5 mg lozenge, 60, tube 156603 79504011000036109 Nicabate Mini 1.5 mg lozenge, 60 79387011000036104 Nicabate Mini 1.5 mg lozenge 31811000168102 Nicabate Mini 31811000168102 Nicabate Mini 79822011000036106 nicotine 1.5 mg lozenge, 60 79749011000036100 nicotine 1.5 mg lozenge 21432011000036100 nicotine +1103841000168102 Serepax 30 mg uncoated tablet, 50, blister pack 10417 1103831000168106 Serepax 30 mg uncoated tablet, 50 5092011000036101 Serepax 30 mg uncoated tablet 3507011000036107 Serepax 3507011000036107 Serepax 1103821000168108 oxazepam 30 mg tablet, 50 32701011000036106 oxazepam 30 mg tablet 21541011000036102 oxazepam +915891000168105 Anacoxib 100 mg hard capsule, 60, blister pack 206842 915881000168107 Anacoxib 100 mg hard capsule, 60 915871000168109 Anacoxib 100 mg hard capsule 915821000168108 Anacoxib 915821000168108 Anacoxib 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +956191000168101 Epclusa film-coated tablet, 28, bottle 266823 956181000168104 Epclusa film-coated tablet, 28 956161000168108 Epclusa film-coated tablet 955541000168106 Epclusa 955541000168106 Epclusa 956171000168102 sofosbuvir 400 mg + velpatasvir 100 mg tablet, 28 956151000168106 sofosbuvir 400 mg + velpatasvir 100 mg tablet 956141000168109 sofosbuvir + velpatasvir +1121641000168106 Canesten Extra cream, 20 g, tube 273715 1121631000168102 Canesten Extra cream, 20 g 1121601000168109 Canesten Extra cream 1121591000168102 Canesten Extra 1121591000168102 Canesten Extra 751371000168103 hydrocortisone 1% + clotrimazole 1% cream, 20 g 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 37751011000036102 hydrocortisone + clotrimazole +933215101000036105 Ostran-ODT 8 mg orally disintegrating tablet, 4, blister pack 163648 933204641000036104 Ostran-ODT 8 mg orally disintegrating tablet, 4 933195621000036106 Ostran-ODT 8 mg orally disintegrating tablet 24041000168105 Ostran-ODT 24041000168105 Ostran-ODT 69141000036109 ondansetron 8 mg orally disintegrating tablet, 4 69101000036106 ondansetron 8 mg orally disintegrating tablet 21545011000036100 ondansetron +81161011000036109 Daktozin ointment, 90 g, tube 47360 80664011000036101 Daktozin ointment, 90 g 80230011000036103 Daktozin ointment 80105011000036104 Daktozin 80105011000036104 Daktozin 81722011000036104 miconazole nitrate 0.25% + zinc oxide 15% ointment, 90 g 81300011000036106 miconazole nitrate 0.25% + zinc oxide 15% ointment 81225011000036104 miconazole + zinc oxide +925280011000036108 Aciclovir Cold Sore (Chemmart) 5% cream, 5 g, tube 161227 924817011000036108 Aciclovir Cold Sore (Chemmart) 5% cream, 5 g 924511011000036104 Aciclovir Cold Sore (Chemmart) 5% cream 56651000168109 Aciclovir Cold Sore (Chemmart) 56651000168109 Aciclovir Cold Sore (Chemmart) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +59821011000036103 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 50, blister pack 114890 55783011000036103 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet, 50 53670011000036100 Ibuprofen (Your Pharmacy) 200 mg film-coated tablet 53381011000036107 Ibuprofen (Your Pharmacy) 53381011000036107 Ibuprofen (Your Pharmacy) 27406011000036107 ibuprofen 200 mg tablet, 50 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +34690011000036103 Salbutamol (GA) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 135467 34274011000036102 Salbutamol (GA) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 34002011000036107 Salbutamol (GA) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33943011000036101 Salbutamol (GA) 33943011000036101 Salbutamol (GA) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +34690011000036103 Salbutamol (GA) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 199798 34274011000036102 Salbutamol (GA) 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 34002011000036107 Salbutamol (GA) 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 33943011000036101 Salbutamol (GA) 33943011000036101 Salbutamol (GA) 28133011000036100 salbutamol 2.5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +696891000168100 Pravastatin (Auro) 40 mg uncoated tablet, 30, blister pack 191707 696881000168103 Pravastatin (Auro) 40 mg uncoated tablet, 30 696871000168101 Pravastatin (Auro) 40 mg uncoated tablet 696751000168100 Pravastatin (Auro) 696751000168100 Pravastatin (Auro) 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +50693011000036103 Amoxycillin (Sandoz) 125 mg/5 mL powder for oral liquid, 60 mL, bottle 93721 49717011000036107 Amoxycillin (Sandoz) 125 mg/5 mL powder for oral liquid, 60 mL 48843011000036109 Amoxycillin (Sandoz) 125 mg/5 mL powder for oral liquid, 5 mL 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 51573011000036108 amoxicillin 125 mg/5 mL powder for oral liquid, 60 mL 23552011000036102 amoxicillin 125 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +43908011000036100 Ramipril (GenRx) 10 mg hard capsule, 30, blister pack 134804 41400011000036109 Ramipril (GenRx) 10 mg hard capsule, 30 39847011000036104 Ramipril (GenRx) 10 mg hard capsule 39554011000036107 Ramipril (GenRx) 39554011000036107 Ramipril (GenRx) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +34660011000036101 Irinotecan Hydrochloride Trihydrate (Sandoz) 100 mg/5 mL concentrated injection, 5 mL vial 125141 34249011000036102 Irinotecan Hydrochloride Trihydrate (Sandoz) 100 mg/5 mL concentrated injection, 5 mL vial 33985011000036106 Irinotecan Hydrochloride Trihydrate (Sandoz) 100 mg/5 mL concentrated injection, 5 mL vial 33921011000036100 Irinotecan Hydrochloride Trihydrate (Sandoz) 33921011000036100 Irinotecan Hydrochloride Trihydrate (Sandoz) 28255011000036103 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, 5 mL vial 23569011000036102 irinotecan hydrochloride trihydrate 100 mg/5 mL injection, vial 21503011000036106 irinotecan +60772011000036109 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 50 mL, bottle 54133 56730011000036100 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 50 mL 54051011000036100 Duro-Tuss Chesty Cough Liquid Regular 4 mg/5 mL oral liquid solution, 5 mL 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 53112011000036108 Duro-Tuss Chesty Cough Liquid Regular 63534011000036102 bromhexine hydrochloride 4 mg/5 mL oral liquid, 50 mL 62004011000036102 bromhexine hydrochloride 4 mg/5 mL oral liquid 61780011000036106 bromhexine +774541000168101 DeWorm (Trust) 100 mg chewable tablet, 6, blister pack 175665 774531000168105 DeWorm (Trust) 100 mg chewable tablet, 6 774501000168103 DeWorm (Trust) 100 mg chewable tablet 774321000168103 DeWorm (Trust) 774321000168103 DeWorm (Trust) 75951000036103 mebendazole 100 mg chewable tablet, 6 75911000036102 mebendazole 100 mg chewable tablet 21850011000036105 mebendazole +963181000168101 Arflox 750 mg film-coated tablet, 14, bottle 92369 963021000168101 Arflox 750 mg film-coated tablet, 14 962951000168104 Arflox 750 mg film-coated tablet 962851000168107 Arflox 962851000168107 Arflox 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +1106491000168101 Imovane 7.5 mg film-coated tablet, 2, blister pack 165934 1106481000168104 Imovane 7.5 mg film-coated tablet, 2 5421011000036105 Imovane 7.5 mg film-coated tablet 3857011000036103 Imovane 3857011000036103 Imovane 1106381000168107 zopiclone 7.5 mg tablet, 2 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +20713011000036104 Stocrin 600 mg film-coated tablet, 30, bottle 82789 13883011000036104 Stocrin 600 mg film-coated tablet, 30 7169011000036103 Stocrin 600 mg film-coated tablet 4246011000036109 Stocrin 4246011000036109 Stocrin 27990011000036108 efavirenz 600 mg tablet, 30 23313011000036102 efavirenz 600 mg tablet 21616011000036105 efavirenz +1057761000168104 Ramipril (Auro) 1.25 mg uncoated tablet, 30, bottle 175232 1057681000168103 Ramipril (Auro) 1.25 mg uncoated tablet, 30 1057641000168108 Ramipril (Auro) 1.25 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +932471000168107 Obizur (1 x 500 units vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 236475 932461000168101 Obizur (1 x 500 units vial, 1 x 1 mL inert diluent syringe), 1 pack 932441000168100 Obizur (inert substance) diluent, 1 mL syringe 932401000168102 Obizur 932401000168102 Obizur 932451000168103 susoctocog alfa 500 units injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 630581000168109 inert substance diluent, 1 mL syringe 21220011000036103 inert substance +932471000168107 Obizur (1 x 500 units vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 236475 932461000168101 Obizur (1 x 500 units vial, 1 x 1 mL inert diluent syringe), 1 pack 932431000168109 Obizur (susoctocog alfa 500 units) powder for injection, 500 units vial 932401000168102 Obizur 932401000168102 Obizur 932451000168103 susoctocog alfa 500 units injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 932421000168106 susoctocog alfa 500 units injection, vial 932411000168104 susoctocog alfa +69234011000036105 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 15 x 500 mL bottles 19462 67034011000036108 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 15 x 500 mL bottles 65357011000036101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) irrigation solution, 500 mL bottle 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 35721000168101 Chlorhexidine Acetate 0.1% and Cetrimide 1% (Baxter) 71604011000036106 chlorhexidine acetate 0.1% (500 mg/500 mL) + cetrimide 1% (5 g/500 mL) solution, 15 x 500 mL bottles 70087011000036101 chlorhexidine acetate 0.1% (500 mg/500 mL) + cetrimide 1% (5 g/500 mL) solution, bottle 69756011000036105 chlorhexidine + cetrimide +931121000168106 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 161181 931111000168104 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 931101000168102 Adronat Plus D-Cal 85275011000036101 Bonecal 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +931121000168106 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 161181 931111000168104 Adronat Plus D-Cal (4 x Adronat Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 82681011000036107 Adronat Plus 70 mg/140 microgram uncoated tablet 931101000168102 Adronat Plus D-Cal 12501000168100 Adronat Plus 70 mg/140 microgram 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +1095231000168104 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 20, blister pack 287307 1095221000168102 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet, 20 1095191000168108 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 180 mg film-coated tablet 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 1095181000168105 Fexofenadine Hayfever and Allergy Relief (Discount Drug Stores) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +914191000168100 Cisatracurium (AFT) 20 mg/10 mL injection solution, 10 mL ampoule 191833 914181000168103 Cisatracurium (AFT) 20 mg/10 mL injection solution, 10 mL ampoule 914161000168107 Cisatracurium (AFT) 20 mg/10 mL injection solution, 10 mL ampoule 682941000168104 Cisatracurium (AFT) 682941000168104 Cisatracurium (AFT) 914171000168101 cisatracurium 20 mg/10 mL injection, 10 mL ampoule 909141000168109 cisatracurium 20 mg/10 mL injection, ampoule 44902011000036101 cisatracurium +20712011000036106 Stocrin 600 mg film-coated tablet, 30, blister pack 82788 13883011000036104 Stocrin 600 mg film-coated tablet, 30 7169011000036103 Stocrin 600 mg film-coated tablet 4246011000036109 Stocrin 4246011000036109 Stocrin 27990011000036108 efavirenz 600 mg tablet, 30 23313011000036102 efavirenz 600 mg tablet 21616011000036105 efavirenz +1026431000168100 Pregabalin (Amneal) 75 mg hard capsule, 84, blister pack 235855 1026421000168103 Pregabalin (Amneal) 75 mg hard capsule, 84 1026261000168107 Pregabalin (Amneal) 75 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 969841000168101 pregabalin 75 mg capsule, 84 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +752511000168109 Oxycodone (WT) 10 mg hard capsule, 20, bottle 227825 752501000168106 Oxycodone (WT) 10 mg hard capsule, 20 752491000168104 Oxycodone (WT) 10 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +1017801000168104 Arizole 5 mg uncoated tablet, 30, blister pack 198209 1017661000168104 Arizole 5 mg uncoated tablet, 30 1017651000168101 Arizole 5 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +116581000036105 Rosuvastatin (Sandoz) 20 mg film-coated tablet, 30, blister pack 183597 114871000036103 Rosuvastatin (Sandoz) 20 mg film-coated tablet, 30 112921000036101 Rosuvastatin (Sandoz) 20 mg film-coated tablet 112641000036103 Rosuvastatin (Sandoz) 112641000036103 Rosuvastatin (Sandoz) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +721181000168103 Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials 121873 721171000168101 Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials 721161000168107 Retinofluor 10% 500 mg/5 mL injection solution, 5 mL vial 721151000168105 Retinofluor 10% 721151000168105 Retinofluor 10% 653601000168105 fluorescein sodium 500 mg/5 mL injection, 10 x 5 mL vials 653581000168101 fluorescein sodium 500 mg/5 mL injection, vial 44934011000036102 fluorescein +960281000168102 Ciram 20 mg film-coated tablet, 7, bottle 158859 959191000168106 Ciram 20 mg film-coated tablet, 7 959181000168108 Ciram 20 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1119791000168100 Quetiapine XR (Actavis) 400 mg modified release tablet, 60, blister pack 226805 1119781000168103 Quetiapine XR (Actavis) 400 mg modified release tablet, 60 1119671000168105 Quetiapine XR (Actavis) 400 mg modified release tablet 1119211000168100 Quetiapine XR (Actavis) 1119211000168100 Quetiapine XR (Actavis) 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +818661000168104 Quetiapine XR (Apo) 200 mg modified release tablet, 10, blister pack 226821 818651000168101 Quetiapine XR (Apo) 200 mg modified release tablet, 10 818641000168103 Quetiapine XR (Apo) 200 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51532011000036104 quetiapine 200 mg modified release tablet, 10 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +61099011000036104 Cold and Allergy Infant's Drops (Chemists' Own) oral liquid solution, 50 mL, bottle 71492 57042011000036104 Cold and Allergy Infant's Drops (Chemists' Own) oral liquid solution, 50 mL 54171011000036105 Cold and Allergy Infant's Drops (Chemists' Own) oral liquid solution 51471000168109 Cold and Allergy Infant's Drops (Chemists' Own) 51471000168109 Cold and Allergy Infant's Drops (Chemists' Own) 63713011000036106 chlorphenamine maleate 250 microgram/mL + phenylephrine hydrochloride 500 microgram/mL oral liquid, 50 mL 62054011000036109 chlorphenamine maleate 250 microgram/mL + phenylephrine hydrochloride 500 microgram/mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +68969011000036104 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 4 sachets 134408 66771011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 4 sachets 65477011000036105 Lemsip Cold and Flu lemon 500 mg powder for oral liquid, 1 sachet 3741000168103 Lemsip Cold and Flu 3741000168103 Lemsip Cold and Flu 71423011000036100 paracetamol 500 mg powder for oral liquid, 4 sachets 70005011000036107 paracetamol 500 mg powder for oral liquid, 1 sachet 21433011000036107 paracetamol +19871011000036105 Revia 50 mg film-coated tablet, 30, bottle 65400 13118011000036103 Revia 50 mg film-coated tablet, 30 6401011000036103 Revia 50 mg film-coated tablet 3332011000036103 Revia 3332011000036103 Revia 27559011000036103 naltrexone hydrochloride 50 mg tablet, 30 22898011000036104 naltrexone hydrochloride 50 mg tablet 21848011000036105 naltrexone +933215741000036109 Exaccord 25 mg film-coated tablet, 30, blister pack 167856 933205281000036109 Exaccord 25 mg film-coated tablet, 30 933196241000036106 Exaccord 25 mg film-coated tablet 933193861000036102 Exaccord 933193861000036102 Exaccord 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +20470011000036107 Hypnodorm 1 mg film-coated tablet, 30, blister pack 78345 13671011000036102 Hypnodorm 1 mg film-coated tablet, 30 6954011000036109 Hypnodorm 1 mg film-coated tablet 3206011000036104 Hypnodorm 3206011000036104 Hypnodorm 27874011000036100 flunitrazepam 1 mg tablet, 30 23202011000036101 flunitrazepam 1 mg tablet 21785011000036107 flunitrazepam +980341000168103 Augmentin ES 600 powder for oral liquid, 75 mL, bottle 98693 980331000168107 Augmentin ES 600 powder for oral liquid, 75 mL 980191000168109 Augmentin ES 600 powder for oral liquid, 5 mL 980171000168108 Augmentin ES 600 980171000168108 Augmentin ES 600 980321000168109 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid, 75 mL 980181000168106 amoxicillin 600 mg/5 mL + clavulanic acid 42.9 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +931351000168100 Centevo 75/18.75/200 mg film-coated tablet, 98, bottle 238853 931341000168102 Centevo 75/18.75/200 mg film-coated tablet, 98 931161000168101 Centevo 75/18.75/200 mg film-coated tablet 931151000168103 Centevo 75/18.75/200 mg 931151000168103 Centevo 75/18.75/200 mg 931331000168106 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet, 98 84434011000036105 levodopa 75 mg + carbidopa 18.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +37489011000036103 Heparin Sodium (DBL) 5000 units/mL injection solution, 50 x 1 mL ampoules 12881 36757011000036109 Heparin Sodium (DBL) 5000 units/mL injection solution, 50 x 1 mL ampoules 36039011000036103 Heparin Sodium (DBL) 5000 units/mL injection solution, ampoule 4435011000036104 Heparin Sodium (DBL) 4435011000036104 Heparin Sodium (DBL) 38662011000036103 heparin sodium 5000 units/mL injection, 50 x 1 mL ampoules 37912011000036107 heparin sodium 5000 units/mL injection, ampoule 858661000168109 heparin +1118741000168103 Quetin 200 mg film-coated tablet, 60, blister pack 204839 1118731000168107 Quetin 200 mg film-coated tablet, 60 1118701000168100 Quetin 200 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 27400011000036109 quetiapine 200 mg tablet, 60 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +1076971000168106 Atomoxetine (AS) 80 mg hard capsule, 7, blister pack 238364 1076961000168100 Atomoxetine (AS) 80 mg hard capsule, 7 1076951000168102 Atomoxetine (AS) 80 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 51554011000036107 atomoxetine 80 mg capsule, 7 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +928997011000036101 Valaciclovir (Chemmart) 500 mg film-coated tablet, 90, blister pack 158913 928358011000036102 Valaciclovir (Chemmart) 500 mg film-coated tablet, 90 927957011000036103 Valaciclovir (Chemmart) 500 mg film-coated tablet 927767011000036103 Valaciclovir (Chemmart) 927767011000036103 Valaciclovir (Chemmart) 929224011000036102 valaciclovir 500 mg tablet, 90 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +961331000168101 Carduran 4 mg uncoated tablet, 28, blister pack 32638 961321000168104 Carduran 4 mg uncoated tablet, 28 961301000168108 Carduran 4 mg uncoated tablet 960961000168103 Carduran 960961000168103 Carduran 961311000168106 doxazosin 4 mg tablet, 28 961291000168107 doxazosin 4 mg tablet 960971000168109 doxazosin +933230181000036100 Targin 20/10 mg modified release tablet, 28, blister pack 156189 933224031000036108 Targin 20/10 mg modified release tablet, 28 923037011000036104 Targin 20/10 mg modified release tablet 14801000168107 Targin 20/10 mg 14801000168107 Targin 20/10 mg 933224041000036103 oxycodone hydrochloride 20 mg + naloxone hydrochloride 10 mg modified release tablet, 28 923975011000036101 oxycodone hydrochloride 20 mg + naloxone hydrochloride 10 mg modified release tablet 923931011000036100 oxycodone + naloxone +689101000168109 Leukoflex (1124) 5 cm x 5 m tape, 1 roll, carton 689091000168104 Leukoflex (1124) 5 cm x 5 m tape, 1 roll 689061000168106 Leukoflex (1124) 5 cm x 5 m tape 43071000168102 Leukoflex (1124) 43071000168102 Leukoflex (1124) 689081000168102 tape plaster adhesive hypoallergenic 5 cm x 5 m tape, 1 roll 689041000168107 tape plaster adhesive hypoallergenic 5 cm x 5 m tape 50731011000036104 tape plaster adhesive hypoallergenic +44080011000036108 Fluorouracil (Pfizer (Perth)) 500 mg/20 mL injection solution, 20 mL vial 49308 41567011000036101 Fluorouracil (Pfizer (Perth)) 500 mg/20 mL injection solution, 20 mL vial 40070011000036100 Fluorouracil (Pfizer (Perth)) 500 mg/20 mL injection solution, 20 mL vial 35860011000036101 Fluorouracil (Pfizer (Perth)) 35860011000036101 Fluorouracil (Pfizer (Perth)) 46396011000036100 fluorouracil 500 mg/20 mL injection, 20 mL vial 45130011000036100 fluorouracil 500 mg/20 mL injection, vial 21481011000036100 fluorouracil +34643011000036103 Ketamine (DBL) 200 mg/2 mL injection solution, 5 x 2 mL vials 123124 34233011000036101 Ketamine (DBL) 200 mg/2 mL injection solution, 5 x 2 mL vials 33975011000036104 Ketamine (DBL) 200 mg/2 mL injection solution, 2 mL vial 33958011000036108 Ketamine (DBL) 33958011000036108 Ketamine (DBL) 35208011000036107 ketamine 200 mg/2 mL injection, 5 x 2 mL vials 34901011000036108 ketamine 200 mg/2 mL injection, vial 34843011000036109 ketamine +181421000036101 Goodlife diagnostic strip, 100, bottle 180951000036106 Goodlife diagnostic strip, 100 180621000036105 Goodlife diagnostic strip 180281000036108 Goodlife 180281000036108 Goodlife 51571011000036107 glucose indicator blood diagnostic strip, 100 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +79017011000036103 Xarelto 10 mg film-coated tablet, 15, blister pack 147400 78832011000036107 Xarelto 10 mg film-coated tablet, 15 78644011000036107 Xarelto 10 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 79227011000036103 rivaroxaban 10 mg tablet, 15 79108011000036108 rivaroxaban 10 mg tablet 79098011000036103 rivaroxaban +60857011000036107 Analgesic and Calmative (Pharmacist) uncoated tablet, 40, blister pack 58828 56811011000036100 Analgesic and Calmative (Pharmacist) uncoated tablet, 40 54087011000036102 Analgesic and Calmative (Pharmacist) uncoated tablet 53357011000036105 Analgesic and Calmative (Pharmacist) 53357011000036105 Analgesic and Calmative (Pharmacist) 63585011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 40 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +1059631000168108 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 7, blister pack 234468 1059621000168105 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 7 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 727601000168105 rosuvastatin 5 mg tablet, 7 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +61341011000036105 Panadol Mini Cap 500 mg gelatin coated tablet, 48, blister pack 81007 57266011000036101 Panadol Mini Cap 500 mg gelatin coated tablet, 48 54256011000036104 Panadol Mini Cap 500 mg gelatin coated tablet 25261000168103 Panadol Mini Cap 25261000168103 Panadol Mini Cap 63941011000036106 paracetamol 500 mg tablet, 48 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1059611000168103 Amiodarone (Apo) 200 mg uncoated tablet, 30, blister pack 80768 1059601000168101 Amiodarone (Apo) 200 mg uncoated tablet, 30 1059591000168108 Amiodarone (Apo) 200 mg uncoated tablet 1059581000168105 Amiodarone (Apo) 1059581000168105 Amiodarone (Apo) 28279011000036103 amiodarone hydrochloride 200 mg tablet, 30 23593011000036103 amiodarone hydrochloride 200 mg tablet 21535011000036101 amiodarone +933211471000036108 Fluoride Neutral (Laclede) Apple Cinnamon 9.27 mg/g (total fluoride 0.9%) foam, 165 mL, aerosol can 119652 933200241000036109 Fluoride Neutral (Laclede) Apple Cinnamon 9.27 mg/g (total fluoride 0.9%) foam, 165 mL 933194171000036100 Fluoride Neutral (Laclede) Apple Cinnamon 9.27 mg/g (total fluoride 0.9%) foam 933193961000036109 Fluoride Neutral (Laclede) 933193961000036109 Fluoride Neutral (Laclede) 933200251000036107 fluoride 9.27 mg/g (total fluoride 0.9%) foam, 165 mL 933194181000036103 fluoride 9.27 mg/g (total fluoride 0.9%) foam 61768011000036106 fluoride +1092741000168106 Quitx Freshmint 4 mg chewing gum, 120, blister pack 192914 1092731000168102 Quitx Freshmint 4 mg chewing gum, 120 920993011000036107 Quitx Freshmint 4 mg chewing gum 9771000168108 Quitx 9771000168108 Quitx 71514011000036100 nicotine 4 mg gum, 120 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +910901000168103 Cavstat 10 mg film-coated tablet, 28, blister pack 234485 910891000168102 Cavstat 10 mg film-coated tablet, 28 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910881000168100 rosuvastatin 10 mg tablet, 28 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +60615011000036104 Progan Children's Allergy Relief Elixir 1 mg/mL oral liquid solution, 100 mL, bottle 18891 56573011000036106 Progan Children's Allergy Relief Elixir 1 mg/mL oral liquid solution, 100 mL 53980011000036105 Progan Children's Allergy Relief Elixir 1 mg/mL oral liquid solution 35391000168103 Progan Children's Allergy Relief Elixir 35391000168103 Progan Children's Allergy Relief Elixir 63682011000036106 promethazine hydrochloride 1 mg/mL oral liquid, 100 mL 62044011000036106 promethazine hydrochloride 1 mg/mL oral liquid 21237011000036104 promethazine +61583011000036104 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 96, blister pack 94969 57505011000036103 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet, 96 54329011000036101 Ibuprofen (Soul Pattinson) 200 mg film-coated tablet 53225011000036108 Ibuprofen (Soul Pattinson) 53225011000036108 Ibuprofen (Soul Pattinson) 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +921853011000036103 Citralite 1.23 g powder for oral liquid, 28 sachets 10150 921371011000036104 Citralite 1.23 g powder for oral liquid, 28 sachets 920979011000036100 Citralite 1.23 g powder for oral liquid, 3.7 g sachet 920919011000036109 Citralite 920919011000036109 Citralite 922523011000036101 citric acid 1.23 g powder for oral liquid, 28 sachets 922068011000036102 citric acid 1.23 g powder for oral liquid, 3.7 g sachet 77470011000036106 citric acid +933247381000036102 Gemcitabine (Ebewe) 2 g/50 mL concentrated injection, 50 mL vial 169043 933244181000036108 Gemcitabine (Ebewe) 2 g/50 mL concentrated injection, 50 mL vial 933241721000036109 Gemcitabine (Ebewe) 2 g/50 mL concentrated injection, 50 mL vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 933244201000036107 gemcitabine 2 g/50 mL injection, 50 mL vial 933241731000036106 gemcitabine 2 g/50 mL injection, vial 21644011000036108 gemcitabine +926838011000036109 Solarcaine 1% pressurised spray, 100 g, aerosol can 18204 926234011000036108 Solarcaine 1% pressurised spray, 100 g 925687011000036106 Solarcaine 1% pressurised spray 925518011000036103 Solarcaine 925518011000036103 Solarcaine 927346011000036108 benzocaine 1% spray, 100 g 926996011000036106 benzocaine 1% spray 926959011000036109 benzocaine +44587011000036107 Vfend 200 mg film-coated tablet, 30, blister pack 82505 42040011000036106 Vfend 200 mg film-coated tablet, 30 40333011000036107 Vfend 200 mg film-coated tablet 39743011000036106 Vfend 39743011000036106 Vfend 46808011000036100 voriconazole 200 mg tablet, 30 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +19358011000036100 Largactil 10 mg film-coated tablet, 100, blister pack 51620 12645011000036109 Largactil 10 mg film-coated tablet, 100 5857011000036107 Largactil 10 mg film-coated tablet 36041000168104 Largactil 36041000168104 Largactil 27254011000036107 chlorpromazine hydrochloride 10 mg tablet, 100 22612011000036107 chlorpromazine hydrochloride 10 mg tablet 21310011000036102 chlorpromazine +925641000168106 Androgel 1% (25 mg/2.5 g) gel, 100 x 2.5 g sachets 96122 925631000168102 Androgel 1% (25 mg/2.5 g) gel, 100 x 2.5 g sachets 925351000168100 Androgel 1% (25 mg/2.5 g) gel, 2.5 g sachet 924891000168100 Androgel 924891000168100 Androgel 46941011000036109 testosterone 1% (25 mg/2.5 g) gel, 100 x 2.5 g sachets 45351011000036103 testosterone 1% (25 mg/2.5 g) gel, sachet 21290011000036109 testosterone +896881000168107 Olmesartan HCTZ 40/25 (Apotex) film-coated tablet, 30, blister pack 206467 896871000168109 Olmesartan HCTZ 40/25 (Apotex) film-coated tablet, 30 896861000168103 Olmesartan HCTZ 40/25 (Apotex) film-coated tablet 896851000168100 Olmesartan HCTZ 40/25 (Apotex) 896851000168100 Olmesartan HCTZ 40/25 (Apotex) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +933212841000036108 Simvastatin (Auro) 20 mg film-coated tablet, 30, blister pack 150155 933202581000036104 Simvastatin (Auro) 20 mg film-coated tablet, 30 933194511000036104 Simvastatin (Auro) 20 mg film-coated tablet 16361000168106 Simvastatin (Auro) 16361000168106 Simvastatin (Auro) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +925278011000036100 Invega Sustenna 75 mg modified release injection, 1 syringe 160859 924815011000036103 Invega Sustenna 75 mg modified release injection, 1 syringe 924509011000036102 Invega Sustenna 75 mg modified release injection, syringe 26461000168105 Invega Sustenna 26461000168105 Invega Sustenna 925421011000036109 paliperidone 75 mg modified release injection, 1 syringe 925379011000036104 paliperidone 75 mg modified release injection, syringe 34837011000036104 paliperidone +755581000168105 Vttack 50 mg film-coated tablet, 14, blister pack 206983 755571000168107 Vttack 50 mg film-coated tablet, 14 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46813011000036107 voriconazole 50 mg tablet, 14 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +81056011000036104 Zinc (Gold Cross) 15% ointment, 100 g, jar 14072 80499011000036100 Zinc (Gold Cross) 15% ointment, 100 g 80166011000036105 Zinc (Gold Cross) 15% ointment 80119011000036100 Zinc (Gold Cross) 80119011000036100 Zinc (Gold Cross) 81595011000036101 zinc oxide 15% ointment, 100 g 81266011000036102 zinc oxide 15% ointment 77446011000036105 zinc oxide +1052201000168106 Oxylieve MR 80 mg modified release tablet, 60, blister pack 153610 1052191000168108 Oxylieve MR 80 mg modified release tablet, 60 1052081000168109 Oxylieve MR 80 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 35206011000036108 oxycodone hydrochloride 80 mg modified release tablet, 60 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +752431000168103 Fentanyl (B Braun) 250 microgram/5 mL injection solution, 10 x 5 mL ampoules 227123 752421000168101 Fentanyl (B Braun) 250 microgram/5 mL injection solution, 10 x 5 mL ampoules 752401000168105 Fentanyl (B Braun) 250 microgram/5 mL injection solution, 5 mL ampoule 752351000168103 Fentanyl (B Braun) 752351000168103 Fentanyl (B Braun) 752411000168108 fentanyl 250 microgram/5 mL injection, 10 x 5 mL ampoules 752391000168108 fentanyl 250 microgram/5 mL injection, ampoule 21258011000036102 fentanyl +785551000168106 Endone XR 80 mg modified release tablet, 60, blister pack 153610 785541000168109 Endone XR 80 mg modified release tablet, 60 785491000168100 Endone XR 80 mg modified release tablet 777921000168106 Endone XR 777921000168106 Endone XR 35206011000036108 oxycodone hydrochloride 80 mg modified release tablet, 60 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +18661011000036106 Citalopram (Pharmacor) 20 mg film-coated tablet, 28, blister pack 130620 11903011000036101 Citalopram (Pharmacor) 20 mg film-coated tablet, 28 5093011000036108 Citalopram (Pharmacor) 20 mg film-coated tablet 3890011000036109 Citalopram (Pharmacor) 3890011000036109 Citalopram (Pharmacor) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +660241000168108 Opsumit 10 mg film-coated tablet, 30, blister pack 205624 660191000168108 Opsumit 10 mg film-coated tablet, 30 660171000168107 Opsumit 10 mg film-coated tablet 654891000168102 Opsumit 654891000168102 Opsumit 660181000168105 macitentan 10 mg tablet, 30 660161000168101 macitentan 10 mg tablet 660151000168103 macitentan +1052281000168103 Oxylieve MR 10 mg modified release tablet, 28, blister pack 153604 1052271000168101 Oxylieve MR 10 mg modified release tablet, 28 1052241000168108 Oxylieve MR 10 mg modified release tablet 1051291000168109 Oxylieve MR 1051291000168109 Oxylieve MR 929272011000036107 oxycodone hydrochloride 10 mg modified release tablet, 28 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +20931011000036100 Restore O.R.S. powder for oral liquid, 10 x 4.9 g sachets 94136 14085011000036102 Restore O.R.S. powder for oral liquid, 10 x 4.9 g sachets 7363011000036109 Restore O.R.S. powder for oral liquid, 4.9 g sachet 4263011000036109 Restore O.R.S. 4263011000036109 Restore O.R.S. 28137011000036109 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 4.9 g sachets 23446011000036105 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 4.9 g sachet 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid +1110081000168109 Nicotinell Tropical Fruit 4 mg chewing gum, 180, blister pack 279618 1110071000168106 Nicotinell Tropical Fruit 4 mg chewing gum, 180 1109821000168105 Nicotinell Tropical Fruit 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71517011000036106 nicotine 4 mg gum, 180 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +755661000168100 Vttack 50 mg film-coated tablet, 50, blister pack 206983 755651000168102 Vttack 50 mg film-coated tablet, 50 755421000168107 Vttack 50 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46818011000036102 voriconazole 50 mg tablet, 50 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +933247561000036104 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet, 30, blister pack 175930 933244421000036101 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet, 30 933241841000036109 Bisoprolol Fumarate (Pfizer) 2.5 mg film-coated tablet 933240841000036101 Bisoprolol Fumarate (Pfizer) 933240841000036101 Bisoprolol Fumarate (Pfizer) 79203011000036100 bisoprolol fumarate 2.5 mg tablet, 30 23281011000036106 bisoprolol fumarate 2.5 mg tablet 21839011000036103 bisoprolol +896961000168105 Adrenaline Auto Inject Jr (Sun-JV) 150 microgram/0.3 mL injection solution, 1 dose, injection device 231704 896951000168108 Adrenaline Auto Inject Jr (Sun-JV) 150 microgram/0.3 mL injection solution, 1 dose 896941000168106 Adrenaline Auto Inject Jr (Sun-JV) 150 microgram/0.3 mL injection solution, dose 896931000168102 Adrenaline Auto Inject Jr (Sun-JV) 896931000168102 Adrenaline Auto Inject Jr (Sun-JV) 726671000168102 adrenaline (epinephrine) 150 microgram/0.3 mL injection, 1 dose 726651000168106 adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose 21823011000036103 adrenaline (epinephrine) +181521000036100 Candesartan Cilexetil (Terry White Chemists) 8 mg uncoated tablet, 30, blister pack 210534 181061000036104 Candesartan Cilexetil (Terry White Chemists) 8 mg uncoated tablet, 30 180391000036101 Candesartan Cilexetil (Terry White Chemists) 8 mg uncoated tablet 180361000036108 Candesartan Cilexetil (Terry White Chemists) 180361000036108 Candesartan Cilexetil (Terry White Chemists) 27539011000036102 candesartan cilexetil 8 mg tablet, 30 22879011000036102 candesartan cilexetil 8 mg tablet 21501011000036105 candesartan +19410011000036101 Zantac 300 mg film-coated tablet, 30, blister pack 53323 12694011000036103 Zantac 300 mg film-coated tablet, 30 5842011000036108 Zantac 300 mg film-coated tablet 3563011000036102 Zantac 3563011000036102 Zantac 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +43838011000036104 Ramipril (Sandoz) 10 mg uncoated tablet, 30, blister pack 127519 41337011000036106 Ramipril (Sandoz) 10 mg uncoated tablet, 30 39932011000036106 Ramipril (Sandoz) 10 mg uncoated tablet 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 32939011000036107 ramipril 10 mg tablet, 30 32931011000036108 ramipril 10 mg tablet 21395011000036107 ramipril +759911000168106 Redoxon Double Action effervescent tablet, 30, tube 145391 759901000168108 Redoxon Double Action effervescent tablet, 30 759851000168104 Redoxon Double Action effervescent tablet 759821000168107 Redoxon Double Action 759821000168107 Redoxon Double Action 759891000168109 ascorbic acid 1 g + zinc 10 mg effervescent tablet, 30 759841000168101 ascorbic acid 1 g + zinc 10 mg effervescent tablet 759831000168105 ascorbic acid + zinc +925314011000036107 Clopidogrel (Actavis) 75 mg film-coated tablet, 14, blister pack 164866 924850011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet, 14 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 87800011000036106 clopidogrel 75 mg tablet, 14 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +850881000168104 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules 11302 850871000168102 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules 850831000168100 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, ampoule 81982011000036103 Atropine Sulfate (Pfizer (Perth)) 81982011000036103 Atropine Sulfate (Pfizer (Perth)) 850861000168108 atropine sulfate monohydrate 600 microgram/mL injection, 50 x 1 mL ampoules 850731000168107 atropine sulfate monohydrate 600 microgram/mL injection, ampoule 933232141000036108 atropine sulfate monohydrate +933212771000036107 Fluoxetine (Ascent) 20 mg capsule, 28, blister pack 148091 933202131000036109 Fluoxetine (Ascent) 20 mg capsule, 28 933195221000036108 Fluoxetine (Ascent) 20 mg capsule 933193881000036107 Fluoxetine (Ascent) 933193881000036107 Fluoxetine (Ascent) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +772741000168101 Fluarix Tetra 2016 with Needle injection suspension, 10 x 0.5 mL syringes 210806 772731000168105 Fluarix Tetra 2016 with Needle injection suspension, 10 x 0.5 mL syringes 772701000168103 Fluarix Tetra 2016 with Needle injection suspension, 0.5 mL syringe 772631000168102 Fluarix Tetra 2016 772631000168102 Fluarix Tetra 2016 768511000168104 influenza quadrivalent adult vaccine 2016 injection, 10 x 0.5 mL syringes 768461000168102 influenza quadrivalent adult vaccine 2016 injection, 0.5 mL syringe 768451000168104 influenza quadrivalent vaccine 2016 +827341000168101 Vivaxim injection suspension, 1 mL syringe, dual chamber syringe 82745 827331000168105 Vivaxim injection suspension, 1 mL syringe 827311000168100 Vivaxim injection suspension, 1 mL syringe 73726011000036109 Vivaxim 73726011000036109 Vivaxim 827321000168107 hepatitis A + typhoid vaccine injection, 1 mL syringe 827301000168103 hepatitis A + typhoid vaccine injection, 1 mL syringe 827291000168104 hepatitis A + typhoid vaccine +66381000036108 Canesten Bifonazole Once Daily Athlete's Foot 1% cream, 20 g, tube 63479 64261000036101 Canesten Bifonazole Once Daily Athlete's Foot 1% cream, 20 g 61301000036109 Canesten Bifonazole Once Daily Athlete's Foot 1% cream 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 9461000168108 Canesten Bifonazole Once Daily Athlete's Foot 63839011000036100 bifonazole 1% cream, 20 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +974171000168107 Pregabalin (Teva) 300 mg hard capsule, 60, blister pack 229603 974161000168101 Pregabalin (Teva) 300 mg hard capsule, 60 974011000168103 Pregabalin (Teva) 300 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +926851000168104 Trasylol 1 000 000 KI units/100 mL intravenous infusion injection, 100 mL vial 58869 926841000168101 Trasylol 1 000 000 KI units/100 mL intravenous infusion injection, 100 mL vial 926821000168107 Trasylol 1 000 000 KI units/100 mL intravenous infusion injection, 100 mL vial 926521000168109 Trasylol 926521000168109 Trasylol 926831000168105 aprotinin 1 000 000 KI units/100 mL injection, 100 mL vial 926811000168100 aprotinin 1 000 000 KI units/100 mL injection, vial 926591000168106 aprotinin +66301000036102 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 12 x 150 mL vials 49424 64201000036100 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 12 x 150 mL vials 61241000036104 Optiray-320 678 mg (iodine 320 mg)/mL injection solution, 150 mL vial 28191000168109 Optiray-320 28191000168109 Optiray-320 64211000036103 ioversol 678 mg (iodine 320 mg)/mL injection, 12 x 150 mL vials 61251000036101 ioversol 678 mg (iodine 320 mg)/mL injection, 150 mL vial 77421011000036103 ioversol +19629011000036104 Rani-2 300 mg film-coated tablet, 30, blister pack 59091 12898011000036100 Rani-2 300 mg film-coated tablet, 30 6188011000036107 Rani-2 300 mg film-coated tablet 32194011000036102 Rani-2 32194011000036102 Rani-2 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +920653011000036100 Fluconazole (Sandoz) 200 mg/100 mL injection solution, 100 mL vial 104302 920355011000036105 Fluconazole (Sandoz) 200 mg/100 mL injection solution, 100 mL vial 920125011000036104 Fluconazole (Sandoz) 200 mg/100 mL injection solution, 100 mL vial 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 27178011000036101 fluconazole 200 mg/100 mL injection, 100 mL vial 22540011000036105 fluconazole 200 mg/100 mL injection, vial 21365011000036105 fluconazole +1035201000168100 Atomoxetine (CH) 80 mg hard capsule, 56, blister pack 234859 1035191000168103 Atomoxetine (CH) 80 mg hard capsule, 56 1035121000168100 Atomoxetine (CH) 80 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830611000168108 atomoxetine 80 mg capsule, 56 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +19508011000036109 Topamax 200 mg film-coated tablet, 60, bottle 55938 13033011000036108 Topamax 200 mg film-coated tablet, 60 6320011000036108 Topamax 200 mg film-coated tablet 15341000168103 Topamax 15341000168103 Topamax 27505011000036105 topiramate 200 mg tablet, 60 22848011000036106 topiramate 200 mg tablet 21458011000036101 topiramate +43619011000036109 Septanest 4% / 1 in 100 000 injection solution, 10 x 2.2 mL cartridges 101545 41126011000036101 Septanest 4% / 1 in 100 000 injection solution, 10 x 2.2 mL cartridges 39947011000036107 Septanest 4% / 1 in 100 000 injection solution, 2.2 mL cartridge 54871000168108 Septanest 4% / 1 in 100 000 54871000168108 Septanest 4% / 1 in 100 000 46108011000036107 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, 10 x 2.2 mL cartridges 44989011000036105 articaine hydrochloride 4% (88 mg/2.2 mL) + adrenaline (epinephrine) 1 in 100 000 (22 microgram/2.2 mL) injection, cartridge 44854011000036108 articaine + adrenaline (epinephrine) +931601011000036102 Pratin 40 mg film-coated tablet, 30, bottle 163558 930762011000036107 Pratin 40 mg film-coated tablet, 30 930038011000036103 Pratin 40 mg film-coated tablet 929861011000036100 Pratin 929861011000036100 Pratin 28260011000036100 pravastatin sodium 40 mg tablet, 30 23574011000036109 pravastatin sodium 40 mg tablet 21606011000036107 pravastatin +822041000168101 Prezcobix film-coated tablet, 30, bottle 231198 822031000168105 Prezcobix film-coated tablet, 30 822011000168100 Prezcobix film-coated tablet 821941000168108 Prezcobix 821941000168108 Prezcobix 822021000168107 darunavir 800 mg + cobicistat 150 mg tablet, 30 822001000168103 darunavir 800 mg + cobicistat 150 mg tablet 821991000168100 darunavir + cobicistat +84398011000036102 Lipigem 600 mg film-coated tablet, 60, bottle 61430 84089011000036107 Lipigem 600 mg film-coated tablet, 60 83704011000036108 Lipigem 600 mg film-coated tablet 83550011000036105 Lipigem 83550011000036105 Lipigem 27725011000036102 gemfibrozil 600 mg tablet, 60 23060011000036105 gemfibrozil 600 mg tablet 21659011000036107 gemfibrozil +933215901000036108 Sodium Chloride 0.9% and Glucose 5% (B Braun) intravenous infusion injection, 500 mL bottle 49333 933205401000036104 Sodium Chloride 0.9% and Glucose 5% (B Braun) intravenous infusion injection, 500 mL bottle 933196491000036104 Sodium Chloride 0.9% and Glucose 5% (B Braun) intravenous infusion injection, 500 mL bottle 5311000168104 Sodium Chloride 0.9% and Glucose 5% (B Braun) 5311000168104 Sodium Chloride 0.9% and Glucose 5% (B Braun) 933205411000036102 sodium chloride 0.9% (4.5 g/500 mL) + glucose 5% (25 g/500 mL) injection, 500 mL bottle 933196501000036106 sodium chloride 0.9% (4.5 g/500 mL) + glucose 5% (25 g/500 mL) injection, bottle 21257011000036103 sodium chloride + glucose +1076811000168109 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet, 14, strip pack 219924 55987011000036104 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet, 14 53748011000036108 Heartburn Relief Extra Strength (Amcal) 300 mg film-coated tablet 30721000168109 Heartburn Relief Extra Strength (Amcal) 30721000168109 Heartburn Relief Extra Strength (Amcal) 63893011000036105 ranitidine 300 mg tablet, 14 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +19191011000036105 Monopril 20 mg uncoated tablet, 30, bottle 46752 12484011000036104 Monopril 20 mg uncoated tablet, 30 4846011000036101 Monopril 20 mg uncoated tablet 3248011000036105 Monopril 3248011000036105 Monopril 27149011000036108 fosinopril sodium 20 mg tablet, 30 22512011000036102 fosinopril sodium 20 mg tablet 21668011000036105 fosinopril +44662011000036101 Abilify 5 mg uncoated tablet, 60, blister pack 90925 42114011000036102 Abilify 5 mg uncoated tablet, 60 40354011000036108 Abilify 5 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 46876011000036105 aripiprazole 5 mg tablet, 60 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +61698011000036101 Mylanta Ranitidine 150 mg film-coated tablet, 28, blister pack 99838 57619011000036109 Mylanta Ranitidine 150 mg film-coated tablet, 28 54367011000036103 Mylanta Ranitidine 150 mg film-coated tablet 53436011000036102 Mylanta Ranitidine 53436011000036102 Mylanta Ranitidine 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +86875011000036106 Topiramate (GA) 100 mg film-coated tablet, 60, blister pack 155198 86760011000036109 Topiramate (GA) 100 mg film-coated tablet, 60 86636011000036105 Topiramate (GA) 100 mg film-coated tablet 86593011000036100 Topiramate (GA) 86593011000036100 Topiramate (GA) 27504011000036106 topiramate 100 mg tablet, 60 22847011000036105 topiramate 100 mg tablet 21458011000036101 topiramate +746981000168108 Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 159274 746971000168105 Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 746781000168106 Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule 922951011000036109 Granisetron (Kabi) 922951011000036109 Granisetron (Kabi) 924180011000036100 granisetron 3 mg/3 mL injection, 5 x 3 mL ampoules 23543011000036106 granisetron 3 mg/3 mL injection, ampoule 21431011000036106 granisetron +1035031000168103 Atomoxetine (CH) 5 mg hard capsule, 7, blister pack 234844 1035021000168101 Atomoxetine (CH) 5 mg hard capsule, 7 1035011000168108 Atomoxetine (CH) 5 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 976311000168106 atomoxetine 5 mg capsule, 7 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +19652011000036108 Imtrate 60 mg modified release tablet, 30, blister pack 59615 12918011000036105 Imtrate 60 mg modified release tablet, 30 6208011000036108 Imtrate 60 mg modified release tablet 4261011000036108 Imtrate 4261011000036108 Imtrate 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +923791000168108 Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30, blister pack 190326 923781000168105 Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30 923061000168104 Clopidogrel/Aspirin 75/100 (Apo) coated tablet 62631000168105 Clopidogrel/Aspirin 75/100 (Apo) 62631000168105 Clopidogrel/Aspirin 75/100 (Apo) 82549011000036107 clopidogrel 75 mg + aspirin 100 mg tablet, 30 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +1031821000168107 Aten 100 mg film-coated tablet, 28, blister pack 197718 1031811000168100 Aten 100 mg film-coated tablet, 28 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031801000168103 atenolol 100 mg tablet, 28 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +889391000168109 Bosleer 125 mg film-coated tablet, 60, bottle 235896 889381000168106 Bosleer 125 mg film-coated tablet, 60 889311000168100 Bosleer 125 mg film-coated tablet 889171000168106 Bosleer 889171000168106 Bosleer 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1098201000168103 Valaciclovir (Auro) 500 mg film-coated tablet, 500, bottle 173285 1098191000168101 Valaciclovir (Auro) 500 mg film-coated tablet, 500 1098001000168108 Valaciclovir (Auro) 500 mg film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 1001311000168101 valaciclovir 500 mg tablet, 500 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +19145011000036102 Betagan 0.25% eye drops solution, 5 mL, bottle 45037 12444011000036107 Betagan 0.25% eye drops solution, 5 mL 4818011000036105 Betagan 0.25% eye drops solution 3054011000036105 Betagan 3054011000036105 Betagan 27123011000036107 levobunolol hydrochloride 0.25% eye drops, 5 mL 22489011000036102 levobunolol hydrochloride 0.25% eye drops 21795011000036106 levobunolol +1119631000168107 Quetiapine XR (GXP) 200 mg modified release tablet, 60, blister pack 199891 1119621000168109 Quetiapine XR (GXP) 200 mg modified release tablet, 60 1119611000168102 Quetiapine XR (GXP) 200 mg modified release tablet 1119321000168101 Quetiapine XR (GXP) 1119321000168101 Quetiapine XR (GXP) 51534011000036108 quetiapine 200 mg modified release tablet, 60 50993011000036102 quetiapine 200 mg modified release tablet 21452011000036104 quetiapine +116741000036106 Cavstat 10 mg film-coated tablet, 30, blister pack 186380 115021000036108 Cavstat 10 mg film-coated tablet, 30 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +116741000036106 Cavstat 10 mg film-coated tablet, 30, blister pack 234485 115021000036108 Cavstat 10 mg film-coated tablet, 30 113131000036105 Cavstat 10 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +61554011000036108 Pain (Chemists' Own) uncoated tablet, 50, blister pack 93836 57476011000036107 Pain (Chemists' Own) uncoated tablet, 50 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 52904011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 50 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +21219011000036104 Protos 2 g granules, 28 sachets 99978 14352011000036104 Protos 2 g granules, 28 sachets 7634011000036107 Protos 2 g granules, 2 g sachet 4152011000036109 Protos 4152011000036109 Protos 28342011000036101 strontium ranelate 2 g granules, 28 sachets 23652011000036105 strontium ranelate 2 g granules, sachet 21355011000036104 strontium +683801000168104 Odaplix SR 1.5 mg modified release tablet, 90, blister pack 139608 683791000168100 Odaplix SR 1.5 mg modified release tablet, 90 683781000168103 Odaplix SR 1.5 mg modified release tablet 683771000168101 Odaplix SR 683771000168101 Odaplix SR 27590011000036104 indapamide hemihydrate 1.5 mg modified release tablet, 90 22929011000036106 indapamide hemihydrate 1.5 mg modified release tablet 21855011000036101 indapamide +79063011000036106 Curam 125/31.25 powder for oral liquid, 100 mL, bottle 146979 78825011000036101 Curam 125/31.25 powder for oral liquid, 100 mL 78642011000036103 Curam 125/31.25 powder for oral liquid, 5 mL 4311000168100 Curam 125/31.25 4311000168100 Curam 125/31.25 79222011000036100 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid, 100 mL 23464011000036107 amoxicillin 125 mg/5 mL + clavulanic acid 31.25 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +905611000168104 Ceftriaxone (Kabi) 2 g powder for injection, 1 vial 223324 905601000168102 Ceftriaxone (Kabi) 2 g powder for injection, 1 vial 905591000168109 Ceftriaxone (Kabi) 2 g powder for injection, 2 g vial 904621000168105 Ceftriaxone (Kabi) 904621000168105 Ceftriaxone (Kabi) 28092011000036106 ceftriaxone 2 g injection, 1 vial 23400011000036101 ceftriaxone 2 g injection, vial 21610011000036107 ceftriaxone +1069271000168101 Paracetamol plus Codeine and Calmative (Chemists' Own) uncoated tablet, 20, blister pack 277276 1069261000168107 Paracetamol plus Codeine and Calmative (Chemists' Own) uncoated tablet, 20 1069251000168105 Paracetamol plus Codeine and Calmative (Chemists' Own) uncoated tablet 1069241000168108 Paracetamol plus Codeine and Calmative (Chemists' Own) 1069241000168108 Paracetamol plus Codeine and Calmative (Chemists' Own) 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +61433011000036102 Imodium Melt 2 mg orally disintegrating tablet, 4, blister pack 83176 57358011000036100 Imodium Melt 2 mg orally disintegrating tablet, 4 54283011000036103 Imodium Melt 2 mg orally disintegrating tablet 7341000168106 Imodium Melt 7341000168106 Imodium Melt 47741000036105 loperamide hydrochloride 2 mg orally disintegrating tablet, 4 47641000036101 loperamide hydrochloride 2 mg orally disintegrating tablet 21760011000036100 loperamide +933215581000036108 Olanzapine (Lilly) 7.5 mg film-coated tablet, 7, blister pack 167682 933205071000036103 Olanzapine (Lilly) 7.5 mg film-coated tablet, 7 933196161000036104 Olanzapine (Lilly) 7.5 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 933205081000036101 olanzapine 7.5 mg tablet, 7 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +1099731000168107 Crestat 20 mg film-coated tablet, 7, blister pack 183273 1099721000168109 Crestat 20 mg film-coated tablet, 7 1099711000168102 Crestat 20 mg film-coated tablet 1099501000168105 Crestat 1099501000168105 Crestat 812041000168108 rosuvastatin 20 mg tablet, 7 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +974491000168101 Valganciclovir (Sandoz) 450 mg film-coated tablet, 60, blister pack 227605 974421000168103 Valganciclovir (Sandoz) 450 mg film-coated tablet, 60 974411000168105 Valganciclovir (Sandoz) 450 mg film-coated tablet 974401000168107 Valganciclovir (Sandoz) 974401000168107 Valganciclovir (Sandoz) 27995011000036104 valganciclovir 450 mg tablet, 60 23318011000036107 valganciclovir 450 mg tablet 21859011000036104 valganciclovir +59935011000036109 Dry Cough Relief (Guardian) 1 mg/mL oral liquid solution, 200 mL, bottle 119516 55897011000036105 Dry Cough Relief (Guardian) 1 mg/mL oral liquid solution, 200 mL 53612011000036107 Dry Cough Relief (Guardian) 1 mg/mL oral liquid solution 53321011000036103 Dry Cough Relief (Guardian) 53321011000036103 Dry Cough Relief (Guardian) 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +777191000168105 Karvea 75 mg film-coated tablet, 5, blister pack 101702 777181000168107 Karvea 75 mg film-coated tablet, 5 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777171000168109 irbesartan 75 mg tablet, 5 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +867921000168100 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 16750 867911000168107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 867891000168105 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 4421000168102 Dianeal PD-4 with Glucose 1.5% 4421000168102 Dianeal PD-4 with Glucose 1.5% 867901000168109 glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag 867881000168107 glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +60356011000036107 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 200 mL, bottle (Old Formulation 2002) 14123 56315011000036100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 200 mL (Old Formulation 2002) 53873011000036100 Benadryl Cough Medicine for Dry Coughs oral liquid solution, 5 mL (Old Formulation 2002) 26351000168102 Benadryl Cough Medicine for Dry Coughs 26351000168102 Benadryl Cough Medicine for Dry Coughs 63304011000036107 dextromethorphan hydrobromide monohydrate 15 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid, 200 mL 61913011000036106 dextromethorphan hydrobromide monohydrate 15 mg/5 mL + pseudoephedrine hydrochloride 30 mg/5 mL oral liquid 61751011000036109 dextromethorphan + pseudoephedrine +1026351000168100 Neuroccord 150 mg hard capsule, 21, blister pack 235837 1026341000168102 Neuroccord 150 mg hard capsule, 21 1026071000168106 Neuroccord 150 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855121000168102 pregabalin 150 mg capsule, 21 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +65981000036101 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet, 14, blister pack 119095 63281000036109 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet, 14 61151000036108 Zolpidem Tartrate (Synthon) 10 mg film-coated tablet 60311000036103 Zolpidem Tartrate (Synthon) 60311000036103 Zolpidem Tartrate (Synthon) 46645011000036107 zolpidem tartrate 10 mg tablet, 14 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +39367011000036108 Tarceva 100 mg film-coated tablet, 30, blister pack 114717 39257011000036105 Tarceva 100 mg film-coated tablet, 30 39200011000036101 Tarceva 100 mg film-coated tablet 39177011000036109 Tarceva 39177011000036109 Tarceva 39460011000036103 erlotinib 100 mg tablet, 30 39432011000036108 erlotinib 100 mg tablet 39427011000036107 erlotinib +731091000168104 Exelon-15 13.3 mg/24 hours patch, 30, sachet 222604 731081000168102 Exelon-15 13.3 mg/24 hours patch, 30 731061000168106 Exelon-15 13.3 mg/24 hours patch 731041000168107 Exelon-15 731041000168107 Exelon-15 731071000168100 rivastigmine 13.3 mg/24 hours patch, 30 731051000168109 rivastigmine 13.3 mg/24 hours patch 21413011000036101 rivastigmine +902401000168106 Candesartan (GPPL) 16 mg uncoated tablet, 30, blister pack 195510 902391000168109 Candesartan (GPPL) 16 mg uncoated tablet, 30 902381000168106 Candesartan (GPPL) 16 mg uncoated tablet 902341000168101 Candesartan (GPPL) 902341000168101 Candesartan (GPPL) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +790051000168107 Oxycontin 40 mg modified release tablet, 10, bottle 200036 790041000168105 Oxycontin 40 mg modified release tablet, 10 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 790031000168101 oxycodone hydrochloride 40 mg modified release tablet, 10 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +913951000168109 Albumex-5 2.5 g/50 mL injection solution, 50 mL vial 50595 913931000168103 Albumex-5 2.5 g/50 mL injection solution, 50 mL vial 913891000168106 Albumex-5 2.5 g/50 mL injection solution, 50 mL vial 913701000168107 Albumex-5 913701000168107 Albumex-5 913911000168108 albumin human 2.5 g/50 mL injection, 50 mL vial 913881000168108 albumin human 2.5 g/50 mL injection, vial 69754011000036102 albumin human +60886011000036104 Dimetapp Cold and Allergy Elixir oral liquid solution, 25 mL, bottle 59767 56840011000036103 Dimetapp Cold and Allergy Elixir oral liquid solution, 25 mL 54095011000036106 Dimetapp Cold and Allergy Elixir oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63603011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 25 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +1023461000168101 Aripiprazole (Teva) 30 mg uncoated tablet, 30, blister pack 238012 1023451000168103 Aripiprazole (Teva) 30 mg uncoated tablet, 30 1023441000168100 Aripiprazole (Teva) 30 mg uncoated tablet 1023011000168106 Aripiprazole (Teva) 1023011000168106 Aripiprazole (Teva) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +85066011000036108 Testogel 1% (50 mg/5 g) gel, 30 x 5 g sachets 96131 84930011000036102 Testogel 1% (50 mg/5 g) gel, 30 x 5 g sachets 7417011000036105 Testogel 1% (50 mg/5 g) gel, 5 g sachet 3232011000036108 Testogel 3232011000036108 Testogel 85197011000036104 testosterone 1% (50 mg/5 g) gel, 30 x 5 g sachets 23480011000036100 testosterone 1% (50 mg/5 g) gel, sachet 21290011000036109 testosterone +18258011000036105 Ramipril (Winthrop) 1.25 mg uncoated tablet, 30, blister pack 128845 11867011000036103 Ramipril (Winthrop) 1.25 mg uncoated tablet, 30 5459011000036105 Ramipril (Winthrop) 1.25 mg uncoated tablet 3275011000036103 Ramipril (Winthrop) 3275011000036103 Ramipril (Winthrop) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +933239021000036108 Fentanyl (Sandoz) 75 microgram/hour patch, 10, sachet 152568 933235581000036101 Fentanyl (Sandoz) 75 microgram/hour patch, 10 933234461000036106 Fentanyl (Sandoz) 75 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933235591000036104 fentanyl 75 microgram/hour patch, 10 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +20948011000036108 Parahexal 500 mg uncoated tablet, 100, bottle 94623 14103011000036109 Parahexal 500 mg uncoated tablet, 100 7380011000036104 Parahexal 500 mg uncoated tablet 4111011000036106 Parahexal 4111011000036106 Parahexal 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +1078091000168107 Atomoxetine (AN) 5 mg hard capsule, 56, blister pack 234828 1078081000168109 Atomoxetine (AN) 5 mg hard capsule, 56 1078011000168103 Atomoxetine (AN) 5 mg hard capsule 1077461000168107 Atomoxetine (AN) 1077461000168107 Atomoxetine (AN) 976401000168100 atomoxetine 5 mg capsule, 56 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +931516011000036102 Citalo 20 mg film-coated tablet, 7, blister pack 158873 930677011000036105 Citalo 20 mg film-coated tablet, 7 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1030691000168103 Atomoxetine (Genpar) 80 mg hard capsule, 28, blister pack 234856 1030681000168101 Atomoxetine (Genpar) 80 mg hard capsule, 28 1030611000168107 Atomoxetine (Genpar) 80 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 51553011000036105 atomoxetine 80 mg capsule, 28 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +18350011000036104 Carboplatin (DBL) 50 mg/5 mL injection solution, 5 mL vial 12880 11865011000036108 Carboplatin (DBL) 50 mg/5 mL injection solution, 5 mL vial 5403011000036104 Carboplatin (DBL) 50 mg/5 mL injection solution, 5 mL vial 3040011000036102 Carboplatin (DBL) 3040011000036102 Carboplatin (DBL) 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +1115541000168101 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 30, blister pack 158163 1115531000168105 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet, 30 1115241000168103 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) film-coated tablet 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 1115231000168107 Valsartan/Amlodipine/HCT 160/5/25 (Novartis) 922581011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 30 922094011000036106 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +181601000036109 Candesartan Cilexetil HCTZ 32/12.5 (Chemmart) uncoated tablet, 30, blister pack 210569 181141000036104 Candesartan Cilexetil HCTZ 32/12.5 (Chemmart) uncoated tablet, 30 180581000036105 Candesartan Cilexetil HCTZ 32/12.5 (Chemmart) uncoated tablet 60391000168101 Candesartan Cilexetil HCTZ 32/12.5 (Chemmart) 60391000168101 Candesartan Cilexetil HCTZ 32/12.5 (Chemmart) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +1000401000168101 Tadalafil PHT (Apo) 20 mg film-coated tablet, 14, blister pack 205868 1000391000168103 Tadalafil PHT (Apo) 20 mg film-coated tablet, 14 1000341000168106 Tadalafil PHT (Apo) 20 mg film-coated tablet 1000321000168100 Tadalafil PHT (Apo) 1000321000168100 Tadalafil PHT (Apo) 885431000168102 tadalafil 20 mg tablet, 14 23269011000036107 tadalafil 20 mg tablet 21725011000036104 tadalafil +885141000168102 Betarc 8 mg tablet, 100, blister pack 231713 885131000168106 Betarc 8 mg tablet, 100 885081000168106 Betarc 8 mg tablet 884681000168104 Betarc 884681000168104 Betarc 883151000168104 betahistine dihydrochloride 8 mg tablet, 100 883071000168107 betahistine dihydrochloride 8 mg tablet 44972011000036109 betahistine +59705011000036107 Anti-Fungal (Guardian) 1% cream, 50 g, tube 102008 55672011000036109 Anti-Fungal (Guardian) 1% cream, 50 g 53723011000036101 Anti-Fungal (Guardian) 1% cream 53208011000036105 Anti-Fungal (Guardian) 53208011000036105 Anti-Fungal (Guardian) 63887011000036102 clotrimazole 1% cream, 50 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +1017671000168105 Arizole 5 mg uncoated tablet, 30, bottle 198207 1017661000168104 Arizole 5 mg uncoated tablet, 30 1017651000168101 Arizole 5 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +60419011000036104 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 24, blister pack 145584 56378011000036104 Dimetapp PE Nasal Decongestant 10 mg soft capsule, 24 53895011000036105 Dimetapp PE Nasal Decongestant 10 mg soft capsule 53491011000036102 Dimetapp PE Nasal Decongestant 53491011000036102 Dimetapp PE Nasal Decongestant 63325011000036102 phenylephrine hydrochloride 10 mg capsule, 24 61918011000036101 phenylephrine hydrochloride 10 mg capsule 37732011000036107 phenylephrine +920738011000036101 Memantine (Apo) 10 mg film-coated tablet, 50, blister pack 159582 920421011000036100 Memantine (Apo) 10 mg film-coated tablet, 50 920171011000036102 Memantine (Apo) 10 mg film-coated tablet 7491000168107 Memantine (Apo) 7491000168107 Memantine (Apo) 38841011000036109 memantine hydrochloride 10 mg tablet, 50 38042011000036104 memantine hydrochloride 10 mg tablet 37759011000036103 memantine +43965011000036107 Miostat 0.01% (150 microgram/1.5 mL) intraocular injection, 12 x 1.5 mL vials 40624 41457011000036100 Miostat 0.01% (150 microgram/1.5 mL) intraocular injection, 12 x 1.5 mL vials 39984011000036109 Miostat 0.01% (150 microgram/1.5 mL) intraocular injection, 1.5 mL vial 39621011000036101 Miostat 39621011000036101 Miostat 46306011000036102 carbachol 0.01% (150 microgram/1.5 mL) intraocular injection, 12 x 1.5 mL vials 45065011000036108 carbachol 0.01% (150 microgram/1.5 mL) intraocular injection, vial 37774011000036101 carbachol +1075281000168106 Quetiapine (Auro) 200 mg film-coated tablet, 100, bottle 172857 1075271000168108 Quetiapine (Auro) 200 mg film-coated tablet, 100 1075241000168101 Quetiapine (Auro) 200 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 1075261000168102 quetiapine 200 mg tablet, 100 22749011000036100 quetiapine 200 mg tablet 21452011000036104 quetiapine +961491000168106 Pioglitazone (Apo) 45 mg uncoated tablet, 7, blister pack 166912 961481000168108 Pioglitazone (Apo) 45 mg uncoated tablet, 7 961471000168105 Pioglitazone (Apo) 45 mg uncoated tablet 730631000168100 Pioglitazone (Apo) 730631000168100 Pioglitazone (Apo) 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +913961000168106 Amoxyclav 875/125 (Sandoz) film-coated tablet, 2, blister pack 255081 913941000168107 Amoxyclav 875/125 (Sandoz) film-coated tablet, 2 913901000168105 Amoxyclav 875/125 (Sandoz) film-coated tablet 913811000168102 Amoxyclav 875/125 (Sandoz) 913811000168102 Amoxyclav 875/125 (Sandoz) 913921000168101 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 2 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +43844011000036107 Mirtazapine (GenRx) 45 mg film-coated tablet, 30, bottle 127696 41341011000036102 Mirtazapine (GenRx) 45 mg film-coated tablet, 30 39970011000036105 Mirtazapine (GenRx) 45 mg film-coated tablet 32202011000036106 Mirtazapine (GenRx) 32202011000036106 Mirtazapine (GenRx) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +66061000036101 Antiseptic (Ayrton's) cream, 30 g, jar 11471 63211000036101 Antiseptic (Ayrton's) cream, 30 g 60771000036105 Antiseptic (Ayrton's) cream 60221000036102 Antiseptic (Ayrton's) 60221000036102 Antiseptic (Ayrton's) 63221000036108 dichlorobenzyl alcohol 0.5% + zinc oxide 5% cream, 30 g 60781000036107 dichlorobenzyl alcohol 0.5% + zinc oxide 5% cream 66761000036104 dichlorobenzyl alcohol + zinc oxide +695041000168105 Ondansetron (MYX) 8 mg/4 mL injection solution, 10 x 4 mL ampoules 205599 695031000168101 Ondansetron (MYX) 8 mg/4 mL injection solution, 10 x 4 mL ampoules 695021000168104 Ondansetron (MYX) 8 mg/4 mL injection solution, 4 mL ampoule 694901000168108 Ondansetron (MYX) 694901000168108 Ondansetron (MYX) 922639011000036105 ondansetron 8 mg/4 mL injection, 10 x 4 mL ampoules 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +939851000168108 Celebrex 400 mg hard capsule, 50, blister pack 101341 939841000168106 Celebrex 400 mg hard capsule, 50 939701000168102 Celebrex 400 mg hard capsule 4171011000036100 Celebrex 4171011000036100 Celebrex 939831000168102 celecoxib 400 mg capsule, 50 939691000168102 celecoxib 400 mg capsule 21566011000036101 celecoxib +1050831000168104 Bupredermal 10 microgram/hour patch, 4, sachet 234742 1050821000168102 Bupredermal 10 microgram/hour patch, 4 1050771000168109 Bupredermal 10 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 1046681000168103 buprenorphine 10 microgram/hour patch, 4 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +893811000168108 Imatinib Adult (Cipla) 100 mg hard capsule, 96, blister pack 231747 893801000168105 Imatinib Adult (Cipla) 100 mg hard capsule, 96 893731000168105 Imatinib Adult (Cipla) 100 mg hard capsule 893721000168107 Imatinib Adult (Cipla) 893721000168107 Imatinib Adult (Cipla) 828871000168100 imatinib 100 mg capsule, 96 828791000168109 imatinib 100 mg capsule 21401011000036104 imatinib +1043611000168104 Pryzex 10 mg film-coated tablet, 14, blister pack 178996 1043601000168102 Pryzex 10 mg film-coated tablet, 14 1043531000168105 Pryzex 10 mg film-coated tablet 1043521000168107 Pryzex 1043521000168107 Pryzex 1043591000168109 olanzapine 10 mg tablet, 14 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +68998011000036105 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 100 mL, bottle 13654 66800011000036105 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 100 mL 65398011000036109 Bronchitis Cough Medicine (Nyal) 110 mg/10 mL oral liquid solution, 10 mL 65069011000036102 Bronchitis Cough Medicine (Nyal) 65069011000036102 Bronchitis Cough Medicine (Nyal) 71430011000036106 ammonium chloride 110 mg/10 mL oral liquid, 100 mL 70007011000036102 ammonium chloride 110 mg/10 mL oral liquid 69860011000036103 ammonium chloride +738261000168107 Rosuvastatin (Auro) 20 mg film-coated tablet, 30, blister pack 196999 738251000168105 Rosuvastatin (Auro) 20 mg film-coated tablet, 30 738241000168108 Rosuvastatin (Auro) 20 mg film-coated tablet 738231000168104 Rosuvastatin (Auro) 738231000168104 Rosuvastatin (Auro) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +43602011000036102 Somidem 10 mg film-coated tablet, 10, bottle 119197 41214011000036103 Somidem 10 mg film-coated tablet, 10 39869011000036104 Somidem 10 mg film-coated tablet 39774011000036109 Somidem 39774011000036109 Somidem 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +69712011000036102 Claramax 5 mg film-coated tablet, 5, blister pack 91115 67511011000036104 Claramax 5 mg film-coated tablet, 5 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72027011000036103 desloratadine 5 mg tablet, 5 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +30581000036109 Ibuprofen Period Pain (Medichoice) 200 mg soft capsule, 24, blister pack 176200 28701000036106 Ibuprofen Period Pain (Medichoice) 200 mg soft capsule, 24 26891000036108 Ibuprofen Period Pain (Medichoice) 200 mg soft capsule 30101000168104 Ibuprofen Period Pain (Medichoice) 30101000168104 Ibuprofen Period Pain (Medichoice) 63930011000036103 ibuprofen 200 mg capsule, 24 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +751231000168108 Idarubicin (Aspen) 10 mg/10 mL concentrated injection, 10 mL vial 169913 751221000168105 Idarubicin (Aspen) 10 mg/10 mL concentrated injection, 10 mL vial 751211000168103 Idarubicin (Aspen) 10 mg/10 mL concentrated injection, 10 mL vial 751171000168100 Idarubicin (Aspen) 751171000168100 Idarubicin (Aspen) 33810011000036107 idarubicin hydrochloride 10 mg/10 mL injection, 10 mL vial 33681011000036108 idarubicin hydrochloride 10 mg/10 mL injection, vial 21720011000036108 idarubicin +983081000168104 Cetirizine (AN) 10 mg film-coated tablet, 30, blister pack 126249 983071000168102 Cetirizine (AN) 10 mg film-coated tablet, 30 983001000168107 Cetirizine (AN) 10 mg film-coated tablet 982991000168106 Cetirizine (AN) 982991000168106 Cetirizine (AN) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +60719011000036108 Sinus and Hayfever Relief (Amcal) soft capsule, 10, strip pack 45695 56677011000036108 Sinus and Hayfever Relief (Amcal) soft capsule, 10 54029011000036102 Sinus and Hayfever Relief (Amcal) soft capsule 53513011000036109 Sinus and Hayfever Relief (Amcal) 53513011000036109 Sinus and Hayfever Relief (Amcal) 63503011000036108 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg capsule, 10 61995011000036108 pseudoephedrine hydrochloride 60 mg + chlorphenamine maleate 4 mg capsule 61737011000036102 pseudoephedrine + chlorphenamine +34758011000036100 Rapifen 5 mg/10 mL injection solution, 5 x 10 mL ampoules 50508 34339011000036108 Rapifen 5 mg/10 mL injection solution, 5 x 10 mL ampoules 34053011000036108 Rapifen 5 mg/10 mL injection solution, 10 mL ampoule 33928011000036109 Rapifen 33928011000036109 Rapifen 35187011000036105 alfentanil 5 mg/10 mL injection, 5 x 10 mL ampoules 34897011000036105 alfentanil 5 mg/10 mL injection, ampoule 34836011000036102 alfentanil +18004011000036101 Dexamethasone Phosphate (DBL) 120 mg/5 mL injection solution, 5 mL vial 16372 12111011000036103 Dexamethasone Phosphate (DBL) 120 mg/5 mL injection solution, 5 mL vial 4494011000036109 Dexamethasone Phosphate (DBL) 120 mg/5 mL injection solution, 5 mL vial 3506011000036109 Dexamethasone Phosphate (DBL) 3506011000036109 Dexamethasone Phosphate (DBL) 26921011000036108 dexamethasone phosphate 120 mg/5 mL injection, 5 mL vial 22298011000036107 dexamethasone phosphate 120 mg/5 mL injection, vial 21511011000036107 dexamethasone phosphate +827661000168109 Synflorix injection suspension, 10 x 0.5 mL syringes 149004 827651000168107 Synflorix injection suspension, 10 x 0.5 mL syringes 827601000168108 Synflorix injection suspension, 0.5 mL syringe 82663011000036105 Synflorix 82663011000036105 Synflorix 827641000168105 pneumococcal 10 valent conjugate vaccine injection, 10 x 0.5 mL syringes 827591000168101 pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe 827581000168104 pneumococcal 10 valent conjugate vaccine +1009171000168106 Rivastigmine (Apotex) 6 mg hard capsule, 56, blister pack 160574 1009161000168100 Rivastigmine (Apotex) 6 mg hard capsule, 56 1009111000168103 Rivastigmine (Apotex) 6 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 27694011000036104 rivastigmine 6 mg capsule, 56 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +69695011000036102 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 125 mL, bottle 90412 67494011000036108 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application, 125 mL 65683011000036108 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 0.75% application 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 65164011000036106 Avagard Antiseptic Surgical Hand Scrub with Povidone-Iodine 72009011000036102 povidone-iodine 0.75% application, 125 mL 70277011000036103 povidone-iodine 0.75% application 21660011000036108 povidone-iodine +1101261000168103 Docetaxel (Winthrop) 20 mg/mL concentrated injection, 1 mL vial 161371 1101251000168100 Docetaxel (Winthrop) 20 mg/mL concentrated injection, 1 mL vial 1101241000168102 Docetaxel (Winthrop) 20 mg/mL concentrated injection, vial 1101141000168105 Docetaxel (Winthrop) 1101141000168105 Docetaxel (Winthrop) 925427011000036101 docetaxel 20 mg/mL injection, 1 mL vial 925383011000036107 docetaxel 20 mg/mL injection, vial 21721011000036101 docetaxel +879521000168109 Flucloxacillin (Blooms The Chemist) 250 mg capsule, 24, blister pack 226371 879511000168102 Flucloxacillin (Blooms The Chemist) 250 mg capsule, 24 879501000168100 Flucloxacillin (Blooms The Chemist) 250 mg capsule 879491000168107 Flucloxacillin (Blooms The Chemist) 879491000168107 Flucloxacillin (Blooms The Chemist) 27676011000036104 flucloxacillin 250 mg capsule, 24 23013011000036101 flucloxacillin 250 mg capsule 21623011000036108 flucloxacillin +59676011000036100 Rikodeine 19 mg/10 mL oral liquid solution, 100 mL, bottle 10587 55718011000036105 Rikodeine 19 mg/10 mL oral liquid solution, 100 mL 53614011000036103 Rikodeine 19 mg/10 mL oral liquid solution, 10 mL 53421011000036105 Rikodeine 53421011000036105 Rikodeine 63114011000036100 dihydrocodeine tartrate 19 mg/10 mL oral liquid, 100 mL 61860011000036106 dihydrocodeine tartrate 19 mg/10 mL oral liquid 34841011000036108 dihydrocodeine +752601000168107 Oxycodone (WT) 20 mg hard capsule, 60, bottle 227855 752591000168100 Oxycodone (WT) 20 mg hard capsule, 60 752561000168107 Oxycodone (WT) 20 mg hard capsule 752291000168103 Oxycodone (WT) 752291000168103 Oxycodone (WT) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +20251011000036102 Glucohexal 500 mg film-coated tablet, 100, bottle 74632 13462011000036104 Glucohexal 500 mg film-coated tablet, 100 6744011000036104 Glucohexal 500 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +20251011000036102 Glucohexal 500 mg film-coated tablet, 100, bottle 148268 13462011000036104 Glucohexal 500 mg film-coated tablet, 100 6744011000036104 Glucohexal 500 mg film-coated tablet 3062011000036106 Glucohexal 3062011000036106 Glucohexal 28037011000036102 metformin hydrochloride 500 mg tablet, 100 23358011000036102 metformin hydrochloride 500 mg tablet 21614011000036102 metformin +79685011000036102 Nicabate Mini 4 mg lozenge, 20, tube 156604 79505011000036108 Nicabate Mini 4 mg lozenge, 20 79388011000036103 Nicabate Mini 4 mg lozenge 31811000168102 Nicabate Mini 31811000168102 Nicabate Mini 79823011000036104 nicotine 4 mg lozenge, 20 79750011000036108 nicotine 4 mg lozenge 21432011000036100 nicotine +68652011000036100 Chlorhexidine Gluconate Surgical Scrub (Orion) 4% application, 5 L, bottle 11331 66608011000036101 Chlorhexidine Gluconate Surgical Scrub (Orion) 4% application, 5 L 65456011000036105 Chlorhexidine Gluconate Surgical Scrub (Orion) 4% application 60971000168101 Chlorhexidine Gluconate Surgical Scrub (Orion) 60971000168101 Chlorhexidine Gluconate Surgical Scrub (Orion) 71330011000036103 chlorhexidine gluconate 4% application, 5 L 69954011000036105 chlorhexidine gluconate 4% application 21404011000036101 chlorhexidine +1017711000168109 Arizole 5 mg uncoated tablet, 28, blister pack 198209 1017701000168106 Arizole 5 mg uncoated tablet, 28 1017651000168101 Arizole 5 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 46872011000036106 aripiprazole 5 mg tablet, 28 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +60373011000036103 Pholcodine Linctus (David Craig) 1 mg/mL oral liquid solution, 100 mL, bottle 14225 56332011000036100 Pholcodine Linctus (David Craig) 1 mg/mL oral liquid solution, 100 mL 53878011000036105 Pholcodine Linctus (David Craig) 1 mg/mL oral liquid solution 53291011000036103 Pholcodine Linctus (David Craig) 53291011000036103 Pholcodine Linctus (David Craig) 27009011000036105 pholcodine 1 mg/mL oral liquid, 100 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +69603011000036101 Bisalax 5 mg enteric tablet, 150, blister pack 70516 67402011000036101 Bisalax 5 mg enteric tablet, 150 6628011000036102 Bisalax 5 mg enteric tablet 1091000168108 Bisalax 1091000168108 Bisalax 71937011000036105 bisacodyl 5 mg enteric tablet, 150 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +758541000168106 Clotrimazole 3 Day Thrush Treatment (Chemmart) 2% vaginal cream, 20 g, tube 227240 758531000168102 Clotrimazole 3 Day Thrush Treatment (Chemmart) 2% vaginal cream, 20 g 758521000168100 Clotrimazole 3 Day Thrush Treatment (Chemmart) 2% vaginal cream 758511000168107 Clotrimazole 3 Day Thrush Treatment (Chemmart) 758511000168107 Clotrimazole 3 Day Thrush Treatment (Chemmart) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +926770011000036107 ZepAllergy 10 mg film-coated tablet, 30, blister pack 153579 926167011000036108 ZepAllergy 10 mg film-coated tablet, 30 925653011000036109 ZepAllergy 10 mg film-coated tablet 925523011000036104 ZepAllergy 925523011000036104 ZepAllergy 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +974331000168106 Bosentan (GH) 125 mg film-coated tablet, 56, blister pack 235892 974321000168108 Bosentan (GH) 125 mg film-coated tablet, 56 974261000168107 Bosentan (GH) 125 mg film-coated tablet 974251000168105 Bosentan (GH) 974251000168105 Bosentan (GH) 878831000168104 bosentan 125 mg tablet, 56 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +1059471000168108 Atomoxetine (Medis) 100 mg hard capsule, 28, blister pack 238334 1059461000168102 Atomoxetine (Medis) 100 mg hard capsule, 28 1059431000168105 Atomoxetine (Medis) 100 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 51555011000036106 atomoxetine 100 mg capsule, 28 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +1009131000168108 Rivastigmine (Apotex) 6 mg hard capsule, 14, blister pack 160574 1009121000168105 Rivastigmine (Apotex) 6 mg hard capsule, 14 1009111000168103 Rivastigmine (Apotex) 6 mg hard capsule 1008771000168103 Rivastigmine (Apotex) 1008771000168103 Rivastigmine (Apotex) 1003311000168102 rivastigmine 6 mg capsule, 14 23031011000036106 rivastigmine 6 mg capsule 21413011000036101 rivastigmine +20332011000036102 Maxamox 1 g film-coated tablet, 14, blister pack 76050 13541011000036106 Maxamox 1 g film-coated tablet, 14 6824011000036100 Maxamox 1 g film-coated tablet 3010011000036106 Maxamox 3010011000036106 Maxamox 28289011000036109 amoxicillin 1 g tablet, 14 23603011000036106 amoxicillin 1 g tablet 21415011000036100 amoxicillin +915431000168109 Ampicillin (AG) 500 mg powder for injection, 5 vials 203936 915421000168106 Ampicillin (AG) 500 mg powder for injection, 5 vials 915411000168104 Ampicillin (AG) 500 mg powder for injection, 500 mg vial 915401000168102 Ampicillin (AG) 915401000168102 Ampicillin (AG) 28098011000036109 ampicillin 500 mg injection, 5 vials 23406011000036103 ampicillin 500 mg injection, vial 21671011000036106 ampicillin +1055171000168100 Tramadol SR (Sandoz) 150 mg modified release tablet, 20, bottle 99257 926351011000036104 Tramadol SR (Sandoz) 150 mg modified release tablet, 20 925778011000036106 Tramadol SR (Sandoz) 150 mg modified release tablet 32631000168103 Tramadol SR (Sandoz) 32631000168103 Tramadol SR (Sandoz) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +920679011000036104 Flumazenil (DBL) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 121098 920371011000036106 Flumazenil (DBL) 500 microgram/5 mL injection solution, 5 x 5 mL ampoules 920137011000036107 Flumazenil (DBL) 500 microgram/5 mL injection solution, 5 mL ampoule 920088011000036106 Flumazenil (DBL) 920088011000036106 Flumazenil (DBL) 38694011000036109 flumazenil 500 microgram/5 mL injection, 5 x 5 mL ampoules 37931011000036105 flumazenil 500 microgram/5 mL injection, ampoule 37762011000036103 flumazenil +69666011000036106 Nicabate Clear 7 mg/24 hours patch, 3, sachet 81033 67465011000036105 Nicabate Clear 7 mg/24 hours patch, 3 65674011000036101 Nicabate Clear 7 mg/24 hours patch 19371000168107 Nicabate Clear 19371000168107 Nicabate Clear 71993011000036108 nicotine 7 mg/24 hours patch, 3 23248011000036108 nicotine 7 mg/24 hours patch 21432011000036100 nicotine +50233011000036108 Rixadone 500 microgram film-coated tablet, 60, blister pack 199179 49566011000036106 Rixadone 500 microgram film-coated tablet, 60 48681011000036106 Rixadone 500 microgram film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +50233011000036108 Rixadone 500 microgram film-coated tablet, 60, blister pack 127892 49566011000036106 Rixadone 500 microgram film-coated tablet, 60 48681011000036106 Rixadone 500 microgram film-coated tablet 48404011000036108 Rixadone 48404011000036108 Rixadone 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +919701000168109 Tranexamic Acid (Apo) 500 mg film-coated tablet, 100, bottle 272727 919681000168106 Tranexamic Acid (Apo) 500 mg film-coated tablet, 100 919671000168108 Tranexamic Acid (Apo) 500 mg film-coated tablet 919661000168102 Tranexamic Acid (Apo) 919661000168102 Tranexamic Acid (Apo) 26862011000036101 tranexamic acid 500 mg tablet, 100 22242011000036103 tranexamic acid 500 mg tablet 21746011000036108 tranexamic acid +19888011000036106 Metronide 400 mg uncoated tablet, 21, blister pack 160175 13135011000036101 Metronide 400 mg uncoated tablet, 21 6418011000036105 Metronide 400 mg uncoated tablet 3492011000036102 Metronide 3492011000036102 Metronide 27573011000036103 metronidazole 400 mg tablet, 21 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +19888011000036106 Metronide 400 mg uncoated tablet, 21, blister pack 65539 13135011000036101 Metronide 400 mg uncoated tablet, 21 6418011000036105 Metronide 400 mg uncoated tablet 3492011000036102 Metronide 3492011000036102 Metronide 27573011000036103 metronidazole 400 mg tablet, 21 22912011000036106 metronidazole 400 mg tablet 21482011000036106 metronidazole +1107131000168107 Olumiant 2 mg film-coated tablet, 7, blister pack 277905 1107121000168109 Olumiant 2 mg film-coated tablet, 7 1107101000168100 Olumiant 2 mg film-coated tablet 1107071000168109 Olumiant 1107071000168109 Olumiant 1107111000168102 baricitinib 2 mg tablet, 7 1107091000168105 baricitinib 2 mg tablet 1107081000168107 baricitinib +888111000168107 Bosentan (Intas) 62.5 mg film-coated tablet, 100, bottle 235888 888101000168109 Bosentan (Intas) 62.5 mg film-coated tablet, 100 888071000168100 Bosentan (Intas) 62.5 mg film-coated tablet 888061000168106 Bosentan (Intas) 888061000168106 Bosentan (Intas) 884251000168108 bosentan 62.5 mg tablet, 100 23376011000036104 bosentan 62.5 mg tablet 21607011000036105 bosentan +997341000168100 Meloxicam (Apotex) 15 mg hard capsule, 30, blister pack 181197 997331000168109 Meloxicam (Apotex) 15 mg hard capsule, 30 997281000168101 Meloxicam (Apotex) 15 mg hard capsule 997221000168100 Meloxicam (Apotex) 997221000168100 Meloxicam (Apotex) 27847011000036107 meloxicam 15 mg capsule, 30 23175011000036103 meloxicam 15 mg capsule 21678011000036102 meloxicam +1032141000168104 Aripra 5 mg uncoated tablet, 250, bottle 217247 1032131000168108 Aripra 5 mg uncoated tablet, 250 1031641000168102 Aripra 5 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 1015321000168107 aripiprazole 5 mg tablet, 250 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +929065011000036104 Idarubicin Hydrochloride (Ebewe) 10 mg/10 mL concentrated injection, 10 mL vial 162931 928426011000036108 Idarubicin Hydrochloride (Ebewe) 10 mg/10 mL concentrated injection, 10 mL vial 927972011000036103 Idarubicin Hydrochloride (Ebewe) 10 mg/10 mL concentrated injection, 10 mL vial 927760011000036104 Idarubicin Hydrochloride (Ebewe) 927760011000036104 Idarubicin Hydrochloride (Ebewe) 33810011000036107 idarubicin hydrochloride 10 mg/10 mL injection, 10 mL vial 33681011000036108 idarubicin hydrochloride 10 mg/10 mL injection, vial 21720011000036108 idarubicin +1059451000168104 Atomoxetine (Medis) 100 mg hard capsule, 7, blister pack 238334 1059441000168101 Atomoxetine (Medis) 100 mg hard capsule, 7 1059431000168105 Atomoxetine (Medis) 100 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 51556011000036104 atomoxetine 100 mg capsule, 7 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +971681000168103 Lypralin 150 mg hard capsule, 60, bottle 235852 969641000168102 Lypralin 150 mg hard capsule, 60 969571000168105 Lypralin 150 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 855171000168101 pregabalin 150 mg capsule, 60 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +654781000168109 Valsartan (Apo) 80 mg film-coated tablet, 28, blister pack 185814 654771000168106 Valsartan (Apo) 80 mg film-coated tablet, 28 654761000168100 Valsartan (Apo) 80 mg film-coated tablet 654721000168105 Valsartan (Apo) 654721000168105 Valsartan (Apo) 63784011000036105 valsartan 80 mg tablet, 28 62078011000036100 valsartan 80 mg tablet 61720011000036101 valsartan +1046581000168102 Buprenorphine (SDZ) 20 microgram/hour patch, 2, sachet 269673 1046571000168100 Buprenorphine (SDZ) 20 microgram/hour patch, 2 1046531000168103 Buprenorphine (SDZ) 20 microgram/hour patch 1046201000168108 Buprenorphine (SDZ) 1046201000168108 Buprenorphine (SDZ) 26682011000036106 buprenorphine 20 microgram/hour patch, 2 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +931362011000036102 Sudafed Sinus and Nasal Decongestant 60 mg uncoated tablet, 30, blister pack 11003 930558011000036100 Sudafed Sinus and Nasal Decongestant 60 mg uncoated tablet, 30 929941011000036101 Sudafed Sinus and Nasal Decongestant 60 mg uncoated tablet 929872011000036104 Sudafed Sinus and Nasal Decongestant 929872011000036104 Sudafed Sinus and Nasal Decongestant 27343011000036101 pseudoephedrine hydrochloride 60 mg tablet, 30 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +931499011000036102 Topira-Lax 50 mg film-coated tablet, 60, blister pack 155214 928299011000036109 Topira-Lax 50 mg film-coated tablet, 60 927928011000036101 Topira-Lax 50 mg film-coated tablet 927828011000036107 Topira-Lax 927828011000036107 Topira-Lax 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +778471000168100 Oxycodone MR (Apo) 10 mg modified release tablet, 20, blister pack 214501 778461000168106 Oxycodone MR (Apo) 10 mg modified release tablet, 20 778451000168109 Oxycodone MR (Apo) 10 mg modified release tablet 777911000168104 Oxycodone MR (Apo) 777911000168104 Oxycodone MR (Apo) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +20781011000036103 Cortic-DS 1% ointment, 30 g, tube 91052 13950011000036108 Cortic-DS 1% ointment, 30 g 7237011000036104 Cortic-DS 1% ointment 16801000168104 Cortic-DS 16801000168104 Cortic-DS 28031011000036105 hydrocortisone acetate 1% ointment, 30 g 23353011000036107 hydrocortisone acetate 1% ointment 21231011000036107 hydrocortisone acetate +1104001000168106 Quetiaccord 100 mg film-coated tablet, 20, blister pack 170855 1103991000168103 Quetiaccord 100 mg film-coated tablet, 20 3671000036108 Quetiaccord 100 mg film-coated tablet 1171000036101 Quetiaccord 1171000036101 Quetiaccord 652221000168107 quetiapine 100 mg tablet, 20 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +933211311000036107 Roflo 500 mg film-coated tablet, 10, blister pack 125323 933200411000036107 Roflo 500 mg film-coated tablet, 10 933194341000036109 Roflo 500 mg film-coated tablet 933193661000036101 Roflo 933193661000036101 Roflo 933199771000036102 ciprofloxacin 500 mg tablet, 10 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +1109761000168109 Nicotinell Ice Mint 2 mg chewing gum, 384, blister pack 279615 1109751000168107 Nicotinell Ice Mint 2 mg chewing gum, 384 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897651000168103 nicotine 2 mg gum, 384 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +892451000168102 Candesartan HCT 32/25 (Alphapharm) tablet, 7, blister pack 206483 892441000168104 Candesartan HCT 32/25 (Alphapharm) tablet, 7 892431000168108 Candesartan HCT 32/25 (Alphapharm) tablet 892421000168105 Candesartan HCT 32/25 (Alphapharm) 892421000168105 Candesartan HCT 32/25 (Alphapharm) 83495011000036103 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 7 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +69182011000036105 Stingose 20% spray solution, 25 mL, bottle 17127 66982011000036104 Stingose 20% spray solution, 25 mL 65234011000036100 Stingose 20% spray solution 64947011000036100 Stingose 64947011000036100 Stingose 71555011000036108 aluminium sulfate 20% spray, 25 mL 70061011000036106 aluminium sulfate 20% spray 69836011000036107 aluminium sulfate +926890011000036103 Pratsiol 1 mg uncoated tablet, 100, blister pack 75044 926286011000036109 Pratsiol 1 mg uncoated tablet, 100 925730011000036106 Pratsiol 1 mg uncoated tablet 925549011000036103 Pratsiol 925549011000036103 Pratsiol 27727011000036107 prazosin 1 mg tablet, 100 23062011000036109 prazosin 1 mg tablet 21544011000036104 prazosin +913871000168105 Cisatracurium (SXP) 150 mg/30 mL injection solution, 30 mL vial 181599 913861000168104 Cisatracurium (SXP) 150 mg/30 mL injection solution, 30 mL vial 913851000168101 Cisatracurium (SXP) 150 mg/30 mL injection solution, 30 mL vial 913621000168105 Cisatracurium (SXP) 913621000168105 Cisatracurium (SXP) 161591000036100 cisatracurium 150 mg/30 mL injection, 30 mL vial 161501000036108 cisatracurium 150 mg/30 mL injection, vial 44902011000036101 cisatracurium +928929011000036102 Valaciclovir (Sandoz) 500 mg film-coated tablet, 10, blister pack 154464 928291011000036105 Valaciclovir (Sandoz) 500 mg film-coated tablet, 10 927924011000036108 Valaciclovir (Sandoz) 500 mg film-coated tablet 927787011000036101 Valaciclovir (Sandoz) 927787011000036101 Valaciclovir (Sandoz) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +654621000168103 Glimepiride (AN) 1 mg uncoated tablet, 30, blister pack 156398 654611000168105 Glimepiride (AN) 1 mg uncoated tablet, 30 654601000168107 Glimepiride (AN) 1 mg uncoated tablet 654591000168100 Glimepiride (AN) 654591000168100 Glimepiride (AN) 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +785871000168104 Oxycodone (Sandoz) 20 mg modified release tablet, 28, bottle 153618 676381000168101 Oxycodone (Sandoz) 20 mg modified release tablet, 28 676371000168104 Oxycodone (Sandoz) 20 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +81183011000036108 Robitussin Chesty Cough 200 mg soft capsule, 40, blister pack 74414 80685011000036104 Robitussin Chesty Cough 200 mg soft capsule, 40 80237011000036102 Robitussin Chesty Cough 200 mg soft capsule 80115011000036102 Robitussin Chesty Cough 80115011000036102 Robitussin Chesty Cough 81740011000036101 guaifenesin 200 mg capsule, 40 81305011000036102 guaifenesin 200 mg capsule 61763011000036101 guaifenesin +20297011000036103 Tamoxifen (Chemmart) 20 mg uncoated tablet, 60, blister pack 75589 13506011000036108 Tamoxifen (Chemmart) 20 mg uncoated tablet, 60 6788011000036100 Tamoxifen (Chemmart) 20 mg uncoated tablet 3135011000036102 Tamoxifen (Chemmart) 3135011000036102 Tamoxifen (Chemmart) 27919011000036103 tamoxifen 20 mg tablet, 60 23243011000036103 tamoxifen 20 mg tablet 21494011000036103 tamoxifen +44460011000036103 Clexane Forte 150 mg/mL injection solution, 10 x 1 mL syringes 74175 41916011000036107 Clexane Forte 150 mg/mL injection solution, 10 x 1 mL syringes 40263011000036108 Clexane Forte 150 mg/mL injection solution, syringe 8871000168107 Clexane Forte 8871000168107 Clexane Forte 46705011000036108 enoxaparin sodium 150 mg/mL injection, 10 x 1 mL syringes 45276011000036101 enoxaparin sodium 150 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +69015011000036107 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 9 sachets 138697 66817011000036109 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 9 sachets 65271011000036101 Lemsip Max Cold and Flu lemon 1 g powder for oral liquid, 1 sachet 2501000168102 Lemsip Max Cold and Flu 2501000168102 Lemsip Max Cold and Flu 71446011000036108 paracetamol 1 g powder for oral liquid, 9 sachets 70253011000036109 paracetamol 1 g powder for oral liquid, 1 sachet 21433011000036107 paracetamol +69453011000036106 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 48 x 100 mL bags 48525 67253011000036104 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 48 x 100 mL bags 65576011000036104 Glucose (Baxter) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 3320011000036100 Glucose (Baxter) 3320011000036100 Glucose (Baxter) 71803011000036100 glucose 5% (5 g/100 mL) injection, 48 x 100 mL bags 70192011000036108 glucose 5% (5 g/100 mL) injection, bag 21354011000036103 glucose +61370011000036104 Decongestant (Pharmacy Health) 60 mg uncoated tablet, 12, blister pack 81527 57295011000036105 Decongestant (Pharmacy Health) 60 mg uncoated tablet, 12 54262011000036108 Decongestant (Pharmacy Health) 60 mg uncoated tablet 53408011000036109 Decongestant (Pharmacy Health) 53408011000036109 Decongestant (Pharmacy Health) 33824011000036105 pseudoephedrine hydrochloride 60 mg tablet, 12 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +926829011000036103 Metformin 1000 (Apo) 1 g film-coated tablet, 90, blister pack 176509 926225011000036105 Metformin 1000 (Apo) 1 g film-coated tablet, 90 925684011000036100 Metformin 1000 (Apo) 1 g film-coated tablet 22791000168107 Metformin 1000 (Apo) 22791000168107 Metformin 1000 (Apo) 28039011000036109 metformin hydrochloride 1 g tablet, 90 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +37570011000036105 Sodium Nitroprusside (DBL) 50 mg powder for injection, 10 vials 16291 36837011000036106 Sodium Nitroprusside (DBL) 50 mg powder for injection, 10 vials 36007011000036101 Sodium Nitroprusside (DBL) 50 mg powder for injection, 50 mg vial 35919011000036103 Sodium Nitroprusside (DBL) 35919011000036103 Sodium Nitroprusside (DBL) 38726011000036104 sodium nitroprusside 50 mg injection, 10 vials 37956011000036104 sodium nitroprusside 50 mg injection, vial 37746011000036105 nitroprusside +1049221000168106 Novacodone 15 mg modified release tablet, 20, blister pack 228442 1049211000168104 Novacodone 15 mg modified release tablet, 20 1049201000168102 Novacodone 15 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 71471011000036102 oxycodone hydrochloride 15 mg modified release tablet, 20 70023011000036104 oxycodone hydrochloride 15 mg modified release tablet 21259011000036105 oxycodone +1076651000168109 Quetiapine (Auro) 25 mg film-coated tablet, 100, bottle 172834 1076641000168107 Quetiapine (Auro) 25 mg film-coated tablet, 100 1076131000168105 Quetiapine (Auro) 25 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 1076631000168103 quetiapine 25 mg tablet, 100 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +1069591000168102 Ibuprofen plus Codeine (Sandoz) film-coated tablet, 30, blister pack 211512 1069581000168100 Ibuprofen plus Codeine (Sandoz) film-coated tablet, 30 1069571000168103 Ibuprofen plus Codeine (Sandoz) film-coated tablet 1069561000168109 Ibuprofen plus Codeine (Sandoz) 1069561000168109 Ibuprofen plus Codeine (Sandoz) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +997981000168106 Imatinib (Apo) 400 mg film-coated tablet, 500, bottle 196035 997971000168108 Imatinib (Apo) 400 mg film-coated tablet, 500 997921000168107 Imatinib (Apo) 400 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 829241000168104 imatinib 400 mg tablet, 500 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +781941000168100 Voriconazole (Alphapharm) 50 mg film-coated tablet, 10, blister pack 206984 781931000168109 Voriconazole (Alphapharm) 50 mg film-coated tablet, 10 781891000168101 Voriconazole (Alphapharm) 50 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46811011000036106 voriconazole 50 mg tablet, 10 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +1077291000168104 Atomoxetine (AS) 10 mg hard capsule, 28, blister pack 238358 1077281000168102 Atomoxetine (AS) 10 mg hard capsule, 28 1077251000168109 Atomoxetine (AS) 10 mg hard capsule 1076941000168104 Atomoxetine (AS) 1076941000168104 Atomoxetine (AS) 28013011000036100 atomoxetine 10 mg capsule, 28 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +60632011000036104 Quinine Dihydrochloride (Phebra) 600 mg/10 mL (6%) injection solution, 10 x 10 mL vials 23101 56590011000036105 Quinine Dihydrochloride (Phebra) 600 mg/10 mL (6%) injection solution, 10 x 10 mL vials 53993011000036103 Quinine Dihydrochloride (Phebra) 600 mg/10 mL (6%) injection solution, 10 mL vial 53566011000036102 Quinine Dihydrochloride (Phebra) 53566011000036102 Quinine Dihydrochloride (Phebra) 63444011000036107 quinine dihydrochloride 600 mg/10 mL (6%) injection, 10 x 10 mL vials 61969011000036108 quinine dihydrochloride 600 mg/10 mL (6%) injection, vial 21513011000036108 quinine +1066781000168100 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 10, blister pack 197885 1066771000168103 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet, 10 83654011000036105 Ibuprofen plus Codeine (Pharmacy Choice) film-coated tablet 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 83599011000036106 Ibuprofen plus Codeine (Pharmacy Choice) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +61525011000036106 Dolased Analgesic and Calmative uncoated tablet, 20, blister pack 93507 57450011000036107 Dolased Analgesic and Calmative uncoated tablet, 20 54306011000036100 Dolased Analgesic and Calmative uncoated tablet 53285011000036100 Dolased Analgesic and Calmative 53285011000036100 Dolased Analgesic and Calmative 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +61525011000036106 Dolased Analgesic and Calmative uncoated tablet, 20, blister pack 157880 57450011000036107 Dolased Analgesic and Calmative uncoated tablet, 20 54306011000036100 Dolased Analgesic and Calmative uncoated tablet 53285011000036100 Dolased Analgesic and Calmative 53285011000036100 Dolased Analgesic and Calmative 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +14271000036105 Ozin 5 mg uncoated tablet, 28, blister pack 179915 7881000036104 Ozin 5 mg uncoated tablet, 28 2111000036104 Ozin 5 mg uncoated tablet 1071000036100 Ozin 1071000036100 Ozin 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +794551000168106 Tacrolimus (Sandoz) 2 mg hard capsule, 50, blister pack 229757 794541000168109 Tacrolimus (Sandoz) 2 mg hard capsule, 50 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794531000168100 tacrolimus 2 mg capsule, 50 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +933211791000036101 Ciprofloxacin (BL) 500 mg film-coated tablet, 14, blister pack 114047 933199801000036104 Ciprofloxacin (BL) 500 mg film-coated tablet, 14 933194151000036105 Ciprofloxacin (BL) 500 mg film-coated tablet 933193251000036101 Ciprofloxacin (BL) 933193251000036101 Ciprofloxacin (BL) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +931831000168103 Centevo 100/25/200 mg film-coated tablet, 150, bottle 238855 931821000168101 Centevo 100/25/200 mg film-coated tablet, 150 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931811000168108 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 150 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +649161000168102 Mirtazapine ODT (Sandoz) 15 mg orally disintegrating tablet, 30, blister pack 183401 649151000168104 Mirtazapine ODT (Sandoz) 15 mg orally disintegrating tablet, 30 649141000168101 Mirtazapine ODT (Sandoz) 15 mg orally disintegrating tablet 649131000168105 Mirtazapine ODT (Sandoz) 649131000168105 Mirtazapine ODT (Sandoz) 47681000036105 mirtazapine 15 mg orally disintegrating tablet, 30 47581000036109 mirtazapine 15 mg orally disintegrating tablet 21463011000036102 mirtazapine +696251000168106 Midazolam (MYX) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 207239 696241000168109 Midazolam (MYX) 5 mg/5 mL injection solution, 10 x 5 mL ampoules 696231000168100 Midazolam (MYX) 5 mg/5 mL injection solution, 5 mL ampoule 696191000168109 Midazolam (MYX) 696191000168109 Midazolam (MYX) 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +1030131000168109 Atomoxetine (Genpar) 100 mg hard capsule, 56, blister pack 234835 1030121000168106 Atomoxetine (Genpar) 100 mg hard capsule, 56 1029991000168100 Atomoxetine (Genpar) 100 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830171000168108 atomoxetine 100 mg capsule, 56 51001011000036100 atomoxetine 100 mg capsule 21650011000036101 atomoxetine +657751000168108 Telmisartan/HCT 40mg/12.5mg (Sandoz) film-coated tablet, 28, blister pack 201356 657741000168106 Telmisartan/HCT 40mg/12.5mg (Sandoz) film-coated tablet, 28 657731000168102 Telmisartan/HCT 40mg/12.5mg (Sandoz) film-coated tablet 657721000168100 Telmisartan/HCT 40mg/12.5mg (Sandoz) 657721000168100 Telmisartan/HCT 40mg/12.5mg (Sandoz) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +1072971000168107 Pantoprazole (Generic Health) 20 mg enteric tablet, 140, blister pack 191032 1072961000168101 Pantoprazole (Generic Health) 20 mg enteric tablet, 140 920168011000036103 Pantoprazole (Generic Health) 20 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46672011000036100 pantoprazole 20 mg enteric tablet, 140 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +1101101000168108 Sitagliptin (Chemmart) 100 mg coated tablet, 28, blister pack 224397 1101091000168103 Sitagliptin (Chemmart) 100 mg coated tablet, 28 1101081000168101 Sitagliptin (Chemmart) 100 mg coated tablet 1101031000168102 Sitagliptin (Chemmart) 1101031000168102 Sitagliptin (Chemmart) 39482011000036102 sitagliptin 100 mg tablet, 28 39437011000036105 sitagliptin 100 mg tablet 39426011000036109 sitagliptin +43654011000036104 Sertraline (GA) 50 mg film-coated tablet, 30, blister pack 124853 41317011000036104 Sertraline (GA) 50 mg film-coated tablet, 30 39831011000036106 Sertraline (GA) 50 mg film-coated tablet 39729011000036106 Sertraline (GA) 39729011000036106 Sertraline (GA) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +43654011000036104 Sertraline (GA) 50 mg film-coated tablet, 30, blister pack 195312 41317011000036104 Sertraline (GA) 50 mg film-coated tablet, 30 39831011000036106 Sertraline (GA) 50 mg film-coated tablet 39729011000036106 Sertraline (GA) 39729011000036106 Sertraline (GA) 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +925313011000036105 Clopidogrel (Actavis) 75 mg film-coated tablet, 10, blister pack 164866 924849011000036109 Clopidogrel (Actavis) 75 mg film-coated tablet, 10 924530011000036101 Clopidogrel (Actavis) 75 mg film-coated tablet 924382011000036106 Clopidogrel (Actavis) 924382011000036106 Clopidogrel (Actavis) 925441011000036107 clopidogrel 75 mg tablet, 10 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +905931000168104 Carlevent 50/12.5/200 film-coated tablet, 100, bottle 195198 905921000168102 Carlevent 50/12.5/200 film-coated tablet, 100 905911000168109 Carlevent 50/12.5/200 film-coated tablet 905901000168106 Carlevent 50/12.5/200 905901000168106 Carlevent 50/12.5/200 28183011000036108 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet, 100 23493011000036107 levodopa 50 mg + carbidopa 12.5 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +783861000168109 Remeron Soltab 30 mg orally disintegrating tablet, 30, blister pack 90437 783851000168107 Remeron Soltab 30 mg orally disintegrating tablet, 30 783841000168105 Remeron Soltab 30 mg orally disintegrating tablet 783801000168108 Remeron Soltab 783801000168108 Remeron Soltab 47691000036107 mirtazapine 30 mg orally disintegrating tablet, 30 47561000036104 mirtazapine 30 mg orally disintegrating tablet 21463011000036102 mirtazapine +18534011000036107 Pravastatin Sodium (Terry White Chemists) 10 mg uncoated tablet, 30, blister pack 118727 11592011000036103 Pravastatin Sodium (Terry White Chemists) 10 mg uncoated tablet, 30 4787011000036105 Pravastatin Sodium (Terry White Chemists) 10 mg uncoated tablet 3101011000036106 Pravastatin Sodium (Terry White Chemists) 3101011000036106 Pravastatin Sodium (Terry White Chemists) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +43873011000036106 Felodil XR 10 mg modified release tablet, 30, blister pack 128795 41369011000036105 Felodil XR 10 mg modified release tablet, 30 39807011000036107 Felodil XR 10 mg modified release tablet 43531000168107 Felodil XR 43531000168107 Felodil XR 27476011000036101 felodipine 10 mg modified release tablet, 30 22822011000036106 felodipine 10 mg modified release tablet 21440011000036100 felodipine +1068951000168106 Ibuprofen plus Codeine (Priceline Pharmacy) film-coated tablet, 20, blister pack 169109 1068941000168109 Ibuprofen plus Codeine (Priceline Pharmacy) film-coated tablet, 20 1068931000168100 Ibuprofen plus Codeine (Priceline Pharmacy) film-coated tablet 1068921000168103 Ibuprofen plus Codeine (Priceline Pharmacy) 1068921000168103 Ibuprofen plus Codeine (Priceline Pharmacy) 90131000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 20 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +61180011000036103 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 12, bottle 75200 57404011000036109 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 12 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46258011000036102 paracetamol 500 mg tablet, 12 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +863071000168109 Amitriptyline (AC) 25 mg tablet, 90, blister pack 232107 863061000168103 Amitriptyline (AC) 25 mg tablet, 90 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 742091000168108 amitriptyline hydrochloride 25 mg tablet, 90 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1075121000168103 Atenolol (RBX) 100 mg film-coated tablet, 500, bottle 197762 1075111000168105 Atenolol (RBX) 100 mg film-coated tablet, 500 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1033381000168100 atenolol 100 mg tablet, 500 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +45931000036107 Ramipril (Apo) 2.5 mg capsule, 30, bottle 179015 43241000036107 Ramipril (Apo) 2.5 mg capsule, 30 41411000036106 Ramipril (Apo) 2.5 mg capsule 21641000168101 Ramipril (Apo) 21641000168101 Ramipril (Apo) 32762011000036101 ramipril 2.5 mg capsule, 30 32693011000036103 ramipril 2.5 mg capsule 21395011000036107 ramipril +1026111000168104 Pregabalin (Amneal) 25 mg hard capsule, 200, bottle 235853 1026101000168102 Pregabalin (Amneal) 25 mg hard capsule, 200 1025621000168108 Pregabalin (Amneal) 25 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970421000168107 pregabalin 25 mg capsule, 200 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1066461000168103 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 30, blister pack 161544 1066451000168100 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 30 1066211000168102 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 922533011000036104 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 30 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +68888011000036102 Oxy 5 Vanishing 5% cream, 25 g, tube 10340 66496011000036101 Oxy 5 Vanishing 5% cream, 25 g 65324011000036106 Oxy 5 Vanishing 5% cream 51871000168106 Oxy 5 Vanishing 51871000168106 Oxy 5 Vanishing 71228011000036109 benzoyl peroxide 5% cream, 25 g 69909011000036102 benzoyl peroxide 5% cream 61709011000036104 benzoyl peroxide +85009011000036100 Mepitel (290710) 7.5 cm x 10 cm dressing, 10, carton 84871011000036101 Mepitel (290710) 7.5 cm x 10 cm dressing, 10 84776011000036108 Mepitel (290710) 7.5 cm x 10 cm dressing 39121000168100 Mepitel (290710) 39121000168100 Mepitel (290710) 85169011000036109 dressing non-adherent with silicone 7.5 cm x 10 cm dressing, 10 85080011000036107 dressing non-adherent with silicone 7.5 cm x 10 cm dressing 85070011000036101 dressing non-adherent with silicone +1040881000168101 Britussol Cough Linctus oral liquid solution, 100 mL, bottle 93440 1040871000168104 Britussol Cough Linctus oral liquid solution, 100 mL 1040831000168102 Britussol Cough Linctus oral liquid solution, 5 mL 1040821000168100 Britussol Cough Linctus 1040821000168100 Britussol Cough Linctus 989931000168103 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid, 100 mL 989881000168108 bromhexine hydrochloride 4 mg/5 mL + guaifenesin 100 mg/5 mL oral liquid 61758011000036100 bromhexine + guaifenesin +933075011000036105 Tramadol Hydrochloride SR (Chemmart) 150 mg modified release tablet, 20, blister pack 154397 932872011000036107 Tramadol Hydrochloride SR (Chemmart) 150 mg modified release tablet, 20 932733011000036104 Tramadol Hydrochloride SR (Chemmart) 150 mg modified release tablet 8361000168109 Tramadol Hydrochloride SR (Chemmart) 8361000168109 Tramadol Hydrochloride SR (Chemmart) 28312011000036108 tramadol hydrochloride 150 mg modified release tablet, 20 23626011000036105 tramadol hydrochloride 150 mg modified release tablet 21486011000036105 tramadol +933246331000036103 Testosterone (Schering-Plough) 200 mg implant, 1, tube 14524 933242951000036108 Testosterone (Schering-Plough) 200 mg implant, 1 933241431000036102 Testosterone (Schering-Plough) 200 mg implant 933240811000036102 Testosterone (Schering-Plough) 933240811000036102 Testosterone (Schering-Plough) 26875011000036100 testosterone 200 mg implant, 1 22254011000036105 testosterone 200 mg implant 21290011000036109 testosterone +914511000168102 Famvir 250 mg film-coated tablet, 5, blister pack 51389 914501000168100 Famvir 250 mg film-coated tablet, 5 5598011000036100 Famvir 250 mg film-coated tablet 14551000168109 Famvir 14551000168109 Famvir 87820011000036102 famciclovir 250 mg tablet, 5 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +982921000168109 Advil Double Strength 400 mg effervescent tablet, 20, strip pack 201391 982911000168102 Advil Double Strength 400 mg effervescent tablet, 20 982891000168104 Advil Double Strength 400 mg effervescent tablet 982871000168100 Advil Double Strength 982871000168100 Advil Double Strength 982901000168100 ibuprofen 400 mg effervescent tablet, 20 982881000168102 ibuprofen 400 mg effervescent tablet 21885011000036105 ibuprofen +1049541000168103 Codapane Forte 500/30 uncoated tablet, 2, blister pack 285558 1049531000168107 Codapane Forte 500/30 uncoated tablet, 2 835931000168100 Codapane Forte 500/30 uncoated tablet 27331000168106 Codapane Forte 500/30 27331000168106 Codapane Forte 500/30 1047211000168109 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 2 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 21286011000036106 paracetamol + codeine +18407011000036100 Durogesic 75 microgram/hour patch, 5, sachet 112370 11443011000036109 Durogesic 75 microgram/hour patch, 5 4783011000036101 Durogesic 75 microgram/hour patch 3568011000036107 Durogesic 3568011000036107 Durogesic 26651011000036105 fentanyl 75 microgram/hour patch, 5 22055011000036101 fentanyl 75 microgram/hour patch 21258011000036102 fentanyl +775501000168104 Hizentra 2 g/10 mL injection solution, 10 mL vial 207385 775491000168106 Hizentra 2 g/10 mL injection solution, 10 mL vial 775471000168105 Hizentra 2 g/10 mL injection solution, 10 mL vial 772751000168104 Hizentra 772751000168104 Hizentra 775481000168108 normal immunoglobulin 2 g/10 mL injection, 10 mL vial 775461000168104 normal immunoglobulin 2 g/10 mL injection, vial 74965011000036103 normal immunoglobulin +833121000168102 Centrum film-coated tablet, 30, bottle 75827 833111000168109 Centrum film-coated tablet, 30 833031000168100 Centrum film-coated tablet 75943011000036101 Centrum 75943011000036101 Centrum 833101000168106 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 30 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium +695931000168102 Naramig 2.5 mg film-coated tablet, 4, blister pack 62900 695921000168100 Naramig 2.5 mg film-coated tablet, 4 6327011000036109 Naramig 2.5 mg film-coated tablet 3814011000036100 Naramig 3814011000036100 Naramig 695911000168107 naratriptan 2.5 mg tablet, 4 22853011000036103 naratriptan 2.5 mg tablet 21479011000036107 naratriptan +77410011000036103 Trental 400 mg modified release tablet, 30, blister pack 81197 76826011000036104 Trental 400 mg modified release tablet, 30 76195011000036105 Trental 400 mg modified release tablet 75929011000036101 Trental 75929011000036101 Trental 78330011000036106 pentoxifylline (oxpentifylline) 400 mg modified release tablet, 30 77610011000036100 pentoxifylline (oxpentifylline) 400 mg modified release tablet 77456011000036107 pentoxifylline (oxpentifylline) +18022011000036103 Ponstan 250 mg hard capsule, 50, bottle 14387 12024011000036102 Ponstan 250 mg hard capsule, 50 5143011000036108 Ponstan 250 mg hard capsule 3878011000036100 Ponstan 3878011000036100 Ponstan 26858011000036109 mefenamic acid 250 mg capsule, 50 22239011000036107 mefenamic acid 250 mg capsule 21505011000036107 mefenamic acid +777351000168102 Karvea 300 mg film-coated tablet, 3, blister pack 101708 777341000168104 Karvea 300 mg film-coated tablet, 3 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777331000168108 irbesartan 300 mg tablet, 3 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +921818011000036103 Noroxin 400 mg film-coated tablet, 6, blister pack 10503 921373011000036103 Noroxin 400 mg film-coated tablet, 6 4834011000036108 Noroxin 400 mg film-coated tablet 4213011000036105 Noroxin 4213011000036105 Noroxin 920869011000036100 norfloxacin 400 mg tablet, 6 23419011000036109 norfloxacin 400 mg tablet 21767011000036104 norfloxacin +867321000168101 Metomax capsule, 10, blister pack 121343 867311000168108 Metomax capsule, 10 867291000168109 Metomax capsule 80095011000036106 Metomax 80095011000036106 Metomax 867301000168105 metoclopramide 5 mg + paracetamol 500 mg capsule, 10 867281000168106 metoclopramide 5 mg + paracetamol 500 mg capsule 37791011000036106 metoclopramide + paracetamol +884581000168103 Lamitan 5 mg tablet, 56, blister pack 99030 884571000168101 Lamitan 5 mg tablet, 56 884561000168107 Lamitan 5 mg tablet 884551000168105 Lamitan 884551000168105 Lamitan 28293011000036105 lamotrigine 5 mg tablet, 56 23607011000036102 lamotrigine 5 mg tablet 21643011000036106 lamotrigine +44524011000036106 Ethyol 375 mg powder for injection, 1 vial 78720 41977011000036100 Ethyol 375 mg powder for injection, 1 vial 40299011000036108 Ethyol 375 mg powder for injection, 375 mg vial 39627011000036109 Ethyol 39627011000036109 Ethyol 46756011000036105 amifostine 375 mg injection, 1 vial 45302011000036103 amifostine 375 mg injection, vial 44944011000036101 amifostine +44506011000036108 Chirocaine 25 mg/10 mL injection solution, 10 x 10 mL ampoules 76815 41961011000036103 Chirocaine 25 mg/10 mL injection solution, 10 x 10 mL ampoules 40289011000036109 Chirocaine 25 mg/10 mL injection solution, 10 mL ampoule 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46742011000036109 levobupivacaine 25 mg/10 mL injection, 10 x 10 mL ampoules 45294011000036101 levobupivacaine 25 mg/10 mL injection, ampoule 44881011000036100 levobupivacaine +1015341000168101 Aripiprazole (Medis) 5 mg uncoated tablet, 250, bottle 217194 1015331000168105 Aripiprazole (Medis) 5 mg uncoated tablet, 250 1015291000168104 Aripiprazole (Medis) 5 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 1015321000168107 aripiprazole 5 mg tablet, 250 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +19018011000036109 Ciproxin 750 mg film-coated tablet, 14, blister pack 35367 12323011000036103 Ciproxin 750 mg film-coated tablet, 14 5744011000036101 Ciproxin 750 mg film-coated tablet 28351000168101 Ciproxin 28351000168101 Ciproxin 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +863031000168106 Amitriptyline (AC) 25 mg tablet, 10, blister pack 232107 863021000168108 Amitriptyline (AC) 25 mg tablet, 10 863011000168101 Amitriptyline (AC) 25 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +961651000168104 Singulair 4 mg granules, 7 x 4 g sachets 81450 961641000168101 Singulair 4 mg granules, 7 x 4 g sachets 961621000168107 Singulair 4 mg granules, 4 g sachet 4287011000036103 Singulair 4287011000036103 Singulair 961631000168105 montelukast 4 mg granules, 7 x 4 g sachets 961611000168100 montelukast 4 mg granules, 4 g sachet 21884011000036106 montelukast +1075441000168100 Atenolol (RBX) 25 mg film-coated tablet, 250, bottle 197758 1075431000168109 Atenolol (RBX) 25 mg film-coated tablet, 250 1075131000168100 Atenolol (RBX) 25 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1029231000168107 atenolol 25 mg tablet, 250 1029151000168108 atenolol 25 mg tablet 21624011000036105 atenolol +933216061000036102 PYtest 37 kBq hard capsule, 10, blister pack 67146 933205541000036102 PYtest 37 kBq hard capsule, 10 933196681000036104 PYtest 37 kBq hard capsule 933193421000036108 PYtest 933193421000036108 PYtest 924181011000036107 urea (14C) 37 kBq capsule, 10 923984011000036109 urea (14C) 37 kBq capsule 923935011000036103 urea (14C) +928826011000036103 Carboplatin (Novotech) 450 mg/45 mL injection solution, 45 mL vial 107356 928178011000036109 Carboplatin (Novotech) 450 mg/45 mL injection solution, 45 mL vial 927844011000036102 Carboplatin (Novotech) 450 mg/45 mL injection solution, 45 mL vial 927763011000036107 Carboplatin (Novotech) 927763011000036107 Carboplatin (Novotech) 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +991951000168109 Famciclovir (Apotex) 250 mg film-coated tablet, 56, blister pack 160562 991941000168107 Famciclovir (Apotex) 250 mg film-coated tablet, 56 991811000168102 Famciclovir (Apotex) 250 mg film-coated tablet 991801000168100 Famciclovir (Apotex) 991801000168100 Famciclovir (Apotex) 27249011000036105 famciclovir 250 mg tablet, 56 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +1034791000168101 Atomoxetine (CH) 18 mg hard capsule, 14, blister pack 234827 1034761000168108 Atomoxetine (CH) 18 mg hard capsule, 14 1034711000168105 Atomoxetine (CH) 18 mg hard capsule 1033411000168102 Atomoxetine (CH) 1033411000168102 Atomoxetine (CH) 830341000168103 atomoxetine 18 mg capsule, 14 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +60972011000036100 Paracetamol (Pharmacist) 500 mg uncoated tablet, 24, blister pack 62808 56915011000036109 Paracetamol (Pharmacist) 500 mg uncoated tablet, 24 54119011000036100 Paracetamol (Pharmacist) 500 mg uncoated tablet 53276011000036100 Paracetamol (Pharmacist) 53276011000036100 Paracetamol (Pharmacist) 46260011000036106 paracetamol 500 mg tablet, 24 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +691911000168109 Desvenlafaxine (Actavis) 100 mg modified release tablet, 28, blister pack 218071 691901000168106 Desvenlafaxine (Actavis) 100 mg modified release tablet, 28 691891000168107 Desvenlafaxine (Actavis) 100 mg modified release tablet 691851000168102 Desvenlafaxine (Actavis) 691851000168102 Desvenlafaxine (Actavis) 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +931533011000036102 Pioglitazone (Sandoz) 45 mg uncoated tablet, 28, blister pack 162225 930694011000036107 Pioglitazone (Sandoz) 45 mg uncoated tablet, 28 930017011000036106 Pioglitazone (Sandoz) 45 mg uncoated tablet 929842011000036103 Pioglitazone (Sandoz) 929842011000036103 Pioglitazone (Sandoz) 27808011000036103 pioglitazone 45 mg tablet, 28 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +60120011000036102 Loratadine (Chemists' Own) 10 mg tablet, 30, blister pack 127572 56079011000036106 Loratadine (Chemists' Own) 10 mg tablet, 30 53781011000036106 Loratadine (Chemists' Own) 10 mg tablet 53461011000036104 Loratadine (Chemists' Own) 53461011000036104 Loratadine (Chemists' Own) 27058011000036109 loratadine 10 mg tablet, 30 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +50683011000036102 Accu-Chek Advantage II diagnostic strip, 50, bottle 65308 49707011000036109 Accu-Chek Advantage II diagnostic strip, 50 48835011000036109 Accu-Chek Advantage II diagnostic strip 60731000168101 Accu-Chek Advantage II 60731000168101 Accu-Chek Advantage II 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +773301000168109 Claratyne Liquid Capsule 10 mg soft capsule, 5, blister pack 175273 773291000168108 Claratyne Liquid Capsule 10 mg soft capsule, 5 773241000168100 Claratyne Liquid Capsule 10 mg soft capsule 773221000168106 Claratyne Liquid Capsule 773221000168106 Claratyne Liquid Capsule 773281000168105 loratadine 10 mg capsule, 5 773231000168109 loratadine 10 mg capsule 21701011000036106 loratadine +95561000036104 Fexorelief 180 mg film-coated tablet, 10, blister pack 186051 94451000036102 Fexorelief 180 mg film-coated tablet, 10 93371000036103 Fexorelief 180 mg film-coated tablet 123861000036100 Fexorelief 123861000036100 Fexorelief 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +751791000168103 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 30, blister pack 196502 751781000168101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 30 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 671881000168100 metoclopramide hydrochloride 10 mg tablet, 30 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +14181000036100 Trovas 40 mg film-coated tablet, 30, bottle 179860 7791000036106 Trovas 40 mg film-coated tablet, 30 2411000036107 Trovas 40 mg film-coated tablet 531000036108 Trovas 531000036108 Trovas 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +1017441000168100 Aripiprazole (ZP) 10 mg uncoated tablet, 250, bottle 217215 1017431000168109 Aripiprazole (ZP) 10 mg uncoated tablet, 250 1015661000168109 Aripiprazole (ZP) 10 mg uncoated tablet 1015211000168108 Aripiprazole (ZP) 1015211000168108 Aripiprazole (ZP) 1015711000168104 aripiprazole 10 mg tablet, 250 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +751871000168107 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 125, blister pack 196502 751861000168101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet, 125 169051000036101 Metoclopramide Hydrochloride (Apo) 10 mg film-coated tablet 168751000036109 Metoclopramide Hydrochloride (Apo) 168751000036109 Metoclopramide Hydrochloride (Apo) 671991000168109 metoclopramide hydrochloride 10 mg tablet, 125 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +44714011000036102 Chirocaine 125 mg/100 mL injection solution, 5 x 100 mL bags 94480 42159011000036107 Chirocaine 125 mg/100 mL injection solution, 5 x 100 mL bags 40371011000036108 Chirocaine 125 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46920011000036104 levobupivacaine 125 mg/100 mL injection, 5 x 100 mL bags 45346011000036106 levobupivacaine 125 mg/100 mL injection, bag 44881011000036100 levobupivacaine +928980011000036103 Valaciclovir (Apo) 500 mg film-coated tablet, 60, blister pack 158911 928341011000036108 Valaciclovir (Apo) 500 mg film-coated tablet, 60 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 929222011000036106 valaciclovir 500 mg tablet, 60 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +1094591000168103 Bisacodyl Laxative (Amcal) 5 mg enteric tablet, 200, blister pack 282485 1094581000168101 Bisacodyl Laxative (Amcal) 5 mg enteric tablet, 200 1094531000168102 Bisacodyl Laxative (Amcal) 5 mg enteric tablet 1094521000168100 Bisacodyl Laxative (Amcal) 1094521000168100 Bisacodyl Laxative (Amcal) 27705011000036106 bisacodyl 5 mg enteric tablet, 200 23040011000036100 bisacodyl 5 mg enteric tablet 21264011000036101 bisacodyl +792541000168100 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 24, blister pack 194033 792531000168109 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet, 24 792431000168105 Ibuprofen plus Codeine (Pharmacy Action) film-coated tablet 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 792421000168107 Ibuprofen plus Codeine (Pharmacy Action) 63144011000036106 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 24 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +940331000168103 Escitalopram (GenRx) 20 mg film-coated tablet, 28, blister pack 145651 940321000168101 Escitalopram (GenRx) 20 mg film-coated tablet, 28 940311000168108 Escitalopram (GenRx) 20 mg film-coated tablet 940221000168107 Escitalopram (GenRx) 940221000168107 Escitalopram (GenRx) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +34706011000036108 Pethidine Hydrochloride (DBL) 25 mg/mL injection solution, 5 x 1 mL ampoules 16272 34290011000036100 Pethidine Hydrochloride (DBL) 25 mg/mL injection solution, 5 x 1 mL ampoules 34014011000036101 Pethidine Hydrochloride (DBL) 25 mg/mL injection solution, ampoule 33961011000036106 Pethidine Hydrochloride (DBL) 33961011000036106 Pethidine Hydrochloride (DBL) 35139011000036107 pethidine hydrochloride 25 mg/mL injection, 5 x 1 mL ampoules 34863011000036103 pethidine hydrochloride 25 mg/mL injection, ampoule 34839011000036106 pethidine +69269011000036100 Sodium Chloride (Baxter) 0.9% (9 g/L) irrigation solution, 10 x 1 L bottles 19476 67069011000036103 Sodium Chloride (Baxter) 0.9% (9 g/L) irrigation solution, 10 x 1 L bottles 4655011000036102 Sodium Chloride (Baxter) 0.9% (9 g/L) irrigation solution, 1 L bottle 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71639011000036102 sodium chloride 0.9% (9 g/L) solution, 10 x 1 L bottles 22347011000036108 sodium chloride 0.9% (9 g/L) solution, bottle 21308011000036103 sodium chloride +50441011000036107 Soffban (7224) natural, non-sterile 10 cm x 2.7 m bandage, 1, carton 49293011000036106 Soffban (7224) natural, non-sterile 10 cm x 2.7 m bandage, 1 48606011000036102 Soffban (7224) natural, non-sterile 10 cm x 2.7 m bandage 38341000168101 Soffban (7224) 38341000168101 Soffban (7224) 51280011000036100 bandage absorbent wool 10 cm x 2.7 m bandage, 1 50809011000036108 bandage absorbent wool 10 cm x 2.7 m bandage 50749011000036104 bandage absorbent wool +95521000036108 Tykerb 250 mg film-coated tablet, 84, bottle 185997 94401000036103 Tykerb 250 mg film-coated tablet, 84 35490011000036106 Tykerb 250 mg film-coated tablet 35432011000036103 Tykerb 35432011000036103 Tykerb 94411000036101 lapatinib 250 mg tablet, 84 35717011000036103 lapatinib 250 mg tablet 35691011000036102 lapatinib +44207011000036100 Amoxil 250 mg hard capsule, 500, jar 56551 41683011000036100 Amoxil 250 mg hard capsule, 500 6100011000036109 Amoxil 250 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 46500011000036103 amoxicillin 250 mg capsule, 500 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +18212011000036103 Roxide 150 mg film-coated tablet, 10, blister pack 100989 11173011000036109 Roxide 150 mg film-coated tablet, 10 5654011000036107 Roxide 150 mg film-coated tablet 3158011000036109 Roxide 3158011000036109 Roxide 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +1058101000168100 Atomoxetine (Medis) 10 mg hard capsule, 7, blister pack 238328 1058091000168105 Atomoxetine (Medis) 10 mg hard capsule, 7 1058081000168107 Atomoxetine (Medis) 10 mg hard capsule 1058071000168109 Atomoxetine (Medis) 1058071000168109 Atomoxetine (Medis) 819151000168100 atomoxetine 10 mg capsule, 7 23336011000036102 atomoxetine 10 mg capsule 21650011000036101 atomoxetine +60465011000036102 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 2 sachets 150167 56423011000036101 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 2 sachets 53918011000036109 Lemsip Max Cold and Flu plus Chesty Cough Wild Berry and Hot Orange powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63355011000036101 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 2 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +116421000036108 Rosuvastatin (Apo) 40 mg film-coated tablet, 30, bottle 183059 114831000036100 Rosuvastatin (Apo) 40 mg film-coated tablet, 30 113311000036104 Rosuvastatin (Apo) 40 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +891081000168108 Candesartan HCTZ 32/25 (GXP) uncoated tablet, 30, blister pack 253572 891051000168101 Candesartan HCTZ 32/25 (GXP) uncoated tablet, 30 891041000168103 Candesartan HCTZ 32/25 (GXP) uncoated tablet 891031000168107 Candesartan HCTZ 32/25 (GXP) 891031000168107 Candesartan HCTZ 32/25 (GXP) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +824691000168105 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 73452 824681000168107 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 824661000168103 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 73716011000036101 Avaxim 73716011000036101 Avaxim 824671000168109 hepatitis A child/adult vaccine injection, 0.5 mL syringe 824651000168100 hepatitis A child/adult vaccine injection, 0.5 mL syringe 824641000168102 hepatitis A vaccine +1000311000168107 Tadalafil (Apo) 5 mg film-coated tablet, 28, blister pack 205854 1000301000168109 Tadalafil (Apo) 5 mg film-coated tablet, 28 1000291000168108 Tadalafil (Apo) 5 mg film-coated tablet 1000221000168106 Tadalafil (Apo) 1000221000168106 Tadalafil (Apo) 73457011000036100 tadalafil 5 mg tablet, 28 73365011000036108 tadalafil 5 mg tablet 21725011000036104 tadalafil +1098841000168102 Osteo Relief Paracetamol (Amcal) 665 mg modified release tablet, 96, blister pack 232216 1098831000168106 Osteo Relief Paracetamol (Amcal) 665 mg modified release tablet, 96 1098821000168108 Osteo Relief Paracetamol (Amcal) 665 mg modified release tablet 1098671000168105 Osteo Relief Paracetamol (Amcal) 1098671000168105 Osteo Relief Paracetamol (Amcal) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +764721000168109 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet, 28, blister pack 214505 764711000168102 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet, 28 764681000168103 Oxycodone MR (Terry White Chemists) 20 mg modified release tablet 764121000168108 Oxycodone MR (Terry White Chemists) 764121000168108 Oxycodone MR (Terry White Chemists) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +794711000168104 Candesartan (Blooms The Chemist) 16 mg uncoated tablet, 30, blister pack 260094 794701000168102 Candesartan (Blooms The Chemist) 16 mg uncoated tablet, 30 794691000168102 Candesartan (Blooms The Chemist) 16 mg uncoated tablet 794681000168100 Candesartan (Blooms The Chemist) 794681000168100 Candesartan (Blooms The Chemist) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +37362011000036104 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 50 x 2.2 mL cartridges 12080 36710011000036102 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 50 x 2.2 mL cartridges 36008011000036100 Citanest 3% with Octapressin 0.066 IU Dental injection solution, 2.2 mL cartridge 30271000168103 Citanest 3% with Octapressin 0.066 IU Dental 30271000168103 Citanest 3% with Octapressin 0.066 IU Dental 38623011000036102 prilocaine hydrochloride 3% (66 mg/2.2 mL) + felypressin 0.066 units/2.2 mL injection, 50 x 2.2 mL cartridges 37884011000036108 prilocaine hydrochloride 3% (66 mg/2.2 mL) + felypressin 0.066 units/2.2 mL injection, cartridge 37788011000036103 prilocaine + felypressin +914601000168104 Zithromax 250 mg hard capsule, 4, blister pack 48037 914591000168106 Zithromax 250 mg hard capsule, 4 914571000168105 Zithromax 250 mg hard capsule 3528011000036100 Zithromax 3528011000036100 Zithromax 914581000168108 azithromycin 250 mg capsule, 4 914561000168104 azithromycin 250 mg capsule 21518011000036103 azithromycin +926924011000036107 Anti-Inflammatory (Amcal) 1% gel, 100 g, tube 90462 926318011000036103 Anti-Inflammatory (Amcal) 1% gel, 100 g 925758011000036109 Anti-Inflammatory (Amcal) 1% gel 925536011000036108 Anti-Inflammatory (Amcal) 925536011000036108 Anti-Inflammatory (Amcal) 72012011000036105 diclofenac sodium 1% gel, 100 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +39379011000036109 Bicalutamide (GA) 50 mg film-coated tablet, 100, bottle 129116 39263011000036105 Bicalutamide (GA) 50 mg film-coated tablet, 100 39216011000036100 Bicalutamide (GA) 50 mg film-coated tablet 39181011000036109 Bicalutamide (GA) 39181011000036109 Bicalutamide (GA) 39486011000036103 bicalutamide 50 mg tablet, 100 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +61456011000036109 Bifonazole Antifungal (Pharmacist) 1% cream, 20 g, tube 90625 57381011000036104 Bifonazole Antifungal (Pharmacist) 1% cream, 20 g 54289011000036100 Bifonazole Antifungal (Pharmacist) 1% cream 51841000168104 Bifonazole Antifungal (Pharmacist) 51841000168104 Bifonazole Antifungal (Pharmacist) 63839011000036100 bifonazole 1% cream, 20 g 22454011000036109 bifonazole 1% cream 21899011000036106 bifonazole +60557011000036108 Polaramine colour free 2 mg uncoated tablet, 40, blister pack 154653 56515011000036102 Polaramine colour free 2 mg uncoated tablet, 40 53948011000036101 Polaramine colour free 2 mg uncoated tablet 9101000168102 Polaramine 9101000168102 Polaramine 63392011000036101 dexchlorpheniramine maleate 2 mg tablet, 40 61949011000036101 dexchlorpheniramine maleate 2 mg tablet 61749011000036105 dexchlorpheniramine +69608011000036106 Microshield T 1% solution, 500 mL, bottle 71212 67407011000036104 Microshield T 1% solution, 500 mL 65648011000036109 Microshield T 1% solution 65053011000036109 Microshield T 65053011000036109 Microshield T 71942011000036107 triclosan 1% solution, 500 mL 70255011000036105 triclosan 1% solution 69817011000036103 triclosan +1026031000168108 Neuroccord 300 mg hard capsule, 60, blister pack 235864 1025811000168100 Neuroccord 300 mg hard capsule, 60 1025701000168105 Neuroccord 300 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +1051791000168100 Palexia SR 100 mg modified release tablet, 100, blister pack 165346 1051781000168103 Palexia SR 100 mg modified release tablet, 100 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051771000168101 tapentadol 100 mg modified release tablet, 100 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +730411000168108 Trajentamet 2.5 mg/850 mg film-coated tablet, 60, bottle 195106 163921000036106 Trajentamet 2.5 mg/850 mg film-coated tablet, 60 162431000036107 Trajentamet 2.5 mg/850 mg film-coated tablet 44521000168107 Trajentamet 2.5 mg/850 mg 44521000168107 Trajentamet 2.5 mg/850 mg 163931000036108 linagliptin 2.5 mg + metformin hydrochloride 850 mg tablet, 60 162441000036102 linagliptin 2.5 mg + metformin hydrochloride 850 mg tablet 166311000036107 linagliptin + metformin +60338011000036105 C-Zine (Guardian) 10 mg film-coated tablet, 30, blister pack 139461 56297011000036101 C-Zine (Guardian) 10 mg film-coated tablet, 30 53865011000036108 C-Zine (Guardian) 10 mg film-coated tablet 53167011000036106 C-Zine (Guardian) 53167011000036106 C-Zine (Guardian) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +20286011000036102 Apoven 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 75559 13495011000036109 Apoven 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 6777011000036109 Apoven 250 microgram/mL inhalation solution, ampoule 4442011000036106 Apoven 4442011000036106 Apoven 28275011000036100 ipratropium bromide 250 microgram/mL inhalation solution, 30 x 1 mL ampoules 23589011000036104 ipratropium bromide 250 microgram/mL inhalation solution, ampoule 21512011000036101 ipratropium +995971000168103 Difflam Mouth oral gel, 10 g, tube 48597 995961000168109 Difflam Mouth oral gel, 10 g 995941000168105 Difflam Mouth oral gel 57601000168108 Difflam Mouth 57601000168108 Difflam Mouth 995951000168107 benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel, 10 g 995931000168101 benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel 61739011000036109 benzydamine + cetylpyridinium +59878011000036108 Extra Strength Pain Relief (Pharmacist Own) tablet, 50, bottle 116298 55840011000036101 Extra Strength Pain Relief (Pharmacist Own) tablet, 50 53604011000036100 Extra Strength Pain Relief (Pharmacist Own) tablet 53248011000036100 Extra Strength Pain Relief (Pharmacist Own) 53248011000036100 Extra Strength Pain Relief (Pharmacist Own) 63448011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +61214011000036109 Strepfen Intensive cherry 8.75 mg lozenge, 6, blister pack 76192 57150011000036108 Strepfen Intensive cherry 8.75 mg lozenge, 6 54217011000036109 Strepfen Intensive cherry 8.75 mg lozenge 53378011000036108 Strepfen Intensive 53378011000036108 Strepfen Intensive 63911011000036101 flurbiprofen 8.75 mg lozenge, 6 62102011000036104 flurbiprofen 8.75 mg lozenge 21717011000036100 flurbiprofen +1051641000168103 Palexia SR 50 mg modified release tablet, 50, blister pack 165332 1051631000168107 Palexia SR 50 mg modified release tablet, 50 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051621000168109 tapentadol 50 mg modified release tablet, 50 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +60799011000036109 Imodium Caplet 2 mg uncoated tablet, 2, blister pack 56001 56755011000036108 Imodium Caplet 2 mg uncoated tablet, 2 54068011000036103 Imodium Caplet 2 mg uncoated tablet 9961000168104 Imodium Caplet 9961000168104 Imodium Caplet 63820011000036108 loperamide hydrochloride 2 mg tablet, 2 62085011000036104 loperamide hydrochloride 2 mg tablet 21760011000036100 loperamide +37604011000036101 Ceenu 40 mg hard capsule, 20, bottle 19249 36871011000036101 Ceenu 40 mg hard capsule, 20 36206011000036106 Ceenu 40 mg hard capsule 12181000168103 Ceenu 12181000168103 Ceenu 38758011000036101 lomustine 40 mg capsule, 20 37977011000036104 lomustine 40 mg capsule 37745011000036103 lomustine +82347011000036103 Volibris 5 mg film-coated tablet, 30, blister pack 143743 82142011000036105 Volibris 5 mg film-coated tablet, 30 82011011000036100 Volibris 5 mg film-coated tablet 81978011000036105 Volibris 81978011000036105 Volibris 82533011000036108 ambrisentan 5 mg tablet, 30 82441011000036103 ambrisentan 5 mg tablet 82428011000036105 ambrisentan +933211631000036108 Carboplatin (Novotech) 50 mg/5 mL injection solution, 5 mL vial 107354 933200231000036104 Carboplatin (Novotech) 50 mg/5 mL injection solution, 5 mL vial 933194161000036108 Carboplatin (Novotech) 50 mg/5 mL injection solution, 5 mL vial 927763011000036107 Carboplatin (Novotech) 927763011000036107 Carboplatin (Novotech) 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +19082011000036109 Coumadin 5 mg uncoated tablet, 50, blister pack 42280 12388011000036104 Coumadin 5 mg uncoated tablet, 50 5424011000036108 Coumadin 5 mg uncoated tablet 3322011000036101 Coumadin 3322011000036101 Coumadin 27095011000036106 warfarin sodium 5 mg tablet, 50 22464011000036101 warfarin sodium 5 mg tablet 21248011000036104 warfarin +50538011000036107 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 10, blister pack 131918 49575011000036108 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet, 10 48778011000036103 Zolpidem Tartrate (Pharmacor) 10 mg film-coated tablet 48261011000036105 Zolpidem Tartrate (Pharmacor) 48261011000036105 Zolpidem Tartrate (Pharmacor) 46165011000036100 zolpidem tartrate 10 mg tablet, 10 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +726111000168102 PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets 726101000168100 PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets 726091000168105 PKU Anamix Junior Orange powder for oral liquid, 36 g sachet 30231000168101 PKU Anamix Junior 30231000168101 PKU Anamix Junior 702781000168101 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 30 x 36 g sachets 702761000168105 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine powder for oral liquid, 36 g sachet 702751000168108 amino acid formula with vitamins, minerals, fibre and docosahexaenoic acid without phenylalanine +1109601000168102 Nicotinell Ice Mint 2 mg chewing gum, 144, blister pack 279615 1109591000168109 Nicotinell Ice Mint 2 mg chewing gum, 144 1109461000168103 Nicotinell Ice Mint 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71510011000036105 nicotine 2 mg gum, 144 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +20142011000036108 Keflex 500 mg hard capsule, 20, blister pack 73523 13366011000036105 Keflex 500 mg hard capsule, 20 6651011000036107 Keflex 500 mg hard capsule 3358011000036104 Keflex 3358011000036104 Keflex 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +20459011000036104 Metrol 50 mg uncoated tablet, 100, bottle 78187 13661011000036107 Metrol 50 mg uncoated tablet, 100 6944011000036106 Metrol 50 mg uncoated tablet 3236011000036107 Metrol 3236011000036107 Metrol 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +820031000168106 Daktarin 2% oral gel, 15 g, tube 13287 820021000168108 Daktarin 2% oral gel, 15 g 819981000168105 Daktarin 2% oral gel 431000168100 Daktarin 431000168100 Daktarin 817991000168104 miconazole 2% oral gel, 15 g 817971000168100 miconazole 2% oral gel 21454011000036108 miconazole +86841000036106 Artiss solution, 10 mL, dual chamber syringe 163515 86491000036103 Artiss solution, 10 mL 86041000036100 Artiss solution 85941000036108 Artiss 85941000036108 Artiss 86501000036105 aprotinin 3000 KI units/mL + factor XIII 10 units/mL + fibrinogen 110 mg/mL + human thrombin 4 units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL solution, 10 mL 86051000036102 aprotinin 3000 KI units/mL + factor XIII 10 units/mL + fibrinogen 110 mg/mL + human thrombin 4 units/mL + calcium chloride dihydrate 4.4 mg (calcium 40 micromoles)/mL solution 91891000036106 aprotinin + factor XIII + fibrinogen + human thrombin + calcium chloride dihydrate +44149011000036103 Clarinase Repetab modified release tablet, 2, blister pack 53516 41625011000036107 Clarinase Repetab modified release tablet, 2 40109011000036107 Clarinase Repetab modified release tablet 21221000168105 Clarinase Repetab 21221000168105 Clarinase Repetab 46444011000036105 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet, 2 45158011000036102 loratadine 5 mg + pseudoephedrine sulfate 120 mg modified release tablet 44955011000036104 loratadine + pseudoephedrine +933246191000036100 Allevyn Ag Adhesive (66800075) 10 cm x 10 cm medicated dressing, 10, carton 155735 933242781000036104 Allevyn Ag Adhesive (66800075) 10 cm x 10 cm medicated dressing, 10 933241101000036100 Allevyn Ag Adhesive (66800075) 10 cm x 10 cm medicated dressing 62471000168105 Allevyn Ag Adhesive (66800075) 62471000168105 Allevyn Ag Adhesive (66800075) 933242791000036102 dressing foam with silver 10 cm x 10 cm dressing, 10 933241111000036103 dressing foam with silver 10 cm x 10 cm dressing 933247641000036101 dressing foam with silver +892771000168100 Betahistine (GPPL) 16 mg uncoated tablet, 30, blister pack 212085 892761000168106 Betahistine (GPPL) 16 mg uncoated tablet, 30 892711000168108 Betahistine (GPPL) 16 mg uncoated tablet 892701000168105 Betahistine (GPPL) 892701000168105 Betahistine (GPPL) 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +44633011000036103 Levitra 10 mg film-coated tablet, 2, blister pack 90499 42086011000036101 Levitra 10 mg film-coated tablet, 2 40349011000036106 Levitra 10 mg film-coated tablet 39606011000036101 Levitra 39606011000036101 Levitra 46853011000036102 vardenafil 10 mg tablet, 2 45333011000036101 vardenafil 10 mg tablet 44856011000036100 vardenafil +1017351000168109 Mometasone Nasal Allergy Relief (Apo) 50 microgram/actuation nasal spray, 65 actuations, pump pack 206495 1017341000168107 Mometasone Nasal Allergy Relief (Apo) 50 microgram/actuation nasal spray, 65 actuations 1017311000168108 Mometasone Nasal Allergy Relief (Apo) 50 microgram/actuation nasal spray, actuation 1017301000168105 Mometasone Nasal Allergy Relief (Apo) 1017301000168105 Mometasone Nasal Allergy Relief (Apo) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +74874011000036102 Hepatitis B Immunoglobulin-VF (CSL) 400 units injection solution, 1 vial 61214 74361011000036108 Hepatitis B Immunoglobulin-VF (CSL) 400 units injection solution, 1 vial 73892011000036104 Hepatitis B Immunoglobulin-VF (CSL) 400 units injection solution, vial 10641000168101 Hepatitis B Immunoglobulin-VF (CSL) 10641000168101 Hepatitis B Immunoglobulin-VF (CSL) 75461011000036108 hepatitis B virus immunoglobulin 400 units injection, 1 vial 75072011000036101 hepatitis B virus immunoglobulin 400 units injection, vial 74971011000036105 hepatitis B virus immunoglobulin +657271000168106 Bicalutamide (AN) 50 mg film-coated tablet, 28, blister pack 162831 657261000168100 Bicalutamide (AN) 50 mg film-coated tablet, 28 657251000168102 Bicalutamide (AN) 50 mg film-coated tablet 657211000168103 Bicalutamide (AN) 657211000168103 Bicalutamide (AN) 27328011000036109 bicalutamide 50 mg tablet, 28 22681011000036104 bicalutamide 50 mg tablet 21879011000036101 bicalutamide +914271000168107 Amoxyclav 875/125 (Generic Health) film-coated tablet, 60, blister pack 255076 914261000168101 Amoxyclav 875/125 (Generic Health) film-coated tablet, 60 914131000168104 Amoxyclav 875/125 (Generic Health) film-coated tablet 914121000168102 Amoxyclav 875/125 (Generic Health) 914121000168102 Amoxyclav 875/125 (Generic Health) 914061000168108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 60 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +80019011000036107 Topiramate (Apo) 25 mg film-coated tablet, 60, bottle 124733 79952011000036102 Topiramate (Apo) 25 mg film-coated tablet, 60 79916011000036105 Topiramate (Apo) 25 mg film-coated tablet 10291000168107 Topiramate (Apo) 10291000168107 Topiramate (Apo) 27502011000036102 topiramate 25 mg tablet, 60 22845011000036100 topiramate 25 mg tablet 21458011000036101 topiramate +77254011000036103 Selemite B (Blackmores) 83.4 mg (selenium 100 microgram) film-coated tablet, 100, bottle 152091 76670011000036109 Selemite B (Blackmores) 83.4 mg (selenium 100 microgram) film-coated tablet, 100 76103011000036106 Selemite B (Blackmores) 83.4 mg (selenium 100 microgram) film-coated tablet 75998011000036104 Selemite B (Blackmores) 75998011000036104 Selemite B (Blackmores) 78198011000036108 high selenium yeast 83.4 mg (selenium 100 microgram) tablet, 100 77537011000036101 high selenium yeast 83.4 mg (selenium 100 microgram) tablet 77451011000036102 high selenium yeast +933211951000036107 Donpesyn 5 mg film-coated tablet, 60, blister pack 142231 933201281000036107 Donpesyn 5 mg film-coated tablet, 60 933194841000036100 Donpesyn 5 mg film-coated tablet 933193791000036100 Donpesyn 933193791000036100 Donpesyn 933200781000036106 donepezil hydrochloride 5 mg tablet, 60 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +931507011000036102 Lamisil Athlete's Foot 1% cream, 7.5 g, tube 158219 930668011000036103 Lamisil Athlete's Foot 1% cream, 7.5 g 929999011000036106 Lamisil Athlete's Foot 1% cream 33401000168102 Lamisil Athlete's Foot 33401000168102 Lamisil Athlete's Foot 932388011000036103 terbinafine hydrochloride 1% cream, 7.5 g 22483011000036100 terbinafine hydrochloride 1% cream 21575011000036104 terbinafine +730041000168102 Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial 176335 730031000168106 Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial 730021000168108 Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial 87741000036100 Paclitaxel (GN) 87741000036100 Paclitaxel (GN) 28267011000036104 paclitaxel 30 mg/5 mL injection, 5 mL vial 23581011000036103 paclitaxel 30 mg/5 mL injection, vial 21604011000036104 paclitaxel +856681000168101 Entrip 25 mg film-coated tablet, 10, blister pack 232154 856671000168104 Entrip 25 mg film-coated tablet, 10 856661000168105 Entrip 25 mg film-coated tablet 814951000168102 Entrip 814951000168102 Entrip 742041000168100 amitriptyline hydrochloride 25 mg tablet, 10 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +923857011000036102 Resolve Nappy Rash ointment, 100 g, tube 161435 923403011000036105 Resolve Nappy Rash ointment, 100 g 923068011000036108 Resolve Nappy Rash ointment 922946011000036101 Resolve Nappy Rash 922946011000036101 Resolve Nappy Rash 924187011000036104 miconazole 0.25% + zinc oxide 15% ointment, 100 g 923989011000036105 miconazole 0.25% + zinc oxide 15% ointment 81225011000036104 miconazole + zinc oxide +61617011000036101 Nurofen Liquid Capsule 200 mg soft capsule, 8, blister pack 96115 57539011000036106 Nurofen Liquid Capsule 200 mg soft capsule, 8 54342011000036108 Nurofen Liquid Capsule 200 mg soft capsule 2041000168106 Nurofen Liquid Capsule 2041000168106 Nurofen Liquid Capsule 63916011000036106 ibuprofen 200 mg capsule, 8 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +905691000168108 Farydak 15 mg hard capsule, 12, blister pack 230844 905681000168105 Farydak 15 mg hard capsule, 12 905551000168104 Farydak 15 mg hard capsule 905191000168103 Farydak 905191000168103 Farydak 905671000168107 panobinostat 15 mg capsule, 12 905541000168101 panobinostat 15 mg capsule 905421000168108 panobinostat +86771000036105 Bactroban 2% nasal ointment, 3 g, tube 11199 86371000036109 Bactroban 2% nasal ointment, 3 g 86111000036100 Bactroban 2% nasal ointment 3296011000036102 Bactroban 3296011000036102 Bactroban 86381000036106 mupirocin 2% nasal ointment, 3 g 86121000036107 mupirocin 2% nasal ointment 21590011000036101 mupirocin +18381000036105 Aurozapine 30 mg film-coated tablet, 30, blister pack 183396 16961000036103 Aurozapine 30 mg film-coated tablet, 30 15381000036101 Aurozapine 30 mg film-coated tablet 15271000036109 Aurozapine 15271000036109 Aurozapine 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +19491011000036109 Logicin Sinus 60 mg uncoated tablet, 30, blister pack 55159 12767011000036101 Logicin Sinus 60 mg uncoated tablet, 30 6061011000036108 Logicin Sinus 60 mg uncoated tablet 3558011000036101 Logicin Sinus 3558011000036101 Logicin Sinus 27343011000036101 pseudoephedrine hydrochloride 60 mg tablet, 30 22696011000036105 pseudoephedrine hydrochloride 60 mg tablet 21540011000036109 pseudoephedrine +44333011000036109 Desowen 0.05% lotion, 60 mL, bottle 67182 41800011000036100 Desowen 0.05% lotion, 60 mL 40205011000036108 Desowen 0.05% lotion 39556011000036104 Desowen 39556011000036104 Desowen 46606011000036107 desonide 0.05% lotion, 60 mL 45237011000036101 desonide 0.05% lotion 44914011000036107 desonide +758781000168107 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 63484 758771000168109 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 87075011000036106 Microgynon 20 ED (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +758781000168107 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 63484 758771000168109 Microgynon 20 ED (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 87076011000036104 Microgynon 20 ED (inert substance) sugar coated tablet 700016081000036102 Microgynon 20 ED 700016081000036102 Microgynon 20 ED 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +931601000168109 Centevo 100/25/200 mg film-coated tablet, 28, bottle 238855 931591000168102 Centevo 100/25/200 mg film-coated tablet, 28 931541000168105 Centevo 100/25/200 mg film-coated tablet 931531000168101 Centevo 100/25/200 mg 931531000168101 Centevo 100/25/200 mg 931581000168100 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet, 28 23494011000036109 levodopa 100 mg + carbidopa 25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +751551000168100 Ceftriaxone (AFT) 1 g powder for injection, 10 vials 185100 751541000168102 Ceftriaxone (AFT) 1 g powder for injection, 10 vials 26961000036108 Ceftriaxone (AFT) 1 g powder for injection, vial 26001000036105 Ceftriaxone (AFT) 26001000036105 Ceftriaxone (AFT) 922546011000036109 ceftriaxone 1 g injection, 10 vials 23399011000036103 ceftriaxone 1 g injection, vial 21610011000036107 ceftriaxone +43665011000036106 Carvedilol (GenRx) 3.125 mg film-coated tablet, 30, bottle 123827 11747011000036107 Carvedilol (GenRx) 3.125 mg film-coated tablet, 30 5363011000036105 Carvedilol (GenRx) 3.125 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +824301000168109 Consti-Eze with Senna film-coated tablet, 30, bottle 198928 824291000168108 Consti-Eze with Senna film-coated tablet, 30 824281000168105 Consti-Eze with Senna film-coated tablet 824271000168107 Consti-Eze with Senna 824271000168107 Consti-Eze with Senna 81746011000036103 docusate sodium 50 mg + sennoside B 8 mg tablet, 30 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +922971000168102 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet, 7, blister pack 198391 922961000168108 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet, 7 922951000168106 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet 922941000168109 Candesartan Hydrochlorothiazide 16/12.5 (RZ) 922941000168109 Candesartan Hydrochlorothiazide 16/12.5 (RZ) 890801000168102 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 7 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +790461000168101 Inpler 25 mg film-coated tablet, 30, blister pack 231447 790451000168103 Inpler 25 mg film-coated tablet, 30 790411000168104 Inpler 25 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 26533011000036104 eplerenone 25 mg tablet, 30 21943011000036105 eplerenone 25 mg tablet 21588011000036100 eplerenone +974811000168108 Xatral SR 10 mg modified release tablet, 30, bottle 90911 926309011000036109 Xatral SR 10 mg modified release tablet, 30 925752011000036106 Xatral SR 10 mg modified release tablet 33861000168103 Xatral SR 33861000168103 Xatral SR 927400011000036105 alfuzosin hydrochloride 10 mg modified release tablet, 30 927041011000036104 alfuzosin hydrochloride 10 mg modified release tablet 926977011000036100 alfuzosin +1051881000168107 Palexia SR 100 mg modified release tablet, 60, blister pack 165346 1051871000168109 Palexia SR 100 mg modified release tablet, 60 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051861000168103 tapentadol 100 mg modified release tablet, 60 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +18131011000036102 Ramipril (Sandoz) 1.25 mg uncoated tablet, 30, blister pack 128803 11862011000036100 Ramipril (Sandoz) 1.25 mg uncoated tablet, 30 5567011000036104 Ramipril (Sandoz) 1.25 mg uncoated tablet 3959011000036103 Ramipril (Sandoz) 3959011000036103 Ramipril (Sandoz) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +777491000168103 Karvea 300 mg film-coated tablet, 56, blister pack 101708 777481000168101 Karvea 300 mg film-coated tablet, 56 5617011000036109 Karvea 300 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777471000168104 irbesartan 300 mg tablet, 56 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +79650011000036102 Epiduo 0.1% / 2.5% gel, 45 g, tube 143869 79475011000036106 Epiduo 0.1% / 2.5% gel, 45 g 79355011000036100 Epiduo 0.1% / 2.5% gel 33721000168102 Epiduo 0.1% / 2.5% 33721000168102 Epiduo 0.1% / 2.5% 79806011000036100 adapalene 0.1% + benzoyl peroxide 2.5% gel, 45 g 79740011000036106 adapalene 0.1% + benzoyl peroxide 2.5% gel 79733011000036104 adapalene + benzoyl peroxide +752281000168101 Oxycodone (Actavis) 20 mg hard capsule, 60, blister pack 227837 752251000168108 Oxycodone (Actavis) 20 mg hard capsule, 60 752221000168100 Oxycodone (Actavis) 20 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 35214011000036103 oxycodone hydrochloride 20 mg capsule, 60 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +919361000168109 Nevirapine XR (Apotex) 400 mg modified release tablet, 30, blister pack 272979 919351000168107 Nevirapine XR (Apotex) 400 mg modified release tablet, 30 919341000168105 Nevirapine XR (Apotex) 400 mg modified release tablet 919331000168101 Nevirapine XR (Apotex) 919331000168101 Nevirapine XR (Apotex) 7491000036100 nevirapine 400 mg modified release tablet, 30 2151000036100 nevirapine 400 mg modified release tablet 21551011000036104 nevirapine +755891000168106 Vttack 200 mg film-coated tablet, 100, blister pack 206985 755881000168108 Vttack 200 mg film-coated tablet, 100 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46803011000036105 voriconazole 200 mg tablet, 100 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +922991000168101 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet, 10, blister pack 198391 922981000168104 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet, 10 922951000168106 Candesartan Hydrochlorothiazide 16/12.5 (RZ) uncoated tablet 922941000168109 Candesartan Hydrochlorothiazide 16/12.5 (RZ) 922941000168109 Candesartan Hydrochlorothiazide 16/12.5 (RZ) 890831000168109 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet, 10 23145011000036104 candesartan cilexetil 16 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +18341000036101 Glucobete-1000 1 g film-coated tablet, 100, bottle 180437 16911000036100 Glucobete-1000 1 g film-coated tablet, 100 15751000036107 Glucobete-1000 1 g film-coated tablet 1701000168104 Glucobete-1000 1701000168104 Glucobete-1000 16921000036107 metformin hydrochloride 1 g tablet, 100 23360011000036106 metformin hydrochloride 1 g tablet 21614011000036102 metformin +19975011000036103 Pepzan 40 mg film-coated tablet, 30, blister pack 67944 13218011000036101 Pepzan 40 mg film-coated tablet, 30 6500011000036102 Pepzan 40 mg film-coated tablet 3422011000036106 Pepzan 3422011000036106 Pepzan 28146011000036105 famotidine 40 mg tablet, 30 23455011000036100 famotidine 40 mg tablet 21348011000036108 famotidine +34798011000036109 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 60 mL, bottle 76049 34373011000036107 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 60 mL 34064011000036102 Cefaclor (Sandoz) 250 mg/5 mL powder for oral liquid, 5 mL 33949011000036103 Cefaclor (Sandoz) 33949011000036103 Cefaclor (Sandoz) 35220011000036101 cefaclor 250 mg/5 mL powder for oral liquid, 60 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +662251000168109 Temozolomide (AN) 250 mg hard capsule, 5, bottle 192683 662241000168107 Temozolomide (AN) 250 mg hard capsule, 5 662231000168103 Temozolomide (AN) 250 mg hard capsule 662021000168109 Temozolomide (AN) 662021000168109 Temozolomide (AN) 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +921852011000036105 Propofol (Sandoz) 500 mg/50 mL injection emulsion, 50 mL vial 148871 921416011000036108 Propofol (Sandoz) 500 mg/50 mL injection emulsion, 50 mL vial 920995011000036108 Propofol (Sandoz) 500 mg/50 mL injection emulsion, 50 mL vial 920961011000036109 Propofol (Sandoz) 920961011000036109 Propofol (Sandoz) 38834011000036106 propofol 500 mg/50 mL injection, 50 mL vial 38039011000036108 propofol 500 mg/50 mL injection, vial 37750011000036109 propofol +11851000036101 Enlafax XR 75 mg modified release capsule, 28, blister pack 143533 6491000036103 Enlafax XR 75 mg modified release capsule, 28 3331000036101 Enlafax XR 75 mg modified release capsule 43211000168104 Enlafax XR 43211000168104 Enlafax XR 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +18448011000036109 Adriamycin 10 mg/5 mL injection solution, 5 mL vial 15407 12091011000036108 Adriamycin 10 mg/5 mL injection solution, 5 mL vial 5974011000036109 Adriamycin 10 mg/5 mL injection solution, 5 mL vial 3524011000036107 Adriamycin 3524011000036107 Adriamycin 26924011000036106 doxorubicin hydrochloride 10 mg/5 mL injection, 5 mL vial 22301011000036108 doxorubicin hydrochloride 10 mg/5 mL injection, vial 21638011000036100 doxorubicin +18206011000036102 Hyforil 20/12.5 mg uncoated tablet, 30, bottle 124590 11771011000036103 Hyforil 20/12.5 mg uncoated tablet, 30 5229011000036105 Hyforil 20/12.5 mg uncoated tablet 10181000168102 Hyforil 20/12.5 mg 10181000168102 Hyforil 20/12.5 mg 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +696091000168108 MD-Gastroview solution, 240 mL, bottle 696081000168105 MD-Gastroview solution, 240 mL 696061000168101 MD-Gastroview solution 920923011000036102 MD-Gastroview 920923011000036102 MD-Gastroview 696071000168107 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 240 mL 696051000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution 77441011000036100 amidotrizoic acid +52204011000036105 Paclitaxel (Baxter) 300 mg/50 mL concentrated injection, 50 mL vial 143029 52092011000036107 Paclitaxel (Baxter) 300 mg/50 mL concentrated injection, 50 mL vial 51988011000036102 Paclitaxel (Baxter) 300 mg/50 mL concentrated injection, 50 mL vial 51948011000036108 Paclitaxel (Baxter) 51948011000036108 Paclitaxel (Baxter) 28270011000036109 paclitaxel 300 mg/50 mL injection, 50 mL vial 23584011000036100 paclitaxel 300 mg/50 mL injection, vial 21604011000036104 paclitaxel +95401000036102 Axiron 2% (30 mg/actuation) solution, 60 actuations, pump pack 182332 94251000036101 Axiron 2% (30 mg/actuation) solution, 60 actuations 93631000036105 Axiron 2% (30 mg/actuation) solution, actuation 93231000036107 Axiron 93231000036107 Axiron 94261000036103 testosterone 2% (30 mg/actuation) solution, 60 actuations 93641000036100 testosterone 2% (30 mg/actuation) solution, actuation 21290011000036109 testosterone +747221000168100 Pemetrexed (Accord) 100 mg powder for injection, 1 vial 222420 747211000168107 Pemetrexed (Accord) 100 mg powder for injection, 1 vial 747201000168109 Pemetrexed (Accord) 100 mg powder for injection, 100 mg vial 747161000168104 Pemetrexed (Accord) 747161000168104 Pemetrexed (Accord) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +747221000168100 Pemetrexed (Accord) 100 mg powder for injection, 1 vial 222416 747211000168107 Pemetrexed (Accord) 100 mg powder for injection, 1 vial 747201000168109 Pemetrexed (Accord) 100 mg powder for injection, 100 mg vial 747161000168104 Pemetrexed (Accord) 747161000168104 Pemetrexed (Accord) 33792011000036108 pemetrexed 100 mg injection, 1 vial 33664011000036108 pemetrexed 100 mg injection, vial 21321011000036102 pemetrexed +1060571000168106 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 84, blister pack 234477 1060561000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 84 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 912071000168108 rosuvastatin 40 mg tablet, 84 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +1074961000168109 Atenolol (RBX) 100 mg film-coated tablet, 56, blister pack 197761 1074951000168107 Atenolol (RBX) 100 mg film-coated tablet, 56 1074841000168101 Atenolol (RBX) 100 mg film-coated tablet 700961000168107 Atenolol (RBX) 700961000168107 Atenolol (RBX) 1031921000168104 atenolol 100 mg tablet, 56 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +920807011000036108 Amoxycillin (GA) 250 mg hard capsule, 20, blister pack 95456 920486011000036104 Amoxycillin (GA) 250 mg hard capsule, 20 920217011000036103 Amoxycillin (GA) 250 mg hard capsule 920070011000036103 Amoxycillin (GA) 920070011000036103 Amoxycillin (GA) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +920807011000036108 Amoxycillin (GA) 250 mg hard capsule, 20, blister pack 197485 920486011000036104 Amoxycillin (GA) 250 mg hard capsule, 20 920217011000036103 Amoxycillin (GA) 250 mg hard capsule 920070011000036103 Amoxycillin (GA) 920070011000036103 Amoxycillin (GA) 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +829191000168104 Imatinib (Teva) 100 mg film-coated tablet, 180, blister pack 232234 829181000168102 Imatinib (Teva) 100 mg film-coated tablet, 180 829101000168105 Imatinib (Teva) 100 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 829001000168106 imatinib 100 mg tablet, 180 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +1072811000168105 Pantoprazole (Generic Health) 40 mg enteric tablet, 140, blister pack 191033 1072801000168107 Pantoprazole (Generic Health) 40 mg enteric tablet, 140 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46655011000036105 pantoprazole 40 mg enteric tablet, 140 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1072811000168105 Pantoprazole (Generic Health) 40 mg enteric tablet, 140, blister pack 155115 1072801000168107 Pantoprazole (Generic Health) 40 mg enteric tablet, 140 920169011000036106 Pantoprazole (Generic Health) 40 mg enteric tablet 920104011000036109 Pantoprazole (Generic Health) 920104011000036109 Pantoprazole (Generic Health) 46655011000036105 pantoprazole 40 mg enteric tablet, 140 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1041201000168101 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device 122855 1041191000168104 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device 1041171000168100 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device 41101000168107 Aranesp Sureclick 41101000168107 Aranesp Sureclick 1041181000168102 darbepoetin alfa 80 microgram/0.4 mL injection, 0.4 mL injection device 1041161000168106 darbepoetin alfa 80 microgram/0.4 mL injection, injection device 21234011000036105 darbepoetin alfa +1069111000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 36, blister pack 196531 1069101000168102 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet, 36 1068991000168101 Paracetamol plus Codeine-15 (Chemmart Pharmacy) uncoated tablet 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1068981000168104 Paracetamol plus Codeine-15 (Chemmart Pharmacy) 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +1058401000168105 Esomeprazole (SZ) 40 mg enteric tablet, 30, blister pack 207578 1058391000168108 Esomeprazole (SZ) 40 mg enteric tablet, 30 1058331000168109 Esomeprazole (SZ) 40 mg enteric tablet 1058221000168100 Esomeprazole (SZ) 1058221000168100 Esomeprazole (SZ) 27739011000036103 esomeprazole 40 mg enteric tablet, 30 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +933216221000036100 Actiq 600 microgram lozenge on handle, 30, blister pack 91601 933205871000036106 Actiq 600 microgram lozenge on handle, 30 34077011000036102 Actiq 600 microgram lozenge on handle 33952011000036105 Actiq 33952011000036105 Actiq 933205881000036108 fentanyl 600 microgram lozenge on handle, 30 34912011000036104 fentanyl 600 microgram lozenge on handle 21258011000036102 fentanyl +966311000168103 Qpril 40 mg film-coated tablet, 100, blister pack 96925 966301000168101 Qpril 40 mg film-coated tablet, 100 966221000168104 Qpril 40 mg film-coated tablet 83545011000036104 Qpril 83545011000036104 Qpril 966291000168102 quinapril 40 mg tablet, 100 966211000168106 quinapril 40 mg tablet 21289011000036102 quinapril +18223011000036101 Fluoxetine (Pharmacor) 20 mg hard capsule, 28, blister pack 130619 11902011000036108 Fluoxetine (Pharmacor) 20 mg hard capsule, 28 5720011000036109 Fluoxetine (Pharmacor) 20 mg hard capsule 3424011000036102 Fluoxetine (Pharmacor) 3424011000036102 Fluoxetine (Pharmacor) 28093011000036104 fluoxetine 20 mg capsule, 28 23401011000036108 fluoxetine 20 mg capsule 21411011000036102 fluoxetine +82865011000036103 Mircera 75 microgram/0.3 mL injection solution, 0.3 mL syringe 153801 82772011000036102 Mircera 75 microgram/0.3 mL injection solution, 0.3 mL syringe 82682011000036101 Mircera 75 microgram/0.3 mL injection solution, 0.3 mL syringe 82658011000036106 Mircera 82658011000036106 Mircera 82992011000036101 epoetin beta 75 microgram/0.3 mL injection, 0.3 mL syringe 82929011000036100 epoetin beta 75 microgram/0.3 mL injection, syringe 21625011000036109 epoetin beta +81079011000036106 Soov Prickly Heat dusting powder, 50 g, bottle 154964 80588011000036103 Soov Prickly Heat dusting powder, 50 g 80203011000036102 Soov Prickly Heat dusting powder 16171000168102 Soov Prickly Heat 16171000168102 Soov Prickly Heat 81662011000036104 butyl hydroxybenzoate 0.2% + light liquid paraffin 10% + salicylic acid 1.3% + zinc oxide 10% dusting powder, 50 g 81281011000036105 butyl hydroxybenzoate 0.2% + light liquid paraffin 10% + salicylic acid 1.3% + zinc oxide 10% dusting powder 81224011000036103 butyl hydroxybenzoate + light liquid paraffin + salicylic acid + zinc oxide +850101000168104 Vzole 200 mg film-coated tablet, 50, bottle 238241 849871000168109 Vzole 200 mg film-coated tablet, 50 849591000168107 Vzole 200 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46809011000036108 voriconazole 200 mg tablet, 50 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +19686011000036102 Mabthera 100 mg/10 mL concentrated injection, 2 x 10 mL vials 60318 12944011000036109 Mabthera 100 mg/10 mL concentrated injection, 2 x 10 mL vials 6234011000036109 Mabthera 100 mg/10 mL concentrated injection, 10 mL vial 56711000168101 Mabthera 56711000168101 Mabthera 27457011000036100 rituximab 100 mg/10 mL injection, 2 x 10 mL vials 22804011000036108 rituximab 100 mg/10 mL injection, vial 21460011000036105 rituximab +1098541000168104 Azathioprine (AN) 25 mg film-coated tablet, 100, blister pack 184935 1098531000168108 Azathioprine (AN) 25 mg film-coated tablet, 100 1098521000168105 Azathioprine (AN) 25 mg film-coated tablet 660061000168100 Azathioprine (AN) 660061000168100 Azathioprine (AN) 27753011000036102 azathioprine 25 mg tablet, 100 23084011000036102 azathioprine 25 mg tablet 21702011000036100 azathioprine +60546011000036108 Sinus with Antihistamine PE (Soul Pattinson) tablet, 24, blister pack 153436 56504011000036103 Sinus with Antihistamine PE (Soul Pattinson) tablet, 24 53944011000036108 Sinus with Antihistamine PE (Soul Pattinson) tablet 53320011000036105 Sinus with Antihistamine PE (Soul Pattinson) 53320011000036105 Sinus with Antihistamine PE (Soul Pattinson) 63385011000036105 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet, 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +31261000036105 Benadryl Mucus Relief plus Decongestant oral liquid solution, 100 mL, bottle 176045 28671000036107 Benadryl Mucus Relief plus Decongestant oral liquid solution, 100 mL 26491000036105 Benadryl Mucus Relief plus Decongestant oral liquid solution, 5 mL 24211000168100 Benadryl Mucus Relief plus Decongestant 24211000168100 Benadryl Mucus Relief plus Decongestant 63378011000036109 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 100 mL 61932011000036107 guaifenesin 100 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61724011000036106 guaifenesin + phenylephrine +715701000168100 Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g, tube 77753 715691000168100 Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g 715681000168103 Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream 55821000168108 Clotrimazole 3 Day Treatment (Pharmacist) 55821000168108 Clotrimazole 3 Day Treatment (Pharmacist) 714891000168102 clotrimazole 2% vaginal cream, 20 g 714871000168103 clotrimazole 2% vaginal cream 21684011000036100 clotrimazole +824941000168105 Vaqta Adult 50 units/mL injection suspension, 1 mL vial 58536 824931000168101 Vaqta Adult 50 units/mL injection suspension, 1 mL vial 824911000168106 Vaqta Adult 50 units/mL injection suspension, vial 16311000168108 Vaqta Adult 16311000168108 Vaqta Adult 824921000168104 hepatitis A adult vaccine 50 units/mL injection, 1 mL vial 824901000168108 hepatitis A adult vaccine 50 units/mL injection, vial 824641000168102 hepatitis A vaccine +79051011000036103 Phenasen 10 mg/10 mL concentrated injection, 10 x 10 mL vials 152760 78863011000036105 Phenasen 10 mg/10 mL concentrated injection, 10 x 10 mL vials 78669011000036101 Phenasen 10 mg/10 mL concentrated injection, 10 mL vial 78595011000036109 Phenasen 78595011000036109 Phenasen 79239011000036107 arsenic trioxide 10 mg/10 mL injection, 10 x 10 mL vials 79114011000036104 arsenic trioxide 10 mg/10 mL injection, vial 79088011000036104 arsenic +933092011000036107 Fluorouracil (Ebewe) 2.5 g/50 mL injection solution, 50 mL vial 166738 932895011000036105 Fluorouracil (Ebewe) 2.5 g/50 mL injection solution, 50 mL vial 932751011000036101 Fluorouracil (Ebewe) 2.5 g/50 mL injection solution, 50 mL vial 932710011000036102 Fluorouracil (Ebewe) 932710011000036102 Fluorouracil (Ebewe) 46730011000036106 fluorouracil 2.5 g/50 mL injection, 50 mL vial 45286011000036108 fluorouracil 2.5 g/50 mL injection, vial 21481011000036100 fluorouracil +914361000168105 Amoxyclav 500/125 (Generic Health) film-coated tablet, 10, blister pack 255077 914351000168108 Amoxyclav 500/125 (Generic Health) film-coated tablet, 10 914321000168100 Amoxyclav 500/125 (Generic Health) film-coated tablet 914281000168105 Amoxyclav 500/125 (Generic Health) 914281000168105 Amoxyclav 500/125 (Generic Health) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1017161000168108 Aripiprazole (AU) 10 mg uncoated tablet, 250, bottle 217248 1017151000168106 Aripiprazole (AU) 10 mg uncoated tablet, 250 1016981000168104 Aripiprazole (AU) 10 mg uncoated tablet 1016781000168101 Aripiprazole (AU) 1016781000168101 Aripiprazole (AU) 1015711000168104 aripiprazole 10 mg tablet, 250 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +919201000168101 Temolide 180 mg hard capsule, 20, bottle 192682 919191000168104 Temolide 180 mg hard capsule, 20 919151000168109 Temolide 180 mg hard capsule 918991000168106 Temolide 918991000168106 Temolide 164381000036106 temozolomide 180 mg capsule, 20 76701000036108 temozolomide 180 mg capsule 21595011000036105 temozolomide +749461000168103 Tacoccord 5 mg hard capsule, 100, blister pack 224271 749451000168100 Tacoccord 5 mg hard capsule, 100 749401000168104 Tacoccord 5 mg hard capsule 749051000168109 Tacoccord 749051000168109 Tacoccord 652651000168101 tacrolimus 5 mg capsule, 100 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +893501000168108 Olmesartan (Sandoz) 40 mg film-coated tablet, 30, blister pack 221056 893491000168101 Olmesartan (Sandoz) 40 mg film-coated tablet, 30 893481000168104 Olmesartan (Sandoz) 40 mg film-coated tablet 893471000168102 Olmesartan (Sandoz) 893471000168102 Olmesartan (Sandoz) 26567011000036100 olmesartan medoxomil 40 mg tablet, 30 21976011000036100 olmesartan medoxomil 40 mg tablet 32674011000036109 olmesartan +1006481000168106 Antimicrobial Hand Gel (Elyptol) 70% gel, 500 mL, pump pack 172237 1006471000168108 Antimicrobial Hand Gel (Elyptol) 70% gel, 500 mL 1006421000168107 Antimicrobial Hand Gel (Elyptol) 70% gel 1006411000168100 Antimicrobial Hand Gel (Elyptol) 1006411000168100 Antimicrobial Hand Gel (Elyptol) 925448011000036103 ethanol 70% gel, 500 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +37518011000036100 Exelon-10 9.5 mg/24 hours patch, 30, sachet 133428 36786011000036101 Exelon-10 9.5 mg/24 hours patch, 30 36012011000036100 Exelon-10 9.5 mg/24 hours patch 56281000168104 Exelon-10 56281000168104 Exelon-10 38683011000036108 rivastigmine 9.5 mg/24 hours patch, 30 37923011000036109 rivastigmine 9.5 mg/24 hours patch 21413011000036101 rivastigmine +926761011000036105 Fluconazole-1 (Chemmart) 150 mg hard capsule, 1, blister pack 152605 926158011000036103 Fluconazole-1 (Chemmart) 150 mg hard capsule, 1 925646011000036100 Fluconazole-1 (Chemmart) 150 mg hard capsule 13651000168108 Fluconazole-1 (Chemmart) 13651000168108 Fluconazole-1 (Chemmart) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +1058421000168101 Esomeprazole (SZ) 40 mg enteric tablet, 100, blister pack 207578 1058411000168108 Esomeprazole (SZ) 40 mg enteric tablet, 100 1058331000168109 Esomeprazole (SZ) 40 mg enteric tablet 1058221000168100 Esomeprazole (SZ) 1058221000168100 Esomeprazole (SZ) 46728011000036105 esomeprazole 40 mg enteric tablet, 100 23070011000036101 esomeprazole 40 mg enteric tablet 21697011000036107 esomeprazole +18874011000036105 Mycostatin 100 000 units/mL oral liquid suspension, 24 mL, bottle 19220 12185011000036104 Mycostatin 100 000 units/mL oral liquid suspension, 24 mL 4478011000036108 Mycostatin 100 000 units/mL oral liquid suspension 3465011000036108 Mycostatin 3465011000036108 Mycostatin 27209011000036104 nystatin 100 000 units/mL oral liquid, 24 mL 22569011000036106 nystatin 100 000 units/mL oral liquid 21669011000036102 nystatin +991451000168104 Bisoprolol (Apotex) 3.75 mg tablet, 56, blister pack 182112 991441000168101 Bisoprolol (Apotex) 3.75 mg tablet, 56 991231000168106 Bisoprolol (Apotex) 3.75 mg tablet 990961000168101 Bisoprolol (Apotex) 990961000168101 Bisoprolol (Apotex) 875901000168105 bisoprolol fumarate 3.75 mg tablet, 56 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +980661000168106 Desowen 0.05% cream, 30 g, tube 67167 980651000168109 Desowen 0.05% cream, 30 g 980601000168105 Desowen 0.05% cream 39556011000036104 Desowen 39556011000036104 Desowen 980641000168107 desonide 0.05% cream, 30 g 980591000168103 desonide 0.05% cream 44914011000036107 desonide +923754011000036106 Novicrit 10 000 units/mL injection solution, 6 x 1 mL syringes 147842 923302011000036107 Novicrit 10 000 units/mL injection solution, 6 x 1 mL syringes 922988011000036108 Novicrit 10 000 units/mL injection solution, syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924122011000036109 epoetin lambda 10 000 units/mL injection, 6 x 1 mL syringes 923951011000036101 epoetin lambda 10 000 units/mL injection, syringe 923930011000036107 epoetin lambda +902001000168100 Amisulpride (SCP) 200 mg uncoated tablet, 90, blister pack 234699 901991000168102 Amisulpride (SCP) 200 mg uncoated tablet, 90 901891000168109 Amisulpride (SCP) 200 mg uncoated tablet 889591000168101 Amisulpride (SCP) 889591000168101 Amisulpride (SCP) 84643011000036107 amisulpride 200 mg tablet, 90 23499011000036105 amisulpride 200 mg tablet 21522011000036106 amisulpride +19202011000036104 Carboplatin (DBL) 450 mg/45 mL injection solution, 45 mL vial 46846 12492011000036109 Carboplatin (DBL) 450 mg/45 mL injection solution, 45 mL vial 5357011000036105 Carboplatin (DBL) 450 mg/45 mL injection solution, 45 mL vial 3040011000036102 Carboplatin (DBL) 3040011000036102 Carboplatin (DBL) 27225011000036105 carboplatin 450 mg/45 mL injection, 45 mL vial 22585011000036107 carboplatin 450 mg/45 mL injection, vial 21451011000036105 carboplatin +44817011000036105 Daivobet 50/500 ointment, 30 g, tube 98773 42249011000036106 Daivobet 50/500 ointment, 30 g 40404011000036105 Daivobet 50/500 ointment 9151000168103 Daivobet 50/500 9151000168103 Daivobet 50/500 47002011000036103 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment, 30 g 45370011000036107 calcipotriol 0.005% + betamethasone (as dipropionate) 0.05% ointment 44974011000036100 calcipotriol + betamethasone dipropionate +858781000168105 Amidep 25 mg film-coated tablet, 20, blister pack 215378 858771000168107 Amidep 25 mg film-coated tablet, 20 858761000168101 Amidep 25 mg film-coated tablet 858671000168103 Amidep 858671000168103 Amidep 692241000168105 amitriptyline hydrochloride 25 mg tablet, 20 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +1051961000168105 Palexia SR 100 mg modified release tablet, 50, blister pack 165346 1051951000168108 Palexia SR 100 mg modified release tablet, 50 134451000036104 Palexia SR 100 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 1051941000168106 tapentadol 100 mg modified release tablet, 50 134461000036101 tapentadol 100 mg modified release tablet 135971000036102 tapentadol +19444011000036100 Cordilox SR 180 mg modified release tablet, 30, bottle 54030 12726011000036108 Cordilox SR 180 mg modified release tablet, 30 5871011000036101 Cordilox SR 180 mg modified release tablet 22581000168103 Cordilox SR 22581000168103 Cordilox SR 27315011000036109 verapamil hydrochloride 180 mg modified release tablet, 30 22668011000036106 verapamil hydrochloride 180 mg modified release tablet 21287011000036109 verapamil +755981000168102 Leflunomide (Apotex) 10 mg uncoated tablet, 30, blister pack 129539 755971000168100 Leflunomide (Apotex) 10 mg uncoated tablet, 30 755961000168106 Leflunomide (Apotex) 10 mg uncoated tablet 755921000168101 Leflunomide (Apotex) 755921000168101 Leflunomide (Apotex) 28095011000036103 leflunomide 10 mg tablet, 30 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +649391000168106 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 28, blister pack 202109 649381000168108 Pritor/Amlodipine 80 mg/10 mg multilayer tablet, 28 649331000168107 Pritor/Amlodipine 80 mg/10 mg multilayer tablet 649321000168109 Pritor/Amlodipine 80 mg/10 mg 649321000168109 Pritor/Amlodipine 80 mg/10 mg 932440011000036101 telmisartan 80 mg + amlodipine 10 mg tablet, 28 931859011000036104 telmisartan 80 mg + amlodipine 10 mg tablet 931788011000036101 telmisartan + amlodipine +18960011000036100 Bisalax Micro 10 mg/5 mL enema, 25 x 5 mL, tube 27900 12268011000036105 Bisalax Micro 10 mg/5 mL enema, 25 x 5 mL 5275011000036107 Bisalax Micro 10 mg/5 mL enema, 5 mL 20581000168104 Bisalax Micro 20581000168104 Bisalax Micro 27030011000036106 bisacodyl 10 mg/5 mL enema, 25 x 5 mL 22403011000036104 bisacodyl 10 mg/5 mL enema 21264011000036101 bisacodyl +13951000036108 Olanzapine (GA) 5 mg film-coated tablet, 28, blister pack 178971 7611000036108 Olanzapine (GA) 5 mg film-coated tablet, 28 2691000036100 Olanzapine (GA) 5 mg film-coated tablet 31571000168107 Olanzapine (GA) 31571000168107 Olanzapine (GA) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +752201000168109 Oxycodone (Actavis) 10 mg hard capsule, 20, blister pack 227838 752161000168104 Oxycodone (Actavis) 10 mg hard capsule, 20 752151000168101 Oxycodone (Actavis) 10 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +1064931000168106 Paracode uncoated tablet, 12, blister pack 292799 1064921000168108 Paracode uncoated tablet, 12 1064911000168101 Paracode uncoated tablet 1064901000168104 Paracode 1064901000168104 Paracode 63850011000036107 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 12 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +982831000168103 Ibrance 75 mg hard capsule, 21, blister pack 274622 982821000168101 Ibrance 75 mg hard capsule, 21 982801000168105 Ibrance 75 mg hard capsule 982621000168100 Ibrance 982621000168100 Ibrance 982811000168108 palbociclib 75 mg capsule, 21 982791000168109 palbociclib 75 mg capsule 982631000168102 palbociclib +60938011000036100 Claratyne 10 mg effervescent tablet, 30, blister pack 62125 56892011000036105 Claratyne 10 mg effervescent tablet, 30 54112011000036105 Claratyne 10 mg effervescent tablet 4061000168104 Claratyne 4061000168104 Claratyne 86571000036101 loratadine 10 mg effervescent tablet, 30 86001000036103 loratadine 10 mg effervescent tablet 21701011000036106 loratadine +752191000168106 Oxycodone (Actavis) 10 mg hard capsule, 60, bottle 227829 752181000168108 Oxycodone (Actavis) 10 mg hard capsule, 60 752151000168101 Oxycodone (Actavis) 10 mg hard capsule 752071000168109 Oxycodone (Actavis) 752071000168109 Oxycodone (Actavis) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +959801000168108 Paracetamol IV (Apo) 1 g/100 mL injection solution, 12 x 100 mL vials 221748 959791000168107 Paracetamol IV (Apo) 1 g/100 mL injection solution, 12 x 100 mL vials 959781000168109 Paracetamol IV (Apo) 1 g/100 mL injection solution, 100 mL vial 959751000168102 Paracetamol IV (Apo) 959751000168102 Paracetamol IV (Apo) 47031011000036102 paracetamol 1 g/100 mL injection, 12 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +20943011000036103 Dimirel 1 mg uncoated tablet, 30, blister pack 94474 14098011000036109 Dimirel 1 mg uncoated tablet, 30 7375011000036101 Dimirel 1 mg uncoated tablet 3387011000036106 Dimirel 3387011000036106 Dimirel 28147011000036108 glimepiride 1 mg tablet, 30 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +132051000036102 Pritor Plus 80/12.5 multilayer tablet, 28, blister pack 90889 128831000036101 Pritor Plus 80/12.5 multilayer tablet, 28 124801000036101 Pritor Plus 80/12.5 multilayer tablet 52811000168105 Pritor Plus 80/12.5 52811000168105 Pritor Plus 80/12.5 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +755811000168102 Vttack 200 mg film-coated tablet, 28, blister pack 206985 755801000168100 Vttack 200 mg film-coated tablet, 28 755711000168105 Vttack 200 mg film-coated tablet 755411000168100 Vttack 755411000168100 Vttack 46807011000036101 voriconazole 200 mg tablet, 28 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +61030011000036101 Imodium Advanced chewable tablet, 18, blister pack 66848 56973011000036100 Imodium Advanced chewable tablet, 18 54144011000036107 Imodium Advanced chewable tablet 53369011000036108 Imodium Advanced 53369011000036108 Imodium Advanced 63671011000036108 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet, 18 62040011000036101 loperamide hydrochloride 2 mg + simethicone 125 mg chewable tablet 61819011000036104 loperamide + simethicone +20234011000036103 Ciazil 20 mg film-coated tablet, 28, blister pack 74266 13445011000036104 Ciazil 20 mg film-coated tablet, 28 6727011000036108 Ciazil 20 mg film-coated tablet 3546011000036102 Ciazil 3546011000036102 Ciazil 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1100781000168108 Clogrel 75 mg film-coated tablet, 28, blister pack 200468 1100771000168105 Clogrel 75 mg film-coated tablet, 28 1100761000168104 Clogrel 75 mg film-coated tablet 1100751000168101 Clogrel 1100751000168101 Clogrel 27899011000036109 clopidogrel 75 mg tablet, 28 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +923891011000036101 Nicorette Icy Mint 2 mg chewing gum, 15, blister pack 165904 923435011000036100 Nicorette Icy Mint 2 mg chewing gum, 15 923081011000036101 Nicorette Icy Mint 2 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 924198011000036102 nicotine 2 mg gum, 15 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +1000081000168104 Rivaroxaban (Apo) 15 mg film-coated tablet, 28, bottle 269602 1000071000168102 Rivaroxaban (Apo) 15 mg film-coated tablet, 28 1000061000168108 Rivaroxaban (Apo) 15 mg film-coated tablet 999891000168107 Rivaroxaban (Apo) 999891000168107 Rivaroxaban (Apo) 83241000036103 rivaroxaban 15 mg tablet, 28 78931000036102 rivaroxaban 15 mg tablet 79098011000036103 rivaroxaban +649231000168100 Pantoprazole (Actavis) 40 mg enteric tablet, 30, blister pack 205426 649221000168103 Pantoprazole (Actavis) 40 mg enteric tablet, 30 649211000168105 Pantoprazole (Actavis) 40 mg enteric tablet 649201000168107 Pantoprazole (Actavis) 649201000168107 Pantoprazole (Actavis) 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +914931000168101 Movantik 25 mg film-coated tablet, 10, blister pack 232029 914921000168104 Movantik 25 mg film-coated tablet, 10 914901000168108 Movantik 25 mg film-coated tablet 914871000168108 Movantik 914871000168108 Movantik 914911000168106 naloxegol 25 mg tablet, 10 914891000168109 naloxegol 25 mg tablet 914881000168106 naloxegol +1049781000168102 Bupannus 5 microgram/hour patch, 1, sachet 234729 1049771000168100 Bupannus 5 microgram/hour patch, 1 1049761000168106 Bupannus 5 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1046451000168108 buprenorphine 5 microgram/hour patch, 1 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +31221000036101 Karbesat 300 mg film-coated tablet, 30, blister pack 171458 28361000036106 Karbesat 300 mg film-coated tablet, 30 26621000036109 Karbesat 300 mg film-coated tablet 26121000036101 Karbesat 26121000036101 Karbesat 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +910661000168108 Cavstat 40 mg film-coated tablet, 500, bottle 234461 910651000168106 Cavstat 40 mg film-coated tablet, 500 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910641000168109 rosuvastatin 40 mg tablet, 500 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +678341000168107 Anoro Ellipta 62.5/25 powder for inhalation, 30 actuations, blister pack 207529 678331000168103 Anoro Ellipta 62.5/25 powder for inhalation, 30 actuations 678311000168108 Anoro Ellipta 62.5/25 powder for inhalation, actuation 678201000168103 Anoro Ellipta 62.5/25 678201000168103 Anoro Ellipta 62.5/25 678321000168101 umeclidinium 62.5 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, 30 actuations 678301000168105 umeclidinium 62.5 microgram/actuation + vilanterol 25 microgram/actuation powder for inhalation, actuation 678291000168109 umeclidinium + vilanterol +176531000036101 Sildenafil (Terry White Chemists) 100 mg film-coated tablet, 4, blister pack 164818 174741000036105 Sildenafil (Terry White Chemists) 100 mg film-coated tablet, 4 173551000036100 Sildenafil (Terry White Chemists) 100 mg film-coated tablet 172591000036104 Sildenafil (Terry White Chemists) 172591000036104 Sildenafil (Terry White Chemists) 27547011000036108 sildenafil 100 mg tablet, 4 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +83189011000036104 Irinotecan Hydrochloride Trihydrate (Ebewe) 40 mg/2 mL concentrated injection, 2 mL vial 154241 83135011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 40 mg/2 mL concentrated injection, 2 mL vial 83078011000036107 Irinotecan Hydrochloride Trihydrate (Ebewe) 40 mg/2 mL concentrated injection, 2 mL vial 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 83064011000036106 Irinotecan Hydrochloride Trihydrate (Ebewe) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +925178011000036103 Lercan 20 mg film-coated tablet, 30, blister pack 152708 924715011000036101 Lercan 20 mg film-coated tablet, 30 924429011000036103 Lercan 20 mg film-coated tablet 924368011000036107 Lercan 924368011000036107 Lercan 28127011000036106 lercanidipine hydrochloride 20 mg tablet, 30 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +95681000036105 Azithromycin (Apo) 500 mg film-coated tablet, 2, blister pack 195910 94581000036105 Azithromycin (Apo) 500 mg film-coated tablet, 2 93381000036101 Azithromycin (Apo) 500 mg film-coated tablet 93201000036100 Azithromycin (Apo) 93201000036100 Azithromycin (Apo) 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +1099251000168107 Sunsense Ultra SPF 50+ lotion, 200 g, tube 279170 1099241000168105 Sunsense Ultra SPF 50+ lotion, 200 g 1099131000168106 Sunsense Ultra SPF 50+ lotion 683971000168104 Sunsense Ultra SPF 50+ 683971000168104 Sunsense Ultra SPF 50+ 1099231000168101 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion, 200 g 1099121000168108 bemotrizinol 1% + octocrylene 2% + diethylamino hydroxybenzoyl hexyl benzoate 3.5% + titanium dioxide 2% lotion 1099111000168101 bemotrizinol + octocrylene + diethylamino hydroxybenzoyl hexyl benzoate + titanium dioxide +763201000168106 Tobramycin (Agila) 80 mg/2 mL injection solution, 10 x 2 mL vials 234430 763191000168108 Tobramycin (Agila) 80 mg/2 mL injection solution, 10 x 2 mL vials 763121000168106 Tobramycin (Agila) 80 mg/2 mL injection solution, 2 mL vial 763111000168104 Tobramycin (Agila) 763111000168104 Tobramycin (Agila) 46747011000036106 tobramycin 80 mg/2 mL injection, 10 x 2 mL vials 23110011000036104 tobramycin 80 mg/2 mL injection, vial 21646011000036100 tobramycin +1058491000168104 Ondansetron (Auro) 8 mg film-coated tablet, 4, blister pack 173182 1058481000168102 Ondansetron (Auro) 8 mg film-coated tablet, 4 1058451000168109 Ondansetron (Auro) 8 mg film-coated tablet 1058441000168107 Ondansetron (Auro) 1058441000168107 Ondansetron (Auro) 28336011000036101 ondansetron 8 mg tablet, 4 23647011000036105 ondansetron 8 mg tablet 21545011000036100 ondansetron +842511000168105 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 20 x 2.5 mL ampoules 12533 842501000168107 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 20 x 2.5 mL ampoules 5106011000036109 Ventolin Nebules 2.5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 34231000168108 Ventolin Nebules 34231000168108 Ventolin Nebules 842491000168100 salbutamol 2.5 mg/2.5 mL inhalation solution, 20 x 2.5 mL ampoules 23442011000036106 salbutamol 2.5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +13771000036101 Letrozole (Actavis) 2.5 mg film-coated tablet, 30, blister pack 176276 8881000036103 Letrozole (Actavis) 2.5 mg film-coated tablet, 30 3701000036107 Letrozole (Actavis) 2.5 mg film-coated tablet 1051000036105 Letrozole (Actavis) 1051000036105 Letrozole (Actavis) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +933246741000036107 Lisinopril (PS) 20 mg uncoated tablet, 14, blister pack 152714 933243381000036108 Lisinopril (PS) 20 mg uncoated tablet, 14 933241361000036104 Lisinopril (PS) 20 mg uncoated tablet 933240921000036103 Lisinopril (PS) 933240921000036103 Lisinopril (PS) 78126011000036102 lisinopril 20 mg tablet, 14 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +658071000168100 Telmisartan (GH) 80 mg uncoated tablet, 28, blister pack 209338 658061000168106 Telmisartan (GH) 80 mg uncoated tablet, 28 658051000168109 Telmisartan (GH) 80 mg uncoated tablet 658011000168108 Telmisartan (GH) 658011000168108 Telmisartan (GH) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +925981000168108 Zorac 0.1% gel, 30 g, tube 59520 925971000168105 Zorac 0.1% gel, 30 g 925891000168104 Zorac 0.1% gel 39675011000036100 Zorac 39675011000036100 Zorac 925961000168104 tazarotene 0.1% gel, 30 g 925881000168102 tazarotene 0.1% gel 44886011000036105 tazarotene +18061000036103 Zilfojim 4 mg film-coated tablet, 10, blister pack 173185 16711000036102 Zilfojim 4 mg film-coated tablet, 10 15651000036102 Zilfojim 4 mg film-coated tablet 15201000036100 Zilfojim 15201000036100 Zilfojim 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +44425011000036102 Stelazine 1 mg film-coated tablet, 100, bottle 71778 13173011000036100 Stelazine 1 mg film-coated tablet, 100 6456011000036104 Stelazine 1 mg film-coated tablet 7991000168102 Stelazine 7991000168102 Stelazine 27591011000036106 trifluoperazine 1 mg tablet, 100 22930011000036102 trifluoperazine 1 mg tablet 21507011000036102 trifluoperazine +802571000168107 Abilify ODT 10 mg orally disintegrating tablet, 56, blister pack 128893 802561000168101 Abilify ODT 10 mg orally disintegrating tablet, 56 802331000168104 Abilify ODT 10 mg orally disintegrating tablet 802311000168109 Abilify ODT 802311000168109 Abilify ODT 802551000168103 aripiprazole 10 mg orally disintegrating tablet, 56 802321000168102 aripiprazole 10 mg orally disintegrating tablet 21675011000036108 aripiprazole +1058581000168103 Omeprazole (Pharmacor) 20 mg enteric tablet, 30, blister pack 190416 1058571000168101 Omeprazole (Pharmacor) 20 mg enteric tablet, 30 1058561000168107 Omeprazole (Pharmacor) 20 mg enteric tablet 922926011000036103 Omeprazole (Pharmacor) 922926011000036103 Omeprazole (Pharmacor) 27602011000036106 omeprazole 20 mg enteric tablet, 30 22941011000036105 omeprazole 20 mg enteric tablet 21676011000036101 omeprazole +19503011000036104 Cilicaine VK 500 mg hard capsule, 50, blister pack 55675 12779011000036100 Cilicaine VK 500 mg hard capsule, 50 6073011000036102 Cilicaine VK 500 mg hard capsule 20371000168108 Cilicaine VK 20371000168108 Cilicaine VK 27621011000036105 phenoxymethylpenicillin 500 mg capsule, 50 22959011000036107 phenoxymethylpenicillin 500 mg capsule 21370011000036105 phenoxymethylpenicillin +791031000168109 Quetiapine XR (AS) 300 mg modified release tablet, 10, blister pack 226822 791021000168106 Quetiapine XR (AS) 300 mg modified release tablet, 10 791011000168104 Quetiapine XR (AS) 300 mg modified release tablet 790771000168101 Quetiapine XR (AS) 790771000168101 Quetiapine XR (AS) 51535011000036107 quetiapine 300 mg modified release tablet, 10 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +995561000168104 Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24, blister pack 58320 995551000168101 Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24 995531000168107 Difflam Cough Lozenge Blackcurrant Sugar Free lozenge 38411000168109 Difflam Cough Lozenge 38411000168109 Difflam Cough Lozenge 995541000168103 benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge, 24 995521000168109 benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge 61811011000036103 benzydamine + cetylpyridinium + pholcodine +724701000168107 Latuda 40 mg film-coated tablet, 30, blister pack 206650 724691000168107 Latuda 40 mg film-coated tablet, 30 724671000168106 Latuda 40 mg film-coated tablet 724621000168105 Latuda 724621000168105 Latuda 724681000168109 lurasidone hydrochloride 40 mg tablet, 30 724661000168100 lurasidone hydrochloride 40 mg tablet 724651000168102 lurasidone +17969011000036100 Simvasyn 5 mg film-coated tablet, 30, blister pack 124689 11773011000036102 Simvasyn 5 mg film-coated tablet, 30 5509011000036105 Simvasyn 5 mg film-coated tablet 4188011000036104 Simvasyn 4188011000036104 Simvasyn 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +912031000168105 Cavstat 40 mg film-coated tablet, 56, blister pack 234508 912021000168107 Cavstat 40 mg film-coated tablet, 56 113091000036107 Cavstat 40 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 912011000168100 rosuvastatin 40 mg tablet, 56 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +926843011000036103 Zinc Chloride (Phebra) 10.6 mg/2 mL concentrated injection, 10 x 2 mL vials 22876 926239011000036109 Zinc Chloride (Phebra) 10.6 mg/2 mL concentrated injection, 10 x 2 mL vials 925692011000036105 Zinc Chloride (Phebra) 10.6 mg/2 mL concentrated injection, 2 mL vial 925532011000036109 Zinc Chloride (Phebra) 925532011000036109 Zinc Chloride (Phebra) 927351011000036100 zinc chloride 10.6 mg/2 mL injection, 10 x 2 mL vials 927001011000036107 zinc chloride 10.6 mg/2 mL injection, vial 69760011000036100 zinc chloride +1049951000168107 Tramal 50 mg hard capsule, 10, blister pack 64011 1049941000168105 Tramal 50 mg hard capsule, 10 6366011000036102 Tramal 50 mg hard capsule 24551000168102 Tramal 24551000168102 Tramal 1049931000168101 tramadol hydrochloride 50 mg capsule, 10 23536011000036104 tramadol hydrochloride 50 mg capsule 21486011000036105 tramadol +1054521000168107 Oxycodone (Sandoz) 10 mg modified release tablet, 20, blister pack 153597 785631000168101 Oxycodone (Sandoz) 10 mg modified release tablet, 20 676311000168107 Oxycodone (Sandoz) 10 mg modified release tablet 676271000168107 Oxycodone (Sandoz) 676271000168107 Oxycodone (Sandoz) 27633011000036108 oxycodone hydrochloride 10 mg modified release tablet, 20 22970011000036104 oxycodone hydrochloride 10 mg modified release tablet 21259011000036105 oxycodone +44013011000036102 Cardizem CD 240 mg modified release capsule, 7, bottle 46825 41502011000036102 Cardizem CD 240 mg modified release capsule, 7 5362011000036103 Cardizem CD 240 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 46640011000036103 diltiazem hydrochloride 240 mg modified release capsule, 7 23374011000036107 diltiazem hydrochloride 240 mg modified release capsule 21270011000036102 diltiazem +737261000168106 Cardasa 100 mg enteric tablet, 84, blister pack 201525 737251000168109 Cardasa 100 mg enteric tablet, 84 737221000168101 Cardasa 100 mg enteric tablet 737211000168108 Cardasa 737211000168108 Cardasa 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +18021000036107 Altven 75 mg modified release capsule, 28, blister pack 171536 17031000036105 Altven 75 mg modified release capsule, 28 15521000036107 Altven 75 mg modified release capsule 15101000036105 Altven 15101000036105 Altven 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +61660011000036101 Aerius Syrup 500 microgram/mL oral liquid solution, 15 mL, bottle 97260 57582011000036107 Aerius Syrup 500 microgram/mL oral liquid solution, 15 mL 54355011000036102 Aerius Syrup 500 microgram/mL oral liquid solution 38081000168108 Aerius Syrup 38081000168108 Aerius Syrup 63938011000036101 desloratadine 500 microgram/mL oral liquid, 15 mL 62105011000036107 desloratadine 500 microgram/mL oral liquid 61723011000036109 desloratadine +1093061000168104 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 10, blister pack 282022 1093051000168101 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule, 10 1093041000168103 Ibuprofen Liquid Capsules (Chemists' Own) 200 mg soft capsule 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 1093031000168107 Ibuprofen Liquid Capsules (Chemists' Own) 63926011000036103 ibuprofen 200 mg capsule, 10 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +34710011000036108 Methadone Hydrochloride Syrup (Orion) 5 mg/mL oral liquid solution, 20 mL, bottle 21160 34294011000036105 Methadone Hydrochloride Syrup (Orion) 5 mg/mL oral liquid solution, 20 mL 34017011000036107 Methadone Hydrochloride Syrup (Orion) 5 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35143011000036105 methadone hydrochloride 5 mg/mL oral liquid, 20 mL 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +43738011000036102 Fentanyl (DBL) 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 107027 41150011000036100 Fentanyl (DBL) 500 microgram/10 mL injection solution, 5 x 10 mL ampoules 39862011000036109 Fentanyl (DBL) 500 microgram/10 mL injection solution, 10 mL ampoule 39741011000036105 Fentanyl (DBL) 39741011000036105 Fentanyl (DBL) 35182011000036108 fentanyl 500 microgram/10 mL injection, 5 x 10 mL ampoules 34895011000036100 fentanyl 500 microgram/10 mL injection, ampoule 21258011000036102 fentanyl +928931000168102 Staphylex 500 mg hard capsule, 30, blister pack 17684 928921000168100 Staphylex 500 mg hard capsule, 30 6385011000036107 Staphylex 500 mg hard capsule 4347011000036100 Staphylex 4347011000036100 Staphylex 928911000168107 flucloxacillin 500 mg capsule, 30 23014011000036104 flucloxacillin 500 mg capsule 21623011000036108 flucloxacillin +95721000036102 Azithromycin (Chemmart) 500 mg film-coated tablet, 2, blister pack 195916 94621000036105 Azithromycin (Chemmart) 500 mg film-coated tablet, 2 93411000036104 Azithromycin (Chemmart) 500 mg film-coated tablet 93221000036105 Azithromycin (Chemmart) 93221000036105 Azithromycin (Chemmart) 27419011000036101 azithromycin 500 mg tablet, 2 22767011000036100 azithromycin 500 mg tablet 21518011000036103 azithromycin +1061711000168101 Atorvastatin (GX) 80 mg film-coated tablet, 90, bottle 217179 1061701000168104 Atorvastatin (GX) 80 mg film-coated tablet, 90 1061691000168104 Atorvastatin (GX) 80 mg film-coated tablet 1061681000168102 Atorvastatin (GX) 1061681000168102 Atorvastatin (GX) 1038731000168107 atorvastatin 80 mg tablet, 90 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +922015011000036109 Incremin oral liquid, 200 mL, bottle 74635 921573011000036101 Incremin oral liquid, 200 mL 921094011000036105 Incremin oral liquid, 5 mL 920910011000036103 Incremin 920910011000036103 Incremin 922687011000036108 lysine hydrochloride 150 mg/5 mL + thiamine hydrochloride 5 mg/5 mL + pyridoxine hydrochloride 2.5 mg/5 mL + cyanocobalamin 12.5 microgram/5 mL + iron (as ferric pyrophosphate) 5 mg/5 mL oral liquid, 200 mL 922158011000036102 lysine hydrochloride 150 mg/5 mL + thiamine hydrochloride 5 mg/5 mL + pyridoxine hydrochloride 2.5 mg/5 mL + cyanocobalamin 12.5 microgram/5 mL + iron (as ferric pyrophosphate) 5 mg/5 mL oral liquid 21693011000036103 lysine + thiamine + pyridoxine + cyanocobalamin + ferric pyrophosphate +12171000036108 Quetiapine (DRLA) 300 mg film-coated tablet, 60, blister pack 162379 7331000036109 Quetiapine (DRLA) 300 mg film-coated tablet, 60 3771000036103 Quetiapine (DRLA) 300 mg film-coated tablet 691000036105 Quetiapine (DRLA) 691000036105 Quetiapine (DRLA) 27880011000036104 quetiapine 300 mg tablet, 60 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +33510011000036106 Sumagran 50 mg film-coated tablet, 4, blister pack 117670 33253011000036104 Sumagran 50 mg film-coated tablet, 4 33020011000036101 Sumagran 50 mg film-coated tablet 32986011000036107 Sumagran 32986011000036107 Sumagran 33781011000036101 sumatriptan 50 mg tablet, 4 22874011000036103 sumatriptan 50 mg tablet 21708011000036102 sumatriptan +1029721000168104 Atomoxetine (Genpar) 60 mg hard capsule, 14, blister pack 234821 1029711000168106 Atomoxetine (Genpar) 60 mg hard capsule, 14 1029651000168103 Atomoxetine (Genpar) 60 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830231000168100 atomoxetine 60 mg capsule, 14 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +1058901000168103 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 90, bottle 234520 1058891000168102 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 90 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 911061000168106 rosuvastatin 10 mg tablet, 90 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +986881000168101 Glyxambi 25 mg/5 mg film-coated tablet, 30, blister pack 263557 986871000168104 Glyxambi 25 mg/5 mg film-coated tablet, 30 986821000168100 Glyxambi 25 mg/5 mg film-coated tablet 986801000168109 Glyxambi 25 mg/5 mg 986801000168109 Glyxambi 25 mg/5 mg 986861000168105 empagliflozin 25 mg + linagliptin 5 mg tablet, 30 986811000168107 empagliflozin 25 mg + linagliptin 5 mg tablet 986711000168104 empagliflozin + linagliptin +87661011000036107 Fosinopril Sodium/HCTZ 20/12.5 (GA) uncoated tablet, 30, blister pack 151950 87442011000036107 Fosinopril Sodium/HCTZ 20/12.5 (GA) uncoated tablet, 30 87309011000036102 Fosinopril Sodium/HCTZ 20/12.5 (GA) uncoated tablet 60321000168103 Fosinopril Sodium/HCTZ 20/12.5 (GA) 60321000168103 Fosinopril Sodium/HCTZ 20/12.5 (GA) 27651011000036106 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 22988011000036107 fosinopril sodium 20 mg + hydrochlorothiazide 12.5 mg tablet 21655011000036105 fosinopril + hydrochlorothiazide +43568011000036108 Dacarbazine (Sandoz) 200 mg powder for injection, 10 vials 117568 41198011000036107 Dacarbazine (Sandoz) 200 mg powder for injection, 10 vials 39839011000036105 Dacarbazine (Sandoz) 200 mg powder for injection, 200 mg vial 39591011000036100 Dacarbazine (Sandoz) 39591011000036100 Dacarbazine (Sandoz) 46159011000036108 dacarbazine 200 mg injection, 10 vials 45064011000036109 dacarbazine 200 mg injection, vial 44890011000036108 dacarbazine +698811000168108 Revatio 10 mg/12.5 mL injection solution, 12.5 mL vial 171474 698801000168105 Revatio 10 mg/12.5 mL injection solution, 12.5 mL vial 698781000168106 Revatio 10 mg/12.5 mL injection solution, 12.5 mL vial 3853011000036107 Revatio 3853011000036107 Revatio 698791000168109 sildenafil 10 mg/12.5 mL injection, 12.5 mL vial 698771000168108 sildenafil 10 mg/12.5 mL injection, vial 21529011000036101 sildenafil +176441000036107 Amoxycillin (Apo) 250 mg/5 mL powder for oral liquid, 100 mL, bottle 137883 174641000036101 Amoxycillin (Apo) 250 mg/5 mL powder for oral liquid, 100 mL 173021000036103 Amoxycillin (Apo) 250 mg/5 mL powder for oral liquid, 5 mL 39598011000036109 Amoxycillin (Apo) 39598011000036109 Amoxycillin (Apo) 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +19752011000036104 Navelbine 50 mg/5 mL concentrated injection, 5 mL vial 62248 13013011000036102 Navelbine 50 mg/5 mL concentrated injection, 5 mL vial 6302011000036100 Navelbine 50 mg/5 mL concentrated injection, 5 mL vial 4394011000036104 Navelbine 4394011000036104 Navelbine 28327011000036101 vinorelbine 50 mg/5 mL injection, 5 mL vial 23639011000036104 vinorelbine 50 mg/5 mL injection, vial 21269011000036100 vinorelbine +908741000168103 Celecoxib (BW) 100 mg hard capsule, 10, blister pack 196182 908731000168107 Celecoxib (BW) 100 mg hard capsule, 10 908721000168109 Celecoxib (BW) 100 mg hard capsule 906901000168103 Celecoxib (BW) 906901000168103 Celecoxib (BW) 903941000168109 celecoxib 100 mg capsule, 10 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +61696011000036100 Mylanta Ranitidine 150 mg film-coated tablet, 14, blister pack 99838 57617011000036102 Mylanta Ranitidine 150 mg film-coated tablet, 14 54367011000036103 Mylanta Ranitidine 150 mg film-coated tablet 53436011000036102 Mylanta Ranitidine 53436011000036102 Mylanta Ranitidine 46863011000036106 ranitidine 150 mg tablet, 14 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +933215011000036106 Seniere 16 mg tablet, 25, blister pack 163022 933204091000036100 Seniere 16 mg tablet, 25 933196261000036107 Seniere 16 mg tablet 933193341000036107 Seniere 933193341000036107 Seniere 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +754621000168109 Remifentanil (GenRx) 1 mg powder for injection, 5 vials 234711 754611000168102 Remifentanil (GenRx) 1 mg powder for injection, 5 vials 754601000168100 Remifentanil (GenRx) 1 mg powder for injection, vial 754591000168107 Remifentanil (GenRx) 754591000168107 Remifentanil (GenRx) 35189011000036103 remifentanil 1 mg injection, 5 vials 34898011000036106 remifentanil 1 mg injection, vial 34838011000036103 remifentanil +176451000036105 Olanzapine (GH) 7.5 mg uncoated tablet, 28, blister pack 157855 174651000036103 Olanzapine (GH) 7.5 mg uncoated tablet, 28 172991000036109 Olanzapine (GH) 7.5 mg uncoated tablet 154641000036103 Olanzapine (GH) 154641000036103 Olanzapine (GH) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +874541000168104 Beezole 20 mg enteric tablet, 100, blister pack 205832 874531000168108 Beezole 20 mg enteric tablet, 100 874441000168100 Beezole 20 mg enteric tablet 874431000168109 Beezole 874431000168109 Beezole 46727011000036109 esomeprazole 20 mg enteric tablet, 100 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +833851000168104 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack 54124 833841000168101 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack 65215011000036109 Colonlytely Original Flavour powder for oral liquid, 68.58 g sachet 761411000168109 Colonprep Kit A 36071000168106 Colonlytely 833831000168105 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid [68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack 70159011000036105 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid, 68.58 g sachet 52802011000036109 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + bicarbonate +833851000168104 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack 54124 833841000168101 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack 832621000168100 Picolax powder for oral liquid, 20 g sachet 761411000168109 Colonprep Kit A 920943011000036104 Picolax 833831000168105 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid [68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack 832611000168107 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet 870871000168104 picosulfate + magnesium carbonate + citric acid +37605011000036102 Ceenu 100 mg hard capsule, 20, bottle 19250 36872011000036107 Ceenu 100 mg hard capsule, 20 36207011000036109 Ceenu 100 mg hard capsule 12181000168103 Ceenu 12181000168103 Ceenu 38759011000036109 lomustine 100 mg capsule, 20 37978011000036103 lomustine 100 mg capsule 37745011000036103 lomustine +118821000036105 Betadine Antiseptic Liquid 10% solution, 15 mL, bottle 29562 118471000036106 Betadine Antiseptic Liquid 10% solution, 15 mL 118071000036101 Betadine Antiseptic Liquid 10% solution 10801000168102 Betadine Antiseptic Liquid 10801000168102 Betadine Antiseptic Liquid 71676011000036109 povidone-iodine 10% solution, 15 mL 70120011000036103 povidone-iodine 10% solution 21660011000036108 povidone-iodine +77175011000036103 GA Gel powder for oral liquid, 30 x 20 g sachets 76561011000036102 GA Gel powder for oral liquid, 30 x 20 g sachets 382551000168100 GA Gel powder for oral liquid, 20 g sachet 75999011000036107 GA Gel 75999011000036107 GA Gel 78118011000036109 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 30 x 20 g sachets 382261000168100 amino acid formula with vitamins and minerals without lysine and low in tryptophan powder for oral liquid, 20 g sachet 50708011000036102 amino acid formula with vitamins and minerals without lysine and low in tryptophan +20334011000036106 Cyprostat 50 mg uncoated tablet, 20, bottle 76119 13543011000036107 Cyprostat 50 mg uncoated tablet, 20 6826011000036108 Cyprostat 50 mg uncoated tablet 3019011000036100 Cyprostat 3019011000036100 Cyprostat 27796011000036102 cyproterone acetate 50 mg tablet, 20 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +1050271000168102 Bupredermal 25 microgram/hour patch, 2, sachet 234745 1050261000168108 Bupredermal 25 microgram/hour patch, 2 1050251000168106 Bupredermal 25 microgram/hour patch 1050191000168109 Bupredermal 1050191000168109 Bupredermal 775931000168100 buprenorphine 25 microgram/hour patch, 2 775911000168105 buprenorphine 25 microgram/hour patch 21232011000036101 buprenorphine +729041000168105 Decapeptyl 100 microgram/mL injection solution, 28 x 1 mL syringes 219857 729031000168101 Decapeptyl 100 microgram/mL injection solution, 28 x 1 mL syringes 729011000168106 Decapeptyl 100 microgram/mL injection solution, syringe 728981000168105 Decapeptyl 728981000168105 Decapeptyl 729021000168104 triptorelin acetate 100 microgram/mL injection, 28 x 1 mL syringes 729001000168108 triptorelin acetate 100 microgram/mL injection, syringe 52800011000036105 triptorelin +1049871000168108 Bupannus 10 microgram/hour patch, 2, sachet 234723 1049861000168102 Bupannus 10 microgram/hour patch, 2 1049831000168105 Bupannus 10 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 26681011000036100 buprenorphine 10 microgram/hour patch, 2 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +69576011000036106 Agarol Strawberry 4.83 mL/15 mL oral liquid emulsion, 200 mL, bottle 62658 67376011000036103 Agarol Strawberry 4.83 mL/15 mL oral liquid emulsion, 200 mL 65635011000036104 Agarol Strawberry 4.83 mL/15 mL oral liquid emulsion, 15 mL 64959011000036105 Agarol 64959011000036105 Agarol 71914011000036109 liquid paraffin 4.83 mL/15 mL oral liquid, 200 mL 70245011000036107 liquid paraffin 4.83 mL/15 mL oral liquid 33623011000036103 liquid paraffin +756451000168108 Pramipexole ER (Apo) 3.75 mg modified release tablet, 30, blister pack 225625 756441000168106 Pramipexole ER (Apo) 3.75 mg modified release tablet, 30 756401000168109 Pramipexole ER (Apo) 3.75 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 933225461000036109 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet, 30 933220641000036103 pramipexole dihydrochloride monohydrate 3.75 mg modified release tablet 37716011000036100 pramipexole +1024341000168105 Betadine Sore Throat Lozenges Orange lozenge, 24, blister pack 227169 1024331000168101 Betadine Sore Throat Lozenges Orange lozenge, 24 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +1038401000168109 Daratumumab (Janssen) 100 mg/5 mL concentrated injection, 5 mL vial 281844 1038391000168107 Daratumumab (Janssen) 100 mg/5 mL concentrated injection, 5 mL vial 1038381000168109 Daratumumab (Janssen) 100 mg/5 mL concentrated injection, 5 mL vial 1038311000168103 Daratumumab (Janssen) 1038311000168103 Daratumumab (Janssen) 1037771000168109 daratumumab 100 mg/5 mL injection, 5 mL vial 1037751000168100 daratumumab 100 mg/5 mL injection, vial 1037741000168102 daratumumab +928871011000036107 Carboplatin (Baxter) 50 mg/5 mL injection solution, 5 mL vial 140392 928233011000036104 Carboplatin (Baxter) 50 mg/5 mL injection solution, 5 mL vial 927891011000036106 Carboplatin (Baxter) 50 mg/5 mL injection solution, 5 mL vial 51933011000036104 Carboplatin (Baxter) 51933011000036104 Carboplatin (Baxter) 27099011000036108 carboplatin 50 mg/5 mL injection, 5 mL vial 22467011000036107 carboplatin 50 mg/5 mL injection, vial 21451011000036105 carboplatin +782331000168100 Voriconazole (Alphapharm) 200 mg film-coated tablet, 30, blister pack 206993 782321000168103 Voriconazole (Alphapharm) 200 mg film-coated tablet, 30 782211000168102 Voriconazole (Alphapharm) 200 mg film-coated tablet 781881000168104 Voriconazole (Alphapharm) 781881000168104 Voriconazole (Alphapharm) 46808011000036100 voriconazole 200 mg tablet, 30 45323011000036103 voriconazole 200 mg tablet 44875011000036105 voriconazole +867001000168108 Amitriptyline (AN) 25 mg tablet, 1000, bottle 232119 863271000168104 Amitriptyline (AN) 25 mg tablet, 1000 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +60649011000036105 Tixylix Night Cough and Cold 2 Years+ oral liquid solution, 200 mL, bottle 27565 56607011000036101 Tixylix Night Cough and Cold 2 Years+ oral liquid solution, 200 mL 54002011000036100 Tixylix Night Cough and Cold 2 Years+ oral liquid solution, 5 mL 34151000168109 Tixylix Night Cough and Cold 2 Years+ 34151000168109 Tixylix Night Cough and Cold 2 Years+ 63459011000036106 pholcodine 1.5 mg/5 mL + promethazine hydrochloride 1.5 mg/5 mL oral liquid, 200 mL 61978011000036108 pholcodine 1.5 mg/5 mL + promethazine hydrochloride 1.5 mg/5 mL oral liquid 61740011000036104 pholcodine + promethazine +170781000036108 Aquacel Ag (403710) 15 cm x 15 cm dressing, 5, carton 156976 169861000036106 Aquacel Ag (403710) 15 cm x 15 cm dressing, 5 169031000036109 Aquacel Ag (403710) 15 cm x 15 cm dressing 47921000168106 Aquacel Ag (403710) 47921000168106 Aquacel Ag (403710) 169871000036103 dressing hydrofibre with silver 15 cm x 15 cm dressing, 5 169041000036104 dressing hydrofibre with silver 15 cm x 15 cm dressing 171041000036105 dressing hydrofibre with silver +750271000168100 Magnesium Forte 400 (Wagner) hard capsule, 200, bottle 123796 750261000168106 Magnesium Forte 400 (Wagner) hard capsule, 200 750211000168108 Magnesium Forte 400 (Wagner) hard capsule 23081000168102 Magnesium Forte 400 (Wagner) 23081000168102 Magnesium Forte 400 (Wagner) 750251000168109 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 200 750201000168105 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule 750191000168107 magnesium + zinc +750271000168100 Magnesium Forte 400 (Wagner) hard capsule, 200, bottle 220522 750261000168106 Magnesium Forte 400 (Wagner) hard capsule, 200 750211000168108 Magnesium Forte 400 (Wagner) hard capsule 23081000168102 Magnesium Forte 400 (Wagner) 23081000168102 Magnesium Forte 400 (Wagner) 750251000168109 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 200 750201000168105 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule 750191000168107 magnesium + zinc +130361000036100 Camino Pro Complete 12+ Years bar, 7 x 81 g, sachet 127211000036105 Camino Pro Complete 12+ Years bar, 7 x 81 g 125521000036108 Camino Pro Complete 12+ Years bar, 81 g 20851000168108 Camino Pro Complete 12+ Years 20851000168108 Camino Pro Complete 12+ Years 127221000036103 glycomacropeptide and essential amino acids with vitamins and minerals bar, 7 x 81 g 136201000036108 glycomacropeptide and essential amino acids with vitamins and minerals bar, 81 g 132091000036106 glycomacropeptide and essential amino acids with vitamins and minerals +1032931000168106 Ramipril (Apotex) 5 mg capsule, 30, blister pack 179032 1032921000168108 Ramipril (Apotex) 5 mg capsule, 30 1032911000168101 Ramipril (Apotex) 5 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 32763011000036108 ramipril 5 mg capsule, 30 32694011000036101 ramipril 5 mg capsule 21395011000036107 ramipril +933212271000036100 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 28, blister pack 142237 933201041000036108 Donepezil Hydrochloride (GH) 5 mg film-coated tablet, 28 933194881000036109 Donepezil Hydrochloride (GH) 5 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +858461000168107 Amichlor 25 mg film-coated tablet, 50, blister pack 215389 858451000168105 Amichlor 25 mg film-coated tablet, 50 858391000168109 Amichlor 25 mg film-coated tablet 858271000168100 Amichlor 858271000168100 Amichlor 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +34769011000036103 Dilaudid 8 mg uncoated tablet, 100, bottle 67355 34350011000036101 Dilaudid 8 mg uncoated tablet, 100 6478011000036103 Dilaudid 8 mg uncoated tablet 3117011000036100 Dilaudid 3117011000036100 Dilaudid 35198011000036107 hydromorphone hydrochloride 8 mg tablet, 100 22946011000036100 hydromorphone hydrochloride 8 mg tablet 21480011000036107 hydromorphone +871251000168102 Taltz 80 mg/mL injection solution, 2 x 1 mL injection devices 253893 871241000168104 Taltz 80 mg/mL injection solution, 2 x 1 mL injection devices 871191000168104 Taltz 80 mg/mL injection solution, injection device 871151000168109 Taltz 871151000168109 Taltz 871231000168108 ixekizumab 80 mg/mL injection, 2 x 1 mL injection devices 871181000168102 ixekizumab 80 mg/mL injection, injection device 871171000168100 ixekizumab +74786011000036100 Roxithromycin (Terry White Chemists) 150 mg film-coated tablet, 10, blister pack 133752 74273011000036105 Roxithromycin (Terry White Chemists) 150 mg film-coated tablet, 10 73793011000036108 Roxithromycin (Terry White Chemists) 150 mg film-coated tablet 73772011000036106 Roxithromycin (Terry White Chemists) 73772011000036106 Roxithromycin (Terry White Chemists) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +18535011000036106 Retaane 15 mg/0.5 mL injection suspension, 0.5 mL vial 115599 11499011000036103 Retaane 15 mg/0.5 mL injection suspension, 0.5 mL vial 5055011000036101 Retaane 15 mg/0.5 mL injection suspension, 0.5 mL vial 3303011000036101 Retaane 3303011000036101 Retaane 26673011000036109 anecortave acetate 15 mg/0.5 mL injection, 0.5 mL vial 22069011000036109 anecortave acetate 15 mg/0.5 mL injection, vial 21900011000036108 anecortave +925276011000036104 Invega Sustenna 150 mg modified release injection, 1 syringe 160857 924813011000036104 Invega Sustenna 150 mg modified release injection, 1 syringe 924507011000036109 Invega Sustenna 150 mg modified release injection, syringe 26461000168105 Invega Sustenna 26461000168105 Invega Sustenna 925419011000036103 paliperidone 150 mg modified release injection, 1 syringe 925377011000036106 paliperidone 150 mg modified release injection, syringe 34837011000036104 paliperidone +44759011000036107 Co-Diovan 160/25 film-coated tablet, 56, blister pack 96742 42204011000036101 Co-Diovan 160/25 film-coated tablet, 56 40387011000036108 Co-Diovan 160/25 film-coated tablet 52921000168106 Co-Diovan 160/25 52921000168106 Co-Diovan 160/25 46964011000036102 valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 56 45360011000036103 valsartan 160 mg + hydrochlorothiazide 25 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +903371000168103 Bonezol 5 mg/100 mL injection solution, 100 mL vial 191991 903361000168109 Bonezol 5 mg/100 mL injection solution, 100 mL vial 903351000168107 Bonezol 5 mg/100 mL injection solution, 100 mL vial 903341000168105 Bonezol 903341000168105 Bonezol 51495011000036109 zoledronic acid 5 mg/100 mL injection, 100 mL vial 50987011000036105 zoledronic acid 5 mg/100 mL injection, vial 21790011000036102 zoledronic acid +929091000168109 Isordil 40 mg uncoated tablet, 100, blister pack 40251 929081000168106 Isordil 40 mg uncoated tablet, 100 929031000168105 Isordil 40 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 929071000168108 isosorbide dinitrate 40 mg tablet, 100 929021000168107 isosorbide dinitrate 40 mg tablet 21865011000036107 isosorbide dinitrate +20043011000036109 Norditropin Simplexx 15 mg/1.5 mL injection solution, 1.5 mL cartridge 69362 13275011000036102 Norditropin Simplexx 15 mg/1.5 mL injection solution, 1.5 mL cartridge 6557011000036106 Norditropin Simplexx 15 mg/1.5 mL injection solution, 1.5 mL cartridge 45201000168101 Norditropin Simplexx 45201000168101 Norditropin Simplexx 28300011000036106 somatropin 15 mg/1.5 mL injection, 1.5 mL cartridge 23614011000036105 somatropin 15 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +38291000036106 Escitalopram (Lupin) 10 mg film-coated tablet, 200, bottle 165841 34621000036100 Escitalopram (Lupin) 10 mg film-coated tablet, 200 32911000036105 Escitalopram (Lupin) 10 mg film-coated tablet 32221000036105 Escitalopram (Lupin) 32221000036105 Escitalopram (Lupin) 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +68771011000036100 Nicotinell Mint 4 mg chewing gum, 144, blister pack 126044 66699011000036107 Nicotinell Mint 4 mg chewing gum, 144 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71515011000036101 nicotine 4 mg gum, 144 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60564011000036105 Panadeine uncoated tablet, 4, blister pack 15478 56522011000036100 Panadeine uncoated tablet, 4 53950011000036101 Panadeine uncoated tablet 13481000168104 Panadeine 13481000168104 Panadeine 63393011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 4 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +140551000036106 Respikast 10 mg uncoated tablet, 28, blister pack 189221 139131000036103 Respikast 10 mg uncoated tablet, 28 138071000036109 Respikast 10 mg uncoated tablet 124031000036104 Respikast 124031000036104 Respikast 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +37536011000036105 Hypnovel 5 mg/5 mL injection solution, 10 x 5 mL ampoules 13779 36804011000036108 Hypnovel 5 mg/5 mL injection solution, 10 x 5 mL ampoules 36104011000036101 Hypnovel 5 mg/5 mL injection solution, 5 mL ampoule 35964011000036100 Hypnovel 35964011000036100 Hypnovel 38701011000036104 midazolam 5 mg/5 mL injection, 10 x 5 mL ampoules 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +38201000036103 Escitalupin 5 mg film-coated tablet, 100, bottle 165837 34531000036104 Escitalupin 5 mg film-coated tablet, 100 33101000036100 Escitalupin 5 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +900161000168101 Kovaltry (1 x 250 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack, composite pack 236280 900151000168103 Kovaltry (1 x 250 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack 900131000168109 Kovaltry (octocog alfa 250 units) powder for injection, 250 units vial 884791000168107 Kovaltry 884791000168107 Kovaltry 900141000168100 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 922151011000036106 octocog alfa 250 units injection, vial 69843011000036100 octocog alfa +900161000168101 Kovaltry (1 x 250 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack, composite pack 236280 900151000168103 Kovaltry (1 x 250 units vial, 1 x 2.5 mL inert diluent syringe), 1 pack 884811000168106 Kovaltry (inert substance) diluent, 2.5 mL syringe 884791000168107 Kovaltry 884791000168107 Kovaltry 900141000168100 octocog alfa 250 units injection [1 vial] (&) inert substance diluent [2.5 mL syringe], 1 pack 636211000168102 inert substance diluent, 2.5 mL syringe 21220011000036103 inert substance +1058651000168106 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 30, bottle 234464 1058641000168109 Rosuvastatin (Pharmacor) 40 mg film-coated tablet, 30 1058631000168100 Rosuvastatin (Pharmacor) 40 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26706011000036103 rosuvastatin 40 mg tablet, 30 22101011000036104 rosuvastatin 40 mg tablet 21464011000036100 rosuvastatin +933212111000036102 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 50, blister pack 142235 933200731000036107 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet, 50 933194861000036104 Donepezil Hydrochloride (Synthon) 5 mg film-coated tablet 933193501000036104 Donepezil Hydrochloride (Synthon) 933193501000036104 Donepezil Hydrochloride (Synthon) 933200741000036102 donepezil hydrochloride 5 mg tablet, 50 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +819871000168102 Nausicalm 50 mg uncoated tablet, 100, blister pack 231174 819861000168108 Nausicalm 50 mg uncoated tablet, 100 819781000168108 Nausicalm 50 mg uncoated tablet 819761000168104 Nausicalm 819761000168104 Nausicalm 819851000168106 cyclizine hydrochloride 50 mg tablet, 100 819771000168105 cyclizine hydrochloride 50 mg tablet 675051000168102 cyclizine +991221000168108 Lyrica 100 mg hard capsule, 20, bottle 99527 991211000168101 Lyrica 100 mg hard capsule, 20 991181000168100 Lyrica 100 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 903511000168101 pregabalin 100 mg capsule, 20 854931000168100 pregabalin 100 mg capsule 33640011000036108 pregabalin +110301000036106 Valine1000 containing 1 g valine powder for oral liquid, 30 x 4 g sachets 108521000036105 Valine1000 containing 1 g valine powder for oral liquid, 30 x 4 g sachets 290401000168108 Valine1000 containing 1 g valine powder for oral liquid, 4 g sachet 106571000036105 Valine1000 106571000036105 Valine1000 929745011000036109 valine with carbohydrate containing 1 g valine powder for oral liquid, 30 x 4 g sachets 289541000168104 valine with carbohydrate containing 1 g valine powder for oral liquid, 4 g sachet 50774011000036104 valine with carbohydrate +1046901000168102 Buprenorphine (SZ) 5 microgram/hour patch, 1, sachet 269670 1046891000168101 Buprenorphine (SZ) 5 microgram/hour patch, 1 1046881000168104 Buprenorphine (SZ) 5 microgram/hour patch 1046711000168102 Buprenorphine (SZ) 1046711000168102 Buprenorphine (SZ) 1046451000168108 buprenorphine 5 microgram/hour patch, 1 22076011000036105 buprenorphine 5 microgram/hour patch 21232011000036101 buprenorphine +929111000168101 Isordil 40 mg uncoated tablet, 100, bottle 40250 929081000168106 Isordil 40 mg uncoated tablet, 100 929031000168105 Isordil 40 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 929071000168108 isosorbide dinitrate 40 mg tablet, 100 929021000168107 isosorbide dinitrate 40 mg tablet 21865011000036107 isosorbide dinitrate +50267011000036107 Handy Gloves (4208) medium glove, 100, carton 49420011000036105 Handy Gloves (4208) medium glove, 100 48457011000036107 Handy Gloves (4208) medium glove 28861000168107 Handy Gloves (4208) 28861000168107 Handy Gloves (4208) 51388011000036106 gloves plastic disposable medium glove, 100 50909011000036102 gloves plastic disposable medium glove 50759011000036101 gloves plastic disposable +865911000168101 Amitriptyline (PN) 50 mg tablet, 1000, bottle 232151 865901000168104 Amitriptyline (PN) 50 mg tablet, 1000 865851000168108 Amitriptyline (PN) 50 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 742261000168108 amitriptyline hydrochloride 50 mg tablet, 1000 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +857321000168106 Trevicta 263 mg/1.315 mL modified release injection, 1.315 mL syringe 261410 857311000168104 Trevicta 263 mg/1.315 mL modified release injection, 1.315 mL syringe 857291000168103 Trevicta 263 mg/1.315 mL modified release injection, 1.315 mL syringe 856551000168107 Trevicta 856551000168107 Trevicta 857301000168102 paliperidone 263 mg/1.315 mL modified release injection, 1.315 mL syringe 857281000168101 paliperidone 263 mg/1.315 mL modified release injection, syringe 34837011000036104 paliperidone +841301000168109 Bansep 20 mg film-coated tablet, 6, blister pack 173503 841291000168108 Bansep 20 mg film-coated tablet, 6 841271000168107 Bansep 20 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 841281000168105 atorvastatin 20 mg tablet, 6 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +921621000168103 Caspofungin (Panpharma) 50 mg powder for injection, 1 vial 250412 921611000168105 Caspofungin (Panpharma) 50 mg powder for injection, 1 vial 921601000168107 Caspofungin (Panpharma) 50 mg powder for injection, 50 mg vial 921561000168107 Caspofungin (Panpharma) 921561000168107 Caspofungin (Panpharma) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +12351000036101 Zylap ODT 10 mg orally disintegrating tablet, 28, blister pack 163420 7261000036108 Zylap ODT 10 mg orally disintegrating tablet, 28 2191000036109 Zylap ODT 10 mg orally disintegrating tablet 17721000168104 Zylap ODT 17721000168104 Zylap ODT 68751000036103 olanzapine 10 mg orally disintegrating tablet, 28 68681000036101 olanzapine 10 mg orally disintegrating tablet 21485011000036103 olanzapine +1024421000168109 Betadine Sore Throat Lozenges Orange lozenge, 48, blister pack 227169 1024411000168102 Betadine Sore Throat Lozenges Orange lozenge, 48 1024201000168101 Betadine Sore Throat Lozenges Orange lozenge 1023571000168106 Betadine Sore Throat Lozenges 1023571000168106 Betadine Sore Throat Lozenges 1023861000168103 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 48 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +866001000168106 Amitriptyline (PN) 25 mg tablet, 250, bottle 232149 865991000168105 Amitriptyline (PN) 25 mg tablet, 250 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 863131000168107 amitriptyline hydrochloride 25 mg tablet, 250 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +131891000036108 Montelukast (Sandoz) 5 mg chewable tablet, 28, blister pack 184833 128181000036108 Montelukast (Sandoz) 5 mg chewable tablet, 28 125631000036106 Montelukast (Sandoz) 5 mg chewable tablet 124191000036104 Montelukast (Sandoz) 124191000036104 Montelukast (Sandoz) 27489011000036104 montelukast 5 mg chewable tablet, 28 22834011000036100 montelukast 5 mg chewable tablet 21884011000036106 montelukast +1015791000168108 Aripiprazole (Medis) 15 mg uncoated tablet, 100, bottle 217240 1015781000168105 Aripiprazole (Medis) 15 mg uncoated tablet, 100 1015771000168107 Aripiprazole (Medis) 15 mg uncoated tablet 1015281000168102 Aripiprazole (Medis) 1015281000168102 Aripiprazole (Medis) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +38211000036101 Escitalupin 5 mg film-coated tablet, 250, bottle 165837 34541000036109 Escitalupin 5 mg film-coated tablet, 250 33101000036100 Escitalupin 5 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 34281000036102 escitalopram 5 mg tablet, 250 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +1029821000168105 Atomoxetine (Genpar) 60 mg hard capsule, 56, blister pack 234821 1029811000168103 Atomoxetine (Genpar) 60 mg hard capsule, 56 1029651000168103 Atomoxetine (Genpar) 60 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 830311000168102 atomoxetine 60 mg capsule, 56 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +727711000168101 Abilify 10 mg uncoated tablet, 10, blister pack 90997 727701000168104 Abilify 10 mg uncoated tablet, 10 7232011000036101 Abilify 10 mg uncoated tablet 3542011000036101 Abilify 3542011000036101 Abilify 727691000168104 aripiprazole 10 mg tablet, 10 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +18620011000036107 Simvastatin (RL) 80 mg film-coated tablet, 30, bottle 116827 11546011000036108 Simvastatin (RL) 80 mg film-coated tablet, 30 4769011000036101 Simvastatin (RL) 80 mg film-coated tablet 3713011000036100 Simvastatin (RL) 3713011000036100 Simvastatin (RL) 28271011000036102 simvastatin 80 mg tablet, 30 23585011000036101 simvastatin 80 mg tablet 21242011000036102 simvastatin +1029641000168100 Arianna 1 mg film-coated tablet, 30, bottle 158024 16641000036105 Arianna 1 mg film-coated tablet, 30 15801000036104 Arianna 1 mg film-coated tablet 15081000036103 Arianna 15081000036103 Arianna 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +986791000168108 Glyxambi 10 mg/5 mg film-coated tablet, 30, blister pack 263556 986781000168105 Glyxambi 10 mg/5 mg film-coated tablet, 30 986731000168109 Glyxambi 10 mg/5 mg film-coated tablet 986641000168105 Glyxambi 10 mg/5 mg 986641000168105 Glyxambi 10 mg/5 mg 986771000168107 empagliflozin 10 mg + linagliptin 5 mg tablet, 30 986721000168106 empagliflozin 10 mg + linagliptin 5 mg tablet 986711000168104 empagliflozin + linagliptin +19716011000036107 Dilatrend 6.25 mg uncoated tablet, 60, blister pack 61106 12972011000036101 Dilatrend 6.25 mg uncoated tablet, 60 6261011000036103 Dilatrend 6.25 mg uncoated tablet 4079011000036107 Dilatrend 4079011000036107 Dilatrend 27962011000036109 carvedilol 6.25 mg tablet, 60 23286011000036101 carvedilol 6.25 mg tablet 21470011000036101 carvedilol +703221000168101 Herceptin SC 600 mg/5 mL injection solution, 5 mL vial 220402 703211000168108 Herceptin SC 600 mg/5 mL injection solution, 5 mL vial 703191000168107 Herceptin SC 600 mg/5 mL injection solution, 5 mL vial 703171000168106 Herceptin SC 703171000168106 Herceptin SC 703201000168105 trastuzumab 600 mg/5 mL injection, 5 mL vial 703181000168109 trastuzumab 600 mg/5 mL injection, vial 21530011000036105 trastuzumab +758861000168107 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18693 758851000168105 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758811000168109 Bee Venom (Albey) (honey bee venom 550 microgram) powder for injection, 550 microgram vial 61321000168106 Bee Venom (Albey) 61321000168106 Bee Venom (Albey) 758841000168108 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 758801000168106 honey bee venom 550 microgram injection, vial 758791000168105 honey bee venom +758861000168107 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 161298 758851000168105 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758811000168109 Bee Venom (Albey) (honey bee venom 550 microgram) powder for injection, 550 microgram vial 61321000168106 Bee Venom (Albey) 61321000168106 Bee Venom (Albey) 758841000168108 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 758801000168106 honey bee venom 550 microgram injection, vial 758791000168105 honey bee venom +758861000168107 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18693 758851000168105 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758831000168104 Albumin Saline (Stallergenes) (inert substance) diluent, 1.8 mL vial 61321000168106 Bee Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 758841000168108 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638511000168101 inert substance diluent, 1.8 mL vial 21220011000036103 inert substance +758861000168107 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 161298 758851000168105 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758831000168104 Albumin Saline (Stallergenes) (inert substance) diluent, 1.8 mL vial 61321000168106 Bee Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 758841000168108 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638511000168101 inert substance diluent, 1.8 mL vial 21220011000036103 inert substance +758861000168107 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 18693 758851000168105 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 61321000168106 Bee Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 758841000168108 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638491000168106 inert substance diluent, 9 mL vial 21220011000036103 inert substance +758861000168107 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 161298 758851000168105 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 61321000168106 Bee Venom (Albey) 754701000168106 Albumin Saline (Stallergenes) 758841000168108 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 638491000168106 inert substance diluent, 9 mL vial 21220011000036103 inert substance +891721000168106 Bicor 7.5 mg film-coated tablet, 10, blister pack 81607 891711000168104 Bicor 7.5 mg film-coated tablet, 10 891701000168102 Bicor 7.5 mg film-coated tablet 3639011000036101 Bicor 3639011000036101 Bicor 875461000168102 bisoprolol fumarate 7.5 mg tablet, 10 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +963411000168101 Aripiprazole (Apo) 15 mg uncoated tablet, 100, bottle 152898 963401000168104 Aripiprazole (Apo) 15 mg uncoated tablet, 100 870101000168101 Aripiprazole (Apo) 15 mg uncoated tablet 869761000168103 Aripiprazole (Apo) 869761000168103 Aripiprazole (Apo) 787531000168108 aripiprazole 15 mg tablet, 100 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +170741000036104 Salbutamol (Apo) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 142567 169791000036108 Salbutamol (Apo) 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 169221000036101 Salbutamol (Apo) 5 mg/2.5 mL inhalation solution, 2.5 mL ampoule 929835011000036105 Salbutamol (Apo) 929835011000036105 Salbutamol (Apo) 28134011000036103 salbutamol 5 mg/2.5 mL inhalation solution, 30 x 2.5 mL ampoules 23443011000036104 salbutamol 5 mg/2.5 mL inhalation solution, ampoule 21493011000036100 salbutamol +903451000168101 Brillior 150 mg hard capsule, 56, blister pack 224342 903441000168103 Brillior 150 mg hard capsule, 56 903381000168100 Brillior 150 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +69200011000036107 Ringer's (Baxter) intravenous infusion injection, 1 L bag 19443 67000011000036105 Ringer's (Baxter) intravenous infusion injection, 1 L bag 65242011000036108 Ringer's (Baxter) intravenous infusion injection, 1 L bag 65107011000036104 Ringer's (Baxter) 65107011000036104 Ringer's (Baxter) 71570011000036102 sodium chloride 8.6 g/L + potassium chloride 300 mg (potassium 4 mmol)/L + calcium chloride dihydrate 330 mg/L injection, 1 L bag 70070011000036108 sodium chloride 8.6 g/L + potassium chloride 300 mg (potassium 4 mmol)/L + calcium chloride dihydrate 330 mg/L injection, bag 69841011000036101 sodium chloride + potassium chloride + calcium chloride dihydrate +60247011000036101 Fexo (Guardian) 180 mg film-coated tablet, 30, blister pack 134656 56206011000036101 Fexo (Guardian) 180 mg film-coated tablet, 30 53841011000036102 Fexo (Guardian) 180 mg film-coated tablet 53537011000036107 Fexo (Guardian) 53537011000036107 Fexo (Guardian) 63648011000036103 fexofenadine hydrochloride 180 mg tablet, 30 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +43944011000036103 Sertratrust 50 mg film-coated tablet, 30, blister pack 147077 41436011000036104 Sertratrust 50 mg film-coated tablet, 30 39937011000036108 Sertratrust 50 mg film-coated tablet 39676011000036107 Sertratrust 39676011000036107 Sertratrust 28285011000036107 sertraline 50 mg tablet, 30 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +929689011000036106 Escicor 10 mg film-coated tablet, 28, blister pack 166139 929525011000036107 Escicor 10 mg film-coated tablet, 28 929409011000036105 Escicor 10 mg film-coated tablet 929378011000036103 Escicor 929378011000036103 Escicor 28071011000036107 escitalopram 10 mg tablet, 28 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +69268011000036108 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) irrigation solution, 15 x 500 mL bottles 19476 67068011000036106 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) irrigation solution, 15 x 500 mL bottles 65511011000036103 Sodium Chloride (Baxter) 0.9% (4.5 g/500 mL) irrigation solution, 500 mL bottle 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71638011000036105 sodium chloride 0.9% (4.5 g/500 mL) solution, 15 x 500 mL bottles 70104011000036102 sodium chloride 0.9% (4.5 g/500 mL) solution, bottle 21308011000036103 sodium chloride +704281000168104 Noxicid 20 mg enteric capsule, 30, blister pack 161343 704271000168102 Noxicid 20 mg enteric capsule, 30 704261000168108 Noxicid 20 mg enteric capsule 704221000168103 Noxicid 704221000168103 Noxicid 682661000168106 esomeprazole 20 mg enteric capsule, 30 682641000168107 esomeprazole 20 mg enteric capsule 21697011000036107 esomeprazole +20694011000036107 Ciprol 750 mg film-coated tablet, 14, blister pack 82475 13871011000036108 Ciprol 750 mg film-coated tablet, 14 7158011000036100 Ciprol 750 mg film-coated tablet 3369011000036102 Ciprol 3369011000036102 Ciprol 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +920684011000036109 Fluconazole (Sandoz) 200 mg hard capsule, 28, bottle 104294 920353011000036109 Fluconazole (Sandoz) 200 mg hard capsule, 28 920123011000036100 Fluconazole (Sandoz) 200 mg hard capsule 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 27201011000036103 fluconazole 200 mg capsule, 28 22561011000036107 fluconazole 200 mg capsule 21365011000036105 fluconazole +1028761000168101 Sodium Phosphate and Potassium Phosphate (DBL) concentrated injection, 5 x 20 mL ampoules 16270 1028751000168103 Sodium Phosphate and Potassium Phosphate (DBL) concentrated injection, 5 x 20 mL ampoules 1028731000168109 Sodium Phosphate and Potassium Phosphate (DBL) concentrated injection, 20 mL ampoule 1028701000168102 Sodium Phosphate and Potassium Phosphate (DBL) 1028701000168102 Sodium Phosphate and Potassium Phosphate (DBL) 1028741000168100 dibasic sodium phosphate dodecahydrate 3.84 g/20 mL + monobasic potassium phosphate 348 mg (potassium 2.6 mmol)/20 mL injection, 5 x 20 mL ampoules 1028721000168106 dibasic sodium phosphate dodecahydrate 3.84 g/20 mL + monobasic potassium phosphate 348 mg (potassium 2.6 mmol)/20 mL injection, ampoule 1028711000168104 dibasic sodium phosphate + monobasic potassium phosphate +82899011000036104 Metsal Heat Rub cream, 50 g, tube 163791 82793011000036100 Metsal Heat Rub cream, 50 g 82701011000036104 Metsal Heat Rub cream 82661011000036109 Metsal Heat Rub 82661011000036109 Metsal Heat Rub 83010011000036102 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% cream, 50 g 82942011000036107 methyl salicylate 28.3% + eucalyptus oil 8.8% + menthol 2% cream 21628011000036103 methyl salicylate + eucalyptus oil + menthol +74845011000036104 Tick Antivenom (CSL) 200 units powder for injection, 1 vial 31860 74332011000036106 Tick Antivenom (CSL) 200 units powder for injection, 1 vial 73824011000036104 Tick Antivenom (CSL) 200 units powder for injection, 200 units vial 73696011000036107 Tick Antivenom (CSL) 73696011000036107 Tick Antivenom (CSL) 75438011000036109 tick antivenom 200 units injection, 1 vial 75058011000036100 tick antivenom 200 units injection, vial 74984011000036104 tick antivenom +875501000168102 Bispro 7.5 mg film-coated tablet, 28, blister pack 130181 875491000168109 Bispro 7.5 mg film-coated tablet, 28 875451000168104 Bispro 7.5 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 874341000168107 bisoprolol fumarate 7.5 mg tablet, 28 874321000168101 bisoprolol fumarate 7.5 mg tablet 21839011000036103 bisoprolol +937611000168100 Paclitaxin 100 mg/16.7 mL concentrated injection, 16.7 mL vial 153504 937601000168103 Paclitaxin 100 mg/16.7 mL concentrated injection, 16.7 mL vial 937591000168105 Paclitaxin 100 mg/16.7 mL concentrated injection, 16.7 mL vial 937581000168107 Paclitaxin 937581000168107 Paclitaxin 28268011000036103 paclitaxel 100 mg/16.7 mL injection, 16.7 mL vial 23582011000036109 paclitaxel 100 mg/16.7 mL injection, vial 21604011000036104 paclitaxel +894771000168105 Olmesartan/HCT 40/25 (Sandoz) film-coated tablet, 30, blister pack 221130 894761000168104 Olmesartan/HCT 40/25 (Sandoz) film-coated tablet, 30 894751000168101 Olmesartan/HCT 40/25 (Sandoz) film-coated tablet 894691000168100 Olmesartan/HCT 40/25 (Sandoz) 894691000168100 Olmesartan/HCT 40/25 (Sandoz) 26674011000036106 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet, 30 22070011000036107 olmesartan medoxomil 40 mg + hydrochlorothiazide 25 mg tablet 32679011000036105 olmesartan + hydrochlorothiazide +762071000168102 D3 (Bioceuticals) 25 microgram (1000 units) soft capsule, 60, bottle 159395 762061000168108 D3 (Bioceuticals) 25 microgram (1000 units) soft capsule, 60 762051000168106 D3 (Bioceuticals) 25 microgram (1000 units) soft capsule 762041000168109 D3 (Bioceuticals) 762041000168109 D3 (Bioceuticals) 86409011000036109 colecalciferol 25 microgram (1000 units) capsule, 60 86211011000036106 colecalciferol 25 microgram (1000 units) capsule 77447011000036108 colecalciferol +38121000036103 Escital 5 mg film-coated tablet, 100, bottle 165833 34451000036108 Escital 5 mg film-coated tablet, 100 32351000036108 Escital 5 mg film-coated tablet 32321000036102 Escital 32321000036102 Escital 34261000036107 escitalopram 5 mg tablet, 100 32361000036106 escitalopram 5 mg tablet 21534011000036100 escitalopram +901681000168107 Amisulpride (CH) 400 mg uncoated tablet, 60, blister pack 234703 901671000168109 Amisulpride (CH) 400 mg uncoated tablet, 60 901631000168106 Amisulpride (CH) 400 mg uncoated tablet 889511000168105 Amisulpride (CH) 889511000168105 Amisulpride (CH) 27752011000036109 amisulpride 400 mg tablet, 60 23083011000036104 amisulpride 400 mg tablet 21522011000036106 amisulpride +1006891000168106 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet, 96, blister pack 281887 1006881000168108 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet, 96 1006871000168105 Osteo Relief Paracetamol (Apohealth) 665 mg modified release tablet 1006851000168101 Osteo Relief Paracetamol (Apohealth) 1006851000168101 Osteo Relief Paracetamol (Apohealth) 26679011000036107 paracetamol 665 mg modified release tablet, 96 22075011000036103 paracetamol 665 mg modified release tablet 21433011000036107 paracetamol +20540011000036104 Klacid 250 mg film-coated tablet, 14, blister pack 79564 13737011000036101 Klacid 250 mg film-coated tablet, 14 7020011000036105 Klacid 250 mg film-coated tablet 3147011000036106 Klacid 3147011000036106 Klacid 28323011000036105 clarithromycin 250 mg tablet, 14 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +179501000036104 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 211155 175351000036108 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 173091000036100 Micronelle 30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 179361000036108 Micronelle 30 ED 179361000036108 Micronelle 30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +179501000036104 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 211155 175351000036108 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 28 173101000036109 Micronelle 30 ED (inert substance) film-coated tablet 179361000036108 Micronelle 30 ED 179361000036108 Micronelle 30 ED 28348011000036103 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +44081011000036101 Fluorouracil (Pfizer (Perth)) 2.5 g/100 mL injection solution, 100 mL vial 49309 41568011000036100 Fluorouracil (Pfizer (Perth)) 2.5 g/100 mL injection solution, 100 mL vial 40071011000036107 Fluorouracil (Pfizer (Perth)) 2.5 g/100 mL injection solution, 100 mL vial 35860011000036101 Fluorouracil (Pfizer (Perth)) 35860011000036101 Fluorouracil (Pfizer (Perth)) 46397011000036102 fluorouracil 2.5 g/100 mL injection, 100 mL vial 45131011000036107 fluorouracil 2.5 g/100 mL injection, vial 21481011000036100 fluorouracil +69739011000036100 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 24, blister pack 92684 67538011000036104 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule, 24 65690011000036104 Lemsip Cold and Flu Liquid Capsule 500 mg soft capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 9891000168104 Lemsip Cold and Flu Liquid Capsule 72039011000036107 paracetamol 500 mg capsule, 24 70282011000036109 paracetamol 500 mg capsule 21433011000036107 paracetamol +920667011000036100 Trandolapril (GA) 1 mg hard capsule, 28, blister pack 135967 920397011000036107 Trandolapril (GA) 1 mg hard capsule, 28 920159011000036101 Trandolapril (GA) 1 mg hard capsule 920114011000036106 Trandolapril (GA) 920114011000036106 Trandolapril (GA) 27127011000036103 trandolapril 1 mg capsule, 28 22493011000036101 trandolapril 1 mg capsule 21447011000036104 trandolapril +937771000168104 Famciclovir (FBM) 250 mg film-coated tablet, 20, blister pack 177000 937761000168105 Famciclovir (FBM) 250 mg film-coated tablet, 20 937691000168109 Famciclovir (FBM) 250 mg film-coated tablet 937681000168106 Famciclovir (FBM) 937681000168106 Famciclovir (FBM) 86450011000036106 famciclovir 250 mg tablet, 20 22607011000036106 famciclovir 250 mg tablet 21221011000036105 famciclovir +86026011000036101 Coveram 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10, bottle 154438 85677011000036109 Coveram 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet, 10 85329011000036109 Coveram 5mg/5mg (perindopril arginine/amlodipine) uncoated tablet 43001000168107 Coveram 5mg/5mg (perindopril arginine/amlodipine) 43001000168107 Coveram 5mg/5mg (perindopril arginine/amlodipine) 86423011000036104 perindopril arginine 5 mg + amlodipine 5 mg tablet, 10 86217011000036103 perindopril arginine 5 mg + amlodipine 5 mg tablet 86190011000036102 perindopril + amlodipine +34701011000036103 Morphine Hydrochloride (Ramprie Labs) 2 mg/mL oral liquid solution, 100 mL, bottle 14714 34285011000036105 Morphine Hydrochloride (Ramprie Labs) 2 mg/mL oral liquid solution, 100 mL 34011011000036104 Morphine Hydrochloride (Ramprie Labs) 2 mg/mL oral liquid solution 33924011000036102 Morphine Hydrochloride (Ramprie Labs) 33924011000036102 Morphine Hydrochloride (Ramprie Labs) 872701000168101 morphine hydrochloride 2 mg/mL oral liquid, 100 mL 872681000168104 morphine hydrochloride 2 mg/mL oral liquid 21252011000036100 morphine +20026011000036100 Sotacor 160 mg uncoated tablet, 60, blister pack 68966 13260011000036102 Sotacor 160 mg uncoated tablet, 60 6542011000036107 Sotacor 160 mg uncoated tablet 3656011000036106 Sotacor 3656011000036106 Sotacor 27916011000036107 sotalol hydrochloride 160 mg tablet, 60 23240011000036106 sotalol hydrochloride 160 mg tablet 21562011000036100 sotalol +21011011000036105 Lisinopril (Terry White Chemists) 20 mg tablet, 30, blister pack 96329 14157011000036105 Lisinopril (Terry White Chemists) 20 mg tablet, 30 7436011000036101 Lisinopril (Terry White Chemists) 20 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +21011011000036105 Lisinopril (Terry White Chemists) 20 mg tablet, 30, blister pack 213398 14157011000036105 Lisinopril (Terry White Chemists) 20 mg tablet, 30 7436011000036101 Lisinopril (Terry White Chemists) 20 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +21011011000036105 Lisinopril (Terry White Chemists) 20 mg tablet, 30, blister pack 143988 14157011000036105 Lisinopril (Terry White Chemists) 20 mg tablet, 30 7436011000036101 Lisinopril (Terry White Chemists) 20 mg tablet 3179011000036103 Lisinopril (Terry White Chemists) 3179011000036103 Lisinopril (Terry White Chemists) 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +1015431000168104 Letrozole (Apo) 2.5 mg film-coated tablet, 30, bottle 163830 7401000036108 Letrozole (Apo) 2.5 mg film-coated tablet, 30 3211000036104 Letrozole (Apo) 2.5 mg film-coated tablet 63331000168105 Letrozole (Apo) 63331000168105 Letrozole (Apo) 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +17741000036103 Quinapril (Pfizer) 10 mg film-coated tablet, 30, blister pack 123435 16491000036101 Quinapril (Pfizer) 10 mg film-coated tablet, 30 15851000036103 Quinapril (Pfizer) 10 mg film-coated tablet 15111000036107 Quinapril (Pfizer) 15111000036107 Quinapril (Pfizer) 27077011000036105 quinapril 10 mg tablet, 30 22446011000036103 quinapril 10 mg tablet 21289011000036102 quinapril +1037121000168107 Voltaren Osteo 1.16% gel, 75 g, tube 175889 1037111000168100 Voltaren Osteo 1.16% gel, 75 g 1037091000168108 Voltaren Osteo 1.16% gel 43041000168109 Voltaren Osteo 43041000168109 Voltaren Osteo 1037101000168103 diclofenac diethylamine 1.16% gel, 75 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +928963011000036108 Pioglitazone (Pharmacor) 30 mg uncoated tablet, 7, blister pack 156718 928324011000036108 Pioglitazone (Pharmacor) 30 mg uncoated tablet, 7 927950011000036104 Pioglitazone (Pharmacor) 30 mg uncoated tablet 927785011000036106 Pioglitazone (Pharmacor) 927785011000036106 Pioglitazone (Pharmacor) 929264011000036109 pioglitazone 30 mg tablet, 7 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +116331000036102 Citalopram (GA) 10 mg film-coated tablet, 28, blister pack 158846 114671000036104 Citalopram (GA) 10 mg film-coated tablet, 28 112971000036102 Citalopram (GA) 10 mg film-coated tablet 933219141000036105 Citalopram (GA) 933219141000036105 Citalopram (GA) 28112011000036104 citalopram 10 mg tablet, 28 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +825351000168109 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial 123709 825341000168107 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial 825321000168101 Engerix-B Adult 20 microgram/mL injection suspension, vial 33491000168108 Engerix-B Adult 33491000168108 Engerix-B Adult 825331000168103 hepatitis B adult vaccine 20 microgram/mL injection, 1 mL vial 825311000168108 hepatitis B adult vaccine 20 microgram/mL injection, vial 825191000168101 hepatitis B vaccine +13451000036104 Venla 75 mg modified release capsule, 28, blister pack 170465 8511000036108 Venla 75 mg modified release capsule, 28 3451000036101 Venla 75 mg modified release capsule 551000036100 Venla 551000036100 Venla 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +13451000036104 Venla 75 mg modified release capsule, 28, blister pack 210374 8511000036108 Venla 75 mg modified release capsule, 28 3451000036101 Venla 75 mg modified release capsule 551000036100 Venla 551000036100 Venla 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +925230011000036100 Letrocor 2.5 mg film-coated tablet, 30, blister pack 159588 924767011000036107 Letrocor 2.5 mg film-coated tablet, 30 924466011000036103 Letrocor 2.5 mg film-coated tablet 924375011000036105 Letrocor 924375011000036105 Letrocor 27465011000036104 letrozole 2.5 mg tablet, 30 22812011000036101 letrozole 2.5 mg tablet 21841011000036101 letrozole +44252011000036108 Zofran 16 mg moulded suppository, 5, blister pack 60801 41723011000036103 Zofran 16 mg moulded suppository, 5 40166011000036104 Zofran 16 mg moulded suppository 2471000168108 Zofran 2471000168108 Zofran 46530011000036105 ondansetron 16 mg suppository, 5 45205011000036100 ondansetron 16 mg suppository 21545011000036100 ondansetron +681311000168109 Esomeprazole (Actavis) 20 mg enteric tablet, 30, blister pack 210854 681301000168106 Esomeprazole (Actavis) 20 mg enteric tablet, 30 681221000168108 Esomeprazole (Actavis) 20 mg enteric tablet 681201000168104 Esomeprazole (Actavis) 681201000168104 Esomeprazole (Actavis) 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +60325011000036101 Cetrelief (Generic Health) 10 mg film-coated tablet, 7, blister pack 138826 56284011000036108 Cetrelief (Generic Health) 10 mg film-coated tablet, 7 53860011000036104 Cetrelief (Generic Health) 10 mg film-coated tablet 53549011000036104 Cetrelief (Generic Health) 53549011000036104 Cetrelief (Generic Health) 63289011000036104 cetirizine hydrochloride 10 mg tablet, 7 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +1055841000168100 Erelzi Auto-Injector 50 mg/mL injection solution, 1 mL injection device 281780 1055831000168109 Erelzi Auto-Injector 50 mg/mL injection solution, 1 mL injection device 1055821000168106 Erelzi Auto-Injector 50 mg/mL injection solution, injection device 1055811000168104 Erelzi Auto-Injector 1055811000168104 Erelzi Auto-Injector 899271000168104 etanercept 50 mg/mL injection, 1 mL injection device 897981000168103 etanercept 50 mg/mL injection, injection device 21347011000036107 etanercept +25231000036104 Cellcept 1 g/5 mL powder for oral liquid, 165 mL, bottle 72582 22991000036102 Cellcept 1 g/5 mL powder for oral liquid, 165 mL 19991000036102 Cellcept 1 g/5 mL powder for oral liquid, 5 mL 4308011000036109 Cellcept 4308011000036109 Cellcept 23001000036103 mycophenolate mofetil 1 g/5 mL powder for oral liquid, 165 mL 20001000036107 mycophenolate mofetil 1 g/5 mL powder for oral liquid 21266011000036109 mycophenolate +79068011000036101 Podophyllin Compound BP (extemporaneous) paint, 25 mL, poison bottle 78780011000036102 Podophyllin Compound BP (extemporaneous) paint, 25 mL 78621011000036106 Podophyllin Compound BP (extemporaneous) paint 60221000168109 Podophyllin Compound BP (extemporaneous) 60221000168109 Podophyllin Compound BP (extemporaneous) 79198011000036105 podophyllum resin 15% + compound benzoin tincture paint, 25 mL 79103011000036103 podophyllum resin 15% + compound benzoin tincture paint 79092011000036101 podophyllum resin + compound benzoin tincture +933246511000036103 Ranitidine (PS) 150 mg film-coated tablet, 28, blister pack 148523 933243061000036101 Ranitidine (PS) 150 mg film-coated tablet, 28 933241311000036101 Ranitidine (PS) 150 mg film-coated tablet 933240941000036106 Ranitidine (PS) 933240941000036106 Ranitidine (PS) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +60702011000036101 Dimetapp PE Sinus Cold uncoated tablet, 15, blister pack 43458 56660011000036103 Dimetapp PE Sinus Cold uncoated tablet, 15 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63492011000036109 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 15 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +969351000168108 Aripiprazole (AN) 10 mg uncoated tablet, 56, blister pack 198203 969341000168106 Aripiprazole (AN) 10 mg uncoated tablet, 56 969291000168108 Aripiprazole (AN) 10 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787401000168102 aripiprazole 10 mg tablet, 56 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +1123561000168105 Quetiapine XR (ZP) 50 mg modified release tablet, 60, blister pack 241754 1123551000168108 Quetiapine XR (ZP) 50 mg modified release tablet, 60 1123501000168109 Quetiapine XR (ZP) 50 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51531011000036105 quetiapine 50 mg modified release tablet, 60 50992011000036109 quetiapine 50 mg modified release tablet 21452011000036104 quetiapine +61146011000036108 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet, 8, blister pack 73573 57089011000036104 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet, 8 54192011000036109 Diarrhoea Relief (Pharmacist) 2.15 mg uncoated tablet 53186011000036105 Diarrhoea Relief (Pharmacist) 53186011000036105 Diarrhoea Relief (Pharmacist) 63807011000036103 loperamide hydrochloride 2.15 mg tablet, 8 62083011000036100 loperamide hydrochloride 2.15 mg tablet 21760011000036100 loperamide +21070011000036106 Ausran 300 mg film-coated tablet, 30, blister pack 97355 14214011000036106 Ausran 300 mg film-coated tablet, 30 7497011000036109 Ausran 300 mg film-coated tablet 4212011000036103 Ausran 4212011000036103 Ausran 28218011000036104 ranitidine 300 mg tablet, 30 23531011000036109 ranitidine 300 mg tablet 21682011000036109 ranitidine +61447011000036105 Imflac 25 mg enteric tablet, 25, blister pack 90103 57372011000036101 Imflac 25 mg enteric tablet, 25 54287011000036107 Imflac 25 mg enteric tablet 14421000168100 Imflac 14421000168100 Imflac 63835011000036102 diclofenac sodium 25 mg enteric tablet, 25 23276011000036108 diclofenac sodium 25 mg enteric tablet 21288011000036105 diclofenac +661201000168102 Risperidone (AN) 1 mg film-coated tablet, 60, blister pack 166681 661191000168100 Risperidone (AN) 1 mg film-coated tablet, 60 661181000168103 Risperidone (AN) 1 mg film-coated tablet 661081000168104 Risperidone (AN) 661081000168104 Risperidone (AN) 27153011000036108 risperidone 1 mg tablet, 60 23449011000036101 risperidone 1 mg tablet 21338011000036109 risperidone +725981000168103 TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches 725971000168101 TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches 725951000168105 TYR Cooler 20 oral liquid solution, 174 mL pouch 44941000168108 TYR Cooler 20 44941000168108 TYR Cooler 20 725961000168107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 174 mL pouches 725941000168108 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 174 mL pouch 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +772101000168102 Claratyne 10 mg uncoated tablet, 10, blister pack 34698 772091000168107 Claratyne 10 mg uncoated tablet, 10 5278011000036101 Claratyne 10 mg uncoated tablet 4061000168104 Claratyne 4061000168104 Claratyne 33779011000036108 loratadine 10 mg tablet, 10 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +865721000168106 Amitriptyline (PN) 25 mg tablet, 100, blister pack 232148 865711000168104 Amitriptyline (PN) 25 mg tablet, 100 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +960761000168101 Ciram 40 mg film-coated tablet, 100, bottle 158861 960751000168103 Ciram 40 mg film-coated tablet, 100 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202801000036108 citalopram 40 mg tablet, 100 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +798001000168106 Ondansetron (Accord) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 205590 797991000168102 Ondansetron (Accord) 4 mg/2 mL injection solution, 5 x 2 mL ampoules 797981000168100 Ondansetron (Accord) 4 mg/2 mL injection solution, 2 mL ampoule 797971000168103 Ondansetron (Accord) 797971000168103 Ondansetron (Accord) 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +52769011000036101 Alendronate (GA) 70 mg uncoated tablet, 4, blister pack 150495 52579011000036105 Alendronate (GA) 70 mg uncoated tablet, 4 52427011000036106 Alendronate (GA) 70 mg uncoated tablet 52376011000036104 Alendronate (GA) 52376011000036104 Alendronate (GA) 27722011000036105 alendronate 70 mg tablet, 4 23057011000036102 alendronate 70 mg tablet 21736011000036109 alendronate +1038551000168109 Atomoxetine (Actavis) 40 mg hard capsule, 7, blister pack 237255 1038541000168107 Atomoxetine (Actavis) 40 mg hard capsule, 7 1038531000168103 Atomoxetine (Actavis) 40 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +18758011000036103 Senokot 7.5 mg uncoated tablet, 100, blister pack 60850 12090011000036101 Senokot 7.5 mg uncoated tablet, 100 5285011000036100 Senokot 7.5 mg uncoated tablet 2967011000036106 Senokot 2967011000036106 Senokot 26905011000036101 sennoside B 7.5 mg tablet, 100 22282011000036108 sennoside B 7.5 mg tablet 21718011000036104 sennoside B +18758011000036103 Senokot 7.5 mg uncoated tablet, 100, blister pack 15385 12090011000036101 Senokot 7.5 mg uncoated tablet, 100 5285011000036100 Senokot 7.5 mg uncoated tablet 2967011000036106 Senokot 2967011000036106 Senokot 26905011000036101 sennoside B 7.5 mg tablet, 100 22282011000036108 sennoside B 7.5 mg tablet 21718011000036104 sennoside B +782171000168104 Pregabalin (SZ) 150 mg hard capsule, 56, blister pack 210045 782161000168105 Pregabalin (SZ) 150 mg hard capsule, 56 782151000168108 Pregabalin (SZ) 150 mg hard capsule 781921000168106 Pregabalin (SZ) 781921000168106 Pregabalin (SZ) 33831011000036109 pregabalin 150 mg capsule, 56 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +730321000168106 Ozurdex 700 microgram implant, 1, applicator 222392 730311000168104 Ozurdex 700 microgram implant, 1 730291000168103 Ozurdex 700 microgram implant 730271000168104 Ozurdex 730271000168104 Ozurdex 730301000168102 dexamethasone 700 microgram implant, 1 730281000168101 dexamethasone 700 microgram implant 21631011000036109 dexamethasone +1026991000168106 Pregabalin (Amneal) 300 mg hard capsule, 14, bottle 235869 1026891000168104 Pregabalin (Amneal) 300 mg hard capsule, 14 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 855521000168109 pregabalin 300 mg capsule, 14 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +37468011000036109 Celica 20 mg film-coated tablet, 7, blister pack 124756 36738011000036109 Celica 20 mg film-coated tablet, 7 36131011000036106 Celica 20 mg film-coated tablet 35945011000036109 Celica 35945011000036109 Celica 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +756211000168106 Pramipexole ER (Apo) 1.5 mg modified release tablet, 30, blister pack 225580 756201000168108 Pramipexole ER (Apo) 1.5 mg modified release tablet, 30 756161000168103 Pramipexole ER (Apo) 1.5 mg modified release tablet 756021000168107 Pramipexole ER (Apo) 756021000168107 Pramipexole ER (Apo) 87816011000036107 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet, 30 87760011000036108 pramipexole dihydrochloride monohydrate 1.5 mg modified release tablet 37716011000036100 pramipexole +969441000168104 Aripiprazole (AN) 20 mg uncoated tablet, 56, blister pack 198195 969431000168108 Aripiprazole (AN) 20 mg uncoated tablet, 56 969381000168101 Aripiprazole (AN) 20 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787721000168102 aripiprazole 20 mg tablet, 56 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +69259011000036105 Chlorhexidine Acetate (Baxter) 0.5% (500 mg/100 mL) irrigation solution, 100 mL bottle 19474 67059011000036108 Chlorhexidine Acetate (Baxter) 0.5% (500 mg/100 mL) irrigation solution, 100 mL bottle 65502011000036106 Chlorhexidine Acetate (Baxter) 0.5% (500 mg/100 mL) irrigation solution, 100 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71629011000036104 chlorhexidine acetate 0.5% (500 mg/100 mL) solution, 100 mL bottle 70100011000036107 chlorhexidine acetate 0.5% (500 mg/100 mL) solution, bottle 21404011000036101 chlorhexidine +933229701000036103 Morphine Sulfate MR (Apotex) 60 mg modified release tablet, 60, blister pack 132256 933223621000036104 Morphine Sulfate MR (Apotex) 60 mg modified release tablet, 60 933219681000036106 Morphine Sulfate MR (Apotex) 60 mg modified release tablet 2591000168108 Morphine Sulfate MR (Apotex) 2591000168108 Morphine Sulfate MR (Apotex) 35167011000036108 morphine sulfate pentahydrate 60 mg modified release tablet, 60 22476011000036104 morphine sulfate pentahydrate 60 mg modified release tablet 21252011000036100 morphine +865681000168100 Amitriptyline (PN) 25 mg tablet, 50, blister pack 232148 865671000168103 Amitriptyline (PN) 25 mg tablet, 50 865641000168105 Amitriptyline (PN) 25 mg tablet 865631000168101 Amitriptyline (PN) 865631000168101 Amitriptyline (PN) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +933239341000036102 Prozine (Pharmacor) 5 mg uncoated tablet, 28, blister pack 172127 933236601000036102 Prozine (Pharmacor) 5 mg uncoated tablet, 28 933234621000036100 Prozine (Pharmacor) 5 mg uncoated tablet 933234271000036104 Prozine (Pharmacor) 933234271000036104 Prozine (Pharmacor) 924173011000036103 prochlorperazine maleate 5 mg tablet, 28 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +933246831000036109 Pantoprazole (PS) 20 mg enteric tablet, 140, blister pack 158196 933243661000036105 Pantoprazole (PS) 20 mg enteric tablet, 140 933241471000036100 Pantoprazole (PS) 20 mg enteric tablet 933240871000036108 Pantoprazole (PS) 933240871000036108 Pantoprazole (PS) 46672011000036100 pantoprazole 20 mg enteric tablet, 140 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +906011000168101 Carlevent 200/50/200 film-coated tablet, 100, bottle 195192 906001000168104 Carlevent 200/50/200 film-coated tablet, 100 905991000168100 Carlevent 200/50/200 film-coated tablet 905981000168103 Carlevent 200/50/200 905981000168103 Carlevent 200/50/200 51558011000036100 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet, 100 51002011000036106 levodopa 200 mg + carbidopa 50 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +1058741000168104 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 30, bottle 234496 1058731000168108 Rosuvastatin (Pharmacor) 20 mg film-coated tablet, 30 1058721000168105 Rosuvastatin (Pharmacor) 20 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +60993011000036103 Telfast 180 mg film-coated tablet, 2, blister pack 63338 56936011000036108 Telfast 180 mg film-coated tablet, 2 54129011000036105 Telfast 180 mg film-coated tablet 1461000168109 Telfast 1461000168109 Telfast 63646011000036102 fexofenadine hydrochloride 180 mg tablet, 2 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +25191000036109 Atorvastatin (Sandoz) 40 mg film-coated tablet, 30, blister pack 156058 22361000036108 Atorvastatin (Sandoz) 40 mg film-coated tablet, 30 20621000036106 Atorvastatin (Sandoz) 40 mg film-coated tablet 19781000036102 Atorvastatin (Sandoz) 19781000036102 Atorvastatin (Sandoz) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +13631000036109 Anastrozole (Apo) 1 mg film-coated tablet, 30, bottle 173892 8771000036106 Anastrozole (Apo) 1 mg film-coated tablet, 30 2851000036108 Anastrozole (Apo) 1 mg film-coated tablet 24051000168107 Anastrozole (Apo) 24051000168107 Anastrozole (Apo) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +990901000168102 Aripiprazole (Apotex) 5 mg uncoated tablet, 30, blister pack 152897 990891000168101 Aripiprazole (Apotex) 5 mg uncoated tablet, 30 990881000168104 Aripiprazole (Apotex) 5 mg uncoated tablet 990871000168102 Aripiprazole (Apotex) 990871000168102 Aripiprazole (Apotex) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +61506011000036109 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 50 mL, bottle 92686 57431011000036104 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 50 mL 54300011000036103 Ibuprofen for Children (Pharmacist) 100 mg/5 mL oral liquid suspension, 5 mL 27401000168107 Ibuprofen for Children (Pharmacist) 27401000168107 Ibuprofen for Children (Pharmacist) 63869011000036106 ibuprofen 100 mg/5 mL oral liquid, 50 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +933212431000036101 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 98, blister pack 142238 933201221000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet, 98 933194891000036106 Donepezil Hydrochloride (GH) 10 mg film-coated tablet 933193471000036107 Donepezil Hydrochloride (GH) 933193471000036107 Donepezil Hydrochloride (GH) 933201011000036107 donepezil hydrochloride 10 mg tablet, 98 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +21207011000036108 Zofran 4 mg film-coated tablet, 4, blister pack 9979 14343011000036108 Zofran 4 mg film-coated tablet, 4 7628011000036103 Zofran 4 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 28333011000036107 ondansetron 4 mg tablet, 4 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +60479011000036108 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 4 sachets 150168 56437011000036108 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 4 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63357011000036106 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 4 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +50610011000036107 Celsentri 300 mg film-coated tablet, 90, blister pack 137331 49636011000036108 Celsentri 300 mg film-coated tablet, 90 48793011000036104 Celsentri 300 mg film-coated tablet 48292011000036101 Celsentri 48292011000036101 Celsentri 51528011000036104 maraviroc 300 mg tablet, 90 50991011000036103 maraviroc 300 mg tablet 50741011000036103 maraviroc +69105011000036101 Blistex Medicated Lip ointment, 6 g, tube 14883 66906011000036101 Blistex Medicated Lip ointment, 6 g 65334011000036108 Blistex Medicated Lip ointment 64950011000036104 Blistex Medicated Lip 64950011000036104 Blistex Medicated Lip 71500011000036107 padimate-O 7.5% + oxybenzone 2% + camphor 1% ointment, 6 g 70039011000036104 padimate-O 7.5% + oxybenzone 2% + camphor 1% ointment 69822011000036105 padimate-O + oxybenzone + camphor +18398011000036106 Lisinobell 20 mg uncoated tablet, 30, blister pack 107311 11366011000036104 Lisinobell 20 mg uncoated tablet, 30 4580011000036105 Lisinobell 20 mg uncoated tablet 3209011000036108 Lisinobell 3209011000036108 Lisinobell 28179011000036100 lisinopril 20 mg tablet, 30 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +19435011000036102 Tamoxen 10 mg uncoated tablet, 60, blister pack 53870 12717011000036102 Tamoxen 10 mg uncoated tablet, 60 5373011000036103 Tamoxen 10 mg uncoated tablet 3933011000036100 Tamoxen 3933011000036100 Tamoxen 27309011000036109 tamoxifen 10 mg tablet, 60 22662011000036108 tamoxifen 10 mg tablet 21494011000036103 tamoxifen +77184011000036106 Lisinopril (GA) 20 mg uncoated tablet, 10, blister pack 106502 76567011000036105 Lisinopril (GA) 20 mg uncoated tablet, 10 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 78124011000036105 lisinopril 20 mg tablet, 10 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +18937011000036107 Senega and Ammonia Mixture (Gold Cross) oral liquid solution, 200 mL, bottle 27261 12245011000036107 Senega and Ammonia Mixture (Gold Cross) oral liquid solution, 200 mL 5302011000036102 Senega and Ammonia Mixture (Gold Cross) oral liquid solution 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 80136011000036103 Senega and Ammonia Mixture (Gold Cross) 27010011000036101 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid, 200 mL 22383011000036108 ammonium bicarbonate 25 mg/mL + senega root 25 mg/mL oral liquid 21924011000036109 ammonium + senega root +43781011000036100 Simvatrust 40 mg film-coated tablet, 30, blister pack 123816 41304011000036108 Simvatrust 40 mg film-coated tablet, 30 39881011000036100 Simvatrust 40 mg film-coated tablet 39653011000036104 Simvatrust 39653011000036104 Simvatrust 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +972251000168101 Lyzalon 25 mg hard capsule, 56, bottle 224422 972241000168103 Lyzalon 25 mg hard capsule, 56 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +874221000168107 Cabazitaxel (Winthrop) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack, composite pack 175501 874211000168100 Cabazitaxel (Winthrop) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack 874191000168101 Cabazitaxel (Winthrop) (cabazitaxel 60 mg/1.5 mL) concentrated injection, 1.5 mL vial 874181000168104 Cabazitaxel (Winthrop) 874181000168104 Cabazitaxel (Winthrop) 43131000036106 cabazitaxel 60 mg/1.5 mL injection [1.5 mL vial] (&) inert substance diluent [4.5 mL vial], 1 pack 41511000036105 cabazitaxel 60 mg/1.5 mL injection, vial 46261000036104 cabazitaxel +874221000168107 Cabazitaxel (Winthrop) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack, composite pack 175501 874211000168100 Cabazitaxel (Winthrop) (1 x 60 mg/1.5 mL vial, 1 x 4.5 mL inert diluent vial), 1 pack 874201000168103 Cabazitaxel (Winthrop) (inert substance) diluent, 4.5 mL vial 874181000168104 Cabazitaxel (Winthrop) 874181000168104 Cabazitaxel (Winthrop) 43131000036106 cabazitaxel 60 mg/1.5 mL injection [1.5 mL vial] (&) inert substance diluent [4.5 mL vial], 1 pack 637681000168107 inert substance diluent, 4.5 mL vial 21220011000036103 inert substance +933229541000036105 MSUD Anamix Infant powder for oral liquid, 400 g, can 933223171000036106 MSUD Anamix Infant powder for oral liquid, 400 g 933219551000036103 MSUD Anamix Infant powder for oral liquid 16201000168103 MSUD Anamix Infant 16201000168103 MSUD Anamix Infant 51254011000036104 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid, 400 g 50802011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine powder for oral liquid 50707011000036103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine +60084011000036106 Cold and Flu plus Cough Day and Night (Parke Davis) (36 x Day capsules, 12 x Night capsules), 48, blister pack 126489 56045011000036108 Cold and Flu plus Cough Day and Night (Parke Davis) (36 x Day capsules, 12 x Night capsules), 48 53769011000036107 Cold and Flu plus Cough Day and Night (Night) (Parke Davis) hard capsule 28671000168100 Cold and Flu plus Cough Day and Night (Parke Davis) 28911000168103 Cold and Flu plus Cough Day and Night (Night) (Parke Davis) 63210011000036107 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [36] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [12], 48 62063011000036103 paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61767011000036105 paracetamol + chlorphenamine + dextromethorphan +60084011000036106 Cold and Flu plus Cough Day and Night (Parke Davis) (36 x Day capsules, 12 x Night capsules), 48, blister pack 126489 56045011000036108 Cold and Flu plus Cough Day and Night (Parke Davis) (36 x Day capsules, 12 x Night capsules), 48 53768011000036104 Cold and Flu plus Cough Day and Night (Day) (Parke Davis) hard capsule 28671000168100 Cold and Flu plus Cough Day and Night (Parke Davis) 28791000168105 Cold and Flu plus Cough Day and Night (Day) (Parke Davis) 63210011000036107 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [36] (&) paracetamol 500 mg + chlorphenamine maleate 2 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule [12], 48 61888011000036105 paracetamol 500 mg + phenylephrine hydrochloride 5 mg + dextromethorphan hydrobromide monohydrate 10 mg capsule 61764011000036104 paracetamol + phenylephrine + dextromethorphan +116171000036103 Anti-Inflammatory Pain Relief (Priceline) 1% gel, 60 g, tube 127744 114421000036100 Anti-Inflammatory Pain Relief (Priceline) 1% gel, 60 g 113351000036100 Anti-Inflammatory Pain Relief (Priceline) 1% gel 50591000168100 Anti-Inflammatory Pain Relief (Priceline) 50591000168100 Anti-Inflammatory Pain Relief (Priceline) 72016011000036109 diclofenac sodium 1% gel, 60 g 70278011000036102 diclofenac sodium 1% gel 21288011000036105 diclofenac +60555011000036103 Polaramine colour free 2 mg uncoated tablet, 20, blister pack 154653 56513011000036103 Polaramine colour free 2 mg uncoated tablet, 20 53948011000036101 Polaramine colour free 2 mg uncoated tablet 9101000168102 Polaramine 9101000168102 Polaramine 63390011000036100 dexchlorpheniramine maleate 2 mg tablet, 20 61949011000036101 dexchlorpheniramine maleate 2 mg tablet 61749011000036105 dexchlorpheniramine +61293011000036108 Wartec 0.15% cream, 5 g, tube 78993 57229011000036101 Wartec 0.15% cream, 5 g 54247011000036103 Wartec 0.15% cream 53465011000036102 Wartec 53465011000036102 Wartec 63772011000036105 podophyllotoxin 0.15% cream, 5 g 62077011000036101 podophyllotoxin 0.15% cream 21864011000036108 podophyllotoxin +44732011000036103 Ovidrel 250 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes 96037 42177011000036103 Ovidrel 250 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes 40376011000036103 Ovidrel 250 microgram/0.5 mL injection solution, 0.5 mL syringe 4186011000036103 Ovidrel 4186011000036103 Ovidrel 46938011000036104 choriogonadotropin alfa 250 microgram/0.5 mL injection, 2 x 0.5 mL syringes 45350011000036105 choriogonadotropin alfa 250 microgram/0.5 mL injection, syringe 21430011000036104 choriogonadotropin alfa +871531000168106 Nitrostat 600 microgram sublingual tablet, 100, bottle 871521000168108 Nitrostat 600 microgram sublingual tablet, 100 871511000168101 Nitrostat 600 microgram sublingual tablet 871451000168101 Nitrostat 871451000168101 Nitrostat 28141011000036100 glyceryl trinitrate 600 microgram sublingual tablet, 100 23450011000036109 glyceryl trinitrate 600 microgram sublingual tablet 21388011000036102 glyceryl trinitrate +146391000036105 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet, 30, bottle 201656 135291000036106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet, 30 134401000036100 Candesartan Cilexetil HCTZ 32/12.5 (Apo) uncoated tablet 29471000168106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) 29471000168106 Candesartan Cilexetil HCTZ 32/12.5 (Apo) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +969511000168102 Aripiprazole (AN) 30 mg uncoated tablet, 30, blister pack 198208 969501000168100 Aripiprazole (AN) 30 mg uncoated tablet, 30 969471000168106 Aripiprazole (AN) 30 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 28028011000036104 aripiprazole 30 mg tablet, 30 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +756391000168107 Tecfidera 240 mg enteric capsule, 56, blister pack 197119 756381000168109 Tecfidera 240 mg enteric capsule, 56 756361000168100 Tecfidera 240 mg enteric capsule 143361000036109 Tecfidera 143361000036109 Tecfidera 756371000168106 dimethyl fumarate 240 mg enteric capsule, 56 756351000168102 dimethyl fumarate 240 mg enteric capsule 146501000036107 dimethyl fumarate +32568011000036102 Cifran 250 mg film-coated tablet, 14, blister pack 135660 32359011000036102 Cifran 250 mg film-coated tablet, 14 32236011000036102 Cifran 250 mg film-coated tablet 32193011000036104 Cifran 32193011000036104 Cifran 28200011000036104 ciprofloxacin 250 mg tablet, 14 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +61643011000036103 Advil 200 mg soft capsule, 24, blister pack 97229 57565011000036102 Advil 200 mg soft capsule, 24 54351011000036104 Advil 200 mg soft capsule 53215011000036102 Advil 53215011000036102 Advil 63930011000036103 ibuprofen 200 mg capsule, 24 62104011000036108 ibuprofen 200 mg capsule 21885011000036105 ibuprofen +779431000168105 Inlyta 7 mg film-coated tablet, 28, blister pack 213875 779421000168107 Inlyta 7 mg film-coated tablet, 28 779401000168103 Inlyta 7 mg film-coated tablet 154521000036105 Inlyta 154521000036105 Inlyta 779411000168100 axitinib 7 mg tablet, 28 779391000168100 axitinib 7 mg tablet 157041000036102 axitinib +685721000168101 Subutex 8 mg sublingual tablet, 100, bottle 76775 685711000168108 Subutex 8 mg sublingual tablet, 100 685631000168106 Subutex 8 mg sublingual tablet 37161000168104 Subutex 37161000168104 Subutex 685701000168105 buprenorphine 8 mg sublingual tablet, 100 685621000168108 buprenorphine 8 mg sublingual tablet 21232011000036101 buprenorphine +59631000036103 Lamivudine (Alphapharm) 300 mg film-coated tablet, 30, bottle 167594 59101000036103 Lamivudine (Alphapharm) 300 mg film-coated tablet, 30 58191000036101 Lamivudine (Alphapharm) 300 mg film-coated tablet 58071000036104 Lamivudine (Alphapharm) 58071000036104 Lamivudine (Alphapharm) 27947011000036104 lamivudine 300 mg tablet, 30 23271011000036103 lamivudine 300 mg tablet 21665011000036104 lamivudine +862981000168103 Amitriptyline (AC) 50 mg tablet, 250, bottle 232111 862971000168101 Amitriptyline (AC) 50 mg tablet, 250 862931000168104 Amitriptyline (AC) 50 mg tablet 862821000168105 Amitriptyline (AC) 862821000168105 Amitriptyline (AC) 862961000168107 amitriptyline hydrochloride 50 mg tablet, 250 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +30811000036103 Kerron-1000 1 g film-coated tablet, 60, bottle 182831 29221000036104 Kerron-1000 1 g film-coated tablet, 60 26561000036104 Kerron-1000 1 g film-coated tablet 7801000168103 Kerron-1000 7801000168103 Kerron-1000 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +828141000168100 Voriconazole (Apotex) 50 mg film-coated tablet, 56, blister pack 218362 828131000168109 Voriconazole (Apotex) 50 mg film-coated tablet, 56 828121000168106 Voriconazole (Apotex) 50 mg film-coated tablet 828081000168109 Voriconazole (Apotex) 828081000168109 Voriconazole (Apotex) 46819011000036105 voriconazole 50 mg tablet, 56 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +59711000036100 Zetlam 100 mg film-coated tablet, 28, bottle 180504 58761000036109 Zetlam 100 mg film-coated tablet, 28 58361000036105 Zetlam 100 mg film-coated tablet 58041000036106 Zetlam 58041000036106 Zetlam 27588011000036103 lamivudine 100 mg tablet, 28 22927011000036104 lamivudine 100 mg tablet 21665011000036104 lamivudine +50369011000036107 Profore (66050016) four layer bandage, 1, carton 49309011000036101 Profore (66050016) four layer bandage, 1 48748011000036102 Profore (66050016) four layer bandage 62721000168100 Profore (66050016) 62721000168100 Profore (66050016) 51293011000036107 bandage compression four layer bandage, 1 50822011000036105 bandage compression four layer bandage 50716011000036103 bandage compression +790691000168106 Inpler 50 mg film-coated tablet, 120, blister pack 231453 790681000168108 Inpler 50 mg film-coated tablet, 120 790551000168102 Inpler 50 mg film-coated tablet 790401000168102 Inpler 790401000168102 Inpler 790671000168105 eplerenone 50 mg tablet, 120 21944011000036107 eplerenone 50 mg tablet 21588011000036100 eplerenone +875821000168109 Bispro 3.75 mg film-coated tablet, 10, blister pack 130179 875811000168102 Bispro 3.75 mg film-coated tablet, 10 875761000168108 Bispro 3.75 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 875801000168100 bisoprolol fumarate 3.75 mg tablet, 10 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +19134011000036102 Proscar 5 mg film-coated tablet, 30, blister pack 43667 12435011000036105 Proscar 5 mg film-coated tablet, 30 4538011000036100 Proscar 5 mg film-coated tablet 4181011000036108 Proscar 4181011000036108 Proscar 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +146071000036109 Candesartan Cilexetil (Pharmacor) 4 mg uncoated tablet, 30, blister pack 195448 145191000036101 Candesartan Cilexetil (Pharmacor) 4 mg uncoated tablet, 30 143791000036101 Candesartan Cilexetil (Pharmacor) 4 mg uncoated tablet 143341000036108 Candesartan Cilexetil (Pharmacor) 143341000036108 Candesartan Cilexetil (Pharmacor) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +52743011000036105 Vedilol 25 mg uncoated tablet, 60, blister pack 137281 52555011000036105 Vedilol 25 mg uncoated tablet, 60 52417011000036102 Vedilol 25 mg uncoated tablet 52393011000036101 Vedilol 52393011000036101 Vedilol 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +926693011000036101 Metermine 40 mg modified release capsule, 30, blister pack 101830 926058011000036109 Metermine 40 mg modified release capsule, 30 925618011000036109 Metermine 40 mg modified release capsule 925524011000036102 Metermine 925524011000036102 Metermine 38559011000036105 phentermine 40 mg modified release capsule, 30 37837011000036107 phentermine 40 mg modified release capsule 37725011000036101 phentermine +931498011000036105 Topiramate (Lupin) 50 mg film-coated tablet, 60, blister pack 155211 928301011000036100 Topiramate (Lupin) 50 mg film-coated tablet, 60 927930011000036100 Topiramate (Lupin) 50 mg film-coated tablet 927802011000036102 Topiramate (Lupin) 927802011000036102 Topiramate (Lupin) 27503011000036109 topiramate 50 mg tablet, 60 22846011000036107 topiramate 50 mg tablet 21458011000036101 topiramate +12491000036100 Ondansetron ODT (DRLA) 4 mg orally disintegrating tablet, 4, blister pack 163640 7321000036107 Ondansetron ODT (DRLA) 4 mg orally disintegrating tablet, 4 3191000036103 Ondansetron ODT (DRLA) 4 mg orally disintegrating tablet 47061000168102 Ondansetron ODT (DRLA) 47061000168102 Ondansetron ODT (DRLA) 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +737621000168104 Bisoprolol (Auro) 5 mg film-coated tablet, 28, blister pack 175925 737611000168106 Bisoprolol (Auro) 5 mg film-coated tablet, 28 737601000168108 Bisoprolol (Auro) 5 mg film-coated tablet 737561000168108 Bisoprolol (Auro) 737561000168108 Bisoprolol (Auro) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +963731000168101 Fluconazole (AN) 150 mg hard capsule, 1, blister pack 167038 963721000168104 Fluconazole (AN) 150 mg hard capsule, 1 963711000168106 Fluconazole (AN) 150 mg hard capsule 963701000168108 Fluconazole (AN) 963701000168108 Fluconazole (AN) 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +18303011000036104 Ondansetron (RL) 8 mg/4 mL injection solution, 4 mL ampoule 116429 11519011000036107 Ondansetron (RL) 8 mg/4 mL injection solution, 4 mL ampoule 5074011000036102 Ondansetron (RL) 8 mg/4 mL injection solution, 4 mL ampoule 3915011000036107 Ondansetron (RL) 3915011000036107 Ondansetron (RL) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +1038641000168108 Atorvastatin (GA) 80 mg film-coated tablet, 20, blister pack 178523 1038631000168104 Atorvastatin (GA) 80 mg film-coated tablet, 20 1038601000168106 Atorvastatin (GA) 80 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 841821000168107 atorvastatin 80 mg tablet, 20 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +19546011000036103 Clexane 100 mg/mL injection solution, 10 x 1 mL syringes 56711 12818011000036104 Clexane 100 mg/mL injection solution, 10 x 1 mL syringes 6109011000036103 Clexane 100 mg/mL injection solution, syringe 2391000168100 Clexane 2391000168100 Clexane 27375011000036104 enoxaparin sodium 100 mg/mL injection, 10 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +852661000168106 Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack 117667 852651000168109 Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28 7167011000036105 Actonel Once-a-Week 35 mg film-coated tablet 56751000168100 Actonel Combi 700024831000036105 Actonel Once-a-Week 852601000168105 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +852661000168106 Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack 117667 852651000168109 Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 56751000168100 Actonel Combi 32184011000036101 Calcium Carbonate (Sanofi-Aventis) 852601000168105 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +921888011000036100 Exforge HCT 5/160/12.5 film-coated tablet, 28, blister pack 157954 921447011000036100 Exforge HCT 5/160/12.5 film-coated tablet, 28 921015011000036108 Exforge HCT 5/160/12.5 film-coated tablet 14521000168101 Exforge HCT 5/160/12.5 14521000168101 Exforge HCT 5/160/12.5 922575011000036101 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet, 28 922093011000036109 amlodipine 5 mg + valsartan 160 mg + hydrochlorothiazide 12.5 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +689901000168106 Tropisetron (AFT) 2 mg/2 mL injection solution, 2 mL ampoule 189943 689891000168107 Tropisetron (AFT) 2 mg/2 mL injection solution, 2 mL ampoule 689881000168109 Tropisetron (AFT) 2 mg/2 mL injection solution, 2 mL ampoule 97681000036104 Tropisetron (AFT) 97681000036104 Tropisetron (AFT) 46520011000036107 tropisetron 2 mg/2 mL injection, 2 mL ampoule 45197011000036105 tropisetron 2 mg/2 mL injection, ampoule 21700011000036104 tropisetron +911711000168106 Cavstat 20 mg film-coated tablet, 100, blister pack 234514 910721000168105 Cavstat 20 mg film-coated tablet, 100 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 910711000168103 rosuvastatin 20 mg tablet, 100 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +69046011000036105 Kaolin Mixture (David Craig) 2.5 g/10 mL oral liquid suspension, 200 mL, bottle 14213 66848011000036102 Kaolin Mixture (David Craig) 2.5 g/10 mL oral liquid suspension, 200 mL 65481011000036105 Kaolin Mixture (David Craig) 2.5 g/10 mL oral liquid suspension, 10 mL 65177011000036106 Kaolin Mixture (David Craig) 65177011000036106 Kaolin Mixture (David Craig) 71460011000036100 light kaolin 2.5 g/10 mL oral liquid, 200 mL 70018011000036103 light kaolin 2.5 g/10 mL oral liquid 69819011000036105 light kaolin +37373011000036104 Bricanyl Elixir 300 microgram/mL oral liquid solution, 1 L, bottle 12067 36706011000036102 Bricanyl Elixir 300 microgram/mL oral liquid solution, 1 L 36049011000036102 Bricanyl Elixir 300 microgram/mL oral liquid solution 39851000168102 Bricanyl Elixir 39851000168102 Bricanyl Elixir 38619011000036109 terbutaline sulfate 300 microgram/mL oral liquid, 1 L 37882011000036104 terbutaline sulfate 300 microgram/mL oral liquid 21514011000036105 terbutaline +658391000168101 Telmisartan (Sandoz) 80 mg uncoated tablet, 28, blister pack 199698 658381000168104 Telmisartan (Sandoz) 80 mg uncoated tablet, 28 658371000168102 Telmisartan (Sandoz) 80 mg uncoated tablet 658331000168100 Telmisartan (Sandoz) 658331000168100 Telmisartan (Sandoz) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +819711000168102 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 10, blister pack 184823 819701000168100 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet, 10 819691000168100 Perindopril Arginine (Blooms The Chemist) 5 mg film-coated tablet 819431000168102 Perindopril Arginine (Blooms The Chemist) 819431000168102 Perindopril Arginine (Blooms The Chemist) 727301000168100 perindopril arginine 5 mg tablet, 10 21966011000036105 perindopril arginine 5 mg tablet 21362011000036102 perindopril +44749011000036109 Etoposide (Ebewe) 1 g/50 mL concentrated injection, 50 mL vial 96644 42194011000036101 Etoposide (Ebewe) 1 g/50 mL concentrated injection, 50 mL vial 40383011000036104 Etoposide (Ebewe) 1 g/50 mL concentrated injection, 50 mL vial 3594011000036103 Etoposide (Ebewe) 3594011000036103 Etoposide (Ebewe) 46954011000036105 etoposide 1 g/50 mL injection, 50 mL vial 45356011000036108 etoposide 1 g/50 mL injection, vial 21469011000036104 etoposide +77338011000036103 Fishaphos 1 g soft capsule, 300, jar 48611 76754011000036106 Fishaphos 1 g soft capsule, 300 76164011000036109 Fishaphos 1 g soft capsule 75976011000036106 Fishaphos 75976011000036106 Fishaphos 78262011000036109 fish oil natural 1 g capsule, 300 77582011000036109 fish oil natural 1 g capsule 77436011000036106 fish oil natural +68788011000036104 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch, 21, sachet 129749 66730011000036101 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch, 21 65329011000036107 Nicotine Phase-2 (Chemists' Own) 14 mg/24 hours patch 35301000168109 Nicotine Phase-2 (Chemists' Own) 35301000168109 Nicotine Phase-2 (Chemists' Own) 63759011000036103 nicotine 14 mg/24 hours patch, 21 23249011000036100 nicotine 14 mg/24 hours patch 21432011000036100 nicotine +30851000036104 Maxor Heartburn Relief 20 mg enteric capsule, 14, blister pack 180913 29151000036103 Maxor Heartburn Relief 20 mg enteric capsule, 14 26451000036101 Maxor Heartburn Relief 20 mg enteric capsule 57291000168104 Maxor Heartburn Relief 57291000168104 Maxor Heartburn Relief 75871000036104 omeprazole 20 mg enteric capsule, 14 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +60855011000036102 Analgesic and Calmative (Pharmacist) uncoated tablet, 10, blister pack 58828 56809011000036103 Analgesic and Calmative (Pharmacist) uncoated tablet, 10 54087011000036102 Analgesic and Calmative (Pharmacist) uncoated tablet 53357011000036105 Analgesic and Calmative (Pharmacist) 53357011000036105 Analgesic and Calmative (Pharmacist) 63865011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 10 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +928975011000036100 Valaciclovir (Apo) 500 mg film-coated tablet, 30, blister pack 158911 928336011000036102 Valaciclovir (Apo) 500 mg film-coated tablet, 30 927956011000036101 Valaciclovir (Apo) 500 mg film-coated tablet 2021000168100 Valaciclovir (Apo) 2021000168100 Valaciclovir (Apo) 27733011000036101 valaciclovir 500 mg tablet, 30 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +715791000168106 Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g, tube 150663 715781000168108 Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g 715771000168105 Clotrimazole 6 Day (Apo) 1% vaginal cream 46411000168109 Clotrimazole 6 Day (Apo) 46411000168109 Clotrimazole 6 Day (Apo) 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +1002641000168103 Rivastigmine (Apo) 1.5 mg hard capsule, 14, blister pack 160581 1002631000168107 Rivastigmine (Apo) 1.5 mg hard capsule, 14 1002531000168108 Rivastigmine (Apo) 1.5 mg hard capsule 1002171000168102 Rivastigmine (Apo) 1002171000168102 Rivastigmine (Apo) 1002621000168109 rivastigmine 1.5 mg capsule, 14 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +69559011000036100 Clearasil Ultra Acne Treatment cream, 20 g, tube 60739 67359011000036109 Clearasil Ultra Acne Treatment cream, 20 g 65629011000036104 Clearasil Ultra Acne Treatment cream 13981000168108 Clearasil Ultra Acne Treatment 13981000168108 Clearasil Ultra Acne Treatment 71899011000036104 benzoyl peroxide 5% + bentonite 5% cream, 20 g 70240011000036103 benzoyl peroxide 5% + bentonite 5% cream 69839011000036103 benzoyl peroxide + bentonite +957791000168102 Zolpidem (Hexal) 10 mg film-coated tablet, 7, bottle 116906 956551000168102 Zolpidem (Hexal) 10 mg film-coated tablet, 7 956541000168104 Zolpidem (Hexal) 10 mg film-coated tablet 956531000168108 Zolpidem (Hexal) 956531000168108 Zolpidem (Hexal) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +61490011000036101 Cold and Cough Elixir (Pharmacist) oral liquid solution, 100 mL, bottle 92445 57415011000036105 Cold and Cough Elixir (Pharmacist) oral liquid solution, 100 mL 54297011000036108 Cold and Cough Elixir (Pharmacist) oral liquid solution, 5 mL 41961000168105 Cold and Cough Elixir (Pharmacist) 41961000168105 Cold and Cough Elixir (Pharmacist) 63880011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 100 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +903051000168105 Brillior 25 mg hard capsule, 20, blister pack 224337 903041000168108 Brillior 25 mg hard capsule, 20 902951000168100 Brillior 25 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 903031000168104 pregabalin 25 mg capsule, 20 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +704511000168107 Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial 165439 704501000168109 Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial 704491000168102 Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial 86588011000036109 Plaxel 86588011000036109 Plaxel 704461000168109 paclitaxel 100 mg/16.67 mL injection, 16.67 mL vial 704441000168105 paclitaxel 100 mg/16.67 mL injection, vial 21604011000036104 paclitaxel +819551000168109 Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe 95261 819541000168107 Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe 819521000168101 Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe 34301000168108 Somatuline Autogel 34301000168108 Somatuline Autogel 819531000168103 lanreotide 90 mg/0.5 mL injection, 0.5 mL syringe 819511000168108 lanreotide 90 mg/0.5 mL injection, syringe 21278011000036100 lanreotide +894451000168108 Entac 1 mg film-coated tablet, 10, blister pack 267113 894441000168106 Entac 1 mg film-coated tablet, 10 894421000168100 Entac 1 mg film-coated tablet 894271000168103 Entac 894271000168103 Entac 894431000168102 entecavir 1 mg tablet, 10 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +857001000168104 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 24 x Calcium (GH) tablets), 1 pack, composite pack 222683 856991000168106 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 24 x Calcium (GH) tablets), 1 pack 856351000168100 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) uncoated tablet 856981000168108 Alendrobell plus D3 and Calcium 856341000168102 Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 45055011000036102 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet 21250011000036104 alendronate + colecalciferol +857001000168104 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 24 x Calcium (GH) tablets), 1 pack, composite pack 222683 856991000168106 Alendrobell plus D3 and Calcium (4 x Alendronate with Colecalciferol 70 mg/140 microgram (DRLA) tablets, 24 x Calcium (GH) tablets), 1 pack 856391000168105 Calcium (GH) 1.25 g (calcium 500 mg) film-coated tablet 856981000168108 Alendrobell plus D3 and Calcium 856381000168107 Calcium (GH) 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +875861000168104 Bispro 3.75 mg film-coated tablet, 30, blister pack 130179 875851000168101 Bispro 3.75 mg film-coated tablet, 30 875761000168108 Bispro 3.75 mg film-coated tablet 78590011000036100 Bispro 78590011000036100 Bispro 874861000168103 bisoprolol fumarate 3.75 mg tablet, 30 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +921941000168101 Ceftazidime (Kabi) 2 g powder for injection, 5 vials 223569 921931000168105 Ceftazidime (Kabi) 2 g powder for injection, 5 vials 921901000168103 Ceftazidime (Kabi) 2 g powder for injection, 2 g vial 921821000168104 Ceftazidime (Kabi) 921821000168104 Ceftazidime (Kabi) 38651011000036102 ceftazidime 2 g injection, 5 vials 37904011000036100 ceftazidime 2 g injection, vial 37781011000036107 ceftazidime +83180011000036105 Gemcitabine (Ebewe) 1 g powder for injection, 1 vial 151748 83126011000036102 Gemcitabine (Ebewe) 1 g powder for injection, 1 vial 83071011000036103 Gemcitabine (Ebewe) 1 g powder for injection, vial 65050011000036101 Gemcitabine (Ebewe) 65050011000036101 Gemcitabine (Ebewe) 27231011000036105 gemcitabine 1 g injection, 1 vial 22591011000036109 gemcitabine 1 g injection, vial 21644011000036108 gemcitabine +894631000168104 Clonidine (Apo) 100 microgram tablet, 100, bottle 265776 894621000168102 Clonidine (Apo) 100 microgram tablet, 100 894611000168109 Clonidine (Apo) 100 microgram tablet 894591000168104 Clonidine (Apo) 894591000168104 Clonidine (Apo) 26955011000036106 clonidine hydrochloride 100 microgram tablet, 100 22330011000036108 clonidine hydrochloride 100 microgram tablet 21589011000036108 clonidine +823821000168109 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 15 x 1 mL syringes 221721 823811000168102 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, 15 x 1 mL syringes 823681000168109 Clexane with Automatic Safety Lock System 100 mg/mL injection solution, syringe 2391000168100 Clexane 2391000168100 Clexane 823801000168100 enoxaparin sodium 100 mg/mL injection, 15 x 1 mL syringes 22725011000036100 enoxaparin sodium 100 mg/mL injection, syringe 21553011000036103 enoxaparin sodium +995101000168106 Cepacol Antibacterial Honey and Lemon lozenge, 2, blister pack 52421 995091000168101 Cepacol Antibacterial Honey and Lemon lozenge, 2 995041000168109 Cepacol Antibacterial Honey and Lemon lozenge 37601000168107 Cepacol Antibacterial 37601000168107 Cepacol Antibacterial 995081000168104 benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 2 995031000168100 benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge 69797011000036101 benzyl alcohol + cetylpyridinium +69225011000036107 Chlorhexidine Acetate (Baxter) 0.05% (250 mg/500 mL) irrigation solution, 500 mL bottle 19461 67025011000036105 Chlorhexidine Acetate (Baxter) 0.05% (250 mg/500 mL) irrigation solution, 500 mL bottle 65499011000036108 Chlorhexidine Acetate (Baxter) 0.05% (250 mg/500 mL) irrigation solution, 500 mL bottle 65057011000036100 Chlorhexidine Acetate (Baxter) 65057011000036100 Chlorhexidine Acetate (Baxter) 71595011000036100 chlorhexidine acetate 0.05% (250 mg/500 mL) solution, 500 mL bottle 70083011000036105 chlorhexidine acetate 0.05% (250 mg/500 mL) solution, bottle 21404011000036101 chlorhexidine +832001000168101 Zostavax (10 x 19 400 vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack 130241 831991000168103 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack 831791000168100 Zostavax (varicella-zoster live vaccine) powder for injection, vial 73774011000036102 Zostavax 73774011000036102 Zostavax 831981000168101 varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack 831781000168103 varicella-zoster live vaccine 19 400 PFU injection, vial 830851000168105 varicella-zoster live vaccine +832001000168101 Zostavax (10 x 19 400 vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack 130241 831991000168103 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack 635591000168100 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines (inert substance) diluent, 0.65 mL vial 73774011000036102 Zostavax 73763011000036106 Sterile Diluent for Merck Sharp & Dohme Live Virus Vaccines 831981000168101 varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack 635581000168103 inert substance diluent, 0.65 mL vial 21220011000036103 inert substance +1102131000168105 Trelavue film-coated tablet, 30, bottle 269759 1102121000168107 Trelavue film-coated tablet, 30 1102111000168100 Trelavue film-coated tablet 1102091000168108 Trelavue 1102091000168108 Trelavue 691351000168106 dolutegravir 50 mg + abacavir 600 mg + lamivudine 300 mg tablet, 30 691331000168100 dolutegravir 50 mg + abacavir 600 mg + lamivudine 300 mg tablet 691321000168103 dolutegravir + abacavir + lamivudine +931752011000036106 Head Cold and Allergy Elixir (Chemmart) oral liquid solution, 200 mL, bottle 69965 930912011000036103 Head Cold and Allergy Elixir (Chemmart) oral liquid solution, 200 mL 930114011000036105 Head Cold and Allergy Elixir (Chemmart) oral liquid solution, 5 mL 63341000168101 Head Cold and Allergy Elixir (Chemmart) 63341000168101 Head Cold and Allergy Elixir (Chemmart) 63797011000036103 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid, 200 mL 62080011000036108 chlorphenamine maleate 1.25 mg/5 mL + phenylephrine hydrochloride 2.5 mg/5 mL oral liquid 61786011000036109 chlorphenamine + phenylephrine +21105011000036101 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 40 mg/2 mL concentrated injection, 2 mL vial 97881 14248011000036107 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 40 mg/2 mL concentrated injection, 2 mL vial 7534011000036100 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 40 mg/2 mL concentrated injection, 2 mL vial 3464011000036109 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 3464011000036109 Irinotecan Hydrochloride Trihydrate (Mayne Pharma) 28247011000036106 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, 2 mL vial 23561011000036101 irinotecan hydrochloride trihydrate 40 mg/2 mL injection, vial 21503011000036106 irinotecan +789501000168109 Oxycodone (HX) 20 mg modified release tablet, 28, bottle 153589 789491000168102 Oxycodone (HX) 20 mg modified release tablet, 28 789461000168109 Oxycodone (HX) 20 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 929273011000036100 oxycodone hydrochloride 20 mg modified release tablet, 28 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +754941000168106 Oxycodone (AS) 10 mg hard capsule, 20, bottle 227849 754481000168105 Oxycodone (AS) 10 mg hard capsule, 20 754471000168107 Oxycodone (AS) 10 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 27745011000036104 oxycodone hydrochloride 10 mg capsule, 20 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +933214691000036107 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 90, bottle 163527 933204301000036106 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 90 933195461000036100 Pravastatin Sodium (DRLA) 20 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932407011000036108 pravastatin sodium 20 mg tablet, 90 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +703541000168109 Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial 180859 703531000168100 Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial 703511000168105 Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial 77681000036109 Eylea 77681000036109 Eylea 703521000168103 aflibercept 4 mg/0.1 mL injection, 0.1 mL vial 703501000168107 aflibercept 4 mg/0.1 mL injection, vial 82551000036105 aflibercept +19743011000036108 Brevinor 21 Day uncoated tablet, 4 x 21, blister packs 62131 12997011000036108 Brevinor 21 Day uncoated tablet, 4 x 21 6285011000036103 Brevinor 21 Day uncoated tablet 700011831000036100 Brevinor 21 Day 700011831000036100 Brevinor 21 Day 27491011000036104 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet, 4 x 21 22835011000036101 norethisterone 500 microgram + ethinylestradiol 35 microgram tablet 21309011000036106 norethisterone + ethinylestradiol +19494011000036107 Lumin 10 mg film-coated tablet, 50, blister pack 55272 12770011000036106 Lumin 10 mg film-coated tablet, 50 6064011000036106 Lumin 10 mg film-coated tablet 4262011000036102 Lumin 4262011000036102 Lumin 27575011000036102 mianserin hydrochloride 10 mg tablet, 50 22914011000036102 mianserin hydrochloride 10 mg tablet 21371011000036103 mianserin +1024741000168106 Amclavox Duo Forte 875/125 film-coated tablet, 10, strip pack 289508 1024711000168107 Amclavox Duo Forte 875/125 film-coated tablet, 10 1024701000168109 Amclavox Duo Forte 875/125 film-coated tablet 1024691000168109 Amclavox Duo Forte 875/125 1024691000168109 Amclavox Duo Forte 875/125 28152011000036108 amoxicillin 875 mg + clavulanic acid 125 mg tablet, 10 23461011000036109 amoxicillin 875 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +1076491000168102 Aripiprazole (Auro) 20 mg uncoated tablet, 28, blister pack 198218 1076481000168100 Aripiprazole (Auro) 20 mg uncoated tablet, 28 1076471000168103 Aripiprazole (Auro) 20 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 787681000168108 aripiprazole 20 mg tablet, 28 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +86128011000036105 Levetiracetam (Chemmart) 250 mg tablet, 60, blister pack 156318 85702011000036107 Levetiracetam (Chemmart) 250 mg tablet, 60 85343011000036109 Levetiracetam (Chemmart) 250 mg tablet 85284011000036109 Levetiracetam (Chemmart) 85284011000036109 Levetiracetam (Chemmart) 27844011000036101 levetiracetam 250 mg tablet, 60 23172011000036106 levetiracetam 250 mg tablet 21766011000036102 levetiracetam +1029321000168103 Ariez 10 mg film-coated tablet, 28, blister pack 175048 1029311000168105 Ariez 10 mg film-coated tablet, 28 1029301000168107 Ariez 10 mg film-coated tablet 1029291000168106 Ariez 1029291000168106 Ariez 27456011000036103 donepezil hydrochloride 10 mg tablet, 28 22803011000036106 donepezil hydrochloride 10 mg tablet 21256011000036101 donepezil +926906011000036109 Optimark 4.96 g/15 mL injection solution, 15 mL syringe 76656 926300011000036103 Optimark 4.96 g/15 mL injection solution, 15 mL syringe 925744011000036100 Optimark 4.96 g/15 mL injection solution, 15 mL syringe 6001000168105 Optimark 6001000168105 Optimark 927394011000036107 gadoversetamide 4.96 g/15 mL injection, 15 mL syringe 927035011000036103 gadoversetamide 4.96 g/15 mL injection, syringe 926966011000036108 gadoversetamide +1119311000168108 Quetiapine (Watson) 25 mg film-coated tablet, 60, blister pack 202262 1119301000168105 Quetiapine (Watson) 25 mg film-coated tablet, 60 1119271000168108 Quetiapine (Watson) 25 mg film-coated tablet 1119261000168102 Quetiapine (Watson) 1119261000168102 Quetiapine (Watson) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +772341000168102 Combantrin 50 mg/mL oral liquid suspension, 28 mL, bottle 10747 772331000168106 Combantrin 50 mg/mL oral liquid suspension, 28 mL 772281000168103 Combantrin 50 mg/mL oral liquid suspension 53233011000036109 Combantrin 53233011000036109 Combantrin 772321000168108 pyrantel 50 mg/mL oral liquid, 28 mL 772271000168101 pyrantel 50 mg/mL oral liquid 21475011000036105 pyrantel +111191000036107 Indosyl Mono 8 mg uncoated tablet, 30, blister pack 198358 109461000036105 Indosyl Mono 8 mg uncoated tablet, 30 107371000036100 Indosyl Mono 8 mg uncoated tablet 3111000168101 Indosyl Mono 3111000168101 Indosyl Mono 26808011000036102 perindopril erbumine 8 mg tablet, 30 22192011000036107 perindopril erbumine 8 mg tablet 21362011000036102 perindopril +862301000168107 Ostelin Vitamin D and Calcium film-coated tablet, 250, bottle 200088 862291000168106 Ostelin Vitamin D and Calcium film-coated tablet, 250 862241000168103 Ostelin Vitamin D and Calcium film-coated tablet 920102011000036100 Ostelin Vitamin D and Calcium 920102011000036100 Ostelin Vitamin D and Calcium 862281000168108 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 250 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 733951000168109 calcium + colecalciferol +776621000168104 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 100 mL, bottle 174347 776611000168106 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 100 mL 776561000168108 Duro-Tuss PE Chesty Cough plus Nasal Decongestant oral liquid solution, 15 mL 776531000168100 Duro-Tuss PE Chesty Cough plus Nasal Decongestant 776531000168100 Duro-Tuss PE Chesty Cough plus Nasal Decongestant 776601000168108 bromhexine hydrochloride 12 mg/15 mL + phenylephrine hydrochloride 10 mg/15 mL oral liquid, 100 mL 776551000168106 bromhexine hydrochloride 12 mg/15 mL + phenylephrine hydrochloride 10 mg/15 mL oral liquid 776541000168109 bromhexine + phenylephrine +956261000168102 Duavive 0.45/20 modified release tablet, 7, blister pack 262525 956251000168104 Duavive 0.45/20 modified release tablet, 7 956231000168105 Duavive 0.45/20 modified release tablet 956201000168103 Duavive 0.45/20 956201000168103 Duavive 0.45/20 956241000168101 conjugated estrogens 450 microgram + bazedoxifene 20 mg modified release tablet, 7 956221000168107 conjugated estrogens 450 microgram + bazedoxifene 20 mg modified release tablet 956211000168100 conjugated estrogens + bazedoxifene +933247061000036109 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 28, blister pack 158413 933243881000036104 Prochlorperazine Maleate (PS) 5 mg uncoated tablet, 28 933241491000036101 Prochlorperazine Maleate (PS) 5 mg uncoated tablet 933241021000036106 Prochlorperazine Maleate (PS) 933241021000036106 Prochlorperazine Maleate (PS) 924173011000036103 prochlorperazine maleate 5 mg tablet, 28 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +60547011000036106 Codis dispersible tablet, 24, strip pack 15358 56505011000036104 Codis dispersible tablet, 24 53945011000036107 Codis dispersible tablet 53140011000036100 Codis 53140011000036100 Codis 63386011000036103 aspirin 500 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 24 61935011000036104 aspirin 500 mg + codeine phosphate hemihydrate 8 mg dispersible tablet 21831011000036102 aspirin + codeine +69037011000036109 Chlorhexidine Gluconate (David Craig) 1% cream, 500 g, jar 14088 66839011000036109 Chlorhexidine Gluconate (David Craig) 1% cream, 500 g 65361011000036102 Chlorhexidine Gluconate (David Craig) 1% cream 64995011000036100 Chlorhexidine Gluconate (David Craig) 64995011000036100 Chlorhexidine Gluconate (David Craig) 71453011000036104 chlorhexidine gluconate 1% cream, 500 g 70014011000036105 chlorhexidine gluconate 1% cream 21404011000036101 chlorhexidine +789481000168100 Oxycodone (HX) 20 mg modified release tablet, 20, bottle 153589 789471000168103 Oxycodone (HX) 20 mg modified release tablet, 20 789461000168109 Oxycodone (HX) 20 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 27634011000036105 oxycodone hydrochloride 20 mg modified release tablet, 20 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +18552011000036102 Simvastatin (DP) 40 mg film-coated tablet, 30, blister pack 199735 11294011000036100 Simvastatin (DP) 40 mg film-coated tablet, 30 5821011000036100 Simvastatin (DP) 40 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +18552011000036102 Simvastatin (DP) 40 mg film-coated tablet, 30, blister pack 104511 11294011000036100 Simvastatin (DP) 40 mg film-coated tablet, 30 5821011000036100 Simvastatin (DP) 40 mg film-coated tablet 4251011000036101 Simvastatin (DP) 4251011000036101 Simvastatin (DP) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +791331000168107 Trexject 10 mg/0.2 mL injection solution, 0.2 mL syringe 233715 791321000168109 Trexject 10 mg/0.2 mL injection solution, 0.2 mL syringe 791301000168100 Trexject 10 mg/0.2 mL injection solution, 0.2 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791311000168102 methotrexate 10 mg/0.2 mL injection, 0.2 mL syringe 791291000168101 methotrexate 10 mg/0.2 mL injection, syringe 21342011000036105 methotrexate +61687011000036103 Cold Relief (Amcal) film-coated tablet, 24, blister pack 98231 57608011000036104 Cold Relief (Amcal) film-coated tablet, 24 54362011000036100 Cold Relief (Amcal) film-coated tablet 53257011000036104 Cold Relief (Amcal) 53257011000036104 Cold Relief (Amcal) 63955011000036106 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet, 24 62108011000036101 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet 61727011000036100 chlorphenamine + paracetamol +61687011000036103 Cold Relief (Amcal) film-coated tablet, 24, blister pack 223799 57608011000036104 Cold Relief (Amcal) film-coated tablet, 24 54362011000036100 Cold Relief (Amcal) film-coated tablet 53257011000036104 Cold Relief (Amcal) 53257011000036104 Cold Relief (Amcal) 63955011000036106 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet, 24 62108011000036101 chlorphenamine maleate 2 mg + paracetamol 500 mg tablet 61727011000036100 chlorphenamine + paracetamol +43636011000036106 Baraclude 50 microgram/mL oral liquid solution, 210 mL, bottle 116855 41176011000036100 Baraclude 50 microgram/mL oral liquid solution, 210 mL 39924011000036104 Baraclude 50 microgram/mL oral liquid solution 4030011000036104 Baraclude 4030011000036104 Baraclude 46142011000036100 entecavir monohydrate 50 microgram/mL oral liquid, 210 mL 45008011000036101 entecavir monohydrate 50 microgram/mL oral liquid 21490011000036108 entecavir +853711000168109 Alledine 10 mg uncoated tablet, 50, blister pack 121135 853701000168106 Alledine 10 mg uncoated tablet, 50 853651000168101 Alledine 10 mg uncoated tablet 853641000168103 Alledine 853641000168103 Alledine 33780011000036108 loratadine 10 mg tablet, 50 22427011000036102 loratadine 10 mg tablet 21701011000036106 loratadine +1076171000168108 Quetiapine (Auro) 25 mg film-coated tablet, 60, blister pack 172840 1076161000168102 Quetiapine (Auro) 25 mg film-coated tablet, 60 1076131000168105 Quetiapine (Auro) 25 mg film-coated tablet 1075161000168108 Quetiapine (Auro) 1075161000168108 Quetiapine (Auro) 27398011000036104 quetiapine 25 mg tablet, 60 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +18475011000036102 Isordil 5 mg sublingual tablet, 100, bottle 12957 11878011000036105 Isordil 5 mg sublingual tablet, 100 4522011000036101 Isordil 5 mg sublingual tablet 4049011000036106 Isordil 4049011000036106 Isordil 26797011000036103 isosorbide dinitrate 5 mg sublingual tablet, 100 22183011000036104 isosorbide dinitrate 5 mg sublingual tablet 21865011000036107 isosorbide dinitrate +1106081000168109 Zolpibell 10 mg film-coated tablet, 28, blister pack 119087 1106071000168106 Zolpibell 10 mg film-coated tablet, 28 72953011000036101 Zolpibell 10 mg film-coated tablet 72921011000036103 Zolpibell 72921011000036103 Zolpibell 46648011000036101 zolpidem tartrate 10 mg tablet, 28 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +1038001000168103 Intuniv 2 mg modified release tablet, 7, blister pack 275313 1037991000168107 Intuniv 2 mg modified release tablet, 7 1037971000168106 Intuniv 2 mg modified release tablet 1037851000168105 Intuniv 1037851000168105 Intuniv 1037981000168109 guanfacine 2 mg modified release tablet, 7 1037961000168100 guanfacine 2 mg modified release tablet 1037871000168101 guanfacine +87670011000036109 Clopidogrel (Winthrop) 75 mg film-coated tablet, 30, blister pack 148947 87432011000036108 Clopidogrel (Winthrop) 75 mg film-coated tablet, 30 87304011000036103 Clopidogrel (Winthrop) 75 mg film-coated tablet 87278011000036108 Clopidogrel (Winthrop) 87278011000036108 Clopidogrel (Winthrop) 87801011000036104 clopidogrel 75 mg tablet, 30 23224011000036104 clopidogrel 75 mg tablet 21802011000036103 clopidogrel +43559011000036105 Refacto (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119166 41212011000036107 Refacto (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 39819011000036103 Refacto (moroctocog alfa 1000 units) powder for injection, 1000 units vial 7771000168100 Refacto 7771000168100 Refacto 46163011000036101 moroctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 45015011000036109 moroctocog alfa 1000 units injection, vial 44868011000036107 moroctocog alfa +43559011000036105 Refacto (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack, composite pack 119166 41212011000036107 Refacto (1 x 1000 units vial, 1 x 4 mL inert diluent syringe), 1 pack 631401000168108 Refacto (inert substance) diluent, 4 mL syringe 7771000168100 Refacto 7771000168100 Refacto 46163011000036101 moroctocog alfa 1000 units injection [1 vial] (&) inert substance diluent [4 mL syringe], 1 pack 630071000168103 inert substance diluent, 4 mL syringe 21220011000036103 inert substance +925241011000036108 Rispaccord 2 mg film-coated tablet, 60, blister pack 159976 924778011000036100 Rispaccord 2 mg film-coated tablet, 60 924476011000036108 Rispaccord 2 mg film-coated tablet 37391000168108 Rispaccord 37391000168108 Rispaccord 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +935031000168105 Centevo 125/31.25/200 mg film-coated tablet, 28, bottle 238856 935021000168107 Centevo 125/31.25/200 mg film-coated tablet, 28 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935011000168100 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 28 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +958431000168105 Somavert (1 x 20 mg vial, 1 x inert diluent vial), 1 pack, composite pack 107105 958421000168107 Somavert (1 x 20 mg vial, 1 x inert diluent vial), 1 pack 958401000168103 Somavert (pegvisomant 20 mg) powder for injection, 20 mg vial 958111000168106 Somavert 958111000168106 Somavert 958411000168100 pegvisomant 20 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 958391000168100 pegvisomant 20 mg injection, vial 958121000168104 pegvisomant +958431000168105 Somavert (1 x 20 mg vial, 1 x inert diluent vial), 1 pack, composite pack 107105 958421000168107 Somavert (1 x 20 mg vial, 1 x inert diluent vial), 1 pack 958151000168107 Somavert (inert substance) diluent, vial 958111000168106 Somavert 958111000168106 Somavert 958411000168100 pegvisomant 20 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +60102011000036105 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 50 mL, bottle 126543 56063011000036101 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 50 mL 53775011000036101 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 240 mg/5 mL oral liquid suspension, 5 mL 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 2031000168102 Paracetamol Children's 5 to 12 Years (Pharmacy Choice) 63814011000036106 paracetamol 240 mg/5 mL oral liquid, 50 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +819071000168108 Atomoxetine (Amneal) 18 mg hard capsule, 7, blister pack 238336 819061000168102 Atomoxetine (Amneal) 18 mg hard capsule, 7 819041000168101 Atomoxetine (Amneal) 18 mg hard capsule 816361000168105 Atomoxetine (Amneal) 816361000168105 Atomoxetine (Amneal) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +911631000168109 Cavstat 20 mg film-coated tablet, 60, blister pack 234514 911621000168106 Cavstat 20 mg film-coated tablet, 60 113081000036105 Cavstat 20 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 911611000168104 rosuvastatin 20 mg tablet, 60 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +866641000168101 Amitriptyline (RS) 25 mg tablet, 1000, blister pack 232142 866631000168105 Amitriptyline (RS) 25 mg tablet, 1000 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +960601000168108 Ciram 40 mg film-coated tablet, 84, blister pack 158860 960591000168101 Ciram 40 mg film-coated tablet, 84 960471000168101 Ciram 40 mg film-coated tablet 959171000168105 Ciram 959171000168105 Ciram 933202951000036103 citalopram 40 mg tablet, 84 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +61481011000036109 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 20, blister pack 91993 57406011000036101 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet, 20 54296011000036105 Paracetamol Capseal (Herron) 500 mg gelatin coated tablet 4641000168105 Paracetamol Capseal (Herron) 4641000168105 Paracetamol Capseal (Herron) 46259011000036105 paracetamol 500 mg tablet, 20 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +60256011000036102 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 3 sachets 134660 56215011000036105 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 3 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63356011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 3 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +933212591000036104 Ciprofloxacin (GN) 250 mg film-coated tablet, 10, blister pack 148849 933202321000036105 Ciprofloxacin (GN) 250 mg film-coated tablet, 10 933195361000036109 Ciprofloxacin (GN) 250 mg film-coated tablet 933193561000036100 Ciprofloxacin (GN) 933193561000036100 Ciprofloxacin (GN) 932361011000036109 ciprofloxacin 250 mg tablet, 10 23512011000036106 ciprofloxacin 250 mg tablet 21245011000036105 ciprofloxacin +69637011000036101 Intralipid 30% (75 g/250 mL) intravenous infusion injection, 10 x 250 mL bags 77747 67436011000036105 Intralipid 30% (75 g/250 mL) intravenous infusion injection, 10 x 250 mL bags 65664011000036107 Intralipid 30% (75 g/250 mL) intravenous infusion injection, 250 mL bag 65008011000036106 Intralipid 65008011000036106 Intralipid 71966011000036100 soya oil 30% (75 g/250 mL) injection, 10 x 250 mL bags 70267011000036109 soya oil 30% (75 g/250 mL) injection, bag 69767011000036104 soya oil +44681011000036105 Zithromax IV 500 mg powder for injection, 1 vial 91913 42130011000036102 Zithromax IV 500 mg powder for injection, 1 vial 40357011000036102 Zithromax IV 500 mg powder for injection, 500 mg vial 30141000168102 Zithromax IV 30141000168102 Zithromax IV 46892011000036101 azithromycin 500 mg injection, 1 vial 45336011000036107 azithromycin 500 mg injection, vial 21518011000036103 azithromycin +920701011000036103 Hypersal6 6% (60 mg/mL) inhalation solution, 10 mL, sachet 145765 920399011000036100 Hypersal6 6% (60 mg/mL) inhalation solution, 10 mL 920161011000036107 Hypersal6 6% (60 mg/mL) inhalation solution 25851000168101 Hypersal6 25851000168101 Hypersal6 920854011000036109 sodium chloride 6% (60 mg/mL) inhalation solution, 10 mL 920826011000036100 sodium chloride 6% (60 mg/mL) inhalation solution 21308011000036103 sodium chloride +919931000168100 Cilopam 40 mg film-coated tablet, 7, bottle 158867 919921000168103 Cilopam 40 mg film-coated tablet, 7 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202931000036106 citalopram 40 mg tablet, 7 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +917761000168101 Isordil 30 mg uncoated tablet, 25, bottle 40249 917751000168103 Isordil 30 mg uncoated tablet, 25 917731000168109 Isordil 30 mg uncoated tablet 4049011000036106 Isordil 4049011000036106 Isordil 917741000168100 isosorbide dinitrate 30 mg tablet, 25 917721000168106 isosorbide dinitrate 30 mg tablet 21865011000036107 isosorbide dinitrate +1106401000168107 Imrest 7.5 mg film-coated tablet, 2, blister pack 99794 1106391000168105 Imrest 7.5 mg film-coated tablet, 2 7626011000036102 Imrest 7.5 mg film-coated tablet 4237011000036108 Imrest 4237011000036108 Imrest 1106381000168107 zopiclone 7.5 mg tablet, 2 23644011000036104 zopiclone 7.5 mg tablet 21574011000036103 zopiclone +60838011000036107 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution, 500 mL, bottle 58502 56794011000036104 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution, 500 mL 54083011000036106 Dry Tickly Cough Medicine (Soul Pattinson) 1 mg/mL oral liquid solution 45631000168105 Dry Tickly Cough Medicine (Soul Pattinson) 45631000168105 Dry Tickly Cough Medicine (Soul Pattinson) 63801011000036106 pholcodine 1 mg/mL oral liquid, 500 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +1061391000168106 Olanzapine (Auro) 10 mg uncoated tablet, 30, bottle 179935 1061381000168108 Olanzapine (Auro) 10 mg uncoated tablet, 30 714151000168101 Olanzapine (Auro) 10 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 89791000036102 olanzapine 10 mg tablet, 30 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +18603011000036106 Lopresor 50 mg film-coated tablet, 100, bottle 11041 11410011000036105 Lopresor 50 mg film-coated tablet, 100 5231011000036108 Lopresor 50 mg film-coated tablet 3231011000036102 Lopresor 3231011000036102 Lopresor 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +1063561000168106 Strong Pain Xtra (Pharmacist Formula) uncoated tablet, 12, blister pack 188380 1063551000168109 Strong Pain Xtra (Pharmacist Formula) uncoated tablet, 12 1063541000168107 Strong Pain Xtra (Pharmacist Formula) uncoated tablet 1063441000168106 Strong Pain Xtra (Pharmacist Formula) 1063441000168106 Strong Pain Xtra (Pharmacist Formula) 52861011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 12 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +13311000036108 Mycophenolate Mofetil (Apo) 250 mg capsule, 100, blister pack 168109 8441000036105 Mycophenolate Mofetil (Apo) 250 mg capsule, 100 2441000036108 Mycophenolate Mofetil (Apo) 250 mg capsule 23401000168104 Mycophenolate Mofetil (Apo) 23401000168104 Mycophenolate Mofetil (Apo) 85190011000036100 mycophenolate mofetil 250 mg capsule, 100 22943011000036106 mycophenolate mofetil 250 mg capsule 21266011000036109 mycophenolate +923836011000036101 Prochlorperazine Maleate (Apo) 5 mg tablet, 250, blister pack 158416 923382011000036108 Prochlorperazine Maleate (Apo) 5 mg tablet, 250 923050011000036104 Prochlorperazine Maleate (Apo) 5 mg tablet 4811000168107 Prochlorperazine Maleate (Apo) 4811000168107 Prochlorperazine Maleate (Apo) 924172011000036105 prochlorperazine maleate 5 mg tablet, 250 22964011000036103 prochlorperazine maleate 5 mg tablet 21262011000036105 prochlorperazine +19571011000036109 Daivonex 0.005% cream, 30 g, tube 57354 12842011000036109 Daivonex 0.005% cream, 30 g 6133011000036105 Daivonex 0.005% cream 30251000168107 Daivonex 30251000168107 Daivonex 27389011000036108 calcipotriol 0.005% cream, 30 g 22738011000036109 calcipotriol 0.005% cream 21829011000036100 calcipotriol +80988011000036109 Zinc and Castor Oil (Orion) cream, 20 g, tube 10775 80480011000036105 Zinc and Castor Oil (Orion) cream, 20 g 80152011000036101 Zinc and Castor Oil (Orion) cream 80135011000036105 Zinc and Castor Oil (Orion) 80135011000036105 Zinc and Castor Oil (Orion) 81579011000036109 zinc oxide 7.5% + castor oil 50% cream, 20 g 81269011000036106 zinc oxide 7.5% + castor oil 50% cream 81222011000036107 zinc oxide + castor oil +922101000168105 Anastrozole (Generic Health) 1 mg film-coated tablet, 30, blister pack 206404 922091000168100 Anastrozole (Generic Health) 1 mg film-coated tablet, 30 922081000168103 Anastrozole (Generic Health) 1 mg film-coated tablet 922031000168104 Anastrozole (Generic Health) 922031000168104 Anastrozole (Generic Health) 27331011000036103 anastrozole 1 mg tablet, 30 22684011000036101 anastrozole 1 mg tablet 21685011000036101 anastrozole +1059221000168108 Diclofenac (Pharmacor) 50 mg enteric tablet, 50, blister pack 272887 1059211000168101 Diclofenac (Pharmacor) 50 mg enteric tablet, 50 1059161000168109 Diclofenac (Pharmacor) 50 mg enteric tablet 1059151000168107 Diclofenac (Pharmacor) 1059151000168107 Diclofenac (Pharmacor) 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +21156011000036104 Amoxycillin (Sandoz) 1 g film-coated tablet, 14, blister pack 98758 14298011000036100 Amoxycillin (Sandoz) 1 g film-coated tablet, 14 7584011000036107 Amoxycillin (Sandoz) 1 g film-coated tablet 3323011000036108 Amoxycillin (Sandoz) 3323011000036108 Amoxycillin (Sandoz) 28289011000036109 amoxicillin 1 g tablet, 14 23603011000036106 amoxicillin 1 g tablet 21415011000036100 amoxicillin +725061000168106 TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 725051000168109 TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 725031000168103 TYR Lophlex LQ 20 oral liquid solution, 125 mL pouch 23751000168107 TYR Lophlex LQ 20 23751000168107 TYR Lophlex LQ 20 725041000168107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 125 mL pouches 725021000168101 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 125 mL pouch 50743011000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine +84312011000036104 Sozol 40 mg enteric tablet, 30, blister pack 153795 84005011000036106 Sozol 40 mg enteric tablet, 30 83641011000036109 Sozol 40 mg enteric tablet 83544011000036103 Sozol 83544011000036103 Sozol 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +84312011000036104 Sozol 40 mg enteric tablet, 30, blister pack 191035 84005011000036106 Sozol 40 mg enteric tablet, 30 83641011000036109 Sozol 40 mg enteric tablet 83544011000036103 Sozol 83544011000036103 Sozol 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +933215491000036109 Olanzapine (Lilly) 2.5 mg film-coated tablet, 28, blister pack 167678 933204961000036106 Olanzapine (Lilly) 2.5 mg film-coated tablet, 28 933196121000036108 Olanzapine (Lilly) 2.5 mg film-coated tablet 3381000168109 Olanzapine (Lilly) 3381000168109 Olanzapine (Lilly) 27368011000036102 olanzapine 2.5 mg tablet, 28 22718011000036100 olanzapine 2.5 mg tablet 21485011000036103 olanzapine +38521000036105 Escitalup 10 mg film-coated tablet, 100, bottle 165855 34851000036105 Escitalup 10 mg film-coated tablet, 100 33111000036103 Escitalup 10 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +1072081000168106 Cold and Flu Relief PE Day/Night (Apohealth) (36 x Day tablets, 12 x Night tablets), 48, blister pack 227573 1072071000168108 Cold and Flu Relief PE Day/Night (Apohealth) (36 x Day tablets, 12 x Night tablets), 48 1072031000168105 Cold and Flu Relief PE Day/Night (Day) (Apohealth) film-coated tablet 1069961000168104 Cold and Flu Relief PE Day/Night (Apohealth) 1071951000168105 Cold and Flu Relief PE Day/Night (Day) (Apohealth) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1072081000168106 Cold and Flu Relief PE Day/Night (Apohealth) (36 x Day tablets, 12 x Night tablets), 48, blister pack 227573 1072071000168108 Cold and Flu Relief PE Day/Night (Apohealth) (36 x Day tablets, 12 x Night tablets), 48 1072041000168101 Cold and Flu Relief PE Day/Night (Night) (Apohealth) film-coated tablet 1069961000168104 Cold and Flu Relief PE Day/Night (Apohealth) 1071961000168107 Cold and Flu Relief PE Day/Night (Night) (Apohealth) 63172011000036103 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet [36] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [12], 48 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +892121000168102 Amlodipine (Unichem) 5 mg tablet, 30, blister pack 212153 892111000168109 Amlodipine (Unichem) 5 mg tablet, 30 892101000168106 Amlodipine (Unichem) 5 mg tablet 892071000168102 Amlodipine (Unichem) 892071000168102 Amlodipine (Unichem) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +77381011000036101 Osteoeze Tabsule (Herron) 750 mg film-coated tablet, 60, blister pack 73800 76797011000036107 Osteoeze Tabsule (Herron) 750 mg film-coated tablet, 60 76184011000036107 Osteoeze Tabsule (Herron) 750 mg film-coated tablet 47551000168109 Osteoeze Tabsule (Herron) 47551000168109 Osteoeze Tabsule (Herron) 78301011000036106 glucosamine hydrochloride 750 mg tablet, 60 77599011000036100 glucosamine hydrochloride 750 mg tablet 69813011000036107 glucosamine +700029911000036105 Micronor 350 microgram uncoated tablet, 28, blister pack 11963011000036100 Micronor 350 microgram uncoated tablet, 28 5802011000036104 Micronor 350 microgram uncoated tablet 3234011000036104 Micronor 3234011000036104 Micronor 28349011000036106 norethisterone 350 microgram tablet, 28 22533011000036103 norethisterone 350 microgram tablet 21579011000036102 norethisterone +823641000168104 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 221720 823631000168108 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 15 x 0.8 mL syringes 823531000168109 Clexane with Automatic Safety Lock System 80 mg/0.8 mL injection solution, 0.8 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823621000168105 enoxaparin sodium 80 mg/0.8 mL injection, 15 x 0.8 mL syringes 22724011000036104 enoxaparin sodium 80 mg/0.8 mL injection, syringe 21553011000036103 enoxaparin sodium +911391000168101 Caspofungin (CH) 50 mg powder for injection, 1 vial 269937 911381000168104 Caspofungin (CH) 50 mg powder for injection, 1 vial 911371000168102 Caspofungin (CH) 50 mg powder for injection, 50 mg vial 911331000168100 Caspofungin (CH) 911331000168100 Caspofungin (CH) 46740011000036105 caspofungin 50 mg injection, 1 vial 45292011000036105 caspofungin 50 mg injection, vial 44892011000036107 caspofungin +38531000036107 Escitalup 10 mg film-coated tablet, 200, bottle 165855 34861000036108 Escitalup 10 mg film-coated tablet, 200 33111000036103 Escitalup 10 mg film-coated tablet 32341000036105 Escitalup 32341000036105 Escitalup 932889011000036108 escitalopram 10 mg tablet, 200 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +877191000168108 Briviact 75 mg film-coated tablet, 100, blister pack 243798 877181000168105 Briviact 75 mg film-coated tablet, 100 877101000168102 Briviact 75 mg film-coated tablet 876391000168107 Briviact 876391000168107 Briviact 877171000168107 brivaracetam 75 mg tablet, 100 877091000168107 brivaracetam 75 mg tablet 876401000168109 brivaracetam +969281000168105 Aripiprazole (AN) 15 mg uncoated tablet, 60, blister pack 198206 969271000168107 Aripiprazole (AN) 15 mg uncoated tablet, 60 969201000168102 Aripiprazole (AN) 15 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 788131000168104 aripiprazole 15 mg tablet, 60 23349011000036107 aripiprazole 15 mg tablet 21675011000036108 aripiprazole +66621000036101 Teething Tiny Tots (Chemmart) 8.7% oral gel, 20 g, tube 90460 64601000036103 Teething Tiny Tots (Chemmart) 8.7% oral gel, 20 g 61431000036105 Teething Tiny Tots (Chemmart) 8.7% oral gel 45951000168106 Teething Tiny Tots (Chemmart) 45951000168106 Teething Tiny Tots (Chemmart) 927403011000036102 choline salicylate 8.7% oral gel, 20 g 69976011000036100 choline salicylate 8.7% oral gel 52232011000036106 salicylic acid +1123401000168108 Quetiapine XR (ZP) 300 mg modified release tablet, 100, blister pack 226799 1123391000168106 Quetiapine XR (ZP) 300 mg modified release tablet, 100 1123321000168109 Quetiapine XR (ZP) 300 mg modified release tablet 1123221000168103 Quetiapine XR (ZP) 1123221000168103 Quetiapine XR (ZP) 51536011000036100 quetiapine 300 mg modified release tablet, 100 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +44578011000036103 Patanol 0.1% eye drops solution, 5 mL, bottle 82000 42031011000036100 Patanol 0.1% eye drops solution, 5 mL 40330011000036104 Patanol 0.1% eye drops solution 39583011000036103 Patanol 39583011000036103 Patanol 46800011000036102 olopatadine 0.1% eye drops, 5 mL 45321011000036104 olopatadine 0.1% eye drops 44954011000036103 olopatadine +658711000168106 Telmisartan HCTZ 40/12.5 (AN) multilayer tablet, 28, blister pack 221179 658701000168108 Telmisartan HCTZ 40/12.5 (AN) multilayer tablet, 28 658691000168108 Telmisartan HCTZ 40/12.5 (AN) multilayer tablet 658681000168105 Telmisartan HCTZ 40/12.5 (AN) 658681000168105 Telmisartan HCTZ 40/12.5 (AN) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +776461000168107 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 215494 776451000168105 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776461000168107 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 61771 776451000168105 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 87074011000036107 Loette (inert substance) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +776461000168107 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 215494 776451000168105 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +776461000168107 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 61771 776451000168105 Loette (21 x 100 microgram/20 microgram tablets, 7 x inert tablets), 4 x 28 87073011000036105 Loette (levonorgestrel 100 microgram + ethinylestradiol 20 microgram) film-coated tablet 87054011000036109 Loette 87054011000036109 Loette 101441000036108 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 87208011000036104 levonorgestrel 100 microgram + ethinylestradiol 20 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +130841000036105 Aubagio 14 mg film-coated tablet, 28, blister pack 192672 128081000036109 Aubagio 14 mg film-coated tablet, 28 124821000036106 Aubagio 14 mg film-coated tablet 123781000036100 Aubagio 123781000036100 Aubagio 128091000036106 teriflunomide 14 mg tablet, 28 124831000036108 teriflunomide 14 mg tablet 132081000036109 teriflunomide +778631000168100 Decapeptyl 100 microgram/mL injection solution, 7 x 1 mL syringes 219857 778621000168103 Decapeptyl 100 microgram/mL injection solution, 7 x 1 mL syringes 729011000168106 Decapeptyl 100 microgram/mL injection solution, syringe 728981000168105 Decapeptyl 728981000168105 Decapeptyl 778611000168105 triptorelin acetate 100 microgram/mL injection, 7 x 1 mL syringes 729001000168108 triptorelin acetate 100 microgram/mL injection, syringe 52800011000036105 triptorelin +900711000168100 Amlodipine (CH) 10 mg uncoated tablet, 30, blister pack 225377 900701000168103 Amlodipine (CH) 10 mg uncoated tablet, 30 900691000168103 Amlodipine (CH) 10 mg uncoated tablet 900581000168100 Amlodipine (CH) 900581000168100 Amlodipine (CH) 28207011000036103 amlodipine 10 mg tablet, 30 23519011000036101 amlodipine 10 mg tablet 21322011000036108 amlodipine +1119151000168106 Quetiapine (Actavis) 150 mg film-coated tablet, 50, blister pack 179901 1119141000168109 Quetiapine (Actavis) 150 mg film-coated tablet, 50 1119091000168102 Quetiapine (Actavis) 150 mg film-coated tablet 781000036104 Quetiapine (Actavis) 781000036104 Quetiapine (Actavis) 1112681000168100 quetiapine 150 mg tablet, 50 653421000168104 quetiapine 150 mg tablet 21452011000036104 quetiapine +933215331000036100 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 100, bottle 163527 933204271000036108 Pravastatin Sodium (DRLA) 20 mg film-coated tablet, 100 933195461000036100 Pravastatin Sodium (DRLA) 20 mg film-coated tablet 933193331000036102 Pravastatin Sodium (DRLA) 933193331000036102 Pravastatin Sodium (DRLA) 932416011000036108 pravastatin sodium 20 mg tablet, 100 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +733651000168102 Soflax (Ascent Pharma) film-coated tablet, 100, bottle 91684 733641000168104 Soflax (Ascent Pharma) film-coated tablet, 100 733631000168108 Soflax (Ascent Pharma) film-coated tablet 733621000168105 Soflax (Ascent Pharma) 733621000168105 Soflax (Ascent Pharma) 81751011000036106 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 100 81306011000036109 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet 81227011000036109 sennoside B + senna leaf powder + docusate +18158011000036107 Amlodipine (Sandoz) 5 mg uncoated tablet, 30, bottle 124579 11768011000036104 Amlodipine (Sandoz) 5 mg uncoated tablet, 30 5549011000036104 Amlodipine (Sandoz) 5 mg uncoated tablet 3220011000036106 Amlodipine (Sandoz) 3220011000036106 Amlodipine (Sandoz) 28205011000036108 amlodipine 5 mg tablet, 30 23517011000036108 amlodipine 5 mg tablet 21322011000036108 amlodipine +937131000168103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 10, blister pack 191154 937121000168101 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule, 10 119521000036103 Diarrhoea Relief (Pharmacy Action) 2 mg hard capsule 119241000036108 Diarrhoea Relief (Pharmacy Action) 119241000036108 Diarrhoea Relief (Pharmacy Action) 835231000168108 loperamide hydrochloride 2 mg capsule, 10 22572011000036108 loperamide hydrochloride 2 mg capsule 21760011000036100 loperamide +1027071000168109 Pregabalin (Amneal) 300 mg hard capsule, 200, bottle 235869 1027061000168103 Pregabalin (Amneal) 300 mg hard capsule, 200 1026881000168102 Pregabalin (Amneal) 300 mg hard capsule 1025611000168101 Pregabalin (Amneal) 1025611000168101 Pregabalin (Amneal) 970891000168106 pregabalin 300 mg capsule, 200 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +61661011000036108 Aerius Syrup 500 microgram/mL oral liquid solution, 200 mL, bottle 97260 57583011000036100 Aerius Syrup 500 microgram/mL oral liquid solution, 200 mL 54355011000036102 Aerius Syrup 500 microgram/mL oral liquid solution 38081000168108 Aerius Syrup 38081000168108 Aerius Syrup 63939011000036109 desloratadine 500 microgram/mL oral liquid, 200 mL 62105011000036107 desloratadine 500 microgram/mL oral liquid 61723011000036109 desloratadine +737941000168102 Carbaglu 200 mg dispersible tablet, 5, tube 215632 737931000168106 Carbaglu 200 mg dispersible tablet, 5 737911000168101 Carbaglu 200 mg dispersible tablet 737881000168101 Carbaglu 737881000168101 Carbaglu 737921000168108 carglumic acid 200 mg dispersible tablet, 5 737901000168104 carglumic acid 200 mg dispersible tablet 737891000168103 carglumic acid +21079011000036100 Certican 250 microgram uncoated tablet, 60, blister pack 97500 14222011000036107 Certican 250 microgram uncoated tablet, 60 7508011000036101 Certican 250 microgram uncoated tablet 4369011000036100 Certican 4369011000036100 Certican 28224011000036103 everolimus 250 microgram tablet, 60 23538011000036100 everolimus 250 microgram tablet 21615011000036103 everolimus +34778011000036103 Oxycontin 40 mg modified release tablet, 60, blister pack 68191 34357011000036100 Oxycontin 40 mg modified release tablet, 60 6513011000036107 Oxycontin 40 mg modified release tablet 3702011000036109 Oxycontin 3702011000036109 Oxycontin 35205011000036101 oxycodone hydrochloride 40 mg modified release tablet, 60 22972011000036100 oxycodone hydrochloride 40 mg modified release tablet 21259011000036105 oxycodone +909301000168105 Chorit 80 mg film-coated tablet, 30, blister pack 179859 909291000168109 Chorit 80 mg film-coated tablet, 30 909231000168105 Chorit 80 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +19648011000036109 Lipitor 20 mg film-coated tablet, 30, blister pack 166896 12915011000036104 Lipitor 20 mg film-coated tablet, 30 6205011000036102 Lipitor 20 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +19648011000036109 Lipitor 20 mg film-coated tablet, 30, blister pack 59606 12915011000036104 Lipitor 20 mg film-coated tablet, 30 6205011000036102 Lipitor 20 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +19648011000036109 Lipitor 20 mg film-coated tablet, 30, blister pack 168341 12915011000036104 Lipitor 20 mg film-coated tablet, 30 6205011000036102 Lipitor 20 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +934961000168102 Mivacron 10 mg/5 mL injection solution, 5 x 5 mL ampoules 42972 934951000168104 Mivacron 10 mg/5 mL injection solution, 5 x 5 mL ampoules 934931000168105 Mivacron 10 mg/5 mL injection solution, 5 mL ampoule 39761011000036101 Mivacron 39761011000036101 Mivacron 934941000168101 mivacurium 10 mg/5 mL injection, 5 x 5 mL ampoules 934921000168107 mivacurium 10 mg/5 mL injection, ampoule 44971011000036103 mivacurium +20505011000036101 Gantin 300 mg hard capsule, 100, blister pack 78624 13705011000036100 Gantin 300 mg hard capsule, 100 6987011000036109 Gantin 300 mg hard capsule 3173011000036101 Gantin 3173011000036101 Gantin 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +50592011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet, 100, bottle 134882 49624011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet, 100 5952011000036102 Clarithromycin (GenRx) 250 mg film-coated tablet 3013011000036103 Clarithromycin (GenRx) 3013011000036103 Clarithromycin (GenRx) 27908011000036108 clarithromycin 250 mg tablet, 100 23635011000036101 clarithromycin 250 mg tablet 21836011000036107 clarithromycin +19100011000036100 Provera 10 mg uncoated tablet, 100, bottle 42935 12405011000036104 Provera 10 mg uncoated tablet, 100 5765011000036105 Provera 10 mg uncoated tablet 3161011000036107 Provera 3161011000036107 Provera 27144011000036107 medroxyprogesterone acetate 10 mg tablet, 100 23229011000036103 medroxyprogesterone acetate 10 mg tablet 21378011000036107 medroxyprogesterone +82410011000036101 Ascabiol 25% lotion, 200 mL, bottle 27479 82199011000036109 Ascabiol 25% lotion, 200 mL 82036011000036104 Ascabiol 25% lotion 81968011000036102 Ascabiol 81968011000036102 Ascabiol 71335011000036107 benzyl benzoate 25% lotion, 200 mL 69957011000036104 benzyl benzoate 25% lotion 69818011000036102 benzyl benzoate +928451000168103 Marcain 0.5% (50 mg/10 mL) injection solution, 5 x 10 mL vials 11940 928441000168100 Marcain 0.5% (50 mg/10 mL) injection solution, 5 x 10 mL vials 928421000168106 Marcain 0.5% (50 mg/10 mL) injection solution, 10 mL vial 12651000168100 Marcain 12651000168100 Marcain 928431000168109 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, 5 x 10 mL vials 928411000168104 bupivacaine hydrochloride monohydrate 0.5% (50 mg/10 mL) injection, vial 37702011000036102 bupivacaine +977781000168103 Pregabalin (Teva) 200 mg hard capsule, 21, blister pack 229596 977771000168101 Pregabalin (Teva) 200 mg hard capsule, 21 977741000168108 Pregabalin (Teva) 200 mg hard capsule 973271000168104 Pregabalin (Teva) 973271000168104 Pregabalin (Teva) 855251000168103 pregabalin 200 mg capsule, 21 855201000168102 pregabalin 200 mg capsule 33640011000036108 pregabalin +780801000168100 Fentanyl (Apo) 37 microgram/hour patch, 3, sachet 152566 780791000168101 Fentanyl (Apo) 37 microgram/hour patch, 3 780711000168105 Fentanyl (Apo) 37 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 780781000168104 fentanyl 37 microgram/hour patch, 3 780701000168107 fentanyl 37 microgram/hour patch 21258011000036102 fentanyl +69405011000036102 Microshield PVP 7.5% solution, 500 mL, bottle 46553 67205011000036108 Microshield PVP 7.5% solution, 500 mL 65552011000036100 Microshield PVP 7.5% solution 65073011000036107 Microshield PVP 65073011000036107 Microshield PVP 71761011000036103 povidone-iodine 7.5% solution, 500 mL 70175011000036106 povidone-iodine 7.5% solution 21660011000036108 povidone-iodine +926301000168109 Zavedos 5 mg powder for injection, 1 vial 10332 926291000168108 Zavedos 5 mg powder for injection, 1 vial 926271000168107 Zavedos 5 mg powder for injection, 5 mg vial 4217011000036101 Zavedos 4217011000036101 Zavedos 926281000168105 idarubicin hydrochloride 5 mg injection, 1 vial 926261000168101 idarubicin hydrochloride 5 mg injection, vial 21720011000036108 idarubicin +823501000168102 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 15 x 0.6 mL syringes 221719 823491000168109 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 15 x 0.6 mL syringes 823391000168100 Clexane with Automatic Safety Lock System 60 mg/0.6 mL injection solution, 0.6 mL syringe 2391000168100 Clexane 2391000168100 Clexane 823481000168106 enoxaparin sodium 60 mg/0.6 mL injection, 15 x 0.6 mL syringes 22723011000036101 enoxaparin sodium 60 mg/0.6 mL injection, syringe 21553011000036103 enoxaparin sodium +1110491000168101 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 100, blister pack 219061 1110481000168104 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet, 100 1109791000168102 Clopidogrel/Aspirin 75/100 (ZP) uncoated tablet 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 1109781000168100 Clopidogrel/Aspirin 75/100 (ZP) 82543011000036109 clopidogrel 75 mg + aspirin 100 mg tablet, 100 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +909381000168102 Cisatracurium (Juno) 150 mg/30 mL injection solution, 30 mL vial 226859 909371000168100 Cisatracurium (Juno) 150 mg/30 mL injection solution, 30 mL vial 909361000168106 Cisatracurium (Juno) 150 mg/30 mL injection solution, 30 mL vial 909131000168100 Cisatracurium (Juno) 909131000168100 Cisatracurium (Juno) 161591000036100 cisatracurium 150 mg/30 mL injection, 30 mL vial 161501000036108 cisatracurium 150 mg/30 mL injection, vial 44902011000036101 cisatracurium +720681000168101 Midazolam (Apotex) 5 mg/mL injection solution, 10 x 1 mL ampoules 217657 720671000168104 Midazolam (Apotex) 5 mg/mL injection solution, 10 x 1 mL ampoules 720661000168105 Midazolam (Apotex) 5 mg/mL injection solution, ampoule 720651000168108 Midazolam (Apotex) 720651000168108 Midazolam (Apotex) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +44390011000036105 Somac 40 mg enteric tablet, 28, bottle 69791 41851011000036101 Somac 40 mg enteric tablet, 28 6569011000036109 Somac 40 mg enteric tablet 10171000168100 Somac 10171000168100 Somac 46657011000036100 pantoprazole 40 mg enteric tablet, 28 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +1093381000168106 Voltaren Emulgel No Mess Applicator 1.16% gel, 120 g, tube 282516 1093371000168108 Voltaren Emulgel No Mess Applicator 1.16% gel, 120 g 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1093361000168102 diclofenac diethylamine 1.16% gel, 120 g 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +727351000168101 Coversyl 10 mg film-coated tablet, 10, bottle 101569 727341000168103 Coversyl 10 mg film-coated tablet, 10 5959011000036107 Coversyl 10 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 727331000168107 perindopril arginine 10 mg tablet, 10 21967011000036108 perindopril arginine 10 mg tablet 21362011000036102 perindopril +44184011000036107 Anzemet 50 mg film-coated tablet, 5, blister pack 55066 41660011000036106 Anzemet 50 mg film-coated tablet, 5 40130011000036108 Anzemet 50 mg film-coated tablet 4210011000036102 Anzemet 4210011000036102 Anzemet 46478011000036104 dolasetron mesilate monohydrate 50 mg tablet, 5 45178011000036100 dolasetron mesilate monohydrate 50 mg tablet 21471011000036108 dolasetron +707891000168106 Alendrobell Plus D3 70 mg/70 microgram uncoated tablet, 4, blister pack 206934 707881000168108 Alendrobell Plus D3 70 mg/70 microgram uncoated tablet, 4 707871000168105 Alendrobell Plus D3 70 mg/70 microgram uncoated tablet 707861000168104 Alendrobell Plus D3 70 mg/70 microgram 707861000168104 Alendrobell Plus D3 70 mg/70 microgram 26653011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet, 4 22057011000036106 alendronate 70 mg + colecalciferol 70 microgram tablet 21250011000036104 alendronate + colecalciferol +61592011000036107 Iprofen 100 mg/5 mL oral liquid suspension, 200 mL, bottle 95345 57514011000036100 Iprofen 100 mg/5 mL oral liquid suspension, 200 mL 54332011000036109 Iprofen 100 mg/5 mL oral liquid suspension, 5 mL 53363011000036105 Iprofen 53363011000036105 Iprofen 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +81791000036103 Leflunomide (GA) 20 mg film-coated tablet, 30, bottle 164961 80061000036102 Leflunomide (GA) 20 mg film-coated tablet, 30 78691000036107 Leflunomide (GA) 20 mg film-coated tablet 77731000036104 Leflunomide (GA) 77731000036104 Leflunomide (GA) 28096011000036105 leflunomide 20 mg tablet, 30 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +38611000036104 Escitalopram (LAPL) 15 mg film-coated tablet, 28, blister pack 165860 34971000036109 Escitalopram (LAPL) 15 mg film-coated tablet, 28 33091000036109 Escitalopram (LAPL) 15 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +990581000168102 Lyrica 50 mg hard capsule, 56, blister pack 99479 990571000168100 Lyrica 50 mg hard capsule, 56 990521000168101 Lyrica 50 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 856081000168109 pregabalin 50 mg capsule, 56 856001000168101 pregabalin 50 mg capsule 33640011000036108 pregabalin +926461000168100 Zithromax 250 mg film-coated tablet, 6, blister pack 58795 926451000168102 Zithromax 250 mg film-coated tablet, 6 926371000168104 Zithromax 250 mg film-coated tablet 3528011000036100 Zithromax 3528011000036100 Zithromax 926441000168104 azithromycin 250 mg tablet, 6 926361000168105 azithromycin 250 mg tablet 21518011000036103 azithromycin +20060011000036106 Oratane 20 mg soft capsule, 60, blister pack 69868 13290011000036104 Oratane 20 mg soft capsule, 60 6574011000036102 Oratane 20 mg soft capsule 3045011000036106 Oratane 3045011000036106 Oratane 28044011000036109 isotretinoin 20 mg capsule, 60 23365011000036102 isotretinoin 20 mg capsule 21546011000036107 isotretinoin +181921000036109 Oraqix oral gel, 1.7 g, cartridge 181931000036106 Oraqix oral gel, 1.7 g 929975011000036103 Oraqix oral gel 929830011000036101 Oraqix 929830011000036101 Oraqix 181941000036101 lidocaine (lignocaine) 2.5% + prilocaine 2.5% oral gel, 1.7 g 931838011000036106 lidocaine (lignocaine) 2.5% + prilocaine 2.5% oral gel 61738011000036101 lidocaine (lignocaine) + prilocaine +12671000036102 Olanzapine (Apo) 10 mg film-coated tablet, 28, blister pack 158970 7071000036109 Olanzapine (Apo) 10 mg film-coated tablet, 28 2961000036104 Olanzapine (Apo) 10 mg film-coated tablet 3511000168108 Olanzapine (Apo) 3511000168108 Olanzapine (Apo) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +933214851000036104 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 500, bottle 163565 933204451000036104 Pravastatin Sodium (RZ) 20 mg film-coated tablet, 500 933195531000036107 Pravastatin Sodium (RZ) 20 mg film-coated tablet 933193371000036100 Pravastatin Sodium (RZ) 933193371000036100 Pravastatin Sodium (RZ) 932417011000036106 pravastatin sodium 20 mg tablet, 500 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +1067831000168105 Ibuprofen plus Codeine (Trust) film-coated tablet, 18, blister pack 175264 1067821000168107 Ibuprofen plus Codeine (Trust) film-coated tablet, 18 1067741000168107 Ibuprofen plus Codeine (Trust) film-coated tablet 1067731000168103 Ibuprofen plus Codeine (Trust) 1067731000168103 Ibuprofen plus Codeine (Trust) 1067811000168100 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 18 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +716571000168107 Omepro 20 mg enteric capsule, 280, blister pack 149516 716561000168101 Omepro 20 mg enteric capsule, 280 716201000168104 Omepro 20 mg enteric capsule 924374011000036106 Omepro 924374011000036106 Omepro 716501000168102 omeprazole 20 mg enteric capsule, 280 75861000036107 omeprazole 20 mg enteric capsule 21676011000036101 omeprazole +894231000168101 Lanpro 0.005% eye drops solution, 2.5 mL, bottle 280417 894221000168104 Lanpro 0.005% eye drops solution, 2.5 mL 894211000168106 Lanpro 0.005% eye drops solution 894201000168108 Lanpro 894201000168108 Lanpro 27418011000036109 latanoprost 0.005% eye drops, 2.5 mL 22766011000036103 latanoprost 0.005% eye drops 21594011000036106 latanoprost +1024981000168104 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 20, blister pack 193302 1024971000168102 Pregabalin (Blooms The Chemist) 150 mg hard capsule, 20 1024941000168109 Pregabalin (Blooms The Chemist) 150 mg hard capsule 1024751000168108 Pregabalin (Blooms The Chemist) 1024751000168108 Pregabalin (Blooms The Chemist) 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +928611000168102 Cavstat 5 mg film-coated tablet, 500, bottle 235277 928601000168100 Cavstat 5 mg film-coated tablet, 500 112981000036100 Cavstat 5 mg film-coated tablet 112521000036105 Cavstat 112521000036105 Cavstat 928591000168107 rosuvastatin 5 mg tablet, 500 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +69714011000036106 Claramax 5 mg film-coated tablet, 60, blister pack 91115 67513011000036103 Claramax 5 mg film-coated tablet, 60 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72029011000036105 desloratadine 5 mg tablet, 60 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +923789011000036104 Cephazolin (Alphapharm) 1 g powder for injection, 1 vial 154639 923349011000036108 Cephazolin (Alphapharm) 1 g powder for injection, 1 vial 923025011000036107 Cephazolin (Alphapharm) 1 g powder for injection, vial 922923011000036109 Cephazolin (Alphapharm) 922923011000036109 Cephazolin (Alphapharm) 27792011000036101 cefazolin 1 g injection, 1 vial 23122011000036105 cefazolin 1 g injection, vial 21621011000036107 cefazolin +43790011000036108 Duac Once Daily gel, 30 g, tube 100707 41089011000036109 Duac Once Daily gel, 30 g 39968011000036104 Duac Once Daily gel 19991000168109 Duac Once Daily 19991000168109 Duac Once Daily 46075011000036102 clindamycin 1% + benzoyl peroxide 5% gel, 30 g 44982011000036100 clindamycin 1% + benzoyl peroxide 5% gel 44969011000036107 clindamycin + benzoyl peroxide +59742011000036108 Oxy 10 Vanishing 10% cream, 25 g, tube 10337 55680011000036104 Oxy 10 Vanishing 10% cream, 25 g 53610011000036108 Oxy 10 Vanishing 10% cream 18971000168100 Oxy 10 Vanishing 18971000168100 Oxy 10 Vanishing 63092011000036102 benzoyl peroxide 10% cream, 25 g 61855011000036108 benzoyl peroxide 10% cream 61709011000036104 benzoyl peroxide +50601011000036102 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 5 x 2 mL vials 135540 49628011000036109 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 5 x 2 mL vials 48791011000036100 Fludarabine Phosphate (Ebewe) 50 mg/2 mL injection, 2 mL vial 48324011000036105 Fludarabine Phosphate (Ebewe) 48324011000036105 Fludarabine Phosphate (Ebewe) 51520011000036101 fludarabine phosphate 50 mg/2 mL injection, 5 x 2 mL vials 50989011000036103 fludarabine phosphate 50 mg/2 mL injection, vial 39430011000036109 fludarabine +86025011000036108 Lisinopril (DRLA) 10 mg uncoated tablet, 84, blister pack 152721 85661011000036106 Lisinopril (DRLA) 10 mg uncoated tablet, 84 85320011000036103 Lisinopril (DRLA) 10 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 86422011000036106 lisinopril 10 mg tablet, 84 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +17995011000036100 Enalabell 5 mg uncoated tablet, 30, blister pack 107305 11361011000036109 Enalabell 5 mg uncoated tablet, 30 4937011000036107 Enalabell 5 mg uncoated tablet 3129011000036102 Enalabell 3129011000036102 Enalabell 28180011000036100 enalapril maleate 5 mg tablet, 30 23490011000036104 enalapril maleate 5 mg tablet 21317011000036101 enalapril +963251000168101 Dicarz 3.125 mg film-coated tablet, 30, blister pack 101739 957861000168100 Dicarz 3.125 mg film-coated tablet, 30 957851000168102 Dicarz 3.125 mg film-coated tablet 83547011000036109 Dicarz 83547011000036109 Dicarz 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +61438011000036107 Sleep Right (Pharmacy Health) 25 mg uncoated tablet, 20, blister pack 83231 57363011000036101 Sleep Right (Pharmacy Health) 25 mg uncoated tablet, 20 54284011000036101 Sleep Right (Pharmacy Health) 25 mg uncoated tablet 53425011000036107 Sleep Right (Pharmacy Health) 53425011000036107 Sleep Right (Pharmacy Health) 63827011000036109 doxylamine succinate 25 mg tablet, 20 62086011000036106 doxylamine succinate 25 mg tablet 61728011000036104 doxylamine +851611000168103 Enteclude 500 microgram film-coated tablet, 30, blister pack 234760 851601000168101 Enteclude 500 microgram film-coated tablet, 30 851591000168108 Enteclude 500 microgram film-coated tablet 851581000168105 Enteclude 851581000168105 Enteclude 829511000168101 entecavir 500 microgram tablet, 30 829491000168106 entecavir 500 microgram tablet 21490011000036108 entecavir +892041000168109 Betistavert 16 mg uncoated tablet, 30, blister pack 212087 892031000168100 Betistavert 16 mg uncoated tablet, 30 891981000168107 Betistavert 16 mg uncoated tablet 891971000168109 Betistavert 891971000168109 Betistavert 760021000168102 betahistine dihydrochloride 16 mg tablet, 30 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +694721000168101 Sildaccord 25 mg film-coated tablet, 4, blister pack 188713 694711000168108 Sildaccord 25 mg film-coated tablet, 4 694701000168105 Sildaccord 25 mg film-coated tablet 694611000168101 Sildaccord 694611000168101 Sildaccord 27545011000036103 sildenafil 25 mg tablet, 4 22885011000036106 sildenafil 25 mg tablet 21529011000036101 sildenafil +1110971000168105 Azacitidine (Apotex) 100 mg powder for injection, 1 vial 231497 1110961000168104 Azacitidine (Apotex) 100 mg powder for injection, 1 vial 1110951000168101 Azacitidine (Apotex) 100 mg powder for injection, 100 mg vial 1110941000168103 Azacitidine (Apotex) 1110941000168103 Azacitidine (Apotex) 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +1108091000168106 Midavel 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207226 1108081000168108 Midavel 50 mg/10 mL injection solution, 10 x 10 mL ampoules 1108031000168107 Midavel 50 mg/10 mL injection solution, 10 mL ampoule 1108021000168109 Midavel 1108021000168109 Midavel 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +19734011000036109 Norinyl-1 21 Day uncoated tablet, 4 x 21, blister packs 61648 12988011000036108 Norinyl-1 21 Day uncoated tablet, 4 x 21 6277011000036100 Norinyl-1 21 Day uncoated tablet 700015271000036100 Norinyl-1 21 Day 700015271000036100 Norinyl-1 21 Day 27487011000036106 norethisterone 1 mg + mestranol 50 microgram tablet, 4 x 21 22832011000036109 norethisterone 1 mg + mestranol 50 microgram tablet 21651011000036108 norethisterone + mestranol +840821000168101 Infanrix-IPV injection suspension, 0.5 mL syringe 80847 840811000168108 Infanrix-IPV injection suspension, 0.5 mL syringe 840791000168109 Infanrix-IPV injection suspension, 0.5 mL syringe 73704011000036107 Infanrix-IPV 73704011000036107 Infanrix-IPV 840801000168105 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 840781000168106 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 840691000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine +840821000168101 Infanrix-IPV injection suspension, 0.5 mL syringe 159563 840811000168108 Infanrix-IPV injection suspension, 0.5 mL syringe 840791000168109 Infanrix-IPV injection suspension, 0.5 mL syringe 73704011000036107 Infanrix-IPV 73704011000036107 Infanrix-IPV 840801000168105 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 840781000168106 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 840691000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine +60881011000036109 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 200 mL, bottle 59765 56835011000036106 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 200 mL 54094011000036107 Dimetapp Cold and Allergy Elixir Colour Free oral liquid solution, 5 mL 5521000168102 Dimetapp Cold and Allergy Elixir 5521000168102 Dimetapp Cold and Allergy Elixir 63602011000036105 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 200 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +1033111000168108 Ramipril (Apotex) 10 mg capsule, 30, blister pack 179036 1033101000168105 Ramipril (Apotex) 10 mg capsule, 30 1033001000168106 Ramipril (Apotex) 10 mg capsule 1032831000168102 Ramipril (Apotex) 1032831000168102 Ramipril (Apotex) 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +931579011000036102 Redichol 10 mg film-coated tablet, 90, bottle 163552 930740011000036103 Redichol 10 mg film-coated tablet, 90 930032011000036101 Redichol 10 mg film-coated tablet 929853011000036108 Redichol 929853011000036108 Redichol 932406011000036105 pravastatin sodium 10 mg tablet, 90 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +47211000036104 Nicotinell Step-1 21 mg/24 hours patch, 28, sachet 42626 46741000036107 Nicotinell Step-1 21 mg/24 hours patch, 28 925704011000036109 Nicotinell Step-1 21 mg/24 hours patch 29341000168106 Nicotinell Step-1 29341000168106 Nicotinell Step-1 63763011000036105 nicotine 21 mg/24 hours patch, 28 23247011000036107 nicotine 21 mg/24 hours patch 21432011000036100 nicotine +798321000168104 Abipra 10 mg uncoated tablet, 30, blister pack 173813 798311000168106 Abipra 10 mg uncoated tablet, 30 798301000168108 Abipra 10 mg uncoated tablet 798151000168109 Abipra 798151000168109 Abipra 28025011000036105 aripiprazole 10 mg tablet, 30 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +763761000168102 Oxycodone MR (Chemmart) 20 mg modified release tablet, 60, blister pack 214502 763751000168104 Oxycodone MR (Chemmart) 20 mg modified release tablet, 60 763641000168106 Oxycodone MR (Chemmart) 20 mg modified release tablet 762721000168101 Oxycodone MR (Chemmart) 762721000168101 Oxycodone MR (Chemmart) 35204011000036100 oxycodone hydrochloride 20 mg modified release tablet, 60 22971011000036106 oxycodone hydrochloride 20 mg modified release tablet 21259011000036105 oxycodone +961081000168103 Carduran 2 mg uncoated tablet, 30, blister pack 32637 961071000168101 Carduran 2 mg uncoated tablet, 30 960991000168105 Carduran 2 mg uncoated tablet 960961000168103 Carduran 960961000168103 Carduran 961061000168107 doxazosin 2 mg tablet, 30 960981000168107 doxazosin 2 mg tablet 960971000168109 doxazosin +19537011000036104 Amoxil 250 mg hard capsule, 20, blister pack 56550 12809011000036105 Amoxil 250 mg hard capsule, 20 6100011000036109 Amoxil 250 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +19537011000036104 Amoxil 250 mg hard capsule, 20, blister pack 273935 12809011000036105 Amoxil 250 mg hard capsule, 20 6100011000036109 Amoxil 250 mg hard capsule 3738011000036101 Amoxil 3738011000036101 Amoxil 28236011000036109 amoxicillin 250 mg capsule, 20 23550011000036101 amoxicillin 250 mg capsule 21415011000036100 amoxicillin +922261000168100 Cephalexin (AS) 500 mg capsule, 20, blister pack 148203 922251000168102 Cephalexin (AS) 500 mg capsule, 20 922241000168104 Cephalexin (AS) 500 mg capsule 922141000168107 Cephalexin (AS) 922141000168107 Cephalexin (AS) 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +84303011000036109 Vimpat 150 mg film-coated tablet, 56, blister pack 151814 83996011000036107 Vimpat 150 mg film-coated tablet, 56 83630011000036101 Vimpat 150 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84631011000036105 lacosamide 150 mg tablet, 56 84430011000036100 lacosamide 150 mg tablet 84408011000036109 lacosamide +84303011000036109 Vimpat 150 mg film-coated tablet, 56, blister pack 196451 83996011000036107 Vimpat 150 mg film-coated tablet, 56 83630011000036101 Vimpat 150 mg film-coated tablet 83598011000036103 Vimpat 83598011000036103 Vimpat 84631011000036105 lacosamide 150 mg tablet, 56 84430011000036100 lacosamide 150 mg tablet 84408011000036109 lacosamide +18312011000036109 Voltaren 50 mg enteric tablet, 50, bottle 11073 11417011000036106 Voltaren 50 mg enteric tablet, 50 5542011000036109 Voltaren 50 mg enteric tablet 28551000168108 Voltaren 28551000168108 Voltaren 27885011000036108 diclofenac sodium 50 mg enteric tablet, 50 23212011000036103 diclofenac sodium 50 mg enteric tablet 21288011000036105 diclofenac +692551000168109 Desfax 100 mg modified release tablet, 14, bottle 218081 692501000168105 Desfax 100 mg modified release tablet, 14 692471000168104 Desfax 100 mg modified release tablet 692411000168107 Desfax 692411000168107 Desfax 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +20111011000036107 Qvar Autohaler 50 microgram/actuation breath activated inhalation, 200 actuations, metered dose aerosol can 71991 13336011000036103 Qvar Autohaler 50 microgram/actuation breath activated inhalation, 200 actuations 6621011000036106 Qvar Autohaler 50 microgram/actuation breath activated inhalation, actuation 30981000168105 Qvar Autohaler 30981000168105 Qvar Autohaler 76551000036103 beclometasone dipropionate 50 microgram/actuation breath activated inhalation, 200 actuations 76541000036101 beclometasone dipropionate 50 microgram/actuation breath activated inhalation, actuation 21435011000036108 beclometasone +12991000036109 Olanzapine (Chemmart) 5 mg film-coated tablet, 28, blister pack 159003 7081000036106 Olanzapine (Chemmart) 5 mg film-coated tablet, 28 1551000036101 Olanzapine (Chemmart) 5 mg film-coated tablet 23681000168105 Olanzapine (Chemmart) 23681000168105 Olanzapine (Chemmart) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +698971000168105 Coversyl 2.5 mg film-coated tablet, 30, bottle 101564 11217011000036107 Coversyl 2.5 mg film-coated tablet, 30 5612011000036107 Coversyl 2.5 mg film-coated tablet 2933011000036107 Coversyl 2933011000036107 Coversyl 26556011000036106 perindopril arginine 2.5 mg tablet, 30 21965011000036103 perindopril arginine 2.5 mg tablet 21362011000036102 perindopril +50284011000036103 Comfeel Plus Transparent (3530) 5 cm x 7 cm dressing, 10, carton 49398011000036106 Comfeel Plus Transparent (3530) 5 cm x 7 cm dressing, 10 48567011000036106 Comfeel Plus Transparent (3530) 5 cm x 7 cm dressing 48551000168105 Comfeel Plus Transparent (3530) 48551000168105 Comfeel Plus Transparent (3530) 51368011000036109 dressing hydrocolloid superficial wound light exudate 5 cm x 7 cm dressing, 10 50890011000036100 dressing hydrocolloid superficial wound light exudate 5 cm x 7 cm dressing 50714011000036106 dressing hydrocolloid superficial wound light exudate +759501000168100 Clozaril 100 mg uncoated tablet, 50, blister pack 50511 759491000168107 Clozaril 100 mg uncoated tablet, 50 7035011000036104 Clozaril 100 mg uncoated tablet 3089011000036103 Clozaril 3089011000036103 Clozaril 759481000168109 clozapine 100 mg tablet, 50 23445011000036103 clozapine 100 mg tablet 21222011000036104 clozapine +1050511000168107 Bupannus 20 microgram/hour patch, 1, sachet 234725 1050501000168109 Bupannus 20 microgram/hour patch, 1 1050491000168102 Bupannus 20 microgram/hour patch 1049721000168101 Bupannus 1049721000168101 Bupannus 1046541000168107 buprenorphine 20 microgram/hour patch, 1 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +868971000168103 Simipex XR 3 mg modified release tablet, 10, blister pack 225605 868961000168109 Simipex XR 3 mg modified release tablet, 10 868951000168107 Simipex XR 3 mg modified release tablet 868691000168105 Simipex XR 868691000168105 Simipex XR 756621000168102 pramipexole dihydrochloride monohydrate 3 mg modified release tablet, 10 87761011000036101 pramipexole dihydrochloride monohydrate 3 mg modified release tablet 37716011000036100 pramipexole +21002011000036102 Cefaclor (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 96319 14148011000036109 Cefaclor (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 75 mL 7427011000036101 Cefaclor (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 5 mL 3764011000036104 Cefaclor (Terry White Chemists) 3764011000036104 Cefaclor (Terry White Chemists) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +21002011000036102 Cefaclor (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 75 mL, bottle 169119 14148011000036109 Cefaclor (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 75 mL 7427011000036101 Cefaclor (Terry White Chemists) 250 mg/5 mL powder for oral liquid, 5 mL 3764011000036104 Cefaclor (Terry White Chemists) 3764011000036104 Cefaclor (Terry White Chemists) 28176011000036109 cefaclor 250 mg/5 mL powder for oral liquid, 75 mL 23486011000036102 cefaclor 250 mg/5 mL powder for oral liquid 21661011000036101 cefaclor +1061231000168100 Atorvator 10 mg film-coated tablet, 100, bottle 179854 1061221000168103 Atorvator 10 mg film-coated tablet, 100 1061171000168108 Atorvator 10 mg film-coated tablet 1061161000168102 Atorvator 1061161000168102 Atorvator 890221000168105 atorvastatin 10 mg tablet, 100 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +920091000168104 Cilopam 40 mg film-coated tablet, 250, bottle 158867 920081000168102 Cilopam 40 mg film-coated tablet, 250 919911000168105 Cilopam 40 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933202861000036107 citalopram 40 mg tablet, 250 23422011000036109 citalopram 40 mg tablet 21441011000036107 citalopram +902811000168107 Candesartan (Actavis) 4 mg uncoated tablet, 30, blister pack 195463 902801000168109 Candesartan (Actavis) 4 mg uncoated tablet, 30 902791000168108 Candesartan (Actavis) 4 mg uncoated tablet 902781000168105 Candesartan (Actavis) 902781000168105 Candesartan (Actavis) 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +1097241000168102 Voltaren Emulgel No Mess Applicator (1 x 100 g gel, 1 x 50 g gel), 1 pack, tubes 282516 1097231000168106 Voltaren Emulgel No Mess Applicator (1 x 100 g gel, 1 x 50 g gel), 1 pack 1093181000168109 Voltaren Emulgel No Mess Applicator 1.16% gel 38181000168109 Voltaren Emulgel 38181000168109 Voltaren Emulgel 1097221000168108 diclofenac diethylamine 11.6 mg / 1 g gel [100 g] (&) diclofenac diethylamine 11.6 mg / 1 g gel [50 g], 1 pack 1036981000168106 diclofenac diethylamine 1.16% gel 21288011000036105 diclofenac +130681000036102 Adesan 4 mg uncoated tablet, 30, blister pack 171019 127691000036102 Adesan 4 mg uncoated tablet, 30 124731000036101 Adesan 4 mg uncoated tablet 3801000168107 Adesan 3801000168107 Adesan 27538011000036105 candesartan cilexetil 4 mg tablet, 30 22878011000036105 candesartan cilexetil 4 mg tablet 21501011000036105 candesartan +47291000036109 Peg-Intron Redipen Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92006 46851000036101 Peg-Intron Redipen Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46861000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +47291000036109 Peg-Intron Redipen Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack, dual chamber composite pack 92006 46851000036101 Peg-Intron Redipen Injector (4 x 80 microgram cartridges, 4 x 0.5 mL inert diluent cartridges), 1 pack 7294011000036104 Peg-Intron Redipen Injector (peginterferon alfa-2b 80 microgram) powder for injection, 80 microgram cartridge 6861000168100 Peg-Intron Redipen Injector 6861000168100 Peg-Intron Redipen Injector 46861000036103 peginterferon alfa-2b 80 microgram injection [4 x 80 microgram cartridges] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23389011000036102 peginterferon alfa-2b 80 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +61515011000036100 Diovan 40 mg film-coated tablet, 7, blister pack 93165 57440011000036105 Diovan 40 mg film-coated tablet, 7 54302011000036104 Diovan 40 mg film-coated tablet 53523011000036100 Diovan 53523011000036100 Diovan 63858011000036109 valsartan 40 mg tablet, 7 62091011000036102 valsartan 40 mg tablet 61720011000036101 valsartan +18569011000036102 Dipentum 250 mg capsule, 100, bottle 14466 12029011000036101 Dipentum 250 mg capsule, 100 5750011000036108 Dipentum 250 mg capsule 3924011000036100 Dipentum 3924011000036100 Dipentum 26863011000036108 olsalazine sodium 250 mg capsule, 100 22243011000036105 olsalazine sodium 250 mg capsule 21557011000036107 olsalazine +934481000168102 Centevo 175/43.75/200 mg film-coated tablet, 200, bottle 238858 934471000168100 Centevo 175/43.75/200 mg film-coated tablet, 200 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934461000168106 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 200 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +931463011000036102 Aspro Protect 100 mg enteric tablet, 60, blister pack 151084 930642011000036109 Aspro Protect 100 mg enteric tablet, 60 929986011000036103 Aspro Protect 100 mg enteric tablet 46331000168105 Aspro Protect 46331000168105 Aspro Protect 932382011000036101 aspirin 100 mg enteric tablet, 60 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +921958011000036104 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 150 mL vial 47074 921516011000036103 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 150 mL vial 921054011000036100 Isovue-370 755 mg (iodine 370 mg)/mL injection solution, 150 mL vial 35921000168104 Isovue-370 35921000168104 Isovue-370 922638011000036102 iopamidol 755 mg (iodine 370 mg)/mL injection, 150 mL vial 922126011000036100 iopamidol 755 mg (iodine 370 mg)/mL injection, 150 mL vial 77457011000036105 iopamidol +59913011000036102 Extra Strong Pain Relief (Terry White Chemists) tablet, 48, blister pack 117611 55875011000036106 Extra Strong Pain Relief (Terry White Chemists) tablet, 48 53607011000036106 Extra Strong Pain Relief (Terry White Chemists) tablet 53143011000036108 Extra Strong Pain Relief (Terry White Chemists) 53143011000036108 Extra Strong Pain Relief (Terry White Chemists) 52332011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 48 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +17798011000036104 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10722 11359011000036103 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 4774011000036108 Triquilar ED (levonorgestrel 75 microgram + ethinylestradiol 40 microgram) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22439011000036106 levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +17798011000036104 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10722 11359011000036103 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5303011000036109 Triquilar ED (levonorgestrel 50 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22438011000036103 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +17798011000036104 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10722 11359011000036103 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5236011000036103 Triquilar ED (inert substance) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +17798011000036104 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 10722 11359011000036103 Triquilar ED (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 5474011000036107 Triquilar ED (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 700017621000036105 Triquilar ED 700017621000036105 Triquilar ED 27070011000036109 levonorgestrel 50 microgram + ethinylestradiol 30 microgram tablet [6] (&) levonorgestrel 75 microgram + ethinylestradiol 40 microgram tablet [5] (&) levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet [10] (&) inert substance tablet [7], 4 x 28 22440011000036101 levonorgestrel 125 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +1063401000168109 Co-Codamol uncoated tablet, 24, blister pack 179692 1063391000168107 Co-Codamol uncoated tablet, 24 1063361000168100 Co-Codamol uncoated tablet 1063351000168102 Co-Codamol 1063351000168102 Co-Codamol 63851011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 24 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 21286011000036106 paracetamol + codeine +933230021000036100 Bisoprolol Fumarate (GH) 5 mg film-coated tablet, 28, blister pack 144895 933223821000036103 Bisoprolol Fumarate (GH) 5 mg film-coated tablet, 28 933219941000036108 Bisoprolol Fumarate (GH) 5 mg film-coated tablet 933219251000036101 Bisoprolol Fumarate (GH) 933219251000036101 Bisoprolol Fumarate (GH) 27958011000036101 bisoprolol fumarate 5 mg tablet, 28 23282011000036100 bisoprolol fumarate 5 mg tablet 21839011000036103 bisoprolol +789021000168106 Diabex XR 750 mg modified release tablet, 90, blister pack 142230 789011000168104 Diabex XR 750 mg modified release tablet, 90 788901000168108 Diabex XR 750 mg modified release tablet 31601000168101 Diabex XR 31601000168101 Diabex XR 789001000168102 metformin hydrochloride 750 mg modified release tablet, 90 788891000168109 metformin hydrochloride 750 mg modified release tablet 21614011000036102 metformin +799851000168109 Abyraz 20 mg uncoated tablet, 14, blister pack 159505 799841000168107 Abyraz 20 mg uncoated tablet, 14 799721000168107 Abyraz 20 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 799831000168103 aripiprazole 20 mg tablet, 14 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +60487011000036109 Nurofen for Children 1 to 5 Years strawberry 100 mg/5 mL oral liquid suspension, 100 mL, bottle 150238 56445011000036102 Nurofen for Children 1 to 5 Years strawberry 100 mg/5 mL oral liquid suspension, 100 mL 53921011000036107 Nurofen for Children 1 to 5 Years strawberry 100 mg/5 mL oral liquid suspension, 5 mL 34281000168109 Nurofen for Children 1 to 5 Years 34281000168109 Nurofen for Children 1 to 5 Years 63899011000036108 ibuprofen 100 mg/5 mL oral liquid, 100 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +60513011000036109 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 200 mL, bottle 151333 56471011000036103 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 200 mL 53932011000036103 Nurofen for Children 5 to 12 Years orange 100 mg/5 mL oral liquid suspension, 5 mL 6031000168103 Nurofen for Children 5 to 12 Years 6031000168103 Nurofen for Children 5 to 12 Years 63901011000036103 ibuprofen 100 mg/5 mL oral liquid, 200 mL 62099011000036103 ibuprofen 100 mg/5 mL oral liquid 21885011000036105 ibuprofen +1037441000168105 Rotarix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 116532 1037431000168101 Rotarix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 1037401000168108 Rotarix 1 million CCID50 units powder for oral liquid, 1 million CCID50 units vial 73722011000036105 Rotarix 73722011000036105 Rotarix 1037421000168104 rotavirus live vaccine powder for oral liquid [1 vial] (&) inert substance diluent [1 syringe], 1 pack 1037391000168106 rotavirus live vaccine powder for oral liquid, vial 822861000168108 rotavirus live vaccine +1037441000168105 Rotarix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 116532 1037431000168101 Rotarix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 1037411000168106 Rotarix (inert substance) diluent, syringe 73722011000036105 Rotarix 73722011000036105 Rotarix 1037421000168104 rotavirus live vaccine powder for oral liquid [1 vial] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +900631000168102 Amoxycillin (WT) 500 mg hard capsule, 30, blister pack 198127 900621000168100 Amoxycillin (WT) 500 mg hard capsule, 30 900591000168102 Amoxycillin (WT) 500 mg hard capsule 900511000168106 Amoxycillin (WT) 900511000168106 Amoxycillin (WT) 59081000036105 amoxicillin 500 mg capsule, 30 23551011000036108 amoxicillin 500 mg capsule 21415011000036100 amoxicillin +923772011000036100 Amoxycillin/Clavulanic Acid Duo 400/57 (Hexal) powder for oral liquid, 60 mL, bottle 147128 923290011000036104 Amoxycillin/Clavulanic Acid Duo 400/57 (Hexal) powder for oral liquid, 60 mL 922979011000036106 Amoxycillin/Clavulanic Acid Duo 400/57 (Hexal) powder for oral liquid, 5 mL 7841000168101 Amoxycillin/Clavulanic Acid Duo 400/57 (Hexal) 7841000168101 Amoxycillin/Clavulanic Acid Duo 400/57 (Hexal) 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +1003601000168105 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, blister pack 182817 1003591000168103 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60 1003581000168101 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet 1003571000168104 Levetiracetam 1000 (Pfizer) 1003571000168104 Levetiracetam 1000 (Pfizer) 27842011000036105 levetiracetam 1 g tablet, 60 23170011000036107 levetiracetam 1 g tablet 21766011000036102 levetiracetam +87636011000036109 Levetiracetam (Generic Health) 500 mg film-coated tablet, 60, blister pack 159048 87470011000036107 Levetiracetam (Generic Health) 500 mg film-coated tablet, 60 87330011000036101 Levetiracetam (Generic Health) 500 mg film-coated tablet 87283011000036108 Levetiracetam (Generic Health) 87283011000036108 Levetiracetam (Generic Health) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +935191000168105 Centevo 125/31.25/200 mg film-coated tablet, 100, bottle 238856 935181000168107 Centevo 125/31.25/200 mg film-coated tablet, 100 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 84652011000036103 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 100 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +926809011000036106 Cobasol 1 mg uncoated tablet, 30, bottle 170402 926205011000036101 Cobasol 1 mg uncoated tablet, 30 925674011000036109 Cobasol 1 mg uncoated tablet 925520011000036107 Cobasol 925520011000036107 Cobasol 27390011000036101 cabergoline 1 mg tablet, 30 22739011000036101 cabergoline 1 mg tablet 21526011000036105 cabergoline +797681000168107 Citalopram (A) 20 mg film-coated tablet, 7, blister pack 234595 797391000168103 Citalopram (A) 20 mg film-coated tablet, 7 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 33786011000036106 citalopram 20 mg tablet, 7 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +59951000036104 Risperidone (GH) 500 microgram film-coated tablet, 60, blister pack 191518 59111000036101 Risperidone (GH) 500 microgram film-coated tablet, 60 58401000036100 Risperidone (GH) 500 microgram film-coated tablet 58171000036100 Risperidone (GH) 58171000036100 Risperidone (GH) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +20848011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 92116 14011011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28074011000036105 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20848011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 92116 14011011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack 7293011000036101 Peg-Intron Redipen Injector (peginterferon alfa-2b 50 microgram) powder for injection, 50 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28074011000036105 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23388011000036105 peginterferon alfa-2b 50 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20848011000036103 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack, composite pack 92116 14011011000036101 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 112 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28074011000036105 peginterferon alfa-2b 50 microgram injection [4 x 50 microgram cartridges] (&) ribavirin 200 mg capsule [112 capsules] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +925357011000036109 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 250 mL, pump pack 172237 924893011000036103 Antimicrobial Hand Gel (Sunnywipes) 70% gel, 250 mL 924537011000036100 Antimicrobial Hand Gel (Sunnywipes) 70% gel 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 924392011000036107 Antimicrobial Hand Gel (Sunnywipes) 925447011000036104 ethanol 70% gel, 250 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +69114011000036103 Strepsils original flavour lozenge, 6, blister pack 14974 66915011000036105 Strepsils original flavour lozenge, 6 65227011000036108 Strepsils original flavour lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71525011000036107 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 6 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +73312011000036101 Jurnista 64 mg modified release tablet, 60, blister pack 141535 73110011000036106 Jurnista 64 mg modified release tablet, 60 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73508011000036104 hydromorphone hydrochloride 64 mg modified release tablet, 60 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +931688011000036107 Gastenz 20 mg enteric tablet, 7, blister pack 169322 930848011000036103 Gastenz 20 mg enteric tablet, 7 930069011000036100 Gastenz 20 mg enteric tablet 929908011000036100 Gastenz 929908011000036100 Gastenz 924214011000036106 pantoprazole 20 mg enteric tablet, 7 23020011000036102 pantoprazole 20 mg enteric tablet 21563011000036107 pantoprazole +774031000168103 Targin 15/7.5 mg modified release tablet, 20, blister pack 216261 774021000168101 Targin 15/7.5 mg modified release tablet, 20 774001000168105 Targin 15/7.5 mg modified release tablet 773981000168100 Targin 15/7.5 mg 773981000168100 Targin 15/7.5 mg 774011000168108 oxycodone hydrochloride 15 mg + naloxone hydrochloride 7.5 mg modified release tablet, 20 773991000168102 oxycodone hydrochloride 15 mg + naloxone hydrochloride 7.5 mg modified release tablet 923931011000036100 oxycodone + naloxone +801931000168108 Actonate EC Once-a-Week 35 mg enteric tablet, 12, blister pack 166840 801921000168105 Actonate EC Once-a-Week 35 mg enteric tablet, 12 801801000168106 Actonate EC Once-a-Week 35 mg enteric tablet 801791000168105 Actonate EC Once-a-Week 801791000168105 Actonate EC Once-a-Week 801911000168103 risedronate sodium 35 mg enteric tablet, 12 75551000036106 risedronate sodium 35 mg enteric tablet 21476011000036103 risedronate +700029731000036104 Microlut 30 microgram sugar coated tablet, 28, blister pack 11353011000036101 Microlut 30 microgram sugar coated tablet, 28 5704011000036105 Microlut 30 microgram sugar coated tablet 4235011000036103 Microlut 4235011000036103 Microlut 28356011000036100 levonorgestrel 30 microgram tablet, 28 23453011000036101 levonorgestrel 30 microgram tablet 21391011000036105 levonorgestrel +868371000168104 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 16847 868361000168105 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 868341000168106 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 27441000168109 Dianeal PD-4 with Glucose 2.5% Freeline 27441000168109 Dianeal PD-4 with Glucose 2.5% Freeline 868351000168108 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag 868331000168102 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride +18946011000036108 Myocrisin 50 mg/0.5 mL injection solution, 10 x 0.5 mL ampoules 27521 12254011000036106 Myocrisin 50 mg/0.5 mL injection solution, 10 x 0.5 mL ampoules 5251011000036107 Myocrisin 50 mg/0.5 mL injection solution, 0.5 mL ampoule 4337011000036104 Myocrisin 4337011000036104 Myocrisin 27018011000036104 sodium aurothiomalate 50 mg/0.5 mL injection, 10 x 0.5 mL ampoules 22391011000036106 sodium aurothiomalate 50 mg/0.5 mL injection, ampoule 21573011000036100 sodium aurothiomalate +1020321000168105 Aripiprazole (WT) 5 mg uncoated tablet, 30, blister pack 217198 1020311000168103 Aripiprazole (WT) 5 mg uncoated tablet, 30 1020301000168101 Aripiprazole (WT) 5 mg uncoated tablet 1019251000168106 Aripiprazole (WT) 1019251000168106 Aripiprazole (WT) 46873011000036104 aripiprazole 5 mg tablet, 30 45335011000036100 aripiprazole 5 mg tablet 21675011000036108 aripiprazole +37382011000036102 Rifadin 600 mg sugar coated tablet, 30, bottle 10112 36611011000036101 Rifadin 600 mg sugar coated tablet, 30 36045011000036104 Rifadin 600 mg sugar coated tablet 3470011000036108 Rifadin 3470011000036108 Rifadin 38532011000036101 rifampicin 600 mg tablet, 30 37818011000036104 rifampicin 600 mg tablet 21532011000036109 rifampicin +928771000168101 Uremide 40 mg uncoated tablet, 1000, bottle 17704 928761000168107 Uremide 40 mg uncoated tablet, 1000 5862011000036100 Uremide 40 mg uncoated tablet 3144011000036100 Uremide 3144011000036100 Uremide 928751000168105 furosemide (frusemide) 40 mg tablet, 1000 23106011000036104 furosemide (frusemide) 40 mg tablet 21329011000036103 furosemide (frusemide) +68737011000036105 Deep Heat Night Strength cream, 125 g, tube 12820 66712011000036105 Deep Heat Night Strength cream, 125 g 65459011000036101 Deep Heat Night Strength cream 48081000168107 Deep Heat Night Strength 48081000168107 Deep Heat Night Strength 71394011000036102 methyl salicylate 30% + menthol 8% cream, 125 g 70166011000036109 methyl salicylate 30% + menthol 8% cream 69751011000036100 methyl salicylate + menthol +20839011000036105 Myfortic 360 mg enteric tablet, 120, blister pack 91940 14002011000036109 Myfortic 360 mg enteric tablet, 120 7283011000036100 Myfortic 360 mg enteric tablet 4117011000036103 Myfortic 4117011000036103 Myfortic 28065011000036100 mycophenolate 360 mg enteric tablet, 120 23379011000036108 mycophenolate 360 mg enteric tablet 21266011000036109 mycophenolate +960461000168107 Paracetamol IV (Apo) 500 mg/50 mL injection solution, 12 x 50 mL vials 221751 960451000168105 Paracetamol IV (Apo) 500 mg/50 mL injection solution, 12 x 50 mL vials 960441000168108 Paracetamol IV (Apo) 500 mg/50 mL injection solution, 50 mL vial 959751000168102 Paracetamol IV (Apo) 959751000168102 Paracetamol IV (Apo) 47034011000036104 paracetamol 500 mg/50 mL injection, 12 x 50 mL vials 45383011000036109 paracetamol 500 mg/50 mL injection, vial 21433011000036107 paracetamol +1029501000168103 Batrafen Nail Lacquer 8% application, 3.3 mL, bottle 90789 1029491000168105 Batrafen Nail Lacquer 8% application, 3.3 mL 1029471000168109 Batrafen Nail Lacquer 8% application 1029461000168103 Batrafen Nail Lacquer 1029461000168103 Batrafen Nail Lacquer 1029481000168107 ciclopirox 8% application, 3.3 mL 137381000036109 ciclopirox 8% application 21759011000036101 ciclopirox +843151000168109 Utrogestan 200 mg shell pessary, 7, blister pack 232824 843141000168107 Utrogestan 200 mg shell pessary, 7 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843131000168103 progesterone 200 mg pessary, 7 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +1110331000168106 Nicotinell Ice Mint 4 mg chewing gum, 96, blister pack 279616 1110321000168108 Nicotinell Ice Mint 4 mg chewing gum, 96 1110251000168105 Nicotinell Ice Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 63640011000036100 nicotine 4 mg gum, 96 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +920251000168101 Citalopram (APL) 10 mg film-coated tablet, 30, bottle 184686 920241000168103 Citalopram (APL) 10 mg film-coated tablet, 30 920151000168108 Citalopram (APL) 10 mg film-coated tablet 920141000168106 Citalopram (APL) 920141000168106 Citalopram (APL) 933201971000036100 citalopram 10 mg tablet, 30 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +858141000168104 Emexlon 10 mg film-coated tablet, 50, blister pack 229659 858131000168108 Emexlon 10 mg film-coated tablet, 50 858041000168103 Emexlon 10 mg film-coated tablet 858031000168107 Emexlon 858031000168107 Emexlon 671911000168100 metoclopramide hydrochloride 10 mg tablet, 50 22319011000036109 metoclopramide hydrochloride 10 mg tablet 21569011000036105 metoclopramide +1061071000168107 Olanzapine ODT (Auro) 15 mg orally disintegrating tablet, 7, blister pack 212900 1061061000168101 Olanzapine ODT (Auro) 15 mg orally disintegrating tablet, 7 1061041000168100 Olanzapine ODT (Auro) 15 mg orally disintegrating tablet 1060981000168101 Olanzapine ODT (Auro) 1060981000168101 Olanzapine ODT (Auro) 1061051000168103 olanzapine 15 mg orally disintegrating tablet, 7 68711000036102 olanzapine 15 mg orally disintegrating tablet 21485011000036103 olanzapine +32559011000036100 Mirtazapine (GenRx) 30 mg film-coated tablet, 30, blister pack 127680 32350011000036108 Mirtazapine (GenRx) 30 mg film-coated tablet, 30 32227011000036102 Mirtazapine (GenRx) 30 mg film-coated tablet 32202011000036106 Mirtazapine (GenRx) 32202011000036106 Mirtazapine (GenRx) 28215011000036105 mirtazapine 30 mg tablet, 30 23528011000036103 mirtazapine 30 mg tablet 21463011000036102 mirtazapine +933247151000036107 Tevagrastim 300 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 163675 933243531000036100 Tevagrastim 300 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 933241521000036103 Tevagrastim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 933240801000036104 Tevagrastim 933240801000036104 Tevagrastim 929229011000036101 filgrastim 300 microgram/0.5 mL injection, 10 x 0.5 mL syringes 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +32927011000036103 Tritace 10 mg hard capsule, 30, blister pack 75202 32917011000036107 Tritace 10 mg hard capsule, 30 33091011000036100 Tritace 10 mg hard capsule 4384011000036103 Tritace 4384011000036103 Tritace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +32927011000036103 Tritace 10 mg hard capsule, 30, blister pack 77339 32917011000036107 Tritace 10 mg hard capsule, 30 33091011000036100 Tritace 10 mg hard capsule 4384011000036103 Tritace 4384011000036103 Tritace 27886011000036101 ramipril 10 mg capsule, 30 23412011000036104 ramipril 10 mg capsule 21395011000036107 ramipril +776211000168108 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 25 mL, bottle 231998 776201000168105 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 25 mL 776191000168107 Dimetapp Allergic Rhinitis Colour Free oral liquid solution, 5 mL 774561000168102 Dimetapp Allergic Rhinitis 774561000168102 Dimetapp Allergic Rhinitis 63603011000036103 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid, 25 mL 62025011000036107 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL oral liquid 61726011000036103 brompheniramine + phenylephrine +923755011000036105 Novicrit 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 147849 923308011000036105 Novicrit 3000 units/0.3 mL injection solution, 6 x 0.3 mL syringes 922993011000036104 Novicrit 3000 units/0.3 mL injection solution, 0.3 mL syringe 922917011000036109 Novicrit 922917011000036109 Novicrit 924127011000036106 epoetin lambda 3000 units/0.3 mL injection, 6 x 0.3 mL syringes 923953011000036100 epoetin lambda 3000 units/0.3 mL injection, syringe 923930011000036107 epoetin lambda +61044011000036107 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 12, blister pack 67365 56987011000036101 Period Pain Relief (Pharmacist) 275 mg film-coated tablet, 12 54148011000036100 Period Pain Relief (Pharmacist) 275 mg film-coated tablet 53313011000036106 Period Pain Relief (Pharmacist) 53313011000036106 Period Pain Relief (Pharmacist) 63896011000036104 naproxen sodium 275 mg tablet, 12 62098011000036106 naproxen sodium 275 mg tablet 21304011000036105 naproxen +12811000036107 Olanzapine ODT (Apo) 5 mg orally disintegrating tablet, 28, bottle 158989 7021000036105 Olanzapine ODT (Apo) 5 mg orally disintegrating tablet, 28 1401000036101 Olanzapine ODT (Apo) 5 mg orally disintegrating tablet 14491000168103 Olanzapine ODT (Apo) 14491000168103 Olanzapine ODT (Apo) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +840981000168108 Bansep 80 mg film-coated tablet, 6, blister pack 173492 840971000168105 Bansep 80 mg film-coated tablet, 6 840951000168101 Bansep 80 mg film-coated tablet 840941000168103 Bansep 840941000168103 Bansep 840961000168104 atorvastatin 80 mg tablet, 6 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +703381000168106 Anzemet 100 mg/5 mL injection solution, 5 mL ampoule 55063 703371000168108 Anzemet 100 mg/5 mL injection solution, 5 mL ampoule 6058011000036105 Anzemet 100 mg/5 mL injection solution, 5 mL ampoule 4210011000036102 Anzemet 4210011000036102 Anzemet 703361000168102 dolasetron mesilate monohydrate 100 mg/5 mL injection, 5 mL ampoule 22694011000036102 dolasetron mesilate monohydrate 100 mg/5 mL injection, ampoule 21471011000036108 dolasetron +791191000168109 Trexject 15 mg/0.3 mL injection solution, 4 x 0.3 mL syringes 233717 791181000168106 Trexject 15 mg/0.3 mL injection solution, 4 x 0.3 mL syringes 791131000168105 Trexject 15 mg/0.3 mL injection solution, 0.3 mL syringe 791111000168100 Trexject 791111000168100 Trexject 791171000168108 methotrexate 15 mg/0.3 mL injection, 4 x 0.3 mL syringes 791121000168107 methotrexate 15 mg/0.3 mL injection, syringe 21342011000036105 methotrexate +780481000168106 Fentanyl (Apo) 12 microgram/hour patch, 1, sachet 152577 780471000168108 Fentanyl (Apo) 12 microgram/hour patch, 1 780461000168102 Fentanyl (Apo) 12 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236021000036103 fentanyl 12 microgram/hour patch, 1 22081011000036108 fentanyl 12 microgram/hour patch 21258011000036102 fentanyl +77347011000036100 Biliscopin 10.5 g (iodine 5 g)/100 mL intravenous infusion injection, 10 x 100 mL bottles 52765 76763011000036100 Biliscopin 10.5 g (iodine 5 g)/100 mL intravenous infusion injection, 10 x 100 mL bottles 76171011000036101 Biliscopin 10.5 g (iodine 5 g)/100 mL intravenous infusion injection, 100 mL bottle 75939011000036104 Biliscopin 75939011000036104 Biliscopin 78270011000036101 iotroxate meglumine 10.5 g (iodine 5 g)/100 mL injection, 10 x 100 mL bottles 77588011000036107 iotroxate meglumine 10.5 g (iodine 5 g)/100 mL injection, bottle 77474011000036101 iotroxic acid +1098041000168105 Valaciclovir (Auro) 500 mg film-coated tablet, 10, blister pack 173282 1098031000168101 Valaciclovir (Auro) 500 mg film-coated tablet, 10 1098001000168108 Valaciclovir (Auro) 500 mg film-coated tablet 1097991000168104 Valaciclovir (Auro) 1097991000168104 Valaciclovir (Auro) 27731011000036102 valaciclovir 500 mg tablet, 10 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +933215171000036101 Ondron ODT 4 mg orally disintegrating tablet, 4, blister pack 163653 933204701000036105 Ondron ODT 4 mg orally disintegrating tablet, 4 933195651000036100 Ondron ODT 4 mg orally disintegrating tablet 10891000168108 Ondron ODT 10891000168108 Ondron ODT 69121000036101 ondansetron 4 mg orally disintegrating tablet, 4 69091000036102 ondansetron 4 mg orally disintegrating tablet 21545011000036100 ondansetron +931446011000036102 Fexofenadine Hydrochloride (Pharmacor) 180 mg film-coated tablet, 10, blister pack 144692 930625011000036104 Fexofenadine Hydrochloride (Pharmacor) 180 mg film-coated tablet, 10 929978011000036109 Fexofenadine Hydrochloride (Pharmacor) 180 mg film-coated tablet 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 929836011000036103 Fexofenadine Hydrochloride (Pharmacor) 63645011000036109 fexofenadine hydrochloride 180 mg tablet, 10 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +52734011000036106 Pristiq 100 mg modified release tablet, 14, blister pack 133527 52546011000036100 Pristiq 100 mg modified release tablet, 14 52411011000036105 Pristiq 100 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52877011000036104 desvenlafaxine 100 mg modified release tablet, 14 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +60410011000036105 Nurofen Regular 200 mg sugar coated tablet, 96, blister pack 144202 56369011000036104 Nurofen Regular 200 mg sugar coated tablet, 96 53890011000036101 Nurofen Regular 200 mg sugar coated tablet 14821000168103 Nurofen Regular 14821000168103 Nurofen Regular 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +935281000168100 Centevo 125/31.25/200 mg film-coated tablet, 175, bottle 238856 935271000168103 Centevo 125/31.25/200 mg film-coated tablet, 175 934981000168106 Centevo 125/31.25/200 mg film-coated tablet 934971000168108 Centevo 125/31.25/200 mg 934971000168108 Centevo 125/31.25/200 mg 935261000168109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet, 175 84435011000036109 levodopa 125 mg + carbidopa 31.25 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +920793011000036104 Gabapentin (GA) 300 mg hard capsule, 100, blister pack 81811 920472011000036107 Gabapentin (GA) 300 mg hard capsule, 100 920204011000036107 Gabapentin (GA) 300 mg hard capsule 920074011000036108 Gabapentin (GA) 920074011000036108 Gabapentin (GA) 27968011000036107 gabapentin 300 mg capsule, 100 23292011000036104 gabapentin 300 mg capsule 21444011000036105 gabapentin +703961000168103 Parbezol 20 mg enteric tablet, 90, bottle 216110 703951000168100 Parbezol 20 mg enteric tablet, 90 703941000168102 Parbezol 20 mg enteric tablet 703931000168106 Parbezol 703931000168106 Parbezol 84651000036100 rabeprazole sodium 20 mg enteric tablet, 90 23127011000036107 rabeprazole sodium 20 mg enteric tablet 21296011000036107 rabeprazole +1027311000168104 Neuroccord 75 mg hard capsule, 200, bottle 235854 1027301000168102 Neuroccord 75 mg hard capsule, 200 1027191000168106 Neuroccord 75 mg hard capsule 1025661000168103 Neuroccord 1025661000168103 Neuroccord 971481000168101 pregabalin 75 mg capsule, 200 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1058971000168108 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 500, bottle 234520 1058961000168102 Rosuvastatin (Pharmacor) 10 mg film-coated tablet, 500 1058861000168109 Rosuvastatin (Pharmacor) 10 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 928471000168107 rosuvastatin 10 mg tablet, 500 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +1025301000168109 Gapentin 400 mg capsule, 100, blister pack 107498 1025291000168108 Gapentin 400 mg capsule, 100 1025281000168105 Gapentin 400 mg capsule 842011000168102 Gapentin 842011000168102 Gapentin 27969011000036104 gabapentin 400 mg capsule, 100 23293011000036106 gabapentin 400 mg capsule 21444011000036105 gabapentin +33501011000036101 Arava Combination Pack (3 x 100 mg tablets, 30 x 20 mg tablets), 33 tablets, composite pack 33237011000036107 Arava Combination Pack (3 x 100 mg tablets, 30 x 20 mg tablets), 33 tablets 40227011000036109 Arava 100 mg film-coated tablet, 1 tablet 701581000168103 Arava Combination Pack 3730011000036103 Arava 33770011000036102 leflunomide 100 mg tablet [3] (&) leflunomide 20 mg tablet [30], 33 33651011000036103 leflunomide 100 mg tablet 21504011000036108 leflunomide +33501011000036101 Arava Combination Pack (3 x 100 mg tablets, 30 x 20 mg tablets), 33 tablets, composite pack 33237011000036107 Arava Combination Pack (3 x 100 mg tablets, 30 x 20 mg tablets), 33 tablets 6567011000036102 Arava 20 mg film-coated tablet, 1 tablet 701581000168103 Arava Combination Pack 3730011000036103 Arava 33770011000036102 leflunomide 100 mg tablet [3] (&) leflunomide 20 mg tablet [30], 33 23404011000036106 leflunomide 20 mg tablet 21504011000036108 leflunomide +921911011000036100 Exforge HCT 10/320/25 film-coated tablet, 7, blister pack 158168 921470011000036102 Exforge HCT 10/320/25 film-coated tablet, 7 921019011000036105 Exforge HCT 10/320/25 film-coated tablet 21211000168103 Exforge HCT 10/320/25 21211000168103 Exforge HCT 10/320/25 922598011000036101 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet, 7 922097011000036100 amlodipine 10 mg + valsartan 320 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +776851000168108 Iopidine 0.5% eye drops solution, 5 mL, bottle 51190 776841000168106 Iopidine 0.5% eye drops solution, 5 mL 5464011000036101 Iopidine 0.5% eye drops solution 3165011000036109 Iopidine 3165011000036109 Iopidine 776831000168102 apraclonidine 0.5% eye drops, 5 mL 22604011000036100 apraclonidine 0.5% eye drops 21648011000036101 apraclonidine +891901000168104 Betastine 16 mg uncoated tablet, 25, blister pack 212078 891891000168103 Betastine 16 mg uncoated tablet, 25 891861000168105 Betastine 16 mg uncoated tablet 891851000168108 Betastine 891851000168108 Betastine 46541011000036102 betahistine dihydrochloride 16 mg tablet, 25 45210011000036107 betahistine dihydrochloride 16 mg tablet 44972011000036109 betahistine +32533011000036102 Vancomycin (Sandoz) 500 mg powder for injection, 1 vial 100021 32326011000036107 Vancomycin (Sandoz) 500 mg powder for injection, 1 vial 32206011000036105 Vancomycin (Sandoz) 500 mg powder for injection, 500 mg vial 32195011000036103 Vancomycin (Sandoz) 32195011000036103 Vancomycin (Sandoz) 27499011000036100 vancomycin 500 mg injection, 1 vial 22842011000036108 vancomycin 500 mg injection, vial 21381011000036106 vancomycin +1033251000168102 Aten 100 mg film-coated tablet, 98, blister pack 197718 1033241000168104 Aten 100 mg film-coated tablet, 98 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1033231000168108 atenolol 100 mg tablet, 98 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +857501000168106 Beconase Aq 50 microgram/actuation nasal spray, 2 x 200 actuations, pump packs 12483 857491000168104 Beconase Aq 50 microgram/actuation nasal spray, 2 x 200 actuations 857391000168108 Beconase Aq 50 microgram/actuation nasal spray, actuation 857381000168105 Beconase Aq 857381000168105 Beconase Aq 857481000168102 beclometasone dipropionate 50 microgram/actuation nasal spray, 2 x 200 actuations 75087011000036107 beclometasone dipropionate 50 microgram/actuation nasal spray, actuation 21435011000036108 beclometasone +69431011000036106 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 48490 67231011000036104 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 65567011000036107 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) intravenous infusion injection, 1 L bag 21891000168108 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) 21891000168108 Compound Sodium Lactate (Hartmann's) and Glucose 5% (Baxter) 71781011000036100 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) + glucose 5% (50 g/L) injection, 1 L bag 70183011000036100 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) + glucose 5% (50 g/L) injection, bag 861201000168108 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose +931371011000036103 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 105 mL, bottle 10908 930551011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid, 105 mL 929926011000036109 Eucalyptus Oil (Bosisto's) 1 mL/mL multi-purpose liquid 929899011000036104 Eucalyptus Oil (Bosisto's) 929899011000036104 Eucalyptus Oil (Bosisto's) 932338011000036105 eucalyptus oil 1 mL/mL liquid, 105 mL 927003011000036108 eucalyptus oil 1 mL/mL liquid 73351011000036104 eucalyptus oil +38441000036101 Escilupin 10 mg film-coated tablet, 100, bottle 165851 34771000036106 Escilupin 10 mg film-coated tablet, 100 33161000036101 Escilupin 10 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 78188011000036107 escitalopram 10 mg tablet, 100 23385011000036104 escitalopram 10 mg tablet 21534011000036100 escitalopram +789641000168107 Oxycodone (HX) 80 mg modified release tablet, 28, bottle 153596 789631000168103 Oxycodone (HX) 80 mg modified release tablet, 28 789601000168105 Oxycodone (HX) 80 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 929275011000036104 oxycodone hydrochloride 80 mg modified release tablet, 28 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +19066011000036106 Eleuphrat 0.05% ointment, 15 g, tube 41862 12374011000036102 Eleuphrat 0.05% ointment, 15 g 4917011000036100 Eleuphrat 0.05% ointment 3233011000036101 Eleuphrat 3233011000036101 Eleuphrat 27083011000036106 betamethasone (as dipropionate) 0.05% ointment, 15 g 22452011000036100 betamethasone (as dipropionate) 0.05% ointment 21372011000036109 betamethasone dipropionate +19066011000036106 Eleuphrat 0.05% ointment, 15 g, tube 144099 12374011000036102 Eleuphrat 0.05% ointment, 15 g 4917011000036100 Eleuphrat 0.05% ointment 3233011000036101 Eleuphrat 3233011000036101 Eleuphrat 27083011000036106 betamethasone (as dipropionate) 0.05% ointment, 15 g 22452011000036100 betamethasone (as dipropionate) 0.05% ointment 21372011000036109 betamethasone dipropionate +74820011000036106 Sebifin 250 mg uncoated tablet, 42, blister pack 149996 74307011000036104 Sebifin 250 mg uncoated tablet, 42 73788011000036104 Sebifin 250 mg uncoated tablet 73688011000036105 Sebifin 73688011000036105 Sebifin 28203011000036107 terbinafine 250 mg tablet, 42 23515011000036103 terbinafine 250 mg tablet 21575011000036104 terbinafine +79720011000036109 Cafergot sugar coated tablet, 2, bottle 62251 79531011000036104 Cafergot sugar coated tablet, 2 79400011000036107 Cafergot sugar coated tablet 45141000168107 Cafergot 45141000168107 Cafergot 79837011000036106 ergotamine tartrate 1 mg + caffeine 100 mg tablet, 2 79756011000036106 ergotamine tartrate 1 mg + caffeine 100 mg tablet 37729011000036104 ergotamine + caffeine +832321000168108 Comvax injection suspension, 0.5 mL vial 70943 832311000168101 Comvax injection suspension, 0.5 mL vial 832291000168100 Comvax injection suspension, 0.5 mL vial 73724011000036101 Comvax 73724011000036101 Comvax 832301000168104 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial 832281000168103 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial 832271000168101 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine +18466011000036104 Simvastatin (Genepharm) 20 mg film-coated tablet, 30, blister pack 115408 11488011000036105 Simvastatin (Genepharm) 20 mg film-coated tablet, 30 4614011000036105 Simvastatin (Genepharm) 20 mg film-coated tablet 2992011000036107 Simvastatin (Genepharm) 2992011000036107 Simvastatin (Genepharm) 28212011000036102 simvastatin 20 mg tablet, 30 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +776691000168102 Mometasone (Terry White Chemists) 50 microgram/actuation nasal spray, 65 actuations, pump pack 184658 776681000168100 Mometasone (Terry White Chemists) 50 microgram/actuation nasal spray, 65 actuations 776671000168103 Mometasone (Terry White Chemists) 50 microgram/actuation nasal spray, actuation 776661000168109 Mometasone (Terry White Chemists) 776661000168109 Mometasone (Terry White Chemists) 46750011000036107 mometasone furoate 50 microgram/actuation nasal spray, 65 actuations 45298011000036108 mometasone furoate 50 microgram/actuation nasal spray, actuation 21409011000036100 mometasone +38761000036108 Escitalupin 15 mg film-coated tablet, 28, blister pack 165870 35131000036106 Escitalupin 15 mg film-coated tablet, 28 33051000036100 Escitalupin 15 mg film-coated tablet 32231000036107 Escitalupin 32231000036107 Escitalupin 34941000036102 escitalopram 15 mg tablet, 28 32391000036104 escitalopram 15 mg tablet 21534011000036100 escitalopram +20094011000036104 Exelon 1.5 mg hard capsule, 56, blister pack 71445 13321011000036106 Exelon 1.5 mg hard capsule, 56 6607011000036109 Exelon 1.5 mg hard capsule 4601000168108 Exelon 4601000168108 Exelon 27691011000036102 rivastigmine 1.5 mg capsule, 56 23028011000036100 rivastigmine 1.5 mg capsule 21413011000036101 rivastigmine +789661000168106 Oxycodone (HX) 80 mg modified release tablet, 60, bottle 153596 789651000168109 Oxycodone (HX) 80 mg modified release tablet, 60 789601000168105 Oxycodone (HX) 80 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 35206011000036108 oxycodone hydrochloride 80 mg modified release tablet, 60 22973011000036107 oxycodone hydrochloride 80 mg modified release tablet 21259011000036105 oxycodone +81631000036105 Xarelto 20 mg film-coated tablet, 28, blister pack 181186 80471000036100 Xarelto 20 mg film-coated tablet, 28 78901000036109 Xarelto 20 mg film-coated tablet 78591011000036107 Xarelto 78591011000036107 Xarelto 80481000036103 rivaroxaban 20 mg tablet, 28 78911000036106 rivaroxaban 20 mg tablet 79098011000036103 rivaroxaban +1110811000168108 Midazolam (WP) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 207230 1110801000168105 Midazolam (WP) 50 mg/10 mL injection solution, 10 x 10 mL ampoules 1110751000168104 Midazolam (WP) 50 mg/10 mL injection solution, 10 mL ampoule 1108251000168109 Midazolam (WP) 1108251000168109 Midazolam (WP) 46760011000036100 midazolam 50 mg/10 mL injection, 10 x 10 mL ampoules 45303011000036105 midazolam 50 mg/10 mL injection, ampoule 37721011000036103 midazolam +691181000168101 Amitriptyline Hydrochloride (Apo) 25 mg film-coated tablet, 50, blister pack 215380 691171000168104 Amitriptyline Hydrochloride (Apo) 25 mg film-coated tablet, 50 691161000168105 Amitriptyline Hydrochloride (Apo) 25 mg film-coated tablet 691091000168104 Amitriptyline Hydrochloride (Apo) 691091000168104 Amitriptyline Hydrochloride (Apo) 27441011000036105 amitriptyline hydrochloride 25 mg tablet, 50 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +977621000168109 Aripiprazole (AN) 2 mg uncoated tablet, 60, blister pack 198202 977611000168102 Aripiprazole (AN) 2 mg uncoated tablet, 60 977531000168108 Aripiprazole (AN) 2 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 801701000168104 aripiprazole 2 mg tablet, 60 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +956741000168108 Antizol 1.5 g/1.5 mL injection solution, 1.5 mL vial 263913 956731000168104 Antizol 1.5 g/1.5 mL injection solution, 1.5 mL vial 956711000168109 Antizol 1.5 g/1.5 mL injection solution, 1.5 mL vial 956661000168104 Antizol 956661000168104 Antizol 956721000168102 fomepizole 1.5 g/1.5 mL injection, 1.5 mL vial 956701000168106 fomepizole 1.5 g/1.5 mL injection, vial 956691000168106 fomepizole +60700011000036100 Dimetapp PE Sinus Cold uncoated tablet, 10, blister pack 43458 56658011000036107 Dimetapp PE Sinus Cold uncoated tablet, 10 54024011000036103 Dimetapp PE Sinus Cold uncoated tablet 53502011000036100 Dimetapp PE Sinus Cold 53502011000036100 Dimetapp PE Sinus Cold 63490011000036105 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet, 10 61992011000036100 brompheniramine maleate 4 mg + phenylephrine hydrochloride 10 mg tablet 61726011000036103 brompheniramine + phenylephrine +968551000168108 Aranesp 500 microgram/mL injection solution, 1 mL syringe 91948 968541000168106 Aranesp 500 microgram/mL injection solution, 1 mL syringe 968521000168100 Aranesp 500 microgram/mL injection solution, syringe 6471000168109 Aranesp 6471000168109 Aranesp 968531000168102 darbepoetin alfa 500 microgram/mL injection, 1 mL syringe 968511000168107 darbepoetin alfa 500 microgram/mL injection, syringe 21234011000036105 darbepoetin alfa +82357011000036101 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 144632 82148011000036108 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 82018011000036109 Sodium Chloride (Fresenius Kabi) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 2361000168107 Sodium Chloride (Fresenius Kabi) 2361000168107 Sodium Chloride (Fresenius Kabi) 82538011000036103 sodium chloride 0.9% (2.25 g/250 mL) injection, 30 x 250 mL bags 70187011000036109 sodium chloride 0.9% (2.25 g/250 mL) injection, bag 21308011000036103 sodium chloride +38931000036104 Escilupin 20 mg film-coated tablet, 30, bottle 165883 35301000036102 Escilupin 20 mg film-coated tablet, 30 33151000036104 Escilupin 20 mg film-coated tablet 32331000036100 Escilupin 32331000036100 Escilupin 78191011000036104 escitalopram 20 mg tablet, 30 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +52784011000036104 Vaxigrip 2009 injection solution, 10 x 0.5 mL syringes 80198 52594011000036101 Vaxigrip 2009 injection solution, 10 x 0.5 mL syringes 52435011000036104 Vaxigrip 2009 injection solution, 0.5 mL syringe 6241000168103 Vaxigrip 2009 6241000168103 Vaxigrip 2009 52902011000036100 influenza trivalent adult vaccine 2009 injection, 10 x 0.5 mL syringes 52813011000036100 influenza trivalent adult vaccine 2009 injection, 0.5 mL syringe 52797011000036106 influenza trivalent vaccine 2009 +926781000168102 Nitro-Dur 10 mg/24 hours patch, 5, sachet 50561 926771000168100 Nitro-Dur 10 mg/24 hours patch, 5 5119011000036103 Nitro-Dur 10 mg/24 hours patch 4271011000036103 Nitro-Dur 4271011000036103 Nitro-Dur 926751000168109 glyceryl trinitrate 10 mg/24 hours patch, 5 22624011000036106 glyceryl trinitrate 10 mg/24 hours patch 21388011000036102 glyceryl trinitrate +797521000168109 Citalopram (A) 20 mg film-coated tablet, 250, bottle 158882 797511000168102 Citalopram (A) 20 mg film-coated tablet, 250 797381000168101 Citalopram (A) 20 mg film-coated tablet 797371000168104 Citalopram (A) 797371000168104 Citalopram (A) 46709011000036105 citalopram 20 mg tablet, 250 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +77356011000036101 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 5, blister pack 58928 76772011000036100 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet, 5 76173011000036100 Andrews Tums Antacid Mixed Fruit 500 mg chewable tablet 2531000168109 Andrews Tums Antacid 2531000168109 Andrews Tums Antacid 78277011000036100 calcium carbonate 500 mg chewable tablet, 5 77601011000036105 calcium carbonate 500 mg chewable tablet 21311011000036109 calcium carbonate +69705011000036108 Claramax 5 mg film-coated tablet, 14, blister pack 91115 67504011000036103 Claramax 5 mg film-coated tablet, 14 65685011000036109 Claramax 5 mg film-coated tablet 65187011000036103 Claramax 65187011000036103 Claramax 72019011000036100 desloratadine 5 mg tablet, 14 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +697691000168102 Dilart HCT 80/12.5 mg film-coated tablet, 28, blister pack 187397 697681000168100 Dilart HCT 80/12.5 mg film-coated tablet, 28 697671000168103 Dilart HCT 80/12.5 mg film-coated tablet 697661000168109 Dilart HCT 80/12.5 mg 697661000168109 Dilart HCT 80/12.5 mg 46957011000036104 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 45358011000036107 valsartan 80 mg + hydrochlorothiazide 12.5 mg tablet 44853011000036106 valsartan + hydrochlorothiazide +50465011000036101 PKU Gel Orange powder for oral liquid, 30 x 20 g sachets 49523011000036108 PKU Gel Orange powder for oral liquid, 30 x 20 g sachets 242591000168107 PKU Gel Orange powder for oral liquid, 20 g sachet 1281000168104 PKU Gel 1281000168104 PKU Gel 51470011000036107 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 20 g sachets 242351000168109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 20 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +840341000168102 Prometrium 100 mg soft capsule, 28, blister pack 232818 840331000168106 Prometrium 100 mg soft capsule, 28 840251000168105 Prometrium 100 mg soft capsule 840231000168104 Prometrium 840231000168104 Prometrium 840321000168108 progesterone 100 mg capsule, 28 840241000168108 progesterone 100 mg capsule 21412011000036108 progesterone +969921000168104 Aripiprazole (AN) 10 mg uncoated tablet, 100, bottle 198192 969911000168106 Aripiprazole (AN) 10 mg uncoated tablet, 100 969291000168108 Aripiprazole (AN) 10 mg uncoated tablet 969191000168100 Aripiprazole (AN) 969191000168100 Aripiprazole (AN) 787471000168107 aripiprazole 10 mg tablet, 100 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +933247471000036106 Trajenta 5 mg film-coated tablet, 30, blister pack 175499 933244321000036105 Trajenta 5 mg film-coated tablet, 30 933241801000036106 Trajenta 5 mg film-coated tablet 933240761000036105 Trajenta 933240761000036105 Trajenta 933244331000036107 linagliptin 5 mg tablet, 30 933241811000036108 linagliptin 5 mg tablet 933247651000036103 linagliptin +18671011000036101 Karlor CD 375 mg modified release tablet, 10, blister pack 100160 11141011000036107 Karlor CD 375 mg modified release tablet, 10 5329011000036104 Karlor CD 375 mg modified release tablet 63731000168109 Karlor CD 63731000168109 Karlor CD 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +680511000168108 Altargo 1% ointment, 15 g, tube 198947 680501000168105 Altargo 1% ointment, 15 g 680451000168108 Altargo 1% ointment 680411000168107 Altargo 680411000168107 Altargo 680491000168103 retapamulin 1% ointment, 15 g 680441000168106 retapamulin 1% ointment 680431000168102 retapamulin +1093861000168105 Tramadol/Paracetamol 37.5/325 (Apotex) film-coated tablet, 20, blister pack 280698 1093851000168108 Tramadol/Paracetamol 37.5/325 (Apotex) film-coated tablet, 20 1093841000168106 Tramadol/Paracetamol 37.5/325 (Apotex) film-coated tablet 1093831000168102 Tramadol/Paracetamol 37.5/325 (Apotex) 1093831000168102 Tramadol/Paracetamol 37.5/325 (Apotex) 680611000168109 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet, 20 680591000168104 tramadol hydrochloride 37.5 mg + paracetamol 325 mg tablet 680581000168102 tramadol + paracetamol +20264011000036107 Piroxicam (GenRx) 20 mg capsule, 25, blister pack 75043 13474011000036102 Piroxicam (GenRx) 20 mg capsule, 25 6757011000036107 Piroxicam (GenRx) 20 mg capsule 3472011000036107 Piroxicam (GenRx) 3472011000036107 Piroxicam (GenRx) 27763011000036106 piroxicam 20 mg capsule, 25 23094011000036103 piroxicam 20 mg capsule 21531011000036103 piroxicam +165851000036105 Lumigan PF 0.03% eye drops solution, 30 x 0.4 mL unit doses, ampoule 199469 163991000036109 Lumigan PF 0.03% eye drops solution, 30 x 0.4 mL unit doses 162391000036103 Lumigan PF 0.03% eye drops solution, 0.4 mL unit dose 17031000168103 Lumigan PF 17031000168103 Lumigan PF 164001000036103 bimatoprost 0.03% eye drops, 30 x 0.4 mL unit doses 162401000036100 bimatoprost 0.03% eye drops, unit dose 21297011000036105 bimatoprost +765361000168104 Fraxiparine 3800 anti-Xa units/0.4 mL injection solution, 10 x 0.4 mL syringes 51310 765351000168101 Fraxiparine 3800 anti-Xa units/0.4 mL injection solution, 10 x 0.4 mL syringes 765301000168100 Fraxiparine 3800 anti-Xa units/0.4 mL injection solution, 0.4 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765341000168103 nadroparin calcium 3800 anti-Xa units/0.4 mL injection, 10 x 0.4 mL syringes 765291000168101 nadroparin calcium 3800 anti-Xa units/0.4 mL injection, syringe 765071000168107 nadroparin +50488011000036109 Restore Plus (9957) 15 cm x 20 cm dressing, 3, carton 49383011000036100 Restore Plus (9957) 15 cm x 20 cm dressing, 3 48597011000036109 Restore Plus (9957) 15 cm x 20 cm dressing 32031000168109 Restore Plus (9957) 32031000168109 Restore Plus (9957) 51356011000036102 dressing hydrocolloid superficial wound moderate exudate 15 cm x 20 cm dressing, 3 50879011000036101 dressing hydrocolloid superficial wound moderate exudate 15 cm x 20 cm dressing 50718011000036104 dressing hydrocolloid superficial wound moderate exudate +177091000036106 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 211155 175341000036105 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 173091000036100 Micronelle 30 ED (levonorgestrel 150 microgram + ethinylestradiol 30 microgram) film-coated tablet 179361000036108 Micronelle 30 ED 179361000036108 Micronelle 30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22441011000036108 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet 21428011000036100 levonorgestrel + ethinylestradiol +177091000036106 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 211155 175341000036105 Micronelle 30 ED (21 x 150 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 173101000036109 Micronelle 30 ED (inert substance) film-coated tablet 179361000036108 Micronelle 30 ED 179361000036108 Micronelle 30 ED 27071011000036102 levonorgestrel 150 microgram + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 4 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +131001000036105 Atorvastatin (SZ) 40 mg film-coated tablet, 30, blister pack 179823 127911000036103 Atorvastatin (SZ) 40 mg film-coated tablet, 30 125401000036102 Atorvastatin (SZ) 40 mg film-coated tablet 124141000036105 Atorvastatin (SZ) 124141000036105 Atorvastatin (SZ) 27438011000036100 atorvastatin 40 mg tablet, 30 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +131091000036102 Candesartan Cilexetil (Aspen) 32 mg uncoated tablet, 30, blister pack 195459 128241000036105 Candesartan Cilexetil (Aspen) 32 mg uncoated tablet, 30 125061000036109 Candesartan Cilexetil (Aspen) 32 mg uncoated tablet 124121000036102 Candesartan Cilexetil (Aspen) 124121000036102 Candesartan Cilexetil (Aspen) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +165761000036103 Temozolomide (Alphapharm) 100 mg hard capsule, 5, bottle 192684 163881000036104 Temozolomide (Alphapharm) 100 mg hard capsule, 5 162331000036104 Temozolomide (Alphapharm) 100 mg hard capsule 161971000036106 Temozolomide (Alphapharm) 161971000036106 Temozolomide (Alphapharm) 27644011000036106 temozolomide 100 mg capsule, 5 22981011000036103 temozolomide 100 mg capsule 21595011000036105 temozolomide +925173011000036108 Lercan 10 mg film-coated tablet, 14, blister pack 152707 924710011000036105 Lercan 10 mg film-coated tablet, 14 924428011000036106 Lercan 10 mg film-coated tablet 924368011000036107 Lercan 924368011000036107 Lercan 924196011000036101 lercanidipine hydrochloride 10 mg tablet, 14 23169011000036109 lercanidipine hydrochloride 10 mg tablet 21293011000036101 lercanidipine +659191000168107 Olanzapine (AN) 10 mg film-coated tablet, 28, blister pack 179000 659181000168109 Olanzapine (AN) 10 mg film-coated tablet, 28 659171000168106 Olanzapine (AN) 10 mg film-coated tablet 659161000168100 Olanzapine (AN) 659161000168100 Olanzapine (AN) 27371011000036101 olanzapine 10 mg tablet, 28 22721011000036102 olanzapine 10 mg tablet 21485011000036103 olanzapine +978581000168108 Brevoxyl Creamy Wash 4% cream, 10 mL, tube 117862 978571000168105 Brevoxyl Creamy Wash 4% cream, 10 mL 978551000168101 Brevoxyl Creamy Wash 4% cream 978541000168103 Brevoxyl Creamy Wash 978541000168103 Brevoxyl Creamy Wash 978561000168104 benzoyl peroxide 4% cream, 10 mL 70234011000036107 benzoyl peroxide 4% cream 61709011000036104 benzoyl peroxide +18913011000036109 Albalon-A Liquifilm 0.05% / 0.5% eye drops solution, 15 mL, bottle 23091 12221011000036107 Albalon-A Liquifilm 0.05% / 0.5% eye drops solution, 15 mL 5562011000036101 Albalon-A Liquifilm 0.05% / 0.5% eye drops solution 63691000168102 Albalon-A Liquifilm 0.05% / 0.5% 63691000168102 Albalon-A Liquifilm 0.05% / 0.5% 26992011000036106 naphazoline hydrochloride 0.05% + antazoline phosphate 0.5% eye drops, 15 mL 22365011000036106 naphazoline hydrochloride 0.05% + antazoline phosphate 0.5% eye drops 21810011000036104 naphazoline + antazoline +963111000168107 Formet 250 mg film-coated tablet, 10, bottle 91105 962691000168101 Formet 250 mg film-coated tablet, 10 962681000168104 Formet 250 mg film-coated tablet 36111000168104 Formet 36111000168104 Formet 943231000168101 metformin hydrochloride 250 mg tablet, 10 943211000168106 metformin hydrochloride 250 mg tablet 21614011000036102 metformin +923881011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 14, blister pack 163769 923425011000036102 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet, 14 923078011000036100 Lercanidipine Hydrochloride (Apo) 20 mg film-coated tablet 7301000168109 Lercanidipine Hydrochloride (Apo) 7301000168109 Lercanidipine Hydrochloride (Apo) 924197011000036103 lercanidipine hydrochloride 20 mg tablet, 14 23436011000036106 lercanidipine hydrochloride 20 mg tablet 21293011000036101 lercanidipine +60049011000036102 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 50 mL, bottle 124416 56011011000036101 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 50 mL 53756011000036106 Paracetamol 5 to 12 Years (Priceline) colour free 240 mg/5 mL oral liquid suspension, 5 mL 22401000168105 Paracetamol 5 to 12 Years (Priceline) 22401000168105 Paracetamol 5 to 12 Years (Priceline) 63814011000036106 paracetamol 240 mg/5 mL oral liquid, 50 mL 22589011000036109 paracetamol 240 mg/5 mL oral liquid 21433011000036107 paracetamol +797111000168109 Aciclovir (AN) 400 mg uncoated tablet, 56, blister pack 182885 797101000168106 Aciclovir (AN) 400 mg uncoated tablet, 56 797091000168101 Aciclovir (AN) 400 mg uncoated tablet 797081000168104 Aciclovir (AN) 797081000168104 Aciclovir (AN) 795861000168109 aciclovir 400 mg tablet, 56 795841000168105 aciclovir 400 mg tablet 21239011000036106 aciclovir +84399011000036105 Pantoloc 40 mg enteric tablet, 30, blister pack 69794 84090011000036100 Pantoloc 40 mg enteric tablet, 30 83705011000036107 Pantoloc 40 mg enteric tablet 83566011000036100 Pantoloc 83566011000036100 Pantoloc 27666011000036109 pantoprazole 40 mg enteric tablet, 30 23003011000036103 pantoprazole 40 mg enteric tablet 21563011000036107 pantoprazole +19835011000036105 Metohexal 50 mg uncoated tablet, 100, bottle 64135 13086011000036106 Metohexal 50 mg uncoated tablet, 100 6370011000036109 Metohexal 50 mg uncoated tablet 3356011000036103 Metohexal 3356011000036103 Metohexal 27896011000036100 metoprolol tartrate 50 mg tablet, 100 23221011000036102 metoprolol tartrate 50 mg tablet 21662011000036107 metoprolol +37672011000036102 Pilocarpine Nitrate Minims (Bausch & Lomb) 4% eye drops solution, 20 x 0.5 mL unit doses, tube 32282 36938011000036100 Pilocarpine Nitrate Minims (Bausch & Lomb) 4% eye drops solution, 20 x 0.5 mL unit doses 36269011000036101 Pilocarpine Nitrate Minims (Bausch & Lomb) 4% eye drops solution, 0.5 mL unit dose 33181000168104 Pilocarpine Nitrate Minims (Bausch & Lomb) 33181000168104 Pilocarpine Nitrate Minims (Bausch & Lomb) 38819011000036100 pilocarpine nitrate 4% eye drops, 20 x 0.5 mL unit doses 38029011000036106 pilocarpine nitrate 4% eye drops, unit dose 21254011000036109 pilocarpine +38851000036101 Escitalopram (LAPL) 20 mg film-coated tablet, 28, blister pack 165876 35221000036104 Escitalopram (LAPL) 20 mg film-coated tablet, 28 32941000036106 Escitalopram (LAPL) 20 mg film-coated tablet 32241000036102 Escitalopram (LAPL) 32241000036102 Escitalopram (LAPL) 28072011000036101 escitalopram 20 mg tablet, 28 23386011000036106 escitalopram 20 mg tablet 21534011000036100 escitalopram +1118671000168101 Quetin 25 mg film-coated tablet, 20, blister pack 204841 1118661000168107 Quetin 25 mg film-coated tablet, 20 1118651000168105 Quetin 25 mg film-coated tablet 1118401000168109 Quetin 1118401000168109 Quetin 652041000168105 quetiapine 25 mg tablet, 20 22747011000036107 quetiapine 25 mg tablet 21452011000036104 quetiapine +964551000168102 Normatens 400 microgram film-coated tablet, 10, blister pack 114124 964541000168104 Normatens 400 microgram film-coated tablet, 10 964461000168101 Normatens 400 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964531000168108 moxonidine 400 microgram tablet, 10 22060011000036103 moxonidine 400 microgram tablet 21658011000036104 moxonidine +13131000036102 Quetiapine (RBX) 100 mg film-coated tablet, 90, strip pack 166423 8241000036106 Quetiapine (RBX) 100 mg film-coated tablet, 90 3401000036102 Quetiapine (RBX) 100 mg film-coated tablet 1221000036105 Quetiapine (RBX) 1221000036105 Quetiapine (RBX) 27399011000036107 quetiapine 100 mg tablet, 90 22748011000036108 quetiapine 100 mg tablet 21452011000036104 quetiapine +830631000168103 Atomoxetine (Apo) 80 mg hard capsule, 56, blister pack 234807 830621000168101 Atomoxetine (Apo) 80 mg hard capsule, 56 830531000168102 Atomoxetine (Apo) 80 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830611000168108 atomoxetine 80 mg capsule, 56 51000011000036107 atomoxetine 80 mg capsule 21650011000036101 atomoxetine +933238791000036101 Accu-Chek Aviva diagnostic strip, 50, bottle 933235511000036109 Accu-Chek Aviva diagnostic strip, 50 933234391000036109 Accu-Chek Aviva diagnostic strip 44431000168106 Accu-Chek Aviva 44431000168106 Accu-Chek Aviva 51576011000036102 glucose indicator blood diagnostic strip, 50 51009011000036101 glucose indicator blood diagnostic strip 50750011000036107 glucose indicator blood +52735011000036105 Pristiq 100 mg modified release tablet, 28, blister pack 170696 52547011000036102 Pristiq 100 mg modified release tablet, 28 52411011000036105 Pristiq 100 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +52735011000036105 Pristiq 100 mg modified release tablet, 28, blister pack 133527 52547011000036102 Pristiq 100 mg modified release tablet, 28 52411011000036105 Pristiq 100 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +68979011000036107 Nurofen Period Pain 200 mg film-coated tablet, 4, blister pack 134618 66781011000036102 Nurofen Period Pain 200 mg film-coated tablet, 4 65504011000036102 Nurofen Period Pain 200 mg film-coated tablet 24371000168100 Nurofen Period Pain 24371000168100 Nurofen Period Pain 63921011000036108 ibuprofen 200 mg tablet, 4 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +765441000168105 Fraxiparine 5700 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL syringes 51311 765431000168101 Fraxiparine 5700 anti-Xa units/0.6 mL injection solution, 10 x 0.6 mL syringes 765381000168108 Fraxiparine 5700 anti-Xa units/0.6 mL injection solution, 0.6 mL syringe 765031000168109 Fraxiparine 765031000168109 Fraxiparine 765421000168104 nadroparin calcium 5700 anti-Xa units/0.6 mL injection, 10 x 0.6 mL syringes 765371000168105 nadroparin calcium 5700 anti-Xa units/0.6 mL injection, syringe 765071000168107 nadroparin +980431000168101 Murelax 15 mg uncoated tablet, 250, blister pack 75122 980421000168104 Murelax 15 mg uncoated tablet, 250 980261000168108 Murelax 15 mg uncoated tablet 3531011000036106 Murelax 3531011000036106 Murelax 980411000168106 oxazepam 15 mg tablet, 250 32700011000036104 oxazepam 15 mg tablet 21541011000036102 oxazepam +82271000036102 Rabeprazole Sodium (Pfizer) 10 mg enteric tablet, 28, blister pack 189244 80241000036108 Rabeprazole Sodium (Pfizer) 10 mg enteric tablet, 28 78621000036109 Rabeprazole Sodium (Pfizer) 10 mg enteric tablet 77841000036101 Rabeprazole Sodium (Pfizer) 77841000036101 Rabeprazole Sodium (Pfizer) 27798011000036103 rabeprazole sodium 10 mg enteric tablet, 28 23126011000036109 rabeprazole sodium 10 mg enteric tablet 21296011000036107 rabeprazole +1004921000168107 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 52399 1004911000168100 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 1004891000168102 Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule 711491000168101 Naropin 0.75% 711491000168101 Naropin 0.75% 1004901000168103 ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules 1004881000168100 ropivacaine hydrochloride 150 mg/20 mL injection, ampoule 44857011000036102 ropivacaine +823001000168109 Gardasil injection suspension, 0.5 mL vial 124408 822991000168108 Gardasil injection suspension, 0.5 mL vial 822971000168107 Gardasil injection suspension, 0.5 mL vial 73683011000036100 Gardasil 73683011000036100 Gardasil 822981000168105 human papillomavirus quadrivalent vaccine injection, 0.5 mL vial 822961000168101 human papillomavirus quadrivalent vaccine injection, 0.5 mL vial 822951000168103 human papillomavirus quadrivalent vaccine +165801000036109 Trajentamet 2.5 mg/850 mg film-coated tablet, 60, blister pack 195101 163921000036106 Trajentamet 2.5 mg/850 mg film-coated tablet, 60 162431000036107 Trajentamet 2.5 mg/850 mg film-coated tablet 44521000168107 Trajentamet 2.5 mg/850 mg 44521000168107 Trajentamet 2.5 mg/850 mg 163931000036108 linagliptin 2.5 mg + metformin hydrochloride 850 mg tablet, 60 162441000036102 linagliptin 2.5 mg + metformin hydrochloride 850 mg tablet 166311000036107 linagliptin + metformin +116651000036104 Rosuvastatin (GH) 10 mg film-coated tablet, 30, blister pack 183715 114941000036100 Rosuvastatin (GH) 10 mg film-coated tablet, 30 113561000036105 Rosuvastatin (GH) 10 mg film-coated tablet 112721000036104 Rosuvastatin (GH) 112721000036104 Rosuvastatin (GH) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +693441000168101 Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules 49295 693431000168105 Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules 693411000168100 Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 20 mL ampoule 693201000168104 Lignocaine (Pfizer) 693201000168104 Lignocaine (Pfizer) 693421000168107 lidocaine (lignocaine) hydrochloride monohydrate 2% (400 mg/20 mL) injection, 30 x 20 mL ampoules 693401000168103 lidocaine (lignocaine) hydrochloride monohydrate 2% (400 mg/20 mL) injection, ampoule 21572011000036107 lidocaine (lignocaine) +19616011000036100 Keflor CD 375 mg modified release tablet, 10, blister pack 58655 12885011000036107 Keflor CD 375 mg modified release tablet, 10 6176011000036101 Keflor CD 375 mg modified release tablet 35541000168103 Keflor CD 35541000168103 Keflor CD 27828011000036106 cefaclor 375 mg modified release tablet, 10 23156011000036108 cefaclor 375 mg modified release tablet 21661011000036101 cefaclor +847911000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 229890 847901000168101 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48 847881000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet 691961000168107 Calcium (Sandoz) 691961000168107 Calcium (Sandoz) 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 745551000168101 calcium +60605011000036101 Canesten Clotrimazole 1% cream, 5 g, tube 18697 56563011000036104 Canesten Clotrimazole 1% cream, 5 g 53975011000036108 Canesten Clotrimazole 1% cream 4270011000036105 Canesten Clotrimazole 4270011000036105 Canesten Clotrimazole 63427011000036103 clotrimazole 1% cream, 5 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +713921000168105 Olanzapine (Auro) 5 mg uncoated tablet, 28, blister pack 179932 713911000168103 Olanzapine (Auro) 5 mg uncoated tablet, 28 713901000168101 Olanzapine (Auro) 5 mg uncoated tablet 713791000168105 Olanzapine (Auro) 713791000168105 Olanzapine (Auro) 27369011000036105 olanzapine 5 mg tablet, 28 22719011000036108 olanzapine 5 mg tablet 21485011000036103 olanzapine +860471000168108 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120, bottle 165284 860461000168102 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120 860351000168105 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet 81983011000036105 Calci-Tab 81983011000036105 Calci-Tab 860261000168103 calcium carbonate 1.5 g (calcium 600 mg) tablet, 120 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 745551000168101 calcium +69440011000036100 Sodium Chloride (Baxter) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 48517 67240011000036105 Sodium Chloride (Baxter) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 65571011000036109 Sodium Chloride (Baxter) 0.9% (2.25 g/250 mL) intravenous infusion injection, 250 mL bag 3972011000036105 Sodium Chloride (Baxter) 3972011000036105 Sodium Chloride (Baxter) 71790011000036108 sodium chloride 0.9% (2.25 g/250 mL) injection, 250 mL bag 70187011000036109 sodium chloride 0.9% (2.25 g/250 mL) injection, bag 21308011000036103 sodium chloride +973211000168107 Bosentan (Mylan) 125 mg film-coated tablet, 60, blister pack 206772 973091000168105 Bosentan (Mylan) 125 mg film-coated tablet, 60 973081000168107 Bosentan (Mylan) 125 mg film-coated tablet 973071000168109 Bosentan (Mylan) 973071000168109 Bosentan (Mylan) 28063011000036101 bosentan 125 mg tablet, 60 23377011000036101 bosentan 125 mg tablet 21607011000036105 bosentan +926761000168106 Zinnat 125 mg film-coated tablet, 10, strip pack 44091 917861000168105 Zinnat 125 mg film-coated tablet, 10 917811000168107 Zinnat 125 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 917851000168108 cefuroxime 125 mg tablet, 10 917801000168109 cefuroxime 125 mg tablet 21474011000036106 cefuroxime +19881011000036102 Isoptin 160 mg film-coated tablet, 60, blister pack 65504 13128011000036109 Isoptin 160 mg film-coated tablet, 60 6411011000036101 Isoptin 160 mg film-coated tablet 4411000168109 Isoptin 4411000168109 Isoptin 27567011000036101 verapamil hydrochloride 160 mg tablet, 60 22906011000036107 verapamil hydrochloride 160 mg tablet 21287011000036109 verapamil +1040411000168109 Varenicline (Apotex) 1 mg film-coated tablet, 56, blister pack 211944 1040401000168106 Varenicline (Apotex) 1 mg film-coated tablet, 56 1040391000168109 Varenicline (Apotex) 1 mg film-coated tablet 1040381000168106 Varenicline (Apotex) 1040381000168106 Varenicline (Apotex) 33788011000036105 varenicline 1 mg tablet, 56 33660011000036103 varenicline 1 mg tablet 33624011000036101 varenicline +60360011000036102 Nurofen Back Pain 200 mg film-coated tablet, 12, blister pack 142080 56319011000036103 Nurofen Back Pain 200 mg film-coated tablet, 12 53874011000036103 Nurofen Back Pain 200 mg film-coated tablet 6541000168101 Nurofen Back Pain 6541000168101 Nurofen Back Pain 63956011000036104 ibuprofen 200 mg tablet, 12 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +44623011000036100 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 90345 42076011000036108 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent ampoules), 1 pack 40374011000036106 Luveris (lutropin alfa 75 units) powder for injection, 75 units vial 39654011000036102 Luveris 39654011000036102 Luveris 46843011000036100 lutropin alfa 75 units injection [10 vials] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 45349011000036102 lutropin alfa 75 units injection, vial 44973011000036102 lutropin alfa +44623011000036100 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent ampoules), 1 pack, composite pack 90345 42076011000036108 Luveris (10 x 75 units vials, 10 x 1 mL inert diluent ampoules), 1 pack 631451000168107 Luveris (inert substance) diluent, 1 mL ampoule 39654011000036102 Luveris 39654011000036102 Luveris 46843011000036100 lutropin alfa 75 units injection [10 vials] (&) inert substance diluent [10 x 1 mL ampoules], 1 pack 631441000168105 inert substance diluent, 1 mL ampoule 21220011000036103 inert substance +24591000036100 Local Angel 4% gel, 5 g, tube 22001000036106 Local Angel 4% gel, 5 g 20581000036106 Local Angel 4% gel 86592011000036107 Local Angel 86592011000036107 Local Angel 86996011000036101 tetracaine (amethocaine) 4% gel, 5 g 86909011000036107 tetracaine (amethocaine) 4% gel 37707011000036100 tetracaine (amethocaine) +818751000168105 Quetiapine XR (Apo) 300 mg modified release tablet, 10, blister pack 226818 818741000168108 Quetiapine XR (Apo) 300 mg modified release tablet, 10 818731000168104 Quetiapine XR (Apo) 300 mg modified release tablet 810721000168104 Quetiapine XR (Apo) 810721000168104 Quetiapine XR (Apo) 51535011000036107 quetiapine 300 mg modified release tablet, 10 50994011000036100 quetiapine 300 mg modified release tablet 21452011000036104 quetiapine +705241000168108 Noxafil 300 mg/16.7 mL concentrated injection, 16.7 mL vial 218702 705231000168104 Noxafil 300 mg/16.7 mL concentrated injection, 16.7 mL vial 705211000168109 Noxafil 300 mg/16.7 mL concentrated injection, 16.7 mL vial 39709011000036103 Noxafil 39709011000036103 Noxafil 705221000168102 posaconazole 300 mg/16.7 mL injection, 16.7 mL vial 705201000168106 posaconazole 300 mg/16.7 mL injection, vial 44898011000036105 posaconazole +21088011000036103 Estradot 75 microgram/24 hours patch, 8, sachet 97565 14231011000036104 Estradot 75 microgram/24 hours patch, 8 7517011000036104 Estradot 75 microgram/24 hours patch 4248011000036108 Estradot 4248011000036108 Estradot 28233011000036103 estradiol 75 microgram/24 hours patch, 8 23547011000036102 estradiol 75 microgram/24 hours patch 21238011000036103 estradiol +1030781000168106 Atomoxetine (Genpar) 5 mg hard capsule, 7, blister pack 234851 1030771000168108 Atomoxetine (Genpar) 5 mg hard capsule, 7 1030761000168102 Atomoxetine (Genpar) 5 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 976311000168106 atomoxetine 5 mg capsule, 7 976291000168107 atomoxetine 5 mg capsule 21650011000036101 atomoxetine +84339011000036102 Ritalin LA 10 mg modified release capsule, 100, bottle 160228 84032011000036108 Ritalin LA 10 mg modified release capsule, 100 83661011000036100 Ritalin LA 10 mg modified release capsule 22591000168100 Ritalin LA 22591000168100 Ritalin LA 84645011000036108 methylphenidate hydrochloride 10 mg modified release capsule, 100 84433011000036108 methylphenidate hydrochloride 10 mg modified release capsule 21277011000036101 methylphenidate +131161000036105 Candesartan Cilexetil (GH) 32 mg uncoated tablet, 30, blister pack 195479 128291000036104 Candesartan Cilexetil (GH) 32 mg uncoated tablet, 30 124951000036106 Candesartan Cilexetil (GH) 32 mg uncoated tablet 124051000036107 Candesartan Cilexetil (GH) 124051000036107 Candesartan Cilexetil (GH) 26691011000036101 candesartan cilexetil 32 mg tablet, 30 22087011000036100 candesartan cilexetil 32 mg tablet 21501011000036105 candesartan +961261000168100 Bisoprolol (Apo) 3.75 mg tablet, 30, blister pack 182117 961251000168102 Bisoprolol (Apo) 3.75 mg tablet, 30 961101000168105 Bisoprolol (Apo) 3.75 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 874861000168103 bisoprolol fumarate 3.75 mg tablet, 30 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +933214211000036104 Ralset 50 mg film-coated tablet, 10, blister pack 160771 933203431000036105 Ralset 50 mg film-coated tablet, 10 933195821000036107 Ralset 50 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 929236011000036108 sertraline 50 mg tablet, 10 23599011000036100 sertraline 50 mg tablet 21636011000036104 sertraline +915181000168104 Certican 100 microgram dispersible tablet, 100, blister pack 97520 915171000168102 Certican 100 microgram dispersible tablet, 100 915091000168102 Certican 100 microgram dispersible tablet 4369011000036100 Certican 4369011000036100 Certican 915161000168108 everolimus 100 microgram dispersible tablet, 100 915081000168100 everolimus 100 microgram dispersible tablet 21615011000036103 everolimus +1101511000168104 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 30, blister pack 286356 1101501000168102 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 30 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 27560011000036102 cetirizine hydrochloride 10 mg tablet, 30 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +933128011000036108 Eligard 4 Month (1 x 30 mg syringe, 1 x diluent syringe), 1 pack, composite pack 97451 932930011000036102 Eligard 4 Month (1 x 30 mg syringe, 1 x diluent syringe), 1 pack 7502011000036104 Eligard 4 Month (leuprorelin acetate 30 mg) modified release injection, 30 mg syringe 57451000168105 Eligard 4 Month 57451000168105 Eligard 4 Month 932931011000036109 leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 23534011000036107 leuprorelin acetate 30 mg modified release injection, syringe 21320011000036109 leuprorelin +933128011000036108 Eligard 4 Month (1 x 30 mg syringe, 1 x diluent syringe), 1 pack, composite pack 97451 932930011000036102 Eligard 4 Month (1 x 30 mg syringe, 1 x diluent syringe), 1 pack 7503011000036106 Eligard 4 Month (inert substance) diluent, syringe 57451000168105 Eligard 4 Month 57451000168105 Eligard 4 Month 932931011000036109 leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 23535011000036106 inert substance diluent, syringe 21220011000036103 inert substance +61017011000036107 Neutrafluor 550 microgram uncoated tablet, 120, bottle 66616 56960011000036104 Neutrafluor 550 microgram uncoated tablet, 120 54140011000036102 Neutrafluor 550 microgram uncoated tablet 53204011000036103 Neutrafluor 53204011000036103 Neutrafluor 63658011000036101 sodium fluoride 550 microgram tablet, 120 62036011000036102 sodium fluoride 550 microgram tablet 61768011000036106 fluoride +111031000036107 Irbesartan (Stada) 300 mg film-coated tablet, 30, blister pack 192813 109311000036103 Irbesartan (Stada) 300 mg film-coated tablet, 30 107041000036109 Irbesartan (Stada) 300 mg film-coated tablet 106681000036108 Irbesartan (Stada) 106681000036108 Irbesartan (Stada) 27522011000036109 irbesartan 300 mg tablet, 30 22862011000036100 irbesartan 300 mg tablet 21536011000036108 irbesartan +968711000168101 Simvastatin (Spirit) 5 mg film-coated tablet, 90, bottle 116707 968701000168104 Simvastatin (Spirit) 5 mg film-coated tablet, 90 968651000168109 Simvastatin (Spirit) 5 mg film-coated tablet 52391011000036102 Simvastatin (Spirit) 52391011000036102 Simvastatin (Spirit) 968691000168104 simvastatin 5 mg tablet, 90 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +923894011000036103 Kepcet 750 mg film-coated tablet, 60, blister pack 165911 923438011000036106 Kepcet 750 mg film-coated tablet, 60 923083011000036100 Kepcet 750 mg film-coated tablet 85281011000036106 Kepcet 85281011000036106 Kepcet 924200011000036104 levetiracetam 750 mg tablet, 60 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +79050011000036105 Amoxycillin and Clavulanic Acid 500/125 (Apo) film-coated tablet, 10, blister pack 153775 78866011000036104 Amoxycillin and Clavulanic Acid 500/125 (Apo) film-coated tablet, 10 78672011000036104 Amoxycillin and Clavulanic Acid 500/125 (Apo) film-coated tablet 39601000168102 Amoxycillin and Clavulanic Acid 500/125 (Apo) 39601000168102 Amoxycillin and Clavulanic Acid 500/125 (Apo) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +985831000168109 Afstyla (1 x 3000 units vial, 1 x inert diluent vial), 1 pack, composite pack 271638 985821000168106 Afstyla (1 x 3000 units vial, 1 x inert diluent vial), 1 pack 984581000168106 Afstyla (inert substance) diluent, vial 984051000168109 Afstyla 984051000168109 Afstyla 985811000168104 lonoctocog alfa 3000 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 23505011000036100 inert substance diluent, vial 21220011000036103 inert substance +985831000168109 Afstyla (1 x 3000 units vial, 1 x inert diluent vial), 1 pack, composite pack 271638 985821000168106 Afstyla (1 x 3000 units vial, 1 x inert diluent vial), 1 pack 985801000168102 Afstyla (lonoctocog alfa 3000 units) powder for injection, 3000 units vial 984051000168109 Afstyla 984051000168109 Afstyla 985811000168104 lonoctocog alfa 3000 units injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 985791000168103 lonoctocog alfa 3000 units injection, vial 984551000168104 lonoctocog alfa +1101491000168109 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 20, blister pack 286356 1101481000168106 Cetirizine (Pharmacy Health) 10 mg film-coated tablet, 20 1101431000168105 Cetirizine (Pharmacy Health) 10 mg film-coated tablet 1101421000168107 Cetirizine (Pharmacy Health) 1101421000168107 Cetirizine (Pharmacy Health) 1082001000168107 cetirizine hydrochloride 10 mg tablet, 20 22899011000036107 cetirizine hydrochloride 10 mg tablet 21373011000036102 cetirizine +710631000168106 Strepsils Soothing lozenge, 24, blister pack 14975 710621000168108 Strepsils Soothing lozenge, 24 710491000168107 Strepsils Soothing lozenge 65149011000036100 Strepsils 65149011000036100 Strepsils 71522011000036104 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge, 24 70042011000036108 dichlorobenzyl alcohol 1.2 mg + amylmetacresol 600 microgram lozenge 69765011000036109 dichlorobenzyl alcohol + amylmetacresol +177171000036106 Maxigesic film-coated tablet, 16, blister pack 218785 175451000036100 Maxigesic film-coated tablet, 16 173031000036101 Maxigesic film-coated tablet 172741000036100 Maxigesic 172741000036100 Maxigesic 175461000036102 paracetamol 500 mg + ibuprofen 150 mg tablet, 16 173041000036106 paracetamol 500 mg + ibuprofen 150 mg tablet 177241000036105 paracetamol + ibuprofen +938731000168101 Celecoxib (Pfizer) 100 mg hard capsule, 60, blister pack 211500 938721000168104 Celecoxib (Pfizer) 100 mg hard capsule, 60 938561000168102 Celecoxib (Pfizer) 100 mg hard capsule 938511000168100 Celecoxib (Pfizer) 938511000168100 Celecoxib (Pfizer) 27623011000036106 celecoxib 100 mg capsule, 60 22961011000036101 celecoxib 100 mg capsule 21566011000036101 celecoxib +61282011000036102 Travacalm Original uncoated tablet, 10, blister pack 78192 57218011000036103 Travacalm Original uncoated tablet, 10 54241011000036106 Travacalm Original uncoated tablet 53202011000036107 Travacalm Original 53202011000036107 Travacalm Original 63770011000036106 dimenhydrinate 50 mg + hyoscine hydrobromide trihydrate 200 microgram + caffeine 20 mg tablet, 10 62076011000036104 dimenhydrinate 50 mg + hyoscine hydrobromide trihydrate 200 microgram + caffeine 20 mg tablet 61790011000036107 dimenhydrinate + hyoscine hydrobromide trihydrate + caffeine +19639011000036102 Depo-Nisolone 40 mg/mL injection suspension, 5 x 1 mL vials 59388 12908011000036107 Depo-Nisolone 40 mg/mL injection suspension, 5 x 1 mL vials 6198011000036108 Depo-Nisolone 40 mg/mL injection suspension, vial 3120011000036108 Depo-Nisolone 3120011000036108 Depo-Nisolone 27431011000036109 methylprednisolone acetate 40 mg/mL injection, 5 x 1 mL vials 22778011000036107 methylprednisolone acetate 40 mg/mL injection, vial 21605011000036100 methylprednisolone +797361000168105 Aciclovir (RBX) 800 mg uncoated tablet, 120, blister pack 182883 797351000168108 Aciclovir (RBX) 800 mg uncoated tablet, 120 797321000168100 Aciclovir (RBX) 800 mg uncoated tablet 796791000168102 Aciclovir (RBX) 796791000168102 Aciclovir (RBX) 28319011000036103 aciclovir 800 mg tablet, 120 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +1031911000168106 Aten 100 mg film-coated tablet, 50, blister pack 197718 1031901000168108 Aten 100 mg film-coated tablet, 50 1031701000168105 Aten 100 mg film-coated tablet 1029111000168107 Aten 1029111000168107 Aten 1031891000168109 atenolol 100 mg tablet, 50 1031691000168105 atenolol 100 mg tablet 21624011000036105 atenolol +60075011000036103 Ear Clear for Ear Ache ear drops, 12 mL, bottle 125789 56036011000036100 Ear Clear for Ear Ache ear drops, 12 mL 53765011000036105 Ear Clear for Ear Ache ear drops 53147011000036104 Ear Clear for Ear Ache 53147011000036104 Ear Clear for Ear Ache 63203011000036101 phenazone 5.4% + benzocaine 1.4% ear drops, 12 mL 61886011000036106 phenazone 5.4% + benzocaine 1.4% ear drops 61772011000036101 phenazone + benzocaine +44381011000036102 Arava 10 mg film-coated tablet, 10, bottle 69692 41844011000036101 Arava 10 mg film-coated tablet, 10 6566011000036100 Arava 10 mg film-coated tablet 3730011000036103 Arava 3730011000036103 Arava 46650011000036101 leflunomide 10 mg tablet, 10 23403011000036109 leflunomide 10 mg tablet 21504011000036108 leflunomide +923721011000036107 QV Bath Oil 85% bath oil, 500 mL, bottle 10628 923261011000036109 QV Bath Oil 85% bath oil, 500 mL 922962011000036108 QV Bath Oil 85% bath oil 922937011000036102 QV Bath Oil 922937011000036102 QV Bath Oil 924098011000036109 light liquid paraffin 85% bath oil, 500 mL 923941011000036104 light liquid paraffin 85% bath oil 33638011000036106 light liquid paraffin +933214371000036104 Ralset 100 mg film-coated tablet, 10, blister pack 160779 933203641000036102 Ralset 100 mg film-coated tablet, 10 933195861000036103 Ralset 100 mg film-coated tablet 933193601000036100 Ralset 933193601000036100 Ralset 929238011000036107 sertraline 100 mg tablet, 10 23600011000036103 sertraline 100 mg tablet 21636011000036104 sertraline +61524011000036107 Dolased Analgesic and Calmative uncoated tablet, 12, blister pack 93507 57449011000036104 Dolased Analgesic and Calmative uncoated tablet, 12 54306011000036100 Dolased Analgesic and Calmative uncoated tablet 53285011000036100 Dolased Analgesic and Calmative 53285011000036100 Dolased Analgesic and Calmative 63866011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 12 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +18167011000036102 Simvastatin (Genepharm) 40 mg film-coated tablet, 30, blister pack 115416 11489011000036102 Simvastatin (Genepharm) 40 mg film-coated tablet, 30 5795011000036107 Simvastatin (Genepharm) 40 mg film-coated tablet 2992011000036107 Simvastatin (Genepharm) 2992011000036107 Simvastatin (Genepharm) 28213011000036109 simvastatin 40 mg tablet, 30 23525011000036109 simvastatin 40 mg tablet 21242011000036102 simvastatin +50439011000036105 PKU Express 15 Lemon powder for oral liquid, 30 x 25 g sachets 49532011000036103 PKU Express 15 Lemon powder for oral liquid, 30 x 25 g sachets 254451000168107 PKU Express 15 Lemon powder for oral liquid, 25 g sachet 14751000168101 PKU Express 15 14751000168101 PKU Express 15 51476011000036105 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 30 x 25 g sachets 247011000168109 amino acid formula with vitamins and minerals without phenylalanine powder for oral liquid, 25 g sachet 50738011000036108 amino acid formula with vitamins and minerals without phenylalanine +1056481000168103 Riximyo 100 mg/10 mL concentrated injection, 3 x 10 mL vials 281782 1056471000168101 Riximyo 100 mg/10 mL concentrated injection, 3 x 10 mL vials 1056431000168104 Riximyo 100 mg/10 mL concentrated injection, 10 mL vial 1056361000168102 Riximyo 1056361000168102 Riximyo 1056461000168107 rituximab 100 mg/10 mL injection, 3 x 10 mL vials 22804011000036108 rituximab 100 mg/10 mL injection, vial 21460011000036105 rituximab +784411000168105 Pregabalin (Sandoz) 75 mg hard capsule, 56, blister pack 210043 784401000168107 Pregabalin (Sandoz) 75 mg hard capsule, 56 784391000168105 Pregabalin (Sandoz) 75 mg hard capsule 784381000168107 Pregabalin (Sandoz) 784381000168107 Pregabalin (Sandoz) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +17925011000036107 Lisinopril (Pharmacor) 10 mg uncoated tablet, 30, blister pack 132555 11934011000036107 Lisinopril (Pharmacor) 10 mg uncoated tablet, 30 5262011000036106 Lisinopril (Pharmacor) 10 mg uncoated tablet 3046011000036104 Lisinopril (Pharmacor) 3046011000036104 Lisinopril (Pharmacor) 28178011000036108 lisinopril 10 mg tablet, 30 23488011000036103 lisinopril 10 mg tablet 21465011000036101 lisinopril +659121000168105 Telmisartan (Terry White Chemists) 80 mg uncoated tablet, 28, blister pack 189936 659111000168103 Telmisartan (Terry White Chemists) 80 mg uncoated tablet, 28 659101000168101 Telmisartan (Terry White Chemists) 80 mg uncoated tablet 659091000168106 Telmisartan (Terry White Chemists) 659091000168106 Telmisartan (Terry White Chemists) 27631011000036107 telmisartan 80 mg tablet, 28 22969011000036102 telmisartan 80 mg tablet 21777011000036105 telmisartan +43655011000036100 Mirtazapine (Sandoz) 45 mg film-coated tablet, 60, bottle 117183 41187011000036105 Mirtazapine (Sandoz) 45 mg film-coated tablet, 60 5217011000036107 Mirtazapine (Sandoz) 45 mg film-coated tablet 3124011000036103 Mirtazapine (Sandoz) 3124011000036103 Mirtazapine (Sandoz) 46151011000036109 mirtazapine 45 mg tablet, 60 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +843311000168106 Elevit with Iodine film-coated tablet, 100, blister pack 174543 843301000168108 Elevit with Iodine film-coated tablet, 100 843171000168100 Elevit with Iodine film-coated tablet 34691000168109 Elevit with Iodine 34691000168109 Elevit with Iodine 843291000168107 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 100 843161000168106 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet 931795011000036106 dl-alpha-tocopherol + ascorbic acid + biotin + calcium hydrogen phosphate + colecalciferol + cupric sulfate + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide light + magnesium phosphate dibasic trihydrate + manganese sulfate monohydrate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + thiamine + zinc sulfate monohydrate +926652011000036100 Tinea Powder (Scholl) 0.09% (920 microgram/g) pressurised spray, 125 g, aerosol can 13519 926151011000036107 Tinea Powder (Scholl) 0.09% (920 microgram/g) pressurised spray, 125 g 925641011000036105 Tinea Powder (Scholl) 0.09% (920 microgram/g) pressurised spray 925564011000036109 Tinea Powder (Scholl) 925564011000036109 Tinea Powder (Scholl) 927322011000036107 tolnaftate 0.09% (920 microgram/g) spray, 125 g 926988011000036109 tolnaftate 0.09% (920 microgram/g) spray 21680011000036105 tolnaftate +961241000168104 Bisoprolol (Apo) 3.75 mg tablet, 28, blister pack 182117 961231000168108 Bisoprolol (Apo) 3.75 mg tablet, 28 961101000168105 Bisoprolol (Apo) 3.75 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 874831000168106 bisoprolol fumarate 3.75 mg tablet, 28 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +37649011000036106 Chlorquin 250 mg uncoated tablet, 100, bottle 27904 36915011000036103 Chlorquin 250 mg uncoated tablet, 100 36246011000036104 Chlorquin 250 mg uncoated tablet 35869011000036107 Chlorquin 35869011000036107 Chlorquin 38800011000036108 chloroquine phosphate 250 mg tablet, 100 38011011000036100 chloroquine phosphate 250 mg tablet 37722011000036109 chloroquine +681791000168101 Esomeprazole (Apotex) 20 mg enteric tablet, 15, blister pack 210849 681781000168104 Esomeprazole (Apotex) 20 mg enteric tablet, 15 681751000168106 Esomeprazole (Apotex) 20 mg enteric tablet 681651000168102 Esomeprazole (Apotex) 681651000168102 Esomeprazole (Apotex) 681261000168103 esomeprazole 20 mg enteric tablet, 15 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +1097151000168107 Binosto 70 mg effervescent tablet, 4, blister pack 177983 1097141000168105 Binosto 70 mg effervescent tablet, 4 1097041000168106 Binosto 70 mg effervescent tablet 1096991000168102 Binosto 1096991000168102 Binosto 1097131000168101 alendronate 70 mg effervescent tablet, 4 1097031000168102 alendronate 70 mg effervescent tablet 21736011000036109 alendronate +926750011000036105 Primovist 907.1 mg/5 mL injection solution, 10 x 5 mL vials 102088 926060011000036100 Primovist 907.1 mg/5 mL injection solution, 10 x 5 mL vials 925622011000036101 Primovist 907.1 mg/5 mL injection solution, 5 mL vial 920914011000036108 Primovist 920914011000036108 Primovist 927292011000036107 gadoxetate disodium 907.1 mg/5 mL injection, 10 x 5 mL vials 926980011000036107 gadoxetate disodium 907.1 mg/5 mL injection, vial 922038011000036107 gadoxetic acid +851931000168103 Entecavir (Sandoz) 1 mg film-coated tablet, 30, blister pack 227418 851921000168101 Entecavir (Sandoz) 1 mg film-coated tablet, 30 851911000168108 Entecavir (Sandoz) 1 mg film-coated tablet 851901000168105 Entecavir (Sandoz) 851901000168105 Entecavir (Sandoz) 829461000168104 entecavir 1 mg tablet, 30 829441000168103 entecavir 1 mg tablet 21490011000036108 entecavir +1031971000168103 Aripra 20 mg uncoated tablet, 30, blister pack 217233 1031961000168109 Aripra 20 mg uncoated tablet, 30 1031951000168107 Aripra 20 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 28027011000036100 aripiprazole 20 mg tablet, 30 23350011000036104 aripiprazole 20 mg tablet 21675011000036108 aripiprazole +1039361000168106 Atorvastatin (GA) 10 mg film-coated tablet, 30, blister pack 178539 1039351000168109 Atorvastatin (GA) 10 mg film-coated tablet, 30 1039301000168105 Atorvastatin (GA) 10 mg film-coated tablet 1038591000168104 Atorvastatin (GA) 1038591000168104 Atorvastatin (GA) 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +934391000168108 Centevo 175/43.75/200 mg film-coated tablet, 130, bottle 238858 934381000168105 Centevo 175/43.75/200 mg film-coated tablet, 130 934121000168109 Centevo 175/43.75/200 mg film-coated tablet 934101000168100 Centevo 175/43.75/200 mg 934101000168100 Centevo 175/43.75/200 mg 934371000168107 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet, 130 934111000168102 levodopa 175 mg + carbidopa 43.75 mg + entacapone 200 mg tablet 21653011000036109 levodopa + carbidopa + entacapone +706291000168108 Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial 120501 706281000168105 Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial 703081000168108 Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial 703071000168105 Keppra IV 703071000168105 Keppra IV 46170011000036100 levetiracetam 500 mg/5 mL injection, 5 mL vial 45019011000036106 levetiracetam 500 mg/5 mL injection, vial 21766011000036102 levetiracetam +843471000168105 Utrogestan 200 mg shell pessary, 28, blister pack 232824 843461000168104 Utrogestan 200 mg shell pessary, 28 843121000168101 Utrogestan 200 mg shell pessary 842981000168107 Utrogestan 842981000168107 Utrogestan 843451000168101 progesterone 200 mg pessary, 28 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +18602011000036104 Marevan 5 mg uncoated tablet, 50, bottle 12514 11789011000036105 Marevan 5 mg uncoated tablet, 50 5000011000036102 Marevan 5 mg uncoated tablet 3189011000036109 Marevan 3189011000036109 Marevan 27095011000036106 warfarin sodium 5 mg tablet, 50 22464011000036101 warfarin sodium 5 mg tablet 21248011000036104 warfarin +86848011000036104 Aqueous Cream (Orion) cream, 100 g, tube 86726011000036103 Aqueous Cream (Orion) cream, 100 g 86615011000036106 Aqueous Cream (Orion) cream 76014011000036100 Aqueous Cream (Orion) 76014011000036100 Aqueous Cream (Orion) 86997011000036103 liquid paraffin + white soft paraffin + water purified + emulsifying wax cream, 100 g 86910011000036103 liquid paraffin + white soft paraffin + water purified + emulsifying wax cream 86899011000036103 liquid paraffin + white soft paraffin + water purified + emulsifying wax +659281000168102 Olanzapine (AN) 7.5 mg film-coated tablet, 28, blister pack 178992 659271000168100 Olanzapine (AN) 7.5 mg film-coated tablet, 28 659261000168106 Olanzapine (AN) 7.5 mg film-coated tablet 659161000168100 Olanzapine (AN) 659161000168100 Olanzapine (AN) 27370011000036108 olanzapine 7.5 mg tablet, 28 22720011000036109 olanzapine 7.5 mg tablet 21485011000036103 olanzapine +34728011000036104 Methadone Hydrochloride Syrup (Orion) 4.5 mg/mL oral liquid solution, 20 mL, bottle 21186 34312011000036106 Methadone Hydrochloride Syrup (Orion) 4.5 mg/mL oral liquid solution, 20 mL 34035011000036105 Methadone Hydrochloride Syrup (Orion) 4.5 mg/mL oral liquid solution 3251000168107 Methadone Hydrochloride Syrup (Orion) 3251000168107 Methadone Hydrochloride Syrup (Orion) 35161011000036100 methadone hydrochloride 4.5 mg/mL oral liquid, 20 mL 34883011000036100 methadone hydrochloride 4.5 mg/mL oral liquid 21357011000036109 methadone +933238931000036104 Fentanyl (Sandoz) 100 microgram/hour patch, 1, sachet 152576 933236161000036108 Fentanyl (Sandoz) 100 microgram/hour patch, 1 933234501000036106 Fentanyl (Sandoz) 100 microgram/hour patch 933234321000036106 Fentanyl (Sandoz) 933234321000036106 Fentanyl (Sandoz) 933236171000036100 fentanyl 100 microgram/hour patch, 1 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +997571000168101 Duloxetine (Apotex) 60 mg enteric capsule, 28, blister pack 195360 997561000168107 Duloxetine (Apotex) 60 mg enteric capsule, 28 997531000168104 Duloxetine (Apotex) 60 mg enteric capsule 997521000168102 Duloxetine (Apotex) 997521000168102 Duloxetine (Apotex) 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +83388011000036101 Lisinopril (GA) 5 mg uncoated tablet, 100, blister pack 106500 83300011000036104 Lisinopril (GA) 5 mg uncoated tablet, 100 83237011000036103 Lisinopril (GA) 5 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 83478011000036103 lisinopril 5 mg tablet, 100 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +931359011000036102 Cold Sore (Guardian) 5% cream, 5 g, tube 106586 930548011000036102 Cold Sore (Guardian) 5% cream, 5 g 929925011000036102 Cold Sore (Guardian) 5% cream 929837011000036100 Cold Sore (Guardian) 929837011000036100 Cold Sore (Guardian) 46472011000036102 aciclovir 5% cream, 5 g 45172011000036103 aciclovir 5% cream 21239011000036106 aciclovir +931774011000036104 Concerta 18 mg modified release tablet, 28, bottle 93862 930934011000036102 Concerta 18 mg modified release tablet, 28 7353011000036100 Concerta 18 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932503011000036107 methylphenidate hydrochloride 18 mg modified release tablet, 28 23437011000036109 methylphenidate hydrochloride 18 mg modified release tablet 21277011000036101 methylphenidate +24551000036109 Atorvachol 10 mg film-coated tablet, 30, blister pack 178535 22661000036101 Atorvachol 10 mg film-coated tablet, 30 20661000036102 Atorvachol 10 mg film-coated tablet 19871000036105 Atorvachol 19871000036105 Atorvachol 27436011000036104 atorvastatin 10 mg tablet, 30 22783011000036107 atorvastatin 10 mg tablet 21343011000036103 atorvastatin +60383011000036108 Acid and Heartburn Relief (GenRx) 150 mg film-coated tablet, 28, blister pack 143188 56342011000036101 Acid and Heartburn Relief (GenRx) 150 mg film-coated tablet, 28 53884011000036107 Acid and Heartburn Relief (GenRx) 150 mg film-coated tablet 53139011000036105 Acid and Heartburn Relief (GenRx) 53139011000036105 Acid and Heartburn Relief (GenRx) 46865011000036107 ranitidine 150 mg tablet, 28 23530011000036102 ranitidine 150 mg tablet 21682011000036109 ranitidine +20676011000036107 Omnitrope 5 mg/1.5 mL injection, 1.5 mL cartridge 82211 13855011000036107 Omnitrope 5 mg/1.5 mL injection, 1.5 mL cartridge 7142011000036100 Omnitrope 5 mg/1.5 mL injection, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 28298011000036100 somatropin 5 mg/1.5 mL injection, 1.5 mL cartridge 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +77313011000036102 Water for Irrigation (Baxter) irrigation solution, 10 x 1 L bottles 35657 76729011000036106 Water for Irrigation (Baxter) irrigation solution, 10 x 1 L bottles 76145011000036100 Water for Irrigation (Baxter) irrigation solution, 1 L bottle 75966011000036101 Water for Irrigation (Baxter) 75966011000036101 Water for Irrigation (Baxter) 78243011000036108 water for irrigation solution, 10 x 1 L bottles 77567011000036109 water for irrigation solution, 1 L bottle 77440011000036107 water for irrigation +909701000168106 Chorit 40 mg film-coated tablet, 6, blister pack 179835 909691000168106 Chorit 40 mg film-coated tablet, 6 909681000168108 Chorit 40 mg film-coated tablet 909221000168107 Chorit 909221000168107 Chorit 841061000168108 atorvastatin 40 mg tablet, 6 22785011000036108 atorvastatin 40 mg tablet 21343011000036103 atorvastatin +916871000168101 Amitriptyline (RS) 25 mg tablet, 250, bottle 232143 916861000168107 Amitriptyline (RS) 25 mg tablet, 250 866541000168102 Amitriptyline (RS) 25 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 863131000168107 amitriptyline hydrochloride 25 mg tablet, 250 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +728121000168108 Ovidrel 250 microgram/0.5 mL injection solution, 1 dose, injection device 170446 728111000168101 Ovidrel 250 microgram/0.5 mL injection solution, 1 dose 728091000168109 Ovidrel 250 microgram/0.5 mL injection solution, dose 4186011000036103 Ovidrel 4186011000036103 Ovidrel 728101000168104 choriogonadotropin alfa 250 microgram/0.5 mL injection, 1 dose 728081000168106 choriogonadotropin alfa 250 microgram/0.5 mL injection, dose 21430011000036104 choriogonadotropin alfa +110941000036105 Finasteride (Alphapharm) 5 mg film-coated tablet, 30, blister pack 186305 109211000036109 Finasteride (Alphapharm) 5 mg film-coated tablet, 30 106991000036104 Finasteride (Alphapharm) 5 mg film-coated tablet 106421000036105 Finasteride (Alphapharm) 106421000036105 Finasteride (Alphapharm) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +20829011000036108 Pegasys-RBV (4 x 180 microgram syringes, 168 x 200 mg tablets), 1 pack, composite pack 91843 13992011000036104 Pegasys-RBV (4 x 180 microgram syringes, 168 x 200 mg tablets), 1 pack 7272011000036103 Pegasys 180 microgram/0.5 mL injection solution, 0.5 mL syringe 4316011000036108 Pegasys-RBV 3349011000036109 Pegasys 28057011000036101 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [168], 1 pack 23371011000036109 peginterferon alfa-2a 180 microgram/0.5 mL injection, syringe 21788011000036101 peginterferon alfa-2a +20829011000036108 Pegasys-RBV (4 x 180 microgram syringes, 168 x 200 mg tablets), 1 pack, composite pack 91843 13992011000036104 Pegasys-RBV (4 x 180 microgram syringes, 168 x 200 mg tablets), 1 pack 7273011000036105 Copegus 200 mg film-coated tablet, 1 tablet 4316011000036108 Pegasys-RBV 3042011000036103 Copegus 28057011000036101 peginterferon alfa-2a 180 microgram/0.5 mL injection [4 x 0.5 mL syringes] (&) ribavirin 200 mg tablet [168], 1 pack 23372011000036103 ribavirin 200 mg tablet 21714011000036106 ribavirin +993231000168105 Gliclazide MR (Apotex) 30 mg modified release tablet, 100, blister pack 151305 993221000168107 Gliclazide MR (Apotex) 30 mg modified release tablet, 100 993211000168100 Gliclazide MR (Apotex) 30 mg modified release tablet 993181000168104 Gliclazide MR (Apotex) 993181000168104 Gliclazide MR (Apotex) 27898011000036101 gliclazide 30 mg modified release tablet, 100 23223011000036101 gliclazide 30 mg modified release tablet 21867011000036102 gliclazide +933240071000036100 Dobutrex 250 mg/20 mL injection solution, 20 mL vial 42993 933237221000036107 Dobutrex 250 mg/20 mL injection solution, 20 mL vial 933234731000036109 Dobutrex 250 mg/20 mL injection solution, 20 mL vial 36000011000036102 Dobutrex 36000011000036102 Dobutrex 46460011000036105 dobutamine 250 mg/20 mL injection, 20 mL vial 45168011000036108 dobutamine 250 mg/20 mL injection, vial 37709011000036107 dobutamine +780071000168104 Fentanyl (Apo) 25 microgram/hour patch, 4, sachet 152574 780061000168105 Fentanyl (Apo) 25 microgram/hour patch, 4 779971000168100 Fentanyl (Apo) 25 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933235801000036105 fentanyl 25 microgram/hour patch, 4 22053011000036102 fentanyl 25 microgram/hour patch 21258011000036102 fentanyl +864951000168101 Amitriptyline (GXP) 25 mg tablet, 250, bottle 232131 864941000168103 Amitriptyline (GXP) 25 mg tablet, 250 864821000168101 Amitriptyline (GXP) 25 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 863131000168107 amitriptyline hydrochloride 25 mg tablet, 250 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +921211000168107 Ciaxone 750 mg film-coated tablet, 14, blister pack 90910 921201000168109 Ciaxone 750 mg film-coated tablet, 14 921191000168106 Ciaxone 750 mg film-coated tablet 921121000168109 Ciaxone 921121000168109 Ciaxone 28202011000036100 ciprofloxacin 750 mg tablet, 14 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +44217011000036102 Ogen 1.25 mg uncoated tablet, 100, bottle 56973 41693011000036101 Ogen 1.25 mg uncoated tablet, 100 6119011000036101 Ogen 1.25 mg uncoated tablet 3105011000036108 Ogen 3105011000036108 Ogen 46510011000036100 oestrone sulfate sodium 1.25 mg tablet, 100 22745011000036102 oestrone sulfate sodium 1.25 mg tablet 21299011000036103 oestrone sulfate sodium +77186011000036103 Lisinopril (GA) 20 mg uncoated tablet, 84, blister pack 106502 76574011000036105 Lisinopril (GA) 20 mg uncoated tablet, 84 76047011000036100 Lisinopril (GA) 20 mg uncoated tablet 76011011000036103 Lisinopril (GA) 76011011000036103 Lisinopril (GA) 78129011000036106 lisinopril 20 mg tablet, 84 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +682111000168100 Sildenafil (DRx) 20 mg film-coated tablet, 90, blister pack 186295 682101000168103 Sildenafil (DRx) 20 mg film-coated tablet, 90 682091000168108 Sildenafil (DRx) 20 mg film-coated tablet 682081000168105 Sildenafil (DRx) 682081000168105 Sildenafil (DRx) 26702011000036102 sildenafil 20 mg tablet, 90 22097011000036104 sildenafil 20 mg tablet 21529011000036101 sildenafil +849191000168101 Vzole 50 mg film-coated tablet, 14, blister pack 238239 849181000168104 Vzole 50 mg film-coated tablet, 14 849131000168100 Vzole 50 mg film-coated tablet 849001000168108 Vzole 849001000168108 Vzole 46813011000036107 voriconazole 50 mg tablet, 14 45324011000036101 voriconazole 50 mg tablet 44875011000036105 voriconazole +59948011000036104 Xylocaine 5% ointment, 15 g, tube 12005 55910011000036103 Xylocaine 5% ointment, 15 g 53706011000036102 Xylocaine 5% ointment 2651000168102 Xylocaine 2651000168102 Xylocaine 63153011000036107 lidocaine (lignocaine) 5% ointment, 15 g 61873011000036105 lidocaine (lignocaine) 5% ointment 21572011000036107 lidocaine (lignocaine) +830471000168103 Atomoxetine (Apo) 25 mg hard capsule, 14, blister pack 234804 830461000168109 Atomoxetine (Apo) 25 mg hard capsule, 14 830421000168104 Atomoxetine (Apo) 25 mg hard capsule 829881000168105 Atomoxetine (Apo) 829881000168105 Atomoxetine (Apo) 830451000168107 atomoxetine 25 mg capsule, 14 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +774201000168100 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 60, blister pack 210274 774191000168103 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet, 60 774051000168109 Duro-Tuss Chesty Cough Tablet Forte uncoated tablet 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 773921000168104 Duro-Tuss Chesty Cough Tablet Forte 774181000168101 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet, 60 774041000168107 bromhexine hydrochloride 8 mg + guaifenesin 200 mg tablet 61758011000036100 bromhexine + guaifenesin +1047861000168106 Bupretec 10 microgram/hour patch, 4, sachet 234731 1047851000168109 Bupretec 10 microgram/hour patch, 4 1047691000168103 Bupretec 10 microgram/hour patch 1047401000168107 Bupretec 1047401000168107 Bupretec 1046681000168103 buprenorphine 10 microgram/hour patch, 4 22077011000036108 buprenorphine 10 microgram/hour patch 21232011000036101 buprenorphine +39171000036106 Exemestane (Pharmacor) 25 mg film-coated tablet, 15, blister pack 167858 35571000036103 Exemestane (Pharmacor) 25 mg film-coated tablet, 15 32451000036100 Exemestane (Pharmacor) 25 mg film-coated tablet 32281000036106 Exemestane (Pharmacor) 32281000036106 Exemestane (Pharmacor) 933205271000036107 exemestane 25 mg tablet, 15 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +73303011000036106 Jurnista 64 mg modified release tablet, 10, blister pack 141535 73101011000036101 Jurnista 64 mg modified release tablet, 10 72957011000036105 Jurnista 64 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73499011000036100 hydromorphone hydrochloride 64 mg modified release tablet, 10 73373011000036100 hydromorphone hydrochloride 64 mg modified release tablet 21480011000036107 hydromorphone +925212011000036109 Glimaccord 2 mg uncoated tablet, 30, blister pack 156405 924749011000036107 Glimaccord 2 mg uncoated tablet, 30 924454011000036103 Glimaccord 2 mg uncoated tablet 924395011000036104 Glimaccord 924395011000036104 Glimaccord 28148011000036109 glimepiride 2 mg tablet, 30 23457011000036105 glimepiride 2 mg tablet 21280011000036108 glimepiride +19907011000036101 Zerit 1 mg/mL powder for oral liquid, 200 mL, bottle 66111 13152011000036105 Zerit 1 mg/mL powder for oral liquid, 200 mL 6435011000036107 Zerit 1 mg/mL powder for oral liquid 4053011000036106 Zerit 4053011000036106 Zerit 27579011000036100 stavudine 1 mg/mL powder for oral liquid, 200 mL 22918011000036109 stavudine 1 mg/mL powder for oral liquid 21314011000036107 stavudine +19227011000036108 Doxorubicin Hydrochloride (DBL) 50 mg/25 mL injection solution, 25 mL vial 47281 12517011000036101 Doxorubicin Hydrochloride (DBL) 50 mg/25 mL injection solution, 25 mL vial 5674011000036105 Doxorubicin Hydrochloride (DBL) 50 mg/25 mL injection solution, 25 mL vial 3549011000036106 Doxorubicin Hydrochloride (DBL) 3549011000036106 Doxorubicin Hydrochloride (DBL) 27169011000036101 doxorubicin hydrochloride 50 mg/25 mL injection, 25 mL vial 22531011000036104 doxorubicin hydrochloride 50 mg/25 mL injection, vial 21638011000036100 doxorubicin +933214531000036105 Levetiracetam (Lupin) 500 mg film-coated tablet, 60, blister pack 161283 933203891000036109 Levetiracetam (Lupin) 500 mg film-coated tablet, 60 933195921000036101 Levetiracetam (Lupin) 500 mg film-coated tablet 933193761000036107 Levetiracetam (Lupin) 933193761000036107 Levetiracetam (Lupin) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +165571000036102 Fluvax 2014 injection suspension, 1 x 0.5 mL syringe 117397 163621000036101 Fluvax 2014 injection suspension, 1 x 0.5 mL syringe 162551000036100 Fluvax 2014 injection suspension, 0.5 mL syringe 23961000168107 Fluvax 2014 23961000168107 Fluvax 2014 163631000036104 influenza trivalent adult vaccine 2014 injection, 1 x 0.5 mL syringe 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +912591000168104 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet, 10, blister pack 198386 912581000168102 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet, 10 912541000168107 Candesartan Hydrochlorothiazide 32/12.5 (RZ) uncoated tablet 912531000168103 Candesartan Hydrochlorothiazide 32/12.5 (RZ) 912531000168103 Candesartan Hydrochlorothiazide 32/12.5 (RZ) 890561000168103 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 10 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +719581000168104 Artelac 0.2% / 1% eye gel, 10 g, tube 719571000168102 Artelac 0.2% / 1% eye gel, 10 g 719551000168106 Artelac 0.2% / 1% eye gel 55621000168109 Artelac 0.2% / 1% 55621000168109 Artelac 0.2% / 1% 719561000168108 carbomer-980 0.2% + triglyceride lipids 1% eye gel, 10 g 719541000168109 carbomer-980 0.2% + triglyceride lipids 1% eye gel 719531000168100 carbomer-980 + triglyceride lipids +18893011000036104 Pilopt 0.5% eye drops solution, 15 mL, bottle 19759 12201011000036102 Pilopt 0.5% eye drops solution, 15 mL 5383011000036108 Pilopt 0.5% eye drops solution 3693011000036106 Pilopt 3693011000036106 Pilopt 27787011000036100 pilocarpine hydrochloride 0.5% eye drops, 15 mL 23117011000036103 pilocarpine hydrochloride 0.5% eye drops 21254011000036109 pilocarpine +762711000168108 Reddaza 100 mg powder for injection, 1 vial 231946 762701000168105 Reddaza 100 mg powder for injection, 1 vial 762691000168105 Reddaza 100 mg powder for injection, 100 mg vial 762681000168107 Reddaza 762681000168107 Reddaza 85181011000036108 azacitidine 100 mg injection, 1 vial 85086011000036105 azacitidine 100 mg injection, vial 85069011000036104 azacitidine +929731000168107 Pristiq 200 mg modified release tablet, 28, blister pack 133529 929721000168109 Pristiq 200 mg modified release tablet, 28 929671000168101 Pristiq 200 mg modified release tablet 52378011000036100 Pristiq 52378011000036100 Pristiq 929711000168102 desvenlafaxine 200 mg modified release tablet, 28 929661000168107 desvenlafaxine 200 mg modified release tablet 52799011000036104 desvenlafaxine +748261000168106 Docetaxel (Astron) 160 mg/8 mL concentrated injection, 8 mL vial 209470 748251000168109 Docetaxel (Astron) 160 mg/8 mL concentrated injection, 8 mL vial 748231000168103 Docetaxel (Astron) 160 mg/8 mL concentrated injection, 8 mL vial 747931000168105 Docetaxel (Astron) 747931000168105 Docetaxel (Astron) 748241000168107 docetaxel 160 mg/8 mL injection, 8 mL vial 748221000168101 docetaxel 160 mg/8 mL injection, vial 21721011000036101 docetaxel +788681000168107 Gemcitabine (Agila) 200 mg powder for injection, 10 vials 177644 788671000168109 Gemcitabine (Agila) 200 mg powder for injection, 10 vials 788611000168101 Gemcitabine (Agila) 200 mg powder for injection, 200 mg vial 788601000168104 Gemcitabine (Agila) 788601000168104 Gemcitabine (Agila) 788661000168103 gemcitabine 200 mg injection, 10 vials 22592011000036103 gemcitabine 200 mg injection, vial 21644011000036108 gemcitabine +44715011000036103 Chirocaine 125 mg/100 mL injection solution, 60 x 100 mL bags 94480 42160011000036108 Chirocaine 125 mg/100 mL injection solution, 60 x 100 mL bags 40371011000036108 Chirocaine 125 mg/100 mL injection solution, 100 mL bag 39571011000036107 Chirocaine 39571011000036107 Chirocaine 46921011000036106 levobupivacaine 125 mg/100 mL injection, 60 x 100 mL bags 45346011000036106 levobupivacaine 125 mg/100 mL injection, bag 44881011000036100 levobupivacaine +21206011000036105 Zofran 4 mg film-coated tablet, 10, blister pack 9979 14345011000036109 Zofran 4 mg film-coated tablet, 10 7628011000036103 Zofran 4 mg film-coated tablet 2471000168108 Zofran 2471000168108 Zofran 28335011000036108 ondansetron 4 mg tablet, 10 23646011000036107 ondansetron 4 mg tablet 21545011000036100 ondansetron +24271000036101 Cadatin 10/10 film-coated tablet, 30, blister pack 179140 22751000036109 Cadatin 10/10 film-coated tablet, 30 20051000036108 Cadatin 10/10 film-coated tablet 54051000168106 Cadatin 10/10 54051000168106 Cadatin 10/10 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +782881000168109 Palexia IR 50 mg film-coated tablet, 40, blister pack 165310 782871000168106 Palexia IR 50 mg film-coated tablet, 40 782671000168107 Palexia IR 50 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 782861000168100 tapentadol 50 mg tablet, 40 782661000168101 tapentadol 50 mg tablet 135971000036102 tapentadol +43808011000036105 Zorac 0.1% cream, 15 g, tube 101327 41115011000036102 Zorac 0.1% cream, 15 g 39887011000036108 Zorac 0.1% cream 39675011000036100 Zorac 39675011000036100 Zorac 46097011000036103 tazarotene 0.1% cream, 15 g 44985011000036108 tazarotene 0.1% cream 44886011000036105 tazarotene +964391000168104 Normatens 300 microgram film-coated tablet, 56, blister pack 114123 964381000168102 Normatens 300 microgram film-coated tablet, 56 964211000168100 Normatens 300 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964371000168100 moxonidine 300 microgram tablet, 56 964201000168103 moxonidine 300 microgram tablet 21658011000036104 moxonidine +34745011000036108 Dicodin 90 mg modified release tablet, 56, bottle 47718 34328011000036103 Dicodin 90 mg modified release tablet, 56 34045011000036106 Dicodin 90 mg modified release tablet 33938011000036107 Dicodin 33938011000036107 Dicodin 35176011000036100 dihydrocodeine tartrate 90 mg modified release tablet, 56 34890011000036109 dihydrocodeine tartrate 90 mg modified release tablet 34841011000036108 dihydrocodeine +110871000036107 Citalo 20 mg film-coated tablet, 500, bottle 158874 109071000036107 Citalo 20 mg film-coated tablet, 500 930005011000036103 Citalo 20 mg film-coated tablet 929886011000036107 Citalo 929886011000036107 Citalo 933203261000036103 citalopram 20 mg tablet, 500 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +864991000168106 Amitriptyline (GXP) 10 mg tablet, 250, bottle 232129 864981000168108 Amitriptyline (GXP) 10 mg tablet, 250 864681000168101 Amitriptyline (GXP) 10 mg tablet 864671000168104 Amitriptyline (GXP) 864671000168104 Amitriptyline (GXP) 814991000168107 amitriptyline hydrochloride 10 mg tablet, 250 23026011000036104 amitriptyline hydrochloride 10 mg tablet 21407011000036107 amitriptyline +922026011000036105 Sebitar Reformulation solution, 500 mL, bottle 98850 921584011000036108 Sebitar Reformulation solution, 500 mL 921099011000036106 Sebitar Reformulation solution 25801000036107 Sebitar Reformulation 25801000036107 Sebitar Reformulation 922697011000036109 tar 1% + coal tar solution 1% + salicylic acid 2% solution, 500 mL 922163011000036103 tar 1% + coal tar solution 1% + salicylic acid 2% solution 922057011000036107 tar + coal tar solution + salicylic acid +39251000036108 Lipitor 20 mg film-coated tablet, 10, blister pack 168341 35701000036103 Lipitor 20 mg film-coated tablet, 10 6205011000036102 Lipitor 20 mg film-coated tablet 3877011000036101 Lipitor 3877011000036101 Lipitor 35711000036101 atorvastatin 20 mg tablet, 10 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +1070961000168102 Paracodeine with Calmative uncoated tablet, 20, blister pack 223883 1070951000168104 Paracodeine with Calmative uncoated tablet, 20 1070941000168101 Paracodeine with Calmative uncoated tablet 1070931000168105 Paracodeine with Calmative 1070931000168105 Paracodeine with Calmative 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +931647011000036102 Calcium Folinate (Ebewe) 1 g/100 mL injection, 100 mL vial 166260 930807011000036107 Calcium Folinate (Ebewe) 1 g/100 mL injection, 100 mL vial 930056011000036101 Calcium Folinate (Ebewe) 1 g/100 mL injection, 100 mL vial 929362011000036108 Calcium Folinate (Ebewe) 929362011000036108 Calcium Folinate (Ebewe) 932420011000036103 folinic acid 1 g/100 mL injection, 100 mL vial 931855011000036101 folinic acid 1 g/100 mL injection, vial 21617011000036108 folinic acid +82111000036104 Octreotide (Sun) 50 microgram/mL injection solution, 5 x 1 mL ampoules 184895 80641000036105 Octreotide (Sun) 50 microgram/mL injection solution, 5 x 1 mL ampoules 78341000036106 Octreotide (Sun) 50 microgram/mL injection solution, ampoule 78111000036108 Octreotide (Sun) 78111000036108 Octreotide (Sun) 27090011000036102 octreotide 50 microgram/mL injection, 5 x 1 mL ampoules 22459011000036105 octreotide 50 microgram/mL injection, ampoule 21316011000036104 octreotide +86093011000036102 Ciprofloxacin (DRLA) 500 mg film-coated tablet, 14, blister pack 127784 85624011000036102 Ciprofloxacin (DRLA) 500 mg film-coated tablet, 14 85301011000036100 Ciprofloxacin (DRLA) 500 mg film-coated tablet 85271011000036103 Ciprofloxacin (DRLA) 85271011000036103 Ciprofloxacin (DRLA) 28201011000036106 ciprofloxacin 500 mg tablet, 14 23513011000036104 ciprofloxacin 500 mg tablet 21245011000036105 ciprofloxacin +35667011000036107 Vistil 1.4% eye drops solution, 15 mL, bottle 35575011000036102 Vistil 1.4% eye drops solution, 15 mL 35452011000036102 Vistil 1.4% eye drops solution 35441011000036105 Vistil 35441011000036105 Vistil 35772011000036106 polyvinyl alcohol 1.4% eye drops, 15 mL 35713011000036107 polyvinyl alcohol 1.4% eye drops 35687011000036109 polyvinyl alcohol +1073841000168103 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 100, blister pack 230261 824381000168101 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet, 100 824371000168104 Paracetamol Pain Relief (Apohealth) 500 mg film-coated tablet 824361000168105 Paracetamol Pain Relief (Apohealth) 824361000168105 Paracetamol Pain Relief (Apohealth) 28314011000036104 paracetamol 500 mg tablet, 100 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +926921000168104 Ipratrin Uni-Dose 500 microgram/2 mL inhalation solution, 10 x 2 mL ampoules 58163 926911000168106 Ipratrin Uni-Dose 500 microgram/2 mL inhalation solution, 10 x 2 mL ampoules 926891000168109 Ipratrin Uni-Dose 500 microgram/2 mL inhalation solution, 2 mL ampoule 50471000168100 Ipratrin Uni-Dose 50471000168100 Ipratrin Uni-Dose 926901000168108 ipratropium bromide 500 microgram/2 mL inhalation solution, 10 x 2 mL ampoules 926881000168106 ipratropium bromide 500 microgram/2 mL inhalation solution, ampoule 21512011000036101 ipratropium +131251000036100 Candesartan Cilexetil (Stada) 16 mg uncoated tablet, 30, bottle 195494 128321000036105 Candesartan Cilexetil (Stada) 16 mg uncoated tablet, 30 125161000036105 Candesartan Cilexetil (Stada) 16 mg uncoated tablet 124111000036109 Candesartan Cilexetil (Stada) 124111000036109 Candesartan Cilexetil (Stada) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +659031000168107 Mizart HCT 80/12.5 mg multilayer tablet, 28, blister pack 171086 659011000168102 Mizart HCT 80/12.5 mg multilayer tablet, 28 659001000168100 Mizart HCT 80/12.5 mg multilayer tablet 658991000168100 Mizart HCT 80/12.5 mg 658991000168100 Mizart HCT 80/12.5 mg 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +37450011000036100 Prostin F2 Alpha 5 mg/mL injection solution, 1 mL ampoule 12327 36722011000036108 Prostin F2 Alpha 5 mg/mL injection solution, 1 mL ampoule 36089011000036107 Prostin F2 Alpha 5 mg/mL injection solution, ampoule 35431000168108 Prostin F2 Alpha 35431000168108 Prostin F2 Alpha 38632011000036107 dinoprost 5 mg/mL injection, 1 mL ampoule 37891011000036109 dinoprost 5 mg/mL injection, ampoule 37749011000036101 dinoprost +1101171000168103 Docetaxel (Winthrop) 80 mg/4 mL concentrated injection, 4 mL vial 161372 1101161000168109 Docetaxel (Winthrop) 80 mg/4 mL concentrated injection, 4 mL vial 1101151000168107 Docetaxel (Winthrop) 80 mg/4 mL concentrated injection, 4 mL vial 1101141000168105 Docetaxel (Winthrop) 1101141000168105 Docetaxel (Winthrop) 925428011000036100 docetaxel 80 mg/4 mL injection, 4 mL vial 925384011000036109 docetaxel 80 mg/4 mL injection, vial 21721011000036101 docetaxel +901041000168109 Capex 150 mg film-coated tablet, 120, blister pack 213040 901031000168100 Capex 150 mg film-coated tablet, 120 900981000168108 Capex 150 mg film-coated tablet 900971000168105 Capex 900971000168105 Capex 667721000168108 capecitabine 150 mg tablet, 120 23112011000036100 capecitabine 150 mg tablet 21356011000036106 capecitabine +18245011000036102 Pravastatin Sodium (Winthrop) 10 mg uncoated tablet, 30, blister pack 130845 11907011000036105 Pravastatin Sodium (Winthrop) 10 mg uncoated tablet, 30 5751011000036101 Pravastatin Sodium (Winthrop) 10 mg uncoated tablet 3660011000036101 Pravastatin Sodium (Winthrop) 3660011000036101 Pravastatin Sodium (Winthrop) 28258011000036109 pravastatin sodium 10 mg tablet, 30 23572011000036100 pravastatin sodium 10 mg tablet 21606011000036107 pravastatin +713781000168107 Levetiracetam (Auro) 500 mg film-coated tablet, 60, blister pack 182813 713771000168109 Levetiracetam (Auro) 500 mg film-coated tablet, 60 713761000168103 Levetiracetam (Auro) 500 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 27843011000036103 levetiracetam 500 mg tablet, 60 23171011000036100 levetiracetam 500 mg tablet 21766011000036102 levetiracetam +34624011000036104 Tussinol Linctus 1 mg/mL oral liquid solution, 200 mL, bottle 10755 34215011000036108 Tussinol Linctus 1 mg/mL oral liquid solution, 200 mL 33967011000036103 Tussinol Linctus 1 mg/mL oral liquid solution 33960011000036104 Tussinol Linctus 33960011000036104 Tussinol Linctus 35165011000036103 pholcodine 1 mg/mL oral liquid, 200 mL 22382011000036101 pholcodine 1 mg/mL oral liquid 21705011000036108 pholcodine +1030601000168109 Atilos 45 mg uncoated tablet, 7, blister pack 173478 1030591000168102 Atilos 45 mg uncoated tablet, 7 1030581000168100 Atilos 45 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +131411000036100 Candesartan Cilexetil HCT 32/12.5 (Stada) uncoated tablet, 30, bottle 196388 128701000036101 Candesartan Cilexetil HCT 32/12.5 (Stada) uncoated tablet, 30 124971000036101 Candesartan Cilexetil HCT 32/12.5 (Stada) uncoated tablet 10311000168106 Candesartan Cilexetil HCT 32/12.5 (Stada) 10311000168106 Candesartan Cilexetil HCT 32/12.5 (Stada) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +857821000168104 Doxorubicin (ACC) 200 mg/100 mL concentrated injection, 100 mL vial 174248 857811000168106 Doxorubicin (ACC) 200 mg/100 mL concentrated injection, 100 mL vial 857801000168108 Doxorubicin (ACC) 200 mg/100 mL concentrated injection, 100 mL vial 857791000168107 Doxorubicin (ACC) 857791000168107 Doxorubicin (ACC) 33809011000036103 doxorubicin hydrochloride 200 mg/100 mL injection, 100 mL vial 33680011000036101 doxorubicin hydrochloride 200 mg/100 mL injection, vial 21638011000036100 doxorubicin +921141000168103 Cilopam 20 mg film-coated tablet, 100, bottle 158865 921131000168107 Cilopam 20 mg film-coated tablet, 100 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 46708011000036102 citalopram 20 mg tablet, 100 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +869291000168101 Pacrolim 5 mg hard capsule, 100, blister pack 224271 869281000168104 Pacrolim 5 mg hard capsule, 100 869201000168107 Pacrolim 5 mg hard capsule 869051000168103 Pacrolim 869051000168103 Pacrolim 652651000168101 tacrolimus 5 mg capsule, 100 22770011000036105 tacrolimus 5 mg capsule 21380011000036104 tacrolimus +18622011000036106 Ondansetron (Pfizer (Perth)) 8 mg/4 mL injection solution, 4 mL ampoule 128253 11857011000036107 Ondansetron (Pfizer (Perth)) 8 mg/4 mL injection solution, 4 mL ampoule 5882011000036103 Ondansetron (Pfizer (Perth)) 8 mg/4 mL injection solution, 4 mL ampoule 3818011000036107 Ondansetron (Pfizer (Perth)) 3818011000036107 Ondansetron (Pfizer (Perth)) 27164011000036102 ondansetron 8 mg/4 mL injection, 4 mL ampoule 22526011000036106 ondansetron 8 mg/4 mL injection, ampoule 21545011000036100 ondansetron +777101000168104 Neostigmine (Juno) 2.5 mg/mL injection solution, 10 x 1 mL ampoules 219054 777091000168109 Neostigmine (Juno) 2.5 mg/mL injection solution, 10 x 1 mL ampoules 777071000168108 Neostigmine (Juno) 2.5 mg/mL injection solution, ampoule 777061000168102 Neostigmine (Juno) 777061000168102 Neostigmine (Juno) 777081000168106 neostigmine methylsulfate 2.5 mg/mL injection, 10 x 1 mL ampoules 37865011000036109 neostigmine methylsulfate 2.5 mg/mL injection, ampoule 37705011000036105 neostigmine +1096921000168104 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 16, blister pack 287475 1096911000168106 Strepsils Extra Honey and Lemon 2.4 mg lozenge, 16 1096831000168105 Strepsils Extra Honey and Lemon 2.4 mg lozenge 65092011000036105 Strepsils Extra 65092011000036105 Strepsils Extra 1096901000168108 hexylresorcinol 2.4 mg lozenge, 16 70275011000036108 hexylresorcinol 2.4 mg lozenge 69854011000036100 hexylresorcinol +136781000036108 Flebogamma 5% DIF 500 mg/10 mL injection solution, 10 mL vial 140602 136541000036109 Flebogamma 5% DIF 500 mg/10 mL injection solution, 10 mL vial 136291000036100 Flebogamma 5% DIF 500 mg/10 mL injection solution, 10 mL vial 11731000168109 Flebogamma 5% DIF 11731000168109 Flebogamma 5% DIF 933201081000036104 normal immunoglobulin 500 mg/10 mL injection, 10 mL vial 933194761000036109 normal immunoglobulin 500 mg/10 mL injection, vial 74965011000036103 normal immunoglobulin +664811000168102 Cold and Flu Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48, blister pack 59899 664801000168100 Cold and Flu Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48 664671000168106 Cold and Flu Day and Night (Day) (Pharmacist) uncoated tablet 664491000168109 Cold and Flu Day and Night (Pharmacist) 664621000168105 Cold and Flu Day and Night (Day) (Pharmacist) 664791000168101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [32] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [16], 48 62101011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet 61799011000036101 paracetamol + codeine + pseudoephedrine +664811000168102 Cold and Flu Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48, blister pack 59899 664801000168100 Cold and Flu Day and Night (Pharmacist) (32 x Day tablets, 16 x Night tablets), 48 664701000168107 Cold and Flu Day and Night (Night) (Pharmacist) uncoated tablet 664491000168109 Cold and Flu Day and Night (Pharmacist) 664661000168100 Cold and Flu Day and Night (Night) (Pharmacist) 664791000168101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [32] (&) pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet [16], 48 664691000168107 pseudoephedrine hydrochloride 30 mg + paracetamol 500 mg + triprolidine hydrochloride 1.25 mg tablet 664681000168109 pseudoephedrine + paracetamol + triprolidine +857641000168109 Telmisartan HCT 40/12.5 mg (Alem) multilayer tablet, 28, blister pack 246495 857631000168100 Telmisartan HCT 40/12.5 mg (Alem) multilayer tablet, 28 857621000168103 Telmisartan HCT 40/12.5 mg (Alem) multilayer tablet 857611000168105 Telmisartan HCT 40/12.5 mg (Alem) 857611000168105 Telmisartan HCT 40/12.5 mg (Alem) 27982011000036106 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet, 28 23306011000036105 telmisartan 40 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +156851000036109 Pholcodine Dry Forte (Pharmacy Choice) 4 mg/mL oral liquid solution, 200 mL, bottle 210155 156141000036104 Pholcodine Dry Forte (Pharmacy Choice) 4 mg/mL oral liquid solution, 200 mL 154961000036105 Pholcodine Dry Forte (Pharmacy Choice) 4 mg/mL oral liquid solution 37111000168102 Pholcodine Dry Forte (Pharmacy Choice) 37111000168102 Pholcodine Dry Forte (Pharmacy Choice) 156151000036101 pholcodine 4 mg/mL oral liquid, 200 mL 154971000036102 pholcodine 4 mg/mL oral liquid 21705011000036108 pholcodine +30491000036105 Moclobemide (PS) 150 mg film-coated tablet, 60, blister pack 184084 28791000036103 Moclobemide (PS) 150 mg film-coated tablet, 60 26521000036108 Moclobemide (PS) 150 mg film-coated tablet 26271000036105 Moclobemide (PS) 26271000036105 Moclobemide (PS) 28338011000036102 moclobemide 150 mg tablet, 60 23648011000036106 moclobemide 150 mg tablet 21734011000036101 moclobemide +831911000168107 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 71007 831901000168109 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 629791000168107 Varilrix (inert substance) diluent, 0.5 mL syringe 73749011000036102 Varilrix 73749011000036102 Varilrix 831891000168105 varicella-zoster live vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +831911000168107 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 71007 831901000168109 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 830871000168101 Varilrix (varicella-zoster live vaccine) powder for injection, vial 73749011000036102 Varilrix 73749011000036102 Varilrix 831891000168105 varicella-zoster live vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 830861000168107 varicella-zoster live vaccine 1995 PFU injection, vial 830851000168105 varicella-zoster live vaccine +86024011000036109 Lisinopril (DRLA) 5 mg uncoated tablet, 84, blister pack 152720 85653011000036103 Lisinopril (DRLA) 5 mg uncoated tablet, 84 85319011000036104 Lisinopril (DRLA) 5 mg uncoated tablet 85287011000036103 Lisinopril (DRLA) 85287011000036103 Lisinopril (DRLA) 83482011000036105 lisinopril 5 mg tablet, 84 23487011000036104 lisinopril 5 mg tablet 21465011000036101 lisinopril +68910011000036109 Sodium Bicarbonate (Pfizer (Perth)) 8.4% (8.4 g/100 mL) intravenous infusion injection, 10 x 100 mL vials 10801 66557011000036100 Sodium Bicarbonate (Pfizer (Perth)) 8.4% (8.4 g/100 mL) intravenous infusion injection, 10 x 100 mL vials 65408011000036102 Sodium Bicarbonate (Pfizer (Perth)) 8.4% (8.4 g/100 mL) intravenous infusion injection, 100 mL vial 65089011000036104 Sodium Bicarbonate (Pfizer (Perth)) 65089011000036104 Sodium Bicarbonate (Pfizer (Perth)) 71284011000036107 sodium bicarbonate 8.4% (8.4 g/100 mL) injection, 10 x 100 mL vials 69930011000036101 sodium bicarbonate 8.4% (8.4 g/100 mL) injection, vial 21761011000036107 bicarbonate +43917011000036103 Trandolapril (Apo) 4 mg hard capsule, 28, blister pack 135985 41409011000036103 Trandolapril (Apo) 4 mg hard capsule, 28 39867011000036106 Trandolapril (Apo) 4 mg hard capsule 11371000168108 Trandolapril (Apo) 11371000168108 Trandolapril (Apo) 28209011000036105 trandolapril 4 mg capsule, 28 23521011000036107 trandolapril 4 mg capsule 21447011000036104 trandolapril +795991000168109 Midazolam (Accord) 5 mg/mL injection solution, 10 x 1 mL ampoules 207241 795981000168106 Midazolam (Accord) 5 mg/mL injection solution, 10 x 1 mL ampoules 795931000168105 Midazolam (Accord) 5 mg/mL injection solution, ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +795991000168109 Midazolam (Accord) 5 mg/mL injection solution, 10 x 1 mL ampoules 207231 795981000168106 Midazolam (Accord) 5 mg/mL injection solution, 10 x 1 mL ampoules 795931000168105 Midazolam (Accord) 5 mg/mL injection solution, ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +1049311000168107 Novacodone 30 mg modified release tablet, 20, blister pack 227943 1049301000168109 Novacodone 30 mg modified release tablet, 20 1049291000168108 Novacodone 30 mg modified release tablet 1007411000168102 Novacodone 1007411000168102 Novacodone 71473011000036101 oxycodone hydrochloride 30 mg modified release tablet, 20 70024011000036102 oxycodone hydrochloride 30 mg modified release tablet 21259011000036105 oxycodone +794461000168107 Tacrolimus (Sandoz) 2 mg hard capsule, 20, blister pack 229757 794451000168105 Tacrolimus (Sandoz) 2 mg hard capsule, 20 794341000168101 Tacrolimus (Sandoz) 2 mg hard capsule 922952011000036103 Tacrolimus (Sandoz) 922952011000036103 Tacrolimus (Sandoz) 794441000168108 tacrolimus 2 mg capsule, 20 794331000168105 tacrolimus 2 mg capsule 21380011000036104 tacrolimus +775731000168102 Carbosorb XS oral liquid suspension, 10 x 250 mL, bottles 106469 775721000168100 Carbosorb XS oral liquid suspension, 10 x 250 mL 76036011000036102 Carbosorb XS oral liquid suspension 75961011000036106 Carbosorb XS 75961011000036106 Carbosorb XS 775711000168107 activated charcoal 200 mg/mL + sorbitol 400 mg/mL oral liquid, 10 x 250 mL 77500011000036109 activated charcoal 200 mg/mL + sorbitol 400 mg/mL oral liquid 77465011000036106 activated charcoal + sorbitol +777261000168109 Karvea 75 mg film-coated tablet, 28, blister pack 101702 777251000168107 Karvea 75 mg film-coated tablet, 28 5786011000036101 Karvea 75 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777241000168105 irbesartan 75 mg tablet, 28 22861011000036106 irbesartan 75 mg tablet 21536011000036108 irbesartan +81124011000036100 Panvax H1N1 Vaccine 2009 15 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 163900 80629011000036109 Panvax H1N1 Vaccine 2009 15 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 80212011000036107 Panvax H1N1 Vaccine 2009 15 microgram/0.5 mL injection suspension, 0.5 mL syringe 24411000168104 Panvax H1N1 Vaccine 2009 24411000168104 Panvax H1N1 Vaccine 2009 81688011000036104 influenza adult vaccine pandemic 2009 injection, 10 x 0.5 mL syringes 81283011000036106 influenza adult vaccine pandemic 2009 injection, 0.5 mL syringe 81214011000036106 influenza vaccine pandemic 2009 +663211000168103 Onsetron 4 mg/2 mL injection solution, 5 x 2 mL ampoules 205593 663201000168101 Onsetron 4 mg/2 mL injection solution, 5 x 2 mL ampoules 5646011000036101 Onsetron 4 mg/2 mL injection solution, 2 mL ampoule 7751000168109 Onsetron 7751000168109 Onsetron 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +19426011000036106 Neupogen 480 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 53581 12710011000036103 Neupogen 480 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 5939011000036108 Neupogen 480 microgram/0.5 mL injection solution, 0.5 mL syringe 4267011000036100 Neupogen 4267011000036100 Neupogen 929226011000036105 filgrastim 480 microgram/0.5 mL injection, 10 x 0.5 mL syringes 22655011000036106 filgrastim 480 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +20875011000036105 Flubiclox 500 mg powder for injection, 5 vials 92841 14037011000036102 Flubiclox 500 mg powder for injection, 5 vials 7313011000036105 Flubiclox 500 mg powder for injection, 500 mg vial 3773011000036108 Flubiclox 3773011000036108 Flubiclox 28100011000036101 flucloxacillin 500 mg injection, 5 vials 23408011000036104 flucloxacillin 500 mg injection, vial 21623011000036108 flucloxacillin +19924011000036101 Bonefos 400 mg hard capsule, 100, blister pack 66704 13168011000036102 Bonefos 400 mg hard capsule, 100 6451011000036109 Bonefos 400 mg hard capsule 3256011000036108 Bonefos 3256011000036108 Bonefos 27587011000036104 clodronate sodium 400 mg capsule, 100 22926011000036102 clodronate sodium 400 mg capsule 21247011000036100 clodronate +929891000168101 Citalopram (DRLA) 20 mg film-coated tablet, 28, bottle 167017 929881000168104 Citalopram (DRLA) 20 mg film-coated tablet, 28 929871000168102 Citalopram (DRLA) 20 mg film-coated tablet 929861000168108 Citalopram (DRLA) 929861000168108 Citalopram (DRLA) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +967361000168103 Humira 40 mg/0.4 mL injection solution, 2 x 0.4 mL syringes 281470 967351000168100 Humira 40 mg/0.4 mL injection solution, 2 x 0.4 mL syringes 967331000168106 Humira 40 mg/0.4 mL injection solution, 0.4 mL syringe 4142011000036107 Humira 4142011000036107 Humira 967341000168102 adalimumab 40 mg/0.4 mL injection, 2 x 0.4 mL syringes 967321000168108 adalimumab 40 mg/0.4 mL injection, syringe 21584011000036107 adalimumab +18259011000036102 Anthel 250 mg uncoated tablet, 6, bottle 17585 12120011000036103 Anthel 250 mg uncoated tablet, 6 5409011000036101 Anthel 250 mg uncoated tablet 3455011000036102 Anthel 3455011000036102 Anthel 26930011000036103 pyrantel 250 mg tablet, 6 22307011000036100 pyrantel 250 mg tablet 21475011000036105 pyrantel +111101000036104 Drulox 60 mg enteric capsule, 28, blister pack 195620 109381000036106 Drulox 60 mg enteric capsule, 28 106721000036100 Drulox 60 mg enteric capsule 106621000036107 Drulox 106621000036107 Drulox 38612011000036104 duloxetine 60 mg enteric capsule, 28 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +1065341000168100 Codoxamol uncoated tablet, 20, bottle 161869 56307011000036107 Codoxamol uncoated tablet, 20 53871011000036101 Codoxamol uncoated tablet 53489011000036102 Codoxamol 53489011000036102 Codoxamol 52865011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet, 20 52806011000036108 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg + doxylamine succinate 5.1 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +931407011000036107 Rispernia 2 mg film-coated tablet, 60, blister pack 127921 928192011000036101 Rispernia 2 mg film-coated tablet, 60 927851011000036102 Rispernia 2 mg film-coated tablet 927821011000036103 Rispernia 927821011000036103 Rispernia 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +1007531000168106 Morphine MR (Mylan) 100 mg modified release tablet, 60, blister pack 225424 1007521000168108 Morphine MR (Mylan) 100 mg modified release tablet, 60 1007421000168109 Morphine MR (Mylan) 100 mg modified release tablet 1007231000168108 Morphine MR (Mylan) 1007231000168108 Morphine MR (Mylan) 35168011000036109 morphine sulfate pentahydrate 100 mg modified release tablet, 60 22477011000036101 morphine sulfate pentahydrate 100 mg modified release tablet 21252011000036100 morphine +658961000168107 Olanzapine ODT (AN) 5 mg orally disintegrating tablet, 28, blister pack 179083 658951000168105 Olanzapine ODT (AN) 5 mg orally disintegrating tablet, 28 658941000168108 Olanzapine ODT (AN) 5 mg orally disintegrating tablet 658541000168101 Olanzapine ODT (AN) 658541000168101 Olanzapine ODT (AN) 68721000036109 olanzapine 5 mg orally disintegrating tablet, 28 68691000036104 olanzapine 5 mg orally disintegrating tablet 21485011000036103 olanzapine +69558011000036108 Clearasil Ultra Acne Treatment cream, 18.5 g, tube 60739 67358011000036101 Clearasil Ultra Acne Treatment cream, 18.5 g 65629011000036104 Clearasil Ultra Acne Treatment cream 13981000168108 Clearasil Ultra Acne Treatment 13981000168108 Clearasil Ultra Acne Treatment 71898011000036107 benzoyl peroxide 5% + bentonite 5% cream, 18.5 g 70240011000036103 benzoyl peroxide 5% + bentonite 5% cream 69839011000036103 benzoyl peroxide + bentonite +19861011000036100 Biodone Forte 5 mg/mL oral liquid solution, 200 mL, bottle 64800 13108011000036101 Biodone Forte 5 mg/mL oral liquid solution, 200 mL 6391011000036109 Biodone Forte 5 mg/mL oral liquid solution 26611000168109 Biodone Forte 26611000168109 Biodone Forte 27551011000036102 methadone hydrochloride 5 mg/mL oral liquid, 200 mL 22890011000036101 methadone hydrochloride 5 mg/mL oral liquid 21357011000036109 methadone +1016071000168101 Arizole 2 mg uncoated tablet, 100, bottle 198199 1016061000168107 Arizole 2 mg uncoated tablet, 100 1016031000168104 Arizole 2 mg uncoated tablet 787331000168103 Arizole 787331000168103 Arizole 1014051000168102 aripiprazole 2 mg tablet, 100 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +771381000168102 Flebogamma 10% DIF 10 g/100 mL injection solution, 100 mL vial 182358 771371000168100 Flebogamma 10% DIF 10 g/100 mL injection solution, 100 mL vial 771361000168106 Flebogamma 10% DIF 10 g/100 mL injection solution, 100 mL vial 771351000168109 Flebogamma 10% DIF 771351000168109 Flebogamma 10% DIF 108911000036108 normal immunoglobulin 10 g/100 mL injection, 100 mL vial 107121000036102 normal immunoglobulin 10 g/100 mL injection, vial 74965011000036103 normal immunoglobulin +800331000168103 Abyraz 30 mg uncoated tablet, 98, blister pack 159504 800321000168101 Abyraz 30 mg uncoated tablet, 98 800031000168101 Abyraz 30 mg uncoated tablet 798191000168104 Abyraz 798191000168104 Abyraz 800311000168108 aripiprazole 30 mg tablet, 98 23351011000036106 aripiprazole 30 mg tablet 21675011000036108 aripiprazole +81951000036109 Venlafaxine SR (Stada) 75 mg modified release capsule, 28, blister pack 160294 79951000036101 Venlafaxine SR (Stada) 75 mg modified release capsule, 28 78811000036103 Venlafaxine SR (Stada) 75 mg modified release capsule 53701000168107 Venlafaxine SR (Stada) 53701000168107 Venlafaxine SR (Stada) 27470011000036104 venlafaxine 75 mg modified release capsule, 28 22817011000036104 venlafaxine 75 mg modified release capsule 21313011000036105 venlafaxine +61008011000036105 Clozole (Chemists' Own) 1% cream, 20 g, tube 64918 56951011000036104 Clozole (Chemists' Own) 1% cream, 20 g 54137011000036100 Clozole (Chemists' Own) 1% cream 53325011000036101 Clozole (Chemists' Own) 53325011000036101 Clozole (Chemists' Own) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +61008011000036105 Clozole (Chemists' Own) 1% cream, 20 g, tube 201689 56951011000036104 Clozole (Chemists' Own) 1% cream, 20 g 54137011000036100 Clozole (Chemists' Own) 1% cream 53325011000036101 Clozole (Chemists' Own) 53325011000036101 Clozole (Chemists' Own) 26936011000036100 clotrimazole 1% cream, 20 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +984521000168107 Butafen 200 mg sugar coated tablet, 96, blister pack 126093 984511000168100 Butafen 200 mg sugar coated tablet, 96 984071000168100 Butafen 200 mg sugar coated tablet 984061000168106 Butafen 984061000168106 Butafen 63959011000036108 ibuprofen 200 mg tablet, 96 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +762801000168103 Actemra 162 mg/0.9 mL injection solution, 4 x 0.9 mL syringes 234034 762791000168104 Actemra 162 mg/0.9 mL injection solution, 4 x 0.9 mL syringes 762741000168107 Actemra 162 mg/0.9 mL injection solution, 0.9 mL syringe 82659011000036103 Actemra 82659011000036103 Actemra 762781000168102 tocilizumab 162 mg/0.9 mL injection, 4 x 0.9 mL syringes 762731000168103 tocilizumab 162 mg/0.9 mL injection, syringe 82914011000036109 tocilizumab +929911000168104 Citalopram (DRLA) 20 mg film-coated tablet, 30, bottle 167017 929901000168102 Citalopram (DRLA) 20 mg film-coated tablet, 30 929871000168102 Citalopram (DRLA) 20 mg film-coated tablet 929861000168108 Citalopram (DRLA) 929861000168108 Citalopram (DRLA) 933202011000036101 citalopram 20 mg tablet, 30 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +18775011000036107 Carvedilol (GenRx) 25 mg film-coated tablet, 60, blister pack 123842 11750011000036108 Carvedilol (GenRx) 25 mg film-coated tablet, 60 5579011000036103 Carvedilol (GenRx) 25 mg film-coated tablet 4112011000036100 Carvedilol (GenRx) 4112011000036100 Carvedilol (GenRx) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +61354011000036106 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 36, blister pack 81474 57279011000036102 Paracetamol (Chemists' Own) 500 mg uncoated tablet, 36 54259011000036108 Paracetamol (Chemists' Own) 500 mg uncoated tablet 53221011000036106 Paracetamol (Chemists' Own) 53221011000036106 Paracetamol (Chemists' Own) 63944011000036109 paracetamol 500 mg tablet, 36 23628011000036109 paracetamol 500 mg tablet 21433011000036107 paracetamol +797201000168102 Aciclovir (AN) 200 mg uncoated tablet, 90, blister pack 182884 797191000168100 Aciclovir (AN) 200 mg uncoated tablet, 90 797161000168107 Aciclovir (AN) 200 mg uncoated tablet 797081000168104 Aciclovir (AN) 797081000168104 Aciclovir (AN) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +74775011000036100 Ferriprox 100 mg/mL oral liquid solution, 250 mL, bottle 125665 74251011000036106 Ferriprox 100 mg/mL oral liquid solution, 250 mL 73790011000036100 Ferriprox 100 mg/mL oral liquid solution 2968011000036107 Ferriprox 2968011000036107 Ferriprox 75384011000036102 deferiprone 100 mg/mL oral liquid, 250 mL 75031011000036105 deferiprone 100 mg/mL oral liquid 21780011000036103 deferiprone +43946011000036106 Cephatrust 250 mg capsule, 20, blister pack 147081 41438011000036100 Cephatrust 250 mg capsule, 20 39972011000036109 Cephatrust 250 mg capsule 39649011000036104 Cephatrust 39649011000036104 Cephatrust 27863011000036109 cefalexin 250 mg capsule, 20 23191011000036107 cefalexin 250 mg capsule 21224011000036108 cefalexin +17833011000036100 Septrin Forte uncoated tablet, 10, bottle 15334 12081011000036109 Septrin Forte uncoated tablet, 10 4765011000036103 Septrin Forte uncoated tablet 40141000168101 Septrin Forte 40141000168101 Septrin Forte 27809011000036106 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet, 10 23137011000036105 trimethoprim 160 mg + sulfamethoxazole 800 mg tablet 21461011000036103 trimethoprim + sulfamethoxazole +135661000036102 Palexia SR 50 mg modified release tablet, 28, blister pack 165332 135001000036107 Palexia SR 50 mg modified release tablet, 28 134531000036108 Palexia SR 50 mg modified release tablet 15191000168109 Palexia SR 15191000168109 Palexia SR 135021000036102 tapentadol 50 mg modified release tablet, 28 134541000036103 tapentadol 50 mg modified release tablet 135971000036102 tapentadol +19512011000036109 Sone 5 mg uncoated tablet, 60, bottle 56129 12784011000036105 Sone 5 mg uncoated tablet, 60 6078011000036107 Sone 5 mg uncoated tablet 3111011000036108 Sone 3111011000036108 Sone 27351011000036104 prednisone 5 mg tablet, 60 22704011000036105 prednisone 5 mg tablet 21496011000036106 prednisone +834651000168103 Oripro 200 mg moulded pessary, 5, strip pack 165112 834641000168100 Oripro 200 mg moulded pessary, 5 124411000036101 Oripro 200 mg moulded pessary 124041000036109 Oripro 124041000036109 Oripro 834631000168109 progesterone 200 mg pessary, 5 22362011000036103 progesterone 200 mg pessary 21412011000036108 progesterone +68924011000036107 Duromine 15 mg modified release capsule, 3, blister pack 10941 66579011000036105 Duromine 15 mg modified release capsule, 3 65265011000036108 Duromine 15 mg modified release capsule 35878011000036107 Duromine 35878011000036107 Duromine 71302011000036109 phentermine 15 mg modified release capsule, 3 69940011000036102 phentermine 15 mg modified release capsule 37725011000036101 phentermine +60478011000036100 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 3 sachets 150168 56436011000036105 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 3 sachets 53919011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon and Menthol powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63356011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 3 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +73277011000036104 Jurnista 8 mg modified release tablet, 40, blister pack 141508 73075011000036100 Jurnista 8 mg modified release tablet, 40 72934011000036103 Jurnista 8 mg modified release tablet 72923011000036102 Jurnista 72923011000036102 Jurnista 73473011000036107 hydromorphone hydrochloride 8 mg modified release tablet, 40 73370011000036108 hydromorphone hydrochloride 8 mg modified release tablet 21480011000036107 hydromorphone +961401000168100 Bisoprolol (Apo) 3.75 mg tablet, 100, blister pack 182117 961391000168102 Bisoprolol (Apo) 3.75 mg tablet, 100 961101000168105 Bisoprolol (Apo) 3.75 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 874891000168105 bisoprolol fumarate 3.75 mg tablet, 100 874811000168101 bisoprolol fumarate 3.75 mg tablet 21839011000036103 bisoprolol +754201000168103 Oxycodone (Medis) 20 mg hard capsule, 20, blister pack 227823 754191000168101 Oxycodone (Medis) 20 mg hard capsule, 20 754181000168104 Oxycodone (Medis) 20 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 27744011000036103 oxycodone hydrochloride 20 mg capsule, 20 23075011000036105 oxycodone hydrochloride 20 mg capsule 21259011000036105 oxycodone +779911000168108 Artige 10 mg uncoated tablet, 100, blister pack 117306 779901000168105 Artige 10 mg uncoated tablet, 100 779891000168106 Artige 10 mg uncoated tablet 779871000168105 Artige 779871000168105 Artige 27703011000036105 methylphenidate hydrochloride 10 mg tablet, 100 23038011000036102 methylphenidate hydrochloride 10 mg tablet 21277011000036101 methylphenidate +710951000168107 Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 65858 710941000168105 Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 710871000168108 Recombinate (inert substance) diluent, 10 mL vial 710851000168104 Recombinate 710851000168104 Recombinate 933205601000036101 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 635511000168109 inert substance diluent, 10 mL vial 21220011000036103 inert substance +710951000168107 Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 65858 710941000168105 Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 710931000168101 Recombinate (octocog alfa 1000 units) powder for injection, vial 710851000168104 Recombinate 710851000168104 Recombinate 933205601000036101 octocog alfa 1000 units injection [1 vial] (&) inert substance diluent [10 mL vial], 1 pack 931816011000036101 octocog alfa 1000 units injection, vial 69843011000036100 octocog alfa +43704011000036101 Imigran FDT 100 mg film-coated tablet, 2, blister pack 106715 41142011000036103 Imigran FDT 100 mg film-coated tablet, 2 39948011000036108 Imigran FDT 100 mg film-coated tablet 33531000168108 Imigran FDT 33531000168108 Imigran FDT 46563011000036107 sumatriptan 100 mg tablet, 2 45219011000036101 sumatriptan 100 mg tablet 21708011000036102 sumatriptan +131321000036103 Candesartan Cilexetil (GA) 16 mg uncoated tablet, 30, blister pack 195513 128381000036106 Candesartan Cilexetil (GA) 16 mg uncoated tablet, 30 125111000036108 Candesartan Cilexetil (GA) 16 mg uncoated tablet 124061000036105 Candesartan Cilexetil (GA) 124061000036105 Candesartan Cilexetil (GA) 27540011000036107 candesartan cilexetil 16 mg tablet, 30 22880011000036102 candesartan cilexetil 16 mg tablet 21501011000036105 candesartan +853391000168104 Alphastat 5 mg film-coated tablet, 30, bottle 212158 853381000168102 Alphastat 5 mg film-coated tablet, 30 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +853391000168104 Alphastat 5 mg film-coated tablet, 30, bottle 187386 853381000168102 Alphastat 5 mg film-coated tablet, 30 853371000168100 Alphastat 5 mg film-coated tablet 853361000168106 Alphastat 853361000168106 Alphastat 26703011000036109 rosuvastatin 5 mg tablet, 30 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +35650011000036104 Poly-Tears 0.1% / 0.3% eye drops solution, 15 mL, bottle 35563011000036105 Poly-Tears 0.1% / 0.3% eye drops solution, 15 mL 35481011000036103 Poly-Tears 0.1% / 0.3% eye drops solution 32261000168108 Poly-Tears 0.1% / 0.3% 32261000168108 Poly-Tears 0.1% / 0.3% 35766011000036100 dextran-70 0.1% + hypromellose 0.3% eye drops, 15 mL 35707011000036101 dextran-70 0.1% + hypromellose 0.3% eye drops 35686011000036106 dextran-70 + hypromellose +1105441000168104 Seroquel 300 mg film-coated tablet, 100, blister pack 78361 1105431000168108 Seroquel 300 mg film-coated tablet, 100 6960011000036106 Seroquel 300 mg film-coated tablet 14351000168102 Seroquel 14351000168102 Seroquel 651371000168109 quetiapine 300 mg tablet, 100 23208011000036103 quetiapine 300 mg tablet 21452011000036104 quetiapine +110781000036104 Oxytocin (Sandoz) 5 units/mL injection solution, 5 x 1 mL ampoules 162498 109021000036108 Oxytocin (Sandoz) 5 units/mL injection solution, 5 x 1 mL ampoules 106741000036108 Oxytocin (Sandoz) 5 units/mL injection solution, ampoule 106661000036103 Oxytocin (Sandoz) 106661000036103 Oxytocin (Sandoz) 38687011000036104 oxytocin 5 units/mL injection, 5 x 1 mL ampoules 37926011000036103 oxytocin 5 units/mL injection, ampoule 37765011000036106 oxytocin +19682011000036101 Aricept 5 mg film-coated tablet, 28, blister pack 60176 12941011000036106 Aricept 5 mg film-coated tablet, 28 6231011000036106 Aricept 5 mg film-coated tablet 2960011000036105 Aricept 2960011000036105 Aricept 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +165531000036104 Keyomega containing 200 mg arachidonic acid and 100 mg docosahexaenoic acid powder for oral liquid, 30 x 4 g sachets 163601000036106 Keyomega containing 200 mg arachidonic acid and 100 mg docosahexaenoic acid powder for oral liquid, 30 x 4 g sachets 65181000168105 Keyomega containing 200 mg arachidonic acid and 100 mg docosahexaenoic acid powder for oral liquid, 4 g sachet 161931000036109 Keyomega 161931000036109 Keyomega 163611000036108 arachidonic acid and docosahexaenoic acid with carbohydrate containing 200 mg arachidonic acid and 100 mg docosahexaenoic acid powder for oral liquid, 30 x 4 g sachets 65101000168102 arachidonic acid and docosahexaenoic acid with carbohydrate containing 200 mg arachidonic acid and 100 mg docosahexaenoic acid powder for oral liquid, 4 g sachet 166321000036100 arachidonic acid and docosahexaenoic acid with carbohydrate +732371000168106 Implanon NXT 68 mg implant, 1, applicator 167032 930840011000036100 Implanon NXT 68 mg implant, 1 930064011000036101 Implanon NXT 68 mg implant 49221000168108 Implanon NXT 49221000168108 Implanon NXT 27685011000036104 etonogestrel 68 mg implant, 1 23022011000036103 etonogestrel 68 mg implant 21832011000036108 etonogestrel +732371000168106 Implanon NXT 68 mg implant, 1, applicator 198455 930840011000036100 Implanon NXT 68 mg implant, 1 930064011000036101 Implanon NXT 68 mg implant 49221000168108 Implanon NXT 49221000168108 Implanon NXT 27685011000036104 etonogestrel 68 mg implant, 1 23022011000036103 etonogestrel 68 mg implant 21832011000036108 etonogestrel +961561000168103 Pioglitazone (Apo) 45 mg uncoated tablet, 96, blister pack 166912 961551000168100 Pioglitazone (Apo) 45 mg uncoated tablet, 96 961471000168105 Pioglitazone (Apo) 45 mg uncoated tablet 730631000168100 Pioglitazone (Apo) 730631000168100 Pioglitazone (Apo) 961541000168102 pioglitazone 45 mg tablet, 96 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +933231711000036103 Imigran 20 mg/actuation nasal spray, 1 actuation, vial 933225971000036107 Imigran 20 mg/actuation nasal spray, 1 actuation 933221041000036101 Imigran 20 mg/actuation nasal spray, 1 actuation 30771000168105 Imigran 30771000168105 Imigran 933225981000036109 sumatriptan 20 mg/actuation nasal spray, 1 actuation 933221051000036103 sumatriptan 20 mg/actuation nasal spray, 1 actuation 21708011000036102 sumatriptan +18484011000036105 Oxaliplatin (Winthrop) 100 mg powder for injection, 1 vial 122549 11713011000036105 Oxaliplatin (Winthrop) 100 mg powder for injection, 1 vial 5853011000036103 Oxaliplatin (Winthrop) 100 mg powder for injection, 100 mg vial 3597011000036109 Oxaliplatin (Winthrop) 3597011000036109 Oxaliplatin (Winthrop) 26787011000036104 oxaliplatin 100 mg injection, 1 vial 22173011000036109 oxaliplatin 100 mg injection, vial 21543011000036101 oxaliplatin +650441000168104 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 98, blister pack 202108 650431000168108 Pritor/Amlodipine 80 mg/5 mg multilayer tablet, 98 650321000168100 Pritor/Amlodipine 80 mg/5 mg multilayer tablet 650241000168100 Pritor/Amlodipine 80 mg/5 mg 650241000168100 Pritor/Amlodipine 80 mg/5 mg 932426011000036100 telmisartan 80 mg + amlodipine 5 mg tablet, 98 931856011000036108 telmisartan 80 mg + amlodipine 5 mg tablet 931788011000036101 telmisartan + amlodipine +929655011000036100 Nexium 10 mg enteric coated granules, 30 sachets 135726 929492011000036103 Nexium 10 mg enteric coated granules, 30 sachets 929394011000036102 Nexium 10 mg enteric coated granules, sachet 2929011000036108 Nexium 2929011000036108 Nexium 929748011000036103 esomeprazole 10 mg enteric coated granules, 30 sachets 929724011000036107 esomeprazole 10 mg enteric coated granules, sachet 21697011000036107 esomeprazole +1013461000168106 Voluven injection solution, 10 x 500 mL bags 120361 1013451000168109 Voluven injection solution, 10 x 500 mL bags 1013401000168105 Voluven injection solution, 500 mL bag 1013371000168107 Voluven 1013371000168107 Voluven 1013441000168107 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bags 1013391000168108 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bag 1013381000168105 hydroxyethyl starch 130/0.4 + sodium chloride +875181000168100 Bosulif 100 mg film-coated tablet, 30, blister pack 208809 875171000168103 Bosulif 100 mg film-coated tablet, 30 875121000168104 Bosulif 100 mg film-coated tablet 875001000168109 Bosulif 875001000168109 Bosulif 875161000168109 bosutinib 100 mg tablet, 30 875111000168106 bosutinib 100 mg tablet 875021000168100 bosutinib +20984011000036109 Tricortone 0.02% ointment, 100 g, tube 95812 14130011000036108 Tricortone 0.02% ointment, 100 g 7408011000036108 Tricortone 0.02% ointment 3302011000036108 Tricortone 3302011000036108 Tricortone 28166011000036104 triamcinolone acetonide 0.02% ointment, 100 g 23476011000036109 triamcinolone acetonide 0.02% ointment 21377011000036106 triamcinolone +931770011000036109 Arcoxia 120 mg film-coated tablet, 10, blister pack 81458 930930011000036107 Arcoxia 120 mg film-coated tablet, 10 930127011000036108 Arcoxia 120 mg film-coated tablet 929823011000036107 Arcoxia 929823011000036107 Arcoxia 932500011000036104 etoricoxib 120 mg tablet, 10 931893011000036108 etoricoxib 120 mg tablet 931796011000036104 etoricoxib +796721000168104 Aclonat 5 mg/100 mL injection solution, 100 mL vial 191994 796711000168106 Aclonat 5 mg/100 mL injection solution, 100 mL vial 796701000168108 Aclonat 5 mg/100 mL injection solution, 100 mL vial 796661000168101 Aclonat 796661000168101 Aclonat 51495011000036109 zoledronic acid 5 mg/100 mL injection, 100 mL vial 50987011000036105 zoledronic acid 5 mg/100 mL injection, vial 21790011000036102 zoledronic acid +80053011000036104 Citalopram (Generic Health) 20 mg film-coated tablet, 28, blister pack 161004 79981011000036103 Citalopram (Generic Health) 20 mg film-coated tablet, 28 79928011000036103 Citalopram (Generic Health) 20 mg film-coated tablet 79908011000036106 Citalopram (Generic Health) 79908011000036106 Citalopram (Generic Health) 28094011000036102 citalopram 20 mg tablet, 28 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +749551000168104 Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack 161087 749541000168101 Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24 83672011000036104 Cold and Flu Day and Night PE (Night) (Pharmacy Choice) uncoated tablet 52431000168102 Cold and Flu Day and Night PE (Pharmacy Choice) 52551000168109 Cold and Flu Day and Night PE (Night) (Pharmacy Choice) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61934011000036103 phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet 61802011000036106 phenylephrine + paracetamol + chlorphenamine +749551000168104 Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack 161087 749541000168101 Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24 83673011000036106 Cold and Flu Day and Night PE (Day) (Pharmacy Choice) uncoated tablet 52431000168102 Cold and Flu Day and Night PE (Pharmacy Choice) 52661000168107 Cold and Flu Day and Night PE (Day) (Pharmacy Choice) 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +87729011000036106 Risperidone (DRLA) 500 microgram film-coated tablet, 60, blister pack 165514 87495011000036109 Risperidone (DRLA) 500 microgram film-coated tablet, 60 87340011000036102 Risperidone (DRLA) 500 microgram film-coated tablet 87290011000036104 Risperidone (DRLA) 87290011000036104 Risperidone (DRLA) 51485011000036105 risperidone 500 microgram tablet, 60 23448011000036109 risperidone 500 microgram tablet 21338011000036109 risperidone +44614011000036106 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 30, blister pack 90128 42067011000036100 Sinutab Sinus, Allergy and Pain Relief uncoated tablet, 30 40345011000036109 Sinutab Sinus, Allergy and Pain Relief uncoated tablet 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 39626011000036106 Sinutab Sinus, Allergy and Pain Relief 46834011000036104 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet, 30 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine +59672011000036104 Phenylalanine Amino Acid Supplement containing 50 mg phenylalanine powder for oral liquid, 30 x 4 g sachets 55629011000036103 Phenylalanine Amino Acid Supplement containing 50 mg phenylalanine powder for oral liquid, 30 x 4 g sachets 324911000168109 Phenylalanine Amino Acid Supplement containing 50 mg phenylalanine powder for oral liquid, 4 g sachet 53481011000036101 Phenylalanine Amino Acid Supplement 53481011000036101 Phenylalanine Amino Acid Supplement 63081011000036109 phenylalanine with carbohydrate containing 50 mg phenylalanine powder for oral liquid, 30 x 4 g sachets 323851000168104 phenylalanine with carbohydrate containing 50 mg phenylalanine powder for oral liquid, 4 g sachet 61760011000036109 phenylalanine with carbohydrate +52793011000036102 Axit 15 mg film-coated tablet, 90, blister pack 97194 52601011000036105 Axit 15 mg film-coated tablet, 90 52439011000036102 Axit 15 mg film-coated tablet 2985011000036103 Axit 2985011000036103 Axit 46482011000036106 mirtazapine 15 mg tablet, 90 23341011000036108 mirtazapine 15 mg tablet 21463011000036102 mirtazapine +1019681000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 30, blister pack 175208 1019671000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet, 30 1019531000168102 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) film-coated tablet 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 1019521000168100 Irbesartan HCTZ 300 mg/12.5 mg (Apotex) 27660011000036106 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet, 30 22997011000036107 irbesartan 300 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +20181011000036109 Clomipramine Hydrochloride (Chemmart) 25 mg film-coated tablet, 50, blister pack 73876 13404011000036107 Clomipramine Hydrochloride (Chemmart) 25 mg film-coated tablet, 50 6689011000036103 Clomipramine Hydrochloride (Chemmart) 25 mg film-coated tablet 3218011000036102 Clomipramine Hydrochloride (Chemmart) 3218011000036102 Clomipramine Hydrochloride (Chemmart) 27730011000036109 clomipramine hydrochloride 25 mg tablet, 50 23065011000036101 clomipramine hydrochloride 25 mg tablet 21897011000036104 clomipramine +955141000168101 Extine 30 mg film-coated tablet, 30, blister pack 120731 955051000168103 Extine 30 mg film-coated tablet, 30 955041000168100 Extine 30 mg film-coated tablet 4015011000036100 Extine 4015011000036100 Extine 927201000168104 paroxetine 30 mg tablet, 30 927091000168103 paroxetine 30 mg tablet 21618011000036109 paroxetine +1039041000168105 Atomoxetine (Actavis) 25 mg hard capsule, 28, blister pack 237254 1039031000168101 Atomoxetine (Actavis) 25 mg hard capsule, 28 1039001000168108 Atomoxetine (Actavis) 25 mg hard capsule 1034451000168104 Atomoxetine (Actavis) 1034451000168104 Atomoxetine (Actavis) 28015011000036104 atomoxetine 25 mg capsule, 28 23338011000036103 atomoxetine 25 mg capsule 21650011000036101 atomoxetine +1002321000168101 Amlodipine/Atorvastatin 5/10 (Apotex) film-coated tablet, 30, blister pack 214400 1002311000168108 Amlodipine/Atorvastatin 5/10 (Apotex) film-coated tablet, 30 1002301000168105 Amlodipine/Atorvastatin 5/10 (Apotex) film-coated tablet 1002291000168109 Amlodipine/Atorvastatin 5/10 (Apotex) 1002291000168109 Amlodipine/Atorvastatin 5/10 (Apotex) 26542011000036105 amlodipine 5 mg + atorvastatin 10 mg tablet, 30 21951011000036107 amlodipine 5 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +131571000036107 Rostor 20 mg film-coated tablet, 30, blister pack 196998 128551000036106 Rostor 20 mg film-coated tablet, 30 124421000036108 Rostor 20 mg film-coated tablet 123991000036100 Rostor 123991000036100 Rostor 26705011000036105 rosuvastatin 20 mg tablet, 30 22100011000036106 rosuvastatin 20 mg tablet 21464011000036100 rosuvastatin +84330011000036108 Cold and Flu PE (Pharmacy Choice) uncoated tablet, 24, blister pack 157756 84023011000036103 Cold and Flu PE (Pharmacy Choice) uncoated tablet, 24 83653011000036108 Cold and Flu PE (Pharmacy Choice) uncoated tablet 83594011000036105 Cold and Flu PE (Pharmacy Choice) 83594011000036105 Cold and Flu PE (Pharmacy Choice) 63397011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet, 24 61939011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +1064701000168102 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 20, blister pack 199369 1064691000168102 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet, 20 1064611000168106 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) uncoated tablet 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 1064541000168109 Paracetamol 500 mg and Codeine Phosphate 10 mg (Medreich) 63877011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 20 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +749631000168109 Tacrolimus (Actavis) 1 mg hard capsule, 100, blister pack 224269 749621000168106 Tacrolimus (Actavis) 1 mg hard capsule, 100 749571000168108 Tacrolimus (Actavis) 1 mg hard capsule 749561000168102 Tacrolimus (Actavis) 749561000168102 Tacrolimus (Actavis) 27422011000036101 tacrolimus 1 mg capsule, 100 22769011000036107 tacrolimus 1 mg capsule 21380011000036104 tacrolimus +37640011000036100 Cytarabine (DBL) 100 mg/mL injection solution, 5 x 1 mL vials 25997 36906011000036107 Cytarabine (DBL) 100 mg/mL injection solution, 5 x 1 mL vials 36238011000036104 Cytarabine (DBL) 100 mg/mL injection solution, vial 35924011000036107 Cytarabine (DBL) 35924011000036107 Cytarabine (DBL) 38791011000036101 cytarabine 100 mg/mL injection, 5 x 1 mL vials 38003011000036101 cytarabine 100 mg/mL injection, vial 21916011000036109 cytarabine +779521000168106 Fentanyl (Apo) 100 microgram/hour patch, 1, sachet 152575 779511000168104 Fentanyl (Apo) 100 microgram/hour patch, 1 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236171000036100 fentanyl 100 microgram/hour patch, 1 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +1032551000168106 Atomoxetine (GXP) 40 mg hard capsule, 7, blister pack 234837 1032541000168109 Atomoxetine (GXP) 40 mg hard capsule, 7 1032531000168100 Atomoxetine (GXP) 40 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 816541000168103 atomoxetine 40 mg capsule, 7 23339011000036106 atomoxetine 40 mg capsule 21650011000036101 atomoxetine +912351000168102 Cepha 500 mg hard capsule, 20, blister pack 176788 912341000168104 Cepha 500 mg hard capsule, 20 912331000168108 Cepha 500 mg hard capsule 912291000168102 Cepha 912291000168102 Cepha 28235011000036102 cefalexin 500 mg capsule, 20 23549011000036109 cefalexin 500 mg capsule 21224011000036108 cefalexin +61651011000036101 Butalgin 200 mg film-coated tablet, 48, blister pack 97230 57573011000036105 Butalgin 200 mg film-coated tablet, 48 54352011000036105 Butalgin 200 mg film-coated tablet 53146011000036102 Butalgin 53146011000036102 Butalgin 63958011000036100 ibuprofen 200 mg tablet, 48 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +830951000168102 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet 830941000168104 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet 830921000168105 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 21.5 g sachet 829671000168108 Magnesium Citrate (Fresenius Kabi) 829671000168108 Magnesium Citrate (Fresenius Kabi) 830931000168108 magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 1 sachet 830911000168103 magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet 870891000168103 magnesium carbonate + citric acid +779841000168103 Fentanyl (Apo) 100 microgram/hour patch, 8, sachet 152575 779831000168107 Fentanyl (Apo) 100 microgram/hour patch, 8 779501000168102 Fentanyl (Apo) 100 microgram/hour patch 778891000168102 Fentanyl (Apo) 778891000168102 Fentanyl (Apo) 933236321000036101 fentanyl 100 microgram/hour patch, 8 22056011000036108 fentanyl 100 microgram/hour patch 21258011000036102 fentanyl +704601000168105 Nexole 20 mg enteric tablet, 30, blister pack 210852 704591000168103 Nexole 20 mg enteric tablet, 30 704581000168101 Nexole 20 mg enteric tablet 704021000168106 Nexole 704021000168106 Nexole 27738011000036106 esomeprazole 20 mg enteric tablet, 30 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +44851011000036105 Perfalgan 500 mg/50 mL intravenous infusion injection, 12 x 50 mL vials 99870 42283011000036104 Perfalgan 500 mg/50 mL intravenous infusion injection, 12 x 50 mL vials 40419011000036108 Perfalgan 500 mg/50 mL intravenous infusion injection, 50 mL vial 39596011000036105 Perfalgan 39596011000036105 Perfalgan 47034011000036104 paracetamol 500 mg/50 mL injection, 12 x 50 mL vials 45383011000036109 paracetamol 500 mg/50 mL injection, vial 21433011000036107 paracetamol +1109371000168102 Nicotinell Tropical Fruit 2 mg chewing gum, 384, blister pack 279617 1109361000168108 Nicotinell Tropical Fruit 2 mg chewing gum, 384 1108991000168105 Nicotinell Tropical Fruit 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 897651000168103 nicotine 2 mg gum, 384 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +925367011000036100 Nicabate 2 mg lozenge, 72, blister pack 81977 924903011000036106 Nicabate 2 mg lozenge, 72 924543011000036105 Nicabate 2 mg lozenge 28411000168106 Nicabate 28411000168106 Nicabate 87230011000036108 nicotine 2 mg lozenge, 72 87203011000036109 nicotine 2 mg lozenge 21432011000036100 nicotine +19290011000036101 Norprolac Starter Pack (3 x 25 microgram tablets, 3 x 50 microgram tablets), 6, blister pack 48993 12580011000036104 Norprolac Starter Pack (3 x 25 microgram tablets, 3 x 50 microgram tablets), 6 933220731000036102 Norprolac 25 microgram uncoated tablet 62651000168104 Norprolac Starter Pack 2964011000036100 Norprolac 27216011000036106 quinagolide 25 microgram tablet [3] (&) quinagolide 50 microgram tablet [3], 6 22576011000036107 quinagolide 25 microgram tablet 21459011000036109 quinagolide +19290011000036101 Norprolac Starter Pack (3 x 25 microgram tablets, 3 x 50 microgram tablets), 6, blister pack 48993 12580011000036104 Norprolac Starter Pack (3 x 25 microgram tablets, 3 x 50 microgram tablets), 6 933220741000036107 Norprolac 50 microgram uncoated tablet 62651000168104 Norprolac Starter Pack 2964011000036100 Norprolac 27216011000036106 quinagolide 25 microgram tablet [3] (&) quinagolide 50 microgram tablet [3], 6 22577011000036105 quinagolide 50 microgram tablet 21459011000036109 quinagolide +18801011000036103 Largactil Syrup 5 mg/mL oral liquid solution, 100 mL, bottle 118128 11573011000036101 Largactil Syrup 5 mg/mL oral liquid solution, 100 mL 4639011000036104 Largactil Syrup 5 mg/mL oral liquid solution 57151000168102 Largactil Syrup 57151000168102 Largactil Syrup 26695011000036104 chlorpromazine hydrochloride 5 mg/mL oral liquid, 100 mL 22090011000036100 chlorpromazine hydrochloride 5 mg/mL oral liquid 21310011000036102 chlorpromazine +34642011000036105 Morphine Sulfate (DBL) 30 mg/mL injection solution, 50 x 1 mL ampoules 121755 34232011000036108 Morphine Sulfate (DBL) 30 mg/mL injection solution, 50 x 1 mL ampoules 5759011000036102 Morphine Sulfate (DBL) 30 mg/mL injection solution, ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 35114011000036101 morphine sulfate pentahydrate 30 mg/mL injection, 50 x 1 mL ampoules 22132011000036100 morphine sulfate pentahydrate 30 mg/mL injection, ampoule 21252011000036100 morphine +696321000168109 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 100 actuations, pump pack 72345 74383011000036107 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 100 actuations 73909011000036100 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, actuation 73775011000036103 Beconase Allergy and Hayfever 12 Hour 73775011000036103 Beconase Allergy and Hayfever 12 Hour 75482011000036100 beclometasone dipropionate 50 microgram/actuation nasal spray, 100 actuations 75087011000036107 beclometasone dipropionate 50 microgram/actuation nasal spray, actuation 21435011000036108 beclometasone +903771000168104 Brillior 300 mg hard capsule, 60, blister pack 224345 903761000168105 Brillior 300 mg hard capsule, 60 903681000168106 Brillior 300 mg hard capsule 902661000168109 Brillior 902661000168109 Brillior 855601000168104 pregabalin 300 mg capsule, 60 33696011000036102 pregabalin 300 mg capsule 33640011000036108 pregabalin +914861000168102 Carvedilol (AS) 25 mg uncoated tablet, 60, blister pack 194255 914851000168104 Carvedilol (AS) 25 mg uncoated tablet, 60 914841000168101 Carvedilol (AS) 25 mg uncoated tablet 914721000168101 Carvedilol (AS) 914721000168101 Carvedilol (AS) 27964011000036100 carvedilol 25 mg tablet, 60 23288011000036102 carvedilol 25 mg tablet 21470011000036101 carvedilol +1122281000168106 Influvac Tetra 2018 without Needle injection suspension, 1 x 0.5 mL syringe 281035 1122271000168108 Influvac Tetra 2018 without Needle injection suspension, 1 x 0.5 mL syringe 1122261000168102 Influvac Tetra 2018 without Needle injection suspension, 0.5 mL syringe 1120931000168101 Influvac Tetra 2018 1120931000168101 Influvac Tetra 2018 1121901000168100 influenza quadrivalent adult vaccine 2018 injection, 1 x 0.5 mL syringe 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +749951000168105 Tacrolimus (CH) 500 microgram hard capsule, 10, blister pack 224272 749941000168108 Tacrolimus (CH) 500 microgram hard capsule, 10 749931000168104 Tacrolimus (CH) 500 microgram hard capsule 749781000168100 Tacrolimus (CH) 749781000168100 Tacrolimus (CH) 749241000168103 tacrolimus 500 microgram capsule, 10 23159011000036104 tacrolimus 500 microgram capsule 21380011000036104 tacrolimus +998391000168109 Desloratadine (Apo) 5 mg film-coated tablet, 28, bottle 202822 998251000168109 Desloratadine (Apo) 5 mg film-coated tablet, 28 998041000168103 Desloratadine (Apo) 5 mg film-coated tablet 998031000168107 Desloratadine (Apo) 998031000168107 Desloratadine (Apo) 72024011000036109 desloratadine 5 mg tablet, 28 70279011000036105 desloratadine 5 mg tablet 61723011000036109 desloratadine +18928011000036105 Isopto Carpine 2% eye drops solution, 15 mL, bottle 25295 12236011000036104 Isopto Carpine 2% eye drops solution, 15 mL 5466011000036109 Isopto Carpine 2% eye drops solution 4348011000036104 Isopto Carpine 4348011000036104 Isopto Carpine 27789011000036107 pilocarpine hydrochloride 2% eye drops, 15 mL 23119011000036105 pilocarpine hydrochloride 2% eye drops 21254011000036109 pilocarpine +116491000036106 Rosuvastatin (Apo) 10 mg film-coated tablet, 30, bottle 183067 114821000036102 Rosuvastatin (Apo) 10 mg film-coated tablet, 30 113321000036106 Rosuvastatin (Apo) 10 mg film-coated tablet 112511000036103 Rosuvastatin (Apo) 112511000036103 Rosuvastatin (Apo) 26704011000036106 rosuvastatin 10 mg tablet, 30 22099011000036106 rosuvastatin 10 mg tablet 21464011000036100 rosuvastatin +783791000168107 Palexia IR 100 mg film-coated tablet, 100, blister pack 165318 783781000168109 Palexia IR 100 mg film-coated tablet, 100 783431000168103 Palexia IR 100 mg film-coated tablet 782651000168103 Palexia IR 782651000168103 Palexia IR 783771000168106 tapentadol 100 mg tablet, 100 783421000168101 tapentadol 100 mg tablet 135971000036102 tapentadol +920981000168103 Cilopam 10 mg film-coated tablet, 84, bottle 158863 920571000168108 Cilopam 10 mg film-coated tablet, 84 920481000168107 Cilopam 10 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 933203181000036101 citalopram 10 mg tablet, 84 23421011000036103 citalopram 10 mg tablet 21441011000036107 citalopram +18467011000036101 Cordarone X 100 mg uncoated tablet, 30, blister pack 15359 12084011000036107 Cordarone X 100 mg uncoated tablet, 30 5457011000036103 Cordarone X 100 mg uncoated tablet 20951000168100 Cordarone X 20951000168100 Cordarone X 28278011000036106 amiodarone hydrochloride 100 mg tablet, 30 23592011000036105 amiodarone hydrochloride 100 mg tablet 21535011000036101 amiodarone +43963011000036106 Dacarbazine (DBL) 200 mg powder for injection, 1 vial 39954 41455011000036105 Dacarbazine (DBL) 200 mg powder for injection, 1 vial 39983011000036107 Dacarbazine (DBL) 200 mg powder for injection, 200 mg vial 39635011000036102 Dacarbazine (DBL) 39635011000036102 Dacarbazine (DBL) 46304011000036105 dacarbazine 200 mg injection, 1 vial 45064011000036109 dacarbazine 200 mg injection, vial 44890011000036108 dacarbazine +1058171000168105 Levetiracetam (Auro) 750 mg film-coated tablet, 30, bottle 182820 1058161000168104 Levetiracetam (Auro) 750 mg film-coated tablet, 30 1058141000168103 Levetiracetam (Auro) 750 mg film-coated tablet 713721000168108 Levetiracetam (Auro) 713721000168108 Levetiracetam (Auro) 1058151000168101 levetiracetam 750 mg tablet, 30 923992011000036104 levetiracetam 750 mg tablet 21766011000036102 levetiracetam +938251000168101 Tevatiapine XR 400 mg modified release tablet, 60, blister pack 249812 938241000168103 Tevatiapine XR 400 mg modified release tablet, 60 938231000168107 Tevatiapine XR 400 mg modified release tablet 938101000168109 Tevatiapine XR 938101000168109 Tevatiapine XR 51540011000036104 quetiapine 400 mg modified release tablet, 60 50995011000036101 quetiapine 400 mg modified release tablet 21452011000036104 quetiapine +18225011000036100 Urocarb 10 mg uncoated tablet, 100, bottle 14861 12062011000036100 Urocarb 10 mg uncoated tablet, 100 5019011000036105 Urocarb 10 mg uncoated tablet 4133011000036101 Urocarb 4133011000036101 Urocarb 26889011000036109 bethanechol chloride 10 mg tablet, 100 22267011000036108 bethanechol chloride 10 mg tablet 21837011000036105 bethanechol +728351000168102 Montelukast (GH) 10 mg uncoated tablet, 28, blister pack 189224 728341000168104 Montelukast (GH) 10 mg uncoated tablet, 28 728331000168108 Montelukast (GH) 10 mg uncoated tablet 124021000036101 Montelukast (GH) 124021000036101 Montelukast (GH) 46542011000036108 montelukast 10 mg tablet, 28 45211011000036100 montelukast 10 mg tablet 21884011000036106 montelukast +933213891000036106 Ciprofloxacin (IPC) 750 mg film-coated tablet, 20, blister pack 153185 933201921000036104 Ciprofloxacin (IPC) 750 mg film-coated tablet, 20 933194831000036105 Ciprofloxacin (IPC) 750 mg film-coated tablet 933193231000036109 Ciprofloxacin (IPC) 933193231000036109 Ciprofloxacin (IPC) 87797011000036107 ciprofloxacin 750 mg tablet, 20 23514011000036102 ciprofloxacin 750 mg tablet 21245011000036105 ciprofloxacin +19193011000036106 Cardizem CD 180 mg modified release capsule, 30, blister pack 46818 12486011000036107 Cardizem CD 180 mg modified release capsule, 30 5585011000036107 Cardizem CD 180 mg modified release capsule 8591000168105 Cardizem CD 8591000168105 Cardizem CD 28059011000036108 diltiazem hydrochloride 180 mg modified release capsule, 30 23373011000036105 diltiazem hydrochloride 180 mg modified release capsule 21270011000036102 diltiazem +1070801000168108 Paracetamol plus Codeine-15 (Chemplus) uncoated tablet, 40, blister pack 235597 1070791000168107 Paracetamol plus Codeine-15 (Chemplus) uncoated tablet, 40 1070761000168100 Paracetamol plus Codeine-15 (Chemplus) uncoated tablet 1070751000168102 Paracetamol plus Codeine-15 (Chemplus) 1070751000168102 Paracetamol plus Codeine-15 (Chemplus) 90201000036109 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 40 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +19699011000036105 Parnate 10 mg film-coated tablet, 50, blister pack 60821 12957011000036101 Parnate 10 mg film-coated tablet, 50 6247011000036104 Parnate 10 mg film-coated tablet 4229011000036103 Parnate 4229011000036103 Parnate 27469011000036102 tranylcypromine 10 mg tablet, 50 22816011000036102 tranylcypromine 10 mg tablet 21845011000036104 tranylcypromine +19699011000036105 Parnate 10 mg film-coated tablet, 50, blister pack 174086 12957011000036101 Parnate 10 mg film-coated tablet, 50 6247011000036104 Parnate 10 mg film-coated tablet 4229011000036103 Parnate 4229011000036103 Parnate 27469011000036102 tranylcypromine 10 mg tablet, 50 22816011000036102 tranylcypromine 10 mg tablet 21845011000036104 tranylcypromine +1032231000168103 Aripra 10 mg uncoated tablet, 250, bottle 217223 1032221000168101 Aripra 10 mg uncoated tablet, 250 1031741000168107 Aripra 10 mg uncoated tablet 1031581000168108 Aripra 1031581000168108 Aripra 1015711000168104 aripiprazole 10 mg tablet, 250 23348011000036104 aripiprazole 10 mg tablet 21675011000036108 aripiprazole +929016011000036105 Nivestim 300 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 160108 928377011000036101 Nivestim 300 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 927960011000036106 Nivestim 300 microgram/0.5 mL injection solution, 0.5 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 929229011000036101 filgrastim 300 microgram/0.5 mL injection, 10 x 0.5 mL syringes 22654011000036107 filgrastim 300 microgram/0.5 mL injection, syringe 21265011000036102 filgrastim +931706011000036101 Aspirin EC (Terry White Chemists) 100 mg enteric tablet, 84, blister pack 172169 930866011000036108 Aspirin EC (Terry White Chemists) 100 mg enteric tablet, 84 930080011000036108 Aspirin EC (Terry White Chemists) 100 mg enteric tablet 24781000168103 Aspirin EC (Terry White Chemists) 24781000168103 Aspirin EC (Terry White Chemists) 26798011000036102 aspirin 100 mg enteric tablet, 84 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +1062441000168101 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 30, blister pack 196533 1062431000168105 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet, 30 1062341000168108 Paracetamol plus Codeine-15 (Terry White Chemists) uncoated tablet 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 1062331000168104 Paracetamol plus Codeine-15 (Terry White Chemists) 761741000168100 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 30 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +24871000036102 Ranmoxy 250 mg/5 mL powder for oral liquid, 100 mL, bottle 137885 22151000036108 Ranmoxy 250 mg/5 mL powder for oral liquid, 100 mL 20741000036107 Ranmoxy 250 mg/5 mL powder for oral liquid, 5 mL 32199011000036101 Ranmoxy 32199011000036101 Ranmoxy 28239011000036100 amoxicillin 250 mg/5 mL powder for oral liquid, 100 mL 23553011000036109 amoxicillin 250 mg/5 mL powder for oral liquid 21415011000036100 amoxicillin +918881000168102 Doxycycline (Apo) 100 mg uncoated tablet, 21, blister pack 78598 918871000168100 Doxycycline (Apo) 100 mg uncoated tablet, 21 918841000168107 Doxycycline (Apo) 100 mg uncoated tablet 918801000168105 Doxycycline (Apo) 918801000168105 Doxycycline (Apo) 33813011000036104 doxycycline 100 mg tablet, 21 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +920758011000036100 Captopril (Sandoz) 25 mg film-coated tablet, 90, blister pack 61416 920437011000036106 Captopril (Sandoz) 25 mg film-coated tablet, 90 920178011000036106 Captopril (Sandoz) 25 mg film-coated tablet 920077011000036102 Captopril (Sandoz) 920077011000036102 Captopril (Sandoz) 27834011000036102 captopril 25 mg tablet, 90 23162011000036104 captopril 25 mg tablet 21533011000036102 captopril +69132011000036104 Nicotinell Classic 2 mg chewing gum, 180, blister pack 152893 66932011000036105 Nicotinell Classic 2 mg chewing gum, 180 65382011000036105 Nicotinell Classic 2 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71512011000036109 nicotine 2 mg gum, 180 62070011000036102 nicotine 2 mg gum 21432011000036100 nicotine +69336011000036105 Calamine (Gold Cross) 15% lotion, 200 mL, bottle 27221 67136011000036106 Calamine (Gold Cross) 15% lotion, 200 mL 65216011000036102 Calamine (Gold Cross) 15% lotion 65032011000036103 Calamine (Gold Cross) 65032011000036103 Calamine (Gold Cross) 71701011000036104 calamine 15% lotion, 200 mL 70135011000036109 calamine 15% lotion 69791011000036109 calamine +886821000168109 Candesan Combi 32/25 uncoated tablet, 30, bottle 196408 886811000168102 Candesan Combi 32/25 uncoated tablet, 30 886801000168100 Candesan Combi 32/25 uncoated tablet 886791000168101 Candesan Combi 32/25 886791000168101 Candesan Combi 32/25 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19581011000036101 Diabex 850 mg film-coated tablet, 60, blister pack 57645 12852011000036106 Diabex 850 mg film-coated tablet, 60 6143011000036106 Diabex 850 mg film-coated tablet 24861000168103 Diabex 24861000168103 Diabex 28038011000036101 metformin hydrochloride 850 mg tablet, 60 23359011000036105 metformin hydrochloride 850 mg tablet 21614011000036102 metformin +921906011000036107 Exforge HCT 10/160/25 film-coated tablet, 7, blister pack 158166 921465011000036102 Exforge HCT 10/160/25 film-coated tablet, 7 921018011000036102 Exforge HCT 10/160/25 film-coated tablet 7471000168106 Exforge HCT 10/160/25 7471000168106 Exforge HCT 10/160/25 922593011000036106 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet, 7 922096011000036103 amlodipine 10 mg + valsartan 160 mg + hydrochlorothiazide 25 mg tablet 922033011000036102 amlodipine + valsartan + hydrochlorothiazide +771141000168109 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 180561 771131000168100 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 771071000168103 Isabelle (drospirenone 3 mg + ethinylestradiol 30 microgram) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 87209011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet 87198011000036104 drospirenone + ethinylestradiol +771141000168109 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28, blister packs 180561 771131000168100 Isabelle (21 x 3 mg/30 microgram tablets, 7 x inert tablets), 3 x 28 771081000168100 Isabelle (inert substance) film-coated tablet 771061000168109 Isabelle 771061000168109 Isabelle 87240011000036107 drospirenone 3 mg + ethinylestradiol 30 microgram tablet [21] (&) inert substance tablet [7], 3 x 28 22836011000036108 inert substance tablet 21220011000036103 inert substance +933239981000036105 Simvacor 20 mg film-coated tablet, 180, bottle 182911 933236471000036109 Simvacor 20 mg film-coated tablet, 180 933234861000036108 Simvacor 20 mg film-coated tablet 933234381000036107 Simvacor 933234381000036107 Simvacor 46247011000036100 simvastatin 20 mg tablet, 180 23524011000036105 simvastatin 20 mg tablet 21242011000036102 simvastatin +110551000036100 Midazolam (Alphapharm) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 160205 109131000036109 Midazolam (Alphapharm) 15 mg/3 mL injection solution, 5 x 3 mL ampoules 107161000036106 Midazolam (Alphapharm) 15 mg/3 mL injection solution, 3 mL ampoule 106461000036101 Midazolam (Alphapharm) 106461000036101 Midazolam (Alphapharm) 38699011000036105 midazolam 15 mg/3 mL injection, 5 x 3 mL ampoules 37934011000036108 midazolam 15 mg/3 mL injection, ampoule 37721011000036103 midazolam +801131000168105 Midazolam (Accord) 5 mg/5 mL injection solution, 5 mL ampoule 207236 801121000168107 Midazolam (Accord) 5 mg/5 mL injection solution, 5 mL ampoule 801111000168100 Midazolam (Accord) 5 mg/5 mL injection solution, 5 mL ampoule 795921000168107 Midazolam (Accord) 795921000168107 Midazolam (Accord) 664171000168103 midazolam 5 mg/5 mL injection, 5 mL ampoule 37936011000036100 midazolam 5 mg/5 mL injection, ampoule 37721011000036103 midazolam +783931000168105 Zantac 150 mg/10 mL oral liquid, 280 mL, bottle 146137 783921000168107 Zantac 150 mg/10 mL oral liquid, 280 mL 5902011000036108 Zantac 150 mg/10 mL oral liquid, 10 mL 3563011000036102 Zantac 3563011000036102 Zantac 63340011000036108 ranitidine 150 mg/10 mL oral liquid, 280 mL 22429011000036109 ranitidine 150 mg/10 mL oral liquid 21682011000036109 ranitidine +18176011000036105 Morphine Sulfate (DBL) 15 mg/mL injection solution, 5 x 1 mL ampoules 101243 11183011000036104 Morphine Sulfate (DBL) 15 mg/mL injection solution, 5 x 1 mL ampoules 5731011000036100 Morphine Sulfate (DBL) 15 mg/mL injection solution, ampoule 4098011000036105 Morphine Sulfate (DBL) 4098011000036105 Morphine Sulfate (DBL) 26555011000036104 morphine sulfate pentahydrate 15 mg/mL injection, 5 x 1 mL ampoules 21964011000036102 morphine sulfate pentahydrate 15 mg/mL injection, ampoule 21252011000036100 morphine +1030281000168103 Atilos 30 mg uncoated tablet, 28, blister pack 173477 1030271000168101 Atilos 30 mg uncoated tablet, 28 1030211000168109 Atilos 30 mg uncoated tablet 1029891000168107 Atilos 1029891000168107 Atilos 27807011000036104 pioglitazone 30 mg tablet, 28 23135011000036100 pioglitazone 30 mg tablet 21416011000036107 pioglitazone +963891000168107 Danzetron 4 mg/2 mL injection solution, 5 x 2 mL ampoules 107052 963881000168109 Danzetron 4 mg/2 mL injection solution, 5 x 2 mL ampoules 963851000168102 Danzetron 4 mg/2 mL injection solution, 2 mL ampoule 957881000168109 Danzetron 957881000168109 Danzetron 924114011000036108 ondansetron 4 mg/2 mL injection, 5 x 2 mL ampoules 23642011000036108 ondansetron 4 mg/2 mL injection, ampoule 21545011000036100 ondansetron +843951000168106 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 28, blister pack 218082 843941000168109 Desvenlafaxine (Sandoz) 100 mg modified release tablet, 28 843891000168108 Desvenlafaxine (Sandoz) 100 mg modified release tablet 843811000168104 Desvenlafaxine (Sandoz) 843811000168104 Desvenlafaxine (Sandoz) 52878011000036103 desvenlafaxine 100 mg modified release tablet, 28 52808011000036107 desvenlafaxine 100 mg modified release tablet 52799011000036104 desvenlafaxine +1028121000168105 Novothirteen (1 x 2500 units vial, 1 x 3.2 mL inert diluent vial), 1 pack, composite pack 201776 1028111000168103 Novothirteen (1 x 2500 units vial, 1 x 3.2 mL inert diluent vial), 1 pack 1028071000168105 Novothirteen (catridecacog 2500 units) powder for injection, 2500 units vial 1027881000168100 Novothirteen 1027881000168100 Novothirteen 1028101000168101 catridecacog 2500 units injection [1 vial] (&) inert substance diluent [3.2 mL vial], 1 pack 1028061000168104 catridecacog 2500 units injection, vial 1028051000168101 catridecacog +1028121000168105 Novothirteen (1 x 2500 units vial, 1 x 3.2 mL inert diluent vial), 1 pack, composite pack 201776 1028111000168103 Novothirteen (1 x 2500 units vial, 1 x 3.2 mL inert diluent vial), 1 pack 1028091000168106 Novothirteen (inert substance) diluent, 3.2 mL vial 1027881000168100 Novothirteen 1027881000168100 Novothirteen 1028101000168101 catridecacog 2500 units injection [1 vial] (&) inert substance diluent [3.2 mL vial], 1 pack 1028081000168108 inert substance diluent, 3.2 mL vial 21220011000036103 inert substance +925195011000036103 Gabaccord 600 mg film-coated tablet, 100, blister pack 156106 924732011000036101 Gabaccord 600 mg film-coated tablet, 100 924442011000036105 Gabaccord 600 mg film-coated tablet 924406011000036102 Gabaccord 924406011000036102 Gabaccord 27697011000036105 gabapentin 600 mg tablet, 100 23034011000036109 gabapentin 600 mg tablet 21444011000036105 gabapentin +931775011000036100 Concerta 18 mg modified release tablet, 56, bottle 93862 930935011000036103 Concerta 18 mg modified release tablet, 56 7353011000036100 Concerta 18 mg modified release tablet 3582011000036106 Concerta 3582011000036106 Concerta 932504011000036109 methylphenidate hydrochloride 18 mg modified release tablet, 56 23437011000036109 methylphenidate hydrochloride 18 mg modified release tablet 21277011000036101 methylphenidate +61026011000036101 Ferro-Grad C modified release tablet, 60, bottle 66841 56969011000036105 Ferro-Grad C modified release tablet, 60 54143011000036105 Ferro-Grad C modified release tablet 53373011000036103 Ferro-Grad C 53373011000036103 Ferro-Grad C 63667011000036106 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet, 60 62039011000036106 ferrous sulfate 325 mg (iron 105 mg) + sodium ascorbate 562.4 mg modified release tablet 61817011000036106 ferrous sulfate + ascorbic acid +79085011000036105 Zinvit C 250 tablets: film-coated, 50, bottle 72412 78879011000036100 Zinvit C 250 tablets: film-coated, 50 78682011000036108 Zinvit C 250 tablets: film-coated 64051000168103 Zinvit C 250 64051000168103 Zinvit C 250 79245011000036106 zinc sulfate heptahydrate 100 mg + magnesium sulfate heptahydrate 50 mg + ascorbic acid 250 mg tablet, 50 79118011000036106 zinc sulfate heptahydrate 100 mg + magnesium sulfate heptahydrate 50 mg + ascorbic acid 250 mg tablet 79099011000036106 zinc sulfate heptahydrate + magnesium sulfate heptahydrate + ascorbic acid +1040971000168109 Atorvastatin (DRLA) 20 mg film-coated tablet, 30, blister pack 198827 1040961000168103 Atorvastatin (DRLA) 20 mg film-coated tablet, 30 1040951000168100 Atorvastatin (DRLA) 20 mg film-coated tablet 1040891000168103 Atorvastatin (DRLA) 1040891000168103 Atorvastatin (DRLA) 27437011000036101 atorvastatin 20 mg tablet, 30 22784011000036109 atorvastatin 20 mg tablet 21343011000036103 atorvastatin +18639011000036104 Diamicron 80 mg film-coated tablet, 100, blister pack 10242 11256011000036102 Diamicron 80 mg film-coated tablet, 100 4935011000036102 Diamicron 80 mg film-coated tablet 3550011000036103 Diamicron 3550011000036103 Diamicron 28287011000036102 gliclazide 80 mg tablet, 100 23601011000036105 gliclazide 80 mg tablet 21867011000036102 gliclazide +762471000168106 Paraffin Soft White BP (David Craig) cream, 500 g, jar 762461000168100 Paraffin Soft White BP (David Craig) cream, 500 g 762441000168104 Paraffin Soft White BP (David Craig) cream 762341000168106 Paraffin Soft White BP (David Craig) 762341000168106 Paraffin Soft White BP (David Craig) 762451000168102 white soft paraffin cream, 500 g 762431000168108 white soft paraffin cream 762421000168105 white soft paraffin +662001000168100 Isosorbide Mononitrate (AN) 60 mg modified release tablet, 30, bottle 184067 661991000168102 Isosorbide Mononitrate (AN) 60 mg modified release tablet, 30 661981000168100 Isosorbide Mononitrate (AN) 60 mg modified release tablet 661971000168103 Isosorbide Mononitrate (AN) 661971000168103 Isosorbide Mononitrate (AN) 27773011000036104 isosorbide mononitrate 60 mg modified release tablet, 30 23103011000036105 isosorbide mononitrate 60 mg modified release tablet 21337011000036108 isosorbide mononitrate +863261000168105 Amitriptyline (AN) 25 mg tablet, 100, blister pack 232118 863251000168108 Amitriptyline (AN) 25 mg tablet, 100 863181000168108 Amitriptyline (AN) 25 mg tablet 863171000168105 Amitriptyline (AN) 863171000168105 Amitriptyline (AN) 692291000168102 amitriptyline hydrochloride 25 mg tablet, 100 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +52752011000036101 Movalis 7.5 mg hard capsule, 100, blister pack 142228 52564011000036103 Movalis 7.5 mg hard capsule, 100 52420011000036105 Movalis 7.5 mg hard capsule 4074011000036106 Movalis 4074011000036106 Movalis 52887011000036107 meloxicam 7.5 mg capsule, 100 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +82392011000036106 Duocover 75 mg/100 mg film-coated tablet, 98, blister pack 151075 82181011000036106 Duocover 75 mg/100 mg film-coated tablet, 98 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82555011000036108 clopidogrel 75 mg + aspirin 100 mg tablet, 98 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +685561000168104 Femazole Duo 150 mg hard capsule, 1, blister pack 685551000168101 Femazole Duo 150 mg hard capsule, 1 685541000168103 Femazole Duo 150 mg hard capsule 26061000036109 Femazole Duo 26061000036109 Femazole Duo 38534011000036105 fluconazole 150 mg capsule, 1 37820011000036108 fluconazole 150 mg capsule 21365011000036105 fluconazole +865271000168100 Amitriptyline (CH) 25 mg tablet, 1000, bottle 232125 865221000168101 Amitriptyline (CH) 25 mg tablet, 1000 865131000168108 Amitriptyline (CH) 25 mg tablet 865021000168109 Amitriptyline (CH) 865021000168109 Amitriptyline (CH) 742121000168107 amitriptyline hydrochloride 25 mg tablet, 1000 22788011000036102 amitriptyline hydrochloride 25 mg tablet 21407011000036107 amitriptyline +933246421000036109 Lamotrigine (PS) 50 mg tablet, 56, blister pack 147632 933242971000036103 Lamotrigine (PS) 50 mg tablet, 56 933241241000036108 Lamotrigine (PS) 50 mg tablet 933240971000036104 Lamotrigine (PS) 933240971000036104 Lamotrigine (PS) 28295011000036106 lamotrigine 50 mg tablet, 56 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +760461000168104 Sildenafil (DRLA) 100 mg film-coated tablet, 12, blister pack 186287 760451000168101 Sildenafil (DRLA) 100 mg film-coated tablet, 12 760361000168109 Sildenafil (DRLA) 100 mg film-coated tablet 760231000168108 Sildenafil (DRLA) 760231000168108 Sildenafil (DRLA) 675961000168104 sildenafil 100 mg tablet, 12 22887011000036101 sildenafil 100 mg tablet 21529011000036101 sildenafil +926682011000036107 Lisoril 20 mg uncoated tablet, 84, blister pack 106497 926081011000036105 Lisoril 20 mg uncoated tablet, 84 925633011000036105 Lisoril 20 mg uncoated tablet 925547011000036105 Lisoril 925547011000036105 Lisoril 78129011000036106 lisinopril 20 mg tablet, 84 23489011000036106 lisinopril 20 mg tablet 21465011000036101 lisinopril +68890011000036103 Oxy 5 Skin Toned 5% cream, 22 g, tube 10339 66495011000036108 Oxy 5 Skin Toned 5% cream, 22 g 65471011000036102 Oxy 5 Skin Toned 5% cream 25551000168103 Oxy 5 Skin Toned 25551000168103 Oxy 5 Skin Toned 71227011000036108 benzoyl peroxide 5% cream, 22 g 69909011000036102 benzoyl peroxide 5% cream 61709011000036104 benzoyl peroxide +19213011000036108 Minomycin 50 mg film-coated tablet, 60, blister pack 47054 12503011000036108 Minomycin 50 mg film-coated tablet, 60 5306011000036103 Minomycin 50 mg film-coated tablet 3311011000036100 Minomycin 3311011000036100 Minomycin 27684011000036103 minocycline 50 mg tablet, 60 23021011000036109 minocycline 50 mg tablet 21488011000036109 minocycline +970401000168103 Lypralin 25 mg hard capsule, 56, bottle 235870 970231000168106 Lypralin 25 mg hard capsule, 56 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +131481000036108 Candesartan Cilexetil Combi 32/12.5 (Aspen) uncoated tablet, 30, bottle 196433 128731000036108 Candesartan Cilexetil Combi 32/12.5 (Aspen) uncoated tablet, 30 124761000036107 Candesartan Cilexetil Combi 32/12.5 (Aspen) uncoated tablet 51361000168108 Candesartan Cilexetil Combi 32/12.5 (Aspen) 51361000168108 Candesartan Cilexetil Combi 32/12.5 (Aspen) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +933111011000036106 Lamictal 50 mg tablet, 42, blister pack 57190 932915011000036103 Lamictal 50 mg tablet, 42 932766011000036103 Lamictal 50 mg tablet 4438011000036105 Lamictal 4438011000036105 Lamictal 46988011000036106 lamotrigine 50 mg tablet, 42 23609011000036109 lamotrigine 50 mg tablet 21643011000036106 lamotrigine +788381000168101 Oxycodone (HX) 5 mg modified release tablet, 60, bottle 153600 788371000168104 Oxycodone (HX) 5 mg modified release tablet, 60 788321000168100 Oxycodone (HX) 5 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 35245011000036108 oxycodone hydrochloride 5 mg modified release tablet, 60 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +927561000168101 Lithicarb SR 400 mg modified release tablet, 1000, bottle 53260 927551000168103 Lithicarb SR 400 mg modified release tablet, 1000 927491000168109 Lithicarb SR 400 mg modified release tablet 927411000168100 Lithicarb SR 927411000168100 Lithicarb SR 927541000168100 lithium carbonate 400 mg modified release tablet, 1000 927481000168106 lithium carbonate 400 mg modified release tablet 21570011000036108 lithium carbonate +44254011000036104 Tagamet 200 mg effervescent tablet, 7, tube 60819 41725011000036102 Tagamet 200 mg effervescent tablet, 7 40167011000036101 Tagamet 200 mg effervescent tablet 3003011000036100 Tagamet 3003011000036100 Tagamet 46532011000036109 cimetidine 200 mg effervescent tablet, 7 83131000036104 cimetidine 200 mg effervescent tablet 21427011000036101 cimetidine +972571000168108 Lyzalon 25 mg hard capsule, 56, blister pack 224435 972241000168103 Lyzalon 25 mg hard capsule, 56 972191000168103 Lyzalon 25 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1030361000168103 Atomoxetine (Genpar) 18 mg hard capsule, 7, blister pack 234845 1030351000168100 Atomoxetine (Genpar) 18 mg hard capsule, 7 1030341000168102 Atomoxetine (Genpar) 18 mg hard capsule 1029601000168102 Atomoxetine (Genpar) 1029601000168102 Atomoxetine (Genpar) 819051000168104 atomoxetine 18 mg capsule, 7 23337011000036104 atomoxetine 18 mg capsule 21650011000036101 atomoxetine +176851000036107 Venlafaxine XR (Actavis) 150 mg modified release capsule, 28, blister pack 200747 175021000036104 Venlafaxine XR (Actavis) 150 mg modified release capsule, 28 173401000036100 Venlafaxine XR (Actavis) 150 mg modified release capsule 32251000168106 Venlafaxine XR (Actavis) 32251000168106 Venlafaxine XR (Actavis) 27471011000036106 venlafaxine 150 mg modified release capsule, 28 22818011000036103 venlafaxine 150 mg modified release capsule 21313011000036105 venlafaxine +17934011000036105 Pentasa 2 g modified release granules, 60 sachets 116362 11507011000036103 Pentasa 2 g modified release granules, 60 sachets 5391011000036106 Pentasa 2 g modified release granules, 2 g sachet 3593011000036100 Pentasa 3593011000036100 Pentasa 26677011000036100 mesalazine 2 g modified release granules, 60 sachets 22073011000036104 mesalazine 2 g modified release granules, sachet 21351011000036101 mesalazine +17934011000036105 Pentasa 2 g modified release granules, 60 sachets 161064 11507011000036103 Pentasa 2 g modified release granules, 60 sachets 5391011000036106 Pentasa 2 g modified release granules, 2 g sachet 3593011000036100 Pentasa 3593011000036100 Pentasa 26677011000036100 mesalazine 2 g modified release granules, 60 sachets 22073011000036104 mesalazine 2 g modified release granules, sachet 21351011000036101 mesalazine +910261000168105 Cisatracurium (Apotex) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 237312 910251000168108 Cisatracurium (Apotex) 5 mg/2.5 mL injection solution, 5 x 2.5 mL ampoules 910241000168106 Cisatracurium (Apotex) 5 mg/2.5 mL injection solution, 2.5 mL ampoule 910171000168105 Cisatracurium (Apotex) 910171000168105 Cisatracurium (Apotex) 157601000036106 cisatracurium 5 mg/2.5 mL injection, 5 x 2.5 mL ampoules 157571000036103 cisatracurium 5 mg/2.5 mL injection, ampoule 44902011000036101 cisatracurium +61388011000036107 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet, 96, blister pack 81848 57313011000036100 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet, 96 54269011000036103 Strong Pain Relief Plus (Pharmacy Health) uncoated tablet 53218011000036108 Strong Pain Relief Plus (Pharmacy Health) 53218011000036108 Strong Pain Relief Plus (Pharmacy Health) 63804011000036109 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet, 96 52811011000036101 paracetamol 450 mg + codeine phosphate hemihydrate 9.75 mg + doxylamine succinate 5 mg tablet 37813011000036109 paracetamol + codeine + doxylamine +777581000168102 Karvea 150 mg film-coated tablet, 5, blister pack 101706 777571000168100 Karvea 150 mg film-coated tablet, 5 5173011000036109 Karvea 150 mg film-coated tablet 3970011000036106 Karvea 3970011000036106 Karvea 777561000168106 irbesartan 150 mg tablet, 5 22863011000036107 irbesartan 150 mg tablet 21536011000036108 irbesartan +1118031000168105 Quetiapine XR (Amneal) 150 mg modified release tablet, 60, bottle 278855 1118021000168107 Quetiapine XR (Amneal) 150 mg modified release tablet, 60 1118011000168100 Quetiapine XR (Amneal) 150 mg modified release tablet 1117391000168106 Quetiapine XR (Amneal) 1117391000168106 Quetiapine XR (Amneal) 81661011000036105 quetiapine 150 mg modified release tablet, 60 81280011000036103 quetiapine 150 mg modified release tablet 21452011000036104 quetiapine +970241000168102 Lypralin 25 mg hard capsule, 56, blister pack 235874 970231000168106 Lypralin 25 mg hard capsule, 56 970151000168107 Lypralin 25 mg hard capsule 969561000168104 Lypralin 969561000168104 Lypralin 83501011000036109 pregabalin 25 mg capsule, 56 83439011000036109 pregabalin 25 mg capsule 33640011000036108 pregabalin +1096601000168104 Clotrimazole (Chemmart) 1% cream, 10 g, tube 1096581000168108 Clotrimazole (Chemmart) 1% cream, 10 g 1096561000168104 Clotrimazole (Chemmart) 1% cream 1096491000168107 Clotrimazole (Chemmart) 1096491000168107 Clotrimazole (Chemmart) 63088011000036100 clotrimazole 1% cream, 10 g 23418011000036101 clotrimazole 1% cream 21684011000036100 clotrimazole +24911000036100 Lorstat 80 mg film-coated tablet, 30, blister pack 181406 22401000036103 Lorstat 80 mg film-coated tablet, 30 20761000036108 Lorstat 80 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +24911000036100 Lorstat 80 mg film-coated tablet, 30, blister pack 151299 22401000036103 Lorstat 80 mg film-coated tablet, 30 20761000036108 Lorstat 80 mg film-coated tablet 19751000036109 Lorstat 19751000036109 Lorstat 27837011000036108 atorvastatin 80 mg tablet, 30 23165011000036107 atorvastatin 80 mg tablet 21343011000036103 atorvastatin +1049631000168106 Oxycone 20 mg/2 mL injection solution, 5 x 2 mL ampoules 279324 1049621000168108 Oxycone 20 mg/2 mL injection solution, 5 x 2 mL ampoules 1049611000168101 Oxycone 20 mg/2 mL injection solution, 2 mL ampoule 1049161000168107 Oxycone 1049161000168107 Oxycone 35094011000036107 oxycodone hydrochloride 20 mg/2 mL injection, 5 x 2 mL ampoules 34846011000036103 oxycodone hydrochloride 20 mg/2 mL injection, ampoule 21259011000036105 oxycodone +82383011000036103 Duocover 75 mg/100 mg film-coated tablet, 2, blister pack 151075 82172011000036109 Duocover 75 mg/100 mg film-coated tablet, 2 82024011000036105 Duocover 75 mg/100 mg film-coated tablet 23241000168103 Duocover 75 mg/100 mg 23241000168103 Duocover 75 mg/100 mg 82546011000036103 clopidogrel 75 mg + aspirin 100 mg tablet, 2 82448011000036107 clopidogrel 75 mg + aspirin 100 mg tablet 82432011000036105 clopidogrel + aspirin +779751000168106 Bupradex 400 microgram sublingual tablet, 28, blister pack 152475 779741000168109 Bupradex 400 microgram sublingual tablet, 28 779711000168105 Bupradex 400 microgram sublingual tablet 779151000168107 Bupradex 779151000168107 Bupradex 685841000168101 buprenorphine 400 microgram sublingual tablet, 28 685791000168104 buprenorphine 400 microgram sublingual tablet 21232011000036101 buprenorphine +968231000168100 Disodium Pamidronate (Hexal) 15 mg/5 mL concentrated injection, 4 x 5 mL vials 101283 968221000168103 Disodium Pamidronate (Hexal) 15 mg/5 mL concentrated injection, 4 x 5 mL vials 968181000168106 Disodium Pamidronate (Hexal) 15 mg/5 mL concentrated injection, 5 mL vial 968111000168100 Disodium Pamidronate (Hexal) 968111000168100 Disodium Pamidronate (Hexal) 968211000168105 pamidronate disodium 15 mg/5 mL injection, 4 x 5 mL vials 23096011000036106 pamidronate disodium 15 mg/5 mL injection, vial 21339011000036101 pamidronate disodium +659671000168103 Telmisartan HCTZ 80/12.5mg (Chemmart) multilayer tablet, 28, blister pack 198238 659661000168109 Telmisartan HCTZ 80/12.5mg (Chemmart) multilayer tablet, 28 659651000168107 Telmisartan HCTZ 80/12.5mg (Chemmart) multilayer tablet 659641000168105 Telmisartan HCTZ 80/12.5mg (Chemmart) 659641000168105 Telmisartan HCTZ 80/12.5mg (Chemmart) 27983011000036104 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet, 28 23307011000036108 telmisartan 80 mg + hydrochlorothiazide 12.5 mg tablet 21298011000036106 telmisartan + hydrochlorothiazide +20667011000036104 Accuretic 20/12.5 film-coated tablet, 30, blister pack 81931 13847011000036104 Accuretic 20/12.5 film-coated tablet, 30 7134011000036108 Accuretic 20/12.5 film-coated tablet 44111000168107 Accuretic 20/12.5 44111000168107 Accuretic 20/12.5 27971011000036108 quinapril 20 mg + hydrochlorothiazide 12.5 mg tablet, 30 23295011000036107 quinapril 20 mg + hydrochlorothiazide 12.5 mg tablet 21455011000036107 quinapril + hydrochlorothiazide +788221000168106 Clonea Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube 267255 788211000168104 Clonea Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g 788201000168102 Clonea Clotrimazole Thrush Treatment 6 Day 1% vaginal cream 788191000168100 Clonea Clotrimazole Thrush Treatment 6 Day 788191000168100 Clonea Clotrimazole Thrush Treatment 6 Day 714971000168108 clotrimazole 1% vaginal cream, 35 g 714921000168107 clotrimazole 1% vaginal cream 21684011000036100 clotrimazole +43549011000036107 Oruvail SR 100 mg modified release capsule, 100, bottle 124323 41312011000036101 Oruvail SR 100 mg modified release capsule, 100 39993011000036106 Oruvail SR 100 mg modified release capsule 10051000168105 Oruvail SR 10051000168105 Oruvail SR 46238011000036103 ketoprofen 100 mg modified release capsule, 100 45071011000036101 ketoprofen 100 mg modified release capsule 21856011000036108 ketoprofen +37881000036107 Epicin 20 mg/10 mL concentrated injection, 10 mL vial 165689 34171000036107 Epicin 20 mg/10 mL concentrated injection, 10 mL vial 32801000036104 Epicin 20 mg/10 mL concentrated injection, 10 mL vial 32261000036101 Epicin 32261000036101 Epicin 27170011000036103 epirubicin hydrochloride 20 mg/10 mL injection, 10 mL vial 22532011000036105 epirubicin hydrochloride 20 mg/10 mL injection, vial 21230011000036100 epirubicin +788361000168105 Oxycodone (HX) 5 mg modified release tablet, 28, bottle 153600 788351000168108 Oxycodone (HX) 5 mg modified release tablet, 28 788321000168100 Oxycodone (HX) 5 mg modified release tablet 788311000168107 Oxycodone (HX) 788311000168107 Oxycodone (HX) 929278011000036105 oxycodone hydrochloride 5 mg modified release tablet, 28 23435011000036104 oxycodone hydrochloride 5 mg modified release tablet 21259011000036105 oxycodone +135821000036107 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet, 30, blister pack 195278 135241000036100 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet, 30 134431000036107 Candesartan/HCT 32 mg/25 mg (Sandoz) tablet 63361000168102 Candesartan/HCT 32 mg/25 mg (Sandoz) 63361000168102 Candesartan/HCT 32 mg/25 mg (Sandoz) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +110621000036107 Risedronate (Apo) 35 mg film-coated tablet, 4, bottle 160644 928389011000036102 Risedronate (Apo) 35 mg film-coated tablet, 4 927964011000036101 Risedronate (Apo) 35 mg film-coated tablet 17071000168100 Risedronate (Apo) 17071000168100 Risedronate (Apo) 27987011000036108 risedronate sodium 35 mg tablet, 4 23311011000036103 risedronate sodium 35 mg tablet 21476011000036103 risedronate +50266011000036109 Phlexy-10 tropical surprise powder for oral liquid, 30 x 20 g sachets 49527011000036104 Phlexy-10 tropical surprise powder for oral liquid, 30 x 20 g sachets 302941000168105 Phlexy-10 tropical surprise powder for oral liquid, 20 g sachet 48301011000036102 Phlexy-10 48301011000036102 Phlexy-10 51472011000036106 amino acid formula without phenylalanine powder for oral liquid, 30 x 20 g sachets 301691000168102 amino acid formula without phenylalanine powder for oral liquid, 20 g sachet 50722011000036107 amino acid formula without phenylalanine +19607011000036100 Novasone 0.1% cream, 15 g, tube 58612 12877011000036105 Novasone 0.1% cream, 15 g 6168011000036105 Novasone 0.1% cream 4448011000036109 Novasone 4448011000036109 Novasone 27412011000036106 mometasone furoate 0.1% cream, 15 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +19607011000036100 Novasone 0.1% cream, 15 g, tube 212417 12877011000036105 Novasone 0.1% cream, 15 g 6168011000036105 Novasone 0.1% cream 4448011000036109 Novasone 4448011000036109 Novasone 27412011000036106 mometasone furoate 0.1% cream, 15 g 22760011000036101 mometasone furoate 0.1% cream 21409011000036100 mometasone +972411000168101 Lyzalon 150 mg hard capsule, 20, bottle 224425 972401000168104 Lyzalon 150 mg hard capsule, 20 972371000168102 Lyzalon 150 mg hard capsule 972181000168101 Lyzalon 972181000168101 Lyzalon 903411000168102 pregabalin 150 mg capsule, 20 33695011000036109 pregabalin 150 mg capsule 33640011000036108 pregabalin +1032371000168108 Atomoxetine (GXP) 60 mg hard capsule, 14, blister pack 234824 1032361000168102 Atomoxetine (GXP) 60 mg hard capsule, 14 1032331000168105 Atomoxetine (GXP) 60 mg hard capsule 1031291000168108 Atomoxetine (GXP) 1031291000168108 Atomoxetine (GXP) 830231000168100 atomoxetine 60 mg capsule, 14 23340011000036101 atomoxetine 60 mg capsule 21650011000036101 atomoxetine +69578011000036105 Paraderm 5% cream, 30 g, tube 63331 67378011000036104 Paraderm 5% cream, 30 g 65636011000036106 Paraderm 5% cream 65046011000036100 Paraderm 65046011000036100 Paraderm 71916011000036101 bufexamac 5% cream, 30 g 70246011000036100 bufexamac 5% cream 69831011000036102 bufexamac +927401000168103 Risperisan 2 mg film-coated tablet, 60, bottle 126179 927391000168100 Risperisan 2 mg film-coated tablet, 60 927381000168103 Risperisan 2 mg film-coated tablet 926871000168108 Risperisan 926871000168108 Risperisan 27203011000036102 risperidone 2 mg tablet, 60 22563011000036108 risperidone 2 mg tablet 21338011000036109 risperidone +998531000168100 Esomeprazole (Apo) 20 mg enteric tablet, 56, blister pack 205827 998521000168103 Esomeprazole (Apo) 20 mg enteric tablet, 56 998441000168108 Esomeprazole (Apo) 20 mg enteric tablet 998431000168104 Esomeprazole (Apo) 998431000168104 Esomeprazole (Apo) 774741000168105 esomeprazole 20 mg enteric tablet, 56 23526011000036102 esomeprazole 20 mg enteric tablet 21697011000036107 esomeprazole +715611000168109 Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g, tube 68570 715601000168106 Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g 715581000168102 Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream 700022731000036108 Canesten Clotrimazole Thrush Treatment Once 700022731000036108 Canesten Clotrimazole Thrush Treatment Once 715591000168104 clotrimazole 10% vaginal cream, 5 g 715571000168100 clotrimazole 10% vaginal cream 21684011000036100 clotrimazole +912911000168104 Ninlaro 3 mg capsule, 1, blister pack 260935 912901000168102 Ninlaro 3 mg capsule, 1 912881000168104 Ninlaro 3 mg capsule 902241000168107 Ninlaro 902241000168107 Ninlaro 912891000168101 ixazomib 3 mg capsule, 1 912871000168102 ixazomib 3 mg capsule 902251000168109 ixazomib +929089011000036104 Pioglitazone (Apotex) 45 mg uncoated tablet, 7, blister pack 166913 928450011000036109 Pioglitazone (Apotex) 45 mg uncoated tablet, 7 927986011000036106 Pioglitazone (Apotex) 45 mg uncoated tablet 927759011000036100 Pioglitazone (Apotex) 927759011000036100 Pioglitazone (Apotex) 929261011000036106 pioglitazone 45 mg tablet, 7 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +779591000168108 Bupradex 2 mg sublingual tablet, 7, blister pack 152476 779581000168105 Bupradex 2 mg sublingual tablet, 7 779571000168107 Bupradex 2 mg sublingual tablet 779151000168107 Bupradex 779151000168107 Bupradex 685591000168106 buprenorphine 2 mg sublingual tablet, 7 685571000168105 buprenorphine 2 mg sublingual tablet 21232011000036101 buprenorphine +1056161000168100 Erelzi 25 mg/0.5 mL injection solution, 12 x 0.5 mL syringes 281783 1056151000168102 Erelzi 25 mg/0.5 mL injection solution, 12 x 0.5 mL syringes 1056051000168101 Erelzi 25 mg/0.5 mL injection solution, 0.5 mL syringe 1055931000168100 Erelzi 1055931000168100 Erelzi 1056141000168104 etanercept 25 mg/0.5 mL injection, 12 x 0.5 mL syringes 45042011000036108 etanercept 25 mg/0.5 mL injection, syringe 21347011000036107 etanercept +60392011000036100 Ponstan 250 mg hard capsule, 20, blister pack 14388 56351011000036105 Ponstan 250 mg hard capsule, 20 5143011000036108 Ponstan 250 mg hard capsule 3878011000036100 Ponstan 3878011000036100 Ponstan 38739011000036105 mefenamic acid 250 mg capsule, 20 22239011000036107 mefenamic acid 250 mg capsule 21505011000036107 mefenamic acid +1057691000168100 Ramipril (Auro) 1.25 mg uncoated tablet, 30, blister pack 175235 1057681000168103 Ramipril (Auro) 1.25 mg uncoated tablet, 30 1057641000168108 Ramipril (Auro) 1.25 mg uncoated tablet 1057331000168108 Ramipril (Auro) 1057331000168108 Ramipril (Auro) 27336011000036108 ramipril 1.25 mg tablet, 30 22689011000036100 ramipril 1.25 mg tablet 21395011000036107 ramipril +1015111000168103 Valaciclovir (Apotex) 500 mg film-coated tablet, 90, blister pack 158914 1015101000168101 Valaciclovir (Apotex) 500 mg film-coated tablet, 90 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929224011000036102 valaciclovir 500 mg tablet, 90 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +166081000036101 Temaccord 20 mg hard capsule, 20, sachet 206031 164281000036101 Temaccord 20 mg hard capsule, 20 162261000036100 Temaccord 20 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 164291000036104 temozolomide 20 mg capsule, 20 22982011000036109 temozolomide 20 mg capsule 21595011000036105 temozolomide +140391000036108 Evogam 16% 800 mg/5 mL injection solution, 5 mL vial 173315 138851000036106 Evogam 16% 800 mg/5 mL injection solution, 5 mL vial 138041000036102 Evogam 16% 800 mg/5 mL injection solution, 5 mL vial 25611000168103 Evogam 16% 25611000168103 Evogam 16% 75463011000036109 normal immunoglobulin 800 mg/5 mL injection, 5 mL vial 75074011000036105 normal immunoglobulin 800 mg/5 mL injection, vial 74965011000036103 normal immunoglobulin +964051000168107 Normatens 200 microgram film-coated tablet, 14, blister pack 114122 964041000168105 Normatens 200 microgram film-coated tablet, 14 963961000168107 Normatens 200 microgram film-coated tablet 963951000168105 Normatens 963951000168105 Normatens 964031000168101 moxonidine 200 microgram tablet, 14 22059011000036104 moxonidine 200 microgram tablet 21658011000036104 moxonidine +106121000036104 Coloxyl with Senna film-coated tablet, 30, bottle 59118 106021000036103 Coloxyl with Senna film-coated tablet, 30 105911000036104 Coloxyl with Senna film-coated tablet 3208011000036100 Coloxyl with Senna 3208011000036100 Coloxyl with Senna 81746011000036103 docusate sodium 50 mg + sennoside B 8 mg tablet, 30 33690011000036100 docusate sodium 50 mg + sennoside B 8 mg tablet 33647011000036109 docusate + sennoside B +1075691000168106 Aripiprazole (Auro) 2 mg uncoated tablet, 30, bottle 198180 1075681000168108 Aripiprazole (Auro) 2 mg uncoated tablet, 30 1075671000168105 Aripiprazole (Auro) 2 mg uncoated tablet 1075511000168103 Aripiprazole (Auro) 1075511000168103 Aripiprazole (Auro) 801641000168107 aripiprazole 2 mg tablet, 30 801441000168105 aripiprazole 2 mg tablet 21675011000036108 aripiprazole +996381000168107 Cinacalcet (Apo) 60 mg film-coated tablet, 28, blister pack 240300 996371000168109 Cinacalcet (Apo) 60 mg film-coated tablet, 28 996361000168103 Cinacalcet (Apo) 60 mg film-coated tablet 991661000168100 Cinacalcet (Apo) 991661000168100 Cinacalcet (Apo) 38844011000036107 cinacalcet 60 mg tablet, 28 38044011000036108 cinacalcet 60 mg tablet 37755011000036100 cinacalcet +1066231000168107 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 10, blister pack 161544 1066221000168109 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet, 10 1066211000168102 Ibuprofen plus Codeine (Pharmacist Formula) film-coated tablet 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 1066101000168109 Ibuprofen plus Codeine (Pharmacist Formula) 792441000168101 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet, 10 61870011000036102 ibuprofen 200 mg + codeine phosphate hemihydrate 12.8 mg tablet 61777011000036104 ibuprofen + codeine +131801000036100 Candesartan Cilexetil HCT 32/25 (GH) uncoated tablet, 30, blister pack 204582 128771000036105 Candesartan Cilexetil HCT 32/25 (GH) uncoated tablet, 30 124841000036103 Candesartan Cilexetil HCT 32/25 (GH) uncoated tablet 3821000168103 Candesartan Cilexetil HCT 32/25 (GH) 3821000168103 Candesartan Cilexetil HCT 32/25 (GH) 83494011000036102 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet, 30 83435011000036107 candesartan cilexetil 32 mg + hydrochlorothiazide 25 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +925208011000036109 Glimaccord 1 mg uncoated tablet, 10, blister pack 156398 924745011000036105 Glimaccord 1 mg uncoated tablet, 10 924452011000036107 Glimaccord 1 mg uncoated tablet 924395011000036104 Glimaccord 924395011000036104 Glimaccord 925413011000036101 glimepiride 1 mg tablet, 10 23456011000036107 glimepiride 1 mg tablet 21280011000036108 glimepiride +1105121000168102 Midazolam (AN) 5 mg/mL injection solution, 10 x 1 mL ampoules 207224 1105111000168109 Midazolam (AN) 5 mg/mL injection solution, 10 x 1 mL ampoules 1105061000168108 Midazolam (AN) 5 mg/mL injection solution, ampoule 1104981000168104 Midazolam (AN) 1104981000168104 Midazolam (AN) 38698011000036102 midazolam 5 mg/mL injection, 10 x 1 mL ampoules 37933011000036106 midazolam 5 mg/mL injection, ampoule 37721011000036103 midazolam +817861000168104 Idaprex Arg Combi 5/1.25 film-coated tablet, 30, bottle 194918 817851000168101 Idaprex Arg Combi 5/1.25 film-coated tablet, 30 817841000168103 Idaprex Arg Combi 5/1.25 film-coated tablet 817831000168107 Idaprex Arg Combi 5/1.25 817831000168107 Idaprex Arg Combi 5/1.25 26767011000036101 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet, 30 22154011000036108 perindopril arginine 5 mg + indapamide hemihydrate 1.25 mg tablet 21796011000036104 perindopril + indapamide +116811000036104 Zopral ODT 15 mg orally disintegrating tablet, 28, bottle 187429 115061000036104 Zopral ODT 15 mg orally disintegrating tablet, 28 112881000036108 Zopral ODT 15 mg orally disintegrating tablet 14811000168105 Zopral ODT 14811000168105 Zopral ODT 79818011000036103 lansoprazole 15 mg orally disintegrating tablet, 28 79747011000036107 lansoprazole 15 mg orally disintegrating tablet 21491011000036101 lansoprazole +81115011000036107 Dizole 50 mg hard capsule, 50, blister pack 162640 80620011000036103 Dizole 50 mg hard capsule, 50 7454011000036108 Dizole 50 mg hard capsule 1541000168106 Dizole 1541000168106 Dizole 81680011000036101 fluconazole 50 mg capsule, 50 23501011000036102 fluconazole 50 mg capsule 21365011000036105 fluconazole +961901000168107 Bisoprolol (Apo) 1.25 mg tablet, 100, blister pack 182108 961891000168108 Bisoprolol (Apo) 1.25 mg tablet, 100 961571000168109 Bisoprolol (Apo) 1.25 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 46789011000036109 bisoprolol fumarate 1.25 mg tablet, 100 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +852341000168103 Olmesartan/Amlodipine 40/5 (Myl) film-coated tablet, 30, blister pack 273619 852331000168107 Olmesartan/Amlodipine 40/5 (Myl) film-coated tablet, 30 852301000168100 Olmesartan/Amlodipine 40/5 (Myl) film-coated tablet 852291000168101 Olmesartan/Amlodipine 40/5 (Myl) 852291000168101 Olmesartan/Amlodipine 40/5 (Myl) 922570011000036105 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet, 30 922090011000036101 olmesartan medoxomil 40 mg + amlodipine 5 mg tablet 922065011000036108 olmesartan + amlodipine +933231071000036106 Famciclovir (Chemmart) 500 mg film-coated tablet, 56, blister pack 172446 933225141000036103 Famciclovir (Chemmart) 500 mg film-coated tablet, 56 933220431000036106 Famciclovir (Chemmart) 500 mg film-coated tablet 933218851000036108 Famciclovir (Chemmart) 933218851000036108 Famciclovir (Chemmart) 27614011000036100 famciclovir 500 mg tablet, 56 22952011000036102 famciclovir 500 mg tablet 21221011000036105 famciclovir +1015151000168102 Valaciclovir (Apotex) 500 mg film-coated tablet, 240, blister pack 158914 1015141000168104 Valaciclovir (Apotex) 500 mg film-coated tablet, 240 1014801000168105 Valaciclovir (Apotex) 500 mg film-coated tablet 1014791000168109 Valaciclovir (Apotex) 1014791000168109 Valaciclovir (Apotex) 929218011000036103 valaciclovir 500 mg tablet, 240 23066011000036108 valaciclovir 500 mg tablet 21929011000036105 valaciclovir +659351000168104 Donepezil Hydrochloride (AN) 5 mg film-coated tablet, 28, blister pack 167191 659341000168101 Donepezil Hydrochloride (AN) 5 mg film-coated tablet, 28 659331000168105 Donepezil Hydrochloride (AN) 5 mg film-coated tablet 659291000168104 Donepezil Hydrochloride (AN) 659291000168104 Donepezil Hydrochloride (AN) 27455011000036105 donepezil hydrochloride 5 mg tablet, 28 22802011000036104 donepezil hydrochloride 5 mg tablet 21256011000036101 donepezil +166121000036103 Temaccord 140 mg hard capsule, 20, sachet 206033 164341000036102 Temaccord 140 mg hard capsule, 20 162231000036106 Temaccord 140 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 164351000036104 temozolomide 140 mg capsule, 20 52257011000036109 temozolomide 140 mg capsule 21595011000036105 temozolomide +69250011000036104 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/L (Baxter) intravenous infusion injection, 12 x 1 L bags 19468 67050011000036102 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/L (Baxter) intravenous infusion injection, 12 x 1 L bags 65332011000036104 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/L (Baxter) intravenous infusion injection, 1 L bag 16621000168109 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/1 L (Baxter) 16621000168109 Compound Sodium Lactate (Hartmann's) with Potassium 30 mmol/1 L (Baxter) 71620011000036105 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 2.2 g (potassium 30 mmol)/L + calcium chloride dihydrate 0.027% (270 mg/L) injection, 12 x 1 L bags 70095011000036105 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 2.2 g (potassium 30 mmol)/L + calcium chloride dihydrate 0.027% (270 mg/L) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +74784011000036108 Roxithromycin (Chemmart) 150 mg film-coated tablet, 10, blister pack 133750 74271011000036109 Roxithromycin (Chemmart) 150 mg film-coated tablet, 10 73817011000036101 Roxithromycin (Chemmart) 150 mg film-coated tablet 73707011000036101 Roxithromycin (Chemmart) 73707011000036101 Roxithromycin (Chemmart) 28340011000036100 roxithromycin 150 mg tablet, 10 23650011000036106 roxithromycin 150 mg tablet 21724011000036103 roxithromycin +1073521000168106 Finasteride (Aurobindo) 5 mg film-coated tablet, 30, blister pack 210613 1073511000168104 Finasteride (Aurobindo) 5 mg film-coated tablet, 30 1073471000168108 Finasteride (Aurobindo) 5 mg film-coated tablet 1073461000168102 Finasteride (Aurobindo) 1073461000168102 Finasteride (Aurobindo) 27118011000036108 finasteride 5 mg tablet, 30 22484011000036103 finasteride 5 mg tablet 21896011000036102 finasteride +43791011000036101 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 7, blister pack 119091 41209011000036104 Zolpidem Tartrate (DP) 10 mg film-coated tablet, 7 39842011000036101 Zolpidem Tartrate (DP) 10 mg film-coated tablet 39735011000036106 Zolpidem Tartrate (DP) 39735011000036106 Zolpidem Tartrate (DP) 46649011000036109 zolpidem tartrate 10 mg tablet, 7 45255011000036105 zolpidem tartrate 10 mg tablet 44930011000036107 zolpidem +961881000168105 Bisoprolol (Apo) 1.25 mg tablet, 56, blister pack 182108 961871000168107 Bisoprolol (Apo) 1.25 mg tablet, 56 961571000168109 Bisoprolol (Apo) 1.25 mg tablet 961091000168100 Bisoprolol (Apo) 961091000168100 Bisoprolol (Apo) 46793011000036105 bisoprolol fumarate 1.25 mg tablet, 56 45318011000036102 bisoprolol fumarate 1.25 mg tablet 21839011000036103 bisoprolol +44243011000036104 Diflucan 50 mg/5 mL powder for oral liquid, 35 mL, bottle 59089 41715011000036108 Diflucan 50 mg/5 mL powder for oral liquid, 35 mL 40161011000036109 Diflucan 50 mg/5 mL powder for oral liquid, 5 mL 11811000168107 Diflucan 11811000168107 Diflucan 46526011000036105 fluconazole 50 mg/5 mL powder for oral liquid, 35 mL 45202011000036108 fluconazole 50 mg/5 mL powder for oral liquid 21365011000036105 fluconazole +661521000168109 Carvedilol (AN) 3.125 mg film-coated tablet, 30, blister pack 174792 661501000168100 Carvedilol (AN) 3.125 mg film-coated tablet, 30 661491000168107 Carvedilol (AN) 3.125 mg film-coated tablet 661451000168102 Carvedilol (AN) 661451000168102 Carvedilol (AN) 27961011000036103 carvedilol 3.125 mg tablet, 30 23285011000036108 carvedilol 3.125 mg tablet 21470011000036101 carvedilol +929650011000036109 Valine 1000 Amino Acid Supplement containing 1 g valine powder for oral liquid, 30 x 4 g sachets 929480011000036103 Valine 1000 Amino Acid Supplement containing 1 g valine powder for oral liquid, 30 x 4 g sachets 289761000168107 Valine 1000 Amino Acid Supplement containing 1 g valine powder for oral liquid, 4 g sachet 929377011000036104 Valine 1000 Amino Acid Supplement 929377011000036104 Valine 1000 Amino Acid Supplement 929745011000036109 valine with carbohydrate containing 1 g valine powder for oral liquid, 30 x 4 g sachets 289541000168104 valine with carbohydrate containing 1 g valine powder for oral liquid, 4 g sachet 50774011000036104 valine with carbohydrate +59957011000036103 Nurofen Tension Headache 200 mg tablet, 20, blister pack 120354 55919011000036109 Nurofen Tension Headache 200 mg tablet, 20 53677011000036104 Nurofen Tension Headache 200 mg tablet 41561000168100 Nurofen Tension Headache 41561000168100 Nurofen Tension Headache 63919011000036102 ibuprofen 200 mg tablet, 20 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +933231391000036107 Exemestane (Pfizer) 25 mg sugar coated tablet, 30, blister pack 176215 933225521000036104 Exemestane (Pfizer) 25 mg sugar coated tablet, 30 933220691000036109 Exemestane (Pfizer) 25 mg sugar coated tablet 933218981000036109 Exemestane (Pfizer) 933218981000036109 Exemestane (Pfizer) 27803011000036108 exemestane 25 mg tablet, 30 23131011000036102 exemestane 25 mg tablet 21406011000036109 exemestane +18810011000036108 Arthrexin 25 mg hard capsule, 50, blister pack 17606 12131011000036107 Arthrexin 25 mg hard capsule, 50 4794011000036100 Arthrexin 25 mg hard capsule 3726011000036103 Arthrexin 3726011000036103 Arthrexin 27794011000036105 indometacin 25 mg capsule, 50 23123011000036103 indometacin 25 mg capsule 21301011000036107 indometacin +713461000168109 Cosentyx 150 mg/mL injection solution, 2 x 1 mL injection devices 218800 713451000168107 Cosentyx 150 mg/mL injection solution, 2 x 1 mL injection devices 713431000168101 Cosentyx 150 mg/mL injection solution, injection device 707151000168107 Cosentyx 707151000168107 Cosentyx 713441000168105 secukinumab 150 mg/mL injection, 2 x 1 mL injection devices 713421000168104 secukinumab 150 mg/mL injection, injection device 707171000168103 secukinumab +754381000168102 Oxycodone (Medis) 10 mg hard capsule, 60, blister pack 227861 754351000168109 Oxycodone (Medis) 10 mg hard capsule, 60 754321000168101 Oxycodone (Medis) 10 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 35215011000036104 oxycodone hydrochloride 10 mg capsule, 60 23076011000036103 oxycodone hydrochloride 10 mg capsule 21259011000036105 oxycodone +1059861000168104 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 100, blister pack 234468 1059061000168105 Rosuvastatin (Pharmacor) 5 mg film-coated tablet, 100 1059011000168107 Rosuvastatin (Pharmacor) 5 mg film-coated tablet 1058621000168103 Rosuvastatin (Pharmacor) 1058621000168103 Rosuvastatin (Pharmacor) 928561000168100 rosuvastatin 5 mg tablet, 100 22098011000036103 rosuvastatin 5 mg tablet 21464011000036100 rosuvastatin +68824011000036104 Nicotinell Mint 4 mg chewing gum, 120, blister pack 126044 66698011000036104 Nicotinell Mint 4 mg chewing gum, 120 54113011000036103 Nicotinell Mint 4 mg chewing gum 4731000168109 Nicotinell 4731000168109 Nicotinell 71514011000036100 nicotine 4 mg gum, 120 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +60351011000036102 Benadryl for the Family Original oral liquid solution, 2.5 L, bottle 14114 56310011000036109 Benadryl for the Family Original oral liquid solution, 2.5 L 53872011000036107 Benadryl for the Family Original oral liquid solution, 5 mL 3541000168107 Benadryl for the Family Original 3541000168107 Benadryl for the Family Original 63299011000036100 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid, 2.5 L 61912011000036104 diphenhydramine hydrochloride 12.5 mg/5 mL + ammonium chloride 125 mg/5 mL + sodium citrate dihydrate 50 mg/5 mL oral liquid 61771011000036107 diphenhydramine + ammonium chloride + citric acid +166171000036104 Temaccord 250 mg hard capsule, 5, sachet 206035 164421000036101 Temaccord 250 mg hard capsule, 5 162241000036101 Temaccord 250 mg hard capsule 162021000036103 Temaccord 162021000036103 Temaccord 27643011000036109 temozolomide 250 mg capsule, 5 22980011000036105 temozolomide 250 mg capsule 21595011000036105 temozolomide +74913011000036103 Tiger Snake Antivenom (CSL) 3000 units injection solution, 1 vial 74895 74400011000036106 Tiger Snake Antivenom (CSL) 3000 units injection solution, 1 vial 73923011000036105 Tiger Snake Antivenom (CSL) 3000 units injection solution, vial 73739011000036103 Tiger Snake Antivenom (CSL) 73739011000036103 Tiger Snake Antivenom (CSL) 75497011000036102 tiger snake antivenom 3000 units injection, 1 vial 75097011000036108 tiger snake antivenom 3000 units injection, vial 74990011000036105 tiger snake antivenom +1096511000168102 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 20, blister pack 287308 1096501000168100 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet, 20 1096441000168104 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 180 mg film-coated tablet 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 1096411000168103 Fexofenadine Hayfever and Allergy Relief (Terry White Chemists) 63647011000036104 fexofenadine hydrochloride 180 mg tablet, 20 62034011000036105 fexofenadine hydrochloride 180 mg tablet 21394011000036108 fexofenadine +18947011000036106 Neulactil 10 mg uncoated tablet, 100, blister pack 27523 12255011000036105 Neulactil 10 mg uncoated tablet, 100 4630011000036105 Neulactil 10 mg uncoated tablet 3728011000036104 Neulactil 3728011000036104 Neulactil 27019011000036107 periciazine 10 mg tablet, 100 22392011000036100 periciazine 10 mg tablet 21737011000036107 periciazine +920821000168105 Aciclovir (Apo) 800 mg tablet, 35, blister pack 159141 920811000168103 Aciclovir (Apo) 800 mg tablet, 35 920801000168101 Aciclovir (Apo) 800 mg tablet 920661000168101 Aciclovir (Apo) 920661000168101 Aciclovir (Apo) 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +989211000168101 Aspirin (Blooms The Chemist) 100 mg enteric tablet, 168, blister pack 258433 989201000168104 Aspirin (Blooms The Chemist) 100 mg enteric tablet, 168 989151000168107 Aspirin (Blooms The Chemist) 100 mg enteric tablet 989141000168105 Aspirin (Blooms The Chemist) 989141000168105 Aspirin (Blooms The Chemist) 922542011000036105 aspirin 100 mg enteric tablet, 168 75561000036109 aspirin 100 mg enteric tablet 21719011000036107 aspirin +1100851000168106 Medix Inhaler inhalation solution, 0.5 mL, tube 284794 1100841000168109 Medix Inhaler inhalation solution, 0.5 mL 1100831000168100 Medix Inhaler inhalation solution 1100821000168103 Medix Inhaler 1100821000168103 Medix Inhaler 71225011000036103 menthol 197 mg/0.5 mL + camphor 197 mg/0.5 mL inhalation solution, 0.5 mL 69907011000036109 menthol 197 mg/0.5 mL + camphor 197 mg/0.5 mL inhalation solution 69811011000036106 menthol + camphor +933239661000036108 Meloxicam (Apo) 7.5 mg hard capsule, 100, blister pack 181191 933236981000036101 Meloxicam (Apo) 7.5 mg hard capsule, 100 933234781000036108 Meloxicam (Apo) 7.5 mg hard capsule 21941000168109 Meloxicam (Apo) 21941000168109 Meloxicam (Apo) 52887011000036107 meloxicam 7.5 mg capsule, 100 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +60257011000036104 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 4 sachets 134660 56216011000036103 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 4 sachets 53843011000036101 Lemsip Max Cold and Flu plus Chesty Cough Lemon powder for oral liquid, 1 sachet 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 53235011000036105 Lemsip Max Cold and Flu plus Chesty Cough 63357011000036106 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 4 sachets 61926011000036108 paracetamol 1 g + phenylephrine hydrochloride 12.2 mg + guaifenesin 200 mg powder for oral liquid, 1 sachet 61754011000036107 paracetamol + phenylephrine + guaifenesin +69569011000036105 Dettol Antiseptic Liquid 4.8% solution, 4 L, bottle 61404 67369011000036104 Dettol Antiseptic Liquid 4.8% solution, 4 L 65632011000036107 Dettol Antiseptic Liquid 4.8% solution 65186011000036101 Dettol Antiseptic Liquid 65186011000036101 Dettol Antiseptic Liquid 71909011000036108 chloroxylenol 4.8% solution, 4 L 70243011000036106 chloroxylenol 4.8% solution 69808011000036100 chloroxylenol +730681000168104 Fess 0.704% nasal spray, 2 x 75 mL, pump packs 76557011000036101 Fess 0.704% nasal spray, 2 x 75 mL 76031011000036107 Fess 0.704% nasal spray 5581000168103 Fess 5581000168103 Fess 78114011000036102 sodium chloride 0.704% nasal spray, 2 x 75 mL 77493011000036107 sodium chloride 0.704% nasal spray 21308011000036103 sodium chloride +1002181000168104 Pregabalin (Apo) 225 mg hard capsule, 14, blister pack 193278 1001251000168105 Pregabalin (Apo) 225 mg hard capsule, 14 1001241000168108 Pregabalin (Apo) 225 mg hard capsule 969931000168101 Pregabalin (Apo) 969931000168101 Pregabalin (Apo) 855381000168101 pregabalin 225 mg capsule, 14 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +44320011000036104 Relenza Rotadisk 5 mg powder for inhalation, 4 unit doses, blister pack 66962 41787011000036100 Relenza Rotadisk 5 mg powder for inhalation, 4 unit doses 40200011000036104 Relenza Rotadisk 5 mg powder for inhalation, 5 mg unit dose 19421000168101 Relenza Rotadisk 19421000168101 Relenza Rotadisk 46593011000036109 zanamivir 5 mg powder for inhalation, 4 unit doses 45232011000036103 zanamivir 5 mg powder for inhalation, unit dose 44894011000036103 zanamivir +37441011000036109 Tracrium 25 mg/2.5 mL intravenous infusion injection, 5 x 2.5 mL ampoules 11008 36645011000036108 Tracrium 25 mg/2.5 mL intravenous infusion injection, 5 x 2.5 mL ampoules 36118011000036106 Tracrium 25 mg/2.5 mL intravenous infusion injection, 2.5 mL ampoule 35993011000036100 Tracrium 35993011000036100 Tracrium 38563011000036103 atracurium besilate 25 mg/2.5 mL injection, 5 x 2.5 mL ampoules 37839011000036100 atracurium besilate 25 mg/2.5 mL injection, ampoule 37800011000036104 atracurium +935921000168106 Zolpidem (Apo) 5 mg film-coated tablet, 14, blister pack 127151 935911000168104 Zolpidem (Apo) 5 mg film-coated tablet, 14 935881000168104 Zolpidem (Apo) 5 mg film-coated tablet 734961000168109 Zolpidem (Apo) 734961000168109 Zolpidem (Apo) 926201000168102 zolpidem tartrate 5 mg tablet, 14 926121000168102 zolpidem tartrate 5 mg tablet 44930011000036107 zolpidem +754441000168100 Oxycodone (AS) 5 mg hard capsule, 60, bottle 227830 754431000168109 Oxycodone (AS) 5 mg hard capsule, 60 754401000168102 Oxycodone (AS) 5 mg hard capsule 754391000168104 Oxycodone (AS) 754391000168104 Oxycodone (AS) 35216011000036106 oxycodone hydrochloride 5 mg capsule, 60 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +176771000036108 Cadivast 10/10 film-coated tablet, 30, blister pack 199220 174921000036104 Cadivast 10/10 film-coated tablet, 30 173231000036106 Cadivast 10/10 film-coated tablet 12041000168109 Cadivast 10/10 12041000168109 Cadivast 10/10 26546011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet, 30 21955011000036109 amlodipine 10 mg + atorvastatin 10 mg tablet 21361011000036108 amlodipine + atorvastatin +929411000168107 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 12 x 1 L bags 48510 929401000168109 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 12 x 1 L bags 65568011000036108 Compound Sodium Lactate (Hartmann's) (Baxter) intravenous infusion injection, 1 L bag 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 11881000168101 Compound Sodium Lactate (Hartmann's) (Baxter) 929391000168107 calcium chloride dihydrate 0.027% (270 mg/L) + potassium chloride 0.04% (400 mg/L) + sodium chloride 0.6% (6 g/L) + sodium lactate 0.322% (3.22 g/L) injection, 12 x 1 L bags 70184011000036103 sodium lactate 0.322% (3.22 g/L) + sodium chloride 0.6% (6 g/L) + potassium chloride 0.04% (400 mg/L) + calcium chloride dihydrate 0.027% (270 mg/L) injection, bag 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate +931625011000036109 Aqium 70% gel, 375 mL, pump pack 165368 930786011000036108 Aqium 70% gel, 375 mL 930044011000036106 Aqium 70% gel 65090011000036106 Aqium 65090011000036106 Aqium 932410011000036105 ethanol 70% gel, 375 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +931625011000036109 Aqium 70% gel, 375 mL, pump pack 179333 930786011000036108 Aqium 70% gel, 375 mL 930044011000036106 Aqium 70% gel 65090011000036106 Aqium 65090011000036106 Aqium 932410011000036105 ethanol 70% gel, 375 mL 925387011000036103 ethanol 70% gel 69846011000036106 ethanol +993551000168102 Lyrica 225 mg hard capsule, 20, bottle 99536 993541000168104 Lyrica 225 mg hard capsule, 20 993511000168103 Lyrica 225 mg hard capsule 32972011000036104 Lyrica 32972011000036104 Lyrica 903611000168100 pregabalin 225 mg capsule, 20 855361000168105 pregabalin 225 mg capsule 33640011000036108 pregabalin +19673011000036103 Macrodantin 100 mg hard capsule, 30, bottle 60065 12936011000036100 Macrodantin 100 mg hard capsule, 30 6226011000036104 Macrodantin 100 mg hard capsule 3510011000036109 Macrodantin 3510011000036109 Macrodantin 27451011000036108 nitrofurantoin 100 mg capsule, 30 22798011000036101 nitrofurantoin 100 mg capsule 21498011000036105 nitrofurantoin +826471000168103 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack 93942 826461000168109 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack 637851000168104 Menjugate Syringe (inert substance) diluent, 0.5 mL syringe 38231000168103 Menjugate Syringe 38231000168103 Menjugate Syringe 826451000168107 meningococcal C conjugate vaccine injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack 629781000168109 inert substance diluent, 0.5 mL syringe 21220011000036103 inert substance +826471000168103 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack 93942 826461000168109 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack 826411000168106 Menjugate Syringe (meningococcal C conjugate vaccine) powder for injection, 10 microgram vial 38231000168103 Menjugate Syringe 38231000168103 Menjugate Syringe 826451000168107 meningococcal C conjugate vaccine injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack 826401000168108 meningococcal C conjugate vaccine injection, vial 826391000168106 meningococcal C conjugate vaccine +1070641000168109 Zinnat 250 mg film-coated tablet, 10, strip pack 44092 763561000168109 Zinnat 250 mg film-coated tablet, 10 5256011000036102 Zinnat 250 mg film-coated tablet 4288011000036102 Zinnat 4288011000036102 Zinnat 763551000168107 cefuroxime 250 mg tablet, 10 22549011000036104 cefuroxime 250 mg tablet 21474011000036106 cefuroxime +1041051000168105 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device 122853 1041041000168108 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device 1041021000168102 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device 41101000168107 Aranesp Sureclick 41101000168107 Aranesp Sureclick 1041031000168104 darbepoetin alfa 20 microgram/0.5 mL injection, 0.5 mL injection device 1041011000168109 darbepoetin alfa 20 microgram/0.5 mL injection, injection device 21234011000036105 darbepoetin alfa +822841000168109 Bexsero injection suspension, 10 x 0.5 mL syringes 190719 822831000168100 Bexsero injection suspension, 10 x 0.5 mL syringes 822781000168108 Bexsero injection suspension, 0.5 mL syringe 698391000168105 Bexsero 698391000168105 Bexsero 822821000168103 meningococcal B 4 component vaccine injection, 10 x 0.5 mL syringes 822771000168105 meningococcal B 4 component vaccine injection, 0.5 mL syringe 822761000168104 meningococcal B 4 component vaccine +719901000168104 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 1.5 mL cartridge 224622 719891000168103 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 1.5 mL cartridge 719881000168101 Omnitrope (for Surepal-5) 5 mg/1.5 mL injection solution, 1.5 mL cartridge 3586011000036105 Omnitrope 3586011000036105 Omnitrope 28298011000036100 somatropin 5 mg/1.5 mL injection, 1.5 mL cartridge 23612011000036101 somatropin 5 mg/1.5 mL injection, cartridge 21295011000036100 somatropin +929102011000036101 Pioglitazone (Chemmart) 45 mg uncoated tablet, 98, blister pack 166916 928463011000036105 Pioglitazone (Chemmart) 45 mg uncoated tablet, 98 927989011000036102 Pioglitazone (Chemmart) 45 mg uncoated tablet 927769011000036105 Pioglitazone (Chemmart) 927769011000036105 Pioglitazone (Chemmart) 929262011000036100 pioglitazone 45 mg tablet, 98 23136011000036107 pioglitazone 45 mg tablet 21416011000036107 pioglitazone +1067011000168105 Pain (Chemists' Own) uncoated tablet, 40, blister pack 93836 1067001000168107 Pain (Chemists' Own) uncoated tablet, 40 54316011000036102 Pain (Chemists' Own) uncoated tablet 53153011000036106 Pain (Chemists' Own) 53153011000036106 Pain (Chemists' Own) 932460011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet, 40 52258011000036105 paracetamol 500 mg + codeine phosphate hemihydrate 10 mg tablet 21286011000036106 paracetamol + codeine +18705011000036104 Simvahexal 5 mg film-coated tablet, 30, blister pack 114796 14203011000036107 Simvahexal 5 mg film-coated tablet, 30 7484011000036102 Simvahexal 5 mg film-coated tablet 4277011000036106 Simvahexal 4277011000036106 Simvahexal 28210011000036101 simvastatin 5 mg tablet, 30 23522011000036101 simvastatin 5 mg tablet 21242011000036102 simvastatin +50557011000036107 Aclasta 5 mg/100 mL intravenous infusion injection, 3 x 100 mL vials 134664 49591011000036104 Aclasta 5 mg/100 mL intravenous infusion injection, 3 x 100 mL vials 48785011000036102 Aclasta 5 mg/100 mL intravenous infusion injection, 100 mL vial 48342011000036104 Aclasta 48342011000036104 Aclasta 51496011000036102 zoledronic acid 5 mg/100 mL injection, 3 x 100 mL vials 50987011000036105 zoledronic acid 5 mg/100 mL injection, vial 21790011000036102 zoledronic acid +1071281000168108 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet, 36, blister pack 205190 1071271000168105 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet, 36 1071221000168109 Cold and Flu Day PE (Pharmacist Formula) film-coated tablet 1071211000168102 Cold and Flu Day PE (Pharmacist Formula) 1071211000168102 Cold and Flu Day PE (Pharmacist Formula) 1069921000168109 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet, 36 61876011000036104 paracetamol 500 mg + codeine phosphate hemihydrate 9.5 mg + phenylephrine hydrochloride 5 mg tablet 61725011000036105 paracetamol + codeine + phenylephrine +82431000036103 Amclav Forte 400/57 (GA) powder for oral liquid, 60 mL, bottle 190082 80461000036108 Amclav Forte 400/57 (GA) powder for oral liquid, 60 mL 78761000036106 Amclav Forte 400/57 (GA) powder for oral liquid, 5 mL 36611000168107 Amclav Forte 400/57 (GA) 36611000168107 Amclav Forte 400/57 (GA) 28154011000036104 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid, 60 mL 23463011000036105 amoxicillin 400 mg/5 mL + clavulanic acid 57 mg/5 mL powder for oral liquid 21360011000036101 amoxicillin + clavulanic acid +933214051000036106 Nivestim 120 microgram/0.2 mL injection solution, 10 x 0.2 mL syringes 160106 933203081000036100 Nivestim 120 microgram/0.2 mL injection solution, 10 x 0.2 mL syringes 933195671000036105 Nivestim 120 microgram/0.2 mL injection solution, 0.2 mL syringe 927778011000036105 Nivestim 927778011000036105 Nivestim 933203111000036109 filgrastim 120 microgram/0.2 mL injection, 10 x 0.2 mL syringes 933195681000036107 filgrastim 120 microgram/0.2 mL injection, syringe 21265011000036102 filgrastim +968391000168106 Busulfan (Apo) 60 mg/10 mL injection solution, 8 x 10 mL vials 210230 968381000168108 Busulfan (Apo) 60 mg/10 mL injection solution, 8 x 10 mL vials 968371000168105 Busulfan (Apo) 60 mg/10 mL injection solution, 10 mL vial 968361000168104 Busulfan (Apo) 968361000168104 Busulfan (Apo) 929213011000036108 busulfan 60 mg/10 mL injection, 8 x 10 mL vials 929149011000036100 busulfan 60 mg/10 mL injection, vial 21405011000036102 busulfan +19915011000036108 Doxyhexal 100 mg uncoated tablet, 7, blister pack 66302 13160011000036104 Doxyhexal 100 mg uncoated tablet, 7 6443011000036107 Doxyhexal 100 mg uncoated tablet 4389011000036102 Doxyhexal 4389011000036102 Doxyhexal 27888011000036102 doxycycline 100 mg tablet, 7 23213011000036105 doxycycline 100 mg tablet 21784011000036108 doxycycline +754301000168105 Oxycodone (Medis) 5 mg hard capsule, 20, bottle 227843 754261000168102 Oxycodone (Medis) 5 mg hard capsule, 20 754251000168104 Oxycodone (Medis) 5 mg hard capsule 754171000168102 Oxycodone (Medis) 754171000168102 Oxycodone (Medis) 27746011000036106 oxycodone hydrochloride 5 mg capsule, 20 23077011000036100 oxycodone hydrochloride 5 mg capsule 21259011000036105 oxycodone +1122601000168100 Fluarix Tetra 2018 with Detached Needle injection suspension, 10 x 0.5 mL syringes 242512 1122591000168107 Fluarix Tetra 2018 with Detached Needle injection suspension, 10 x 0.5 mL syringes 1122511000168103 Fluarix Tetra 2018 with Detached Needle injection suspension, 0.5 mL syringe 1122401000168102 Fluarix Tetra 2018 1122401000168102 Fluarix Tetra 2018 1121931000168107 influenza quadrivalent adult vaccine 2018 injection, 10 x 0.5 mL syringes 1121881000168102 influenza quadrivalent adult vaccine 2018 injection, 0.5 mL syringe 1117271000168102 influenza quadrivalent vaccine 2018 +82394011000036102 Valprease 200 mg enteric tablet, 100, blister pack 153053 82183011000036107 Valprease 200 mg enteric tablet, 100 82025011000036109 Valprease 200 mg enteric tablet 81975011000036104 Valprease 81975011000036104 Valprease 27139011000036107 valproate sodium 200 mg enteric tablet, 100 22504011000036109 valproate sodium 200 mg enteric tablet 21225011000036107 valproate +927241000168102 Zovirax 800 mg uncoated tablet, 35, blister pack 45083 927231000168106 Zovirax 800 mg uncoated tablet, 35 927141000168105 Zovirax 800 mg uncoated tablet 16291000168109 Zovirax 16291000168109 Zovirax 28320011000036102 aciclovir 800 mg tablet, 35 23632011000036109 aciclovir 800 mg tablet 21239011000036106 aciclovir +659511000168105 Candesartan Cilexetil HCTZ 32/12.5 (AN) uncoated tablet, 30, bottle 196400 659501000168107 Candesartan Cilexetil HCTZ 32/12.5 (AN) uncoated tablet, 30 659491000168100 Candesartan Cilexetil HCTZ 32/12.5 (AN) uncoated tablet 659481000168103 Candesartan Cilexetil HCTZ 32/12.5 (AN) 659481000168103 Candesartan Cilexetil HCTZ 32/12.5 (AN) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +69567011000036103 Dettol Antiseptic Liquid 4.8% solution, 250 mL, bottle 61404 67367011000036106 Dettol Antiseptic Liquid 4.8% solution, 250 mL 65632011000036107 Dettol Antiseptic Liquid 4.8% solution 65186011000036101 Dettol Antiseptic Liquid 65186011000036101 Dettol Antiseptic Liquid 71907011000036101 chloroxylenol 4.8% solution, 250 mL 70243011000036106 chloroxylenol 4.8% solution 69808011000036100 chloroxylenol +655741000168103 Cyproterone Acetate (AN) 50 mg uncoated tablet, 50, blister pack 184226 655731000168107 Cyproterone Acetate (AN) 50 mg uncoated tablet, 50 655701000168100 Cyproterone Acetate (AN) 50 mg uncoated tablet 655531000168103 Cyproterone Acetate (AN) 655531000168103 Cyproterone Acetate (AN) 27797011000036104 cyproterone acetate 50 mg tablet, 50 23125011000036102 cyproterone acetate 50 mg tablet 21694011000036101 cyproterone +997891000168102 Imatinib (Apo) 100 mg film-coated tablet, 100, bottle 196034 997881000168100 Imatinib (Apo) 100 mg film-coated tablet, 100 997851000168107 Imatinib (Apo) 100 mg film-coated tablet 997841000168105 Imatinib (Apo) 997841000168105 Imatinib (Apo) 829031000168104 imatinib 100 mg tablet, 100 23451011000036102 imatinib 100 mg tablet 21401011000036104 imatinib +61302011000036108 Hair A-Gain 5% application, 6 x 60 mL, bottles 79607 57238011000036107 Hair A-Gain 5% application, 6 x 60 mL 54249011000036105 Hair A-Gain 5% application 53423011000036106 Hair A-Gain 53423011000036106 Hair A-Gain 63776011000036109 minoxidil 5% application, 6 x 60 mL 62096011000036107 minoxidil 5% application 21642011000036104 minoxidil +917031000168107 Amitriptyline (RS) 50 mg tablet, 250, bottle 232145 917021000168109 Amitriptyline (RS) 50 mg tablet, 250 866651000168104 Amitriptyline (RS) 50 mg tablet 866481000168108 Amitriptyline (RS) 866481000168108 Amitriptyline (RS) 862961000168107 amitriptyline hydrochloride 50 mg tablet, 250 22884011000036107 amitriptyline hydrochloride 50 mg tablet 21407011000036107 amitriptyline +972731000168101 Pregabalin (Apotex) 75 mg hard capsule, 56, blister pack 267554 972721000168104 Pregabalin (Apotex) 75 mg hard capsule, 56 972671000168107 Pregabalin (Apotex) 75 mg hard capsule 972661000168101 Pregabalin (Apotex) 972661000168101 Pregabalin (Apotex) 33830011000036102 pregabalin 75 mg capsule, 56 33694011000036105 pregabalin 75 mg capsule 33640011000036108 pregabalin +1062671000168106 Rapideine Extra uncoated tablet, 36, blister pack 220728 1062661000168100 Rapideine Extra uncoated tablet, 36 1062551000168103 Rapideine Extra uncoated tablet 1062541000168100 Rapideine Extra 1062541000168100 Rapideine Extra 1033971000168102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 36 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 21286011000036106 paracetamol + codeine +662161000168100 Amoxiclav 500/125 (AN) film-coated tablet, 10, blister pack 123968 662151000168102 Amoxiclav 500/125 (AN) film-coated tablet, 10 662141000168104 Amoxiclav 500/125 (AN) film-coated tablet 662131000168108 Amoxiclav 500/125 (AN) 662131000168108 Amoxiclav 500/125 (AN) 28153011000036101 amoxicillin 500 mg + clavulanic acid 125 mg tablet, 10 23462011000036103 amoxicillin 500 mg + clavulanic acid 125 mg tablet 21360011000036101 amoxicillin + clavulanic acid +166211000036101 Vaxigrip 2014 injection suspension, 1 x 0.5 mL syringe 80198 164471000036102 Vaxigrip 2014 injection suspension, 1 x 0.5 mL syringe 162671000036106 Vaxigrip 2014 injection suspension, 0.5 mL syringe 4661000168109 Vaxigrip 2014 4661000168109 Vaxigrip 2014 163631000036104 influenza trivalent adult vaccine 2014 injection, 1 x 0.5 mL syringe 162071000036104 influenza trivalent adult vaccine 2014 injection, 0.5 mL syringe 166301000036105 influenza trivalent vaccine 2014 +60925011000036109 Nurofen 200 mg sugar coated tablet, 24, blister pack 127272 56879011000036105 Nurofen 200 mg sugar coated tablet, 24 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +60925011000036109 Nurofen 200 mg sugar coated tablet, 24, blister pack 61869 56879011000036105 Nurofen 200 mg sugar coated tablet, 24 54111011000036104 Nurofen 200 mg sugar coated tablet 5641000168109 Nurofen 5641000168109 Nurofen 63957011000036101 ibuprofen 200 mg tablet, 24 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +131641000036101 Mirtazapine (GA) 45 mg film-coated tablet, 30, blister pack 197505 128621000036104 Mirtazapine (GA) 45 mg film-coated tablet, 30 124151000036108 Mirtazapine (GA) 45 mg film-coated tablet 123751000036107 Mirtazapine (GA) 123751000036107 Mirtazapine (GA) 28019011000036102 mirtazapine 45 mg tablet, 30 23342011000036102 mirtazapine 45 mg tablet 21463011000036102 mirtazapine +68901011000036104 Codral Linctus oral liquid solution, 100 mL, bottle 11091 66591011000036104 Codral Linctus oral liquid solution, 100 mL 65336011000036100 Codral Linctus oral liquid solution, 5 mL 35671000168109 Codral Linctus 35671000168109 Codral Linctus 71314011000036103 codeine phosphate hemihydrate 7.5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid, 100 mL 69945011000036106 codeine phosphate hemihydrate 7.5 mg/5 mL + pseudoephedrine hydrochloride 20 mg/5 mL oral liquid 61752011000036103 codeine + pseudoephedrine +878471000168103 Baltine 60 mg enteric capsule, 14, blister pack 210679 878461000168109 Baltine 60 mg enteric capsule, 14 878401000168108 Baltine 60 mg enteric capsule 878291000168101 Baltine 878291000168101 Baltine 756801000168107 duloxetine 60 mg enteric capsule, 14 37877011000036105 duloxetine 60 mg enteric capsule 37715011000036107 duloxetine +753741000168105 Remifentanil (Apo) 2 mg powder for injection, 5 vials 234709 753731000168101 Remifentanil (Apo) 2 mg powder for injection, 5 vials 753721000168104 Remifentanil (Apo) 2 mg powder for injection, 2 mg vial 753711000168106 Remifentanil (Apo) 753711000168106 Remifentanil (Apo) 35190011000036105 remifentanil 2 mg injection, 5 vials 34899011000036103 remifentanil 2 mg injection, vial 34838011000036103 remifentanil +131731000036100 Candesartan Cilexetil HCT 32/12.5 (Stada) uncoated tablet, 30, blister pack 204572 128701000036101 Candesartan Cilexetil HCT 32/12.5 (Stada) uncoated tablet, 30 124971000036101 Candesartan Cilexetil HCT 32/12.5 (Stada) uncoated tablet 10311000168106 Candesartan Cilexetil HCT 32/12.5 (Stada) 10311000168106 Candesartan Cilexetil HCT 32/12.5 (Stada) 83492011000036106 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet, 30 83434011000036108 candesartan cilexetil 32 mg + hydrochlorothiazide 12.5 mg tablet 21285011000036104 candesartan + hydrochlorothiazide +19870011000036103 MS Contin Suspension 200 mg modified release granules, 20 sachets 65399 13117011000036104 MS Contin Suspension 200 mg modified release granules, 20 sachets 6400011000036105 MS Contin Suspension 200 mg modified release granules, 1 sachet 1191000168109 MS Contin Suspension 1191000168109 MS Contin Suspension 27558011000036106 morphine sulfate pentahydrate 200 mg modified release granules, 20 sachets 22897011000036100 morphine sulfate pentahydrate 200 mg modified release granules, 1 sachet 21252011000036100 morphine +933246101000036108 Lubri-Gel jelly, 100 g, tube 933242721000036100 Lubri-Gel jelly, 100 g 933241221000036100 Lubri-Gel jelly 933240741000036109 Lubri-Gel 933240741000036109 Lubri-Gel 933242731000036103 lubricating agent jelly, 100 g 50913011000036103 lubricating agent jelly 50706011000036101 lubricating agent +1073361000168107 Fluconazole (Sandoz) 400 mg/200 mL injection solution, 200 mL vial 104304 1073351000168105 Fluconazole (Sandoz) 400 mg/200 mL injection solution, 200 mL vial 1073341000168108 Fluconazole (Sandoz) 400 mg/200 mL injection solution, 200 mL vial 920081011000036102 Fluconazole (Sandoz) 920081011000036102 Fluconazole (Sandoz) 933200521000036104 fluconazole 400 mg/200 mL injection, 200 mL vial 933194441000036102 fluconazole 400 mg/200 mL injection, vial 21365011000036105 fluconazole +60683011000036103 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 100 mL, bottle 42870 56641011000036101 Difflam-C Anti-Inflammatory Antiseptic mouthwash, 100 mL 54019011000036107 Difflam-C Anti-Inflammatory Antiseptic mouthwash 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 9971000168105 Difflam-C Anti-Inflammatory Antiseptic 63478011000036101 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash, 100 mL 61990011000036104 benzydamine hydrochloride 0.15% + chlorhexidine gluconate 0.12% mouthwash 61818011000036107 benzydamine + chlorhexidine +20849011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92116 14012011000036107 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 84 x Rebetol capsules), 1 pack 631171000168108 Peg-Intron Redipen Injector (inert substance) diluent, 0.5 mL cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28075011000036109 peginterferon alfa-2b 50 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 179741000036106 inert substance diluent, 0.5 mL cartridge 21220011000036103 inert substance +20849011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92116 14012011000036107 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 84 x Rebetol capsules), 1 pack 7293011000036101 Peg-Intron Redipen Injector (peginterferon alfa-2b 50 microgram) powder for injection, 50 microgram cartridge 10531000168106 Pegatron Combination Therapy with Redipen Injector 6861000168100 Peg-Intron Redipen Injector 28075011000036109 peginterferon alfa-2b 50 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23388011000036105 peginterferon alfa-2b 50 microgram injection, cartridge 21323011000036101 peginterferon alfa-2b +20849011000036106 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 84 x Rebetol capsules), 1 pack, composite pack 92116 14012011000036107 Pegatron Combination Therapy with Redipen Injector (4 x Peg-Intron Redipen Injector 50 microgram packs, 84 x Rebetol capsules), 1 pack 7298011000036106 Rebetol 200 mg hard capsule 10531000168106 Pegatron Combination Therapy with Redipen Injector 3301011000036102 Rebetol 28075011000036109 peginterferon alfa-2b 50 microgram injection [4 cartridges] (&) ribavirin 200 mg capsule [84] (&) inert substance diluent [4 x 0.5 mL cartridges], 1 pack 23393011000036101 ribavirin 200 mg capsule 21714011000036106 ribavirin +829261000168100 Imatinib (Teva) 400 mg film-coated tablet, 500, bottle 232238 829251000168102 Imatinib (Teva) 400 mg film-coated tablet, 500 829201000168101 Imatinib (Teva) 400 mg film-coated tablet 829091000168100 Imatinib (Teva) 829091000168100 Imatinib (Teva) 829241000168104 imatinib 400 mg tablet, 500 23452011000036108 imatinib 400 mg tablet 21401011000036104 imatinib +985001000168106 Sandrena 0.1% (1 mg/g) gel, 28 x 500 mg sachets 93608 984991000168100 Sandrena 0.1% (1 mg/g) gel, 28 x 500 mg sachets 984971000168101 Sandrena 0.1% (1 mg/g) gel, 500 mg sachet 3739011000036109 Sandrena 3739011000036109 Sandrena 984981000168103 estradiol 0.1% (1 mg/g) gel, 28 x 500 mg sachets 984961000168107 estradiol 0.1% (1 mg/g) gel, 500 mg sachet 21238011000036103 estradiol +165891000036101 Paracetamol (Kabi) 1 g/100 mL injection solution, 12 x 100 mL vials 203624 164071000036107 Paracetamol (Kabi) 1 g/100 mL injection solution, 12 x 100 mL vials 162161000036108 Paracetamol (Kabi) 1 g/100 mL injection solution, 100 mL vial 161851000036107 Paracetamol (Kabi) 161851000036107 Paracetamol (Kabi) 47031011000036102 paracetamol 1 g/100 mL injection, 12 x 100 mL vials 45382011000036102 paracetamol 1 g/100 mL injection, vial 21433011000036107 paracetamol +926716011000036101 Nicorette Freshmint 4 mg chewing gum, 30, blister pack 115010 926098011000036100 Nicorette Freshmint 4 mg chewing gum, 30 87061011000036104 Nicorette Freshmint 4 mg chewing gum 15261000168108 Nicorette 15261000168108 Nicorette 927323011000036100 nicotine 4 mg gum, 30 62033011000036108 nicotine 4 mg gum 21432011000036100 nicotine +775251000168102 Eldisine 5 mg powder for injection, 1 vial 60703 775241000168104 Eldisine 5 mg powder for injection, 1 vial 775221000168105 Eldisine 5 mg powder for injection, 5 mg vial 775181000168102 Eldisine 775181000168102 Eldisine 775231000168108 vindesine sulfate 5 mg injection, 1 vial 775211000168103 vindesine sulfate 5 mg injection, vial 775201000168101 vindesine +933239751000036100 Meloxicam (Chemmart) 7.5 mg hard capsule, 20, blister pack 181200 933237071000036102 Meloxicam (Chemmart) 7.5 mg hard capsule, 20 933234801000036109 Meloxicam (Chemmart) 7.5 mg hard capsule 3140011000036105 Meloxicam (Chemmart) 3140011000036105 Meloxicam (Chemmart) 52888011000036108 meloxicam 7.5 mg capsule, 20 23174011000036102 meloxicam 7.5 mg capsule 21678011000036102 meloxicam +895511000168107 Apomine 100 mg/20 mL injection solution, 5 x 20 mL vials 260149 895501000168109 Apomine 100 mg/20 mL injection solution, 5 x 20 mL vials 895451000168107 Apomine 100 mg/20 mL injection solution, 20 mL vial 30841000168109 Apomine 30841000168109 Apomine 895491000168102 apomorphine hydrochloride hemihydrate 100 mg/20 mL injection, 5 x 20 mL vials 895441000168105 apomorphine hydrochloride hemihydrate 100 mg/20 mL injection, vial 21732011000036105 apomorphine +34633011000036104 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL vials 118335 34223011000036103 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 10 x 100 mL vials 33971011000036101 Metronidazole (Sandoz) 500 mg/100 mL (0.5%) intravenous infusion injection, 100 mL vial 33950011000036106 Metronidazole (Sandoz) 33950011000036106 Metronidazole (Sandoz) 35103011000036100 metronidazole 500 mg/100 mL (0.5%) injection, 10 x 100 mL vials 34850011000036104 metronidazole 500 mg/100 mL (0.5%) injection, vial 21482011000036106 metronidazole +1054121000168100 Norspan 20 microgram/hour patch, 4, sachet 116650 1054111000168107 Norspan 20 microgram/hour patch, 4 5223011000036107 Norspan 20 microgram/hour patch 4363011000036103 Norspan 4363011000036103 Norspan 1046591000168104 buprenorphine 20 microgram/hour patch, 4 22078011000036109 buprenorphine 20 microgram/hour patch 21232011000036101 buprenorphine +44543011000036107 Zyvox 600 mg/300 mL injection solution, 10 x 300 mL bags 79690 41996011000036106 Zyvox 600 mg/300 mL injection solution, 10 x 300 mL bags 40309011000036100 Zyvox 600 mg/300 mL injection solution, 300 mL bag 39746011000036100 Zyvox 39746011000036100 Zyvox 46771011000036102 linezolid 600 mg/300 mL injection, 10 x 300 mL bags 45308011000036100 linezolid 600 mg/300 mL injection, bag 44888011000036109 linezolid +110461000036101 Acetylcysteine (Link) 600 mg tablet, 100, bottle 108561000036101 Acetylcysteine (Link) 600 mg tablet, 100 106761000036109 Acetylcysteine (Link) 600 mg tablet 106561000036102 Acetylcysteine (Link) 106561000036102 Acetylcysteine (Link) 108571000036109 acetylcysteine 600 mg tablet, 100 106771000036101 acetylcysteine 600 mg tablet 21423011000036105 acetylcysteine +20641011000036103 Influvac 2007 injection solution, 1 x 0.5 mL syringe 81465 13821011000036109 Influvac 2007 injection solution, 1 x 0.5 mL syringe 7107011000036106 Influvac 2007 injection solution, 0.5 mL syringe 3271000168103 Influvac 2007 3271000168103 Influvac 2007 27994011000036103 influenza trivalent vaccine 2007 injection, 1 x 0.5 mL syringe 23317011000036106 influenza trivalent vaccine 2007 injection, 0.5 mL syringe 32638011000036100 influenza trivalent vaccine 2007 +933231211000036108 Oxaliplatin (Sun) 50 mg/10 mL concentrated injection, 10 mL vial 173346 933225281000036100 Oxaliplatin (Sun) 50 mg/10 mL concentrated injection, 10 mL vial 933220501000036100 Oxaliplatin (Sun) 50 mg/10 mL concentrated injection, 10 mL vial 933219361000036108 Oxaliplatin (Sun) 933219361000036108 Oxaliplatin (Sun) 26563011000036109 oxaliplatin 50 mg/10 mL injection, 10 mL vial 21972011000036104 oxaliplatin 50 mg/10 mL injection, vial 21543011000036101 oxaliplatin +818591000168107 Afolia 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 262649 818581000168109 Afolia 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 818571000168106 Afolia 450 units (33 microgram)/0.75 mL injection solution, 0.75 mL injection device 818221000168107 Afolia 818221000168107 Afolia 741511000168104 follitropin alfa 450 units (33 microgram)/0.75 mL injection, 0.75 mL injection device 741491000168109 follitropin alfa 450 units (33 microgram)/0.75 mL injection, injection device 21352011000036107 follitropin alfa +985511000168101 Advil Mini Caps 200 mg sugar coated tablet, 90, blister pack 104222 985501000168104 Advil Mini Caps 200 mg sugar coated tablet, 90 985131000168103 Advil Mini Caps 200 mg sugar coated tablet 985091000168100 Advil Mini Caps 985091000168100 Advil Mini Caps 63093011000036109 ibuprofen 200 mg tablet, 90 22754011000036103 ibuprofen 200 mg tablet 21885011000036105 ibuprofen +1019361000168104 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 5, blister pack 175215 1019351000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 5 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019341000168103 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 5 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +43926011000036109 Pravastatin Sodium (GA) 20 mg film-coated tablet, 30, blister pack 139604 41418011000036109 Pravastatin Sodium (GA) 20 mg film-coated tablet, 30 39788011000036107 Pravastatin Sodium (GA) 20 mg film-coated tablet 39737011000036101 Pravastatin Sodium (GA) 39737011000036101 Pravastatin Sodium (GA) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +43926011000036109 Pravastatin Sodium (GA) 20 mg film-coated tablet, 30, blister pack 207991 41418011000036109 Pravastatin Sodium (GA) 20 mg film-coated tablet, 30 39788011000036107 Pravastatin Sodium (GA) 20 mg film-coated tablet 39737011000036101 Pravastatin Sodium (GA) 39737011000036101 Pravastatin Sodium (GA) 28259011000036101 pravastatin sodium 20 mg tablet, 30 23573011000036107 pravastatin sodium 20 mg tablet 21606011000036107 pravastatin +753661000168101 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet, 30, bottle 218253 753651000168103 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet, 30 753641000168100 Olmesartan/Amlodipine 40/10 (Apo) film-coated tablet 753631000168109 Olmesartan/Amlodipine 40/10 (Apo) 753631000168109 Olmesartan/Amlodipine 40/10 (Apo) 922568011000036104 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet, 30 922089011000036108 olmesartan medoxomil 40 mg + amlodipine 10 mg tablet 922065011000036108 olmesartan + amlodipine +77149011000036102 Oralife Peppermint Lip Treatment 0.1% ointment, 20 g, tube 11359 76584011000036101 Oralife Peppermint Lip Treatment 0.1% ointment, 20 g 76037011000036104 Oralife Peppermint Lip Treatment 0.1% ointment 58911000168102 Oralife Peppermint Lip Treatment 58911000168102 Oralife Peppermint Lip Treatment 78139011000036108 chlorhexidine gluconate 0.1% ointment, 20 g 77509011000036103 chlorhexidine gluconate 0.1% ointment 21404011000036101 chlorhexidine +797041000168109 Aciclovir (Ascent) 200 mg uncoated tablet, 90, blister pack 202878 797031000168100 Aciclovir (Ascent) 200 mg uncoated tablet, 90 796971000168101 Aciclovir (Ascent) 200 mg uncoated tablet 796651000168103 Aciclovir (Ascent) 796651000168103 Aciclovir (Ascent) 28318011000036106 aciclovir 200 mg tablet, 90 23631011000036103 aciclovir 200 mg tablet 21239011000036106 aciclovir +50257011000036103 Gelocast Elastic (1080) 8 cm x 5 m (compression) bandage, 1, carton 49307011000036108 Gelocast Elastic (1080) 8 cm x 5 m (compression) bandage, 1 48458011000036108 Gelocast Elastic (1080) 8 cm x 5 m (compression) bandage 51181000168101 Gelocast Elastic (1080) 51181000168101 Gelocast Elastic (1080) 51291011000036106 bandage zinc paste 8 cm x 5 m (compression) bandage, 1 50820011000036106 bandage zinc paste 8 cm x 5 m (compression) bandage 50700011000036104 bandage zinc paste +60908011000036106 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 50 mL, bottle 60796 56862011000036107 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 50 mL 54104011000036103 Dimetapp DM Cough and Cold Elixir colour free oral liquid solution, 5 mL 19951000168104 Dimetapp DM Cough and Cold Elixir 19951000168104 Dimetapp DM Cough and Cold Elixir 63871011000036102 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid, 50 mL 62094011000036104 brompheniramine maleate 2 mg/5 mL + phenylephrine hydrochloride 5 mg/5 mL + dextromethorphan hydrobromide monohydrate 10 mg/5 mL oral liquid 61722011000036102 brompheniramine + phenylephrine + dextromethorphan +920731000168101 Cilopam 20 mg film-coated tablet, 56, blister pack 158864 920721000168104 Cilopam 20 mg film-coated tablet, 56 920591000168109 Cilopam 20 mg film-coated tablet 919901000168107 Cilopam 919901000168107 Cilopam 932394011000036109 citalopram 20 mg tablet, 56 23402011000036102 citalopram 20 mg tablet 21441011000036107 citalopram +1019401000168108 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 14, blister pack 175215 1019391000168106 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet, 14 1019301000168100 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) film-coated tablet 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 1019291000168101 Irbesartan HCTZ 150 mg/12.5 mg (Apotex) 792691000168107 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet, 14 22996011000036109 irbesartan 150 mg + hydrochlorothiazide 12.5 mg tablet 21794011000036107 irbesartan + hydrochlorothiazide +18613011000036108 Velcade 3.5 mg powder for injection, 1 vial 104542 11309011000036107 Velcade 3.5 mg powder for injection, 1 vial 5681011000036104 Velcade 3.5 mg powder for injection, 3.5 mg vial 2994011000036103 Velcade 2994011000036103 Velcade 26598011000036101 bortezomib 3.5 mg injection, 1 vial 22006011000036104 bortezomib 3.5 mg injection, vial 21633011000036105 bortezomib +1047621000168100 Buprenorphine (Sandoz) 15 microgram/hour patch, 4, sachet 269676 1047611000168107 Buprenorphine (Sandoz) 15 microgram/hour patch, 4 1047541000168105 Buprenorphine (Sandoz) 15 microgram/hour patch 1047141000168100 Buprenorphine (Sandoz) 1047141000168100 Buprenorphine (Sandoz) 1046411000168107 buprenorphine 15 microgram/hour patch, 4 776141000168104 buprenorphine 15 microgram/hour patch 21232011000036101 buprenorphine +168411000036101 Dermaveen Moisturising 2% lotion, 5 L, pump pack 56313 167931000036102 Dermaveen Moisturising 2% lotion, 5 L 167551000036102 Dermaveen Moisturising 2% lotion 9661000168105 Dermaveen Moisturising 9661000168105 Dermaveen Moisturising 167951000036105 colloidal oatmeal 2% lotion, 5 L 167561000036104 colloidal oatmeal 2% lotion 77444011000036102 colloidal oatmeal diff --git a/src/test/resources/expectedReplacement.csv b/src/test/resources/expectedReplacement.csv index c0f6153..b495c20 100644 --- a/src/test/resources/expectedReplacement.csv +++ b/src/test/resources/expectedReplacement.csv @@ -1,4643 +1,4643 @@ -INACTIVE SCTID,INACTIVE PT,REPLACEMENT TYPE SCTID,REPLACEMENT TYPE PT,REPLACEMENT SCTID,REPLACEMENT PT -933205591000036108,"Recombinate 1000 IU (1 x 1000 international units vial, 1 x 10 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",710941000168105,"Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack" -712031000168101,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005241000168105,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -933238801000036102,"Omeprazole (Apo) 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",717551000168100,"Omeprazole (Apo) 20 mg enteric capsule, 30, blister pack" -51474011000036102,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",710051000168106,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches" -54178011000036101,"Difflam Lozenge honey and lemon sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995681000168107,"Difflam Lozenge Honey and Lemon Sugar Free lozenge" -921397011000036103,"Berocca Performance Original effervescent tablet, 45",900000000000526001,"REPLACED BY association reference set",829781000168101,"Berocca Performance Original effervescent tablet, 45" -73947011000036104,"Dukoral Effervescent Granules (inert substance) powder for oral liquid, 5.6 g sachet",900000000000526001,"REPLACED BY association reference set",821901000168106,"Dukoral (inert substance) effervescent granules, 5.6 g sachet" -711691000168103,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005661000168107,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 200 mL bag" -86869011000036100,"Calcia plus Vitamin D 200 IU chewable tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",860111000168106,"Calcia plus Vitamin D 200 IU chewable tablet, 120, bottle" -922531011000036100,"Varicella zoster live attenuated vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831721000168102,"varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack" -411041000168105,"MMA/PA Cooler 15 oral liquid: solution, 130 mL sachet",900000000000526001,"REPLACED BY association reference set",725241000168103,"MMA/PA Cooler 15 oral liquid solution, 130 mL pouch" -75524011000036109,"meningococcal group C conjugate vaccine 10 microgram injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",826481000168100,"meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack" -75455011000036104,"Yellow fever live attenuated vaccine 1000 units injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",822211000168106,"yellow fever live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -81054011000036107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",863871000168103,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag" -85171011000036100,"tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694311000168107,"tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll" -77386011000036106,"Centrum tablet: film-coated, 115, bottle",900000000000526001,"REPLACED BY association reference set",833211000168104,"Centrum film-coated tablet, 115, bottle" -41225011000036105,"Keppra 500 mg/5 mL injection: concentrated, 5 mL vial",900000000000526001,"REPLACED BY association reference set",706281000168105,"Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial" -71371000036106,"exenatide 5 microgram/0.02 mL injection, 60 x 0.02 mL unit doses",900000000000526001,"REPLACED BY association reference set",726771000168106,"exenatide 5 microgram/dose injection, 60 doses" -56529011000036105,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 20 mL",900000000000526001,"REPLACED BY association reference set",721741000168107,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL" -80486011000036108,"Metomax capsule, 10",900000000000526001,"REPLACED BY association reference set",867311000168108,"Metomax capsule, 10" -921986011000036108,"Gastrolyte Citrus effervescent tablet, 20, sachet",900000000000526001,"REPLACED BY association reference set",871581000168107,"Gastrolyte Citrus effervescent tablet, 20, sachet" -711071000168106,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005991000168108,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules" -71195011000036107,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995131000168104,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge, 16" -19637011000036109,"Minirin 10 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1082981000168100,"Minirin 10 microgram/actuation nasal spray, 60 actuations, pump pack" -828001000168101,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845911000168109,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -923727011000036104,"Omeprazole (Pharmacor) 20 mg capsule, 7, blister pack",900000000000526001,"REPLACED BY association reference set",717411000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 7, blister pack" -75509011000036102,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840801000168105,"diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe" -61115011000036105,"Difflam Lozenge honey and lemon sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995701000168105,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16, blister pack" -75521011000036106,"Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840591000168102,"diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial" -718861000168100,"Infanrix Hexa (1 x 0.5 mL vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",840931000168107,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack" -160461000036102,"Oxycontin Reformulation 15 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",928884011000036101,"Oxycontin 15 mg modified release tablet, 28, blister pack" -67178011000036108,"Microshield Handrub solution, 500 mL",900000000000526001,"REPLACED BY association reference set",767641000168100,"Microshield Handrub solution, 500 mL" -925144011000036109,"Omepro 20 mg capsule, 50, blister pack",900000000000526001,"REPLACED BY association reference set",716661000168100,"Omepro 20 mg enteric capsule, 50, blister pack" -78105011000036100,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724291000168105,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL bottles" -36004011000036107,"Calcium carbonate / colecalciferol (Sanofi-Aventis)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",35975011000036105,"Actonel Combi D" -718831000168108,"Infanrix Hexa 10 microgram powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",840901000168100,"Infanrix Hexa 10 microgram powder for injection, 10 microgram vial" -36934011000036107,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",861711000168102,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses" -711061000168100,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005971000168107,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule" -46395011000036107,"lignocaine hydrochloride anhydrous 1% (200 mg/20 mL) injection, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693291000168105,"lidocaine (lignocaine) hydrochloride monohydrate 1% (200 mg/20 mL) injection, 30 x 20 mL ampoules" -703021000168109,"influenza virus quadrivalent vaccine 2015 injection, syringe",900000000000526001,"REPLACED BY association reference set",709771000168105,"influenza quadrivalent adult vaccine 2015 injection, 0.5 mL syringe" -74737011000036107,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821421000168108,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack" -59728011000036109,"Anti Fungal V 6 Day (Amcal) 1% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",714961000168102,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g, tube" -27479011000036105,"fluoxetine 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844321000168102,"fluoxetine 20 mg tablet, 28" -61122011000036107,"Difflam Lozenge orange sugar free lozenge, 8, blister pack",900000000000526001,"REPLACED BY association reference set",995871000168108,"Difflam Lozenge Orange Sugar Free lozenge, 8, blister pack" -669611000168102,"Allmercap 20 mg/mL oral liquid suspension, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",845411000168101,"Allmercap 20 mg/mL oral liquid suspension, 100 mL, bottle" -49265011000036105,"Lophlex LQ oral liquid: solution, 30 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",726281000168101,"Lophlex LQ oral liquid solution, 30 x 125 mL pouches" -679511000168108,"botulinum toxin type A 200 units injection, vial",900000000000526001,"REPLACED BY association reference set",720931000168107,"botulinum toxin type A 200 units injection, vial" -42148011000036101,"Metvix 200 mg/g cream, 2 g",900000000000526001,"REPLACED BY association reference set",999311000168105,"Metvix 160 mg/g cream, 2 g" -22238011000036104,"aluminium hydroxide dried 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg tablet",900000000000526001,"REPLACED BY association reference set",684421000168109,"aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet" -85176011000036105,"adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729851000168100,"adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL injection devices" -933205571000036109,"Recombinate 500 IU (1 x 500 international units vial, 1 x 10 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",710911000168106,"Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack" -922016011000036102,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",950761000168105,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100, bottle" -665561000168102,"PKU Cooler15 Green oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725611000168104,"PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches" -921035011000036100,"B-Dose (Biological Therapies) injection: solution, 2.5 mL vial",900000000000526001,"REPLACED BY association reference set",704531000168102,"B-Dose Forte (Biological Therapies) injection solution, 2.5 mL vial" -924878011000036102,"Omepro 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",716881000168108,"Omepro 20 mg enteric capsule, 7" -84411011000036103,"macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + ascorbic acid",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",77435011000036104,"ascorbic acid" -74735011000036102,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825981000168101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe" -689431000168106,"Priorix-Tetra powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831281000168106,"Priorix-Tetra powder for injection, 10 vials" -50927011000036103,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689141000168106,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape" -689411000168101,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831261000168102,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, 10 vials" -60240011000036102,"Xylocaine Pump Spray 10% spray solution, 50 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",949621000168100,"Xylocaine Pump Spray 10% spray solution, 50 mL, pump actuated metered dose aerosol" -815031000168108,"Entrip 10 mg tablet, 1000",900000000000526001,"REPLACED BY association reference set",856641000168106,"Entrip 10 mg film-coated tablet, 1000" -34015011000036102,"Codeine Phosphate (Phebra) 50 mg/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",835641000168101,"Codeine Phosphate (Phebra) 50 mg/mL injection solution, ampoule" -71781000036109,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",862091000168104,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 60" -925351011000036101,"Pemzo 20 mg capsule, 500, bottle",900000000000526001,"REPLACED BY association reference set",716921000168101,"Pemzo 20 mg enteric capsule, 500, bottle" -73898011000036101,"Tripacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837551000168109,"Tripacel injection suspension, 0.5 mL vial" -33069011000036103,"Albey Bee Venom (bee venom 550 microgram) injection: powder for, 550 microgram vial",900000000000526001,"REPLACED BY association reference set",758811000168109,"Bee Venom (Albey) (honey bee venom 550 microgram) powder for injection, 550 microgram vial" -74942011000036103,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826471000168103,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -923905011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 500, bottle",900000000000526001,"REPLACED BY association reference set",717321000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 500, bottle" -12493011000036102,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104",900000000000526001,"REPLACED BY association reference set",852771000168109,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104" -922640011000036100,"iopromide 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695121000168103,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 20 mL vials" -74204011000036102,"Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",826341000168103,"Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack" -18450011000036109,"Fluoxebell 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",73316011000036102,"Fluoxebell 20 mg hard capsule, 28, blister pack" -39904011000036105,"Voluven 6% / 0.9% injection solution, 500 mL bag",900000000000526001,"REPLACED BY association reference set",1013401000168105,"Voluven injection solution, 500 mL bag" -797061000168108,"Levetiracetam (Accord) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003111000168100,"Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60" -87017011000036106,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860141000168105,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet, 120" -921095011000036109,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet",900000000000526001,"REPLACED BY association reference set",950731000168102,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet" -1085501000168109,"Fluzone High-Dose injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122641000168103,"Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes" -815071000168106,"Entrip 25 mg tablet, 10, blister pack",900000000000526001,"REPLACED BY association reference set",856681000168101,"Entrip 25 mg film-coated tablet, 10, blister pack" -41219011000036102,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013451000168109,"Voluven injection solution, 10 x 500 mL bags" -931718011000036104,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872911000168100,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle" -77285011000036108,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872961000168102,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles" -74762011000036101,"Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083581000168100,"Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL, pump pack" -75088011000036108,"hepatitis B vaccine 5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",825801000168104,"hepatitis B child vaccine 5 microgram/0.5 mL injection, vial" -80638011000036103,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868421000168105,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags" -74761011000036107,"Cervarix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823171000168103,"Cervarix injection suspension, 0.5 mL syringe" -84427011000036102,"dibasic sodium phosphate heptahydrate 398 mg + monobasic sodium phosphate monohydrate 1.27 g tablet",900000000000526001,"REPLACED BY association reference set",900231000168104,"monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet" -78329011000036102,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",861791000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 60" -85394011000036104,"Fleet Phospho-Soda oral liquid solution, bottle",900000000000526001,"REPLACED BY association reference set",1097791000168101,"Fleet Phospho-Soda oral liquid solution, bottle" -81041011000036106,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864371000168109,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags" -79392011000036100,"Creon 25 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847381000168108,"Creon 25 000 enteric capsule" -81705011000036103,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872641000168109,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 12 x 1 L bags" -85323011000036106,"Kevtam 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",938271000168105,"Kevtam-1000 1 g film-coated tablet" -9121000036104,"Clinoleic 20% injection: emulsion, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779131000168101,"Clinoleic 20% injection emulsion, 350 mL bag" -61711000168103,"Compound Benzoin Tincture Friar's Balsam (Orion)",900000000000526001,"REPLACED BY association reference set",696391000168106,"Compound Benzoin Friar's Balsam (Orion)" -924178011000036108,"pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827461000168107,"pneumococcal 13 valent conjugate vaccine injection, 10 x 0.5 mL syringes" -23157011000036106,"etoposide 1 g injection, vial",900000000000526001,"REPLACED BY association reference set",793581000168102,"etoposide phosphate 1.136 g (etoposide 1 g) injection, vial" -932724011000036104,"clonazepam 2.5 mg/mL oral liquid, drop",900000000000526001,"REPLACED BY association reference set",729091000168102,"clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid" -84772011000036109,"Mepitac (298300) 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694231000168109,"Mepitac (298300) 2 cm x 3 m tape" -46724011000036103,"budesonide 64 microgram/actuation nasal spray, 240 actuations",900000000000526001,"REPLACED BY association reference set",730081000168107,"budesonide 64 microgram/actuation nasal spray, 2 x 120 actuations" -169821000036102,"Aquacel Ag (403771) 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745091000168101,"Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5" -711241000168108,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006111000168106,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -669551000168102,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 5 x 1.5 mL cartridges",900000000000526001,"REPLACED BY association reference set",728901000168102,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges" -923725011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 100, blister pack",900000000000526001,"REPLACED BY association reference set",717071000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 100, blister pack" -686831000168103,"interferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL injection devices",900000000000526001,"REPLACED BY association reference set",698641000168106,"peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL injection devices" -71859011000036106,"benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995081000168104,"benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 2" -51881000168109,"Levitaccord 1000 mg",900000000000526001,"REPLACED BY association reference set",1003781000168107,"Levitaccord-1000" -82526011000036100,"paracetamol 500 mg + codeine phosphate 8 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",836091000168106,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 20" -706321000168100,"measles virus (Enders' attenuated Edmonston) live vaccine + mumps virus (Jeryl Lynn B level) live vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",831021000168104,"measles + mumps + rubella live vaccine" -900031011000036105,"Voltaren Emulgel 1% gel, 50 g",900000000000526001,"REPLACED BY association reference set",1037071000168107,"Voltaren Emulgel 1.16% gel, 50 g" -19090011000036106,"Lanoxin 50 microgram/mL oral liquid: solution, 60 mL, bottle",900000000000526001,"REPLACED BY association reference set",735031000168101,"Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL, bottle" -73849011000036100,"Adacel Polio injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839621000168105,"Adacel Polio injection suspension, 0.5 mL syringe" -922612011000036108,"diatrizoate meglumine 79.2 g/120 mL + diatrizoate sodium 12 g/120 mL solution, 12 x 120 mL each",900000000000526001,"REPLACED BY association reference set",696161000168102,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 120 mL" -931845011000036104,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826761000168103,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, vial" -140841000036106,"Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005951000168103,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags" -931845011000036104,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826661000168106,"meningococcal A conjugate vaccine injection, vial" -929960011000036103,"Dermasoothe Antiseptic cream",900000000000526001,"REPLACED BY association reference set",861321000168105,"Dermasoothe Antiseptic cream" -921563011000036108,"Recombinate 250 IU (1 x 250 international units vial, 1 x 10 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",710881000168106,"Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack" -933221011000036102,"Fluoride Bumble Bee Bubble Gum (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932351000168109,"Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam" -21891011000036107,"tenofovir",900000000000526001,"REPLACED BY association reference set",851521000168106,"tenofovir disoproxil" -61007011000036109,"Clozole Vaginal Cream (Chemists' Own) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715561000168106,"Clozole (Chemists' Own) 1% vaginal cream, 35 g, tube" -920661011000036108,"Ostelin Vitamin D and Calcium tablet: film-coated, 130, bottle",900000000000526001,"REPLACED BY association reference set",862271000168105,"Ostelin Vitamin D and Calcium film-coated tablet, 130, bottle" -922135011000036109,"iopromide 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695201000168103,"iopromide 623 mg (iodine 300 mg)/mL injection, 75 mL bottle" -1085481000168100,"Fluzone High-Dose injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1122621000168109,"Fluzone High-Dose 2018 injection suspension, 0.5 mL syringe" -922668011000036107,"sorbitol 70% non-crystallising oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",690621000168103,"sorbitol solution 70% non-crystallising oral liquid, 500 mL" -718841000168104,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection [1 syringe] (&) Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",840911000168102,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack" -63526011000036107,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",996201000168106,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 24" -828011000168103,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845921000168102,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -73653011000036107,"meningococcal group C conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824471000168106,"Neisseria meningitidis group C conjugate antigen" -75413011000036105,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825061000168109,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL vial" -69789011000036109,"benzoin sumatra + tolu balsam",900000000000526001,"REPLACED BY association reference set",688381000168106,"benzoin Sumatra + storax prepared + Aloes cape" -81133011000036100,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868431000168108,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags" -77206011000036102,"Sandocal 1000 tablets: effervescent, 10, tube",900000000000526001,"REPLACED BY association reference set",745631000168106,"Sandocal 1000 effervescent tablet, 10, tube" -761791000168108,"macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium bicarbonate 1.69 g + sodium sulfate 5.68 g powder for oral liquid [1 x 68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",833831000168105,"macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid [68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack" -80635011000036109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867911000168107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag" -73059011000036101,"Duodopa gel: intestinal, 7 x 1 mL bags",900000000000526001,"REPLACED BY association reference set",720521000168104,"Duodopa intestinal gel, 7 x 100 mL" -80223011000036109,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872521000168102,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag" -76556011000036104,"Sorbolene Cream with Glycerin (Orion) cream, 500 g",900000000000526001,"REPLACED BY association reference set",705811000168108,"Sorbolene Cream with Glycerin (Orion) cream, 500 g" -2438011000036100,"pancreatic extract",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",846131000168107,"amylase" -117691000036106,"Zoely, 84 tablets [3 x 28], blister pack",900000000000526001,"REPLACED BY association reference set",683961000168105,"Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28, blister packs" -137901000036102,"ropivacaine hydrochloride monohydrate 50 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1005961000168101,"ropivacaine hydrochloride 50 mg/10 mL injection, ampoule" -718851000168102,"Infanrix Hexa (1 x 0.5 mL vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack",900000000000526001,"REPLACED BY association reference set",840921000168109,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack" -687951000168104,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825051000168107,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe" -728671000168101,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005721000168109,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 10 mL ampoule" -686821000168101,"Plegridy 125 microgram/0.5 mL injection: solution, 0.5 mL injection device",900000000000526001,"REPLACED BY association reference set",698631000168102,"Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL injection device" -74758011000036109,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822501000168105,"Rotateq oral liquid, 2 mL tube" -50230011000036100,"TYR Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725931000168104,"TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches" -74904011000036103,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1082871000168108,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack" -55663011000036109,"Anti Fungal V 6 Day (Amcal) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",714981000168106,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g" -73942011000036101,"H-B-Vax II preservative free 10 microgram/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",825731000168104,"H-B-Vax II preservative free 10 microgram/mL injection suspension, vial" -815111000168104,"Entrip 25 mg tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",856721000168107,"Entrip 25 mg film-coated tablet, 90, blister pack" -86447011000036105,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 25.1 mg (0.34 mmol potassium) + sodium bicarbonate 89.25 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",674171000168108,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 30 sachets" -41221000036100,"Lipistart powder for oral liquid",900000000000526001,"REPLACED BY association reference set",949711000168100,"Lipistart powder for oral liquid" -41585011000036109,"Zovirax 800 mg dispersible tablet, 5",900000000000526001,"REPLACED BY association reference set",859471000168109,"Zovirax Dispersible 800 mg tablet, 5" -923961011000036108,"smallpox live vaccine injection, vial",900000000000526001,"REPLACED BY association reference set",821291000168106,"smallpox live vaccine injection, vial" -7328011000036106,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream",900000000000526001,"REPLACED BY association reference set",715281000168100,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream" -55737011000036102,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 200 mL",900000000000526001,"REPLACED BY association reference set",721711000168108,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL" -929648011000036109,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724461000168102,"PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826051000168103,"Streptococcus pneumoniae type 14 conjugate antigen" -33320011000036102,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881171000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose" -18455011000036100,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715391000168107,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g, tube" -235461000168109,"triglycerides long chain with glucose polymer oral liquid, 1 L bottle",900000000000526001,"REPLACED BY association reference set",745371000168104,"triglycerides long chain with glucose polymer oral liquid, 1 L carton" -75478011000036107,"Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831891000168105,"varicella-zoster live vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -61863011000036103,"hydrocortisone 1% spray",900000000000526001,"REPLACED BY association reference set",776861000168105,"hydrocortisone 1% spray" -167341000036106,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848601000168106,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack" -63201000036103,"glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",688161000168100,"iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 500 mL" -711571000168103,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005601000168106,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 20 mL ampoule" -922561011000036108,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",843321000168104,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 100" -689691000168108,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831331000168103,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack" -74997011000036106,"rotavirus live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",822861000168108,"rotavirus live vaccine" -75386011000036105,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823151000168107,"human papillomavirus bivalent vaccine injection, 0.5 mL syringe" -82212011000036101,"Ungvita 0.054% ointment, 50 g",900000000000526001,"REPLACED BY association reference set",695001000168108,"Ungvita 0.099% ointment, 50 g" -933231471000036101,"Cerumol ear drops, 10 mL, bottle",900000000000526001,"REPLACED BY association reference set",854381000168100,"Cerumol ear drops, 10 mL, bottle" -728691000168100,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005741000168103,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -929648011000036109,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724581000168105,"PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches" -22815011000036109,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, sachet",900000000000526001,"REPLACED BY association reference set",669001000168108,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet" -728751000168101,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005801000168107,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -44517011000036109,"Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085281000168104,"Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations, pump pack" -9031000036101,"olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, 24 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",771921000168100,"olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 24 x 100 mL bags" -7126011000036103,"Caltrate 600 mg (calcium 600 g) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",860321000168102,"Caltrate 1.5 g (calcium 600 mg) film-coated tablet" -728531000168103,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006011000168107,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 20 mL ampoule" -823911000168108,"Bydureon (1 x 2 mg cartridge, 1 x inert diluent cartridge), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",833301000168109,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device" -70122011000036104,"calcium gluconate monohydrate 10% (5 g/50 mL) injection, vial",900000000000526001,"REPLACED BY association reference set",684701000168109,"calcium gluconate monohydrate 4.765 g/50 mL injection, vial" -920384011000036100,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",949351000168100,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90" -61961000168102,"Fluoride Bumble Bee Bubble Gum (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)" -20888011000036109,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715301000168101,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g, tube" -703061000168104,"Fluarix Tetra 2015 injection: suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",709811000168105,"Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes" -987311000168103,"sebelipase alfa 2 mg/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",1013331000168109,"sebelipase alfa 20 mg/10 mL injection, 10 mL vial" -757511000168106,"Ursodox 250 mg capsule: hard, 100, blister pack",900000000000526001,"REPLACED BY association reference set",765971000168106,"Ursodox (GH) 250 mg hard capsule, 100, blister pack" -84916011000036105,"Strepsils lozenge, 16",900000000000526001,"REPLACED BY association reference set",720301000168104,"Strepsils Cool lozenge, 16" -9111000036106,"olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",771981000168101,"olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 10 x 500 mL bags" -84269011000036101,"Wagner Magnesium Forte 400 capsules: hard, 100, bottle",900000000000526001,"REPLACED BY association reference set",750241000168107,"Magnesium Forte 400 (Wagner) hard capsule, 100, bottle" -74808011000036100,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",824741000168107,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials" -260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724231000168106,"PKU Lophlex LQ 20 Orange oral liquid solution, 125 mL pouch" -933220551000036104,"Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726571000168101,"Norditropin Flexpro 15 mg/1.5 mL injection solution" -732661000168107,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",747011000168101,"Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule" -167351000036109,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848611000168109,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack" -60203011000036100,"Daktarin 2% oral gel, 40 g, tube",900000000000526001,"REPLACED BY association reference set",820111000168102,"Daktarin 2% oral gel, 40 g, tube" -18857011000036101,"Canesten Clotrimazole Thrush Treatment 6 Day 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715081000168106,"Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube" -987301000168101,"Kanuma 2 mg/mL injection solution, vial",900000000000526001,"REPLACED BY association reference set",1013321000168106,"Kanuma 20 mg/10 mL injection solution, 10 mL vial" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826031000168109,"Streptococcus pneumoniae type 19F conjugate antigen" -74821011000036104,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822651000168105,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe" -757501000168108,"Ursodox 250 mg capsule: hard, 100",900000000000526001,"REPLACED BY association reference set",765961000168100,"Ursodox (GH) 250 mg hard capsule, 100" -74946011000036104,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840771000168108,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes" -711871000168100,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005161000168103,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -86609011000036106,"Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",768301000168106,"Aqueous Cream APF (David Craig) cream" -921032011000036108,"MD-Gastroview solution, 120 mL bottle",900000000000526001,"REPLACED BY association reference set",696061000168101,"MD-Gastroview solution" -74854011000036100,"Ipol injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839891000168106,"Ipol injection solution, 0.5 mL syringe" -922144011000036106,"picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet",900000000000526001,"REPLACED BY association reference set",832611000168107,"picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet" -653671000168100,"Retinofluor 1.25 g/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721221000168106,"Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials" -43742011000036101,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",1013541000168108,"Voluven injection solution, 10 x 500 mL bottles" -159211000036102,"Oxycontin Reformulation 40 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928482011000036101,"Oxycontin 40 mg modified release tablet, 28" -63245011000036107,"miconazole 2% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",819991000168108,"miconazole 2% oral gel, 10 g" -669581000168109,"Allmercap 20 mg/mL oral liquid suspension",900000000000526001,"REPLACED BY association reference set",845381000168104,"Allmercap 20 mg/mL oral liquid suspension" -5333011000036100,"Puri-Nethol 50 mg uncoated tablet",900000000000526001,"REPLACED BY association reference set",845431000168106,"Puri-Nethol 50 mg uncoated tablet" -87911000036104,"Prostin E2 800 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005381000168109,"Prostin E2 2 mg/3 g vaginal gel, 3 g syringe" -83437011000036102,"magnesium chloride 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",872161000168104,"magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, ampoule" -13605011000036108,"Etopophos 1 g injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793611000168109,"Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial" -83497011000036108,"magnesium chloride 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",872181000168108,"magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, 5 x 20 mL ampoules" -925135011000036107,"Omepro 20 mg capsule, 280, blister pack",900000000000526001,"REPLACED BY association reference set",716571000168107,"Omepro 20 mg enteric capsule, 280, blister pack" -163691000036103,"Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726681000168104,"Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose" -922105011000036103,"diatrizoate meglumine 158.4 g/240 mL + diatrizoate sodium 24 g/240 mL solution, bottle",900000000000526001,"REPLACED BY association reference set",696051000168103,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution" -13882011000036106,"Probitor 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",717711000168107,"Probitor 20 mg enteric capsule, 30" -81134011000036103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868001000168107,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag" -75531011000036108,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack",900000000000526001,"REPLACED BY association reference set",831081000168100,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack" -85747011000036101,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848641000168108,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack" -56687011000036100,"Difflam Mouth oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",995961000168109,"Difflam Mouth oral gel, 10 g" -669571000168106,"mercaptopurine 20 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",845371000168102,"mercaptopurine monohydrate 20 mg/mL oral liquid" -711591000168102,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005621000168102,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -728731000168107,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005781000168108,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 20 mL ampoule" -925345011000036102,"Pemzo 20 mg capsule, 14, bottle",900000000000526001,"REPLACED BY association reference set",716301000168106,"Pemzo 20 mg enteric capsule, 14, bottle" -33493011000036106,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",707311000168109,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe" -84873011000036100,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694321000168100,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll" -73649011000036107,"meningococcal group A polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827371000168108,"Neisseria meningitidis group A polysaccharide antigen" -61866011000036109,"benzydamine hydrochloride 0.3% spray",900000000000526001,"REPLACED BY association reference set",721301000168109,"benzydamine hydrochloride 0.3% oral spray" -22601011000036103,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU injection, 81 mg vial",900000000000526001,"REPLACED BY association reference set",1045931000168103,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial" -53927011000036104,"Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) uncoated tablet",900000000000526001,"REPLACED BY association reference set",967661000168105,"Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) uncoated tablet" -933231551000036105,"Naropin 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005021000168107,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -933232151000036106,"fluoride + hydrofluoric acid",900000000000526001,"REPLACED BY association reference set",61768011000036106,"fluoride" -2438011000036100,"pancreatic extract",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2524011000036100,"protease" -75504011000036103,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837681000168103,"diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 10 x 0.5 mL syringes" -823941000168107,"Bydureon (4 x 2 mg cartridges, 4 x inert diluent cartridges), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",833361000168105,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices" -77392011000036108,"Centrum tablet: film-coated, 250, bottle",900000000000526001,"REPLACED BY association reference set",833451000168102,"Centrum film-coated tablet, 250, bottle" -34241000036106,"colistimethate sodium 1 million units (80 mg) powder for inhalation, 30 vials",900000000000526001,"REPLACED BY association reference set",818111000168105,"colistimethate sodium 1 million units powder for inhalation, 30 vials" -698471000168102,"Bexsero injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822831000168100,"Bexsero injection suspension, 10 x 0.5 mL syringes" -75107011000036100,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840781000168106,"diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe" -140791000036109,"Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006121000168104,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -48603011000036108,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694351000168108,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape" -73801000036109,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746801000168105,"Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule" -51959011000036102,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream",900000000000526001,"REPLACED BY association reference set",695821000168108,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream" -48561011000036103,"Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694021000168103,"Leukopor (2474) 5 cm x 5 m tape" -77334011000036105,"Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 10 x 200 mL bottles",900000000000526001,"REPLACED BY association reference set",695801000168104,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles" -74209011000036101,"Adacel Polio injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839641000168104,"Adacel Polio injection suspension, 0.5 mL syringe" -158361000036102,"Oxycontin Reformulation 20 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6512011000036100,"Oxycontin 20 mg modified release tablet" -823931000168103,"Bydureon (4 x 2 mg cartridges, 4 x inert diluent cartridges), 1 pack",900000000000526001,"REPLACED BY association reference set",833351000168108,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices" -71771000036107,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862101000168109,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60" -140961000036100,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine + meningococcal group C polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",846041000168102,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine" -653611000168108,"Retinofluor 500 mg/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721171000168101,"Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials" -6220011000036102,"Cal Sup 500 mg (calcium 500 mg) chewable tablet",900000000000526001,"REPLACED BY association reference set",859711000168106,"Cal Sup 1.25 g (calcium 500 mg) chewable tablet" -84082011000036102,"Glycoprep-C Flavoured powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901141000168108,"Glycoprep-C powder for oral liquid, 210 g sachet" -172361000036103,"alendronate 70 mg + colecalciferol 140 microgram tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack",900000000000526001,"REPLACED BY association reference set",848001000168103,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack" -711611000168107,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005701000168100,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -80651011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868261000168101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags" -167531000168103,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725281000168108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 87 mL pouch" -19667011000036101,"Cal Sup 500 mg (calcium 500 mg) chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",859741000168105,"Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60, bottle" -74435011000036108,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",831091000168102,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack" -34379011000036105,"Subutex 2 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685681000168107,"Subutex 2 mg sublingual tablet, 100" -60228011000036102,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861491000168103,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16, blister pack" -75410011000036102,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825001000168108,"hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL vial" -86929011000036104,"calcium (as carbonate) 1 g (calcium 1 g) chewable tablet",900000000000526001,"REPLACED BY association reference set",859911000168109,"calcium carbonate 2.5 g (calcium 1 g) chewable tablet" -80655011000036108,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868481000168109,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags" -681121000168104,"Cal-600 plus D tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862121000168100,"Cal-600 plus D film-coated tablet" -47231000168101,"Recombinate 500 IU",900000000000526001,"REPLACED BY association reference set",710851000168104,"Recombinate" -669601000168100,"Allmercap 20 mg/mL oral liquid suspension, 100 mL",900000000000526001,"REPLACED BY association reference set",845401000168104,"Allmercap 20 mg/mL oral liquid suspension, 100 mL" -27967011000036106,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL syringes",900000000000526001,"REPLACED BY association reference set",1007201000168101,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL injection devices" -6516011000036101,"Prodeine 15 uncoated tablet",900000000000526001,"REPLACED BY association reference set",835681000168106,"Prodeine 15 uncoated tablet" -83639011000036107,"Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845581000168106,"Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device" -56160011000036102,"Daktarin 2% oral gel, 20 g",900000000000526001,"REPLACED BY association reference set",820081000168107,"Daktarin 2% oral gel, 20 g" -30601000036104,"Typhim Vi 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827221000168101,"Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes" -827931000168106,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845931000168104,"meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes" -728571000168100,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006051000168108,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -473751000168100,"HCU Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724061000168105,"HCU Cooler 15 Orange oral liquid solution, 130 mL pouch" -77138011000036106,"Fess 0.704% nasal spray, 75 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",729571000168106,"Fess 0.704% nasal spray, 75 mL, pump pack" -706371000168104,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831411000168104,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack" -19500011000036107,"Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 5 x 0.4 mL ampoules",900000000000526001,"REPLACED BY association reference set",684601000168103,"Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses, ampoule" -19532011000036101,"Otocomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758411000168106,"Otocomb Otic ear drops solution, 7.5 mL, bottle" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826131000168105,"Streptococcus pneumoniae type 7F conjugate antigen" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826111000168100,"Streptococcus pneumoniae type 1 conjugate antigen" -74718011000036104,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831971000168104,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack" -156061000036104,"Istodax (1 x 10 mg vial, 1 x inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",828501000168108,"Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack" -74753011000036104,"Azep 140 microgram/actuation nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",809591000168102,"Azep 0.1% nasal spray, 10 mL, pump pack" -689731000168101,"Kenacomb Otic ear ointment",900000000000526001,"REPLACED BY association reference set",758271000168102,"Kenacomb Otic ear ointment" -72611000036104,"mesalazine 1 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",28305011000036102,"mesalazine 1 g modified release granules, 100 sachets" -641031000168105,"Lucrin Depot 4-Month (inert substance) diluent, 2 mL syringe",900000000000526001,"REPLACED BY association reference set",707361000168107,"Lucrin Depot 4-Month (inert substance) diluent, 1.5 mL syringe" -91541000036103,"Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",861871000168102,"Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60, bottle" -73861000036108,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",862081000168102,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120, bottle" -669591000168107,"mercaptopurine 20 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",845391000168101,"mercaptopurine monohydrate 20 mg/mL oral liquid, 100 mL" -14108011000036104,"Dolaforte tablet, 20",900000000000526001,"REPLACED BY association reference set",835751000168108,"Dolaforte tablet, 20" -730611000168105,"Granisetron (AFT) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747111000168102,"Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules" -19039011000036108,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs",900000000000526001,"REPLACED BY association reference set",792921000168101,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs" -923459011000036104,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24",900000000000526001,"REPLACED BY association reference set",996011000168103,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24" -26747011000036108,"darbepoetin alfa 40 microgram/0.4 mL injection, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041081000168103,"darbepoetin alfa 40 microgram/0.4 mL injection, 0.4 mL injection device" -81053011000036105,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",863731000168108,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag" -933225851000036108,"ropivacaine hydrochloride monohydrate 20 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004501000168106,"ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules" -63087011000036101,"benzocaine 1 mg + cetylpyridinium chloride monohydrate 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995261000168101,"benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge, 16" -689751000168107,"Kenacomb Otic ear ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758291000168101,"Kenacomb Otic ear ointment, 5 g" -74898011000036103,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825841000168102,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial" -728391000168107,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872101000168100,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826091000168108,"Streptococcus pneumoniae type 5 conjugate antigen" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826071000168107,"Streptococcus pneumoniae type 6B conjugate antigen" -728551000168109,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006031000168102,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -95791000036104,"Ostelin Osteoguard tablet: film-coated, 90, blister pack",900000000000526001,"REPLACED BY association reference set",932991000168103,"Ostelin Osteoguard film-coated tablet, 90, blister pack" -69513011000036108,"Cepacol Antibacterial Honey and Lemon lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995101000168106,"Cepacol Antibacterial Honey and Lemon lozenge, 2, blister pack" -74811011000036106,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",824841000168101,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials" -51881000036102,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL",900000000000526001,"REPLACED BY association reference set",751251000168102,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL" -728711000168102,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005761000168104,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags" -67422011000036108,"Cepacol Antibacterial Orange Citrus lozenge, 2",900000000000526001,"REPLACED BY association reference set",995221000168106,"Cepacol Antibacterial Orange Citrus lozenge, 2" -473751000168100,"HCU Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724101000168108,"HCU Cooler 15 Red oral liquid solution, 130 mL pouch" -36231011000036108,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 5 mL vial",900000000000526001,"REPLACED BY association reference set",720811000168108,"Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 5 mL vial" -61271011000036100,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715731000168107,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g, tube" -74902011000036107,"Dimetapp 12 Hour 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083671000168104,"Dimetapp 12 Hour 0.05% nasal spray, 20 mL, pump pack" -71731000036105,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",862041000168107,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100" -79529011000036102,"Septopal Chain 7.5 mg implant, 1 bead",900000000000526001,"REPLACED BY association reference set",684541000168102,"Septopal Chain 7.5 mg implant, 30 beads" -81724011000036108,"calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872261000168105,"sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 12 x 1 L bags" -43611011000036105,"Keppra 1 g tablet: film-coated, 100, blister pack",900000000000526001,"REPLACED BY association reference set",721141000168108,"Keppra-1000 1 g film-coated tablet, 100, blister pack" -162561000036102,"Moviprep Orange powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902211000168108,"Moviprep Orange A powder for oral liquid, sachet" -703051000168101,"Fluarix Tetra 2015 injection: suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",709801000168107,"Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes" -77578011000036102,"iopromide 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695711000168109,"iopromide 769 mg (iodine 370 mg)/mL injection, 100 mL bottle" -76581011000036104,"Sorbilax 1 mL/mL oral liquid: solution, 500 mL",900000000000526001,"REPLACED BY association reference set",690661000168108,"Sorbilax 70% non-crystallising oral liquid solution, 500 mL" -74277011000036101,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845941000168108,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -78305011000036108,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",833161000168107,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 100" -51417011000036103,"tape plaster adhesive hypoallergenic 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689081000168102,"tape plaster adhesive hypoallergenic 5 cm x 5 m tape, 1 roll" -110441000036102,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20, carton",900000000000526001,"REPLACED BY association reference set",1056201000168105,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20, carton" -823871000168105,"inert substance diluent, cartridge",900000000000526001,"REPLACED BY association reference set",833261000168101,"exenatide 2 mg/dose + inert substance modified release injection, dose" -65891000036106,"Worming Tablet (Chemmart) 100 mg chewable tablet, 2, blister pack",900000000000526001,"REPLACED BY association reference set",844271000168109,"Worming Tablet (Chemmart) 100 mg tablet, 2, blister pack" -56187011000036104,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",861481000168101,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16" -823881000168108,"Bydureon (inert substance) diluent, cartridge",900000000000526001,"REPLACED BY association reference set",833271000168107,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose" -821651000168103,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955121000168107,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial" -29281000036103,"Typherix 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827131000168108,"Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes" -86228011000036108,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 25.1 mg (0.34 mmol potassium) + sodium bicarbonate 89.25 mg solution, 1 sachet",900000000000526001,"REPLACED BY association reference set",674151000168104,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 1 sachet" -71421000036103,"Salofalk 1.5 g granules, 60 sachets",900000000000526001,"REPLACED BY association reference set",1084251000168107,"Salofalk 1.5 g modified release granules, 60 sachets" -60204011000036103,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861461000168105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16, blister pack" -933220531000036107,"Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726481000168102,"Norditropin Flexpro 5 mg/1.5 mL injection solution" -7094011000036109,"Creon 5000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847511000168107,"Creon 5000 enteric capsule" -73948011000036103,"Boostrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840711000168100,"Boostrix-IPV injection suspension, 0.5 mL syringe" -75518011000036108,"hepatitis B vaccine 40 microgram/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825691000168106,"hepatitis B dialysis vaccine injection, 1 mL vial" -933231761000036101,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004721000168105,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags" -174821000036105,"Levactam 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003071000168107,"Levactam-1000 1 g film-coated tablet, 60" -925160011000036109,"Pemzo 20 mg capsule, 15, blister pack",900000000000526001,"REPLACED BY association reference set",716361000168107,"Pemzo 20 mg enteric capsule, 15, blister pack" -56585011000036100,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",649671000168100,"Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 200 mL" -844561000168101,"Zovirax 800 mg tablet, 120, blister pack",900000000000526001,"REPLACED BY association reference set",859441000168102,"Zovirax Dispersible 800 mg tablet, 120, blister pack" -73830011000036107,"Zostavax (Varicella zoster live attenuated vaccine 19 400 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831791000168100,"Zostavax (varicella-zoster live vaccine) powder for injection, vial" -139071000036100,"Bydureon (4 x 2 mg vials, 4 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",833921000168104,"Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs" -921065011000036107,"Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 75 mL vial",900000000000526001,"REPLACED BY association reference set",695211000168100,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 75 mL bottle" -71341000036104,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses",900000000000526001,"REPLACED BY association reference set",719621000168104,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses" -22942011000036104,"botulinum toxin type A 100 units injection, vial",900000000000526001,"REPLACED BY association reference set",720841000168107,"botulinum toxin type A 100 units injection, vial" -698411000168105,"meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",822771000168105,"meningococcal B 4 component vaccine injection, 0.5 mL syringe" -924769011000036100,"Panadol Children's 3+ Years 120 mg tablet: chewable, 24",900000000000526001,"REPLACED BY association reference set",721691000168105,"Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24" -833801000168103,"somatropin 400 microgram/dose + inert substance injection, 7 dual chamber devices",900000000000526001,"REPLACED BY association reference set",975161000168100,"somatropin 400 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack" -41228011000036104,"Keppra 1 g tablet: film-coated, 10",900000000000526001,"REPLACED BY association reference set",720991000168106,"Keppra-1000 1 g film-coated tablet, 10" -6470011000036100,"Creon Forte 25 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847561000168105,"Creon Forte enteric capsule" -74413011000036101,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840841000168107,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes" -923326011000036101,"Omeprazole (Pharmacor) 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717491000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 98" -663801000168102,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",900000000000526001,"REPLACED BY association reference set",833521000168109,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL" -81050011000036102,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864401000168107,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags" -806261000168104,"Repatha 140 mg/mL injection: solution, 3 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846431000168103,"Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices" -930673011000036101,"Menveo injection: suspension, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826721000168108,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack" -923993011000036106,"pancreatic extract 5000 units/100 mg enteric coated granules",900000000000526001,"REPLACED BY association reference set",847141000168101,"lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules" -44076011000036104,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693441000168101,"Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules" -81140011000036107,"Eye Stream eye solution, 120 mL, bottle",900000000000526001,"REPLACED BY association reference set",834181000168101,"Eye Stream eye solution, 120 mL, bottle" -833811000168100,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, 7 dual chamber devices",900000000000526001,"REPLACED BY association reference set",975171000168106,"Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack" -26803011000036107,"diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837341000168104,"diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL syringes" -105561000036106,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703591000168101,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe" -698451000168106,"Bexsero injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822811000168105,"Bexsero injection suspension, 0.5 mL syringe" -82319011000036102,"Calsource Ca1000 tablet: effervescent, 10, tube",900000000000526001,"REPLACED BY association reference set",745601000168104,"Calsource Ca1000 effervescent tablet, 10, tube" -3641000036101,"Zactin 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844381000168103,"Zactin 20 mg tablet" -920147011000036106,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",949341000168102,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet" -921960011000036108,"Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695141000168109,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials" -695641000168103,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848581000168102,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack" -68669011000036100,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995151000168105,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16, blister pack" -46167011000036105,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013441000168107,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bags" -20374011000036108,"Subutex 2 mg tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",685611000168101,"Subutex 2 mg sublingual tablet, 7, blister pack" -155981000036104,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",862181000168101,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100" -63249011000036109,"miconazole 2% oral gel, 40 g",900000000000526001,"REPLACED BY association reference set",818021000168104,"miconazole 2% oral gel, 40 g" -81131011000036101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",867951000168108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags" -702661000168102,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",822591000168104,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack" -74296011000036107,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824981000168100,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe" -35465011000036104,"Poly Gel 0.3% eye gel, 500 mg unit dose",900000000000526001,"REPLACED BY association reference set",718721000168104,"Poly Gel 0.3% eye gel, 500 mg unit dose" -31451000036106,"Vicks Sinex 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083741000168101,"Vicks Sinex 0.05% nasal spray, 15 mL, pump pack" -61807011000036108,"lignocaine + hydrocortisone acetate",900000000000526001,"REPLACED BY association reference set",61836011000036102,"lidocaine (lignocaine) + hydrocortisone" -933196251000036109,"Valaciclovir (GA) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1009641000168105,"Valaciclovir 1000 (GA) 1 g film-coated tablet" -75491011000036105,"hepatitis A inactivated vaccine 160 antigen units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824671000168109,"hepatitis A child/adult vaccine injection, 0.5 mL syringe" -933231561000036108,"Naropin 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004921000168107,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -85700011000036108,"Levetiracetam (Chemmart) 1 g tablet, 60",900000000000526001,"REPLACED BY association reference set",1003281000168104,"Levetiracetam 1000 (Chemmart) 1 g tablet, 60" -41939011000036105,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 240 actuations",900000000000526001,"REPLACED BY association reference set",730091000168105,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations" -695651000168101,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848591000168104,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack" -844521000168106,"Zovirax 800 mg tablet, 5",900000000000526001,"REPLACED BY association reference set",859471000168109,"Zovirax Dispersible 800 mg tablet, 5" -27581011000036107,"interferon alfa-2b 30 million units/1.2 mL injection, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722791000168108,"interferon alfa-2b 30 million units/1.2 mL injection, 1.2 mL" -73889011000036105,"Hiberix (Haemophilus influenzae type b vaccine 10 microgram) powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",828251000168105,"Hiberix (Haemophilus influenzae type b conjugate (PRP-T) vaccine) powder for injection, 10 microgram vial" -27603011000036104,"botulinum toxin type A 100 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",720861000168106,"botulinum toxin type A 100 units injection, 1 vial" -74848011000036105,"Co-Phenylcaine Forte nasal spray, 50 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",792101000168108,"Co-Phenylcaine Forte nasal spray, 50 mL, pump pack" -60749011000036100,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996301000168104,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24, blister pack" -75112011000036104,"Varicella zoster live attenuated vaccine 1350 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",831701000168106,"varicella-zoster live vaccine 1350 PFU injection, vial" -650801000168103,"Aquacel (403770) 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745021000168103,"Aquacel (403770) 2 cm x 45 cm ribbon" -650811000168100,"dressing hydrofibre alternate to alginates 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745031000168100,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5" -57368011000036106,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",721411000168103,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL" -75372011000036102,"hepatitis B vaccine 20 microgram/mL injection, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825391000168104,"hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL vials" -933231751000036104,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004821000168104,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags" -82441000036108,"Clopidogrel/Aspirin 75/100 (Apo) tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",923791000168108,"Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30, blister pack" -821611000168104,"Coxiella burnetii antigen 2.5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",955081000168105,"Q fever skin test injection, 0.5 mL vial" -35560011000036102,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses",900000000000526001,"REPLACED BY association reference set",718741000168105,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses" -49448011000036109,"Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694121000168102,"Leukosilk (1024) 5 cm x 5 m tape, 1 roll" -43891000036102,"Remeron 15 mg tablet: orally disintegrating, 30",900000000000526001,"REPLACED BY association reference set",783821000168104,"Remeron Soltab 15 mg orally disintegrating tablet, 30" -19336011000036100,"Immucyst (1 x 660 million CFU (81 mg) vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",1046001000168103,"Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack" -69741000036105,"mesalazine 1.5 g granules, sachet",900000000000526001,"REPLACED BY association reference set",1084221000168104,"mesalazine 1.5 g modified release granules, sachet" -8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847421000168104,"Creon 10 000" -74957011000036104,"rotavirus pentavalent live reassortant oral vaccine",900000000000526001,"REPLACED BY association reference set",822451000168108,"rotavirus pentavalent live vaccine" -86184011000036108,"Extraneal 7.5% dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872331000168109,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag" -75067011000036105,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824851000168104,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, syringe" -7076011000036109,"Citracal 250 mg (calcium 250 mg) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",860031000168102,"Citracal 1.19 g (calcium 250 mg) film-coated tablet" -698431000168100,"meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822791000168106,"meningococcal B 4 component vaccine injection, 0.5 mL syringe" -923445011000036104,"Omeprazole (Pharmacor) 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",717171000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 28" -700028641000036109,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810411000168101,"Actonel Combi D effervescent granules, 24 sachets" -370931000168109,"TYR Lophlex LQ 20 oral liquid: solution, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725031000168103,"TYR Lophlex LQ 20 oral liquid solution, 125 mL pouch" -37764011000036107,"colistimethate",900000000000526001,"REPLACED BY association reference set",817451000168104,"colistin" -86234011000036104,"magnesium carbonate heavy 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet",900000000000526001,"REPLACED BY association reference set",830911000168103,"magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet" -72151000036109,"salicylic acid 2% conditioner, 25 mL",900000000000526001,"REPLACED BY association reference set",764261000168109,"salicylic acid 2% conditioner, 25 mL" -5688011000036108,"Canesten Clotrimazole Thrush Treatment 3 Day 2% cream",900000000000526001,"REPLACED BY association reference set",715031000168105,"Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream" -51404011000036107,"tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688851000168108,"tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll" -6392011000036103,"Repalyte powder for oral liquid, 4.9 g sachet",900000000000526001,"REPLACED BY association reference set",871911000168105,"Repalyte powder for oral liquid, 4.9 g sachet" -29271000036100,"Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827161000168100,"Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -76802011000036105,"Centrum tablet: film-coated, 115",900000000000526001,"REPLACED BY association reference set",833201000168102,"Centrum film-coated tablet, 115" -78314011000036106,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",833131000168104,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 60" -814971000168106,"Entrip 10 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",855911000168106,"Entrip 10 mg film-coated tablet, 50" -7018011000036101,"Granocyte 13.4 million units (105 microgram) powder for injection, 105 microgram vial",900000000000526001,"REPLACED BY association reference set",838221000168100,"Granocyte-13 13.4 million units (105 microgram) powder for injection, 105 microgram vial" -74715011000036105,"Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083661000168105,"Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL, pump pack" -921863011000036107,"Calvid granules: effervescent, 30 x 7 g sachets",900000000000526001,"REPLACED BY association reference set",810661000168101,"Calvid effervescent granules, 30 x 7.3 g sachets" -141971000036101,"Somatuline Autogel 60 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819601000168106,"Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe" -932383011000036108,"paracetamol 500 mg + codeine phosphate 15 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",835711000168107,"paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 50" -74234011000036105,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 10 x 2 mL tubes",900000000000526001,"REPLACED BY association reference set",822521000168101,"Rotateq oral liquid, 10 x 2 mL tubes" -142721000036107,"Vivotif Oral enteric capsule, 3, blister pack",900000000000526001,"REPLACED BY association reference set",827281000168102,"Vivotif Oral enteric capsule, 3, blister pack" -130281000036100,"TYR Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725881000168109,"TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches" -75118011000036101,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid, 3 mL vial",900000000000526001,"REPLACED BY association reference set",821871000168106,"cholera vaccine oral liquid, 3 mL vial" -925137011000036102,"Omepro 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",716591000168108,"Omepro 20 mg enteric capsule, 30, blister pack" -81611011000036106,"glucose 5% (2.5 g/50 mL) injection, 70 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864411000168105,"glucose monohydrate 5% (2.5 g/50 mL) injection, 70 x 50 mL bags" -86161011000036107,"Kepcet 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003041000168100,"Kepcet-1000 1 g film-coated tablet, 60, blister pack" -77407011000036100,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862001000168105,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60, bottle" -6647011000036101,"Panadeine Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835831000168109,"Panadeine Forte uncoated tablet" -103781000036105,"Victoza 18 mg/3 mL injection: solution, 2 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748091000168106,"Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices" -925339011000036101,"Omepro 20 mg capsule, 500, bottle",900000000000526001,"REPLACED BY association reference set",716731000168100,"Omepro 20 mg enteric capsule, 500, bottle" -48767011000036105,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689301000168107,"Leukopor (2471) 1.25 cm x 5 m tape" -932842011000036108,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",766151000168106,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack" -74298011000036106,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",824831000168105,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials" -24021000168104,"Kaletra 400/100",900000000000526001,"REPLACED BY association reference set",689441000168102,"Kaletra" -91301000036106,"Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",730041000168102,"Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial" -152561000036108,"Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085381000168108,"Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations, pump pack" -932447011000036100,"risedronate sodium 35 mg tablet [1] (&) calcium (as carbonate) 500 mg tablet [6], 1 pack",900000000000526001,"REPLACED BY association reference set",852571000168104,"risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7" -14308011000036108,"Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726411000168108,"Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL" -65193011000036106,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture",900000000000526001,"REPLACED BY association reference set",688401000168106,"Friars' Balsam Compound Benzoin (Gold Cross) tincture" -33346011000036102,"Femizol Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715521000168101,"Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g" -8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847361000168104,"Creon 25 000" -66556011000036103,"Soap Enema (Orion) 50 mg/mL enema, 1 mL bottle",900000000000526001,"REPLACED BY association reference set",685521000168109,"Soap Enema (Orion) 50 mg/mL enema, 500 mL" -141981000036104,"Somatuline Autogel 90 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819551000168109,"Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe" -21874011000036102,"pancrelipase",900000000000526001,"REPLACED BY association reference set",847131000168105,"lipase + amylase + protease" -94751000036109,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 250",900000000000526001,"REPLACED BY association reference set",862281000168108,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 250" -922127011000036102,"iopromide 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695101000168107,"iopromide 623 mg (iodine 300 mg)/mL injection, 20 mL vial" -833821000168107,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, 7 dual chamber devices",900000000000526001,"REPLACED BY association reference set",975181000168109,"Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack" -711851000168109,"Ropibam 0.2% 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005141000168102,"Ropibam 0.2% 40 mg/20 mL injection solution, 20 mL ampoule" -1621000036108,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, vial",900000000000526001,"REPLACED BY association reference set",721081000168104,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, vial" -56721011000036105,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995631000168106,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16" -69331011000036100,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",688491000168100,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL, bottle" -373151000168106,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725941000168108,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 174 mL pouch" -923448011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",717271000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 50" -76739011000036108,"Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 10 x 30 mL vials",900000000000526001,"REPLACED BY association reference set",695571000168106,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials" -32691000036106,"Tadim 1 million units (80 mg) powder for inhalation, vial",900000000000526001,"REPLACED BY association reference set",818101000168107,"Tadim 1 million units powder for inhalation, vial" -77169011000036109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, pump pack",900000000000526001,"REPLACED BY association reference set",705941000168103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, pump pack" -82403011000036107,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 240, bottle",900000000000526001,"REPLACED BY association reference set",860581000168105,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240, bottle" -13221011000036103,"Creon 10 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847461000168109,"Creon 10 000 enteric capsule, 100" -139311000036109,"Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005941000168100,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags" -65911000036109,"Worming Tablet (Chemmart) 100 mg chewable tablet, 6, blister pack",900000000000526001,"REPLACED BY association reference set",844291000168105,"Worming Tablet (Chemmart) 100 mg tablet, 6, blister pack" -73874011000036100,"Ipol injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839861000168104,"Ipol injection solution, 0.5 mL syringe" -925132011000036104,"First Aid (Guardian) cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",861561000168106,"First Aid (Guardian) cream, 50 g, tube" -27839011000036101,"oxycodone hydrochloride 5 mg/5 mL oral liquid, 250 mL",900000000000526001,"REPLACED BY association reference set",815931000168107,"oxycodone hydrochloride 1 mg/mL oral liquid, 250 mL" -80235011000036107,"Gastrolyte fruit powder for oral liquid, 4.9 g sachet",900000000000526001,"REPLACED BY association reference set",871791000168103,"Gastrolyte Fruit powder for oral liquid, 4.9 g sachet" -180151000036108,"calcium (as carbonate) 500 mg tablet, 48",900000000000526001,"REPLACED BY association reference set",847891000168100,"calcium carbonate 1.25 g (calcium 500 mg) tablet, 48" -168511000168109,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",724001000168109,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL pouch" -73880011000036104,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825101000168107,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial" -50459011000036109,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694071000168102,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll, carton" -761811000168107,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",833851000168104,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack" -933231721000036105,"Imigran 20 mg/actuation nasal spray, 2 actuations, vial",900000000000526001,"REPLACED BY association reference set",728191000168105,"Imigran 20 mg/actuation nasal spray, 2 x 1 actuation, vials" -757461000168108,"Ursodox 250 mg capsule: hard",900000000000526001,"REPLACED BY association reference set",765951000168102,"Ursodox (GH) 250 mg hard capsule" -844541000168100,"Zovirax 800 mg tablet, 120",900000000000526001,"REPLACED BY association reference set",859431000168106,"Zovirax Dispersible 800 mg tablet, 120" -80672011000036103,"Gastrolyte orange powder for oral liquid, 2 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871661000168102,"Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets" -255261000168107,"PKU Cooler15 Purple oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725661000168101,"PKU Cooler 15 Purple oral liquid solution, 130 mL pouch" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",825991000168103,"Streptococcus pneumoniae type 19A conjugate antigen" -91861000036104,"docosahexaenoic acid + eicosapentaenoic acid + krill oil",900000000000526001,"REPLACED BY association reference set",91931000036100,"krill oil" -78311011000036108,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 200",900000000000526001,"REPLACED BY association reference set",833401000168101,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 200" -55736011000036100,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 20 mL",900000000000526001,"REPLACED BY association reference set",721641000168102,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL" -174971000036100,"Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, 60 actuations",900000000000526001,"REPLACED BY association reference set",701511000168109,"Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations" -174981000036103,"olodaterol 2.5 microgram/actuation inhalation: pressurised, 60 actuations",900000000000526001,"REPLACED BY association reference set",701501000168106,"olodaterol 2.5 microgram/actuation inhalation solution, 60 actuations" -50923011000036107,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689291000168106,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape" -387561000168101,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 125 mL can",900000000000526001,"REPLACED BY association reference set",724871000168105,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle" -7420011000036102,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041451000168101,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device" -14051011000036109,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715351000168102,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g" -86192011000036103,"magnesium + citric acid",900000000000526001,"REPLACED BY association reference set",870891000168103,"magnesium carbonate + citric acid" -38569011000036100,"aspirin 325 mg + codeine phosphate 30 mg tablet, 4",900000000000526001,"REPLACED BY association reference set",834411000168101,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 4" -17858011000036106,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041281000168109,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device" -78308011000036102,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 130",900000000000526001,"REPLACED BY association reference set",833311000168107,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 130" -806231000168107,"Repatha 140 mg/mL injection: solution, 2 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846411000168108,"Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices" -74865011000036107,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825181000168104,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe" -48503011000036103,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694051000168106,"Leukosilk (1021) 1.25 cm x 5 m tape" -77409011000036107,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",861811000168105,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60, bottle" -711731000168105,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005521000168101,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -691671000168107,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848201000168108,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack, composite pack" -73941011000036107,"H-B-Vax II preservative free 40 microgram/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",825681000168108,"H-B-Vax II preservative free 40 microgram/mL injection suspension, vial" -104201000036108,"Irbesartan (Apo) 75 mg tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",807761000168106,"Irbesartan (Apo) 75 mg film-coated tablet, 30, blister pack" -930915011000036106,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",861291000168102,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16" -761801000168109,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",833841000168101,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack" -703301000168103,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",828071000168106,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -75444011000036101,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839871000168105,"polio trivalent inactivated vaccine injection, 0.5 mL syringe" -81049011000036105,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863761000168100,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags" -900851000168109,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922621000168107,"PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets" -900841000168107,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922611000168100,"PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets" -711321000168108,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004621000168103,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -104111000036101,"Irbesartan (Apo) 300 mg tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",807821000168107,"Irbesartan (Apo) 300 mg film-coated tablet, 30, blister pack" -73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822261000168109,"rotavirus type G3 live antigen" -48702011000036109,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694081000168104,"Leukosilk (1022) 2.5 cm x 5 m tape" -652261000168102,"Cal-500 500 mg (calcium 500 mg) chewable tablet",900000000000526001,"REPLACED BY association reference set",859751000168107,"Cal-500 1.25 g (calcium 500 mg) chewable tablet" -37878011000036106,"atropine sulfate 500 microgram/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",850581000168102,"atropine sulfate monohydrate 500 microgram/mL injection, ampoule" -53608011000036107,"Cepacaine Oral Solution mouthwash",900000000000526001,"REPLACED BY association reference set",994911000168105,"Cepacaine Oral Solution mouthwash" -81618011000036102,"glucose 5% (12.5 g/250 mL) injection, 35 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863771000168106,"glucose monohydrate 5% (12.5 g/250 mL) injection, 35 x 250 mL bags" -71196011000036100,"cetylpyridinium chloride monohydrate 0.05% mouthwash, 150 mL",900000000000526001,"REPLACED BY association reference set",994971000168102,"cetylpyridinium chloride 0.05% mouthwash, 150 mL" -74210011000036105,"Adacel Polio injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839711000168105,"Adacel Polio injection suspension, 5 x 0.5 mL syringes" -74903011000036100,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1082841000168101,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack" -77139011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg, jar",900000000000526001,"REPLACED BY association reference set",705931000168107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg, jar" -11641011000036106,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850761000168104,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules" -66842011000036100,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705511000168106,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g" -925158011000036100,"Pemzo 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",716451000168104,"Pemzo 20 mg enteric capsule, 28, blister pack" -54159011000036106,"Canesten Clotrimazole Thrush Treatment Once 10% cream",900000000000526001,"REPLACED BY association reference set",715581000168102,"Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream" -9091000036100,"olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771821000168108,"olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 500 mL bag" -8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847121000168107,"Creon 40 000" -900821000168101,"PKU Sphere powder for oral liquid, 35 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922601000168103,"PKU Sphere20 Vanilla powder for oral liquid, 35 g sachet" -860221000168108,"Ostelin Osteoguard film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",932981000168101,"Ostelin Osteoguard film-coated tablet, 90" -76160011000036104,"Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 100 mL vial",900000000000526001,"REPLACED BY association reference set",695721000168102,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 100 mL bottle" -94701000036108,"Ostelin Osteoguard tablet: film-coated, 90",900000000000526001,"REPLACED BY association reference set",932981000168101,"Ostelin Osteoguard film-coated tablet, 90" -711341000168102,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004561000168107,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags" -49440011000036107,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694201000168102,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll" -52076011000036103,"Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint, 25 mL",900000000000526001,"REPLACED BY association reference set",703151000168102,"Salicylic Acid APF (extemporaneous) 10% paint, 25 mL" -85713011000036103,"Levetiracetam (Apo) 1 g tablet, 60",900000000000526001,"REPLACED BY association reference set",1003231000168100,"Levetiracetam 1000 (Apo) 1 g tablet, 60" -36898011000036104,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",720821000168101,"Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials" -172331000168102,"MSUD Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724011000168107,"MSUD Cooler 15 Orange oral liquid solution, 130 mL pouch" -82805011000036104,"Kaletra 400/100 oral liquid: solution, 5 x 60 mL",900000000000526001,"REPLACED BY association reference set",689541000168101,"Kaletra oral liquid solution, 5 x 60 mL" -73681000036104,"Byetta 5 microgram/0.02 mL injection: solution, 60 x 0.02 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",726791000168107,"Byetta 5 microgram/dose injection solution, 60 doses, injection device" -50924011000036109,"tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688831000168102,"tape plaster adhesive elastic 10 cm x 2.5 m tape" -700291000168106,"ADT Vaccine injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837271000168103,"ADT Vaccine injection suspension, 0.5 mL syringe" -923924011000036104,"Forteo 20 microgram injection: solution, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726961000168102,"Forteo 20 microgram/dose injection solution, 28 doses, injection device" -933244431000036104,"Panamax Co uncoated tablet, 40",900000000000526001,"REPLACED BY association reference set",836051000168101,"Panamax Co uncoated tablet, 40" -31521000036104,"Vivaxim injection suspension, 1 mL syringe, dual chamber syringe",900000000000526001,"REPLACED BY association reference set",827341000168101,"Vivaxim injection suspension, 1 mL syringe, dual chamber syringe" -104121000036108,"Irbesartan (Apo) 150 mg tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",807791000168104,"Irbesartan (Apo) 150 mg film-coated tablet, 30, blister pack" -18870011000036100,"Kenacomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758351000168101,"Kenacomb Otic ear drops solution, 7.5 mL, bottle" -101151000036100,"liraglutide 18 mg/3 mL injection, 2 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748071000168105,"liraglutide 6 mg/mL injection, 2 x 3 mL injection devices" -74748011000036107,"Adacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837531000168103,"Adacel injection suspension, 5 x 0.5 mL vials" -107091000036103,"Moviprep Lemon powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902141000168104,"Moviprep A powder for oral liquid, sachet" -73656011000036101,"Bordetella pertussis, fimbriae types 2 and 3 vaccine",900000000000526001,"REPLACED BY association reference set",836261000168106,"Bordetella pertussis fimbriae type 2 and 3 antigen" -860181000168100,"boric acid + calcium + colecalciferol + magnesium citrate nonahydrate + magnesium oxide heavy + manganese sulfate monohydrate + phytomenadione",900000000000526001,"REPLACED BY association reference set",932941000168106,"colecalciferol + calcium + magnesium + manganese + phytomenadione + boron" -73650011000036104,"meningococcal group C polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827361000168102,"Neisseria meningitidis group C polysaccharide antigen" -921879011000036102,"Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",696381000168108,"Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles" -107101000036107,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902131000168108,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid, sachet" -104171000036107,"Irbesartan (Apo) 150 mg tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",807841000168101,"Irbesartan (Apo) 150 mg film-coated tablet, 30, bottle" -42214011000036104,"Eskazole 400 mg chewable tablet, 56",900000000000526001,"REPLACED BY association reference set",844121000168104,"Eskazole 400 mg tablet, 56" -6440011000036104,"Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722831000168102,"Intron A Redipen 60 million units/1.2 mL injection solution" -711791000168109,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005581000168102,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags" -78215011000036100,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872971000168108,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle" -37844011000036100,"aspirin 325 mg + codeine phosphate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",834391000168101,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet" -711711000168100,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005681000168103,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags" -11393011000036107,"Dymadon Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835781000168101,"Dymadon Forte uncoated tablet, 20" -45313011000036107,"teriparatide 20 microgram injection, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726921000168107,"teriparatide 20 microgram/dose injection, dose" -22701011000036107,"pancrelipase 25 000 units capsule",900000000000526001,"REPLACED BY association reference set",847631000168103,"lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule" -75069011000036103,"Yellow fever live attenuated vaccine 1000 units injection, vial",900000000000526001,"REPLACED BY association reference set",822191000168105,"yellow fever live vaccine injection, vial" -77395011000036100,"Centrum tablet: film-coated, 8, bottle",900000000000526001,"REPLACED BY association reference set",833061000168108,"Centrum film-coated tablet, 8, bottle" -828331000168106,"Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",846051000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial" -26817011000036100,"haloperidol (as decanoate) 50 mg/mL injection, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",679731000168107,"haloperidol (as decanoate) 50 mg/mL injection, 5 x 1 mL ampoules" -82766011000036108,"Synflorix 16 microgram injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827651000168107,"Synflorix injection suspension, 10 x 0.5 mL syringes" -104211000036105,"Irbesartan (Apo) 75 mg tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",807831000168105,"Irbesartan (Apo) 75 mg film-coated tablet, 30, bottle" -927336011000036109,"lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 25 g",900000000000526001,"REPLACED BY association reference set",863461000168106,"lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 25 g" -77269011000036107,"Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695631000168107,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles" -154321000036100,"betamethasone (as sodium phosphate) 2.96 mg/mL + betamethasone (as acetate) 2.71 mg/mL injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",746331000168106,"betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, 5 x 1 mL ampoules" -836181000168109,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872331000168109,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag" -81137011000036109,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",868111000168109,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags" -925340011000036106,"Omepro 20 mg capsule, 56, bottle",900000000000526001,"REPLACED BY association reference set",716801000168100,"Omepro 20 mg enteric capsule, 56, bottle" -167721000168109,"MSUD Cooler 10 oral liquid: solution, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725291000168106,"MSUD Cooler 10 oral liquid solution, 87 mL pouch" -921431011000036107,"Centrum Select 50 Plus tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",843331000168101,"Centrum Select 50 Plus film-coated tablet, 100" -20537011000036102,"Granocyte 13.4 million units (105 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838241000168106,"Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial" -36702011000036101,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850421000168100,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules" -140351000036104,"Menitorix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846121000168109,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -6070011000036105,"Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 0.4 mL ampoule",900000000000526001,"REPLACED BY association reference set",684571000168109,"Ocufen 0.03% eye drops solution, 0.4 mL unit dose" -74367011000036100,"Tripacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837571000168100,"Tripacel injection suspension, 0.5 mL vial" -54098011000036100,"Disprin Original 300 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",804211000168108,"Disprin Original 300 mg tablet" -921488011000036105,"MD-Gastroview solution, 12 x 120 mL each",900000000000526001,"REPLACED BY association reference set",696171000168108,"MD-Gastroview solution, 12 x 120 mL" -104221000036103,"Irbesartan (Apo) 300 mg tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",807851000168104,"Irbesartan (Apo) 300 mg film-coated tablet, 30, bottle" -71866011000036105,"aspirin 500 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804381000168106,"aspirin 500 mg tablet, 6" -164431000036104,"Moviprep Orange powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902221000168101,"Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets" -68916011000036107,"Soap Enema (Orion) 50 mg/mL enema, 1 mL bottle",900000000000526001,"REPLACED BY association reference set",685531000168107,"Soap Enema (Orion) 50 mg/mL enema, 500 mL, bottle" -711381000168107,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004521000168102,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -61118011000036104,"Difflam Lozenge honey and lemon sugar free lozenge, 8, blister pack",900000000000526001,"REPLACED BY association reference set",995781000168102,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8, blister pack" -69929011000036105,"soap-soft 50 mg/mL enema, bottle",900000000000526001,"REPLACED BY association reference set",685491000168107,"soft soap 50 mg/mL enema" -75890011000036106,"psyllium dried",900000000000526001,"REPLACED BY association reference set",826001000168102,"dry psyllium seed" -134971000036103,"Japanese encephalitis virus live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",821521000168107,"Japanese encephalitis live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack" -844501000168102,"Zovirax 800 mg tablet, 35, bottle",900000000000526001,"REPLACED BY association reference set",859231000168107,"Zovirax Dispersible 800 mg tablet, 35, bottle" -26831000036107,"Femazole 150 mg capsule: hard, 1 capsule",900000000000526001,"REPLACED BY association reference set",685541000168103,"Femazole Duo 150 mg hard capsule" -653721000168108,"Retinofluor 1 g/10 mL injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",721861000168102,"Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials" -55789011000036100,"Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715411000168107,"Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g" -80516011000036100,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864361000168103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags" -73803011000036108,"Infanrix Hexa injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",840901000168100,"Infanrix Hexa 10 microgram powder for injection, 10 microgram vial" -6718011000036103,"Clofeme Thrush Treatment 6 Day 1% cream",900000000000526001,"REPLACED BY association reference set",715121000168108,"Clofeme Thrush Treatment 6 Day 1% vaginal cream" -74276011000036104,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845911000168109,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -96241000036109,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) chewable tablet",900000000000526001,"REPLACED BY association reference set",861881000168104,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet" -243091000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724221000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch" -22084011000036106,"entecavir monohydrate 1 mg tablet",900000000000526001,"REPLACED BY association reference set",829441000168103,"entecavir 1 mg tablet" -141521000036109,"lanreotide 120 mg injection, syringe",900000000000526001,"REPLACED BY association reference set",819381000168109,"lanreotide 120 mg/0.5 mL injection, syringe" -922086011000036104,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet",900000000000526001,"REPLACED BY association reference set",843211000168103,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet" -21080011000036100,"Eskazole 400 mg chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",844101000168108,"Eskazole 400 mg tablet, 60, bottle" -73856011000036106,"Gardasil injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823021000168100,"Gardasil injection suspension, 0.5 mL syringe" -86837011000036104,"Emulsifying Ointment (David Craig) ointment, 500 g, jar",900000000000526001,"REPLACED BY association reference set",770841000168108,"Emulsifying Ointment BP (David Craig) ointment, 500 g, jar" -48558011000036101,"Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694111000168109,"Leukosilk (1024) 5 cm x 5 m tape" -27362011000036100,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/mL ear drops, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758331000168107,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL" -26721011000036103,"atropine sulfate 600 microgram/mL injection, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850751000168101,"atropine sulfate monohydrate 600 microgram/mL injection, 10 x 1 mL ampoules" -4704011000036103,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850741000168103,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, ampoule" -9141000036107,"Clinoleic 20% injection: emulsion, 12 x 350 mL bags",900000000000526001,"REPLACED BY association reference set",779171000168103,"Clinoleic 20% injection emulsion, 12 x 350 mL bags" -74773011000036101,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825411000168104,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials" -680651000168105,"Zaldiar Combination Therapy film-coated tablet, 50",900000000000526001,"REPLACED BY association reference set",1027851000168107,"Zaldiar film-coated tablet, 50" -76025011000036107,"Sorbilax 1 mL/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",690651000168106,"Sorbilax 70% non-crystallising oral liquid solution" -141511000036102,"Somatuline Autogel 120 mg injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",819391000168107,"Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe" -700311000168105,"ADT Vaccine injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837291000168102,"ADT Vaccine injection suspension, 0.5 mL syringe" -77321011000036105,"Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",695091000168102,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials" -74960011000036107,"hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",825191000168101,"hepatitis B vaccine" -923444011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",717141000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 15" -85776011000036100,"Go Kit (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet), 1 pack",900000000000526001,"REPLACED BY association reference set",830971000168106,"Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack" -77281011000036106,"Compound Benzoin Tincture Friar's Balsam (Orion) solution, 50 mL, bottle",900000000000526001,"REPLACED BY association reference set",696441000168105,"Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL, bottle (Old Formulation 2010)" -66454011000036104,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",995141000168108,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16" -923732011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 50, blister pack",900000000000526001,"REPLACED BY association reference set",717281000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 50, blister pack" -157051000036104,"tenofovir + emtricitabine + elvitegravir + cobicistat",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",851321000168102,"tenofovir alafenamide + emtricitabine + elvitegravir + cobicistat" -75380011000036107,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822981000168105,"human papillomavirus quadrivalent vaccine injection, 0.5 mL vial" -33823011000036108,"docusate sodium 50 mg + sennoside B 8 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",81751011000036106,"sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 100" -54136011000036103,"Clozole Vaginal Cream (Chemists' Own) 1% cream",900000000000526001,"REPLACED BY association reference set",715541000168107,"Clozole (Chemists' Own) 1% vaginal cream" -82202011000036104,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100",900000000000526001,"REPLACED BY association reference set",729271000168108,"Silver Nitrate Applicator (Grafco) stick, 100" -49433011000036100,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694371000168104,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll" -107101000036107,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902151000168102,"ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, sachet" -181501000036105,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835921000168103,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20, blister pack" -81294011000036107,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868201000168102,"glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag" -154271000036107,"Celestone Chronodose injection: suspension, ampoule",900000000000526001,"REPLACED BY association reference set",746321000168108,"Celestone Chronodose injection suspension, ampoule" -73259011000036108,"Duodopa gel: intestinal, 7 x 1 mL bags",900000000000526001,"REPLACED BY association reference set",720531000168101,"Duodopa intestinal gel, 7 x 100 mL, bags" -154281000036109,"betamethasone (as sodium phosphate) 2.96 mg/mL + betamethasone (as acetate) 2.71 mg/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",746311000168101,"betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, ampoule" -680571000168100,"Zaldiar Combination Therapy",900000000000526001,"REPLACED BY association reference set",1027811000168106,"Zaldiar" -711771000168108,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005561000168106,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -107091000036103,"Moviprep Lemon powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902161000168100,"Moviprep B powder for oral liquid, sachet" -84081011000036108,"Glycoprep-C Flavoured powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901091000168101,"Glycoprep-C powder for oral liquid, 70 g sachet" -932465011000036102,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872811000168106,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle" -711751000168104,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005541000168107,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 10 mL ampoule" -922652011000036104,"iopromide 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695221000168107,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 75 mL bottles" -53813011000036108,"Daktarin 2% oral gel",900000000000526001,"REPLACED BY association reference set",819981000168105,"Daktarin 2% oral gel" -73663011000036103,"poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836541000168109,"poliovirus type 3 inactivated antigen" -933226171000036102,"Fluoride Witchy Candy Mint (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932521000168105,"Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL" -931484011000036102,"Prodeine 15 uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",835731000168102,"Prodeine 15 uncoated tablet, 50, blister pack" -71455011000036103,"salicylic acid 5% (50 mg/g) + aqueous cream 950 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705601000168109,"salicylic acid 5% + aqueous cream, 100 g" -36029011000036100,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",834921000168102,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid" -86226011000036109,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge",900000000000526001,"REPLACED BY association reference set",995981000168100,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge" -56394011000036103,"Zantac 150 mg/10 mL oral liquid: solution, 140 mL",900000000000526001,"REPLACED BY association reference set",783901000168103,"Zantac 150 mg/10 mL oral liquid, 140 mL" -933225311000036102,"Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726491000168104,"Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL" -50335011000036103,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689231000168107,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll, carton" -76751011000036108,"Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695281000168106,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles" -77141011000036101,"Sorbilax 1 mL/mL oral liquid: solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",690671000168102,"Sorbilax 70% non-crystallising oral liquid solution, 500 mL, bottle" -24671000036103,"Albey Yellow Jacket Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",759081000168104,"Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack" -74254011000036109,"Cervarix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823191000168102,"Cervarix injection suspension, 10 x 0.5 mL syringes" -76748011000036101,"Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695691000168106,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles" -665481000168107,"PKU Cooler20 Gold oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725711000168106,"PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches" -933239451000036107,"Omeprazole (Apo) 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",717581000168107,"Omeprazole (Apo) 20 mg enteric capsule, 30, bottle" -828361000168103,"Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",846101000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -75106011000036103,"meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",827691000168102,"meningococcal quadrivalent polysaccharide vaccine injection, vial" -925154011000036107,"Pemzo 20 mg capsule, 500, blister pack",900000000000526001,"REPLACED BY association reference set",716911000168108,"Pemzo 20 mg enteric capsule, 500, blister pack" -833771000168100,"somatropin + inert substance",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",21295011000036100,"somatropin" -45111000036101,"MMA/PA Cooler 15 oral liquid: solution, 30 x 130 mL sachets",900000000000526001,"REPLACED BY association reference set",725271000168105,"MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches" -69165011000036100,"Ora-Sed Jel oral gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",936671000168106,"Ora-Sed Jel oral gel, 10 g, tube" -107531000036106,"dressing hydrogel 5 cm x 200 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056261000168106,"dressing hydrophobic 5 cm x 200 cm ribbon" -931512011000036101,"Menveo injection: suspension, 1 pack, composite pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826801000168106,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack" -66455011000036100,"Cepacol Mint 0.05% mouthwash, 150 mL",900000000000526001,"REPLACED BY association reference set",995301000168109,"Cepacol Mint 0.05% mouthwash, 150 mL" -181711000036104,"Diprosone 0.05% lotion, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",1054651000168103,"Diprosone 0.05% lotion, 30 mL, bottle" -77171011000036100,"Fess 7.04 mg / 1 mL nasal spray, 2 x 75 mL pump actuated aerosols",900000000000526001,"REPLACED BY association reference set",730681000168104,"Fess 0.704% nasal spray, 2 x 75 mL, pump packs" -77144011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL, pump pack",900000000000526001,"REPLACED BY association reference set",705971000168105,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL, pump pack" -20739011000036108,"Aerodiol 150 microgram/actuation nasal spray, 60 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085391000168106,"Aerodiol 150 microgram/actuation nasal spray, 60 actuations, pump pack" -127361000036102,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725861000168100,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 87 mL pouches" -53665011000036100,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",721631000168106,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 5 mL" -69041011000036100,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705621000168100,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g, jar" -925350011000036108,"Pemzo 20 mg capsule, 50, bottle",900000000000526001,"REPLACED BY association reference set",716861000168104,"Pemzo 20 mg enteric capsule, 50, bottle" -924889011000036104,"Pemzo 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",717431000168107,"Pemzo 20 mg enteric capsule, 60" -757011000168103,"Ursodox",900000000000526001,"REPLACED BY association reference set",765941000168104,"Ursodox (GH)" -49436011000036106,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694061000168108,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll" -86614011000036107,"Flo Sinus Care powder for nasal drops, 1.8 g sachet",900000000000526001,"REPLACED BY association reference set",758681000168102,"Flo Sinus Care powder for irrigation solution, 1.8 g sachet" -74925011000036108,"Infanrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840821000168101,"Infanrix-IPV injection suspension, 0.5 mL syringe" -74238011000036103,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825341000168107,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial" -12345011000036104,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28",900000000000526001,"REPLACED BY association reference set",792891000168106,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28" -828381000168107,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846121000168109,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -9011000036105,"olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771701000168106,"olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 100 mL bag" -37653011000036106,"Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",775561000168103,"Forthane 1 mL/mL inhalation solution, 100 mL, bottle" -74739011000036100,"Infanrix Hexa injection: suspension, 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",840931000168107,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack" -77575011000036108,"iopromide 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695541000168104,"iopromide 769 mg (iodine 370 mg)/mL injection, 30 mL vial" -75374011000036106,"hepatitis B vaccine 10 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825591000168107,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL vial" -924873011000036107,"Omepro 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",716621000168105,"Omepro 20 mg enteric capsule, 5" -84078011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873111000168107,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags" -73929011000036108,"Boostrix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837641000168108,"Boostrix injection suspension, 0.5 mL syringe" -108691000036109,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20",900000000000526001,"REPLACED BY association reference set",1056191000168107,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20" -59703011000036106,"Cortef 1% spray: solution, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",776901000168104,"Cortef 1% spray solution, 30 mL, bottle" -65267011000036103,"Tinaderm Powder Spray 0.09% spray: pressurised",900000000000526001,"REPLACED BY association reference set",769601000168107,"Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray" -734131000168104,"Centavite Adult tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",842941000168102,"Centavite Adult film-coated tablet, 30, bottle" -14050011000036102,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715291000168102,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g" -13155011000036102,"Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722751000168103,"Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL" -73821011000036102,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822621000168102,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe" -734121000168102,"Centavite Adult tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",842931000168106,"Centavite Adult film-coated tablet, 30" -7593011000036109,"Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726341000168100,"Norditropin Nordiflex 5 mg/1.5 mL injection solution" -60764011000036106,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995671000168109,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2, blister pack" -105501000036107,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703561000168108,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe" -920655011000036104,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90, bottle",900000000000526001,"REPLACED BY association reference set",949371000168109,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, bottle" -734111000168109,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 30",900000000000526001,"REPLACED BY association reference set",842921000168108,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 30" -39933011000036104,"Voluven 6% / 0.9% injection solution, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",1013511000168109,"Voluven injection solution, 500 mL bottle" -37663011000036102,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube",900000000000526001,"REPLACED BY association reference set",850931000168109,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube" -74288011000036105,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",827721000168106,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack" -78309011000036105,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 14",900000000000526001,"REPLACED BY association reference set",833071000168102,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 14" -51977011000036106,"Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint",900000000000526001,"REPLACED BY association reference set",703141000168104,"Salicylic Acid APF (extemporaneous) 10% paint" -74295011000036100,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",824731000168103,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials" -74907011000036109,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824691000168105,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe" -923840011000036100,"Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891141000168104,"Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial" -81723011000036106,"calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, 1 L bag",900000000000526001,"REPLACED BY association reference set",872231000168102,"sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 1 L bag" -77322011000036104,"Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695531000168108,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials" -88401000036107,"Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",729991000168103,"Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial" -734101000168106,"Centavite Adult tablet: film-coated",900000000000526001,"REPLACED BY association reference set",842911000168101,"Centavite Adult film-coated tablet" -56779011000036108,"Difflam Cough Lozenge blackcurrant sugar free lozenge, 24",900000000000526001,"REPLACED BY association reference set",995551000168101,"Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24" -930004011000036102,"Menveo injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826701000168104,"MenCWY injection solution, syringe" -84389011000036106,"Glycoprep-C Flavoured powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901101000168106,"Glycoprep-C powder for oral liquid, 70 g sachet" -80634011000036105,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",867861000168103,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags" -70012011000036101,"salicylic acid 3% (30 mg/g) + aqueous cream 970 mg/g cream",900000000000526001,"REPLACED BY association reference set",705431000168100,"salicylic acid 3% + aqueous cream" -31972011000036103,"sorbitol solution (70 per cent-non-crystallising)",900000000000526001,"REPLACED BY association reference set",690581000168103,"sorbitol solution" -711541000168105,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004961000168102,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -734091000168101,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet",900000000000526001,"REPLACED BY association reference set",842901000168104,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet" -74996011000036108,"meningococcal group C polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",826391000168106,"meningococcal C conjugate vaccine" -82516011000036108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724941000168107,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles" -66843011000036107,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705611000168107,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g" -836151000168102,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872301000168102,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag" -48510011000036109,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",693981000168102,"Leukopor (2472) 2.5 cm x 5 m tape" -924211011000036108,"omeprazole 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",716871000168105,"omeprazole 20 mg enteric capsule, 7" -924202011000036100,"omeprazole 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",716251000168100,"omeprazole 20 mg enteric capsule, 100" -716081000168101,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack",900000000000526001,"REPLACED BY association reference set",826791000168105,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack" -925661011000036101,"Medi Creme cream",900000000000526001,"REPLACED BY association reference set",863451000168109,"Medi Creme cream" -70321000036101,"Salofalk 500 mg granules, 500 mg sachet",900000000000526001,"REPLACED BY association reference set",1084031000168105,"Salofalk 500 mg modified release granules, 500 mg sachet" -74967011000036108,"Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, fimbriae types 2 and 3 vaccine + Bordetella pertussis, acellular pertactin vaccine + diphtheria toxoid vaccine + tetanus toxoid vaccine",900000000000526001,"REPLACED BY association reference set",837451000168108,"diphtheria + tetanus + pertussis 5 component vaccine" -930679011000036103,"Granisetron (Kabi) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747081000168107,"Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules" -924139011000036102,"omeprazole 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717011000168109,"omeprazole 20 mg enteric capsule, 98" -74351011000036101,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824881000168106,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe" -928235011000036103,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705411000168105,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g" -93401000036101,"meningococcal group A conjugate vaccine 4 microgram + meningococcal group C conjugate vaccine 4 microgram + meningococcal group W135 conjugate vaccine 4 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 4 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826531000168102,"meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial" -33492011000036104,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",707351000168105,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe" -78258011000036101,"iopromide 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection, 10 x 200 mL bottles",900000000000526001,"REPLACED BY association reference set",695781000168103,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 200 mL bottles" -20407011000036101,"Colazide 750 mg capsule, 180, bottle",900000000000526001,"REPLACED BY association reference set",932501000168101,"Colazide 750 mg hard capsule, 180, bottle" -119701000036104,"clotrimazole 1% + hydrocortisone (as acetate) 1% cream",900000000000526001,"REPLACED BY association reference set",37823011000036100,"hydrocortisone 1% + clotrimazole 1% cream" -716051000168108,"meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826761000168103,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, vial" -927556011000036108,"meningococcal group W135 conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824481000168109,"Neisseria meningitidis group W135 conjugate antigen" -716091000168103,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, vial",900000000000526001,"REPLACED BY association reference set",826801000168106,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack" -78112011000036106,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705731000168105,"glycerol 10% + cetomacrogol aqueous cream, 100 g" -836171000168106,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872321000168106,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag" -66892011000036106,"Metformin Hydrochloride (GA) 1 g tablet, 90",900000000000526001,"REPLACED BY association reference set",949441000168109,"Metformin Hydrochloride 1000 (GA) 1 g tablet, 90" -139271000036109,"Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006081000168101,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -50517011000036104,"Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694131000168104,"Leukosilk (1024) 5 cm x 5 m tape, 1 roll, carton" -929747011000036104,"aluminium sulfate hydrate 98.6% stick, 5 g",900000000000526001,"REPLACED BY association reference set",846161000168104,"aluminium sulfate 98.6% stick, 5 g" -933220781000036103,"Naropin 0.2% (400 mg/200 mL) injection: solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004641000168109,"Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag" -37410011000036106,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850621000168102,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules" -50930011000036101,"tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688931000168106,"tape non woven retention polyacrylate 5 cm x 10 m tape" -74763011000036108,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825271000168108,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes" -75040011000036104,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836651000168107,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe" -74764011000036105,"Gardasil injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",823081000168101,"Gardasil injection suspension, 10 x 0.5 mL vials" -13156011000036109,"Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722801000168109,"Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL" -1021211000168101,"Salofalk 1 g granules, 150 sachets",900000000000526001,"REPLACED BY association reference set",1084211000168106,"Salofalk 1 g modified release granules, 150 sachets" -27890011000036103,"lopinavir 80 mg/mL + ritonavir 20 mg/mL oral liquid, 60 mL",900000000000526001,"REPLACED BY association reference set",689471000168109,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 60 mL" -925170011000036100,"Pemzo 20 mg capsule, 140, blister pack",900000000000526001,"REPLACED BY association reference set",716331000168104,"Pemzo 20 mg enteric capsule, 140, blister pack" -127381000036107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725961000168107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 174 mL pouches" -83621011000036106,"Diacol tablet",900000000000526001,"REPLACED BY association reference set",900241000168108,"Diacol tablet" -81290011000036102,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868121000168102,"glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag" -20397011000036106,"Etopophos 1 g injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793621000168102,"Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial" -711461000168108,"Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004641000168109,"Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag" -920991011000036106,"Macu-Vision tablet: film-coated",900000000000526001,"REPLACED BY association reference set",757841000168107,"Macu-Vision film-coated tablet" -73250011000036102,"Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes",900000000000526001,"REPLACED BY association reference set",781291000168102,"Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes" -18750011000036100,"Baraclude 500 microgram tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",829531000168106,"Baraclude 500 microgram film-coated tablet, 30, blister pack" -933214541000036100,"Levetiracetam (Lupin) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003521000168100,"Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60, blister pack" -80647011000036100,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872651000168106,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags" -22939011000036108,"pancreatic extract 25 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847371000168105,"lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule" -83964011000036101,"Wagner Magnesium Forte 400 capsules: hard, 50",900000000000526001,"REPLACED BY association reference set",750291000168104,"Magnesium Forte 400 (Wagner) hard capsule, 50" -711821000168101,"Ropibam 0.2% 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005081000168106,"Ropibam 0.2% 20 mg/10 mL injection solution, 10 mL ampoule" -734211000168104,"Centavite Adult tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",843021000168102,"Centavite Adult film-coated tablet, 100" -922573011000036102,"iopromide 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695171000168102,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 50 mL bottles" -29161000036100,"Movicol Chocolate solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674021000168106,"Movicol Chocolate powder for oral liquid, 30 sachets" -734221000168106,"Centavite Adult tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",843031000168104,"Centavite Adult film-coated tablet, 100, bottle" -933226201000036101,"Fluoride Koala Berry (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932641000168103,"Fluoride (Laclede) Koala Berry Flavour foam, 165 mL" -49487011000036104,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724111000168106,"HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches" -844821000168109,"Zovirax 400 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",859561000168102,"Zovirax Dispersible 400 mg tablet, 100" -74422011000036103,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825701000168106,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial" -74982011000036108,"human papillomavirus (type 6) vaccine + human papillomavirus (type 11) vaccine + human papillomavirus (type 16) vaccine + human papillomavirus (type 18) vaccine",900000000000526001,"REPLACED BY association reference set",822951000168103,"human papillomavirus quadrivalent vaccine" -18751011000036107,"Comfarol Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835981000168104,"Comfarol Forte uncoated tablet, 20, blister pack" -900051011000036109,"Voltaren Emulgel 1% gel, 100 g, tube",900000000000526001,"REPLACED BY association reference set",1037021000168106,"Voltaren Emulgel 1.16% gel, 100 g, tube" -61451000036102,"calcium carbonate 780 mg + magnesium carbonate heavy 130 mg + magnesium trisilicate 130 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",833641000168102,"calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet" -158331000036108,"Oxycontin Reformulation 15 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",65351011000036109,"Oxycontin 15 mg modified release tablet" -76125011000036103,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872931000168105,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle" -933221241000036106,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004841000168105,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 200 mL bag" -98881000036102,"liraglutide 18 mg/3 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",748021000168109,"liraglutide 6 mg/mL injection, 3 mL injection device" -368531000168105,"TYR Cooler 15 oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725901000168106,"TYR Cooler 15 oral liquid solution, 130 mL pouch" -44485011000036105,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations, bottle",900000000000526001,"REPLACED BY association reference set",729141000168109,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations, pump pack" -51412011000036100,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689261000168104,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll" -925131011000036105,"First Aid (Amcal) cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",861521000168101,"First Aid (Amcal) cream, 50 g, tube" -81710011000036105,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868301000168109,"glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag" -925146011000036101,"Omepro 20 mg capsule, 98, blister pack",900000000000526001,"REPLACED BY association reference set",717031000168104,"Omepro 20 mg enteric capsule, 98, blister pack" -69521011000036100,"Disprin Max 500 mg dispersible tablet, 6, strip pack",900000000000526001,"REPLACED BY association reference set",804401000168106,"Disprin Max 500 mg tablet, 6, strip pack" -80215011000036104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867811000168101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag" -63246011000036100,"miconazole 2% oral gel, 15 g",900000000000526001,"REPLACED BY association reference set",817991000168104,"miconazole 2% oral gel, 15 g" -1021171000168103,"Salofalk 1 g granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084151000168100,"Salofalk 1 g modified release granules, 50 sachets" -108841000036104,"Moviprep Lemon powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902181000168109,"Moviprep (2 x A sachets, 2 x B sachets), 4 sachets" -921574011000036104,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100",900000000000526001,"REPLACED BY association reference set",950751000168108,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100" -713331000168107,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005471000168104,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags" -923982011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",827411000168109,"pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe" -57064011000036103,"Difflam Lozenge orange sugar free lozenge, 24",900000000000526001,"REPLACED BY association reference set",995841000168101,"Difflam Lozenge Orange Sugar Free lozenge, 24" -75048011000036102,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824951000168107,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, syringe" -44516011000036106,"Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085271000168102,"Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations, pump pack" -75381011000036100,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",823061000168105,"human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL vials" -28631000036105,"diclofenac sodium 1% gel, 150 g",900000000000526001,"REPLACED BY association reference set",1037131000168105,"diclofenac diethylamine 1.16% gel, 150 g" -86460011000036104,"bisacodyl 5 mg enteric tablet [3] (&) citric acid 14 g + magnesium carbonate heavy 7.5 g powder for oral liquid [1 x 21.5 g sachet], 1 pack",900000000000526001,"REPLACED BY association reference set",830961000168100,"bisacodyl 5 mg enteric tablet [3] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack" -24651000036108,"Albey Bee Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",758861000168107,"Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack" -22351011000036102,"atropine sulfate 1% eye drops",900000000000526001,"REPLACED BY association reference set",850941000168100,"atropine sulfate monohydrate 1% eye drops" -155111000036109,"Macrogol plus Electrolytes (Apo) solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674071000168107,"Macrogol plus Electrolytes (Apo) powder for oral liquid, sachet" -54179011000036109,"Difflam Lozenge orange sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995791000168104,"Difflam Lozenge Orange Sugar Free lozenge" -923386011000036107,"Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891131000168108,"Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial" -39305011000036104,"Fludara 50 mg injection: powder for, 5 vials",900000000000526001,"REPLACED BY association reference set",710831000168105,"Fludara IV 50 mg powder for injection, 5 vials" -933214601000036104,"Levetiracetam (LAPL) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003481000168100,"Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60, blister pack" -63084011000036107,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg dispersible tablet, 24",900000000000526001,"REPLACED BY association reference set",804151000168102,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet, 24" -82196011000036100,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 2 x 5 L bags",900000000000526001,"REPLACED BY association reference set",872441000168107,"Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags" -815191000168108,"Entrip 50 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",856801000168105,"Entrip 50 mg film-coated tablet, 50" -75059011000036108,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",791911000168103,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray" -700271000168105,"diphtheria toxoid vaccine + tetanus toxoid vaccine",900000000000526001,"REPLACED BY association reference set",21826011000036109,"diphtheria + tetanus vaccine" -686411000168105,"interferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",698591000168102,"peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL syringes" -170301000168108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725331000168100,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 174 mL pouch" -28621000036108,"Voltaren Osteo 1% gel, 150 g",900000000000526001,"REPLACED BY association reference set",1037141000168101,"Voltaren Osteo 1.16% gel, 150 g" -734201000168102,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",843011000168109,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 100" -665601000168102,"PKU Cooler20 Green oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725771000168103,"PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches" -927868011000036100,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream",900000000000526001,"REPLACED BY association reference set",715801000168107,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream" -815241000168108,"Entrip 50 mg tablet, 1000, blister pack",900000000000526001,"REPLACED BY association reference set",856851000168109,"Entrip 50 mg film-coated tablet, 1000, blister pack" -87640011000036105,"HCU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",725011000168108,"HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles" -67118011000036101,"Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",684731000168102,"Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials" -924707011000036108,"Pemzo 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717691000168109,"Pemzo 20 mg enteric capsule, 98" -11917011000036108,"Comfarol Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835971000168102,"Comfarol Forte uncoated tablet, 20" -32138011000036101,"vespula spp venom",900000000000526001,"REPLACED BY association reference set",759031000168100,"yellow jacket venom" -928873011000036108,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705421000168103,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g, jar" -776481000168103,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",996101000168102,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 2" -925333011000036104,"Omepro 20 mg capsule, 14, bottle",900000000000526001,"REPLACED BY association reference set",716401000168103,"Omepro 20 mg enteric capsule, 14, bottle" -24661000036106,"Albey Paper Wasp Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",758921000168105,"Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack" -70218011000036109,"benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge",900000000000526001,"REPLACED BY association reference set",995031000168100,"benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge" -30704011000036103,"alpha tocopherol acetate",900000000000527005,"SAME AS association reference set",809501000168108,"dl-alpha-tocopheryl acetate" -74352011000036107,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825171000168102,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe" -61641000036102,"Worming Tablet (Chemmart) 100 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844251000168100,"Worming Tablet (Chemmart) 100 mg tablet" -931680011000036105,"Implanon NXT 68 mg implant, 1, blister pack",900000000000526001,"REPLACED BY association reference set",732371000168106,"Implanon NXT 68 mg implant, 1, applicator" -74283011000036100,"Twinrix Junior injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824541000168103,"Twinrix Junior injection suspension, 0.5 mL syringe" -84624011000036106,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 60",900000000000526001,"REPLACED BY association reference set",860291000168105,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 60" -170761000036103,"Aquacel Ag (403771) 2 cm x 45 cm rope, 5, carton",900000000000526001,"REPLACED BY association reference set",745101000168106,"Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5, carton" -135711000036106,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821541000168101,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack" -75390011000036108,"hepatitis B vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825901000168109,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL syringes" -72954011000036104,"Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 10 mL syringe",900000000000526001,"REPLACED BY association reference set",781261000168109,"Apomine PFS 50 mg/10 mL injection solution, 10 mL syringe" -2941000036100,"Clinoleic 20% injection: emulsion, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771761000168107,"Clinoleic 20% injection emulsion, 250 mL bag" -35226011000036103,"buprenorphine 8 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685701000168105,"buprenorphine 8 mg sublingual tablet, 100" -69319011000036108,"Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",684691000168109,"Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials" -34315011000036103,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",834791000168102,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100" -74940011000036102,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826441000168105,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -933221211000036105,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004781000168109,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, bag" -138781000036109,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",846101000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -156951000036103,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",862191000168103,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100, bottle" -83410011000036108,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",872201000168109,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules" -91761000036109,"Eco Krill soft capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",965911000168108,"Eco Krill 333.3 mg soft capsule, 30, bottle" -33495011000036107,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",707381000168103,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe" -60653011000036105,"Paxyl 2.5% / 0.1% spray solution, 125 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",861671000168101,"Paxyl 2.5% / 0.1% spray solution, 125 mL, pump actuated aerosol" -933226191000036103,"Fluoride Tyranna Grape (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932581000168109,"Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL" -833791000168104,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",633441000168106,"Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe" -924869011000036102,"Omepro 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",716371000168101,"Omepro 20 mg enteric capsule, 14" -57202011000036104,"Clozole Vaginal Cream (Meditab) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715851000168106,"Clozole (Meditab) 2% vaginal cream, 20 g" -156971000036108,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862231000168107,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60, bottle" -75371011000036108,"hepatitis B vaccine 20 microgram/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825331000168103,"hepatitis B adult vaccine 20 microgram/mL injection, 1 mL vial" -87831000036103,"Eco Krill soft capsule",900000000000526001,"REPLACED BY association reference set",965881000168108,"Eco Krill 333.3 mg soft capsule" -6473011000036108,"Botox 100 units injection: powder for, 100 units vial",900000000000526001,"REPLACED BY association reference set",720851000168109,"Botox 100 units powder for injection, 100 units vial" -49267011000036100,"MSUD Express Cooler oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725391000168101,"MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches" -49435011000036104,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689321000168103,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll" -33665011000036107,"bee venom 550 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",758801000168106,"honey bee venom 550 microgram injection, vial" -664391000168100,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate heavy 250 mg/g powder for oral liquid, 100 g",900000000000526001,"REPLACED BY association reference set",833711000168108,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid, 100 g" -37614011000036104,"Actacode Linctus 5 mg/mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835561000168103,"Actacode Linctus 5 mg/mL oral liquid solution, 100 mL, bottle" -80158011000036103,"Metomax capsule",900000000000526001,"REPLACED BY association reference set",867291000168109,"Metomax capsule" -86856011000036101,"Aqueous Cream (David Craig) cream, 500 g, jar",900000000000526001,"REPLACED BY association reference set",768321000168102,"Aqueous Cream APF (David Craig) cream, 500 g, jar" -6021011000036102,"Comfarol Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835961000168108,"Comfarol Forte uncoated tablet" -80670011000036102,"Gastrolyte natural powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871891000168108,"Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets" -82190011000036103,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",860371000168101,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100" -156961000036100,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",862211000168102,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120, bottle" -56684011000036106,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",648761000168106,"Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 100 mL" -50243011000036109,"PKU Cooler10 Purple oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725591000168109,"PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches" -248051000168109,"Lophlex oral liquid: powder for, 27.8 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725171000168104,"PKU Lophlex Unflavoured powder for oral liquid, 27.8 g sachet" -933220911000036108,"ropivacaine hydrochloride monohydrate 40 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004581000168103,"ropivacaine hydrochloride 40 mg/20 mL injection, ampoule" -726851000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection, dose",900000000000526001,"REPLACED BY association reference set",881161000168101,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, dose" -36651011000036109,"Codral Forte uncoated tablet, 4",900000000000526001,"REPLACED BY association reference set",834421000168108,"Codral Forte uncoated tablet, 4" -173181000036103,"olodaterol 2.5 microgram/actuation inhalation: pressurised, actuation",900000000000526001,"REPLACED BY association reference set",701481000168102,"olodaterol 2.5 microgram/actuation inhalation solution, actuation" -81168011000036100,"Gastrolyte natural powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871901000168107,"Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets" -85704011000036103,"Levetiracetam (Apo) 1 g tablet, 100",900000000000526001,"REPLACED BY association reference set",1003191000168109,"Levetiracetam 1000 (Apo) 1 g tablet, 100" -71684011000036105,"calcium gluconate monohydrate 10% (1 g/10 mL) injection, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",684671000168108,"calcium gluconate monohydrate 953 mg/10 mL injection, 10 x 10 mL vials" -930838011000036102,"Actonel EC Combi D (1 x Once-a-Week tablet, 6 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810291000168106,"Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack" -36093011000036108,"Primacor 10 mg/10 mL injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",719501000168107,"Primacor 10 mg/10 mL concentrated injection, 10 mL ampoule" -26829011000036102,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 50",900000000000526001,"REPLACED BY association reference set",834271000168105,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 50" -49446011000036105,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689221000168109,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll" -30511000036101,"MSUD Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725111000168107,"MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches" -78869011000036108,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",898011000168107,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices" -933220851000036101,"ropivacaine hydrochloride monohydrate 100 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004981000168106,"ropivacaine hydrochloride 100 mg/10 mL injection, ampoule" -933220821000036107,"Naropin 1% (200 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005041000168101,"Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule" -81042011000036100,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863991000168109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags" -87655011000036103,"Narium 0.65% nasal spray, 30 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085311000168102,"Narium 0.65% nasal spray, 30 mL, pump pack" -23539011000036108,"albendazole 400 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844061000168105,"albendazole 400 mg tablet" -60626011000036103,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721911000168106,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL, bottle" -75341011000036107,"Q fever inactivated vaccine 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821581000168106,"Q fever vaccine injection, 0.5 mL syringe" -74892011000036101,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831911000168107,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -176251000168104,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725071000168100,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 125 mL pouch" -924882011000036109,"Pemzo 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",716351000168105,"Pemzo 20 mg enteric capsule, 15" -76152011000036105,"Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 mL vial",900000000000526001,"REPLACED BY association reference set",695061000168109,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 mL vial" -56764011000036101,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844151000168107,"Combantrin-1 with Mebendazole 100 mg tablet, 6" -776521000168103,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996141000168100,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24, blister pack" -65657011000036105,"Aqium 66% gel",900000000000526001,"REPLACED BY association reference set",730441000168107,"Aqium 66% gel" -114581000036103,"citric acid 12 g + magnesium oxide 3.5 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 2 x 16.1 g sachets",900000000000526001,"REPLACED BY association reference set",902101000168101,"sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 2 x 16.1 g sachets" -933226001000036105,"sumatriptan 20 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728171000168109,"sumatriptan 20 mg/actuation nasal spray, 2 x 1 actuation" -21283011000036100,"fluticasone",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",860171000168103,"fluticasone furoate" -69540011000036109,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995411000168103,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2, blister pack" -114571000036100,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets",900000000000526001,"REPLACED BY association reference set",902111000168103,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets" -665001000168105,"Codeine Phosphate (Aspen) 30 mg uncoated tablet",900000000000526001,"REPLACED BY association reference set",834701000168108,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet" -33608011000036100,"Femizol Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715531000168103,"Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube" -50530011000036105,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725191000168103,"PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets" -83607011000036109,"Wagner Magnesium Forte 400 capsules: hard",900000000000526001,"REPLACED BY association reference set",750211000168108,"Magnesium Forte 400 (Wagner) hard capsule" -933203381000036103,"Levetiracetam (SCP) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003681000168102,"Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60" -82130011000036107,"Codalgin uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",836101000168101,"Codalgin uncoated tablet, 20" -77187011000036100,"Flo Nozoil 1 mL/mL nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085431000168101,"Flo Nozoil 0.1% nasal spray, 15 mL, pump pack" -27829011000036103,"etoposide 1 g injection, 1 vial",900000000000526001,"REPLACED BY association reference set",793601000168106,"etoposide phosphate 1.136 g (etoposide 1 g) injection, 1 vial" -260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724351000168105,"PKU Lophlex LQ 20 Citrus oral liquid solution, 125 mL pouch" -921010011000036104,"Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",696351000168101,"Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 50 mL bottle" -71956011000036108,"methylated spirit industrial 66% gel, 70 mL",900000000000526001,"REPLACED BY association reference set",730451000168109,"ethanol 66% gel, 70 mL" -75012011000036107,"rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection, vial",900000000000526001,"REPLACED BY association reference set",826311000168102,"rubella live vaccine injection, vial" -70133011000036108,"benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture",900000000000526001,"REPLACED BY association reference set",688391000168109,"benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture" -61119011000036107,"Difflam Lozenge orange sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995811000168100,"Difflam Lozenge Orange Sugar Free lozenge, 16, blister pack" -22742011000036105,"etoposide 100 mg injection, vial",900000000000526001,"REPLACED BY association reference set",793401000168109,"etoposide phosphate 113.6 mg (etoposide 100 mg) injection, vial" -73135011000036105,"Creon 40 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847341000168103,"Creon 40 000 enteric capsule, 100" -86871011000036109,"Calcia-1000 1 g (calcium 1 g) chewable tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",859951000168105,"Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30, bottle" -41461011000036101,"Eleuphrat 0.05% lotion, 30 mL",900000000000526001,"REPLACED BY association reference set",1054611000168104,"Eleuphrat 0.05% lotion, 30 mL" -73379011000036102,"pancreatic extract 40 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847311000168102,"lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule" -923731011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",717181000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 28, blister pack" -696511000168107,"meningococcal group B outer membrane vesicles",900000000000526001,"REPLACED BY association reference set",822441000168106,"Neisseria meningitidis group B outer membrane vesicles" -75039011000036109,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",828241000168108,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial" -76038011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream",900000000000526001,"REPLACED BY association reference set",705831000168103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream" -21723011000036100,"calcium citrate",900000000000526001,"REPLACED BY association reference set",745551000168101,"calcium" -81617011000036103,"glucose 5% (12.5 g/250 mL) injection, 30 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863741000168104,"glucose monohydrate 5% (12.5 g/250 mL) injection, 30 x 250 mL bags" -86617011000036101,"Orabase Protective Paste oromucosal paste",900000000000526001,"REPLACED BY association reference set",797581000168108,"Orabase Protective paste" -69332011000036106,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 25 mL, bottle",900000000000526001,"REPLACED BY association reference set",688451000168105,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL, bottle" -44101011000036105,"Zovirax 200 mg dispersible tablet, 90, bottle",900000000000526001,"REPLACED BY association reference set",859461000168103,"Zovirax Dispersible 200 mg tablet, 90, bottle" -26848011000036107,"clonazepam 2.5 mg/mL oral liquid, 10 mL",900000000000526001,"REPLACED BY association reference set",729111000168105,"clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid, 10 mL" -35702011000036103,"carbomer-974 0.3% eye gel, unit dose",900000000000526001,"REPLACED BY association reference set",718711000168106,"carbomer-974P 0.3% eye gel, unit dose" -56707011000036108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24",900000000000526001,"REPLACED BY association reference set",996291000168100,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24" -82431011000036104,"calcium chloride dihydrate + glucose + lactate + magnesium chloride + potassium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",861211000168106,"calcium chloride dihydrate + glucose + magnesium chloride + potassium chloride + sodium chloride + sodium lactate" -26802011000036100,"diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837281000168100,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe" -60748011000036108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",996281000168103,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2, blister pack" -74881011000036108,"Tripacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837611000168109,"Tripacel injection suspension, 5 x 0.5 mL vials" -145331000036104,"dimethyl fumarate 240 mg capsule: modified release, 56",900000000000526001,"REPLACED BY association reference set",756371000168106,"dimethyl fumarate 240 mg enteric capsule, 56" -40721000036101,"Remeron 45 mg tablet: orally disintegrating",900000000000526001,"REPLACED BY association reference set",783871000168103,"Remeron Soltab 45 mg orally disintegrating tablet" -681131000168101,"Cal-600 plus D tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862151000168108,"Cal-600 plus D film-coated tablet, 60" -74953011000036108,"human papillomavirus (type 16) vaccine + human papillomavirus (type 18) vaccine",900000000000526001,"REPLACED BY association reference set",823121000168104,"human papillomavirus bivalent vaccine" -74839011000036103,"Drixine Adult 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083681000168101,"Drixine Adult 0.05% nasal spray, 15 mL, pump pack" -873181000168101,"morphine sulfate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",22423011000036106,"morphine sulfate pentahydrate 30 mg tablet" -72591000036108,"mesalazine 500 mg granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084071000168108,"mesalazine 500 mg modified release granules, 100 sachets" -71361000036103,"Byetta 5 microgram/0.02 mL injection: solution, 60 x 0.02 mL unit doses",900000000000526001,"REPLACED BY association reference set",726781000168109,"Byetta 5 microgram/dose injection solution, 60 doses" -921576011000036107,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",832021000168105,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack" -57065011000036104,"Difflam Lozenge orange sugar free lozenge, 8",900000000000526001,"REPLACED BY association reference set",995861000168102,"Difflam Lozenge Orange Sugar Free lozenge, 8" -925343011000036103,"Omepro 20 mg capsule, 90, bottle",900000000000526001,"REPLACED BY association reference set",716991000168104,"Omepro 20 mg enteric capsule, 90, bottle" -81289011000036109,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868041000168109,"glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag" -12182011000036107,"Kenacomb Otic ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758291000168101,"Kenacomb Otic ear ointment, 5 g" -74725011000036104,"Gardasil injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823051000168108,"Gardasil injection suspension, 0.5 mL syringe" -86757011000036101,"Calcia-1000 1 g (calcium 1 g) chewable tablet, 30",900000000000526001,"REPLACED BY association reference set",859941000168108,"Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30" -50480011000036107,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724121000168104,"HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches" -44483011000036109,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",729151000168106,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack" -69624011000036105,"Aqium 66% gel, 1 L, bottle",900000000000526001,"REPLACED BY association reference set",730561000168107,"Aqium 66% gel, 1 L, bottle" -56722011000036104,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995661000168103,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2" -5044011000036103,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041121000168101,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device" -260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724591000168108,"PKU Lophlex LQ 20 Berry oral liquid solution, 125 mL pouch" -69911000036106,"Byetta 10 microgram/0.04 mL injection: solution, 0.04 mL unit dose",900000000000526001,"REPLACED BY association reference set",726811000168106,"Byetta 10 microgram/dose injection solution, dose" -74268011000036108,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",836771000168107,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes" -920359011000036107,"Ostelin Vitamin D and Calcium tablet: film-coated, 130",900000000000526001,"REPLACED BY association reference set",862261000168104,"Ostelin Vitamin D and Calcium film-coated tablet, 130" -33548011000036100,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715331000168108,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g, tube" -84420011000036103,"picosulfate + magnesium + citric acid",900000000000526001,"REPLACED BY association reference set",870871000168104,"picosulfate + magnesium carbonate + citric acid" -5176011000036103,"Canesten Clotrimazole Thrush Treatment 6 Day 1% cream",900000000000526001,"REPLACED BY association reference set",715061000168102,"Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream" -75503011000036100,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837651000168105,"diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe" -61852011000036100,"benzocaine 1 mg + cetylpyridinium chloride monohydrate 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge",900000000000526001,"REPLACED BY association reference set",995241000168100,"benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge" -49021000036107,"Valvala 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1009741000168100,"Valvala-1000 1 g film-coated tablet" -41469011000036102,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",835521000168108,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL" -86916011000036100,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% nasal drops, 1.8 g sachet",900000000000526001,"REPLACED BY association reference set",758671000168100,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 1.8 g sachet" -6095011000036107,"Otocomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758391000168106,"Otocomb Otic ear drops solution" -74980011000036109,"hepatitis A inactivated vaccine + hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",824501000168100,"hepatitis A + hepatitis B vaccine" -71952011000036109,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995181000168103,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 16" -31512011000036100,"magnesium carbonate heavy",900000000000527005,"SAME AS association reference set",828021000168105,"magnesium carbonate hydrate" -74752011000036106,"Polio Sabin Multidose oral liquid: solution, 100 vials",900000000000526001,"REPLACED BY association reference set",839831000168107,"Polio Sabin Multidose oral liquid solution, 100 vials" -33645011000036104,"paper wasp venom",900000000000526001,"REPLACED BY association reference set",758871000168101,"paper wasp venom" -815231000168104,"Entrip 50 mg tablet, 1000",900000000000526001,"REPLACED BY association reference set",856841000168107,"Entrip 50 mg film-coated tablet, 1000" -81295011000036106,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868281000168105,"glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag" -61226011000036109,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715641000168108,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g, tube" -76140011000036109,"X-Evess 200 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",702371000168103,"X-Evess Part-2 200 mg/mL oral liquid solution" -815201000168106,"Entrip 50 mg tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",856811000168108,"Entrip 50 mg film-coated tablet, 50, blister pack" -85055011000036107,"Strepsils lozenge, 10, tube",900000000000526001,"REPLACED BY association reference set",721951000168107,"Strepsils Cool lozenge, 10, tube" -933215431000036108,"Acris Combi (1 x 35 mg tablet, 6 x 500 mg tablets), 1 pack, blister pack",900000000000526001,"REPLACED BY association reference set",852591000168103,"Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7, blister pack" -815161000168101,"Entrip 50 mg tablet",900000000000526001,"REPLACED BY association reference set",856771000168108,"Entrip 50 mg film-coated tablet" -85780011000036109,"Fleet Phospho-Soda oral liquid solution, 45 mL",900000000000526001,"REPLACED BY association reference set",1097811000168102,"Fleet Phospho-Soda oral liquid solution, 45 mL" -74891011000036107,"Comvax injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832351000168100,"Comvax injection suspension, 10 x 0.5 mL vials" -82192011000036104,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 240",900000000000526001,"REPLACED BY association reference set",860571000168107,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240" -49434011000036103,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694421000168105,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll" -108851000036101,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902171000168106,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid [2 sachets] (&) ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid [2 sachets], 4 sachets" -30541000036100,"Voltaren Osteo 1% gel, 150 g, tube",900000000000526001,"REPLACED BY association reference set",1037151000168104,"Voltaren Osteo 1.16% gel, 150 g, tube" -46411011000036102,"aciclovir 400 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",795891000168102,"aciclovir 400 mg tablet, 100" -73668011000036108,"typhoid fever live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",826231000168100,"Salmonella typhi live antigen" -815151000168103,"Entrip 25 mg tablet, 1000, blister pack",900000000000526001,"REPLACED BY association reference set",856761000168102,"Entrip 25 mg film-coated tablet, 1000, blister pack" -82454011000036102,"potassium nitrate 25% + silver nitrate 75% stick",900000000000526001,"REPLACED BY association reference set",722881000168101,"silver nitrate 75% + potassium nitrate 25% stick" -74407011000036107,"Boostrix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837691000168100,"Boostrix injection suspension, 10 x 0.5 mL syringes" -17935011000036109,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041151000168109,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device" -86135011000036102,"Movicol Junior solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674191000168109,"Movicol Junior powder for oral liquid, 30 sachets" -927893011000036107,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705391000168105,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream" -844471000168108,"Zovirax 200 mg tablet, 25, blister pack",900000000000526001,"REPLACED BY association reference set",859591000168109,"Zovirax Dispersible 200 mg tablet, 25, blister pack" -66973011000036101,"Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",701561000168107,"Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules" -933220981000036100,"Fluoride Moose Mallow (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932541000168104,"Fluoride (Laclede) Moose Mallow Flavour foam" -663081000168103,"magnesium carbonate light",900000000000527005,"SAME AS association reference set",828021000168105,"magnesium carbonate hydrate" -74835011000036100,"Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083641000168106,"Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL, pump pack" -134281000036105,"Imojev (Japanese encephalitis virus live vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",821511000168100,"Imojev (Japanese encephalitis live vaccine) powder for injection, vial" -14611000036102,"Clinoleic 20% injection: emulsion, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",771971000168104,"Clinoleic 20% injection emulsion, 20 x 250 mL bags" -75029011000036107,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822961000168101,"human papillomavirus quadrivalent vaccine injection, 0.5 mL vial" -728791000168106,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006181000168100,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -22825011000036103,"fluoxetine 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844301000168106,"fluoxetine 20 mg tablet" -75051011000036109,"Japanese encephalitis inactivated vaccine 6 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",822611000168109,"Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe" -45141011000036108,"aciclovir 400 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",795841000168105,"aciclovir 400 mg tablet" -158351000036100,"Oxycontin Reformulation 30 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",65415011000036105,"Oxycontin 30 mg modified release tablet" -145291000036107,"dimethyl fumarate 120 mg capsule: modified release, 112",900000000000526001,"REPLACED BY association reference set",756271000168103,"dimethyl fumarate 120 mg enteric capsule, 112" -20244011000036102,"Lomotil uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",851131000168101,"Lomotil uncoated tablet, 20, blister pack" -54049011000036104,"Difflam Lozenge eucalyptus and menthol sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995621000168108,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge" -925332011000036106,"Omepro 20 mg capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",718021000168101,"Omepro 20 mg enteric capsule, 100, bottle" -88221000036103,"Femcream (Pharmacy Action) 1% cream",900000000000526001,"REPLACED BY association reference set",715481000168101,"Femcream (Pharmacy Action) 1% vaginal cream" -74945011000036106,"Boostrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840741000168101,"Boostrix-IPV injection suspension, 0.5 mL syringe" -44078011000036100,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693311000168109,"Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules" -34800011000036107,"Subutex 400 microgram tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",685861000168102,"Subutex 400 microgram sublingual tablet, 28, blister pack" -46169011000036103,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 20 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013411000168108,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 20 x 500 mL bags" -135261000036104,"Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746951000168101,"Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule" -728781000168108,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006171000168103,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -80644011000036106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",868181000168103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags" -922106011000036105,"diatrizoate meglumine 79.2 g/120 mL + diatrizoate sodium 12 g/120 mL solution, bottle",900000000000526001,"REPLACED BY association reference set",696051000168103,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution" -21677011000036103,"pneumococcal purified capsular polysaccharides",900000000000526001,"REPLACED BY association reference set",838041000168102,"pneumococcal 23 valent vaccine" -74931011000036108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846001000168104,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -1021141000168105,"Salofalk 500 mg granules, 300 sachets",900000000000526001,"REPLACED BY association reference set",1084111000168101,"Salofalk 500 mg modified release granules, 300 sachets" -728771000168105,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006161000168109,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 20 mL ampoule" -930593011000036104,"Dermasoothe Antiseptic cream, 50 g",900000000000526001,"REPLACED BY association reference set",861341000168104,"Dermasoothe Antiseptic cream, 50 g" -703661000168109,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826951000168102,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -32330011000036107,"Reandron oily solution 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720571000168103,"Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule" -930882011000036106,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872821000168104,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle" -74250011000036104,"Gardasil injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823101000168108,"Gardasil injection suspension, 10 x 0.5 mL syringes" -925148011000036102,"Omepro 20 mg capsule, 140, blister pack",900000000000526001,"REPLACED BY association reference set",716441000168101,"Omepro 20 mg enteric capsule, 140, blister pack" -77602011000036104,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet",900000000000526001,"REPLACED BY association reference set",833021000168103,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet" -81610011000036104,"glucose 5% (2.5 g/50 mL) injection, 65 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864381000168107,"glucose monohydrate 5% (2.5 g/50 mL) injection, 65 x 50 mL bags" -69626011000036102,"Aqium 66% gel, 70 mL, bottle",900000000000526001,"REPLACED BY association reference set",730471000168100,"Aqium 66% gel, 70 mL, bottle" -43591011000036102,"Keppra 1 g tablet: film-coated, 10, blister pack",900000000000526001,"REPLACED BY association reference set",721001000168107,"Keppra-1000 1 g film-coated tablet, 10, blister pack" -716071000168104,"meningococcal group A conjugate vaccine 10 microgram injection [1 vial] (&) meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",826781000168107,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack" -708501000168101,"Otocomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758391000168106,"Otocomb Otic ear drops solution" -20088011000036105,"Implanon 68 mg implant, 1, blister pack",900000000000526001,"REPLACED BY association reference set",732381000168109,"Implanon 68 mg implant, 1, applicator" -74282011000036107,"Twinrix injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",824591000168106,"Twinrix injection suspension, 10 x 1 mL syringes" -702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726161000168104,"PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets" -252871000168107,"PKU Cooler20 Orange oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725781000168100,"PKU Cooler 20 Orange oral liquid solution, 174 mL pouch" -928904011000036109,"Oxynorm 50 mg/mL intravenous infusion injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",1055151000168109,"Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules" -702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726231000168102,"PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets" -716061000168105,"MenCWY injection: solution, vial",900000000000526001,"REPLACED BY association reference set",826771000168109,"MenCWY injection solution, vial" -924137011000036109,"omeprazole 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",716311000168109,"omeprazole 20 mg enteric capsule, 140" -929207011000036102,"salicylic acid 2% (20 mg/g) + aqueous cream 980 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705401000168107,"salicylic acid 2% + aqueous cream, 100 g" -6260011000036105,"Prozac 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844311000168109,"Prozac 20 mg tablet" -702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726121000168109,"PKU Anamix Junior Chocolate powder for oral liquid, 36 g sachet" -137921000036107,"Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005931000168109,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag" -141531000036106,"Somatuline Autogel 90 mg injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",819521000168101,"Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe" -929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724281000168107,"PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches" -52412011000036104,"Cal-600 600 mg (calcium 600 g) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",860251000168100,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet" -933213931000036100,"Levetiracetam (SCP) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003691000168104,"Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60, blister pack" -81297011000036101,"sodium chloride 117 mg + potassium chloride 186 mg + glucose monohydrate 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet",900000000000526001,"REPLACED BY association reference set",871541000168102,"sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet" -85170011000036107,"tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694251000168103,"tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll" -716131000168101,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826721000168108,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack" -180131000036100,"Bonecal 500 mg tablet: film-coated, 24",900000000000526001,"REPLACED BY association reference set",848471000168104,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24" -71546011000036103,"magnesium sulfate heptahydrate 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",701551000168105,"magnesium sulfate heptahydrate 2.47 g/5 mL injection, 10 x 5 mL ampoules" -923898011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",717081000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 100, bottle" -82112011000036103,"MSUD Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724951000168109,"MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles" -78216011000036107,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872941000168101,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles" -83297011000036109,"Prozero oral liquid: solution, 18 x 250 mL cans",900000000000526001,"REPLACED BY association reference set",745351000168108,"Prozero oral liquid solution, 18 x 250 mL cartons" -41564011000036107,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693251000168100,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules" -716141000168105,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826731000168106,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack" -42691000036105,"MMA/PA Cooler 15 oral liquid: solution, 30 x 130 mL sachets",900000000000526001,"REPLACED BY association reference set",725261000168104,"MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches" -119691000036104,"Canesten Plus cream",900000000000526001,"REPLACED BY association reference set",715871000168102,"Canesten Plus cream" -683311000168108,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083001000168101,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack" -39792011000036105,"Keppra 500 mg/5 mL injection: concentrated, 5 mL vial",900000000000526001,"REPLACED BY association reference set",703081000168108,"Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial" -70232011000036103,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge",900000000000526001,"REPLACED BY association reference set",995341000168106,"cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge" -375541000168103,"TYR Cooler 10 oral liquid: solution, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725851000168102,"TYR Cooler 10 oral liquid solution, 87 mL pouch" -702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726101000168100,"PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets" -932851011000036104,"Lasix High Dose 20 mg/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",704831000168104,"Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules" -20953011000036100,"Dolaforte tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835761000168105,"Dolaforte tablet, 20, blister pack" -53627011000036100,"Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream",900000000000526001,"REPLACED BY association reference set",715401000168109,"Clotrimazole (Your Pharmacy) 2% vaginal cream" -86616011000036104,"Emulsifying Ointment (David Craig) ointment",900000000000526001,"REPLACED BY association reference set",770821000168102,"Emulsifying Ointment BP (David Craig) ointment" -70001000036108,"Artelac 0.2% / 1% eye gel, 600 mg unit dose",900000000000526001,"REPLACED BY association reference set",719601000168108,"Artelac 0.2% / 1% eye gel, 600 mg unit dose" -844411000168100,"Zovirax 200 mg tablet",900000000000526001,"REPLACED BY association reference set",859181000168101,"Zovirax Dispersible 200 mg tablet" -728811000168105,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006141000168105,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -933236401000036100,"Omeprazole (Apo) 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",717541000168102,"Omeprazole (Apo) 20 mg enteric capsule, 30" -646241000168104,"Biostate 1000 IU FVIII/2000 IU VWF (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",921971000168108,"Biostate (inert substance) diluent, 10 mL vial" -922897011000036101,"smallpox live vaccine",900000000000526001,"REPLACED BY association reference set",821261000168104,"vaccinia virus live antigen" -81694011000036105,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867901000168109,"glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag" -77136011000036107,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724311000168109,"PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles" -78252011000036104,"iopromide 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection, 10 x 30 mL vials",900000000000526001,"REPLACED BY association reference set",695561000168100,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 30 mL vials" -73633011000036108,"human papillomavirus (type 6) vaccine",900000000000526001,"REPLACED BY association reference set",822721000168109,"human papillomavirus type 6 antigen" -702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726111000168102,"PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets" -86870011000036102,"Calcia plus Vitamin D 400 IU chewable tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",860161000168109,"Calcia plus Vitamin D 400 IU chewable tablet, 120, bottle" -108751000036105,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10",900000000000526001,"REPLACED BY association reference set",1056291000168104,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10" -73631011000036107,"hepatitis A inactivated vaccine",900000000000526001,"REPLACED BY association reference set",824441000168104,"hepatitis A virus antigen" -90221000036104,"Femcream (Pharmacy Action) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715491000168103,"Femcream (Pharmacy Action) 1% vaginal cream, 35 g" -74333011000036104,"Co-Phenylcaine Forte nasal spray, 15 mL",900000000000526001,"REPLACED BY association reference set",792031000168102,"Co-Phenylcaine Forte nasal spray, 15 mL" -70015011000036109,"salicylic acid 3% (30 mg/g) + sulfur-precipitated 3% (30 mg/g) + aqueous cream 940 mg/g cream",900000000000526001,"REPLACED BY association reference set",705481000168104,"salicylic acid 3% + precipitated sulfur 3% + aqueous cream" -828031000168108,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845941000168108,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -82329011000036107,"Codalgin uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",836111000168103,"Codalgin uncoated tablet, 20, blister pack" -63723011000036102,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",995731000168103,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 24" -62065011000036102,"benzydamine hydrochloride 0.15% spray",900000000000526001,"REPLACED BY association reference set",721251000168103,"benzydamine hydrochloride 0.15% oral spray" -86633011000036104,"Calcia-1000 1 g (calcium 1 g) chewable tablet",900000000000526001,"REPLACED BY association reference set",859921000168102,"Calcia-1000 2.5 g (calcium 1 g) chewable tablet" -716101000168108,"meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, syringe",900000000000526001,"REPLACED BY association reference set",826691000168104,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, syringe" -697081000168108,"mesalazine 3 g granules, sachet",900000000000526001,"REPLACED BY association reference set",1084301000168101,"mesalazine 3 g modified release granules, sachet" -50510011000036100,"Monogen powder for oral liquid, 400 g, can",900000000000526001,"REPLACED BY association reference set",949701000168103,"Monogen powder for oral liquid, 400 g, can" -65298011000036104,"Ringworm 1% ointment",900000000000526001,"REPLACED BY association reference set",800411000168104,"Ringworm (Amneal) 1% ointment" -922611011000036102,"diatrizoate meglumine 158.4 g/240 mL + diatrizoate sodium 24 g/240 mL solution, 12 x 240 mL each",900000000000526001,"REPLACED BY association reference set",696101000168103,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 2400 mL" -75066011000036107,"hepatitis A inactivated vaccine 50 units/mL injection, vial",900000000000526001,"REPLACED BY association reference set",824901000168108,"hepatitis A adult vaccine 50 units/mL injection, vial" -679571000168100,"Botox 200 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720961000168104,"Botox 200 units powder for injection, 1 vial" -50223011000036106,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694381000168101,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll, carton" -86448011000036106,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium (as carbonate) 500 mg tablet [48], 1 pack",900000000000526001,"REPLACED BY association reference set",848041000168101,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack" -693161000168109,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837391000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial" -693191000168102,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837421000168100,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials" -80421000036104,"aflibercept 2 mg/0.05 mL injection, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703521000168103,"aflibercept 4 mg/0.1 mL injection, 0.1 mL vial" -23167011000036102,"oxycodone hydrochloride 5 mg/5 mL oral liquid",900000000000526001,"REPLACED BY association reference set",815911000168102,"oxycodone hydrochloride 1 mg/mL oral liquid" -86839011000036106,"Flo Sinus Care powder for nasal drops, 12 x 1.8 g sachets",900000000000526001,"REPLACED BY association reference set",758711000168101,"Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets" -55656011000036106,"Cepacol Cough Plus Lemon lozenge, 16",900000000000526001,"REPLACED BY association reference set",995271000168107,"Cepacol Cough Plus Lemon lozenge, 16" -137911000036100,"Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005841000168109,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule" -708521000168105,"Otocomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758411000168106,"Otocomb Otic ear drops solution, 7.5 mL, bottle" -663151000168109,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",900000000000526001,"REPLACED BY association reference set",833581000168108,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle" -76809011000036100,"Centrum tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",833111000168109,"Centrum film-coated tablet, 30" -77460011000036102,"psyllium dried + senna dried",900000000000526001,"REPLACED BY association reference set",832421000168103,"dry psyllium seed + dry Tinnevelly senna fruit" -663111000168108,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",833541000168103,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid" -77170011000036107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, jar",900000000000526001,"REPLACED BY association reference set",705901000168100,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, jar" -25721000168103,"Fluoride Tyranna Grape (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)" -27600011000036107,"pancreatic extract 25 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847391000168106,"lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule, 100" -82924011000036101,"pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827591000168101,"pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe" -693151000168107,"diphtheria toxoid 2 Lf/0.5 mL + tetanus toxoid 2 Lf/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837381000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 0.5 mL vial" -37412011000036105,"Codral Forte uncoated tablet, 20, strip pack",900000000000526001,"REPLACED BY association reference set",834571000168108,"Codral Forte uncoated tablet, 20, strip pack" -679591000168104,"Botox 200 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720971000168105,"Botox 200 units powder for injection, 1 vial" -12634011000036109,"Zovirax 200 mg dispersible tablet, 25",900000000000526001,"REPLACED BY association reference set",859191000168103,"Zovirax Dispersible 200 mg tablet, 25" -74721011000036101,"Gardasil injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",823001000168109,"Gardasil injection suspension, 0.5 mL vial" -36820011000036107,"Colistin (Link) 150 mg powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",817491000168109,"Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial" -410821000168102,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 130 mL sachet",900000000000526001,"REPLACED BY association reference set",725231000168107,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 130 mL pouch" -75399011000036102,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, 10 packs",900000000000526001,"REPLACED BY association reference set",840991000168106,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack" -827921000168108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845981000168103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -827891000168103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845961000168107,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726181000168108,"PKU Anamix Junior Neutral powder for oral liquid, 36 g sachet" -683331000168103,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083011000168103,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack" -35716011000036101,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 23.3 mg (0.32 mmol potassium) + sodium bicarbonate 89.25 mg solution, 1 sachet",900000000000526001,"REPLACED BY association reference set",674101000168103,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 1 sachet" -66861000036109,"glycerophosphoric acid + liver extract + thiamine",900000000000526001,"REPLACED BY association reference set",688101000168101,"iron + calcium + potassium + sodium + manganese + thiamine + bovine liver" -989781000168104,"Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1087151000168108,"Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL, pump pack" -931676011000036101,"Actonel EC Combi (4 x Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack",900000000000526001,"REPLACED BY association reference set",852721000168108,"Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack" -71721000036108,"Risedronate Sodium EC Combi D (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium carbonate / colecalciferol sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810601000168102,"Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack" -921948011000036101,"Gastrolyte Citrus effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871591000168105,"Gastrolyte Citrus effervescent tablet, 20, tube" -12764011000036107,"Anzemet 100 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",703371000168108,"Anzemet 100 mg/5 mL injection solution, 5 mL ampoule" -702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726221000168100,"PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets" -663141000168107,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",900000000000526001,"REPLACED BY association reference set",833571000168105,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL" -121811000036101,"clotrimazole + hydrocortisone acetate",900000000000526001,"REPLACED BY association reference set",37751011000036102,"hydrocortisone + clotrimazole" -57058011000036104,"Difflam Lozenge honey and lemon sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995691000168105,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16" -76117011000036104,"Agiolax granules",900000000000526001,"REPLACED BY association reference set",832441000168109,"Agiolax granules" -41730011000036109,"Imigran S 10 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728151000168100,"Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation" -716111000168106,"MenCWY injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",826701000168104,"MenCWY injection solution, syringe" -924886011000036108,"Pemzo 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",716811000168102,"Pemzo 20 mg enteric capsule, 50" -140771000036105,"Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005921000168106,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -65831000036105,"Hepasol oral liquid: solution, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",688151000168102,"Hepasol oral liquid solution, 200 mL, bottle" -71954011000036100,"methylated spirit industrial 66% gel, 1 L",900000000000526001,"REPLACED BY association reference set",730541000168108,"ethanol 66% gel, 1 L" -244931000168105,"PKU Cooler10 Orange oral liquid: solution, 87 mL can",900000000000526001,"REPLACED BY association reference set",725531000168105,"PKU Cooler 10 Orange oral liquid solution, 87 mL pouch" -176821000036101,"Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, 60 actuations, metered dose aerosol can",900000000000526001,"REPLACED BY association reference set",701521000168102,"Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations, cartridge" -77408011000036104,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",861781000168108,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100, bottle" -36071011000036100,"Colistin (Link) 150 mg powder for injection, 150 mg vial",900000000000526001,"REPLACED BY association reference set",817471000168108,"Colistin (Link) 150 mg (4.5 million units) powder for injection, 150 mg vial" -81989011000036108,"Silver Nitrate Applicator (Medical and Surgical Requisites)",900000000000526001,"REPLACED BY association reference set",729251000168104,"Silver Nitrate Applicator (Grafco)" -182101000036106,"Go Kit powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",830951000168102,"Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet" -75366011000036108,"rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822481000168101,"rotavirus pentavalent live vaccine oral liquid, 2 mL tube" -18871011000036107,"Kenacomb Otic ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758301000168100,"Kenacomb Otic ear ointment, 5 g, tube" -22711011000036109,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment",900000000000526001,"REPLACED BY association reference set",758211000168105,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment" -691971000168101,"Calcium (Sandoz) 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",847881000168103,"Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet" -60726011000036107,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721531000168107,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL, bottle" -26746011000036105,"darbepoetin alfa 60 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041131000168103,"darbepoetin alfa 60 microgram/0.3 mL injection, 0.3 mL injection device" -827871000168104,"Neisseria meningitidis group C polysaccharide antigen",900000000000526001,"REPLACED BY association reference set",826391000168106,"meningococcal C conjugate vaccine" -702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726171000168105,"PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets" -716121000168104,"meningococcal group A conjugate vaccine 10 microgram injection [1 vial] (&) meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",826711000168101,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack" -76154011000036101,"Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 30 mL vial",900000000000526001,"REPLACED BY association reference set",695551000168102,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 30 mL vial" -1085531000168102,"Fluzone High-Dose injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122701000168106,"Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes" -173211000036102,"Molaxole solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674201000168107,"Molaxole powder for oral liquid, sachet" -39988011000036102,"Eleuphrat 0.05% lotion",900000000000526001,"REPLACED BY association reference set",1054591000168109,"Eleuphrat 0.05% lotion" -81285011000036107,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867721000168102,"glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag" -73341011000036102,"Creon 40 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847351000168101,"Creon 40 000 enteric capsule, 100, bottle" -85053011000036106,"Strepsils lozenge, 36, blister pack",900000000000526001,"REPLACED BY association reference set",720331000168106,"Strepsils Cool lozenge, 36, blister pack" -84618011000036105,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",750281000168102,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 50" -86198011000036100,"calcium chloride dihydrate + icodextrin + lactate + magnesium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",861151000168100,"icodextrin + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826051000168103,"Streptococcus pneumoniae type 14 conjugate antigen" -923907011000036104,"Omeprazole (Pharmacor) 20 mg capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",717391000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 60, bottle" -74728011000036105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825551000168102,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials" -711661000168105,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005481000168101,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 10 mL ampoule" -711801000168105,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005591000168104,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags" -925139011000036109,"Omepro 20 mg capsule, 15, blister pack",900000000000526001,"REPLACED BY association reference set",716471000168108,"Omepro 20 mg enteric capsule, 15, blister pack" -131391000036100,"Perjeta 420 mg/14 mL injection solution, 14 mL vial",900000000000526001,"REPLACED BY association reference set",1085751000168100,"Perjeta 420 mg/14 mL concentrated injection, 14 mL vial" -73628011000036101,"diphtheria toxoid vaccine",900000000000526001,"REPLACED BY association reference set",2031011000036104,"diphtheria toxoid" -61067011000036108,"Canesten Clotrimazole Thrush Treatment Once 10% cream, 5 g, tube",900000000000526001,"REPLACED BY association reference set",715611000168109,"Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g, tube" -921432011000036101,"Centrum Select 50 Plus tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",843241000168104,"Centrum Select 50 Plus film-coated tablet, 30" -930869011000036104,"Elevit with Iodine tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",843191000168104,"Elevit with Iodine film-coated tablet, 30" -26978011000036103,"atropine sulfate 1% eye drops, 15 mL",900000000000526001,"REPLACED BY association reference set",850961000168101,"atropine sulfate monohydrate 1% eye drops, 15 mL" -933230531000036105,"Levitaccord 1000 mg 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003811000168109,"Levitaccord-1000 1 g film-coated tablet, 60, blister pack" -31561000036108,"typhoid fever polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827091000168106,"typhoid inactivated vaccine" -157051000036104,"tenofovir + emtricitabine + elvitegravir + cobicistat",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",851371000168101,"tenofovir disoproxil + emtricitabine + elvitegravir + cobicistat" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826031000168109,"Streptococcus pneumoniae type 19F conjugate antigen" -76193011000036109,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",861941000168100,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet" -59685011000036100,"Anti Fungal V 6 Day (Amcal) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",714991000168109,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g, tube" -929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724371000168101,"PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches" -68941011000036107,"Cepacol 0.05% mouthwash, 150 mL, bottle",900000000000526001,"REPLACED BY association reference set",994991000168101,"Cepacol 0.05% mouthwash, 150 mL, bottle" -140811000036105,"Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006211000168101,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -59730011000036105,"Clotrimazole 6 Day (Guardian) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715251000168107,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g, tube" -50932011000036102,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689241000168103,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape" -90401000036108,"Prostin E2 400 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005351000168102,"Prostin E2 1 mg/3 g vaginal gel, 3 g syringe" -925168011000036106,"Pemzo 20 mg capsule, 56, blister pack",900000000000526001,"REPLACED BY association reference set",716941000168107,"Pemzo 20 mg enteric capsule, 56, blister pack" -69801000036100,"Artelac 0.2% / 1% eye gel",900000000000526001,"REPLACED BY association reference set",719551000168106,"Artelac 0.2% / 1% eye gel" -73786011000036103,"Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827511000168105,"Prevenar injection suspension, 0.5 mL syringe" -924208011000036102,"omeprazole 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",716681000168109,"omeprazole 20 mg enteric capsule, 500" -75084011000036101,"Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832281000168103,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial" -87334011000036106,"Levetiracetam (Sandoz) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003631000168103,"Levetiracetam 1000 (Sandoz) 1 g film-coated tablet" -53897011000036100,"Zantac 150 mg/10 mL oral liquid: solution, 10 mL",900000000000526001,"REPLACED BY association reference set",5902011000036108,"Zantac 150 mg/10 mL oral liquid, 10 mL" -74203011000036104,"Azep 140 microgram/actuation nasal spray, 5 mL",900000000000526001,"REPLACED BY association reference set",809551000168107,"Azep 0.1% nasal spray, 5 mL" -74423011000036105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825751000168105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial" -61849011000036107,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",804131000168108,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet" -933231531000036102,"Naropin 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004571000168101,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags" -74431011000036106,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert powder for oral liquid sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",821971000168101,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack" -73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826101000168103,"Streptococcus pneumoniae type 4 conjugate antigen" -69049011000036101,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705701000168103,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g, jar" -712041000168105,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005251000168107,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -925353011000036100,"Pemzo 20 mg capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",717521000168108,"Pemzo 20 mg enteric capsule, 60, bottle" -140781000036107,"Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006001000168109,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules" -84390011000036104,"Glycoprep-C Flavoured powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901151000168105,"Glycoprep-C powder for oral liquid, 210 g sachet" -74347011000036107,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",822581000168102,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack" -921381011000036107,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831931000168102,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack" -140821000036103,"Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006241000168102,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -647701000168106,"Biostate 500 IU FVIII/1000 IU VWF (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",921971000168108,"Biostate (inert substance) diluent, 10 mL vial" -81692011000036101,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867821000168108,"glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag" -669511000168103,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728871000168102,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge" -53988011000036107,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721451000168102,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL" -60496011000036107,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack",900000000000526001,"REPLACED BY association reference set",967681000168101,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack" -4678011000036105,"Cardiprin 100 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",803961000168101,"Cardiprin 100 mg tablet" -929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724611000168103,"PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches" -665551000168104,"PKU Cooler15 Green oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725601000168102,"PKU Cooler 15 Green oral liquid solution, 130 mL pouch" -77142011000036107,"Sorbolene Cream with Glycerin (Orion) cream, 100 g, tube",900000000000526001,"REPLACED BY association reference set",705751000168104,"Sorbolene Cream with Glycerin (Orion) cream, 100 g, tube" -76685011000036107,"Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695621000168109,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles" -933220991000036103,"fluoride 9.99 mg/g + hydrofluoric acid 4.9 mg/g foam",900000000000526001,"REPLACED BY association reference set",932341000168107,"sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam" -711251000168105,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006121000168104,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -921422011000036104,"Calvid granules: effervescent, 30 x 7 g sachets",900000000000526001,"REPLACED BY association reference set",810651000168103,"Calvid effervescent granules, 30 x 7.3 g sachets" -74847011000036109,"Co-Phenylcaine Forte nasal spray, 25 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",792071000168104,"Co-Phenylcaine Forte nasal spray, 25 mL, pump pack" -39041000036100,"Drixine No Drip Formula 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083711000168100,"Drixine No Drip Formula 0.05% nasal spray, 15 mL, pump pack" -77270011000036105,"Agiolax granules, 250 g, jar",900000000000526001,"REPLACED BY association reference set",832471000168102,"Agiolax granules, 250 g, jar" -77548011000036101,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle",900000000000526001,"REPLACED BY association reference set",872921000168107,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle" -81585011000036100,"metoclopramide hydrochloride 5 mg + paracetamol 500 mg capsule, 10",900000000000526001,"REPLACED BY association reference set",867301000168105,"metoclopramide 5 mg + paracetamol 500 mg capsule, 10" -1085511000168107,"Fluzone High-Dose injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122651000168101,"Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes" -61851011000036106,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 10 mg lozenge",900000000000526001,"REPLACED BY association reference set",995421000168105,"cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge" -922030011000036105,"calcium citrate + colecalciferol",900000000000526001,"REPLACED BY association reference set",733951000168109,"calcium + colecalciferol" -54077011000036105,"Difflam Cough Lozenge blackcurrant sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995531000168107,"Difflam Cough Lozenge Blackcurrant Sugar Free lozenge" -75452011000036107,"hepatitis A inactivated vaccine 50 units/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",824921000168104,"hepatitis A adult vaccine 50 units/mL injection, 1 mL vial" -797071000168102,"Levetiracetam (Accord) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003121000168107,"Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60, blister pack" -18053011000036106,"Actonel Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack, blister pack",900000000000526001,"REPLACED BY association reference set",852661000168106,"Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack" -26750011000036109,"darbepoetin alfa 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041311000168106,"darbepoetin alfa 150 microgram/0.3 mL injection, 0.3 mL injection device" -71538011000036103,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",936651000168102,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g" -75376011000036103,"hepatitis B vaccine 10 microgram/0.5 mL injection, 25 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825561000168100,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 25 x 0.5 mL vials" -728241000168105,"aclidinium + formoterol (eformoterol) fumarate dihydrate",900000000000526001,"REPLACED BY association reference set",856861000168106,"aclidinium + formoterol (eformoterol)" -73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826061000168101,"Streptococcus pneumoniae type 9V conjugate antigen" -30701000036107,"Otrivin Plus nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085241000168109,"Otrivin Plus nasal spray, 10 mL, pump pack" -73711000036100,"Salofalk 1.5 g granules, 60 sachets",900000000000526001,"REPLACED BY association reference set",1084261000168109,"Salofalk 1.5 g modified release granules, 60 sachets" -19270011000036108,"Livostin 0.05% nasal spray, 100 actuations, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085251000168106,"Livostin 0.05% nasal spray, 100 actuations, pump pack" -925335011000036103,"Omepro 20 mg capsule, 28, bottle",900000000000526001,"REPLACED BY association reference set",716551000168103,"Omepro 20 mg enteric capsule, 28, bottle" -922076011000036106,"calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet",900000000000526001,"REPLACED BY association reference set",859861000168100,"calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet" -718891000168107,"Infanrix Hexa (10 x 0.5 mL vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",841011000168105,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack" -28109011000036107,"clotrimazole 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",714971000168108,"clotrimazole 1% vaginal cream, 35 g" -73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826041000168100,"Streptococcus pneumoniae type 18C conjugate antigen" -59863011000036105,"Clotrimazole 3 Day (Guardian) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715171000168109,"Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g, tube" -41972011000036102,"Etopophos 500 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793521000168101,"Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial" -926787011000036100,"Medi Creme cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",863521000168102,"Medi Creme cream, 50 g, tube" -19911011000036106,"Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722811000168107,"Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL, injection device" -81609011000036108,"glucose 5% (2.5 g/50 mL) injection, 60 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864351000168100,"glucose monohydrate 5% (2.5 g/50 mL) injection, 60 x 50 mL bags" -77332011000036101,"Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695701000168106,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles" -931708011000036102,"Elevit with Iodine tablet: film-coated, 100, blister pack",900000000000526001,"REPLACED BY association reference set",843311000168106,"Elevit with Iodine film-coated tablet, 100, blister pack" -931864011000036108,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle",900000000000526001,"REPLACED BY association reference set",872841000168105,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle" -80175011000036107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",863841000168105,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag" -244061000168103,"PKU Cooler10 Purple oral liquid: solution, 87 mL can",900000000000526001,"REPLACED BY association reference set",725571000168108,"PKU Cooler 10 Purple oral liquid solution, 87 mL pouch" -14078011000036103,"Prodeine Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835811000168104,"Prodeine Forte uncoated tablet, 20" -74249011000036107,"Gardasil injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823041000168106,"Gardasil injection suspension, 0.5 mL syringe" -73701000036102,"Salofalk 1.5 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084291000168102,"Salofalk 1.5 g modified release granules, 100 sachets" -166201000036103,"Synarel 200 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085291000168101,"Synarel 200 microgram/actuation nasal spray, 60 actuations, pump pack" -73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826021000168106,"Streptococcus pneumoniae type 23F conjugate antigen" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826131000168105,"Streptococcus pneumoniae type 7F conjugate antigen" -923093011000036101,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge",900000000000526001,"REPLACED BY association reference set",995991000168102,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826111000168100,"Streptococcus pneumoniae type 1 conjugate antigen" -924885011000036101,"Pemzo 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",716781000168104,"Pemzo 20 mg enteric capsule, 5" -75043011000036107,"hepatitis A inactivated vaccine 360 ELISA units + hepatitis B vaccine 10 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824511000168102,"hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe" -761891000168103,"Co-Phenylcaine Forte nasal spray, 2.5 mL",900000000000526001,"REPLACED BY association reference set",791941000168104,"Co-Phenylcaine Forte nasal spray, 2.5 mL" -689011000168108,"Priorix-Tetra (measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831191000168101,"Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial" -1085471000168103,"influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1122611000168102,"influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe" -923376011000036100,"Probitor Hp7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack",900000000000526001,"REPLACED BY association reference set",715941000168100,"Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack" -8971000036109,"Zactin 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844391000168100,"Zactin 20 mg tablet, 28" -927574011000036102,"Citrulline",900000000000527005,"SAME AS association reference set",106531000036108,"Citrulline 1000" -77385011000036104,"Centrum tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",833181000168103,"Centrum film-coated tablet, 100, bottle" -2439011000036108,"pancrelipase",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2284011000036101,"lipase" -12181011000036101,"Kenacomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758341000168103,"Kenacomb Otic ear drops solution, 7.5 mL" -80665011000036102,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag",900000000000526001,"REPLACED BY association reference set",872241000168106,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag" -711721000168107,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005511000168108,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 20 mL ampoule" -57063011000036100,"Difflam Lozenge orange sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995821000168107,"Difflam Lozenge Orange Sugar Free lozenge, 2" -963571000168108,"Metformin (Apo)",900000000000527005,"SAME AS association reference set",25891000168106,"Metformin (Apo)" -75363011000036102,"pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827521000168103,"pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826091000168108,"Streptococcus pneumoniae type 5 conjugate antigen" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826071000168107,"Streptococcus pneumoniae type 6B conjugate antigen" -728581000168102,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006061000168105,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -35760011000036103,"carbomer-974 0.3% eye gel, 30 x 500 mg unit doses",900000000000526001,"REPLACED BY association reference set",718731000168101,"carbomer-974P 0.3% eye gel, 30 x 500 mg unit doses" -77492011000036100,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream",900000000000526001,"REPLACED BY association reference set",705711000168100,"glycerol 10% + cetomacrogol aqueous cream" -28201000036100,"Lophlex HCU LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725151000168108,"HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches" -41521000036103,"Glucaid 75 g/300 mL oral liquid: solution, 300 mL bottle",900000000000526001,"REPLACED BY association reference set",692431000168102,"Glucaid 75 g/300 mL oral liquid solution" -380511000168100,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 125 mL can",900000000000526001,"REPLACED BY association reference set",724971000168100,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle" -920824011000036108,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet",900000000000526001,"REPLACED BY association reference set",733961000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet" -689701000168108,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831341000168107,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -34313011000036104,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",835581000168107,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL" -41562011000036103,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693381000168103,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules" -711941000168103,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005281000168100,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -28221000036105,"TYR Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725051000168109,"TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches" -74243011000036109,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825571000168106,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials" -28181000036104,"MSUD Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725101000168109,"MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches" -711131000168109,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006221000168108,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule" -81700011000036107,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",868091000168101,"glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags" -28191000036102,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725091000168104,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 125 mL pouches" -36881011000036109,"Actacode Linctus 5 mg/mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",835551000168100,"Actacode Linctus 5 mg/mL oral liquid solution, 100 mL" -19715011000036100,"Prozac 20 mg dispersible tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",844341000168108,"Prozac 20 mg tablet, 28, blister pack" -18333011000036108,"Cardiprin 100 mg dispersible tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",804041000168103,"Cardiprin 100 mg tablet, 90, blister pack" -70211000036102,"Levetiracetam (Pfizer) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003581000168101,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet" -375251000168103,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725841000168104,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 87 mL pouch" -689001000168105,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",831181000168104,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial" -73651011000036106,"meningococcal group W135 polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827381000168106,"Neisseria meningitidis group W135 polysaccharide antigen" -84384011000036105,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873151000168108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags" -61982011000036101,"lignocaine hydrochloride anhydrous 2.5% + benzalkonium chloride 0.1% spray",900000000000526001,"REPLACED BY association reference set",861631000168104,"lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray" -9101000036109,"Clinoleic 20% injection: emulsion, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",771991000168103,"Clinoleic 20% injection emulsion, 10 x 500 mL bags" -81170011000036106,"Gastrolyte orange powder for oral liquid, 2 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871671000168108,"Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets" -80652011000036100,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868311000168107,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag" -926182011000036108,"Medi Creme cream, 25 g",900000000000526001,"REPLACED BY association reference set",863471000168100,"Medi Creme cream, 25 g" -5837011000036106,"Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU) powder for injection, 81 mg vial",900000000000526001,"REPLACED BY association reference set",1045941000168107,"Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial" -930640011000036105,"Lemsip Max Cold and Flu Direct with Decongestant powder, 10 sachets",900000000000526001,"REPLACED BY association reference set",815891000168104,"Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets" -73630011000036100,"Haemophilus influenzae type b vaccine",900000000000526001,"REPLACED BY association reference set",827671000168103,"Haemophilus influenzae type b conjugate (PRP-OMP) antigen" -84294011000036100,"Clotrimazole 3 Day (Apo) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715761000168104,"Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g, tube" -127551000036107,"adrenaline 500 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726621000168103,"adrenaline (epinephrine) 500 microgram/0.3 mL injection, 1 dose" -80528011000036107,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863811000168106,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags" -728681000168103,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005731000168107,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -86415011000036109,"oestradiol valerate 3 mg tablet [6] (&) dienogest 2 mg + oestradiol valerate 2 mg tablet [15] (&) dienogest 3 mg + oestradiol valerate 2 mg tablet [51] (&) oestradiol valerate 1 mg tablet [6] (&) inert substance tablet [6], 1 pack",900000000000526001,"REPLACED BY association reference set",684281000168109,"estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28" -925165011000036100,"Pemzo 20 mg capsule, 100, blister pack",900000000000526001,"REPLACED BY association reference set",716271000168109,"Pemzo 20 mg enteric capsule, 100, blister pack" -941641000168107,"Metformin (AS) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",949531000168101,"Metformin 1000 (AS) 1 g film-coated tablet, 60, blister pack" -77448011000036109,"alpha tocopherol + ascorbic acid + betacarotene + biotin + calcium hydrogen phosphate dihydrate + chromic chloride + colecalciferol + cupric oxide + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide + manganese sulfate monohydrate + molybdenum + nicotinamide + calcium pantothenate + phytomenadione + potassium chloride + pyridoxine + retinol acetate + riboflavin + selenium + thiamine + zinc oxide",900000000000526001,"REPLACED BY association reference set",833011000168105,"betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium" -49447011000036108,"Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694031000168100,"Leukopor (2474) 5 cm x 5 m tape, 1 roll" -78113011000036104,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 500 g",900000000000526001,"REPLACED BY association reference set",705801000168105,"glycerol 10% + cetomacrogol aqueous cream, 500 g" -95811000036103,"Ostelin Vitamin D and Calcium tablet: film-coated, 250, bottle",900000000000526001,"REPLACED BY association reference set",862301000168107,"Ostelin Vitamin D and Calcium film-coated tablet, 250, bottle" -156071000036107,"romidepsin 10 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",828491000168101,"romidepsin 10 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack" -71327011000036100,"chlorhexidine gluconate 1% lotion, 500 mL",900000000000526001,"REPLACED BY association reference set",766781000168103,"chlorhexidine gluconate 1% + ethanol 70% lotion, 500 mL" -5823011000036104,"Cerumol ear drops",900000000000526001,"REPLACED BY association reference set",854351000168107,"Cerumol ear drops" -76824011000036107,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",861771000168105,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100" -22974011000036109,"paracetamol 500 mg + codeine phosphate 15 mg tablet",900000000000526001,"REPLACED BY association reference set",52803011000036102,"paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet" -920850011000036104,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",733981000168102,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60" -933223871000036104,"Cardiprin 100 mg dispersible tablet, 30",900000000000526001,"REPLACED BY association reference set",803971000168107,"Cardiprin 100 mg tablet, 30" -74111000036104,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL, bottle",900000000000526001,"REPLACED BY association reference set",764281000168100,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL, bottle" -23215011000036106,"lopinavir 80 mg/mL + ritonavir 20 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",689451000168100,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid" -927555011000036101,"meningococcal group A conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824461000168100,"Neisseria meningitidis group A conjugate antigen" -19769011000036104,"Panamax Co uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",836081000168108,"Panamax Co uncoated tablet, 50, blister pack" -933216011000036104,"Recombinate 500 IU (1 x 500 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",710921000168104,"Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack" -4792011000036109,"Lanoxin 50 microgram/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",735011000168106,"Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution" -40086011000036109,"Zovirax 400 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",859531000168105,"Zovirax Dispersible 400 mg tablet" -140421000036101,"Granisetron (Sandoz) 1 mg/mL injection: concentrated, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",747061000168103,"Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials" -712061000168109,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005181000168107,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags" -52239011000036101,"salicylic acid 2% (20 mg/g) + sulfur-precipitated 2% (20 mg/g) cream",900000000000526001,"REPLACED BY association reference set",695811000168101,"salicylic acid 2% + precipitated sulfur 2% + aqueous cream" -698481000168104,"Bexsero injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822841000168109,"Bexsero injection suspension, 10 x 0.5 mL syringes" -180121000036102,"calcium (as carbonate) 500 mg tablet, 24",900000000000526001,"REPLACED BY association reference set",847931000168108,"calcium carbonate 1.25 g (calcium 500 mg) tablet, 24" -75113011000036106,"hepatitis B vaccine 40 microgram/mL injection, vial",900000000000526001,"REPLACED BY association reference set",825671000168105,"hepatitis B dialysis vaccine injection, 1 mL vial" -51403011000036105,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689311000168105,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll" -71381000036108,"Byetta 10 microgram/0.04 mL injection: solution, 60 x 0.04 mL unit doses",900000000000526001,"REPLACED BY association reference set",726831000168101,"Byetta 10 microgram/dose injection solution, 60 doses" -74943011000036105,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert powder for oral liquid sachet), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821931000168104,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack, composite pack" -63254011000036106,"lignocaine hydrochloride anhydrous 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",861371000168106,"lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2" -85372011000036103,"Bonecal 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",848461000168105,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet" -73910011000036109,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825811000168101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial" -924876011000036101,"Omepro 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",716761000168108,"Omepro 20 mg enteric capsule, 56" -90421000036103,"Prostin E2 800 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005401000168109,"Prostin E2 2 mg/3 g vaginal gel, 3 g syringe" -74263011000036103,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",831991000168103,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack" -21913011000036103,"bleomycin sulfate",900000000000526001,"REPLACED BY association reference set",857781000168109,"bleomycin" -65518011000036107,"Metformin Hydrochloride (GA) 1 g tablet",900000000000526001,"REPLACED BY association reference set",949431000168100,"Metformin Hydrochloride 1000 (GA) 1 g tablet" -941601000168105,"Metformin (AS) 1 g film-coated tablet, 10, blister pack",900000000000526001,"REPLACED BY association reference set",949491000168101,"Metformin 1000 (AS) 1 g film-coated tablet, 10, blister pack" -653621000168101,"Retinofluor 500 mg/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721181000168103,"Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials" -63248011000036101,"miconazole 2% oral gel, 30 g",900000000000526001,"REPLACED BY association reference set",820041000168102,"miconazole 2% oral gel, 30 g" -86464011000036109,"monobasic sodium phosphate monohydrate 480 mg/mL + dibasic sodium phosphate heptahydrate 180 mg/mL oral liquid, 45 mL",900000000000526001,"REPLACED BY association reference set",1097801000168100,"monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, 45 mL" -27087011000036102,"codeine phosphate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",834811000168103,"codeine phosphate hemihydrate 30 mg tablet, 20" -22422011000036104,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorbutol 5% + arachis oil 57% ear drops",900000000000526001,"REPLACED BY association reference set",854341000168105,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops" -142401000036107,"Vivotif Oral enteric capsule",900000000000526001,"REPLACED BY association reference set",827251000168109,"Vivotif Oral enteric capsule" -933220541000036102,"Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726511000168109,"Norditropin Flexpro 10 mg/1.5 mL injection solution" -653641000168107,"Retinofluor 1.25 g/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",721201000168102,"Retinofluor 25% 1.25 g/5 mL injection solution, 5 mL vial" -27737011000036105,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",721031000168100,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, 1 vial" -920984011000036105,"Berocca Performance Original effervescent tablet",900000000000526001,"REPLACED BY association reference set",829701000168109,"Berocca Performance Original effervescent tablet" -930879011000036107,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872871000168103,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles" -34801011000036100,"Subutex 2 mg tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",685781000168102,"Subutex 2 mg sublingual tablet, 28, blister pack" -81148011000036109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868271000168107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags" -923051011000036106,"Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891111000168103,"Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial" -69476011000036103,"Panadol Children's 7+ Years 250 mg tablet: soluble, 24, strip pack",900000000000526001,"REPLACED BY association reference set",721621000168108,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24, strip pack" -75343011000036108,"rabies inactivated vaccine 2.5 units injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack",900000000000526001,"REPLACED BY association reference set",821371000168102,"rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack" -74428011000036100,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",826491000168102,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack" -11720011000036109,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041041000168108,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device" -85384011000036103,"Kepcet 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003021000168106,"Kepcet-1000 1 g film-coated tablet" -75020011000036101,"pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",827501000168107,"pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe" -922653011000036106,"iopromide 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695321000168101,"iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle" -933231571000036100,"Naropin 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004971000168108,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -696491000168102,"meningococcal group B factor H binding protein fusion protein",900000000000526001,"REPLACED BY association reference set",822411000168107,"Neisseria meningitidis group B factor H binding protein fusion protein" -86127011000036109,"Levetiracetam (Apo) 1 g tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003241000168109,"Levetiracetam 1000 (Apo) 1 g tablet, 60, blister pack" -900012011000036107,"Voltaren Emulgel 1% gel",900000000000526001,"REPLACED BY association reference set",1036991000168109,"Voltaren Emulgel 1.16% gel" -711601000168109,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005691000168100,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 10 mL ampoule" -67312011000036108,"Cepacol Antibacterial Honey and Lemon lozenge, 16",900000000000526001,"REPLACED BY association reference set",995061000168108,"Cepacol Antibacterial Honey and Lemon lozenge, 16" -920360011000036108,"Ostelin Vitamin D and Calcium tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862311000168105,"Ostelin Vitamin D and Calcium film-coated tablet, 60" -665571000168108,"PKU Cooler15 Green oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725621000168106,"PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches" -20889011000036101,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715361000168100,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g, tube" -55654011000036103,"Cepacaine Oral Solution mouthwash, 200 mL",900000000000526001,"REPLACED BY association reference set",994931000168100,"Cepacaine Oral Solution mouthwash, 200 mL" -86857011000036103,"Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726741000168104,"Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device" -56684011000036106,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721521000168109,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL" -81711011000036103,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868381000168101,"glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags" -81714011000036100,"sodium chloride 117 mg + potassium chloride 186 mg + glucose monohydrate 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871561000168103,"sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20" -706381000168101,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831421000168106,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack" -57367011000036105,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721431000168108,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL" -53714011000036107,"Clotrimazole 6 Day (Guardian) 1% cream",900000000000526001,"REPLACED BY association reference set",715181000168107,"Clotrimazole 6 Day (Guardian) 1% vaginal cream" -696481000168100,"meningococcal group B heparin binding antigen fusion protein",900000000000526001,"REPLACED BY association reference set",822421000168100,"Neisseria meningitidis group B heparin binding antigen fusion protein" -728541000168107,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006021000168100,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -6990011000036109,"Kaletra 400/100 oral liquid: solution",900000000000526001,"REPLACED BY association reference set",689461000168103,"Kaletra oral liquid solution, 5 mL" -653661000168106,"Retinofluor 1.25 g/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721211000168104,"Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials" -73917011000036105,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824661000168103,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe" -57059011000036107,"Difflam Lozenge honey and lemon sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995711000168108,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2" -81286011000036100,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867801000168104,"glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag" -11916011000036105,"ADT Booster injection: suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837351000168102,"ADT Booster injection suspension, 5 x 0.5 mL syringes" -35221011000036108,"buprenorphine 400 microgram tablet, 28",900000000000526001,"REPLACED BY association reference set",685841000168101,"buprenorphine 400 microgram sublingual tablet, 28" -73800011000036100,"Engerix-B Adult 20 microgram/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",825321000168101,"Engerix-B Adult 20 microgram/mL injection suspension, vial" -4670011000036108,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet",900000000000526001,"REPLACED BY association reference set",834781000168100,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet" -17231000168107,"Voluven 6% / 0.9%",900000000000526001,"REPLACED BY association reference set",1013371000168107,"Voluven" -7595011000036105,"Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726441000168107,"Norditropin Nordiflex 15 mg/1.5 mL injection solution" -78647011000036101,"Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704451000168107,"Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial" -933225841000036105,"Naropin 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004511000168109,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -36919011000036101,"Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",775551000168100,"Forthane 1 mL/mL inhalation solution, 100 mL" -50279011000036108,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694011000168105,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll, carton" -79699011000036101,"Creon 25 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847411000168106,"Creon 25 000 enteric capsule, 100, bottle" -728721000168109,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005771000168105,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags" -711901000168100,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005301000168101,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -921495011000036100,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60",900000000000526001,"REPLACED BY association reference set",842811000168107,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60" -143821000036107,"Tecfidera 120 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756231000168101,"Tecfidera 120 mg enteric capsule" -63171000036104,"Hepasol oral liquid: solution, 200 mL",900000000000526001,"REPLACED BY association reference set",688141000168104,"Hepasol oral liquid solution, 200 mL" -80491000036101,"Clopidogrel/Aspirin 75/100 (Apo) tablet, 30",900000000000526001,"REPLACED BY association reference set",923781000168105,"Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30" -85705011000036104,"Levetiracetam (Apo) 1 g tablet, 400",900000000000526001,"REPLACED BY association reference set",1003211000168105,"Levetiracetam 1000 (Apo) 1 g tablet, 400" -73882011000036100,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824861000168102,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe" -19070011000036104,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",834831000168108,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20, blister pack" -142511000036108,"typhoid fever live attenuated oral vaccine enteric capsule, 3",900000000000526001,"REPLACED BY association reference set",827261000168106,"typhoid live vaccine enteric capsule, 3" -81152011000036108,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868491000168107,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags" -26748011000036109,"darbepoetin alfa 100 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041261000168100,"darbepoetin alfa 100 microgram/0.5 mL injection, 0.5 mL injection device" -76697011000036101,"Compound Benzoin Tincture Friar's Balsam (Orion) solution, 50 mL",900000000000526001,"REPLACED BY association reference set",696431000168101,"Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL (Old Formulation 2010)" -706401000168101,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831381000168102,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack" -71331000036109,"carbomer 0.2% + triglyceride lipids 1% eye gel, 10 g",900000000000526001,"REPLACED BY association reference set",719561000168108,"carbomer-980 0.2% + triglyceride lipids 1% eye gel, 10 g" -711981000168108,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005221000168104,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -74981011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000526001,"REPLACED BY association reference set",827491000168100,"pneumococcal 7 valent conjugate vaccine" -75379011000036107,"hepatitis B vaccine 20 microgram/mL injection, 25 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825251000168104,"hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL syringes" -663791000168103,"light kaolin 200 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",833511000168102,"light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL" -922563011000036109,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",843261000168100,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 60" -41584011000036105,"Zovirax 400 mg dispersible tablet, 70",900000000000526001,"REPLACED BY association reference set",859541000168101,"Zovirax Dispersible 400 mg tablet, 70" -266871000168101,"Citrulline containing 1 g citrulline oral liquid: powder for, 4 g sachet",900000000000527005,"SAME AS association reference set",266091000168108,"Citrulline 1000 containing 1 g citrulline powder for oral liquid, 4 g sachet" -56530011000036101,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 200 mL",900000000000526001,"REPLACED BY association reference set",721781000168102,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL" -74294011000036104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825011000168106,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial" -71411000036105,"mesalazine 1.5 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084271000168103,"mesalazine 1.5 g modified release granules, 100 sachets" -821621000168106,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955091000168108,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial" -53829011000036101,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",861361000168100,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge" -50475011000036105,"MSUD Express Cooler oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725401000168104,"MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches" -87521000036102,"Japanese encephalitis virus live vaccine",900000000000526001,"REPLACED BY association reference set",821481000168107,"Japanese encephalitis virus live antigen" -83592011000036101,"Glycoprep-C Flavoured",900000000000526001,"REPLACED BY association reference set",64996011000036107,"Glycoprep-C" -821641000168100,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955111000168100,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial" -53693011000036104,"Clotrimazole 3 Day (Guardian) 2% cream",900000000000526001,"REPLACED BY association reference set",715151000168100,"Clotrimazole 3 Day (Guardian) 2% vaginal cream" -78257011000036102,"iopromide 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695731000168104,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 100 mL bottles" -6898011000036102,"Oxynorm 5 mg/5 mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",815921000168109,"Oxynorm 1 mg/mL oral liquid solution" -84773011000036102,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694301000168109,"Mepitac (298400) 4 cm x 1.5 m tape" -86139011000036100,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848651000168105,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack" -733441000168101,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 1 dose",900000000000526001,"REPLACED BY association reference set",881171000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose" -74928011000036102,"Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083621000168100,"Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL, pump pack" -74244011000036106,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825231000168105,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe" -75527011000036103,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid [2 x 3 mL vials] (&) inert substance powder for oral liquid [2 x 5.6 g sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",821961000168107,"cholera vaccine oral liquid [2 x 3 mL vials] (&) inert substance effervescent granules [2 x 5.6 g sachets], 1 pack" -34036011000036103,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",835571000168109,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid" -49266011000036103,"TYR Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725921000168102,"TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches" -75400011000036100,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836701000168102,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe" -83962011000036105,"Wagner Magnesium Forte 400 capsules: hard, 100",900000000000526001,"REPLACED BY association reference set",750231000168103,"Magnesium Forte 400 (Wagner) hard capsule, 100" -733451000168104,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 1 dose, injection device",900000000000526001,"REPLACED BY association reference set",881181000168105,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device" -20549011000036105,"Avonex (4 x 6 million international units (30 microgram) vials, 4 x 1.1 mL diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",698281000168103,"Avonex (4 x 6 million units (30 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack" -57010011000036107,"Canesten Clotrimazole Thrush Treatment Once 10% cream, 5 g",900000000000526001,"REPLACED BY association reference set",715601000168106,"Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g" -924891011000036104,"Pemzo 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",717661000168102,"Pemzo 20 mg enteric capsule, 90" -923468011000036101,"Forteo 20 microgram injection: solution, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726951000168104,"Forteo 20 microgram/dose injection solution, 28 doses" -844531000168109,"Zovirax 800 mg tablet, 5, bottle",900000000000526001,"REPLACED BY association reference set",859481000168107,"Zovirax Dispersible 800 mg tablet, 5, bottle" -922539011000036101,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 30",900000000000526001,"REPLACED BY association reference set",829741000168106,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 30" -698401000168107,"meningococcal group B heparin binding antigen fusion protein + meningococcal group B adhesin A protein + meningococcal group B factor H binding protein fusion protein + meningococcal group B outer membrane vesicles",900000000000526001,"REPLACED BY association reference set",822761000168104,"meningococcal B 4 component vaccine" -663811000168104,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",900000000000526001,"REPLACED BY association reference set",833531000168107,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle" -924704011000036102,"Omepro 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717021000168102,"Omepro 20 mg enteric capsule, 98" -49441011000036100,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689171000168104,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll" -662411000168109,"Metformin Hydrochloride (AN) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",949391000168105,"Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet" -81047011000036103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864261000168107,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags" -77393011000036101,"Centrum tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",833121000168102,"Centrum film-coated tablet, 30, bottle" -20508011000036107,"Kaletra 400/100 oral liquid: solution, 60 mL, bottle",900000000000526001,"REPLACED BY association reference set",689491000168105,"Kaletra oral liquid solution, 60 mL, bottle" -925342011000036105,"Omepro 20 mg capsule, 7, bottle",900000000000526001,"REPLACED BY association reference set",716951000168109,"Omepro 20 mg enteric capsule, 7, bottle" -38815011000036102,"lignocaine hydrochloride anhydrous 4% + fluorescein sodium 0.25% eye drops, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",861701000168100,"lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose, 20 x 0.5 mL unit doses" -69377011000036106,"Microshield Handrub solution, 125 mL, bottle",900000000000526001,"REPLACED BY association reference set",767681000168105,"Microshield Handrub solution, 125 mL, bottle" -21808011000036100,"zinc + phenylephrine",900000000000526001,"REPLACED BY association reference set",879421000168105,"zinc sulfate + phenylephrine" -925290011000036109,"Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083701000168103,"Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL, pump pack" -82191011000036105,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 120",900000000000526001,"REPLACED BY association reference set",860461000168102,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120" -75352011000036104,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837481000168101,"diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial" -86132011000036105,"Levetiracetam (Apo) 1 g tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",1003251000168106,"Levetiracetam 1000 (Apo) 1 g tablet, 60, bottle" -13561011000036102,"Clofeme Thrush Treatment 3 Day 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715101000168104,"Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g" -56708011000036109,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4",900000000000526001,"REPLACED BY association reference set",996311000168101,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4" -6865011000036106,"Subutex 2 mg tablet",900000000000526001,"REPLACED BY association reference set",685581000168108,"Subutex 2 mg sublingual tablet" -19351011000036109,"Zovirax 800 mg dispersible tablet, 35, blister pack",900000000000526001,"REPLACED BY association reference set",859411000168101,"Zovirax Dispersible 800 mg tablet, 35, blister pack" -37744011000036102,"calcium carbonate + colecalciferol",900000000000526001,"REPLACED BY association reference set",733951000168109,"calcium + colecalciferol" -63722011000036109,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995651000168100,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 2" -75013011000036100,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837461000168105,"diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial" -663101000168105,"magnesium trisilicate + belladonna tincture + magnesium + bicarbonate",900000000000526001,"REPLACED BY association reference set",870941000168102,"magnesium trisilicate + belladonna tincture + magnesium carbonate + bicarbonate" -77443011000036104,"sorbitol solution (70 per cent-non-crystallising)",900000000000526001,"REPLACED BY association reference set",922041011000036102,"sorbitol" -56710011000036105,"Difflam Lozenge raspberry sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995911000168106,"Difflam Lozenge Raspberry Sugar Free lozenge, 2" -86756011000036104,"Calcia plus Vitamin D 400 IU chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860151000168107,"Calcia plus Vitamin D 400 IU chewable tablet, 120" -139301000036107,"Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005881000168104,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags" -926706011000036104,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825471000168107,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -74935011000036105,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825711000168109,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial" -74261011000036104,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831841000168102,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack" -84609011000036104,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724891000168106,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles" -924468011000036104,"Panadol Children's 3+ Years 120 mg tablet: chewable",900000000000526001,"REPLACED BY association reference set",721681000168107,"Panadol Children's 3+ Years Cherry 120 mg chewable tablet" -25961000036104,"typhoid fever polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",826221000168103,"Salmonella typhi inactivated antigen" -923729011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 15, blister pack",900000000000526001,"REPLACED BY association reference set",717151000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 15, blister pack" -67339011000036105,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16",900000000000526001,"REPLACED BY association reference set",995371000168104,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16" -75414011000036107,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",824821000168107,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 10 x 0.5 mL vials" -71401000036108,"Salofalk 1.5 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084281000168100,"Salofalk 1.5 g modified release granules, 100 sachets" -69823011000036103,"magnesium chloride",900000000000526001,"REPLACED BY association reference set",878861000168107,"magnesium" -71953011000036102,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995211000168104,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 2" -65496011000036104,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",871991000168101,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag" -29261000036108,"typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827121000168105,"typhoid inactivated vaccine injection, 10 x 0.5 mL syringes" -68798011000036103,"Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",766801000168104,"Chlorhexidine Hand Lotion (Orion) lotion, 500 mL, bottle" -36655011000036106,"Lanoxin 500 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735061000168109,"Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules" -698441000168109,"Bexsero injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822801000168107,"Bexsero injection suspension, 0.5 mL syringe" -21166011000036107,"Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726421000168101,"Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL, injection device" -81138011000036105,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868161000168107,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag" -4985011000036107,"ADT Booster injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837311000168103,"ADT Booster injection suspension, 0.5 mL syringe" -70261011000036101,"methylated spirit industrial 66% gel",900000000000526001,"REPLACED BY association reference set",730431000168103,"ethanol 66% gel" -844791000168101,"Zovirax 400 mg tablet",900000000000526001,"REPLACED BY association reference set",859531000168105,"Zovirax Dispersible 400 mg tablet" -65419011000036107,"Cepacol Mint 0.05% mouthwash",900000000000526001,"REPLACED BY association reference set",995291000168108,"Cepacol Mint 0.05% mouthwash" -921842011000036108,"Berocca Performance Original effervescent tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",829761000168105,"Berocca Performance Original effervescent tablet, 30, bottle" -18527011000036104,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850771000168105,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules" -86733011000036106,"Flo Sinus Care powder for nasal drops, 12 x 1.8 g sachets",900000000000526001,"REPLACED BY association reference set",758701000168104,"Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets" -933195931000036104,"Levetiracetam (Lupin) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003501000168109,"Levetiracetam 1000 (Lupin) 1 g film-coated tablet" -56528011000036102,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",721761000168106,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL" -775691000168109,"Codalgin uncoated tablet, 40",900000000000526001,"REPLACED BY association reference set",836121000168105,"Codalgin uncoated tablet, 40" -6864011000036107,"Subutex 400 microgram tablet",900000000000526001,"REPLACED BY association reference set",685801000168103,"Subutex 400 microgram sublingual tablet" -73646011000036103,"measles virus (Schwarz) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",829861000168101,"measles virus live antigen" -73632011000036101,"hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",824451000168102,"hepatitis B surface antigen" -74255011000036108,"Cervarix injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823221000168108,"Cervarix injection suspension, 20 x 0.5 mL syringes" -156131000036109,"Macrogol plus Electrolytes (Apo) solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674081000168105,"Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets" -933231861000036106,"Fluoride Koala Berry (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932651000168101,"Fluoride (Laclede) Koala Berry Flavour foam, 165 mL, aerosol can" -75030011000036103,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823011000168107,"human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe" -814961000168100,"Entrip 10 mg tablet",900000000000526001,"REPLACED BY association reference set",855901000168108,"Entrip 10 mg film-coated tablet" -702641000168101,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837411000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials" -86080011000036109,"Kevtam 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",938311000168105,"Kevtam-1000 1 g film-coated tablet, 60, blister pack" -5441011000036108,"Baraclude 1 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",829451000168101,"Baraclude 1 mg film-coated tablet" -103791000036107,"Victoza 18 mg/3 mL injection: solution, 3 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748121000168105,"Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices" -7276011000036104,"Probitor 20 mg capsule",900000000000526001,"REPLACED BY association reference set",715901000168102,"Probitor 20 mg enteric capsule" -77546011000036100,"benzoin sumatra 10% (100 mg/mL) + aloe vera 2% (20 mg/mL) + storax prepared 7.5% (75 mg/mL) + tolu balsam 2.5% (25 mg/mL) solution",900000000000526001,"REPLACED BY association reference set",696401000168108,"benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture" -652271000168108,"Cal-500 500 mg (calcium 500 mg) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",859761000168109,"Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60" -83151000036107,"aspirin 100 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",23173011000036104,"aspirin 100 mg tablet" -77562011000036107,"citric acid 200 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",702361000168109,"citric acid 200 mg/mL oral liquid" -922548011000036108,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 150",900000000000526001,"REPLACED BY association reference set",757941000168103,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 150" -74781011000036105,"Cervarix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823201000168104,"Cervarix injection suspension, 10 x 0.5 mL syringes" -664371000168101,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate heavy 250 mg/g powder for oral liquid",900000000000526001,"REPLACED BY association reference set",833691000168105,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid" -78229011000036108,"glucose 25 g/50 mL injection, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872051000168100,"glucose monohydrate 25 g/50 mL injection, 50 mL syringe" -700391000168101,"diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837341000168104,"diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL syringes" -22187011000036108,"diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",837261000168109,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe" -137991000036105,"Menitorix (meningococcal group C polysaccharide vaccine 5 microgram + Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",846061000168103,"Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial" -74899011000036106,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825951000168108,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials" -4543011000036106,"Codalgin Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835871000168107,"Codalgin Forte uncoated tablet" -69622011000036101,"Cepacol Antibacterial Orange Citrus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995201000168102,"Cepacol Antibacterial Orange Citrus lozenge, 16, blister pack" -69368011000036104,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",863651000168106,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag" -75364011000036100,"pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827551000168106,"pneumococcal 7 valent conjugate vaccine injection, 10 x 0.5 mL syringes" -700027611000036109,"Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 24 sachets",900000000000526001,"REPLACED BY association reference set",810591000168109,"Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets" -49444011000036102,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694171000168101,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll" -77140011000036108,"Fess 7.04 mg/mL nasal spray, 30 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",729631000168107,"Fess 0.704% nasal spray, 30 mL, pump pack" -160491000036109,"Oxycontin Reformulation 20 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929122011000036108,"Oxycontin 20 mg modified release tablet, 28, blister pack" -925161011000036102,"Pemzo 20 mg capsule, 7, blister pack",900000000000526001,"REPLACED BY association reference set",717571000168109,"Pemzo 20 mg enteric capsule, 7, blister pack" -82560011000036106,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 240",900000000000526001,"REPLACED BY association reference set",860561000168101,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 240" -7356011000036106,"Prodeine Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835801000168102,"Prodeine Forte uncoated tablet" -69091011000036106,"Metformin Hydrochloride (GA) 1 g tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949451000168106,"Metformin Hydrochloride 1000 (GA) 1 g tablet, 90, blister pack" -46669011000036102,"disulfiram 200 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",796261000168104,"disulfiram 200 mg effervescent tablet, 30" -74919011000036100,"Boostrix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837671000168101,"Boostrix injection suspension, 0.5 mL syringe" -65276011000036106,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705491000168101,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream" -925142011000036100,"Omepro 20 mg capsule, 60, blister pack",900000000000526001,"REPLACED BY association reference set",717041000168108,"Omepro 20 mg enteric capsule, 60, blister pack" -1611000036101,"Dysport 300 units injection: powder for, 300 units vial",900000000000526001,"REPLACED BY association reference set",721091000168101,"Dysport 300 units powder for injection, 300 units vial" -125351000036109,"Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726611000168105,"Anapen Auto-Injector 500 microgram/0.3 mL injection solution, dose" -86847011000036100,"Orabase Protective Paste oromucosal paste, 5 g, tube",900000000000526001,"REPLACED BY association reference set",797611000168101,"Orabase Protective paste, 5 g, tube" -70048011000036106,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel",900000000000526001,"REPLACED BY association reference set",936631000168108,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel" -82434011000036101,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 125 mL can",900000000000526001,"REPLACED BY association reference set",724921000168101,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle" -51401011000036109,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694361000168105,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll" -4913011000036109,"Humira 40 mg/0.8 mL injection solution, 0.8 mL cartridge",900000000000526001,"REPLACED BY association reference set",729811000168101,"Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device" -656211000168101,"Levetiracetam (AN) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003141000168101,"Levetiracetam 1000 (AN) 1 g film-coated tablet" -82019011000036101,"Calsource Ca1000 tablet: effervescent",900000000000526001,"REPLACED BY association reference set",745571000168105,"Calsource Ca1000 effervescent tablet" -85188011000036104,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g",900000000000526001,"REPLACED BY association reference set",851551000168103,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet" -26692011000036107,"risedronate sodium 35 mg tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack",900000000000526001,"REPLACED BY association reference set",852601000168105,"risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28" -929647011000036108,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723961000168108,"PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets" -933247571000036107,"Panamax Co uncoated tablet, 40, blister pack",900000000000526001,"REPLACED BY association reference set",836061000168104,"Panamax Co uncoated tablet, 40, blister pack" -927640011000036102,"Immucyst 1920 million CFU powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",1045961000168106,"Immucyst 81 mg powder for injection, 1 vial" -77388011000036105,"Centrum tablet: film-coated, 130, bottle",900000000000526001,"REPLACED BY association reference set",833331000168102,"Centrum film-coated tablet, 130, bottle" -76550011000036102,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L",900000000000526001,"REPLACED BY association reference set",705991000168106,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L" -110351000036107,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20, carton",900000000000526001,"REPLACED BY association reference set",1056251000168109,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20, carton" -74963011000036104,"poliomyelitis live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",839781000168104,"polio trivalent live vaccine" -76547011000036103,"Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000526001,"REPLACED BY association reference set",726251000168108,"Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches" -27241011000036106,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU injection [81 mg vial] (&) inert substance diluent [3 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",1045981000168102,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack" -45211000036105,"Lipistart powder for oral liquid, 400 g, can",900000000000526001,"REPLACED BY association reference set",949731000168105,"Lipistart powder for oral liquid, 400 g, can" -74349011000036100,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825121000168103,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial" -75641000036107,"risedronate sodium 35 mg enteric tablet [1] (&) calcium (as carbonate) 500 mg tablet [6], 7",900000000000526001,"REPLACED BY association reference set",852671000168100,"risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7" -56162011000036103,"Daktarin 2% oral gel, 40 g",900000000000526001,"REPLACED BY association reference set",820101000168100,"Daktarin 2% oral gel, 40 g" -53687011000036107,"Anti Fungal V 6 Day (Amcal) 1% cream",900000000000526001,"REPLACED BY association reference set",714931000168105,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream" -56846011000036100,"Disprin Original 300 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804331000168105,"Disprin Original 300 mg tablet, 6" -76749011000036109,"Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695741000168108,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles" -75459011000036102,"Haemophilus influenzae type b vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",828261000168107,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack" -74795011000036106,"Twinrix injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",824601000168104,"Twinrix injection suspension, 10 x 1 mL syringes" -75441011000036104,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 50 mL",900000000000526001,"REPLACED BY association reference set",792081000168101,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 50 mL" -137711000036102,"exenatide 2 mg injection, vial",900000000000526001,"REPLACED BY association reference set",833861000168102,"exenatide 2 mg modified release injection, vial" -243091000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724251000168100,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL bottle" -74810011000036104,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825081000168100,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial" -80233011000036106,"Gastrolyte natural powder for oral liquid, 4.9 g sachet",900000000000526001,"REPLACED BY association reference set",871861000168101,"Gastrolyte Natural powder for oral liquid, 4.9 g sachet" -80640011000036101,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868021000168103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags" -924697011000036104,"First Aid (Amcal) cream, 50 g",900000000000526001,"REPLACED BY association reference set",861511000168108,"First Aid (Amcal) cream, 50 g" -689581000168106,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack",900000000000526001,"REPLACED BY association reference set",831291000168109,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack" -697101000168101,"mesalazine 3 g granules, 30 sachets",900000000000526001,"REPLACED BY association reference set",1084321000168105,"mesalazine 3 g modified release granules, 30 sachets" -73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822251000168107,"rotavirus type G2 live antigen" -75454011000036103,"hepatitis A inactivated vaccine 50 units/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825161000168108,"hepatitis A adult vaccine 50 units/mL injection, 1 mL syringe" -18342011000036102,"Haldol Decanoate 50 mg/mL injection: solution, 5 x 1 mL vials, ampoule",900000000000526001,"REPLACED BY association reference set",679771000168105,"Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules" -20218011000036101,"Clofeme Thrush Treatment 6 Day 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715141000168102,"Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube" -806111000168107,"Repatha 140 mg/mL injection: solution, 1 mL injection device",900000000000526001,"REPLACED BY association reference set",846391000168108,"Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device" -75484011000036109,"hepatitis B vaccine 5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825821000168108,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL vial" -78109011000036103,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 1 kg",900000000000526001,"REPLACED BY association reference set",705911000168102,"glycerol 10% + cetomacrogol aqueous cream, 1 kg" -73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822271000168103,"rotavirus type G4 live antigen" -76696011000036104,"Invite E High Potency Vitamin E 96% oil, 30 mL",900000000000526001,"REPLACED BY association reference set",842761000168101,"Invite E High Potency Vitamin E 96% oil, 30 mL" -54221011000036108,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream",900000000000526001,"REPLACED BY association reference set",715621000168102,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream" -12378011000036109,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",834821000168105,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20" -925337011000036108,"Omepro 20 mg capsule, 5, bottle",900000000000526001,"REPLACED BY association reference set",716631000168108,"Omepro 20 mg enteric capsule, 5, bottle" -933241741000036101,"Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728091000168109,"Ovidrel 250 microgram/0.5 mL injection solution, dose" -921552011000036106,"Sorbi Sorbitol 70% non-crystallising oral liquid: solution, 500 mL",900000000000526001,"REPLACED BY association reference set",690631000168100,"Sorbi 70% non-crystallising oral liquid solution, 500 mL" -160201000036100,"Budenofalk 2 mg/application enema, 2 x 1 application aerosol cans, aerosol can",900000000000526001,"REPLACED BY association reference set",688081000168108,"Budenofalk 2 mg/application enema, 2 x 14 applications, aerosol cans" -46221000036108,"Remeron 30 mg tablet: orally disintegrating, 30, blister pack",900000000000526001,"REPLACED BY association reference set",783861000168109,"Remeron Soltab 30 mg orally disintegrating tablet, 30, blister pack" -81171011000036104,"Gastrolyte fruit powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871821000168106,"Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets" -74724011000036103,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",836781000168105,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes" -933231771000036109,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004871000168103,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags" -55823011000036106,"Anti Fungal V 3 Day (Amcal) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",714901000168103,"Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g" -69896011000036102,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge",900000000000526001,"REPLACED BY association reference set",995111000168109,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge" -74730011000036106,"Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821601000168102,"Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -86126011000036106,"Levetiracetam (Terry White Chemists) 1 g tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003771000168109,"Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60, blister pack" -933242941000036105,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 40",900000000000526001,"REPLACED BY association reference set",834301000168107,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 40" -711351000168100,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004571000168101,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags" -26601011000036104,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838071000168109,"pneumococcal 23 valent vaccine injection, 0.5 mL vial" -933241751000036103,"choriogonadotropin alfa 250 microgram/0.5 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",728081000168106,"choriogonadotropin alfa 250 microgram/0.5 mL injection, dose" -922159011000036105,"potassium citrate monohydrate 1.08 g (potassium 10 mmol) modified release tablet",900000000000526001,"REPLACED BY association reference set",950721000168100,"potassium citrate 1.08 g (potassium 10 mmol) modified release tablet" -52226011000036107,"Mirena 52 mg drug delivery system: intrauterine, 1 system, sachet",900000000000526001,"REPLACED BY association reference set",729061000168109,"Mirena 52 mg intrauterine drug delivery system, 1 system, applicator" -11389011000036106,"Fluoxebell 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",73114011000036101,"Fluoxebell 20 mg hard capsule, 28" -691661000168101,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848191000168105,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack" -920129011000036102,"Ostelin Vitamin D and Calcium tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862241000168103,"Ostelin Vitamin D and Calcium film-coated tablet" -922566011000036103,"iopromide 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",696361000168104,"iopromide 499 mg (iodine 240 mg)/mL injection, 10 x 50 mL bottles" -84426011000036100,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule",900000000000526001,"REPLACED BY association reference set",750201000168105,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule" -20373011000036106,"Subutex 400 microgram tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",685891000168109,"Subutex 400 microgram sublingual tablet, 7, blister pack" -33321011000036109,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881201000168106,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose" -101131000036108,"liraglutide 18 mg/3 mL injection, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748041000168103,"liraglutide 6 mg/mL injection, 3 mL injection device" -923324011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",717121000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 140" -5270011000036103,"Kenacomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758321000168109,"Kenacomb Otic ear drops solution" -9081000036102,"Clinoleic 20% injection: emulsion, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771831000168106,"Clinoleic 20% injection emulsion, 500 mL bag" -39422011000036105,"Fludara 50 mg injection: powder for, 5 vials",900000000000526001,"REPLACED BY association reference set",710841000168101,"Fludara IV 50 mg powder for injection, 5 vials" -930837011000036103,"Actonel EC Combi (1 x Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7",900000000000526001,"REPLACED BY association reference set",852681000168102,"Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7" -73803011000036108,"Infanrix Hexa injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",840891000168104,"Infanrix Hexa injection suspension, 0.5 mL syringe" -684051000168105,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",838201000168109,"Pneumovax-23 injection solution, 10 x 0.5 mL syringes" -40065011000036100,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 mL ampoule",900000000000526001,"REPLACED BY association reference set",693331000168104,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 mL ampoule" -653691000168104,"Retinofluor 1 g/10 mL injection: solution, 10 mL vial",900000000000526001,"REPLACED BY association reference set",721841000168101,"Retinofluor 10% 1 g/10 mL injection solution, 10 mL vial" -61270011000036107,"Clotrimazole 3 Day Treatment (Pharmacist) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715701000168100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g, tube" -20995011000036107,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041481000168108,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device" -70131000036102,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner",900000000000526001,"REPLACED BY association reference set",648381000168101,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner" -35141011000036109,"codeine phosphate 50 mg/mL injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",835651000168104,"codeine phosphate hemihydrate 50 mg/mL injection, 5 x 1 mL ampoules" -925167011000036105,"Pemzo 20 mg capsule, 50, blister pack",900000000000526001,"REPLACED BY association reference set",716821000168109,"Pemzo 20 mg enteric capsule, 50, blister pack" -665461000168103,"PKU Cooler20 Gold oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725691000168108,"PKU Cooler 20 Gold oral liquid solution, 174 mL pouch" -13708011000036106,"Kaletra 400/100 oral liquid: solution, 60 mL",900000000000526001,"REPLACED BY association reference set",689481000168107,"Kaletra oral liquid solution, 60 mL" -680661000168107,"Zaldiar Combination Therapy film-coated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",1027861000168109,"Zaldiar film-coated tablet, 50, blister pack" -836211000168108,"Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872371000168107,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag" -700281000168108,"diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",837261000168109,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe" -700016311000036108,"Femazole One",900000000000526001,"REPLACED BY association reference set",26061000036109,"Femazole Duo" -81142011000036106,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872661000168108,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags" -54033011000036103,"Difflam Mouth oral gel",900000000000526001,"REPLACED BY association reference set",995941000168105,"Difflam Mouth oral gel" -711361000168103,"Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004491000168104,"Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule" -75432011000036106,"rabies inactivated vaccine 2.5 units injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",821441000168102,"rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack" -728011000168100,"Lovan 20 mg dispersible tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",844781000168104,"Lovan 20 mg tablet, 7, blister pack" -61571000036108,"Adacel Polio injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839741000168109,"Adacel Polio injection suspension, 0.5 mL vial" -73831011000036100,"Azep 140 microgram/actuation nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",809531000168101,"Azep 0.1% nasal spray" -11985011000036101,"Codalgin uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",836021000168109,"Codalgin uncoated tablet, 50" -9001000036108,"Clinoleic 20% injection: emulsion, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771711000168109,"Clinoleic 20% injection emulsion, 100 mL bag" -663771000168104,"light kaolin 200 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",833491000168107,"light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid" -926889011000036105,"Valtrex 1 g film-coated tablet, 4, blister pack",900000000000526001,"REPLACED BY association reference set",1009701000168102,"Valtrex-1000 1 g film-coated tablet, 4, blister pack" -700321000168103,"ADT Vaccine injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837301000168101,"ADT Vaccine injection suspension, 0.5 mL syringe" -77507011000036105,"sorbitol solution (70 per cent-non-crystallising) 1 mL/mL oral liquid",900000000000526001,"REPLACED BY association reference set",690601000168107,"sorbitol solution 70% non-crystallising oral liquid" -75344011000036105,"rabies inactivated vaccine 2.5 units injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack",900000000000526001,"REPLACED BY association reference set",821401000168104,"rabies vaccine injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack" -85007011000036107,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729871000168109,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices" -63085011000036106,"cetylpyridinium chloride monohydrate 0.05% + benzocaine 0.4% mouthwash, 200 mL",900000000000526001,"REPLACED BY association reference set",994921000168103,"cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash, 200 mL" -62047011000036100,"clotrimazole 10% cream",900000000000526001,"REPLACED BY association reference set",715571000168100,"clotrimazole 10% vaginal cream" -924871011000036106,"Omepro 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",716531000168109,"Omepro 20 mg enteric capsule, 28" -73661011000036104,"poliomyelitis virus type 2 (MEF1) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836531000168100,"poliovirus type 2 inactivated antigen" -929985011000036105,"Lemsip Max Cold and Flu Direct with Decongestant powder, 1 sachet",900000000000526001,"REPLACED BY association reference set",815881000168102,"Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 1 sachet" -76822011000036103,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",861961000168101,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100" -92651000036108,"calcium carbonate + colecalciferol + cupric sulfate anhydrous + magnesium oxide + manganese sulfate monohydrate + zinc",900000000000526001,"REPLACED BY association reference set",861821000168103,"calcium + colecalciferol + cupric sulfate + magnesium oxide + manganese sulfate monohydrate + zinc" -46231000036105,"Remeron 45 mg tablet: orally disintegrating, 30, blister pack",900000000000526001,"REPLACED BY association reference set",783891000168102,"Remeron Soltab 45 mg orally disintegrating tablet, 30, blister pack" -73691000036102,"Byetta 10 microgram/0.04 mL injection: solution, 60 x 0.04 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",726841000168105,"Byetta 10 microgram/dose injection solution, 60 doses, injection device" -156031000036105,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862221000168109,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60" -60571011000036102,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721751000168109,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL, bottle" -931519011000036106,"Regaine Men's Extra Strength Foam 5% foam, 3 x 63 mL aerosol cans",900000000000526001,"REPLACED BY association reference set",710801000168103,"Regaine Men's Extra Strength 5% foam, 3 x 63 mL, aerosol cans" -82337011000036102,"Aspalgin dispersible tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",834261000168104,"Aspalgin dispersible tablet, 20, blister pack" -31523011000036103,"magnesium sulfate",900000000000526001,"REPLACED BY association reference set",64900011000036107,"magnesium sulfate heptahydrate" -19488011000036101,"Anzemet 100 mg/5 mL injection: solution, 5 mL vial, ampoule",900000000000526001,"REPLACED BY association reference set",703381000168106,"Anzemet 100 mg/5 mL injection solution, 5 mL ampoule" -82672011000036105,"Questran 8 g powder for oral liquid, 9.4 g sachet",900000000000526001,"REPLACED BY association reference set",1032291000168104,"Questran Lite 8 g powder for oral liquid, 9.4 g sachet" -62002011000036106,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge",900000000000526001,"REPLACED BY association reference set",996151000168103,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge" -65701000036105,"Adacel Polio injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839771000168102,"Adacel Polio injection suspension, 0.5 mL vial" -140361000036101,"Menitorix (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846091000168105,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -65447011000036106,"Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 mL vial",900000000000526001,"REPLACED BY association reference set",684661000168102,"Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 mL vial" -130291000036103,"TYR Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725981000168103,"TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches" -74880011000036101,"Tripacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837581000168102,"Tripacel injection suspension, 0.5 mL vial" -262081000168106,"PKU Cooler20 Purple oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725811000168103,"PKU Cooler 20 Purple oral liquid solution, 174 mL pouch" -36004011000036107,"Calcium carbonate / colecalciferol (Sanofi-Aventis)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",929810011000036106,"Actonel EC Combi D" -18686011000036104,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041201000168101,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device" -81292011000036103,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, bag",900000000000526001,"REPLACED BY association reference set",872591000168100,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, bag" -930086011000036106,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872851000168107,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle" -20411011000036106,"Keppra 1 g tablet: film-coated, 60, blister pack",900000000000526001,"REPLACED BY association reference set",721071000168102,"Keppra-1000 1 g film-coated tablet, 60, blister pack" -697111000168103,"Salofalk 3 g granules, 30 sachets",900000000000526001,"REPLACED BY association reference set",1084331000168108,"Salofalk 3 g modified release granules, 30 sachets" -711311000168101,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004611000168105,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -930082011000036107,"Elevit with Iodine tablet: film-coated",900000000000526001,"REPLACED BY association reference set",843171000168100,"Elevit with Iodine film-coated tablet" -85792011000036109,"Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872361000168101,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag" -711761000168102,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005551000168109,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -73636011000036102,"human papillomavirus (type 18) vaccine",900000000000526001,"REPLACED BY association reference set",822751000168101,"human papillomavirus type 18 antigen" -921873011000036100,"Centrum Select 50 Plus tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",843251000168102,"Centrum Select 50 Plus film-coated tablet, 30, bottle" -12624011000036107,"Immucyst (1 x 660 million CFU (81 mg) vial, 1 x 3 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",1045991000168104,"Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack" -63251000036102,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871761000168105,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20" -684011000168109,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838161000168104,"Pneumovax-23 injection solution, 0.5 mL syringe" -74379011000036104,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831901000168109,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -51411011000036106,"tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689211000168102,"tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll" -83988011000036105,"Clotrimazole 6 Day (Apo) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715781000168108,"Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g" -664381000168103,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid",900000000000526001,"REPLACED BY association reference set",833701000168105,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid" -931679011000036105,"Actonel EC Combi D (4 x Once-a-Week tablets, 24 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810351000168106,"Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack, composite pack" -26371000168106,"Regaine Men's Extra Strength Foam",900000000000526001,"REPLACED BY association reference set",45451000168101,"Regaine Men's Extra Strength" -9051000036109,"olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771771000168101,"olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 250 mL bag" -61120011000036108,"Difflam Lozenge orange sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995831000168105,"Difflam Lozenge Orange Sugar Free lozenge, 2, blister pack" -828391000168105,"Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",846071000168109,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack" -11915011000036103,"ADT Booster injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837321000168105,"ADT Booster injection suspension, 0.5 mL syringe" -20994011000036108,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041431000168107,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device" -84050011000036105,"Cold and Flu Day and Night PE (Pharmacy Choice) (8 x Day tablets, 16 x Night tablets), 24",900000000000526001,"REPLACED BY association reference set",749541000168101,"Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24" -50217011000036106,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",688971000168109,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll, carton" -82567011000036107,"potassium nitrate 25% + silver nitrate 75% stick, 100",900000000000526001,"REPLACED BY association reference set",722901000168104,"silver nitrate 75% + potassium nitrate 25% stick, 100" -921886011000036104,"Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695191000168101,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles" -74256011000036101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825971000168104,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe" -74968011000036109,"diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",840691000168103,"diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine" -44099011000036103,"Zovirax 400 mg dispersible tablet, 70, blister pack",900000000000526001,"REPLACED BY association reference set",859601000168102,"Zovirax Dispersible 400 mg tablet, 70, blister pack" -53636011000036100,"Clozole Vaginal Cream (Chemists' Own) 2% cream",900000000000526001,"REPLACED BY association reference set",715431000168102,"Clozole (Chemists' Own) 2% vaginal cream" -2621000036103,"Clinoleic 20% injection: emulsion, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771691000168106,"Clinoleic 20% injection emulsion, 100 mL bag" -60822011000036106,"Difflam Lozenge double mint sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995611000168101,"Difflam Lozenge Double Mint Sugar Free lozenge, 16, blister pack" -2631000036101,"olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",771681000168108,"olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, bag" -50485011000036103,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689281000168108,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll, carton" -105541000036105,"aflibercept 2 mg/0.05 mL injection, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703571000168102,"aflibercept 4 mg/0.1 mL injection, 0.1 mL syringe" -150511000036105,"Nicorette Quickmist 1 mg/actuation oral spray, 150 actuations",900000000000526001,"REPLACED BY association reference set",1091951000168104,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations" -74259011000036105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825861000168103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes" -44418011000036102,"Avonex (4 x 6 million international units (30 microgram) vials, 4 x 1 mL diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",698291000168100,"Avonex (4 x 6 million units (30 microgram) vials, 4 x 1 mL inert diluent syringes), 1 pack" -924215011000036105,"teriparatide 20 microgram injection, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726941000168101,"teriparatide 20 microgram/dose injection, 28 doses" -684461000168104,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693471000168108,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules" -74651000036109,"carbomer + triglyceride lipids",900000000000526001,"REPLACED BY association reference set",719531000168100,"carbomer-980 + triglyceride lipids" -101171000036105,"liraglutide 18 mg/3 mL injection, 3 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748101000168101,"liraglutide 6 mg/mL injection, 3 x 3 mL injection devices" -80227011000036100,"Gastrolyte Blackcurrant effervescent tablet",900000000000526001,"REPLACED BY association reference set",871681000168106,"Gastrolyte Blackcurrant effervescent tablet" -26731000036100,"Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827181000168109,"Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -689621000168106,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",831211000168100,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack" -33080011000036106,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881161000168101,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, dose" -653571000168104,"Retinofluor",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721151000168105,"Retinofluor 10%" -65282011000036103,"Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",684711000168107,"Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 50 mL vial" -107521000036109,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056271000168100,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon" -23289011000036105,"calcium (as carbonate) 600 mg (calcium 600 g) tablet",900000000000526001,"REPLACED BY association reference set",860241000168102,"calcium carbonate 1.5 g (calcium 600 mg) tablet" -60750011000036108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4, blister pack",900000000000526001,"REPLACED BY association reference set",996321000168108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4, blister pack" -18688011000036100,"Baraclude 1 mg tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",829481000168108,"Baraclude 1 mg film-coated tablet, 30, blister pack" -700029821000036109,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack",900000000000526001,"REPLACED BY association reference set",792901000168105,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack" -43698011000036102,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013461000168106,"Voluven injection solution, 10 x 500 mL bags" -13582011000036105,"Subutex 2 mg tablet, 7",900000000000526001,"REPLACED BY association reference set",685601000168104,"Subutex 2 mg sublingual tablet, 7" -33646011000036106,"vespula spp venom",900000000000526001,"REPLACED BY association reference set",759031000168100,"yellow jacket venom" -922555011000036104,"calcium (as carbonate) 1 g + colecalciferol 22 microgram (880 units) granules: effervescent, 30 x 7 g sachets",900000000000526001,"REPLACED BY association reference set",810641000168100,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 30 x 7.3 g sachets" -148791000036107,"Nicorette Quickmist 1 mg/actuation oral spray, 1 actuation",900000000000526001,"REPLACED BY association reference set",1091941000168101,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray" -4466011000036104,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041071000168101,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device" -12848011000036107,"Etopophos 100 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793431000168102,"Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial" -933226051000036106,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004711000168103,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags" -84437011000036104,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag",900000000000526001,"REPLACED BY association reference set",873001000168105,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag" -921492011000036108,"B-Dose (Biological Therapies) injection: solution, 3 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704541000168106,"B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials" -69356011000036106,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872021000168108,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag" -158931000036107,"Budenofalk 2 mg/application enema, 2 x 1 application aerosol cans",900000000000526001,"REPLACED BY association reference set",688071000168105,"Budenofalk 2 mg/application enema, 2 x 14 applications" -22116011000036107,"atropine sulfate 600 microgram/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",850731000168107,"atropine sulfate monohydrate 600 microgram/mL injection, ampoule" -177761000036102,"lixisenatide 10 microgram/0.2 mL injection [14 x 0.2 mL unit doses] (&) lixisenatide 20 microgram/0.2 mL injection [14 x 0.2 mL unit doses], 1 pack",900000000000526001,"REPLACED BY association reference set",719401000168106,"lixisenatide 10 microgram/dose injection [14 doses] (&) lixisenatide 20 microgram/dose injection [14 doses], 1 pack" -75042011000036100,"hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824561000168104,"hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe" -684481000168108,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693501000168102,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules" -74790011000036102,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845951000168105,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -923728011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 14, blister pack",900000000000526001,"REPLACED BY association reference set",717101000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 14, blister pack" -23291011000036105,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",1007181000168102,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection device" -931415011000036100,"Dermasoothe Antiseptic cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",861351000168102,"Dermasoothe Antiseptic cream, 50 g, tube" -75110011000036103,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",845881000168109,"meningococcal C conjugate vaccine injection, 0.5 mL syringe" -101381000036105,"Irbesartan (Apo) 75 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",807751000168109,"Irbesartan (Apo) 75 mg film-coated tablet, 30" -27627011000036102,"pancreatic extract 10 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847451000168107,"lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule, 100" -33801011000036102,"adrenaline 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726721000168105,"adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose" -39625011000036104,"Naropin",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711391000168105,"Naropin 1%" -60890011000036101,"Disprin Original 300 mg dispersible tablet, 24, strip pack",900000000000526001,"REPLACED BY association reference set",804261000168106,"Disprin Original 300 mg tablet, 24, strip pack" -653571000168104,"Retinofluor",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721191000168100,"Retinofluor 25%" -59733011000036102,"Clotrimazole 6 Day (Guardian) 1% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715201000168108,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g, tube" -4523011000036108,"Atropt 1% eye drops solution",900000000000526001,"REPLACED BY association reference set",850951000168103,"Atropt 1% eye drops solution" -873201000168100,"morphine sulfate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",27054011000036102,"morphine sulfate pentahydrate 30 mg tablet, 20" -75411011000036109,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",824721000168101,"hepatitis A adult vaccine 1440 ELISA units/mL injection, 10 x 1 mL vials" -2871000036103,"olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, bag",900000000000526001,"REPLACED BY association reference set",771801000168104,"olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, bag" -931461011000036103,"Lemsip Max Cold and Flu Direct with Decongestant powder, 10 sachets",900000000000526001,"REPLACED BY association reference set",815901000168100,"Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets" -55662011000036102,"Anti Fungal V 6 Day (Amcal) 1% cream, 20 g",900000000000526001,"REPLACED BY association reference set",714951000168104,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g" -2861000036106,"Clinoleic 20% injection: emulsion, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771811000168101,"Clinoleic 20% injection emulsion, 500 mL bag" -75421011000036102,"Japanese encephalitis inactivated vaccine 6 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822631000168104,"Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe" -181691000036101,"Diprosone 0.05% lotion, 30 mL",900000000000526001,"REPLACED BY association reference set",1054641000168100,"Diprosone 0.05% lotion, 30 mL" -933223201000036107,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724031000168102,"MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches" -74939011000036107,"Quadracel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",840671000168104,"Quadracel injection suspension, 5 x 0.5 mL vials" -60727011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721931000168101,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL, bottle" -55668011000036104,"Clotrimazole 6 Day (Guardian) 1% cream, 50 g",900000000000526001,"REPLACED BY association reference set",715261000168109,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g" -75408011000036103,"rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, 10 x 1.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822921000168106,"rotavirus live vaccine oral liquid, 10 x 1.5 mL syringes" -932392011000036100,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826711000168101,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack" -22851000036100,"bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",758841000168108,"honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack" -81147011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868241000168100,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag" -86645011000036102,"Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704491000168102,"Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial" -83475011000036109,"triglycerides long chain with glucose polymer oral liquid, 18 x 250 mL cans",900000000000526001,"REPLACED BY association reference set",745341000168106,"triglycerides long chain with glucose polymer oral liquid, 18 x 250 mL cartons" -22841000036103,"Albey Bee Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",758851000168105,"Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack" -75036011000036100,"Varicella zoster live attenuated vaccine 19 400 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",831781000168103,"varicella-zoster live vaccine 19 400 PFU injection, vial" -88581000036100,"Zytiga 250 mg tablet",900000000000526001,"REPLACED BY association reference set",863361000168101,"Zytiga 250 mg uncoated tablet" -34284011000036106,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",835611000168100,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL" -33246011000036108,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 2 mL diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",707371000168101,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack" -26886011000036100,"neomycin 3.5 mg/g + bacitracin zinc 400 international units/g ointment, 10 g",900000000000526001,"REPLACED BY association reference set",689851000168102,"neomycin 0.35% + bacitracin zinc 400 units/g ear ointment, 10 g" -76807011000036107,"Centrum tablet: film-coated, 200",900000000000526001,"REPLACED BY association reference set",833411000168103,"Centrum film-coated tablet, 200" -35693011000036101,"carbomer-974",900000000000526001,"REPLACED BY association reference set",718701000168108,"carbomer-974P" -77581000036108,"aciclovir 800 mg dispersible tablet, 5",900000000000526001,"REPLACED BY association reference set",844511000168104,"aciclovir 800 mg tablet, 5" -49443011000036104,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694091000168101,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll" -924879011000036105,"Omepro 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",716971000168100,"Omepro 20 mg enteric capsule, 90" -77579011000036105,"iopromide 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection, bottle",900000000000526001,"REPLACED BY association reference set",695761000168107,"iopromide 769 mg (iodine 370 mg)/mL injection, 200 mL bottle" -74920011000036104,"Boostrix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837701000168100,"Boostrix injection suspension, 10 x 0.5 mL syringes" -105511000036109,"aflibercept 2 mg/0.05 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",703551000168106,"aflibercept 4 mg/0.1 mL injection, syringe" -932461011000036104,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872891000168102,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle" -923726011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 140, blister pack",900000000000526001,"REPLACED BY association reference set",717131000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 140, blister pack" -55633011000036104,"Disprin Forte dispersible tablet, 24",900000000000526001,"REPLACED BY association reference set",804161000168100,"Disprin Forte tablet, 24" -37446011000036104,"Codral Forte uncoated tablet, 50, strip pack",900000000000526001,"REPLACED BY association reference set",834621000168106,"Codral Forte uncoated tablet, 50, strip pack" -81144011000036102,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",872581000168103,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags" -77563011000036100,"sodium bicarbonate 250 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",702301000168108,"sodium bicarbonate 250 mg/mL oral liquid" -927689011000036103,"Citrulline containing 1 g citrulline oral liquid: powder for, 30 x 4 g sachets",900000000000527005,"SAME AS association reference set",110371000036102,"Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets" -74719011000036107,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826381000168108,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack" -836141000168104,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",872291000168103,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag" -84385011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873041000168107,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag" -177661000036108,"lixisenatide 20 microgram/0.2 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",719241000168107,"lixisenatide 20 microgram/dose injection, dose" -125271000036105,"Laxacon solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674251000168106,"Laxacon powder for oral liquid, sachet" -28225011000036104,"albendazole 400 mg chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",844081000168101,"albendazole 400 mg tablet, 60" -932723011000036101,"Rivotril Drops 2.5 mg/mL oral liquid: solution, drop",900000000000526001,"REPLACED BY association reference set",729101000168107,"Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution" -177651000036105,"Lyxumia 20 microgram/0.2 mL injection: solution, 0.2 mL unit dose",900000000000526001,"REPLACED BY association reference set",719251000168109,"Lyxumia 20 microgram/dose injection solution, dose" -929474011000036104,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723951000168106,"PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets" -73905011000036102,"Comvax injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832291000168100,"Comvax injection suspension, 0.5 mL vial" -23481011000036107,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",1041341000168105,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, injection device" -19910011000036104,"Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722761000168101,"Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL, injection device" -93391000036104,"Menactra injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826541000168106,"Menactra injection solution, 0.5 mL vial" -61441000036100,"Quick-Eze chewable tablet",900000000000526001,"REPLACED BY association reference set",833651000168100,"Quick-Eze chewable tablet" -75117011000036102,"meningococcal group C conjugate vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826401000168108,"meningococcal C conjugate vaccine injection, vial" -6139011000036108,"Etopophos 100 mg injection: powder for, 100 mg vial",900000000000526001,"REPLACED BY association reference set",793411000168107,"Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 113.6 mg vial" -77280011000036104,"Invite E High Potency Vitamin E 96% oil, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",842771000168107,"Invite E High Potency Vitamin E 96% oil, 30 mL, bottle" -46909011000036102,"methyl aminolevulinate hydrochloride 200 mg/g cream, 2 g",900000000000526001,"REPLACED BY association reference set",999301000168107,"methyl aminolevulinate 160 mg/g cream, 2 g" -75528011000036102,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840721000168107,"diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe" -933220811000036100,"ropivacaine hydrochloride monohydrate 200 mg/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004531000168104,"ropivacaine hydrochloride 200 mg/100 mL injection, bag" -76555011000036106,"Sorbolene Cream with Glycerin (Orion) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705741000168101,"Sorbolene Cream with Glycerin (Orion) cream, 100 g" -107561000036100,"dressing hydrogel 1 cm x 50 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056211000168108,"dressing hydrophobic 1 cm x 50 cm ribbon" -844851000168101,"Zovirax 400 mg tablet, 70, blister pack",900000000000526001,"REPLACED BY association reference set",859601000168102,"Zovirax Dispersible 400 mg tablet, 70, blister pack" -50399011000036109,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",688921000168108,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll, carton" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836981000168107,"Streptococcus pneumoniae type 33F polysaccharide antigen" -684441000168103,"lignocaine hydrochloride anhydrous 1% (50 mg/5 mL) injection, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693451000168104,"lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, 5 x 5 mL ampoules" -101161000036102,"Victoza 18 mg/3 mL injection: solution, 3 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748111000168103,"Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices" -68871011000036103,"Cepacol Mint 0.05% mouthwash, 150 mL, bottle",900000000000526001,"REPLACED BY association reference set",995311000168107,"Cepacol Mint 0.05% mouthwash, 150 mL, bottle" -13790011000036106,"Citracal 250 mg (calcium 250 mg) tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",860051000168108,"Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836941000168102,"Streptococcus pneumoniae type 19F polysaccharide antigen" -933220791000036101,"ropivacaine hydrochloride monohydrate 400 mg/200 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004631000168100,"ropivacaine hydrochloride 400 mg/200 mL injection, bag" -2793011000036108,"bee venom",900000000000526001,"REPLACED BY association reference set",758481000168100,"honey bee venom" -90291000036101,"docosahexaenoic acid 22 mg + eicosapentaenoic acid 47 mg + krill oil 333.3 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",965891000168106,"krill oil 333.3 mg capsule, 30" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836961000168103,"Streptococcus pneumoniae type 22F polysaccharide antigen" -5988011000036107,"ADT Vaccine injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837271000168103,"ADT Vaccine injection suspension, 0.5 mL syringe" -921055011000036101,"Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 20 mL vial",900000000000526001,"REPLACED BY association reference set",695111000168105,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 20 mL vial" -711441000168109,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005011000168100,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -82426011000036106,"potassium nitrate + silver",900000000000526001,"REPLACED BY association reference set",722871000168104,"silver nitrate + potassium nitrate" -31321000036109,"Movicol Chocolate solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674061000168101,"Movicol Chocolate powder for oral liquid, 8 sachets" -74341011000036104,"Ipol injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839881000168108,"Ipol injection solution, 0.5 mL syringe" -81703011000036104,"sodium acetate 3.9 mg/mL + calcium chloride 480 microgram/mL + citrate sodium dihydrate 1.7 mg/mL + magnesium chloride 300 microgram/mL + potassium chloride 750 microgram/mL + sodium chloride 6.4 mg/mL eye solution, 120 mL",900000000000526001,"REPLACED BY association reference set",834161000168105,"sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution, 120 mL" -156801000036108,"Pecfent 400 microgram/actuation nasal spray, 8 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1055061000168107,"Pecfent 400 microgram/actuation nasal spray, 8 actuations, pump pack" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836901000168104,"Streptococcus pneumoniae type 15B polysaccharide antigen" -156781000036107,"Pecfent 100 microgram/actuation nasal spray, 8 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1055051000168105,"Pecfent 100 microgram/actuation nasal spray, 8 actuations, pump pack" -87411011000036106,"HCU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",725001000168105,"HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles" -18172011000036106,"ADT Vaccine injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837301000168101,"ADT Vaccine injection suspension, 0.5 mL syringe" -29181000036105,"Movicol Chocolate solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674051000168103,"Movicol Chocolate powder for oral liquid, 8 sachets" -924203011000036107,"omeprazole 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",75871000036104,"omeprazole 20 mg enteric capsule, 14" -77545011000036107,"alpha tocopherol acetate 96% oil",900000000000526001,"REPLACED BY association reference set",842731000168109,"dl-alpha-tocopheryl acetate 96% oil" -46974011000036108,"albendazole 400 mg chewable tablet, 56",900000000000526001,"REPLACED BY association reference set",844111000168106,"albendazole 400 mg tablet, 56" -73848011000036108,"Adacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837471000168104,"Adacel injection suspension, 0.5 mL vial" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836841000168106,"Streptococcus pneumoniae type 9N polysaccharide antigen" -922088011000036100,"iopromide 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",696341000168103,"iopromide 499 mg (iodine 240 mg)/mL injection, 50 mL bottle" -933203961000036109,"Levetiracetam (LAPL) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003471000168103,"Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60" -844831000168107,"Zovirax 400 mg tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",859581000168106,"Zovirax Dispersible 400 mg tablet, 100, bottle" -74412011000036108,"Infanrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840811000168108,"Infanrix-IPV injection suspension, 0.5 mL syringe" -76141011000036102,"X-Evess 250 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",702311000168106,"X-Evess Part-1 250 mg/mL oral liquid solution" -37443011000036105,"Codral Forte uncoated tablet, 4, strip pack",900000000000526001,"REPLACED BY association reference set",834431000168106,"Codral Forte uncoated tablet, 4, strip pack" -933221251000036109,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004831000168101,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, bag" -933226081000036104,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004851000168107,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, 5 x 200 mL bags" -5477011000036101,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream",900000000000526001,"REPLACED BY association reference set",715371000168106,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836921000168108,"Streptococcus pneumoniae type 18C polysaccharide antigen" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836861000168105,"Streptococcus pneumoniae type 10A polysaccharide antigen" -221000168102,"Probitor 20 mg capsule, 14 capsules",900000000000526001,"REPLACED BY association reference set",715911000168104,"Probitor 20 mg enteric capsule, 14" -6843011000036104,"Clofeme Thrush Treatment 3 Day 2% cream",900000000000526001,"REPLACED BY association reference set",715091000168109,"Clofeme Thrush Treatment 3 Day 2% vaginal cream" -82119011000036108,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850871000168102,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules" -933204021000036103,"Levetiracetam (GH) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003391000168106,"Levetiracetam 1000 (GH) 1 g film-coated tablet, 60" -131671000036108,"Laxacon solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674271000168102,"Laxacon powder for oral liquid, 30 sachets" -69952011000036101,"chlorhexidine gluconate 1% lotion",900000000000526001,"REPLACED BY association reference set",766761000168107,"chlorhexidine gluconate 1% + ethanol 70% lotion" -926121011000036106,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825461000168101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -928479011000036100,"Picolax powder for oral liquid, 20 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",833471000168106,"Picolax powder for oral liquid, 20 x 20 g sachets" -37941000036108,"Tadim 1 million units (80 mg) powder for inhalation, 30 vials",900000000000526001,"REPLACED BY association reference set",818131000168100,"Tadim 1 million units powder for inhalation, 30 vials" -929484011000036108,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850841000168109,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836881000168101,"Streptococcus pneumoniae type 12F polysaccharide antigen" -71885011000036100,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995391000168103,"cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 2" -176421000168106,"MSUD Lophlex LQ 20 oral liquid: solution, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725081000168102,"MSUD Lophlex LQ 20 oral liquid solution, 125 mL pouch" -665591000168109,"PKU Cooler20 Green oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725761000168109,"PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches" -921380011000036100,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831731000168104,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack" -78108011000036106,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 325 mL",900000000000526001,"REPLACED BY association reference set",705951000168101,"glycerol 10% + cetomacrogol aqueous cream, 325 mL" -73808011000036103,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824961000168109,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe" -23483011000036108,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",1041441000168103,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, injection device" -85391011000036102,"Go Kit powder for oral liquid, 21.5 g sachet",900000000000526001,"REPLACED BY association reference set",830921000168105,"Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 21.5 g sachet" -78175011000036108,"calcium (as carbonate) 320.3 mg + calcium (as lactate gluconate) 680 mg tablet: effervescent, 10",900000000000526001,"REPLACED BY association reference set",745581000168108,"calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet, 10" -36652011000036103,"Codral Forte uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",834611000168104,"Codral Forte uncoated tablet, 50" -933224571000036104,"Levitaccord 1000 mg 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003801000168106,"Levitaccord-1000 1 g film-coated tablet, 60" -70016011000036102,"salicylic acid 5% (50 mg/g) + aqueous cream 950 mg/g cream",900000000000526001,"REPLACED BY association reference set",705561000168109,"salicylic acid 5% + aqueous cream" -81261011000036107,"metoclopramide hydrochloride 5 mg + paracetamol 500 mg capsule",900000000000526001,"REPLACED BY association reference set",867281000168106,"metoclopramide 5 mg + paracetamol 500 mg capsule" -154921000036101,"Istodax (inert substance) diluent, vial",900000000000526001,"REPLACED BY association reference set",828481000168104,"Istodax (inert substance) diluent, 2 mL vial" -70019011000036106,"salicylic acid 5% (50 mg/g) + cetomacrogol aqueous cream 950 mg/g cream",900000000000526001,"REPLACED BY association reference set",705661000168105,"salicylic acid 5% + cetomacrogol aqueous cream" -22456011000036101,"codeine phosphate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",834691000168108,"codeine phosphate hemihydrate 30 mg tablet" -85063011000036102,"Elevit tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",843111000168108,"Elevit film-coated tablet, 30, blister pack (Old Formulation 2014)" -933226151000036107,"Fluoride Moose Mallow (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932551000168102,"Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL" -922690011000036108,"Varicella zoster live attenuated vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",832011000168103,"varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack" -921934011000036107,"B-Dose (Biological Therapies) injection: solution, 6 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704571000168104,"B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials" -1021151000168107,"Salofalk 500 mg granules, 300 sachets",900000000000526001,"REPLACED BY association reference set",1084121000168108,"Salofalk 500 mg modified release granules, 300 sachets" -933195511000036103,"Levetiracetam (SCP) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003671000168100,"Levetiracetam 1000 (SCP) 1 g film-coated tablet" -107331000036102,"dressing hydrogel 10 cm x 10 cm foam dressing",900000000000526001,"REPLACED BY association reference set",1056311000168100,"dressing hydrophobic 10 cm x 10 cm foam dressing" -81713011000036102,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868471000168106,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags" -691581000168106,"Reddycal 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",848141000168102,"Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle" -98921000036109,"Irbesartan (Apo) 75 mg tablet",900000000000526001,"REPLACED BY association reference set",807741000168107,"Irbesartan (Apo) 75 mg film-coated tablet" -74242011000036102,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825541000168104,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials" -933203901000036105,"Levetiracetam (Lupin) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003511000168107,"Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60" -8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847491000168102,"Creon 5000" -87182011000036103,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",705791000168109,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g, tube" -63734011000036103,"benzydamine hydrochloride 0.15% spray, 30 mL",900000000000526001,"REPLACED BY association reference set",721271000168107,"benzydamine hydrochloride 0.15% oral spray, 30 mL" -182131000036104,"lixisenatide 20 microgram/0.2 mL injection, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719261000168106,"lixisenatide 20 microgram/dose injection, 14 doses" -83258011000036101,"Cardioplegia Sterile (DBL) concentrated injection, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",872171000168105,"Cardioplegia Sterile (DBL) concentrated injection, 20 mL ampoule" -67320011000036102,"Disprin Max 500 mg dispersible tablet, 16",900000000000526001,"REPLACED BY association reference set",804361000168102,"Disprin Max 500 mg tablet, 16" -60751011000036101,"Difflam Lozenge raspberry sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995901000168108,"Difflam Lozenge Raspberry Sugar Free lozenge, 16, blister pack" -79835011000036101,"gentamicin sulfate 7.5 mg implant, 1 bead",900000000000526001,"REPLACED BY association reference set",684531000168106,"gentamicin sulfate 7.5 mg implant, 30 beads" -708491000168108,"Kenacomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758351000168101,"Kenacomb Otic ear drops solution, 7.5 mL, bottle" -36675011000036109,"Marcain Spinal Heavy injection: solution, 5 x 4 mL ampoules",900000000000526001,"REPLACED BY association reference set",863591000168100,"Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules" -11719011000036108,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041271000168106,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device" -923908011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 7, bottle",900000000000526001,"REPLACED BY association reference set",717421000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 7, bottle" -26789011000036106,"adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729821000168108,"adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL injection devices" -75508011000036105,"meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",827711000168104,"meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack" -19577011000036101,"Etopophos 100 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793441000168106,"Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial" -776491000168100,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2",900000000000526001,"REPLACED BY association reference set",996111000168104,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2" -139291000036108,"Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006231000168106,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -243341000168103,"PKU Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724271000168109,"PKU Anamix Junior LQ Berry oral liquid solution, 125 mL bottle" -933220831000036109,"ropivacaine hydrochloride monohydrate 200 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1005031000168105,"ropivacaine hydrochloride 200 mg/20 mL injection, ampoule" -20375011000036107,"Subutex 8 mg tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",685661000168103,"Subutex 8 mg sublingual tablet, 7, blister pack" -925147011000036103,"Omepro 20 mg capsule, 100, blister pack",900000000000526001,"REPLACED BY association reference set",716231000168106,"Omepro 20 mg enteric capsule, 100, blister pack" -80653011000036107,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868391000168103,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags" -833781000168102,"somatropin 400 microgram/dose + inert substance injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",633431000168102,"inert substance diluent, 0.25 mL syringe" -30561000036104,"Voltaren Osteo 1% gel, 75 g, tube",900000000000526001,"REPLACED BY association reference set",1037121000168107,"Voltaren Osteo 1.16% gel, 75 g, tube" -1825011000036104,"atropine sulfate",900000000000527005,"SAME AS association reference set",53052011000036109,"atropine sulfate monohydrate" -57075011000036108,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16",900000000000526001,"REPLACED BY association reference set",861251000168107,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16" -708481000168105,"Kenacomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758341000168103,"Kenacomb Otic ear drops solution, 7.5 mL" -77557011000036100,"glucose 25 g/50 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",872031000168106,"glucose monohydrate 25 g/50 mL injection, syringe" -664401000168103,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g",900000000000526001,"REPLACED BY association reference set",833721000168101,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g" -923730011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",717231000168108,"Omeprazole (Pharmacor) 20 mg enteric capsule, 30, blister pack" -73831000036102,"Risedronate EC Combi (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium Carbonate tablets), 28, blister pack",900000000000526001,"REPLACED BY association reference set",852751000168100,"Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28, blister pack" -923900011000036100,"Omeprazole (Pharmacor) 20 mg capsule, 15, bottle",900000000000526001,"REPLACED BY association reference set",717161000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 15, bottle" -75469011000036107,"Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832211000168109,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial" -138801000036105,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",846071000168109,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack" -50527011000036108,"PKU Cooler20 Orange oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725801000168101,"PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches" -925143011000036107,"Omepro 20 mg capsule, 56, blister pack",900000000000526001,"REPLACED BY association reference set",716771000168102,"Omepro 20 mg enteric capsule, 56, blister pack" -31241000036109,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",685981000168100,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack" -87630011000036106,"Levetiracetam (Sandoz) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003651000168109,"Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60, blister pack" -921396011000036101,"Berocca Performance Original effervescent tablet, 30",900000000000526001,"REPLACED BY association reference set",829751000168108,"Berocca Performance Original effervescent tablet, 30" -925347011000036107,"Pemzo 20 mg capsule, 28, bottle",900000000000526001,"REPLACED BY association reference set",716481000168106,"Pemzo 20 mg enteric capsule, 28, bottle" -98911000036102,"Irbesartan (Apo) 300 mg tablet",900000000000526001,"REPLACED BY association reference set",807801000168103,"Irbesartan (Apo) 300 mg film-coated tablet" -73368011000036102,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL gel: intestinal",900000000000526001,"REPLACED BY association reference set",720461000168108,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel" -28561000036103,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack",900000000000526001,"REPLACED BY association reference set",685971000168103,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack" -63331000036103,"Worming Tablet (Chemmart) 100 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844281000168107,"Worming Tablet (Chemmart) 100 mg tablet, 6" -1021201000168104,"Salofalk 1 g granules, 150 sachets",900000000000526001,"REPLACED BY association reference set",1084201000168108,"Salofalk 1 g modified release granules, 150 sachets" -50419011000036103,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m roll: wrapped pack, 1 pack, carton",900000000000526001,"REPLACED BY association reference set",688631000168101,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1, carton" -933221271000036104,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004731000168108,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, bag" -776511000168105,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24",900000000000526001,"REPLACED BY association reference set",996131000168109,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24" -143941000036109,"Tecfidera 240 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756361000168100,"Tecfidera 240 mg enteric capsule" -695461000168101,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack",900000000000526001,"REPLACED BY association reference set",848001000168103,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack" -924698011000036103,"First Aid (Guardian) cream, 50 g",900000000000526001,"REPLACED BY association reference set",861551000168109,"First Aid (Guardian) cream, 50 g" -177751000036100,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/0.2 mL (0.2 mL) unit doses, 14 x 20 microgram/0.2 mL (0.2 mL) unit doses), 1 pack",900000000000526001,"REPLACED BY association reference set",719411000168109,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack" -82524011000036108,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",834361000168108,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 100" -69897011000036104,"cetylpyridinium chloride monohydrate 0.05% mouthwash",900000000000526001,"REPLACED BY association reference set",994951000168106,"cetylpyridinium chloride 0.05% mouthwash" -63724011000036100,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 8",900000000000526001,"REPLACED BY association reference set",995761000168106,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 8" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836801000168109,"Streptococcus pneumoniae type 5 polysaccharide antigen" -234941000168100,"Prozero oral liquid: solution, 250 mL can",900000000000526001,"REPLACED BY association reference set",745331000168102,"Prozero oral liquid solution, 250 mL carton" -74969011000036101,"Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, fimbriae types 2 and 3 vaccine + Bordetella pertussis, acellular pertactin vaccine + diphtheria toxoid vaccine + tetanus toxoid vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",839601000168101,"diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine" -776471000168101,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge",900000000000526001,"REPLACED BY association reference set",996091000168107,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge" -931755011000036103,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861301000168101,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack" -84440011000036101,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g + ascorbic acid 17.88 g powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901111000168109,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet" -81706011000036105,"sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872531000168104,"sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 500 mL bag" -139281000036106,"Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006201000168104,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -922532011000036106,"Varicella zoster live attenuated vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831921000168100,"varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack" -925334011000036102,"Omepro 20 mg capsule, 15, bottle",900000000000526001,"REPLACED BY association reference set",716491000168109,"Omepro 20 mg enteric capsule, 15, bottle" -26749011000036101,"darbepoetin alfa 20 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041031000168104,"darbepoetin alfa 20 microgram/0.5 mL injection, 0.5 mL injection device" -75902011000036104,"senna dried",900000000000526001,"REPLACED BY association reference set",826011000168104,"dry Tinnevelly senna fruit" -71711000036101,"Risedronate EC Combi (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium Carbonate tablets), 28",900000000000526001,"REPLACED BY association reference set",852741000168102,"Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28" -69759011000036101,"lactate + sodium chloride + potassium chloride + calcium chloride dihydrate",900000000000526001,"REPLACED BY association reference set",860961000168106,"sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836821000168100,"Streptococcus pneumoniae type 7F polysaccharide antigen" -921005011000036106,"Centrum Select 50 Plus tablet: film-coated",900000000000526001,"REPLACED BY association reference set",843221000168105,"Centrum Select 50 Plus film-coated tablet" -60627011000036100,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721491000168107,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL, bottle" -27348011000036106,"pancrelipase 25 000 units capsule, 100",900000000000526001,"REPLACED BY association reference set",847651000168109,"lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule, 100" -87471011000036100,"Levetiracetam (Generic Health) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003351000168101,"Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60" -700171000168104,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",822581000168102,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack" -36165011000036101,"Lanoxin 50 microgram/2 mL injection: solution, 2 mL ampoule",900000000000526001,"REPLACED BY association reference set",735091000168102,"Lanoxin Infants 50 microgram/2 mL injection solution, 2 mL ampoule" -708451000168103,"triamcinolone acetonide 0.09% + neomycin sulfate 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops",900000000000526001,"REPLACED BY association reference set",758311000168102,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops" -81291011000036109,"sodium acetate 3.9 mg/mL + calcium chloride 480 microgram/mL + citrate sodium dihydrate 1.7 mg/mL + magnesium chloride 300 microgram/mL + potassium chloride 750 microgram/mL + sodium chloride 6.4 mg/mL eye solution",900000000000526001,"REPLACED BY association reference set",834141000168106,"sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution" -728631000168104,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005831000168100,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags" -75348011000036103,"azelastine hydrochloride 140 microgram/actuation nasal spray, 5 mL",900000000000526001,"REPLACED BY association reference set",809541000168105,"azelastine hydrochloride 0.1% nasal spray, 5 mL" -13187011000036101,"Creon Forte 25 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847571000168104,"Creon Forte enteric capsule, 100" -761221000168101,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 8",900000000000526001,"REPLACED BY association reference set",851091000168103,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 8" -74948011000036100,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831101000168107,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack" -74774011000036104,"Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826351000168101,"Meruvax II (1 x 1000 TCID50 vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack" -80234011000036108,"Gastrolyte orange powder for oral liquid, 5.2 g sachet",900000000000526001,"REPLACED BY association reference set",871611000168100,"Gastrolyte Orange powder for oral liquid, 5.2 g sachet" -161401000036109,"Cardiprin 100 mg dispersible tablet, 180, blister pack",900000000000526001,"REPLACED BY association reference set",804121000168105,"Cardiprin 100 mg tablet, 180, blister pack" -73670011000036102,"tetanus toxoid vaccine",900000000000526001,"REPLACED BY association reference set",2638011000036103,"tetanus toxoid" -688801000168109,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831051000168107,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack" -728621000168102,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005821000168103,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags" -81167011000036101,"Gastrolyte natural powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871881000168105,"Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets" -681141000168105,"Cal-600 plus D tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862161000168105,"Cal-600 plus D film-coated tablet, 60, bottle" -55655011000036104,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16",900000000000526001,"REPLACED BY association reference set",995451000168102,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16" -924705011000036103,"Pemzo 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",716321000168102,"Pemzo 20 mg enteric capsule, 140" -927592011000036101,"Immucyst 1920 million CFU powder for injection, vial",900000000000526001,"REPLACED BY association reference set",1045941000168107,"Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial" -85082011000036106,"tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694291000168108,"tape plaster adhesive with silicone 4 cm x 1.5 m tape" -80224011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868211000168104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag" -80216011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867891000168105,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag" -141781000036102,"lanreotide 120 mg injection, 1 syringe",900000000000526001,"REPLACED BY association reference set",819401000168109,"lanreotide 120 mg/0.5 mL injection, 0.5 mL syringe" -81698011000036103,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 5 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868011000168105,"glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 5 x 2 L bags" -137871000036102,"Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006101000168108,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule" -926707011000036101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825501000168101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -81046011000036101,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863901000168103,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags" -71321000036107,"Artelac 0.2% / 1% eye gel, 10 g",900000000000526001,"REPLACED BY association reference set",719571000168102,"Artelac 0.2% / 1% eye gel, 10 g" -923084011000036103,"Creon Micro 5000 units/100 mg enteric coated granules",900000000000526001,"REPLACED BY association reference set",847151000168104,"Creon Micro enteric coated granules" -42791000036102,"glucose 75 g/300 mL oral liquid, 300 mL each",900000000000526001,"REPLACED BY association reference set",692441000168106,"glucose 75 g/300 mL oral liquid, 300 mL" -63562011000036102,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride monohydrate 1.33 mg + pholcodine 5.5 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",995541000168103,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge, 24" -56932011000036109,"Logicin Rapid Relief original flavour lozenge, 16",900000000000526001,"REPLACED BY association reference set",861611000168109,"Logicin Rapid Relief original flavour lozenge, 16" -75011011000036101,"azelastine hydrochloride 140 microgram/actuation nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",809521000168104,"azelastine hydrochloride 0.1% nasal spray" -84654011000036107,"codeine phosphate hemihydrate 6 mg + paracetamol 500 mg + phenylephrine hydrochloride 5 mg tablet [8] (&) chlorpheniramine maleate 2 mg + paracetamol 500 mg + phenylephrine hydrochloride 5 mg tablet [16], 24",900000000000526001,"REPLACED BY association reference set",84655011000036106,"paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24" -141741000036106,"lanreotide 60 mg injection, 1 syringe",900000000000526001,"REPLACED BY association reference set",819581000168102,"lanreotide 60 mg/0.5 mL injection, 0.5 mL syringe" -73652011000036100,"meningococcal group Y polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827391000168109,"Neisseria meningitidis group Y polysaccharide antigen" -49502011000036108,"PKU Cooler15 Orange oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725641000168100,"PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches" -933221021000036109,"Fluoride Tyranna Grape (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932571000168106,"Fluoride (Laclede) Tyranna Grape Flavour foam" -827911000168101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845971000168101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -74386011000036101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825941000168106,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials" -927313011000036109,"hepatitis B vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825451000168103,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe" -145311000036108,"dimethyl fumarate 120 mg capsule: modified release, 14",900000000000526001,"REPLACED BY association reference set",756241000168105,"dimethyl fumarate 120 mg enteric capsule, 14" -4618011000036103,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041021000168102,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device" -703611000168106,"meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826911000168103,"meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection, vial" -74350011000036108,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",824931000168101,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial" -36178011000036104,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850401000168109,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, ampoule" -145321000036101,"Tecfidera 240 mg capsule: modified release, 56",900000000000526001,"REPLACED BY association reference set",756381000168109,"Tecfidera 240 mg enteric capsule, 56" -56161011000036109,"Daktarin 2% oral gel, 30 g",900000000000526001,"REPLACED BY association reference set",820051000168100,"Daktarin 2% oral gel, 30 g" -7019011000036109,"Granocyte 33.6 million units (263 microgram) powder for injection, 263 microgram vial",900000000000526001,"REPLACED BY association reference set",838261000168105,"Granocyte-34 33.6 million units (263 microgram) powder for injection, 263 microgram vial" -78306011000036101,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 115",900000000000526001,"REPLACED BY association reference set",833191000168100,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 115" -6866011000036104,"Subutex 8 mg tablet",900000000000526001,"REPLACED BY association reference set",685631000168106,"Subutex 8 mg sublingual tablet" -161361000036104,"Cardiprin 100 mg dispersible tablet, 180",900000000000526001,"REPLACED BY association reference set",804111000168103,"Cardiprin 100 mg tablet, 180" -93511000036100,"Ostelin Vitamin D and Calcium chewable tablet",900000000000526001,"REPLACED BY association reference set",861891000168101,"Ostelin Vitamin D and Calcium chewable tablet" -20833011000036107,"Klacid Hp 7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",716001000168109,"Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack, composite pack" -60988011000036107,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861591000168104,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16, blister pack" -50480011000036107,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724091000168103,"HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches" -45017011000036104,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, bottle",900000000000526001,"REPLACED BY association reference set",1013501000168106,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bottle" -74433011000036107,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840761000168102,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes" -827961000168103,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846011000168101,"meningococcal C conjugate vaccine injection, 20 x 0.5 mL syringes" -74427011000036101,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826431000168101,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -75514011000036101,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845931000168104,"meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes" -6137011000036101,"Cilamox sugar free 250 mg/5 mL powder for oral liquid, 5 mL",900000000000526001,"REPLACED BY association reference set",932901000168109,"Cilamox 250 mg/5 mL powder for oral liquid, 5 mL" -75456011000036106,"Yellow fever live attenuated vaccine 1000 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",822291000168102,"yellow fever live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack" -173171000036100,"Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, actuation",900000000000526001,"REPLACED BY association reference set",701491000168104,"Striverdi Respimat 2.5 microgram/actuation inhalation solution, actuation" -107281000036108,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing",900000000000526001,"REPLACED BY association reference set",1056171000168106,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing" -80632011000036101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",867781000168103,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags" -74871011000036100,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",828311000168101,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -74368011000036104,"Tripacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837601000168106,"Tripacel injection suspension, 5 x 0.5 mL vials" -77335011000036109,"Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695291000168109,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles" -87635011000036102,"Levetiracetam (Generic Health) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003361000168104,"Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60, blister pack" -75479011000036104,"Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",830881000168103,"varicella-zoster live vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack" -922046011000036107,"potassium citrate monohydrate",900000000000526001,"REPLACED BY association reference set",950711000168107,"potassium citrate" -922111011000036103,"alpha tocopherol acetate 250 mg (250 units) capsule",900000000000526001,"REPLACED BY association reference set",842781000168105,"dl-alpha-tocopheryl acetate 250 mg (250 units) capsule" -74794011000036107,"Twinrix injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824631000168106,"Twinrix injection suspension, 1 mL syringe" -82451011000036100,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, bag",900000000000526001,"REPLACED BY association reference set",872381000168105,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, bag" -711481000168104,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004671000168102,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags" -926183011000036101,"Medi Creme cream, 50 g",900000000000526001,"REPLACED BY association reference set",863511000168109,"Medi Creme cream, 50 g" -93471000036105,"Ostelin Osteoguard tablet: film-coated",900000000000526001,"REPLACED BY association reference set",932961000168105,"Ostelin Osteoguard film-coated tablet" -54070011000036109,"Combantrin-1 with Mebendazole 100 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844141000168105,"Combantrin-1 with Mebendazole 100 mg tablet" -60200011000036108,"Daktarin 2% oral gel, 15 g, tube",900000000000526001,"REPLACED BY association reference set",820031000168106,"Daktarin 2% oral gel, 15 g, tube" -38014011000036102,"isoflurane 100 mL/100 mL inhalation: solution, bottle",900000000000526001,"REPLACED BY association reference set",45182011000036107,"isoflurane 1 mL/mL inhalation solution" -86061011000036100,"Qlaira, 84 tablets [3 x 28], blister pack",900000000000526001,"REPLACED BY association reference set",684301000168108,"Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs" -692171000168109,"Calcium (Actavis) 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",848381000168109,"Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48" -75027011000036100,"hepatitis B vaccine 10 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",825511000168103,"hepatitis B child vaccine 10 microgram/0.5 mL injection, vial" -689781000168100,"Valaciclovir (Apo) 1 g film-coated tablet, 4",900000000000526001,"REPLACED BY association reference set",1001151000168103,"Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4" -77299011000036109,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872071000168109,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe" -37632011000036100,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",720831000168103,"Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials" -17929011000036109,"Nemdyn Otic ointment, 10 g, tube",900000000000526001,"REPLACED BY association reference set",689871000168106,"Nemdyn Otic ear ointment, 10 g, tube" -929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724361000168107,"PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches" -156841000036106,"Macrogol plus Electrolytes (Apo) solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674091000168108,"Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets" -692181000168107,"Calcium (Actavis) 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",848391000168107,"Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle" -923901011000036107,"Omeprazole (Pharmacor) 20 mg capsule, 28, bottle",900000000000526001,"REPLACED BY association reference set",717191000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 28, bottle" -84439011000036106,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g + ascorbic acid 5.96 g powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901061000168108,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet" -689771000168103,"Valaciclovir (Apo) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1001141000168100,"Valaciclovir 1000 (Apo) 1 g film-coated tablet" -74561000036108,"Salofalk 500 mg granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084091000168109,"Salofalk 500 mg modified release granules, 100 sachets" -40701000036106,"Remeron 30 mg tablet: orally disintegrating",900000000000526001,"REPLACED BY association reference set",783841000168105,"Remeron Soltab 30 mg orally disintegrating tablet" -94181000036101,"Menactra injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826561000168105,"Menactra injection solution, 0.5 mL vial" -929383011000036103,"Styptic Pencil (Covidien) 98.6% stick",900000000000526001,"REPLACED BY association reference set",846151000168101,"Styptic Pencil (Covidien) 98.6% stick" -81614011000036109,"glucose 5% (5 g/100 mL) injection, 55 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863941000168101,"glucose monohydrate 5% (5 g/100 mL) injection, 55 x 100 mL bags" -84396011000036101,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872501000168106,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag" -80646011000036103,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872621000168103,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag" -130301000036104,"MSUD Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725371000168102,"MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches" -49528011000036103,"PKU Cooler10 Purple oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725581000168106,"PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches" -81616011000036101,"glucose 5% (12.5 g/250 mL) injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863681000168104,"glucose monohydrate 5% (12.5 g/250 mL) injection, 20 x 250 mL bags" -154081000036101,"Nicorette Quickmist 1 mg/actuation oral spray, 2 x 150 actuations aerosol cans",900000000000526001,"REPLACED BY association reference set",1092191000168104,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations, aerosol cans" -39218011000036101,"Fludara 50 mg injection: powder for, 50 mg vial",900000000000526001,"REPLACED BY association reference set",710821000168107,"Fludara IV 50 mg powder for injection, 50 mg vial" -930006011000036105,"Granisetron (Kabi) 1 mg/mL injection: concentrated, ampoule",900000000000526001,"REPLACED BY association reference set",747071000168109,"Granisetron (Kabi) 1 mg/mL injection solution, ampoule" -74334011000036102,"Co-Phenylcaine Forte nasal spray, 25 mL",900000000000526001,"REPLACED BY association reference set",792061000168105,"Co-Phenylcaine Forte nasal spray, 25 mL" -929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724601000168101,"PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches" -49442011000036106,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694001000168107,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll" -76116011000036102,"Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",695601000168100,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 50 mL bottle" -89871000036107,"Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",730001000168104,"Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial" -177921000036109,"Lyxumia 10 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719321000168107,"Lyxumia 10 microgram/dose injection solution, 14 doses" -134291000036107,"Japanese encephalitis virus live vaccine injection, vial",900000000000526001,"REPLACED BY association reference set",821501000168103,"Japanese encephalitis live vaccine injection, vial" -76738011000036100,"Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695521000168105,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials" -926786011000036103,"Medi Creme cream, 25 g, tube",900000000000526001,"REPLACED BY association reference set",863481000168102,"Medi Creme cream, 25 g, tube" -75085011000036102,"Varicella zoster live attenuated vaccine 1995 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",830861000168107,"varicella-zoster live vaccine 1995 PFU injection, vial" -63607011000036107,"aspirin 300 mg dispersible tablet, 48",900000000000526001,"REPLACED BY association reference set",804291000168104,"aspirin 300 mg tablet, 48" -12194011000036104,"Atropt 1% eye drops solution, 15 mL",900000000000526001,"REPLACED BY association reference set",850971000168107,"Atropt 1% eye drops solution, 15 mL" -75395011000036104,"Varicella zoster live attenuated vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",831951000168108,"varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack" -933225831000036100,"ropivacaine hydrochloride monohydrate 40 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004601000168107,"ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules" -74293011000036101,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824781000168102,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe" -681161000168109,"Cal-600 plus D tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",862141000168106,"Cal-600 plus D film-coated tablet, 100, bottle" -177931000036106,"lixisenatide 10 microgram/0.2 mL injection, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719311000168100,"lixisenatide 10 microgram/dose injection, 14 doses" -77284011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872991000168109,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle" -923848011000036103,"Levetiracetam (SZ) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003731000168106,"Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60, blister pack" -128461000036105,"Perjeta 420 mg/14 mL injection solution, 14 mL vial",900000000000526001,"REPLACED BY association reference set",1085741000168102,"Perjeta 420 mg/14 mL concentrated injection, 14 mL vial" -37879011000036103,"atropine sulfate 400 microgram/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",850391000168107,"atropine sulfate monohydrate 400 microgram/mL injection, ampoule" -82195011000036107,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag",900000000000526001,"REPLACED BY association reference set",872411000168108,"Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag" -926994011000036103,"lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream",900000000000526001,"REPLACED BY association reference set",863441000168107,"lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream" -77390011000036109,"Centrum tablet: film-coated, 150, bottle",900000000000526001,"REPLACED BY association reference set",833391000168103,"Centrum film-coated tablet, 150, bottle" -177141000036104,"Molaxole solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674221000168103,"Molaxole powder for oral liquid, 30 sachets" -12170011000036102,"Canesten Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715041000168101,"Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g" -80222011000036102,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872601000168107,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag" -370751000168101,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725021000168101,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 125 mL pouch" -37347011000036109,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850431000168102,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules" -59719011000036106,"Cepacol Cough Plus Lemon lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995281000168105,"Cepacol Cough Plus Lemon lozenge, 16, blister pack" -70161000036108,"exenatide 5 microgram/0.02 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",726751000168102,"exenatide 5 microgram/dose injection, dose" -33073011000036108,"Albey Yellow Jacket Venom (vespula spp venom 550 microgram) injection: powder for, 550 microgram vial",900000000000526001,"REPLACED BY association reference set",759051000168106,"Yellow Jacket Venom (Albey) (yellow jacket venom 550 microgram) powder for injection, 550 microgram vial" -86173011000036101,"Gastrolyte Blackcurrant effervescent tablet, 20, sachet",900000000000526001,"REPLACED BY association reference set",871701000168109,"Gastrolyte Blackcurrant effervescent tablet, 20, sachet" -43646011000036105,"Keppra 500 mg/5 mL injection: concentrated, 5 mL vial",900000000000526001,"REPLACED BY association reference set",706291000168108,"Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial" -924877011000036103,"Omepro 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",716841000168103,"Omepro 20 mg enteric capsule, 60" -98871000036104,"Victoza 18 mg/3 mL injection: solution, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748031000168107,"Victoza 6 mg/mL injection solution, 3 mL injection device" -932466011000036109,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872781000168109,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles" -177971000036108,"Lyxumia 10 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",719331000168105,"Lyxumia 10 microgram/dose injection solution, 14 doses, injection device" -85743011000036105,"Movicol Junior solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674181000168106,"Movicol Junior powder for oral liquid, 30 sachets" -1021131000168101,"mesalazine 500 mg granules, 300 sachets",900000000000526001,"REPLACED BY association reference set",1084101000168104,"mesalazine 500 mg modified release granules, 300 sachets" -932381011000036107,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder, 10 sachets",900000000000526001,"REPLACED BY association reference set",932365011000036106,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 10 sachets" -74434011000036109,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",831121000168103,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack" -84285011000036100,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",860311000168109,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60, bottle" -933225761000036101,"Naropin 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005011000168100,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -921518011000036104,"Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695131000168100,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials" -711011000168103,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005861000168108,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -81287011000036102,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867881000168107,"glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag" -74262011000036105,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",831961000168105,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack" -7385011000036108,"Dolaforte tablet",900000000000526001,"REPLACED BY association reference set",835741000168106,"Dolaforte tablet" -74227011000036102,"Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827531000168100,"Prevenar injection suspension, 0.5 mL syringe" -711001000168101,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005851000168106,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -90281000036103,"Eco Krill soft capsule, 30",900000000000526001,"REPLACED BY association reference set",965901000168105,"Eco Krill 333.3 mg soft capsule, 30" -69318011000036100,"Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",684741000168106,"Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials" -691541000168101,"Reddycal 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",848121000168108,"Reddycal 1.25 g (calcium 500 mg) film-coated tablet" -74346011000036109,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",822701000168100,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack" -74756011000036105,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825351000168109,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial" -87931000036108,"Prostin E2 400 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005331000168108,"Prostin E2 1 mg/3 g vaginal gel, 3 g syringe" -35222011000036102,"buprenorphine 2 mg tablet, 28",900000000000526001,"REPLACED BY association reference set",685761000168106,"buprenorphine 2 mg sublingual tablet, 28" -108761000036108,"dressing hydrogel 5 cm x 200 cm ribbon, 10",900000000000526001,"REPLACED BY association reference set",1056281000168102,"dressing hydrophobic 5 cm x 200 cm ribbon, 10" -177961000036100,"Lyxumia 20 microgram/0.2 mL injection: solution, 2 x 14 unit doses cartridges",900000000000526001,"REPLACED BY association reference set",719361000168102,"Lyxumia 20 microgram/dose injection solution, 2 x 14 doses, injection devices" -241000168108,"Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 24 sachets",900000000000526001,"REPLACED BY association reference set",810581000168106,"Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets" -640901000168105,"Recombinate 500 IU (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",710871000168108,"Recombinate (inert substance) diluent, 10 mL vial" -81044011000036109,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863791000168107,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags" -924868011000036105,"Omepro 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",716221000168108,"Omepro 20 mg enteric capsule, 100" -95381000036102,"Ostelin Vitamin D and Calcium chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",861921000168106,"Ostelin Vitamin D and Calcium chewable tablet, 60, bottle" -815001000168101,"Entrip 10 mg tablet, 250",900000000000526001,"REPLACED BY association reference set",856621000168100,"Entrip 10 mg film-coated tablet, 250" -69040011000036107,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705521000168104,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g, jar" -81303011000036103,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet",900000000000526001,"REPLACED BY association reference set",871601000168103,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet" -44102011000036104,"Zovirax 400 mg dispersible tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",859581000168106,"Zovirax Dispersible 400 mg tablet, 100, bottle" -85016011000036107,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694331000168102,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll, carton" -152641000036106,"fluticasone + formoterol (eformoterol)",900000000000526001,"REPLACED BY association reference set",861531000168103,"fluticasone propionate + formoterol (eformoterol)" -933225771000036109,"ropivacaine hydrochloride monohydrate 100 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005001000168103,"ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules" -135981000036100,"Japanese encephalitis virus live vaccine",900000000000526001,"REPLACED BY association reference set",821491000168105,"Japanese encephalitis live vaccine" -922092011000036102,"iopromide 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695151000168106,"iopromide 623 mg (iodine 300 mg)/mL injection, 50 mL bottle" -73932011000036100,"Menomune-A/C/Y/W-135 (meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",827741000168100,"Menomune-A/C/Y/W-135 (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial" -83623011000036107,"Clotrimazole 6 Day (Apo) 1% cream",900000000000526001,"REPLACED BY association reference set",715771000168105,"Clotrimazole 6 Day (Apo) 1% vaginal cream" -65656011000036107,"Cepacol Antibacterial Orange Citrus lozenge",900000000000526001,"REPLACED BY association reference set",995171000168101,"Cepacol Antibacterial Orange Citrus lozenge" -84658011000036100,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873071000168100,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag" -180161000036106,"Bonecal 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",848491000168103,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48" -75981000036105,"calcium (as carbonate) 500 mg (calcium 500 mg) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",859721000168104,"calcium carbonate 1.25 g (calcium 500 mg) chewable tablet, 60" -73943011000036108,"Quadracel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840581000168100,"Quadracel injection suspension, 0.5 mL vial" -82413011000036109,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100, tube",900000000000526001,"REPLACED BY association reference set",729281000168106,"Silver Nitrate Applicator (Grafco) stick, 100, tube" -29421000036103,"typhoid fever polysaccharide vaccine 25 microgram + hepatitis A inactivated vaccine 160 ELISA units injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827321000168107,"hepatitis A + typhoid vaccine injection, 1 mL syringe" -87941000036103,"dinoprostone 400 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005321000168105,"dinoprostone 1 mg/3 g vaginal gel, syringe" -60893011000036109,"Disprin Original 300 mg dispersible tablet, 96, strip pack",900000000000526001,"REPLACED BY association reference set",804241000168107,"Disprin Original 300 mg tablet, 96, strip pack" -711161000168101,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005871000168102,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag" -6092011000036104,"Otocomb Otic ointment",900000000000526001,"REPLACED BY association reference set",758361000168104,"Otocomb Otic ear ointment" -84088011000036104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872491000168104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag" -922005011000036107,"Recombinate 250 IU (1 x 250 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",710891000168109,"Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack" -922549011000036100,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",757851000168109,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 30" -711171000168107,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005881000168104,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags" -68695011000036100,"Cepacol 0.05% mouthwash, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",995021000168103,"Cepacol 0.05% mouthwash, 500 mL, bottle" -74838011000036106,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821461000168103,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack" -38708011000036108,"codeine phosphate 5 mg/mL oral liquid, 2 L",900000000000526001,"REPLACED BY association reference set",834931000168104,"codeine phosphate hemihydrate 5 mg/mL oral liquid, 2 L" -665011000168108,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",834901000168106,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20" -22023011000036103,"testosterone undecanoate 1 g/4 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",720541000168105,"testosterone undecanoate 1 g/4 mL modified release injection, ampoule" -74308011000036103,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822641000168108,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe" -923443011000036100,"Omeprazole (Pharmacor) 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",717091000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 14" -43807011000036109,"Voluven 6% / 0.9% injection solution, 20 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013431000168103,"Voluven injection solution, 20 x 500 mL bags" -691571000168108,"Reddycal 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",848131000168106,"Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48" -74297011000036105,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825071000168103,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial" -711021000168105,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005901000168102,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule" -108711000036106,"Sorbact (S98310) 10 cm x 10 cm foam dressing, 10",900000000000526001,"REPLACED BY association reference set",1056341000168101,"Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10" -74247011000036100,"Gardasil injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822991000168108,"Gardasil injection suspension, 0.5 mL vial" -74807011000036101,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825021000168104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial" -711031000168108,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005911000168104,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -933220891000036105,"ropivacaine hydrochloride monohydrate 75 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004931000168105,"ropivacaine hydrochloride 75 mg/10 mL injection, ampoule" -20353011000036108,"Clofeme Thrush Treatment 3 Day 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715111000168101,"Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube" -34803011000036104,"Subutex 400 microgram tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",685831000168105,"Subutex 400 microgram sublingual tablet, 100, bottle" -60763011000036109,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995641000168102,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16, blister pack" -74731011000036104,"Gardasil injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823111000168106,"Gardasil injection suspension, 10 x 0.5 mL syringes" -933225321000036109,"Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726521000168102,"Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL" -93481000036107,"boric acid 8.6 mg (boron 1.5 mg) + calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet",900000000000526001,"REPLACED BY association reference set",932951000168108,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet" -45342011000036107,"methyl aminolevulinate hydrochloride 200 mg/g cream",900000000000526001,"REPLACED BY association reference set",999281000168108,"methyl aminolevulinate 160 mg/g cream" -61442011000036108,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721441000168104,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL, bottle" -56611011000036106,"Paxyl 2.5% / 0.1% spray solution, 125 mL",900000000000526001,"REPLACED BY association reference set",861661000168107,"Paxyl 2.5% / 0.1% spray solution, 125 mL" -37668011000036107,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses, tube",900000000000526001,"REPLACED BY association reference set",861721000168109,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses, tube" -74766011000036102,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 10 x 2 mL tubes",900000000000526001,"REPLACED BY association reference set",822531000168103,"Rotateq oral liquid, 10 x 2 mL tubes" -828041000168104,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845951000168105,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -33673011000036104,"adrenaline 300 microgram/0.3 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",726701000168101,"adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose" -923325011000036108,"Omeprazole (Pharmacor) 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",717201000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 280" -4590011000036106,"Dymadon Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835771000168104,"Dymadon Forte uncoated tablet" -160481000036107,"Oxycontin Reformulation 10 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929119011000036108,"Oxycontin 10 mg modified release tablet, 28, blister pack" -18859011000036108,"Canesten Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715051000168104,"Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube" -45299011000036100,"etoposide 500 mg injection, vial",900000000000526001,"REPLACED BY association reference set",793491000168103,"etoposide phosphate 567.8 mg (etoposide 500 mg) injection, vial" -75002011000036109,"rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",826301000168100,"rubella live vaccine" -933195891000036105,"Calcium (Alphapharm) 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",852561000168105,"Calcium (Alphapharm) 1.25 g (calcium 500 mg) film-coated tablet" -75382011000036106,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823031000168102,"human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe" -55735011000036107,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",721661000168103,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL" -76159011000036100,"Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 75 mL vial",900000000000526001,"REPLACED BY association reference set",695671000168105,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 75 mL bottle" -82859011000036106,"Synflorix 16 microgram injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827661000168109,"Synflorix injection suspension, 10 x 0.5 mL syringes" -923446011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",717221000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 30" -69186011000036109,"Tinaderm Powder Spray 0.09% spray: pressurised, 100 g, aerosol can",900000000000526001,"REPLACED BY association reference set",769631000168100,"Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g, aerosol can" -36654011000036107,"Lanoxin 50 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735101000168107,"Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules" -82765011000036101,"Synflorix 16 microgram injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827621000168104,"Synflorix injection suspension, 0.5 mL syringe" -36175011000036105,"Marcain Spinal Heavy injection: solution, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",863571000168101,"Marcain Spinal Heavy injection solution, 4 mL ampoule" -85348011000036104,"Levetiracetam (Apo) 1 g tablet",900000000000526001,"REPLACED BY association reference set",1003181000168106,"Levetiracetam 1000 (Apo) 1 g tablet" -50216011000036108,"PKU Cooler15 Purple oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725681000168105,"PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches" -85017011000036105,"Mepitac (298300) 2 cm x 3 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694281000168105,"Mepitac (298300) 2 cm x 3 m tape, 1 roll, carton" -921445011000036105,"Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695181000168104,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles" -176611000036109,"Levactam 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003081000168105,"Levactam-1000 1 g film-coated tablet, 60, blister pack" -674991000168107,"Simponi Smartject 100 mg/mL injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",845811000168103,"Simponi Smartject 100 mg/mL injection solution, injection device" -76068011000036108,"Sandocal 1000 tablets: effervescent",900000000000526001,"REPLACED BY association reference set",745611000168101,"Sandocal 1000 effervescent tablet" -84077011000036108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873031000168103,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag" -74266011000036109,"Infanrix Hexa injection: suspension, 10 packs",900000000000526001,"REPLACED BY association reference set",841001000168107,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack" -663761000168105,"light kaolin + magnesium + bicarbonate",900000000000526001,"REPLACED BY association reference set",870911000168101,"light kaolin + magnesium carbonate + bicarbonate" -11550011000036107,"Baraclude 1 mg tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",829471000168105,"Baraclude 1 mg film-coated tablet, 30" -54286011000036109,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721811000168100,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution" -77133011000036101,"Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000526001,"REPLACED BY association reference set",726261000168105,"Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches" -84415011000036101,"dibasic sodium phosphate heptahydrate + monobasic sodium phosphate monohydrate",900000000000526001,"REPLACED BY association reference set",900221000168102,"monobasic sodium phosphate monohydrate + dibasic sodium phosphate" -180611000036103,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet",900000000000526001,"REPLACED BY association reference set",835901000168107,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836621000168104,"Streptococcus pneumoniae type 2 polysaccharide antigen" -75070011000036100,"Haemophilus influenzae type b vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",828241000168108,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial" -59677011000036102,"Anti Fungal V 6 Day (Amcal) 1% cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",715021000168107,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g, tube" -40067011000036105,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 mL ampoule",900000000000526001,"REPLACED BY association reference set",693231000168106,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 mL ampoule" -74972011000036104,"typhoid fever live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",827231000168103,"typhoid live vaccine" -81691011000036107,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",867771000168101,"glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags" -711191000168108,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005931000168109,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag" -75349011000036106,"rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",826331000168107,"rubella live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack" -931719011000036107,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872881000168100,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles" -675001000168101,"Simponi Smartject 100 mg/mL injection: solution, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",845831000168108,"Simponi Smartject 100 mg/mL injection solution, 1 mL injection device" -926122011000036100,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825491000168108,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -81729011000036109,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871831000168109,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets" -52169011000036109,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream, 100 g, screw cap jar",900000000000526001,"REPLACED BY association reference set",695851000168100,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g, screw cap jar" -933221001000036104,"Fluoride Witchy Candy Mint (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932511000168103,"Fluoride (Laclede) Witchy Candy Mint Flavour foam" -677441000168101,"fluticasone + vilanterol",900000000000526001,"REPLACED BY association reference set",861401000168109,"fluticasone furoate + vilanterol" -74430011000036104,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert powder for oral liquid sachet), 1 pack",900000000000526001,"REPLACED BY association reference set",821921000168102,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack" -13429011000036100,"Dysport 500 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721041000168109,"Dysport 500 units powder for injection, 1 vial" -87016011000036108,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860091000168103,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet, 120" -73841000036107,"Risedronate Sodium EC Combi D (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium carbonate / colecalciferol sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810611000168104,"Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack, composite pack" -13471000036109,"Dysport 300 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721121000168102,"Dysport 300 units powder for injection, 1 vial" -53955011000036105,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",721731000168103,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 5 mL" -675011000168103,"Simponi Smartject 100 mg/mL injection: solution, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",845841000168104,"Simponi Smartject 100 mg/mL injection solution, 1 mL injection device" -62018011000036107,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride monohydrate 1.33 mg + pholcodine 5.5 mg lozenge",900000000000526001,"REPLACED BY association reference set",995521000168109,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge" -86247011000036109,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L solution, bag",900000000000526001,"REPLACED BY association reference set",872291000168103,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag" -80522011000036109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863951000168104,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags" -61266011000036100,"Clozole Vaginal Cream (Meditab) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715861000168108,"Clozole (Meditab) 2% vaginal cream, 20 g, tube" -38025011000036109,"lignocaine hydrochloride anhydrous 4% + fluorescein sodium 0.25% eye drops, unit dose",900000000000526001,"REPLACED BY association reference set",861681000168103,"lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose" -84271011000036105,"Wagner Magnesium Forte 400 capsules: hard, 50, bottle",900000000000526001,"REPLACED BY association reference set",750301000168103,"Magnesium Forte 400 (Wagner) hard capsule, 50, bottle" -75921000036109,"calcium (as carbonate) 500 mg (calcium 500 mg) chewable tablet",900000000000526001,"REPLACED BY association reference set",859701000168108,"calcium carbonate 1.25 g (calcium 500 mg) chewable tablet" -18351011000036106,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041101000168105,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device" -5063011000036106,"Nemdyn Otic ointment",900000000000526001,"REPLACED BY association reference set",689841000168104,"Nemdyn Otic ear ointment" -162341000036109,"Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726661000168108,"Anapen Auto-Injector 150 microgram/0.3 mL injection solution, dose" -86732011000036104,"Emulsifying Ointment (David Craig) ointment, 500 g",900000000000526001,"REPLACED BY association reference set",770831000168104,"Emulsifying Ointment BP (David Craig) ointment, 500 g" -711101000168102,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006191000168102,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule" -22602011000036109,"albendazole 200 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844191000168102,"albendazole 200 mg tablet" -859101000168109,"Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1087191000168103,"Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations, pump pack" -1085541000168106,"Fluzone High-Dose injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122711000168109,"Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes" -22175011000036105,"adalimumab 40 mg/0.8 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",729801000168104,"adalimumab 40 mg/0.8 mL injection, injection device" -827991000168105,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845891000168107,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -6075011000036101,"Panzytrat 25 000 units enteric capsule",900000000000526001,"REPLACED BY association reference set",847641000168107,"Panzytrat 25 000 enteric capsule" -711671000168104,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005491000168103,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -74949011000036108,"Otrivin Adult menthol 0.1% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085351000168101,"Otrivin Adult menthol 0.1% nasal spray, 10 mL, pump pack" -73666011000036109,"rotavirus live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",822851000168106,"rotavirus type G1P1A(8) live antigen" -75470011000036105,"Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832241000168108,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 10 x 0.5 mL vials" -933231591000036101,"Naropin 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004521000168102,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -711891000168104,"Ropibam 1% 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005291000168102,"Ropibam 1% 200 mg/20 mL injection solution, 20 mL ampoule" -74378011000036107,"Comvax injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832341000168102,"Comvax injection suspension, 10 x 0.5 mL vials" -2438011000036100,"pancreatic extract",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2284011000036101,"lipase" -711651000168108,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005651000168105,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -924881011000036103,"Pemzo 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",716281000168107,"Pemzo 20 mg enteric capsule, 14" -27341011000036102,"dolasetron mesylate 100 mg/5 mL injection, 5 mL vial",900000000000526001,"REPLACED BY association reference set",703361000168102,"dolasetron mesilate monohydrate 100 mg/5 mL injection, 5 mL ampoule" -40366011000036108,"Metvix 200 mg/g cream",900000000000526001,"REPLACED BY association reference set",999291000168106,"Metvix 160 mg/g cream" -75014011000036103,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839611000168103,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe" -48518011000036106,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689251000168101,"Leukoplast (1073) 7.5 cm x 2.5 m tape" -44769011000036102,"Eskazole 400 mg chewable tablet, 56, blister pack",900000000000526001,"REPLACED BY association reference set",844131000168101,"Eskazole 400 mg tablet, 56, blister pack" -921000011000036102,"Calvid granules: effervescent, 7 g sachet",900000000000526001,"REPLACED BY association reference set",810631000168109,"Calvid effervescent granules, 7.3 g sachet" -73645011000036105,"Japanese encephalitis inactivated vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",821661000168101,"Japanese encephalitis virus (mouse brain-derived) inactivated antigen" -73789011000036107,"Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821571000168108,"Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -60572011000036108,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721791000168104,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL, bottle" -75047011000036103,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, vial",900000000000526001,"REPLACED BY association reference set",824701000168105,"hepatitis A adult vaccine 1440 ELISA units/mL injection, vial" -80526011000036108,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863751000168102,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags" -83651000036103,"aspirin 100 mg dispersible tablet, 90",900000000000526001,"REPLACED BY association reference set",26903011000036102,"aspirin 100 mg tablet, 90" -77609011000036109,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet",900000000000526001,"REPLACED BY association reference set",861741000168103,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet" -74897011000036104,"Beconase Allergy and Hayfever 12 Hour 0.05% (50 microgram/actuation) nasal spray, 200 actuations, bottle",900000000000526001,"REPLACED BY association reference set",696331000168107,"Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 200 actuations, pump pack" -1085521000168100,"influenza trivalent geriatric vaccine 2018 injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122691000168106,"influenza trivalent geriatric vaccine 2018 injection, 10 x 0.5 mL syringes" -19912011000036100,"Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722861000168105,"Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL, injection device" -45067011000036103,"betamethasone (as dipropionate) 0.05% lotion",900000000000526001,"REPLACED BY association reference set",1054581000168106,"betamethasone (as dipropionate) 0.05% lotion" -827881000168101,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",845881000168109,"meningococcal C conjugate vaccine injection, 0.5 mL syringe" -932864011000036109,"Rivotril Drops 2.5 mg/mL oral liquid: solution, 10 mL",900000000000526001,"REPLACED BY association reference set",729121000168103,"Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL" -3182011000036104,"Granocyte",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",838251000168108,"Granocyte-34" -51413011000036107,"dressing hydrofibre alternate to alginates 2 g (30 cm) rope, 5 x 2 g",900000000000526001,"REPLACED BY association reference set",745031000168100,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5" -711931000168107,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005271000168103,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -3182011000036104,"Granocyte",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",838211000168107,"Granocyte-13" -669521000168105,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728881000168104,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge" -711261000168107,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006071000168104,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule" -12635011000036108,"Zovirax 200 mg dispersible tablet, 90",900000000000526001,"REPLACED BY association reference set",859451000168100,"Zovirax Dispersible 200 mg tablet, 90" -57062011000036107,"Difflam Lozenge orange sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995801000168103,"Difflam Lozenge Orange Sugar Free lozenge, 16" -12545011000036102,"Codalgin Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835881000168105,"Codalgin Forte uncoated tablet, 20" -75120011000036105,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840701000168103,"diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe" -127331000036108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725351000168106,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 174 mL pouches" -77574011000036109,"iopromide 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695491000168108,"iopromide 769 mg (iodine 370 mg)/mL injection, 20 mL vial" -74239011000036106,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825401000168102,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials" -815051000168102,"Entrip 25 mg tablet",900000000000526001,"REPLACED BY association reference set",856661000168105,"Entrip 25 mg film-coated tablet" -711281000168103,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006091000168103,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -95831000036107,"boric acid + calcium carbonate + colecalciferol + magnesium citrate nonahydrate + magnesium oxide heavy + manganese sulfate monohydrate + phytomenadione",900000000000526001,"REPLACED BY association reference set",932941000168106,"colecalciferol + calcium + magnesium + manganese + phytomenadione + boron" -679531000168103,"Botox 200 units injection: powder for, 200 units vial",900000000000526001,"REPLACED BY association reference set",720941000168103,"Botox 200 units powder for injection, 200 units vial" -66851011000036109,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705691000168103,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g" -56845011000036107,"Disprin Original 300 mg dispersible tablet, 48",900000000000526001,"REPLACED BY association reference set",804301000168103,"Disprin Original 300 mg tablet, 48" -44484011000036106,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 240 actuations, bottle",900000000000526001,"REPLACED BY association reference set",730101000168100,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations, pump packs" -74353011000036100,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",822221000168104,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -74791011000036109,"Flo Xylo-Pos 0.1% nasal spray, 15 mL, bottle",900000000000526001,"REPLACED BY association reference set",1085331000168107,"Flo Xylo-Pos 0.1% nasal spray, 15 mL, pump pack" -86172011000036108,"Fleet Phospho-Soda oral liquid solution, 45 mL, bottle",900000000000526001,"REPLACED BY association reference set",1097821000168109,"Fleet Phospho-Soda oral liquid solution, 45 mL, bottle" -53707011000036104,"Cepacol Plus with Anaesthetic Original Flavour lozenge",900000000000526001,"REPLACED BY association reference set",995431000168108,"Cepacol Plus with Anaesthetic Original Flavour lozenge" -65278011000036105,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705671000168104,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream" -679551000168109,"botulinum toxin type A 200 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",720951000168101,"botulinum toxin type A 200 units injection, 1 vial" -922136011000036102,"iopromide 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695301000168105,"iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle" -23146011000036106,"buprenorphine 400 microgram tablet",900000000000526001,"REPLACED BY association reference set",685791000168104,"buprenorphine 400 microgram sublingual tablet" -30608011000036101,"Cilamox sugar free 250 mg/5 mL powder for oral liquid, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",932921000168100,"Cilamox 250 mg/5 mL powder for oral liquid, 100 mL, bottle" -669501000168101,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728861000168108,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge" -722911000168101,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100",900000000000526001,"REPLACED BY association reference set",729271000168108,"Silver Nitrate Applicator (Grafco) stick, 100" -927706011000036100,"Immucyst 1920 million CFU powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",1045971000168100,"Immucyst 81 mg powder for injection, 1 vial" -86622011000036108,"Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726711000168103,"Anapen Auto-Injector 300 microgram/0.3 mL injection solution, dose" -137931000036109,"Granisetron (Sandoz) 1 mg/mL injection: concentrated, vial",900000000000526001,"REPLACED BY association reference set",747041000168102,"Granisetron (Sandoz) 1 mg/mL injection solution, vial" -933244441000036109,"paracetamol 500 mg + codeine phosphate 8 mg tablet, 40",900000000000526001,"REPLACED BY association reference set",652931000168102,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40" -258851000168100,"Lophlex LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",726271000168104,"Lophlex LQ oral liquid solution, 125 mL pouch" -930883011000036104,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872791000168107,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles" -77136011000036107,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724341000168108,"PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles" -74771011000036102,"Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827541000168109,"Prevenar injection suspension, 0.5 mL syringe" -930088011000036105,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872771000168106,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle" -931845011000036104,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826691000168104,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, syringe" -933214881000036106,"Valaciclovir (GA) 1 g film-coated tablet, 4, blister pack",900000000000526001,"REPLACED BY association reference set",1009661000168109,"Valaciclovir 1000 (GA) 1 g film-coated tablet, 4, blister pack" -73651000036106,"Artelac 0.2% / 1% eye gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",719581000168104,"Artelac 0.2% / 1% eye gel, 10 g, tube" -141491000036106,"Somatuline Autogel 60 mg injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",819571000168100,"Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe" -686841000168107,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL injection devices",900000000000526001,"REPLACED BY association reference set",698651000168108,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices" -83622011000036100,"Clotrimazole 3 Day (Apo) 2% cream",900000000000526001,"REPLACED BY association reference set",715741000168103,"Clotrimazole 3 Day (Apo) 2% vaginal cream" -141501000036104,"lanreotide 60 mg injection, syringe",900000000000526001,"REPLACED BY association reference set",819561000168106,"lanreotide 60 mg/0.5 mL injection, syringe" -82858011000036103,"Synflorix 16 microgram injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827631000168101,"Synflorix injection suspension, 0.5 mL syringe" -929145011000036102,"salicylic acid 2% (20 mg/g) + aqueous cream 980 mg/g cream",900000000000526001,"REPLACED BY association reference set",705381000168107,"salicylic acid 2% + aqueous cream" -718801000168101,"Infanrix Hexa injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840891000168104,"Infanrix Hexa injection suspension, 0.5 mL syringe" -689671000168107,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831251000168104,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -63721011000036103,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995591000168106,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16" -21283011000036100,"fluticasone",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",861061000168102,"fluticasone propionate" -712071000168103,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005191000168105,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags" -74863011000036106,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",824941000168105,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial" -921936011000036104,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",842821000168100,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60, bottle" -53617011000036109,"Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution",900000000000526001,"REPLACED BY association reference set",721311000168107,"Difflam Forte Anti-Inflammatory Throat 0.3% oral spray" -686851000168109,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL injection devices",900000000000526001,"REPLACED BY association reference set",698661000168105,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices" -711121000168106,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006211000168101,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -63510011000036102,"benzydamine hydrochloride 1% + cetylpyridinium chloride monohydrate 0.1% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",995951000168107,"benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel, 10 g" -7419011000036103,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041401000168100,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device" -61850011000036104,"cetylpyridinium chloride monohydrate 0.05% + benzocaine 0.4% mouthwash",900000000000526001,"REPLACED BY association reference set",994901000168107,"cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash" -933240111000036107,"Omeprazole (Sandoz) 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",716191000168102,"Omeprazole (Sandoz) 20 mg enteric capsule, 30, bottle" -27580011000036100,"interferon alfa-2b 18 million units/1.2 mL injection, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722741000168100,"interferon alfa-2b 18 million units/1.2 mL injection, 1.2 mL" -13735011000036106,"Granocyte 13.4 million units (105 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838231000168102,"Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial" -55665011000036105,"Clotrimazole 6 Day (Guardian) 1% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715191000168105,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g" -23482011000036101,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",1041391000168102,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, injection device" -14140011000036107,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041421000168109,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device" -50450011000036103,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694181000168103,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll, carton" -941591000168103,"Metformin (AS) 1 g film-coated tablet, 10",900000000000526001,"REPLACED BY association reference set",949481000168104,"Metformin 1000 (AS) 1 g film-coated tablet, 10" -921572011000036108,"Panadeine Forte uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",835851000168103,"Panadeine Forte uncoated tablet, 50" -933231581000036103,"Naropin 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004621000168103,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -815091000168107,"Entrip 25 mg tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",856701000168103,"Entrip 25 mg film-coated tablet, 50, blister pack" -761881000168101,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 2.5 mL",900000000000526001,"REPLACED BY association reference set",791931000168108,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 2.5 mL" -85644011000036104,"Qlaira, 84 tablets [3 x 28], blister pack",900000000000526001,"REPLACED BY association reference set",684291000168107,"Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28" -13016011000036108,"Dapa-Tabs 2.5 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",935681000168103,"Dapa-Tabs 2.5 mg film-coated tablet, 90" -19203011000036106,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack",900000000000526001,"REPLACED BY association reference set",852781000168107,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack" -22039011000036103,"mercaptopurine 50 mg tablet",900000000000526001,"REPLACED BY association reference set",845421000168108,"mercaptopurine monohydrate 50 mg tablet" -859081000168102,"Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1087271000168105,"Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations, pump pack" -815131000168109,"Entrip 25 mg tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",856741000168101,"Entrip 25 mg film-coated tablet, 100, blister pack" -933229561000036106,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724041000168106,"MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches" -81296011000036104,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868331000168102,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag" -84664011000036104,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g + ascorbic acid 5.96 g powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901081000168104,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet" -74424011000036107,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825781000168103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials" -75391011000036101,"hepatitis B vaccine 10 microgram/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825641000168103,"hepatitis B adult vaccine 10 microgram/mL injection, 1 mL syringe" -80642011000036102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",868101000168106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags" -69842011000036107,"lactate + sodium chloride + potassium chloride",900000000000526001,"REPLACED BY association reference set",860891000168106,"sodium lactate + sodium chloride + potassium chloride" -49463011000036105,"Combine Roll (2902165) (BSN) 9 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688651000168107,"Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1" -91831000036105,"Prostin E2 400 microgram/mL vaginal gel, 2.5 mL, syringe",900000000000526001,"REPLACED BY association reference set",1005361000168100,"Prostin E2 1 mg/3 g vaginal gel, 3 g syringe" -76810011000036109,"Centrum tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",833141000168108,"Centrum film-coated tablet, 60" -74233011000036108,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822491000168103,"Rotateq oral liquid, 2 mL tube" -711141000168100,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006231000168106,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -60435011000036109,"Zantac 150 mg/10 mL oral liquid: solution, 140 mL, bottle",900000000000526001,"REPLACED BY association reference set",783911000168100,"Zantac 150 mg/10 mL oral liquid, 140 mL, bottle" -80514011000036108,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",900000000000526001,"REPLACED BY association reference set",864331000168106,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag" -686811000168108,"interferon beta-1a 125 microgram/0.5 mL injection, injection device",900000000000526001,"REPLACED BY association reference set",698621000168100,"peginterferon beta-1a 125 microgram/0.5 mL injection, injection device" -924138011000036105,"omeprazole 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",716501000168102,"omeprazole 20 mg enteric capsule, 280" -20628011000036105,"Creon 5000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847541000168106,"Creon 5000 enteric capsule, 100, bottle" -33775011000036106,"leuprorelin acetate 22.5 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",707331000168104,"leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826041000168100,"Streptococcus pneumoniae type 18C conjugate antigen" -933225641000036106,"Cerumol ear drops, 10 mL",900000000000526001,"REPLACED BY association reference set",854371000168103,"Cerumol ear drops, 10 mL" -1979011000036106,"codeine phosphate",900000000000527005,"SAME AS association reference set",51924011000036104,"codeine phosphate hemihydrate" -78326011000036106,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",861951000168103,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 100" -631021000168106,"Lucrin Depot (inert substance) diluent, 2 mL syringe",900000000000526001,"REPLACED BY association reference set",707281000168107,"Lucrin Depot (inert substance) diluent, 1.5 mL syringe" -933244171000036106,"Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728111000168101,"Ovidrel 250 microgram/0.5 mL injection solution, 1 dose" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826061000168101,"Streptococcus pneumoniae type 9V conjugate antigen" -642541000168101,"Biostate 250 IU FVIII/500 IU VWF (inert substance) diluent, 5 mL vial",900000000000526001,"REPLACED BY association reference set",900931000168107,"Biostate (inert substance) diluent, 5 mL vial" -732681000168103,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",747031000168106,"Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules" -31579011000036101,"methyl aminolevulinate hydrochloride",900000000000526001,"REPLACED BY association reference set",999161000168105,"methyl aminolevulinate" -80636011000036102,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",867941000168106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags" -932456011000036101,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",843181000168102,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30" -75063011000036101,"Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection, vial",900000000000526001,"REPLACED BY association reference set",822551000168109,"Mycobacterium bovis (BCG) live vaccine injection, vial" -21806011000036104,"atropine sulfate",900000000000526001,"REPLACED BY association reference set",933232141000036108,"atropine sulfate monohydrate" -75529011000036105,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840751000168104,"diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 10 x 0.5 mL syringes" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826021000168106,"Streptococcus pneumoniae type 23F conjugate antigen" -117611000036101,"nomegestrol acetate 2.5 mg + oestradiol 1.5 mg tablet [72] (&) inert substance tablet [12], 1 pack",900000000000526001,"REPLACED BY association reference set",683941000168106,"nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet [24] (&) inert substance tablet [4], 3 x 28" -60752011000036107,"Difflam Lozenge raspberry sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995921000168104,"Difflam Lozenge Raspberry Sugar Free lozenge, 2, blister pack" -941631000168103,"Metformin (AS) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",949521000168104,"Metformin 1000 (AS) 1 g film-coated tablet, 60" -695481000168105,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848631000168104,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack" -73875011000036101,"Je-Vax (Japanese encephalitis inactivated vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",822681000168103,"Je-Vax (Japanese encephalitis (mouse brain-derived) inactivated vaccine) powder for injection, vial" -25401000036105,"tenofovir + emtricitabine + rilpivirine",900000000000526001,"REPLACED BY association reference set",851441000168101,"tenofovir disoproxil + emtricitabine + rilpivirine" -85699011000036107,"Levetiracetam (Terry White Chemists) 1 g tablet, 60",900000000000526001,"REPLACED BY association reference set",1003761000168103,"Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60" -33245011000036101,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",707341000168108,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack" -243881000168103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL can",900000000000526001,"REPLACED BY association reference set",725521000168107,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL pouch" -9061000036107,"Clinoleic 20% injection: emulsion, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",771961000168105,"Clinoleic 20% injection emulsion, 20 x 250 mL bags" -54043011000036102,"Difflam Lozenge raspberry sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995881000168106,"Difflam Lozenge Raspberry Sugar Free lozenge" -81619011000036105,"glucose 5% (12.5 g/250 mL) injection, 40 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863801000168108,"glucose monohydrate 5% (12.5 g/250 mL) injection, 40 x 250 mL bags" -84616011000036106,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",750221000168101,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2mg) capsule, 100" -700029171000036101,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 6 sachets",900000000000526001,"REPLACED BY association reference set",810241000168103,"Actonel EC Combi D effervescent granules, 6 sachets" -52737011000036100,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",860281000168107,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle" -26857011000036108,"aluminium hydroxide dried 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",684431000168107,"aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet, 100" -73675011000036106,"cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine",900000000000526001,"REPLACED BY association reference set",821811000168103,"Vibrio cholerae O1 inactivated antigen" -85341011000036108,"Levetiracetam (Chemmart) 1 g tablet",900000000000526001,"REPLACED BY association reference set",1003271000168102,"Levetiracetam 1000 (Chemmart) 1 g tablet" -923336011000036103,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",821321000168103,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack" -120501000036107,"clotrimazole 1% + hydrocortisone (as acetate) 1% cream, 30 g",900000000000526001,"REPLACED BY association reference set",38541011000036108,"hydrocortisone 1% + clotrimazole 1% cream, 30 g" -712011000168106,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005131000168106,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags" -71391000036105,"exenatide 10 microgram/0.04 mL injection, 60 x 0.04 mL unit doses",900000000000526001,"REPLACED BY association reference set",726821000168104,"exenatide 10 microgram/dose injection, 60 doses" -69474011000036106,"Panadol Children's 7+ Years 250 mg tablet: soluble, 12, strip pack",900000000000526001,"REPLACED BY association reference set",721561000168104,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12, strip pack" -695471000168107,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848621000168102,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack" -65589011000036102,"Panadol Children's 7+ Years 250 mg tablet: soluble",900000000000526001,"REPLACED BY association reference set",721541000168103,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet" -12781011000036107,"Panzytrat 25 000 units enteric capsule, 100",900000000000526001,"REPLACED BY association reference set",847661000168106,"Panzytrat 25 000 enteric capsule, 100" -712051000168107,"Ropibam 0.2% 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005171000168109,"Ropibam 0.2% 400 mg/200 mL injection solution, 200 mL bag" -987321000168105,"Kanuma 2 mg/mL injection solution, 1 mL vial",900000000000526001,"REPLACED BY association reference set",1013341000168100,"Kanuma 20 mg/10 mL injection solution, 10 mL vial" -929654011000036104,"Styptic Pencil (Covidien) 98.6% stick, 5 g, tube",900000000000526001,"REPLACED BY association reference set",846181000168108,"Styptic Pencil (Covidien) 98.6% stick, 5 g, tube" -73054011000036102,"Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes",900000000000526001,"REPLACED BY association reference set",781281000168100,"Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes" -923830011000036104,"Probitor Hp7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",715951000168103,"Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack, composite pack" -706331000168102,"measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection, vial",900000000000526001,"REPLACED BY association reference set",831351000168109,"measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, vial" -689811000168103,"Otocomb Otic ear ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758371000168105,"Otocomb Otic ear ointment, 5 g" -82576011000036104,"retinyl palmitate 0.054% ointment, 50 g",900000000000526001,"REPLACED BY association reference set",694991000168102,"retinol palmitate 0.099% ointment, 50 g" -13614011000036106,"Colazide 750 mg capsule, 180",900000000000526001,"REPLACED BY association reference set",932491000168108,"Colazide 750 mg hard capsule, 180" -687931000168105,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825031000168101,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe" -74267011000036107,"Infanrix Penta injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836741000168100,"Infanrix Penta injection suspension, 0.5 mL syringe" -689821000168105,"Otocomb Otic ear ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758381000168108,"Otocomb Otic ear ointment, 5 g, tube" -42761000036109,"Lipistart powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949721000168107,"Lipistart powder for oral liquid, 400 g" -50362011000036102,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689331000168100,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll, carton" -75001011000036103,"diphtheria toxoid vaccine + Haemophilus influenzae type b vaccine + hepatitis B vaccine + Bordetella pertussis, acellular pertactin vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine + tetanus toxoid vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836641000168105,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine" -987291000168102,"sebelipase alfa 2 mg/mL injection, vial",900000000000526001,"REPLACED BY association reference set",1013311000168104,"sebelipase alfa 20 mg/10 mL injection, vial" -74867011000036102,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822311000168103,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -86631011000036100,"Calcia plus Vitamin D 200 IU chewable tablet",900000000000526001,"REPLACED BY association reference set",860081000168101,"Calcia plus Vitamin D 200 IU chewable tablet" -711991000168106,"Ropibam 0.2% 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005111000168101,"Ropibam 0.2% 200 mg/100 mL injection solution, 100 mL bag" -74932011000036102,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846031000168106,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes" -74777011000036105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825871000168109,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes" -732641000168108,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746991000168106,"Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule" -44106011000036100,"Zovirax 800 mg dispersible tablet, 5, bottle",900000000000526001,"REPLACED BY association reference set",859481000168107,"Zovirax Dispersible 800 mg tablet, 5, bottle" -33802011000036108,"adrenaline 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726671000168102,"adrenaline (epinephrine) 150 microgram/0.3 mL injection, 1 dose" -75038011000036101,"poliomyelitis live attenuated oral vaccine oral liquid, vial",900000000000526001,"REPLACED BY association reference set",839791000168101,"polio trivalent live vaccine oral liquid, 1 vial" -75347011000036104,"azelastine hydrochloride 140 microgram/actuation nasal spray, 20 mL",900000000000526001,"REPLACED BY association reference set",809601000168109,"azelastine hydrochloride 0.1% nasal spray, 20 mL" -74101000036101,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",764311000168103,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL, bottle" -941611000168108,"Metformin (AS) 1 g film-coated tablet, 30",900000000000526001,"REPLACED BY association reference set",949501000168108,"Metformin 1000 (AS) 1 g film-coated tablet, 30" -51475011000036103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",710271000168107,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches" -76804011000036101,"Centrum tablet: film-coated, 130",900000000000526001,"REPLACED BY association reference set",833321000168100,"Centrum film-coated tablet, 130" -82407011000036103,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 2 x 5 L bags",900000000000526001,"REPLACED BY association reference set",872451000168109,"Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags" -77306011000036105,"X-Evess (1 x 500 mL oral liquid, 1 x 500 mL oral liquid), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",703131000168108,"X-Evess (1 x 500 mL Part-1 oral liquid bottle, 1 x 500 mL Part-2 oral liquid bottle), 1 pack" -67340011000036100,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2",900000000000526001,"REPLACED BY association reference set",995401000168101,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2" -73851000036105,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",862051000168109,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100, bottle" -75449011000036100,"Japanese encephalitis inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",822691000168100,"Japanese encephalitis (mouse brain-derived) inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack" -922541011000036104,"calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",859881000168109,"calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60" -922688011000036109,"potassium citrate monohydrate 1.08 g (potassium 10 mmol) modified release tablet, 100",900000000000526001,"REPLACED BY association reference set",950741000168106,"potassium citrate 1.08 g (potassium 10 mmol) modified release tablet, 100" -987331000168108,"Kanuma 2 mg/mL injection solution, 1 mL vial",900000000000526001,"REPLACED BY association reference set",1013351000168103,"Kanuma 20 mg/10 mL injection solution, 10 mL vial" -12511000168102,"Chlorhexidine Gluconate Hand Lotion (Orion)",900000000000526001,"REPLACED BY association reference set",766611000168102,"Chlorhexidine Hand Lotion (Orion)" -823921000168101,"exenatide 2 mg modified release injection [4 cartridges] (&) inert substance diluent [4 cartridges], 1 pack",900000000000526001,"REPLACED BY association reference set",833341000168106,"exenatide 2 mg/dose + inert substance modified release injection, 4 dual chamber devices" -56706011000036105,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2",900000000000526001,"REPLACED BY association reference set",996271000168101,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2" -933244191000036105,"choriogonadotropin alfa 250 microgram/0.5 mL injection, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728101000168104,"choriogonadotropin alfa 250 microgram/0.5 mL injection, 1 dose" -54286011000036109,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721401000168101,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution" -930839011000036105,"Actonel EC Combi D (4 x Once-a-Week tablets, 24 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810341000168109,"Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack" -711911000168102,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005311000168103,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -53609011000036104,"Cortef 1% spray: solution",900000000000526001,"REPLACED BY association reference set",776871000168104,"Cortef 1% spray solution" -73867011000036100,"Merieux Inactivated Rabies Vaccine (rabies inactivated vaccine 2.5 units) powder for injection, 2.5 units vial",900000000000526001,"REPLACED BY association reference set",821431000168106,"Merieux Inactivated Rabies Vaccine (rabies vaccine) powder for injection, 2.5 units vial" -844441000168101,"Zovirax 200 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",859451000168100,"Zovirax Dispersible 200 mg tablet, 90" -27819011000036108,"buprenorphine 2 mg tablet, 7",900000000000526001,"REPLACED BY association reference set",685591000168106,"buprenorphine 2 mg sublingual tablet, 7" -21200011000036107,"Codapane Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835951000168106,"Codapane Forte 500/30 uncoated tablet, 20, blister pack" -84383011000036108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873091000168104,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag" -923388011000036106,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827471000168101,"Prevenar-13 injection suspension, 10 x 0.5 mL syringes" -45881000168105,"Friars' Balsam Compound Benzoin Tincture (Gold Cross)",900000000000526001,"REPLACED BY association reference set",688371000168108,"Friars' Balsam Compound Benzoin (Gold Cross)" -18550011000036101,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041051000168105,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device" -35135011000036105,"morphine hydrochloride 2 mg/mL oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",872731000168108,"morphine hydrochloride 2 mg/mL oral liquid, 500 mL" -689721000168104,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment",900000000000526001,"REPLACED BY association reference set",758261000168108,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment" -14223011000036100,"Eskazole 400 mg chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",844091000168103,"Eskazole 400 mg tablet, 60" -73858011000036105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825521000168105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial" -74746011000036108,"Adacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837501000168105,"Adacel injection suspension, 0.5 mL vial" -929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724261000168103,"PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches" -127321000036106,"MSUD Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725361000168108,"MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches" -711631000168102,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005631000168104,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 20 mL ampoule" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826121000168107,"Streptococcus pneumoniae type 3 conjugate antigen" -84927011000036104,"Elevit tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",843101000168105,"Elevit film-coated tablet, 30 (Old Formulation 2014)" -923934011000036102,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000526001,"REPLACED BY association reference set",827401000168106,"pneumococcal 13 valent conjugate vaccine" -74380011000036104,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",830891000168100,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack" -933196641000036108,"Recombinate 1000 IU (octocog alfa 1000 international units) injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",710931000168101,"Recombinate (octocog alfa 1000 units) powder for injection, vial" -711211000168109,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005951000168103,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags" -4812011000036107,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041251000168102,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device" -823901000168105,"Bydureon (1 x 2 mg cartridge, 1 x inert diluent cartridge), 1 pack",900000000000526001,"REPLACED BY association reference set",833291000168108,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device" -49454011000036104,"Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689091000168104,"Leukoflex (1124) 5 cm x 5 m tape, 1 roll" -75445011000036102,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839901000168105,"polio trivalent inactivated vaccine injection, 10 x 0.5 mL syringes" -28061011000036102,"omeprazole 20 mg capsule [14 capsules] (&) clarithromycin 500 mg tablet [14] (&) amoxycillin 500 mg capsule [28 capsules], 1 pack",900000000000526001,"REPLACED BY association reference set",715931000168109,"omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack" -53988011000036107,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",649641000168107,"Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 5 mL" -74869011000036109,"Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083651000168108,"Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL, pump pack" -30621000036109,"Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827201000168105,"Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -78250011000036103,"iopromide 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",695071000168103,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 10 mL vials" -65871000036107,"Hepasol oral liquid: solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",688181000168109,"Hepasol oral liquid solution, 500 mL, bottle" -49530011000036102,"PKU Cooler20 Purple oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725821000168105,"PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches" -160441000036103,"Oxycontin Reformulation 40 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929123011000036101,"Oxycontin 40 mg modified release tablet, 28, blister pack" -689761000168109,"Kenacomb Otic ear ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758301000168100,"Kenacomb Otic ear ointment, 5 g, tube" -74734011000036101,"Infanrix Penta injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836751000168103,"Infanrix Penta injection suspension, 0.5 mL syringe" -823891000168106,"exenatide 2 mg modified release injection [1 cartridge] (&) inert substance diluent [1 cartridge], 1 pack",900000000000526001,"REPLACED BY association reference set",833281000168105,"exenatide 2 mg/dose + inert substance modified release injection, 1 dual chamber device" -933196621000036100,"Recombinate 500 IU (octocog alfa 500 international units) injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",710901000168108,"Recombinate (octocog alfa 500 units) powder for injection, 500 units vial" -75388011000036109,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823211000168101,"human papillomavirus bivalent vaccine injection, 20 x 0.5 mL syringes" -81149011000036101,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868321000168100,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag" -23085011000036103,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet",900000000000526001,"REPLACED BY association reference set",851001000168109,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet" -91841000036100,"Prostin E2 800 microgram/mL vaginal gel, 2.5 mL, syringe",900000000000526001,"REPLACED BY association reference set",1005411000168107,"Prostin E2 2 mg/3 g vaginal gel, 3 g syringe" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826101000168103,"Streptococcus pneumoniae type 4 conjugate antigen" -711971000168105,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005211000168106,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -706411000168103,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831391000168104,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack" -140801000036108,"Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006091000168103,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -703041000168103,"influenza virus quadrivalent vaccine 2015 injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",709791000168106,"influenza quadrivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes" -827901000168104,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845901000168106,"meningococcal C conjugate vaccine injection, 0.5 mL syringe" -706391000168103,"measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831371000168100,"measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack" -728371000168106,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872081000168107,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe" -80645011000036105,"Eye Stream eye solution, 120 mL",900000000000526001,"REPLACED BY association reference set",834171000168104,"Eye Stream eye solution, 120 mL" -19862011000036106,"Repalyte powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871931000168100,"Repalyte powder for oral liquid, 10 x 4.9 g sachets" -50210011000036105,"Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689101000168109,"Leukoflex (1124) 5 cm x 5 m tape, 1 roll, carton" -74253011000036107,"Cervarix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823161000168109,"Cervarix injection suspension, 0.5 mL syringe" -37548011000036108,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L, bottle",900000000000526001,"REPLACED BY association reference set",834951000168105,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L, bottle" -689741000168105,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758281000168104,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g" -86125011000036104,"Levetiracetam (Chemmart) 1 g tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003291000168101,"Levetiracetam 1000 (Chemmart) 1 g tablet, 60, blister pack" -922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826081000168105,"Streptococcus pneumoniae type 6A conjugate antigen" -35581011000036107,"Movicol-Half solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674131000168105,"Movicol-Half powder for oral liquid, 30 sachets" -86755011000036106,"Calcia plus Vitamin D 200 IU chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860101000168108,"Calcia plus Vitamin D 200 IU chewable tablet, 120" -158321000036106,"Oxycontin Reformulation 80 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6514011000036109,"Oxycontin 80 mg modified release tablet" -71741000036100,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",862031000168103,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 100" -50530011000036105,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725221000168109,"PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets" -926342011000036108,"Priorix powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831151000168106,"Priorix powder for injection, 10 vials" -74749011000036104,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955121000168107,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial" -22920011000036100,"interferon alfa-2b 30 million units/1.2 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",722771000168107,"interferon alfa-2b 30 million units/1.2 mL injection" -653591000168103,"Retinofluor 500 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",721161000168107,"Retinofluor 10% 500 mg/5 mL injection solution, 5 mL vial" -73871000036100,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862111000168107,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60, bottle" -48775011000036109,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689201000168100,"Leukoplast (1072) 5 cm x 2.5 m tape" -143831000036109,"dimethyl fumarate 120 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756221000168104,"dimethyl fumarate 120 mg enteric capsule" -81126011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867761000168107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag" -703031000168107,"Fluarix Tetra 2015 injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",709781000168108,"Fluarix Tetra 2015 injection suspension, 0.5 mL syringe" -925169011000036103,"Pemzo 20 mg capsule, 60, blister pack",900000000000526001,"REPLACED BY association reference set",717441000168103,"Pemzo 20 mg enteric capsule, 60, blister pack" -248051000168109,"Lophlex oral liquid: powder for, 27.8 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725201000168100,"PKU Lophlex Orange powder for oral liquid, 27.8 g sachet" -73659011000036105,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836521000168103,"poliovirus type 1 inactivated antigen" -141761000036107,"lanreotide 90 mg injection, 1 syringe",900000000000526001,"REPLACED BY association reference set",819531000168103,"lanreotide 90 mg/0.5 mL injection, 0.5 mL syringe" -929485011000036107,"Styptic Pencil (Covidien) 98.6% stick, 5 g",900000000000526001,"REPLACED BY association reference set",846171000168105,"Styptic Pencil (Covidien) 98.6% stick, 5 g" -57162011000036102,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715631000168104,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g" -662421000168102,"Metformin Hydrochloride (AN) 1 g film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",949401000168107,"Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90" -74202011000036106,"Azep 140 microgram/actuation nasal spray, 20 mL",900000000000526001,"REPLACED BY association reference set",809611000168107,"Azep 0.1% nasal spray, 20 mL" -933231821000036102,"Fluoride Moose Mallow (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932561000168100,"Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL, aerosol can" -91321000036101,"Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",730071000168109,"Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial" -74429011000036108,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",826461000168109,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack" -923450011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",717331000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 56" -34700011000036105,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835621000168107,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL, bottle" -85194011000036105,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",843091000168100,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30" -823861000168104,"Bydureon (exenatide 2 mg) modified release injection, 2 mg cartridge",900000000000526001,"REPLACED BY association reference set",833271000168107,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose" -141751000036109,"Somatuline Autogel 90 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819541000168107,"Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe" -84661011000036102,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873101000168109,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags" -54127011000036103,"Logicin Rapid Relief original flavour lozenge",900000000000526001,"REPLACED BY association reference set",861601000168106,"Logicin Rapid Relief original flavour lozenge" -56950011000036106,"Clozole Vaginal Cream (Chemists' Own) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715551000168109,"Clozole (Chemists' Own) 1% vaginal cream, 35 g" -56763011000036103,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 2",900000000000526001,"REPLACED BY association reference set",844171000168103,"Combantrin-1 with Mebendazole 100 mg tablet, 2" -821631000168109,"Coxiella burnetii antigen 2.5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955101000168103,"Q fever skin test injection, 0.5 mL vial" -162561000036102,"Moviprep Orange powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902161000168100,"Moviprep B powder for oral liquid, sachet" -74325011000036100,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",821451000168100,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack" -81690011000036100,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867741000168108,"glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag" -85091011000036101,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet",900000000000526001,"REPLACED BY association reference set",843071000168101,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet" -56716011000036108,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2",900000000000526001,"REPLACED BY association reference set",996181000168105,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2" -680631000168104,"Zaldiar Combination Therapy film-coated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",1027841000168105,"Zaldiar film-coated tablet, 20, blister pack" -81728011000036101,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871651000168104,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets" -27965011000036101,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 120",900000000000526001,"REPLACED BY association reference set",860261000168103,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 120" -159231000036106,"Oxycontin Reformulation 15 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928246011000036109,"Oxycontin 15 mg modified release tablet, 28" -922538011000036109,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 15",900000000000526001,"REPLACED BY association reference set",829711000168107,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 15" -63527011000036105,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 4",900000000000526001,"REPLACED BY association reference set",996231000168104,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 4" -75115011000036107,"Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840571000168103,"diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial" -74861011000036105,"Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083611000168107,"Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL, pump pack" -71431000036101,"mesalazine 1.5 g granules, 60 sachets",900000000000526001,"REPLACED BY association reference set",1084241000168105,"mesalazine 1.5 g modified release granules, 60 sachets" -54006011000036101,"Paxyl 2.5% / 0.1% spray solution",900000000000526001,"REPLACED BY association reference set",861641000168108,"Paxyl 2.5% / 0.1% spray solution" -38615011000036107,"atropine sulfate 400 microgram/mL injection, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850411000168107,"atropine sulfate monohydrate 400 microgram/mL injection, 50 x 1 mL ampoules" -139081000036103,"exenatide 2 mg injection [4 vials] (&) inert substance diluent [4 syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",833911000168106,"exenatide 2 mg modified release injection [1 vial] (&) inert substance diluent [1 syringe], 4 x 1 packs" -81712011000036109,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868351000168108,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag" -94221000036107,"Ostelin Vitamin D and Calcium chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",861911000168104,"Ostelin Vitamin D and Calcium chewable tablet, 60" -125421000036107,"Perjeta 420 mg/14 mL injection solution, 14 mL vial",900000000000526001,"REPLACED BY association reference set",1085731000168106,"Perjeta 420 mg/14 mL concentrated injection, 14 mL vial" -73949011000036106,"Priorix (measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831041000168105,"Priorix (measles + mumps + rubella live vaccine) powder for injection, vial" -246071000168104,"PKU Cooler15 Orange oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725631000168109,"PKU Cooler 15 Orange oral liquid solution, 130 mL pouch" -65210011000036100,"Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 5 mL ampoule",900000000000526001,"REPLACED BY association reference set",701541000168108,"Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 5 mL ampoule" -25391000036107,"heparin sodium + sodium chloride",900000000000526001,"REPLACED BY association reference set",858621000168104,"heparin + sodium chloride" -51444011000036103,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",724071000168104,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL pouches" -69331000036101,"Calcium carbonate / colecalciferol (Winthrop)",900000000000526001,"REPLACED BY association reference set",69371000036104,"Risedronate EC Combi D (Winthrop)" -30586011000036108,"Cilamox sugar free 250 mg/5 mL powder for oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",932911000168107,"Cilamox 250 mg/5 mL powder for oral liquid, 100 mL" -43911000036104,"Remeron 45 mg tablet: orally disintegrating, 30",900000000000526001,"REPLACED BY association reference set",783881000168100,"Remeron Soltab 45 mg orally disintegrating tablet, 30" -929271011000036101,"citric acid 11.81 g + magnesium carbonate heavy 7.87 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 20 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",833461000168100,"picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 x 20 g sachets" -73945011000036109,"Menjugate Syringe (meningococcal group C conjugate vaccine 10 microgram) powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",826411000168106,"Menjugate Syringe (meningococcal C conjugate vaccine) powder for injection, 10 microgram vial" -74798011000036100,"Otrivin Junior 0.05% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085321000168109,"Otrivin Junior 0.05% nasal spray, 10 mL, pump pack" -900053011000036105,"Voltaren Emulgel 1% gel, 50 g, tube",900000000000526001,"REPLACED BY association reference set",1037081000168105,"Voltaren Emulgel 1.16% gel, 50 g, tube" -137961000036103,"Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial",900000000000526001,"REPLACED BY association reference set",746861000168106,"Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial" -75028011000036104,"hepatitis B vaccine 20 microgram/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825201000168103,"hepatitis B adult vaccine 20 microgram/mL injection, syringe" -52307011000036108,"salicylic acid 2% (20 mg/g) + sulfur-precipitated 2% (20 mg/g) cream, 100 g",900000000000526001,"REPLACED BY association reference set",695831000168106,"salicylic acid 2% + precipitated sulfur 2% + aqueous cream, 100 g" -650791000168104,"dressing hydrofibre alternate to alginates 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745011000168105,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon" -828321000168108,"Haemophilus influenzae type b conjugate (PRP-TT) antigen + Neisseria meningitidis group C polysaccharide antigen",900000000000526001,"REPLACED BY association reference set",846041000168102,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine" -31441000036108,"Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083761000168102,"Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL, pump pack" -31431000036103,"Typherix 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827141000168104,"Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes" -28172011000036105,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041411000168102,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, 0.75 mL injection device" -12059011000036100,"Nemdyn Otic ointment, 10 g",900000000000526001,"REPLACED BY association reference set",689861000168100,"Nemdyn Otic ear ointment, 10 g" -844801000168100,"Zovirax 400 mg tablet, 70",900000000000526001,"REPLACED BY association reference set",859541000168101,"Zovirax Dispersible 400 mg tablet, 70" -663781000168101,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension",900000000000526001,"REPLACED BY association reference set",833501000168100,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension" -20211011000036105,"Dysport 500 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721051000168106,"Dysport 500 units powder for injection, 1 vial" -56584011000036104,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 20 mL",900000000000526001,"REPLACED BY association reference set",721901000168108,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL" -73818011000036100,"Engerix-B Adult 20 microgram/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",825211000168100,"Engerix-B Adult 20 microgram/mL injection suspension, syringe" -171000168107,"Femazole 150 mg capsule: hard, 1 capsule",900000000000526001,"REPLACED BY association reference set",685551000168101,"Femazole Duo 150 mg hard capsule, 1" -29241000036107,"typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827151000168102,"typhoid inactivated vaccine injection, 0.5 mL syringe" -32960011000036107,"Soflax",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",733621000168105,"Soflax (Ascent Pharma)" -235711000168101,"Prozero oral liquid: solution, 1 L bottle",900000000000526001,"REPLACED BY association reference set",745381000168101,"Prozero oral liquid solution, 1 L carton" -72131000036101,"salicylic acid 2% conditioner, 200 mL",900000000000526001,"REPLACED BY association reference set",764291000168102,"salicylic acid 2% conditioner, 200 mL" -33244011000036100,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",707301000168106,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack" -6738011000036107,"Lofenoxal uncoated tablet",900000000000526001,"REPLACED BY association reference set",851011000168107,"Lofenoxal uncoated tablet" -51423011000036103,"gauze and cotton tissue combine roll 10 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688611000168106,"gauze and cotton tissue combine roll 10 cm x 10 m wrapped pack roll, 1" -896601000168100,"PKU Sphere",900000000000526001,"REPLACED BY association reference set",922511000168101,"PKU Sphere20" -930673011000036101,"Menveo injection: suspension, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826791000168105,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack" -37859011000036101,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose 320 mg/4 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",863561000168107,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, ampoule" -17951011000036106,"Dymadon Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835791000168103,"Dymadon Forte uncoated tablet, 20, blister pack" -74208011000036109,"Adacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837521000168101,"Adacel injection suspension, 5 x 0.5 mL vials" -823851000168101,"exenatide 2 mg modified release injection, cartridge",900000000000526001,"REPLACED BY association reference set",833261000168101,"exenatide 2 mg/dose + inert substance modified release injection, dose" -682151000168104,"Reandron 1 g/4 mL injection: solution, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722961000168103,"Reandron-1000 1 g/4 mL modified release injection, 4 mL vial" -62059011000036105,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge",900000000000526001,"REPLACED BY association reference set",995571000168105,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge" -56686011000036103,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721571000168105,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL" -78328011000036105,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",861761000168104,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 100" -74862011000036104,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825131000168100,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial" -76622011000036107,"Sandocal 1000 tablets: effervescent, 10",900000000000526001,"REPLACED BY association reference set",745621000168108,"Sandocal 1000 effervescent tablet, 10" -50929011000036105,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694141000168108,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape" -34010011000036106,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",835601000168103,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution" -689801000168101,"Otocomb Otic ear ointment",900000000000526001,"REPLACED BY association reference set",758361000168104,"Otocomb Otic ear ointment" -700401000168104,"ADT Booster injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837351000168102,"ADT Booster injection suspension, 5 x 0.5 mL syringes" -27637011000036104,"paracetamol 500 mg + codeine phosphate 15 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",90181000036105,"paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20" -650821000168107,"Aquacel (403770) 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745041000168109,"Aquacel (403770) 2 cm x 45 cm ribbon, 5" -80221011000036108,"Eye Stream eye solution",900000000000526001,"REPLACED BY association reference set",834151000168108,"Eye Stream eye solution" -84295011000036101,"Clotrimazole 6 Day (Apo) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715791000168106,"Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g, tube" -48744011000036109,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688891000168103,"Hypafix (71443-0) 2.5 cm x 10 m tape" -650831000168105,"Aquacel (403770) 2 cm x 45 cm rope, 5, carton",900000000000526001,"REPLACED BY association reference set",745051000168106,"Aquacel (403770) 2 cm x 45 cm ribbon, 5, carton" -75354011000036108,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839631000168108,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe" -110361000036105,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10, carton",900000000000526001,"REPLACED BY association reference set",1056301000168103,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10, carton" -78107011000036105,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 1 L",900000000000526001,"REPLACED BY association reference set",705981000168108,"glycerol 10% + cetomacrogol aqueous cream, 1 L" -46309011000036106,"betamethasone (as dipropionate) 0.05% lotion, 30 mL",900000000000526001,"REPLACED BY association reference set",1054601000168102,"betamethasone (as dipropionate) 0.05% lotion, 30 mL" -87003011000036104,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% nasal drops, 12 x 1.8 g sachets",900000000000526001,"REPLACED BY association reference set",758691000168104,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 12 x 1.8 g sachets" -26411000036100,"Movicol Chocolate solution: powder for, 1 sachet",900000000000526001,"REPLACED BY association reference set",674001000168102,"Movicol Chocolate powder for oral liquid, 1 sachet" -923088011000036105,"Omeprazole (Pharmacor) 20 mg capsule",900000000000526001,"REPLACED BY association reference set",717051000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule" -138001000036100,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",846051000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial" -73515011000036107,"pancreatic extract 40 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847331000168107,"lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule, 100" -120491000036100,"Canesten Plus cream, 30 g",900000000000526001,"REPLACED BY association reference set",715881000168104,"Canesten Plus cream, 30 g" -88101000036103,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate anhydrous 2.51 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet",900000000000526001,"REPLACED BY association reference set",861831000168100,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet" -74884011000036106,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832261000168107,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials" -702651000168104,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837421000168100,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials" -702631000168105,"diphtheria toxoid vaccine 2 Lf/0.5 mL + tetanus toxoid vaccine 2 Lf/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837401000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 10 x 0.5 mL vials" -921855011000036102,"Macu-Vision tablet: film-coated, 90, bottle",900000000000526001,"REPLACED BY association reference set",757931000168107,"Macu-Vision film-coated tablet, 90, bottle" -652281000168106,"Cal-500 500 mg (calcium 500 mg) chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",859771000168103,"Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60, bottle" -85057011000036102,"Glycoprep powder for oral liquid, 200 g, sachet",900000000000526001,"REPLACED BY association reference set",851571000168107,"Glycoprep powder for oral liquid, 200 g sachet" -929647011000036108,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723991000168101,"PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets" -80523011000036102,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863981000168106,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags" -57207011000036102,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715721000168109,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g" -74959011000036106,"Haemophilus influenzae type b vaccine + hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",832271000168101,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine" -11831011000036103,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729831000168106,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices" -702611000168100,"diphtheria toxoid vaccine 2 Lf/0.5 mL + tetanus toxoid vaccine 2 Lf/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837381000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 0.5 mL vial" -81127011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",867791000168100,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags" -43977011000036108,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835531000168106,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL, bottle" -74432011000036100,"Boostrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840731000168105,"Boostrix-IPV injection suspension, 0.5 mL syringe" -152531000036102,"Atrovent 22 microgram/actuation nasal spray, 180 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085371000168105,"Atrovent 22 microgram/actuation nasal spray, 180 actuations, pump pack" -83017011000036101,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 5 x 60 mL",900000000000526001,"REPLACED BY association reference set",689531000168105,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 5 x 60 mL" -74859011000036104,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822711000168102,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack" -27393011000036109,"etoposide 100 mg injection, 1 vial",900000000000526001,"REPLACED BY association reference set",793421000168100,"etoposide phosphate 113.6 mg (etoposide 100 mg) injection, 1 vial" -81771000036102,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703541000168109,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial" -931421011000036109,"Medi Quattro First Aid cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",863551000168105,"Medi Quattro First Aid cream, 50 g, tube" -761901000168104,"Co-Phenylcaine Forte nasal spray, 2.5 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",791951000168102,"Co-Phenylcaine Forte nasal spray, 2.5 mL, pump pack" -74757011000036108,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825241000168101,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe" -924888011000036107,"Pemzo 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",716931000168103,"Pemzo 20 mg enteric capsule, 56" -933196061000036100,"Levetiracetam (GH) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003381000168108,"Levetiracetam 1000 (GH) 1 g film-coated tablet" -41565011000036106,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693301000168106,"Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules" -52891000168101,"Fluoride Witchy Candy Mint (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)" -924422011000036108,"First Aid (Guardian) cream",900000000000526001,"REPLACED BY association reference set",861541000168107,"First Aid (Guardian) cream" -86728011000036104,"Orabase Protective Paste oromucosal paste, 5 g",900000000000526001,"REPLACED BY association reference set",797601000168104,"Orabase Protective paste, 5 g" -85741011000036109,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24",900000000000526001,"REPLACED BY association reference set",996041000168104,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24" -87064011000036101,"Sorbolene Cream with Glycerin (Pharmacy Select) cream",900000000000526001,"REPLACED BY association reference set",705761000168102,"Sorbolene Cream with Glycerin (Pharmacy Select) cream" -73782011000036102,"Havrix 1440 ELISA units/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",824711000168108,"Havrix 1440 ELISA units/mL injection suspension, vial" -44100011000036103,"Zovirax 200 mg dispersible tablet, 25, bottle",900000000000526001,"REPLACED BY association reference set",859201000168100,"Zovirax Dispersible 200 mg tablet, 25, bottle" -75513011000036103,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845901000168106,"meningococcal C conjugate vaccine injection, 0.5 mL syringe" -82406011000036101,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag",900000000000526001,"REPLACED BY association reference set",872421000168101,"Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag" -73634011000036105,"human papillomavirus (type 11) vaccine",900000000000526001,"REPLACED BY association reference set",822731000168107,"human papillomavirus type 11 antigen" -76553011000036105,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL",900000000000526001,"REPLACED BY association reference set",705851000168109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL" -81021011000036108,"Metomax capsule, 10, blister pack",900000000000526001,"REPLACED BY association reference set",867321000168101,"Metomax capsule, 10, blister pack" -101141000036103,"Victoza 18 mg/3 mL injection: solution, 2 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748081000168108,"Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices" -941651000168109,"Metformin (AS) 1 g film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",949541000168105,"Metformin 1000 (AS) 1 g film-coated tablet, 90" -757481000168104,"Ursodox 250 mg capsule: hard, 60",900000000000526001,"REPLACED BY association reference set",765981000168109,"Ursodox (GH) 250 mg hard capsule, 60" -711831000168103,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005091000168109,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -74930011000036101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845981000168103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -125361000036107,"adrenaline 500 microgram/0.3 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",726601000168107,"adrenaline (epinephrine) 500 microgram/0.3 mL injection, dose" -74803011000036105,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822941000168100,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes" -139231000036107,"Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005911000168104,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -933195961000036105,"Levetiracetam (MPPL) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003541000168106,"Levetiracetam 1000 (MPPL) 1 g film-coated tablet" -757491000168101,"Ursodox 250 mg capsule: hard, 60, blister pack",900000000000526001,"REPLACED BY association reference set",765991000168107,"Ursodox (GH) 250 mg hard capsule, 60, blister pack" -74281011000036101,"Twinrix injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824621000168108,"Twinrix injection suspension, 1 mL syringe" -50926011000036101,"tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688881000168101,"tape non woven retention polyacrylate 2.5 cm x 10 m tape" -73850011000036108,"Cervarix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823141000168105,"Cervarix injection suspension, 0.5 mL syringe" -34708011000036107,"Codeine Phosphate (Phebra) 50 mg/mL injection: solution, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",835671000168108,"Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules" -69776011000036107,"lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose",900000000000526001,"REPLACED BY association reference set",861201000168108,"sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose" -5779011000036104,"Trifeme (levonorgestrel 125 microgram + ethinyloestradiol 30 microgram) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",792841000168103,"Trifeme (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet" -923902011000036101,"Omeprazole (Pharmacor) 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",717241000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 30, bottle" -711401000168107,"Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005041000168101,"Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule" -73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822281000168100,"rotavirus type P1A(8) live antigen" -806101000168109,"Repatha 140 mg/mL injection: solution, 1 mL injection device",900000000000526001,"REPLACED BY association reference set",846381000168105,"Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device" -14139011000036102,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041371000168103,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device" -74750011000036107,"Decongestant (Amcal) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083561000168109,"Decongestant (Amcal) 0.05% nasal spray, 20 mL, pump pack" -49492011000036100,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725211000168102,"PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets" -927314011000036106,"hepatitis B vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825481000168105,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes" -75530011000036101,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack",900000000000526001,"REPLACED BY association reference set",831111000168105,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack" -40066011000036107,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",693411000168100,"Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 20 mL ampoule" -53647011000036103,"Anti Fungal V 3 Day (Amcal) 2% cream",900000000000526001,"REPLACED BY association reference set",714881000168100,"Anti Fungal V 3 Day (Amcal) 2% vaginal cream" -85340011000036101,"Levetiracetam (Terry White Chemists) 1 g tablet",900000000000526001,"REPLACED BY association reference set",1003751000168100,"Levetiracetam 1000 (Terry White Chemists) 1 g tablet" -56844011000036108,"Disprin Original 300 mg dispersible tablet, 24",900000000000526001,"REPLACED BY association reference set",804251000168109,"Disprin Original 300 mg tablet, 24" -700381000168104,"ADT Booster injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837331000168108,"ADT Booster injection suspension, 0.5 mL syringe" -73819011000036108,"Rabipur (rabies inactivated vaccine 2.5 units) powder for injection, 2.5 units vial",900000000000526001,"REPLACED BY association reference set",821361000168108,"Rabipur (rabies vaccine) powder for injection, 2.5 units vial" -69221000036106,"carbomer",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",716151000168107,"carbomer-974P" -172951000036100,"Levactam 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003061000168101,"Levactam-1000 1 g film-coated tablet" -463061000168109,"Lyxumia 20 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719271000168100,"Lyxumia 20 microgram/dose injection solution, 14 doses" -80218011000036105,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",867971000168104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag" -700028641000036109,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810271000168105,"Actonel EC Combi D effervescent granules, 24 sachets" -75468011000036104,"Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837591000168104,"diphtheria + tetanus + pertussis 5 component child vaccine injection, 5 x 0.5 mL vials" -656221000168108,"Levetiracetam (AN) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003151000168104,"Levetiracetam 1000 (AN) 1 g film-coated tablet, 60" -27939011000036105,"calcium (as citrate) 250 mg (calcium 250 mg) tablet, 120",900000000000526001,"REPLACED BY association reference set",860041000168106,"calcium citrate 1.19 g (calcium 250 mg) tablet, 120" -75477011000036106,"Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832331000168106,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 10 x 0.5 mL vials" -33286011000036100,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715321000168105,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g" -700027401000036109,"Probitor 20 mg capsule, 14 capsules, blister pack",900000000000526001,"REPLACED BY association reference set",715921000168106,"Probitor 20 mg enteric capsule, 14, blister pack" -711411000168105,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005061000168102,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -933226181000036100,"Fluoride Bumble Bee Bubble Gum (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932371000168100,"Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL" -927717011000036104,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 1920 million CFU injection, vial",900000000000526001,"REPLACED BY association reference set",1045931000168103,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial" -76552011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg",900000000000526001,"REPLACED BY association reference set",705921000168109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg" -726861000168109,"adrenaline 300 microgram/0.3 mL injection, 60 doses",900000000000526001,"REPLACED BY association reference set",726721000168105,"adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose" -80654011000036109,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868451000168102,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag" -689591000168109,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",831301000168105,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack" -75378011000036104,"hepatitis B vaccine 20 microgram/mL injection, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825281000168106,"hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL syringes" -900821000168101,"PKU Sphere powder for oral liquid, 35 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922531000168106,"PKU Sphere20 Red Berry powder for oral liquid, 35 g sachet" -900841000168107,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922541000168102,"PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets" -75039011000036109,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836651000168107,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe" -67276011000036107,"Panadol Children's 7+ Years 250 mg tablet: soluble, 24",900000000000526001,"REPLACED BY association reference set",721611000168101,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24" -63525011000036100,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",996171000168107,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 2" -4668011000036102,"Kenacomb Otic ointment",900000000000526001,"REPLACED BY association reference set",758271000168102,"Kenacomb Otic ear ointment" -703281000168102,"meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",828051000168102,"meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -61132011000036105,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861261000168109,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16, blister pack" -929723011000036105,"aluminium sulfate hydrate 98.6% stick",900000000000526001,"REPLACED BY association reference set",846141000168103,"aluminium sulfate 98.6% stick" -61929011000036104,"dexchlorpheniramine maleate 2 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet",900000000000526001,"REPLACED BY association reference set",45330011000036109,"paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet" -933247391000036100,"Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728121000168108,"Ovidrel 250 microgram/0.5 mL injection solution, 1 dose, injection device" -13157011000036107,"Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722851000168108,"Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL" -50422011000036103,"Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694041000168109,"Leukopor (2474) 5 cm x 5 m tape, 1 roll, carton" -134961000036106,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",821531000168105,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack" -73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822241000168105,"rotavirus type G1 live antigen" -860201000168104,"Ostelin Osteoguard film-coated tablet",900000000000526001,"REPLACED BY association reference set",932961000168105,"Ostelin Osteoguard film-coated tablet" -26911000036106,"Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827111000168103,"Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -925141011000036106,"Omepro 20 mg capsule, 7, blister pack",900000000000526001,"REPLACED BY association reference set",716901000168105,"Omepro 20 mg enteric capsule, 7, blister pack" -700361000168108,"ADT Booster injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837311000168103,"ADT Booster injection suspension, 0.5 mL syringe" -6888011000036103,"Etopophos 1 g injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",793591000168104,"Etopophos 1.136 g (etoposide 1 g) powder for injection, 1.136 g vial" -83697011000036106,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873061000168106,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag" -38588011000036105,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose 320 mg/4 mL injection, 5 x 4 mL ampoules",900000000000526001,"REPLACED BY association reference set",863581000168103,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, 5 x 4 mL ampoules" -924706011000036105,"Pemzo 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",716511000168104,"Pemzo 20 mg enteric capsule, 280" -900851000168109,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922551000168100,"PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets" -2796011000036102,"paper wasp venom",900000000000526001,"REPLACED BY association reference set",758491000168102,"paper wasp venom" -13362011000036106,"Panadeine Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835991000168101,"Panadeine Forte uncoated tablet, 20" -61161000036106,"Rehydration Formula Effervescent (Guardian) effervescent tablet",900000000000526001,"REPLACED BY association reference set",871751000168108,"Rehydration Formula Effervescent (Guardian) effervescent tablet" -21772011000036108,"triamcinolone + neomycin sulfate + gramicidin + nystatin",900000000000526001,"REPLACED BY association reference set",758201000168107,"triamcinolone + neomycin + gramicidin + nystatin" -6246011000036102,"Movicol solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",673961000168103,"Movicol powder for oral liquid, sachet" -41561011000036109,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693351000168105,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules" -844481000168106,"Zovirax 800 mg tablet",900000000000526001,"REPLACED BY association reference set",859211000168102,"Zovirax Dispersible 800 mg tablet" -33106011000036103,"Femizol Clotrimazole Thrush Treatment 3 Day 2% cream",900000000000526001,"REPLACED BY association reference set",715511000168108,"Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream" -925157011000036101,"Pemzo 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",716721000168103,"Pemzo 20 mg enteric capsule, 30, blister pack" -34731011000036105,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",834801000168101,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100, blister pack" -65312011000036107,"Cepacol 0.05% mouthwash",900000000000526001,"REPLACED BY association reference set",994961000168108,"Cepacol 0.05% mouthwash" -54032011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",648751000168109,"Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 5 mL" -931866011000036100,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle",900000000000526001,"REPLACED BY association reference set",872761000168100,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle" -684041000168108,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",838191000168106,"Pneumovax-23 injection solution, 10 x 0.5 mL syringes" -74850011000036105,"Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085361000168104,"Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL, pump pack" -78371000036104,"Clopidogrel/Aspirin 75/100 (Apo) tablet",900000000000526001,"REPLACED BY association reference set",923061000168104,"Clopidogrel/Aspirin 75/100 (Apo) coated tablet" -154341000036108,"Celestone Chronodose injection: suspension, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",746351000168100,"Celestone Chronodose injection suspension, 5 x 1 mL ampoules" -74729011000036102,"Cervarix injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823231000168106,"Cervarix injection suspension, 20 x 0.5 mL syringes" -56585011000036100,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721481000168109,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL" -19980011000036101,"Creon 10 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847471000168103,"Creon 10 000 enteric capsule, 100, bottle" -923724011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 98, blister pack",900000000000526001,"REPLACED BY association reference set",717501000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 98, blister pack" -728001000168103,"Lovan 20 mg dispersible tablet, 7",900000000000526001,"REPLACED BY association reference set",844771000168102,"Lovan 20 mg tablet, 7" -828341000168102,"Menitorix (Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",846061000168103,"Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial" -639751000168104,"BCG Vaccine (Sanofi Pasteur) (inert substance) diluent, 1 mL vial",900000000000526001,"REPLACED BY association reference set",700151000168108,"BCG Vaccine (Sanofi Pasteur) (inert substance) diluent, 1.5 mL vial" -32643011000036106,"potassium",900000000000526001,"REPLACED BY association reference set",988221000168100,"potassium acetate" -80674011000036107,"Gastrolyte fruit powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871841000168100,"Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets" -923981011000036106,"plerixafor 24 mg/1.2 mL subcutaneous infusion injection, vial",900000000000526001,"REPLACED BY association reference set",891101000168101,"plerixafor 24 mg/1.2 mL injection, vial" -85406011000036103,"Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872351000168103,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag" -74370011000036105,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832221000168102,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial" -74426011000036104,"Quadracel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",840661000168105,"Quadracel injection suspension, 5 x 0.5 mL vials" -75453011000036100,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824871000168108,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL syringe" -74958011000036103,"hepatitis A inactivated vaccine",900000000000526001,"REPLACED BY association reference set",824641000168102,"hepatitis A vaccine" -154311000036107,"Celestone Chronodose injection: suspension, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",746341000168102,"Celestone Chronodose injection suspension, 5 x 1 mL ampoules" -23147011000036109,"buprenorphine 2 mg tablet",900000000000526001,"REPLACED BY association reference set",685571000168105,"buprenorphine 2 mg sublingual tablet" -921975011000036108,"Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695341000168107,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle" -11398011000036102,"Puri-Nethol 50 mg uncoated tablet, 25",900000000000526001,"REPLACED BY association reference set",845451000168100,"Puri-Nethol 50 mg uncoated tablet, 25" -653711000168101,"Retinofluor 1 g/10 mL injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",721851000168104,"Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials" -933234931000036107,"Omeprazole (Sandoz) 20 mg capsule",900000000000526001,"REPLACED BY association reference set",716161000168109,"Omeprazole (Sandoz) 20 mg enteric capsule" -54197011000036106,"Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution",900000000000526001,"REPLACED BY association reference set",721261000168101,"Difflam Anti-Inflammatory Throat 0.15% oral spray" -76161011000036106,"Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 200 mL bottle",900000000000526001,"REPLACED BY association reference set",695771000168101,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 200 mL bottle" -75121011000036103,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection, vial",900000000000526001,"REPLACED BY association reference set",831031000168101,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial" -41221011000036108,"Voluven 6% / 0.9% injection solution, 20 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013421000168101,"Voluven injection solution, 20 x 500 mL bags" -26968011000036106,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 15 g",900000000000526001,"REPLACED BY association reference set",758231000168100,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 15 g" -75065011000036100,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",825091000168102,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, vial" -9041000036106,"Clinoleic 20% injection: emulsion, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771781000168103,"Clinoleic 20% injection emulsion, 250 mL bag" -44098011000036106,"Zovirax 400 mg dispersible tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",859571000168108,"Zovirax Dispersible 400 mg tablet, 100, blister pack" -59674011000036108,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721671000168109,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL, bottle" -73738011000036106,"Varivax",900000000000526001,"REPLACED BY association reference set",40011000168104,"Varivax Refrigerated" -74900011000036108,"Decongestant (Guardian) 0.05% nasal spray, 18 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083601000168109,"Decongestant (Guardian) 0.05% nasal spray, 18 mL, pump pack" -76162011000036100,"Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 100 mL vial",900000000000526001,"REPLACED BY association reference set",695261000168102,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 100 mL bottle" -34802011000036106,"Subutex 8 mg tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",685751000168109,"Subutex 8 mg sublingual tablet, 28, blister pack" -689651000168103,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831231000168105,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -51473011000036104,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725541000168101,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL pouches" -63231000036105,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871731000168102,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20" -73853011000036100,"Mencevax ACWY (meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",827701000168102,"Mencevax ACWY (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial" -78201011000036104,"psyllium dried 520 mg/g + senna dried 100 mg/g granules, 250 g",900000000000526001,"REPLACED BY association reference set",832451000168106,"dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules, 250 g" -683981000168101,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",838131000168107,"pneumococcal 23 valent vaccine injection, 0.5 mL syringe" -684021000168102,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838171000168105,"Pneumovax-23 injection solution, 0.5 mL syringe" -684001000168106,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838151000168101,"pneumococcal 23 valent vaccine injection, 0.5 mL syringe" -56395011000036104,"Zantac 150 mg/10 mL oral liquid: solution, 280 mL",900000000000526001,"REPLACED BY association reference set",783921000168107,"Zantac 150 mg/10 mL oral liquid, 280 mL" -711331000168106,"Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004541000168108,"Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag" -60989011000036104,"Logicin Rapid Relief original flavour lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861621000168102,"Logicin Rapid Relief original flavour lozenge, 16, blister pack" -39625011000036104,"Naropin",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711491000168101,"Naropin 0.75%" -953951000168101,"Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1087061000168106,"Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations, pump pack" -156001000036103,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",862201000168100,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120" -74201011000036100,"Azep 140 microgram/actuation nasal spray, 10 mL",900000000000526001,"REPLACED BY association reference set",809581000168100,"Azep 0.1% nasal spray, 10 mL" -55664011000036106,"Anti Fungal V 6 Day (Amcal) 1% cream, 50 g",900000000000526001,"REPLACED BY association reference set",715011000168100,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g" -137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711091000168107,"Ropivacaine 1% (Kabi)" -65691000036105,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871771000168104,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20, tube" -56847011000036102,"Disprin Original 300 mg dispersible tablet, 96",900000000000526001,"REPLACED BY association reference set",804231000168103,"Disprin Original 300 mg tablet, 96" -923849011000036106,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",746981000168108,"Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules" -933220801000036102,"Naropin 0.2% (200 mg/100 mL) injection: solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004541000168108,"Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag" -716021000168100,"meningococcal group A conjugate vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826661000168106,"meningococcal A conjugate vaccine injection, vial" -86891011000036102,"Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704511000168107,"Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial" -13615011000036105,"Oxynorm 5 mg/5 mL oral liquid: solution, 250 mL",900000000000526001,"REPLACED BY association reference set",815941000168103,"Oxynorm 1 mg/mL oral liquid solution, 250 mL" -89551000036100,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate anhydrous 2.51 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",861851000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet, 60" -82335011000036107,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850881000168104,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules" -81701011000036100,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868141000168108,"glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag" -930004011000036102,"Menveo injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826771000168109,"MenCWY injection solution, vial" -105531000036100,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703581000168104,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe" -26687011000036108,"entecavir monohydrate 500 microgram tablet, 30",900000000000526001,"REPLACED BY association reference set",829511000168101,"entecavir 500 microgram tablet, 30" -689611000168104,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack",900000000000526001,"REPLACED BY association reference set",831201000168103,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack" -75373011000036109,"hepatitis B vaccine 20 microgram/mL injection, 25 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825361000168106,"hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL vials" -931512011000036101,"Menveo injection: suspension, 1 pack, composite pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826731000168106,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack" -137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711051000168102,"Ropivacaine 0.5% (Kabi)" -65258011000036108,"Soap Enema (Orion) 50 mg/mL enema, bottle",900000000000526001,"REPLACED BY association reference set",685501000168100,"Soap Enema (Orion) 50 mg/mL enema" -684471000168105,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693491000168109,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules" -14601000036104,"Clinoleic 20% injection: emulsion, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771791000168100,"Clinoleic 20% injection emulsion, 250 mL bag" -922562011000036102,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",843231000168108,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 30" -36150011000036103,"Lanoxin 500 microgram/2 mL injection: solution, 2 mL ampoule",900000000000526001,"REPLACED BY association reference set",735051000168107,"Lanoxin Adult 500 microgram/2 mL injection solution, 2 mL ampoule" -73884011000036109,"Stamaril (Yellow fever live attenuated vaccine 1000 units) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",822201000168108,"Stamaril (yellow fever live vaccine) powder for injection, vial" -67421011000036102,"Cepacol Antibacterial Orange Citrus lozenge, 16",900000000000526001,"REPLACED BY association reference set",995191000168100,"Cepacol Antibacterial Orange Citrus lozenge, 16" -33048011000036102,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream",900000000000526001,"REPLACED BY association reference set",715311000168103,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream" -933225811000036109,"ropivacaine hydrochloride monohydrate 75 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004951000168104,"ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules" -716031000168102,"MenA 10 microgram powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",826671000168100,"MenA 10 microgram powder for injection, 10 microgram vial" -476131000168101,"Lophlex HCU LQ 20 oral liquid: solution, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725131000168102,"HCU Lophlex LQ 20 oral liquid solution, 125 mL pouch" -716041000168106,"meningococcal group C conjugate vaccine + meningococcal group W135 conjugate vaccine + meningococcal group Y (Neisseria meningitidis) conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826681000168102,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine" -360421000168105,"magnesium carbonate heavy 7.5 g + citric acid 14 g powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",830931000168108,"magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 1 sachet" -933036011000036101,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",766161000168108,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack" -27468011000036105,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",669081000168100,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets" -80643011000036109,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868151000168105,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag" -28001000168102,"Rivotril Drops",900000000000526001,"REPLACED BY association reference set",19081000168107,"Rivotril" -689631000168109,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",831221000168107,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack" -51953011000036100,"Salicylic Acid Paint (extemporaneous)",900000000000526001,"REPLACED BY association reference set",63591000168101,"Salicylic Acid APF (extemporaneous)" -74770011000036109,"Azep 140 microgram/actuation nasal spray, 20 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",809621000168100,"Azep 0.1% nasal spray, 20 mL, pump pack" -86597011000036109,"Aqueous Cream (David Craig)",900000000000526001,"REPLACED BY association reference set",768291000168105,"Aqueous Cream APF (David Craig)" -924207011000036103,"omeprazole 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",716641000168104,"omeprazole 20 mg enteric capsule, 50" -107551000036103,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056221000168101,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon" -75467011000036100,"Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837561000168106,"diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial" -933225701000036100,"Naropin 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004661000168108,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags" -922079011000036102,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet",900000000000526001,"REPLACED BY association reference set",757831000168103,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet" -69641000036101,"Calcium Carbonate (Winthrop) (calcium (as carbonate) 500 mg) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",852731000168106,"Calcium Carbonate (Winthrop) 1.25 g (calcium 500 mg) film-coated tablet" -88521000036101,"Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",730021000168108,"Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial" -932711011000036109,"Lasix High Dose 20 mg/2 mL injection: solution, 2 mL ampoule",900000000000526001,"REPLACED BY association reference set",704821000168102,"Lasix 20 mg/2 mL injection solution, 2 mL ampoule" -36624011000036106,"Primacor 10 mg/10 mL injection: solution, 10 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",719511000168105,"Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules" -39762011000036107,"Lignocaine Hydrochloride (Pfizer (Perth))",900000000000526001,"REPLACED BY association reference set",693201000168104,"Lignocaine (Pfizer)" -72601000036101,"Salofalk 1 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084171000168109,"Salofalk 1 g modified release granules, 100 sachets" -34292011000036101,"Codeine Phosphate (Phebra) 50 mg/mL injection: solution, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",835661000168102,"Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules" -80219011000036102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868051000168106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag" -360471000168106,"Go Kit powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",830941000168104,"Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet" -4047011000036104,"Panzytrat",900000000000526001,"REPLACED BY association reference set",846981000168106,"Panzytrat 25 000" -933226041000036108,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004801000168108,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, 5 x 200 mL bags" -73861011000036108,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822881000168104,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe" -82044011000036108,"Ungvita 0.054% ointment",900000000000526001,"REPLACED BY association reference set",694981000168100,"Ungvita 0.099% ointment" -74999011000036104,"Japanese encephalitis inactivated vaccine",900000000000526001,"REPLACED BY association reference set",822661000168107,"Japanese encephalitis (mouse brain-derived) inactivated vaccine" -113111000036101,"Pico-Salax powder for oral liquid, 16.1 g sachet",900000000000526001,"REPLACED BY association reference set",902091000168106,"Pico-Salax powder for oral liquid, 16.1 g sachet" -86743011000036107,"Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726731000168108,"Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose" -71449011000036104,"salicylic acid 3% (30 mg/g) + aqueous cream 970 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705451000168106,"salicylic acid 3% + aqueous cream, 100 g" -101391000036107,"Irbesartan (Apo) 300 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",807811000168100,"Irbesartan (Apo) 300 mg film-coated tablet, 30" -70291000036107,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862021000168101,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet" -75405011000036109,"hepatitis A inactivated vaccine 360 ELISA units + hepatitis B vaccine 10 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824531000168107,"hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe" -127351000036100,"TYR Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725871000168106,"TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches" -684451000168101,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693461000168102,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules" -922075011000036104,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet",900000000000526001,"REPLACED BY association reference set",829691000168109,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet" -923059011000036105,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746781000168106,"Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule" -75394011000036103,"Varicella zoster live attenuated vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831831000168106,"varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack" -6438011000036101,"Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722731000168109,"Intron A Redipen 18 million units/1.2 mL injection solution" -924205011000036108,"omeprazole 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",716411000168100,"omeprazole 20 mg enteric capsule, 28" -74966011000036105,"Bacillus Calmette and Guerin live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",822541000168107,"Mycobacterium bovis (BCG) live vaccine" -74938011000036104,"Quadracel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840611000168107,"Quadracel injection suspension, 0.5 mL vial" -930004011000036102,"Menveo injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826671000168100,"MenA 10 microgram powder for injection, 10 microgram vial" -716011000168107,"meningococcal group A conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826651000168109,"meningococcal A conjugate vaccine" -69625011000036109,"Aqium 66% gel, 375 mL, bottle",900000000000526001,"REPLACED BY association reference set",730531000168104,"Aqium 66% gel, 375 mL, bottle" -73676011000036104,"Yellow fever live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",821271000168105,"yellow fever virus live antigen" -923841011000036107,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827451000168105,"Prevenar-13 injection suspension, 0.5 mL syringe" -22919011000036101,"interferon alfa-2b 18 million units/1.2 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",722721000168106,"interferon alfa-2b 18 million units/1.2 mL injection" -5739011000036101,"Calcium Carbonate (Sanofi-Aventis) (calcium (as carbonate) 500 mg) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",852641000168107,"Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet" -159261000036100,"Oxycontin Reformulation 20 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928481011000036107,"Oxycontin 20 mg modified release tablet, 28" -924702011000036106,"Omepro 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",716421000168107,"Omepro 20 mg enteric capsule, 140" -181671000036100,"Diprosone 0.05% lotion",900000000000526001,"REPLACED BY association reference set",1054631000168109,"Diprosone 0.05% lotion" -51311000168105,"Fluoride Moose Mallow (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)" -33583011000036101,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881211000168109,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device" -139261000036101,"Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006111000168106,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -74571000036100,"Salofalk 1 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084181000168107,"Salofalk 1 g modified release granules, 100 sachets" -70431000036107,"Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 1 sachet",900000000000526001,"REPLACED BY association reference set",810571000168108,"Risedronate EC Combi D (Winthrop) effervescent granules, 1 sachet" -85777011000036102,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet, 1 x Bisacodyl (Fresenius Kabi) suppository), 1 pack",900000000000526001,"REPLACED BY association reference set",831441000168100,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack" -19997011000036104,"Prodeine 15 uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835701000168109,"Prodeine 15 uncoated tablet, 20, blister pack" -61765011000036100,"dexchlorpheniramine + paracetamol + pseudoephedrine",900000000000526001,"REPLACED BY association reference set",44924011000036104,"paracetamol + pseudoephedrine + chlorphenamine" -89541000036103,"Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",861861000168108,"Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60" -101351000036103,"Irbesartan (Apo) 150 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",807781000168102,"Irbesartan (Apo) 150 mg film-coated tablet, 30" -108721000036104,"dressing hydrogel 10 cm x 10 cm foam dressing, 10",900000000000526001,"REPLACED BY association reference set",1056331000168105,"dressing hydrophobic 10 cm x 10 cm foam dressing, 10" -925140011000036104,"Omepro 20 mg capsule, 14, blister pack",900000000000526001,"REPLACED BY association reference set",716381000168103,"Omepro 20 mg enteric capsule, 14, blister pack" -711431000168100,"Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004991000168109,"Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule" -80176011000036100,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",863671000168102,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag" -73657011000036103,"Bordetella pertussis, acellular pertussis toxoid vaccine",900000000000526001,"REPLACED BY association reference set",836241000168107,"Bordetella pertussis toxoid" -88531000036104,"Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",730051000168100,"Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial" -70331000036104,"mesalazine 500 mg granules, sachet",900000000000526001,"REPLACED BY association reference set",1084021000168107,"mesalazine 500 mg modified release granules, sachet" -73796011000036102,"Gardasil injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822971000168107,"Gardasil injection suspension, 0.5 mL vial" -11549011000036104,"Baraclude 500 microgram tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",829521000168108,"Baraclude 500 microgram film-coated tablet, 30" -81693011000036108,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",867851000168100,"glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags" -32960011000036107,"Soflax",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",734081000168104,"Soflax (AN)" -828401000168107,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",846081000168107,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack" -158941000036102,"budesonide 2 mg/application enema, 2 x 1 application aerosol cans",900000000000526001,"REPLACED BY association reference set",688061000168104,"budesonide 2 mg/application enema, 2 x 14 applications" -34864011000036101,"codeine phosphate 50 mg/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",835631000168105,"codeine phosphate hemihydrate 50 mg/mL injection, ampoule" -643311000168104,"Lucrin Depot 3-Month (inert substance) diluent, 2 mL syringe",900000000000526001,"REPLACED BY association reference set",707321000168102,"Lucrin Depot 3-Month (inert substance) diluent, 1.5 mL syringe" -931722011000036107,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872831000168101,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle" -77541000036104,"aciclovir 200 mg dispersible tablet, 25",900000000000526001,"REPLACED BY association reference set",28317011000036105,"aciclovir 200 mg tablet, 25" -711551000168107,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004971000168108,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -251000168105,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810261000168104,"Actonel EC Combi D effervescent granules, 24 sachets" -74883011000036109,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832231000168104,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial" -923909011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 90, bottle",900000000000526001,"REPLACED BY association reference set",717471000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 90, bottle" -32755011000036103,"testosterone undecanoate 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720561000168109,"testosterone undecanoate 1 g/4 mL modified release injection, 4 mL ampoule" -87738011000036100,"Osmolax 1 g/g oral liquid: powder for, 510 g, bottle",900000000000526001,"REPLACED BY association reference set",703421000168102,"Osmolax 1 g/g powder for oral liquid, 510 g, jar" -20245011000036103,"Lofenoxal uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",851041000168106,"Lofenoxal uncoated tablet, 20, blister pack" -76701011000036102,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872951000168104,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles" -923452011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",717401000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 7" -929474011000036104,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723981000168104,"PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets" -686391000168105,"interferon beta-1a 125 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",698571000168103,"peginterferon beta-1a 125 microgram/0.5 mL injection, syringe" -66605011000036107,"Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion, 500 mL",900000000000526001,"REPLACED BY association reference set",766791000168100,"Chlorhexidine Hand Lotion (Orion) lotion, 500 mL" -160471000036105,"Oxycontin Reformulation 80 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929125011000036100,"Oxycontin 80 mg modified release tablet, 28, blister pack" -7128011000036104,"Novomix 30 Flexpen injection suspension, 3 mL syringe",900000000000526001,"REPLACED BY association reference set",1007191000168104,"Novomix 30 Flexpen injection suspension, 3 mL injection device" -44105011000036107,"Zovirax 800 mg dispersible tablet, 35, bottle",900000000000526001,"REPLACED BY association reference set",859231000168107,"Zovirax Dispersible 800 mg tablet, 35, bottle" -706301000168109,"mumps virus (Jeryl Lynn B level) live vaccine",900000000000526001,"REPLACED BY association reference set",829851000168103,"mumps virus live antigen" -78212011000036108,"benzoin sumatra 10% (100 mg/mL) + aloe vera 2% (20 mg/mL) + storax prepared 7.5% (75 mg/mL) + tolu balsam 2.5% (25 mg/mL) solution, 50 mL",900000000000526001,"REPLACED BY association reference set",696421000168104,"benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture, 50 mL" -76135011000036101,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872041000168102,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe" -933221321000036106,"Fluoride Panda Punch (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932601000168100,"Fluoride (Laclede) Panda Punch Flavour foam" -84270011000036103,"Wagner Magnesium Forte 400 capsules: hard, 200, bottle",900000000000526001,"REPLACED BY association reference set",750271000168100,"Magnesium Forte 400 (Wagner) hard capsule, 200, bottle" -74801011000036109,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",827731000168109,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack" -69512011000036101,"Cepacol Antibacterial Honey and Lemon lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995071000168102,"Cepacol Antibacterial Honey and Lemon lozenge, 16, blister pack" -729891000168105,"Citracal Plus D tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",860001000168109,"Citracal Plus D film-coated tablet, 100" -23069011000036104,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, vial",900000000000526001,"REPLACED BY association reference set",721011000168105,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, vial" -36805011000036107,"Actonel Combi D (4 x 35 mg tablets, 24 x sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810521000168107,"Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack" -81709011000036101,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 6 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868251000168103,"glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 6 x 2 L bags" -75450011000036108,"Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",822571000168100,"Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack" -80633011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867831000168106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag" -73662011000036105,"poliomyelitis virus type 2 (Sabin strain (P712, Ch, 2ab)) live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",838021000168108,"poliovirus type 2 live antigen" -86999011000036105,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% oromucosal paste, 5 g",900000000000526001,"REPLACED BY association reference set",797591000168106,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste, 5 g" -475911000168104,"amino acid formula with vitamins and minerals without methionine oral liquid, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725121000168100,"amino acid formula with vitamins and minerals without methionine oral liquid, 125 mL pouch" -76554011000036107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL",900000000000526001,"REPLACED BY association reference set",705891000168104,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL" -8541000036109,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",721101000168106,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, 1 vial" -900030011000036103,"Voltaren Emulgel 1% gel, 20 g",900000000000526001,"REPLACED BY association reference set",1037041000168100,"Voltaren Emulgel 1.16% gel, 20 g" -920964011000036107,"Sorbi Sorbitol",900000000000526001,"REPLACED BY association reference set",690591000168100,"Sorbi" -925338011000036109,"Omepro 20 mg capsule, 50, bottle",900000000000526001,"REPLACED BY association reference set",716671000168106,"Omepro 20 mg enteric capsule, 50, bottle" -60760011000036101,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4, blister pack",900000000000526001,"REPLACED BY association reference set",996251000168105,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4, blister pack" -75079011000036106,"Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",832191000168108,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial" -73836011000036105,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825891000168105,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe" -924535011000036105,"Omepro 20 mg capsule",900000000000526001,"REPLACED BY association reference set",716201000168104,"Omepro 20 mg enteric capsule" -73816011000036104,"Infanrix Penta injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836731000168109,"Infanrix Penta injection suspension, 0.5 mL syringe" -933220931000036104,"ropivacaine hydrochloride monohydrate 20 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004481000168102,"ropivacaine hydrochloride 20 mg/10 mL injection, ampoule" -77608011000036101,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet",900000000000526001,"REPLACED BY association reference set",861931000168109,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet" -71739011000036105,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 125 mL",900000000000526001,"REPLACED BY association reference set",767661000168101,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 125 mL" -74716011000036103,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825921000168100,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -56718011000036107,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4",900000000000526001,"REPLACED BY association reference set",996241000168108,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4" -925336011000036105,"Omepro 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",716601000168101,"Omepro 20 mg enteric capsule, 30, bottle" -74789011000036109,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845921000168102,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -86632011000036106,"Calcia plus Vitamin D 400 IU chewable tablet",900000000000526001,"REPLACED BY association reference set",860131000168101,"Calcia plus Vitamin D 400 IU chewable tablet" -8231000168108,"Clozole Vaginal Cream (Chemists' Own)",900000000000526001,"REPLACED BY association reference set",53325011000036101,"Clozole (Chemists' Own)" -55666011000036103,"Clotrimazole 6 Day (Guardian) 1% cream, 30 g",900000000000526001,"REPLACED BY association reference set",715221000168104,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g" -933226071000036101,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004861000168109,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags" -30531000036105,"TYR Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725061000168106,"TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches" -74890011000036100,"Comvax injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832321000168108,"Comvax injection suspension, 0.5 mL vial" -933221231000036101,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004681000168104,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, bag" -925346011000036109,"Pemzo 20 mg capsule, 15, bottle",900000000000526001,"REPLACED BY association reference set",716391000168100,"Pemzo 20 mg enteric capsule, 15, bottle" -75389011000036101,"hepatitis B vaccine 5 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825961000168105,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL syringe" -923733011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 60, blister pack",900000000000526001,"REPLACED BY association reference set",717371000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 60, blister pack" -80225011000036105,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868291000168108,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag" -11952011000036102,"Haldol Decanoate 50 mg/mL injection: solution, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",679751000168101,"Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules" -156021000036108,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 120",900000000000526001,"REPLACED BY association reference set",734041000168109,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 120" -923776011000036101,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821331000168100,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack" -55824011000036108,"Clozole Vaginal Cream (Chemists' Own) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715441000168106,"Clozole (Chemists' Own) 2% vaginal cream, 20 g" -844811000168102,"Zovirax 400 mg tablet, 70, bottle",900000000000526001,"REPLACED BY association reference set",859551000168104,"Zovirax Dispersible 400 mg tablet, 70, bottle" -31311000036102,"Movicol Chocolate solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674031000168109,"Movicol Chocolate powder for oral liquid, 30 sachets" -73802011000036101,"Twinrix injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824571000168105,"Twinrix injection suspension, 1 mL syringe" -74713011000036109,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825661000168104,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe" -12627011000036101,"Zentel 200 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844221000168108,"Zentel 200 mg tablet, 6" -713311000168102,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005451000168108,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 200 mL bag" -713351000168101,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005431000168102,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags" -74358011000036105,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",828301000168104,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -726911000168100,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 1 dose, injection device",900000000000526001,"REPLACED BY association reference set",881211000168109,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device" -726891000168102,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, dose",900000000000526001,"REPLACED BY association reference set",881191000168108,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, dose" -84801011000036105,"Glycoprep powder for oral liquid, sachet",900000000000526001,"REPLACED BY association reference set",851541000168100,"Glycoprep powder for oral liquid, 200 g sachet" -38568011000036108,"aspirin 325 mg + codeine phosphate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",834551000168104,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 20" -933226091000036102,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004761000168100,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags" -44191000168103,"Recombinate 1000 IU",900000000000526001,"REPLACED BY association reference set",710851000168104,"Recombinate" -76737011000036101,"Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",695081000168100,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials" -107321000036104,"Sorbact (S98310) 10 cm x 10 cm foam dressing",900000000000526001,"REPLACED BY association reference set",1056321000168107,"Sorbact Foam (S98310) 10 cm x 10 cm foam dressing" -81707011000036108,"sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, 18 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",872561000168107,"sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 18 x 500 mL bags" -146201000036109,"Tecfidera 120 mg capsule: modified release, 14, blister pack",900000000000526001,"REPLACED BY association reference set",756261000168109,"Tecfidera 120 mg enteric capsule, 14, blister pack" -76551011000036109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL",900000000000526001,"REPLACED BY association reference set",705961000168104,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL" -182121000036101,"Lyxumia 20 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",719281000168102,"Lyxumia 20 microgram/dose injection solution, 14 doses, injection device" -81164011000036107,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872281000168101,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags" -155991000036102,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",734011000168105,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100" -931812011000036100,"meningococcal group A conjugate vaccine + meningococcal group C conjugate vaccine + meningococcal group W135 conjugate vaccine + meningococcal group Y (Neisseria meningitidis) conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826521000168100,"meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine" -60229011000036105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",861391000168107,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2, blister pack" -243341000168103,"PKU Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724321000168102,"PKU Anamix Junior LQ Orange oral liquid solution, 125 mL bottle" -70451000036104,"mesalazine 1 g granules, sachet",900000000000526001,"REPLACED BY association reference set",23619011000036106,"mesalazine 1 g modified release granules, sachet" -75397011000036109,"poliomyelitis live attenuated oral vaccine oral liquid, 100 vials",900000000000526001,"REPLACED BY association reference set",839811000168102,"polio trivalent live vaccine oral liquid, 100 vials" -665581000168106,"PKU Cooler20 Green oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725751000168107,"PKU Cooler 20 Green oral liquid solution, 174 mL pouch" -80666011000036109,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872271000168104,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags" -921933011000036105,"B-Dose (Biological Therapies) injection: solution, 3 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704551000168108,"B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials" -127371000036105,"TYR Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725971000168101,"TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches" -933214571000036107,"Levetiracetam (MPPL) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003561000168105,"Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60, blister pack" -726901000168103,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 1 dose",900000000000526001,"REPLACED BY association reference set",881201000168106,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose" -81615011000036108,"glucose 5% (5 g/100 mL) injection, 60 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863971000168108,"glucose monohydrate 5% (5 g/100 mL) injection, 60 x 100 mL bags" -921974011000036109,"Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695241000168101,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles" -252671000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL can",900000000000526001,"REPLACED BY association reference set",710251000168103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch" -29171000036108,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",674011000168104,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 30 sachets" -34729011000036107,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835591000168105,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL, bottle" -933221261000036107,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004741000168104,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 100 mL bag" -84414011000036100,"magnesium amino acid chelate + magnesium oxide heavy + magnesium phosphate tribasic pentahydrate + zinc oxide",900000000000526001,"REPLACED BY association reference set",750191000168107,"magnesium + zinc" -86237011000036105,"monobasic sodium phosphate monohydrate 480 mg/mL + dibasic sodium phosphate heptahydrate 180 mg/mL oral liquid, bottle",900000000000526001,"REPLACED BY association reference set",1097781000168104,"monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, bottle" -933232031000036102,"Fluoride Panda Punch (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932621000168109,"Fluoride (Laclede) Panda Punch Flavour foam, 165 mL, aerosol can" -76548011000036102,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724331000168104,"PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles" -81992011000036102,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850831000168100,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, ampoule" -664411000168100,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g, screw cap jar",900000000000526001,"REPLACED BY association reference set",833731000168103,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g, screw cap jar" -60807011000036102,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 2, blister pack",900000000000526001,"REPLACED BY association reference set",844181000168100,"Combantrin-1 with Mebendazole 100 mg tablet, 2, blister pack" -48472011000036107,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689151000168108,"Leukoplast (1071) 2.5 cm x 2.5 m tape" -726871000168103,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 60 doses",900000000000526001,"REPLACED BY association reference set",881171000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose" -18798011000036107,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729841000168102,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices" -73877011000036106,"BCG Vaccine (Sanofi Pasteur) (Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg) powder for injection, 1.5 mg vial",900000000000526001,"REPLACED BY association reference set",822561000168106,"BCG Vaccine (Sanofi Pasteur) (Mycobacterium bovis (BCG) live vaccine) powder for injection, 1.5 mg vial" -6737011000036106,"Lomotil uncoated tablet",900000000000526001,"REPLACED BY association reference set",851051000168108,"Lomotil uncoated tablet" -74855011000036101,"Ipol injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839921000168101,"Ipol injection solution, 10 x 0.5 mL syringes" -82423011000036100,"Ungvita 0.054% ointment, 50 g, tube",900000000000526001,"REPLACED BY association reference set",695011000168106,"Ungvita 0.099% ointment, 50 g, tube" -138771000036107,"Menitorix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",846111000168102,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -137191000036108,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine",900000000000526001,"REPLACED BY association reference set",827351000168104,"Haemophilus influenzae type b conjugate (PRP-T) antigen" -50348011000036108,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694101000168106,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll, carton" -700161000168105,"Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",822571000168100,"Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack" -81048011000036102,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863701000168101,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags" -933225991000036106,"Imigran 20 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728181000168107,"Imigran 20 mg/actuation nasal spray, 2 x 1 actuation" -68800011000036100,"Cepacol Mint 0.05% mouthwash, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",995331000168102,"Cepacol Mint 0.05% mouthwash, 500 mL, bottle" -80639011000036106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",867991000168103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag" -77387011000036109,"Centrum tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",833241000168100,"Centrum film-coated tablet, 120, bottle" -13841011000036107,"Novomix 30 Flexpen injection suspension, 5 x 3 mL syringes",900000000000526001,"REPLACED BY association reference set",1007211000168103,"Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices" -80231011000036105,"Cardioplegia A Solution (Baxter) perfusion solution, bag",900000000000526001,"REPLACED BY association reference set",872221000168100,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag" -78211011000036102,"alpha tocopherol acetate 96% oil, 30 mL",900000000000526001,"REPLACED BY association reference set",842751000168103,"dl-alpha-tocopheryl acetate 96% oil, 30 mL" -69475011000036105,"Panadol Children's 7+ Years 250 mg tablet: soluble, 16, strip pack",900000000000526001,"REPLACED BY association reference set",721601000168104,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16, strip pack" -50403011000036103,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll, wrapping",900000000000526001,"REPLACED BY association reference set",688871000168104,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll, wrapping" -51259011000036103,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725911000168109,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 130 mL pouches" -63321000036100,"Worming Tablet (Chemmart) 100 mg chewable tablet, 2",900000000000526001,"REPLACED BY association reference set",844261000168103,"Worming Tablet (Chemmart) 100 mg tablet, 2" -921577011000036105,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",831761000168107,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack" -925349011000036100,"Pemzo 20 mg capsule, 5, bottle",900000000000526001,"REPLACED BY association reference set",716791000168101,"Pemzo 20 mg enteric capsule, 5, bottle" -36816011000036102,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L",900000000000526001,"REPLACED BY association reference set",834941000168108,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L" -85368011000036108,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge",900000000000526001,"REPLACED BY association reference set",996031000168108,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge" -45221000036103,"Glucaid 75 g/300 mL oral liquid: solution, 300 mL each, bottle",900000000000526001,"REPLACED BY association reference set",692461000168105,"Glucaid 75 g/300 mL oral liquid solution, 300 mL, bottle" -726881000168100,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 60 doses, injection device",900000000000526001,"REPLACED BY association reference set",881181000168105,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device" -43901000168108,"Recombinate 250 IU",900000000000526001,"REPLACED BY association reference set",710851000168104,"Recombinate" -73664011000036101,"poliomyelitis virus type 3 (Sabin strain (Leon 12a1b)) live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",838031000168106,"poliovirus type 3 live antigen" -69407011000036107,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",864311000168101,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag" -160451000036100,"Oxycontin Reformulation 30 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",928885011000036102,"Oxycontin 30 mg modified release tablet, 28, blister pack" -74289011000036102,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822901000168102,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe" -74747011000036106,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831821000168108,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack" -924209011000036105,"omeprazole 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",716751000168106,"omeprazole 20 mg enteric capsule, 56" -251000168105,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810401000168104,"Actonel Combi D effervescent granules, 24 sachets" -926986011000036105,"hepatitis B vaccine 10 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825431000168109,"hepatitis B child vaccine 10 microgram/0.5 mL injection, syringe" -933226061000036109,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004701000168101,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, 5 x 100 mL bags" -638501000168104,"Albey Venom Albumin Saline (inert substance) diluent, 9 mL vial",900000000000526001,"REPLACED BY association reference set",758821000168102,"Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial" -1021191000168102,"mesalazine 1 g granules, 150 sachets",900000000000526001,"REPLACED BY association reference set",1084191000168105,"mesalazine 1 g modified release granules, 150 sachets" -933214631000036106,"Levetiracetam (GN) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003441000168105,"Levetiracetam 1000 (GN) 1 g film-coated tablet, 60, blister pack" -12930011000036103,"Cal Sup 500 mg (calcium 500 mg) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",859731000168101,"Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60" -74926011000036101,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840851000168109,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes" -87018011000036107,"calcium (as carbonate) 1 g (calcium 1 g) chewable tablet, 30",900000000000526001,"REPLACED BY association reference set",859931000168104,"calcium carbonate 2.5 g (calcium 1 g) chewable tablet, 30" -139251000036104,"ropivacaine hydrochloride monohydrate 50 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005981000168105,"ropivacaine hydrochloride 50 mg/10 mL injection, 5 x 10 mL ampoules" -137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711221000168102,"Ropivacaine 0.75% (Kabi)" -83987011000036109,"Clotrimazole 3 Day (Apo) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715751000168101,"Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g" -73795011000036109,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822471000168104,"Rotateq oral liquid, 2 mL tube" -86113011000036109,"Levetiracetam (Apo) 1 g tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",1003201000168107,"Levetiracetam 1000 (Apo) 1 g tablet, 100, bottle" -18790011000036105,"ADT Booster injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837331000168108,"ADT Booster injection suspension, 0.5 mL syringe" -139241000036102,"Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005991000168108,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules" -91711000036107,"Femcream (Pharmacy Action) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715501000168105,"Femcream (Pharmacy Action) 1% vaginal cream, 35 g, tube" -79515011000036105,"Creon 25 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847401000168108,"Creon 25 000 enteric capsule, 100" -2951000036102,"olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, bag",900000000000526001,"REPLACED BY association reference set",771751000168105,"olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, bag" -75026011000036103,"hepatitis B vaccine 20 microgram/mL injection, vial",900000000000526001,"REPLACED BY association reference set",825311000168108,"hepatitis B adult vaccine 20 microgram/mL injection, vial" -84660011000036109,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873021000168101,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag" -41220011000036101,"Voluven 6% / 0.9% injection solution, 15 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013481000168102,"Voluven injection solution, 15 x 500 mL bags" -776501000168107,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",996121000168106,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2, blister pack" -42781000036104,"Glucaid 75 g/300 mL oral liquid: solution, 300 mL each",900000000000526001,"REPLACED BY association reference set",692451000168108,"Glucaid 75 g/300 mL oral liquid solution, 300 mL" -85052011000036104,"Strepsils lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",720311000168101,"Strepsils Cool lozenge, 16, blister pack" -36250011000036100,"Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",775541000168102,"Forthane 1 mL/mL inhalation solution" -27818011000036100,"buprenorphine 400 microgram tablet, 7",900000000000526001,"REPLACED BY association reference set",685871000168108,"buprenorphine 400 microgram sublingual tablet, 7" -11316011000036100,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838081000168107,"Pneumovax-23 injection solution, 0.5 mL vial" -67321011000036109,"Disprin Max 500 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804391000168109,"Disprin Max 500 mg tablet, 6" -251291000168103,"PKU Anamix Junior oral liquid: powder for, 29 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723971000168102,"PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 29 g sachet" -65414011000036106,"Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion",900000000000526001,"REPLACED BY association reference set",766771000168101,"Chlorhexidine Hand Lotion (Orion) lotion" -80217011000036109,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868341000168106,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag" -36265011000036103,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 0.5 mL unit dose",900000000000526001,"REPLACED BY association reference set",861691000168100,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 0.5 mL unit dose" -63061000036106,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839751000168106,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial" -638521000168108,"Albey Venom Albumin Saline (inert substance) diluent, 1.8 mL vial",900000000000526001,"REPLACED BY association reference set",758831000168104,"Albumin Saline (Stallergenes) (inert substance) diluent, 1.8 mL vial" -74923011000036107,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1082951000168107,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations, pump pack" -20993011000036106,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041381000168100,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device" -74849011000036102,"Spray-Tish 0.118% nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085401000168108,"Spray-Tish 0.118% nasal spray, 15 mL, pump pack" -56361000036106,"Valvala 1 g film-coated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",1009781000168105,"Valvala-1000 1 g film-coated tablet, 50, blister pack" -924421011000036102,"First Aid (Amcal) cream",900000000000526001,"REPLACED BY association reference set",861501000168105,"First Aid (Amcal) cream" -75114011000036108,"hepatitis B vaccine 10 microgram/mL injection, vial",900000000000526001,"REPLACED BY association reference set",825721000168102,"hepatitis B adult vaccine 10 microgram/mL injection, vial" -76194011000036106,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",861751000168101,"Caltrate Plus with Vitamin D 200 IU film-coated tablet" -82987011000036100,"pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827641000168105,"pneumococcal 10 valent conjugate vaccine injection, 10 x 0.5 mL syringes" -74245011000036105,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825291000168109,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes" -75526011000036101,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid [ 1 x 3 mL vial] (&) inert substance powder for oral liquid [1 x 5.6 g sachet], 1 pack",900000000000526001,"REPLACED BY association reference set",821911000168109,"cholera vaccine oral liquid [3 mL vial] (&) inert substance effervescent granules [5.6 g sachet], 1 pack" -260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724531000168109,"PKU Lophlex LQ 20 Tropical oral liquid solution, 125 mL pouch" -688811000168107,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831061000168109,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack" -81697011000036104,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",867981000168101,"glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag" -159251000036103,"Oxycontin Reformulation 10 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928480011000036100,"Oxycontin 10 mg modified release tablet, 28" -172331000168102,"MSUD Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724841000168103,"MSUD Cooler 15 Red oral liquid solution, 130 mL pouch" -94191000036104,"meningococcal group A conjugate vaccine 4 microgram + meningococcal group C conjugate vaccine 4 microgram + meningococcal group W135 conjugate vaccine 4 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 4 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826551000168108,"meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial" -761211000168108,"Lomotil uncoated tablet, 2, blister pack",900000000000526001,"REPLACED BY association reference set",851081000168101,"Lomotil uncoated tablet, 2, blister pack" -141771000036104,"Somatuline Autogel 120 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819411000168107,"Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe" -59862011000036103,"Clozole Vaginal Cream (Chemists' Own) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715451000168108,"Clozole (Chemists' Own) 2% vaginal cream, 20 g, tube" -931678011000036102,"Actonel EC Combi D (1 x Once-a-Week tablet, 6 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810301000168107,"Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack, composite pack" -921928011000036103,"MD-Gastroview solution, 12 x 240 mL each, bottle",900000000000526001,"REPLACED BY association reference set",696121000168107,"MD-Gastroview solution, 12 x 240 mL, bottles" -78136011000036104,"sorbitol solution (70 per cent-non-crystallising) 1 mL/mL oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",690621000168103,"sorbitol solution 70% non-crystallising oral liquid, 500 mL" -75439011000036101,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 15 mL",900000000000526001,"REPLACED BY association reference set",792021000168100,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 15 mL" -74894011000036105,"Spray-Tish menthol 0.118% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085411000168106,"Spray-Tish menthol 0.118% nasal spray, 10 mL, pump pack" -61521000036109,"Hepasol oral liquid: solution, 10 mL",900000000000526001,"REPLACED BY association reference set",688121000168105,"Hepasol oral liquid solution, 10 mL" -664361000168107,"magnesium trisilicate + chalk + bicarbonate + magnesium",900000000000526001,"REPLACED BY association reference set",871041000168108,"magnesium trisilicate + chalk + bicarbonate + magnesium carbonate" -50937011000036100,"tape plaster adhesive hypoallergenic 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689041000168107,"tape plaster adhesive hypoallergenic 5 cm x 5 m tape" -80669011000036100,"Gastrolyte natural powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871871000168107,"Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets" -81136011000036106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868081000168104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag" -36650011000036102,"Codral Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",834561000168102,"Codral Forte uncoated tablet, 20" -82402011000036100,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",860471000168108,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120, bottle" -827951000168100,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846001000168104,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -923058011000036102,"Levetiracetam (SZ) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003711000168101,"Levetiracetam 1000 (SZ) 1 g film-coated tablet" -80656011000036101,"Gastrolyte Blackcurrant effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871691000168109,"Gastrolyte Blackcurrant effervescent tablet, 20" -761191000168107,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 2",900000000000526001,"REPLACED BY association reference set",851061000168105,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 2" -85791011000036103,"Extraneal 7.5% dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872321000168106,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag" -933225801000036107,"Naropin 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004961000168102,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -36815011000036109,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",835491000168106,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL" -60436011000036102,"Zantac 150 mg/10 mL oral liquid: solution, 280 mL, bottle",900000000000526001,"REPLACED BY association reference set",783931000168105,"Zantac 150 mg/10 mL oral liquid, 280 mL, bottle" -71491000036100,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746791000168109,"Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule" -34804011000036102,"Subutex 2 mg tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",685691000168105,"Subutex 2 mg sublingual tablet, 100, bottle" -71197011000036102,"cetylpyridinium chloride monohydrate 0.05% mouthwash, 500 mL",900000000000526001,"REPLACED BY association reference set",995001000168107,"cetylpyridinium chloride 0.05% mouthwash, 500 mL" -141731000036101,"Somatuline Autogel 60 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819591000168104,"Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe" -76805011000036102,"Centrum tablet: film-coated, 14",900000000000526001,"REPLACED BY association reference set",833081000168104,"Centrum film-coated tablet, 14" -23375011000036106,"omeprazole 20 mg capsule",900000000000526001,"REPLACED BY association reference set",75861000036107,"omeprazole 20 mg enteric capsule" -74962011000036106,"meningococcal group A polysaccharide vaccine + meningococcal group C polysaccharide vaccine + meningococcal group Y polysaccharide vaccine + meningococcal group W135 polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827681000168100,"meningococcal quadrivalent polysaccharide vaccine" -57206011000036100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715691000168100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g" -26711000036109,"Vivaxim injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827311000168100,"Vivaxim injection suspension, 1 mL syringe" -21830011000036109,"tenofovir + emtricitabine",900000000000526001,"REPLACED BY association reference set",851481000168106,"tenofovir disoproxil + emtricitabine" -21167011000036105,"Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726471000168100,"Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL, injection device" -921843011000036101,"Berocca Performance Original effervescent tablet, 15, bottle",900000000000526001,"REPLACED BY association reference set",829731000168102,"Berocca Performance Original effervescent tablet, 15, bottle" -923904011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 50, bottle",900000000000526001,"REPLACED BY association reference set",717291000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 50, bottle" -61531000036106,"glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid",900000000000526001,"REPLACED BY association reference set",688111000168103,"iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid" -827971000168109,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846021000168108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes" -43969011000036109,"Eleuphrat 0.05% lotion, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",1054621000168106,"Eleuphrat 0.05% lotion, 30 mL, bottle" -761231000168103,"Lomotil uncoated tablet, 8",900000000000526001,"REPLACED BY association reference set",851101000168108,"Lomotil uncoated tablet, 8" -74977011000036102,"diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine + hepatitis B vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836641000168105,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine" -73804011000036105,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845891000168107,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -670781000168100,"Peptamen Junior powder for oral liquid, 400 g, can",900000000000526001,"REPLACED BY association reference set",949671000168104,"Peptamen Junior powder for oral liquid, 400 g, can" -13581011000036104,"Subutex 400 microgram tablet, 7",900000000000526001,"REPLACED BY association reference set",685881000168106,"Subutex 400 microgram sublingual tablet, 7" -81997011000036100,"MSUD Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",724931000168103,"MSUD Anamix Junior LQ oral liquid solution, 125 mL bottle" -86445011000036100,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",996001000168101,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 24" -84264011000036102,"TYR Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724911000168108,"TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles" -761251000168109,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",851141000168105,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 100" -670771000168103,"Peptamen Junior powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949661000168105,"Peptamen Junior powder for oral liquid, 400 g" -49449011000036101,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689271000168105,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll" -85405011000036105,"Extraneal 7.5% dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872301000168102,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag" -75651000036105,"risedronate sodium 35 mg enteric tablet [1] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [6 sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",810281000168108,"risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [6 sachets], 1 pack" -933220881000036108,"Naropin 0.75% (75 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004941000168101,"Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule" -73810011000036102,"Polio Sabin Multidose oral liquid: solution, 1 vial",900000000000526001,"REPLACED BY association reference set",839801000168100,"Polio Sabin Multidose oral liquid solution, 1 vial" -74809011000036108,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824991000168102,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe" -925355011000036104,"Pemzo 20 mg capsule, 90, bottle",900000000000526001,"REPLACED BY association reference set",717681000168106,"Pemzo 20 mg enteric capsule, 90, bottle" -19947011000036109,"Botox 100 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720881000168102,"Botox 100 units powder for injection, 1 vial" -815221000168102,"Entrip 50 mg tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",856831000168103,"Entrip 50 mg film-coated tablet, 100, blister pack" -60625011000036105,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721471000168106,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL, bottle" -933225741000036102,"Naropin 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005061000168102,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -74851011000036103,"Rynacrom 4% nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1082971000168103,"Rynacrom 4% nasal spray, 15 mL, pump pack" -933237281000036108,"Omeprazole (Sandoz) 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716181000168100,"Omeprazole (Sandoz) 20 mg enteric capsule, 30" -73459011000036107,"apomorphine hydrochloride 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes",900000000000526001,"REPLACED BY association reference set",781271000168103,"apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, 5 x 10 mL syringes" -59861011000036109,"Anti Fungal V 3 Day (Amcal) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",714911000168100,"Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g, tube" -70151000036105,"Byetta 5 microgram/0.02 mL injection: solution, 0.02 mL unit dose",900000000000526001,"REPLACED BY association reference set",726761000168100,"Byetta 5 microgram/dose injection solution, dose" -71841000036108,"Levetiracetam (Pfizer) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003591000168103,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60" -78251011000036105,"iopromide 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695511000168103,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 20 mL vials" -50931011000036108,"tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689191000168103,"tape plaster adhesive elastic 5 cm x 2.5 m tape" -921487011000036109,"MD-Gastroview solution, 12 x 240 mL each",900000000000526001,"REPLACED BY association reference set",696111000168100,"MD-Gastroview solution, 12 x 240 mL" -81704011000036102,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872611000168105,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 1 L bag" -80515011000036107,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864251000168105,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags" -815211000168109,"Entrip 50 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",856821000168101,"Entrip 50 mg film-coated tablet, 100" -925729011000036102,"Valtrex 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1009681000168100,"Valtrex-1000 1 g film-coated tablet" -84386011000036102,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873121000168100,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags" -921066011000036100,"Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695311000168108,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle" -48759011000036108,"Aquacel (177904) 2 g (30 cm) rope, 2 g",900000000000526001,"REPLACED BY association reference set",745111000168109,"Aquacel (177904) 2 cm x 45 cm ribbon" -815171000168107,"Entrip 50 mg tablet, 10",900000000000526001,"REPLACED BY association reference set",856781000168106,"Entrip 50 mg film-coated tablet, 10" -74768011000036103,"Decongestant (Amcal) 0.05% nasal spray, 18 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083551000168107,"Decongestant (Amcal) 0.05% nasal spray, 18 mL, pump pack" -22965011000036104,"pancreatic extract 10 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847431000168101,"lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule" -815181000168105,"Entrip 50 mg tablet, 10, blister pack",900000000000526001,"REPLACED BY association reference set",856791000168109,"Entrip 50 mg film-coated tablet, 10, blister pack" -78313011000036109,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",833101000168106,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 30" -5492011000036108,"Aspalgin dispersible tablet",900000000000526001,"REPLACED BY association reference set",834231000168107,"Aspalgin dispersible tablet" -921533011000036103,"Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695331000168103,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle" -74993011000036102,"measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",831021000168104,"measles + mumps + rubella live vaccine" -33774011000036107,"leuprorelin acetate 7.5 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",707291000168105,"leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack" -925348011000036108,"Pemzo 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",716741000168109,"Pemzo 20 mg enteric capsule, 30, bottle" -66453011000036101,"Cepacol 0.05% mouthwash, 500 mL",900000000000526001,"REPLACED BY association reference set",995011000168105,"Cepacol 0.05% mouthwash, 500 mL" -639621000168100,"Recombinate 250 IU (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",710871000168108,"Recombinate (inert substance) diluent, 10 mL vial" -924870011000036104,"Omepro 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",716461000168102,"Omepro 20 mg enteric capsule, 15" -921547011000036106,"Picolax powder for oral liquid, 2 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",832641000168106,"Picolax powder for oral liquid, 2 x 20 g sachets" -51258011000036106,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724241000168102,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches" -145301000036106,"Tecfidera 120 mg capsule: modified release, 14",900000000000526001,"REPLACED BY association reference set",756251000168107,"Tecfidera 120 mg enteric capsule, 14" -74896011000036102,"Beconase Allergy and Hayfever 12 Hour 0.05% (50 microgram/actuation) nasal spray, 100 actuations, bottle",900000000000526001,"REPLACED BY association reference set",696321000168109,"Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 100 actuations, pump pack" -61997011000036103,"benzydamine hydrochloride 1% + cetylpyridinium chloride monohydrate 0.1% oral gel",900000000000526001,"REPLACED BY association reference set",995931000168101,"benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel" -75007011000036106,"Q fever inactivated vaccine 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",821561000168102,"Q fever vaccine injection, 0.5 mL syringe" -681151000168107,"Cal-600 plus D tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",862131000168102,"Cal-600 plus D film-coated tablet, 100" -2931000036105,"olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, bag",900000000000526001,"REPLACED BY association reference set",779101000168108,"olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, bag" -73647011000036100,"mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",829851000168103,"mumps virus live antigen" -81143011000036104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872551000168105,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag" -85370011000036102,"Movicol Junior solution: powder for, 1 sachet",900000000000526001,"REPLACED BY association reference set",674161000168102,"Movicol Junior powder for oral liquid, 1 sachet" -41583011000036108,"Zovirax 400 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",859561000168102,"Zovirax Dispersible 400 mg tablet, 100" -141991000036102,"Somatuline Autogel 120 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819421000168100,"Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe" -11452011000036100,"ADT Vaccine injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837291000168102,"ADT Vaccine injection suspension, 0.5 mL syringe" -933220871000036106,"ropivacaine hydrochloride monohydrate 150 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004881000168100,"ropivacaine hydrochloride 150 mg/20 mL injection, ampoule" -703641000168105,"meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",826931000168108,"meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -59750011000036106,"Clotrimazole 6 Day (Guardian) 1% cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",715271000168103,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g, tube" -18905011000036108,"Tenopt 0.5% eye drops solution, 5 mL, puffer pack",900000000000526001,"REPLACED BY association reference set",948451000168101,"Tenopt 0.5% eye drops solution, 5 mL, bottle" -80673011000036105,"Gastrolyte fruit powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871811000168104,"Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets" -932462011000036105,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872861000168109,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles" -55825011000036107,"Clotrimazole 3 Day (Guardian) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715161000168103,"Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g" -63191000036100,"Hepasol oral liquid: solution, 500 mL",900000000000526001,"REPLACED BY association reference set",688171000168106,"Hepasol oral liquid solution, 500 mL" -924883011000036102,"Pemzo 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",716431000168105,"Pemzo 20 mg enteric capsule, 28" -77150011000036105,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, jar",900000000000526001,"REPLACED BY association reference set",705861000168106,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, jar" -78327011000036109,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",861981000168105,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 60" -76722011000036101,"X-Evess (1 x 500 mL oral liquid, 1 x 500 mL oral liquid), 1 pack",900000000000526001,"REPLACED BY association reference set",703121000168105,"X-Evess (1 x 500 mL Part-1 oral liquid, 1 x 500 mL Part-2 oral liquid), 1 pack" -74796011000036104,"Twinrix Junior injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824551000168101,"Twinrix Junior injection suspension, 0.5 mL syringe" -921075011000036103,"Gastrolyte Citrus effervescent tablet",900000000000526001,"REPLACED BY association reference set",871551000168100,"Gastrolyte Citrus effervescent tablet" -71683011000036108,"calcium gluconate monohydrate 10% (5 g/50 mL) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",684721000168100,"calcium gluconate monohydrate 4.765 g/50 mL injection, 10 x 50 mL vials" -921438011000036103,"Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",696371000168105,"Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles" -930878011000036104,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872901000168103,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle" -924703011000036104,"Omepro 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",716561000168101,"Omepro 20 mg enteric capsule, 280" -923895011000036104,"Creon Micro 5000 units/100 mg enteric coated granules, 20 g, bottle",900000000000526001,"REPLACED BY association reference set",847181000168106,"Creon Micro enteric coated granules, 20 g, bottle" -5581011000036105,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041171000168100,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device" -81051011000036109,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864431000168100,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags" -703651000168107,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826941000168104,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -35467011000036109,"Movicol-Half solution: powder for, 1 sachet",900000000000526001,"REPLACED BY association reference set",674111000168100,"Movicol-Half powder for oral liquid, 1 sachet" -53814011000036105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge",900000000000526001,"REPLACED BY association reference set",861411000168107,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge" -2921000036108,"Clinoleic 20% injection: emulsion, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779111000168106,"Clinoleic 20% injection emulsion, 350 mL bag" -56583011000036101,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721461000168100,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL" -59712011000036101,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721651000168100,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL, bottle" -71740011000036100,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL",900000000000526001,"REPLACED BY association reference set",71741011000036107,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL" -84075011000036103,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873081000168102,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag" -67119011000036109,"Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",684681000168106,"Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials" -81135011000036104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868031000168100,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags" -86773011000036108,"Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704501000168109,"Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial" -75353011000036106,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837511000168108,"diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 5 x 0.5 mL vials" -41563011000036105,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693431000168105,"Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules" -137851000036107,"Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006071000168104,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule" -77168011000036101,"Sorbolene Cream with Glycerin (Orion) cream, 500 g, pump pack",900000000000526001,"REPLACED BY association reference set",705821000168101,"Sorbolene Cream with Glycerin (Orion) cream, 500 g, pump pack" -83698011000036107,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873011000168108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag" -37537011000036108,"Actonel Combi D (4 x 35 mg tablets, 24 x sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810531000168105,"Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack, composite pack" -761271000168100,"Lomotil uncoated tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",851161000168109,"Lomotil uncoated tablet, 100, blister pack" -14641000036101,"Clinoleic 20% injection: emulsion, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779141000168105,"Clinoleic 20% injection emulsion, 350 mL bag" -933231261000036105,"Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726591000168100,"Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL, injection device" -933225731000036107,"ropivacaine hydrochloride monohydrate 200 mg/100 mL injection, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004551000168105,"ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags" -19350011000036102,"Zovirax 800 mg dispersible tablet, 120, blister pack",900000000000526001,"REPLACED BY association reference set",859441000168102,"Zovirax Dispersible 800 mg tablet, 120, blister pack" -40296011000036104,"Etopophos 500 mg injection: powder for, 500 mg vial",900000000000526001,"REPLACED BY association reference set",793501000168105,"Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 567.8 mg vial" -933225331000036106,"Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726581000168103,"Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL" -137831000036104,"Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006191000168102,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule" -13996011000036100,"Klacid Hp 7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack",900000000000526001,"REPLACED BY association reference set",715991000168108,"Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack" -708511000168103,"Otocomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758401000168108,"Otocomb Otic ear drops solution, 7.5 mL" -86474011000036103,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872311000168104,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag" -922619011000036103,"alpha tocopherol acetate 250 mg (250 units) capsule, 60",900000000000526001,"REPLACED BY association reference set",842801000168109,"dl-alpha-tocopheryl acetate 250 mg (250 units) capsule, 60" -78200011000036106,"iopromide 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695611000168102,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 50 mL bottles" -168711000168103,"MSUD Express Cooler oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725381000168104,"MSUD Express Cooler oral liquid solution, 130 mL pouch" -77389011000036102,"Centrum tablet: film-coated, 14, bottle",900000000000526001,"REPLACED BY association reference set",833091000168101,"Centrum film-coated tablet, 14, bottle" -728801000168107,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006131000168101,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 10 mL ampoule" -76801011000036104,"Centrum tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",833171000168101,"Centrum film-coated tablet, 100" -108741000036107,"dressing hydrogel 1 cm x 50 cm ribbon, 20",900000000000526001,"REPLACED BY association reference set",1056231000168103,"dressing hydrophobic 1 cm x 50 cm ribbon, 20" -82913011000036107,"Kaletra 400/100 oral liquid: solution, 5 x 60 mL bottles",900000000000526001,"REPLACED BY association reference set",689551000168104,"Kaletra oral liquid solution, 5 x 60 mL, bottles" -61158011000036109,"Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution, 30 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",721291000168108,"Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL, pump pack" -70021000036103,"carbomer 0.2% + triglyceride lipids 1% eye gel, unit dose",900000000000526001,"REPLACED BY association reference set",719591000168101,"carbomer-980 0.2% + triglyceride lipids 1% eye gel, unit dose" -36098011000036103,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810211000168102,"Actonel EC Combi D effervescent granules, 1 sachet" -60891011000036108,"Disprin Original 300 mg dispersible tablet, 48, strip pack",900000000000526001,"REPLACED BY association reference set",804311000168100,"Disprin Original 300 mg tablet, 48, strip pack" -75409011000036106,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824771000168100,"hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL syringe" -921874011000036103,"Centrum Select 50 Plus tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",843281000168109,"Centrum Select 50 Plus film-coated tablet, 60, bottle" -702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726141000168103,"PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets" -12970011000036100,"Lovan 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844361000168107,"Lovan 20 mg tablet, 28" -75404011000036105,"hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",824581000168108,"hepatitis A + hepatitis B adult vaccine injection, 10 x 1 mL syringes" -73665011000036102,"rabies inactivated vaccine",900000000000526001,"REPLACED BY association reference set",820591000168100,"rabies virus antigen" -702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726151000168101,"PKU Anamix Junior Vanilla powder for oral liquid, 36 g sachet" -180171000036103,"Bonecal 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",848501000168105,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle" -702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726131000168107,"PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets" -700027061000036102,"Femazole 150 mg capsule: hard, 1 capsule, blister pack",900000000000526001,"REPLACED BY association reference set",685561000168104,"Femazole Duo 150 mg hard capsule, 1, blister pack" -60729011000036103,"Difflam Mouth oral gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",995971000168103,"Difflam Mouth oral gel, 10 g, tube" -75519011000036100,"hepatitis B vaccine 10 microgram/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825741000168108,"hepatitis B adult vaccine 10 microgram/mL injection, 1 mL vial" -814981000168109,"Entrip 10 mg tablet, 50, bottle",900000000000526001,"REPLACED BY association reference set",856611000168107,"Entrip 10 mg film-coated tablet, 50, bottle" -14309011000036100,"Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726461000168106,"Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL" -665021000168101,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",834911000168109,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20, blister pack" -77406011000036103,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",861971000168107,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100, bottle" -923903011000036108,"Omeprazole (Pharmacor) 20 mg capsule, 5, bottle",900000000000526001,"REPLACED BY association reference set",717261000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 5, bottle" -29411000036105,"Vivaxim injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827331000168105,"Vivaxim injection suspension, 1 mL syringe" -664251000168100,"magnesium trisilicate + magnesium + bicarbonate",900000000000526001,"REPLACED BY association reference set",871071000168101,"magnesium trisilicate + magnesium carbonate + bicarbonate" -82032011000036103,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet",900000000000526001,"REPLACED BY association reference set",860351000168105,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet" -74359011000036102,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",828271000168101,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack" -12638011000036102,"Zovirax 800 mg dispersible tablet, 120",900000000000526001,"REPLACED BY association reference set",859431000168106,"Zovirax Dispersible 800 mg tablet, 120" -81153011000036101,"Gastrolyte Blackcurrant effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871711000168107,"Gastrolyte Blackcurrant effervescent tablet, 20, tube" -933246151000036109,"Aspalgin dispersible tablet, 40, blister pack",900000000000526001,"REPLACED BY association reference set",834321000168103,"Aspalgin dispersible tablet, 40, blister pack" -53699011000036101,"Disprin Forte dispersible tablet",900000000000526001,"REPLACED BY association reference set",804141000168104,"Disprin Forte tablet" -64894011000036109,"prefilled injection device",900000000000526001,"REPLACED BY association reference set",686781000168106,"injection device" -728821000168103,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006151000168107,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -57060011000036108,"Difflam Lozenge honey and lemon sugar free lozenge, 24",900000000000526001,"REPLACED BY association reference set",995741000168107,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24" -18869011000036103,"Kenacomb ointment, 15 g, tube",900000000000526001,"REPLACED BY association reference set",758251000168106,"Kenacomb ointment, 15 g, tube" -80518011000036101,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864421000168103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags" -61901011000036108,"miconazole 2% oral gel",900000000000526001,"REPLACED BY association reference set",817971000168100,"miconazole 2% oral gel" -17461000168103,"Clotrimazole Vaginal Cream (Your Pharmacy)",900000000000526001,"REPLACED BY association reference set",53455011000036108,"Clotrimazole (Your Pharmacy)" -933225751000036104,"ropivacaine hydrochloride monohydrate 200 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005051000168104,"ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules" -19255011000036102,"Codalgin Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835891000168108,"Codalgin Forte uncoated tablet, 20, blister pack" -42701000036105,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 30 x 130 mL sachets",900000000000526001,"REPLACED BY association reference set",725251000168101,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 30 x 130 mL pouches" -137841000036109,"Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006221000168108,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule" -924536011000036103,"Pemzo 20 mg capsule",900000000000526001,"REPLACED BY association reference set",716241000168102,"Pemzo 20 mg enteric capsule" -930117011000036104,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",861281000168100,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge" -84665011000036100,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g + ascorbic acid 17.88 g powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",901131000168104,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet" -56583011000036101,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",649651000168109,"Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 100 mL" -20138011000036107,"Panadeine Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",836001000168100,"Panadeine Forte uncoated tablet, 20, blister pack" -75033011000036106,"hepatitis B vaccine 5 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825881000168107,"hepatitis B child vaccine 5 microgram/0.5 mL injection, syringe" -52058011000036101,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream, 100 g",900000000000526001,"REPLACED BY association reference set",695841000168102,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g" -6897011000036103,"Colazide 750 mg capsule",900000000000526001,"REPLACED BY association reference set",932481000168105,"Colazide 750 mg hard capsule" -80520011000036105,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863891000168102,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags" -71559011000036105,"tolnaftate 0.09% spray, 100 g",900000000000526001,"REPLACED BY association reference set",769611000168105,"tolnaftate 0.09% (900 microgram/g) spray, 100 g" -73832011000036106,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",824811000168100,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial" -14651000036103,"Clinoleic 20% injection: emulsion, 12 x 350 mL bags",900000000000526001,"REPLACED BY association reference set",779181000168100,"Clinoleic 20% injection emulsion, 12 x 350 mL bags" -67131011000036101,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 200 mL",900000000000526001,"REPLACED BY association reference set",688481000168103,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL" -22083011000036109,"entecavir monohydrate 500 microgram tablet",900000000000526001,"REPLACED BY association reference set",829491000168106,"entecavir 500 microgram tablet" -702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726091000168105,"PKU Anamix Junior Orange powder for oral liquid, 36 g sachet" -140831000036101,"Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005891000168101,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags" -700033071000036104,"calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 6 sachets",900000000000526001,"REPLACED BY association reference set",810221000168109,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 6 sachets" -84310011000036103,"Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845611000168104,"Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device" -932455011000036108,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",843291000168107,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 100" -78271000036105,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703511000168105,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial" -921433011000036108,"Centrum Select 50 Plus tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",843271000168106,"Centrum Select 50 Plus film-coated tablet, 60" -137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",710981000168100,"Ropivacaine 0.2% (Kabi)" -61443011000036101,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 5 mL, bottle",900000000000526001,"REPLACED BY association reference set",721421000168105,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL, bottle" -152501000036109,"Lax-Sachets solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674301000168100,"Lax-Sachets powder for oral liquid, 30 sachets" -933225711000036103,"ropivacaine hydrochloride monohydrate 400 mg/200 mL injection, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004651000168106,"ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags" -68757011000036106,"Curash Family Oral Pain Relieving oral gel, 15 g, tube",900000000000526001,"REPLACED BY association reference set",995511000168102,"Curash Family Oral Pain Relieving oral gel, 15 g, tube" -77333011000036108,"Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695751000168105,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles" -75049011000036105,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",824801000168103,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, vial" -693171000168103,"diphtheria toxoid 2 Lf/0.5 mL + tetanus toxoid 2 Lf/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837401000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 10 x 0.5 mL vials" -76027011000036102,"Sorbolene Cream with Glycerin (Orion) cream",900000000000526001,"REPLACED BY association reference set",705721000168107,"Sorbolene Cream with Glycerin (Orion) cream" -78837011000036109,"Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704471000168103,"Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial" -157001000036100,"Istodax (1 x 10 mg vial, 1 x inert diluent vial), 1 pack, vial",900000000000526001,"REPLACED BY association reference set",828511000168106,"Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack" -80411000036106,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703531000168100,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial" -924874011000036109,"Omepro 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",716651000168102,"Omepro 20 mg enteric capsule, 50" -18958011000036109,"Rynacrom Metered Dose 2% nasal spray, 26 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1082961000168109,"Rynacrom Metered Dose 2% nasal spray, 26 mL, pump pack" -77147011000036109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, tube",900000000000526001,"REPLACED BY association reference set",705871000168100,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, tube" -930680011000036103,"Regaine Men's Extra Strength Foam 5% foam, 3 x 63 mL",900000000000526001,"REPLACED BY association reference set",710791000168104,"Regaine Men's Extra Strength 5% foam, 3 x 63 mL" -932843011000036101,"leuprorelin acetate 45 mg injection: modified release [1] (&) inert substance diluent [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",766141000168109,"leuprorelin acetate 45 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack" -78236011000036101,"sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack",900000000000526001,"REPLACED BY association reference set",703111000168103,"sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack" -33530011000036101,"Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",695391000168104,"Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 53, blister pack" -81293011000036105,"sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, bag",900000000000526001,"REPLACED BY association reference set",872511000168109,"sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, bag" -923734011000036107,"Omeprazole (Pharmacor) 20 mg capsule, 56, blister pack",900000000000526001,"REPLACED BY association reference set",717341000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 56, blister pack" -13190011000036101,"Botox 100 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720871000168100,"Botox 100 units powder for injection, 1 vial" -5413011000036102,"Reandron oily solution 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720551000168107,"Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule" -686431000168100,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",698611000168107,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes" -77527011000036104,"calcium (as carbonate) 320.3 mg + calcium (as lactate gluconate) 680 mg tablet: effervescent",900000000000526001,"REPLACED BY association reference set",745561000168104,"calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet" -1021111000168106,"Salofalk 500 mg granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084051000168104,"Salofalk 500 mg modified release granules, 50 sachets" -931863011000036106,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet",900000000000526001,"REPLACED BY association reference set",843161000168106,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet" -921845011000036100,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831941000168106,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack" -711511000168106,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004911000168100,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -36098011000036103,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810371000168102,"Actonel Combi D effervescent granules, 1 sachet" -73655011000036108,"Bordetella pertussis, filamentous haemagglutinin vaccine",900000000000526001,"REPLACED BY association reference set",836251000168109,"Bordetella pertussis filamentous haemagglutinin antigen" -82525011000036107,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 20",900000000000526001,"REPLACED BY association reference set",834241000168103,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 20" -702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726201000168109,"PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets" -922014011000036105,"Panadeine Forte uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",835861000168101,"Panadeine Forte uncoated tablet, 50, blister pack" -36899011000036107,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 5 x 2 mL vials",900000000000526001,"REPLACED BY association reference set",720791000168109,"Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials" -81130011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867921000168100,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag" -75661000036108,"risedronate sodium 35 mg enteric tablet [4] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [24 sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",810331000168100,"risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack" -711521000168104,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004921000168107,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -663121000168101,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension",900000000000526001,"REPLACED BY association reference set",833551000168101,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension" -663131000168103,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",833561000168104,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL" -81612011000036100,"glucose 5% (5 g/100 mL) injection, 40 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863881000168100,"glucose monohydrate 5% (5 g/100 mL) injection, 40 x 100 mL bags" -27500011000036101,"paracetamol 500 mg + codeine phosphate 8 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",63448011000036100,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50" -933225721000036105,"Naropin 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004561000168107,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags" -137881000036100,"Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005901000168102,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule" -693181000168100,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837411000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials" -12180011000036108,"Kenacomb ointment, 15 g",900000000000526001,"REPLACED BY association reference set",758241000168109,"Kenacomb ointment, 15 g" -63122011000036104,"hydrocortisone 1% spray, 30 mL",900000000000526001,"REPLACED BY association reference set",776881000168101,"hydrocortisone 1% spray, 30 mL" -926956011000036100,"Tramadol Hydrochloride SR (Sandoz) 100 mg modified release tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",1052991000168106,"Tramadol SR (Sandoz) 100 mg modified release tablet, 20, bottle" -702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726191000168106,"PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets" -702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726211000168107,"PKU Anamix Junior Berry powder for oral liquid, 36 g sachet" -930611011000036108,"Medi Quattro First Aid cream, 50 g",900000000000526001,"REPLACED BY association reference set",863541000168108,"Medi Quattro First Aid cream, 50 g" -87112011000036101,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g",900000000000526001,"REPLACED BY association reference set",705781000168106,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g" -11569011000036106,"Actonel Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",852651000168109,"Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28" -63561000168108,"Fluoride Panda Punch (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)" -12344011000036103,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28",900000000000526001,"REPLACED BY association reference set",792911000168108,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826041000168100,"Streptococcus pneumoniae type 18C conjugate antigen" -33666011000036100,"paper wasp venom 550 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",758881000168103,"paper wasp venom 550 microgram injection, vial" -148531000036101,"Lax-Sachets solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674281000168104,"Lax-Sachets powder for oral liquid, sachet" -712021000168104,"Ropibam 0.75% 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005231000168101,"Ropibam 0.75% 75 mg/10 mL injection solution, 10 mL ampoule" -933231241000036109,"Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726501000168106,"Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL, injection device" -927337011000036107,"lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 50 g",900000000000526001,"REPLACED BY association reference set",863501000168106,"lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 50 g" -13436011000036107,"Clofeme Thrush Treatment 6 Day 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715131000168106,"Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g" -924206011000036101,"omeprazole 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",716611000168103,"omeprazole 20 mg enteric capsule, 5" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826061000168101,"Streptococcus pneumoniae type 9V conjugate antigen" -929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724551000168103,"PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches" -50451011000036105,"Aquacel (177904) 2 g (30 cm) rope, 5 x 2 g, carton",900000000000526001,"REPLACED BY association reference set",745131000168104,"Aquacel (177904) 2 cm x 45 cm ribbon, 5, carton" -34377011000036103,"Subutex 8 mg tablet, 28",900000000000526001,"REPLACED BY association reference set",685741000168107,"Subutex 8 mg sublingual tablet, 28" -2439011000036108,"pancrelipase",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",846131000168107,"amylase" -18044011000036105,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041331000168101,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device" -84411011000036103,"macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + ascorbic acid",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",69825011000036102,"macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate" -69811000036103,"carbomer 0.2% + triglyceride lipids 1% eye gel",900000000000526001,"REPLACED BY association reference set",719541000168109,"carbomer-980 0.2% + triglyceride lipids 1% eye gel" -73645011000036105,"Japanese encephalitis inactivated vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",821671000168107,"Japanese encephalitis virus (vero cell-derived) inactivated antigen" -76803011000036103,"Centrum tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",833231000168109,"Centrum film-coated tablet, 120" -75392011000036107,"hepatitis B vaccine 10 microgram/mL injection, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825851000168100,"hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL syringes" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826021000168106,"Streptococcus pneumoniae type 23F conjugate antigen" -84293011000036102,"Diacol tablet, 32, bottle",900000000000526001,"REPLACED BY association reference set",900271000168101,"Diacol tablet, 32, bottle" -70441000036102,"Salofalk 1 g granules, sachet",900000000000526001,"REPLACED BY association reference set",1084131000168106,"Salofalk 1 g modified release granules, sachet" -41531000036101,"glucose 75 g/300 mL oral liquid, bottle",900000000000526001,"REPLACED BY association reference set",692421000168100,"glucose 75 g/300 mL oral liquid" -86603011000036108,"Emulsifying Ointment (David Craig)",900000000000526001,"REPLACED BY association reference set",770811000168109,"Emulsifying Ointment BP (David Craig)" -46537011000036106,"sumatriptan 10 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728141000168102,"sumatriptan 10 mg/actuation nasal spray, 2 x 1 actuation" -815041000168104,"Entrip 10 mg tablet, 1000, bottle",900000000000526001,"REPLACED BY association reference set",856651000168108,"Entrip 10 mg film-coated tablet, 1000, bottle" -27243011000036107,"albendazole 200 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844211000168101,"albendazole 200 mg tablet, 6" -13027011000036102,"Panamax Co uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",836071000168105,"Panamax Co uncoated tablet, 50" -77540011000036103,"psyllium dried 520 mg/g + senna dried 100 mg/g granules",900000000000526001,"REPLACED BY association reference set",832431000168100,"dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules" -797051000168106,"Levetiracetam (Accord) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003101000168103,"Levetiracetam 1000 (Accord) 1 g film-coated tablet" -923447011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",717251000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 5" -55742011000036100,"Cortef 1% spray: solution, 30 mL",900000000000526001,"REPLACED BY association reference set",776891000168103,"Cortef 1% spray solution, 30 mL" -71697011000036103,"benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture, 25 mL",900000000000526001,"REPLACED BY association reference set",688411000168109,"benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 25 mL" -26633011000036107,"mercaptopurine 50 mg tablet, 25",900000000000526001,"REPLACED BY association reference set",845441000168102,"mercaptopurine monohydrate 50 mg tablet, 25" -77580011000036105,"iopromide 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695251000168104,"iopromide 623 mg (iodine 300 mg)/mL injection, 100 mL bottle" -33674011000036102,"adrenaline 150 microgram/0.3 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",726651000168106,"adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose" -34375011000036108,"Subutex 400 microgram tablet, 28",900000000000526001,"REPLACED BY association reference set",685851000168104,"Subutex 400 microgram sublingual tablet, 28" -711641000168106,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005641000168108,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -74817011000036103,"Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083731000168105,"Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL, pump pack" -722891000168103,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick",900000000000526001,"REPLACED BY association reference set",729261000168102,"Silver Nitrate Applicator (Grafco) stick" -77391011000036102,"Centrum tablet: film-coated, 200, bottle",900000000000526001,"REPLACED BY association reference set",833421000168105,"Centrum film-coated tablet, 200, bottle" -59720011000036107,"Disprin Forte dispersible tablet, 24, strip pack",900000000000526001,"REPLACED BY association reference set",804171000168106,"Disprin Forte tablet, 24, strip pack" -711271000168101,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006081000168101,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -689421000168108,"Priorix-Tetra powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831271000168108,"Priorix-Tetra powder for injection, 10 vials" -75103011000036109,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837631000168104,"diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe" -711081000168109,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006001000168109,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules" -14338011000036102,"Codapane Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835941000168109,"Codapane Forte 500/30 uncoated tablet, 20" -711921000168109,"Ropibam 1% 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005261000168109,"Ropibam 1% 100 mg/10 mL injection solution, 10 mL ampoule" -722921000168108,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100, tube",900000000000526001,"REPLACED BY association reference set",729281000168106,"Silver Nitrate Applicator (Grafco) stick, 100, tube" -74797011000036101,"Otrivin Adult 0.1% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085341000168103,"Otrivin Adult 0.1% nasal spray, 10 mL, pump pack" -83978011000036100,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",860301000168106,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60" -815061000168100,"Entrip 25 mg tablet, 10",900000000000526001,"REPLACED BY association reference set",856671000168104,"Entrip 25 mg film-coated tablet, 10" -921037011000036105,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule",900000000000526001,"REPLACED BY association reference set",842791000168108,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule" -931520011000036107,"Regaine Men's Extra Strength Foam 5% foam, 63 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",710781000168102,"Regaine Men's Extra Strength 5% foam, 63 mL, aerosol can" -175411000036104,"Molaxole solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674211000168105,"Molaxole powder for oral liquid, 30 sachets" -81613011000036107,"glucose 5% (5 g/100 mL) injection, 50 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863911000168100,"glucose monohydrate 5% (5 g/100 mL) injection, 50 x 100 mL bags" -73938011000036102,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845961000168107,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -924880011000036105,"Pemzo 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",716261000168103,"Pemzo 20 mg enteric capsule, 100" -815081000168109,"Entrip 25 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",856691000168103,"Entrip 25 mg film-coated tablet, 50" -33081011000036104,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881191000168108,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, dose" -73366011000036101,"apomorphine hydrochloride 50 mg/10 mL injection: subcutaneous infusion, syringe",900000000000526001,"REPLACED BY association reference set",781251000168107,"apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, syringe" -54126011000036101,"Logicin Rapid Relief menthol and eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",861571000168100,"Logicin Rapid Relief menthol and eucalyptus lozenge" -80214011000036103,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867731000168104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag" -83954011000036109,"TYR Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724901000168105,"TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles" -73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826071000168107,"Streptococcus pneumoniae type 6B conjugate antigen" -54237011000036102,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream",900000000000526001,"REPLACED BY association reference set",715711000168102,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream" -669541000168104,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 5 x 1.5 mL cartridges",900000000000526001,"REPLACED BY association reference set",728891000168101,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges" -74411011000036102,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",827751000168103,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack" -13583011000036103,"Subutex 8 mg tablet, 7",900000000000526001,"REPLACED BY association reference set",685651000168100,"Subutex 8 mg sublingual tablet, 7" -75375011000036105,"hepatitis B vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825531000168108,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL vials" -18904011000036109,"Tenopt 0.25% eye drops solution, 5 mL, puffer pack",900000000000526001,"REPLACED BY association reference set",948441000168103,"Tenopt 0.25% eye drops solution, 5 mL, bottle" -19347011000036103,"Zovirax 200 mg dispersible tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",859611000168104,"Zovirax Dispersible 200 mg tablet, 90, blister pack" -19346011000036101,"Zovirax 200 mg dispersible tablet, 25, blister pack",900000000000526001,"REPLACED BY association reference set",859591000168109,"Zovirax Dispersible 200 mg tablet, 25, blister pack" -688991000168105,"measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine + Varicella zoster live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",831171000168102,"measles + mumps + rubella + varicella-zoster live vaccine" -49462011000036103,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688621000168104,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1" -925166011000036107,"Pemzo 20 mg capsule, 90, blister pack",900000000000526001,"REPLACED BY association reference set",717671000168108,"Pemzo 20 mg enteric capsule, 90, blister pack" -80631011000036107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867751000168105,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag" -718871000168106,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection [10 syringes] (&) Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection [10 vials], 1 pack",900000000000526001,"REPLACED BY association reference set",840991000168106,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack" -74257011000036103,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825911000168107,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826051000168103,"Streptococcus pneumoniae type 14 conjugate antigen" -923442011000036107,"Omeprazole (Pharmacor) 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",717061000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 100" -922083011000036105,"calcium (as carbonate) 1 g + colecalciferol 22 microgram (880 units) granules: effervescent, 7 g sachet",900000000000526001,"REPLACED BY association reference set",810621000168106,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 7.3 g sachet" -921014011000036109,"Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",695161000168108,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 50 mL bottle" -33582011000036108,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881181000168105,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device" -82915011000036108,"tenofovir + emtricitabine + efavirenz",900000000000526001,"REPLACED BY association reference set",851421000168107,"tenofovir disoproxil + emtricitabine + efavirenz" -54236011000036100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% cream",900000000000526001,"REPLACED BY association reference set",715681000168103,"Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream" -39995011000036107,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",835511000168101,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution" -921078011000036109,"Picolax powder for oral liquid, 20 g sachet",900000000000526001,"REPLACED BY association reference set",832621000168100,"Picolax powder for oral liquid, 20 g sachet" -73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826031000168109,"Streptococcus pneumoniae type 19F conjugate antigen" -55667011000036100,"Clotrimazole 6 Day (Guardian) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715241000168105,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g" -35225011000036105,"buprenorphine 2 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685671000168109,"buprenorphine 2 mg sublingual tablet, 100" -711111000168104,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006201000168104,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -251901000168103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL can",900000000000526001,"REPLACED BY association reference set",724421000168107,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL pouch" -844431000168105,"Zovirax 200 mg tablet, 25, bottle",900000000000526001,"REPLACED BY association reference set",859201000168100,"Zovirax Dispersible 200 mg tablet, 25, bottle" -28211000036103,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725141000168106,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 125 mL pouches" -922019011000036106,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831771000168101,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack" -81708011000036109,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868221000168106,"glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag" -86108011000036102,"Levetiracetam (Apo) 1 g tablet, 400, bottle",900000000000526001,"REPLACED BY association reference set",1003221000168103,"Levetiracetam 1000 (Apo) 1 g tablet, 400, bottle" -181041000036100,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835911000168105,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20" -65369011000036103,"Cepacol Antibacterial Menthol and Eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",995121000168102,"Cepacol Antibacterial Menthol and Eucalyptus lozenge" -46166011000036107,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 10 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",1013521000168102,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bottles" -76122011000036106,"Invite E High Potency Vitamin E 96% oil",900000000000526001,"REPLACED BY association reference set",842741000168100,"Invite E High Potency Vitamin E 96% oil" -718881000168109,"Infanrix Hexa (10 x 0.5 mL vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack",900000000000526001,"REPLACED BY association reference set",841001000168107,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack" -169831000036100,"dressing hydrofibre with silver 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745081000168104,"dressing hydrofibre with silver 2 cm x 45 cm ribbon, 5" -1085491000168102,"influenza trivalent geriatric vaccine 2018 injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122631000168107,"influenza trivalent geriatric vaccine 2018 injection, 5 x 0.5 mL syringes" -815101000168102,"Entrip 25 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",856711000168100,"Entrip 25 mg film-coated tablet, 90" -711231000168104,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006101000168108,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule" -931518011000036103,"Granisetron (Kabi) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747091000168105,"Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules" -80226011000036103,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868441000168104,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag" -37351011000036103,"Primacor 10 mg/10 mL injection: solution, 10 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",719521000168103,"Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules" -90411000036105,"dinoprostone 400 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005341000168104,"dinoprostone 1 mg/3 g vaginal gel, 3 g syringe" -80220011000036101,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868131000168104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag" -137811000036108,"Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005871000168102,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag" -921856011000036109,"Macu-Vision tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",757871000168100,"Macu-Vision film-coated tablet, 30, bottle" -34805011000036103,"Subutex 8 mg tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",685721000168101,"Subutex 8 mg sublingual tablet, 100, bottle" -859061000168106,"Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1087261000168104,"Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations, pump pack" -11717011000036101,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041141000168107,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device" -137891000036103,"Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005971000168107,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule" -81139011000036102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",868191000168100,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags" -48655011000036104,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694191000168100,"Mefix (310250) 2.5 cm x 10 m tape" -815121000168106,"Entrip 25 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",856731000168105,"Entrip 25 mg film-coated tablet, 100" -82563011000036103,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, 5 L bag",900000000000526001,"REPLACED BY association reference set",872401000168105,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 5 L bag" -28231000036107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725041000168107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 125 mL pouches" -75342011000036101,"Q fever inactivated vaccine 2.5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955101000168103,"Q fever skin test injection, 0.5 mL vial" -941581000168101,"Metformin (AS) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",949471000168102,"Metformin 1000 (AS) 1 g film-coated tablet" -75008011000036107,"Q fever inactivated vaccine 2.5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",955081000168105,"Q fever skin test injection, 0.5 mL vial" -82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826101000168103,"Streptococcus pneumoniae type 4 conjugate antigen" -82151011000036101,"Calsource Ca1000 tablet: effervescent, 10",900000000000526001,"REPLACED BY association reference set",745591000168106,"Calsource Ca1000 effervescent tablet, 10" -84626011000036103,"dibasic sodium phosphate heptahydrate 398 mg + monobasic sodium phosphate monohydrate 1.27 g tablet, 32",900000000000526001,"REPLACED BY association reference set",900251000168105,"monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet, 32" -84076011000036105,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873141000168106,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags" -7509011000036109,"Eskazole 400 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844071000168104,"Eskazole 400 mg tablet" -80517011000036102,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864391000168105,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags" -22714011000036107,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/mL ear drops",900000000000526001,"REPLACED BY association reference set",758311000168102,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops" -711151000168103,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006241000168102,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -85081011000036100,"tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694221000168106,"tape plaster adhesive with silicone 2 cm x 3 m tape" -75005011000036101,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine + cholera toxin B subunit recombinant oral vaccine",900000000000526001,"REPLACED BY association reference set",821861000168100,"cholera vaccine" -86168011000036103,"Go Kit (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",830981000168109,"Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack" -50502011000036104,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694211000168104,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll, carton" -711581000168100,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005611000168109,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -66452011000036108,"Cepacol 0.05% mouthwash, 150 mL",900000000000526001,"REPLACED BY association reference set",994981000168104,"Cepacol 0.05% mouthwash, 150 mL" -927915011000036101,"Oxynorm 50 mg/mL intravenous infusion injection, ampoule",900000000000526001,"REPLACED BY association reference set",1055131000168103,"Oxynorm 50 mg/mL injection solution, ampoule" -931388011000036102,"Decongestant (Chemmart) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083591000168102,"Decongestant (Chemmart) 0.05% nasal spray, 20 mL, pump pack" -728741000168103,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005791000168106,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -38803011000036100,"isoflurane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",46487011000036108,"isoflurane 1 mL/mL inhalation solution, 100 mL" -86185011000036107,"Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872371000168107,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag" -74802011000036103,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822911000168104,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe" -40068011000036106,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",693281000168107,"Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 20 mL ampoule" -21968011000036109,"leuprorelin acetate 45 mg injection: modified release, syringe",900000000000526001,"REPLACED BY association reference set",750011000168102,"leuprorelin acetate 45 mg modified release injection, syringe" -9071000036104,"olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",771951000168108,"olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 20 x 250 mL bags" -74937011000036100,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825791000168100,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials" -687561000168107,"azelastine + fluticasone",900000000000526001,"REPLACED BY association reference set",861271000168103,"azelastine + fluticasone propionate" -732651000168105,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",747001000168104,"Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule" -48505011000036102,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694151000168105,"Medipore (2961) 2.5 cm x 9.1 m tape" -74864011000036108,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824891000168109,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe" -166181000036102,"Moviprep Orange powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902231000168103,"Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets" -933216021000036106,"Recombinate 1000 IU (1 x 1000 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",710951000168107,"Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack" -82401011000036106,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",860381000168103,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100, bottle" -689681000168105,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831321000168101,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack" -142501000036106,"Vivotif Oral enteric capsule, 3",900000000000526001,"REPLACED BY association reference set",827271000168100,"Vivotif Oral enteric capsule, 3" -84800011000036103,"Strepsils lozenge",900000000000526001,"REPLACED BY association reference set",720291000168100,"Strepsils Cool lozenge" -73627011000036102,"Bacillus Calmette and Guerin live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",822391000168107,"Mycobacterium bovis (BCG) live antigen" -63132011000036101,"benzydamine hydrochloride 0.3% spray, 15 mL",900000000000526001,"REPLACED BY association reference set",721321000168100,"benzydamine hydrochloride 0.3% oral spray, 15 mL" -74198011000036109,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",821381000168104,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack" -732671000168101,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",747021000168108,"Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules" -117601000036103,"Zoely, 84 tablets [3 x 28]",900000000000526001,"REPLACED BY association reference set",683951000168108,"Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28" -933225651000036109,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorbutol 5% + arachis oil 57% ear drops, 10 mL",900000000000526001,"REPLACED BY association reference set",854361000168109,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops, 10 mL" -81217011000036100,"acetate + calcium chloride + citric acid + magnesium chloride + potassium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",834131000168102,"sodium chloride + potassium chloride + calcium chloride dihydrate + magnesium chloride + acetate + citric acid" -920656011000036106,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949361000168103,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, blister pack" -9021000036103,"Clinoleic 20% injection: emulsion, 24 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",771931000168102,"Clinoleic 20% injection emulsion, 24 x 100 mL bags" -80174011000036108,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",900000000000526001,"REPLACED BY association reference set",864231000168104,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag" -711861000168106,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005151000168100,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -931723011000036100,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872801000168108,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles" -922550011000036108,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",757911000168102,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 90" -48733011000036106,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688941000168102,"Hypafix (71443-1) 5 cm x 10 m tape" -6711011000036107,"Dysport 500 units injection: powder for, 500 units vial",900000000000526001,"REPLACED BY association reference set",721021000168103,"Dysport 500 units powder for injection, 500 units vial" -75350011000036103,"rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",826361000168104,"rubella live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack" -281000168103,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 6 sachets",900000000000526001,"REPLACED BY association reference set",810231000168107,"Actonel EC Combi D effervescent granules, 6 sachets" -2439011000036108,"pancrelipase",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2524011000036100,"protease" -712001000168108,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005121000168108,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags" -653311000168102,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, 8 sachets",900000000000526001,"REPLACED BY association reference set",669051000168107,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets" -75407011000036104,"rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822891000168101,"rotavirus live vaccine oral liquid, 1.5 mL syringe" -75068011000036106,"hepatitis A inactivated vaccine 50 units/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825141000168109,"hepatitis A adult vaccine 50 units/mL injection, syringe" -706361000168105,"measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831401000168102,"measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack" -687941000168101,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825041000168105,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe" -922148011000036104,"sorbitol 70% non-crystallising oral liquid",900000000000526001,"REPLACED BY association reference set",690601000168107,"sorbitol solution 70% non-crystallising oral liquid" -90431000036101,"dinoprostone 800 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005391000168107,"dinoprostone 2 mg/3 g vaginal gel, 3 g syringe" -815141000168100,"Entrip 25 mg tablet, 1000",900000000000526001,"REPLACED BY association reference set",856751000168104,"Entrip 25 mg film-coated tablet, 1000" -941621000168101,"Metformin (AS) 1 g film-coated tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",949511000168106,"Metformin 1000 (AS) 1 g film-coated tablet, 30, blister pack" -67274011000036104,"Panadol Children's 7+ Years 250 mg tablet: soluble, 12",900000000000526001,"REPLACED BY association reference set",721551000168101,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12" -74989011000036103,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",839841000168103,"polio trivalent inactivated vaccine" -933234591000036103,"Omeprazole (Apo) 20 mg capsule",900000000000526001,"REPLACED BY association reference set",717531000168106,"Omeprazole (Apo) 20 mg enteric capsule" -19821000036106,"Albey Venom Albumin Saline",900000000000526001,"REPLACED BY association reference set",754701000168106,"Albumin Saline (Stallergenes)" -73834011000036102,"Co-Phenylcaine Forte nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",791921000168105,"Co-Phenylcaine Forte nasal spray" -127311000036104,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725301000168107,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 87 mL pouches" -73806011000036102,"Meruvax II (rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",826321000168109,"Meruvax II (rubella live vaccine) powder for injection, vial" -36929011000036106,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",850921000168106,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses" -35164011000036102,"codeine phosphate 30 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",834711000168106,"codeine phosphate hemihydrate 30 mg tablet, 100" -85671011000036101,"Kevtam 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",938301000168107,"Kevtam-1000 1 g film-coated tablet, 60" -33632011000036108,"bee venom",900000000000526001,"REPLACED BY association reference set",758791000168105,"honey bee venom" -37547011000036107,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835501000168104,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL, bottle" -87921000036106,"dinoprostone 800 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005371000168106,"dinoprostone 2 mg/3 g vaginal gel, syringe" -110321000036101,"Sorbact (S98310) 10 cm x 10 cm foam dressing, 10, carton",900000000000526001,"REPLACED BY association reference set",1056351000168104,"Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10, carton" -74231000036104,"Levetiracetam (Pfizer) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003601000168105,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, blister pack" -728701000168100,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005751000168101,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 100 mL bag" -921813011000036108,"Citracal Plus D tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",859901000168106,"Citracal Plus D film-coated tablet, 60, bottle" -37552011000036107,"Colistin (Link) 150 mg powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",817501000168102,"Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial" -929971011000036100,"Medi Quattro First Aid cream",900000000000526001,"REPLACED BY association reference set",863531000168104,"Medi Quattro First Aid cream" -696501000168109,"meningococcal group B adhesin A protein",900000000000526001,"REPLACED BY association reference set",822401000168109,"Neisseria meningitidis group B adhesin A protein" -706341000168106,"M-M-R II (measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831361000168106,"M-M-R II (measles + mumps + rubella live vaccine) powder for injection, vial" -74246011000036103,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825261000168102,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes" -730621000168103,"Granisetron (AFT) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747121000168109,"Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules" -20608011000036102,"Citracal 250 mg (calcium 250 mg) tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",860061000168105,"Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120, bottle" -83703011000036106,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872471000168100,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag" -21233011000036108,"fluticasone + salmeterol",900000000000526001,"REPLACED BY association reference set",861471000168104,"fluticasone propionate + salmeterol" -924141011000036100,"smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",821311000168105,"smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack" -665491000168105,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",834721000168104,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100" -59827011000036106,"Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715421000168100,"Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g, tube" -925344011000036101,"Pemzo 20 mg capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",717381000168100,"Pemzo 20 mg enteric capsule, 100, bottle" -81045011000036108,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863821000168104,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags" -933223201000036107,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724851000168101,"MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches" -81129011000036104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",867871000168109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags" -923761011000036101,"Omeprazole (Pharmacor) 20 mg capsule, 500, blister pack",900000000000526001,"REPLACED BY association reference set",717311000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 500, blister pack" -127301000036101,"MSUD Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725311000168105,"MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches" -665501000168103,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",834731000168101,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100, blister pack" -75403011000036108,"hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824611000168101,"hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe" -930836011000036101,"Actonel EC Combi (4 x Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28",900000000000526001,"REPLACED BY association reference set",852711000168101,"Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28" -33104011000036106,"Soflax tablet: film-coated",900000000000526001,"REPLACED BY association reference set",733631000168108,"Soflax (Ascent Pharma) film-coated tablet" -66456011000036107,"Cepacol Mint 0.05% mouthwash, 500 mL",900000000000526001,"REPLACED BY association reference set",995321000168100,"Cepacol Mint 0.05% mouthwash, 500 mL" -931839011000036103,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder, 1 sachet",900000000000526001,"REPLACED BY association reference set",931833011000036101,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 1 sachet" -730601000168107,"Granisetron (AFT) 1 mg/mL injection: concentrated, ampoule",900000000000526001,"REPLACED BY association reference set",747101000168100,"Granisetron (AFT) 1 mg/mL injection solution, ampoule" -82342011000036100,"Aspalgin dispersible tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",834381000168104,"Aspalgin dispersible tablet, 100, blister pack" -34231000036101,"Tadim 1 million units (80 mg) powder for inhalation, 30 vials",900000000000526001,"REPLACED BY association reference set",818121000168103,"Tadim 1 million units powder for inhalation, 30 vials" -933230091000036102,"Cardiprin 100 mg dispersible tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",803981000168105,"Cardiprin 100 mg tablet, 30, blister pack" -77429011000036104,"calcium carbonate + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide",900000000000526001,"REPLACED BY association reference set",861731000168107,"calcium + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide" -27944011000036105,"pancreatic extract 5000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847521000168100,"lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule, 100" -18393011000036101,"ADT Booster injection: suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837361000168100,"ADT Booster injection suspension, 5 x 0.5 mL syringes" -844451000168104,"Zovirax 200 mg tablet, 90, bottle",900000000000526001,"REPLACED BY association reference set",859461000168103,"Zovirax Dispersible 200 mg tablet, 90, bottle" -35671011000036109,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses, ampoule",900000000000526001,"REPLACED BY association reference set",718751000168107,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses, ampoule" -48468011000036102,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688841000168106,"Elastoplast Tape (1004) 10 cm x 2.5 m tape" -74860011000036103,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822591000168104,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack" -50922011000036100,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694391000168103,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape" -83533011000036101,"dibasic sodium phosphate heptahydrate",900000000000527005,"SAME AS association reference set",85238011000036109,"dibasic sodium phosphate heptahydrate" -76806011000036109,"Centrum tablet: film-coated, 150",900000000000526001,"REPLACED BY association reference set",833381000168101,"Centrum film-coated tablet, 150" -74261000036105,"Levetiracetam (Pfizer) 1 g film-coated tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",1003611000168108,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, bottle" -924887011000036106,"Pemzo 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",716891000168106,"Pemzo 20 mg enteric capsule, 500" -84436011000036102,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag",900000000000526001,"REPLACED BY association reference set",873051000168109,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag" -925341011000036104,"Omepro 20 mg capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",716851000168101,"Omepro 20 mg enteric capsule, 60, bottle" -27582011000036101,"interferon alfa-2b 60 million units/1.2 mL injection, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722841000168106,"interferon alfa-2b 60 million units/1.2 mL injection, 1.2 mL" -711621000168100,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005711000168102,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules" -71761000036104,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 120",900000000000526001,"REPLACED BY association reference set",862061000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 120" -81132011000036107,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868371000168104,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag" -814431000168101,"Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, bottles",900000000000526001,"REPLACED BY association reference set",1085551000168108,"Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs" -920985011000036109,"Citracal Plus D tablet: film-coated",900000000000526001,"REPLACED BY association reference set",859871000168106,"Citracal Plus D film-coated tablet" -44074011000036107,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693361000168107,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules" -74760011000036100,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821391000168101,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack" -45018011000036103,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, bag",900000000000526001,"REPLACED BY association reference set",1013391000168108,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bag" -69221000036106,"carbomer",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",35410011000036107,"carbomer-980" -65241011000036102,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",863621000168103,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag" -711961000168104,"Ropibam 0.75% 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005201000168108,"Ropibam 0.75% 150 mg/20 mL injection solution, 20 mL ampoule" -74893011000036108,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",830901000168101,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -66835011000036107,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705461000168108,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g" -921493011000036101,"B-Dose (Biological Therapies) injection: solution, 6 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704561000168105,"B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials" -933231541000036107,"Naropin 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005071000168108,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -67168011000036100,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",863641000168109,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag" -74342011000036105,"Ipol injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839911000168108,"Ipol injection solution, 10 x 0.5 mL syringes" -67425011000036100,"Aqium 66% gel, 70 mL",900000000000526001,"REPLACED BY association reference set",730461000168106,"Aqium 66% gel, 70 mL" -46681000168100,"Albey Paper Wasp Vaccine",900000000000526001,"REPLACED BY association reference set",32999011000036104,"Paper Wasp Venom (Albey)" -48585011000036103,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694401000168101,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape" -84671011000036107,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride 300 mg (magnesium 1.5 mmol)/L + sodium acetate trihydrate 3.68 g/L injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872481000168102,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, 1 L bag" -931677011000036103,"Actonel EC Combi (1 x Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack",900000000000526001,"REPLACED BY association reference set",852691000168104,"Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack" -44104011000036108,"Zovirax 800 mg dispersible tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",859521000168107,"Zovirax Dispersible 800 mg tablet, 120, bottle" -728381000168109,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872091000168105,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe" -13618011000036104,"Keppra 1 g tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",721061000168108,"Keppra-1000 1 g film-coated tablet, 60" -69033011000036100,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705471000168102,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g, jar" -74952011000036101,"Varicella zoster live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",830851000168105,"varicella-zoster live vaccine" -664501000168102,"sodium alginate + calcium carbonate + potassium bicarbonate",900000000000526001,"REPLACED BY association reference set",21740011000036105,"sodium alginate + bicarbonate + calcium carbonate" -17865011000036106,"Aspalgin dispersible tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",834291000168106,"Aspalgin dispersible tablet, 50, blister pack" -73900011000036106,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832201000168106,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial" -76123011000036104,"Compound Benzoin Tincture Friar's Balsam (Orion) solution",900000000000526001,"REPLACED BY association reference set",696411000168106,"Compound Benzoin Friar's Balsam (Orion) tincture (Old Formulation 2010)" -63181000036102,"glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",688131000168108,"iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 200 mL" -75046011000036101,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824751000168109,"hepatitis A adult vaccine 1440 ELISA units/mL injection, syringe" -73671011000036109,"Varicella zoster live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",829871000168107,"varicella-zoster virus live antigen" -71751000036102,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",862071000168100,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120" -728561000168106,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006041000168106,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 10 mL ampoule" -51260011000036102,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",724021000168100,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL pouches" -77573011000036107,"iopromide 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695051000168107,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 mL vial" -71884011000036104,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995361000168105,"cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 16" -929118011000036100,"Picolax powder for oral liquid, 20 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",833481000168109,"Picolax powder for oral liquid, 20 x 20 g sachets" -74970011000036103,"rabies inactivated vaccine",900000000000526001,"REPLACED BY association reference set",821341000168109,"rabies vaccine" -56188011000036103,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 2",900000000000526001,"REPLACED BY association reference set",861381000168109,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2" -921929011000036106,"MD-Gastroview solution, 12 x 120 mL each, bottle",900000000000526001,"REPLACED BY association reference set",696181000168106,"MD-Gastroview solution, 12 x 120 mL, bottles" -806271000168105,"Repatha 140 mg/mL injection: solution, 3 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846441000168107,"Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices" -18886011000036109,"Atropt 1% eye drops solution, 15 mL, bottle",900000000000526001,"REPLACED BY association reference set",850981000168105,"Atropt 1% eye drops solution, 15 mL, bottle" -929478011000036106,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724571000168107,"PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches" -252121000168101,"Lophlex LQ 10 oral liquid: solution, 62.5 mL can",900000000000526001,"REPLACED BY association reference set",726241000168106,"Lophlex LQ 10 oral liquid solution, 62.5 mL pouch" -73673011000036105,"cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine",900000000000526001,"REPLACED BY association reference set",821811000168103,"Vibrio cholerae O1 inactivated antigen" -925145011000036108,"Omepro 20 mg capsule, 90, blister pack",900000000000526001,"REPLACED BY association reference set",716981000168102,"Omepro 20 mg enteric capsule, 90, blister pack" -49529011000036106,"PKU Cooler15 Purple oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725671000168107,"PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches" -67313011000036101,"Cepacol Antibacterial Honey and Lemon lozenge, 2",900000000000526001,"REPLACED BY association reference set",995091000168101,"Cepacol Antibacterial Honey and Lemon lozenge, 2" -73798011000036103,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955091000168108,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial" -682141000168101,"testosterone undecanoate 1 g/4 mL injection, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722951000168100,"testosterone undecanoate 1 g/4 mL modified release injection, 4 mL vial" -7622011000036101,"Codapane Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835931000168100,"Codapane Forte 500/30 uncoated tablet" -933195991000036103,"Levetiracetam (LAPL) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003461000168109,"Levetiracetam 1000 (LAPL) 1 g film-coated tablet" -74776011000036107,"Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083571000168103,"Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL, pump pack" -926948011000036103,"Priorix powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831161000168108,"Priorix powder for injection, 10 vials" -32701000036106,"colistimethate sodium 1 million units (80 mg) powder for inhalation, vial",900000000000526001,"REPLACED BY association reference set",818091000168102,"colistimethate sodium 1 million units powder for inhalation, vial" -80649011000036107,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",872571000168101,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags" -682161000168102,"Reandron 1 g/4 mL injection: solution, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722971000168109,"Reandron-1000 1 g/4 mL modified release injection, 4 mL vial" -37366011000036100,"Lanoxin 500 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735071000168103,"Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules" -18431011000036101,"Codalgin uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",836031000168107,"Codalgin uncoated tablet, 50, blister pack" -680621000168102,"Zaldiar Combination Therapy film-coated tablet, 20",900000000000526001,"REPLACED BY association reference set",1027831000168101,"Zaldiar film-coated tablet, 20" -74866011000036100,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822231000168101,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack" -923387011000036105,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827441000168108,"Prevenar-13 injection suspension, 0.5 mL syringe" -662431000168104,"Metformin Hydrochloride (AN) 1 g film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949411000168105,"Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90, blister pack" -473491000168102,"amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",724051000168108,"amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL pouch" -933204881000036109,"Acris Combi (1 x 35 mg tablet, 6 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",852581000168101,"Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7" -74335011000036103,"Co-Phenylcaine Forte nasal spray, 50 mL",900000000000526001,"REPLACED BY association reference set",792091000168103,"Co-Phenylcaine Forte nasal spray, 50 mL" -933231831000036100,"Fluoride Witchy Candy Mint (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932531000168108,"Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL, aerosol can" -29251000036105,"Typhim Vi 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827211000168108,"Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes" -72121000036103,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL",900000000000526001,"REPLACED BY association reference set",764301000168101,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL" -698461000168108,"meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822821000168103,"meningococcal B 4 component vaccine injection, 10 x 0.5 mL syringes" -75451011000036101,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825111000168105,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL vial" -933231781000036106,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004771000168106,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags" -37937011000036102,"calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 1 sachet",900000000000526001,"REPLACED BY association reference set",810201000168100,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet" -698421000168103,"Bexsero injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822781000168108,"Bexsero injection suspension, 0.5 mL syringe" -95361000036107,"Menactra injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826571000168104,"Menactra injection solution, 0.5 mL vial" -680601000168106,"Zaldiar Combination Therapy film-coated tablet",900000000000526001,"REPLACED BY association reference set",1027821000168104,"Zaldiar film-coated tablet" -4978011000036106,"Codalgin uncoated tablet",900000000000526001,"REPLACED BY association reference set",836011000168102,"Codalgin uncoated tablet" -73629011000036109,"Q fever inactivated vaccine",900000000000526001,"REPLACED BY association reference set",821471000168109,"Coxiella burnetii antigen" -75631000036102,"risedronate sodium 35 mg enteric tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 28",900000000000526001,"REPLACED BY association reference set",852701000168104,"risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28" -727991000168107,"fluoxetine 20 mg dispersible tablet, 7",900000000000526001,"REPLACED BY association reference set",844761000168108,"fluoxetine 20 mg tablet, 7" -86727011000036100,"Aqueous Cream (David Craig) cream, 500 g",900000000000526001,"REPLACED BY association reference set",768311000168109,"Aqueous Cream APF (David Craig) cream, 500 g" -70054011000036101,"magnesium sulfate heptahydrate 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection, ampoule",900000000000526001,"REPLACED BY association reference set",701531000168104,"magnesium sulfate heptahydrate 2.47 g/5 mL injection, ampoule" -48741000036106,"chlorhexidine gluconate 0.12% mouthwash",900000000000526001,"REPLACED BY association reference set",933196671000036101,"chlorhexidine gluconate 0.12% mouthwash" -933214661000036100,"Levetiracetam (GH) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003401000168108,"Levetiracetam 1000 (GH) 1 g film-coated tablet, 60, blister pack" -60758011000036105,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",996191000168108,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2, blister pack" -34884011000036103,"codeine phosphate 5 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",52247011000036107,"codeine phosphate hemihydrate 5 mg/mL oral liquid" -74196011000036105,"Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821591000168109,"Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -22009011000036108,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",838051000168100,"pneumococcal 23 valent vaccine injection, 0.5 mL vial" -921994011000036101,"Sorbi Sorbitol 70% non-crystallising oral liquid: solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",690641000168109,"Sorbi 70% non-crystallising oral liquid solution, 500 mL, bottle" -36232011000036102,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 2 mL vial",900000000000526001,"REPLACED BY association reference set",720781000168106,"Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 2 mL vial" -22921011000036107,"interferon alfa-2b 60 million units/1.2 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",722821000168100,"interferon alfa-2b 60 million units/1.2 mL injection" -84919011000036101,"Strepsils lozenge, 10",900000000000526001,"REPLACED BY association reference set",721941000168105,"Strepsils Cool lozenge, 10" -82459011000036101,"retinyl palmitate 0.054% ointment",900000000000526001,"REPLACED BY association reference set",694971000168103,"retinol palmitate 0.099% ointment" -74240011000036101,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825371000168100,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials" -75387011000036108,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823181000168100,"human papillomavirus bivalent vaccine injection, 10 x 0.5 mL syringes" -35224011000036106,"buprenorphine 400 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",685811000168100,"buprenorphine 400 microgram sublingual tablet, 100" -83701011000036105,"Glycoprep-C Flavoured powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901121000168102,"Glycoprep-C powder for oral liquid, 210 g sachet" -74840011000036108,"Drixine Adult 0.05% nasal spray, 5 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083691000168103,"Drixine Adult 0.05% nasal spray, 5 mL, pump pack" -933204871000036107,"Acris Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",852611000168108,"Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28" -844551000168103,"Zovirax 800 mg tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",859521000168107,"Zovirax Dispersible 800 mg tablet, 120, bottle" -921532011000036105,"Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695231000168105,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles" -63368011000036101,"paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) dexchlorpheniramine maleate 2 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [8], 24",900000000000526001,"REPLACED BY association reference set",63905011000036101,"paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24" -74872011000036106,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",828281000168103,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack" -4738011000036104,"Baraclude 500 microgram tablet: film-coated",900000000000526001,"REPLACED BY association reference set",829501000168104,"Baraclude 500 microgram film-coated tablet" -74976011000036100,"Haemophilus influenzae type b vaccine",900000000000526001,"REPLACED BY association reference set",832181000168105,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine" -61581000036105,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839731000168100,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial" -65610011000036103,"Disprin Max 500 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",804351000168104,"Disprin Max 500 mg tablet" -29231000036102,"Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827191000168107,"Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -51407011000036101,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689161000168105,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll" -60570011000036109,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721771000168100,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL, bottle" -860231000168106,"Ostelin Osteoguard film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",932991000168103,"Ostelin Osteoguard film-coated tablet, 90, blister pack" -860191000168102,"boric acid 8.6 mg (boron 1.5 mg) + calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet",900000000000526001,"REPLACED BY association reference set",932951000168108,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet" -927418011000036105,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831141000168109,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, 10 vials" -91311000036108,"Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",730011000168101,"Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial" -69731000036100,"Salofalk 1.5 g granules, 1.5 g sachet",900000000000526001,"REPLACED BY association reference set",1084231000168101,"Salofalk 1.5 g modified release granules, 1.5 g sachet" -78110011000036107,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 100 mL",900000000000526001,"REPLACED BY association reference set",705841000168107,"glycerol 10% + cetomacrogol aqueous cream, 100 mL" -664291000168105,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",900000000000526001,"REPLACED BY association reference set",833621000168108,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL" -72141000036106,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL",900000000000526001,"REPLACED BY association reference set",764271000168103,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL" -85769011000036101,"Kepcet 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003031000168109,"Kepcet-1000 1 g film-coated tablet, 60" -33071011000036107,"Albey Paper Wasp Venom (paper wasp venom 550 microgram) injection: powder for, 550 microgram vial",900000000000526001,"REPLACED BY association reference set",758891000168100,"Paper Wasp Venom (Albey) (paper wasp venom 550 microgram) powder for injection, 550 microgram vial" -26481000036108,"Voltaren Osteo 1% gel",900000000000526001,"REPLACED BY association reference set",1037091000168108,"Voltaren Osteo 1.16% gel" -82039011000036108,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick",900000000000526001,"REPLACED BY association reference set",729261000168102,"Silver Nitrate Applicator (Grafco) stick" -84659011000036108,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873131000168102,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags" -20924011000036104,"Prodeine Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835821000168106,"Prodeine Forte uncoated tablet, 20, blister pack" -702621000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837391000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial" -74394011000036108,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824681000168107,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe" -711841000168107,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005101000168104,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -75119011000036109,"inert substance powder for oral liquid, 5.6 g sachet",900000000000526001,"REPLACED BY association reference set",821891000168107,"inert substance effervescent granules, 5.6 g sachet" -41218011000036105,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",1013531000168104,"Voluven injection solution, 10 x 500 mL bottles" -31421000036100,"Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827171000168106,"Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe" -923899011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 14, bottle",900000000000526001,"REPLACED BY association reference set",717111000168108,"Omeprazole (Pharmacor) 20 mg enteric capsule, 14, bottle" -75034011000036108,"hepatitis B vaccine 10 microgram/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825621000168109,"hepatitis B adult vaccine 10 microgram/mL injection, syringe" -70065011000036108,"tolnaftate 0.09% spray",900000000000526001,"REPLACED BY association reference set",769591000168100,"tolnaftate 0.09% (900 microgram/g) spray" -923735011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 90, blister pack",900000000000526001,"REPLACED BY association reference set",717461000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 90, blister pack" -929651011000036102,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850851000168106,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules" -933196031000036106,"Levetiracetam (GN) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003421000168104,"Levetiracetam 1000 (GN) 1 g film-coated tablet" -134271000036108,"Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746941000168103,"Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule" -844571000168107,"Zovirax 800 mg tablet, 35, blister pack",900000000000526001,"REPLACED BY association reference set",859411000168101,"Zovirax Dispersible 800 mg tablet, 35, blister pack" -21312011000036103,"heparin sodium",900000000000526001,"REPLACED BY association reference set",858661000168109,"heparin" -664301000168106,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",900000000000526001,"REPLACED BY association reference set",833631000168106,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle" -60199011000036102,"Daktarin 2% oral gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",820011000168101,"Daktarin 2% oral gel, 10 g, tube" -48731000036101,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash",900000000000526001,"REPLACED BY association reference set",933196661000036109,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash" -74418011000036106,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845991000168100,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -43901000036101,"Remeron 30 mg tablet: orally disintegrating, 30",900000000000526001,"REPLACED BY association reference set",783851000168107,"Remeron Soltab 30 mg orally disintegrating tablet, 30" -664281000168107,"magnesium trisilicate 50 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",833611000168101,"magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL" -26751011000036102,"darbepoetin alfa 80 microgram/0.4 mL injection, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041181000168102,"darbepoetin alfa 80 microgram/0.4 mL injection, 0.4 mL injection device" -75525011000036108,"meningococcal group C conjugate vaccine 10 microgram injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",826451000168107,"meningococcal C conjugate vaccine injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack" -933231851000036108,"Fluoride Tyranna Grape (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932591000168107,"Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL, aerosol can" -82326011000036103,"MSUD Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724961000168106,"MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles" -76700011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872981000168106,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle" -925354011000036103,"Pemzo 20 mg capsule, 7, bottle",900000000000526001,"REPLACED BY association reference set",717651000168104,"Pemzo 20 mg enteric capsule, 7, bottle" -60205011000036104,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",861431000168102,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2, blister pack" -806241000168103,"Repatha 140 mg/mL injection: solution, 2 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846421000168101,"Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices" -75522011000036100,"Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",840651000168108,"diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 5 x 0.5 mL vials" -82129011000036103,"Aspalgin dispersible tablet, 20",900000000000526001,"REPLACED BY association reference set",834251000168101,"Aspalgin dispersible tablet, 20" -6259011000036109,"Lovan 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844351000168105,"Lovan 20 mg tablet" -21895011000036109,"diphenoxylate + atropine sulfate",900000000000526001,"REPLACED BY association reference set",850991000168108,"diphenoxylate + atropine sulfate monohydrate" -44077011000036101,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693261000168103,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules" -38614011000036108,"atropine sulfate 500 microgram/mL injection, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850601000168106,"atropine sulfate monohydrate 500 microgram/mL injection, 50 x 1 mL ampoules" -27359011000036100,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/g ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758281000168104,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g" -139221000036105,"Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005851000168106,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -75346011000036102,"azelastine hydrochloride 140 microgram/actuation nasal spray, 10 mL",900000000000526001,"REPLACED BY association reference set",809571000168103,"azelastine hydrochloride 0.1% nasal spray, 10 mL" -94741000036106,"Ostelin Vitamin D and Calcium tablet: film-coated, 250",900000000000526001,"REPLACED BY association reference set",862291000168106,"Ostelin Vitamin D and Calcium film-coated tablet, 250" -74941011000036109,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826501000168109,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -121571000036105,"Canesten Plus cream, 30 g, tube",900000000000526001,"REPLACED BY association reference set",715891000168101,"Canesten Plus cream, 30 g, tube" -75520011000036104,"hepatitis B vaccine 10 microgram/mL injection, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825771000168101,"hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL vials" -775701000168109,"Codalgin uncoated tablet, 40, blister pack",900000000000526001,"REPLACED BY association reference set",836131000168108,"Codalgin uncoated tablet, 40, blister pack" -69539011000036104,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995381000168101,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16, blister pack" -941661000168106,"Metformin (AS) 1 g film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949551000168107,"Metformin 1000 (AS) 1 g film-coated tablet, 90, blister pack" -930868011000036107,"Elevit with Iodine tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",843301000168108,"Elevit with Iodine film-coated tablet, 100" -28171011000036104,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041361000168109,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, 0.5 mL injection device" -73906011000036109,"Varilrix (Varicella zoster live attenuated vaccine 1995 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",830871000168101,"Varilrix (varicella-zoster live vaccine) powder for injection, vial" -933049011000036106,"Lasix High Dose 20 mg/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",704841000168108,"Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules" -21807011000036101,"pancreatic extract",900000000000526001,"REPLACED BY association reference set",847131000168105,"lipase + amylase + protease" -88091000036107,"Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated",900000000000526001,"REPLACED BY association reference set",861841000168109,"Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet" -700411000168101,"ADT Booster injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837361000168100,"ADT Booster injection suspension, 5 x 0.5 mL syringes" -63581000168104,"Clozole Vaginal Cream (Meditab)",900000000000526001,"REPLACED BY association reference set",715831000168100,"Clozole (Meditab)" -75022011000036102,"rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, tube",900000000000526001,"REPLACED BY association reference set",822461000168105,"rotavirus pentavalent live vaccine oral liquid, 2 mL tube" -4506011000036107,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838061000168103,"Pneumovax-23 injection solution, 0.5 mL vial" -11948011000036101,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715381000168109,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g" -63686011000036105,"clotrimazole 10% cream, 5 g",900000000000526001,"REPLACED BY association reference set",715591000168104,"clotrimazole 10% vaginal cream, 5 g" -860211000168101,"boric acid 8.6 mg (boron 1.5 mg) + calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet, 90",900000000000526001,"REPLACED BY association reference set",932971000168104,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet, 90" -22792011000036104,"calcium (as carbonate) 500 mg tablet",900000000000526001,"REPLACED BY association reference set",847871000168101,"calcium carbonate 1.25 g (calcium 500 mg) tablet" -70301000036106,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet",900000000000526001,"REPLACED BY association reference set",862011000168108,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet" -61211000036100,"Rehydration Formula Effervescent (Amcal) effervescent tablet",900000000000526001,"REPLACED BY association reference set",871721000168100,"Rehydration Formula Effervescent (Amcal) effervescent tablet" -711741000168101,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005531000168103,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -656231000168106,"Levetiracetam (AN) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003161000168102,"Levetiracetam 1000 (AN) 1 g film-coated tablet, 60, blister pack" -137821000036101,"Menitorix (inert substance) diluent, syringe",900000000000526001,"REPLACED BY association reference set",828351000168100,"Menitorix (inert substance) diluent, 0.5 mL syringe" -22698011000036109,"flurbiprofen sodium 0.03% (120 microgram/0.4 mL) eye drops, ampoule",900000000000526001,"REPLACED BY association reference set",684561000168103,"flurbiprofen sodium dihydrate 0.03% eye drops, unit dose" -36215011000036102,"Actacode Linctus 5 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",835541000168102,"Actacode Linctus 5 mg/mL oral liquid solution" -87841000036108,"docosahexaenoic acid 22 mg + eicosapentaenoic acid 47 mg + krill oil 333.3 mg capsule",900000000000526001,"REPLACED BY association reference set",88131000036105,"krill oil 333.3 mg capsule" -921544011000036100,"Gastrolyte Citrus effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871571000168109,"Gastrolyte Citrus effervescent tablet, 20" -923842011000036101,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827481000168103,"Prevenar-13 injection suspension, 10 x 0.5 mL syringes" -46211000036101,"Remeron 15 mg tablet: orally disintegrating, 30, blister pack",900000000000526001,"REPLACED BY association reference set",783831000168101,"Remeron Soltab 15 mg orally disintegrating tablet, 30, blister pack" -135841000036104,"Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746961000168104,"Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule" -26421000036107,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 1 sachet",900000000000526001,"REPLACED BY association reference set",673991000168105,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 1 sachet" -103771000036108,"Victoza 18 mg/3 mL injection: solution, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748061000168104,"Victoza 6 mg/mL injection solution, 3 mL injection device" -140501000036105,"Bydureon (4 x 2 mg vials, 4 x inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",833931000168101,"Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs, composite packs" -12971011000036107,"Prozac 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844331000168104,"Prozac 20 mg tablet, 28" -700371000168102,"ADT Booster injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837321000168105,"ADT Booster injection suspension, 0.5 mL syringe" -65604011000036106,"Cepacol Antibacterial Honey and Lemon lozenge",900000000000526001,"REPLACED BY association reference set",995041000168109,"Cepacol Antibacterial Honey and Lemon lozenge" -65202011000036104,"Microshield Handrub solution",900000000000526001,"REPLACED BY association reference set",767631000168109,"Microshield Handrub solution" -74385011000036108,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825831000168106,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial" -73660011000036106,"poliomyelitis virus type 1 (Sabin strain (LS-c, 2ab)) live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",838011000168101,"poliovirus type 1 live antigen" -689601000168102,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",831311000168108,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack" -71955011000036101,"methylated spirit industrial 66% gel, 375 mL",900000000000526001,"REPLACED BY association reference set",730511000168109,"ethanol 66% gel, 375 mL" -76187011000036101,"Centrum tablet: film-coated",900000000000526001,"REPLACED BY association reference set",833031000168100,"Centrum film-coated tablet" -689661000168101,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831241000168101,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -44518011000036105,"Etopophos 500 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793531000168103,"Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial" -46393011000036106,"lignocaine hydrochloride anhydrous 2% (400 mg/20 mL) injection, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693421000168107,"lidocaine (lignocaine) hydrochloride monohydrate 2% (400 mg/20 mL) injection, 30 x 20 mL ampoules" -65293011000036109,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705581000168100,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream" -81169011000036108,"Gastrolyte orange powder for oral liquid, 10 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871641000168101,"Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets" -57101011000036107,"Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution, 30 mL",900000000000526001,"REPLACED BY association reference set",721281000168105,"Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL" -31541000036107,"typhoid fever polysaccharide vaccine + hepatitis A inactivated vaccine",900000000000526001,"REPLACED BY association reference set",827291000168104,"hepatitis A + typhoid vaccine" -703291000168104,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",828061000168100,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -74924011000036109,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",827761000168101,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack" -74751011000036100,"Infanrix Hexa injection: suspension, 10 packs, composite pack",900000000000526001,"REPLACED BY association reference set",841011000168105,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack" -66731000036105,"calcium carbonate + magnesium + magnesium trisilicate",900000000000526001,"REPLACED BY association reference set",871081000168103,"calcium carbonate + magnesium carbonate + magnesium trisilicate" -56481000036107,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL, bottle",900000000000526001,"REPLACED BY association reference set",751261000168100,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL, bottle" -80521011000036103,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863921000168107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags" -74998011000036107,"diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine",900000000000526001,"REPLACED BY association reference set",837621000168102,"diphtheria + tetanus + pertussis 3 component vaccine" -67423011000036101,"Aqium 66% gel, 1 L",900000000000526001,"REPLACED BY association reference set",730551000168105,"Aqium 66% gel, 1 L" -922691011000036101,"Varicella zoster live attenuated vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",831751000168105,"varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack" -933226161000036105,"fluoride 9.99 mg/g + hydrofluoric acid 4.9 mg/g foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932361000168106,"sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL" -73462011000036107,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL gel: intestinal, 7 x 1 mL bags",900000000000526001,"REPLACED BY association reference set",720511000168106,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel, 7 x 100 mL" -922018011000036103,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",832031000168108,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack" -20659011000036101,"Caltrate 600 mg (calcium 600 g) tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",860341000168108,"Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle" -933242931000036100,"Aspalgin dispersible tablet, 40",900000000000526001,"REPLACED BY association reference set",834311000168105,"Aspalgin dispersible tablet, 40" -83390011000036102,"Prozero oral liquid: solution, 18 x 250 mL cans",900000000000526001,"REPLACED BY association reference set",745361000168105,"Prozero oral liquid solution, 18 x 250 mL cartons" -84917011000036108,"Strepsils lozenge, 36",900000000000526001,"REPLACED BY association reference set",720321000168108,"Strepsils Cool lozenge, 36" -373381000168102,"TYR Cooler 20 oral liquid: solution, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725951000168105,"TYR Cooler 20 oral liquid solution, 174 mL pouch" -101121000036106,"Victoza 18 mg/3 mL injection: solution, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748051000168101,"Victoza 6 mg/mL injection solution, 3 mL injection device" -12639011000036105,"Zovirax 800 mg dispersible tablet, 35",900000000000526001,"REPLACED BY association reference set",859221000168109,"Zovirax Dispersible 800 mg tablet, 35" -49450011000036109,"Aquacel (177904) 2 g (30 cm) rope, 5 x 2 g",900000000000526001,"REPLACED BY association reference set",745121000168102,"Aquacel (177904) 2 cm x 45 cm ribbon, 5" -61116011000036103,"Difflam Lozenge honey and lemon sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995721000168101,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2, blister pack" -13455011000036101,"Lomotil uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",851121000168104,"Lomotil uncoated tablet, 20" -923451011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",717361000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 60" -70260011000036108,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge",900000000000526001,"REPLACED BY association reference set",995161000168107,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge" -66584011000036100,"Ringworm 1% ointment, 15 g",900000000000526001,"REPLACED BY association reference set",800421000168106,"Ringworm (Amneal) 1% ointment, 15 g" -60823011000036104,"Difflam Cough Lozenge blackcurrant sugar free lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",995561000168104,"Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24, blister pack" -806081000168102,"Repatha 140 mg/mL injection: solution, injection device",900000000000526001,"REPLACED BY association reference set",846371000168107,"Repatha Sureclick 140 mg/mL injection solution, injection device" -844491000168109,"Zovirax 800 mg tablet, 35",900000000000526001,"REPLACED BY association reference set",859221000168109,"Zovirax Dispersible 800 mg tablet, 35" -836191000168107,"Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872351000168103,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag" -142411000036109,"typhoid fever live attenuated oral vaccine enteric capsule",900000000000526001,"REPLACED BY association reference set",827241000168107,"typhoid live vaccine enteric capsule" -924176011000036109,"plerixafor 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891121000168105,"plerixafor 24 mg/1.2 mL injection, 1.2 mL vial" -12168011000036108,"Canesten Clotrimazole Thrush Treatment 6 Day 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715071000168108,"Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g" -78312011000036102,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 250",900000000000526001,"REPLACED BY association reference set",833431000168108,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 250" -34380011000036105,"Subutex 8 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685711000168108,"Subutex 8 mg sublingual tablet, 100" -921409011000036101,"Macu-Vision tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",757861000168106,"Macu-Vision film-coated tablet, 30" -137701000036104,"Bydureon (exenatide 2 mg) powder for injection, 2 mg vial",900000000000526001,"REPLACED BY association reference set",833871000168108,"Bydureon (exenatide 2 mg) modified release injection, 2 mg vial" -74759011000036101,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",832001000168101,"Zostavax (10 x 19 400 vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack" -9131000036102,"olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779121000168104,"olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 350 mL bag" -4493011000036107,"Eligard 6 Month (leuprorelin acetate 45 mg) injection: modified release, syringe",900000000000526001,"REPLACED BY association reference set",766131000168100,"Eligard 6 Month (leuprorelin acetate 45 mg) modified release injection, 45 mg syringe" -711371000168109,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004511000168109,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -929478011000036106,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724451000168104,"PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches" -836201000168105,"Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872361000168101,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag" -711781000168106,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005571000168100,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 100 mL bag" -51901000036104,"chlorhexidine gluconate 0.12% mouthwash, 300 mL",900000000000526001,"REPLACED BY association reference set",751241000168104,"chlorhexidine gluconate 0.12% mouthwash, 300 mL" -665471000168109,"PKU Cooler20 Gold oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725701000168108,"PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches" -74241011000036108,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825601000168100,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial" -930681011000036105,"Regaine Men's Extra Strength Foam 5% foam, 63 mL",900000000000526001,"REPLACED BY association reference set",710771000168100,"Regaine Men's Extra Strength 5% foam, 63 mL" -74974011000036108,"Q fever inactivated vaccine",900000000000526001,"REPLACED BY association reference set",821551000168104,"Q fever vaccine" -75398011000036105,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, 1 pack",900000000000526001,"REPLACED BY association reference set",840911000168102,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack" -75515011000036102,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846011000168101,"meningococcal C conjugate vaccine injection, 20 x 0.5 mL syringes" -931709011000036105,"Elevit with Iodine tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",843201000168101,"Elevit with Iodine film-coated tablet, 30, blister pack" -19137011000036108,"Zentel 200 mg chewable tablet, 6, blister pack",900000000000526001,"REPLACED BY association reference set",844241000168102,"Zentel 200 mg tablet, 6, blister pack" -44515011000036104,"Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085261000168108,"Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations, pump pack" -140431000036104,"Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial",900000000000526001,"REPLACED BY association reference set",746881000168102,"Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial" -74354011000036103,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",822301000168101,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack" -70141000036107,"salicylic acid 2% conditioner",900000000000526001,"REPLACED BY association reference set",648371000168104,"salicylic acid 2% conditioner" -79718011000036100,"Septopal Chain 7.5 mg implant, 1 bead, sachet",900000000000526001,"REPLACED BY association reference set",684551000168100,"Septopal Chain 7.5 mg implant, 30 beads, sachet" -86461011000036106,"bisacodyl 5 mg enteric tablet [3] (&) citric acid 14 g + magnesium carbonate heavy 7.5 g powder for oral liquid [1 x 21.5 g sachet] (&) bisacodyl 10 mg suppository [1], 1 pack",900000000000526001,"REPLACED BY association reference set",831431000168109,"bisacodyl 5 mg enteric tablet [3] (&) bisacodyl 10 mg suppository [1] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack" -96251000036107,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",861901000168102,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet, 60" -71858011000036103,"benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995051000168106,"benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 16" -75092011000036106,"hepatitis A inactivated vaccine 160 antigen units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824651000168100,"hepatitis A child/adult vaccine injection, 0.5 mL syringe" -82916011000036101,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000526001,"REPLACED BY association reference set",827581000168104,"pneumococcal 10 valent conjugate vaccine" -81151011000036102,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868461000168100,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag" -664271000168109,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension",900000000000526001,"REPLACED BY association reference set",833601000168104,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension" -933231521000036104,"Naropin 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004671000168102,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags" -51402011000036103,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694411000168103,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll" -86912011000036104,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% oromucosal paste",900000000000526001,"REPLACED BY association reference set",797571000168105,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste" -75061011000036102,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839851000168101,"polio trivalent inactivated vaccine injection, 0.5 mL syringe" -52234011000036102,"salicylic acid + sulfur-precipitated",900000000000526001,"REPLACED BY association reference set",69871011000036100,"salicylic acid + precipitated sulfur + aqueous cream" -664261000168103,"magnesium trisilicate 50 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",833591000168106,"magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid" -711301000168104,"Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004591000168100,"Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule" -921857011000036107,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831741000168108,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack" -48526011000036104,"Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689061000168106,"Leukoflex (1124) 5 cm x 5 m tape" -38810011000036106,"atropine sulfate 1% eye drops, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",850911000168104,"atropine sulfate monohydrate 1% eye drops, 20 x 0.5 mL unit doses" -922663011000036102,"picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid, 2 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",832631000168102,"picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 2 x 20 g sachets" -74541000036107,"Flixonase Nasule 400 microgram/0.4 mL nasal drops: solution, 28 x 0.4 mL unit doses, tube",900000000000526001,"REPLACED BY association reference set",684271000168106,"Flixonase Nasule 400 microgram/0.4 mL nasal drops solution, 28 x 0.4 mL unit doses, ampoule" -165601000036105,"Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726691000168101,"Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device" -930661011000036107,"Prodeine 15 uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",835721000168100,"Prodeine 15 uncoated tablet, 50" -71351000036101,"carbomer 0.2% + triglyceride lipids 1% eye gel, 30 x 600 mg unit doses",900000000000526001,"REPLACED BY association reference set",719611000168106,"carbomer-980 0.2% + triglyceride lipids 1% eye gel, 30 x 600 mg unit doses" -94711000036105,"boric acid 8.6 mg (boron 1.5 mg) + calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet, 90",900000000000526001,"REPLACED BY association reference set",932971000168104,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet, 90" -75393011000036100,"Varicella zoster live attenuated vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831801000168104,"varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack" -83721000036102,"aspirin 300 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804321000168107,"aspirin 300 mg tablet, 6" -51406011000036104,"tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688901000168104,"tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll" -63247011000036102,"miconazole 2% oral gel, 20 g",900000000000526001,"REPLACED BY association reference set",820071000168109,"miconazole 2% oral gel, 20 g" -75523011000036107,"meningococcal group C conjugate vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",826421000168104,"meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -70123011000036106,"calcium gluconate monohydrate 10% (1 g/10 mL) injection, vial",900000000000526001,"REPLACED BY association reference set",684651000168104,"calcium gluconate monohydrate 953 mg/10 mL injection, vial" -75412011000036103,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824971000168103,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL syringe" -9151000036105,"olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, 12 x 350 mL bags",900000000000526001,"REPLACED BY association reference set",779161000168109,"olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 12 x 350 mL bags" -81288011000036101,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867961000168105,"glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag" -700301000168107,"diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837281000168100,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe" -683991000168103,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838141000168103,"Pneumovax-23 injection solution, 0.5 mL syringe" -711681000168101,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005501000168105,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -927623011000036107,"Citrulline containing 1 g citrulline oral liquid: powder for, 30 x 4 g sachets",900000000000527005,"SAME AS association reference set",108551000036104,"Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets" -78307011000036103,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 120",900000000000526001,"REPLACED BY association reference set",833221000168106,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 120" -150811000036108,"Lax-Sachets solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674291000168101,"Lax-Sachets powder for oral liquid, 30 sachets" -711701000168103,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005671000168101,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags" -697121000168105,"Salofalk 3 g granules, 30 sachets",900000000000526001,"REPLACED BY association reference set",1084341000168104,"Salofalk 3 g modified release granules, 30 sachets" -74265011000036102,"Infanrix Hexa injection: suspension, 1 pack",900000000000526001,"REPLACED BY association reference set",840921000168109,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack" -923014011000036100,"Acam2000 (smallpox live vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",821301000168107,"Acam2000 (smallpox live vaccine) powder for injection, vial" -74846011000036106,"Co-Phenylcaine Forte nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",792041000168106,"Co-Phenylcaine Forte nasal spray, 15 mL, pump pack" -73661000036109,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses, ampoule",900000000000526001,"REPLACED BY association reference set",719631000168101,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses, ampoule" -684031000168104,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",838181000168108,"pneumococcal 23 valent vaccine injection, 10 x 0.5 mL syringes" -11718011000036100,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041091000168100,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device" -77478011000036108,"calcium carbonate + calcium lactate gluconate",900000000000526001,"REPLACED BY association reference set",745551000168101,"calcium" -35134011000036106,"morphine hydrochloride 2 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",872701000168101,"morphine hydrochloride 2 mg/mL oral liquid, 100 mL" -12396011000036102,"Lanoxin 50 microgram/mL oral liquid: solution, 60 mL",900000000000526001,"REPLACED BY association reference set",735021000168104,"Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL" -921867011000036103,"Cardiprin 100 mg dispersible tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",804091000168106,"Cardiprin 100 mg tablet, 100, blister pack" -930007011000036108,"Regaine Men's Extra Strength Foam 5% foam",900000000000526001,"REPLACED BY association reference set",710761000168106,"Regaine Men's Extra Strength 5% foam" -82986011000036103,"pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827611000168106,"pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe" -14621000036109,"Clinoleic 20% injection: emulsion, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771841000168102,"Clinoleic 20% injection emulsion, 500 mL bag" -923940011000036106,"smallpox live vaccine",900000000000526001,"REPLACED BY association reference set",821281000168108,"smallpox live vaccine" -50921011000036106,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694341000168106,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape" -933216141000036102,"Valtrex 1 g film-coated tablet, 4, bottle",900000000000526001,"REPLACED BY association reference set",1009711000168104,"Valtrex-1000 1 g film-coated tablet, 4, bottle" -74197011000036108,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955111000168100,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial" -19339011000036109,"Zentel 200 mg chewable tablet, 6, bottle",900000000000526001,"REPLACED BY association reference set",844231000168106,"Zentel 200 mg tablet, 6, bottle" -74778011000036106,"Azep 140 microgram/actuation nasal spray, 5 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",809561000168109,"Azep 0.1% nasal spray, 5 mL, pump pack" -75001011000036103,"diphtheria toxoid vaccine + Haemophilus influenzae type b vaccine + hepatitis B vaccine + Bordetella pertussis, acellular pertactin vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine + tetanus toxoid vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",828231000168104,"Haemophilus influenzae type b conjugate (PRP-T) vaccine" -36701011000036107,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850611000168109,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules" -73648011000036104,"rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",826251000168106,"rubella virus live antigen" -56931011000036103,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",861581000168102,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16" -74944011000036107,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert powder for oral liquid sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821981000168103,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack, composite pack" -76750011000036101,"Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 10 x 200 mL bottles",900000000000526001,"REPLACED BY association reference set",695791000168100,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles" -34376011000036101,"Subutex 2 mg tablet, 28",900000000000526001,"REPLACED BY association reference set",685771000168100,"Subutex 2 mg sublingual tablet, 28" -33667011000036102,"vespula spp venom 550 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",759041000168109,"yellow jacket venom 550 microgram injection, vial" -37633011000036107,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 5 x 2 mL vials",900000000000526001,"REPLACED BY association reference set",720801000168105,"Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials" -13456011000036108,"Lofenoxal uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",851031000168102,"Lofenoxal uncoated tablet, 20" -50456011000036100,"PKU Cooler20 Purple oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725831000168108,"PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches" -20661011000036107,"Novomix 30 Flexpen injection suspension, 5 x 3 mL syringes",900000000000526001,"REPLACED BY association reference set",1007221000168105,"Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices" -933225781000036106,"Naropin 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004911000168100,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules" -4713011000036103,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041301000168108,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device" -245871000168102,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",710031000168100,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch" -932392011000036100,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826781000168107,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack" -81150011000036109,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868401000168101,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags" -74425011000036106,"Quadracel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840601000168109,"Quadracel injection suspension, 0.5 mL vial" -22871000036105,"paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",758901000168101,"paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack" -76715011000036103,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872061000168103,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe" -19509011000036101,"Panzytrat 25 000 units enteric capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847671000168100,"Panzytrat 25 000 enteric capsule, 100, bottle" -828371000168109,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",846111000168102,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack" -71696011000036101,"benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture, 200 mL",900000000000526001,"REPLACED BY association reference set",688471000168101,"benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 200 mL" -22861000036102,"Albey Paper Wasp Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",758911000168103,"Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack" -49257011000036109,"Monogen powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949691000168103,"Monogen powder for oral liquid, 400 g" -387791000168101,"TYR Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",724881000168108,"TYR Anamix Junior LQ oral liquid solution, 125 mL bottle" -78256011000036100,"iopromide 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695681000168108,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 75 mL bottles" -7594011000036106,"Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726391000168108,"Norditropin Nordiflex 10 mg/1.5 mL injection solution" -78104011000036104,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL cans",900000000000526001,"REPLACED BY association reference set",724441000168101,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL pouches" -933226031000036103,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004811000168106,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags" -73866011000036103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",825631000168107,"H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe" -177681000036103,"lixisenatide 10 microgram/0.2 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",719291000168104,"lixisenatide 10 microgram/dose injection, dose" -74248011000036104,"Gardasil injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",823071000168104,"Gardasil injection suspension, 10 x 0.5 mL vials" -922686011000036105,"paracetamol 500 mg + codeine phosphate 30 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",835841000168100,"paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50" -74264011000036101,"Polio Sabin Multidose oral liquid: solution, 100 vials",900000000000526001,"REPLACED BY association reference set",839821000168109,"Polio Sabin Multidose oral liquid solution, 100 vials" -653331000168107,"Molaxole solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674241000168109,"Molaxole powder for oral liquid, 8 sachets" -653321000168109,"Molaxole solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674231000168100,"Molaxole powder for oral liquid, 8 sachets" -933225791000036108,"ropivacaine hydrochloride monohydrate 150 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004901000168103,"ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules" -36260011000036107,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose",900000000000526001,"REPLACED BY association reference set",850901000168102,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose" -21292011000036108,"sodium chloride + potassium chloride + glucose monohydrate + citric acid",900000000000526001,"REPLACED BY association reference set",81231011000036104,"sodium chloride + potassium chloride + glucose + citric acid" -65422011000036107,"Curash Family Oral Pain Relieving oral gel",900000000000526001,"REPLACED BY association reference set",995481000168109,"Curash Family Oral Pain Relieving oral gel" -82033011000036105,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag",900000000000526001,"REPLACED BY association reference set",872391000168108,"Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag" -84872011000036107,"Mepitac (298300) 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694271000168107,"Mepitac (298300) 2 cm x 3 m tape, 1 roll" -150531000036101,"Nicorette Quickmist 1 mg/actuation oral spray, 2 x 150 actuations",900000000000526001,"REPLACED BY association reference set",1092181000168102,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations" -13736011000036104,"Granocyte 33.6 million units (263 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838271000168104,"Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial" -18495011000036108,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838091000168105,"Pneumovax-23 injection solution, 0.5 mL vial" -22891000036109,"vespula spp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",759061000168108,"yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack" -116271000036106,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets",900000000000526001,"REPLACED BY association reference set",902121000168105,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets" -921398011000036102,"Citracal Plus D tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",859891000168107,"Citracal Plus D film-coated tablet, 60" -22881000036107,"Albey Yellow Jacket Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",759071000168102,"Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack" -18217011000036101,"Puri-Nethol 50 mg uncoated tablet, 25, bottle",900000000000526001,"REPLACED BY association reference set",845461000168103,"Puri-Nethol 50 mg uncoated tablet, 25, bottle" -924890011000036106,"Pemzo 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",717561000168103,"Pemzo 20 mg enteric capsule, 7" -925163011000036101,"Pemzo 20 mg capsule, 280, blister pack",900000000000526001,"REPLACED BY association reference set",716521000168106,"Pemzo 20 mg enteric capsule, 280, blister pack" -75440011000036106,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 25 mL",900000000000526001,"REPLACED BY association reference set",792051000168108,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 25 mL" -177671000036100,"Lyxumia 10 microgram/0.2 mL injection: solution, 0.2 mL unit dose",900000000000526001,"REPLACED BY association reference set",719301000168103,"Lyxumia 10 microgram/dose injection solution, dose" -14581000036109,"Clinoleic 20% injection: emulsion, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771721000168102,"Clinoleic 20% injection emulsion, 100 mL bag" -79057011000036106,"Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704481000168100,"Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial" -828411000168105,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846091000168105,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -75045011000036108,"rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, syringe",900000000000526001,"REPLACED BY association reference set",822871000168102,"rotavirus live vaccine oral liquid, 1.5 mL syringe" -920666011000036103,"Ostelin Vitamin D and Calcium tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862321000168103,"Ostelin Vitamin D and Calcium film-coated tablet, 60, bottle" -74205011000036103,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",826371000168105,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack" -76686011000036100,"Agiolax granules, 250 g",900000000000526001,"REPLACED BY association reference set",832461000168108,"Agiolax granules, 250 g" -6314011000036106,"Panamax Co uncoated tablet",900000000000526001,"REPLACED BY association reference set",836041000168103,"Panamax Co uncoated tablet" -73672011000036103,"cholera toxin B subunit recombinant oral vaccine",900000000000526001,"REPLACED BY association reference set",821801000168101,"cholera toxin B subunit" -56164011000036107,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 2",900000000000526001,"REPLACED BY association reference set",861421000168100,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2" -35646011000036103,"Movicol-Half solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674141000168101,"Movicol-Half powder for oral liquid, 30 sachets" -4571011000036106,"Kenacomb ointment",900000000000526001,"REPLACED BY association reference set",758221000168103,"Kenacomb ointment" -75383011000036104,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823091000168103,"human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL syringes" -933231841000036105,"Fluoride Bumble Bee Bubble Gum (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932381000168102,"Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL, aerosol can" -74908011000036105,"Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083751000168104,"Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL, pump pack" -65283011000036105,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705441000168109,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream" -59774011000036103,"Clotrimazole 6 Day (Guardian) 1% cream, 30 g, tube",900000000000526001,"REPLACED BY association reference set",715231000168101,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g, tube" -75396011000036106,"Varicella zoster live attenuated vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",831981000168101,"varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack" -80527011000036106,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863781000168109,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags" -78259011000036109,"iopromide 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695271000168108,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 100 mL bottles" -711451000168106,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005021000168107,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules" -729881000168107,"calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",859991000168100,"calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100" -923052011000036100,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827421000168102,"Prevenar-13 injection suspension, 0.5 mL syringe" -38712011000036108,"colistimethate 150 mg injection, 1 vial",900000000000526001,"REPLACED BY association reference set",817481000168106,"colistin 150 mg (4.5 million units) injection, 1 vial" -1895011000036106,"calcium chloride",900000000000527005,"SAME AS association reference set",64897011000036103,"calcium chloride dihydrate" -32534011000036100,"Reandron oily solution 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720581000168100,"Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule" -923906011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 56, bottle",900000000000526001,"REPLACED BY association reference set",717351000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 56, bottle" -933056011000036100,"Rivotril Drops 2.5 mg/mL oral liquid: solution, 10 mL, bottle",900000000000526001,"REPLACED BY association reference set",729131000168100,"Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL, bottle" -80641011000036108,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868071000168102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag" -686401000168107,"Plegridy 125 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",698581000168100,"Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL syringe" -108701000036109,"dressing hydrogel 10 cm x 10 cm dressing, 20",900000000000526001,"REPLACED BY association reference set",1056181000168109,"dressing hydrophobic 10 cm x 10 cm dressing, 20" -91531000036108,"Zytiga 250 mg tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",863381000168105,"Zytiga 250 mg uncoated tablet, 120, bottle" -686421000168103,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",698601000168109,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes" -81301011000036104,"calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, bag",900000000000526001,"REPLACED BY association reference set",872211000168107,"sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, bag" -73635011000036109,"human papillomavirus (type 16) vaccine",900000000000526001,"REPLACED BY association reference set",822741000168103,"human papillomavirus type 16 antigen" -924875011000036108,"Omepro 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",716691000168107,"Omepro 20 mg enteric capsule, 500" -928847011000036103,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715821000168103,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g, tube" -51410011000036104,"tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688951000168100,"tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll" -159221000036109,"Oxycontin Reformulation 30 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928247011000036107,"Oxycontin 30 mg modified release tablet, 28" -170401000168100,"MSUD Cooler 20 oral liquid: solution, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725341000168109,"MSUD Cooler 20 oral liquid solution, 174 mL pouch" -928209011000036106,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715811000168105,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g" -80519011000036109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",863861000168109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag" -922557011000036109,"aspirin 100 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",804071000168105,"aspirin 100 mg tablet, 100" -74406011000036109,"Boostrix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837661000168107,"Boostrix injection suspension, 0.5 mL syringe" -12776011000036109,"Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 5 x 0.4 mL ampoules",900000000000526001,"REPLACED BY association reference set",684591000168105,"Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses" -74258011000036102,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825651000168101,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836971000168109,"Streptococcus pneumoniae type 23F polysaccharide antigen" -927681011000036102,"Avamys 27.5 microgram/actuation nasal spray, 120 actuations, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1082991000168102,"Avamys 27.5 microgram/actuation nasal spray, 120 actuations, pump pack" -67132011000036107,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 25 mL",900000000000526001,"REPLACED BY association reference set",688431000168104,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL" -74742011000036109,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825611000168102,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial" -924201011000036106,"pancreatic extract 5000 units/100 mg enteric coated granules, 20 g",900000000000526001,"REPLACED BY association reference set",847161000168102,"lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules, 20 g" -67177011000036107,"Microshield Handrub solution, 125 mL",900000000000526001,"REPLACED BY association reference set",767671000168107,"Microshield Handrub solution, 125 mL" -44259011000036103,"Imigran S 10 mg/actuation nasal spray, 2 actuations, vial",900000000000526001,"REPLACED BY association reference set",728161000168103,"Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation, vials" -921854011000036101,"Macu-Vision tablet: film-coated, 150, bottle",900000000000526001,"REPLACED BY association reference set",757961000168104,"Macu-Vision film-coated tablet, 150, bottle" -697091000168106,"Salofalk 3 g granules, 3 g sachet",900000000000526001,"REPLACED BY association reference set",1084311000168103,"Salofalk 3 g modified release granules, 3 g sachet" -7418011000036106,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041351000168107,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device" -73881011000036106,"Vaqta Adult 50 units/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",824911000168106,"Vaqta Adult 50 units/mL injection suspension, vial" -28329011000036108,"paracetamol 500 mg + codeine phosphate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",79240011000036102,"paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20" -711421000168103,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005071000168108,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules" -22264011000036102,"neomycin 3.5 mg/g + bacitracin zinc 400 international units/g ointment",900000000000526001,"REPLACED BY association reference set",689831000168108,"neomycin 0.35% + bacitracin zinc 400 units/g ear ointment" -6503011000036105,"Creon 10 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847441000168105,"Creon 10 000 enteric capsule" -920849011000036107,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 130",900000000000526001,"REPLACED BY association reference set",862251000168101,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 130" -77143011000036100,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L, pump pack",900000000000526001,"REPLACED BY association reference set",706001000168107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L, pump pack" -27989011000036101,"omeprazole 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716171000168103,"omeprazole 20 mg enteric capsule, 30" -44966011000036103,"pentastarch + sodium chloride",900000000000526001,"REPLACED BY association reference set",1013381000168105,"hydroxyethyl starch 130/0.4 + sodium chloride" -713361000168104,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005441000168106,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836951000168100,"Streptococcus pneumoniae type 20 polysaccharide antigen" -38702011000036105,"risedronate sodium 35 mg tablet [4] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [24 sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",810511000168100,"risedronate sodium 35 mg tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack" -49492011000036100,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725181000168101,"PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets" -844841000168103,"Zovirax 400 mg tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",859571000168108,"Zovirax Dispersible 400 mg tablet, 100, blister pack" -52180011000036101,"Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint, 25 mL, poison bottle",900000000000526001,"REPLACED BY association reference set",703161000168100,"Salicylic Acid APF (extemporaneous) 10% paint, 25 mL, poison bottle" -729901000168109,"Citracal Plus D tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",860011000168107,"Citracal Plus D film-coated tablet, 100, bottle" -836161000168100,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872311000168104,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag" -923439011000036103,"Creon Micro 5000 units/100 mg enteric coated granules, 20 g",900000000000526001,"REPLACED BY association reference set",847171000168108,"Creon Micro enteric coated granules, 20 g" -85089011000036101,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, sachet",900000000000526001,"REPLACED BY association reference set",851531000168109,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet" -74947011000036101,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831131000168100,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack" -65266011000036101,"Ora-Sed Jel oral gel",900000000000526001,"REPLACED BY association reference set",936641000168104,"Ora-Sed Jel oral gel" -50928011000036102,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",693971000168100,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape" -146211000036106,"Tecfidera 240 mg capsule: modified release, 56, blister pack",900000000000526001,"REPLACED BY association reference set",756391000168107,"Tecfidera 240 mg enteric capsule, 56, blister pack" -20408011000036100,"Oxynorm 5 mg/5 mL oral liquid: solution, 250 mL, bottle",900000000000526001,"REPLACED BY association reference set",815951000168101,"Oxynorm 1 mg/mL oral liquid solution, 250 mL, bottle" -76823011000036105,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",861991000168108,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60" -86927011000036106,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet",900000000000526001,"REPLACED BY association reference set",860071000168104,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet" -138791000036106,"Menitorix (10 x vaccine vials, 10 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",846081000168107,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack" -56685011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 20 mL",900000000000526001,"REPLACED BY association reference set",721921000168104,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL" -49487011000036104,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724081000168101,"HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836851000168108,"Streptococcus pneumoniae type 9V polysaccharide antigen" -682121000168107,"testosterone undecanoate 1 g/4 mL injection, vial",900000000000526001,"REPLACED BY association reference set",722931000168106,"testosterone undecanoate 1 g/4 mL modified release injection, vial" -23641011000036102,"paracetamol 500 mg + codeine phosphate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",79115011000036100,"paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet" -158371000036105,"Oxycontin Reformulation 10 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6511011000036106,"Oxycontin 10 mg modified release tablet" -54234011000036108,"Clozole Vaginal Cream (Meditab) 2% cream",900000000000526001,"REPLACED BY association reference set",715841000168109,"Clozole (Meditab) 2% vaginal cream" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836931000168106,"Streptococcus pneumoniae type 19A polysaccharide antigen" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836831000168102,"Streptococcus pneumoniae type 8 polysaccharide antigen" -29191000036107,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 8 sachets",900000000000526001,"REPLACED BY association reference set",674041000168100,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 8 sachets" -75377011000036100,"hepatitis B vaccine 20 microgram/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825221000168107,"hepatitis B adult vaccine 20 microgram/mL injection, 1 mL syringe" -130581000036103,"Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726641000168109,"Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose, injection device" -933220921000036101,"Naropin 0.2% (20 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004491000168104,"Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule" -5321011000036103,"Zentel 200 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844201000168104,"Zentel 200 mg tablet" -30521000036108,"Lophlex HCU LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725161000168105,"HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches" -71283011000036105,"soap-soft 50 mg/mL enema, 1 mL bottle",900000000000526001,"REPLACED BY association reference set",685511000168102,"soft soap 50 mg/mL enema, 500 mL" -933221221000036103,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004691000168101,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 100 mL bag" -74207011000036108,"Adacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837491000168103,"Adacel injection suspension, 0.5 mL vial" -13109011000036109,"Repalyte powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871921000168103,"Repalyte powder for oral liquid, 10 x 4.9 g sachets" -84617011000036109,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 200",900000000000526001,"REPLACED BY association reference set",750251000168109,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 200" -37365011000036107,"Lanoxin 50 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735111000168105,"Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836911000168101,"Streptococcus pneumoniae type 17F polysaccharide antigen" -159241000036101,"Oxycontin Reformulation 80 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928483011000036108,"Oxycontin 80 mg modified release tablet, 28" -138921000036106,"Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial",900000000000526001,"REPLACED BY association reference set",746871000168100,"Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial" -76808011000036108,"Centrum tablet: film-coated, 250",900000000000526001,"REPLACED BY association reference set",833441000168104,"Centrum film-coated tablet, 250" -87228011000036107,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 50 g",900000000000526001,"REPLACED BY association reference set",705771000168108,"glycerol 10% + cetomacrogol aqueous cream, 50 g" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836891000168103,"Streptococcus pneumoniae type 14 polysaccharide antigen" -74922011000036100,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1082941000168105,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations, pump pack" -20303011000036100,"Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",879781000168102,"Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack" -74800011000036102,"Decongestant (Priceline) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083631000168102,"Decongestant (Priceline) 0.05% nasal spray, 20 mL, pump pack" -161801000036106,"aspirin 100 mg dispersible tablet, 180",900000000000526001,"REPLACED BY association reference set",804101000168101,"aspirin 100 mg tablet, 180" -81052011000036103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",900000000000526001,"REPLACED BY association reference set",864341000168102,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag" -59805011000036105,"Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",721341000168106,"Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL, pump pack" -933226101000036106,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004751000168102,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, 5 x 100 mL bags" -933221201000036108,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004791000168107,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 200 mL bag" -1021161000168109,"mesalazine 1 g granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084141000168102,"mesalazine 1 g modified release granules, 50 sachets" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836871000168104,"Streptococcus pneumoniae type 11A polysaccharide antigen" -74779011000036103,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831851000168100,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack" -35162011000036106,"codeine phosphate 5 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",52315011000036101,"codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL" -73883011000036107,"Vaqta Adult 50 units/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",825151000168106,"Vaqta Adult 50 units/mL injection suspension, syringe" -82853011000036108,"Questran 8 g powder for oral liquid, 50 sachets",900000000000526001,"REPLACED BY association reference set",1032311000168100,"Questran Lite 8 g powder for oral liquid, 50 sachets" -50346011000036109,"PKU Cooler10 Orange oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725561000168102,"PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches" -74290011000036109,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822931000168109,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes" -933203931000036103,"Levetiracetam (MPPL) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003551000168108,"Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60" -80525011000036101,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863691000168101,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags" -19618011000036101,"Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083721000168107,"Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL, pump pack" -713321000168109,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005461000168105,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags" -56158011000036106,"Daktarin 2% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",820001000168104,"Daktarin 2% oral gel, 10 g" -177911000036102,"lixisenatide 20 microgram/0.2 mL injection, 2 x 14 unit doses",900000000000526001,"REPLACED BY association reference set",719341000168101,"lixisenatide 20 microgram/dose injection, 2 x 14 doses" -50287011000036109,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694431000168108,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll, carton" -63463011000036104,"lignocaine hydrochloride anhydrous 2.5% + benzalkonium chloride 0.1% spray, 125 mL",900000000000526001,"REPLACED BY association reference set",861651000168105,"lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray, 125 mL" -23263011000036109,"calcium (as citrate) 250 mg (calcium 250 mg) tablet",900000000000526001,"REPLACED BY association reference set",860021000168100,"calcium citrate 1.19 g (calcium 250 mg) tablet" -81043011000036107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863961000168102,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags" -177901000036104,"Lyxumia 20 microgram/0.2 mL injection: solution, 2 x 14 unit doses",900000000000526001,"REPLACED BY association reference set",719351000168104,"Lyxumia 20 microgram/dose injection solution, 2 x 14 doses" -921872011000036107,"Centrum Select 50 Plus tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",843341000168105,"Centrum Select 50 Plus film-coated tablet, 100, bottle" -81608011000036100,"glucose 5% (2.5 g/50 mL) injection, 40 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864241000168108,"glucose monohydrate 5% (2.5 g/50 mL) injection, 40 x 50 mL bags" -172401000036108,"Fosamax Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848631000168104,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack" -718811000168103,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine",900000000000526001,"REPLACED BY association reference set",828231000168104,"Haemophilus influenzae type b conjugate (PRP-T) vaccine" -56717011000036106,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24",900000000000526001,"REPLACED BY association reference set",996211000168109,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24" -74726011000036106,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825381000168102,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials" -75355011000036107,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839701000168107,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 5 x 0.5 mL syringes" -73838011000036109,"Havrix 1440 ELISA units/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",824761000168106,"Havrix 1440 ELISA units/mL injection suspension, syringe" -60892011000036102,"Disprin Original 300 mg dispersible tablet, 6, strip pack",900000000000526001,"REPLACED BY association reference set",804341000168101,"Disprin Original 300 mg tablet, 6, strip pack" -172391000036105,"Fosamax Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848621000168102,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack" -13808011000036108,"Creon 5000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847531000168102,"Creon 5000 enteric capsule, 100" -59740011000036109,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995461000168100,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16, blister pack" -39625011000036104,"Naropin",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711291000168100,"Naropin 0.2%" -146191000036107,"Tecfidera 120 mg capsule: modified release, 112, blister pack",900000000000526001,"REPLACED BY association reference set",756291000168102,"Tecfidera 120 mg enteric capsule, 112, blister pack" -718821000168105,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",828241000168108,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial" -74228011000036101,"Prevenar 16 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827561000168108,"Prevenar injection suspension, 10 x 0.5 mL syringes" -8531000036104,"Dysport 300 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721111000168109,"Dysport 300 units powder for injection, 1 vial" -78675011000036107,"Enbrel Auto-Injector 50 mg/mL injection solution, syringe",900000000000526001,"REPLACED BY association reference set",897991000168100,"Enbrel Auto-Injector 50 mg/mL injection solution, injection device" -65554011000036109,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",864281000168103,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag" -933220291000036106,"Levitaccord 1000 mg 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003791000168105,"Levitaccord-1000 1 g film-coated tablet" -26741000036105,"typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",827101000168101,"typhoid inactivated vaccine injection, 0.5 mL syringe" -75401011000036107,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",836761000168101,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 10 x 0.5 mL syringes" -82564011000036101,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, 2 x 5 L bags",900000000000526001,"REPLACED BY association reference set",872431000168103,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 2 x 5 L bags" -74806011000036104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824791000168104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe" -80650011000036104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868231000168109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag" -933203991000036102,"Levetiracetam (GN) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003431000168101,"Levetiracetam 1000 (GN) 1 g film-coated tablet, 60" -924177011000036107,"pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827431000168104,"pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe" -251291000168103,"PKU Anamix Junior oral liquid: powder for, 29 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723941000168109,"PKU Anamix Junior Unflavoured powder for oral liquid, 29 g sachet" -73674011000036107,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine",900000000000526001,"REPLACED BY association reference set",821811000168103,"Vibrio cholerae O1 inactivated antigen" -57061011000036101,"Difflam Lozenge honey and lemon sugar free lozenge, 8",900000000000526001,"REPLACED BY association reference set",995771000168100,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8" -708461000168101,"Kenacomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758321000168109,"Kenacomb Otic ear drops solution" -98931000036106,"Irbesartan (Apo) 150 mg tablet",900000000000526001,"REPLACED BY association reference set",807771000168100,"Irbesartan (Apo) 150 mg film-coated tablet" -63086011000036104,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 10 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995441000168104,"cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge, 16" -14141011000036100,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041471000168105,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device" -706271000168107,"measles virus (Enders' attenuated Edmonston) live vaccine",900000000000526001,"REPLACED BY association reference set",829861000168101,"measles virus live antigen" -82559011000036105,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 100",900000000000526001,"REPLACED BY association reference set",860361000168107,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 100" -921410011000036105,"Macu-Vision tablet: film-coated, 90",900000000000526001,"REPLACED BY association reference set",757921000168109,"Macu-Vision film-coated tablet, 90" -166951000036107,"Moviprep Lemon powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902191000168107,"Moviprep (2 x A sachets, 2 x B sachets), 4 sachets" -44103011000036106,"Zovirax 400 mg dispersible tablet, 70, bottle",900000000000526001,"REPLACED BY association reference set",859551000168104,"Zovirax Dispersible 400 mg tablet, 70, bottle" -75485011000036108,"hepatitis B vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825931000168102,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL vials" -80671011000036109,"Gastrolyte orange powder for oral liquid, 10 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871631000168105,"Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets" -69378011000036107,"Microshield Handrub solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",767651000168103,"Microshield Handrub solution, 500 mL, bottle" -921989011000036104,"Picolax powder for oral liquid, 2 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",832651000168108,"Picolax powder for oral liquid, 2 x 20 g sachets" -368321000168103,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",725891000168107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 130 mL pouch" -63051000036108,"Adacel Polio injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839761000168108,"Adacel Polio injection suspension, 0.5 mL vial" -87794011000036101,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724991000168104,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles" -60201011000036101,"Daktarin 2% oral gel, 20 g, tube",900000000000526001,"REPLACED BY association reference set",820091000168105,"Daktarin 2% oral gel, 20 g, tube" -921841011000036102,"Berocca Performance Original effervescent tablet, 45, bottle",900000000000526001,"REPLACED BY association reference set",829791000168103,"Berocca Performance Original effervescent tablet, 45, bottle" -76153011000036103,"Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 20 mL vial",900000000000526001,"REPLACED BY association reference set",695501000168101,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 20 mL vial" -60728011000036106,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721581000168108,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL, bottle" -708471000168107,"triamcinolone acetonide 0.09% + neomycin sulfate 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758331000168107,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL" -77577011000036103,"iopromide 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695661000168104,"iopromide 769 mg (iodine 370 mg)/mL injection, 75 mL bottle" -46412011000036108,"aciclovir 400 mg dispersible tablet, 70",900000000000526001,"REPLACED BY association reference set",800451000168103,"aciclovir 400 mg tablet, 70" -40315011000036100,"Forteo 20 microgram injection: solution, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726931000168105,"Forteo 20 microgram/dose injection solution, dose" -177811000036105,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/0.2 mL (0.2 mL) unit doses, 14 x 20 microgram/0.2 mL (0.2 mL) unit doses), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",719421000168102,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack, composite pack" -28391000168106,"Fluoride Koala Berry (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)" -81699011000036106,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868061000168108,"glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag" -61117011000036100,"Difflam Lozenge honey and lemon sugar free lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",995751000168109,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24, blister pack" -65811000036101,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871741000168106,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20, tube" -83298011000036105,"Prozero oral liquid: solution, 6 x 1 L bottles",900000000000526001,"REPLACED BY association reference set",745401000168101,"Prozero oral liquid solution, 6 x 1 L cartons" -86085011000036100,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996051000168102,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24, blister pack" -158341000036103,"Oxycontin Reformulation 40 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6513011000036107,"Oxycontin 40 mg modified release tablet" -923915011000036106,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996021000168105,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24, blister pack" -6901011000036100,"Keppra 1 g tablet: film-coated",900000000000526001,"REPLACED BY association reference set",720981000168108,"Keppra-1000 1 g film-coated tablet" -11721011000036102,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041321000168104,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device" -65025011000036109,"Ringworm",900000000000526001,"REPLACED BY association reference set",800401000168102,"Ringworm (Amneal)" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836791000168108,"Streptococcus pneumoniae type 4 polysaccharide antigen" -933220901000036106,"Naropin 0.2% (40 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004591000168100,"Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule" -713341000168103,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005421000168100,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 100 mL bag" -76811011000036102,"Centrum tablet: film-coated, 8",900000000000526001,"REPLACED BY association reference set",833051000168106,"Centrum film-coated tablet, 8" -82761011000036103,"Questran 8 g powder for oral liquid, 50 sachets",900000000000526001,"REPLACED BY association reference set",1032301000168103,"Questran Lite 8 g powder for oral liquid, 50 sachets" -172431000036101,"Dronalen Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848581000168102,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack" -143951000036107,"dimethyl fumarate 240 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756351000168102,"dimethyl fumarate 240 mg enteric capsule" -172441000036106,"Dronalen Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848591000168104,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack" -27150011000036100,"etidronate disodium 200 mg tablet [28] (&) calcium (as carbonate) 500 mg tablet [76], 104",900000000000526001,"REPLACED BY association reference set",852761000168103,"etidronate disodium 200 mg tablet [28] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [76], 104" -921426011000036100,"Cardiprin 100 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",804081000168108,"Cardiprin 100 mg tablet, 100" -45258011000036104,"disulfiram 200 mg tablet",900000000000526001,"REPLACED BY association reference set",796251000168101,"disulfiram 200 mg effervescent tablet" -933220841000036104,"Naropin 1% (100 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004991000168109,"Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836811000168107,"Streptococcus pneumoniae type 6B polysaccharide antigen" -83329011000036102,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",872191000168106,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules" -81163011000036105,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag",900000000000526001,"REPLACED BY association reference set",872251000168108,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag" -107291000036105,"dressing hydrogel 10 cm x 10 cm dressing",900000000000526001,"REPLACED BY association reference set",1055461000168104,"dressing hydrophobic 10 cm x 10 cm dressing" -76548011000036102,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724301000168106,"PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles" -21165011000036100,"Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726371000168107,"Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL, injection device" -23268011000036104,"pancreatic extract 5000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847501000168109,"lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule" -71462011000036101,"salicylic acid 5% (50 mg/g) + cetomacrogol aqueous cream 950 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705681000168101,"salicylic acid 5% + cetomacrogol aqueous cream, 100 g" -74199011000036101,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",821411000168101,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack" -682131000168105,"Reandron 1 g/4 mL injection: solution, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722941000168102,"Reandron-1000 1 g/4 mL modified release injection, 4 mL vial" -51250011000036109,"triglycerides medium chain formula powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949651000168108,"protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid, 400 g" -1021181000168100,"Salofalk 1 g granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084161000168103,"Salofalk 1 g modified release granules, 50 sachets" -700032111000036102,"calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 24 sachets",900000000000526001,"REPLACED BY association reference set",810251000168101,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 24 sachets" -33776011000036104,"leuprorelin acetate 30 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",698521000168104,"leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack" -20538011000036101,"Granocyte 33.6 million units (263 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838281000168101,"Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial" -50224011000036108,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689181000168101,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll, carton" -75078011000036103,"Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837541000168107,"diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial" -925619011000036101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825441000168100,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -69002011000036102,"Decongestant (Nyal) 0.5% nasal spray, 15 mL, bottle",900000000000526001,"REPLACED BY association reference set",1085301000168100,"Decongestant (Nyal) 0.5% nasal spray, 15 mL, pump pack" -67156011000036107,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872011000168101,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag" -50481011000036100,"Lophlex LQ oral liquid: solution, 30 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",726291000168103,"Lophlex LQ oral liquid solution, 30 x 125 mL pouches" -924210011000036101,"omeprazole 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",716831000168107,"omeprazole 20 mg enteric capsule, 60" -14307011000036107,"Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726361000168101,"Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL" -833781000168102,"somatropin 400 microgram/dose + inert substance injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",975141000168104,"somatropin 400 microgram injection, syringe" -38020011000036100,"atropine sulfate 1% eye drops, unit dose",900000000000526001,"REPLACED BY association reference set",850891000168101,"atropine sulfate monohydrate 1% eye drops, unit dose" -74895011000036109,"Spray-Tish menthol 0.118% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085421000168104,"Spray-Tish menthol 0.118% nasal spray, 15 mL, pump pack" -925136011000036100,"Omepro 20 mg capsule, 500, blister pack",900000000000526001,"REPLACED BY association reference set",716701000168107,"Omepro 20 mg enteric capsule, 500, blister pack" -55767011000036105,"Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution, 15 mL",900000000000526001,"REPLACED BY association reference set",721331000168102,"Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL" -13234011000036103,"Prodeine 15 uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835691000168109,"Prodeine 15 uncoated tablet, 20" -73940011000036100,"Varivax Refrigerated (Varicella zoster live attenuated vaccine 1350 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831711000168109,"Varivax Refrigerated (varicella-zoster live vaccine) powder for injection, vial" -923395011000036101,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",746971000168105,"Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules" -74419011000036103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846021000168108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes" -26688011000036109,"entecavir monohydrate 1 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",829461000168104,"entecavir 1 mg tablet, 30" -87331011000036108,"Levetiracetam (Generic Health) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003341000168103,"Levetiracetam 1000 (Generic Health) 1 g film-coated tablet" -14631000036106,"Clinoleic 20% injection: emulsion, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",772001000168101,"Clinoleic 20% injection emulsion, 10 x 500 mL bags" -51408011000036100,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",693991000168104,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll" -86169011000036106,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet, 1 x Bisacodyl (Fresenius Kabi) suppository), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831451000168103,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack" -933221031000036106,"Fluoride Koala Berry (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932631000168107,"Fluoride (Laclede) Koala Berry Flavour foam" -89881000036109,"Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",730061000168103,"Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial" -703621000168104,"Nimenrix (meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",826921000168105,"Nimenrix (meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine) powder for injection, vial" -73654011000036109,"Bordetella pertussis, acellular pertactin vaccine",900000000000526001,"REPLACED BY association reference set",836221000168101,"Bordetella pertussis pertactin antigen" -71454011000036102,"salicylic acid 3% (30 mg/g) + sulfur-precipitated 3% (30 mg/g) + aqueous cream 940 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705501000168108,"salicylic acid 3% + precipitated sulfur 3% + aqueous cream, 100 g" -22843011000036101,"paracetamol 500 mg + codeine phosphate 8 mg tablet",900000000000526001,"REPLACED BY association reference set",62090011000036109,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet" -728611000168109,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005811000168105,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 200 mL bag" -56778011000036100,"Difflam Lozenge double mint sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995601000168104,"Difflam Lozenge Double Mint Sugar Free lozenge, 16" -827981000168107,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846031000168106,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes" -5915011000036103,"Zovirax 200 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",859181000168101,"Zovirax Dispersible 200 mg tablet" -83700011000036103,"Glycoprep-C Flavoured powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901071000168102,"Glycoprep-C powder for oral liquid, 70 g sachet" -827941000168102,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845991000168100,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes" -833791000168104,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",975151000168102,"Genotropin Miniquick (somatropin 400 microgram) powder for injection, 400 microgram syringe" -84003011000036105,"Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845601000168102,"Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device" -19698011000036102,"Movicol solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",673981000168107,"Movicol powder for oral liquid, 30 sachets" -81213011000036109,"calcium chloride dihydrate + glucose + lactate + magnesium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",861051000168104,"glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride" -73934011000036109,"Infanrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840791000168109,"Infanrix-IPV injection suspension, 0.5 mL syringe" -77561000036103,"aciclovir 800 mg dispersible tablet, 120",900000000000526001,"REPLACED BY association reference set",28319011000036103,"aciclovir 800 mg tablet, 120" -72581000036106,"Salofalk 500 mg granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084081000168106,"Salofalk 500 mg modified release granules, 100 sachets" -68696011000036107,"Ringworm 1% ointment, 15 g, tube",900000000000526001,"REPLACED BY association reference set",800431000168109,"Ringworm (Amneal) 1% ointment, 15 g, tube" -26721000036102,"typhoid fever polysaccharide vaccine 25 microgram + hepatitis A inactivated vaccine 160 ELISA units injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827301000168103,"hepatitis A + typhoid vaccine injection, 1 mL syringe" -80637011000036104,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868361000168105,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag" -83380011000036103,"Prozero oral liquid: solution, 6 x 1 L bottles",900000000000526001,"REPLACED BY association reference set",745411000168103,"Prozero oral liquid solution, 6 x 1 L cartons" -74377011000036106,"Comvax injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832311000168101,"Comvax injection suspension, 0.5 mL vial" -6305011000036108,"Dapa-Tabs 2.5 mg tablet",900000000000526001,"REPLACED BY association reference set",935671000168101,"Dapa-Tabs 2.5 mg film-coated tablet" -87474011000036102,"Levetiracetam (Sandoz) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003641000168107,"Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60" -13839011000036105,"Caltrate 600 mg (calcium 600 g) tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",860331000168104,"Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120" -761241000168107,"Lomotil uncoated tablet, 8, blister pack",900000000000526001,"REPLACED BY association reference set",851111000168106,"Lomotil uncoated tablet, 8, blister pack" -924212011000036102,"omeprazole 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",716961000168106,"omeprazole 20 mg enteric capsule, 90" -20458011000036107,"Probitor 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",717731000168102,"Probitor 20 mg enteric capsule, 30, bottle" -83641000036101,"aspirin 100 mg dispersible tablet, 30",900000000000526001,"REPLACED BY association reference set",63600011000036106,"aspirin 100 mg tablet, 30" -11722011000036108,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041191000168104,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device" -113121000036108,"citric acid 12 g + magnesium oxide 3.5 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 16.1 g sachet",900000000000526001,"REPLACED BY association reference set",902081000168108,"sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 16.1 g sachet" -66457011000036105,"Curash Family Oral Pain Relieving oral gel, 15 g",900000000000526001,"REPLACED BY association reference set",995501000168100,"Curash Family Oral Pain Relieving oral gel, 15 g" -46168011000036106,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 15 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013471000168100,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 15 x 500 mL bags" -933229561000036106,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724861000168104,"MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches" -761201000168105,"Lomotil uncoated tablet, 2",900000000000526001,"REPLACED BY association reference set",851071000168104,"Lomotil uncoated tablet, 2" -56454011000036103,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24",900000000000526001,"REPLACED BY association reference set",967671000168104,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24" -60759011000036102,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996221000168102,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24, blister pack" -89841000036100,"Zytiga 250 mg tablet, 120",900000000000526001,"REPLACED BY association reference set",863371000168107,"Zytiga 250 mg uncoated tablet, 120" -65619011000036109,"Cepacol Plus with Anaesthetic Blackcurrant lozenge",900000000000526001,"REPLACED BY association reference set",995351000168108,"Cepacol Plus with Anaesthetic Blackcurrant lozenge" -69921000036104,"exenatide 10 microgram/0.04 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",726801000168108,"exenatide 10 microgram/dose injection, dose" -40731000036104,"Remeron 15 mg tablet: orally disintegrating",900000000000526001,"REPLACED BY association reference set",783811000168106,"Remeron Soltab 15 mg orally disintegrating tablet" -84442011000036102,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride 300 mg (magnesium 1.5 mmol)/L + sodium acetate trihydrate 3.68 g/L injection, bag",900000000000526001,"REPLACED BY association reference set",872461000168106,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, bag" -61121011000036101,"Difflam Lozenge orange sugar free lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",995851000168104,"Difflam Lozenge Orange Sugar Free lozenge, 24, blister pack" -50933011000036109,"dressing hydrofibre alternate to alginates 2 g (30 cm) rope, 2 g",900000000000526001,"REPLACED BY association reference set",745011000168105,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon" -927557011000036106,"meningococcal group Y (Neisseria meningitidis) conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824491000168107,"Neisseria meningitidis group Y conjugate antigen" -67207011000036103,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",864301000168104,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag" -74720011000036108,"Telnase 55 microgram/actuation nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1082791000168104,"Telnase 55 microgram/actuation nasal spray, 120 actuations, pump pack" -19529011000036109,"Otocomb Otic ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758381000168108,"Otocomb Otic ear ointment, 5 g, tube" -77394011000036104,"Centrum tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",833151000168105,"Centrum film-coated tablet, 60, bottle" -923449011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",717301000168108,"Omeprazole (Pharmacor) 20 mg enteric capsule, 500" -33344011000036105,"Soflax tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",733641000168104,"Soflax (Ascent Pharma) film-coated tablet, 100" -59768011000036102,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721721000168101,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL, bottle" -234701000168100,"triglycerides long chain with glucose polymer oral liquid, 250 mL can",900000000000526001,"REPLACED BY association reference set",745321000168100,"triglycerides long chain with glucose polymer oral liquid, 250 mL carton" -51801000036108,"Valvala 1 g film-coated tablet, 21",900000000000526001,"REPLACED BY association reference set",1009751000168103,"Valvala-1000 1 g film-coated tablet, 21" -82522011000036104,"atropine sulfate 600 microgram/mL injection, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850861000168108,"atropine sulfate monohydrate 600 microgram/mL injection, 50 x 1 mL ampoules" -67424011000036104,"Aqium 66% gel, 375 mL",900000000000526001,"REPLACED BY association reference set",730521000168102,"Aqium 66% gel, 375 mL" -19714011000036104,"Lovan 20 mg dispersible tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",844371000168101,"Lovan 20 mg tablet, 28, blister pack" -50498011000036105,"PKU Cooler15 Orange oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725651000168103,"PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches" -75476011000036108,"Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832301000168104,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial" -81040011000036104,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863931000168105,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags" -84357011000036105,"Cold and Flu Day and Night PE (Pharmacy Choice) (8 x Day tablets, 16 x Night tablets), 24, blister pack",900000000000526001,"REPLACED BY association reference set",749551000168104,"Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack" -54076011000036107,"Difflam Lozenge double mint sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995581000168108,"Difflam Lozenge Double Mint Sugar Free lozenge" -81695011000036109,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",867931000168102,"glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags" -28651000036102,"diclofenac sodium 1% gel, 75 g",900000000000526001,"REPLACED BY association reference set",1037101000168103,"diclofenac diethylamine 1.16% gel, 75 g" -53635011000036107,"Cepacol Cough Plus Lemon lozenge",900000000000526001,"REPLACED BY association reference set",995251000168103,"Cepacol Cough Plus Lemon lozenge" -49439011000036102,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688911000168101,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll" -27754011000036100,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 20",900000000000526001,"REPLACED BY association reference set",851021000168100,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 20" -925159011000036108,"Pemzo 20 mg capsule, 14, blister pack",900000000000526001,"REPLACED BY association reference set",716291000168105,"Pemzo 20 mg enteric capsule, 14, blister pack" -929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724541000168100,"PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches" -12804011000036109,"Otocomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758401000168108,"Otocomb Otic ear drops solution, 7.5 mL" -83986011000036106,"Diacol tablet, 32",900000000000526001,"REPLACED BY association reference set",900261000168107,"Diacol tablet, 32" -692201000168108,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848421000168100,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack" -692161000168103,"Calcium (Actavis) 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",848371000168106,"Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet" -154141000036106,"Nicorette Quickmist 1 mg/actuation oral spray, 150 actuations, aerosol can",900000000000526001,"REPLACED BY association reference set",1091961000168102,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations, aerosol can" -12083011000036105,"Cardiprin 100 mg dispersible tablet, 90",900000000000526001,"REPLACED BY association reference set",804031000168107,"Cardiprin 100 mg tablet, 90" -36179011000036107,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850591000168104,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, ampoule" -844461000168102,"Zovirax 200 mg tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",859611000168104,"Zovirax Dispersible 200 mg tablet, 90, blister pack" -74417011000036105,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845971000168101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe" -14591000036106,"Clinoleic 20% injection: emulsion, 24 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",771941000168106,"Clinoleic 20% injection emulsion, 24 x 100 mL bags" -933220861000036103,"Naropin 0.75% (150 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004891000168102,"Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule" -74260011000036106,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831811000168101,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack" -933225821000036102,"Naropin 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004611000168105,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -28641000036100,"Voltaren Osteo 1% gel, 75 g",900000000000526001,"REPLACED BY association reference set",1037111000168100,"Voltaren Osteo 1.16% gel, 75 g" -73813011000036105,"Twinrix Junior injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824521000168109,"Twinrix Junior injection suspension, 0.5 mL syringe" -921395011000036108,"Berocca Performance Original effervescent tablet, 15",900000000000526001,"REPLACED BY association reference set",829721000168100,"Berocca Performance Original effervescent tablet, 15" -37418011000036108,"Marcain Spinal Heavy injection: solution, 5 x 4 mL ampoules",900000000000526001,"REPLACED BY association reference set",863601000168107,"Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules" -922043011000036101,"ascorbic acid + cupric oxide + D-alpha-tocopheryl acid succinate + zinc oxide",900000000000526001,"REPLACED BY association reference set",757821000168101,"ascorbic acid + d-alpha-tocopheryl acid succinate + zinc + copper" -72972011000036105,"Creon 40 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847321000168109,"Creon 40 000 enteric capsule" -34378011000036102,"Subutex 400 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",685821000168107,"Subutex 400 microgram sublingual tablet, 100" -145281000036105,"Tecfidera 120 mg capsule: modified release, 112",900000000000526001,"REPLACED BY association reference set",756281000168100,"Tecfidera 120 mg enteric capsule, 112" -74754011000036102,"Prevenar 16 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827571000168102,"Prevenar injection suspension, 10 x 0.5 mL syringes" -52549011000036109,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",860271000168109,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120" -49503011000036101,"PKU Cooler20 Orange oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725791000168102,"PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches" -49445011000036103,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688961000168103,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll" -711471000168102,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004661000168108,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags" -74995011000036101,"Yellow fever live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",822181000168107,"yellow fever live vaccine" -36019011000036105,"Codral Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",834401000168104,"Codral Forte uncoated tablet" -670761000168109,"Peptamen Junior powder for oral liquid",900000000000526001,"REPLACED BY association reference set",949641000168106,"Peptamen Junior powder for oral liquid" -933215421000036106,"Acris Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack, blister pack",900000000000526001,"REPLACED BY association reference set",852621000168101,"Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28, blister pack" -49501011000036102,"PKU Cooler10 Orange oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725551000168104,"PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches" -130311000036102,"MSUD Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725321000168103,"MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches" -56163011000036105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 16",900000000000526001,"REPLACED BY association reference set",861451000168108,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16" -692211000168106,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848431000168102,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack" -51409011000036108,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694161000168107,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll" -141541000036101,"lanreotide 90 mg injection, syringe",900000000000526001,"REPLACED BY association reference set",819511000168108,"lanreotide 90 mg/0.5 mL injection, syringe" -4396011000036107,"Questran",900000000000526001,"REPLACED BY association reference set",35521000168109,"Questran Lite" -5225011000036108,"Fluoxebell 20 mg capsule",900000000000526001,"REPLACED BY association reference set",72926011000036108,"Fluoxebell 20 mg hard capsule" -253701000168102,"PKU Lophlex LQ 10 oral liquid: solution, 62.5 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724431000168105,"PKU Lophlex LQ 10 Berry oral liquid solution, 62.5 mL pouch" -925138011000036101,"Omepro 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",716541000168100,"Omepro 20 mg enteric capsule, 28, blister pack" -84878011000036105,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729861000168103,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices" -74743011000036102,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825301000168105,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes" -6439011000036109,"Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722781000168105,"Intron A Redipen 30 million units/1.2 mL injection solution" -921408011000036109,"Macu-Vision tablet: film-coated, 150",900000000000526001,"REPLACED BY association reference set",757951000168101,"Macu-Vision film-coated tablet, 150" -78111011000036100,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 500 mL",900000000000526001,"REPLACED BY association reference set",705881000168102,"glycerol 10% + cetomacrogol aqueous cream, 500 mL" -5428011000036101,"Zovirax 800 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",859211000168102,"Zovirax Dispersible 800 mg tablet" -921083011000036109,"Sorbi Sorbitol 70% non-crystallising oral liquid: solution",900000000000526001,"REPLACED BY association reference set",690611000168105,"Sorbi 70% non-crystallising oral liquid solution" -48544011000036105,"Monogen powder for oral liquid",900000000000526001,"REPLACED BY association reference set",949681000168101,"Monogen powder for oral liquid" -64591000036105,"calcium carbonate 780 mg + magnesium carbonate heavy 130 mg + magnesium trisilicate 130 mg chewable tablet, 12",900000000000526001,"REPLACED BY association reference set",833661000168103,"calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet, 12" -77323011000036106,"Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 10 x 30 mL vials",900000000000526001,"REPLACED BY association reference set",695581000168109,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials" -64581000036108,"Quick-Eze chewable tablet, 12",900000000000526001,"REPLACED BY association reference set",833671000168109,"Quick-Eze chewable tablet, 12" -138901000036101,"Granisetron (Sandoz) 1 mg/mL injection: concentrated, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",747051000168100,"Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials" -639811000168108,"Recombinate 1000 IU (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",710871000168108,"Recombinate (inert substance) diluent, 10 mL vial" -815011000168103,"Entrip 10 mg tablet, 250, bottle",900000000000526001,"REPLACED BY association reference set",856631000168102,"Entrip 10 mg film-coated tablet, 250, bottle" -72940011000036107,"Duodopa gel: intestinal",900000000000526001,"REPLACED BY association reference set",720471000168102,"Duodopa intestinal gel" -22211011000036104,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",834221000168109,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet" -51821000036103,"Valvala 1 g film-coated tablet, 50",900000000000526001,"REPLACED BY association reference set",1009771000168107,"Valvala-1000 1 g film-coated tablet, 50" -69173011000036108,"Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",701571000168101,"Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules" -89861000036104,"Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",730031000168106,"Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial" -710991000168102,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005841000168109,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule" -127541000036109,"Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726631000168100,"Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose" -66721000036108,"Quick-Eze chewable tablet, 12, wrapping",900000000000526001,"REPLACED BY association reference set",833681000168107,"Quick-Eze chewable tablet, 12, wrapping" -927740011000036109,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 1920 million CFU injection, 1 vial",900000000000526001,"REPLACED BY association reference set",1045951000168109,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, 1 vial" -60202011000036107,"Daktarin 2% oral gel, 30 g, tube",900000000000526001,"REPLACED BY association reference set",820061000168103,"Daktarin 2% oral gel, 30 g, tube" -19755011000036107,"Dapa-Tabs 2.5 mg tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",935691000168100,"Dapa-Tabs 2.5 mg film-coated tablet, 90, blister pack" -82676011000036109,"Synflorix 16 microgram injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827601000168108,"Synflorix injection suspension, 0.5 mL syringe" -924204011000036109,"omeprazole 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",716341000168108,"omeprazole 20 mg enteric capsule, 15" -900052011000036103,"Voltaren Emulgel 1% gel, 20 g, tube",900000000000526001,"REPLACED BY association reference set",1037051000168103,"Voltaren Emulgel 1.16% gel, 20 g, tube" -108731000036102,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20",900000000000526001,"REPLACED BY association reference set",1056241000168107,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20" -74709011000036105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825581000168109,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials" -924872011000036100,"Omepro 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716581000168105,"Omepro 20 mg enteric capsule, 30" -900029011000036107,"Voltaren Emulgel 1% gel, 100 g",900000000000526001,"REPLACED BY association reference set",1037011000168104,"Voltaren Emulgel 1.16% gel, 100 g" -44699011000036108,"Metvix 200 mg/g cream, 2 g, tube",900000000000526001,"REPLACED BY association reference set",999321000168103,"Metvix 160 mg/g cream, 2 g, tube" -689791000168102,"Valaciclovir (Apo) 1 g film-coated tablet, 4, blister pack",900000000000526001,"REPLACED BY association reference set",1009721000168106,"Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4, blister pack" -711531000168101,"Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004941000168101,"Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule" -180141000036105,"Bonecal 500 mg tablet: film-coated, 24, bottle",900000000000526001,"REPLACED BY association reference set",848481000168101,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle" -844421000168107,"Zovirax 200 mg tablet, 25",900000000000526001,"REPLACED BY association reference set",859191000168103,"Zovirax Dispersible 200 mg tablet, 25" -80648011000036104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872541000168108,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag" -73946011000036102,"Dukoral (cholera toxin B subunit recombinant oral vaccine 1 mg + cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios) oral liquid suspension, 3 mL vial",900000000000526001,"REPLACED BY association reference set",821881000168109,"Dukoral (cholera vaccine) oral liquid suspension, 3 mL vial" -933204081000036102,"Valaciclovir (GA) 1 g film-coated tablet, 4",900000000000526001,"REPLACED BY association reference set",1009651000168107,"Valaciclovir 1000 (GA) 1 g film-coated tablet, 4" -76825011000036106,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",861801000168107,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60" -933231251000036107,"Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726531000168104,"Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL, injection device" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836611000168106,"Streptococcus pneumoniae type 1 polysaccharide antigen" -82128011000036106,"Aspalgin dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",834371000168102,"Aspalgin dispersible tablet, 100" -83476011000036102,"triglycerides long chain with glucose polymer oral liquid, 6 x 1 L bottles",900000000000526001,"REPLACED BY association reference set",745391000168103,"triglycerides long chain with glucose polymer oral liquid, 6 x 1 L cartons" -923394011000036100,"Levetiracetam (SZ) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003721000168108,"Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60" -49437011000036109,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688861000168105,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll" -67275011000036100,"Panadol Children's 7+ Years 250 mg tablet: soluble, 16",900000000000526001,"REPLACED BY association reference set",721591000168106,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16" -75062011000036108,"Japanese encephalitis inactivated vaccine injection, vial",900000000000526001,"REPLACED BY association reference set",822671000168101,"Japanese encephalitis (mouse brain-derived) inactivated vaccine injection, vial" -75458011000036105,"Haemophilus influenzae type b vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",828291000168100,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack" -923757011000036100,"Omeprazole (Pharmacor) 20 mg capsule, 280, blister pack",900000000000526001,"REPLACED BY association reference set",717211000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 280, blister pack" -75367011000036106,"rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, 10 x 2 mL tubes",900000000000526001,"REPLACED BY association reference set",822511000168108,"rotavirus pentavalent live vaccine oral liquid, 10 x 2 mL tubes" -81727011000036102,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871621000168107,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets" -27345011000036100,"flurbiprofen sodium 0.03% (120 microgram/0.4 mL) eye drops, 5 x 0.4 mL ampoules",900000000000526001,"REPLACED BY association reference set",684581000168107,"flurbiprofen sodium dihydrate 0.03% eye drops, 5 x 0.4 mL unit doses" -74717011000036100,"Adacel Polio injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839721000168103,"Adacel Polio injection suspension, 5 x 0.5 mL syringes" -921086011000036103,"Recombinate 250 IU (octocog alfa 250 international units) injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",710861000168102,"Recombinate (octocog alfa 250 units) powder for injection, 250 units vial" -33606011000036104,"Soflax tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",733651000168102,"Soflax (Ascent Pharma) film-coated tablet, 100, bottle" -69520011000036107,"Disprin Max 500 mg dispersible tablet, 16, strip pack",900000000000526001,"REPLACED BY association reference set",804371000168108,"Disprin Max 500 mg tablet, 16, strip pack" -35775011000036103,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 23.3 mg (0.32 mmol potassium) + sodium bicarbonate 89.25 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",674121000168107,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 30 sachets" -711181000168105,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005891000168101,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags" -84803011000036106,"Elevit tablet: film-coated",900000000000526001,"REPLACED BY association reference set",843081000168103,"Elevit film-coated tablet (Old Formulation 2014)" -69623011000036108,"Cepacol Antibacterial Orange Citrus lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995231000168109,"Cepacol Antibacterial Orange Citrus lozenge, 2, blister pack" -74740011000036105,"Adacel Polio injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839651000168102,"Adacel Polio injection suspension, 0.5 mL syringe" -253701000168102,"PKU Lophlex LQ 10 oral liquid: solution, 62.5 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724561000168101,"PKU Lophlex LQ 10 Tropical oral liquid solution, 62.5 mL pouch" -56686011000036103,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",648781000168102,"Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 200 mL" -925232011000036101,"Panadol Children's 3+ Years 120 mg tablet: chewable, 24, blister pack",900000000000526001,"REPLACED BY association reference set",721701000168105,"Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24, blister pack" -140761000036102,"Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005861000168108,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules" -74371011000036103,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832251000168105,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials" -923453011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",717451000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 90" -60808011000036101,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 6, blister pack",900000000000526001,"REPLACED BY association reference set",844161000168109,"Combantrin-1 with Mebendazole 100 mg tablet, 6, blister pack" -75006011000036108,"meningococcal group C conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826391000168106,"meningococcal C conjugate vaccine" -46751011000036100,"etoposide 500 mg injection, 1 vial",900000000000526001,"REPLACED BY association reference set",793511000168108,"etoposide phosphate 567.8 mg (etoposide 500 mg) injection, 1 vial" -926285011000036102,"Valtrex 1 g film-coated tablet, 4",900000000000526001,"REPLACED BY association reference set",1009691000168102,"Valtrex-1000 1 g film-coated tablet, 4" -37945011000036108,"colistimethate 150 mg injection, vial",900000000000526001,"REPLACED BY association reference set",817461000168102,"colistin 150 mg (4.5 million units) injection, vial" -933226521000036108,"Fluoride Panda Punch (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932611000168102,"Fluoride (Laclede) Panda Punch Flavour foam, 165 mL" -14561000036104,"Zactin 20 mg dispersible tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",844401000168103,"Zactin 20 mg tablet, 28, blister pack" -83963011000036103,"Wagner Magnesium Forte 400 capsules: hard, 200",900000000000526001,"REPLACED BY association reference set",750261000168106,"Magnesium Forte 400 (Wagner) hard capsule, 200" -20711011000036100,"Probitor 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",717721000168100,"Probitor 20 mg enteric capsule, 30, blister pack" -761261000168106,"Lomotil uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",851151000168107,"Lomotil uncoated tablet, 100" -154911000036108,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862171000168104,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet" -41229011000036107,"Keppra 1 g tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",721131000168104,"Keppra-1000 1 g film-coated tablet, 100" -74936011000036103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825761000168107,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial" -19944011000036103,"Creon Forte 25 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847581000168101,"Creon Forte enteric capsule, 100, bottle" -78310011000036101,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 150",900000000000526001,"REPLACED BY association reference set",833371000168104,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 150" -833771000168100,"somatropin + inert substance",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",21220011000036103,"inert substance" -922059011000036100,"ascorbic acid + biotin + calcium carbonate + cyanocobalamin + folic acid + magnesium + magnesium sulfate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + thiamine + zinc citrate trihydrate",900000000000526001,"REPLACED BY association reference set",829681000168106,"thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc" -2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836631000168101,"Streptococcus pneumoniae type 3 polysaccharide antigen" -28173011000036103,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041461000168104,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, 1.5 mL injection device" -7329011000036103,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream",900000000000526001,"REPLACED BY association reference set",715341000168104,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream" -56351000036108,"Valvala 1 g film-coated tablet, 21, blister pack",900000000000526001,"REPLACED BY association reference set",1009761000168101,"Valvala-1000 1 g film-coated tablet, 21, blister pack" -1021101000168108,"mesalazine 500 mg granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084041000168101,"mesalazine 500 mg modified release granules, 50 sachets" -79029011000036100,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL syringes, prefilled injection device",900000000000526001,"REPLACED BY association reference set",898021000168100,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices" -86928011000036107,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet",900000000000526001,"REPLACED BY association reference set",860121000168104,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet" -59670011000036103,"Cepacaine Oral Solution mouthwash, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",994941000168109,"Cepacaine Oral Solution mouthwash, 200 mL, bottle" -56709011000036101,"Difflam Lozenge raspberry sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995891000168109,"Difflam Lozenge Raspberry Sugar Free lozenge, 16" -75510011000036106,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840831000168103,"diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 10 x 0.5 mL syringes" -925164011000036104,"Pemzo 20 mg capsule, 98, blister pack",900000000000526001,"REPLACED BY association reference set",717701000168109,"Pemzo 20 mg enteric capsule, 98, blister pack" -38570011000036102,"aspirin 325 mg + codeine phosphate 30 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",834601000168102,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 50" -921031011000036102,"MD-Gastroview solution, 240 mL bottle",900000000000526001,"REPLACED BY association reference set",696061000168101,"MD-Gastroview solution" -75052011000036103,"rabies inactivated vaccine 2.5 units injection, vial",900000000000526001,"REPLACED BY association reference set",821351000168106,"rabies vaccine injection, vial" -711041000168104,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005921000168106,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules" -81696011000036102,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868411000168103,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags" -922540011000036106,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 45",900000000000526001,"REPLACED BY association reference set",829771000168104,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 45" -12956011000036104,"Movicol solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",673971000168109,"Movicol powder for oral liquid, 30 sachets" -691991000168100,"Calcium (Sandoz) 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",847911000168103,"Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle" -81172011000036105,"Gastrolyte fruit powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871851000168103,"Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets" -380741000168105,"HCU Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",724981000168102,"HCU Anamix Junior LQ oral liquid solution, 125 mL bottle" -924884011000036100,"Pemzo 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716711000168105,"Pemzo 20 mg enteric capsule, 30" -54032011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721511000168102,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL" -84921011000036107,"Glycoprep powder for oral liquid, 200 g",900000000000526001,"REPLACED BY association reference set",851561000168101,"Glycoprep powder for oral liquid, 200 g sachet" -54042011000036109,"Duro-Tuss Dry Cough Lozenge orange lozenge",900000000000526001,"REPLACED BY association reference set",996261000168107,"Duro-Tuss Dry Cough Lozenge orange lozenge" -51424011000036101,"gauze and cotton tissue combine roll 9 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688641000168105,"gauze and cotton tissue combine roll 9 cm x 10 m wrapped pack roll, 1" -711201000168106,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005941000168100,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags" -168951000036106,"Aquacel Ag (403771) 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745071000168102,"Aquacel Ag (403771) 2 cm x 45 cm ribbon" -12801011000036106,"Otocomb Otic ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758371000168105,"Otocomb Otic ear ointment, 5 g" -80524011000036100,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",863721000168105,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag" -711501000168108,"Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004891000168102,"Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule" -81141011000036100,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872631000168100,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag" -1021121000168104,"Salofalk 500 mg granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084061000168102,"Salofalk 500 mg modified release granules, 50 sachets" -11982011000036109,"Aspalgin dispersible tablet, 50",900000000000526001,"REPLACED BY association reference set",834281000168108,"Aspalgin dispersible tablet, 50" -57367011000036105,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721821000168107,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution, 20 mL" -691981000168103,"Calcium (Sandoz) 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",847901000168101,"Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48" -78315011000036105,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 8",900000000000526001,"REPLACED BY association reference set",833041000168109,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 8" -928266011000036103,"Oxynorm 50 mg/mL intravenous infusion injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",1055141000168107,"Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules" -75032011000036104,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823131000168101,"human papillomavirus bivalent vaccine injection, 0.5 mL syringe" -70160011000036106,"chlorhexidine gluconate 0.5% + ethanol 70% solution",900000000000526001,"REPLACED BY association reference set",70161011000036104,"chlorhexidine gluconate 0.5% + ethanol 70% solution" -925352011000036107,"Pemzo 20 mg capsule, 56, bottle",900000000000526001,"REPLACED BY association reference set",717001000168106,"Pemzo 20 mg enteric capsule, 56, bottle" -81702011000036106,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",868171000168101,"glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags" -77539011000036108,"iopromide 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695591000168107,"iopromide 769 mg (iodine 370 mg)/mL injection, 50 mL bottle" -688821000168100,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831071000168103,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack" -66986011000036100,"Tinaderm Powder Spray 0.09% spray: pressurised, 100 g",900000000000526001,"REPLACED BY association reference set",769621000168103,"Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g" -56159011000036103,"Daktarin 2% oral gel, 15 g",900000000000526001,"REPLACED BY association reference set",820021000168108,"Daktarin 2% oral gel, 15 g" -43764011000036100,"Voluven 6% / 0.9% injection solution, 15 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013491000168104,"Voluven injection solution, 15 x 500 mL bags" -78281000036107,"aflibercept 2 mg/0.05 mL injection, vial",900000000000526001,"REPLACED BY association reference set",703501000168107,"aflibercept 4 mg/0.1 mL injection, vial" -128631000036102,"Laxacon solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674261000168108,"Laxacon powder for oral liquid, 30 sachets" -54047011000036106,"Duro-Tuss Dry Cough Lozenge lemon lozenge",900000000000526001,"REPLACED BY association reference set",996161000168101,"Duro-Tuss Dry Cough Lozenge lemon lozenge" -66965011000036109,"Ora-Sed Jel oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",936661000168100,"Ora-Sed Jel oral gel, 10 g" -50523011000036104,"Combine Roll (2902165) (BSN) 9 cm x 10 m roll: wrapped pack, 1 pack, carton",900000000000526001,"REPLACED BY association reference set",688661000168109,"Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1, carton" -44075011000036106,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693391000168100,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules" -81128011000036107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867841000168102,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag" -168961000036109,"dressing hydrofibre with silver 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745061000168108,"dressing hydrofibre with silver 2 cm x 45 cm ribbon" -54185011000036100,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge",900000000000526001,"REPLACED BY association reference set",861231000168101,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge" +INACTIVE SCTID,INACTIVE PT,REPLACEMENT TYPE SCTID,REPLACEMENT TYPE PT,REPLACEMENT SCTID,REPLACEMENT PT,DATE +77408011000036104,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",861781000168108,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100, bottle",20161231 +75485011000036108,"hepatitis B vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825931000168102,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL vials",20160930 +21874011000036102,"pancrelipase",900000000000526001,"REPLACED BY association reference set",847131000168105,"lipase + amylase + protease",20161130 +85063011000036102,"Elevit tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",843111000168108,"Elevit film-coated tablet, 30, blister pack (Old Formulation 2014)",20161031 +74288011000036105,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",827721000168106,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",20160930 +78837011000036109,"Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704471000168103,"Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial",20150630 +712051000168107,"Ropibam 0.2% 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005171000168109,"Ropibam 0.2% 400 mg/200 mL injection solution, 200 mL bag",20170930 +815061000168100,"Entrip 25 mg tablet, 10",900000000000526001,"REPLACED BY association reference set",856671000168104,"Entrip 25 mg film-coated tablet, 10",20161231 +33674011000036102,"adrenaline 150 microgram/0.3 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",726651000168106,"adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose",20151031 +922566011000036103,"iopromide 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",696361000168104,"iopromide 499 mg (iodine 240 mg)/mL injection, 10 x 50 mL bottles",20150430 +74425011000036106,"Quadracel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840601000168109,"Quadracel injection suspension, 0.5 mL vial",20161031 +158351000036100,"Oxycontin Reformulation 30 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",65415011000036105,"Oxycontin 30 mg modified release tablet",20170731 +74743011000036102,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825301000168105,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes",20160930 +137701000036104,"Bydureon (exenatide 2 mg) powder for injection, 2 mg vial",900000000000526001,"REPLACED BY association reference set",833871000168108,"Bydureon (exenatide 2 mg) modified release injection, 2 mg vial",20160930 +6866011000036104,"Subutex 8 mg tablet",900000000000526001,"REPLACED BY association reference set",685631000168106,"Subutex 8 mg sublingual tablet",20150228 +665601000168102,"PKU Cooler20 Green oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725771000168103,"PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches",20151031 +75469011000036107,"Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832211000168109,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial",20160930 +50422011000036103,"Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694041000168109,"Leukopor (2474) 5 cm x 5 m tape, 1 roll, carton",20150331 +711711000168100,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005681000168103,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +922019011000036106,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831771000168101,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack",20160930 +679591000168104,"Botox 200 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720971000168105,"Botox 200 units powder for injection, 1 vial",20151031 +697091000168106,"Salofalk 3 g granules, 3 g sachet",900000000000526001,"REPLACED BY association reference set",1084311000168103,"Salofalk 3 g modified release granules, 3 g sachet",20180228 +74854011000036100,"Ipol injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839891000168106,"Ipol injection solution, 0.5 mL syringe",20161031 +82032011000036103,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet",900000000000526001,"REPLACED BY association reference set",860351000168105,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet",20161231 +653711000168101,"Retinofluor 1 g/10 mL injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",721851000168104,"Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials",20151031 +34802011000036106,"Subutex 8 mg tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",685751000168109,"Subutex 8 mg sublingual tablet, 28, blister pack",20150228 +706381000168101,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831421000168106,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack",20160930 +815201000168106,"Entrip 50 mg tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",856811000168108,"Entrip 50 mg film-coated tablet, 50, blister pack",20161231 +84916011000036105,"Strepsils lozenge, 16",900000000000526001,"REPLACED BY association reference set",720301000168104,"Strepsils Cool lozenge, 16",20151031 +815101000168102,"Entrip 25 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",856711000168100,"Entrip 25 mg film-coated tablet, 90",20161231 +180161000036106,"Bonecal 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",848491000168103,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48",20161130 +55667011000036100,"Clotrimazole 6 Day (Guardian) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715241000168105,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g",20150930 +130581000036103,"Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726641000168109,"Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose, injection device",20151031 +933205591000036108,"Recombinate 1000 IU (1 x 1000 international units vial, 1 x 10 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",710941000168105,"Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack",20150831 +65831000036105,"Hepasol oral liquid: solution, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",688151000168102,"Hepasol oral liquid solution, 200 mL, bottle",20150331 +61807011000036108,"lignocaine + hydrocortisone acetate",900000000000526001,"REPLACED BY association reference set",61836011000036102,"lidocaine (lignocaine) + hydrocortisone",20161231 +7420011000036102,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041451000168101,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device",20171130 +7509011000036109,"Eskazole 400 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844071000168104,"Eskazole 400 mg tablet",20161031 +933226171000036102,"Fluoride Witchy Candy Mint (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932521000168105,"Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL",20170531 +387561000168101,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 125 mL can",900000000000526001,"REPLACED BY association reference set",724871000168105,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle",20151031 +26481000036108,"Voltaren Osteo 1% gel",900000000000526001,"REPLACED BY association reference set",1037091000168108,"Voltaren Osteo 1.16% gel",20171130 +77169011000036109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, pump pack",900000000000526001,"REPLACED BY association reference set",705941000168103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, pump pack",20150731 +31521000036104,"Vivaxim injection suspension, 1 mL syringe, dual chamber syringe",900000000000526001,"REPLACED BY association reference set",827341000168101,"Vivaxim injection suspension, 1 mL syringe, dual chamber syringe",20160930 +75088011000036108,"hepatitis B vaccine 5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",825801000168104,"hepatitis B child vaccine 5 microgram/0.5 mL injection, vial",20160930 +844811000168102,"Zovirax 400 mg tablet, 70, bottle",900000000000526001,"REPLACED BY association reference set",859551000168104,"Zovirax Dispersible 400 mg tablet, 70, bottle",20161231 +81149011000036101,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868321000168100,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",20170131 +928209011000036106,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715811000168105,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g",20150930 +921492011000036108,"B-Dose (Biological Therapies) injection: solution, 3 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704541000168106,"B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials",20150630 +262081000168106,"PKU Cooler20 Purple oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725811000168103,"PKU Cooler 20 Purple oral liquid solution, 174 mL pouch",20151031 +81714011000036100,"sodium chloride 117 mg + potassium chloride 186 mg + glucose monohydrate 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871561000168103,"sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20",20170131 +932392011000036100,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826711000168101,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack",20160930 +77136011000036107,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724341000168108,"PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles",20151031 +85188011000036104,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g",900000000000526001,"REPLACED BY association reference set",851551000168103,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet",20161130 +689781000168100,"Valaciclovir (Apo) 1 g film-coated tablet, 4",900000000000526001,"REPLACED BY association reference set",1001151000168103,"Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4",20170930 +669591000168107,"mercaptopurine 20 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",845391000168101,"mercaptopurine monohydrate 20 mg/mL oral liquid, 100 mL",20161130 +686831000168103,"interferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL injection devices",900000000000526001,"REPLACED BY association reference set",698641000168106,"peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL injection devices",20150430 +703651000168107,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826941000168104,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20160930 +922016011000036102,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",950761000168105,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100, bottle",20170630 +921408011000036109,"Macu-Vision tablet: film-coated, 150",900000000000526001,"REPLACED BY association reference set",757951000168101,"Macu-Vision film-coated tablet, 150",20160229 +706321000168100,"measles virus (Enders' attenuated Edmonston) live vaccine + mumps virus (Jeryl Lynn B level) live vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",831021000168104,"measles + mumps + rubella live vaccine",20160930 +90411000036105,"dinoprostone 400 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005341000168104,"dinoprostone 1 mg/3 g vaginal gel, 3 g syringe",20170930 +83962011000036105,"Wagner Magnesium Forte 400 capsules: hard, 100",900000000000526001,"REPLACED BY association reference set",750231000168103,"Magnesium Forte 400 (Wagner) hard capsule, 100",20160131 +37351011000036103,"Primacor 10 mg/10 mL injection: solution, 10 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",719521000168103,"Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules",20150930 +32960011000036107,"Soflax",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",733621000168105,"Soflax (Ascent Pharma)",20151130 +933229561000036106,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724041000168106,"MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches",20151031 +924890011000036106,"Pemzo 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",717561000168103,"Pemzo 20 mg enteric capsule, 7",20150930 +73676011000036104,"Yellow fever live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",821271000168105,"yellow fever virus live antigen",20160831 +8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847121000168107,"Creon 40 000",20161130 +73838011000036109,"Havrix 1440 ELISA units/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",824761000168106,"Havrix 1440 ELISA units/mL injection suspension, syringe",20160930 +40315011000036100,"Forteo 20 microgram injection: solution, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726931000168105,"Forteo 20 microgram/dose injection solution, dose",20151031 +61115011000036105,"Difflam Lozenge honey and lemon sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995701000168105,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16, blister pack",20170831 +33632011000036108,"bee venom",900000000000526001,"REPLACED BY association reference set",758791000168105,"honey bee venom",20160229 +80632011000036101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",867781000168103,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags",20170131 +933226081000036104,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004851000168107,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, 5 x 200 mL bags",20170930 +167341000036106,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848601000168106,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack",20161130 +73691000036102,"Byetta 10 microgram/0.04 mL injection: solution, 60 x 0.04 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",726841000168105,"Byetta 10 microgram/dose injection solution, 60 doses, injection device",20151031 +55824011000036108,"Clozole Vaginal Cream (Chemists' Own) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715441000168106,"Clozole (Chemists' Own) 2% vaginal cream, 20 g",20150930 +927313011000036109,"hepatitis B vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825451000168103,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe",20160930 +77429011000036104,"calcium carbonate + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide",900000000000526001,"REPLACED BY association reference set",861731000168107,"calcium + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide",20161231 +1085521000168100,"influenza trivalent geriatric vaccine 2018 injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122691000168106,"influenza trivalent geriatric vaccine 2018 injection, 10 x 0.5 mL syringes",20180430 +234701000168100,"triglycerides long chain with glucose polymer oral liquid, 250 mL can",900000000000526001,"REPLACED BY association reference set",745321000168100,"triglycerides long chain with glucose polymer oral liquid, 250 mL carton",20160131 +22601011000036103,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU injection, 81 mg vial",900000000000526001,"REPLACED BY association reference set",1045931000168103,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial",20171130 +921975011000036108,"Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695341000168107,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle",20150430 +139311000036109,"Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005941000168100,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +75047011000036103,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, vial",900000000000526001,"REPLACED BY association reference set",824701000168105,"hepatitis A adult vaccine 1440 ELISA units/mL injection, vial",20160930 +156071000036107,"romidepsin 10 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",828491000168101,"romidepsin 10 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack",20160930 +75651000036105,"risedronate sodium 35 mg enteric tablet [1] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [6 sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",810281000168108,"risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [6 sachets], 1 pack",20160630 +923993011000036106,"pancreatic extract 5000 units/100 mg enteric coated granules",900000000000526001,"REPLACED BY association reference set",847141000168101,"lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules",20161130 +28641000036100,"Voltaren Osteo 1% gel, 75 g",900000000000526001,"REPLACED BY association reference set",1037111000168100,"Voltaren Osteo 1.16% gel, 75 g",20171130 +23167011000036102,"oxycodone hydrochloride 5 mg/5 mL oral liquid",900000000000526001,"REPLACED BY association reference set",815911000168102,"oxycodone hydrochloride 1 mg/mL oral liquid",20160731 +711521000168104,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004921000168107,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +60229011000036105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",861391000168107,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2, blister pack",20161231 +84078011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873111000168107,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags",20170131 +74297011000036105,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825071000168103,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",20160930 +18798011000036107,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729841000168102,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices",20171130 +65871000036107,"Hepasol oral liquid: solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",688181000168109,"Hepasol oral liquid solution, 500 mL, bottle",20150331 +71751000036102,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",862071000168100,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120",20161231 +167531000168103,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725281000168108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 87 mL pouch",20151031 +75348011000036103,"azelastine hydrochloride 140 microgram/actuation nasal spray, 5 mL",900000000000526001,"REPLACED BY association reference set",809541000168105,"azelastine hydrochloride 0.1% nasal spray, 5 mL",20160630 +711691000168103,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005661000168107,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 200 mL bag",20170930 +941651000168109,"Metformin (AS) 1 g film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",949541000168105,"Metformin 1000 (AS) 1 g film-coated tablet, 90",20170630 +40366011000036108,"Metvix 200 mg/g cream",900000000000526001,"REPLACED BY association reference set",999291000168106,"Metvix 160 mg/g cream",20170831 +81153011000036101,"Gastrolyte Blackcurrant effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871711000168107,"Gastrolyte Blackcurrant effervescent tablet, 20, tube",20170131 +713361000168104,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005441000168106,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +675011000168103,"Simponi Smartject 100 mg/mL injection: solution, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",845841000168104,"Simponi Smartject 100 mg/mL injection solution, 1 mL injection device",20161130 +74849011000036102,"Spray-Tish 0.118% nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085401000168108,"Spray-Tish 0.118% nasal spray, 15 mL, pump pack",20180228 +932724011000036104,"clonazepam 2.5 mg/mL oral liquid, drop",900000000000526001,"REPLACED BY association reference set",729091000168102,"clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid",20151130 +923728011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 14, blister pack",900000000000526001,"REPLACED BY association reference set",717101000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 14, blister pack",20150930 +77527011000036104,"calcium (as carbonate) 320.3 mg + calcium (as lactate gluconate) 680 mg tablet: effervescent",900000000000526001,"REPLACED BY association reference set",745561000168104,"calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet",20160131 +156971000036108,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862231000168107,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60, bottle",20161231 +154281000036109,"betamethasone (as sodium phosphate) 2.96 mg/mL + betamethasone (as acetate) 2.71 mg/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",746311000168101,"betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, ampoule",20160131 +86857011000036103,"Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726741000168104,"Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device",20151031 +923059011000036105,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746781000168106,"Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +76187011000036101,"Centrum tablet: film-coated",900000000000526001,"REPLACED BY association reference set",833031000168100,"Centrum film-coated tablet",20160930 +9051000036109,"olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771771000168101,"olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 250 mL bag",20160430 +82576011000036104,"retinyl palmitate 0.054% ointment, 50 g",900000000000526001,"REPLACED BY association reference set",694991000168102,"retinol palmitate 0.099% ointment, 50 g",20150430 +60758011000036105,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",996191000168108,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2, blister pack",20170831 +78306011000036101,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 115",900000000000526001,"REPLACED BY association reference set",833191000168100,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 115",20160930 +74737011000036107,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821421000168108,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack",20160831 +921845011000036100,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831941000168106,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack",20160930 +37668011000036107,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses, tube",900000000000526001,"REPLACED BY association reference set",861721000168109,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses, tube",20161231 +81727011000036102,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871621000168107,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets",20170131 +11722011000036108,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041191000168104,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device",20171130 +139261000036101,"Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006111000168106,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +716051000168108,"meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826761000168103,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, vial",20160930 +70151000036105,"Byetta 5 microgram/0.02 mL injection: solution, 0.02 mL unit dose",900000000000526001,"REPLACED BY association reference set",726761000168100,"Byetta 5 microgram/dose injection solution, dose",20151031 +158931000036107,"Budenofalk 2 mg/application enema, 2 x 1 application aerosol cans",900000000000526001,"REPLACED BY association reference set",688071000168105,"Budenofalk 2 mg/application enema, 2 x 14 applications",20150331 +44484011000036106,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 240 actuations, bottle",900000000000526001,"REPLACED BY association reference set",730101000168100,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations, pump packs",20151130 +51474011000036102,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",710051000168106,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches",20151031 +711621000168100,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005711000168102,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +932864011000036109,"Rivotril Drops 2.5 mg/mL oral liquid: solution, 10 mL",900000000000526001,"REPLACED BY association reference set",729121000168103,"Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL",20151130 +73259011000036108,"Duodopa gel: intestinal, 7 x 1 mL bags",900000000000526001,"REPLACED BY association reference set",720531000168101,"Duodopa intestinal gel, 7 x 100 mL, bags",20151031 +2439011000036108,"pancrelipase",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2524011000036100,"protease",20161130 +827911000168101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845971000168101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +74231000036104,"Levetiracetam (Pfizer) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003601000168105,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, blister pack",20170930 +729901000168109,"Citracal Plus D tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",860011000168107,"Citracal Plus D film-coated tablet, 100, bottle",20161231 +28561000036103,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack",900000000000526001,"REPLACED BY association reference set",685971000168103,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack",20150228 +36934011000036107,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",861711000168102,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses",20161231 +75341011000036107,"Q fever inactivated vaccine 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821581000168106,"Q fever vaccine injection, 0.5 mL syringe",20160831 +51881000168109,"Levitaccord 1000 mg",900000000000526001,"REPLACED BY association reference set",1003781000168107,"Levitaccord-1000",20170930 +25401000036105,"tenofovir + emtricitabine + rilpivirine",900000000000526001,"REPLACED BY association reference set",851441000168101,"tenofovir disoproxil + emtricitabine + rilpivirine",20161130 +85082011000036106,"tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694291000168108,"tape plaster adhesive with silicone 4 cm x 1.5 m tape",20150331 +72940011000036107,"Duodopa gel: intestinal",900000000000526001,"REPLACED BY association reference set",720471000168102,"Duodopa intestinal gel",20151031 +923394011000036100,"Levetiracetam (SZ) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003721000168108,"Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60",20170930 +139301000036107,"Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005881000168104,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +920849011000036107,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 130",900000000000526001,"REPLACED BY association reference set",862251000168101,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 130",20161231 +844821000168109,"Zovirax 400 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",859561000168102,"Zovirax Dispersible 400 mg tablet, 100",20161231 +36655011000036106,"Lanoxin 500 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735061000168109,"Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules",20151231 +140431000036104,"Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial",900000000000526001,"REPLACED BY association reference set",746881000168102,"Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial",20160131 +74753011000036104,"Azep 140 microgram/actuation nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",809591000168102,"Azep 0.1% nasal spray, 10 mL, pump pack",20160630 +78281000036107,"aflibercept 2 mg/0.05 mL injection, vial",900000000000526001,"REPLACED BY association reference set",703501000168107,"aflibercept 4 mg/0.1 mL injection, vial",20150630 +74749011000036104,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955121000168107,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",20170630 +925346011000036109,"Pemzo 20 mg capsule, 15, bottle",900000000000526001,"REPLACED BY association reference set",716391000168100,"Pemzo 20 mg enteric capsule, 15, bottle",20150930 +82761011000036103,"Questran 8 g powder for oral liquid, 50 sachets",900000000000526001,"REPLACED BY association reference set",1032301000168103,"Questran Lite 8 g powder for oral liquid, 50 sachets",20171130 +20244011000036102,"Lomotil uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",851131000168101,"Lomotil uncoated tablet, 20, blister pack",20161130 +177651000036105,"Lyxumia 20 microgram/0.2 mL injection: solution, 0.2 mL unit dose",900000000000526001,"REPLACED BY association reference set",719251000168109,"Lyxumia 20 microgram/dose injection solution, dose",20150930 +933240111000036107,"Omeprazole (Sandoz) 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",716191000168102,"Omeprazole (Sandoz) 20 mg enteric capsule, 30, bottle",20150930 +922043011000036101,"ascorbic acid + cupric oxide + D-alpha-tocopheryl acid succinate + zinc oxide",900000000000526001,"REPLACED BY association reference set",757821000168101,"ascorbic acid + d-alpha-tocopheryl acid succinate + zinc + copper",20160229 +11316011000036100,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838081000168107,"Pneumovax-23 injection solution, 0.5 mL vial",20161031 +925336011000036105,"Omepro 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",716601000168101,"Omepro 20 mg enteric capsule, 30, bottle",20150930 +81617011000036103,"glucose 5% (12.5 g/250 mL) injection, 30 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863741000168104,"glucose monohydrate 5% (12.5 g/250 mL) injection, 30 x 250 mL bags",20170131 +251000168105,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810401000168104,"Actonel Combi D effervescent granules, 24 sachets",20160630 +75028011000036104,"hepatitis B vaccine 20 microgram/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825201000168103,"hepatitis B adult vaccine 20 microgram/mL injection, syringe",20160930 +61132011000036105,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861261000168109,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16, blister pack",20161231 +74748011000036107,"Adacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837531000168103,"Adacel injection suspension, 5 x 0.5 mL vials",20161031 +933247391000036100,"Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728121000168108,"Ovidrel 250 microgram/0.5 mL injection solution, 1 dose, injection device",20151031 +81049011000036105,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863761000168100,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags",20170131 +26968011000036106,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 15 g",900000000000526001,"REPLACED BY association reference set",758231000168100,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 15 g",20160229 +91301000036106,"Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",730041000168102,"Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial",20151130 +155991000036102,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",734011000168105,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100",20161231 +81048011000036102,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863701000168101,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags",20170131 +137891000036103,"Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005971000168107,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule",20170930 +922135011000036109,"iopromide 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695201000168103,"iopromide 623 mg (iodine 300 mg)/mL injection, 75 mL bottle",20150430 +716081000168101,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack",900000000000526001,"REPLACED BY association reference set",826791000168105,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack",20160930 +923915011000036106,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996021000168105,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24, blister pack",20170831 +923898011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",717081000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 100, bottle",20150930 +708451000168103,"triamcinolone acetonide 0.09% + neomycin sulfate 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops",900000000000526001,"REPLACED BY association reference set",758311000168102,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops",20160229 +104221000036103,"Irbesartan (Apo) 300 mg tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",807851000168104,"Irbesartan (Apo) 300 mg film-coated tablet, 30, bottle",20160630 +101161000036102,"Victoza 18 mg/3 mL injection: solution, 3 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748111000168103,"Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices",20160131 +1085501000168109,"Fluzone High-Dose injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122641000168103,"Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes",20180430 +6990011000036109,"Kaletra 400/100 oral liquid: solution",900000000000526001,"REPLACED BY association reference set",689461000168103,"Kaletra oral liquid solution, 5 mL",20150331 +47231000168101,"Recombinate 500 IU",900000000000526001,"REPLACED BY association reference set",710851000168104,"Recombinate",20150831 +711401000168107,"Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005041000168101,"Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule",20170930 +51406011000036104,"tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688901000168104,"tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll",20150331 +57060011000036108,"Difflam Lozenge honey and lemon sugar free lozenge, 24",900000000000526001,"REPLACED BY association reference set",995741000168107,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24",20170831 +74294011000036104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825011000168106,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial",20160930 +80222011000036102,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872601000168107,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",20170131 +61961000168102,"Fluoride Bumble Bee Bubble Gum (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)",20170531 +75522011000036100,"Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",840651000168108,"diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 5 x 0.5 mL vials",20161031 +48744011000036109,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688891000168103,"Hypafix (71443-0) 2.5 cm x 10 m tape",20150331 +74197011000036108,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955111000168100,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",20170630 +4985011000036107,"ADT Booster injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837311000168103,"ADT Booster injection suspension, 0.5 mL syringe",20161031 +69319011000036108,"Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",684691000168109,"Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials",20150131 +54126011000036101,"Logicin Rapid Relief menthol and eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",861571000168100,"Logicin Rapid Relief menthol and eucalyptus lozenge",20161231 +73796011000036102,"Gardasil injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822971000168107,"Gardasil injection suspension, 0.5 mL vial",20160831 +925135011000036107,"Omepro 20 mg capsule, 280, blister pack",900000000000526001,"REPLACED BY association reference set",716571000168107,"Omepro 20 mg enteric capsule, 280, blister pack",20150930 +42791000036102,"glucose 75 g/300 mL oral liquid, 300 mL each",900000000000526001,"REPLACED BY association reference set",692441000168106,"glucose 75 g/300 mL oral liquid, 300 mL",20150331 +827901000168104,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845901000168106,"meningococcal C conjugate vaccine injection, 0.5 mL syringe",20161130 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826091000168108,"Streptococcus pneumoniae type 5 conjugate antigen",20160930 +79718011000036100,"Septopal Chain 7.5 mg implant, 1 bead, sachet",900000000000526001,"REPLACED BY association reference set",684551000168100,"Septopal Chain 7.5 mg implant, 30 beads, sachet",20150131 +987331000168108,"Kanuma 2 mg/mL injection solution, 1 mL vial",900000000000526001,"REPLACED BY association reference set",1013351000168103,"Kanuma 20 mg/10 mL injection solution, 10 mL vial",20170930 +65619011000036109,"Cepacol Plus with Anaesthetic Blackcurrant lozenge",900000000000526001,"REPLACED BY association reference set",995351000168108,"Cepacol Plus with Anaesthetic Blackcurrant lozenge",20170831 +67320011000036102,"Disprin Max 500 mg dispersible tablet, 16",900000000000526001,"REPLACED BY association reference set",804361000168102,"Disprin Max 500 mg tablet, 16",20160630 +75504011000036103,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837681000168103,"diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 10 x 0.5 mL syringes",20161031 +14223011000036100,"Eskazole 400 mg chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",844091000168103,"Eskazole 400 mg tablet, 60",20161031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836911000168101,"Streptococcus pneumoniae type 17F polysaccharide antigen",20161031 +80644011000036106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",868181000168103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags",20170131 +711511000168106,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004911000168100,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +72611000036104,"mesalazine 1 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",28305011000036102,"mesalazine 1 g modified release granules, 100 sachets",20180228 +59719011000036106,"Cepacol Cough Plus Lemon lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995281000168105,"Cepacol Cough Plus Lemon lozenge, 16, blister pack",20170831 +69368011000036104,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",863651000168106,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",20170131 +35222011000036102,"buprenorphine 2 mg tablet, 28",900000000000526001,"REPLACED BY association reference set",685761000168106,"buprenorphine 2 mg sublingual tablet, 28",20150228 +152501000036109,"Lax-Sachets solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674301000168100,"Lax-Sachets powder for oral liquid, 30 sachets",20141031 +60653011000036105,"Paxyl 2.5% / 0.1% spray solution, 125 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",861671000168101,"Paxyl 2.5% / 0.1% spray solution, 125 mL, pump actuated aerosol",20161231 +669611000168102,"Allmercap 20 mg/mL oral liquid suspension, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",845411000168101,"Allmercap 20 mg/mL oral liquid suspension, 100 mL, bottle",20161130 +84270011000036103,"Wagner Magnesium Forte 400 capsules: hard, 200, bottle",900000000000526001,"REPLACED BY association reference set",750271000168100,"Magnesium Forte 400 (Wagner) hard capsule, 200, bottle",20160131 +19618011000036101,"Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083721000168107,"Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL, pump pack",20180228 +827881000168101,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",845881000168109,"meningococcal C conjugate vaccine injection, 0.5 mL syringe",20161130 +75005011000036101,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine + cholera toxin B subunit recombinant oral vaccine",900000000000526001,"REPLACED BY association reference set",821861000168100,"cholera vaccine",20160831 +75396011000036106,"Varicella zoster live attenuated vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",831981000168101,"varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack",20160930 +922075011000036104,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet",900000000000526001,"REPLACED BY association reference set",829691000168109,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet",20160930 +923908011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 7, bottle",900000000000526001,"REPLACED BY association reference set",717421000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 7, bottle",20150930 +924702011000036106,"Omepro 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",716421000168107,"Omepro 20 mg enteric capsule, 140",20150930 +74266011000036109,"Infanrix Hexa injection: suspension, 10 packs",900000000000526001,"REPLACED BY association reference set",841001000168107,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack",20161031 +54047011000036106,"Duro-Tuss Dry Cough Lozenge lemon lozenge",900000000000526001,"REPLACED BY association reference set",996161000168101,"Duro-Tuss Dry Cough Lozenge lemon lozenge",20170831 +81615011000036108,"glucose 5% (5 g/100 mL) injection, 60 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863971000168108,"glucose monohydrate 5% (5 g/100 mL) injection, 60 x 100 mL bags",20170131 +75012011000036107,"rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection, vial",900000000000526001,"REPLACED BY association reference set",826311000168102,"rubella live vaccine injection, vial",20160930 +77448011000036109,"alpha tocopherol + ascorbic acid + betacarotene + biotin + calcium hydrogen phosphate dihydrate + chromic chloride + colecalciferol + cupric oxide + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide + manganese sulfate monohydrate + molybdenum + nicotinamide + calcium pantothenate + phytomenadione + potassium chloride + pyridoxine + retinol acetate + riboflavin + selenium + thiamine + zinc oxide",900000000000526001,"REPLACED BY association reference set",833011000168105,"betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium",20160930 +74936011000036103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825761000168107,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial",20160930 +932842011000036108,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",766151000168106,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack",20160331 +67425011000036100,"Aqium 66% gel, 70 mL",900000000000526001,"REPLACED BY association reference set",730461000168106,"Aqium 66% gel, 70 mL",20151130 +665011000168108,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",834901000168106,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20",20161031 +921432011000036101,"Centrum Select 50 Plus tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",843241000168104,"Centrum Select 50 Plus film-coated tablet, 30",20161031 +700411000168101,"ADT Booster injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837361000168100,"ADT Booster injection suspension, 5 x 0.5 mL syringes",20161031 +72151000036109,"salicylic acid 2% conditioner, 25 mL",900000000000526001,"REPLACED BY association reference set",764261000168109,"salicylic acid 2% conditioner, 25 mL",20160331 +78252011000036104,"iopromide 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection, 10 x 30 mL vials",900000000000526001,"REPLACED BY association reference set",695561000168100,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 30 mL vials",20150430 +941601000168105,"Metformin (AS) 1 g film-coated tablet, 10, blister pack",900000000000526001,"REPLACED BY association reference set",949491000168101,"Metformin 1000 (AS) 1 g film-coated tablet, 10, blister pack",20170630 +33665011000036107,"bee venom 550 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",758801000168106,"honey bee venom 550 microgram injection, vial",20160229 +833771000168100,"somatropin + inert substance",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",21295011000036100,"somatropin",20170731 +154911000036108,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862171000168104,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet",20161231 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826031000168109,"Streptococcus pneumoniae type 19F conjugate antigen",20160930 +56717011000036106,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24",900000000000526001,"REPLACED BY association reference set",996211000168109,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24",20170831 +844451000168104,"Zovirax 200 mg tablet, 90, bottle",900000000000526001,"REPLACED BY association reference set",859461000168103,"Zovirax Dispersible 200 mg tablet, 90, bottle",20161231 +728571000168100,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006051000168108,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +158321000036106,"Oxycontin Reformulation 80 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6514011000036109,"Oxycontin 80 mg modified release tablet",20170731 +38712011000036108,"colistimethate 150 mg injection, 1 vial",900000000000526001,"REPLACED BY association reference set",817481000168106,"colistin 150 mg (4.5 million units) injection, 1 vial",20160731 +71331000036109,"carbomer 0.2% + triglyceride lipids 1% eye gel, 10 g",900000000000526001,"REPLACED BY association reference set",719561000168108,"carbomer-980 0.2% + triglyceride lipids 1% eye gel, 10 g",20150930 +86856011000036101,"Aqueous Cream (David Craig) cream, 500 g, jar",900000000000526001,"REPLACED BY association reference set",768321000168102,"Aqueous Cream APF (David Craig) cream, 500 g, jar",20160331 +26601011000036104,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838071000168109,"pneumococcal 23 valent vaccine injection, 0.5 mL vial",20161031 +860181000168100,"boric acid + calcium + colecalciferol + magnesium citrate nonahydrate + magnesium oxide heavy + manganese sulfate monohydrate + phytomenadione",900000000000526001,"REPLACED BY association reference set",932941000168106,"colecalciferol + calcium + magnesium + manganese + phytomenadione + boron",20170531 +930593011000036104,"Dermasoothe Antiseptic cream, 50 g",900000000000526001,"REPLACED BY association reference set",861341000168104,"Dermasoothe Antiseptic cream, 50 g",20161231 +51959011000036102,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream",900000000000526001,"REPLACED BY association reference set",695821000168108,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream",20150430 +140421000036101,"Granisetron (Sandoz) 1 mg/mL injection: concentrated, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",747061000168103,"Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials",20160131 +81138011000036105,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868161000168107,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",20170131 +105541000036105,"aflibercept 2 mg/0.05 mL injection, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703571000168102,"aflibercept 4 mg/0.1 mL injection, 0.1 mL syringe",20150630 +61266011000036100,"Clozole Vaginal Cream (Meditab) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715861000168108,"Clozole (Meditab) 2% vaginal cream, 20 g, tube",20150930 +33344011000036105,"Soflax tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",733641000168104,"Soflax (Ascent Pharma) film-coated tablet, 100",20151130 +806231000168107,"Repatha 140 mg/mL injection: solution, 2 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846411000168108,"Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices",20161130 +12194011000036104,"Atropt 1% eye drops solution, 15 mL",900000000000526001,"REPLACED BY association reference set",850971000168107,"Atropt 1% eye drops solution, 15 mL",20161130 +924885011000036101,"Pemzo 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",716781000168104,"Pemzo 20 mg enteric capsule, 5",20150930 +77580011000036105,"iopromide 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695251000168104,"iopromide 623 mg (iodine 300 mg)/mL injection, 100 mL bottle",20150430 +923732011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 50, blister pack",900000000000526001,"REPLACED BY association reference set",717281000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 50, blister pack",20150930 +78315011000036105,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 8",900000000000526001,"REPLACED BY association reference set",833041000168109,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 8",20160930 +924870011000036104,"Omepro 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",716461000168102,"Omepro 20 mg enteric capsule, 15",20150930 +75036011000036100,"Varicella zoster live attenuated vaccine 19 400 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",831781000168103,"varicella-zoster live vaccine 19 400 PFU injection, vial",20160930 +74253011000036107,"Cervarix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823161000168109,"Cervarix injection suspension, 0.5 mL syringe",20160831 +36815011000036109,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",835491000168106,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL",20161031 +60571011000036102,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721751000168109,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL, bottle",20151031 +702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726201000168109,"PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets",20151031 +6647011000036101,"Panadeine Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835831000168109,"Panadeine Forte uncoated tablet",20161031 +181691000036101,"Diprosone 0.05% lotion, 30 mL",900000000000526001,"REPLACED BY association reference set",1054641000168100,"Diprosone 0.05% lotion, 30 mL",20171231 +73818011000036100,"Engerix-B Adult 20 microgram/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",825211000168100,"Engerix-B Adult 20 microgram/mL injection suspension, syringe",20160930 +82451011000036100,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, bag",900000000000526001,"REPLACED BY association reference set",872381000168105,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, bag",20170131 +74729011000036102,"Cervarix injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823231000168106,"Cervarix injection suspension, 20 x 0.5 mL syringes",20160831 +73663011000036103,"poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836541000168109,"poliovirus type 3 inactivated antigen",20161031 +81053011000036105,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",863731000168108,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",20170131 +29271000036100,"Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827161000168100,"Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160930 +734101000168106,"Centavite Adult tablet: film-coated",900000000000526001,"REPLACED BY association reference set",842911000168101,"Centavite Adult film-coated tablet",20161031 +70122011000036104,"calcium gluconate monohydrate 10% (5 g/50 mL) injection, vial",900000000000526001,"REPLACED BY association reference set",684701000168109,"calcium gluconate monohydrate 4.765 g/50 mL injection, vial",20150131 +924203011000036107,"omeprazole 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",75871000036104,"omeprazole 20 mg enteric capsule, 14",20150930 +930673011000036101,"Menveo injection: suspension, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826791000168105,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack",20160930 +76027011000036102,"Sorbolene Cream with Glycerin (Orion) cream",900000000000526001,"REPLACED BY association reference set",705721000168107,"Sorbolene Cream with Glycerin (Orion) cream",20150731 +51821000036103,"Valvala 1 g film-coated tablet, 50",900000000000526001,"REPLACED BY association reference set",1009771000168107,"Valvala-1000 1 g film-coated tablet, 50",20170930 +6305011000036108,"Dapa-Tabs 2.5 mg tablet",900000000000526001,"REPLACED BY association reference set",935671000168101,"Dapa-Tabs 2.5 mg film-coated tablet",20170531 +924177011000036107,"pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827431000168104,"pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe",20160930 +74806011000036104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824791000168104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe",20160930 +44098011000036106,"Zovirax 400 mg dispersible tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",859571000168108,"Zovirax Dispersible 400 mg tablet, 100, blister pack",20161231 +927337011000036107,"lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 50 g",900000000000526001,"REPLACED BY association reference set",863501000168106,"lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 50 g",20170131 +924468011000036104,"Panadol Children's 3+ Years 120 mg tablet: chewable",900000000000526001,"REPLACED BY association reference set",721681000168107,"Panadol Children's 3+ Years Cherry 120 mg chewable tablet",20151031 +80665011000036102,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag",900000000000526001,"REPLACED BY association reference set",872241000168106,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag",20170131 +80521011000036103,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863921000168107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags",20170131 +74242011000036102,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825541000168104,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +923729011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 15, blister pack",900000000000526001,"REPLACED BY association reference set",717151000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 15, blister pack",20150930 +77170011000036107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, jar",900000000000526001,"REPLACED BY association reference set",705901000168100,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, jar",20150731 +82915011000036108,"tenofovir + emtricitabine + efavirenz",900000000000526001,"REPLACED BY association reference set",851421000168107,"tenofovir disoproxil + emtricitabine + efavirenz",20161130 +45313011000036107,"teriparatide 20 microgram injection, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726921000168107,"teriparatide 20 microgram/dose injection, dose",20151031 +49446011000036105,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689221000168109,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll",20150331 +933231571000036100,"Naropin 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004971000168108,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +689581000168106,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack",900000000000526001,"REPLACED BY association reference set",831291000168109,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack",20160930 +50931011000036108,"tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689191000168103,"tape plaster adhesive elastic 5 cm x 2.5 m tape",20150331 +920359011000036107,"Ostelin Vitamin D and Calcium tablet: film-coated, 130",900000000000526001,"REPLACED BY association reference set",862261000168104,"Ostelin Vitamin D and Calcium film-coated tablet, 130",20161231 +87640011000036105,"HCU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",725011000168108,"HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles",20151031 +713341000168103,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005421000168100,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 100 mL bag",20170930 +131671000036108,"Laxacon solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674271000168102,"Laxacon powder for oral liquid, 30 sachets",20141031 +74962011000036106,"meningococcal group A polysaccharide vaccine + meningococcal group C polysaccharide vaccine + meningococcal group Y polysaccharide vaccine + meningococcal group W135 polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827681000168100,"meningococcal quadrivalent polysaccharide vaccine",20160930 +171000168107,"Femazole 150 mg capsule: hard, 1 capsule",900000000000526001,"REPLACED BY association reference set",685551000168101,"Femazole Duo 150 mg hard capsule, 1",20150228 +59677011000036102,"Anti Fungal V 6 Day (Amcal) 1% cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",715021000168107,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g, tube",20150930 +71491000036100,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746791000168109,"Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +926122011000036100,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825491000168108,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20160930 +925619011000036101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825441000168100,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160930 +108741000036107,"dressing hydrogel 1 cm x 50 cm ribbon, 20",900000000000526001,"REPLACED BY association reference set",1056231000168103,"dressing hydrophobic 1 cm x 50 cm ribbon, 20",20171231 +74890011000036100,"Comvax injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832321000168108,"Comvax injection suspension, 0.5 mL vial",20160930 +698461000168108,"meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822821000168103,"meningococcal B 4 component vaccine injection, 10 x 0.5 mL syringes",20160831 +638521000168108,"Albey Venom Albumin Saline (inert substance) diluent, 1.8 mL vial",900000000000526001,"REPLACED BY association reference set",758831000168104,"Albumin Saline (Stallergenes) (inert substance) diluent, 1.8 mL vial",20160229 +31512011000036100,"magnesium carbonate heavy",900000000000527005,"SAME AS association reference set",828021000168105,"magnesium carbonate hydrate",20160930 +57367011000036105,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721431000168108,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL",20151031 +73883011000036107,"Vaqta Adult 50 units/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",825151000168106,"Vaqta Adult 50 units/mL injection suspension, syringe",20160930 +684481000168108,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693501000168102,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules",20150331 +702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726171000168105,"PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets",20151031 +933230091000036102,"Cardiprin 100 mg dispersible tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",803981000168105,"Cardiprin 100 mg tablet, 30, blister pack",20160630 +1085471000168103,"influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1122611000168102,"influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe",20180430 +73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822251000168107,"rotavirus type G2 live antigen",20160831 +176251000168104,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725071000168100,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 125 mL pouch",20151031 +75350011000036103,"rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",826361000168104,"rubella live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack",20160930 +86080011000036109,"Kevtam 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",938311000168105,"Kevtam-1000 1 g film-coated tablet, 60, blister pack",20170930 +69512011000036101,"Cepacol Antibacterial Honey and Lemon lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995071000168102,"Cepacol Antibacterial Honey and Lemon lozenge, 16, blister pack",20170831 +53829011000036101,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",861361000168100,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge",20161231 +14621000036109,"Clinoleic 20% injection: emulsion, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771841000168102,"Clinoleic 20% injection emulsion, 500 mL bag",20160430 +61765011000036100,"dexchlorpheniramine + paracetamol + pseudoephedrine",900000000000526001,"REPLACED BY association reference set",44924011000036104,"paracetamol + pseudoephedrine + chlorphenamine",20170731 +5915011000036103,"Zovirax 200 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",859181000168101,"Zovirax Dispersible 200 mg tablet",20161231 +266871000168101,"Citrulline containing 1 g citrulline oral liquid: powder for, 4 g sachet",900000000000527005,"SAME AS association reference set",266091000168108,"Citrulline 1000 containing 1 g citrulline powder for oral liquid, 4 g sachet",20151130 +86871011000036109,"Calcia-1000 1 g (calcium 1 g) chewable tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",859951000168105,"Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30, bottle",20161231 +127351000036100,"TYR Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725871000168106,"TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches",20151031 +14581000036109,"Clinoleic 20% injection: emulsion, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771721000168102,"Clinoleic 20% injection emulsion, 100 mL bag",20160430 +74798011000036100,"Otrivin Junior 0.05% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085321000168109,"Otrivin Junior 0.05% nasal spray, 10 mL, pump pack",20180228 +11717011000036101,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041141000168107,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device",20171130 +71866011000036105,"aspirin 500 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804381000168106,"aspirin 500 mg tablet, 6",20160630 +923730011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",717231000168108,"Omeprazole (Pharmacor) 20 mg enteric capsule, 30, blister pack",20150930 +921438011000036103,"Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",696371000168105,"Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles",20150430 +80671011000036109,"Gastrolyte orange powder for oral liquid, 10 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871631000168105,"Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets",20170131 +80636011000036102,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",867941000168106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags",20170131 +73672011000036103,"cholera toxin B subunit recombinant oral vaccine",900000000000526001,"REPLACED BY association reference set",821801000168101,"cholera toxin B subunit",20160831 +73666011000036109,"rotavirus live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",822851000168106,"rotavirus type G1P1A(8) live antigen",20160831 +31579011000036101,"methyl aminolevulinate hydrochloride",900000000000526001,"REPLACED BY association reference set",999161000168105,"methyl aminolevulinate",20170831 +929118011000036100,"Picolax powder for oral liquid, 20 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",833481000168109,"Picolax powder for oral liquid, 20 x 20 g sachets",20160930 +177901000036104,"Lyxumia 20 microgram/0.2 mL injection: solution, 2 x 14 unit doses",900000000000526001,"REPLACED BY association reference set",719351000168104,"Lyxumia 20 microgram/dose injection solution, 2 x 14 doses",20150930 +67156011000036107,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872011000168101,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",20170131 +665481000168107,"PKU Cooler20 Gold oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725711000168106,"PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches",20151031 +74759011000036101,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",832001000168101,"Zostavax (10 x 19 400 vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack",20160930 +933220831000036109,"ropivacaine hydrochloride monohydrate 200 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1005031000168105,"ropivacaine hydrochloride 200 mg/20 mL injection, ampoule",20170930 +78229011000036108,"glucose 25 g/50 mL injection, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872051000168100,"glucose monohydrate 25 g/50 mL injection, 50 mL syringe",20170131 +53665011000036100,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",721631000168106,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 5 mL",20151031 +19944011000036103,"Creon Forte 25 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847581000168101,"Creon Forte enteric capsule, 100, bottle",20161130 +70123011000036106,"calcium gluconate monohydrate 10% (1 g/10 mL) injection, vial",900000000000526001,"REPLACED BY association reference set",684651000168104,"calcium gluconate monohydrate 953 mg/10 mL injection, vial",20150131 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836931000168106,"Streptococcus pneumoniae type 19A polysaccharide antigen",20161031 +146201000036109,"Tecfidera 120 mg capsule: modified release, 14, blister pack",900000000000526001,"REPLACED BY association reference set",756261000168109,"Tecfidera 120 mg enteric capsule, 14, blister pack",20160229 +73880011000036104,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825101000168107,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",20160930 +923450011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",717331000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 56",20150930 +375541000168103,"TYR Cooler 10 oral liquid: solution, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725851000168102,"TYR Cooler 10 oral liquid solution, 87 mL pouch",20151031 +56710011000036105,"Difflam Lozenge raspberry sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995911000168106,"Difflam Lozenge Raspberry Sugar Free lozenge, 2",20170831 +181501000036105,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835921000168103,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20, blister pack",20161031 +81217011000036100,"acetate + calcium chloride + citric acid + magnesium chloride + potassium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",834131000168102,"sodium chloride + potassium chloride + calcium chloride dihydrate + magnesium chloride + acetate + citric acid",20161031 +873201000168100,"morphine sulfate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",27054011000036102,"morphine sulfate pentahydrate 30 mg tablet, 20",20170430 +12083011000036105,"Cardiprin 100 mg dispersible tablet, 90",900000000000526001,"REPLACED BY association reference set",804031000168107,"Cardiprin 100 mg tablet, 90",20160630 +923088011000036105,"Omeprazole (Pharmacor) 20 mg capsule",900000000000526001,"REPLACED BY association reference set",717051000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule",20150930 +53699011000036101,"Disprin Forte dispersible tablet",900000000000526001,"REPLACED BY association reference set",804141000168104,"Disprin Forte tablet",20160630 +823891000168106,"exenatide 2 mg modified release injection [1 cartridge] (&) inert substance diluent [1 cartridge], 1 pack",900000000000526001,"REPLACED BY association reference set",833281000168105,"exenatide 2 mg/dose + inert substance modified release injection, 1 dual chamber device",20160930 +35693011000036101,"carbomer-974",900000000000526001,"REPLACED BY association reference set",718701000168108,"carbomer-974P",20150930 +922538011000036109,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 15",900000000000526001,"REPLACED BY association reference set",829711000168107,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 15",20160930 +82567011000036107,"potassium nitrate 25% + silver nitrate 75% stick, 100",900000000000526001,"REPLACED BY association reference set",722901000168104,"silver nitrate 75% + potassium nitrate 25% stick, 100",20151031 +14050011000036102,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715291000168102,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g",20150930 +83475011000036109,"triglycerides long chain with glucose polymer oral liquid, 18 x 250 mL cans",900000000000526001,"REPLACED BY association reference set",745341000168106,"triglycerides long chain with glucose polymer oral liquid, 18 x 250 mL cartons",20160131 +160471000036105,"Oxycontin Reformulation 80 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929125011000036100,"Oxycontin 80 mg modified release tablet, 28, blister pack",20170731 +77394011000036104,"Centrum tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",833151000168105,"Centrum film-coated tablet, 60, bottle",20160930 +41229011000036107,"Keppra 1 g tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",721131000168104,"Keppra-1000 1 g film-coated tablet, 100",20151031 +73670011000036102,"tetanus toxoid vaccine",900000000000526001,"REPLACED BY association reference set",2638011000036103,"tetanus toxoid",20161031 +81286011000036100,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867801000168104,"glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag",20170131 +26688011000036109,"entecavir monohydrate 1 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",829461000168104,"entecavir 1 mg tablet, 30",20160930 +57064011000036103,"Difflam Lozenge orange sugar free lozenge, 24",900000000000526001,"REPLACED BY association reference set",995841000168101,"Difflam Lozenge Orange Sugar Free lozenge, 24",20170831 +703051000168101,"Fluarix Tetra 2015 injection: suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",709801000168107,"Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes",20150731 +18870011000036100,"Kenacomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758351000168101,"Kenacomb Otic ear drops solution, 7.5 mL, bottle",20160229 +74418011000036106,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845991000168100,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +4670011000036108,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet",900000000000526001,"REPLACED BY association reference set",834781000168100,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet",20161031 +930117011000036104,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",861281000168100,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge",20161231 +711841000168107,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005101000168104,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +76802011000036105,"Centrum tablet: film-coated, 115",900000000000526001,"REPLACED BY association reference set",833201000168102,"Centrum film-coated tablet, 115",20160930 +50498011000036105,"PKU Cooler15 Orange oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725651000168103,"PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches",20151031 +711871000168100,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005161000168103,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +1085511000168107,"Fluzone High-Dose injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122651000168101,"Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes",20180430 +73664011000036101,"poliomyelitis virus type 3 (Sabin strain (Leon 12a1b)) live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",838031000168106,"poliovirus type 3 live antigen",20161031 +55665011000036105,"Clotrimazole 6 Day (Guardian) 1% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715191000168105,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g",20150930 +80655011000036108,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868481000168109,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags",20170131 +688801000168109,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831051000168107,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",20160930 +49445011000036103,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688961000168103,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll",20150331 +74721011000036101,"Gardasil injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",823001000168109,"Gardasil injection suspension, 0.5 mL vial",20160831 +732681000168103,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",747031000168106,"Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules",20160131 +80226011000036103,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868441000168104,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",20170131 +78327011000036109,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",861981000168105,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 60",20161231 +711161000168101,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005871000168102,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag",20170930 +823941000168107,"Bydureon (4 x 2 mg cartridges, 4 x inert diluent cartridges), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",833361000168105,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices",20160930 +82434011000036101,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 125 mL can",900000000000526001,"REPLACED BY association reference set",724921000168101,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle",20151031 +814431000168101,"Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, bottles",900000000000526001,"REPLACED BY association reference set",1085551000168108,"Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs",20180228 +83986011000036106,"Diacol tablet, 32",900000000000526001,"REPLACED BY association reference set",900261000168107,"Diacol tablet, 32",20170331 +76554011000036107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL",900000000000526001,"REPLACED BY association reference set",705891000168104,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL",20150731 +35134011000036106,"morphine hydrochloride 2 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",872701000168101,"morphine hydrochloride 2 mg/mL oral liquid, 100 mL",20170131 +75523011000036107,"meningococcal group C conjugate vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",826421000168104,"meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20160930 +85057011000036102,"Glycoprep powder for oral liquid, 200 g, sachet",900000000000526001,"REPLACED BY association reference set",851571000168107,"Glycoprep powder for oral liquid, 200 g sachet",20161130 +711411000168105,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005061000168102,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +75027011000036100,"hepatitis B vaccine 10 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",825511000168103,"hepatitis B child vaccine 10 microgram/0.5 mL injection, vial",20160930 +663141000168107,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",900000000000526001,"REPLACED BY association reference set",833571000168105,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",20160930 +761221000168101,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 8",900000000000526001,"REPLACED BY association reference set",851091000168103,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 8",20161130 +60988011000036107,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861591000168104,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16, blister pack",20161231 +921855011000036102,"Macu-Vision tablet: film-coated, 90, bottle",900000000000526001,"REPLACED BY association reference set",757931000168107,"Macu-Vision film-coated tablet, 90, bottle",20160229 +84609011000036104,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724891000168106,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles",20151031 +920655011000036104,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90, bottle",900000000000526001,"REPLACED BY association reference set",949371000168109,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, bottle",20170630 +73877011000036106,"BCG Vaccine (Sanofi Pasteur) (Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg) powder for injection, 1.5 mg vial",900000000000526001,"REPLACED BY association reference set",822561000168106,"BCG Vaccine (Sanofi Pasteur) (Mycobacterium bovis (BCG) live vaccine) powder for injection, 1.5 mg vial",20160831 +80158011000036103,"Metomax capsule",900000000000526001,"REPLACED BY association reference set",867291000168109,"Metomax capsule",20170131 +702631000168105,"diphtheria toxoid vaccine 2 Lf/0.5 mL + tetanus toxoid vaccine 2 Lf/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837401000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 10 x 0.5 mL vials",20161031 +74923011000036107,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1082951000168107,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations, pump pack",20180228 +22851000036100,"bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",758841000168108,"honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",20160229 +74296011000036107,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824981000168100,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +77334011000036105,"Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 10 x 200 mL bottles",900000000000526001,"REPLACED BY association reference set",695801000168104,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles",20150430 +726911000168100,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 1 dose, injection device",900000000000526001,"REPLACED BY association reference set",881211000168109,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device",20170228 +923902011000036101,"Omeprazole (Pharmacor) 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",717241000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 30, bottle",20150930 +41218011000036105,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",1013531000168104,"Voluven injection solution, 10 x 500 mL bottles",20170930 +1021201000168104,"Salofalk 1 g granules, 150 sachets",900000000000526001,"REPLACED BY association reference set",1084201000168108,"Salofalk 1 g modified release granules, 150 sachets",20180228 +63254011000036106,"lignocaine hydrochloride anhydrous 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",861371000168106,"lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2",20161231 +6864011000036107,"Subutex 400 microgram tablet",900000000000526001,"REPLACED BY association reference set",685801000168103,"Subutex 400 microgram sublingual tablet",20150228 +83721000036102,"aspirin 300 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804321000168107,"aspirin 300 mg tablet, 6",20160630 +711061000168100,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005971000168107,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule",20170930 +77150011000036105,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, jar",900000000000526001,"REPLACED BY association reference set",705861000168106,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, jar",20150731 +113121000036108,"citric acid 12 g + magnesium oxide 3.5 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 16.1 g sachet",900000000000526001,"REPLACED BY association reference set",902081000168108,"sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 16.1 g sachet",20170331 +140351000036104,"Menitorix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846121000168109,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20161130 +82676011000036109,"Synflorix 16 microgram injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827601000168108,"Synflorix injection suspension, 0.5 mL syringe",20160930 +7593011000036109,"Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726341000168100,"Norditropin Nordiflex 5 mg/1.5 mL injection solution",20151031 +700381000168104,"ADT Booster injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837331000168108,"ADT Booster injection suspension, 0.5 mL syringe",20161031 +134281000036105,"Imojev (Japanese encephalitis virus live vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",821511000168100,"Imojev (Japanese encephalitis live vaccine) powder for injection, vial",20160831 +70321000036101,"Salofalk 500 mg granules, 500 mg sachet",900000000000526001,"REPLACED BY association reference set",1084031000168105,"Salofalk 500 mg modified release granules, 500 mg sachet",20180228 +73645011000036105,"Japanese encephalitis inactivated vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",821671000168107,"Japanese encephalitis virus (vero cell-derived) inactivated antigen",20160831 +74884011000036106,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832261000168107,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +17858011000036106,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041281000168109,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device",20171130 +1021211000168101,"Salofalk 1 g granules, 150 sachets",900000000000526001,"REPLACED BY association reference set",1084211000168106,"Salofalk 1 g modified release granules, 150 sachets",20180228 +933225331000036106,"Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726581000168103,"Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL",20151031 +77139011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg, jar",900000000000526001,"REPLACED BY association reference set",705931000168107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg, jar",20150731 +75392011000036107,"hepatitis B vaccine 10 microgram/mL injection, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825851000168100,"hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL syringes",20160930 +77577011000036103,"iopromide 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695661000168104,"iopromide 769 mg (iodine 370 mg)/mL injection, 75 mL bottle",20150430 +139071000036100,"Bydureon (4 x 2 mg vials, 4 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",833921000168104,"Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs",20160930 +73379011000036102,"pancreatic extract 40 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847311000168102,"lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule",20161130 +77557011000036100,"glucose 25 g/50 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",872031000168106,"glucose monohydrate 25 g/50 mL injection, syringe",20170131 +13614011000036106,"Colazide 750 mg capsule, 180",900000000000526001,"REPLACED BY association reference set",932491000168108,"Colazide 750 mg hard capsule, 180",20170531 +74282011000036107,"Twinrix injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",824591000168106,"Twinrix injection suspension, 10 x 1 mL syringes",20160930 +85405011000036105,"Extraneal 7.5% dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872301000168102,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",20170131 +73650011000036104,"meningococcal group C polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827361000168102,"Neisseria meningitidis group C polysaccharide antigen",20160930 +923084011000036103,"Creon Micro 5000 units/100 mg enteric coated granules",900000000000526001,"REPLACED BY association reference set",847151000168104,"Creon Micro enteric coated granules",20161130 +703031000168107,"Fluarix Tetra 2015 injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",709781000168108,"Fluarix Tetra 2015 injection suspension, 0.5 mL syringe",20150731 +145331000036104,"dimethyl fumarate 240 mg capsule: modified release, 56",900000000000526001,"REPLACED BY association reference set",756371000168106,"dimethyl fumarate 240 mg enteric capsule, 56",20160229 +922148011000036104,"sorbitol 70% non-crystallising oral liquid",900000000000526001,"REPLACED BY association reference set",690601000168107,"sorbitol solution 70% non-crystallising oral liquid",20150331 +75380011000036107,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822981000168105,"human papillomavirus quadrivalent vaccine injection, 0.5 mL vial",20160831 +73651000036106,"Artelac 0.2% / 1% eye gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",719581000168104,"Artelac 0.2% / 1% eye gel, 10 g, tube",20150930 +86126011000036106,"Levetiracetam (Terry White Chemists) 1 g tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003771000168109,"Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60, blister pack",20170930 +50475011000036105,"MSUD Express Cooler oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725401000168104,"MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches",20151031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836881000168101,"Streptococcus pneumoniae type 12F polysaccharide antigen",20161031 +54032011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721511000168102,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL",20151031 +59862011000036103,"Clozole Vaginal Cream (Chemists' Own) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715451000168108,"Clozole (Chemists' Own) 2% vaginal cream, 20 g, tube",20150930 +75401011000036107,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",836761000168101,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 10 x 0.5 mL syringes",20161031 +83987011000036109,"Clotrimazole 3 Day (Apo) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715751000168101,"Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g",20150930 +933203991000036102,"Levetiracetam (GN) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003431000168101,"Levetiracetam 1000 (GN) 1 g film-coated tablet, 60",20170930 +933225751000036104,"ropivacaine hydrochloride monohydrate 200 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005051000168104,"ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules",20170930 +38588011000036105,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose 320 mg/4 mL injection, 5 x 4 mL ampoules",900000000000526001,"REPLACED BY association reference set",863581000168103,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, 5 x 4 mL ampoules",20170131 +260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724231000168106,"PKU Lophlex LQ 20 Orange oral liquid solution, 125 mL pouch",20151031 +41972011000036102,"Etopophos 500 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793521000168101,"Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial",20160531 +140961000036100,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine + meningococcal group C polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",846041000168102,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine",20161130 +920984011000036105,"Berocca Performance Original effervescent tablet",900000000000526001,"REPLACED BY association reference set",829701000168109,"Berocca Performance Original effervescent tablet",20160930 +4571011000036106,"Kenacomb ointment",900000000000526001,"REPLACED BY association reference set",758221000168103,"Kenacomb ointment",20160229 +81609011000036108,"glucose 5% (2.5 g/50 mL) injection, 60 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864351000168100,"glucose monohydrate 5% (2.5 g/50 mL) injection, 60 x 50 mL bags",20170131 +28329011000036108,"paracetamol 500 mg + codeine phosphate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",79240011000036102,"paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20",20161031 +107091000036103,"Moviprep Lemon powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902141000168104,"Moviprep A powder for oral liquid, sachet",20170331 +74835011000036100,"Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083641000168106,"Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL, pump pack",20180228 +56481000036107,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL, bottle",900000000000526001,"REPLACED BY association reference set",751261000168100,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL, bottle",20160229 +57063011000036100,"Difflam Lozenge orange sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995821000168107,"Difflam Lozenge Orange Sugar Free lozenge, 2",20170831 +69513011000036108,"Cepacol Antibacterial Honey and Lemon lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995101000168106,"Cepacol Antibacterial Honey and Lemon lozenge, 2, blister pack",20170831 +711011000168103,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005861000168108,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +74800011000036102,"Decongestant (Priceline) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083631000168102,"Decongestant (Priceline) 0.05% nasal spray, 20 mL, pump pack",20180228 +73830011000036107,"Zostavax (Varicella zoster live attenuated vaccine 19 400 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831791000168100,"Zostavax (varicella-zoster live vaccine) powder for injection, vial",20160930 +74949011000036108,"Otrivin Adult menthol 0.1% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085351000168101,"Otrivin Adult menthol 0.1% nasal spray, 10 mL, pump pack",20180228 +142501000036106,"Vivotif Oral enteric capsule, 3",900000000000526001,"REPLACED BY association reference set",827271000168100,"Vivotif Oral enteric capsule, 3",20160930 +711121000168106,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006211000168101,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +85055011000036107,"Strepsils lozenge, 10, tube",900000000000526001,"REPLACED BY association reference set",721951000168107,"Strepsils Cool lozenge, 10, tube",20151031 +68941011000036107,"Cepacol 0.05% mouthwash, 150 mL, bottle",900000000000526001,"REPLACED BY association reference set",994991000168101,"Cepacol 0.05% mouthwash, 150 mL, bottle",20170831 +13187011000036101,"Creon Forte 25 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847571000168104,"Creon Forte enteric capsule, 100",20161130 +670781000168100,"Peptamen Junior powder for oral liquid, 400 g, can",900000000000526001,"REPLACED BY association reference set",949671000168104,"Peptamen Junior powder for oral liquid, 400 g, can",20170630 +23482011000036101,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",1041391000168102,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, injection device",20171130 +732651000168105,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",747001000168104,"Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +74201011000036100,"Azep 140 microgram/actuation nasal spray, 10 mL",900000000000526001,"REPLACED BY association reference set",809581000168100,"Azep 0.1% nasal spray, 10 mL",20160630 +74810011000036104,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825081000168100,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",20160930 +823931000168103,"Bydureon (4 x 2 mg cartridges, 4 x inert diluent cartridges), 1 pack",900000000000526001,"REPLACED BY association reference set",833351000168108,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices",20160930 +652271000168108,"Cal-500 500 mg (calcium 500 mg) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",859761000168109,"Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60",20161231 +82853011000036108,"Questran 8 g powder for oral liquid, 50 sachets",900000000000526001,"REPLACED BY association reference set",1032311000168100,"Questran Lite 8 g powder for oral liquid, 50 sachets",20171130 +711271000168101,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006081000168101,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +923934011000036102,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000526001,"REPLACED BY association reference set",827401000168106,"pneumococcal 13 valent conjugate vaccine",20160930 +74407011000036107,"Boostrix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837691000168100,"Boostrix injection suspension, 10 x 0.5 mL syringes",20161031 +708471000168107,"triamcinolone acetonide 0.09% + neomycin sulfate 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758331000168107,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL",20160229 +82560011000036106,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 240",900000000000526001,"REPLACED BY association reference set",860561000168101,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 240",20161231 +59712011000036101,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721651000168100,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL, bottle",20151031 +87831000036103,"Eco Krill soft capsule",900000000000526001,"REPLACED BY association reference set",965881000168108,"Eco Krill 333.3 mg soft capsule",20170731 +689741000168105,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758281000168104,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g",20160229 +30541000036100,"Voltaren Osteo 1% gel, 150 g, tube",900000000000526001,"REPLACED BY association reference set",1037151000168104,"Voltaren Osteo 1.16% gel, 150 g, tube",20171130 +81143011000036104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872551000168105,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",20170131 +60989011000036104,"Logicin Rapid Relief original flavour lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861621000168102,"Logicin Rapid Relief original flavour lozenge, 16, blister pack",20161231 +923014011000036100,"Acam2000 (smallpox live vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",821301000168107,"Acam2000 (smallpox live vaccine) powder for injection, vial",20160831 +14591000036106,"Clinoleic 20% injection: emulsion, 24 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",771941000168106,"Clinoleic 20% injection emulsion, 24 x 100 mL bags",20160430 +933220871000036106,"ropivacaine hydrochloride monohydrate 150 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004881000168100,"ropivacaine hydrochloride 150 mg/20 mL injection, ampoule",20170930 +75046011000036101,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824751000168109,"hepatitis A adult vaccine 1440 ELISA units/mL injection, syringe",20160930 +36019011000036105,"Codral Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",834401000168104,"Codral Forte uncoated tablet",20161031 +72591000036108,"mesalazine 500 mg granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084071000168108,"mesalazine 500 mg modified release granules, 100 sachets",20180228 +75032011000036104,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823131000168101,"human papillomavirus bivalent vaccine injection, 0.5 mL syringe",20160831 +74760011000036100,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821391000168101,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack",20160831 +680631000168104,"Zaldiar Combination Therapy film-coated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",1027841000168105,"Zaldiar film-coated tablet, 20, blister pack",20171031 +81614011000036109,"glucose 5% (5 g/100 mL) injection, 55 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863941000168101,"glucose monohydrate 5% (5 g/100 mL) injection, 55 x 100 mL bags",20170131 +140761000036102,"Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005861000168108,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +732671000168101,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",747021000168108,"Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules",20160131 +38014011000036102,"isoflurane 100 mL/100 mL inhalation: solution, bottle",900000000000526001,"REPLACED BY association reference set",45182011000036107,"isoflurane 1 mL/mL inhalation solution",20160430 +844571000168107,"Zovirax 800 mg tablet, 35, blister pack",900000000000526001,"REPLACED BY association reference set",859411000168101,"Zovirax Dispersible 800 mg tablet, 35, blister pack",20161231 +75388011000036109,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823211000168101,"human papillomavirus bivalent vaccine injection, 20 x 0.5 mL syringes",20160831 +50480011000036107,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724091000168103,"HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches",20151031 +691971000168101,"Calcium (Sandoz) 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",847881000168103,"Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet",20161130 +823871000168105,"inert substance diluent, cartridge",900000000000526001,"REPLACED BY association reference set",833261000168101,"exenatide 2 mg/dose + inert substance modified release injection, dose",20160930 +36098011000036103,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810211000168102,"Actonel EC Combi D effervescent granules, 1 sachet",20160630 +53714011000036107,"Clotrimazole 6 Day (Guardian) 1% cream",900000000000526001,"REPLACED BY association reference set",715181000168107,"Clotrimazole 6 Day (Guardian) 1% vaginal cream",20150930 +14139011000036102,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041371000168103,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device",20171130 +54221011000036108,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream",900000000000526001,"REPLACED BY association reference set",715621000168102,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream",20150930 +74993011000036102,"measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",831021000168104,"measles + mumps + rubella live vaccine",20160930 +1825011000036104,"atropine sulfate",900000000000527005,"SAME AS association reference set",53052011000036109,"atropine sulfate monohydrate",20161130 +160461000036102,"Oxycontin Reformulation 15 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",928884011000036101,"Oxycontin 15 mg modified release tablet, 28, blister pack",20170731 +49492011000036100,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725211000168102,"PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets",20151031 +927336011000036109,"lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 25 g",900000000000526001,"REPLACED BY association reference set",863461000168106,"lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 25 g",20170131 +87182011000036103,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",705791000168109,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g, tube",20150731 +120501000036107,"clotrimazole 1% + hydrocortisone (as acetate) 1% cream, 30 g",900000000000526001,"REPLACED BY association reference set",38541011000036108,"hydrocortisone 1% + clotrimazole 1% cream, 30 g",20150930 +173181000036103,"olodaterol 2.5 microgram/actuation inhalation: pressurised, actuation",900000000000526001,"REPLACED BY association reference set",701481000168102,"olodaterol 2.5 microgram/actuation inhalation solution, actuation",20150531 +927740011000036109,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 1920 million CFU injection, 1 vial",900000000000526001,"REPLACED BY association reference set",1045951000168109,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, 1 vial",20171130 +19346011000036101,"Zovirax 200 mg dispersible tablet, 25, blister pack",900000000000526001,"REPLACED BY association reference set",859591000168109,"Zovirax Dispersible 200 mg tablet, 25, blister pack",20161231 +78313011000036109,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",833101000168106,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 30",20160930 +933221211000036105,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004781000168109,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, bag",20170930 +933225801000036107,"Naropin 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004961000168102,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +81151011000036102,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868461000168100,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",20170131 +68916011000036107,"Soap Enema (Orion) 50 mg/mL enema, 1 mL bottle",900000000000526001,"REPLACED BY association reference set",685531000168107,"Soap Enema (Orion) 50 mg/mL enema, 500 mL, bottle",20150228 +53927011000036104,"Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) uncoated tablet",900000000000526001,"REPLACED BY association reference set",967661000168105,"Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) uncoated tablet",20170731 +74742011000036109,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825611000168102,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +921065011000036107,"Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 75 mL vial",900000000000526001,"REPLACED BY association reference set",695211000168100,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 75 mL bottle",20150430 +930004011000036102,"Menveo injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826771000168109,"MenCWY injection solution, vial",20160930 +63561000168108,"Fluoride Panda Punch (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)",20170531 +138801000036105,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",846071000168109,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",20161130 +73941011000036107,"H-B-Vax II preservative free 40 microgram/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",825681000168108,"H-B-Vax II preservative free 40 microgram/mL injection suspension, vial",20160930 +22974011000036109,"paracetamol 500 mg + codeine phosphate 15 mg tablet",900000000000526001,"REPLACED BY association reference set",52803011000036102,"paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet",20161031 +110321000036101,"Sorbact (S98310) 10 cm x 10 cm foam dressing, 10, carton",900000000000526001,"REPLACED BY association reference set",1056351000168104,"Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10, carton",20171231 +39625011000036104,"Naropin",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711291000168100,"Naropin 0.2%",20150831 +61581000036105,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839731000168100,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial",20161031 +700391000168101,"diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837341000168104,"diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL syringes",20161031 +73515011000036107,"pancreatic extract 40 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847331000168107,"lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule, 100",20161130 +48767011000036105,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689301000168107,"Leukopor (2471) 1.25 cm x 5 m tape",20150331 +74111000036104,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL, bottle",900000000000526001,"REPLACED BY association reference set",764281000168100,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL, bottle",20160331 +929207011000036102,"salicylic acid 2% (20 mg/g) + aqueous cream 980 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705401000168107,"salicylic acid 2% + aqueous cream, 100 g",20150731 +244061000168103,"PKU Cooler10 Purple oral liquid: solution, 87 mL can",900000000000526001,"REPLACED BY association reference set",725571000168108,"PKU Cooler 10 Purple oral liquid solution, 87 mL pouch",20151031 +81131011000036101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",867951000168108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags",20170131 +711241000168108,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006111000168106,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +78271000036105,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703511000168105,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial",20150630 +19039011000036108,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs",900000000000526001,"REPLACED BY association reference set",792921000168101,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs",20160531 +700361000168108,"ADT Booster injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837311000168103,"ADT Booster injection suspension, 0.5 mL syringe",20161031 +933226071000036101,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004861000168109,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags",20170930 +74247011000036100,"Gardasil injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822991000168108,"Gardasil injection suspension, 0.5 mL vial",20160831 +81997011000036100,"MSUD Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",724931000168103,"MSUD Anamix Junior LQ oral liquid solution, 125 mL bottle",20151031 +921974011000036109,"Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695241000168101,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles",20150430 +43591011000036102,"Keppra 1 g tablet: film-coated, 10, blister pack",900000000000526001,"REPLACED BY association reference set",721001000168107,"Keppra-1000 1 g film-coated tablet, 10, blister pack",20151031 +860201000168104,"Ostelin Osteoguard film-coated tablet",900000000000526001,"REPLACED BY association reference set",932961000168105,"Ostelin Osteoguard film-coated tablet",20170531 +716091000168103,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, vial",900000000000526001,"REPLACED BY association reference set",826801000168106,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack",20160930 +74840011000036108,"Drixine Adult 0.05% nasal spray, 5 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083691000168103,"Drixine Adult 0.05% nasal spray, 5 mL, pump pack",20180228 +86135011000036102,"Movicol Junior solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674191000168109,"Movicol Junior powder for oral liquid, 30 sachets",20141031 +33106011000036103,"Femizol Clotrimazole Thrush Treatment 3 Day 2% cream",900000000000526001,"REPLACED BY association reference set",715511000168108,"Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream",20150930 +75051011000036109,"Japanese encephalitis inactivated vaccine 6 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",822611000168109,"Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe",20160831 +67275011000036100,"Panadol Children's 7+ Years 250 mg tablet: soluble, 16",900000000000526001,"REPLACED BY association reference set",721591000168106,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16",20151031 +11948011000036101,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715381000168109,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g",20150930 +71449011000036104,"salicylic acid 3% (30 mg/g) + aqueous cream 970 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705451000168106,"salicylic acid 3% + aqueous cream, 100 g",20150731 +703301000168103,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",828071000168106,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20160930 +2438011000036100,"pancreatic extract",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2284011000036101,"lipase",20161130 +26746011000036105,"darbepoetin alfa 60 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041131000168103,"darbepoetin alfa 60 microgram/0.3 mL injection, 0.3 mL injection device",20171130 +80674011000036107,"Gastrolyte fruit powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871841000168100,"Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets",20170131 +84927011000036104,"Elevit tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",843101000168105,"Elevit film-coated tablet, 30 (Old Formulation 2014)",20161031 +711751000168104,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005541000168107,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 10 mL ampoule",20170930 +74433011000036107,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840761000168102,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes",20161031 +925232011000036101,"Panadol Children's 3+ Years 120 mg tablet: chewable, 24, blister pack",900000000000526001,"REPLACED BY association reference set",721701000168105,"Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24, blister pack",20151031 +71858011000036103,"benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995051000168106,"benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 16",20170831 +923452011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",717401000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 7",20150930 +35560011000036102,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses",900000000000526001,"REPLACED BY association reference set",718741000168105,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses",20150930 +76701011000036102,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872951000168104,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",20170131 +84660011000036109,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873021000168101,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag",20170131 +85741011000036109,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24",900000000000526001,"REPLACED BY association reference set",996041000168104,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24",20170831 +75454011000036103,"hepatitis A inactivated vaccine 50 units/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825161000168108,"hepatitis A adult vaccine 50 units/mL injection, 1 mL syringe",20160930 +52307011000036108,"salicylic acid 2% (20 mg/g) + sulfur-precipitated 2% (20 mg/g) cream, 100 g",900000000000526001,"REPLACED BY association reference set",695831000168106,"salicylic acid 2% + precipitated sulfur 2% + aqueous cream, 100 g",20150430 +78211011000036102,"alpha tocopherol acetate 96% oil, 30 mL",900000000000526001,"REPLACED BY association reference set",842751000168103,"dl-alpha-tocopheryl acetate 96% oil, 30 mL",20161031 +74746011000036108,"Adacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837501000168105,"Adacel injection suspension, 0.5 mL vial",20161031 +83988011000036105,"Clotrimazole 6 Day (Apo) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715781000168108,"Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g",20150930 +84772011000036109,"Mepitac (298300) 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694231000168109,"Mepitac (298300) 2 cm x 3 m tape",20150331 +54179011000036109,"Difflam Lozenge orange sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995791000168104,"Difflam Lozenge Orange Sugar Free lozenge",20170831 +85016011000036107,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694331000168102,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll, carton",20150331 +711001000168101,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005851000168106,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +7419011000036103,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041401000168100,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device",20171130 +85052011000036104,"Strepsils lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",720311000168101,"Strepsils Cool lozenge, 16, blister pack",20151031 +20407011000036101,"Colazide 750 mg capsule, 180, bottle",900000000000526001,"REPLACED BY association reference set",932501000168101,"Colazide 750 mg hard capsule, 180, bottle",20170531 +62059011000036105,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge",900000000000526001,"REPLACED BY association reference set",995571000168105,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge",20170831 +154321000036100,"betamethasone (as sodium phosphate) 2.96 mg/mL + betamethasone (as acetate) 2.71 mg/mL injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",746331000168106,"betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, 5 x 1 mL ampoules",20160131 +75409011000036106,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824771000168100,"hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL syringe",20160930 +44075011000036106,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693391000168100,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules",20150331 +80646011000036103,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872621000168103,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",20170131 +923443011000036100,"Omeprazole (Pharmacor) 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",717091000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 14",20150930 +815171000168107,"Entrip 50 mg tablet, 10",900000000000526001,"REPLACED BY association reference set",856781000168106,"Entrip 50 mg film-coated tablet, 10",20161231 +36652011000036103,"Codral Forte uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",834611000168104,"Codral Forte uncoated tablet, 50",20161031 +145281000036105,"Tecfidera 120 mg capsule: modified release, 112",900000000000526001,"REPLACED BY association reference set",756281000168100,"Tecfidera 120 mg enteric capsule, 112",20160229 +4506011000036107,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838061000168103,"Pneumovax-23 injection solution, 0.5 mL vial",20161031 +921574011000036104,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100",900000000000526001,"REPLACED BY association reference set",950751000168108,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100",20170630 +66556011000036103,"Soap Enema (Orion) 50 mg/mL enema, 1 mL bottle",900000000000526001,"REPLACED BY association reference set",685521000168109,"Soap Enema (Orion) 50 mg/mL enema, 500 mL",20150228 +663081000168103,"magnesium carbonate light",900000000000527005,"SAME AS association reference set",828021000168105,"magnesium carbonate hydrate",20160930 +81040011000036104,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863931000168105,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags",20170131 +653311000168102,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, 8 sachets",900000000000526001,"REPLACED BY association reference set",669051000168107,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets",20141031 +933220541000036102,"Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726511000168109,"Norditropin Flexpro 10 mg/1.5 mL injection solution",20151031 +923051011000036106,"Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891111000168103,"Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial",20170331 +2951000036102,"olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, bag",900000000000526001,"REPLACED BY association reference set",771751000168105,"olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, bag",20160430 +146191000036107,"Tecfidera 120 mg capsule: modified release, 112, blister pack",900000000000526001,"REPLACED BY association reference set",756291000168102,"Tecfidera 120 mg enteric capsule, 112, blister pack",20160229 +922690011000036108,"Varicella zoster live attenuated vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",832011000168103,"varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack",20160930 +925139011000036109,"Omepro 20 mg capsule, 15, blister pack",900000000000526001,"REPLACED BY association reference set",716471000168108,"Omepro 20 mg enteric capsule, 15, blister pack",20150930 +696501000168109,"meningococcal group B adhesin A protein",900000000000526001,"REPLACED BY association reference set",822401000168109,"Neisseria meningitidis group B adhesin A protein",20160831 +642541000168101,"Biostate 250 IU FVIII/500 IU VWF (inert substance) diluent, 5 mL vial",900000000000526001,"REPLACED BY association reference set",900931000168107,"Biostate (inert substance) diluent, 5 mL vial",20170430 +925154011000036107,"Pemzo 20 mg capsule, 500, blister pack",900000000000526001,"REPLACED BY association reference set",716911000168108,"Pemzo 20 mg enteric capsule, 500, blister pack",20150930 +84386011000036102,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873121000168100,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags",20170131 +49502011000036108,"PKU Cooler15 Orange oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725641000168100,"PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches",20151031 +76548011000036102,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724331000168104,"PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles",20151031 +177681000036103,"lixisenatide 10 microgram/0.2 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",719291000168104,"lixisenatide 10 microgram/dose injection, dose",20150930 +31451000036106,"Vicks Sinex 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083741000168101,"Vicks Sinex 0.05% nasal spray, 15 mL, pump pack",20180228 +84003011000036105,"Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845601000168102,"Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device",20161130 +700321000168103,"ADT Vaccine injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837301000168101,"ADT Vaccine injection suspension, 0.5 mL syringe",20161031 +81052011000036103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",900000000000526001,"REPLACED BY association reference set",864341000168102,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",20170131 +711941000168103,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005281000168100,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +921948011000036101,"Gastrolyte Citrus effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871591000168105,"Gastrolyte Citrus effervescent tablet, 20, tube",20170131 +182121000036101,"Lyxumia 20 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",719281000168102,"Lyxumia 20 microgram/dose injection solution, 14 doses, injection device",20150930 +689791000168102,"Valaciclovir (Apo) 1 g film-coated tablet, 4, blister pack",900000000000526001,"REPLACED BY association reference set",1009721000168106,"Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4, blister pack",20170930 +653641000168107,"Retinofluor 1.25 g/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",721201000168102,"Retinofluor 25% 1.25 g/5 mL injection solution, 5 mL vial",20151031 +681161000168109,"Cal-600 plus D tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",862141000168106,"Cal-600 plus D film-coated tablet, 100, bottle",20161231 +69091011000036106,"Metformin Hydrochloride (GA) 1 g tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949451000168106,"Metformin Hydrochloride 1000 (GA) 1 g tablet, 90, blister pack",20170630 +922619011000036103,"alpha tocopherol acetate 250 mg (250 units) capsule, 60",900000000000526001,"REPLACED BY association reference set",842801000168109,"dl-alpha-tocopheryl acetate 250 mg (250 units) capsule, 60",20161031 +42761000036109,"Lipistart powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949721000168107,"Lipistart powder for oral liquid, 400 g",20170630 +711331000168106,"Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004541000168108,"Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag",20170930 +59805011000036105,"Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",721341000168106,"Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL, pump pack",20151031 +71884011000036104,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995361000168105,"cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 16",20170831 +74367011000036100,"Tripacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837571000168100,"Tripacel injection suspension, 0.5 mL vial",20161031 +73657011000036103,"Bordetella pertussis, acellular pertussis toxoid vaccine",900000000000526001,"REPLACED BY association reference set",836241000168107,"Bordetella pertussis toxoid",20161031 +12639011000036105,"Zovirax 800 mg dispersible tablet, 35",900000000000526001,"REPLACED BY association reference set",859221000168109,"Zovirax Dispersible 800 mg tablet, 35",20161231 +81704011000036102,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872611000168105,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 1 L bag",20170131 +81046011000036101,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863901000168103,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags",20170131 +81144011000036102,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",872581000168103,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags",20170131 +39762011000036107,"Lignocaine Hydrochloride (Pfizer (Perth))",900000000000526001,"REPLACED BY association reference set",693201000168104,"Lignocaine (Pfizer)",20150331 +26857011000036108,"aluminium hydroxide dried 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",684431000168107,"aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet, 100",20150131 +180611000036103,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet",900000000000526001,"REPLACED BY association reference set",835901000168107,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet",20161031 +4618011000036103,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041021000168102,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device",20171130 +81021011000036108,"Metomax capsule, 10, blister pack",900000000000526001,"REPLACED BY association reference set",867321000168101,"Metomax capsule, 10, blister pack",20170131 +923449011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",717301000168108,"Omeprazole (Pharmacor) 20 mg enteric capsule, 500",20150930 +65293011000036109,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705581000168100,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream",20150731 +74199011000036101,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",821411000168101,"Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack",20160831 +74209011000036101,"Adacel Polio injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839641000168104,"Adacel Polio injection suspension, 0.5 mL syringe",20161031 +728741000168103,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005791000168106,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +7328011000036106,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream",900000000000526001,"REPLACED BY association reference set",715281000168100,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream",20150930 +75353011000036106,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837511000168108,"diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 5 x 0.5 mL vials",20161031 +922005011000036107,"Recombinate 250 IU (1 x 250 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",710891000168109,"Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack",20150831 +669551000168102,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 5 x 1.5 mL cartridges",900000000000526001,"REPLACED BY association reference set",728901000168102,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges",20151130 +30608011000036101,"Cilamox sugar free 250 mg/5 mL powder for oral liquid, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",932921000168100,"Cilamox 250 mg/5 mL powder for oral liquid, 100 mL, bottle",20170531 +29261000036108,"typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827121000168105,"typhoid inactivated vaccine injection, 10 x 0.5 mL syringes",20160930 +173171000036100,"Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, actuation",900000000000526001,"REPLACED BY association reference set",701491000168104,"Striverdi Respimat 2.5 microgram/actuation inhalation solution, actuation",20150531 +931863011000036106,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet",900000000000526001,"REPLACED BY association reference set",843161000168106,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet",20161031 +923386011000036107,"Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891131000168108,"Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial",20170331 +921426011000036100,"Cardiprin 100 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",804081000168108,"Cardiprin 100 mg tablet, 100",20160630 +2861000036106,"Clinoleic 20% injection: emulsion, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771811000168101,"Clinoleic 20% injection emulsion, 500 mL bag",20160430 +30531000036105,"TYR Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725061000168106,"TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches",20151031 +716101000168108,"meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, syringe",900000000000526001,"REPLACED BY association reference set",826691000168104,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, syringe",20160930 +932711011000036109,"Lasix High Dose 20 mg/2 mL injection: solution, 2 mL ampoule",900000000000526001,"REPLACED BY association reference set",704821000168102,"Lasix 20 mg/2 mL injection solution, 2 mL ampoule",20150630 +21283011000036100,"fluticasone",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",861061000168102,"fluticasone propionate",20161231 +929647011000036108,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723961000168108,"PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets",20151031 +71351000036101,"carbomer 0.2% + triglyceride lipids 1% eye gel, 30 x 600 mg unit doses",900000000000526001,"REPLACED BY association reference set",719611000168106,"carbomer-980 0.2% + triglyceride lipids 1% eye gel, 30 x 600 mg unit doses",20150930 +76738011000036100,"Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695521000168105,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials",20150430 +83978011000036100,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",860301000168106,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60",20161231 +933241751000036103,"choriogonadotropin alfa 250 microgram/0.5 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",728081000168106,"choriogonadotropin alfa 250 microgram/0.5 mL injection, dose",20151031 +141741000036106,"lanreotide 60 mg injection, 1 syringe",900000000000526001,"REPLACED BY association reference set",819581000168102,"lanreotide 60 mg/0.5 mL injection, 0.5 mL syringe",20160731 +56530011000036101,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 200 mL",900000000000526001,"REPLACED BY association reference set",721781000168102,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL",20151031 +75389011000036101,"hepatitis B vaccine 5 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825961000168105,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL syringe",20160930 +923733011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 60, blister pack",900000000000526001,"REPLACED BY association reference set",717371000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 60, blister pack",20150930 +922531011000036100,"Varicella zoster live attenuated vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831721000168102,"varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack",20160930 +73900011000036106,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832201000168106,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +69521011000036100,"Disprin Max 500 mg dispersible tablet, 6, strip pack",900000000000526001,"REPLACED BY association reference set",804401000168106,"Disprin Max 500 mg tablet, 6, strip pack",20160630 +827891000168103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845961000168107,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +933196031000036106,"Levetiracetam (GN) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003421000168104,"Levetiracetam 1000 (GN) 1 g film-coated tablet",20170930 +32691000036106,"Tadim 1 million units (80 mg) powder for inhalation, vial",900000000000526001,"REPLACED BY association reference set",818101000168107,"Tadim 1 million units powder for inhalation, vial",20160731 +86617011000036101,"Orabase Protective Paste oromucosal paste",900000000000526001,"REPLACED BY association reference set",797581000168108,"Orabase Protective paste",20160630 +77281011000036106,"Compound Benzoin Tincture Friar's Balsam (Orion) solution, 50 mL, bottle",900000000000526001,"REPLACED BY association reference set",696441000168105,"Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL, bottle (Old Formulation 2010)",20150430 +27890011000036103,"lopinavir 80 mg/mL + ritonavir 20 mg/mL oral liquid, 60 mL",900000000000526001,"REPLACED BY association reference set",689471000168109,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 60 mL",20150331 +73701000036102,"Salofalk 1.5 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084291000168102,"Salofalk 1.5 g modified release granules, 100 sachets",20180228 +6438011000036101,"Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722731000168109,"Intron A Redipen 18 million units/1.2 mL injection solution",20151031 +82858011000036103,"Synflorix 16 microgram injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827631000168101,"Synflorix injection suspension, 0.5 mL syringe",20160930 +43742011000036101,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",1013541000168108,"Voluven injection solution, 10 x 500 mL bottles",20170930 +815151000168103,"Entrip 25 mg tablet, 1000, blister pack",900000000000526001,"REPLACED BY association reference set",856761000168102,"Entrip 25 mg film-coated tablet, 1000, blister pack",20161231 +107551000036103,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056221000168101,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon",20171231 +69318011000036100,"Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",684741000168106,"Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials",20150131 +711591000168102,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005621000168102,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +700029821000036109,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack",900000000000526001,"REPLACED BY association reference set",792901000168105,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack",20160531 +172391000036105,"Fosamax Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848621000168102,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",20161130 +22815011000036109,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, sachet",900000000000526001,"REPLACED BY association reference set",669001000168108,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet",20141031 +933231531000036102,"Naropin 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004571000168101,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +6075011000036101,"Panzytrat 25 000 units enteric capsule",900000000000526001,"REPLACED BY association reference set",847641000168107,"Panzytrat 25 000 enteric capsule",20161130 +160441000036103,"Oxycontin Reformulation 40 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929123011000036101,"Oxycontin 40 mg modified release tablet, 28, blister pack",20170731 +86061011000036100,"Qlaira, 84 tablets [3 x 28], blister pack",900000000000526001,"REPLACED BY association reference set",684301000168108,"Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs",20150131 +73681000036104,"Byetta 5 microgram/0.02 mL injection: solution, 60 x 0.02 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",726791000168107,"Byetta 5 microgram/dose injection solution, 60 doses, injection device",20151031 +38803011000036100,"isoflurane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",46487011000036108,"isoflurane 1 mL/mL inhalation solution, 100 mL",20160430 +930879011000036107,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872871000168103,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",20170131 +933231261000036105,"Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726591000168100,"Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL, injection device",20151031 +33492011000036104,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",707351000168105,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe",20150731 +114571000036100,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets",900000000000526001,"REPLACED BY association reference set",902111000168103,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets",20170331 +74379011000036104,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831901000168109,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20160930 +77460011000036102,"psyllium dried + senna dried",900000000000526001,"REPLACED BY association reference set",832421000168103,"dry psyllium seed + dry Tinnevelly senna fruit",20160930 +922106011000036105,"diatrizoate meglumine 79.2 g/120 mL + diatrizoate sodium 12 g/120 mL solution, bottle",900000000000526001,"REPLACED BY association reference set",696051000168103,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution",20150430 +65025011000036109,"Ringworm",900000000000526001,"REPLACED BY association reference set",800401000168102,"Ringworm (Amneal)",20160630 +726861000168109,"adrenaline 300 microgram/0.3 mL injection, 60 doses",900000000000526001,"REPLACED BY association reference set",726721000168105,"adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose",20151130 +74899011000036106,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825951000168108,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +81724011000036108,"calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872261000168105,"sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 12 x 1 L bags",20170131 +836201000168105,"Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872361000168101,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag",20170131 +81290011000036102,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868121000168102,"glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag",20170131 +20373011000036106,"Subutex 400 microgram tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",685891000168109,"Subutex 400 microgram sublingual tablet, 7, blister pack",20150228 +74790011000036102,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845951000168105,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +35162011000036106,"codeine phosphate 5 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",52315011000036101,"codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL",20161031 +84415011000036101,"dibasic sodium phosphate heptahydrate + monobasic sodium phosphate monohydrate",900000000000526001,"REPLACED BY association reference set",900221000168102,"monobasic sodium phosphate monohydrate + dibasic sodium phosphate",20170331 +76686011000036100,"Agiolax granules, 250 g",900000000000526001,"REPLACED BY association reference set",832461000168108,"Agiolax granules, 250 g",20160930 +81696011000036102,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868411000168103,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags",20170131 +933238801000036102,"Omeprazole (Apo) 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",717551000168100,"Omeprazole (Apo) 20 mg enteric capsule, 30, blister pack",20150930 +81043011000036107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863961000168102,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags",20170131 +922573011000036102,"iopromide 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695171000168102,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 50 mL bottles",20150430 +81618011000036102,"glucose 5% (12.5 g/250 mL) injection, 35 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863771000168106,"glucose monohydrate 5% (12.5 g/250 mL) injection, 35 x 250 mL bags",20170131 +30511000036101,"MSUD Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725111000168107,"MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches",20151031 +924139011000036102,"omeprazole 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717011000168109,"omeprazole 20 mg enteric capsule, 98",20150930 +98931000036106,"Irbesartan (Apo) 150 mg tablet",900000000000526001,"REPLACED BY association reference set",807771000168100,"Irbesartan (Apo) 150 mg film-coated tablet",20160630 +50523011000036104,"Combine Roll (2902165) (BSN) 9 cm x 10 m roll: wrapped pack, 1 pack, carton",900000000000526001,"REPLACED BY association reference set",688661000168109,"Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1, carton",20150331 +75519011000036100,"hepatitis B vaccine 10 microgram/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825741000168108,"hepatitis B adult vaccine 10 microgram/mL injection, 1 mL vial",20160930 +135841000036104,"Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746961000168104,"Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +716011000168107,"meningococcal group A conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826651000168109,"meningococcal A conjugate vaccine",20160930 +74864011000036108,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824891000168109,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +67119011000036109,"Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",684681000168106,"Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials",20150131 +80649011000036107,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",872571000168101,"Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags",20170131 +80651011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868261000168101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags",20170131 +49442011000036106,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694001000168107,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll",20150331 +21677011000036103,"pneumococcal purified capsular polysaccharides",900000000000526001,"REPLACED BY association reference set",838041000168102,"pneumococcal 23 valent vaccine",20161031 +81289011000036109,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868041000168109,"glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag",20170131 +28225011000036104,"albendazole 400 mg chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",844081000168101,"albendazole 400 mg tablet, 60",20161031 +74771011000036102,"Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827541000168109,"Prevenar injection suspension, 0.5 mL syringe",20160930 +84383011000036108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873091000168104,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",20170131 +689801000168101,"Otocomb Otic ear ointment",900000000000526001,"REPLACED BY association reference set",758361000168104,"Otocomb Otic ear ointment",20160229 +61531000036106,"glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid",900000000000526001,"REPLACED BY association reference set",688111000168103,"iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid",20150331 +81694011000036105,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867901000168109,"glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag",20170131 +63723011000036102,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",995731000168103,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 24",20170831 +761261000168106,"Lomotil uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",851151000168107,"Lomotil uncoated tablet, 100",20161130 +73943011000036108,"Quadracel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840581000168100,"Quadracel injection suspension, 0.5 mL vial",20161031 +836181000168109,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872331000168109,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",20170131 +711671000168104,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005491000168103,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +931812011000036100,"meningococcal group A conjugate vaccine + meningococcal group C conjugate vaccine + meningococcal group W135 conjugate vaccine + meningococcal group Y (Neisseria meningitidis) conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826521000168100,"meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine",20160930 +56188011000036103,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 2",900000000000526001,"REPLACED BY association reference set",861381000168109,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2",20161231 +84050011000036105,"Cold and Flu Day and Night PE (Pharmacy Choice) (8 x Day tablets, 16 x Night tablets), 24",900000000000526001,"REPLACED BY association reference set",749541000168101,"Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24",20160131 +36651011000036109,"Codral Forte uncoated tablet, 4",900000000000526001,"REPLACED BY association reference set",834421000168108,"Codral Forte uncoated tablet, 4",20161031 +12930011000036103,"Cal Sup 500 mg (calcium 500 mg) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",859731000168101,"Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60",20161231 +80648011000036104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872541000168108,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",20170131 +50922011000036100,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694391000168103,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape",20150331 +933204081000036102,"Valaciclovir (GA) 1 g film-coated tablet, 4",900000000000526001,"REPLACED BY association reference set",1009651000168107,"Valaciclovir 1000 (GA) 1 g film-coated tablet, 4",20170930 +711261000168107,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006071000168104,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule",20170930 +73462011000036107,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL gel: intestinal, 7 x 1 mL bags",900000000000526001,"REPLACED BY association reference set",720511000168106,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel, 7 x 100 mL",20151031 +370751000168101,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725021000168101,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 125 mL pouch",20151031 +689761000168109,"Kenacomb Otic ear ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758301000168100,"Kenacomb Otic ear ointment, 5 g, tube",20160229 +73711000036100,"Salofalk 1.5 g granules, 60 sachets",900000000000526001,"REPLACED BY association reference set",1084261000168109,"Salofalk 1.5 g modified release granules, 60 sachets",20180228 +69842011000036107,"lactate + sodium chloride + potassium chloride",900000000000526001,"REPLACED BY association reference set",860891000168106,"sodium lactate + sodium chloride + potassium chloride",20161231 +27150011000036100,"etidronate disodium 200 mg tablet [28] (&) calcium (as carbonate) 500 mg tablet [76], 104",900000000000526001,"REPLACED BY association reference set",852761000168103,"etidronate disodium 200 mg tablet [28] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [76], 104",20161130 +925142011000036100,"Omepro 20 mg capsule, 60, blister pack",900000000000526001,"REPLACED BY association reference set",717041000168108,"Omepro 20 mg enteric capsule, 60, blister pack",20150930 +39041000036100,"Drixine No Drip Formula 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083711000168100,"Drixine No Drip Formula 0.05% nasal spray, 15 mL, pump pack",20180228 +75452011000036107,"hepatitis A inactivated vaccine 50 units/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",824921000168104,"hepatitis A adult vaccine 50 units/mL injection, 1 mL vial",20160930 +20661011000036107,"Novomix 30 Flexpen injection suspension, 5 x 3 mL syringes",900000000000526001,"REPLACED BY association reference set",1007221000168105,"Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices",20170930 +61443011000036101,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 5 mL, bottle",900000000000526001,"REPLACED BY association reference set",721421000168105,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL, bottle",20151031 +154921000036101,"Istodax (inert substance) diluent, vial",900000000000526001,"REPLACED BY association reference set",828481000168104,"Istodax (inert substance) diluent, 2 mL vial",20160930 +65312011000036107,"Cepacol 0.05% mouthwash",900000000000526001,"REPLACED BY association reference set",994961000168108,"Cepacol 0.05% mouthwash",20170831 +55633011000036104,"Disprin Forte dispersible tablet, 24",900000000000526001,"REPLACED BY association reference set",804161000168100,"Disprin Forte tablet, 24",20160630 +716131000168101,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826721000168108,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack",20160930 +139241000036102,"Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005991000168108,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +33666011000036100,"paper wasp venom 550 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",758881000168103,"paper wasp venom 550 microgram injection, vial",20160229 +52239011000036101,"salicylic acid 2% (20 mg/g) + sulfur-precipitated 2% (20 mg/g) cream",900000000000526001,"REPLACED BY association reference set",695811000168101,"salicylic acid 2% + precipitated sulfur 2% + aqueous cream",20150430 +815121000168106,"Entrip 25 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",856731000168105,"Entrip 25 mg film-coated tablet, 100",20161231 +933214571000036107,"Levetiracetam (MPPL) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003561000168105,"Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60, blister pack",20170930 +74851011000036103,"Rynacrom 4% nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1082971000168103,"Rynacrom 4% nasal spray, 15 mL, pump pack",20180228 +14338011000036102,"Codapane Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835941000168109,"Codapane Forte 500/30 uncoated tablet, 20",20161031 +929271011000036101,"citric acid 11.81 g + magnesium carbonate heavy 7.87 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 20 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",833461000168100,"picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 x 20 g sachets",20160930 +88101000036103,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate anhydrous 2.51 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet",900000000000526001,"REPLACED BY association reference set",861831000168100,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet",20161231 +711831000168103,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005091000168109,"Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +74763011000036108,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825271000168108,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes",20160930 +84773011000036102,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694301000168109,"Mepitac (298400) 4 cm x 1.5 m tape",20150331 +75374011000036106,"hepatitis B vaccine 10 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825591000168107,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL vial",20160930 +33774011000036107,"leuprorelin acetate 7.5 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",707291000168105,"leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack",20150731 +84385011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873041000168107,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",20170131 +933225701000036100,"Naropin 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004661000168108,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +85777011000036102,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet, 1 x Bisacodyl (Fresenius Kabi) suppository), 1 pack",900000000000526001,"REPLACED BY association reference set",831441000168100,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack",20160930 +81051011000036109,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864431000168100,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags",20170131 +700271000168105,"diphtheria toxoid vaccine + tetanus toxoid vaccine",900000000000526001,"REPLACED BY association reference set",21826011000036109,"diphtheria + tetanus vaccine",20161031 +922562011000036102,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",843231000168108,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 30",20161031 +925167011000036105,"Pemzo 20 mg capsule, 50, blister pack",900000000000526001,"REPLACED BY association reference set",716821000168109,"Pemzo 20 mg enteric capsule, 50, blister pack",20150930 +827991000168105,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845891000168107,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +5837011000036106,"Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU) powder for injection, 81 mg vial",900000000000526001,"REPLACED BY association reference set",1045941000168107,"Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial",20171130 +80219011000036102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868051000168106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",20170131 +74368011000036104,"Tripacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837601000168106,"Tripacel injection suspension, 5 x 0.5 mL vials",20161031 +73368011000036102,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL gel: intestinal",900000000000526001,"REPLACED BY association reference set",720461000168108,"levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel",20151031 +81171011000036104,"Gastrolyte fruit powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871821000168106,"Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets",20170131 +821611000168104,"Coxiella burnetii antigen 2.5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",955081000168105,"Q fever skin test injection, 0.5 mL vial",20170630 +64581000036108,"Quick-Eze chewable tablet, 12",900000000000526001,"REPLACED BY association reference set",833671000168109,"Quick-Eze chewable tablet, 12",20160930 +926342011000036108,"Priorix powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831151000168106,"Priorix powder for injection, 10 vials",20160930 +929971011000036100,"Medi Quattro First Aid cream",900000000000526001,"REPLACED BY association reference set",863531000168104,"Medi Quattro First Aid cream",20170131 +141751000036109,"Somatuline Autogel 90 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819541000168107,"Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724281000168107,"PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches",20151031 +933246151000036109,"Aspalgin dispersible tablet, 40, blister pack",900000000000526001,"REPLACED BY association reference set",834321000168103,"Aspalgin dispersible tablet, 40, blister pack",20161031 +700027061000036102,"Femazole 150 mg capsule: hard, 1 capsule, blister pack",900000000000526001,"REPLACED BY association reference set",685561000168104,"Femazole Duo 150 mg hard capsule, 1, blister pack",20150228 +69759011000036101,"lactate + sodium chloride + potassium chloride + calcium chloride dihydrate",900000000000526001,"REPLACED BY association reference set",860961000168106,"sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate",20161231 +63331000036103,"Worming Tablet (Chemmart) 100 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844281000168107,"Worming Tablet (Chemmart) 100 mg tablet, 6",20161031 +836211000168108,"Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872371000168107,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag",20170131 +86461011000036106,"bisacodyl 5 mg enteric tablet [3] (&) citric acid 14 g + magnesium carbonate heavy 7.5 g powder for oral liquid [1 x 21.5 g sachet] (&) bisacodyl 10 mg suppository [1], 1 pack",900000000000526001,"REPLACED BY association reference set",831431000168109,"bisacodyl 5 mg enteric tablet [3] (&) bisacodyl 10 mg suppository [1] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack",20160930 +921431011000036107,"Centrum Select 50 Plus tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",843331000168101,"Centrum Select 50 Plus film-coated tablet, 100",20161031 +473751000168100,"HCU Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724061000168105,"HCU Cooler 15 Orange oral liquid solution, 130 mL pouch",20151031 +86139011000036100,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848651000168105,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack",20161130 +12511000168102,"Chlorhexidine Gluconate Hand Lotion (Orion)",900000000000526001,"REPLACED BY association reference set",766611000168102,"Chlorhexidine Hand Lotion (Orion)",20160331 +74283011000036100,"Twinrix Junior injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824541000168103,"Twinrix Junior injection suspension, 0.5 mL syringe",20160930 +59827011000036106,"Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715421000168100,"Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g, tube",20150930 +108731000036102,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20",900000000000526001,"REPLACED BY association reference set",1056241000168107,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20",20171231 +50279011000036108,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694011000168105,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll, carton",20150331 +74728011000036105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825551000168102,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +1021131000168101,"mesalazine 500 mg granules, 300 sachets",900000000000526001,"REPLACED BY association reference set",1084101000168104,"mesalazine 500 mg modified release granules, 300 sachets",20180228 +65911000036109,"Worming Tablet (Chemmart) 100 mg chewable tablet, 6, blister pack",900000000000526001,"REPLACED BY association reference set",844291000168105,"Worming Tablet (Chemmart) 100 mg tablet, 6, blister pack",20161031 +933225731000036107,"ropivacaine hydrochloride monohydrate 200 mg/100 mL injection, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004551000168105,"ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags",20170930 +44102011000036104,"Zovirax 400 mg dispersible tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",859581000168106,"Zovirax Dispersible 400 mg tablet, 100, bottle",20161231 +19203011000036106,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack",900000000000526001,"REPLACED BY association reference set",852781000168107,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack",20161130 +84436011000036102,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag",900000000000526001,"REPLACED BY association reference set",873051000168109,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag",20170131 +158341000036103,"Oxycontin Reformulation 40 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6513011000036107,"Oxycontin 40 mg modified release tablet",20170731 +63686011000036105,"clotrimazole 10% cream, 5 g",900000000000526001,"REPLACED BY association reference set",715591000168104,"clotrimazole 10% vaginal cream, 5 g",20150930 +87738011000036100,"Osmolax 1 g/g oral liquid: powder for, 510 g, bottle",900000000000526001,"REPLACED BY association reference set",703421000168102,"Osmolax 1 g/g powder for oral liquid, 510 g, jar",20150630 +932461011000036104,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872891000168102,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle",20170131 +13581011000036104,"Subutex 400 microgram tablet, 7",900000000000526001,"REPLACED BY association reference set",685881000168106,"Subutex 400 microgram sublingual tablet, 7",20150228 +83954011000036109,"TYR Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724901000168105,"TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles",20151031 +235461000168109,"triglycerides long chain with glucose polymer oral liquid, 1 L bottle",900000000000526001,"REPLACED BY association reference set",745371000168104,"triglycerides long chain with glucose polymer oral liquid, 1 L carton",20160131 +712071000168103,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005191000168105,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +711541000168105,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004961000168102,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +726901000168103,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 1 dose",900000000000526001,"REPLACED BY association reference set",881201000168106,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose",20170228 +900821000168101,"PKU Sphere powder for oral liquid, 35 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922531000168106,"PKU Sphere20 Red Berry powder for oral liquid, 35 g sachet",20170430 +927640011000036102,"Immucyst 1920 million CFU powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",1045961000168106,"Immucyst 81 mg powder for injection, 1 vial",20171130 +63245011000036107,"miconazole 2% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",819991000168108,"miconazole 2% oral gel, 10 g",20160731 +85391011000036102,"Go Kit powder for oral liquid, 21.5 g sachet",900000000000526001,"REPLACED BY association reference set",830921000168105,"Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 21.5 g sachet",20160930 +83703011000036106,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872471000168100,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",20170131 +19715011000036100,"Prozac 20 mg dispersible tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",844341000168108,"Prozac 20 mg tablet, 28, blister pack",20161031 +37937011000036102,"calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 1 sachet",900000000000526001,"REPLACED BY association reference set",810201000168100,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet",20160630 +84917011000036108,"Strepsils lozenge, 36",900000000000526001,"REPLACED BY association reference set",720321000168108,"Strepsils Cool lozenge, 36",20151031 +75518011000036108,"hepatitis B vaccine 40 microgram/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825691000168106,"hepatitis B dialysis vaccine injection, 1 mL vial",20160930 +923439011000036103,"Creon Micro 5000 units/100 mg enteric coated granules, 20 g",900000000000526001,"REPLACED BY association reference set",847171000168108,"Creon Micro enteric coated granules, 20 g",20161130 +69540011000036109,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995411000168103,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2, blister pack",20170831 +75529011000036105,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840751000168104,"diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 10 x 0.5 mL syringes",20161031 +82426011000036106,"potassium nitrate + silver",900000000000526001,"REPLACED BY association reference set",722871000168104,"silver nitrate + potassium nitrate",20151031 +73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822241000168105,"rotavirus type G1 live antigen",20160831 +728711000168102,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005761000168104,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +55742011000036100,"Cortef 1% spray: solution, 30 mL",900000000000526001,"REPLACED BY association reference set",776891000168103,"Cortef 1% spray solution, 30 mL",20160430 +931512011000036101,"Menveo injection: suspension, 1 pack, composite pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826731000168106,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack",20160930 +23215011000036106,"lopinavir 80 mg/mL + ritonavir 20 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",689451000168100,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid",20150331 +80520011000036105,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863891000168102,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags",20170131 +73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826021000168106,"Streptococcus pneumoniae type 23F conjugate antigen",20160930 +703041000168103,"influenza virus quadrivalent vaccine 2015 injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",709791000168106,"influenza quadrivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes",20150731 +75373011000036109,"hepatitis B vaccine 20 microgram/mL injection, 25 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825361000168106,"hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL vials",20160930 +56454011000036103,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24",900000000000526001,"REPLACED BY association reference set",967671000168104,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24",20170731 +60572011000036108,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721791000168104,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL, bottle",20151031 +74541000036107,"Flixonase Nasule 400 microgram/0.4 mL nasal drops: solution, 28 x 0.4 mL unit doses, tube",900000000000526001,"REPLACED BY association reference set",684271000168106,"Flixonase Nasule 400 microgram/0.4 mL nasal drops solution, 28 x 0.4 mL unit doses, ampoule",20150131 +74718011000036104,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831971000168104,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack",20160930 +49257011000036109,"Monogen powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949691000168103,"Monogen powder for oral liquid, 400 g",20170630 +65210011000036100,"Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 5 mL ampoule",900000000000526001,"REPLACED BY association reference set",701541000168108,"Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 5 mL ampoule",20150531 +74261000036105,"Levetiracetam (Pfizer) 1 g film-coated tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",1003611000168108,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, bottle",20170930 +53635011000036107,"Cepacol Cough Plus Lemon lozenge",900000000000526001,"REPLACED BY association reference set",995251000168103,"Cepacol Cough Plus Lemon lozenge",20170831 +75414011000036107,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",824821000168107,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 10 x 0.5 mL vials",20160930 +134271000036108,"Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746941000168103,"Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +81133011000036100,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868431000168108,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags",20170131 +51423011000036103,"gauze and cotton tissue combine roll 10 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688611000168106,"gauze and cotton tissue combine roll 10 cm x 10 m wrapped pack roll, 1",20150331 +700032111000036102,"calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 24 sachets",900000000000526001,"REPLACED BY association reference set",810251000168101,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 24 sachets",20160630 +689631000168109,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",831221000168107,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack",20160930 +154311000036107,"Celestone Chronodose injection: suspension, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",746341000168102,"Celestone Chronodose injection suspension, 5 x 1 mL ampoules",20160131 +933220901000036106,"Naropin 0.2% (40 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004591000168100,"Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule",20170930 +74198011000036109,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",821381000168104,"Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack",20160831 +71421000036103,"Salofalk 1.5 g granules, 60 sachets",900000000000526001,"REPLACED BY association reference set",1084251000168107,"Salofalk 1.5 g modified release granules, 60 sachets",20180228 +20303011000036100,"Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",879781000168102,"Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack",20170228 +78109011000036103,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 1 kg",900000000000526001,"REPLACED BY association reference set",705911000168102,"glycerol 10% + cetomacrogol aqueous cream, 1 kg",20150731 +74941011000036109,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826501000168109,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20160930 +73662011000036105,"poliomyelitis virus type 2 (Sabin strain (P712, Ch, 2ab)) live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",838021000168108,"poliovirus type 2 live antigen",20161031 +46909011000036102,"methyl aminolevulinate hydrochloride 200 mg/g cream, 2 g",900000000000526001,"REPLACED BY association reference set",999301000168107,"methyl aminolevulinate 160 mg/g cream, 2 g",20170831 +35671011000036109,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses, ampoule",900000000000526001,"REPLACED BY association reference set",718751000168107,"Poly Gel 0.3% eye gel, 30 x 500 mg unit doses, ampoule",20150930 +80221011000036108,"Eye Stream eye solution",900000000000526001,"REPLACED BY association reference set",834151000168108,"Eye Stream eye solution",20161031 +933195991000036103,"Levetiracetam (LAPL) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003461000168109,"Levetiracetam 1000 (LAPL) 1 g film-coated tablet",20170930 +844521000168106,"Zovirax 800 mg tablet, 5",900000000000526001,"REPLACED BY association reference set",859471000168109,"Zovirax Dispersible 800 mg tablet, 5",20161231 +36881011000036109,"Actacode Linctus 5 mg/mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",835551000168100,"Actacode Linctus 5 mg/mL oral liquid solution, 100 mL",20161031 +81616011000036101,"glucose 5% (12.5 g/250 mL) injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863681000168104,"glucose monohydrate 5% (12.5 g/250 mL) injection, 20 x 250 mL bags",20170131 +933220991000036103,"fluoride 9.99 mg/g + hydrofluoric acid 4.9 mg/g foam",900000000000526001,"REPLACED BY association reference set",932341000168107,"sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam",20170531 +33775011000036106,"leuprorelin acetate 22.5 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",707331000168104,"leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack",20150731 +711451000168106,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005021000168107,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +27967011000036106,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL syringes",900000000000526001,"REPLACED BY association reference set",1007201000168101,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL injection devices",20170930 +12170011000036102,"Canesten Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715041000168101,"Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g",20150930 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836981000168107,"Streptococcus pneumoniae type 33F polysaccharide antigen",20161031 +925334011000036102,"Omepro 20 mg capsule, 15, bottle",900000000000526001,"REPLACED BY association reference set",716491000168109,"Omepro 20 mg enteric capsule, 15, bottle",20150930 +127301000036101,"MSUD Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725311000168105,"MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches",20151031 +28201000036100,"Lophlex HCU LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725151000168108,"HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches",20151031 +925170011000036100,"Pemzo 20 mg capsule, 140, blister pack",900000000000526001,"REPLACED BY association reference set",716331000168104,"Pemzo 20 mg enteric capsule, 140, blister pack",20150930 +56709011000036101,"Difflam Lozenge raspberry sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995891000168109,"Difflam Lozenge Raspberry Sugar Free lozenge, 16",20170831 +48655011000036104,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694191000168100,"Mefix (310250) 2.5 cm x 10 m tape",20150331 +927314011000036106,"hepatitis B vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825481000168105,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes",20160930 +757501000168108,"Ursodox 250 mg capsule: hard, 100",900000000000526001,"REPLACED BY association reference set",765961000168100,"Ursodox (GH) 250 mg hard capsule, 100",20160331 +6865011000036106,"Subutex 2 mg tablet",900000000000526001,"REPLACED BY association reference set",685581000168108,"Subutex 2 mg sublingual tablet",20150228 +11641011000036106,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850761000168104,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules",20161130 +71731000036105,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",862041000168107,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100",20161231 +73810011000036102,"Polio Sabin Multidose oral liquid: solution, 1 vial",900000000000526001,"REPLACED BY association reference set",839801000168100,"Polio Sabin Multidose oral liquid solution, 1 vial",20161031 +50287011000036109,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694431000168108,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll, carton",20150331 +67118011000036101,"Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",684731000168102,"Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials",20150131 +41561011000036109,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693351000168105,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules",20150331 +44515011000036104,"Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085261000168108,"Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations, pump pack",20180331 +73782011000036102,"Havrix 1440 ELISA units/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",824711000168108,"Havrix 1440 ELISA units/mL injection suspension, vial",20160930 +718891000168107,"Infanrix Hexa (10 x 0.5 mL vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",841011000168105,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack",20161031 +74426011000036104,"Quadracel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",840661000168105,"Quadracel injection suspension, 5 x 0.5 mL vials",20161031 +148531000036101,"Lax-Sachets solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674281000168104,"Lax-Sachets powder for oral liquid, sachet",20141031 +925148011000036102,"Omepro 20 mg capsule, 140, blister pack",900000000000526001,"REPLACED BY association reference set",716441000168101,"Omepro 20 mg enteric capsule, 140, blister pack",20150930 +711131000168109,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006221000168108,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule",20170930 +924703011000036104,"Omepro 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",716561000168101,"Omepro 20 mg enteric capsule, 280",20150930 +49454011000036104,"Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689091000168104,"Leukoflex (1124) 5 cm x 5 m tape, 1 roll",20150331 +8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847361000168104,"Creon 25 000",20161130 +42781000036104,"Glucaid 75 g/300 mL oral liquid: solution, 300 mL each",900000000000526001,"REPLACED BY association reference set",692451000168108,"Glucaid 75 g/300 mL oral liquid solution, 300 mL",20150331 +86927011000036106,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet",900000000000526001,"REPLACED BY association reference set",860071000168104,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet",20161231 +933214541000036100,"Levetiracetam (Lupin) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003521000168100,"Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60, blister pack",20170930 +933216011000036104,"Recombinate 500 IU (1 x 500 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",710921000168104,"Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack",20150831 +702611000168100,"diphtheria toxoid vaccine 2 Lf/0.5 mL + tetanus toxoid vaccine 2 Lf/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837381000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 0.5 mL vial",20161031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836801000168109,"Streptococcus pneumoniae type 5 polysaccharide antigen",20161031 +73856011000036106,"Gardasil injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823021000168100,"Gardasil injection suspension, 0.5 mL syringe",20160831 +688811000168107,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831061000168109,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",20160930 +692211000168106,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848431000168102,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack",20161130 +74349011000036100,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825121000168103,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",20160930 +74264011000036101,"Polio Sabin Multidose oral liquid: solution, 100 vials",900000000000526001,"REPLACED BY association reference set",839821000168109,"Polio Sabin Multidose oral liquid solution, 100 vials",20161031 +84618011000036105,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",750281000168102,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 50",20160131 +27580011000036100,"interferon alfa-2b 18 million units/1.2 mL injection, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722741000168100,"interferon alfa-2b 18 million units/1.2 mL injection, 1.2 mL",20151031 +80526011000036108,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863751000168102,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags",20170131 +76809011000036100,"Centrum tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",833111000168109,"Centrum film-coated tablet, 30",20160930 +933226061000036109,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004701000168101,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, 5 x 100 mL bags",20170930 +6738011000036107,"Lofenoxal uncoated tablet",900000000000526001,"REPLACED BY association reference set",851011000168107,"Lofenoxal uncoated tablet",20161130 +76697011000036101,"Compound Benzoin Tincture Friar's Balsam (Orion) solution, 50 mL",900000000000526001,"REPLACED BY association reference set",696431000168101,"Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL (Old Formulation 2010)",20150430 +75001011000036103,"diphtheria toxoid vaccine + Haemophilus influenzae type b vaccine + hepatitis B vaccine + Bordetella pertussis, acellular pertactin vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine + tetanus toxoid vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",828231000168104,"Haemophilus influenzae type b conjugate (PRP-T) vaccine",20161031 +82326011000036103,"MSUD Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724961000168106,"MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles",20151031 +85170011000036107,"tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694251000168103,"tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll",20150331 +81129011000036104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",867871000168109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags",20170131 +82407011000036103,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 2 x 5 L bags",900000000000526001,"REPLACED BY association reference set",872451000168109,"Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags",20170131 +931677011000036103,"Actonel EC Combi (1 x Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack",900000000000526001,"REPLACED BY association reference set",852691000168104,"Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack",20161130 +59728011000036109,"Anti Fungal V 6 Day (Amcal) 1% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",714961000168102,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g, tube",20150930 +81707011000036108,"sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, 18 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",872561000168107,"sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 18 x 500 mL bags",20170131 +75363011000036102,"pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827521000168103,"pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe",20160930 +35465011000036104,"Poly Gel 0.3% eye gel, 500 mg unit dose",900000000000526001,"REPLACED BY association reference set",718721000168104,"Poly Gel 0.3% eye gel, 500 mg unit dose",20150930 +921409011000036101,"Macu-Vision tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",757861000168106,"Macu-Vision film-coated tablet, 30",20160229 +73250011000036102,"Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes",900000000000526001,"REPLACED BY association reference set",781291000168102,"Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes",20160430 +922014011000036105,"Panadeine Forte uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",835861000168101,"Panadeine Forte uncoated tablet, 50, blister pack",20161031 +74277011000036101,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845941000168108,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",710981000168100,"Ropivacaine 0.2% (Kabi)",20150831 +61641000036102,"Worming Tablet (Chemmart) 100 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844251000168100,"Worming Tablet (Chemmart) 100 mg tablet",20161031 +51409011000036108,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694161000168107,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll",20150331 +41521000036103,"Glucaid 75 g/300 mL oral liquid: solution, 300 mL bottle",900000000000526001,"REPLACED BY association reference set",692431000168102,"Glucaid 75 g/300 mL oral liquid solution",20150331 +74860011000036103,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822591000168104,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack",20160831 +73850011000036108,"Cervarix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823141000168105,"Cervarix injection suspension, 0.5 mL syringe",20160831 +930661011000036107,"Prodeine 15 uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",835721000168100,"Prodeine 15 uncoated tablet, 50",20161031 +50480011000036107,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724121000168104,"HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches",20151031 +828371000168109,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",846111000168102,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20161130 +177811000036105,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/0.2 mL (0.2 mL) unit doses, 14 x 20 microgram/0.2 mL (0.2 mL) unit doses), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",719421000168102,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack, composite pack",20150930 +38020011000036100,"atropine sulfate 1% eye drops, unit dose",900000000000526001,"REPLACED BY association reference set",850891000168101,"atropine sulfate monohydrate 1% eye drops, unit dose",20161130 +65276011000036106,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705491000168101,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream",20150731 +69776011000036107,"lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose",900000000000526001,"REPLACED BY association reference set",861201000168108,"sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose",20161231 +2796011000036102,"paper wasp venom",900000000000526001,"REPLACED BY association reference set",758491000168102,"paper wasp venom",20160229 +923900011000036100,"Omeprazole (Pharmacor) 20 mg capsule, 15, bottle",900000000000526001,"REPLACED BY association reference set",717161000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 15, bottle",20150930 +933220801000036102,"Naropin 0.2% (200 mg/100 mL) injection: solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004541000168108,"Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag",20170930 +828031000168108,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845941000168108,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +656231000168106,"Levetiracetam (AN) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003161000168102,"Levetiracetam 1000 (AN) 1 g film-coated tablet, 60, blister pack",20170930 +60751011000036101,"Difflam Lozenge raspberry sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995901000168108,"Difflam Lozenge Raspberry Sugar Free lozenge, 16, blister pack",20170831 +7594011000036106,"Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726391000168108,"Norditropin Nordiflex 10 mg/1.5 mL injection solution",20151031 +941661000168106,"Metformin (AS) 1 g film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949551000168107,"Metformin 1000 (AS) 1 g film-coated tablet, 90, blister pack",20170630 +103791000036107,"Victoza 18 mg/3 mL injection: solution, 3 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748121000168105,"Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices",20160131 +73889011000036105,"Hiberix (Haemophilus influenzae type b vaccine 10 microgram) powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",828251000168105,"Hiberix (Haemophilus influenzae type b conjugate (PRP-T) vaccine) powder for injection, 10 microgram vial",20160930 +18750011000036100,"Baraclude 500 microgram tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",829531000168106,"Baraclude 500 microgram film-coated tablet, 30, blister pack",20160930 +86733011000036106,"Flo Sinus Care powder for nasal drops, 12 x 1.8 g sachets",900000000000526001,"REPLACED BY association reference set",758701000168104,"Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets",20160229 +933220931000036104,"ropivacaine hydrochloride monohydrate 20 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004481000168102,"ropivacaine hydrochloride 20 mg/10 mL injection, ampoule",20170930 +933244191000036105,"choriogonadotropin alfa 250 microgram/0.5 mL injection, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728101000168104,"choriogonadotropin alfa 250 microgram/0.5 mL injection, 1 dose",20151031 +689721000168104,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment",900000000000526001,"REPLACED BY association reference set",758261000168108,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment",20160229 +260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724591000168108,"PKU Lophlex LQ 20 Berry oral liquid solution, 125 mL pouch",20151031 +28621000036108,"Voltaren Osteo 1% gel, 150 g",900000000000526001,"REPLACED BY association reference set",1037141000168101,"Voltaren Osteo 1.16% gel, 150 g",20171130 +9151000036105,"olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, 12 x 350 mL bags",900000000000526001,"REPLACED BY association reference set",779161000168109,"olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 12 x 350 mL bags",20160430 +139251000036104,"ropivacaine hydrochloride monohydrate 50 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005981000168105,"ropivacaine hydrochloride 50 mg/10 mL injection, 5 x 10 mL ampoules",20170930 +14140011000036107,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041421000168109,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device",20171130 +20375011000036107,"Subutex 8 mg tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",685661000168103,"Subutex 8 mg sublingual tablet, 7, blister pack",20150228 +75372011000036102,"hepatitis B vaccine 20 microgram/mL injection, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825391000168104,"hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL vials",20160930 +137911000036100,"Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005841000168109,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule",20170930 +46681000168100,"Albey Paper Wasp Vaccine",900000000000526001,"REPLACED BY association reference set",32999011000036104,"Paper Wasp Venom (Albey)",20160131 +73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822261000168109,"rotavirus type G3 live antigen",20160831 +74935011000036105,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825711000168109,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial",20160930 +921488011000036105,"MD-Gastroview solution, 12 x 120 mL each",900000000000526001,"REPLACED BY association reference set",696171000168108,"MD-Gastroview solution, 12 x 120 mL",20150430 +76555011000036106,"Sorbolene Cream with Glycerin (Orion) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705741000168101,"Sorbolene Cream with Glycerin (Orion) cream, 100 g",20150731 +828011000168103,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845921000168102,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +56846011000036100,"Disprin Original 300 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804331000168105,"Disprin Original 300 mg tablet, 6",20160630 +933234931000036107,"Omeprazole (Sandoz) 20 mg capsule",900000000000526001,"REPLACED BY association reference set",716161000168109,"Omeprazole (Sandoz) 20 mg enteric capsule",20150930 +140361000036101,"Menitorix (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846091000168105,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20161130 +54077011000036105,"Difflam Cough Lozenge blackcurrant sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995531000168107,"Difflam Cough Lozenge Blackcurrant Sugar Free lozenge",20170831 +36165011000036101,"Lanoxin 50 microgram/2 mL injection: solution, 2 mL ampoule",900000000000526001,"REPLACED BY association reference set",735091000168102,"Lanoxin Infants 50 microgram/2 mL injection solution, 2 mL ampoule",20151231 +933231831000036100,"Fluoride Witchy Candy Mint (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932531000168108,"Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL, aerosol can",20170531 +33823011000036108,"docusate sodium 50 mg + sennoside B 8 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",81751011000036106,"sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 100",20151130 +73803011000036108,"Infanrix Hexa injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",840901000168100,"Infanrix Hexa 10 microgram powder for injection, 10 microgram vial",20161031 +941621000168101,"Metformin (AS) 1 g film-coated tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",949511000168106,"Metformin 1000 (AS) 1 g film-coated tablet, 30, blister pack",20170630 +64591000036105,"calcium carbonate 780 mg + magnesium carbonate heavy 130 mg + magnesium trisilicate 130 mg chewable tablet, 12",900000000000526001,"REPLACED BY association reference set",833661000168103,"calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet, 12",20160930 +139231000036107,"Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005911000168104,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +33048011000036102,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream",900000000000526001,"REPLACED BY association reference set",715311000168103,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream",20150930 +70431000036107,"Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 1 sachet",900000000000526001,"REPLACED BY association reference set",810571000168108,"Risedronate EC Combi D (Winthrop) effervescent granules, 1 sachet",20160630 +74768011000036103,"Decongestant (Amcal) 0.05% nasal spray, 18 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083551000168107,"Decongestant (Amcal) 0.05% nasal spray, 18 mL, pump pack",20180228 +73946011000036102,"Dukoral (cholera toxin B subunit recombinant oral vaccine 1 mg + cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios) oral liquid suspension, 3 mL vial",900000000000526001,"REPLACED BY association reference set",821881000168109,"Dukoral (cholera vaccine) oral liquid suspension, 3 mL vial",20160831 +711581000168100,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005611000168109,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +90221000036104,"Femcream (Pharmacy Action) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715491000168103,"Femcream (Pharmacy Action) 1% vaginal cream, 35 g",20150930 +56716011000036108,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2",900000000000526001,"REPLACED BY association reference set",996181000168105,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 2",20170831 +73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826061000168101,"Streptococcus pneumoniae type 9V conjugate antigen",20160930 +924872011000036100,"Omepro 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716581000168105,"Omepro 20 mg enteric capsule, 30",20150930 +23481011000036107,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",1041341000168105,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, injection device",20171130 +76810011000036109,"Centrum tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",833141000168108,"Centrum film-coated tablet, 60",20160930 +260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724531000168109,"PKU Lophlex LQ 20 Tropical oral liquid solution, 125 mL pouch",20151031 +70021000036103,"carbomer 0.2% + triglyceride lipids 1% eye gel, unit dose",900000000000526001,"REPLACED BY association reference set",719591000168101,"carbomer-980 0.2% + triglyceride lipids 1% eye gel, unit dose",20150930 +52737011000036100,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",860281000168107,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle",20161231 +74265011000036102,"Infanrix Hexa injection: suspension, 1 pack",900000000000526001,"REPLACED BY association reference set",840921000168109,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack",20161031 +923909011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 90, bottle",900000000000526001,"REPLACED BY association reference set",717471000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 90, bottle",20150930 +26750011000036109,"darbepoetin alfa 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041311000168106,"darbepoetin alfa 150 microgram/0.3 mL injection, 0.3 mL injection device",20171130 +140801000036108,"Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006091000168103,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +933225831000036100,"ropivacaine hydrochloride monohydrate 40 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004601000168107,"ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules",20170930 +664501000168102,"sodium alginate + calcium carbonate + potassium bicarbonate",900000000000526001,"REPLACED BY association reference set",21740011000036105,"sodium alginate + bicarbonate + calcium carbonate",20170228 +680601000168106,"Zaldiar Combination Therapy film-coated tablet",900000000000526001,"REPLACED BY association reference set",1027821000168104,"Zaldiar film-coated tablet",20171031 +54159011000036106,"Canesten Clotrimazole Thrush Treatment Once 10% cream",900000000000526001,"REPLACED BY association reference set",715581000168102,"Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream",20150930 +39904011000036105,"Voluven 6% / 0.9% injection solution, 500 mL bag",900000000000526001,"REPLACED BY association reference set",1013401000168105,"Voluven injection solution, 500 mL bag",20170930 +1085531000168102,"Fluzone High-Dose injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122701000168106,"Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes",20180430 +73910011000036109,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825811000168101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +26711000036109,"Vivaxim injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827311000168100,"Vivaxim injection suspension, 1 mL syringe",20160930 +710991000168102,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005841000168109,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule",20170930 +923453011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",717451000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 90",20150930 +933231541000036107,"Naropin 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005071000168108,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +925146011000036101,"Omepro 20 mg capsule, 98, blister pack",900000000000526001,"REPLACED BY association reference set",717031000168104,"Omepro 20 mg enteric capsule, 98, blister pack",20150930 +87228011000036107,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 50 g",900000000000526001,"REPLACED BY association reference set",705771000168108,"glycerol 10% + cetomacrogol aqueous cream, 50 g",20150731 +74249011000036107,"Gardasil injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823041000168106,"Gardasil injection suspension, 0.5 mL syringe",20160831 +933221321000036106,"Fluoride Panda Punch (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932601000168100,"Fluoride (Laclede) Panda Punch Flavour foam",20170531 +77540011000036103,"psyllium dried 520 mg/g + senna dried 100 mg/g granules",900000000000526001,"REPLACED BY association reference set",832431000168100,"dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules",20160930 +61120011000036108,"Difflam Lozenge orange sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995831000168105,"Difflam Lozenge Orange Sugar Free lozenge, 2, blister pack",20170831 +94181000036101,"Menactra injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826561000168105,"Menactra injection solution, 0.5 mL vial",20160930 +873181000168101,"morphine sulfate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",22423011000036106,"morphine sulfate pentahydrate 30 mg tablet",20170430 +73874011000036100,"Ipol injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839861000168104,"Ipol injection solution, 0.5 mL syringe",20161031 +80639011000036106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",867991000168103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",20170131 +695481000168105,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848631000168104,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack",20161130 +75020011000036101,"pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",827501000168107,"pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe",20160930 +81297011000036101,"sodium chloride 117 mg + potassium chloride 186 mg + glucose monohydrate 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet",900000000000526001,"REPLACED BY association reference set",871541000168102,"sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet",20170131 +924878011000036102,"Omepro 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",716881000168108,"Omepro 20 mg enteric capsule, 7",20150930 +77390011000036109,"Centrum tablet: film-coated, 150, bottle",900000000000526001,"REPLACED BY association reference set",833391000168103,"Centrum film-coated tablet, 150, bottle",20160930 +83700011000036103,"Glycoprep-C Flavoured powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901071000168102,"Glycoprep-C powder for oral liquid, 70 g sachet",20170331 +56844011000036108,"Disprin Original 300 mg dispersible tablet, 24",900000000000526001,"REPLACED BY association reference set",804251000168109,"Disprin Original 300 mg tablet, 24",20160630 +4668011000036102,"Kenacomb Otic ointment",900000000000526001,"REPLACED BY association reference set",758271000168102,"Kenacomb Otic ear ointment",20160229 +6137011000036101,"Cilamox sugar free 250 mg/5 mL powder for oral liquid, 5 mL",900000000000526001,"REPLACED BY association reference set",932901000168109,"Cilamox 250 mg/5 mL powder for oral liquid, 5 mL",20170531 +7276011000036104,"Probitor 20 mg capsule",900000000000526001,"REPLACED BY association reference set",715901000168102,"Probitor 20 mg enteric capsule",20150930 +73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822271000168103,"rotavirus type G4 live antigen",20160831 +925144011000036109,"Omepro 20 mg capsule, 50, blister pack",900000000000526001,"REPLACED BY association reference set",716661000168100,"Omepro 20 mg enteric capsule, 50, blister pack",20150930 +105531000036100,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703581000168104,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe",20150630 +85699011000036107,"Levetiracetam (Terry White Chemists) 1 g tablet, 60",900000000000526001,"REPLACED BY association reference set",1003761000168103,"Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60",20170930 +933225791000036108,"ropivacaine hydrochloride monohydrate 150 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004901000168103,"ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules",20170930 +39792011000036105,"Keppra 500 mg/5 mL injection: concentrated, 5 mL vial",900000000000526001,"REPLACED BY association reference set",703081000168108,"Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial",20150731 +69624011000036105,"Aqium 66% gel, 1 L, bottle",900000000000526001,"REPLACED BY association reference set",730561000168107,"Aqium 66% gel, 1 L, bottle",20151130 +75376011000036103,"hepatitis B vaccine 10 microgram/0.5 mL injection, 25 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825561000168100,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 25 x 0.5 mL vials",20160930 +923731011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",717181000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 28, blister pack",20150930 +78311011000036108,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 200",900000000000526001,"REPLACED BY association reference set",833401000168101,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 200",20160930 +73940011000036100,"Varivax Refrigerated (Varicella zoster live attenuated vaccine 1350 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831711000168109,"Varivax Refrigerated (varicella-zoster live vaccine) powder for injection, vial",20160930 +821621000168106,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955091000168108,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",20170630 +77581000036108,"aciclovir 800 mg dispersible tablet, 5",900000000000526001,"REPLACED BY association reference set",844511000168104,"aciclovir 800 mg tablet, 5",20161031 +26633011000036107,"mercaptopurine 50 mg tablet, 25",900000000000526001,"REPLACED BY association reference set",845441000168102,"mercaptopurine monohydrate 50 mg tablet, 25",20161130 +74435011000036108,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",831091000168102,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",20160930 +26848011000036107,"clonazepam 2.5 mg/mL oral liquid, 10 mL",900000000000526001,"REPLACED BY association reference set",729111000168105,"clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid, 10 mL",20151130 +50210011000036105,"Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689101000168109,"Leukoflex (1124) 5 cm x 5 m tape, 1 roll, carton",20150331 +107281000036108,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing",900000000000526001,"REPLACED BY association reference set",1056171000168106,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing",20171231 +20549011000036105,"Avonex (4 x 6 million international units (30 microgram) vials, 4 x 1.1 mL diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",698281000168103,"Avonex (4 x 6 million units (30 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack",20150430 +75115011000036107,"Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840571000168103,"diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial",20161031 +70133011000036108,"benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture",900000000000526001,"REPLACED BY association reference set",688391000168109,"benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture",20150331 +55668011000036104,"Clotrimazole 6 Day (Guardian) 1% cream, 50 g",900000000000526001,"REPLACED BY association reference set",715261000168109,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g",20150930 +38810011000036106,"atropine sulfate 1% eye drops, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",850911000168104,"atropine sulfate monohydrate 1% eye drops, 20 x 0.5 mL unit doses",20161130 +33646011000036106,"vespula spp venom",900000000000526001,"REPLACED BY association reference set",759031000168100,"yellow jacket venom",20160229 +73459011000036107,"apomorphine hydrochloride 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes",900000000000526001,"REPLACED BY association reference set",781271000168103,"apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, 5 x 10 mL syringes",20160430 +75391011000036101,"hepatitis B vaccine 10 microgram/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825641000168103,"hepatitis B adult vaccine 10 microgram/mL injection, 1 mL syringe",20160930 +28173011000036103,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041461000168104,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, 1.5 mL injection device",20171130 +69474011000036106,"Panadol Children's 7+ Years 250 mg tablet: soluble, 12, strip pack",900000000000526001,"REPLACED BY association reference set",721561000168104,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12, strip pack",20151031 +74756011000036105,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825351000168109,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial",20160930 +139081000036103,"exenatide 2 mg injection [4 vials] (&) inert substance diluent [4 syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",833911000168106,"exenatide 2 mg modified release injection [1 vial] (&) inert substance diluent [1 syringe], 4 x 1 packs",20160930 +686431000168100,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",698611000168107,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes",20150430 +36650011000036102,"Codral Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",834561000168102,"Codral Forte uncoated tablet, 20",20161031 +80672011000036103,"Gastrolyte orange powder for oral liquid, 2 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871661000168102,"Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets",20170131 +84271011000036105,"Wagner Magnesium Forte 400 capsules: hard, 50, bottle",900000000000526001,"REPLACED BY association reference set",750301000168103,"Magnesium Forte 400 (Wagner) hard capsule, 50, bottle",20160131 +713321000168109,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005461000168105,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +71711000036101,"Risedronate EC Combi (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium Carbonate tablets), 28",900000000000526001,"REPLACED BY association reference set",852741000168102,"Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28",20161130 +137811000036108,"Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005871000168102,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag",20170930 +75048011000036102,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824951000168107,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, syringe",20160930 +22187011000036108,"diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",837261000168109,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe",20161031 +177141000036104,"Molaxole solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674221000168103,"Molaxole powder for oral liquid, 30 sachets",20141031 +722891000168103,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick",900000000000526001,"REPLACED BY association reference set",729261000168102,"Silver Nitrate Applicator (Grafco) stick",20151130 +1021181000168100,"Salofalk 1 g granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084161000168103,"Salofalk 1 g modified release granules, 50 sachets",20180228 +96241000036109,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) chewable tablet",900000000000526001,"REPLACED BY association reference set",861881000168104,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet",20161231 +711981000168108,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005221000168104,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +71683011000036108,"calcium gluconate monohydrate 10% (5 g/50 mL) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",684721000168100,"calcium gluconate monohydrate 4.765 g/50 mL injection, 10 x 50 mL vials",20150131 +13615011000036105,"Oxynorm 5 mg/5 mL oral liquid: solution, 250 mL",900000000000526001,"REPLACED BY association reference set",815941000168103,"Oxynorm 1 mg/mL oral liquid solution, 250 mL",20160731 +86226011000036109,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge",900000000000526001,"REPLACED BY association reference set",995981000168100,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge",20170831 +69801000036100,"Artelac 0.2% / 1% eye gel",900000000000526001,"REPLACED BY association reference set",719551000168106,"Artelac 0.2% / 1% eye gel",20150930 +23263011000036109,"calcium (as citrate) 250 mg (calcium 250 mg) tablet",900000000000526001,"REPLACED BY association reference set",860021000168100,"calcium citrate 1.19 g (calcium 250 mg) tablet",20161231 +933231821000036102,"Fluoride Moose Mallow (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932561000168100,"Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL, aerosol can",20170531 +74972011000036104,"typhoid fever live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",827231000168103,"typhoid live vaccine",20160930 +86870011000036102,"Calcia plus Vitamin D 400 IU chewable tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",860161000168109,"Calcia plus Vitamin D 400 IU chewable tablet, 120, bottle",20161231 +933215431000036108,"Acris Combi (1 x 35 mg tablet, 6 x 500 mg tablets), 1 pack, blister pack",900000000000526001,"REPLACED BY association reference set",852591000168103,"Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7, blister pack",20161130 +56160011000036102,"Daktarin 2% oral gel, 20 g",900000000000526001,"REPLACED BY association reference set",820081000168107,"Daktarin 2% oral gel, 20 g",20160731 +84426011000036100,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule",900000000000526001,"REPLACED BY association reference set",750201000168105,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule",20160131 +80517011000036102,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864391000168105,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags",20170131 +86891011000036102,"Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704511000168107,"Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial",20150630 +71341000036104,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses",900000000000526001,"REPLACED BY association reference set",719621000168104,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses",20150930 +4543011000036106,"Codalgin Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835871000168107,"Codalgin Forte uncoated tablet",20161031 +14307011000036107,"Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726361000168101,"Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL",20151031 +728551000168109,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006031000168102,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +75371011000036108,"hepatitis B vaccine 20 microgram/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825331000168103,"hepatitis B adult vaccine 20 microgram/mL injection, 1 mL vial",20160930 +20995011000036107,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041481000168108,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device",20171130 +925333011000036104,"Omepro 20 mg capsule, 14, bottle",900000000000526001,"REPLACED BY association reference set",716401000168103,"Omepro 20 mg enteric capsule, 14, bottle",20150930 +95381000036102,"Ostelin Vitamin D and Calcium chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",861921000168106,"Ostelin Vitamin D and Calcium chewable tablet, 60, bottle",20161231 +75479011000036104,"Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",830881000168103,"varicella-zoster live vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",20160930 +60240011000036102,"Xylocaine Pump Spray 10% spray solution, 50 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",949621000168100,"Xylocaine Pump Spray 10% spray solution, 50 mL, pump actuated metered dose aerosol",20170630 +920360011000036108,"Ostelin Vitamin D and Calcium tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862311000168105,"Ostelin Vitamin D and Calcium film-coated tablet, 60",20161231 +180171000036103,"Bonecal 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",848501000168105,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle",20161130 +75395011000036104,"Varicella zoster live attenuated vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",831951000168108,"varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack",20160930 +686851000168109,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL injection devices",900000000000526001,"REPLACED BY association reference set",698661000168105,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices",20150430 +46168011000036106,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 15 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013471000168100,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 15 x 500 mL bags",20170930 +941631000168103,"Metformin (AS) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",949521000168104,"Metformin 1000 (AS) 1 g film-coated tablet, 60",20170630 +49443011000036104,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694091000168101,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll",20150331 +50335011000036103,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689231000168107,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll, carton",20150331 +18686011000036104,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041201000168101,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device",20171130 +9061000036107,"Clinoleic 20% injection: emulsion, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",771961000168105,"Clinoleic 20% injection emulsion, 20 x 250 mL bags",20160430 +51410011000036104,"tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688951000168100,"tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll",20150331 +57058011000036104,"Difflam Lozenge honey and lemon sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995691000168105,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16",20170831 +13456011000036108,"Lofenoxal uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",851031000168102,"Lofenoxal uncoated tablet, 20",20161130 +50485011000036103,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689281000168108,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll, carton",20150331 +73627011000036102,"Bacillus Calmette and Guerin live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",822391000168107,"Mycobacterium bovis (BCG) live antigen",20160831 +104121000036108,"Irbesartan (Apo) 150 mg tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",807791000168104,"Irbesartan (Apo) 150 mg film-coated tablet, 30, blister pack",20160630 +80670011000036102,"Gastrolyte natural powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871891000168108,"Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets",20170131 +26749011000036101,"darbepoetin alfa 20 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041031000168104,"darbepoetin alfa 20 microgram/0.5 mL injection, 0.5 mL injection device",20171130 +168511000168109,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",724001000168109,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL pouch",20151031 +85007011000036107,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729871000168109,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices",20171130 +43969011000036109,"Eleuphrat 0.05% lotion, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",1054621000168106,"Eleuphrat 0.05% lotion, 30 mL, bottle",20171231 +75467011000036100,"Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837561000168106,"diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial",20161031 +54033011000036103,"Difflam Mouth oral gel",900000000000526001,"REPLACED BY association reference set",995941000168105,"Difflam Mouth oral gel",20170831 +66452011000036108,"Cepacol 0.05% mouthwash, 150 mL",900000000000526001,"REPLACED BY association reference set",994981000168104,"Cepacol 0.05% mouthwash, 150 mL",20170831 +73651011000036106,"meningococcal group W135 polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827381000168106,"Neisseria meningitidis group W135 polysaccharide antigen",20160930 +81163011000036105,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag",900000000000526001,"REPLACED BY association reference set",872251000168108,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag",20170131 +711231000168104,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006101000168108,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule",20170930 +718811000168103,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine",900000000000526001,"REPLACED BY association reference set",828231000168104,"Haemophilus influenzae type b conjugate (PRP-T) vaccine",20161031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836831000168102,"Streptococcus pneumoniae type 8 polysaccharide antigen",20161031 +77269011000036107,"Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695631000168107,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles",20150430 +776471000168101,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge",900000000000526001,"REPLACED BY association reference set",996091000168107,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge",20170831 +75477011000036106,"Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832331000168106,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 10 x 0.5 mL vials",20160930 +81729011000036109,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871831000168109,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets",20170131 +14631000036106,"Clinoleic 20% injection: emulsion, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",772001000168101,"Clinoleic 20% injection emulsion, 10 x 500 mL bags",20160430 +69407011000036107,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",864311000168101,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",20170131 +930868011000036107,"Elevit with Iodine tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",843301000168108,"Elevit with Iodine film-coated tablet, 100",20161031 +33548011000036100,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715331000168108,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g, tube",20150930 +84616011000036106,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",750221000168101,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2mg) capsule, 100",20160131 +929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724361000168107,"PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches",20151031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836621000168104,"Streptococcus pneumoniae type 2 polysaccharide antigen",20161031 +74838011000036106,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821461000168103,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack",20160831 +38614011000036108,"atropine sulfate 500 microgram/mL injection, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850601000168106,"atropine sulfate monohydrate 500 microgram/mL injection, 50 x 1 mL ampoules",20161130 +933220551000036104,"Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726571000168101,"Norditropin Flexpro 15 mg/1.5 mL injection solution",20151031 +656221000168108,"Levetiracetam (AN) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003151000168104,"Levetiracetam 1000 (AN) 1 g film-coated tablet, 60",20170930 +716061000168105,"MenCWY injection: solution, vial",900000000000526001,"REPLACED BY association reference set",826771000168109,"MenCWY injection solution, vial",20160930 +1021151000168107,"Salofalk 500 mg granules, 300 sachets",900000000000526001,"REPLACED BY association reference set",1084121000168108,"Salofalk 500 mg modified release granules, 300 sachets",20180228 +921493011000036101,"B-Dose (Biological Therapies) injection: solution, 6 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704561000168105,"B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials",20150630 +27939011000036105,"calcium (as citrate) 250 mg (calcium 250 mg) tablet, 120",900000000000526001,"REPLACED BY association reference set",860041000168106,"calcium citrate 1.19 g (calcium 250 mg) tablet, 120",20161231 +54178011000036101,"Difflam Lozenge honey and lemon sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995681000168107,"Difflam Lozenge Honey and Lemon Sugar Free lozenge",20170831 +663111000168108,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",833541000168103,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",20160930 +702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726121000168109,"PKU Anamix Junior Chocolate powder for oral liquid, 36 g sachet",20151031 +85370011000036102,"Movicol Junior solution: powder for, 1 sachet",900000000000526001,"REPLACED BY association reference set",674161000168102,"Movicol Junior powder for oral liquid, 1 sachet",20141031 +33246011000036108,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 2 mL diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",707371000168101,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack",20150731 +933196621000036100,"Recombinate 500 IU (octocog alfa 500 international units) injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",710901000168108,"Recombinate (octocog alfa 500 units) powder for injection, 500 units vial",20150831 +74234011000036105,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 10 x 2 mL tubes",900000000000526001,"REPLACED BY association reference set",822521000168101,"Rotateq oral liquid, 10 x 2 mL tubes",20160831 +927717011000036104,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 1920 million CFU injection, vial",900000000000526001,"REPLACED BY association reference set",1045931000168103,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial",20171130 +74867011000036102,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822311000168103,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20160831 +12635011000036108,"Zovirax 200 mg dispersible tablet, 90",900000000000526001,"REPLACED BY association reference set",859451000168100,"Zovirax Dispersible 200 mg tablet, 90",20161231 +700033071000036104,"calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 6 sachets",900000000000526001,"REPLACED BY association reference set",810221000168109,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 6 sachets",20160630 +73906011000036109,"Varilrix (Varicella zoster live attenuated vaccine 1995 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",830871000168101,"Varilrix (varicella-zoster live vaccine) powder for injection, vial",20160930 +21233011000036108,"fluticasone + salmeterol",900000000000526001,"REPLACED BY association reference set",861471000168104,"fluticasone propionate + salmeterol",20161231 +74871011000036100,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",828311000168101,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20160930 +75346011000036102,"azelastine hydrochloride 140 microgram/actuation nasal spray, 10 mL",900000000000526001,"REPLACED BY association reference set",809571000168103,"azelastine hydrochloride 0.1% nasal spray, 10 mL",20160630 +74967011000036108,"Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, fimbriae types 2 and 3 vaccine + Bordetella pertussis, acellular pertactin vaccine + diphtheria toxoid vaccine + tetanus toxoid vaccine",900000000000526001,"REPLACED BY association reference set",837451000168108,"diphtheria + tetanus + pertussis 5 component vaccine",20161031 +33495011000036107,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",707381000168103,"Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe",20150731 +49503011000036101,"PKU Cooler20 Orange oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725791000168102,"PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches",20151031 +728241000168105,"aclidinium + formoterol (eformoterol) fumarate dihydrate",900000000000526001,"REPLACED BY association reference set",856861000168106,"aclidinium + formoterol (eformoterol)",20161231 +81698011000036103,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 5 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868011000168105,"glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 5 x 2 L bags",20170131 +76553011000036105,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL",900000000000526001,"REPLACED BY association reference set",705851000168109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL",20150731 +46411011000036102,"aciclovir 400 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",795891000168102,"aciclovir 400 mg tablet, 100",20161031 +74944011000036107,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert powder for oral liquid sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821981000168103,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack, composite pack",20160831 +827951000168100,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846001000168104,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +245871000168102,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",710031000168100,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch",20151031 +74353011000036100,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",822221000168104,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20160831 +26747011000036108,"darbepoetin alfa 40 microgram/0.4 mL injection, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041081000168103,"darbepoetin alfa 40 microgram/0.4 mL injection, 0.4 mL injection device",20171130 +56585011000036100,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",649671000168100,"Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 200 mL",20151031 +6260011000036105,"Prozac 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844311000168109,"Prozac 20 mg tablet",20161031 +39218011000036101,"Fludara 50 mg injection: powder for, 50 mg vial",900000000000526001,"REPLACED BY association reference set",710821000168107,"Fludara IV 50 mg powder for injection, 50 mg vial",20150831 +41584011000036105,"Zovirax 400 mg dispersible tablet, 70",900000000000526001,"REPLACED BY association reference set",859541000168101,"Zovirax Dispersible 400 mg tablet, 70",20161231 +689811000168103,"Otocomb Otic ear ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758371000168105,"Otocomb Otic ear ointment, 5 g",20160229 +56764011000036101,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844151000168107,"Combantrin-1 with Mebendazole 100 mg tablet, 6",20161031 +61158011000036109,"Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution, 30 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",721291000168108,"Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL, pump pack",20151031 +75118011000036101,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid, 3 mL vial",900000000000526001,"REPLACED BY association reference set",821871000168106,"cholera vaccine oral liquid, 3 mL vial",20160831 +925163011000036101,"Pemzo 20 mg capsule, 280, blister pack",900000000000526001,"REPLACED BY association reference set",716521000168106,"Pemzo 20 mg enteric capsule, 280, blister pack",20150930 +40068011000036106,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",693281000168107,"Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 20 mL ampoule",20150331 +80218011000036105,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",867971000168104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",20170131 +75121011000036103,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection, vial",900000000000526001,"REPLACED BY association reference set",831031000168101,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial",20160930 +74764011000036105,"Gardasil injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",823081000168101,"Gardasil injection suspension, 10 x 0.5 mL vials",20160831 +73875011000036101,"Je-Vax (Japanese encephalitis inactivated vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",822681000168103,"Je-Vax (Japanese encephalitis (mouse brain-derived) inactivated vaccine) powder for injection, vial",20160831 +180121000036102,"calcium (as carbonate) 500 mg tablet, 24",900000000000526001,"REPLACED BY association reference set",847931000168108,"calcium carbonate 1.25 g (calcium 500 mg) tablet, 24",20161130 +74371011000036103,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832251000168105,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +75040011000036104,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836651000168107,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe",20161031 +51473011000036104,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725541000168101,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL pouches",20151031 +78215011000036100,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872971000168108,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle",20170131 +933242941000036105,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 40",900000000000526001,"REPLACED BY association reference set",834301000168107,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 40",20161031 +75445011000036102,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839901000168105,"polio trivalent inactivated vaccine injection, 10 x 0.5 mL syringes",20161031 +76125011000036103,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872931000168105,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +700161000168105,"Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",822571000168100,"Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack",20160831 +73660011000036106,"poliomyelitis virus type 1 (Sabin strain (LS-c, 2ab)) live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",838011000168101,"poliovirus type 1 live antigen",20161031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836861000168105,"Streptococcus pneumoniae type 10A polysaccharide antigen",20161031 +40701000036106,"Remeron 30 mg tablet: orally disintegrating",900000000000526001,"REPLACED BY association reference set",783841000168105,"Remeron Soltab 30 mg orally disintegrating tablet",20160531 +76801011000036104,"Centrum tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",833171000168101,"Centrum film-coated tablet, 100",20160930 +933224571000036104,"Levitaccord 1000 mg 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003801000168106,"Levitaccord-1000 1 g film-coated tablet, 60",20170930 +933223871000036104,"Cardiprin 100 mg dispersible tablet, 30",900000000000526001,"REPLACED BY association reference set",803971000168107,"Cardiprin 100 mg tablet, 30",20160630 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836791000168108,"Streptococcus pneumoniae type 4 polysaccharide antigen",20161031 +108721000036104,"dressing hydrogel 10 cm x 10 cm foam dressing, 10",900000000000526001,"REPLACED BY association reference set",1056331000168105,"dressing hydrophobic 10 cm x 10 cm foam dressing, 10",20171231 +44104011000036108,"Zovirax 800 mg dispersible tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",859521000168107,"Zovirax Dispersible 800 mg tablet, 120, bottle",20161231 +74776011000036107,"Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083571000168103,"Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL, pump pack",20180228 +140771000036105,"Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005921000168106,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +86169011000036106,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet, 1 x Bisacodyl (Fresenius Kabi) suppository), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831451000168103,"Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack",20160930 +36004011000036107,"Calcium carbonate / colecalciferol (Sanofi-Aventis)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",35975011000036105,"Actonel Combi D",20160630 +921544011000036100,"Gastrolyte Citrus effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871571000168109,"Gastrolyte Citrus effervescent tablet, 20",20170131 +78236011000036101,"sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack",900000000000526001,"REPLACED BY association reference set",703111000168103,"sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack",20150531 +33286011000036100,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715321000168105,"Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g",20150930 +13190011000036101,"Botox 100 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720871000168100,"Botox 100 units powder for injection, 1 vial",20151031 +44103011000036106,"Zovirax 400 mg dispersible tablet, 70, bottle",900000000000526001,"REPLACED BY association reference set",859551000168104,"Zovirax Dispersible 400 mg tablet, 70, bottle",20161231 +70054011000036101,"magnesium sulfate heptahydrate 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection, ampoule",900000000000526001,"REPLACED BY association reference set",701531000168104,"magnesium sulfate heptahydrate 2.47 g/5 mL injection, ampoule",20150531 +74977011000036102,"diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine + hepatitis B vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836641000168105,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine",20161031 +26751011000036102,"darbepoetin alfa 80 microgram/0.4 mL injection, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041181000168102,"darbepoetin alfa 80 microgram/0.4 mL injection, 0.4 mL injection device",20171130 +54286011000036109,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721811000168100,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution",20151031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836871000168104,"Streptococcus pneumoniae type 11A polysaccharide antigen",20161031 +74651000036109,"carbomer + triglyceride lipids",900000000000526001,"REPLACED BY association reference set",719531000168100,"carbomer-980 + triglyceride lipids",20150930 +33673011000036104,"adrenaline 300 microgram/0.3 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",726701000168101,"adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose",20151031 +929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724611000168103,"PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches",20151031 +71538011000036103,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",936651000168102,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g",20170531 +923058011000036102,"Levetiracetam (SZ) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003711000168101,"Levetiracetam 1000 (SZ) 1 g film-coated tablet",20170930 +50481011000036100,"Lophlex LQ oral liquid: solution, 30 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",726291000168103,"Lophlex LQ oral liquid solution, 30 x 125 mL pouches",20151031 +22351011000036102,"atropine sulfate 1% eye drops",900000000000526001,"REPLACED BY association reference set",850941000168100,"atropine sulfate monohydrate 1% eye drops",20161130 +176421000168106,"MSUD Lophlex LQ 20 oral liquid: solution, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725081000168102,"MSUD Lophlex LQ 20 oral liquid solution, 125 mL pouch",20151031 +9031000036101,"olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, 24 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",771921000168100,"olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 24 x 100 mL bags",20160430 +22920011000036100,"interferon alfa-2b 30 million units/1.2 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",722771000168107,"interferon alfa-2b 30 million units/1.2 mL injection",20151031 +20245011000036103,"Lofenoxal uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",851041000168106,"Lofenoxal uncoated tablet, 20, blister pack",20161130 +91841000036100,"Prostin E2 800 microgram/mL vaginal gel, 2.5 mL, syringe",900000000000526001,"REPLACED BY association reference set",1005411000168107,"Prostin E2 2 mg/3 g vaginal gel, 3 g syringe",20170930 +74289011000036102,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822901000168102,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",20160831 +43977011000036108,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835531000168106,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL, bottle",20161031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836941000168102,"Streptococcus pneumoniae type 19F polysaccharide antigen",20161031 +77546011000036100,"benzoin sumatra 10% (100 mg/mL) + aloe vera 2% (20 mg/mL) + storax prepared 7.5% (75 mg/mL) + tolu balsam 2.5% (25 mg/mL) solution",900000000000526001,"REPLACED BY association reference set",696401000168108,"benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture",20150430 +48702011000036109,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694081000168104,"Leukosilk (1022) 2.5 cm x 5 m tape",20150331 +107331000036102,"dressing hydrogel 10 cm x 10 cm foam dressing",900000000000526001,"REPLACED BY association reference set",1056311000168100,"dressing hydrophobic 10 cm x 10 cm foam dressing",20171231 +80528011000036107,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863811000168106,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags",20170131 +74377011000036106,"Comvax injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832311000168101,"Comvax injection suspension, 0.5 mL vial",20160930 +933244441000036109,"paracetamol 500 mg + codeine phosphate 8 mg tablet, 40",900000000000526001,"REPLACED BY association reference set",652931000168102,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40",20161031 +75444011000036101,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839871000168105,"polio trivalent inactivated vaccine injection, 0.5 mL syringe",20161031 +930839011000036105,"Actonel EC Combi D (4 x Once-a-Week tablets, 24 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810341000168109,"Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack",20160630 +80174011000036108,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",900000000000526001,"REPLACED BY association reference set",864231000168104,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",20170131 +900841000168107,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922611000168100,"PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets",20170430 +82913011000036107,"Kaletra 400/100 oral liquid: solution, 5 x 60 mL bottles",900000000000526001,"REPLACED BY association reference set",689551000168104,"Kaletra oral liquid solution, 5 x 60 mL, bottles",20150331 +18053011000036106,"Actonel Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack, blister pack",900000000000526001,"REPLACED BY association reference set",852661000168106,"Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack",20161130 +80515011000036107,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864251000168105,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags",20170131 +76748011000036101,"Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695691000168106,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles",20150430 +74267011000036107,"Infanrix Penta injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836741000168100,"Infanrix Penta injection suspension, 0.5 mL syringe",20161031 +61852011000036100,"benzocaine 1 mg + cetylpyridinium chloride monohydrate 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge",900000000000526001,"REPLACED BY association reference set",995241000168100,"benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge",20170831 +28172011000036105,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041411000168102,"follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, 0.75 mL injection device",20171130 +140811000036105,"Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006211000168101,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +50926011000036101,"tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688881000168101,"tape non woven retention polyacrylate 2.5 cm x 10 m tape",20150331 +682161000168102,"Reandron 1 g/4 mL injection: solution, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722971000168109,"Reandron-1000 1 g/4 mL modified release injection, 4 mL vial",20151031 +73851000036105,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",862051000168109,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100, bottle",20161231 +683991000168103,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838141000168103,"Pneumovax-23 injection solution, 0.5 mL syringe",20161031 +74210011000036105,"Adacel Polio injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839711000168105,"Adacel Polio injection suspension, 5 x 0.5 mL syringes",20161031 +1021171000168103,"Salofalk 1 g granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084151000168100,"Salofalk 1 g modified release granules, 50 sachets",20180228 +38568011000036108,"aspirin 325 mg + codeine phosphate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",834551000168104,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 20",20161031 +941581000168101,"Metformin (AS) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",949471000168102,"Metformin 1000 (AS) 1 g film-coated tablet",20170630 +776491000168100,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2",900000000000526001,"REPLACED BY association reference set",996111000168104,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2",20170831 +74897011000036104,"Beconase Allergy and Hayfever 12 Hour 0.05% (50 microgram/actuation) nasal spray, 200 actuations, bottle",900000000000526001,"REPLACED BY association reference set",696331000168107,"Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 200 actuations, pump pack",20150430 +137961000036103,"Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial",900000000000526001,"REPLACED BY association reference set",746861000168106,"Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial",20160131 +74260011000036106,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831811000168101,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack",20160930 +85171011000036100,"tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694311000168107,"tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll",20150331 +683331000168103,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083011000168103,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack",20180228 +130311000036102,"MSUD Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725321000168103,"MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches",20151031 +161801000036106,"aspirin 100 mg dispersible tablet, 180",900000000000526001,"REPLACED BY association reference set",804101000168101,"aspirin 100 mg tablet, 180",20160630 +689431000168106,"Priorix-Tetra powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831281000168106,"Priorix-Tetra powder for injection, 10 vials",20160930 +32138011000036101,"vespula spp venom",900000000000526001,"REPLACED BY association reference set",759031000168100,"yellow jacket venom",20160229 +55664011000036106,"Anti Fungal V 6 Day (Amcal) 1% cream, 50 g",900000000000526001,"REPLACED BY association reference set",715011000168100,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g",20150930 +81127011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",867791000168100,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags",20170131 +74866011000036100,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822231000168101,"Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20160831 +73804011000036105,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845891000168107,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +166951000036107,"Moviprep Lemon powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902191000168107,"Moviprep (2 x A sachets, 2 x B sachets), 4 sachets",20170331 +81771000036102,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703541000168109,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial",20150630 +101121000036106,"Victoza 18 mg/3 mL injection: solution, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748051000168101,"Victoza 6 mg/mL injection solution, 3 mL injection device",20160131 +66965011000036109,"Ora-Sed Jel oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",936661000168100,"Ora-Sed Jel oral gel, 10 g",20170531 +70291000036107,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862021000168101,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet",20161231 +66453011000036101,"Cepacol 0.05% mouthwash, 500 mL",900000000000526001,"REPLACED BY association reference set",995011000168105,"Cepacol 0.05% mouthwash, 500 mL",20170831 +12627011000036101,"Zentel 200 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844221000168108,"Zentel 200 mg tablet, 6",20161031 +931421011000036109,"Medi Quattro First Aid cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",863551000168105,"Medi Quattro First Aid cream, 50 g, tube",20170131 +13561011000036102,"Clofeme Thrush Treatment 3 Day 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715101000168104,"Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g",20150930 +61116011000036103,"Difflam Lozenge honey and lemon sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995721000168101,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2, blister pack",20170831 +706371000168104,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831411000168104,"M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack",20160930 +36250011000036100,"Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",775541000168102,"Forthane 1 mL/mL inhalation solution",20160430 +84671011000036107,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride 300 mg (magnesium 1.5 mmol)/L + sodium acetate trihydrate 3.68 g/L injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872481000168102,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, 1 L bag",20170131 +50419011000036103,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m roll: wrapped pack, 1 pack, carton",900000000000526001,"REPLACED BY association reference set",688631000168101,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1, carton",20150331 +82805011000036104,"Kaletra 400/100 oral liquid: solution, 5 x 60 mL",900000000000526001,"REPLACED BY association reference set",689541000168101,"Kaletra oral liquid solution, 5 x 60 mL",20150331 +35646011000036103,"Movicol-Half solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674141000168101,"Movicol-Half powder for oral liquid, 30 sachets",20141031 +26911000036106,"Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827111000168103,"Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160930 +32755011000036103,"testosterone undecanoate 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720561000168109,"testosterone undecanoate 1 g/4 mL modified release injection, 4 mL ampoule",20151031 +75352011000036104,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837481000168101,"diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial",20161031 +77322011000036104,"Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695531000168108,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials",20150430 +36260011000036107,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose",900000000000526001,"REPLACED BY association reference set",850901000168102,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose",20161130 +728721000168109,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005771000168105,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +77133011000036101,"Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000526001,"REPLACED BY association reference set",726261000168105,"Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches",20151031 +75413011000036105,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825061000168109,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL vial",20160930 +36178011000036104,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850401000168109,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, ampoule",20161130 +75890011000036106,"psyllium dried",900000000000526001,"REPLACED BY association reference set",826001000168102,"dry psyllium seed",20160930 +670771000168103,"Peptamen Junior powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949661000168105,"Peptamen Junior powder for oral liquid, 400 g",20170630 +933036011000036101,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",766161000168108,"Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack",20160331 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826021000168106,"Streptococcus pneumoniae type 23F conjugate antigen",20160930 +921433011000036108,"Centrum Select 50 Plus tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",843271000168106,"Centrum Select 50 Plus film-coated tablet, 60",20161031 +101151000036100,"liraglutide 18 mg/3 mL injection, 2 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748071000168105,"liraglutide 6 mg/mL injection, 2 x 3 mL injection devices",20160131 +255261000168107,"PKU Cooler15 Purple oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725661000168101,"PKU Cooler 15 Purple oral liquid solution, 130 mL pouch",20151031 +74758011000036109,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822501000168105,"Rotateq oral liquid, 2 mL tube",20160831 +933214631000036106,"Levetiracetam (GN) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003441000168105,"Levetiracetam 1000 (GN) 1 g film-coated tablet, 60, blister pack",20170930 +84295011000036101,"Clotrimazole 6 Day (Apo) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715791000168106,"Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g, tube",20150930 +4713011000036103,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041301000168108,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device",20171130 +75510011000036106,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840831000168103,"diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 10 x 0.5 mL syringes",20161031 +926183011000036101,"Medi Creme cream, 50 g",900000000000526001,"REPLACED BY association reference set",863511000168109,"Medi Creme cream, 50 g",20170131 +2439011000036108,"pancrelipase",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2284011000036101,"lipase",20161130 +84420011000036103,"picosulfate + magnesium + citric acid",900000000000526001,"REPLACED BY association reference set",870871000168104,"picosulfate + magnesium carbonate + citric acid",20170131 +71391000036105,"exenatide 10 microgram/0.04 mL injection, 60 x 0.04 mL unit doses",900000000000526001,"REPLACED BY association reference set",726821000168104,"exenatide 10 microgram/dose injection, 60 doses",20151031 +50223011000036106,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694381000168101,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll, carton",20150331 +73831000036102,"Risedronate EC Combi (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium Carbonate tablets), 28, blister pack",900000000000526001,"REPLACED BY association reference set",852751000168100,"Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28, blister pack",20161130 +711031000168108,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005911000168104,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +931519011000036106,"Regaine Men's Extra Strength Foam 5% foam, 3 x 63 mL aerosol cans",900000000000526001,"REPLACED BY association reference set",710801000168103,"Regaine Men's Extra Strength 5% foam, 3 x 63 mL, aerosol cans",20150831 +65657011000036105,"Aqium 66% gel",900000000000526001,"REPLACED BY association reference set",730441000168107,"Aqium 66% gel",20151130 +54032011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",648751000168109,"Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 5 mL",20151031 +35221011000036108,"buprenorphine 400 microgram tablet, 28",900000000000526001,"REPLACED BY association reference set",685841000168101,"buprenorphine 400 microgram sublingual tablet, 28",20150228 +730621000168103,"Granisetron (AFT) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747121000168109,"Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules",20160131 +71841000036108,"Levetiracetam (Pfizer) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003591000168103,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60",20170930 +54070011000036109,"Combantrin-1 with Mebendazole 100 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844141000168105,"Combantrin-1 with Mebendazole 100 mg tablet",20161031 +83701011000036105,"Glycoprep-C Flavoured powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901121000168102,"Glycoprep-C powder for oral liquid, 210 g sachet",20170331 +12181011000036101,"Kenacomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758341000168103,"Kenacomb Otic ear drops solution, 7.5 mL",20160229 +20659011000036101,"Caltrate 600 mg (calcium 600 g) tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",860341000168108,"Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle",20161231 +83380011000036103,"Prozero oral liquid: solution, 6 x 1 L bottles",900000000000526001,"REPLACED BY association reference set",745411000168103,"Prozero oral liquid solution, 6 x 1 L cartons",20160131 +821631000168109,"Coxiella burnetii antigen 2.5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955101000168103,"Q fever skin test injection, 0.5 mL vial",20170630 +925338011000036109,"Omepro 20 mg capsule, 50, bottle",900000000000526001,"REPLACED BY association reference set",716671000168106,"Omepro 20 mg enteric capsule, 50, bottle",20150930 +78112011000036106,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705731000168105,"glycerol 10% + cetomacrogol aqueous cream, 100 g",20150731 +63463011000036104,"lignocaine hydrochloride anhydrous 2.5% + benzalkonium chloride 0.1% spray, 125 mL",900000000000526001,"REPLACED BY association reference set",861651000168105,"lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray, 125 mL",20161231 +49265011000036105,"Lophlex LQ oral liquid: solution, 30 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",726281000168101,"Lophlex LQ oral liquid solution, 30 x 125 mL pouches",20151031 +77147011000036109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, tube",900000000000526001,"REPLACED BY association reference set",705871000168100,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, tube",20150731 +90401000036108,"Prostin E2 400 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005351000168102,"Prostin E2 1 mg/3 g vaginal gel, 3 g syringe",20170930 +664271000168109,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension",900000000000526001,"REPLACED BY association reference set",833601000168104,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension",20160930 +34376011000036101,"Subutex 2 mg tablet, 28",900000000000526001,"REPLACED BY association reference set",685771000168100,"Subutex 2 mg sublingual tablet, 28",20150228 +108751000036105,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10",900000000000526001,"REPLACED BY association reference set",1056291000168104,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10",20171231 +154271000036107,"Celestone Chronodose injection: suspension, ampoule",900000000000526001,"REPLACED BY association reference set",746321000168108,"Celestone Chronodose injection suspension, ampoule",20160131 +927623011000036107,"Citrulline containing 1 g citrulline oral liquid: powder for, 30 x 4 g sachets",900000000000527005,"SAME AS association reference set",108551000036104,"Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets",20151130 +923924011000036104,"Forteo 20 microgram injection: solution, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726961000168102,"Forteo 20 microgram/dose injection solution, 28 doses, injection device",20151031 +33493011000036106,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",707311000168109,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe",20150731 +81705011000036103,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872641000168109,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 12 x 1 L bags",20170131 +80519011000036109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",863861000168109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",20170131 +924879011000036105,"Omepro 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",716971000168100,"Omepro 20 mg enteric capsule, 90",20150930 +664361000168107,"magnesium trisilicate + chalk + bicarbonate + magnesium",900000000000526001,"REPLACED BY association reference set",871041000168108,"magnesium trisilicate + chalk + bicarbonate + magnesium carbonate",20170131 +180131000036100,"Bonecal 500 mg tablet: film-coated, 24",900000000000526001,"REPLACED BY association reference set",848471000168104,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24",20161130 +73629011000036109,"Q fever inactivated vaccine",900000000000526001,"REPLACED BY association reference set",821471000168109,"Coxiella burnetii antigen",20160831 +80634011000036105,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",867861000168103,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags",20170131 +33608011000036100,"Femizol Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715531000168103,"Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube",20150930 +925138011000036101,"Omepro 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",716541000168100,"Omepro 20 mg enteric capsule, 28, blister pack",20150930 +844791000168101,"Zovirax 400 mg tablet",900000000000526001,"REPLACED BY association reference set",859531000168105,"Zovirax Dispersible 400 mg tablet",20161231 +22422011000036104,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorbutol 5% + arachis oil 57% ear drops",900000000000526001,"REPLACED BY association reference set",854341000168105,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops",20161231 +82151011000036101,"Calsource Ca1000 tablet: effervescent, 10",900000000000526001,"REPLACED BY association reference set",745591000168106,"Calsource Ca1000 effervescent tablet, 10",20160131 +37537011000036108,"Actonel Combi D (4 x 35 mg tablets, 24 x sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810531000168105,"Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack, composite pack",20160630 +75484011000036109,"hepatitis B vaccine 5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825821000168108,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL vial",20160930 +20458011000036107,"Probitor 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",717731000168102,"Probitor 20 mg enteric capsule, 30, bottle",20150930 +79057011000036106,"Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704481000168100,"Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial",20150630 +922663011000036102,"picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid, 2 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",832631000168102,"picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 2 x 20 g sachets",20160930 +63181000036102,"glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",688131000168108,"iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 200 mL",20150331 +166201000036103,"Synarel 200 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085291000168101,"Synarel 200 microgram/actuation nasal spray, 60 actuations, pump pack",20180228 +90291000036101,"docosahexaenoic acid 22 mg + eicosapentaenoic acid 47 mg + krill oil 333.3 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",965891000168106,"krill oil 333.3 mg capsule, 30",20170731 +85017011000036105,"Mepitac (298300) 2 cm x 3 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694281000168105,"Mepitac (298300) 2 cm x 3 m tape, 1 roll, carton",20150331 +931680011000036105,"Implanon NXT 68 mg implant, 1, blister pack",900000000000526001,"REPLACED BY association reference set",732371000168106,"Implanon NXT 68 mg implant, 1, applicator",20151130 +11982011000036109,"Aspalgin dispersible tablet, 50",900000000000526001,"REPLACED BY association reference set",834281000168108,"Aspalgin dispersible tablet, 50",20161031 +823851000168101,"exenatide 2 mg modified release injection, cartridge",900000000000526001,"REPLACED BY association reference set",833261000168101,"exenatide 2 mg/dose + inert substance modified release injection, dose",20160930 +933203931000036103,"Levetiracetam (MPPL) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003551000168108,"Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60",20170930 +57207011000036102,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715721000168109,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g",20150930 +70048011000036106,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel",900000000000526001,"REPLACED BY association reference set",936631000168108,"choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel",20170531 +85081011000036100,"tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694221000168106,"tape plaster adhesive with silicone 2 cm x 3 m tape",20150331 +924875011000036108,"Omepro 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",716691000168107,"Omepro 20 mg enteric capsule, 500",20150930 +73882011000036100,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824861000168102,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +923841011000036107,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827451000168105,"Prevenar-13 injection suspension, 0.5 mL syringe",20160930 +933225721000036105,"Naropin 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004561000168107,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +20537011000036102,"Granocyte 13.4 million units (105 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838241000168106,"Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial",20161031 +814961000168100,"Entrip 10 mg tablet",900000000000526001,"REPLACED BY association reference set",855901000168108,"Entrip 10 mg film-coated tablet",20161231 +74358011000036105,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",828301000168104,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20160930 +65283011000036105,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705441000168109,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream",20150731 +925332011000036106,"Omepro 20 mg capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",718021000168101,"Omepro 20 mg enteric capsule, 100, bottle",20150930 +828041000168104,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845951000168105,"Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +665551000168104,"PKU Cooler15 Green oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725601000168102,"PKU Cooler 15 Green oral liquid solution, 130 mL pouch",20151031 +73633011000036108,"human papillomavirus (type 6) vaccine",900000000000526001,"REPLACED BY association reference set",822721000168109,"human papillomavirus type 6 antigen",20160831 +44699011000036108,"Metvix 200 mg/g cream, 2 g, tube",900000000000526001,"REPLACED BY association reference set",999321000168103,"Metvix 160 mg/g cream, 2 g, tube",20170831 +63061000036106,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839751000168106,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial",20161031 +928479011000036100,"Picolax powder for oral liquid, 20 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",833471000168106,"Picolax powder for oral liquid, 20 x 20 g sachets",20160930 +76685011000036107,"Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695621000168109,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles",20150430 +689681000168105,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831321000168101,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",20160930 +60435011000036109,"Zantac 150 mg/10 mL oral liquid: solution, 140 mL, bottle",900000000000526001,"REPLACED BY association reference set",783911000168100,"Zantac 150 mg/10 mL oral liquid, 140 mL, bottle",20160531 +930915011000036106,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",861291000168102,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16",20161231 +702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726191000168106,"PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets",20151031 +63086011000036104,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 10 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995441000168104,"cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge, 16",20170831 +74385011000036108,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825831000168106,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +70015011000036109,"salicylic acid 3% (30 mg/g) + sulfur-precipitated 3% (30 mg/g) + aqueous cream 940 mg/g cream",900000000000526001,"REPLACED BY association reference set",705481000168104,"salicylic acid 3% + precipitated sulfur 3% + aqueous cream",20150731 +703641000168105,"meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",826931000168108,"meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20160930 +74982011000036108,"human papillomavirus (type 6) vaccine + human papillomavirus (type 11) vaccine + human papillomavirus (type 16) vaccine + human papillomavirus (type 18) vaccine",900000000000526001,"REPLACED BY association reference set",822951000168103,"human papillomavirus quadrivalent vaccine",20160831 +25391000036107,"heparin sodium + sodium chloride",900000000000526001,"REPLACED BY association reference set",858621000168104,"heparin + sodium chloride",20161231 +924706011000036105,"Pemzo 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",716511000168104,"Pemzo 20 mg enteric capsule, 280",20150930 +18859011000036108,"Canesten Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715051000168104,"Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube",20150930 +168951000036106,"Aquacel Ag (403771) 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745071000168102,"Aquacel Ag (403771) 2 cm x 45 cm ribbon",20160131 +86614011000036107,"Flo Sinus Care powder for nasal drops, 1.8 g sachet",900000000000526001,"REPLACED BY association reference set",758681000168102,"Flo Sinus Care powder for irrigation solution, 1.8 g sachet",20160229 +26789011000036106,"adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729821000168108,"adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL injection devices",20171130 +137871000036102,"Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006101000168108,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule",20170930 +174971000036100,"Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, 60 actuations",900000000000526001,"REPLACED BY association reference set",701511000168109,"Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations",20150531 +48526011000036104,"Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689061000168106,"Leukoflex (1124) 5 cm x 5 m tape",20150331 +71381000036108,"Byetta 10 microgram/0.04 mL injection: solution, 60 x 0.04 mL unit doses",900000000000526001,"REPLACED BY association reference set",726831000168101,"Byetta 10 microgram/dose injection solution, 60 doses",20151031 +14641000036101,"Clinoleic 20% injection: emulsion, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779141000168105,"Clinoleic 20% injection emulsion, 350 mL bag",20160430 +27737011000036105,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",721031000168100,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, 1 vial",20151031 +716021000168100,"meningococcal group A conjugate vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826661000168106,"meningococcal A conjugate vaccine injection, vial",20160930 +85053011000036106,"Strepsils lozenge, 36, blister pack",900000000000526001,"REPLACED BY association reference set",720331000168106,"Strepsils Cool lozenge, 36, blister pack",20151031 +117691000036106,"Zoely, 84 tablets [3 x 28], blister pack",900000000000526001,"REPLACED BY association reference set",683961000168105,"Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28, blister packs",20150131 +74937011000036100,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825791000168100,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials",20160930 +20711011000036100,"Probitor 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",717721000168100,"Probitor 20 mg enteric capsule, 30, blister pack",20150930 +57059011000036107,"Difflam Lozenge honey and lemon sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995711000168108,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2",20170831 +49266011000036103,"TYR Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725921000168102,"TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches",20151031 +56583011000036101,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",649651000168109,"Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 100 mL",20151031 +77387011000036109,"Centrum tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",833241000168100,"Centrum film-coated tablet, 120, bottle",20160930 +66986011000036100,"Tinaderm Powder Spray 0.09% spray: pressurised, 100 g",900000000000526001,"REPLACED BY association reference set",769621000168103,"Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g",20160331 +924880011000036105,"Pemzo 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",716261000168103,"Pemzo 20 mg enteric capsule, 100",20150930 +1621000036108,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, vial",900000000000526001,"REPLACED BY association reference set",721081000168104,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, vial",20151031 +85776011000036100,"Go Kit (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet), 1 pack",900000000000526001,"REPLACED BY association reference set",830971000168106,"Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack",20160930 +27348011000036106,"pancrelipase 25 000 units capsule, 100",900000000000526001,"REPLACED BY association reference set",847651000168109,"lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule, 100",20161130 +74203011000036104,"Azep 140 microgram/actuation nasal spray, 5 mL",900000000000526001,"REPLACED BY association reference set",809551000168107,"Azep 0.1% nasal spray, 5 mL",20160630 +74883011000036109,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832231000168104,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +73059011000036101,"Duodopa gel: intestinal, 7 x 1 mL bags",900000000000526001,"REPLACED BY association reference set",720521000168104,"Duodopa intestinal gel, 7 x 100 mL",20151031 +74926011000036101,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840851000168109,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes",20161031 +76140011000036109,"X-Evess 200 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",702371000168103,"X-Evess Part-2 200 mg/mL oral liquid solution",20150531 +689601000168102,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",831311000168108,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack",20160930 +84665011000036100,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g + ascorbic acid 17.88 g powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",901131000168104,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet",20170331 +77409011000036107,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",861811000168105,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60, bottle",20161231 +81301011000036104,"calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, bag",900000000000526001,"REPLACED BY association reference set",872211000168107,"sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, bag",20170131 +86173011000036101,"Gastrolyte Blackcurrant effervescent tablet, 20, sachet",900000000000526001,"REPLACED BY association reference set",871701000168109,"Gastrolyte Blackcurrant effervescent tablet, 20, sachet",20170131 +71956011000036108,"methylated spirit industrial 66% gel, 70 mL",900000000000526001,"REPLACED BY association reference set",730451000168109,"ethanol 66% gel, 70 mL",20151130 +73898011000036101,"Tripacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837551000168109,"Tripacel injection suspension, 0.5 mL vial",20161031 +12634011000036109,"Zovirax 200 mg dispersible tablet, 25",900000000000526001,"REPLACED BY association reference set",859191000168103,"Zovirax Dispersible 200 mg tablet, 25",20161231 +663811000168104,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",900000000000526001,"REPLACED BY association reference set",833531000168107,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",20160930 +827871000168104,"Neisseria meningitidis group C polysaccharide antigen",900000000000526001,"REPLACED BY association reference set",826391000168106,"meningococcal C conjugate vaccine",20161130 +40721000036101,"Remeron 45 mg tablet: orally disintegrating",900000000000526001,"REPLACED BY association reference set",783871000168103,"Remeron Soltab 45 mg orally disintegrating tablet",20160531 +74908011000036105,"Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083751000168104,"Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL, pump pack",20180228 +923849011000036106,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",746981000168108,"Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules",20160131 +933225811000036109,"ropivacaine hydrochloride monohydrate 75 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004951000168104,"ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules",20170930 +69221000036106,"carbomer",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",716151000168107,"carbomer-974P",20150930 +168711000168103,"MSUD Express Cooler oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725381000168104,"MSUD Express Cooler oral liquid solution, 130 mL pouch",20151031 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826101000168103,"Streptococcus pneumoniae type 4 conjugate antigen",20160930 +73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826031000168109,"Streptococcus pneumoniae type 19F conjugate antigen",20160930 +77602011000036104,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet",900000000000526001,"REPLACED BY association reference set",833021000168103,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet",20160930 +84658011000036100,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873071000168100,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag",20170131 +23146011000036106,"buprenorphine 400 microgram tablet",900000000000526001,"REPLACED BY association reference set",685791000168104,"buprenorphine 400 microgram sublingual tablet",20150228 +663761000168105,"light kaolin + magnesium + bicarbonate",900000000000526001,"REPLACED BY association reference set",870911000168101,"light kaolin + magnesium carbonate + bicarbonate",20170131 +80215011000036104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867811000168101,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",20170131 +75070011000036100,"Haemophilus influenzae type b vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",828241000168108,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial",20160930 +46751011000036100,"etoposide 500 mg injection, 1 vial",900000000000526001,"REPLACED BY association reference set",793511000168108,"etoposide phosphate 567.8 mg (etoposide 500 mg) injection, 1 vial",20160531 +692201000168108,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848421000168100,"Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack",20161130 +22602011000036109,"albendazole 200 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844191000168102,"albendazole 200 mg tablet",20161031 +66842011000036100,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705511000168106,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g",20150731 +26411000036100,"Movicol Chocolate solution: powder for, 1 sachet",900000000000526001,"REPLACED BY association reference set",674001000168102,"Movicol Chocolate powder for oral liquid, 1 sachet",20141031 +78108011000036106,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 325 mL",900000000000526001,"REPLACED BY association reference set",705951000168101,"glycerol 10% + cetomacrogol aqueous cream, 325 mL",20150731 +925160011000036109,"Pemzo 20 mg capsule, 15, blister pack",900000000000526001,"REPLACED BY association reference set",716361000168107,"Pemzo 20 mg enteric capsule, 15, blister pack",20150930 +81585011000036100,"metoclopramide hydrochloride 5 mg + paracetamol 500 mg capsule, 10",900000000000526001,"REPLACED BY association reference set",867301000168105,"metoclopramide 5 mg + paracetamol 500 mg capsule, 10",20170131 +56611011000036106,"Paxyl 2.5% / 0.1% spray solution, 125 mL",900000000000526001,"REPLACED BY association reference set",861661000168107,"Paxyl 2.5% / 0.1% spray solution, 125 mL",20161231 +931678011000036102,"Actonel EC Combi D (1 x Once-a-Week tablet, 6 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810301000168107,"Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack, composite pack",20160630 +75470011000036105,"Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832241000168108,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 10 x 0.5 mL vials",20160930 +76722011000036101,"X-Evess (1 x 500 mL oral liquid, 1 x 500 mL oral liquid), 1 pack",900000000000526001,"REPLACED BY association reference set",703121000168105,"X-Evess (1 x 500 mL Part-1 oral liquid, 1 x 500 mL Part-2 oral liquid), 1 pack",20150531 +82516011000036108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724941000168107,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles",20151031 +87411011000036106,"HCU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",725001000168105,"HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles",20151031 +56158011000036106,"Daktarin 2% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",820001000168104,"Daktarin 2% oral gel, 10 g",20160731 +844551000168103,"Zovirax 800 mg tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",859521000168107,"Zovirax Dispersible 800 mg tablet, 120, bottle",20161231 +23539011000036108,"albendazole 400 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844061000168105,"albendazole 400 mg tablet",20161031 +138771000036107,"Menitorix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",846111000168102,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20161130 +81150011000036109,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868401000168101,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags",20170131 +923905011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 500, bottle",900000000000526001,"REPLACED BY association reference set",717321000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 500, bottle",20150930 +925145011000036108,"Omepro 20 mg capsule, 90, blister pack",900000000000526001,"REPLACED BY association reference set",716981000168102,"Omepro 20 mg enteric capsule, 90, blister pack",20150930 +77386011000036106,"Centrum tablet: film-coated, 115, bottle",900000000000526001,"REPLACED BY association reference set",833211000168104,"Centrum film-coated tablet, 115, bottle",20160930 +75014011000036103,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839611000168103,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe",20161031 +698441000168109,"Bexsero injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822801000168107,"Bexsero injection suspension, 0.5 mL syringe",20160831 +728541000168107,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006021000168100,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +44105011000036107,"Zovirax 800 mg dispersible tablet, 35, bottle",900000000000526001,"REPLACED BY association reference set",859231000168107,"Zovirax Dispersible 800 mg tablet, 35, bottle",20161231 +925158011000036100,"Pemzo 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",716451000168104,"Pemzo 20 mg enteric capsule, 28, blister pack",20150930 +83651000036103,"aspirin 100 mg dispersible tablet, 90",900000000000526001,"REPLACED BY association reference set",26903011000036102,"aspirin 100 mg tablet, 90",20160630 +87471011000036100,"Levetiracetam (Generic Health) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003351000168101,"Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60",20170930 +74276011000036104,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845911000168109,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +80640011000036101,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868021000168103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags",20170131 +35702011000036103,"carbomer-974 0.3% eye gel, unit dose",900000000000526001,"REPLACED BY association reference set",718711000168106,"carbomer-974P 0.3% eye gel, unit dose",20150930 +684461000168104,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693471000168108,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules",20150331 +74259011000036105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825861000168103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes",20160930 +127371000036105,"TYR Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725971000168101,"TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches",20151031 +14108011000036104,"Dolaforte tablet, 20",900000000000526001,"REPLACED BY association reference set",835751000168108,"Dolaforte tablet, 20",20161031 +86743011000036107,"Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726731000168108,"Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose",20151031 +757511000168106,"Ursodox 250 mg capsule: hard, 100, blister pack",900000000000526001,"REPLACED BY association reference set",765971000168106,"Ursodox (GH) 250 mg hard capsule, 100, blister pack",20160331 +4704011000036103,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850741000168103,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, ampoule",20161130 +83533011000036101,"dibasic sodium phosphate heptahydrate",900000000000527005,"SAME AS association reference set",85238011000036109,"dibasic sodium phosphate heptahydrate",20170331 +81992011000036102,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850831000168100,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, ampoule",20161130 +797051000168106,"Levetiracetam (Accord) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003101000168103,"Levetiracetam 1000 (Accord) 1 g film-coated tablet",20170930 +922018011000036103,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",832031000168108,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack",20160930 +76739011000036108,"Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 10 x 30 mL vials",900000000000526001,"REPLACED BY association reference set",695571000168106,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials",20150430 +21723011000036100,"calcium citrate",900000000000526001,"REPLACED BY association reference set",745551000168101,"calcium",20161231 +6516011000036101,"Prodeine 15 uncoated tablet",900000000000526001,"REPLACED BY association reference set",835681000168106,"Prodeine 15 uncoated tablet",20161031 +82526011000036100,"paracetamol 500 mg + codeine phosphate 8 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",836091000168106,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 20",20161031 +80514011000036108,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",900000000000526001,"REPLACED BY association reference set",864331000168106,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag",20170131 +71462011000036101,"salicylic acid 5% (50 mg/g) + cetomacrogol aqueous cream 950 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705681000168101,"salicylic acid 5% + cetomacrogol aqueous cream, 100 g",20150731 +22742011000036105,"etoposide 100 mg injection, vial",900000000000526001,"REPLACED BY association reference set",793401000168109,"etoposide phosphate 113.6 mg (etoposide 100 mg) injection, vial",20160531 +63191000036100,"Hepasol oral liquid: solution, 500 mL",900000000000526001,"REPLACED BY association reference set",688171000168106,"Hepasol oral liquid solution, 500 mL",20150331 +130291000036103,"TYR Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725981000168103,"TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches",20151031 +844801000168100,"Zovirax 400 mg tablet, 70",900000000000526001,"REPLACED BY association reference set",859541000168101,"Zovirax Dispersible 400 mg tablet, 70",20161231 +828001000168101,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845911000168109,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +711781000168106,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005571000168100,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 100 mL bag",20170930 +18790011000036105,"ADT Booster injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837331000168108,"ADT Booster injection suspension, 0.5 mL syringe",20161031 +35467011000036109,"Movicol-Half solution: powder for, 1 sachet",900000000000526001,"REPLACED BY association reference set",674111000168100,"Movicol-Half powder for oral liquid, 1 sachet",20141031 +71955011000036101,"methylated spirit industrial 66% gel, 375 mL",900000000000526001,"REPLACED BY association reference set",730511000168109,"ethanol 66% gel, 375 mL",20151130 +80652011000036100,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868311000168107,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",20170131 +91831000036105,"Prostin E2 400 microgram/mL vaginal gel, 2.5 mL, syringe",900000000000526001,"REPLACED BY association reference set",1005361000168100,"Prostin E2 1 mg/3 g vaginal gel, 3 g syringe",20170930 +646241000168104,"Biostate 1000 IU FVIII/2000 IU VWF (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",921971000168108,"Biostate (inert substance) diluent, 10 mL vial",20170430 +929723011000036105,"aluminium sulfate hydrate 98.6% stick",900000000000526001,"REPLACED BY association reference set",846141000168103,"aluminium sulfate 98.6% stick",20161130 +73834011000036102,"Co-Phenylcaine Forte nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",791921000168105,"Co-Phenylcaine Forte nasal spray",20160531 +806101000168109,"Repatha 140 mg/mL injection: solution, 1 mL injection device",900000000000526001,"REPLACED BY association reference set",846381000168105,"Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device",20161130 +75408011000036103,"rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, 10 x 1.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822921000168106,"rotavirus live vaccine oral liquid, 10 x 1.5 mL syringes",20160831 +73858011000036105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825521000168105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +105561000036106,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703591000168101,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe",20150630 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826111000168100,"Streptococcus pneumoniae type 1 conjugate antigen",20160930 +21312011000036103,"heparin sodium",900000000000526001,"REPLACED BY association reference set",858661000168109,"heparin",20161231 +36265011000036103,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 0.5 mL unit dose",900000000000526001,"REPLACED BY association reference set",861691000168100,"Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 0.5 mL unit dose",20161231 +50527011000036108,"PKU Cooler20 Orange oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725801000168101,"PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches",20151031 +74295011000036100,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",824731000168103,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials",20160930 +76025011000036107,"Sorbilax 1 mL/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",690651000168106,"Sorbilax 70% non-crystallising oral liquid solution",20150331 +53813011000036108,"Daktarin 2% oral gel",900000000000526001,"REPLACED BY association reference set",819981000168105,"Daktarin 2% oral gel",20160731 +931484011000036102,"Prodeine 15 uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",835731000168102,"Prodeine 15 uncoated tablet, 50, blister pack",20161031 +711021000168105,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005901000168102,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule",20170930 +66731000036105,"calcium carbonate + magnesium + magnesium trisilicate",900000000000526001,"REPLACED BY association reference set",871081000168103,"calcium carbonate + magnesium carbonate + magnesium trisilicate",20170131 +689661000168101,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831241000168101,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20160930 +93481000036107,"boric acid 8.6 mg (boron 1.5 mg) + calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet",900000000000526001,"REPLACED BY association reference set",932951000168108,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet",20170531 +924697011000036104,"First Aid (Amcal) cream, 50 g",900000000000526001,"REPLACED BY association reference set",861511000168108,"First Aid (Amcal) cream, 50 g",20161231 +81148011000036109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868271000168107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags",20170131 +41221000036100,"Lipistart powder for oral liquid",900000000000526001,"REPLACED BY association reference set",949711000168100,"Lipistart powder for oral liquid",20170630 +18871011000036107,"Kenacomb Otic ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758301000168100,"Kenacomb Otic ear ointment, 5 g, tube",20160229 +73366011000036101,"apomorphine hydrochloride 50 mg/10 mL injection: subcutaneous infusion, syringe",900000000000526001,"REPLACED BY association reference set",781251000168107,"apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, syringe",20160430 +933221241000036106,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004841000168105,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 200 mL bag",20170930 +922561011000036108,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",843321000168104,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 100",20161031 +14611000036102,"Clinoleic 20% injection: emulsion, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",771971000168104,"Clinoleic 20% injection emulsion, 20 x 250 mL bags",20160430 +26371000168106,"Regaine Men's Extra Strength Foam",900000000000526001,"REPLACED BY association reference set",45451000168101,"Regaine Men's Extra Strength",20150831 +17231000168107,"Voluven 6% / 0.9%",900000000000526001,"REPLACED BY association reference set",1013371000168107,"Voluven",20170930 +75112011000036104,"Varicella zoster live attenuated vaccine 1350 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",831701000168106,"varicella-zoster live vaccine 1350 PFU injection, vial",20160930 +82401011000036106,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",860381000168103,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100, bottle",20161231 +81702011000036106,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",868171000168101,"glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags",20170131 +70016011000036102,"salicylic acid 5% (50 mg/g) + aqueous cream 950 mg/g cream",900000000000526001,"REPLACED BY association reference set",705561000168109,"salicylic acid 5% + aqueous cream",20150731 +74893011000036108,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",830901000168101,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20160930 +728391000168107,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872101000168100,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe",20170131 +75065011000036100,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",825091000168102,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, vial",20160930 +987291000168102,"sebelipase alfa 2 mg/mL injection, vial",900000000000526001,"REPLACED BY association reference set",1013311000168104,"sebelipase alfa 20 mg/10 mL injection, vial",20170930 +48503011000036103,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694051000168106,"Leukosilk (1021) 1.25 cm x 5 m tape",20150331 +665491000168105,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",834721000168104,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100",20161031 +74561000036108,"Salofalk 500 mg granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084091000168109,"Salofalk 500 mg modified release granules, 100 sachets",20180228 +924208011000036102,"omeprazole 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",716681000168109,"omeprazole 20 mg enteric capsule, 500",20150930 +60890011000036101,"Disprin Original 300 mg dispersible tablet, 24, strip pack",900000000000526001,"REPLACED BY association reference set",804261000168106,"Disprin Original 300 mg tablet, 24, strip pack",20160630 +718851000168102,"Infanrix Hexa (1 x 0.5 mL vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack",900000000000526001,"REPLACED BY association reference set",840921000168109,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack",20161031 +921854011000036101,"Macu-Vision tablet: film-coated, 150, bottle",900000000000526001,"REPLACED BY association reference set",757961000168104,"Macu-Vision film-coated tablet, 150, bottle",20160229 +933215421000036106,"Acris Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack, blister pack",900000000000526001,"REPLACED BY association reference set",852621000168101,"Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28, blister pack",20161130 +46669011000036102,"disulfiram 200 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",796261000168104,"disulfiram 200 mg effervescent tablet, 30",20160630 +61007011000036109,"Clozole Vaginal Cream (Chemists' Own) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715561000168106,"Clozole (Chemists' Own) 1% vaginal cream, 35 g, tube",20150930 +81164011000036107,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872281000168101,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags",20170131 +933231851000036108,"Fluoride Tyranna Grape (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932591000168107,"Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL, aerosol can",20170531 +82924011000036101,"pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827591000168101,"pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe",20160930 +6888011000036103,"Etopophos 1 g injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",793591000168104,"Etopophos 1.136 g (etoposide 1 g) powder for injection, 1.136 g vial",20160531 +674991000168107,"Simponi Smartject 100 mg/mL injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",845811000168103,"Simponi Smartject 100 mg/mL injection solution, injection device",20161130 +73738011000036106,"Varivax",900000000000526001,"REPLACED BY association reference set",40011000168104,"Varivax Refrigerated",20160131 +927689011000036103,"Citrulline containing 1 g citrulline oral liquid: powder for, 30 x 4 g sachets",900000000000527005,"SAME AS association reference set",110371000036102,"Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets",20151130 +9131000036102,"olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779121000168104,"olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 350 mL bag",20160430 +31523011000036103,"magnesium sulfate",900000000000526001,"REPLACED BY association reference set",64900011000036107,"magnesium sulfate heptahydrate",20160930 +728811000168105,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006141000168105,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +933205571000036109,"Recombinate 500 IU (1 x 500 international units vial, 1 x 10 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",710911000168106,"Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack",20150831 +45881000168105,"Friars' Balsam Compound Benzoin Tincture (Gold Cross)",900000000000526001,"REPLACED BY association reference set",688371000168108,"Friars' Balsam Compound Benzoin (Gold Cross)",20150331 +81135011000036104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868031000168100,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags",20170131 +71954011000036100,"methylated spirit industrial 66% gel, 1 L",900000000000526001,"REPLACED BY association reference set",730541000168108,"ethanol 66% gel, 1 L",20151130 +75527011000036103,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid [2 x 3 mL vials] (&) inert substance powder for oral liquid [2 x 5.6 g sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",821961000168107,"cholera vaccine oral liquid [2 x 3 mL vials] (&) inert substance effervescent granules [2 x 5.6 g sachets], 1 pack",20160831 +49436011000036106,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694061000168108,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll",20150331 +92651000036108,"calcium carbonate + colecalciferol + cupric sulfate anhydrous + magnesium oxide + manganese sulfate monohydrate + zinc",900000000000526001,"REPLACED BY association reference set",861821000168103,"calcium + colecalciferol + cupric sulfate + magnesium oxide + manganese sulfate monohydrate + zinc",20161231 +26831000036107,"Femazole 150 mg capsule: hard, 1 capsule",900000000000526001,"REPLACED BY association reference set",685541000168103,"Femazole Duo 150 mg hard capsule",20150228 +921487011000036109,"MD-Gastroview solution, 12 x 240 mL each",900000000000526001,"REPLACED BY association reference set",696111000168100,"MD-Gastroview solution, 12 x 240 mL",20150430 +34801011000036100,"Subutex 2 mg tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",685781000168102,"Subutex 2 mg sublingual tablet, 28, blister pack",20150228 +19351011000036109,"Zovirax 800 mg dispersible tablet, 35, blister pack",900000000000526001,"REPLACED BY association reference set",859411000168101,"Zovirax Dispersible 800 mg tablet, 35, blister pack",20161231 +726851000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection, dose",900000000000526001,"REPLACED BY association reference set",881161000168101,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, dose",20170228 +761241000168107,"Lomotil uncoated tablet, 8, blister pack",900000000000526001,"REPLACED BY association reference set",851111000168106,"Lomotil uncoated tablet, 8, blister pack",20161130 +81126011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867761000168107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",20170131 +652261000168102,"Cal-500 500 mg (calcium 500 mg) chewable tablet",900000000000526001,"REPLACED BY association reference set",859751000168107,"Cal-500 1.25 g (calcium 500 mg) chewable tablet",20161231 +23147011000036109,"buprenorphine 2 mg tablet",900000000000526001,"REPLACED BY association reference set",685571000168105,"buprenorphine 2 mg sublingual tablet",20150228 +73675011000036106,"cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine",900000000000526001,"REPLACED BY association reference set",821811000168103,"Vibrio cholerae O1 inactivated antigen",20160831 +860231000168106,"Ostelin Osteoguard film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",932991000168103,"Ostelin Osteoguard film-coated tablet, 90, blister pack",20170531 +94751000036109,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 250",900000000000526001,"REPLACED BY association reference set",862281000168108,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 250",20161231 +74720011000036108,"Telnase 55 microgram/actuation nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1082791000168104,"Telnase 55 microgram/actuation nasal spray, 120 actuations, pump pack",20180228 +923726011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 140, blister pack",900000000000526001,"REPLACED BY association reference set",717131000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 140, blister pack",20150930 +933242931000036100,"Aspalgin dispersible tablet, 40",900000000000526001,"REPLACED BY association reference set",834311000168105,"Aspalgin dispersible tablet, 40",20161031 +924874011000036109,"Omepro 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",716651000168102,"Omepro 20 mg enteric capsule, 50",20150930 +74370011000036105,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832221000168102,"Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +75062011000036108,"Japanese encephalitis inactivated vaccine injection, vial",900000000000526001,"REPLACED BY association reference set",822671000168101,"Japanese encephalitis (mouse brain-derived) inactivated vaccine injection, vial",20160831 +828381000168107,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846121000168109,"Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20161130 +34729011000036107,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835591000168105,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL, bottle",20161031 +156951000036103,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",862191000168103,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100, bottle",20161231 +776481000168103,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",996101000168102,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 2",20170831 +84873011000036100,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694321000168100,"Mepitac (298400) 4 cm x 1.5 m tape, 1 roll",20150331 +74981011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000526001,"REPLACED BY association reference set",827491000168100,"pneumococcal 7 valent conjugate vaccine",20160930 +716111000168106,"MenCWY injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",826701000168104,"MenCWY injection solution, syringe",20160930 +75022011000036102,"rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, tube",900000000000526001,"REPLACED BY association reference set",822461000168105,"rotavirus pentavalent live vaccine oral liquid, 2 mL tube",20160831 +74963011000036104,"poliomyelitis live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",839781000168104,"polio trivalent live vaccine",20161031 +80214011000036103,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867731000168104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",20170131 +150511000036105,"Nicorette Quickmist 1 mg/actuation oral spray, 150 actuations",900000000000526001,"REPLACED BY association reference set",1091951000168104,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations",20180331 +63051000036108,"Adacel Polio injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839761000168108,"Adacel Polio injection suspension, 0.5 mL vial",20161031 +86597011000036109,"Aqueous Cream (David Craig)",900000000000526001,"REPLACED BY association reference set",768291000168105,"Aqueous Cream APF (David Craig)",20160331 +177961000036100,"Lyxumia 20 microgram/0.2 mL injection: solution, 2 x 14 unit doses cartridges",900000000000526001,"REPLACED BY association reference set",719361000168102,"Lyxumia 20 microgram/dose injection solution, 2 x 14 doses, injection devices",20150930 +88221000036103,"Femcream (Pharmacy Action) 1% cream",900000000000526001,"REPLACED BY association reference set",715481000168101,"Femcream (Pharmacy Action) 1% vaginal cream",20150930 +711731000168105,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005521000168101,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +718881000168109,"Infanrix Hexa (10 x 0.5 mL vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack",900000000000526001,"REPLACED BY association reference set",841001000168107,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack",20161031 +6440011000036104,"Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722831000168102,"Intron A Redipen 60 million units/1.2 mL injection solution",20151031 +21891011000036107,"tenofovir",900000000000526001,"REPLACED BY association reference set",851521000168106,"tenofovir disoproxil",20161130 +77492011000036100,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream",900000000000526001,"REPLACED BY association reference set",705711000168100,"glycerol 10% + cetomacrogol aqueous cream",20150731 +74811011000036106,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",824841000168101,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +76700011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872981000168106,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +65241011000036102,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",863621000168103,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",20170131 +87474011000036102,"Levetiracetam (Sandoz) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003641000168107,"Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60",20170930 +921055011000036101,"Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 20 mL vial",900000000000526001,"REPLACED BY association reference set",695111000168105,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 20 mL vial",20150430 +80525011000036101,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863691000168101,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags",20170131 +702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726161000168104,"PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets",20151031 +922539011000036101,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 30",900000000000526001,"REPLACED BY association reference set",829741000168106,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 30",20160930 +73341011000036102,"Creon 40 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847351000168101,"Creon 40 000 enteric capsule, 100, bottle",20161130 +75528011000036102,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840721000168107,"diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe",20161031 +94741000036106,"Ostelin Vitamin D and Calcium tablet: film-coated, 250",900000000000526001,"REPLACED BY association reference set",862291000168106,"Ostelin Vitamin D and Calcium film-coated tablet, 250",20161231 +711441000168109,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005011000168100,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +923724011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 98, blister pack",900000000000526001,"REPLACED BY association reference set",717501000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 98, blister pack",20150930 +925345011000036102,"Pemzo 20 mg capsule, 14, bottle",900000000000526001,"REPLACED BY association reference set",716301000168106,"Pemzo 20 mg enteric capsule, 14, bottle",20150930 +20953011000036100,"Dolaforte tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835761000168105,"Dolaforte tablet, 20, blister pack",20161031 +73634011000036105,"human papillomavirus (type 11) vaccine",900000000000526001,"REPLACED BY association reference set",822731000168107,"human papillomavirus type 11 antigen",20160831 +54237011000036102,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream",900000000000526001,"REPLACED BY association reference set",715711000168102,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream",20150930 +76750011000036101,"Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 10 x 200 mL bottles",900000000000526001,"REPLACED BY association reference set",695791000168100,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles",20150430 +923735011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 90, blister pack",900000000000526001,"REPLACED BY association reference set",717461000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 90, blister pack",20150930 +921066011000036100,"Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695311000168108,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle",20150430 +77333011000036108,"Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695751000168105,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles",20150430 +61929011000036104,"dexchlorpheniramine maleate 2 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet",900000000000526001,"REPLACED BY association reference set",45330011000036109,"paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet",20170731 +12971011000036107,"Prozac 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844331000168104,"Prozac 20 mg tablet, 28",20161031 +926956011000036100,"Tramadol Hydrochloride SR (Sandoz) 100 mg modified release tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",1052991000168106,"Tramadol SR (Sandoz) 100 mg modified release tablet, 20, bottle",20171231 +71195011000036107,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995131000168104,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge, 16",20170831 +104211000036105,"Irbesartan (Apo) 75 mg tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",807831000168105,"Irbesartan (Apo) 75 mg film-coated tablet, 30, bottle",20160630 +924204011000036109,"omeprazole 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",716341000168108,"omeprazole 20 mg enteric capsule, 15",20150930 +387791000168101,"TYR Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",724881000168108,"TYR Anamix Junior LQ oral liquid solution, 125 mL bottle",20151031 +9071000036104,"olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, 20 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",771951000168108,"olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 20 x 250 mL bags",20160430 +922083011000036105,"calcium (as carbonate) 1 g + colecalciferol 22 microgram (880 units) granules: effervescent, 7 g sachet",900000000000526001,"REPLACED BY association reference set",810621000168106,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 7.3 g sachet",20160630 +61571000036108,"Adacel Polio injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839741000168109,"Adacel Polio injection suspension, 0.5 mL vial",20161031 +920824011000036108,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet",900000000000526001,"REPLACED BY association reference set",733961000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet",20161231 +89541000036103,"Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",861861000168108,"Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60",20161231 +22942011000036104,"botulinum toxin type A 100 units injection, vial",900000000000526001,"REPLACED BY association reference set",720841000168107,"botulinum toxin type A 100 units injection, vial",20151031 +45067011000036103,"betamethasone (as dipropionate) 0.05% lotion",900000000000526001,"REPLACED BY association reference set",1054581000168106,"betamethasone (as dipropionate) 0.05% lotion",20171231 +75381011000036100,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",823061000168105,"human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL vials",20160831 +50921011000036106,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694341000168106,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape",20150331 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836841000168106,"Streptococcus pneumoniae type 9N polysaccharide antigen",20161031 +60727011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721931000168101,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL, bottle",20151031 +140781000036107,"Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006001000168109,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +933195511000036103,"Levetiracetam (SCP) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003671000168100,"Levetiracetam 1000 (SCP) 1 g film-coated tablet",20170930 +7018011000036101,"Granocyte 13.4 million units (105 microgram) powder for injection, 105 microgram vial",900000000000526001,"REPLACED BY association reference set",838221000168100,"Granocyte-13 13.4 million units (105 microgram) powder for injection, 105 microgram vial",20161031 +82525011000036107,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 20",900000000000526001,"REPLACED BY association reference set",834241000168103,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 20",20161031 +51250011000036109,"triglycerides medium chain formula powder for oral liquid, 400 g",900000000000526001,"REPLACED BY association reference set",949651000168108,"protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid, 400 g",20170630 +73942011000036101,"H-B-Vax II preservative free 10 microgram/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",825731000168104,"H-B-Vax II preservative free 10 microgram/mL injection suspension, vial",20160930 +72581000036106,"Salofalk 500 mg granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084081000168106,"Salofalk 500 mg modified release granules, 100 sachets",20180228 +711141000168100,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006231000168106,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +52234011000036102,"salicylic acid + sulfur-precipitated",900000000000526001,"REPLACED BY association reference set",69871011000036100,"salicylic acid + precipitated sulfur + aqueous cream",20150430 +32534011000036100,"Reandron oily solution 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720581000168100,"Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule",20151031 +643311000168104,"Lucrin Depot 3-Month (inert substance) diluent, 2 mL syringe",900000000000526001,"REPLACED BY association reference set",707321000168102,"Lucrin Depot 3-Month (inert substance) diluent, 1.5 mL syringe",20150731 +141491000036106,"Somatuline Autogel 60 mg injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",819571000168100,"Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +56187011000036104,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",861481000168101,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16",20161231 +22701011000036107,"pancrelipase 25 000 units capsule",900000000000526001,"REPLACED BY association reference set",847631000168103,"lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule",20161130 +74968011000036109,"diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",840691000168103,"diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine",20161031 +924869011000036102,"Omepro 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",716371000168101,"Omepro 20 mg enteric capsule, 14",20150930 +80225011000036105,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868291000168108,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag",20170131 +81711011000036103,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868381000168101,"glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags",20170131 +664251000168100,"magnesium trisilicate + magnesium + bicarbonate",900000000000526001,"REPLACED BY association reference set",871071000168101,"magnesium trisilicate + magnesium carbonate + bicarbonate",20170131 +71546011000036103,"magnesium sulfate heptahydrate 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",701551000168105,"magnesium sulfate heptahydrate 2.47 g/5 mL injection, 10 x 5 mL ampoules",20150531 +656211000168101,"Levetiracetam (AN) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003141000168101,"Levetiracetam 1000 (AN) 1 g film-coated tablet",20170930 +66973011000036101,"Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",701561000168107,"Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules",20150531 +105511000036109,"aflibercept 2 mg/0.05 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",703551000168106,"aflibercept 4 mg/0.1 mL injection, syringe",20150630 +923395011000036101,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules",900000000000526001,"REPLACED BY association reference set",746971000168105,"Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules",20160131 +74766011000036102,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 10 x 2 mL tubes",900000000000526001,"REPLACED BY association reference set",822531000168103,"Rotateq oral liquid, 10 x 2 mL tubes",20160831 +77562011000036107,"citric acid 200 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",702361000168109,"citric acid 200 mg/mL oral liquid",20150531 +653671000168100,"Retinofluor 1.25 g/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721221000168106,"Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials",20151031 +177661000036108,"lixisenatide 20 microgram/0.2 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",719241000168107,"lixisenatide 20 microgram/dose injection, dose",20150930 +83258011000036101,"Cardioplegia Sterile (DBL) concentrated injection, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",872171000168105,"Cardioplegia Sterile (DBL) concentrated injection, 20 mL ampoule",20170131 +48510011000036109,"Leukopor (2472) 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",693981000168102,"Leukopor (2472) 2.5 cm x 5 m tape",20150331 +19347011000036103,"Zovirax 200 mg dispersible tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",859611000168104,"Zovirax Dispersible 200 mg tablet, 90, blister pack",20161231 +86237011000036105,"monobasic sodium phosphate monohydrate 480 mg/mL + dibasic sodium phosphate heptahydrate 180 mg/mL oral liquid, bottle",900000000000526001,"REPLACED BY association reference set",1097781000168104,"monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, bottle",20180331 +69049011000036101,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705701000168103,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g, jar",20150731 +76825011000036106,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",861801000168107,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60",20161231 +815211000168109,"Entrip 50 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",856821000168101,"Entrip 50 mg film-coated tablet, 100",20161231 +72972011000036105,"Creon 40 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847321000168109,"Creon 40 000 enteric capsule",20161130 +29171000036108,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",674011000168104,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 30 sachets",20141031 +933220841000036104,"Naropin 1% (100 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004991000168109,"Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule",20170930 +74920011000036104,"Boostrix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837701000168100,"Boostrix injection suspension, 10 x 0.5 mL syringes",20161031 +75006011000036108,"meningococcal group C conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826391000168106,"meningococcal C conjugate vaccine",20160930 +74850011000036105,"Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085361000168104,"Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL, pump pack",20180228 +83329011000036102,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",872191000168106,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules",20170131 +75078011000036103,"Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837541000168107,"diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial",20161031 +73821011000036102,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822621000168102,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160831 +75366011000036108,"rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822481000168101,"rotavirus pentavalent live vaccine oral liquid, 2 mL tube",20160831 +65422011000036107,"Curash Family Oral Pain Relieving oral gel",900000000000526001,"REPLACED BY association reference set",995481000168109,"Curash Family Oral Pain Relieving oral gel",20170831 +36071011000036100,"Colistin (Link) 150 mg powder for injection, 150 mg vial",900000000000526001,"REPLACED BY association reference set",817471000168108,"Colistin (Link) 150 mg (4.5 million units) powder for injection, 150 mg vial",20160731 +84664011000036104,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g + ascorbic acid 5.96 g powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901081000168104,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet",20170331 +60627011000036100,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721491000168107,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL, bottle",20151031 +80637011000036104,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868361000168105,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",20170131 +21772011000036108,"triamcinolone + neomycin sulfate + gramicidin + nystatin",900000000000526001,"REPLACED BY association reference set",758201000168107,"triamcinolone + neomycin + gramicidin + nystatin",20160229 +73789011000036107,"Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821571000168108,"Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160831 +65656011000036107,"Cepacol Antibacterial Orange Citrus lozenge",900000000000526001,"REPLACED BY association reference set",995171000168101,"Cepacol Antibacterial Orange Citrus lozenge",20170831 +56686011000036103,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",648781000168102,"Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 200 mL",20151031 +28391000168106,"Fluoride Koala Berry (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)",20170531 +711081000168109,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006001000168109,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +75049011000036105,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",824801000168103,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, vial",20160930 +60228011000036102,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861491000168103,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16, blister pack",20161231 +925159011000036108,"Pemzo 20 mg capsule, 14, blister pack",900000000000526001,"REPLACED BY association reference set",716291000168105,"Pemzo 20 mg enteric capsule, 14, blister pack",20150930 +670761000168109,"Peptamen Junior powder for oral liquid",900000000000526001,"REPLACED BY association reference set",949641000168106,"Peptamen Junior powder for oral liquid",20170630 +713311000168102,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005451000168108,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 200 mL bag",20170930 +69789011000036109,"benzoin sumatra + tolu balsam",900000000000526001,"REPLACED BY association reference set",688381000168106,"benzoin Sumatra + storax prepared + Aloes cape",20150331 +921532011000036105,"Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695231000168105,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles",20150430 +900031011000036105,"Voltaren Emulgel 1% gel, 50 g",900000000000526001,"REPLACED BY association reference set",1037071000168107,"Voltaren Emulgel 1.16% gel, 50 g",20171130 +143821000036107,"Tecfidera 120 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756231000168101,"Tecfidera 120 mg enteric capsule",20160229 +69356011000036106,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872021000168108,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",20170131 +19714011000036104,"Lovan 20 mg dispersible tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",844371000168101,"Lovan 20 mg tablet, 28, blister pack",20161031 +172331000168102,"MSUD Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724011000168107,"MSUD Cooler 15 Orange oral liquid solution, 130 mL pouch",20151031 +29231000036102,"Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827191000168107,"Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160930 +33606011000036104,"Soflax tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",733651000168102,"Soflax (Ascent Pharma) film-coated tablet, 100, bottle",20151130 +718861000168100,"Infanrix Hexa (1 x 0.5 mL vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",840931000168107,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack",20161031 +75521011000036106,"Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840591000168102,"diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial",20161031 +689821000168105,"Otocomb Otic ear ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758381000168108,"Otocomb Otic ear ointment, 5 g, tube",20160229 +734221000168106,"Centavite Adult tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",843031000168104,"Centavite Adult film-coated tablet, 100, bottle",20161031 +27944011000036105,"pancreatic extract 5000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847521000168100,"lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule, 100",20161130 +933220881000036108,"Naropin 0.75% (75 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004941000168101,"Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule",20170930 +69377011000036106,"Microshield Handrub solution, 125 mL, bottle",900000000000526001,"REPLACED BY association reference set",767681000168105,"Microshield Handrub solution, 125 mL, bottle",20160331 +81134011000036103,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868001000168107,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag",20170131 +160201000036100,"Budenofalk 2 mg/application enema, 2 x 1 application aerosol cans, aerosol can",900000000000526001,"REPLACED BY association reference set",688081000168108,"Budenofalk 2 mg/application enema, 2 x 14 applications, aerosol cans",20150331 +679571000168100,"Botox 200 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720961000168104,"Botox 200 units powder for injection, 1 vial",20151031 +74413011000036101,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840841000168107,"Infanrix-IPV injection suspension, 10 x 0.5 mL syringes",20161031 +933056011000036100,"Rivotril Drops 2.5 mg/mL oral liquid: solution, 10 mL, bottle",900000000000526001,"REPLACED BY association reference set",729131000168100,"Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL, bottle",20151130 +87334011000036106,"Levetiracetam (Sandoz) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003631000168103,"Levetiracetam 1000 (Sandoz) 1 g film-coated tablet",20170930 +83641000036101,"aspirin 100 mg dispersible tablet, 30",900000000000526001,"REPLACED BY association reference set",63600011000036106,"aspirin 100 mg tablet, 30",20160630 +12624011000036107,"Immucyst (1 x 660 million CFU (81 mg) vial, 1 x 3 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",1045991000168104,"Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack",20171130 +8971000036109,"Zactin 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844391000168100,"Zactin 20 mg tablet, 28",20161031 +40066011000036107,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",693411000168100,"Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 20 mL ampoule",20150331 +54136011000036103,"Clozole Vaginal Cream (Chemists' Own) 1% cream",900000000000526001,"REPLACED BY association reference set",715541000168107,"Clozole (Chemists' Own) 1% vaginal cream",20150930 +60760011000036101,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4, blister pack",900000000000526001,"REPLACED BY association reference set",996251000168105,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4, blister pack",20170831 +844411000168100,"Zovirax 200 mg tablet",900000000000526001,"REPLACED BY association reference set",859181000168101,"Zovirax Dispersible 200 mg tablet",20161231 +1021121000168104,"Salofalk 500 mg granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084061000168102,"Salofalk 500 mg modified release granules, 50 sachets",20180228 +95831000036107,"boric acid + calcium carbonate + colecalciferol + magnesium citrate nonahydrate + magnesium oxide heavy + manganese sulfate monohydrate + phytomenadione",900000000000526001,"REPLACED BY association reference set",932941000168106,"colecalciferol + calcium + magnesium + manganese + phytomenadione + boron",20170531 +925343011000036103,"Omepro 20 mg capsule, 90, bottle",900000000000526001,"REPLACED BY association reference set",716991000168104,"Omepro 20 mg enteric capsule, 90, bottle",20150930 +164431000036104,"Moviprep Orange powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902221000168101,"Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets",20170331 +698411000168105,"meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",822771000168105,"meningococcal B 4 component vaccine injection, 0.5 mL syringe",20160831 +83497011000036108,"magnesium chloride 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",872181000168108,"magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, 5 x 20 mL ampoules",20170131 +78104011000036104,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL cans",900000000000526001,"REPLACED BY association reference set",724441000168101,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL pouches",20151031 +166181000036102,"Moviprep Orange powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902231000168103,"Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets",20170331 +27468011000036105,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",669081000168100,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets",20141031 +81690011000036100,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867741000168108,"glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag",20170131 +75386011000036105,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823151000168107,"human papillomavirus bivalent vaccine injection, 0.5 mL syringe",20160831 +110351000036107,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20, carton",900000000000526001,"REPLACED BY association reference set",1056251000168109,"Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20, carton",20171231 +33080011000036106,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881161000168101,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, dose",20170228 +84442011000036102,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride 300 mg (magnesium 1.5 mmol)/L + sodium acetate trihydrate 3.68 g/L injection, bag",900000000000526001,"REPLACED BY association reference set",872461000168106,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, bag",20170131 +21830011000036109,"tenofovir + emtricitabine",900000000000526001,"REPLACED BY association reference set",851481000168106,"tenofovir disoproxil + emtricitabine",20161130 +20408011000036100,"Oxynorm 5 mg/5 mL oral liquid: solution, 250 mL, bottle",900000000000526001,"REPLACED BY association reference set",815951000168101,"Oxynorm 1 mg/mL oral liquid solution, 250 mL, bottle",20160731 +87064011000036101,"Sorbolene Cream with Glycerin (Pharmacy Select) cream",900000000000526001,"REPLACED BY association reference set",705761000168102,"Sorbolene Cream with Glycerin (Pharmacy Select) cream",20150731 +37945011000036108,"colistimethate 150 mg injection, vial",900000000000526001,"REPLACED BY association reference set",817461000168102,"colistin 150 mg (4.5 million units) injection, vial",20160731 +933226151000036107,"Fluoride Moose Mallow (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932551000168102,"Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL",20170531 +57010011000036107,"Canesten Clotrimazole Thrush Treatment Once 10% cream, 5 g",900000000000526001,"REPLACED BY association reference set",715601000168106,"Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g",20150930 +244931000168105,"PKU Cooler10 Orange oral liquid: solution, 87 mL can",900000000000526001,"REPLACED BY association reference set",725531000168105,"PKU Cooler 10 Orange oral liquid solution, 87 mL pouch",20151031 +85780011000036109,"Fleet Phospho-Soda oral liquid solution, 45 mL",900000000000526001,"REPLACED BY association reference set",1097811000168102,"Fleet Phospho-Soda oral liquid solution, 45 mL",20180331 +775701000168109,"Codalgin uncoated tablet, 40, blister pack",900000000000526001,"REPLACED BY association reference set",836131000168108,"Codalgin uncoated tablet, 40, blister pack",20161031 +70131000036102,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner",900000000000526001,"REPLACED BY association reference set",648381000168101,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner",20160331 +797061000168108,"Levetiracetam (Accord) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003111000168100,"Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60",20170930 +360471000168106,"Go Kit powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",830941000168104,"Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet",20160930 +65447011000036106,"Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 mL vial",900000000000526001,"REPLACED BY association reference set",684661000168102,"Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 mL vial",20150131 +931461011000036103,"Lemsip Max Cold and Flu Direct with Decongestant powder, 10 sachets",900000000000526001,"REPLACED BY association reference set",815901000168100,"Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets",20160731 +13362011000036106,"Panadeine Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835991000168101,"Panadeine Forte uncoated tablet, 20",20161031 +108701000036109,"dressing hydrogel 10 cm x 10 cm dressing, 20",900000000000526001,"REPLACED BY association reference set",1056181000168109,"dressing hydrophobic 10 cm x 10 cm dressing, 20",20171231 +823911000168108,"Bydureon (1 x 2 mg cartridge, 1 x inert diluent cartridge), 1 pack, dual chamber composite pack",900000000000526001,"REPLACED BY association reference set",833301000168109,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device",20160930 +922030011000036105,"calcium citrate + colecalciferol",900000000000526001,"REPLACED BY association reference set",733951000168109,"calcium + colecalciferol",20161231 +74797011000036101,"Otrivin Adult 0.1% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085341000168103,"Otrivin Adult 0.1% nasal spray, 10 mL, pump pack",20180228 +933214881000036106,"Valaciclovir (GA) 1 g film-coated tablet, 4, blister pack",900000000000526001,"REPLACED BY association reference set",1009661000168109,"Valaciclovir 1000 (GA) 1 g film-coated tablet, 4, blister pack",20170930 +84357011000036105,"Cold and Flu Day and Night PE (Pharmacy Choice) (8 x Day tablets, 16 x Night tablets), 24, blister pack",900000000000526001,"REPLACED BY association reference set",749551000168104,"Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack",20160131 +711641000168106,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005641000168108,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +73652011000036100,"meningococcal group Y polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827391000168109,"Neisseria meningitidis group Y polysaccharide antigen",20160930 +734091000168101,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet",900000000000526001,"REPLACED BY association reference set",842901000168104,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet",20161031 +74807011000036101,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825021000168104,"Havrix 1440 ELISA units/mL injection suspension, 1 mL vial",20160930 +28191000036102,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725091000168104,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 125 mL pouches",20151031 +90281000036103,"Eco Krill soft capsule, 30",900000000000526001,"REPLACED BY association reference set",965901000168105,"Eco Krill 333.3 mg soft capsule, 30",20170731 +74257011000036103,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825911000168107,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20160930 +85671011000036101,"Kevtam 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",938301000168107,"Kevtam-1000 1 g film-coated tablet, 60",20170930 +76194011000036106,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",861751000168101,"Caltrate Plus with Vitamin D 200 IU film-coated tablet",20161231 +69331000036101,"Calcium carbonate / colecalciferol (Winthrop)",900000000000526001,"REPLACED BY association reference set",69371000036104,"Risedronate EC Combi D (Winthrop)",20160630 +84654011000036107,"codeine phosphate hemihydrate 6 mg + paracetamol 500 mg + phenylephrine hydrochloride 5 mg tablet [8] (&) chlorpheniramine maleate 2 mg + paracetamol 500 mg + phenylephrine hydrochloride 5 mg tablet [16], 24",900000000000526001,"REPLACED BY association reference set",84655011000036106,"paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24",20160131 +927868011000036100,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream",900000000000526001,"REPLACED BY association reference set",715801000168107,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream",20150930 +933231751000036104,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004821000168104,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags",20170930 +78647011000036101,"Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704451000168107,"Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial",20150630 +60822011000036106,"Difflam Lozenge double mint sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995611000168101,"Difflam Lozenge Double Mint Sugar Free lozenge, 16, blister pack",20170831 +7019011000036109,"Granocyte 33.6 million units (263 microgram) powder for injection, 263 microgram vial",900000000000526001,"REPLACED BY association reference set",838261000168105,"Granocyte-34 33.6 million units (263 microgram) powder for injection, 263 microgram vial",20161031 +81140011000036107,"Eye Stream eye solution, 120 mL, bottle",900000000000526001,"REPLACED BY association reference set",834181000168101,"Eye Stream eye solution, 120 mL, bottle",20161031 +22083011000036109,"entecavir monohydrate 500 microgram tablet",900000000000526001,"REPLACED BY association reference set",829491000168106,"entecavir 500 microgram tablet",20160930 +82441000036108,"Clopidogrel/Aspirin 75/100 (Apo) tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",923791000168108,"Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30, blister pack",20170430 +21292011000036108,"sodium chloride + potassium chloride + glucose monohydrate + citric acid",900000000000526001,"REPLACED BY association reference set",81231011000036104,"sodium chloride + potassium chloride + glucose + citric acid",20170131 +54006011000036101,"Paxyl 2.5% / 0.1% spray solution",900000000000526001,"REPLACED BY association reference set",861641000168108,"Paxyl 2.5% / 0.1% spray solution",20161231 +82342011000036100,"Aspalgin dispersible tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",834381000168104,"Aspalgin dispersible tablet, 100, blister pack",20161031 +142721000036107,"Vivotif Oral enteric capsule, 3, blister pack",900000000000526001,"REPLACED BY association reference set",827281000168102,"Vivotif Oral enteric capsule, 3, blister pack",20160930 +59750011000036106,"Clotrimazole 6 Day (Guardian) 1% cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",715271000168103,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g, tube",20150930 +77332011000036101,"Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695701000168106,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles",20150430 +74290011000036109,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822931000168109,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes",20160831 +926889011000036105,"Valtrex 1 g film-coated tablet, 4, blister pack",900000000000526001,"REPLACED BY association reference set",1009701000168102,"Valtrex-1000 1 g film-coated tablet, 4, blister pack",20170930 +56529011000036105,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 20 mL",900000000000526001,"REPLACED BY association reference set",721741000168107,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL",20151031 +11393011000036107,"Dymadon Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835781000168101,"Dymadon Forte uncoated tablet, 20",20161031 +82319011000036102,"Calsource Ca1000 tablet: effervescent, 10, tube",900000000000526001,"REPLACED BY association reference set",745601000168104,"Calsource Ca1000 effervescent tablet, 10, tube",20160131 +922532011000036106,"Varicella zoster live attenuated vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831921000168100,"varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack",20160930 +706341000168106,"M-M-R II (measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831361000168106,"M-M-R II (measles + mumps + rubella live vaccine) powder for injection, vial",20160930 +84878011000036105,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729861000168103,"Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices",20171130 +815241000168108,"Entrip 50 mg tablet, 1000, blister pack",900000000000526001,"REPLACED BY association reference set",856851000168109,"Entrip 50 mg film-coated tablet, 1000, blister pack",20161231 +43646011000036105,"Keppra 500 mg/5 mL injection: concentrated, 5 mL vial",900000000000526001,"REPLACED BY association reference set",706291000168108,"Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial",20150731 +700027611000036109,"Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 24 sachets",900000000000526001,"REPLACED BY association reference set",810591000168109,"Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets",20160630 +933236401000036100,"Omeprazole (Apo) 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",717541000168102,"Omeprazole (Apo) 20 mg enteric capsule, 30",20150930 +70260011000036108,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge",900000000000526001,"REPLACED BY association reference set",995161000168107,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge",20170831 +7385011000036108,"Dolaforte tablet",900000000000526001,"REPLACED BY association reference set",835741000168106,"Dolaforte tablet",20161031 +922611011000036102,"diatrizoate meglumine 158.4 g/240 mL + diatrizoate sodium 24 g/240 mL solution, 12 x 240 mL each",900000000000526001,"REPLACED BY association reference set",696101000168103,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 2400 mL",20150430 +23483011000036108,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",1041441000168103,"follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, injection device",20171130 +27087011000036102,"codeine phosphate 30 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",834811000168103,"codeine phosphate hemihydrate 30 mg tablet, 20",20161031 +73786011000036103,"Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827511000168105,"Prevenar injection suspension, 0.5 mL syringe",20160930 +137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711091000168107,"Ropivacaine 1% (Kabi)",20150831 +36215011000036102,"Actacode Linctus 5 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",835541000168102,"Actacode Linctus 5 mg/mL oral liquid solution",20161031 +85091011000036101,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet",900000000000526001,"REPLACED BY association reference set",843071000168101,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet",20161031 +50459011000036109,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694071000168102,"Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll, carton",20150331 +75981000036105,"calcium (as carbonate) 500 mg (calcium 500 mg) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",859721000168104,"calcium carbonate 1.25 g (calcium 500 mg) chewable tablet, 60",20161231 +66457011000036105,"Curash Family Oral Pain Relieving oral gel, 15 g",900000000000526001,"REPLACED BY association reference set",995501000168100,"Curash Family Oral Pain Relieving oral gel, 15 g",20170831 +33320011000036102,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881171000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose",20170228 +77609011000036109,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet",900000000000526001,"REPLACED BY association reference set",861741000168103,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet",20161231 +922555011000036104,"calcium (as carbonate) 1 g + colecalciferol 22 microgram (880 units) granules: effervescent, 30 x 7 g sachets",900000000000526001,"REPLACED BY association reference set",810641000168100,"calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 30 x 7.3 g sachets",20160630 +74938011000036104,"Quadracel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",840611000168107,"Quadracel injection suspension, 0.5 mL vial",20161031 +73816011000036104,"Infanrix Penta injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836731000168109,"Infanrix Penta injection suspension, 0.5 mL syringe",20161031 +91311000036108,"Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",730011000168101,"Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial",20151130 +711191000168108,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005931000168109,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag",20170930 +32643011000036106,"potassium",900000000000526001,"REPLACED BY association reference set",988221000168100,"potassium acetate",20170831 +27345011000036100,"flurbiprofen sodium 0.03% (120 microgram/0.4 mL) eye drops, 5 x 0.4 mL ampoules",900000000000526001,"REPLACED BY association reference set",684581000168107,"flurbiprofen sodium dihydrate 0.03% eye drops, 5 x 0.4 mL unit doses",20150131 +43698011000036102,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013461000168106,"Voluven injection solution, 10 x 500 mL bags",20170930 +139221000036105,"Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005851000168106,"Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +36805011000036107,"Actonel Combi D (4 x 35 mg tablets, 24 x sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810521000168107,"Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack",20160630 +28181000036104,"MSUD Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725101000168109,"MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches",20151031 +76715011000036103,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872061000168103,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe",20170131 +77608011000036101,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet",900000000000526001,"REPLACED BY association reference set",861931000168109,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet",20161231 +56395011000036104,"Zantac 150 mg/10 mL oral liquid: solution, 280 mL",900000000000526001,"REPLACED BY association reference set",783921000168107,"Zantac 150 mg/10 mL oral liquid, 280 mL",20160531 +6503011000036105,"Creon 10 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847441000168105,"Creon 10 000 enteric capsule",20161130 +121571000036105,"Canesten Plus cream, 30 g, tube",900000000000526001,"REPLACED BY association reference set",715891000168101,"Canesten Plus cream, 30 g, tube",20150930 +108761000036108,"dressing hydrogel 5 cm x 200 cm ribbon, 10",900000000000526001,"REPLACED BY association reference set",1056281000168102,"dressing hydrophobic 5 cm x 200 cm ribbon, 10",20171231 +105501000036107,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe",900000000000526001,"REPLACED BY association reference set",703561000168108,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe",20150630 +929654011000036104,"Styptic Pencil (Covidien) 98.6% stick, 5 g, tube",900000000000526001,"REPLACED BY association reference set",846181000168108,"Styptic Pencil (Covidien) 98.6% stick, 5 g, tube",20161130 +19350011000036102,"Zovirax 800 mg dispersible tablet, 120, blister pack",900000000000526001,"REPLACED BY association reference set",859441000168102,"Zovirax Dispersible 800 mg tablet, 120, blister pack",20161231 +923848011000036103,"Levetiracetam (SZ) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003731000168106,"Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60, blister pack",20170930 +931845011000036104,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826761000168103,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, vial",20160930 +86727011000036100,"Aqueous Cream (David Craig) cream, 500 g",900000000000526001,"REPLACED BY association reference set",768311000168109,"Aqueous Cream APF (David Craig) cream, 500 g",20160331 +74947011000036101,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831131000168100,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack",20160930 +647701000168106,"Biostate 500 IU FVIII/1000 IU VWF (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",921971000168108,"Biostate (inert substance) diluent, 10 mL vial",20170430 +74386011000036101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825941000168106,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +63085011000036106,"cetylpyridinium chloride monohydrate 0.05% + benzocaine 0.4% mouthwash, 200 mL",900000000000526001,"REPLACED BY association reference set",994921000168103,"cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash, 200 mL",20170831 +74770011000036109,"Azep 140 microgram/actuation nasal spray, 20 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",809621000168100,"Azep 0.1% nasal spray, 20 mL, pump pack",20160630 +706401000168101,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831381000168102,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack",20160930 +34313011000036104,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",835581000168107,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL",20161031 +48585011000036103,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694401000168101,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape",20150331 +81041011000036106,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864371000168109,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags",20170131 +74821011000036104,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822651000168105,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160831 +67178011000036108,"Microshield Handrub solution, 500 mL",900000000000526001,"REPLACED BY association reference set",767641000168100,"Microshield Handrub solution, 500 mL",20160331 +681121000168104,"Cal-600 plus D tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862121000168100,"Cal-600 plus D film-coated tablet",20161231 +728371000168106,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872081000168107,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe",20170131 +75394011000036103,"Varicella zoster live attenuated vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831831000168106,"varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack",20160930 +60205011000036104,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",861431000168102,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2, blister pack",20161231 +711211000168109,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005951000168103,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +925140011000036104,"Omepro 20 mg capsule, 14, blister pack",900000000000526001,"REPLACED BY association reference set",716381000168103,"Omepro 20 mg enteric capsule, 14, blister pack",20150930 +75059011000036108,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",791911000168103,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray",20160531 +40731000036104,"Remeron 15 mg tablet: orally disintegrating",900000000000526001,"REPLACED BY association reference set",783811000168106,"Remeron Soltab 15 mg orally disintegrating tablet",20160531 +11452011000036100,"ADT Vaccine injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837291000168102,"ADT Vaccine injection suspension, 0.5 mL syringe",20161031 +761201000168105,"Lomotil uncoated tablet, 2",900000000000526001,"REPLACED BY association reference set",851071000168104,"Lomotil uncoated tablet, 2",20161130 +81712011000036109,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868351000168108,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag",20170131 +23157011000036106,"etoposide 1 g injection, vial",900000000000526001,"REPLACED BY association reference set",793581000168102,"etoposide phosphate 1.136 g (etoposide 1 g) injection, vial",20160531 +932392011000036100,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826781000168107,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack",20160930 +172441000036106,"Dronalen Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848591000168104,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack",20161130 +72131000036101,"salicylic acid 2% conditioner, 200 mL",900000000000526001,"REPLACED BY association reference set",764291000168102,"salicylic acid 2% conditioner, 200 mL",20160331 +74207011000036108,"Adacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837491000168103,"Adacel injection suspension, 0.5 mL vial",20161031 +19090011000036106,"Lanoxin 50 microgram/mL oral liquid: solution, 60 mL, bottle",900000000000526001,"REPLACED BY association reference set",735031000168101,"Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL, bottle",20151231 +61271011000036100,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715731000168107,"Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g, tube",20150930 +86755011000036106,"Calcia plus Vitamin D 200 IU chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860101000168108,"Calcia plus Vitamin D 200 IU chewable tablet, 120",20161231 +139291000036108,"Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006231000168106,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +711201000168106,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005941000168100,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +74817011000036103,"Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083731000168105,"Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL, pump pack",20180228 +108711000036106,"Sorbact (S98310) 10 cm x 10 cm foam dressing, 10",900000000000526001,"REPLACED BY association reference set",1056341000168101,"Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10",20171231 +34378011000036102,"Subutex 400 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",685821000168107,"Subutex 400 microgram sublingual tablet, 100",20150228 +921873011000036100,"Centrum Select 50 Plus tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",843251000168102,"Centrum Select 50 Plus film-coated tablet, 30, bottle",20161031 +11915011000036103,"ADT Booster injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837321000168105,"ADT Booster injection suspension, 0.5 mL syringe",20161031 +69921000036104,"exenatide 10 microgram/0.04 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",726801000168108,"exenatide 10 microgram/dose injection, dose",20151031 +1021111000168106,"Salofalk 500 mg granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084051000168104,"Salofalk 500 mg modified release granules, 50 sachets",20180228 +48544011000036105,"Monogen powder for oral liquid",900000000000526001,"REPLACED BY association reference set",949681000168101,"Monogen powder for oral liquid",20170630 +77393011000036101,"Centrum tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",833121000168102,"Centrum film-coated tablet, 30, bottle",20160930 +158361000036102,"Oxycontin Reformulation 20 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6512011000036100,"Oxycontin 20 mg modified release tablet",20170731 +924536011000036103,"Pemzo 20 mg capsule",900000000000526001,"REPLACED BY association reference set",716241000168102,"Pemzo 20 mg enteric capsule",20150930 +135981000036100,"Japanese encephalitis virus live vaccine",900000000000526001,"REPLACED BY association reference set",821491000168105,"Japanese encephalitis live vaccine",20160831 +11831011000036103,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729831000168106,"Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices",20171130 +162561000036102,"Moviprep Orange powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902161000168100,"Moviprep B powder for oral liquid, sachet",20170331 +22891000036109,"vespula spp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",759061000168108,"yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",20160229 +69622011000036101,"Cepacol Antibacterial Orange Citrus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995201000168102,"Cepacol Antibacterial Orange Citrus lozenge, 16, blister pack",20170831 +84414011000036100,"magnesium amino acid chelate + magnesium oxide heavy + magnesium phosphate tribasic pentahydrate + zinc oxide",900000000000526001,"REPLACED BY association reference set",750191000168107,"magnesium + zinc",20160131 +34284011000036106,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",835611000168100,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL",20161031 +59774011000036103,"Clotrimazole 6 Day (Guardian) 1% cream, 30 g, tube",900000000000526001,"REPLACED BY association reference set",715231000168101,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g, tube",20150930 +77285011000036108,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872961000168102,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",20170131 +78869011000036108,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",898011000168107,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices",20170331 +76807011000036107,"Centrum tablet: film-coated, 200",900000000000526001,"REPLACED BY association reference set",833411000168103,"Centrum film-coated tablet, 200",20160930 +51475011000036103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",710271000168107,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches",20151031 +74855011000036101,"Ipol injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839921000168101,"Ipol injection solution, 10 x 0.5 mL syringes",20161031 +925131011000036105,"First Aid (Amcal) cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",861521000168101,"First Aid (Amcal) cream, 50 g, tube",20161231 +19997011000036104,"Prodeine 15 uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835701000168109,"Prodeine 15 uncoated tablet, 20, blister pack",20161031 +27500011000036101,"paracetamol 500 mg + codeine phosphate 8 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",63448011000036100,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50",20161031 +20833011000036107,"Klacid Hp 7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",716001000168109,"Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack, composite pack",20150930 +74431011000036106,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert powder for oral liquid sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",821971000168101,"Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack",20160831 +83698011000036107,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873011000168108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",20170131 +57162011000036102,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715631000168104,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g",20150930 +20088011000036105,"Implanon 68 mg implant, 1, blister pack",900000000000526001,"REPLACED BY association reference set",732381000168109,"Implanon 68 mg implant, 1, applicator",20151130 +33582011000036108,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881181000168105,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device",20170228 +926121011000036106,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825461000168101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160930 +933231551000036105,"Naropin 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005021000168107,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +650831000168105,"Aquacel (403770) 2 cm x 45 cm rope, 5, carton",900000000000526001,"REPLACED BY association reference set",745051000168106,"Aquacel (403770) 2 cm x 45 cm ribbon, 5, carton",20160131 +29411000036105,"Vivaxim injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827331000168105,"Vivaxim injection suspension, 1 mL syringe",20160930 +91711000036107,"Femcream (Pharmacy Action) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715501000168105,"Femcream (Pharmacy Action) 1% vaginal cream, 35 g, tube",20150930 +40296011000036104,"Etopophos 500 mg injection: powder for, 500 mg vial",900000000000526001,"REPLACED BY association reference set",793501000168105,"Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 567.8 mg vial",20160531 +6473011000036108,"Botox 100 units injection: powder for, 100 units vial",900000000000526001,"REPLACED BY association reference set",720851000168109,"Botox 100 units powder for injection, 100 units vial",20151031 +83697011000036106,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873061000168106,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",20170131 +117601000036103,"Zoely, 84 tablets [3 x 28]",900000000000526001,"REPLACED BY association reference set",683951000168108,"Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28",20150131 +103781000036105,"Victoza 18 mg/3 mL injection: solution, 2 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748091000168106,"Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices",20160131 +155981000036104,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",862181000168101,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100",20161231 +693181000168100,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837411000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",20161031 +921381011000036107,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831931000168102,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack",20160930 +925351011000036101,"Pemzo 20 mg capsule, 500, bottle",900000000000526001,"REPLACED BY association reference set",716921000168101,"Pemzo 20 mg enteric capsule, 500, bottle",20150930 +74735011000036102,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825981000168101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160930 +77507011000036105,"sorbitol solution (70 per cent-non-crystallising) 1 mL/mL oral liquid",900000000000526001,"REPLACED BY association reference set",690601000168107,"sorbitol solution 70% non-crystallising oral liquid",20150331 +34803011000036104,"Subutex 400 microgram tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",685831000168105,"Subutex 400 microgram sublingual tablet, 100, bottle",20150228 +702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726211000168107,"PKU Anamix Junior Berry powder for oral liquid, 36 g sachet",20151031 +86732011000036104,"Emulsifying Ointment (David Craig) ointment, 500 g",900000000000526001,"REPLACED BY association reference set",770831000168104,"Emulsifying Ointment BP (David Craig) ointment, 500 g",20160331 +88521000036101,"Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",730021000168108,"Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial",20151130 +73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826101000168103,"Streptococcus pneumoniae type 4 conjugate antigen",20160930 +67339011000036105,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16",900000000000526001,"REPLACED BY association reference set",995371000168104,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16",20170831 +711461000168108,"Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004641000168109,"Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag",20170930 +81169011000036108,"Gastrolyte orange powder for oral liquid, 10 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871641000168101,"Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets",20170131 +53814011000036105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge",900000000000526001,"REPLACED BY association reference set",861411000168107,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge",20161231 +81147011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868241000168100,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",20170131 +127381000036107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725961000168107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 174 mL pouches",20151031 +156961000036100,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",862211000168102,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120, bottle",20161231 +925349011000036100,"Pemzo 20 mg capsule, 5, bottle",900000000000526001,"REPLACED BY association reference set",716791000168101,"Pemzo 20 mg enteric capsule, 5, bottle",20150930 +60201011000036101,"Daktarin 2% oral gel, 20 g, tube",900000000000526001,"REPLACED BY association reference set",820091000168105,"Daktarin 2% oral gel, 20 g, tube",20160731 +168961000036109,"dressing hydrofibre with silver 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745061000168108,"dressing hydrofibre with silver 2 cm x 45 cm ribbon",20160131 +9091000036100,"olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771821000168108,"olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 500 mL bag",20160430 +6259011000036109,"Lovan 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844351000168105,"Lovan 20 mg tablet",20161031 +664371000168101,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate heavy 250 mg/g powder for oral liquid",900000000000526001,"REPLACED BY association reference set",833691000168105,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid",20160930 +86161011000036107,"Kepcet 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003041000168100,"Kepcet-1000 1 g film-coated tablet, 60, blister pack",20170930 +83151000036107,"aspirin 100 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",23173011000036104,"aspirin 100 mg tablet",20160630 +697081000168108,"mesalazine 3 g granules, sachet",900000000000526001,"REPLACED BY association reference set",1084301000168101,"mesalazine 3 g modified release granules, sachet",20180228 +6392011000036103,"Repalyte powder for oral liquid, 4.9 g sachet",900000000000526001,"REPLACED BY association reference set",871911000168105,"Repalyte powder for oral liquid, 4.9 g sachet",20170131 +248051000168109,"Lophlex oral liquid: powder for, 27.8 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725171000168104,"PKU Lophlex Unflavoured powder for oral liquid, 27.8 g sachet",20151031 +31421000036100,"Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827171000168106,"Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160930 +34292011000036101,"Codeine Phosphate (Phebra) 50 mg/mL injection: solution, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",835661000168102,"Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules",20161031 +80653011000036107,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868391000168103,"Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags",20170131 +61211000036100,"Rehydration Formula Effervescent (Amcal) effervescent tablet",900000000000526001,"REPLACED BY association reference set",871721000168100,"Rehydration Formula Effervescent (Amcal) effervescent tablet",20170131 +806271000168105,"Repatha 140 mg/mL injection: solution, 3 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846441000168107,"Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices",20161130 +929648011000036109,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724461000168102,"PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches",20151031 +5225011000036108,"Fluoxebell 20 mg capsule",900000000000526001,"REPLACED BY association reference set",72926011000036108,"Fluoxebell 20 mg hard capsule",20160630 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836921000168108,"Streptococcus pneumoniae type 18C polysaccharide antigen",20161031 +78308011000036102,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 130",900000000000526001,"REPLACED BY association reference set",833311000168107,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 130",20160930 +663101000168105,"magnesium trisilicate + belladonna tincture + magnesium + bicarbonate",900000000000526001,"REPLACED BY association reference set",870941000168102,"magnesium trisilicate + belladonna tincture + magnesium carbonate + bicarbonate",20170131 +74429011000036108,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",826461000168109,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack",20160930 +697101000168101,"mesalazine 3 g granules, 30 sachets",900000000000526001,"REPLACED BY association reference set",1084321000168105,"mesalazine 3 g modified release granules, 30 sachets",20180228 +71283011000036105,"soap-soft 50 mg/mL enema, 1 mL bottle",900000000000526001,"REPLACED BY association reference set",685511000168102,"soft soap 50 mg/mL enema, 500 mL",20150228 +86603011000036108,"Emulsifying Ointment (David Craig)",900000000000526001,"REPLACED BY association reference set",770811000168109,"Emulsifying Ointment BP (David Craig)",20160331 +22023011000036103,"testosterone undecanoate 1 g/4 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",720541000168105,"testosterone undecanoate 1 g/4 mL modified release injection, ampoule",20151031 +23069011000036104,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, vial",900000000000526001,"REPLACED BY association reference set",721011000168105,"clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, vial",20151031 +682131000168105,"Reandron 1 g/4 mL injection: solution, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722941000168102,"Reandron-1000 1 g/4 mL modified release injection, 4 mL vial",20151031 +11917011000036108,"Comfarol Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835971000168102,"Comfarol Forte uncoated tablet, 20",20161031 +74256011000036101,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825971000168104,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160930 +83623011000036107,"Clotrimazole 6 Day (Apo) 1% cream",900000000000526001,"REPLACED BY association reference set",715771000168105,"Clotrimazole 6 Day (Apo) 1% vaginal cream",20150930 +702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726151000168101,"PKU Anamix Junior Vanilla powder for oral liquid, 36 g sachet",20151031 +67422011000036108,"Cepacol Antibacterial Orange Citrus lozenge, 2",900000000000526001,"REPLACED BY association reference set",995221000168106,"Cepacol Antibacterial Orange Citrus lozenge, 2",20170831 +177931000036106,"lixisenatide 10 microgram/0.2 mL injection, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719311000168100,"lixisenatide 10 microgram/dose injection, 14 doses",20150930 +2941000036100,"Clinoleic 20% injection: emulsion, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771761000168107,"Clinoleic 20% injection emulsion, 250 mL bag",20160430 +141501000036104,"lanreotide 60 mg injection, syringe",900000000000526001,"REPLACED BY association reference set",819561000168106,"lanreotide 60 mg/0.5 mL injection, syringe",20160731 +77142011000036107,"Sorbolene Cream with Glycerin (Orion) cream, 100 g, tube",900000000000526001,"REPLACED BY association reference set",705751000168104,"Sorbolene Cream with Glycerin (Orion) cream, 100 g, tube",20150731 +86474011000036103,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872311000168104,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag",20170131 +663151000168109,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",900000000000526001,"REPLACED BY association reference set",833581000168108,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",20160930 +50216011000036108,"PKU Cooler15 Purple oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725681000168105,"PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches",20151031 +36702011000036101,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850421000168100,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules",20161130 +927557011000036106,"meningococcal group Y (Neisseria meningitidis) conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824491000168107,"Neisseria meningitidis group Y conjugate antigen",20160930 +243091000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724251000168100,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL bottle",20151031 +18527011000036104,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850771000168105,"Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules",20161130 +933231761000036101,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004721000168105,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags",20170930 +74789011000036109,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845921000168102,"Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +88401000036107,"Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",729991000168103,"Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial",20151130 +931722011000036107,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872831000168101,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +933204871000036107,"Acris Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",852611000168108,"Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28",20161130 +26802011000036100,"diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837281000168100,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe",20161031 +13429011000036100,"Dysport 500 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721041000168109,"Dysport 500 units powder for injection, 1 vial",20151031 +9141000036107,"Clinoleic 20% injection: emulsion, 12 x 350 mL bags",900000000000526001,"REPLACED BY association reference set",779171000168103,"Clinoleic 20% injection emulsion, 12 x 350 mL bags",20160430 +39305011000036104,"Fludara 50 mg injection: powder for, 5 vials",900000000000526001,"REPLACED BY association reference set",710831000168105,"Fludara IV 50 mg powder for injection, 5 vials",20150831 +929647011000036108,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723991000168101,"PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets",20151031 +62047011000036100,"clotrimazole 10% cream",900000000000526001,"REPLACED BY association reference set",715571000168100,"clotrimazole 10% vaginal cream",20150930 +26886011000036100,"neomycin 3.5 mg/g + bacitracin zinc 400 international units/g ointment, 10 g",900000000000526001,"REPLACED BY association reference set",689851000168102,"neomycin 0.35% + bacitracin zinc 400 units/g ear ointment, 10 g",20150331 +75008011000036107,"Q fever inactivated vaccine 2.5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",955081000168105,"Q fever skin test injection, 0.5 mL vial",20170630 +929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724601000168101,"PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches",20151031 +67313011000036101,"Cepacol Antibacterial Honey and Lemon lozenge, 2",900000000000526001,"REPLACED BY association reference set",995091000168101,"Cepacol Antibacterial Honey and Lemon lozenge, 2",20170831 +177911000036102,"lixisenatide 20 microgram/0.2 mL injection, 2 x 14 unit doses",900000000000526001,"REPLACED BY association reference set",719341000168101,"lixisenatide 20 microgram/dose injection, 2 x 14 doses",20150930 +76153011000036103,"Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 20 mL vial",900000000000526001,"REPLACED BY association reference set",695501000168101,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 20 mL vial",20150430 +52076011000036103,"Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint, 25 mL",900000000000526001,"REPLACED BY association reference set",703151000168102,"Salicylic Acid APF (extemporaneous) 10% paint, 25 mL",20150531 +922136011000036102,"iopromide 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695301000168105,"iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle",20150430 +664281000168107,"magnesium trisilicate 50 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",833611000168101,"magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",20160930 +689421000168108,"Priorix-Tetra powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831271000168108,"Priorix-Tetra powder for injection, 10 vials",20160930 +84081011000036108,"Glycoprep-C Flavoured powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901091000168101,"Glycoprep-C powder for oral liquid, 70 g sachet",20170331 +75007011000036106,"Q fever inactivated vaccine 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",821561000168102,"Q fever vaccine injection, 0.5 mL syringe",20160831 +50530011000036105,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725221000168109,"PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets",20151031 +827981000168107,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846031000168106,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",20161130 +65282011000036103,"Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",684711000168107,"Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 50 mL vial",20150131 +34315011000036103,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",834791000168102,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100",20161031 +711551000168107,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004971000168108,"Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +74999011000036104,"Japanese encephalitis inactivated vaccine",900000000000526001,"REPLACED BY association reference set",822661000168107,"Japanese encephalitis (mouse brain-derived) inactivated vaccine",20160831 +75456011000036106,"Yellow fever live attenuated vaccine 1000 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",822291000168102,"yellow fever live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",20160831 +924215011000036105,"teriparatide 20 microgram injection, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726941000168101,"teriparatide 20 microgram/dose injection, 28 doses",20151031 +930004011000036102,"Menveo injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826671000168100,"MenA 10 microgram powder for injection, 10 microgram vial",20160930 +55666011000036103,"Clotrimazole 6 Day (Guardian) 1% cream, 30 g",900000000000526001,"REPLACED BY association reference set",715221000168104,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g",20150930 +924137011000036109,"omeprazole 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",716311000168109,"omeprazole 20 mg enteric capsule, 140",20150930 +54127011000036103,"Logicin Rapid Relief original flavour lozenge",900000000000526001,"REPLACED BY association reference set",861601000168106,"Logicin Rapid Relief original flavour lozenge",20161231 +4792011000036109,"Lanoxin 50 microgram/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",735011000168106,"Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution",20151231 +65891000036106,"Worming Tablet (Chemmart) 100 mg chewable tablet, 2, blister pack",900000000000526001,"REPLACED BY association reference set",844271000168109,"Worming Tablet (Chemmart) 100 mg tablet, 2, blister pack",20161031 +74976011000036100,"Haemophilus influenzae type b vaccine",900000000000526001,"REPLACED BY association reference set",832181000168105,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine",20160930 +60893011000036109,"Disprin Original 300 mg dispersible tablet, 96, strip pack",900000000000526001,"REPLACED BY association reference set",804241000168107,"Disprin Original 300 mg tablet, 96, strip pack",20160630 +125421000036107,"Perjeta 420 mg/14 mL injection solution, 14 mL vial",900000000000526001,"REPLACED BY association reference set",1085731000168106,"Perjeta 420 mg/14 mL concentrated injection, 14 mL vial",20180228 +13735011000036106,"Granocyte 13.4 million units (105 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838231000168102,"Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial",20161031 +39422011000036105,"Fludara 50 mg injection: powder for, 5 vials",900000000000526001,"REPLACED BY association reference set",710841000168101,"Fludara IV 50 mg powder for injection, 5 vials",20150831 +51881000036102,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL",900000000000526001,"REPLACED BY association reference set",751251000168102,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL",20160229 +19912011000036100,"Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722861000168105,"Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL, injection device",20151031 +932455011000036108,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",843291000168107,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 100",20161031 +76552011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg",900000000000526001,"REPLACED BY association reference set",705921000168109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg",20150731 +927556011000036108,"meningococcal group W135 conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824481000168109,"Neisseria meningitidis group W135 conjugate antigen",20160930 +93511000036100,"Ostelin Vitamin D and Calcium chewable tablet",900000000000526001,"REPLACED BY association reference set",861891000168101,"Ostelin Vitamin D and Calcium chewable tablet",20161231 +75343011000036108,"rabies inactivated vaccine 2.5 units injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack",900000000000526001,"REPLACED BY association reference set",821371000168102,"rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack",20160831 +923830011000036104,"Probitor Hp7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",715951000168103,"Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack, composite pack",20150930 +921075011000036103,"Gastrolyte Citrus effervescent tablet",900000000000526001,"REPLACED BY association reference set",871551000168100,"Gastrolyte Citrus effervescent tablet",20170131 +12781011000036107,"Panzytrat 25 000 units enteric capsule, 100",900000000000526001,"REPLACED BY association reference set",847661000168106,"Panzytrat 25 000 enteric capsule, 100",20161130 +22881000036107,"Albey Yellow Jacket Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",759071000168102,"Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack",20160229 +921934011000036107,"B-Dose (Biological Therapies) injection: solution, 6 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704571000168104,"B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials",20150630 +91761000036109,"Eco Krill soft capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",965911000168108,"Eco Krill 333.3 mg soft capsule, 30, bottle",20170731 +160491000036109,"Oxycontin Reformulation 20 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929122011000036108,"Oxycontin 20 mg modified release tablet, 28, blister pack",20170731 +761901000168104,"Co-Phenylcaine Forte nasal spray, 2.5 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",791951000168102,"Co-Phenylcaine Forte nasal spray, 2.5 mL, pump pack",20160531 +925341011000036104,"Omepro 20 mg capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",716851000168101,"Omepro 20 mg enteric capsule, 60, bottle",20150930 +156061000036104,"Istodax (1 x 10 mg vial, 1 x inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",828501000168108,"Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack",20160930 +21166011000036107,"Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726421000168101,"Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL, injection device",20151031 +134971000036103,"Japanese encephalitis virus live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",821521000168107,"Japanese encephalitis live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack",20160831 +924882011000036109,"Pemzo 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",716351000168105,"Pemzo 20 mg enteric capsule, 15",20150930 +921035011000036100,"B-Dose (Biological Therapies) injection: solution, 2.5 mL vial",900000000000526001,"REPLACED BY association reference set",704531000168102,"B-Dose Forte (Biological Therapies) injection solution, 2.5 mL vial",20150630 +923326011000036101,"Omeprazole (Pharmacor) 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717491000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 98",20150930 +59730011000036105,"Clotrimazole 6 Day (Guardian) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715251000168107,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g, tube",20150930 +650801000168103,"Aquacel (403770) 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745021000168103,"Aquacel (403770) 2 cm x 45 cm ribbon",20160131 +74325011000036100,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",821451000168100,"Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack",20160831 +13234011000036103,"Prodeine 15 uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835691000168109,"Prodeine 15 uncoated tablet, 20",20161031 +81713011000036102,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868471000168106,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags",20170131 +24021000168104,"Kaletra 400/100",900000000000526001,"REPLACED BY association reference set",689441000168102,"Kaletra",20150331 +13455011000036101,"Lomotil uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",851121000168104,"Lomotil uncoated tablet, 20",20161130 +923982011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",827411000168109,"pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe",20160930 +669511000168103,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728871000168102,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge",20151130 +95361000036107,"Menactra injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826571000168104,"Menactra injection solution, 0.5 mL vial",20160930 +74774011000036104,"Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826351000168101,"Meruvax II (1 x 1000 TCID50 vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",20160930 +924205011000036108,"omeprazole 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",716411000168100,"omeprazole 20 mg enteric capsule, 28",20150930 +69186011000036109,"Tinaderm Powder Spray 0.09% spray: pressurised, 100 g, aerosol can",900000000000526001,"REPLACED BY association reference set",769631000168100,"Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g, aerosol can",20160331 +932462011000036105,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872861000168109,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles",20170131 +695461000168101,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack",900000000000526001,"REPLACED BY association reference set",848001000168103,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack",20161130 +711631000168102,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005631000168104,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 20 mL ampoule",20170930 +33104011000036106,"Soflax tablet: film-coated",900000000000526001,"REPLACED BY association reference set",733631000168108,"Soflax (Ascent Pharma) film-coated tablet",20151130 +923388011000036106,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827471000168101,"Prevenar-13 injection suspension, 10 x 0.5 mL syringes",20160930 +107291000036105,"dressing hydrogel 10 cm x 10 cm dressing",900000000000526001,"REPLACED BY association reference set",1055461000168104,"dressing hydrophobic 10 cm x 10 cm dressing",20171231 +46412011000036108,"aciclovir 400 mg dispersible tablet, 70",900000000000526001,"REPLACED BY association reference set",800451000168103,"aciclovir 400 mg tablet, 70",20161031 +74248011000036104,"Gardasil injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",823071000168104,"Gardasil injection suspension, 10 x 0.5 mL vials",20160831 +176821000036101,"Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, 60 actuations, metered dose aerosol can",900000000000526001,"REPLACED BY association reference set",701521000168102,"Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations, cartridge",20150531 +81172011000036105,"Gastrolyte fruit powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871851000168103,"Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets",20170131 +107101000036107,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902151000168102,"ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, sachet",20170331 +925350011000036108,"Pemzo 20 mg capsule, 50, bottle",900000000000526001,"REPLACED BY association reference set",716861000168104,"Pemzo 20 mg enteric capsule, 50, bottle",20150930 +75364011000036100,"pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827551000168106,"pneumococcal 7 valent conjugate vaccine injection, 10 x 0.5 mL syringes",20160930 +8541000036109,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",721101000168106,"clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, 1 vial",20151031 +53647011000036103,"Anti Fungal V 3 Day (Amcal) 2% cream",900000000000526001,"REPLACED BY association reference set",714881000168100,"Anti Fungal V 3 Day (Amcal) 2% vaginal cream",20150930 +78136011000036104,"sorbitol solution (70 per cent-non-crystallising) 1 mL/mL oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",690621000168103,"sorbitol solution 70% non-crystallising oral liquid, 500 mL",20150331 +50224011000036108,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689181000168101,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll, carton",20150331 +933225641000036106,"Cerumol ear drops, 10 mL",900000000000526001,"REPLACED BY association reference set",854371000168103,"Cerumol ear drops, 10 mL",20161231 +74571000036100,"Salofalk 1 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084181000168107,"Salofalk 1 g modified release granules, 100 sachets",20180228 +691571000168108,"Reddycal 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",848131000168106,"Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48",20161130 +761791000168108,"macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium bicarbonate 1.69 g + sodium sulfate 5.68 g powder for oral liquid [1 x 68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",833831000168105,"macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid [68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack",20160930 +923961011000036108,"smallpox live vaccine injection, vial",900000000000526001,"REPLACED BY association reference set",821291000168106,"smallpox live vaccine injection, vial",20160831 +921552011000036106,"Sorbi Sorbitol 70% non-crystallising oral liquid: solution, 500 mL",900000000000526001,"REPLACED BY association reference set",690631000168100,"Sorbi 70% non-crystallising oral liquid solution, 500 mL",20150331 +689701000168108,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831341000168107,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20160930 +711801000168105,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005591000168104,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +134961000036106,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",821531000168105,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack",20160831 +757461000168108,"Ursodox 250 mg capsule: hard",900000000000526001,"REPLACED BY association reference set",765951000168102,"Ursodox (GH) 250 mg hard capsule",20160331 +703021000168109,"influenza virus quadrivalent vaccine 2015 injection, syringe",900000000000526001,"REPLACED BY association reference set",709771000168105,"influenza quadrivalent adult vaccine 2015 injection, 0.5 mL syringe",20150731 +74730011000036106,"Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821601000168102,"Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160831 +51801000036108,"Valvala 1 g film-coated tablet, 21",900000000000526001,"REPLACED BY association reference set",1009751000168103,"Valvala-1000 1 g film-coated tablet, 21",20170930 +75026011000036103,"hepatitis B vaccine 20 microgram/mL injection, vial",900000000000526001,"REPLACED BY association reference set",825311000168108,"hepatitis B adult vaccine 20 microgram/mL injection, vial",20160930 +46537011000036106,"sumatriptan 10 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728141000168102,"sumatriptan 10 mg/actuation nasal spray, 2 x 1 actuation",20151130 +11549011000036104,"Baraclude 500 microgram tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",829521000168108,"Baraclude 500 microgram film-coated tablet, 30",20160930 +44483011000036109,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",729151000168106,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack",20151130 +49447011000036108,"Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694031000168100,"Leukopor (2474) 5 cm x 5 m tape, 1 roll",20150331 +73630011000036100,"Haemophilus influenzae type b vaccine",900000000000526001,"REPLACED BY association reference set",827671000168103,"Haemophilus influenzae type b conjugate (PRP-OMP) antigen",20160930 +75033011000036106,"hepatitis B vaccine 5 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825881000168107,"hepatitis B child vaccine 5 microgram/0.5 mL injection, syringe",20160930 +127361000036102,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725861000168100,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 87 mL pouches",20151031 +74380011000036104,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",830891000168100,"Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",20160930 +76161011000036106,"Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 200 mL bottle",900000000000526001,"REPLACED BY association reference set",695771000168101,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 200 mL bottle",20150430 +156031000036105,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862221000168109,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60",20161231 +39933011000036104,"Voluven 6% / 0.9% injection solution, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",1013511000168109,"Voluven injection solution, 500 mL bottle",20170930 +41730011000036109,"Imigran S 10 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728151000168100,"Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation",20151130 +61442011000036108,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721441000168104,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL, bottle",20151031 +922688011000036109,"potassium citrate monohydrate 1.08 g (potassium 10 mmol) modified release tablet, 100",900000000000526001,"REPLACED BY association reference set",950741000168106,"potassium citrate 1.08 g (potassium 10 mmol) modified release tablet, 100",20170630 +83592011000036101,"Glycoprep-C Flavoured",900000000000526001,"REPLACED BY association reference set",64996011000036107,"Glycoprep-C",20170331 +702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726221000168100,"PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets",20151031 +722911000168101,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100",900000000000526001,"REPLACED BY association reference set",729271000168108,"Silver Nitrate Applicator (Grafco) stick, 100",20151130 +712011000168106,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005131000168106,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +929383011000036103,"Styptic Pencil (Covidien) 98.6% stick",900000000000526001,"REPLACED BY association reference set",846151000168101,"Styptic Pencil (Covidien) 98.6% stick",20161130 +922079011000036102,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet",900000000000526001,"REPLACED BY association reference set",757831000168103,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet",20160229 +241000168108,"Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 24 sachets",900000000000526001,"REPLACED BY association reference set",810581000168106,"Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets",20160630 +73861000036108,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",862081000168102,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120, bottle",20161231 +63248011000036101,"miconazole 2% oral gel, 30 g",900000000000526001,"REPLACED BY association reference set",820041000168102,"miconazole 2% oral gel, 30 g",20160731 +71953011000036102,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995211000168104,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 2",20170831 +27754011000036100,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 20",900000000000526001,"REPLACED BY association reference set",851021000168100,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 20",20161130 +19862011000036106,"Repalyte powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871931000168100,"Repalyte powder for oral liquid, 10 x 4.9 g sachets",20170131 +75530011000036101,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack",900000000000526001,"REPLACED BY association reference set",831111000168105,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack",20160930 +75520011000036104,"hepatitis B vaccine 10 microgram/mL injection, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825771000168101,"hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL vials",20160930 +26692011000036107,"risedronate sodium 35 mg tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack",900000000000526001,"REPLACED BY association reference set",852601000168105,"risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28",20161130 +75387011000036108,"human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823181000168100,"human papillomavirus bivalent vaccine injection, 10 x 0.5 mL syringes",20160831 +684001000168106,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838151000168101,"pneumococcal 23 valent vaccine injection, 0.5 mL syringe",20161031 +26687011000036108,"entecavir monohydrate 500 microgram tablet, 30",900000000000526001,"REPLACED BY association reference set",829511000168101,"entecavir 500 microgram tablet, 30",20160930 +933225321000036109,"Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726521000168102,"Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL",20151031 +933225711000036103,"ropivacaine hydrochloride monohydrate 400 mg/200 mL injection, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004651000168106,"ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags",20170930 +38708011000036108,"codeine phosphate 5 mg/mL oral liquid, 2 L",900000000000526001,"REPLACED BY association reference set",834931000168104,"codeine phosphate hemihydrate 5 mg/mL oral liquid, 2 L",20161031 +411041000168105,"MMA/PA Cooler 15 oral liquid: solution, 130 mL sachet",900000000000526001,"REPLACED BY association reference set",725241000168103,"MMA/PA Cooler 15 oral liquid solution, 130 mL pouch",20151031 +46166011000036107,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 10 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",1013521000168102,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bottles",20170930 +74998011000036107,"diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine",900000000000526001,"REPLACED BY association reference set",837621000168102,"diphtheria + tetanus + pertussis 3 component vaccine",20161031 +74898011000036103,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825841000168102,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826121000168107,"Streptococcus pneumoniae type 3 conjugate antigen",20160930 +86929011000036104,"calcium (as carbonate) 1 g (calcium 1 g) chewable tablet",900000000000526001,"REPLACED BY association reference set",859911000168109,"calcium carbonate 2.5 g (calcium 1 g) chewable tablet",20161231 +933220851000036101,"ropivacaine hydrochloride monohydrate 100 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004981000168106,"ropivacaine hydrochloride 100 mg/10 mL injection, ampoule",20170930 +56162011000036103,"Daktarin 2% oral gel, 40 g",900000000000526001,"REPLACED BY association reference set",820101000168100,"Daktarin 2% oral gel, 40 g",20160731 +927893011000036107,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705391000168105,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream",20150731 +127541000036109,"Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726631000168100,"Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose",20151031 +66605011000036107,"Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion, 500 mL",900000000000526001,"REPLACED BY association reference set",766791000168100,"Chlorhexidine Hand Lotion (Orion) lotion, 500 mL",20160331 +74801011000036109,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",827731000168109,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",20160930 +22084011000036106,"entecavir monohydrate 1 mg tablet",900000000000526001,"REPLACED BY association reference set",829441000168103,"entecavir 1 mg tablet",20160930 +31321000036109,"Movicol Chocolate solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674061000168101,"Movicol Chocolate powder for oral liquid, 8 sachets",20141031 +74747011000036106,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831821000168108,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack",20160930 +49530011000036102,"PKU Cooler20 Purple oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725821000168105,"PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches",20151031 +156021000036108,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 120",900000000000526001,"REPLACED BY association reference set",734041000168109,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 120",20161231 +29281000036103,"Typherix 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827131000168108,"Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes",20160930 +78258011000036101,"iopromide 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection, 10 x 200 mL bottles",900000000000526001,"REPLACED BY association reference set",695781000168103,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 200 mL bottles",20150430 +253701000168102,"PKU Lophlex LQ 10 oral liquid: solution, 62.5 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724431000168105,"PKU Lophlex LQ 10 Berry oral liquid solution, 62.5 mL pouch",20151031 +81706011000036105,"sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872531000168104,"sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 500 mL bag",20170131 +4047011000036104,"Panzytrat",900000000000526001,"REPLACED BY association reference set",846981000168106,"Panzytrat 25 000",20161130 +67274011000036104,"Panadol Children's 7+ Years 250 mg tablet: soluble, 12",900000000000526001,"REPLACED BY association reference set",721551000168101,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12",20151031 +711041000168104,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005921000168106,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +921445011000036105,"Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695181000168104,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles",20150430 +75045011000036108,"rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, syringe",900000000000526001,"REPLACED BY association reference set",822871000168102,"rotavirus live vaccine oral liquid, 1.5 mL syringe",20160831 +711611000168107,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005701000168100,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +933221011000036102,"Fluoride Bumble Bee Bubble Gum (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932351000168109,"Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam",20170531 +61122011000036107,"Difflam Lozenge orange sugar free lozenge, 8, blister pack",900000000000526001,"REPLACED BY association reference set",995871000168108,"Difflam Lozenge Orange Sugar Free lozenge, 8, blister pack",20170831 +81728011000036101,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871651000168104,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets",20170131 +706361000168105,"measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831401000168102,"measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack",20160930 +815011000168103,"Entrip 10 mg tablet, 250, bottle",900000000000526001,"REPLACED BY association reference set",856631000168102,"Entrip 10 mg film-coated tablet, 250, bottle",20161231 +63321000036100,"Worming Tablet (Chemmart) 100 mg chewable tablet, 2",900000000000526001,"REPLACED BY association reference set",844261000168103,"Worming Tablet (Chemmart) 100 mg tablet, 2",20161031 +21808011000036100,"zinc + phenylephrine",900000000000526001,"REPLACED BY association reference set",879421000168105,"zinc sulfate + phenylephrine",20170228 +69897011000036104,"cetylpyridinium chloride monohydrate 0.05% mouthwash",900000000000526001,"REPLACED BY association reference set",994951000168106,"cetylpyridinium chloride 0.05% mouthwash",20170831 +74940011000036102,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826441000168105,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20160930 +700027401000036109,"Probitor 20 mg capsule, 14 capsules, blister pack",900000000000526001,"REPLACED BY association reference set",715921000168106,"Probitor 20 mg enteric capsule, 14, blister pack",20150930 +159221000036109,"Oxycontin Reformulation 30 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928247011000036107,"Oxycontin 30 mg modified release tablet, 28",20170731 +921936011000036104,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",842821000168100,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60, bottle",20161031 +75002011000036109,"rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",826301000168100,"rubella live vaccine",20160930 +921960011000036108,"Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695141000168109,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials",20150430 +933203901000036105,"Levetiracetam (Lupin) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003511000168107,"Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60",20170930 +158331000036108,"Oxycontin Reformulation 15 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",65351011000036109,"Oxycontin 15 mg modified release tablet",20170731 +815111000168104,"Entrip 25 mg tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",856721000168107,"Entrip 25 mg film-coated tablet, 90, blister pack",20161231 +140821000036103,"Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006241000168102,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +933231841000036105,"Fluoride Bumble Bee Bubble Gum (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932381000168102,"Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL, aerosol can",20170531 +75526011000036101,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid [ 1 x 3 mL vial] (&) inert substance powder for oral liquid [1 x 5.6 g sachet], 1 pack",900000000000526001,"REPLACED BY association reference set",821911000168109,"cholera vaccine oral liquid [3 mL vial] (&) inert substance effervescent granules [5.6 g sachet], 1 pack",20160831 +74239011000036106,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825401000168102,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials",20160930 +924876011000036101,"Omepro 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",716761000168108,"Omepro 20 mg enteric capsule, 56",20150930 +712001000168108,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005121000168108,"Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +728691000168100,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005741000168103,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +74919011000036100,"Boostrix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837671000168101,"Boostrix injection suspension, 0.5 mL syringe",20161031 +243341000168103,"PKU Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724271000168109,"PKU Anamix Junior LQ Berry oral liquid solution, 125 mL bottle",20151031 +61849011000036107,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",804131000168108,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet",20160630 +50456011000036100,"PKU Cooler20 Purple oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725831000168108,"PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches",20151031 +63247011000036102,"miconazole 2% oral gel, 20 g",900000000000526001,"REPLACED BY association reference set",820071000168109,"miconazole 2% oral gel, 20 g",20160731 +71739011000036105,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 125 mL",900000000000526001,"REPLACED BY association reference set",767661000168101,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 125 mL",20160331 +76696011000036104,"Invite E High Potency Vitamin E 96% oil, 30 mL",900000000000526001,"REPLACED BY association reference set",842761000168101,"Invite E High Potency Vitamin E 96% oil, 30 mL",20161031 +148791000036107,"Nicorette Quickmist 1 mg/actuation oral spray, 1 actuation",900000000000526001,"REPLACED BY association reference set",1091941000168101,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray",20180331 +74859011000036104,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",822711000168102,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack",20160831 +78175011000036108,"calcium (as carbonate) 320.3 mg + calcium (as lactate gluconate) 680 mg tablet: effervescent, 10",900000000000526001,"REPLACED BY association reference set",745581000168108,"calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet, 10",20160131 +74795011000036106,"Twinrix injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",824601000168104,"Twinrix injection suspension, 10 x 1 mL syringes",20160930 +50932011000036102,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689241000168103,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape",20150331 +76823011000036105,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",861991000168108,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60",20161231 +836171000168106,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872321000168106,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",20170131 +82039011000036108,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick",900000000000526001,"REPLACED BY association reference set",729261000168102,"Silver Nitrate Applicator (Grafco) stick",20151130 +74258011000036102,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825651000168101,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe",20160930 +932843011000036101,"leuprorelin acetate 45 mg injection: modified release [1] (&) inert substance diluent [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",766141000168109,"leuprorelin acetate 45 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack",20160331 +76811011000036102,"Centrum tablet: film-coated, 8",900000000000526001,"REPLACED BY association reference set",833051000168106,"Centrum film-coated tablet, 8",20160930 +49501011000036102,"PKU Cooler10 Orange oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725551000168104,"PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches",20151031 +74761011000036107,"Cervarix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823171000168103,"Cervarix injection suspension, 0.5 mL syringe",20160831 +34700011000036105,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835621000168107,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL, bottle",20161031 +82033011000036105,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag",900000000000526001,"REPLACED BY association reference set",872391000168108,"Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag",20170131 +63249011000036109,"miconazole 2% oral gel, 40 g",900000000000526001,"REPLACED BY association reference set",818021000168104,"miconazole 2% oral gel, 40 g",20160731 +4678011000036105,"Cardiprin 100 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",803961000168101,"Cardiprin 100 mg tablet",20160630 +43611011000036105,"Keppra 1 g tablet: film-coated, 100, blister pack",900000000000526001,"REPLACED BY association reference set",721141000168108,"Keppra-1000 1 g film-coated tablet, 100, blister pack",20151031 +681141000168105,"Cal-600 plus D tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862161000168105,"Cal-600 plus D film-coated tablet, 60, bottle",20161231 +59733011000036102,"Clotrimazole 6 Day (Guardian) 1% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715201000168108,"Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g, tube",20150930 +41461011000036101,"Eleuphrat 0.05% lotion, 30 mL",900000000000526001,"REPLACED BY association reference set",1054611000168104,"Eleuphrat 0.05% lotion, 30 mL",20171231 +900052011000036103,"Voltaren Emulgel 1% gel, 20 g, tube",900000000000526001,"REPLACED BY association reference set",1037051000168103,"Voltaren Emulgel 1.16% gel, 20 g, tube",20171130 +55789011000036100,"Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715411000168107,"Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g",20150930 +700028641000036109,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810271000168105,"Actonel EC Combi D effervescent granules, 24 sachets",20160630 +21167011000036105,"Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726471000168100,"Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL, injection device",20151031 +475911000168104,"amino acid formula with vitamins and minerals without methionine oral liquid, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725121000168100,"amino acid formula with vitamins and minerals without methionine oral liquid, 125 mL pouch",20151031 +74931011000036108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846001000168104,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +684021000168102,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838171000168105,"Pneumovax-23 injection solution, 0.5 mL syringe",20161031 +18450011000036109,"Fluoxebell 20 mg capsule, 28, blister pack",900000000000526001,"REPLACED BY association reference set",73316011000036102,"Fluoxebell 20 mg hard capsule, 28, blister pack",20160630 +74996011000036108,"meningococcal group C polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",826391000168106,"meningococcal C conjugate vaccine",20161130 +56718011000036107,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4",900000000000526001,"REPLACED BY association reference set",996241000168108,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 4",20170831 +921037011000036105,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule",900000000000526001,"REPLACED BY association reference set",842791000168108,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule",20161031 +248051000168109,"Lophlex oral liquid: powder for, 27.8 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725201000168100,"PKU Lophlex Orange powder for oral liquid, 27.8 g sachet",20151031 +73798011000036103,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955091000168108,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",20170630 +4493011000036107,"Eligard 6 Month (leuprorelin acetate 45 mg) injection: modified release, syringe",900000000000526001,"REPLACED BY association reference set",766131000168100,"Eligard 6 Month (leuprorelin acetate 45 mg) modified release injection, 45 mg syringe",20160331 +463061000168109,"Lyxumia 20 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719271000168100,"Lyxumia 20 microgram/dose injection solution, 14 doses",20150930 +65278011000036105,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",705671000168104,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream",20150731 +373381000168102,"TYR Cooler 20 oral liquid: solution, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725951000168105,"TYR Cooler 20 oral liquid solution, 174 mL pouch",20151031 +23085011000036103,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet",900000000000526001,"REPLACED BY association reference set",851001000168109,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet",20161130 +702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726111000168102,"PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets",20151031 +22116011000036107,"atropine sulfate 600 microgram/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",850731000168107,"atropine sulfate monohydrate 600 microgram/mL injection, ampoule",20161130 +75398011000036105,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, 1 pack",900000000000526001,"REPLACED BY association reference set",840911000168102,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack",20161031 +13471000036109,"Dysport 300 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721121000168102,"Dysport 300 units powder for injection, 1 vial",20151031 +82524011000036108,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",834361000168108,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 100",20161031 +53608011000036107,"Cepacaine Oral Solution mouthwash",900000000000526001,"REPLACED BY association reference set",994911000168105,"Cepacaine Oral Solution mouthwash",20170831 +84437011000036104,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag",900000000000526001,"REPLACED BY association reference set",873001000168105,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag",20170131 +86912011000036104,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% oromucosal paste",900000000000526001,"REPLACED BY association reference set",797571000168105,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste",20160630 +19336011000036100,"Immucyst (1 x 660 million CFU (81 mg) vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",1046001000168103,"Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack",20171130 +926786011000036103,"Medi Creme cream, 25 g, tube",900000000000526001,"REPLACED BY association reference set",863481000168102,"Medi Creme cream, 25 g, tube",20170131 +67421011000036102,"Cepacol Antibacterial Orange Citrus lozenge, 16",900000000000526001,"REPLACED BY association reference set",995191000168100,"Cepacol Antibacterial Orange Citrus lozenge, 16",20170831 +54043011000036102,"Difflam Lozenge raspberry sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995881000168106,"Difflam Lozenge Raspberry Sugar Free lozenge",20170831 +53988011000036107,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721451000168102,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL",20151031 +827971000168109,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846021000168108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",20161130 +14051011000036109,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715351000168102,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g",20150930 +84390011000036104,"Glycoprep-C Flavoured powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901151000168105,"Glycoprep-C powder for oral liquid, 210 g sachet",20170331 +83437011000036102,"magnesium chloride 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",872161000168104,"magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, ampoule",20170131 +923444011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 15",900000000000526001,"REPLACED BY association reference set",717141000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 15",20150930 +6092011000036104,"Otocomb Otic ointment",900000000000526001,"REPLACED BY association reference set",758361000168104,"Otocomb Otic ear ointment",20160229 +933195931000036104,"Levetiracetam (Lupin) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003501000168109,"Levetiracetam 1000 (Lupin) 1 g film-coated tablet",20170930 +22714011000036107,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/mL ear drops",900000000000526001,"REPLACED BY association reference set",758311000168102,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops",20160229 +73861011000036108,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822881000168104,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",20160831 +933225991000036106,"Imigran 20 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728181000168107,"Imigran 20 mg/actuation nasal spray, 2 x 1 actuation",20151130 +689671000168107,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831251000168104,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20160930 +71559011000036105,"tolnaftate 0.09% spray, 100 g",900000000000526001,"REPLACED BY association reference set",769611000168105,"tolnaftate 0.09% (900 microgram/g) spray, 100 g",20160331 +922691011000036101,"Varicella zoster live attenuated vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",831751000168105,"varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack",20160930 +41221011000036108,"Voluven 6% / 0.9% injection solution, 20 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013421000168101,"Voluven injection solution, 20 x 500 mL bags",20170930 +19755011000036107,"Dapa-Tabs 2.5 mg tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",935691000168100,"Dapa-Tabs 2.5 mg film-coated tablet, 90, blister pack",20170531 +159211000036102,"Oxycontin Reformulation 40 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928482011000036101,"Oxycontin 40 mg modified release tablet, 28",20170731 +81130011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867921000168100,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",20170131 +933231561000036108,"Naropin 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004921000168107,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +77573011000036107,"iopromide 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695051000168107,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 mL vial",20150430 +82329011000036107,"Codalgin uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",836111000168103,"Codalgin uncoated tablet, 20, blister pack",20161031 +921398011000036102,"Citracal Plus D tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",859891000168107,"Citracal Plus D film-coated tablet, 60",20161231 +922088011000036100,"iopromide 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",696341000168103,"iopromide 499 mg (iodine 240 mg)/mL injection, 50 mL bottle",20150430 +20138011000036107,"Panadeine Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",836001000168100,"Panadeine Forte uncoated tablet, 20, blister pack",20161031 +76152011000036105,"Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 mL vial",900000000000526001,"REPLACED BY association reference set",695061000168109,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 mL vial",20150430 +34231000036101,"Tadim 1 million units (80 mg) powder for inhalation, 30 vials",900000000000526001,"REPLACED BY association reference set",818121000168103,"Tadim 1 million units powder for inhalation, 30 vials",20160731 +243091000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724221000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch",20151031 +74960011000036107,"hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",825191000168101,"hepatitis B vaccine",20160930 +933220291000036106,"Levitaccord 1000 mg 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003791000168105,"Levitaccord-1000 1 g film-coated tablet",20170930 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826061000168101,"Streptococcus pneumoniae type 9V conjugate antigen",20160930 +51404011000036107,"tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688851000168108,"tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll",20150331 +689001000168105,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",831181000168104,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial",20160930 +933231771000036109,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004871000168103,"Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags",20170930 +33645011000036104,"paper wasp venom",900000000000526001,"REPLACED BY association reference set",758871000168101,"paper wasp venom",20160229 +695471000168107,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848621000168102,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",20161130 +78314011000036106,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",833131000168104,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 60",20160930 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826131000168105,"Streptococcus pneumoniae type 7F conjugate antigen",20160930 +60570011000036109,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721771000168100,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL, bottle",20151031 +665461000168103,"PKU Cooler20 Gold oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725691000168108,"PKU Cooler 20 Gold oral liquid solution, 174 mL pouch",20151031 +45017011000036104,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, bottle",900000000000526001,"REPLACED BY association reference set",1013501000168106,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bottle",20170930 +82019011000036101,"Calsource Ca1000 tablet: effervescent",900000000000526001,"REPLACED BY association reference set",745571000168105,"Calsource Ca1000 effervescent tablet",20160131 +933221031000036106,"Fluoride Koala Berry (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932631000168107,"Fluoride (Laclede) Koala Berry Flavour foam",20170531 +77280011000036104,"Invite E High Potency Vitamin E 96% oil, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",842771000168107,"Invite E High Potency Vitamin E 96% oil, 30 mL, bottle",20161031 +74228011000036101,"Prevenar 16 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827561000168108,"Prevenar injection suspension, 10 x 0.5 mL syringes",20160930 +920656011000036106,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949361000168103,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, blister pack",20170630 +78310011000036101,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 150",900000000000526001,"REPLACED BY association reference set",833371000168104,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 150",20160930 +833821000168107,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, 7 dual chamber devices",900000000000526001,"REPLACED BY association reference set",975181000168109,"Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack",20170731 +6314011000036106,"Panamax Co uncoated tablet",900000000000526001,"REPLACED BY association reference set",836041000168103,"Panamax Co uncoated tablet",20161031 +37859011000036101,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose 320 mg/4 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",863561000168107,"bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, ampoule",20170131 +37633011000036107,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 5 x 2 mL vials",900000000000526001,"REPLACED BY association reference set",720801000168105,"Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials",20151031 +640901000168105,"Recombinate 500 IU (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",710871000168108,"Recombinate (inert substance) diluent, 10 mL vial",20150831 +65610011000036103,"Disprin Max 500 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",804351000168104,"Disprin Max 500 mg tablet",20160630 +67340011000036100,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2",900000000000526001,"REPLACED BY association reference set",995401000168101,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2",20170831 +22825011000036103,"fluoxetine 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844301000168106,"fluoxetine 20 mg tablet",20161031 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826021000168106,"Streptococcus pneumoniae type 23F conjugate antigen",20160930 +844471000168108,"Zovirax 200 mg tablet, 25, blister pack",900000000000526001,"REPLACED BY association reference set",859591000168109,"Zovirax Dispersible 200 mg tablet, 25, blister pack",20161231 +128461000036105,"Perjeta 420 mg/14 mL injection solution, 14 mL vial",900000000000526001,"REPLACED BY association reference set",1085741000168102,"Perjeta 420 mg/14 mL concentrated injection, 14 mL vial",20180228 +169831000036100,"dressing hydrofibre with silver 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745081000168104,"dressing hydrofibre with silver 2 cm x 45 cm ribbon, 5",20160131 +926182011000036108,"Medi Creme cream, 25 g",900000000000526001,"REPLACED BY association reference set",863471000168100,"Medi Creme cream, 25 g",20170131 +700171000168104,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",822581000168102,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack",20160831 +67321011000036109,"Disprin Max 500 mg dispersible tablet, 6",900000000000526001,"REPLACED BY association reference set",804391000168109,"Disprin Max 500 mg tablet, 6",20160630 +19698011000036102,"Movicol solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",673981000168107,"Movicol powder for oral liquid, 30 sachets",20141031 +921095011000036109,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet",900000000000526001,"REPLACED BY association reference set",950731000168102,"Urocit-K 1.08 g (potassium 10 mmol) modified release tablet",20170630 +69040011000036107,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705521000168104,"Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g, jar",20150731 +75367011000036106,"rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, 10 x 2 mL tubes",900000000000526001,"REPLACED BY association reference set",822511000168108,"rotavirus pentavalent live vaccine oral liquid, 10 x 2 mL tubes",20160831 +74846011000036106,"Co-Phenylcaine Forte nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",792041000168106,"Co-Phenylcaine Forte nasal spray, 15 mL, pump pack",20160531 +74895011000036109,"Spray-Tish menthol 0.118% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085421000168104,"Spray-Tish menthol 0.118% nasal spray, 15 mL, pump pack",20180228 +74716011000036103,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825921000168100,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20160930 +12180011000036108,"Kenacomb ointment, 15 g",900000000000526001,"REPLACED BY association reference set",758241000168109,"Kenacomb ointment, 15 g",20160229 +933226091000036102,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004761000168100,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags",20170930 +921986011000036108,"Gastrolyte Citrus effervescent tablet, 20, sachet",900000000000526001,"REPLACED BY association reference set",871581000168107,"Gastrolyte Citrus effervescent tablet, 20, sachet",20170131 +72141000036106,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL",900000000000526001,"REPLACED BY association reference set",764271000168103,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL",20160331 +36654011000036107,"Lanoxin 50 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735101000168107,"Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules",20151231 +669571000168106,"mercaptopurine 20 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",845371000168102,"mercaptopurine monohydrate 20 mg/mL oral liquid",20161130 +923442011000036107,"Omeprazole (Pharmacor) 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",717061000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 100",20150930 +80641011000036108,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868071000168102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",20170131 +74726011000036106,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825381000168102,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials",20160930 +933226161000036105,"fluoride 9.99 mg/g + hydrofluoric acid 4.9 mg/g foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932361000168106,"sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL",20170531 +51411011000036106,"tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689211000168102,"tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll",20150331 +728701000168100,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005751000168101,"Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 100 mL bag",20170930 +718801000168101,"Infanrix Hexa injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840891000168104,"Infanrix Hexa injection suspension, 0.5 mL syringe",20161031 +74794011000036107,"Twinrix injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824631000168106,"Twinrix injection suspension, 1 mL syringe",20160930 +860211000168101,"boric acid 8.6 mg (boron 1.5 mg) + calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet, 90",900000000000526001,"REPLACED BY association reference set",932971000168104,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet, 90",20170531 +11952011000036102,"Haldol Decanoate 50 mg/mL injection: solution, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",679751000168101,"Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules",20141231 +933220811000036100,"ropivacaine hydrochloride monohydrate 200 mg/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004531000168104,"ropivacaine hydrochloride 200 mg/100 mL injection, bag",20170930 +700371000168102,"ADT Booster injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837321000168105,"ADT Booster injection suspension, 0.5 mL syringe",20161031 +77539011000036108,"iopromide 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695591000168107,"iopromide 769 mg (iodine 370 mg)/mL injection, 50 mL bottle",20150430 +77407011000036100,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862001000168105,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60, bottle",20161231 +73800011000036100,"Engerix-B Adult 20 microgram/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",825321000168101,"Engerix-B Adult 20 microgram/mL injection suspension, vial",20160930 +85747011000036101,"Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848641000168108,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack",20161130 +71321000036107,"Artelac 0.2% / 1% eye gel, 10 g",900000000000526001,"REPLACED BY association reference set",719571000168102,"Artelac 0.2% / 1% eye gel, 10 g",20150930 +81692011000036101,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867821000168108,"glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag",20170131 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836951000168100,"Streptococcus pneumoniae type 20 polysaccharide antigen",20161031 +59685011000036100,"Anti Fungal V 6 Day (Amcal) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",714991000168109,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g, tube",20150930 +703661000168109,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826951000168102,"Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20160930 +81213011000036109,"calcium chloride dihydrate + glucose + lactate + magnesium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",861051000168104,"glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride",20161231 +80643011000036109,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868151000168105,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",20170131 +60748011000036108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",996281000168103,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2, blister pack",20170831 +75921000036109,"calcium (as carbonate) 500 mg (calcium 500 mg) chewable tablet",900000000000526001,"REPLACED BY association reference set",859701000168108,"calcium carbonate 1.25 g (calcium 500 mg) chewable tablet",20161231 +74262011000036105,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",831961000168105,"Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack",20160930 +87018011000036107,"calcium (as carbonate) 1 g (calcium 1 g) chewable tablet, 30",900000000000526001,"REPLACED BY association reference set",859931000168104,"calcium carbonate 2.5 g (calcium 1 g) chewable tablet, 30",20161231 +18550011000036101,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041051000168105,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device",20171130 +73803011000036108,"Infanrix Hexa injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",840891000168104,"Infanrix Hexa injection suspension, 0.5 mL syringe",20161031 +73853011000036100,"Mencevax ACWY (meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",827701000168102,"Mencevax ACWY (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial",20160930 +933220531000036107,"Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726481000168102,"Norditropin Flexpro 5 mg/1.5 mL injection solution",20151031 +48741000036106,"chlorhexidine gluconate 0.12% mouthwash",900000000000526001,"REPLACED BY association reference set",933196671000036101,"chlorhexidine gluconate 0.12% mouthwash",20160229 +86622011000036108,"Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726711000168103,"Anapen Auto-Injector 300 microgram/0.3 mL injection solution, dose",20151031 +73881011000036106,"Vaqta Adult 50 units/mL injection suspension, vial",900000000000526001,"REPLACED BY association reference set",824911000168106,"Vaqta Adult 50 units/mL injection suspension, vial",20160930 +706411000168103,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831391000168104,"M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack",20160930 +81703011000036104,"sodium acetate 3.9 mg/mL + calcium chloride 480 microgram/mL + citrate sodium dihydrate 1.7 mg/mL + magnesium chloride 300 microgram/mL + potassium chloride 750 microgram/mL + sodium chloride 6.4 mg/mL eye solution, 120 mL",900000000000526001,"REPLACED BY association reference set",834161000168105,"sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution, 120 mL",20161031 +71885011000036100,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995391000168103,"cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 2",20170831 +730601000168107,"Granisetron (AFT) 1 mg/mL injection: concentrated, ampoule",900000000000526001,"REPLACED BY association reference set",747101000168100,"Granisetron (AFT) 1 mg/mL injection solution, ampoule",20160131 +1021141000168105,"Salofalk 500 mg granules, 300 sachets",900000000000526001,"REPLACED BY association reference set",1084111000168101,"Salofalk 500 mg modified release granules, 300 sachets",20180228 +650811000168100,"dressing hydrofibre alternate to alginates 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745031000168100,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5",20160131 +925344011000036101,"Pemzo 20 mg capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",717381000168100,"Pemzo 20 mg enteric capsule, 100, bottle",20150930 +65298011000036104,"Ringworm 1% ointment",900000000000526001,"REPLACED BY association reference set",800411000168104,"Ringworm (Amneal) 1% ointment",20160630 +933221201000036108,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004791000168107,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 200 mL bag",20170930 +410821000168102,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 130 mL sachet",900000000000526001,"REPLACED BY association reference set",725231000168107,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 130 mL pouch",20151031 +37744011000036102,"calcium carbonate + colecalciferol",900000000000526001,"REPLACED BY association reference set",733951000168109,"calcium + colecalciferol",20161231 +78113011000036104,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 500 g",900000000000526001,"REPLACED BY association reference set",705801000168105,"glycerol 10% + cetomacrogol aqueous cream, 500 g",20150731 +815001000168101,"Entrip 10 mg tablet, 250",900000000000526001,"REPLACED BY association reference set",856621000168100,"Entrip 10 mg film-coated tablet, 250",20161231 +924211011000036108,"omeprazole 20 mg capsule, 7",900000000000526001,"REPLACED BY association reference set",716871000168105,"omeprazole 20 mg enteric capsule, 7",20150930 +697111000168103,"Salofalk 3 g granules, 30 sachets",900000000000526001,"REPLACED BY association reference set",1084331000168108,"Salofalk 3 g modified release granules, 30 sachets",20180228 +930673011000036101,"Menveo injection: suspension, 1 pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826721000168108,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack",20160930 +46167011000036105,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013441000168107,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bags",20170930 +700281000168108,"diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",837261000168109,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe",20161031 +5988011000036107,"ADT Vaccine injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837271000168103,"ADT Vaccine injection suspension, 0.5 mL syringe",20161031 +923448011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",717271000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 50",20150930 +733441000168101,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 1 dose",900000000000526001,"REPLACED BY association reference set",881171000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose",20170228 +39625011000036104,"Naropin",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711491000168101,"Naropin 0.75%",20150831 +680661000168107,"Zaldiar Combination Therapy film-coated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",1027861000168109,"Zaldiar film-coated tablet, 50, blister pack",20171031 +181711000036104,"Diprosone 0.05% lotion, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",1054651000168103,"Diprosone 0.05% lotion, 30 mL, bottle",20171231 +925164011000036104,"Pemzo 20 mg capsule, 98, blister pack",900000000000526001,"REPLACED BY association reference set",717701000168109,"Pemzo 20 mg enteric capsule, 98, blister pack",20150930 +711471000168102,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004661000168108,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +74725011000036104,"Gardasil injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823051000168108,"Gardasil injection suspension, 0.5 mL syringe",20160831 +664411000168100,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g, screw cap jar",900000000000526001,"REPLACED BY association reference set",833731000168103,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g, screw cap jar",20160930 +22711011000036109,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment",900000000000526001,"REPLACED BY association reference set",758211000168105,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment",20160229 +698471000168102,"Bexsero injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822831000168100,"Bexsero injection suspension, 10 x 0.5 mL syringes",20160831 +18333011000036108,"Cardiprin 100 mg dispersible tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",804041000168103,"Cardiprin 100 mg tablet, 90, blister pack",20160630 +844831000168107,"Zovirax 400 mg tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",859581000168106,"Zovirax Dispersible 400 mg tablet, 100, bottle",20161231 +87331011000036108,"Levetiracetam (Generic Health) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003341000168103,"Levetiracetam 1000 (Generic Health) 1 g film-coated tablet",20170930 +26731000036100,"Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827181000168109,"Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160930 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826071000168107,"Streptococcus pneumoniae type 6B conjugate antigen",20160930 +929474011000036104,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723981000168104,"PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets",20151031 +81612011000036100,"glucose 5% (5 g/100 mL) injection, 40 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863881000168100,"glucose monohydrate 5% (5 g/100 mL) injection, 40 x 100 mL bags",20170131 +60202011000036107,"Daktarin 2% oral gel, 30 g, tube",900000000000526001,"REPLACED BY association reference set",820061000168103,"Daktarin 2% oral gel, 30 g, tube",20160731 +933226001000036105,"sumatriptan 20 mg/actuation nasal spray, 2 actuations",900000000000526001,"REPLACED BY association reference set",728171000168109,"sumatriptan 20 mg/actuation nasal spray, 2 x 1 actuation",20151130 +137881000036100,"Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005901000168102,"Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule",20170930 +686841000168107,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL injection devices",900000000000526001,"REPLACED BY association reference set",698651000168108,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices",20150430 +78257011000036102,"iopromide 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695731000168104,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 100 mL bottles",20150430 +929474011000036104,"PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723951000168106,"PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets",20151031 +30586011000036108,"Cilamox sugar free 250 mg/5 mL powder for oral liquid, 100 mL",900000000000526001,"REPLACED BY association reference set",932911000168107,"Cilamox 250 mg/5 mL powder for oral liquid, 100 mL",20170531 +170301000168108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725331000168100,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 174 mL pouch",20151031 +79029011000036100,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL syringes, prefilled injection device",900000000000526001,"REPLACED BY association reference set",898021000168100,"Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices",20170331 +75513011000036103,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845901000168106,"meningococcal C conjugate vaccine injection, 0.5 mL syringe",20161130 +728781000168108,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006171000168103,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +933221021000036109,"Fluoride Tyranna Grape (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932571000168106,"Fluoride (Laclede) Tyranna Grape Flavour foam",20170531 +65554011000036109,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",864281000168103,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",20170131 +73632011000036101,"hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",824451000168102,"hepatitis B surface antigen",20161031 +13155011000036102,"Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722751000168103,"Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL",20151031 +76804011000036101,"Centrum tablet: film-coated, 130",900000000000526001,"REPLACED BY association reference set",833321000168100,"Centrum film-coated tablet, 130",20160930 +56684011000036106,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",648761000168106,"Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 100 mL",20151031 +66454011000036104,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",995141000168108,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16",20170831 +61117011000036100,"Difflam Lozenge honey and lemon sugar free lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",995751000168109,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24, blister pack",20170831 +142411000036109,"typhoid fever live attenuated oral vaccine enteric capsule",900000000000526001,"REPLACED BY association reference set",827241000168107,"typhoid live vaccine enteric capsule",20160930 +52180011000036101,"Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint, 25 mL, poison bottle",900000000000526001,"REPLACED BY association reference set",703161000168100,"Salicylic Acid APF (extemporaneous) 10% paint, 25 mL, poison bottle",20150531 +51259011000036103,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725911000168109,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 130 mL pouches",20151031 +73947011000036104,"Dukoral Effervescent Granules (inert substance) powder for oral liquid, 5.6 g sachet",900000000000526001,"REPLACED BY association reference set",821901000168106,"Dukoral (inert substance) effervescent granules, 5.6 g sachet",20160831 +101131000036108,"liraglutide 18 mg/3 mL injection, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748041000168103,"liraglutide 6 mg/mL injection, 3 mL injection device",20160131 +44517011000036109,"Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085281000168104,"Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations, pump pack",20180228 +36150011000036103,"Lanoxin 500 microgram/2 mL injection: solution, 2 mL ampoule",900000000000526001,"REPLACED BY association reference set",735051000168107,"Lanoxin Adult 500 microgram/2 mL injection solution, 2 mL ampoule",20151231 +70012011000036101,"salicylic acid 3% (30 mg/g) + aqueous cream 970 mg/g cream",900000000000526001,"REPLACED BY association reference set",705431000168100,"salicylic acid 3% + aqueous cream",20150731 +921380011000036100,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",831731000168104,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack",20160930 +65701000036105,"Adacel Polio injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",839771000168102,"Adacel Polio injection suspension, 0.5 mL vial",20161031 +828401000168107,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",846081000168107,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",20161130 +728621000168102,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005821000168103,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +933203961000036109,"Levetiracetam (LAPL) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003471000168103,"Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60",20170930 +11719011000036108,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041271000168106,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device",20171130 +84921011000036107,"Glycoprep powder for oral liquid, 200 g",900000000000526001,"REPLACED BY association reference set",851561000168101,"Glycoprep powder for oral liquid, 200 g sachet",20161130 +48775011000036109,"Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689201000168100,"Leukoplast (1072) 5 cm x 2.5 m tape",20150331 +70001000036108,"Artelac 0.2% / 1% eye gel, 600 mg unit dose",900000000000526001,"REPLACED BY association reference set",719601000168108,"Artelac 0.2% / 1% eye gel, 600 mg unit dose",20150930 +57206011000036100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715691000168100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g",20150930 +113111000036101,"Pico-Salax powder for oral liquid, 16.1 g sachet",900000000000526001,"REPLACED BY association reference set",902091000168106,"Pico-Salax powder for oral liquid, 16.1 g sachet",20170331 +921576011000036107,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",832021000168105,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack",20160930 +924207011000036103,"omeprazole 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",716641000168104,"omeprazole 20 mg enteric capsule, 50",20150930 +75399011000036102,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, 10 packs",900000000000526001,"REPLACED BY association reference set",840991000168106,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack",20161031 +140831000036101,"Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005891000168101,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +9021000036103,"Clinoleic 20% injection: emulsion, 24 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",771931000168102,"Clinoleic 20% injection emulsion, 24 x 100 mL bags",20160430 +56932011000036109,"Logicin Rapid Relief original flavour lozenge, 16",900000000000526001,"REPLACED BY association reference set",861611000168109,"Logicin Rapid Relief original flavour lozenge, 16",20161231 +931845011000036104,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826661000168106,"meningococcal A conjugate vaccine injection, vial",20160930 +80421000036104,"aflibercept 2 mg/0.05 mL injection, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703521000168103,"aflibercept 4 mg/0.1 mL injection, 0.1 mL vial",20150630 +44076011000036104,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693441000168101,"Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules",20150331 +56779011000036108,"Difflam Cough Lozenge blackcurrant sugar free lozenge, 24",900000000000526001,"REPLACED BY association reference set",995551000168101,"Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24",20170831 +75641000036107,"risedronate sodium 35 mg enteric tablet [1] (&) calcium (as carbonate) 500 mg tablet [6], 7",900000000000526001,"REPLACED BY association reference set",852671000168100,"risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7",20161130 +77141011000036101,"Sorbilax 1 mL/mL oral liquid: solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",690671000168102,"Sorbilax 70% non-crystallising oral liquid solution, 500 mL, bottle",20150331 +55825011000036107,"Clotrimazole 3 Day (Guardian) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715161000168103,"Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g",20150930 +49528011000036103,"PKU Cooler10 Purple oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725581000168106,"PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches",20151031 +932381011000036107,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder, 10 sachets",900000000000526001,"REPLACED BY association reference set",932365011000036106,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 10 sachets",20160731 +77548011000036101,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle",900000000000526001,"REPLACED BY association reference set",872921000168107,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle",20170131 +62018011000036107,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride monohydrate 1.33 mg + pholcodine 5.5 mg lozenge",900000000000526001,"REPLACED BY association reference set",995521000168109,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge",20170831 +1085491000168102,"influenza trivalent geriatric vaccine 2018 injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122631000168107,"influenza trivalent geriatric vaccine 2018 injection, 5 x 0.5 mL syringes",20180430 +74424011000036107,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825781000168103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials",20160930 +49440011000036107,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694201000168102,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll",20150331 +931755011000036103,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861301000168101,"Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack",20161231 +74101000036101,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",764311000168103,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL, bottle",20160331 +80673011000036105,"Gastrolyte fruit powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871811000168104,"Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets",20170131 +925136011000036100,"Omepro 20 mg capsule, 500, blister pack",900000000000526001,"REPLACED BY association reference set",716701000168107,"Omepro 20 mg enteric capsule, 500, blister pack",20150930 +23291011000036105,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",1007181000168102,"insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection device",20170930 +6220011000036102,"Cal Sup 500 mg (calcium 500 mg) chewable tablet",900000000000526001,"REPLACED BY association reference set",859711000168106,"Cal Sup 1.25 g (calcium 500 mg) chewable tablet",20161231 +928904011000036109,"Oxynorm 50 mg/mL intravenous infusion injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",1055151000168109,"Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules",20171231 +137901000036102,"ropivacaine hydrochloride monohydrate 50 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1005961000168101,"ropivacaine hydrochloride 50 mg/10 mL injection, ampoule",20170930 +42701000036105,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 30 x 130 mL sachets",900000000000526001,"REPLACED BY association reference set",725251000168101,"amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 30 x 130 mL pouches",20151031 +653691000168104,"Retinofluor 1 g/10 mL injection: solution, 10 mL vial",900000000000526001,"REPLACED BY association reference set",721841000168101,"Retinofluor 10% 1 g/10 mL injection solution, 10 mL vial",20151031 +929985011000036105,"Lemsip Max Cold and Flu Direct with Decongestant powder, 1 sachet",900000000000526001,"REPLACED BY association reference set",815881000168102,"Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 1 sachet",20160731 +156801000036108,"Pecfent 400 microgram/actuation nasal spray, 8 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1055061000168107,"Pecfent 400 microgram/actuation nasal spray, 8 actuations, pump pack",20171231 +76622011000036107,"Sandocal 1000 tablets: effervescent, 10",900000000000526001,"REPLACED BY association reference set",745621000168108,"Sandocal 1000 effervescent tablet, 10",20160131 +930869011000036104,"Elevit with Iodine tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",843191000168104,"Elevit with Iodine film-coated tablet, 30",20161031 +711481000168104,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004671000168102,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +28651000036102,"diclofenac sodium 1% gel, 75 g",900000000000526001,"REPLACED BY association reference set",1037101000168103,"diclofenac diethylamine 1.16% gel, 75 g",20171130 +63122011000036104,"hydrocortisone 1% spray, 30 mL",900000000000526001,"REPLACED BY association reference set",776881000168101,"hydrocortisone 1% spray, 30 mL",20160430 +74989011000036103,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",839841000168103,"polio trivalent inactivated vaccine",20161031 +65193011000036106,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture",900000000000526001,"REPLACED BY association reference set",688401000168106,"Friars' Balsam Compound Benzoin (Gold Cross) tincture",20150331 +89881000036109,"Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",730061000168103,"Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial",20151130 +702651000168104,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837421000168100,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",20161031 +930611011000036108,"Medi Quattro First Aid cream, 50 g",900000000000526001,"REPLACED BY association reference set",863541000168108,"Medi Quattro First Aid cream, 50 g",20170131 +681151000168107,"Cal-600 plus D tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",862131000168102,"Cal-600 plus D film-coated tablet, 100",20161231 +74863011000036106,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",824941000168105,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial",20160930 +925347011000036107,"Pemzo 20 mg capsule, 28, bottle",900000000000526001,"REPLACED BY association reference set",716481000168106,"Pemzo 20 mg enteric capsule, 28, bottle",20150930 +77143011000036100,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L, pump pack",900000000000526001,"REPLACED BY association reference set",706001000168107,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L, pump pack",20150731 +69896011000036102,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge",900000000000526001,"REPLACED BY association reference set",995111000168109,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge",20170831 +34805011000036103,"Subutex 8 mg tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",685721000168101,"Subutex 8 mg sublingual tablet, 100, bottle",20150228 +143941000036109,"Tecfidera 240 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756361000168100,"Tecfidera 240 mg enteric capsule",20160229 +86460011000036104,"bisacodyl 5 mg enteric tablet [3] (&) citric acid 14 g + magnesium carbonate heavy 7.5 g powder for oral liquid [1 x 21.5 g sachet], 1 pack",900000000000526001,"REPLACED BY association reference set",830961000168100,"bisacodyl 5 mg enteric tablet [3] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack",20160930 +706301000168109,"mumps virus (Jeryl Lynn B level) live vaccine",900000000000526001,"REPLACED BY association reference set",829851000168103,"mumps virus live antigen",20160930 +145311000036108,"dimethyl fumarate 120 mg capsule: modified release, 14",900000000000526001,"REPLACED BY association reference set",756241000168105,"dimethyl fumarate 120 mg enteric capsule, 14",20160229 +85341011000036108,"Levetiracetam (Chemmart) 1 g tablet",900000000000526001,"REPLACED BY association reference set",1003271000168102,"Levetiracetam 1000 (Chemmart) 1 g tablet",20170930 +44077011000036101,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693261000168103,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules",20150331 +75103011000036109,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837631000168104,"diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe",20161031 +33776011000036104,"leuprorelin acetate 30 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",698521000168104,"leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack",20150731 +78371000036104,"Clopidogrel/Aspirin 75/100 (Apo) tablet",900000000000526001,"REPLACED BY association reference set",923061000168104,"Clopidogrel/Aspirin 75/100 (Apo) coated tablet",20170430 +73806011000036102,"Meruvax II (rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",826321000168109,"Meruvax II (rubella live vaccine) powder for injection, vial",20160930 +161401000036109,"Cardiprin 100 mg dispersible tablet, 180, blister pack",900000000000526001,"REPLACED BY association reference set",804121000168105,"Cardiprin 100 mg tablet, 180, blister pack",20160630 +48518011000036106,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689251000168101,"Leukoplast (1073) 7.5 cm x 2.5 m tape",20150331 +925147011000036103,"Omepro 20 mg capsule, 100, blister pack",900000000000526001,"REPLACED BY association reference set",716231000168106,"Omepro 20 mg enteric capsule, 100, blister pack",20150930 +925348011000036108,"Pemzo 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",716741000168109,"Pemzo 20 mg enteric capsule, 30, bottle",20150930 +28211000036103,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725141000168106,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 125 mL pouches",20151031 +81285011000036107,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867721000168102,"glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag",20170131 +61441000036100,"Quick-Eze chewable tablet",900000000000526001,"REPLACED BY association reference set",833651000168100,"Quick-Eze chewable tablet",20160930 +924883011000036102,"Pemzo 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",716431000168105,"Pemzo 20 mg enteric capsule, 28",20150930 +697121000168105,"Salofalk 3 g granules, 30 sachets",900000000000526001,"REPLACED BY association reference set",1084341000168104,"Salofalk 3 g modified release granules, 30 sachets",20180228 +806111000168107,"Repatha 140 mg/mL injection: solution, 1 mL injection device",900000000000526001,"REPLACED BY association reference set",846391000168108,"Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device",20161130 +20211011000036105,"Dysport 500 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721051000168106,"Dysport 500 units powder for injection, 1 vial",20151031 +922686011000036105,"paracetamol 500 mg + codeine phosphate 30 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",835841000168100,"paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50",20161031 +924535011000036105,"Omepro 20 mg capsule",900000000000526001,"REPLACED BY association reference set",716201000168104,"Omepro 20 mg enteric capsule",20150930 +50923011000036107,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689291000168106,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape",20150331 +691661000168101,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848191000168105,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack",20161130 +653321000168109,"Molaxole solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674231000168100,"Molaxole powder for oral liquid, 8 sachets",20141031 +73801000036109,"Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746801000168105,"Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +933231471000036101,"Cerumol ear drops, 10 mL, bottle",900000000000526001,"REPLACED BY association reference set",854381000168100,"Cerumol ear drops, 10 mL, bottle",20161231 +60625011000036105,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721471000168106,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL, bottle",20151031 +933231581000036103,"Naropin 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004621000168103,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +110361000036105,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10, carton",900000000000526001,"REPLACED BY association reference set",1056301000168103,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10, carton",20171231 +48558011000036101,"Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694111000168109,"Leukosilk (1024) 5 cm x 5 m tape",20150331 +70161000036108,"exenatide 5 microgram/0.02 mL injection, unit dose",900000000000526001,"REPLACED BY association reference set",726751000168102,"exenatide 5 microgram/dose injection, dose",20151031 +31241000036109,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",685981000168100,"Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack",20150228 +728581000168102,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006061000168105,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +81613011000036107,"glucose 5% (5 g/100 mL) injection, 50 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863911000168100,"glucose monohydrate 5% (5 g/100 mL) injection, 50 x 100 mL bags",20170131 +703291000168104,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",828061000168100,"Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20160930 +51953011000036100,"Salicylic Acid Paint (extemporaneous)",900000000000526001,"REPLACED BY association reference set",63591000168101,"Salicylic Acid APF (extemporaneous)",20150531 +251901000168103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL can",900000000000526001,"REPLACED BY association reference set",724421000168107,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL pouch",20151031 +91531000036108,"Zytiga 250 mg tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",863381000168105,"Zytiga 250 mg uncoated tablet, 120, bottle",20170131 +930640011000036105,"Lemsip Max Cold and Flu Direct with Decongestant powder, 10 sachets",900000000000526001,"REPLACED BY association reference set",815891000168104,"Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets",20160731 +695641000168103,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848581000168102,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",20161130 +74778011000036106,"Azep 140 microgram/actuation nasal spray, 5 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",809561000168109,"Azep 0.1% nasal spray, 5 mL, pump pack",20160630 +698451000168106,"Bexsero injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822811000168105,"Bexsero injection suspension, 0.5 mL syringe",20160831 +924202011000036100,"omeprazole 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",716251000168100,"omeprazole 20 mg enteric capsule, 100",20150930 +663781000168101,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension",900000000000526001,"REPLACED BY association reference set",833501000168100,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension",20160930 +74932011000036102,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846031000168106,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",20161130 +921032011000036108,"MD-Gastroview solution, 120 mL bottle",900000000000526001,"REPLACED BY association reference set",696061000168101,"MD-Gastroview solution",20150430 +86185011000036107,"Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872371000168107,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag",20170131 +12764011000036107,"Anzemet 100 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",703371000168108,"Anzemet 100 mg/5 mL injection solution, 5 mL ampoule",20150630 +4396011000036107,"Questran",900000000000526001,"REPLACED BY association reference set",35521000168109,"Questran Lite",20171130 +37663011000036102,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube",900000000000526001,"REPLACED BY association reference set",850931000168109,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube",20161130 +662421000168102,"Metformin Hydrochloride (AN) 1 g film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",949401000168107,"Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90",20170630 +664301000168106,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",900000000000526001,"REPLACED BY association reference set",833631000168106,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle",20160930 +933231241000036109,"Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726501000168106,"Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL, injection device",20151031 +933220981000036100,"Fluoride Moose Mallow (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932541000168104,"Fluoride (Laclede) Moose Mallow Flavour foam",20170531 +815161000168101,"Entrip 50 mg tablet",900000000000526001,"REPLACED BY association reference set",856771000168108,"Entrip 50 mg film-coated tablet",20161231 +933221221000036103,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004691000168101,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 100 mL bag",20170930 +923336011000036103,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",821321000168103,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack",20160831 +130301000036104,"MSUD Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725371000168102,"MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches",20151031 +119701000036104,"clotrimazole 1% + hydrocortisone (as acetate) 1% cream",900000000000526001,"REPLACED BY association reference set",37823011000036100,"hydrocortisone 1% + clotrimazole 1% cream",20150930 +9121000036104,"Clinoleic 20% injection: emulsion, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779131000168101,"Clinoleic 20% injection emulsion, 350 mL bag",20160430 +373151000168106,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725941000168108,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 174 mL pouch",20151031 +2439011000036108,"pancrelipase",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",846131000168107,"amylase",20161130 +65258011000036108,"Soap Enema (Orion) 50 mg/mL enema, bottle",900000000000526001,"REPLACED BY association reference set",685501000168100,"Soap Enema (Orion) 50 mg/mL enema",20150228 +74970011000036103,"rabies inactivated vaccine",900000000000526001,"REPLACED BY association reference set",821341000168109,"rabies vaccine",20160831 +923734011000036107,"Omeprazole (Pharmacor) 20 mg capsule, 56, blister pack",900000000000526001,"REPLACED BY association reference set",717341000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 56, blister pack",20150930 +81693011000036108,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",867851000168100,"glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags",20170131 +806081000168102,"Repatha 140 mg/mL injection: solution, injection device",900000000000526001,"REPLACED BY association reference set",846371000168107,"Repatha Sureclick 140 mg/mL injection solution, injection device",20161130 +76038011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream",900000000000526001,"REPLACED BY association reference set",705831000168103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream",20150731 +67424011000036104,"Aqium 66% gel, 375 mL",900000000000526001,"REPLACED BY association reference set",730521000168102,"Aqium 66% gel, 375 mL",20151130 +923447011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",717251000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 5",20150930 +50403011000036103,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll, wrapping",900000000000526001,"REPLACED BY association reference set",688871000168104,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll, wrapping",20150331 +93401000036101,"meningococcal group A conjugate vaccine 4 microgram + meningococcal group C conjugate vaccine 4 microgram + meningococcal group W135 conjugate vaccine 4 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 4 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826531000168102,"meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial",20160930 +920850011000036104,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",733981000168102,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60",20161231 +921395011000036108,"Berocca Performance Original effervescent tablet, 15",900000000000526001,"REPLACED BY association reference set",829721000168100,"Berocca Performance Original effervescent tablet, 15",20160930 +716031000168102,"MenA 10 microgram powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",826671000168100,"MenA 10 microgram powder for injection, 10 microgram vial",20160930 +117611000036101,"nomegestrol acetate 2.5 mg + oestradiol 1.5 mg tablet [72] (&) inert substance tablet [12], 1 pack",900000000000526001,"REPLACED BY association reference set",683941000168106,"nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet [24] (&) inert substance tablet [4], 3 x 28",20150131 +923903011000036108,"Omeprazole (Pharmacor) 20 mg capsule, 5, bottle",900000000000526001,"REPLACED BY association reference set",717261000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 5, bottle",20150930 +5176011000036103,"Canesten Clotrimazole Thrush Treatment 6 Day 1% cream",900000000000526001,"REPLACED BY association reference set",715061000168102,"Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream",20150930 +1611000036101,"Dysport 300 units injection: powder for, 300 units vial",900000000000526001,"REPLACED BY association reference set",721091000168101,"Dysport 300 units powder for injection, 300 units vial",20151031 +70160011000036106,"chlorhexidine gluconate 0.5% + ethanol 70% solution",900000000000526001,"REPLACED BY association reference set",70161011000036104,"chlorhexidine gluconate 0.5% + ethanol 70% solution",20160331 +41562011000036103,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693381000168103,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules",20150331 +81050011000036102,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864401000168107,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags",20170131 +75440011000036106,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 25 mL",900000000000526001,"REPLACED BY association reference set",792051000168108,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 25 mL",20160531 +85089011000036101,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, sachet",900000000000526001,"REPLACED BY association reference set",851531000168109,"macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet",20161130 +652281000168106,"Cal-500 500 mg (calcium 500 mg) chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",859771000168103,"Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60, bottle",20161231 +35716011000036101,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 23.3 mg (0.32 mmol potassium) + sodium bicarbonate 89.25 mg solution, 1 sachet",900000000000526001,"REPLACED BY association reference set",674101000168103,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 1 sachet",20141031 +104201000036108,"Irbesartan (Apo) 75 mg tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",807761000168106,"Irbesartan (Apo) 75 mg film-coated tablet, 30, blister pack",20160630 +7076011000036109,"Citracal 250 mg (calcium 250 mg) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",860031000168102,"Citracal 1.19 g (calcium 250 mg) film-coated tablet",20161231 +157051000036104,"tenofovir + emtricitabine + elvitegravir + cobicistat",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",851321000168102,"tenofovir alafenamide + emtricitabine + elvitegravir + cobicistat",20161130 +85704011000036103,"Levetiracetam (Apo) 1 g tablet, 100",900000000000526001,"REPLACED BY association reference set",1003191000168109,"Levetiracetam 1000 (Apo) 1 g tablet, 100",20170930 +88531000036104,"Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",730051000168100,"Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial",20151130 +85384011000036103,"Kepcet 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003021000168106,"Kepcet-1000 1 g film-coated tablet",20170930 +48472011000036107,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689151000168108,"Leukoplast (1071) 2.5 cm x 2.5 m tape",20150331 +87112011000036101,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g",900000000000526001,"REPLACED BY association reference set",705781000168106,"Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g",20150731 +22939011000036108,"pancreatic extract 25 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847371000168105,"lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule",20161130 +925353011000036100,"Pemzo 20 mg capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",717521000168108,"Pemzo 20 mg enteric capsule, 60, bottle",20150930 +1979011000036106,"codeine phosphate",900000000000527005,"SAME AS association reference set",51924011000036104,"codeine phosphate hemihydrate",20161031 +27359011000036100,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/g ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758281000168104,"triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g",20160229 +107101000036107,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902131000168108,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid, sachet",20170331 +74261011000036104,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831841000168102,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack",20160930 +1021191000168102,"mesalazine 1 g granules, 150 sachets",900000000000526001,"REPLACED BY association reference set",1084191000168105,"mesalazine 1 g modified release granules, 150 sachets",20180228 +689621000168106,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",900000000000526001,"REPLACED BY association reference set",831211000168100,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack",20160930 +4913011000036109,"Humira 40 mg/0.8 mL injection solution, 0.8 mL cartridge",900000000000526001,"REPLACED BY association reference set",729811000168101,"Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device",20171130 +33346011000036102,"Femizol Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715521000168101,"Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g",20150930 +86228011000036108,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 25.1 mg (0.34 mmol potassium) + sodium bicarbonate 89.25 mg solution, 1 sachet",900000000000526001,"REPLACED BY association reference set",674151000168104,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 1 sachet",20141031 +63251000036102,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871761000168105,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20",20170131 +74903011000036100,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1082841000168101,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack",20180228 +82402011000036100,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",860471000168108,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120, bottle",20161231 +141761000036107,"lanreotide 90 mg injection, 1 syringe",900000000000526001,"REPLACED BY association reference set",819531000168103,"lanreotide 90 mg/0.5 mL injection, 0.5 mL syringe",20160731 +59768011000036102,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721721000168101,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL, bottle",20151031 +74334011000036102,"Co-Phenylcaine Forte nasal spray, 25 mL",900000000000526001,"REPLACED BY association reference set",792061000168105,"Co-Phenylcaine Forte nasal spray, 25 mL",20160531 +88581000036100,"Zytiga 250 mg tablet",900000000000526001,"REPLACED BY association reference set",863361000168101,"Zytiga 250 mg uncoated tablet",20170131 +4466011000036104,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041071000168101,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device",20171130 +933226101000036106,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004751000168102,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, 5 x 100 mL bags",20170930 +924421011000036102,"First Aid (Amcal) cream",900000000000526001,"REPLACED BY association reference set",861501000168105,"First Aid (Amcal) cream",20161231 +931719011000036107,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872881000168100,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",20170131 +711111000168104,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006201000168104,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +931864011000036108,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle",900000000000526001,"REPLACED BY association reference set",872841000168105,"alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle",20170131 +54076011000036107,"Difflam Lozenge double mint sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995581000168108,"Difflam Lozenge Double Mint Sugar Free lozenge",20170831 +74427011000036101,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",826431000168101,"Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack",20160930 +80631011000036107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",867751000168105,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag",20170131 +933239451000036107,"Omeprazole (Apo) 20 mg capsule, 30, bottle",900000000000526001,"REPLACED BY association reference set",717581000168107,"Omeprazole (Apo) 20 mg enteric capsule, 30, bottle",20150930 +73849011000036100,"Adacel Polio injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839621000168105,"Adacel Polio injection suspension, 0.5 mL syringe",20161031 +920964011000036107,"Sorbi Sorbitol",900000000000526001,"REPLACED BY association reference set",690591000168100,"Sorbi",20150331 +924889011000036104,"Pemzo 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",717431000168107,"Pemzo 20 mg enteric capsule, 60",20150930 +78111011000036100,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 500 mL",900000000000526001,"REPLACED BY association reference set",705881000168102,"glycerol 10% + cetomacrogol aqueous cream, 500 mL",20150731 +711251000168105,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006121000168104,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826041000168100,"Streptococcus pneumoniae type 18C conjugate antigen",20160930 +69811000036103,"carbomer 0.2% + triglyceride lipids 1% eye gel",900000000000526001,"REPLACED BY association reference set",719541000168109,"carbomer-980 0.2% + triglyceride lipids 1% eye gel",20150930 +22841000036103,"Albey Bee Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",758851000168105,"Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack",20160229 +135261000036104,"Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746951000168101,"Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836891000168103,"Streptococcus pneumoniae type 14 polysaccharide antigen",20161031 +137931000036109,"Granisetron (Sandoz) 1 mg/mL injection: concentrated, vial",900000000000526001,"REPLACED BY association reference set",747041000168102,"Granisetron (Sandoz) 1 mg/mL injection solution, vial",20160131 +73832011000036106,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",824811000168100,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial",20160930 +653721000168108,"Retinofluor 1 g/10 mL injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",721861000168102,"Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials",20151031 +844431000168105,"Zovirax 200 mg tablet, 25, bottle",900000000000526001,"REPLACED BY association reference set",859201000168100,"Zovirax Dispersible 200 mg tablet, 25, bottle",20161231 +55655011000036104,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16",900000000000526001,"REPLACED BY association reference set",995451000168102,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16",20170831 +922563011000036109,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",843261000168100,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 60",20161031 +182131000036104,"lixisenatide 20 microgram/0.2 mL injection, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719261000168106,"lixisenatide 20 microgram/dose injection, 14 doses",20150930 +85791011000036103,"Extraneal 7.5% dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872321000168106,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",20170131 +31561000036108,"typhoid fever polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827091000168106,"typhoid inactivated vaccine",20160930 +75508011000036105,"meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",827711000168104,"meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",20160930 +27627011000036102,"pancreatic extract 10 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847451000168107,"lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule, 100",20161130 +85348011000036104,"Levetiracetam (Apo) 1 g tablet",900000000000526001,"REPLACED BY association reference set",1003181000168106,"Levetiracetam 1000 (Apo) 1 g tablet",20170930 +75412011000036103,"hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824971000168103,"hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL syringe",20160930 +80523011000036102,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863981000168106,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags",20170131 +82431011000036104,"calcium chloride dihydrate + glucose + lactate + magnesium chloride + potassium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",861211000168106,"calcium chloride dihydrate + glucose + magnesium chloride + potassium chloride + sodium chloride + sodium lactate",20161231 +775691000168109,"Codalgin uncoated tablet, 40",900000000000526001,"REPLACED BY association reference set",836121000168105,"Codalgin uncoated tablet, 40",20161031 +639751000168104,"BCG Vaccine (Sanofi Pasteur) (inert substance) diluent, 1 mL vial",900000000000526001,"REPLACED BY association reference set",700151000168108,"BCG Vaccine (Sanofi Pasteur) (inert substance) diluent, 1.5 mL vial",20150531 +75397011000036109,"poliomyelitis live attenuated oral vaccine oral liquid, 100 vials",900000000000526001,"REPLACED BY association reference set",839811000168102,"polio trivalent live vaccine oral liquid, 100 vials",20161031 +74411011000036102,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",827751000168103,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",20160930 +87003011000036104,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% nasal drops, 12 x 1.8 g sachets",900000000000526001,"REPLACED BY association reference set",758691000168104,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 12 x 1.8 g sachets",20160229 +141971000036101,"Somatuline Autogel 60 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819601000168106,"Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +74781011000036105,"Cervarix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823201000168104,"Cervarix injection suspension, 10 x 0.5 mL syringes",20160831 +52891000168101,"Fluoride Witchy Candy Mint (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)",20170531 +375251000168103,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725841000168104,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 87 mL pouch",20151031 +75404011000036105,"hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",824581000168108,"hepatitis A + hepatitis B adult vaccine injection, 10 x 1 mL syringes",20160930 +927592011000036101,"Immucyst 1920 million CFU powder for injection, vial",900000000000526001,"REPLACED BY association reference set",1045941000168107,"Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial",20171130 +732641000168108,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",746991000168106,"Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +36624011000036106,"Primacor 10 mg/10 mL injection: solution, 10 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",719511000168105,"Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules",20150930 +68798011000036103,"Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",766801000168104,"Chlorhexidine Hand Lotion (Orion) lotion, 500 mL, bottle",20160331 +833781000168102,"somatropin 400 microgram/dose + inert substance injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",633431000168102,"inert substance diluent, 0.25 mL syringe",20170731 +711101000168102,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006191000168102,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule",20170930 +925161011000036102,"Pemzo 20 mg capsule, 7, blister pack",900000000000526001,"REPLACED BY association reference set",717571000168109,"Pemzo 20 mg enteric capsule, 7, blister pack",20150930 +711851000168109,"Ropibam 0.2% 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005141000168102,"Ropibam 0.2% 40 mg/20 mL injection solution, 20 mL ampoule",20170930 +258851000168100,"Lophlex LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",726271000168104,"Lophlex LQ oral liquid solution, 125 mL pouch",20151031 +368321000168103,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",725891000168107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 130 mL pouch",20151031 +6070011000036105,"Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 0.4 mL ampoule",900000000000526001,"REPLACED BY association reference set",684571000168109,"Ocufen 0.03% eye drops solution, 0.4 mL unit dose",20150131 +131391000036100,"Perjeta 420 mg/14 mL injection solution, 14 mL vial",900000000000526001,"REPLACED BY association reference set",1085751000168100,"Perjeta 420 mg/14 mL concentrated injection, 14 mL vial",20180228 +37879011000036103,"atropine sulfate 400 microgram/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",850391000168107,"atropine sulfate monohydrate 400 microgram/mL injection, ampoule",20161130 +761251000168109,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",851141000168105,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 100",20161130 +930004011000036102,"Menveo injection: suspension, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826701000168104,"MenCWY injection solution, syringe",20160930 +923052011000036100,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827421000168102,"Prevenar-13 injection suspension, 0.5 mL syringe",20160930 +78675011000036107,"Enbrel Auto-Injector 50 mg/mL injection solution, syringe",900000000000526001,"REPLACED BY association reference set",897991000168100,"Enbrel Auto-Injector 50 mg/mL injection solution, injection device",20170331 +84384011000036105,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873151000168108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags",20170131 +74907011000036109,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824691000168105,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +137991000036105,"Menitorix (meningococcal group C polysaccharide vaccine 5 microgram + Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",846061000168103,"Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial",20161130 +963571000168108,"Metformin (Apo)",900000000000527005,"SAME AS association reference set",25891000168106,"Metformin (Apo)",20170930 +33583011000036101,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881211000168109,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device",20170228 +21806011000036104,"atropine sulfate",900000000000526001,"REPLACED BY association reference set",933232141000036108,"atropine sulfate monohydrate",20161130 +693191000168102,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837421000168100,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",20161031 +73636011000036102,"human papillomavirus (type 18) vaccine",900000000000526001,"REPLACED BY association reference set",822751000168101,"human papillomavirus type 18 antigen",20160831 +26829011000036102,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 50",900000000000526001,"REPLACED BY association reference set",834271000168105,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 50",20161031 +66456011000036107,"Cepacol Mint 0.05% mouthwash, 500 mL",900000000000526001,"REPLACED BY association reference set",995321000168100,"Cepacol Mint 0.05% mouthwash, 500 mL",20170831 +78328011000036105,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",861761000168104,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 100",20161231 +13736011000036104,"Granocyte 33.6 million units (263 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838271000168104,"Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial",20161031 +50450011000036103,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694181000168103,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll, carton",20150331 +83390011000036102,"Prozero oral liquid: solution, 18 x 250 mL cans",900000000000526001,"REPLACED BY association reference set",745361000168105,"Prozero oral liquid solution, 18 x 250 mL cartons",20160131 +73819011000036108,"Rabipur (rabies inactivated vaccine 2.5 units) powder for injection, 2.5 units vial",900000000000526001,"REPLACED BY association reference set",821361000168108,"Rabipur (rabies vaccine) powder for injection, 2.5 units vial",20160831 +74341011000036104,"Ipol injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839881000168108,"Ipol injection solution, 0.5 mL syringe",20161031 +49435011000036104,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689321000168103,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll",20150331 +9111000036106,"olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",771981000168101,"olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 10 x 500 mL bags",20160430 +74939011000036107,"Quadracel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",840671000168104,"Quadracel injection suspension, 5 x 0.5 mL vials",20161031 +27603011000036104,"botulinum toxin type A 100 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",720861000168106,"botulinum toxin type A 100 units injection, 1 vial",20151031 +700029171000036101,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 6 sachets",900000000000526001,"REPLACED BY association reference set",810241000168103,"Actonel EC Combi D effervescent granules, 6 sachets",20160630 +6898011000036102,"Oxynorm 5 mg/5 mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",815921000168109,"Oxynorm 1 mg/mL oral liquid solution",20160731 +127321000036106,"MSUD Cooler 20 oral liquid: solution, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725361000168108,"MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches",20151031 +75042011000036100,"hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824561000168104,"hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe",20160930 +84082011000036102,"Glycoprep-C Flavoured powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901141000168108,"Glycoprep-C powder for oral liquid, 210 g sachet",20170331 +36820011000036107,"Colistin (Link) 150 mg powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",817491000168109,"Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial",20160731 +37552011000036107,"Colistin (Link) 150 mg powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",817501000168102,"Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial",20160731 +36231011000036108,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 5 mL vial",900000000000526001,"REPLACED BY association reference set",720811000168108,"Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 5 mL vial",20151031 +48561011000036103,"Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694021000168103,"Leukopor (2474) 5 cm x 5 m tape",20150331 +89841000036100,"Zytiga 250 mg tablet, 120",900000000000526001,"REPLACED BY association reference set",863371000168107,"Zytiga 250 mg uncoated tablet, 120",20170131 +711741000168101,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005531000168103,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +924877011000036103,"Omepro 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",716841000168103,"Omepro 20 mg enteric capsule, 60",20150930 +43911000036104,"Remeron 45 mg tablet: orally disintegrating, 30",900000000000526001,"REPLACED BY association reference set",783881000168100,"Remeron Soltab 45 mg orally disintegrating tablet, 30",20160531 +74428011000036100,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",826491000168102,"Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",20160930 +900029011000036107,"Voltaren Emulgel 1% gel, 100 g",900000000000526001,"REPLACED BY association reference set",1037011000168104,"Voltaren Emulgel 1.16% gel, 100 g",20171130 +56708011000036109,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4",900000000000526001,"REPLACED BY association reference set",996311000168101,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4",20170831 +27581011000036107,"interferon alfa-2b 30 million units/1.2 mL injection, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722791000168108,"interferon alfa-2b 30 million units/1.2 mL injection, 1.2 mL",20151031 +922127011000036102,"iopromide 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695101000168107,"iopromide 623 mg (iodine 300 mg)/mL injection, 20 mL vial",20150430 +669581000168109,"Allmercap 20 mg/mL oral liquid suspension",900000000000526001,"REPLACED BY association reference set",845381000168104,"Allmercap 20 mg/mL oral liquid suspension",20161130 +684051000168105,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",838201000168109,"Pneumovax-23 injection solution, 10 x 0.5 mL syringes",20161031 +1021161000168109,"mesalazine 1 g granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084141000168102,"mesalazine 1 g modified release granules, 50 sachets",20180228 +933204021000036103,"Levetiracetam (GH) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003391000168106,"Levetiracetam 1000 (GH) 1 g film-coated tablet, 60",20170930 +73671011000036109,"Varicella zoster live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",829871000168107,"varicella-zoster virus live antigen",20160930 +927681011000036102,"Avamys 27.5 microgram/actuation nasal spray, 120 actuations, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1082991000168102,"Avamys 27.5 microgram/actuation nasal spray, 120 actuations, pump pack",20180228 +65267011000036103,"Tinaderm Powder Spray 0.09% spray: pressurised",900000000000526001,"REPLACED BY association reference set",769601000168107,"Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray",20160331 +933231721000036105,"Imigran 20 mg/actuation nasal spray, 2 actuations, vial",900000000000526001,"REPLACED BY association reference set",728191000168105,"Imigran 20 mg/actuation nasal spray, 2 x 1 actuation, vials",20151130 +49439011000036102,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688911000168101,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll",20150331 +5413011000036102,"Reandron oily solution 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720551000168107,"Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule",20151031 +71327011000036100,"chlorhexidine gluconate 1% lotion, 500 mL",900000000000526001,"REPLACED BY association reference set",766781000168103,"chlorhexidine gluconate 1% + ethanol 70% lotion, 500 mL",20160331 +681131000168101,"Cal-600 plus D tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862151000168108,"Cal-600 plus D film-coated tablet, 60",20161231 +74777011000036105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825871000168109,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes",20160930 +51417011000036103,"tape plaster adhesive hypoallergenic 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689081000168102,"tape plaster adhesive hypoallergenic 5 cm x 5 m tape, 1 roll",20150331 +75034011000036108,"hepatitis B vaccine 10 microgram/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825621000168109,"hepatitis B adult vaccine 10 microgram/mL injection, syringe",20160930 +921857011000036107,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831741000168108,"Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack",20160930 +86616011000036104,"Emulsifying Ointment (David Craig) ointment",900000000000526001,"REPLACED BY association reference set",770821000168102,"Emulsifying Ointment BP (David Craig) ointment",20160331 +827931000168106,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845931000168104,"meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes",20161130 +931518011000036103,"Granisetron (Kabi) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747091000168105,"Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules",20160131 +77574011000036109,"iopromide 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695491000168108,"iopromide 769 mg (iodine 370 mg)/mL injection, 20 mL vial",20150430 +77140011000036108,"Fess 7.04 mg/mL nasal spray, 30 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",729631000168107,"Fess 0.704% nasal spray, 30 mL, pump pack",20151130 +73945011000036109,"Menjugate Syringe (meningococcal group C conjugate vaccine 10 microgram) powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",826411000168106,"Menjugate Syringe (meningococcal C conjugate vaccine) powder for injection, 10 microgram vial",20160930 +929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724371000168101,"PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches",20151031 +157051000036104,"tenofovir + emtricitabine + elvitegravir + cobicistat",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",851371000168101,"tenofovir disoproxil + emtricitabine + elvitegravir + cobicistat",20161130 +73917011000036105,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824661000168103,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +49433011000036100,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694371000168104,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll",20150331 +69623011000036108,"Cepacol Antibacterial Orange Citrus lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995231000168109,"Cepacol Antibacterial Orange Citrus lozenge, 2, blister pack",20170831 +6139011000036108,"Etopophos 100 mg injection: powder for, 100 mg vial",900000000000526001,"REPLACED BY association reference set",793411000168107,"Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 113.6 mg vial",20160531 +75085011000036102,"Varicella zoster live attenuated vaccine 1995 PFU injection, vial",900000000000526001,"REPLACED BY association reference set",830861000168107,"varicella-zoster live vaccine 1995 PFU injection, vial",20160930 +932383011000036108,"paracetamol 500 mg + codeine phosphate 15 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",835711000168107,"paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 50",20161031 +74953011000036108,"human papillomavirus (type 16) vaccine + human papillomavirus (type 18) vaccine",900000000000526001,"REPLACED BY association reference set",823121000168104,"human papillomavirus bivalent vaccine",20160831 +50451011000036105,"Aquacel (177904) 2 g (30 cm) rope, 5 x 2 g, carton",900000000000526001,"REPLACED BY association reference set",745131000168104,"Aquacel (177904) 2 cm x 45 cm ribbon, 5, carton",20160131 +84661011000036102,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873101000168109,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags",20170131 +95811000036103,"Ostelin Vitamin D and Calcium tablet: film-coated, 250, bottle",900000000000526001,"REPLACED BY association reference set",862301000168107,"Ostelin Vitamin D and Calcium film-coated tablet, 250, bottle",20161231 +77284011000036109,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872991000168109,"Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +65589011000036102,"Panadol Children's 7+ Years 250 mg tablet: soluble",900000000000526001,"REPLACED BY association reference set",721541000168103,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet",20151031 +923376011000036100,"Probitor Hp7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack",900000000000526001,"REPLACED BY association reference set",715941000168100,"Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack",20150930 +81128011000036107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867841000168102,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",20170131 +83963011000036103,"Wagner Magnesium Forte 400 capsules: hard, 200",900000000000526001,"REPLACED BY association reference set",750261000168106,"Magnesium Forte 400 (Wagner) hard capsule, 200",20160131 +44106011000036100,"Zovirax 800 mg dispersible tablet, 5, bottle",900000000000526001,"REPLACED BY association reference set",859481000168107,"Zovirax Dispersible 800 mg tablet, 5, bottle",20161231 +252871000168107,"PKU Cooler20 Orange oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725781000168100,"PKU Cooler 20 Orange oral liquid solution, 174 mL pouch",20151031 +688991000168105,"measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine + Varicella zoster live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",831171000168102,"measles + mumps + rubella + varicella-zoster live vaccine",20160930 +56685011000036105,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 20 mL",900000000000526001,"REPLACED BY association reference set",721921000168104,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL",20151031 +74942011000036103,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826471000168103,"Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20160930 +922612011000036108,"diatrizoate meglumine 79.2 g/120 mL + diatrizoate sodium 12 g/120 mL solution, 12 x 120 mL each",900000000000526001,"REPLACED BY association reference set",696161000168102,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 120 mL",20150430 +42691000036105,"MMA/PA Cooler 15 oral liquid: solution, 30 x 130 mL sachets",900000000000526001,"REPLACED BY association reference set",725261000168104,"MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches",20151031 +40086011000036109,"Zovirax 400 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",859531000168105,"Zovirax Dispersible 400 mg tablet",20161231 +684451000168101,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693461000168102,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules",20150331 +35581011000036107,"Movicol-Half solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674131000168105,"Movicol-Half powder for oral liquid, 30 sachets",20141031 +125351000036109,"Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726611000168105,"Anapen Auto-Injector 500 microgram/0.3 mL injection solution, dose",20151031 +128631000036102,"Laxacon solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674261000168108,"Laxacon powder for oral liquid, 30 sachets",20141031 +84427011000036102,"dibasic sodium phosphate heptahydrate 398 mg + monobasic sodium phosphate monohydrate 1.27 g tablet",900000000000526001,"REPLACED BY association reference set",900231000168104,"monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet",20170331 +76159011000036100,"Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 75 mL vial",900000000000526001,"REPLACED BY association reference set",695671000168105,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 75 mL bottle",20150430 +107091000036103,"Moviprep Lemon powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902161000168100,"Moviprep B powder for oral liquid, sachet",20170331 +78200011000036106,"iopromide 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695611000168102,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 50 mL bottles",20150430 +73645011000036105,"Japanese encephalitis inactivated vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",821661000168101,"Japanese encephalitis virus (mouse brain-derived) inactivated antigen",20160831 +6737011000036106,"Lomotil uncoated tablet",900000000000526001,"REPLACED BY association reference set",851051000168108,"Lomotil uncoated tablet",20161130 +71740011000036100,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL",900000000000526001,"REPLACED BY association reference set",71741011000036107,"chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL",20160331 +127311000036104,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725301000168107,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 87 mL pouches",20151031 +60808011000036101,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 6, blister pack",900000000000526001,"REPLACED BY association reference set",844161000168109,"Combantrin-1 with Mebendazole 100 mg tablet, 6, blister pack",20161031 +21895011000036109,"diphenoxylate + atropine sulfate",900000000000526001,"REPLACED BY association reference set",850991000168108,"diphenoxylate + atropine sulfate monohydrate",20161130 +924422011000036108,"First Aid (Guardian) cream",900000000000526001,"REPLACED BY association reference set",861541000168107,"First Aid (Guardian) cream",20161231 +833791000168104,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",633441000168106,"Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe",20170731 +65604011000036106,"Cepacol Antibacterial Honey and Lemon lozenge",900000000000526001,"REPLACED BY association reference set",995041000168109,"Cepacol Antibacterial Honey and Lemon lozenge",20170831 +711921000168109,"Ropibam 1% 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005261000168109,"Ropibam 1% 100 mg/10 mL injection solution, 10 mL ampoule",20170930 +74958011000036103,"hepatitis A inactivated vaccine",900000000000526001,"REPLACED BY association reference set",824641000168102,"hepatitis A vaccine",20160930 +93471000036105,"Ostelin Osteoguard tablet: film-coated",900000000000526001,"REPLACED BY association reference set",932961000168105,"Ostelin Osteoguard film-coated tablet",20170531 +60892011000036102,"Disprin Original 300 mg dispersible tablet, 6, strip pack",900000000000526001,"REPLACED BY association reference set",804341000168101,"Disprin Original 300 mg tablet, 6, strip pack",20160630 +74997011000036106,"rotavirus live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",822861000168108,"rotavirus live vaccine",20160831 +4590011000036106,"Dymadon Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835771000168104,"Dymadon Forte uncoated tablet",20161031 +664261000168103,"magnesium trisilicate 50 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",833591000168106,"magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",20160930 +69221000036106,"carbomer",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",35410011000036107,"carbomer-980",20150930 +26721000036102,"typhoid fever polysaccharide vaccine 25 microgram + hepatitis A inactivated vaccine 160 ELISA units injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827301000168103,"hepatitis A + typhoid vaccine injection, 1 mL syringe",20160930 +60203011000036100,"Daktarin 2% oral gel, 40 g, tube",900000000000526001,"REPLACED BY association reference set",820111000168102,"Daktarin 2% oral gel, 40 g, tube",20160731 +76154011000036101,"Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 30 mL vial",900000000000526001,"REPLACED BY association reference set",695551000168102,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 30 mL vial",20150430 +45342011000036107,"methyl aminolevulinate hydrochloride 200 mg/g cream",900000000000526001,"REPLACED BY association reference set",999281000168108,"methyl aminolevulinate 160 mg/g cream",20170831 +73938011000036102,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845961000168107,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +761211000168108,"Lomotil uncoated tablet, 2, blister pack",900000000000526001,"REPLACED BY association reference set",851081000168101,"Lomotil uncoated tablet, 2, blister pack",20161130 +2631000036101,"olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",771681000168108,"olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, bag",20160430 +70218011000036109,"benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge",900000000000526001,"REPLACED BY association reference set",995031000168100,"benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge",20170831 +859061000168106,"Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1087261000168104,"Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations, pump pack",20180331 +931866011000036100,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle",900000000000526001,"REPLACED BY association reference set",872761000168100,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle",20170131 +48468011000036102,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688841000168106,"Elastoplast Tape (1004) 10 cm x 2.5 m tape",20150331 +21807011000036101,"pancreatic extract",900000000000526001,"REPLACED BY association reference set",847131000168105,"lipase + amylase + protease",20161130 +31972011000036103,"sorbitol solution (70 per cent-non-crystallising)",900000000000526001,"REPLACED BY association reference set",690581000168103,"sorbitol solution",20150331 +86447011000036105,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 25.1 mg (0.34 mmol potassium) + sodium bicarbonate 89.25 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",674171000168108,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 30 sachets",20141031 +933247571000036107,"Panamax Co uncoated tablet, 40, blister pack",900000000000526001,"REPLACED BY association reference set",836061000168104,"Panamax Co uncoated tablet, 40, blister pack",20161031 +55662011000036102,"Anti Fungal V 6 Day (Amcal) 1% cream, 20 g",900000000000526001,"REPLACED BY association reference set",714951000168104,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g",20150930 +81042011000036100,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863991000168109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags",20170131 +921005011000036106,"Centrum Select 50 Plus tablet: film-coated",900000000000526001,"REPLACED BY association reference set",843221000168105,"Centrum Select 50 Plus film-coated tablet",20161031 +922059011000036100,"ascorbic acid + biotin + calcium carbonate + cyanocobalamin + folic acid + magnesium + magnesium sulfate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + thiamine + zinc citrate trihydrate",900000000000526001,"REPLACED BY association reference set",829681000168106,"thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc",20160930 +73674011000036107,"cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine",900000000000526001,"REPLACED BY association reference set",821811000168103,"Vibrio cholerae O1 inactivated antigen",20160831 +41531000036101,"glucose 75 g/300 mL oral liquid, bottle",900000000000526001,"REPLACED BY association reference set",692421000168100,"glucose 75 g/300 mL oral liquid",20150331 +5581011000036105,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041171000168100,"Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device",20171130 +702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726131000168107,"PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets",20151031 +73135011000036105,"Creon 40 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847341000168103,"Creon 40 000 enteric capsule, 100",20161130 +74848011000036105,"Co-Phenylcaine Forte nasal spray, 50 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",792101000168108,"Co-Phenylcaine Forte nasal spray, 50 mL, pump pack",20160531 +920661011000036108,"Ostelin Vitamin D and Calcium tablet: film-coated, 130, bottle",900000000000526001,"REPLACED BY association reference set",862271000168105,"Ostelin Vitamin D and Calcium film-coated tablet, 130, bottle",20161231 +11569011000036106,"Actonel Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",852651000168109,"Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28",20161130 +37366011000036100,"Lanoxin 500 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735071000168103,"Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules",20151231 +860221000168108,"Ostelin Osteoguard film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",932981000168101,"Ostelin Osteoguard film-coated tablet, 90",20170531 +728561000168106,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006041000168106,"Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 10 mL ampoule",20170930 +63526011000036107,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",996201000168106,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 24",20170831 +74945011000036106,"Boostrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840741000168101,"Boostrix-IPV injection suspension, 0.5 mL syringe",20161031 +930007011000036108,"Regaine Men's Extra Strength Foam 5% foam",900000000000526001,"REPLACED BY association reference set",710761000168106,"Regaine Men's Extra Strength 5% foam",20150831 +13436011000036107,"Clofeme Thrush Treatment 6 Day 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715131000168106,"Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g",20150930 +73661000036109,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses, ampoule",900000000000526001,"REPLACED BY association reference set",719631000168101,"Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses, ampoule",20150930 +81142011000036106,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872661000168108,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags",20170131 +689411000168101,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831261000168102,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, 10 vials",20160930 +814981000168109,"Entrip 10 mg tablet, 50, bottle",900000000000526001,"REPLACED BY association reference set",856611000168107,"Entrip 10 mg film-coated tablet, 50, bottle",20161231 +24671000036103,"Albey Yellow Jacket Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",759081000168104,"Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack",20160229 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826051000168103,"Streptococcus pneumoniae type 14 conjugate antigen",20160930 +73673011000036105,"cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine",900000000000526001,"REPLACED BY association reference set",821811000168103,"Vibrio cholerae O1 inactivated antigen",20160831 +924210011000036101,"omeprazole 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",716831000168107,"omeprazole 20 mg enteric capsule, 60",20150930 +85700011000036108,"Levetiracetam (Chemmart) 1 g tablet, 60",900000000000526001,"REPLACED BY association reference set",1003281000168104,"Levetiracetam 1000 (Chemmart) 1 g tablet, 60",20170930 +933225781000036106,"Naropin 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004911000168100,"Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +108851000036101,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902171000168106,"macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid [2 sachets] (&) ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid [2 sachets], 4 sachets",20170331 +926994011000036103,"lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream",900000000000526001,"REPLACED BY association reference set",863441000168107,"lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream",20170131 +844851000168101,"Zovirax 400 mg tablet, 70, blister pack",900000000000526001,"REPLACED BY association reference set",859601000168102,"Zovirax Dispersible 400 mg tablet, 70, blister pack",20161231 +78329011000036102,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",861791000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 60",20161231 +22919011000036101,"interferon alfa-2b 18 million units/1.2 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",722721000168106,"interferon alfa-2b 18 million units/1.2 mL injection",20151031 +665591000168109,"PKU Cooler20 Green oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725761000168109,"PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches",20151031 +933196641000036108,"Recombinate 1000 IU (octocog alfa 1000 international units) injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",710931000168101,"Recombinate (octocog alfa 1000 units) powder for injection, vial",20150831 +75113011000036106,"hepatitis B vaccine 40 microgram/mL injection, vial",900000000000526001,"REPLACED BY association reference set",825671000168105,"hepatitis B dialysis vaccine injection, 1 mL vial",20160930 +923906011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 56, bottle",900000000000526001,"REPLACED BY association reference set",717351000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 56, bottle",20150930 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826131000168105,"Streptococcus pneumoniae type 7F conjugate antigen",20160930 +39625011000036104,"Naropin",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711391000168105,"Naropin 1%",20150831 +35225011000036105,"buprenorphine 2 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685671000168109,"buprenorphine 2 mg sublingual tablet, 100",20150228 +928847011000036103,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715821000168103,"Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g, tube",20150930 +158941000036102,"budesonide 2 mg/application enema, 2 x 1 application aerosol cans",900000000000526001,"REPLACED BY association reference set",688061000168104,"budesonide 2 mg/application enema, 2 x 14 applications",20150331 +933231591000036101,"Naropin 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004521000168102,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +86609011000036106,"Aqueous Cream (David Craig) cream",900000000000526001,"REPLACED BY association reference set",768301000168106,"Aqueous Cream APF (David Craig) cream",20160331 +56950011000036106,"Clozole Vaginal Cream (Chemists' Own) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715551000168109,"Clozole (Chemists' Own) 1% vaginal cream, 35 g",20150930 +75067011000036105,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824851000168104,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, syringe",20160930 +924138011000036105,"omeprazole 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",716501000168102,"omeprazole 20 mg enteric capsule, 280",20150930 +37418011000036108,"Marcain Spinal Heavy injection: solution, 5 x 4 mL ampoules",900000000000526001,"REPLACED BY association reference set",863601000168107,"Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules",20170131 +22965011000036104,"pancreatic extract 10 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847431000168101,"lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule",20161130 +251000168105,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810261000168104,"Actonel EC Combi D effervescent granules, 24 sachets",20160630 +22871000036105,"paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",758901000168101,"paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack",20160229 +691581000168106,"Reddycal 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",848141000168102,"Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle",20161130 +815191000168108,"Entrip 50 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",856801000168105,"Entrip 50 mg film-coated tablet, 50",20161231 +929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724261000168103,"PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches",20151031 +933221001000036104,"Fluoride Witchy Candy Mint (Laclede) foam",900000000000526001,"REPLACED BY association reference set",932511000168103,"Fluoride (Laclede) Witchy Candy Mint Flavour foam",20170531 +63721011000036103,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995591000168106,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16",20170831 +653661000168106,"Retinofluor 1.25 g/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721211000168104,"Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials",20151031 +933226191000036103,"Fluoride Tyranna Grape (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932581000168109,"Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL",20170531 +27989011000036101,"omeprazole 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716171000168103,"omeprazole 20 mg enteric capsule, 30",20150930 +35226011000036103,"buprenorphine 8 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685701000168105,"buprenorphine 8 mg sublingual tablet, 100",20150228 +87655011000036103,"Narium 0.65% nasal spray, 30 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085311000168102,"Narium 0.65% nasal spray, 30 mL, pump pack",20180228 +75347011000036104,"azelastine hydrochloride 140 microgram/actuation nasal spray, 20 mL",900000000000526001,"REPLACED BY association reference set",809601000168109,"azelastine hydrochloride 0.1% nasal spray, 20 mL",20160630 +71401000036108,"Salofalk 1.5 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084281000168100,"Salofalk 1.5 g modified release granules, 100 sachets",20180228 +693171000168103,"diphtheria toxoid 2 Lf/0.5 mL + tetanus toxoid 2 Lf/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837401000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 10 x 0.5 mL vials",20161031 +84077011000036108,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873031000168103,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag",20170131 +78107011000036105,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 1 L",900000000000526001,"REPLACED BY association reference set",705981000168108,"glycerol 10% + cetomacrogol aqueous cream, 1 L",20150731 +180151000036108,"calcium (as carbonate) 500 mg tablet, 48",900000000000526001,"REPLACED BY association reference set",847891000168100,"calcium carbonate 1.25 g (calcium 500 mg) tablet, 48",20161130 +77171011000036100,"Fess 7.04 mg / 1 mL nasal spray, 2 x 75 mL pump actuated aerosols",900000000000526001,"REPLACED BY association reference set",730681000168104,"Fess 0.704% nasal spray, 2 x 75 mL, pump packs",20151130 +73668011000036108,"typhoid fever live attenuated oral vaccine",900000000000526001,"REPLACED BY association reference set",826231000168100,"Salmonella typhi live antigen",20160930 +922640011000036100,"iopromide 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695121000168103,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 20 mL vials",20150430 +81045011000036108,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863821000168104,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags",20170131 +687931000168105,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825031000168101,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +18958011000036109,"Rynacrom Metered Dose 2% nasal spray, 26 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1082961000168109,"Rynacrom Metered Dose 2% nasal spray, 26 mL, pump pack",20180228 +56686011000036103,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721571000168105,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL",20151031 +75478011000036107,"Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831891000168105,"varicella-zoster live vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20160930 +181671000036100,"Diprosone 0.05% lotion",900000000000526001,"REPLACED BY association reference set",1054631000168109,"Diprosone 0.05% lotion",20171231 +728731000168107,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005781000168108,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 20 mL ampoule",20170930 +924884011000036100,"Pemzo 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716711000168105,"Pemzo 20 mg enteric capsule, 30",20150930 +37764011000036107,"colistimethate",900000000000526001,"REPLACED BY association reference set",817451000168104,"colistin",20160731 +26421000036107,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 1 sachet",900000000000526001,"REPLACED BY association reference set",673991000168105,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 1 sachet",20141031 +74354011000036103,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",822301000168101,"Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",20160831 +927555011000036101,"meningococcal group A conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824461000168100,"Neisseria meningitidis group A conjugate antigen",20160930 +776501000168107,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",996121000168106,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2, blister pack",20170831 +695651000168101,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848591000168104,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack",20161130 +61067011000036108,"Canesten Clotrimazole Thrush Treatment Once 10% cream, 5 g, tube",900000000000526001,"REPLACED BY association reference set",715611000168109,"Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g, tube",20150930 +44518011000036105,"Etopophos 500 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793531000168103,"Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial",20160531 +920129011000036102,"Ostelin Vitamin D and Calcium tablet: film-coated",900000000000526001,"REPLACED BY association reference set",862241000168103,"Ostelin Vitamin D and Calcium film-coated tablet",20161231 +28631000036105,"diclofenac sodium 1% gel, 150 g",900000000000526001,"REPLACED BY association reference set",1037131000168105,"diclofenac diethylamine 1.16% gel, 150 g",20171130 +689651000168103,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831231000168105,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20160930 +138791000036106,"Menitorix (10 x vaccine vials, 10 x inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",846081000168107,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",20161130 +11389011000036106,"Fluoxebell 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",73114011000036101,"Fluoxebell 20 mg hard capsule, 28",20160630 +19488011000036101,"Anzemet 100 mg/5 mL injection: solution, 5 mL vial, ampoule",900000000000526001,"REPLACED BY association reference set",703381000168106,"Anzemet 100 mg/5 mL injection solution, 5 mL ampoule",20150630 +63201000036103,"glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",688161000168100,"iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 500 mL",20150331 +51401011000036109,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694361000168105,"tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll",20150331 +20374011000036108,"Subutex 2 mg tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",685611000168101,"Subutex 2 mg sublingual tablet, 7, blister pack",20150228 +73866011000036103,"H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe",900000000000526001,"REPLACED BY association reference set",825631000168107,"H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe",20160930 +74796011000036104,"Twinrix Junior injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824551000168101,"Twinrix Junior injection suspension, 0.5 mL syringe",20160930 +80522011000036109,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",863951000168104,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags",20170131 +933214661000036100,"Levetiracetam (GH) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003401000168108,"Levetiracetam 1000 (GH) 1 g film-coated tablet, 60, blister pack",20170930 +67423011000036101,"Aqium 66% gel, 1 L",900000000000526001,"REPLACED BY association reference set",730551000168105,"Aqium 66% gel, 1 L",20151130 +692181000168107,"Calcium (Actavis) 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",848391000168107,"Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle",20161130 +836141000168104,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",872291000168103,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag",20170131 +815031000168108,"Entrip 10 mg tablet, 1000",900000000000526001,"REPLACED BY association reference set",856641000168106,"Entrip 10 mg film-coated tablet, 1000",20161231 +138921000036106,"Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial",900000000000526001,"REPLACED BY association reference set",746871000168100,"Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial",20160131 +696491000168102,"meningococcal group B factor H binding protein fusion protein",900000000000526001,"REPLACED BY association reference set",822411000168107,"Neisseria meningitidis group B factor H binding protein fusion protein",20160831 +75375011000036105,"hepatitis B vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825531000168108,"hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL vials",20160930 +98921000036109,"Irbesartan (Apo) 75 mg tablet",900000000000526001,"REPLACED BY association reference set",807741000168107,"Irbesartan (Apo) 75 mg film-coated tablet",20160630 +728531000168103,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006011000168107,"Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 20 mL ampoule",20170930 +74281011000036101,"Twinrix injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824621000168108,"Twinrix injection suspension, 1 mL syringe",20160930 +922144011000036106,"picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet",900000000000526001,"REPLACED BY association reference set",832611000168107,"picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet",20160930 +27243011000036107,"albendazole 200 mg chewable tablet, 6",900000000000526001,"REPLACED BY association reference set",844211000168101,"albendazole 200 mg tablet, 6",20161031 +823921000168101,"exenatide 2 mg modified release injection [4 cartridges] (&) inert substance diluent [4 cartridges], 1 pack",900000000000526001,"REPLACED BY association reference set",833341000168106,"exenatide 2 mg/dose + inert substance modified release injection, 4 dual chamber devices",20160930 +82403011000036107,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 240, bottle",900000000000526001,"REPLACED BY association reference set",860581000168105,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240, bottle",20161231 +665571000168108,"PKU Cooler15 Green oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725621000168106,"PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches",20151031 +823861000168104,"Bydureon (exenatide 2 mg) modified release injection, 2 mg cartridge",900000000000526001,"REPLACED BY association reference set",833271000168107,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose",20160930 +76551011000036109,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL",900000000000526001,"REPLACED BY association reference set",705961000168104,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL",20150731 +172431000036101,"Dronalen Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848581000168102,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack",20161130 +732661000168107,"Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule",900000000000526001,"REPLACED BY association reference set",747011000168101,"Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule",20160131 +75458011000036105,"Haemophilus influenzae type b vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",828291000168100,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20160930 +48731000036101,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash",900000000000526001,"REPLACED BY association reference set",933196661000036109,"Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash",20160229 +74394011000036108,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824681000168107,"Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +933196251000036109,"Valaciclovir (GA) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1009641000168105,"Valaciclovir 1000 (GA) 1 g film-coated tablet",20170930 +74980011000036109,"hepatitis A inactivated vaccine + hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",824501000168100,"hepatitis A + hepatitis B vaccine",20160930 +81701011000036100,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868141000168108,"glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag",20170131 +80411000036106,"Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial",900000000000526001,"REPLACED BY association reference set",703531000168100,"Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial",20150630 +682151000168104,"Reandron 1 g/4 mL injection: solution, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722961000168103,"Reandron-1000 1 g/4 mL modified release injection, 4 mL vial",20151031 +63171000036104,"Hepasol oral liquid: solution, 200 mL",900000000000526001,"REPLACED BY association reference set",688141000168104,"Hepasol oral liquid solution, 200 mL",20150331 +77206011000036102,"Sandocal 1000 tablets: effervescent, 10, tube",900000000000526001,"REPLACED BY association reference set",745631000168106,"Sandocal 1000 effervescent tablet, 10, tube",20160131 +11398011000036102,"Puri-Nethol 50 mg uncoated tablet, 25",900000000000526001,"REPLACED BY association reference set",845451000168100,"Puri-Nethol 50 mg uncoated tablet, 25",20161130 +711151000168103,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006241000168102,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +137831000036104,"Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006191000168102,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule",20170930 +51403011000036105,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689311000168105,"tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll",20150331 +11720011000036109,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041041000168108,"Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device",20171130 +925168011000036106,"Pemzo 20 mg capsule, 56, blister pack",900000000000526001,"REPLACED BY association reference set",716941000168107,"Pemzo 20 mg enteric capsule, 56, blister pack",20150930 +921014011000036109,"Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",695161000168108,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 50 mL bottle",20150430 +167721000168109,"MSUD Cooler 10 oral liquid: solution, 87 mL sachet",900000000000526001,"REPLACED BY association reference set",725291000168106,"MSUD Cooler 10 oral liquid solution, 87 mL pouch",20151031 +78305011000036108,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",833161000168107,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 100",20160930 +70261011000036101,"methylated spirit industrial 66% gel",900000000000526001,"REPLACED BY association reference set",730431000168103,"ethanol 66% gel",20151130 +87635011000036102,"Levetiracetam (Generic Health) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003361000168104,"Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60, blister pack",20170930 +139271000036109,"Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006081000168101,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +931512011000036101,"Menveo injection: suspension, 1 pack, composite pack",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826801000168106,"Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack",20160930 +34864011000036101,"codeine phosphate 50 mg/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",835631000168105,"codeine phosphate hemihydrate 50 mg/mL injection, ampoule",20161031 +923899011000036102,"Omeprazole (Pharmacor) 20 mg capsule, 14, bottle",900000000000526001,"REPLACED BY association reference set",717111000168108,"Omeprazole (Pharmacor) 20 mg enteric capsule, 14, bottle",20150930 +85176011000036105,"adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL cartridges",900000000000526001,"REPLACED BY association reference set",729851000168100,"adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL injection devices",20171130 +933216141000036102,"Valtrex 1 g film-coated tablet, 4, bottle",900000000000526001,"REPLACED BY association reference set",1009711000168104,"Valtrex-1000 1 g film-coated tablet, 4, bottle",20170930 +922541011000036104,"calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",859881000168109,"calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60",20161231 +30601000036104,"Typhim Vi 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827221000168101,"Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes",20160930 +7128011000036104,"Novomix 30 Flexpen injection suspension, 3 mL syringe",900000000000526001,"REPLACED BY association reference set",1007191000168104,"Novomix 30 Flexpen injection suspension, 3 mL injection device",20170930 +55735011000036107,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",721661000168103,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL",20151031 +82459011000036101,"retinyl palmitate 0.054% ointment",900000000000526001,"REPLACED BY association reference set",694971000168103,"retinol palmitate 0.099% ointment",20150430 +77187011000036100,"Flo Nozoil 1 mL/mL nasal spray, 15 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085431000168101,"Flo Nozoil 0.1% nasal spray, 15 mL, pump pack",20180228 +34804011000036102,"Subutex 2 mg tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",685691000168105,"Subutex 2 mg sublingual tablet, 100, bottle",20150228 +77541000036104,"aciclovir 200 mg dispersible tablet, 25",900000000000526001,"REPLACED BY association reference set",28317011000036105,"aciclovir 200 mg tablet, 25",20161031 +53988011000036107,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 5 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",649641000168107,"Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 5 mL",20151031 +74922011000036100,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1082941000168105,"Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations, pump pack",20180228 +162561000036102,"Moviprep Orange powder for oral liquid, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",902211000168108,"Moviprep Orange A powder for oral liquid, sachet",20170331 +54197011000036106,"Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution",900000000000526001,"REPLACED BY association reference set",721261000168101,"Difflam Anti-Inflammatory Throat 0.15% oral spray",20151031 +19509011000036101,"Panzytrat 25 000 units enteric capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847671000168100,"Panzytrat 25 000 enteric capsule, 100, bottle",20161130 +51412011000036100,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689261000168104,"tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll",20150331 +50927011000036103,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689141000168106,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape",20150331 +930681011000036105,"Regaine Men's Extra Strength Foam 5% foam, 63 mL",900000000000526001,"REPLACED BY association reference set",710771000168100,"Regaine Men's Extra Strength 5% foam, 63 mL",20150831 +13221011000036103,"Creon 10 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847461000168109,"Creon 10 000 enteric capsule, 100",20161130 +69625011000036109,"Aqium 66% gel, 375 mL, bottle",900000000000526001,"REPLACED BY association reference set",730531000168104,"Aqium 66% gel, 375 mL, bottle",20151130 +12545011000036102,"Codalgin Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835881000168105,"Codalgin Forte uncoated tablet, 20",20161031 +35775011000036103,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 23.3 mg (0.32 mmol potassium) + sodium bicarbonate 89.25 mg solution, 30 sachets",900000000000526001,"REPLACED BY association reference set",674121000168107,"macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 30 sachets",20141031 +74966011000036105,"Bacillus Calmette and Guerin live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",822541000168107,"Mycobacterium bovis (BCG) live vaccine",20160831 +711891000168104,"Ropibam 1% 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005291000168102,"Ropibam 1% 200 mg/20 mL injection solution, 20 mL ampoule",20170930 +921989011000036104,"Picolax powder for oral liquid, 2 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",832651000168108,"Picolax powder for oral liquid, 2 x 20 g sachets",20160930 +12848011000036107,"Etopophos 100 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793431000168102,"Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial",20160531 +74839011000036103,"Drixine Adult 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083681000168101,"Drixine Adult 0.05% nasal spray, 15 mL, pump pack",20180228 +922046011000036107,"potassium citrate monohydrate",900000000000526001,"REPLACED BY association reference set",950711000168107,"potassium citrate",20170630 +931708011000036102,"Elevit with Iodine tablet: film-coated, 100, blister pack",900000000000526001,"REPLACED BY association reference set",843311000168106,"Elevit with Iodine film-coated tablet, 100, blister pack",20161031 +18044011000036105,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041331000168101,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device",20171130 +74244011000036106,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825231000168105,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe",20160930 +14078011000036103,"Prodeine Forte uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835811000168104,"Prodeine Forte uncoated tablet, 20",20161031 +708521000168105,"Otocomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758411000168106,"Otocomb Otic ear drops solution, 7.5 mL, bottle",20160229 +30521000036108,"Lophlex HCU LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725161000168105,"HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches",20151031 +928266011000036103,"Oxynorm 50 mg/mL intravenous infusion injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",1055141000168107,"Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules",20171231 +18455011000036100,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715391000168107,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g, tube",20150930 +134291000036107,"Japanese encephalitis virus live vaccine injection, vial",900000000000526001,"REPLACED BY association reference set",821501000168103,"Japanese encephalitis live vaccine injection, vial",20160831 +53955011000036105,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",721731000168103,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 5 mL",20151031 +662411000168109,"Metformin Hydrochloride (AN) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",949391000168105,"Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet",20170630 +19947011000036109,"Botox 100 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",720881000168102,"Botox 100 units powder for injection, 1 vial",20151031 +12970011000036100,"Lovan 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844361000168107,"Lovan 20 mg tablet, 28",20161031 +80527011000036106,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863781000168109,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags",20170131 +143951000036107,"dimethyl fumarate 240 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756351000168102,"dimethyl fumarate 240 mg enteric capsule",20160229 +41939011000036105,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 240 actuations",900000000000526001,"REPLACED BY association reference set",730091000168105,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations",20151130 +34375011000036108,"Subutex 400 microgram tablet, 28",900000000000526001,"REPLACED BY association reference set",685851000168104,"Subutex 400 microgram sublingual tablet, 28",20150228 +69378011000036107,"Microshield Handrub solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",767651000168103,"Microshield Handrub solution, 500 mL, bottle",20160331 +931718011000036104,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872911000168100,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +924206011000036101,"omeprazole 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",716611000168103,"omeprazole 20 mg enteric capsule, 5",20150930 +80175011000036107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",863841000168105,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",20170131 +51260011000036102,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",724021000168100,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL pouches",20151031 +74196011000036105,"Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",821591000168109,"Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160831 +74335011000036103,"Co-Phenylcaine Forte nasal spray, 50 mL",900000000000526001,"REPLACED BY association reference set",792091000168103,"Co-Phenylcaine Forte nasal spray, 50 mL",20160531 +77395011000036100,"Centrum tablet: film-coated, 8, bottle",900000000000526001,"REPLACED BY association reference set",833061000168108,"Centrum film-coated tablet, 8, bottle",20160930 +663771000168104,"light kaolin 200 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",833491000168107,"light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid",20160930 +761881000168101,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 2.5 mL",900000000000526001,"REPLACED BY association reference set",791931000168108,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 2.5 mL",20160531 +6095011000036107,"Otocomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758391000168106,"Otocomb Otic ear drops solution",20160229 +50924011000036109,"tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688831000168102,"tape plaster adhesive elastic 10 cm x 2.5 m tape",20150331 +828321000168108,"Haemophilus influenzae type b conjugate (PRP-TT) antigen + Neisseria meningitidis group C polysaccharide antigen",900000000000526001,"REPLACED BY association reference set",846041000168102,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine",20161130 +74779011000036103,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831851000168100,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack",20160930 +929478011000036106,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724451000168104,"PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches",20151031 +726891000168102,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, dose",900000000000526001,"REPLACED BY association reference set",881191000168108,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, dose",20170228 +82454011000036102,"potassium nitrate 25% + silver nitrate 75% stick",900000000000526001,"REPLACED BY association reference set",722881000168101,"silver nitrate 75% + potassium nitrate 25% stick",20151031 +52058011000036101,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream, 100 g",900000000000526001,"REPLACED BY association reference set",695841000168102,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g",20150430 +145291000036107,"dimethyl fumarate 120 mg capsule: modified release, 112",900000000000526001,"REPLACED BY association reference set",756271000168103,"dimethyl fumarate 120 mg enteric capsule, 112",20160229 +933226041000036108,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004801000168108,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, 5 x 200 mL bags",20170930 +631021000168106,"Lucrin Depot (inert substance) diluent, 2 mL syringe",900000000000526001,"REPLACED BY association reference set",707281000168107,"Lucrin Depot (inert substance) diluent, 1.5 mL syringe",20150731 +933223201000036107,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724031000168102,"MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches",20151031 +86125011000036104,"Levetiracetam (Chemmart) 1 g tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003291000168101,"Levetiracetam 1000 (Chemmart) 1 g tablet, 60, blister pack",20170930 +86916011000036100,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% nasal drops, 1.8 g sachet",900000000000526001,"REPLACED BY association reference set",758671000168100,"sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 1.8 g sachet",20160229 +73631011000036107,"hepatitis A inactivated vaccine",900000000000526001,"REPLACED BY association reference set",824441000168104,"hepatitis A virus antigen",20160930 +98881000036102,"liraglutide 18 mg/3 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",748021000168109,"liraglutide 6 mg/mL injection, 3 mL injection device",20160131 +71197011000036102,"cetylpyridinium chloride monohydrate 0.05% mouthwash, 500 mL",900000000000526001,"REPLACED BY association reference set",995001000168107,"cetylpyridinium chloride 0.05% mouthwash, 500 mL",20170831 +35135011000036105,"morphine hydrochloride 2 mg/mL oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",872731000168108,"morphine hydrochloride 2 mg/mL oral liquid, 500 mL",20170131 +706271000168107,"measles virus (Enders' attenuated Edmonston) live vaccine",900000000000526001,"REPLACED BY association reference set",829861000168101,"measles virus live antigen",20160930 +76116011000036102,"Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",695601000168100,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 50 mL bottle",20150430 +50399011000036109,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",688921000168108,"Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll, carton",20150331 +81709011000036101,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 6 x 2 L bags",900000000000526001,"REPLACED BY association reference set",868251000168103,"glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 6 x 2 L bags",20170131 +815051000168102,"Entrip 25 mg tablet",900000000000526001,"REPLACED BY association reference set",856661000168105,"Entrip 25 mg film-coated tablet",20161231 +921886011000036104,"Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",695191000168101,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles",20150430 +74865011000036107,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825181000168104,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe",20160930 +57062011000036107,"Difflam Lozenge orange sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995801000168103,"Difflam Lozenge Orange Sugar Free lozenge, 16",20170831 +860191000168102,"boric acid 8.6 mg (boron 1.5 mg) + calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet",900000000000526001,"REPLACED BY association reference set",932951000168108,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet",20170531 +844531000168109,"Zovirax 800 mg tablet, 5, bottle",900000000000526001,"REPLACED BY association reference set",859481000168107,"Zovirax Dispersible 800 mg tablet, 5, bottle",20161231 +689691000168108,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831331000168103,"Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",20160930 +653591000168103,"Retinofluor 500 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",721161000168107,"Retinofluor 10% 500 mg/5 mL injection solution, 5 mL vial",20151031 +728631000168104,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005831000168100,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +235711000168101,"Prozero oral liquid: solution, 1 L bottle",900000000000526001,"REPLACED BY association reference set",745381000168101,"Prozero oral liquid solution, 1 L carton",20160131 +37410011000036106,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850621000168102,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules",20161130 +50230011000036100,"TYR Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725931000168104,"TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches",20151031 +52169011000036109,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream, 100 g, screw cap jar",900000000000526001,"REPLACED BY association reference set",695851000168100,"Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g, screw cap jar",20150430 +74352011000036107,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825171000168102,"Vaqta Adult 50 units/mL injection suspension, 1 mL syringe",20160930 +925143011000036107,"Omepro 20 mg capsule, 56, blister pack",900000000000526001,"REPLACED BY association reference set",716771000168102,"Omepro 20 mg enteric capsule, 56, blister pack",20150930 +74709011000036105,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825581000168109,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials",20160930 +84800011000036103,"Strepsils lozenge",900000000000526001,"REPLACED BY association reference set",720291000168100,"Strepsils Cool lozenge",20151031 +921563011000036108,"Recombinate 250 IU (1 x 250 international units vial, 1 x 10 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",710881000168106,"Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack",20150831 +8531000036104,"Dysport 300 units injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",721111000168109,"Dysport 300 units powder for injection, 1 vial",20151031 +702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726181000168108,"PKU Anamix Junior Neutral powder for oral liquid, 36 g sachet",20151031 +74943011000036105,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert powder for oral liquid sachet), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821931000168104,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack, composite pack",20160831 +75011011000036101,"azelastine hydrochloride 140 microgram/actuation nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",809521000168104,"azelastine hydrochloride 0.1% nasal spray",20160630 +844481000168106,"Zovirax 800 mg tablet",900000000000526001,"REPLACED BY association reference set",859211000168102,"Zovirax Dispersible 800 mg tablet",20161231 +60496011000036107,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack",900000000000526001,"REPLACED BY association reference set",967681000168101,"Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack",20170731 +46231000036105,"Remeron 45 mg tablet: orally disintegrating, 30, blister pack",900000000000526001,"REPLACED BY association reference set",783891000168102,"Remeron Soltab 45 mg orally disintegrating tablet, 30, blister pack",20160531 +49450011000036109,"Aquacel (177904) 2 g (30 cm) rope, 5 x 2 g",900000000000526001,"REPLACED BY association reference set",745121000168102,"Aquacel (177904) 2 cm x 45 cm ribbon, 5",20160131 +922897011000036101,"smallpox live vaccine",900000000000526001,"REPLACED BY association reference set",821261000168104,"vaccinia virus live antigen",20160831 +933244171000036106,"Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728111000168101,"Ovidrel 250 microgram/0.5 mL injection solution, 1 dose",20151031 +75039011000036109,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",828241000168108,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial",20161031 +663131000168103,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",833561000168104,"magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",20160930 +27341011000036102,"dolasetron mesylate 100 mg/5 mL injection, 5 mL vial",900000000000526001,"REPLACED BY association reference set",703361000168102,"dolasetron mesilate monohydrate 100 mg/5 mL injection, 5 mL ampoule",20150630 +43901000168108,"Recombinate 250 IU",900000000000526001,"REPLACED BY association reference set",710851000168104,"Recombinate",20150831 +7418011000036106,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041351000168107,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device",20171130 +933225761000036101,"Naropin 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005011000168100,"Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +828411000168105,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",846091000168105,"Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20161130 +76141011000036102,"X-Evess 250 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",702311000168106,"X-Evess Part-1 250 mg/mL oral liquid solution",20150531 +80524011000036100,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",863721000168105,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",20170131 +91541000036103,"Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",861871000168102,"Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60, bottle",20161231 +827941000168102,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845991000168100,"NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20161130 +933221271000036104,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004731000168108,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, bag",20170930 +22211011000036104,"aspirin 300 mg + codeine phosphate 8 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",834221000168109,"aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet",20161031 +925166011000036107,"Pemzo 20 mg capsule, 90, blister pack",900000000000526001,"REPLACED BY association reference set",717671000168108,"Pemzo 20 mg enteric capsule, 90, blister pack",20150930 +87016011000036108,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860091000168103,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet, 120",20161231 +70301000036106,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet",900000000000526001,"REPLACED BY association reference set",862011000168108,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet",20161231 +933237281000036108,"Omeprazole (Sandoz) 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",716181000168100,"Omeprazole (Sandoz) 20 mg enteric capsule, 30",20150930 +74406011000036109,"Boostrix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837661000168107,"Boostrix injection suspension, 0.5 mL syringe",20161031 +686811000168108,"interferon beta-1a 125 microgram/0.5 mL injection, injection device",900000000000526001,"REPLACED BY association reference set",698621000168100,"peginterferon beta-1a 125 microgram/0.5 mL injection, injection device",20150430 +243341000168103,"PKU Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724321000168102,"PKU Anamix Junior LQ Orange oral liquid solution, 125 mL bottle",20151031 +84872011000036107,"Mepitac (298300) 2 cm x 3 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694271000168107,"Mepitac (298300) 2 cm x 3 m tape, 1 roll",20150331 +711571000168103,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005601000168106,"Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 20 mL ampoule",20170930 +932723011000036101,"Rivotril Drops 2.5 mg/mL oral liquid: solution, drop",900000000000526001,"REPLACED BY association reference set",729101000168107,"Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution",20151130 +924881011000036103,"Pemzo 20 mg capsule, 14",900000000000526001,"REPLACED BY association reference set",716281000168107,"Pemzo 20 mg enteric capsule, 14",20150930 +931520011000036107,"Regaine Men's Extra Strength Foam 5% foam, 63 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",710781000168102,"Regaine Men's Extra Strength 5% foam, 63 mL, aerosol can",20150831 +96251000036107,"calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",861901000168102,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet, 60",20161231 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826071000168107,"Streptococcus pneumoniae type 6B conjugate antigen",20160930 +734131000168104,"Centavite Adult tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",842941000168102,"Centavite Adult film-coated tablet, 30, bottle",20161031 +933220911000036108,"ropivacaine hydrochloride monohydrate 40 mg/20 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004581000168103,"ropivacaine hydrochloride 40 mg/20 mL injection, ampoule",20170930 +146211000036106,"Tecfidera 240 mg capsule: modified release, 56, blister pack",900000000000526001,"REPLACED BY association reference set",756391000168107,"Tecfidera 240 mg enteric capsule, 56, blister pack",20160229 +80656011000036101,"Gastrolyte Blackcurrant effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871691000168109,"Gastrolyte Blackcurrant effervescent tablet, 20",20170131 +22238011000036104,"aluminium hydroxide dried 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg tablet",900000000000526001,"REPLACED BY association reference set",684421000168109,"aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet",20150131 +82191011000036105,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 120",900000000000526001,"REPLACED BY association reference set",860461000168102,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120",20161231 +700311000168105,"ADT Vaccine injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837291000168102,"ADT Vaccine injection suspension, 0.5 mL syringe",20161031 +49448011000036109,"Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694121000168102,"Leukosilk (1024) 5 cm x 5 m tape, 1 roll",20150331 +34380011000036105,"Subutex 8 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685711000168108,"Subutex 8 mg sublingual tablet, 100",20150228 +1021101000168108,"mesalazine 500 mg granules, 50 sachets",900000000000526001,"REPLACED BY association reference set",1084041000168101,"mesalazine 500 mg modified release granules, 50 sachets",20180228 +74430011000036104,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert powder for oral liquid sachet), 1 pack",900000000000526001,"REPLACED BY association reference set",821921000168102,"Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack",20160831 +14651000036103,"Clinoleic 20% injection: emulsion, 12 x 350 mL bags",900000000000526001,"REPLACED BY association reference set",779181000168100,"Clinoleic 20% injection emulsion, 12 x 350 mL bags",20160430 +86172011000036108,"Fleet Phospho-Soda oral liquid solution, 45 mL, bottle",900000000000526001,"REPLACED BY association reference set",1097821000168109,"Fleet Phospho-Soda oral liquid solution, 45 mL, bottle",20180331 +5044011000036103,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041121000168101,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device",20171130 +74205011000036103,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",826371000168105,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack",20160930 +69476011000036103,"Panadol Children's 7+ Years 250 mg tablet: soluble, 24, strip pack",900000000000526001,"REPLACED BY association reference set",721621000168108,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24, strip pack",20151031 +718871000168106,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection [10 syringes] (&) Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection [10 vials], 1 pack",900000000000526001,"REPLACED BY association reference set",840991000168106,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack",20161031 +67131011000036101,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 200 mL",900000000000526001,"REPLACED BY association reference set",688481000168103,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL",20150331 +76193011000036109,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated",900000000000526001,"REPLACED BY association reference set",861941000168100,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet",20161231 +156131000036109,"Macrogol plus Electrolytes (Apo) solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674081000168105,"Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets",20141031 +77168011000036101,"Sorbolene Cream with Glycerin (Orion) cream, 500 g, pump pack",900000000000526001,"REPLACED BY association reference set",705821000168101,"Sorbolene Cream with Glycerin (Orion) cream, 500 g, pump pack",20150731 +703621000168104,"Nimenrix (meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",826921000168105,"Nimenrix (meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine) powder for injection, vial",20160930 +69332011000036106,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 25 mL, bottle",900000000000526001,"REPLACED BY association reference set",688451000168105,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL, bottle",20150331 +930088011000036105,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872771000168106,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +85372011000036103,"Bonecal 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",848461000168105,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet",20161130 +28061011000036102,"omeprazole 20 mg capsule [14 capsules] (&) clarithromycin 500 mg tablet [14] (&) amoxycillin 500 mg capsule [28 capsules], 1 pack",900000000000526001,"REPLACED BY association reference set",715931000168109,"omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack",20150930 +933234591000036103,"Omeprazole (Apo) 20 mg capsule",900000000000526001,"REPLACED BY association reference set",717531000168106,"Omeprazole (Apo) 20 mg enteric capsule",20150930 +933231521000036104,"Naropin 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004671000168102,"Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +80223011000036109,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",872521000168102,"Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag",20170131 +84659011000036108,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873131000168102,"alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags",20170131 +823881000168108,"Bydureon (inert substance) diluent, cartridge",900000000000526001,"REPLACED BY association reference set",833271000168107,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose",20160930 +86247011000036109,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L solution, bag",900000000000526001,"REPLACED BY association reference set",872291000168103,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag",20170131 +51901000036104,"chlorhexidine gluconate 0.12% mouthwash, 300 mL",900000000000526001,"REPLACED BY association reference set",751241000168104,"chlorhexidine gluconate 0.12% mouthwash, 300 mL",20160229 +13016011000036108,"Dapa-Tabs 2.5 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",935681000168103,"Dapa-Tabs 2.5 mg film-coated tablet, 90",20170531 +45111000036101,"MMA/PA Cooler 15 oral liquid: solution, 30 x 130 mL sachets",900000000000526001,"REPLACED BY association reference set",725271000168105,"MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches",20151031 +900851000168109,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922551000168100,"PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets",20170430 +61161000036106,"Rehydration Formula Effervescent (Guardian) effervescent tablet",900000000000526001,"REPLACED BY association reference set",871751000168108,"Rehydration Formula Effervescent (Guardian) effervescent tablet",20170131 +34010011000036106,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",835601000168103,"Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution",20161031 +76749011000036109,"Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695741000168108,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles",20150430 +639811000168108,"Recombinate 1000 IU (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",710871000168108,"Recombinate (inert substance) diluent, 10 mL vial",20150831 +74847011000036109,"Co-Phenylcaine Forte nasal spray, 25 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",792071000168104,"Co-Phenylcaine Forte nasal spray, 25 mL, pump pack",20160531 +73932011000036100,"Menomune-A/C/Y/W-135 (meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",827741000168100,"Menomune-A/C/Y/W-135 (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial",20160930 +76550011000036102,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L",900000000000526001,"REPLACED BY association reference set",705991000168106,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L",20150731 +73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826051000168103,"Streptococcus pneumoniae type 14 conjugate antigen",20160930 +941591000168103,"Metformin (AS) 1 g film-coated tablet, 10",900000000000526001,"REPLACED BY association reference set",949481000168104,"Metformin 1000 (AS) 1 g film-coated tablet, 10",20170630 +27362011000036100,"triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/mL ear drops, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758331000168107,"triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL",20160229 +18172011000036106,"ADT Vaccine injection: suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837301000168101,"ADT Vaccine injection suspension, 0.5 mL syringe",20161031 +74227011000036102,"Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827531000168100,"Prevenar injection suspension, 0.5 mL syringe",20160930 +925340011000036106,"Omepro 20 mg capsule, 56, bottle",900000000000526001,"REPLACED BY association reference set",716801000168100,"Omepro 20 mg enteric capsule, 56, bottle",20150930 +95791000036104,"Ostelin Osteoguard tablet: film-coated, 90, blister pack",900000000000526001,"REPLACED BY association reference set",932991000168103,"Ostelin Osteoguard film-coated tablet, 90, blister pack",20170531 +74872011000036106,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",828281000168103,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",20160930 +29241000036107,"typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827151000168102,"typhoid inactivated vaccine injection, 0.5 mL syringe",20160930 +75379011000036107,"hepatitis B vaccine 20 microgram/mL injection, 25 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825251000168104,"hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL syringes",20160930 +921577011000036105,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",831761000168107,"Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack",20160930 +711971000168105,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005211000168106,"Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +70141000036107,"salicylic acid 2% conditioner",900000000000526001,"REPLACED BY association reference set",648371000168104,"salicylic acid 2% conditioner",20160331 +86184011000036108,"Extraneal 7.5% dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872331000168109,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",20170131 +19821000036106,"Albey Venom Albumin Saline",900000000000526001,"REPLACED BY association reference set",754701000168106,"Albumin Saline (Stallergenes)",20160229 +930006011000036105,"Granisetron (Kabi) 1 mg/mL injection: concentrated, ampoule",900000000000526001,"REPLACED BY association reference set",747071000168109,"Granisetron (Kabi) 1 mg/mL injection solution, ampoule",20160131 +33073011000036108,"Albey Yellow Jacket Venom (vespula spp venom 550 microgram) injection: powder for, 550 microgram vial",900000000000526001,"REPLACED BY association reference set",759051000168106,"Yellow Jacket Venom (Albey) (yellow jacket venom 550 microgram) powder for injection, 550 microgram vial",20160229 +702771000168104,"PKU Anamix Junior oral liquid: powder for, 36 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726091000168105,"PKU Anamix Junior Orange powder for oral liquid, 36 g sachet",20151031 +806241000168103,"Repatha 140 mg/mL injection: solution, 2 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846421000168101,"Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices",20161130 +924705011000036103,"Pemzo 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",716321000168102,"Pemzo 20 mg enteric capsule, 140",20150930 +14561000036104,"Zactin 20 mg dispersible tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",844401000168103,"Zactin 20 mg tablet, 28, blister pack",20161031 +56687011000036100,"Difflam Mouth oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",995961000168109,"Difflam Mouth oral gel, 10 g",20170831 +69823011000036103,"magnesium chloride",900000000000526001,"REPLACED BY association reference set",878861000168107,"magnesium",20170228 +57202011000036104,"Clozole Vaginal Cream (Meditab) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",715851000168106,"Clozole (Meditab) 2% vaginal cream, 20 g",20150930 +836151000168102,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872301000168102,"Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag",20170131 +46724011000036103,"budesonide 64 microgram/actuation nasal spray, 240 actuations",900000000000526001,"REPLACED BY association reference set",730081000168107,"budesonide 64 microgram/actuation nasal spray, 2 x 120 actuations",20151130 +712021000168104,"Ropibam 0.75% 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005231000168101,"Ropibam 0.75% 75 mg/10 mL injection solution, 10 mL ampoule",20170930 +921397011000036103,"Berocca Performance Original effervescent tablet, 45",900000000000526001,"REPLACED BY association reference set",829781000168101,"Berocca Performance Original effervescent tablet, 45",20160930 +74719011000036107,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826381000168108,"Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack",20160930 +50243011000036109,"PKU Cooler10 Purple oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725591000168109,"PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches",20151031 +27819011000036108,"buprenorphine 2 mg tablet, 7",900000000000526001,"REPLACED BY association reference set",685591000168106,"buprenorphine 2 mg sublingual tablet, 7",20150228 +59861011000036109,"Anti Fungal V 3 Day (Amcal) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",714911000168100,"Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g, tube",20150930 +46393011000036106,"lignocaine hydrochloride anhydrous 2% (400 mg/20 mL) injection, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693421000168107,"lidocaine (lignocaine) hydrochloride monohydrate 2% (400 mg/20 mL) injection, 30 x 20 mL ampoules",20150331 +711361000168103,"Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004491000168104,"Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule",20170930 +74948011000036100,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831101000168107,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack",20160930 +19769011000036104,"Panamax Co uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",836081000168108,"Panamax Co uncoated tablet, 50, blister pack",20161031 +46974011000036108,"albendazole 400 mg chewable tablet, 56",900000000000526001,"REPLACED BY association reference set",844111000168106,"albendazole 400 mg tablet, 56",20161031 +82406011000036101,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag",900000000000526001,"REPLACED BY association reference set",872421000168101,"Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag",20170131 +680651000168105,"Zaldiar Combination Therapy film-coated tablet, 50",900000000000526001,"REPLACED BY association reference set",1027851000168107,"Zaldiar film-coated tablet, 50",20171031 +71196011000036100,"cetylpyridinium chloride monohydrate 0.05% mouthwash, 150 mL",900000000000526001,"REPLACED BY association reference set",994971000168102,"cetylpyridinium chloride 0.05% mouthwash, 150 mL",20170831 +59674011000036108,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721671000168109,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL, bottle",20151031 +37365011000036107,"Lanoxin 50 microgram/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",735111000168105,"Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules",20151231 +74417011000036105,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845971000168101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +924871011000036106,"Omepro 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",716531000168109,"Omepro 20 mg enteric capsule, 28",20150930 +686401000168107,"Plegridy 125 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",698581000168100,"Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL syringe",20150430 +74751011000036100,"Infanrix Hexa injection: suspension, 10 packs, composite pack",900000000000526001,"REPLACED BY association reference set",841011000168105,"Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack",20161031 +66843011000036107,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705611000168107,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g",20150731 +36675011000036109,"Marcain Spinal Heavy injection: solution, 5 x 4 mL ampoules",900000000000526001,"REPLACED BY association reference set",863591000168100,"Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules",20170131 +158371000036105,"Oxycontin Reformulation 10 mg modified release tablet",900000000000526001,"REPLACED BY association reference set",6511011000036106,"Oxycontin 10 mg modified release tablet",20170731 +69641000036101,"Calcium Carbonate (Winthrop) (calcium (as carbonate) 500 mg) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",852731000168106,"Calcium Carbonate (Winthrop) 1.25 g (calcium 500 mg) film-coated tablet",20161130 +833811000168100,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, 7 dual chamber devices",900000000000526001,"REPLACED BY association reference set",975171000168106,"Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack",20170731 +55656011000036106,"Cepacol Cough Plus Lemon lozenge, 16",900000000000526001,"REPLACED BY association reference set",995271000168107,"Cepacol Cough Plus Lemon lozenge, 16",20170831 +86168011000036103,"Go Kit (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",830981000168109,"Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack",20160930 +66721000036108,"Quick-Eze chewable tablet, 12, wrapping",900000000000526001,"REPLACED BY association reference set",833681000168107,"Quick-Eze chewable tablet, 12, wrapping",20160930 +78259011000036109,"iopromide 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695271000168108,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 100 mL bottles",20150430 +169821000036102,"Aquacel Ag (403771) 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745091000168101,"Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5",20160131 +81303011000036103,"sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet",900000000000526001,"REPLACED BY association reference set",871601000168103,"sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet",20170131 +81699011000036106,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868061000168108,"glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag",20170131 +26721011000036103,"atropine sulfate 600 microgram/mL injection, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850751000168101,"atropine sulfate monohydrate 600 microgram/mL injection, 10 x 1 mL ampoules",20161130 +138901000036101,"Granisetron (Sandoz) 1 mg/mL injection: concentrated, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",747051000168100,"Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials",20160131 +75453011000036100,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824871000168108,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL syringe",20160930 +65369011000036103,"Cepacol Antibacterial Menthol and Eucalyptus lozenge",900000000000526001,"REPLACED BY association reference set",995121000168102,"Cepacol Antibacterial Menthol and Eucalyptus lozenge",20170831 +74202011000036106,"Azep 140 microgram/actuation nasal spray, 20 mL",900000000000526001,"REPLACED BY association reference set",809611000168107,"Azep 0.1% nasal spray, 20 mL",20160630 +74740011000036105,"Adacel Polio injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839651000168102,"Adacel Polio injection suspension, 0.5 mL syringe",20161031 +941641000168107,"Metformin (AS) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",949531000168101,"Metformin 1000 (AS) 1 g film-coated tablet, 60, blister pack",20170630 +40065011000036100,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 mL ampoule",900000000000526001,"REPLACED BY association reference set",693331000168104,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 mL ampoule",20150331 +59703011000036106,"Cortef 1% spray: solution, 30 mL, bottle",900000000000526001,"REPLACED BY association reference set",776901000168104,"Cortef 1% spray solution, 30 mL, bottle",20160430 +708511000168103,"Otocomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758401000168108,"Otocomb Otic ear drops solution, 7.5 mL",20160229 +77545011000036107,"alpha tocopherol acetate 96% oil",900000000000526001,"REPLACED BY association reference set",842731000168109,"dl-alpha-tocopheryl acetate 96% oil",20161031 +19667011000036101,"Cal Sup 500 mg (calcium 500 mg) chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",859741000168105,"Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60, bottle",20161231 +30704011000036103,"alpha tocopherol acetate",900000000000527005,"SAME AS association reference set",809501000168108,"dl-alpha-tocopheryl acetate",20161031 +682121000168107,"testosterone undecanoate 1 g/4 mL injection, vial",900000000000526001,"REPLACED BY association reference set",722931000168106,"testosterone undecanoate 1 g/4 mL modified release injection, vial",20151031 +82564011000036101,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, 2 x 5 L bags",900000000000526001,"REPLACED BY association reference set",872431000168103,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 2 x 5 L bags",20170131 +18688011000036100,"Baraclude 1 mg tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",829481000168108,"Baraclude 1 mg film-coated tablet, 30, blister pack",20160930 +81292011000036103,"sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, bag",900000000000526001,"REPLACED BY association reference set",872591000168100,"sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, bag",20170131 +921000011000036102,"Calvid granules: effervescent, 7 g sachet",900000000000526001,"REPLACED BY association reference set",810631000168109,"Calvid effervescent granules, 7.3 g sachet",20160630 +85743011000036105,"Movicol Junior solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674181000168106,"Movicol Junior powder for oral liquid, 30 sachets",20141031 +60807011000036102,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 2, blister pack",900000000000526001,"REPLACED BY association reference set",844181000168100,"Combantrin-1 with Mebendazole 100 mg tablet, 2, blister pack",20161031 +18886011000036109,"Atropt 1% eye drops solution, 15 mL, bottle",900000000000526001,"REPLACED BY association reference set",850981000168105,"Atropt 1% eye drops solution, 15 mL, bottle",20161130 +175411000036104,"Molaxole solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674211000168105,"Molaxole powder for oral liquid, 30 sachets",20141031 +60752011000036107,"Difflam Lozenge raspberry sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995921000168104,"Difflam Lozenge Raspberry Sugar Free lozenge, 2, blister pack",20170831 +815181000168105,"Entrip 50 mg tablet, 10, blister pack",900000000000526001,"REPLACED BY association reference set",856791000168109,"Entrip 50 mg film-coated tablet, 10, blister pack",20161231 +135711000036106,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821541000168101,"Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack",20160831 +38570011000036102,"aspirin 325 mg + codeine phosphate 30 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",834601000168102,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 50",20161031 +923451011000036103,"Omeprazole (Pharmacor) 20 mg capsule, 60",900000000000526001,"REPLACED BY association reference set",717361000168109,"Omeprazole (Pharmacor) 20 mg enteric capsule, 60",20150930 +13618011000036104,"Keppra 1 g tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",721061000168108,"Keppra-1000 1 g film-coated tablet, 60",20151031 +696481000168100,"meningococcal group B heparin binding antigen fusion protein",900000000000526001,"REPLACED BY association reference set",822421000168100,"Neisseria meningitidis group B heparin binding antigen fusion protein",20160831 +56684011000036106,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721521000168109,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL",20151031 +74930011000036101,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845981000168103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +691991000168100,"Calcium (Sandoz) 500 mg tablet: film-coated, 48, bottle",900000000000526001,"REPLACED BY association reference set",847911000168103,"Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle",20161130 +27839011000036101,"oxycodone hydrochloride 5 mg/5 mL oral liquid, 250 mL",900000000000526001,"REPLACED BY association reference set",815931000168107,"oxycodone hydrochloride 1 mg/mL oral liquid, 250 mL",20160731 +930836011000036101,"Actonel EC Combi (4 x Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28",900000000000526001,"REPLACED BY association reference set",852711000168101,"Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28",20161130 +711421000168103,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005071000168108,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +78216011000036107,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872941000168101,"alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles",20170131 +83964011000036101,"Wagner Magnesium Forte 400 capsules: hard, 50",900000000000526001,"REPLACED BY association reference set",750291000168104,"Magnesium Forte 400 (Wagner) hard capsule, 50",20160131 +74254011000036109,"Cervarix injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823191000168102,"Cervarix injection suspension, 10 x 0.5 mL syringes",20160831 +246071000168104,"PKU Cooler15 Orange oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725631000168109,"PKU Cooler 15 Orange oral liquid solution, 130 mL pouch",20151031 +74268011000036108,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",836771000168107,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes",20161031 +22009011000036108,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",838051000168100,"pneumococcal 23 valent vaccine injection, 0.5 mL vial",20161031 +57065011000036104,"Difflam Lozenge orange sugar free lozenge, 8",900000000000526001,"REPLACED BY association reference set",995861000168102,"Difflam Lozenge Orange Sugar Free lozenge, 8",20170831 +930679011000036103,"Granisetron (Kabi) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747081000168107,"Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules",20160131 +159231000036106,"Oxycontin Reformulation 15 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928246011000036109,"Oxycontin 15 mg modified release tablet, 28",20170731 +54049011000036104,"Difflam Lozenge eucalyptus and menthol sugar free lozenge",900000000000526001,"REPLACED BY association reference set",995621000168108,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge",20170831 +56845011000036107,"Disprin Original 300 mg dispersible tablet, 48",900000000000526001,"REPLACED BY association reference set",804301000168103,"Disprin Original 300 mg tablet, 48",20160630 +933225821000036102,"Naropin 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004611000168105,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +63734011000036103,"benzydamine hydrochloride 0.15% spray, 30 mL",900000000000526001,"REPLACED BY association reference set",721271000168107,"benzydamine hydrochloride 0.15% oral spray, 30 mL",20151031 +81700011000036107,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",868091000168101,"glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags",20170131 +37548011000036108,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L, bottle",900000000000526001,"REPLACED BY association reference set",834951000168105,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L, bottle",20161031 +43891000036102,"Remeron 15 mg tablet: orally disintegrating, 30",900000000000526001,"REPLACED BY association reference set",783821000168104,"Remeron Soltab 15 mg orally disintegrating tablet, 30",20160531 +22698011000036109,"flurbiprofen sodium 0.03% (120 microgram/0.4 mL) eye drops, ampoule",900000000000526001,"REPLACED BY association reference set",684561000168103,"flurbiprofen sodium dihydrate 0.03% eye drops, unit dose",20150131 +156001000036103,"Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",862201000168100,"Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120",20161231 +43901000036101,"Remeron 30 mg tablet: orally disintegrating, 30",900000000000526001,"REPLACED BY association reference set",783851000168107,"Remeron Soltab 30 mg orally disintegrating tablet, 30",20160531 +101351000036103,"Irbesartan (Apo) 150 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",807781000168102,"Irbesartan (Apo) 150 mg film-coated tablet, 30",20160630 +41565011000036106,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693301000168106,"Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules",20150331 +708501000168101,"Otocomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758391000168106,"Otocomb Otic ear drops solution",20160229 +923727011000036104,"Omeprazole (Pharmacor) 20 mg capsule, 7, blister pack",900000000000526001,"REPLACED BY association reference set",717411000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 7, blister pack",20150930 +75013011000036100,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837461000168105,"diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial",20161031 +82563011000036103,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, 5 L bag",900000000000526001,"REPLACED BY association reference set",872401000168105,"calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 5 L bag",20170131 +108841000036104,"Moviprep Lemon powder for oral liquid, 4 sachets",900000000000526001,"REPLACED BY association reference set",902181000168109,"Moviprep (2 x A sachets, 2 x B sachets), 4 sachets",20170331 +73884011000036109,"Stamaril (Yellow fever live attenuated vaccine 1000 units) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",822201000168108,"Stamaril (yellow fever live vaccine) powder for injection, vial",20160831 +23641011000036102,"paracetamol 500 mg + codeine phosphate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",79115011000036100,"paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet",20161031 +836191000168107,"Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872351000168103,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag",20170131 +931723011000036100,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872801000168108,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",20170131 +63527011000036105,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 4",900000000000526001,"REPLACED BY association reference set",996231000168104,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 4",20170831 +39995011000036107,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution",900000000000526001,"REPLACED BY association reference set",835511000168101,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution",20161031 +75403011000036108,"hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824611000168101,"hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe",20160930 +34015011000036102,"Codeine Phosphate (Phebra) 50 mg/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",835641000168101,"Codeine Phosphate (Phebra) 50 mg/mL injection solution, ampoule",20161031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836631000168101,"Streptococcus pneumoniae type 3 polysaccharide antigen",20161031 +11718011000036100,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041091000168100,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device",20171130 +60199011000036102,"Daktarin 2% oral gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",820011000168101,"Daktarin 2% oral gel, 10 g, tube",20160731 +137851000036107,"Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006071000168104,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule",20170930 +74263011000036103,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",831991000168103,"Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack",20160930 +170761000036103,"Aquacel Ag (403771) 2 cm x 45 cm rope, 5, carton",900000000000526001,"REPLACED BY association reference set",745101000168106,"Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5, carton",20160131 +139281000036106,"Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006201000168104,"Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +176611000036109,"Levactam 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003081000168105,"Levactam-1000 1 g film-coated tablet, 60, blister pack",20170930 +85769011000036101,"Kepcet 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003031000168109,"Kepcet-1000 1 g film-coated tablet, 60",20170930 +68669011000036100,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995151000168105,"Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16, blister pack",20170831 +172331000168102,"MSUD Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724841000168103,"MSUD Cooler 15 Red oral liquid solution, 130 mL pouch",20151031 +80216011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867891000168105,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",20170131 +716121000168104,"meningococcal group A conjugate vaccine 10 microgram injection [1 vial] (&) meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",826711000168101,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack",20160930 +728821000168103,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006151000168107,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +53636011000036100,"Clozole Vaginal Cream (Chemists' Own) 2% cream",900000000000526001,"REPLACED BY association reference set",715431000168102,"Clozole (Chemists' Own) 2% vaginal cream",20150930 +828331000168106,"Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",846051000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial",20161130 +13841011000036107,"Novomix 30 Flexpen injection suspension, 5 x 3 mL syringes",900000000000526001,"REPLACED BY association reference set",1007211000168103,"Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices",20170930 +75084011000036101,"Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832281000168103,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial",20160930 +75069011000036103,"Yellow fever live attenuated vaccine 1000 units injection, vial",900000000000526001,"REPLACED BY association reference set",822191000168105,"yellow fever live vaccine injection, vial",20160831 +74862011000036104,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825131000168100,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial",20160930 +31441000036108,"Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083761000168102,"Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL, pump pack",20180228 +103771000036108,"Victoza 18 mg/3 mL injection: solution, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748061000168104,"Victoza 6 mg/mL injection solution, 3 mL injection device",20160131 +74419011000036103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846021000168108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes",20161130 +653621000168101,"Retinofluor 500 mg/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721181000168103,"Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials",20151031 +925339011000036101,"Omepro 20 mg capsule, 500, bottle",900000000000526001,"REPLACED BY association reference set",716731000168100,"Omepro 20 mg enteric capsule, 500, bottle",20150930 +75114011000036108,"hepatitis B vaccine 10 microgram/mL injection, vial",900000000000526001,"REPLACED BY association reference set",825721000168102,"hepatitis B adult vaccine 10 microgram/mL injection, vial",20160930 +23268011000036104,"pancreatic extract 5000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847501000168109,"lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule",20161130 +145321000036101,"Tecfidera 240 mg capsule: modified release, 56",900000000000526001,"REPLACED BY association reference set",756381000168109,"Tecfidera 240 mg enteric capsule, 56",20160229 +921572011000036108,"Panadeine Forte uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",835851000168103,"Panadeine Forte uncoated tablet, 50",20161031 +933226051000036106,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004711000168103,"Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags",20170930 +933225651000036109,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorbutol 5% + arachis oil 57% ear drops, 10 mL",900000000000526001,"REPLACED BY association reference set",854361000168109,"ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops, 10 mL",20161231 +33802011000036108,"adrenaline 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726671000168102,"adrenaline (epinephrine) 150 microgram/0.3 mL injection, 1 dose",20151031 +4738011000036104,"Baraclude 500 microgram tablet: film-coated",900000000000526001,"REPLACED BY association reference set",829501000168104,"Baraclude 500 microgram film-coated tablet",20160930 +76068011000036108,"Sandocal 1000 tablets: effervescent",900000000000526001,"REPLACED BY association reference set",745611000168101,"Sandocal 1000 effervescent tablet",20160131 +54234011000036108,"Clozole Vaginal Cream (Meditab) 2% cream",900000000000526001,"REPLACED BY association reference set",715841000168109,"Clozole (Meditab) 2% vaginal cream",20150930 +75400011000036100,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836701000168102,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe",20161031 +33081011000036104,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881191000168108,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, dose",20170228 +920147011000036106,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",949341000168102,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet",20170630 +360421000168105,"magnesium carbonate heavy 7.5 g + citric acid 14 g powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",830931000168108,"magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 1 sachet",20160930 +17929011000036109,"Nemdyn Otic ointment, 10 g, tube",900000000000526001,"REPLACED BY association reference set",689871000168106,"Nemdyn Otic ear ointment, 10 g, tube",20150331 +921841011000036102,"Berocca Performance Original effervescent tablet, 45, bottle",900000000000526001,"REPLACED BY association reference set",829791000168103,"Berocca Performance Original effervescent tablet, 45, bottle",20160930 +665561000168102,"PKU Cooler15 Green oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725611000168104,"PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches",20151031 +41564011000036107,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 50 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693251000168100,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules",20150331 +728801000168107,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006131000168101,"Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 10 mL ampoule",20170930 +930882011000036106,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872821000168104,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +56159011000036103,"Daktarin 2% oral gel, 15 g",900000000000526001,"REPLACED BY association reference set",820021000168108,"Daktarin 2% oral gel, 15 g",20160731 +711961000168104,"Ropibam 0.75% 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005201000168108,"Ropibam 0.75% 150 mg/20 mL injection solution, 20 mL ampoule",20170930 +81132011000036107,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868371000168104,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",20170131 +74969011000036101,"Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, fimbriae types 2 and 3 vaccine + Bordetella pertussis, acellular pertactin vaccine + diphtheria toxoid vaccine + tetanus toxoid vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",839601000168101,"diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine",20161031 +75066011000036107,"hepatitis A inactivated vaccine 50 units/mL injection, vial",900000000000526001,"REPLACED BY association reference set",824901000168108,"hepatitis A adult vaccine 50 units/mL injection, vial",20160930 +49444011000036102,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694171000168101,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll",20150331 +75092011000036106,"hepatitis A inactivated vaccine 160 antigen units/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",824651000168100,"hepatitis A child/adult vaccine injection, 0.5 mL syringe",20160930 +650791000168104,"dressing hydrofibre alternate to alginates 2 cm x 45 cm rope",900000000000526001,"REPLACED BY association reference set",745011000168105,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon",20160131 +815081000168109,"Entrip 25 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",856691000168103,"Entrip 25 mg film-coated tablet, 50",20161231 +63087011000036101,"benzocaine 1 mg + cetylpyridinium chloride monohydrate 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995261000168101,"benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge, 16",20170831 +1895011000036106,"calcium chloride",900000000000527005,"SAME AS association reference set",64897011000036103,"calcium chloride dihydrate",20161031 +51407011000036101,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689161000168105,"tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll",20150331 +137191000036108,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine",900000000000526001,"REPLACED BY association reference set",827351000168104,"Haemophilus influenzae type b conjugate (PRP-T) antigen",20161031 +920384011000036100,"Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90",900000000000526001,"REPLACED BY association reference set",949351000168100,"Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90",20170630 +22792011000036104,"calcium (as carbonate) 500 mg tablet",900000000000526001,"REPLACED BY association reference set",847871000168101,"calcium carbonate 1.25 g (calcium 500 mg) tablet",20161130 +6246011000036102,"Movicol solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",673961000168103,"Movicol powder for oral liquid, sachet",20141031 +900012011000036107,"Voltaren Emulgel 1% gel",900000000000526001,"REPLACED BY association reference set",1036991000168109,"Voltaren Emulgel 1.16% gel",20171130 +51413011000036107,"dressing hydrofibre alternate to alginates 2 g (30 cm) rope, 5 x 2 g",900000000000526001,"REPLACED BY association reference set",745031000168100,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5",20160131 +711171000168107,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005881000168104,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +922105011000036103,"diatrizoate meglumine 158.4 g/240 mL + diatrizoate sodium 24 g/240 mL solution, bottle",900000000000526001,"REPLACED BY association reference set",696051000168103,"amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution",20150430 +708461000168101,"Kenacomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758321000168109,"Kenacomb Otic ear drops solution",20160229 +120491000036100,"Canesten Plus cream, 30 g",900000000000526001,"REPLACED BY association reference set",715881000168104,"Canesten Plus cream, 30 g",20150930 +77385011000036104,"Centrum tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",833181000168103,"Centrum film-coated tablet, 100, bottle",20160930 +60759011000036102,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996221000168102,"Duro-Tuss Dry Cough Lozenge lemon lozenge, 24, blister pack",20170831 +926285011000036102,"Valtrex 1 g film-coated tablet, 4",900000000000526001,"REPLACED BY association reference set",1009691000168102,"Valtrex-1000 1 g film-coated tablet, 4",20170930 +281000168103,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 6 sachets",900000000000526001,"REPLACED BY association reference set",810231000168107,"Actonel EC Combi D effervescent granules, 6 sachets",20160630 +51408011000036100,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",693991000168104,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll",20150331 +82202011000036104,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100",900000000000526001,"REPLACED BY association reference set",729271000168108,"Silver Nitrate Applicator (Grafco) stick, 100",20151130 +177971000036108,"Lyxumia 10 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses, cartridge",900000000000526001,"REPLACED BY association reference set",719331000168105,"Lyxumia 10 microgram/dose injection solution, 14 doses, injection device",20150930 +921547011000036106,"Picolax powder for oral liquid, 2 x 20 g sachets",900000000000526001,"REPLACED BY association reference set",832641000168106,"Picolax powder for oral liquid, 2 x 20 g sachets",20160930 +833791000168104,"Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",975151000168102,"Genotropin Miniquick (somatropin 400 microgram) powder for injection, 400 microgram syringe",20170731 +81287011000036102,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867881000168107,"glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag",20170131 +84626011000036103,"dibasic sodium phosphate heptahydrate 398 mg + monobasic sodium phosphate monohydrate 1.27 g tablet, 32",900000000000526001,"REPLACED BY association reference set",900251000168105,"monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet, 32",20170331 +77321011000036105,"Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",695091000168102,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials",20150430 +77578011000036102,"iopromide 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695711000168109,"iopromide 769 mg (iodine 370 mg)/mL injection, 100 mL bottle",20150430 +933221251000036109,"ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004831000168101,"ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, bag",20170930 +93391000036104,"Menactra injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826541000168106,"Menactra injection solution, 0.5 mL vial",20160930 +922550011000036108,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",757911000168102,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 90",20160229 +73661011000036104,"poliomyelitis virus type 2 (MEF1) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836531000168100,"poliovirus type 2 inactivated antigen",20161031 +71371000036106,"exenatide 5 microgram/0.02 mL injection, 60 x 0.02 mL unit doses",900000000000526001,"REPLACED BY association reference set",726771000168106,"exenatide 5 microgram/dose injection, 60 doses",20151031 +69331011000036100,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",688491000168100,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL, bottle",20150331 +75038011000036101,"poliomyelitis live attenuated oral vaccine oral liquid, vial",900000000000526001,"REPLACED BY association reference set",839791000168101,"polio trivalent live vaccine oral liquid, 1 vial",20161031 +61226011000036109,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715641000168108,"Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g, tube",20150930 +35164011000036102,"codeine phosphate 30 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",834711000168106,"codeine phosphate hemihydrate 30 mg tablet, 100",20161031 +700401000168104,"ADT Booster injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837351000168102,"ADT Booster injection suspension, 5 x 0.5 mL syringes",20161031 +29181000036105,"Movicol Chocolate solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674051000168103,"Movicol Chocolate powder for oral liquid, 8 sachets",20141031 +38615011000036107,"atropine sulfate 400 microgram/mL injection, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850411000168107,"atropine sulfate monohydrate 400 microgram/mL injection, 50 x 1 mL ampoules",20161130 +922548011000036108,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 150",900000000000526001,"REPLACED BY association reference set",757941000168103,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 150",20160229 +63607011000036107,"aspirin 300 mg dispersible tablet, 48",900000000000526001,"REPLACED BY association reference set",804291000168104,"aspirin 300 mg tablet, 48",20160630 +73659011000036105,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine",900000000000526001,"REPLACED BY association reference set",836521000168103,"poliovirus type 1 inactivated antigen",20161031 +74880011000036101,"Tripacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837581000168102,"Tripacel injection suspension, 0.5 mL vial",20161031 +63724011000036100,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 8",900000000000526001,"REPLACED BY association reference set",995761000168106,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 8",20170831 +923776011000036101,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",821331000168100,"Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack",20160831 +107321000036104,"Sorbact (S98310) 10 cm x 10 cm foam dressing",900000000000526001,"REPLACED BY association reference set",1056321000168107,"Sorbact Foam (S98310) 10 cm x 10 cm foam dressing",20171231 +692171000168109,"Calcium (Actavis) 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",848381000168109,"Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48",20161130 +84411011000036103,"macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + ascorbic acid",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",69825011000036102,"macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate",20170331 +20397011000036106,"Etopophos 1 g injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793621000168102,"Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial",20160531 +692161000168103,"Calcium (Actavis) 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",848371000168106,"Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet",20161130 +82672011000036105,"Questran 8 g powder for oral liquid, 9.4 g sachet",900000000000526001,"REPLACED BY association reference set",1032291000168104,"Questran Lite 8 g powder for oral liquid, 9.4 g sachet",20171130 +71781000036109,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 60",900000000000526001,"REPLACED BY association reference set",862091000168104,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 60",20161231 +844561000168101,"Zovirax 800 mg tablet, 120, blister pack",900000000000526001,"REPLACED BY association reference set",859441000168102,"Zovirax Dispersible 800 mg tablet, 120, blister pack",20161231 +39988011000036102,"Eleuphrat 0.05% lotion",900000000000526001,"REPLACED BY association reference set",1054591000168109,"Eleuphrat 0.05% lotion",20171231 +806261000168104,"Repatha 140 mg/mL injection: solution, 3 x 1 mL injection devices",900000000000526001,"REPLACED BY association reference set",846431000168103,"Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices",20161130 +51311000168105,"Fluoride Moose Mallow (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)",20170531 +931388011000036102,"Decongestant (Chemmart) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083591000168102,"Decongestant (Chemmart) 0.05% nasal spray, 20 mL, pump pack",20180228 +12638011000036102,"Zovirax 800 mg dispersible tablet, 120",900000000000526001,"REPLACED BY association reference set",859431000168106,"Zovirax Dispersible 800 mg tablet, 120",20161231 +46309011000036106,"betamethasone (as dipropionate) 0.05% lotion, 30 mL",900000000000526001,"REPLACED BY association reference set",1054601000168102,"betamethasone (as dipropionate) 0.05% lotion, 30 mL",20171231 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826081000168105,"Streptococcus pneumoniae type 6A conjugate antigen",20160930 +77144011000036103,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL, pump pack",900000000000526001,"REPLACED BY association reference set",705971000168105,"Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL, pump pack",20150731 +56706011000036105,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2",900000000000526001,"REPLACED BY association reference set",996271000168101,"Duro-Tuss Dry Cough Lozenge orange lozenge, 2",20170831 +74892011000036101,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",831911000168107,"Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack",20160930 +167351000036109,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848611000168109,"Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack",20161130 +921928011000036103,"MD-Gastroview solution, 12 x 240 mL each, bottle",900000000000526001,"REPLACED BY association reference set",696121000168107,"MD-Gastroview solution, 12 x 240 mL, bottles",20150430 +933220921000036101,"Naropin 0.2% (20 mg/10 mL) injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004491000168104,"Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule",20170930 +137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711051000168102,"Ropivacaine 0.5% (Kabi)",20150831 +76547011000036103,"Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000526001,"REPLACED BY association reference set",726251000168108,"Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches",20151031 +159251000036103,"Oxycontin Reformulation 10 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928480011000036100,"Oxycontin 10 mg modified release tablet, 28",20170731 +49487011000036104,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724081000168101,"HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches",20151031 +142401000036107,"Vivotif Oral enteric capsule",900000000000526001,"REPLACED BY association reference set",827251000168109,"Vivotif Oral enteric capsule",20160930 +933049011000036106,"Lasix High Dose 20 mg/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",704841000168108,"Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules",20150630 +63368011000036101,"paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) dexchlorpheniramine maleate 2 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [8], 24",900000000000526001,"REPLACED BY association reference set",63905011000036101,"paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24",20170731 +728001000168103,"Lovan 20 mg dispersible tablet, 7",900000000000526001,"REPLACED BY association reference set",844771000168102,"Lovan 20 mg tablet, 7",20161031 +141731000036101,"Somatuline Autogel 60 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819591000168104,"Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +141531000036106,"Somatuline Autogel 90 mg injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",819521000168101,"Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826031000168109,"Streptococcus pneumoniae type 19F conjugate antigen",20160930 +82413011000036109,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100, tube",900000000000526001,"REPLACED BY association reference set",729281000168106,"Silver Nitrate Applicator (Grafco) stick, 100, tube",20151130 +110441000036102,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20, carton",900000000000526001,"REPLACED BY association reference set",1056201000168105,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20, carton",20171231 +69626011000036102,"Aqium 66% gel, 70 mL, bottle",900000000000526001,"REPLACED BY association reference set",730471000168100,"Aqium 66% gel, 70 mL, bottle",20151130 +684031000168104,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",838181000168108,"pneumococcal 23 valent vaccine injection, 10 x 0.5 mL syringes",20161031 +51258011000036106,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724241000168102,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches",20151031 +74739011000036100,"Infanrix Hexa injection: suspension, 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",840931000168107,"Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack",20161031 +922668011000036107,"sorbitol 70% non-crystallising oral liquid, 500 mL",900000000000526001,"REPLACED BY association reference set",690621000168103,"sorbitol solution 70% non-crystallising oral liquid, 500 mL",20150331 +107531000036106,"dressing hydrogel 5 cm x 200 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056261000168106,"dressing hydrophobic 5 cm x 200 cm ribbon",20171231 +85323011000036106,"Kevtam 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",938271000168105,"Kevtam-1000 1 g film-coated tablet",20170930 +21080011000036100,"Eskazole 400 mg chewable tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",844101000168108,"Eskazole 400 mg tablet, 60, bottle",20161031 +74715011000036105,"Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083661000168105,"Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL, pump pack",20180228 +81710011000036105,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868301000168109,"glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag",20170131 +79392011000036100,"Creon 25 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847381000168108,"Creon 25 000 enteric capsule",20161130 +61851011000036106,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 10 mg lozenge",900000000000526001,"REPLACED BY association reference set",995421000168105,"cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge",20170831 +900851000168109,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922621000168107,"PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets",20170430 +61982011000036101,"lignocaine hydrochloride anhydrous 2.5% + benzalkonium chloride 0.1% spray",900000000000526001,"REPLACED BY association reference set",861631000168104,"lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray",20161231 +923981011000036106,"plerixafor 24 mg/1.2 mL subcutaneous infusion injection, vial",900000000000526001,"REPLACED BY association reference set",891101000168101,"plerixafor 24 mg/1.2 mL injection, vial",20170331 +56163011000036105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 16",900000000000526001,"REPLACED BY association reference set",861451000168108,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16",20161231 +86113011000036109,"Levetiracetam (Apo) 1 g tablet, 100, bottle",900000000000526001,"REPLACED BY association reference set",1003201000168107,"Levetiracetam 1000 (Apo) 1 g tablet, 100, bottle",20170930 +933220781000036103,"Naropin 0.2% (400 mg/200 mL) injection: solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1004641000168109,"Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag",20170930 +11550011000036107,"Baraclude 1 mg tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",829471000168105,"Baraclude 1 mg film-coated tablet, 30",20160930 +665471000168109,"PKU Cooler20 Gold oral liquid: solution, 30 x 174 mL cans",900000000000526001,"REPLACED BY association reference set",725701000168108,"PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches",20151031 +21200011000036107,"Codapane Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835951000168106,"Codapane Forte 500/30 uncoated tablet, 20, blister pack",20161031 +27965011000036101,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 120",900000000000526001,"REPLACED BY association reference set",860261000168103,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 120",20161231 +86928011000036107,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet",900000000000526001,"REPLACED BY association reference set",860121000168104,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet",20161231 +172361000036103,"alendronate 70 mg + colecalciferol 140 microgram tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack",900000000000526001,"REPLACED BY association reference set",848001000168103,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack",20161130 +77579011000036105,"iopromide 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection, bottle",900000000000526001,"REPLACED BY association reference set",695761000168107,"iopromide 769 mg (iodine 370 mg)/mL injection, 200 mL bottle",20150430 +61121011000036101,"Difflam Lozenge orange sugar free lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",995851000168104,"Difflam Lozenge Orange Sugar Free lozenge, 24, blister pack",20170831 +80638011000036103,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868421000168105,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags",20170131 +49449011000036101,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689271000168105,"Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll",20150331 +859101000168109,"Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1087191000168103,"Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations, pump pack",20180331 +234941000168100,"Prozero oral liquid: solution, 250 mL can",900000000000526001,"REPLACED BY association reference set",745331000168102,"Prozero oral liquid solution, 250 mL carton",20160131 +60891011000036108,"Disprin Original 300 mg dispersible tablet, 48, strip pack",900000000000526001,"REPLACED BY association reference set",804311000168100,"Disprin Original 300 mg tablet, 48, strip pack",20160630 +77563011000036100,"sodium bicarbonate 250 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",702301000168108,"sodium bicarbonate 250 mg/mL oral liquid",20150531 +19137011000036108,"Zentel 200 mg chewable tablet, 6, blister pack",900000000000526001,"REPLACED BY association reference set",844241000168102,"Zentel 200 mg tablet, 6, blister pack",20161031 +85713011000036103,"Levetiracetam (Apo) 1 g tablet, 60",900000000000526001,"REPLACED BY association reference set",1003231000168100,"Levetiracetam 1000 (Apo) 1 g tablet, 60",20170930 +141511000036102,"Somatuline Autogel 120 mg injection: solution, syringe",900000000000526001,"REPLACED BY association reference set",819391000168107,"Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +69911000036106,"Byetta 10 microgram/0.04 mL injection: solution, 0.04 mL unit dose",900000000000526001,"REPLACED BY association reference set",726811000168106,"Byetta 10 microgram/dose injection solution, dose",20151031 +75106011000036103,"meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",827691000168102,"meningococcal quadrivalent polysaccharide vaccine injection, vial",20160930 +29191000036107,"macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 8 sachets",900000000000526001,"REPLACED BY association reference set",674041000168100,"macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 8 sachets",20141031 +56361000036106,"Valvala 1 g film-coated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",1009781000168105,"Valvala-1000 1 g film-coated tablet, 50, blister pack",20170930 +2438011000036100,"pancreatic extract",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",846131000168107,"amylase",20161130 +691541000168101,"Reddycal 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",848121000168108,"Reddycal 1.25 g (calcium 500 mg) film-coated tablet",20161130 +59670011000036103,"Cepacaine Oral Solution mouthwash, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",994941000168109,"Cepacaine Oral Solution mouthwash, 200 mL, bottle",20170831 +663801000168102,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",900000000000526001,"REPLACED BY association reference set",833521000168109,"Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",20160930 +52226011000036107,"Mirena 52 mg drug delivery system: intrauterine, 1 system, sachet",900000000000526001,"REPLACED BY association reference set",729061000168109,"Mirena 52 mg intrauterine drug delivery system, 1 system, applicator",20151130 +54042011000036109,"Duro-Tuss Dry Cough Lozenge orange lozenge",900000000000526001,"REPLACED BY association reference set",996261000168107,"Duro-Tuss Dry Cough Lozenge orange lozenge",20170831 +4812011000036107,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041251000168102,"Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device",20171130 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826061000168101,"Streptococcus pneumoniae type 9V conjugate antigen",20160930 +55654011000036103,"Cepacaine Oral Solution mouthwash, 200 mL",900000000000526001,"REPLACED BY association reference set",994931000168100,"Cepacaine Oral Solution mouthwash, 200 mL",20170831 +177671000036100,"Lyxumia 10 microgram/0.2 mL injection: solution, 0.2 mL unit dose",900000000000526001,"REPLACED BY association reference set",719301000168103,"Lyxumia 10 microgram/dose injection solution, dose",20150930 +924178011000036108,"pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827461000168107,"pneumococcal 13 valent conjugate vaccine injection, 10 x 0.5 mL syringes",20160930 +53617011000036109,"Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution",900000000000526001,"REPLACED BY association reference set",721311000168107,"Difflam Forte Anti-Inflammatory Throat 0.3% oral spray",20151031 +141991000036102,"Somatuline Autogel 120 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819421000168100,"Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +75378011000036104,"hepatitis B vaccine 20 microgram/mL injection, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825281000168106,"hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL syringes",20160930 +130281000036100,"TYR Cooler 10 oral liquid: solution, 30 x 87 mL sachets",900000000000526001,"REPLACED BY association reference set",725881000168109,"TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches",20151031 +665501000168103,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",834731000168101,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100, blister pack",20161031 +757491000168101,"Ursodox 250 mg capsule: hard, 60, blister pack",900000000000526001,"REPLACED BY association reference set",765991000168107,"Ursodox (GH) 250 mg hard capsule, 60, blister pack",20160331 +43764011000036100,"Voluven 6% / 0.9% injection solution, 15 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013491000168104,"Voluven injection solution, 15 x 500 mL bags",20170930 +74241011000036108,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825601000168100,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial",20160930 +926787011000036100,"Medi Creme cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",863521000168102,"Medi Creme cream, 50 g, tube",20170131 +84396011000036101,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872501000168106,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",20170131 +56763011000036103,"Combantrin-1 with Mebendazole 100 mg chewable tablet, 2",900000000000526001,"REPLACED BY association reference set",844171000168103,"Combantrin-1 with Mebendazole 100 mg tablet, 2",20161031 +684041000168108,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",838191000168106,"Pneumovax-23 injection solution, 10 x 0.5 mL syringes",20161031 +69165011000036100,"Ora-Sed Jel oral gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",936671000168106,"Ora-Sed Jel oral gel, 10 g, tube",20170531 +85792011000036109,"Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872361000168101,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag",20170131 +83017011000036101,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 5 x 60 mL",900000000000526001,"REPLACED BY association reference set",689531000168105,"lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 5 x 60 mL",20150331 +51444011000036103,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",724071000168104,"amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL pouches",20151031 +75439011000036101,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 15 mL",900000000000526001,"REPLACED BY association reference set",792021000168100,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 15 mL",20160531 +48505011000036102,"Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694151000168105,"Medipore (2961) 2.5 cm x 9.1 m tape",20150331 +21913011000036103,"bleomycin sulfate",900000000000526001,"REPLACED BY association reference set",857781000168109,"bleomycin",20161231 +700291000168106,"ADT Vaccine injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837271000168103,"ADT Vaccine injection suspension, 0.5 mL syringe",20161031 +18869011000036103,"Kenacomb ointment, 15 g, tube",900000000000526001,"REPLACED BY association reference set",758251000168106,"Kenacomb ointment, 15 g, tube",20160229 +924891011000036104,"Pemzo 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",717661000168102,"Pemzo 20 mg enteric capsule, 90",20150930 +77136011000036107,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724311000168109,"PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles",20151031 +728681000168103,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005731000168107,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +696511000168107,"meningococcal group B outer membrane vesicles",900000000000526001,"REPLACED BY association reference set",822441000168106,"Neisseria meningitidis group B outer membrane vesicles",20160831 +73802011000036101,"Twinrix injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824571000168105,"Twinrix injection suspension, 1 mL syringe",20160930 +933220891000036105,"ropivacaine hydrochloride monohydrate 75 mg/10 mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",1004931000168105,"ropivacaine hydrochloride 75 mg/10 mL injection, ampoule",20170930 +711681000168101,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005501000168105,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +921078011000036109,"Picolax powder for oral liquid, 20 g sachet",900000000000526001,"REPLACED BY association reference set",832621000168100,"Picolax powder for oral liquid, 20 g sachet",20160930 +62002011000036106,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge",900000000000526001,"REPLACED BY association reference set",996151000168103,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge",20170831 +41220011000036101,"Voluven 6% / 0.9% injection solution, 15 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013481000168102,"Voluven injection solution, 15 x 500 mL bags",20170930 +45211000036105,"Lipistart powder for oral liquid, 400 g, can",900000000000526001,"REPLACED BY association reference set",949731000168105,"Lipistart powder for oral liquid, 400 g, can",20170630 +73648011000036104,"rubella virus (Wistar RA 27/3) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",826251000168106,"rubella virus live antigen",20160930 +76548011000036102,"PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724301000168106,"PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles",20151031 +33667011000036102,"vespula spp venom 550 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",759041000168109,"yellow jacket venom 550 microgram injection, vial",20160229 +67207011000036103,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",864301000168104,"Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag",20170131 +72121000036103,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL",900000000000526001,"REPLACED BY association reference set",764301000168101,"Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL",20160331 +6897011000036103,"Colazide 750 mg capsule",900000000000526001,"REPLACED BY association reference set",932481000168105,"Colazide 750 mg hard capsule",20170531 +931415011000036100,"Dermasoothe Antiseptic cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",861351000168102,"Dermasoothe Antiseptic cream, 50 g, tube",20161231 +27600011000036107,"pancreatic extract 25 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847391000168106,"lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule, 100",20161130 +41225011000036105,"Keppra 500 mg/5 mL injection: concentrated, 5 mL vial",900000000000526001,"REPLACED BY association reference set",706281000168105,"Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial",20150731 +74308011000036103,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822641000168108,"Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160831 +81608011000036100,"glucose 5% (2.5 g/50 mL) injection, 40 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864241000168108,"glucose monohydrate 5% (2.5 g/50 mL) injection, 40 x 50 mL bags",20170131 +663121000168101,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension",900000000000526001,"REPLACED BY association reference set",833551000168101,"Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension",20160930 +80645011000036105,"Eye Stream eye solution, 120 mL",900000000000526001,"REPLACED BY association reference set",834171000168104,"Eye Stream eye solution, 120 mL",20161031 +924704011000036102,"Omepro 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717021000168102,"Omepro 20 mg enteric capsule, 98",20150930 +930082011000036107,"Elevit with Iodine tablet: film-coated",900000000000526001,"REPLACED BY association reference set",843171000168100,"Elevit with Iodine film-coated tablet",20161031 +68871011000036103,"Cepacol Mint 0.05% mouthwash, 150 mL, bottle",900000000000526001,"REPLACED BY association reference set",995311000168107,"Cepacol Mint 0.05% mouthwash, 150 mL, bottle",20170831 +9001000036108,"Clinoleic 20% injection: emulsion, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771711000168109,"Clinoleic 20% injection emulsion, 100 mL bag",20160430 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836971000168109,"Streptococcus pneumoniae type 23F polysaccharide antigen",20161031 +929648011000036109,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724581000168105,"PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches",20151031 +37443011000036105,"Codral Forte uncoated tablet, 4, strip pack",900000000000526001,"REPLACED BY association reference set",834431000168106,"Codral Forte uncoated tablet, 4, strip pack",20161031 +73831011000036100,"Azep 140 microgram/actuation nasal spray, actuation",900000000000526001,"REPLACED BY association reference set",809531000168101,"Azep 0.1% nasal spray",20160630 +86085011000036100,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996051000168102,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24, blister pack",20170831 +74924011000036109,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",827761000168101,"Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack",20160930 +77478011000036108,"calcium carbonate + calcium lactate gluconate",900000000000526001,"REPLACED BY association reference set",745551000168101,"calcium",20160131 +26803011000036107,"diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837341000168104,"diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL syringes",20161031 +80518011000036101,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864421000168103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags",20170131 +71721000036108,"Risedronate Sodium EC Combi D (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium carbonate / colecalciferol sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810601000168102,"Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack",20160630 +75355011000036107,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839701000168107,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 5 x 0.5 mL syringes",20161031 +650821000168107,"Aquacel (403770) 2 cm x 45 cm rope, 5",900000000000526001,"REPLACED BY association reference set",745041000168109,"Aquacel (403770) 2 cm x 45 cm ribbon, 5",20160131 +1085541000168106,"Fluzone High-Dose injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",1122711000168109,"Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes",20180430 +698421000168103,"Bexsero injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822781000168108,"Bexsero injection suspension, 0.5 mL syringe",20160831 +69539011000036104,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995381000168101,"Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16, blister pack",20170831 +81697011000036104,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",867981000168101,"glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag",20170131 +2921000036108,"Clinoleic 20% injection: emulsion, 350 mL bag",900000000000526001,"REPLACED BY association reference set",779111000168106,"Clinoleic 20% injection emulsion, 350 mL bag",20160430 +689751000168107,"Kenacomb Otic ear ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758291000168101,"Kenacomb Otic ear ointment, 5 g",20160229 +87931000036108,"Prostin E2 400 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005331000168108,"Prostin E2 1 mg/3 g vaginal gel, 3 g syringe",20170930 +75052011000036103,"rabies inactivated vaccine 2.5 units injection, vial",900000000000526001,"REPLACED BY association reference set",821351000168106,"rabies vaccine injection, vial",20160831 +73836011000036105,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825891000168105,"H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160930 +711701000168103,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005671000168101,"Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +78251011000036105,"iopromide 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695511000168103,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 20 mL vials",20150430 +160451000036100,"Oxycontin Reformulation 30 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",928885011000036102,"Oxycontin 30 mg modified release tablet, 28, blister pack",20170731 +74869011000036109,"Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083651000168108,"Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL, pump pack",20180228 +33801011000036102,"adrenaline 300 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726721000168105,"adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose",20151130 +476131000168101,"Lophlex HCU LQ 20 oral liquid: solution, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725131000168102,"HCU Lophlex LQ 20 oral liquid solution, 125 mL pouch",20151031 +933225741000036102,"Naropin 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005061000168102,"Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +81611011000036106,"glucose 5% (2.5 g/50 mL) injection, 70 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864411000168105,"glucose monohydrate 5% (2.5 g/50 mL) injection, 70 x 50 mL bags",20170131 +57367011000036105,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721821000168107,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution, 20 mL",20151031 +56931011000036103,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16",900000000000526001,"REPLACED BY association reference set",861581000168102,"Logicin Rapid Relief menthol and eucalyptus lozenge, 16",20161231 +73949011000036106,"Priorix (measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831041000168105,"Priorix (measles + mumps + rubella live vaccine) powder for injection, vial",20160930 +45141011000036108,"aciclovir 400 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",795841000168105,"aciclovir 400 mg tablet",20161031 +50928011000036102,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",693971000168100,"tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape",20150331 +80635011000036109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",867911000168107,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag",20170131 +86445011000036100,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",996001000168101,"bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 24",20170831 +924707011000036108,"Pemzo 20 mg capsule, 98",900000000000526001,"REPLACED BY association reference set",717691000168109,"Pemzo 20 mg enteric capsule, 98",20150930 +14141011000036100,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041471000168105,"Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device",20171130 +684011000168109,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",838161000168104,"Pneumovax-23 injection solution, 0.5 mL syringe",20161031 +21165011000036100,"Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726371000168107,"Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL, injection device",20151031 +734201000168102,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",843011000168109,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 100",20161031 +78212011000036108,"benzoin sumatra 10% (100 mg/mL) + aloe vera 2% (20 mg/mL) + storax prepared 7.5% (75 mg/mL) + tolu balsam 2.5% (25 mg/mL) solution, 50 mL",900000000000526001,"REPLACED BY association reference set",696421000168104,"benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture, 50 mL",20150430 +75410011000036102,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825001000168108,"hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL vial",20160930 +87794011000036101,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724991000168104,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles",20151031 +84624011000036106,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 60",900000000000526001,"REPLACED BY association reference set",860291000168105,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 60",20161231 +921872011000036107,"Centrum Select 50 Plus tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",843341000168105,"Centrum Select 50 Plus film-coated tablet, 100, bottle",20161031 +73656011000036101,"Bordetella pertussis, fimbriae types 2 and 3 vaccine",900000000000526001,"REPLACED BY association reference set",836261000168106,"Bordetella pertussis fimbriae type 2 and 3 antigen",20161031 +30701000036107,"Otrivin Plus nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085241000168109,"Otrivin Plus nasal spray, 10 mL, pump pack",20180228 +900841000168107,"PKU Sphere powder for oral liquid, 30 x 35 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922541000168102,"PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets",20170430 +815221000168102,"Entrip 50 mg tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",856831000168103,"Entrip 50 mg film-coated tablet, 100, blister pack",20161231 +75390011000036108,"hepatitis B vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825901000168109,"hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL syringes",20160930 +87630011000036106,"Levetiracetam (Sandoz) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003651000168109,"Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60, blister pack",20170930 +6439011000036109,"Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722781000168105,"Intron A Redipen 30 million units/1.2 mL injection solution",20151031 +82044011000036108,"Ungvita 0.054% ointment",900000000000526001,"REPLACED BY association reference set",694981000168100,"Ungvita 0.099% ointment",20150430 +921083011000036109,"Sorbi Sorbitol 70% non-crystallising oral liquid: solution",900000000000526001,"REPLACED BY association reference set",690611000168105,"Sorbi 70% non-crystallising oral liquid solution",20150331 +77406011000036103,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 100, bottle",900000000000526001,"REPLACED BY association reference set",861971000168107,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100, bottle",20161231 +12776011000036109,"Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 5 x 0.4 mL ampoules",900000000000526001,"REPLACED BY association reference set",684591000168105,"Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses",20150131 +86108011000036102,"Levetiracetam (Apo) 1 g tablet, 400, bottle",900000000000526001,"REPLACED BY association reference set",1003221000168103,"Levetiracetam 1000 (Apo) 1 g tablet, 400, bottle",20170930 +5441011000036108,"Baraclude 1 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",829451000168101,"Baraclude 1 mg film-coated tablet",20160930 +22264011000036102,"neomycin 3.5 mg/g + bacitracin zinc 400 international units/g ointment",900000000000526001,"REPLACED BY association reference set",689831000168108,"neomycin 0.35% + bacitracin zinc 400 units/g ear ointment",20150331 +844501000168102,"Zovirax 800 mg tablet, 35, bottle",900000000000526001,"REPLACED BY association reference set",859231000168107,"Zovirax Dispersible 800 mg tablet, 35, bottle",20161231 +711371000168109,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004511000168109,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +12168011000036108,"Canesten Clotrimazole Thrush Treatment 6 Day 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",715071000168108,"Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g",20150930 +12344011000036103,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28",900000000000526001,"REPLACED BY association reference set",792911000168108,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28",20160531 +86999011000036105,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% oromucosal paste, 5 g",900000000000526001,"REPLACED BY association reference set",797591000168106,"carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste, 5 g",20160630 +56721011000036105,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995631000168106,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16",20170831 +933225841000036105,"Naropin 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004511000168109,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +930883011000036104,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872791000168107,"Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles",20170131 +933213931000036100,"Levetiracetam (SCP) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003691000168104,"Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60, blister pack",20170930 +42214011000036104,"Eskazole 400 mg chewable tablet, 56",900000000000526001,"REPLACED BY association reference set",844121000168104,"Eskazole 400 mg tablet, 56",20161031 +156841000036106,"Macrogol plus Electrolytes (Apo) solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674091000168108,"Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets",20141031 +20353011000036108,"Clofeme Thrush Treatment 3 Day 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715111000168101,"Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube",20150930 +74946011000036104,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",840771000168108,"Boostrix-IPV injection suspension, 10 x 0.5 mL syringes",20161031 +702661000168102,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",822591000168104,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack",20160831 +20608011000036102,"Citracal 250 mg (calcium 250 mg) tablet: film-coated, 120, bottle",900000000000526001,"REPLACED BY association reference set",860061000168105,"Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120, bottle",20161231 +86756011000036104,"Calcia plus Vitamin D 400 IU chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860151000168107,"Calcia plus Vitamin D 400 IU chewable tablet, 120",20161231 +12804011000036109,"Otocomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758401000168108,"Otocomb Otic ear drops solution, 7.5 mL",20160229 +81708011000036109,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868221000168106,"glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag",20170131 +53609011000036104,"Cortef 1% spray: solution",900000000000526001,"REPLACED BY association reference set",776871000168104,"Cortef 1% spray solution",20160430 +2793011000036108,"bee venom",900000000000526001,"REPLACED BY association reference set",758481000168100,"honey bee venom",20160229 +60750011000036108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4, blister pack",900000000000526001,"REPLACED BY association reference set",996321000168108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 4, blister pack",20170831 +693151000168107,"diphtheria toxoid 2 Lf/0.5 mL + tetanus toxoid 2 Lf/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837381000168109,"diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 0.5 mL vial",20161031 +36816011000036102,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L",900000000000526001,"REPLACED BY association reference set",834941000168108,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L",20161031 +11721011000036102,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041321000168104,"Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device",20171130 +174821000036105,"Levactam 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003071000168107,"Levactam-1000 1 g film-coated tablet, 60",20170930 +75342011000036101,"Q fever inactivated vaccine 2.5 microgram/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955101000168103,"Q fever skin test injection, 0.5 mL vial",20170630 +81152011000036108,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags",900000000000526001,"REPLACED BY association reference set",868491000168107,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags",20170131 +74894011000036105,"Spray-Tish menthol 0.118% nasal spray, 10 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085411000168106,"Spray-Tish menthol 0.118% nasal spray, 10 mL, pump pack",20180228 +74724011000036103,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",836781000168105,"Infanrix Penta injection suspension, 10 x 0.5 mL syringes",20161031 +26817011000036100,"haloperidol (as decanoate) 50 mg/mL injection, 5 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",679731000168107,"haloperidol (as decanoate) 50 mg/mL injection, 5 x 1 mL ampoules",20141231 +921933011000036105,"B-Dose (Biological Therapies) injection: solution, 3 x 2.5 mL vials",900000000000526001,"REPLACED BY association reference set",704551000168108,"B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials",20150630 +5477011000036101,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream",900000000000526001,"REPLACED BY association reference set",715371000168106,"Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream",20150930 +27637011000036104,"paracetamol 500 mg + codeine phosphate 15 mg tablet, 20",900000000000526001,"REPLACED BY association reference set",90181000036105,"paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20",20161031 +86847011000036100,"Orabase Protective Paste oromucosal paste, 5 g, tube",900000000000526001,"REPLACED BY association reference set",797611000168101,"Orabase Protective paste, 5 g, tube",20160630 +18905011000036108,"Tenopt 0.5% eye drops solution, 5 mL, puffer pack",900000000000526001,"REPLACED BY association reference set",948451000168101,"Tenopt 0.5% eye drops solution, 5 mL, bottle",20170630 +28001000168102,"Rivotril Drops",900000000000526001,"REPLACED BY association reference set",19081000168107,"Rivotril",20151130 +31311000036102,"Movicol Chocolate solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674031000168109,"Movicol Chocolate powder for oral liquid, 30 sachets",20141031 +72954011000036104,"Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 10 mL syringe",900000000000526001,"REPLACED BY association reference set",781261000168109,"Apomine PFS 50 mg/10 mL injection solution, 10 mL syringe",20160430 +37844011000036100,"aspirin 325 mg + codeine phosphate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",834391000168101,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet",20161031 +69033011000036100,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705471000168102,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g, jar",20150731 +664401000168103,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g",900000000000526001,"REPLACED BY association reference set",833721000168101,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g",20160930 +34377011000036103,"Subutex 8 mg tablet, 28",900000000000526001,"REPLACED BY association reference set",685741000168107,"Subutex 8 mg sublingual tablet, 28",20150228 +711911000168102,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005311000168103,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +85394011000036104,"Fleet Phospho-Soda oral liquid solution, bottle",900000000000526001,"REPLACED BY association reference set",1097791000168101,"Fleet Phospho-Soda oral liquid solution, bottle",20180331 +60200011000036108,"Daktarin 2% oral gel, 15 g, tube",900000000000526001,"REPLACED BY association reference set",820031000168106,"Daktarin 2% oral gel, 15 g, tube",20160731 +722921000168108,"Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100, tube",900000000000526001,"REPLACED BY association reference set",729281000168106,"Silver Nitrate Applicator (Grafco) stick, 100, tube",20151130 +40067011000036105,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 mL ampoule",900000000000526001,"REPLACED BY association reference set",693231000168106,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 mL ampoule",20150331 +74293011000036101,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",824781000168102,"Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe",20160930 +13583011000036103,"Subutex 8 mg tablet, 7",900000000000526001,"REPLACED BY association reference set",685651000168100,"Subutex 8 mg sublingual tablet, 7",20150228 +69731000036100,"Salofalk 1.5 g granules, 1.5 g sachet",900000000000526001,"REPLACED BY association reference set",1084231000168101,"Salofalk 1.5 g modified release granules, 1.5 g sachet",20180228 +73654011000036109,"Bordetella pertussis, acellular pertactin vaccine",900000000000526001,"REPLACED BY association reference set",836221000168101,"Bordetella pertussis pertactin antigen",20161031 +70211000036102,"Levetiracetam (Pfizer) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003581000168101,"Levetiracetam 1000 (Pfizer) 1 g film-coated tablet",20170930 +711791000168109,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005581000168102,"Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +693161000168109,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837391000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial",20161031 +137711000036102,"exenatide 2 mg injection, vial",900000000000526001,"REPLACED BY association reference set",833861000168102,"exenatide 2 mg modified release injection, vial",20160930 +44191000168103,"Recombinate 1000 IU",900000000000526001,"REPLACED BY association reference set",710851000168104,"Recombinate",20150831 +923324011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 140",900000000000526001,"REPLACED BY association reference set",717121000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 140",20150930 +82129011000036103,"Aspalgin dispersible tablet, 20",900000000000526001,"REPLACED BY association reference set",834251000168101,"Aspalgin dispersible tablet, 20",20161031 +12345011000036104,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28",900000000000526001,"REPLACED BY association reference set",792891000168106,"Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28",20160531 +686821000168101,"Plegridy 125 microgram/0.5 mL injection: solution, 0.5 mL injection device",900000000000526001,"REPLACED BY association reference set",698631000168102,"Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL injection device",20150430 +74734011000036101,"Infanrix Penta injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",836751000168103,"Infanrix Penta injection suspension, 0.5 mL syringe",20161031 +929145011000036102,"salicylic acid 2% (20 mg/g) + aqueous cream 980 mg/g cream",900000000000526001,"REPLACED BY association reference set",705381000168107,"salicylic acid 2% + aqueous cream",20150731 +1085481000168100,"Fluzone High-Dose injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1122621000168109,"Fluzone High-Dose 2018 injection suspension, 0.5 mL syringe",20180430 +61866011000036109,"benzydamine hydrochloride 0.3% spray",900000000000526001,"REPLACED BY association reference set",721301000168109,"benzydamine hydrochloride 0.3% oral spray",20151031 +75449011000036100,"Japanese encephalitis inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",822691000168100,"Japanese encephalitis (mouse brain-derived) inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack",20160831 +823901000168105,"Bydureon (1 x 2 mg cartridge, 1 x inert diluent cartridge), 1 pack",900000000000526001,"REPLACED BY association reference set",833291000168108,"Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device",20160930 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826101000168103,"Streptococcus pneumoniae type 4 conjugate antigen",20160930 +921863011000036107,"Calvid granules: effervescent, 30 x 7 g sachets",900000000000526001,"REPLACED BY association reference set",810661000168101,"Calvid effervescent granules, 30 x 7.3 g sachets",20160630 +65202011000036104,"Microshield Handrub solution",900000000000526001,"REPLACED BY association reference set",767631000168109,"Microshield Handrub solution",20160331 +172951000036100,"Levactam 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003061000168101,"Levactam-1000 1 g film-coated tablet",20170930 +711661000168105,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005481000168101,"Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 10 mL ampoule",20170930 +41585011000036109,"Zovirax 800 mg dispersible tablet, 5",900000000000526001,"REPLACED BY association reference set",859471000168109,"Zovirax Dispersible 800 mg tablet, 5",20161231 +57368011000036106,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 5 mL",900000000000526001,"REPLACED BY association reference set",721411000168103,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL",20151031 +12396011000036102,"Lanoxin 50 microgram/mL oral liquid: solution, 60 mL",900000000000526001,"REPLACED BY association reference set",735021000168104,"Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL",20151231 +56847011000036102,"Disprin Original 300 mg dispersible tablet, 96",900000000000526001,"REPLACED BY association reference set",804231000168103,"Disprin Original 300 mg tablet, 96",20160630 +60626011000036103,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",721911000168106,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL, bottle",20151031 +80633011000036108,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",867831000168106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag",20170131 +18495011000036108,"Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",838091000168105,"Pneumovax-23 injection solution, 0.5 mL vial",20161031 +79515011000036105,"Creon 25 000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847401000168108,"Creon 25 000 enteric capsule, 100",20161130 +70451000036104,"mesalazine 1 g granules, sachet",900000000000526001,"REPLACED BY association reference set",23619011000036106,"mesalazine 1 g modified release granules, sachet",20180228 +63084011000036107,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg dispersible tablet, 24",900000000000526001,"REPLACED BY association reference set",804151000168102,"aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet, 24",20160630 +933225311000036102,"Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726491000168104,"Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL",20151031 +74434011000036109,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",831121000168103,"Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",20160930 +2438011000036100,"pancreatic extract",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",2524011000036100,"protease",20161130 +138001000036100,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",846051000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial",20161130 +987311000168103,"sebelipase alfa 2 mg/mL injection, 1 mL vial",900000000000526001,"REPLACED BY association reference set",1013331000168109,"sebelipase alfa 20 mg/10 mL injection, 10 mL vial",20170930 +87841000036108,"docosahexaenoic acid 22 mg + eicosapentaenoic acid 47 mg + krill oil 333.3 mg capsule",900000000000526001,"REPLACED BY association reference set",88131000036105,"krill oil 333.3 mg capsule",20170731 +75063011000036101,"Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection, vial",900000000000526001,"REPLACED BY association reference set",822551000168109,"Mycobacterium bovis (BCG) live vaccine injection, vial",20160831 +3182011000036104,"Granocyte",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",838211000168107,"Granocyte-13",20161031 +19532011000036101,"Otocomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758411000168106,"Otocomb Otic ear drops solution, 7.5 mL, bottle",20160229 +698481000168104,"Bexsero injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822841000168109,"Bexsero injection suspension, 10 x 0.5 mL syringes",20160831 +60728011000036106,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL, bottle",900000000000526001,"REPLACED BY association reference set",721581000168108,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL, bottle",20151031 +74752011000036106,"Polio Sabin Multidose oral liquid: solution, 100 vials",900000000000526001,"REPLACED BY association reference set",839831000168107,"Polio Sabin Multidose oral liquid solution, 100 vials",20161031 +57075011000036108,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16",900000000000526001,"REPLACED BY association reference set",861251000168107,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16",20161231 +50929011000036105,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694141000168108,"tape non woven retention polyacrylate 2.5 cm x 9.1 m tape",20150331 +82986011000036103,"pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827611000168106,"pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe",20160930 +66835011000036107,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705461000168108,"Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g",20150731 +86773011000036108,"Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704501000168109,"Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial",20150630 +65419011000036107,"Cepacol Mint 0.05% mouthwash",900000000000526001,"REPLACED BY association reference set",995291000168108,"Cepacol Mint 0.05% mouthwash",20170831 +77561000036103,"aciclovir 800 mg dispersible tablet, 120",900000000000526001,"REPLACED BY association reference set",28319011000036103,"aciclovir 800 mg tablet, 120",20161031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836611000168106,"Streptococcus pneumoniae type 1 polysaccharide antigen",20161031 +162341000036109,"Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726661000168108,"Anapen Auto-Injector 150 microgram/0.3 mL injection solution, dose",20151031 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826041000168100,"Streptococcus pneumoniae type 18C conjugate antigen",20160930 +925355011000036104,"Pemzo 20 mg capsule, 90, bottle",900000000000526001,"REPLACED BY association reference set",717681000168106,"Pemzo 20 mg enteric capsule, 90, bottle",20150930 +74713011000036109,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825661000168104,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe",20160930 +81291011000036109,"sodium acetate 3.9 mg/mL + calcium chloride 480 microgram/mL + citrate sodium dihydrate 1.7 mg/mL + magnesium chloride 300 microgram/mL + potassium chloride 750 microgram/mL + sodium chloride 6.4 mg/mL eye solution",900000000000526001,"REPLACED BY association reference set",834141000168106,"sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution",20161031 +987321000168105,"Kanuma 2 mg/mL injection solution, 1 mL vial",900000000000526001,"REPLACED BY association reference set",1013341000168100,"Kanuma 20 mg/10 mL injection solution, 10 mL vial",20170930 +941611000168108,"Metformin (AS) 1 g film-coated tablet, 30",900000000000526001,"REPLACED BY association reference set",949501000168108,"Metformin 1000 (AS) 1 g film-coated tablet, 30",20170630 +73635011000036109,"human papillomavirus (type 16) vaccine",900000000000526001,"REPLACED BY association reference set",822741000168103,"human papillomavirus type 16 antigen",20160831 +933226521000036108,"Fluoride Panda Punch (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932611000168102,"Fluoride (Laclede) Panda Punch Flavour foam, 165 mL",20170531 +925165011000036100,"Pemzo 20 mg capsule, 100, blister pack",900000000000526001,"REPLACED BY association reference set",716271000168109,"Pemzo 20 mg enteric capsule, 100, blister pack",20150930 +80516011000036100,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864361000168103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags",20170131 +86127011000036109,"Levetiracetam (Apo) 1 g tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003241000168109,"Levetiracetam 1000 (Apo) 1 g tablet, 60, blister pack",20170930 +69952011000036101,"chlorhexidine gluconate 1% lotion",900000000000526001,"REPLACED BY association reference set",766761000168107,"chlorhexidine gluconate 1% + ethanol 70% lotion",20160331 +35224011000036106,"buprenorphine 400 microgram tablet, 100",900000000000526001,"REPLACED BY association reference set",685811000168100,"buprenorphine 400 microgram sublingual tablet, 100",20150228 +76808011000036108,"Centrum tablet: film-coated, 250",900000000000526001,"REPLACED BY association reference set",833441000168104,"Centrum film-coated tablet, 250",20160930 +680571000168100,"Zaldiar Combination Therapy",900000000000526001,"REPLACED BY association reference set",1027811000168106,"Zaldiar",20171031 +24661000036106,"Albey Paper Wasp Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",758921000168105,"Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack",20160229 +76805011000036102,"Centrum tablet: film-coated, 14",900000000000526001,"REPLACED BY association reference set",833081000168104,"Centrum film-coated tablet, 14",20160930 +36701011000036107,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850611000168109,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules",20161130 +142511000036108,"typhoid fever live attenuated oral vaccine enteric capsule, 3",900000000000526001,"REPLACED BY association reference set",827261000168106,"typhoid live vaccine enteric capsule, 3",20160930 +81989011000036108,"Silver Nitrate Applicator (Medical and Surgical Requisites)",900000000000526001,"REPLACED BY association reference set",729251000168104,"Silver Nitrate Applicator (Grafco)",20151130 +34036011000036103,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",835571000168109,"Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid",20161031 +75349011000036106,"rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",826331000168107,"rubella live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",20160930 +88091000036107,"Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated",900000000000526001,"REPLACED BY association reference set",861841000168109,"Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet",20161231 +711901000168100,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005301000168101,"Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +66851011000036109,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705691000168103,"Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g",20150731 +728791000168106,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006181000168100,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +49463011000036105,"Combine Roll (2902165) (BSN) 9 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688651000168107,"Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1",20150331 +37347011000036109,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850431000168102,"Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules",20161130 +925342011000036105,"Omepro 20 mg capsule, 7, bottle",900000000000526001,"REPLACED BY association reference set",716951000168109,"Omepro 20 mg enteric capsule, 7, bottle",20150930 +81695011000036109,"calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",867931000168102,"glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags",20170131 +86132011000036105,"Levetiracetam (Apo) 1 g tablet, 60, bottle",900000000000526001,"REPLACED BY association reference set",1003251000168106,"Levetiracetam 1000 (Apo) 1 g tablet, 60, bottle",20170930 +67276011000036107,"Panadol Children's 7+ Years 250 mg tablet: soluble, 24",900000000000526001,"REPLACED BY association reference set",721611000168101,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24",20151031 +13027011000036102,"Panamax Co uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",836071000168105,"Panamax Co uncoated tablet, 50",20161031 +63525011000036100,"pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",996171000168107,"pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 2",20170831 +18857011000036101,"Canesten Clotrimazole Thrush Treatment 6 Day 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715081000168106,"Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube",20150930 +91321000036101,"Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",730071000168109,"Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial",20151130 +56528011000036102,"Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",721761000168106,"Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL",20151031 +63581000168104,"Clozole Vaginal Cream (Meditab)",900000000000526001,"REPLACED BY association reference set",715831000168100,"Clozole (Meditab)",20150930 +80231011000036105,"Cardioplegia A Solution (Baxter) perfusion solution, bag",900000000000526001,"REPLACED BY association reference set",872221000168100,"Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag",20170131 +73934011000036109,"Infanrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840791000168109,"Infanrix-IPV injection suspension, 0.5 mL syringe",20161031 +13708011000036106,"Kaletra 400/100 oral liquid: solution, 60 mL",900000000000526001,"REPLACED BY association reference set",689481000168107,"Kaletra oral liquid solution, 60 mL",20150331 +932465011000036102,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872811000168106,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle",20170131 +75344011000036105,"rabies inactivated vaccine 2.5 units injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack",900000000000526001,"REPLACED BY association reference set",821401000168104,"rabies vaccine injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack",20160831 +75107011000036100,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840781000168106,"diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe",20161031 +36179011000036107,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, ampoule",900000000000526001,"REPLACED BY association reference set",850591000168104,"Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, ampoule",20161130 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836821000168100,"Streptococcus pneumoniae type 7F polysaccharide antigen",20161031 +45299011000036100,"etoposide 500 mg injection, vial",900000000000526001,"REPLACED BY association reference set",793491000168103,"etoposide phosphate 567.8 mg (etoposide 500 mg) injection, vial",20160531 +933214601000036104,"Levetiracetam (LAPL) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003481000168100,"Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60, blister pack",20170930 +80650011000036104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868231000168109,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",20170131 +34800011000036107,"Subutex 400 microgram tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",685861000168102,"Subutex 400 microgram sublingual tablet, 28, blister pack",20150228 +85368011000036108,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge",900000000000526001,"REPLACED BY association reference set",996031000168108,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge",20170831 +82522011000036104,"atropine sulfate 600 microgram/mL injection, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850861000168108,"atropine sulfate monohydrate 600 microgram/mL injection, 50 x 1 mL ampoules",20161130 +75382011000036106,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823031000168102,"human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe",20160831 +2931000036105,"olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, bag",900000000000526001,"REPLACED BY association reference set",779101000168108,"olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, bag",20160430 +70331000036104,"mesalazine 500 mg granules, sachet",900000000000526001,"REPLACED BY association reference set",1084021000168107,"mesalazine 500 mg modified release granules, sachet",20180228 +74422011000036103,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825701000168106,"H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial",20160930 +83298011000036105,"Prozero oral liquid: solution, 6 x 1 L bottles",900000000000526001,"REPLACED BY association reference set",745401000168101,"Prozero oral liquid solution, 6 x 1 L cartons",20160131 +107561000036100,"dressing hydrogel 1 cm x 50 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056211000168108,"dressing hydrophobic 1 cm x 50 cm ribbon",20171231 +125361000036107,"adrenaline 500 microgram/0.3 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",726601000168107,"adrenaline (epinephrine) 500 microgram/0.3 mL injection, dose",20151031 +94191000036104,"meningococcal group A conjugate vaccine 4 microgram + meningococcal group C conjugate vaccine 4 microgram + meningococcal group W135 conjugate vaccine 4 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 4 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",826551000168108,"meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial",20160930 +7356011000036106,"Prodeine Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835801000168102,"Prodeine Forte uncoated tablet",20161031 +65266011000036101,"Ora-Sed Jel oral gel",900000000000526001,"REPLACED BY association reference set",936641000168104,"Ora-Sed Jel oral gel",20170531 +83607011000036109,"Wagner Magnesium Forte 400 capsules: hard",900000000000526001,"REPLACED BY association reference set",750211000168108,"Magnesium Forte 400 (Wagner) hard capsule",20160131 +80217011000036109,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868341000168106,"Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag",20170131 +81139011000036102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags",900000000000526001,"REPLACED BY association reference set",868191000168100,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags",20170131 +922076011000036106,"calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet",900000000000526001,"REPLACED BY association reference set",859861000168100,"calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet",20161231 +73649011000036107,"meningococcal group A polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",827371000168108,"Neisseria meningitidis group A polysaccharide antigen",20160930 +921031011000036102,"MD-Gastroview solution, 240 mL bottle",900000000000526001,"REPLACED BY association reference set",696061000168101,"MD-Gastroview solution",20150430 +473751000168100,"HCU Cooler 15 oral liquid: solution, 130 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724101000168108,"HCU Cooler 15 Red oral liquid solution, 130 mL pouch",20151031 +81610011000036104,"glucose 5% (2.5 g/50 mL) injection, 65 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864381000168107,"glucose monohydrate 5% (2.5 g/50 mL) injection, 65 x 50 mL bags",20170131 +679551000168109,"botulinum toxin type A 200 units injection, 1 vial",900000000000526001,"REPLACED BY association reference set",720951000168101,"botulinum toxin type A 200 units injection, 1 vial",20151031 +73646011000036103,"measles virus (Schwarz) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",829861000168101,"measles virus live antigen",20160930 +28171011000036104,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041361000168109,"follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, 0.5 mL injection device",20171130 +81261011000036107,"metoclopramide hydrochloride 5 mg + paracetamol 500 mg capsule",900000000000526001,"REPLACED BY association reference set",867281000168106,"metoclopramide 5 mg + paracetamol 500 mg capsule",20170131 +81296011000036104,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868331000168102,"glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag",20170131 +922092011000036102,"iopromide 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695151000168106,"iopromide 623 mg (iodine 300 mg)/mL injection, 50 mL bottle",20150430 +41228011000036104,"Keppra 1 g tablet: film-coated, 10",900000000000526001,"REPLACED BY association reference set",720991000168106,"Keppra-1000 1 g film-coated tablet, 10",20151031 +75525011000036108,"meningococcal group C conjugate vaccine 10 microgram injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",826451000168107,"meningococcal C conjugate vaccine injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack",20160930 +20739011000036108,"Aerodiol 150 microgram/actuation nasal spray, 60 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085391000168106,"Aerodiol 150 microgram/actuation nasal spray, 60 actuations, pump pack",20180228 +29161000036100,"Movicol Chocolate solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674021000168106,"Movicol Chocolate powder for oral liquid, 30 sachets",20141031 +173211000036102,"Molaxole solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674201000168107,"Molaxole powder for oral liquid, sachet",20141031 +5428011000036101,"Zovirax 800 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",859211000168102,"Zovirax Dispersible 800 mg tablet",20161231 +776521000168103,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996141000168100,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24, blister pack",20170831 +59740011000036109,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995461000168100,"Cepacol Plus with Anaesthetic Original Flavour lozenge, 16, blister pack",20170831 +50510011000036100,"Monogen powder for oral liquid, 400 g, can",900000000000526001,"REPLACED BY association reference set",949701000168103,"Monogen powder for oral liquid, 400 g, can",20170630 +925157011000036101,"Pemzo 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",716721000168103,"Pemzo 20 mg enteric capsule, 30, blister pack",20150930 +73808011000036103,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824961000168109,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +712031000168101,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005241000168105,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +251291000168103,"PKU Anamix Junior oral liquid: powder for, 29 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723941000168109,"PKU Anamix Junior Unflavoured powder for oral liquid, 29 g sachet",20151031 +69173011000036108,"Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",701571000168101,"Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules",20150531 +797071000168102,"Levetiracetam (Accord) 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003121000168107,"Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60, blister pack",20170930 +11985011000036101,"Codalgin uncoated tablet, 50",900000000000526001,"REPLACED BY association reference set",836021000168109,"Codalgin uncoated tablet, 50",20161031 +154141000036106,"Nicorette Quickmist 1 mg/actuation oral spray, 150 actuations, aerosol can",900000000000526001,"REPLACED BY association reference set",1091961000168102,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations, aerosol can",20180331 +50346011000036109,"PKU Cooler10 Orange oral liquid: solution, 30 x 87 mL cans",900000000000526001,"REPLACED BY association reference set",725561000168102,"PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches",20151031 +77138011000036106,"Fess 0.704% nasal spray, 75 mL, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",729571000168106,"Fess 0.704% nasal spray, 75 mL, pump pack",20151130 +14309011000036100,"Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726461000168106,"Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL",20151031 +814971000168106,"Entrip 10 mg tablet, 50",900000000000526001,"REPLACED BY association reference set",855911000168106,"Entrip 10 mg film-coated tablet, 50",20161231 +155111000036109,"Macrogol plus Electrolytes (Apo) solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674071000168107,"Macrogol plus Electrolytes (Apo) powder for oral liquid, sachet",20141031 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836811000168107,"Streptococcus pneumoniae type 6B polysaccharide antigen",20161031 +101171000036105,"liraglutide 18 mg/3 mL injection, 3 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748101000168101,"liraglutide 6 mg/mL injection, 3 x 3 mL injection devices",20160131 +12956011000036104,"Movicol solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",673971000168109,"Movicol powder for oral liquid, 30 sachets",20141031 +75110011000036103,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",845881000168109,"meningococcal C conjugate vaccine injection, 0.5 mL syringe",20161130 +920985011000036109,"Citracal Plus D tablet: film-coated",900000000000526001,"REPLACED BY association reference set",859871000168106,"Citracal Plus D film-coated tablet",20161231 +36919011000036101,"Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",775551000168100,"Forthane 1 mL/mL inhalation solution, 100 mL",20160430 +921842011000036108,"Berocca Performance Original effervescent tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",829761000168105,"Berocca Performance Original effervescent tablet, 30, bottle",20160930 +51402011000036103,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694411000168103,"tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll",20150331 +63510011000036102,"benzydamine hydrochloride 1% + cetylpyridinium chloride monohydrate 0.1% oral gel, 10 g",900000000000526001,"REPLACED BY association reference set",995951000168107,"benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel, 10 g",20170831 +78201011000036104,"psyllium dried 520 mg/g + senna dried 100 mg/g granules, 250 g",900000000000526001,"REPLACED BY association reference set",832451000168106,"dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules, 250 g",20160930 +86234011000036104,"magnesium carbonate heavy 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet",900000000000526001,"REPLACED BY association reference set",830911000168103,"magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet",20160930 +718841000168104,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection [1 syringe] (&) Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",840911000168102,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack",20161031 +27829011000036103,"etoposide 1 g injection, 1 vial",900000000000526001,"REPLACED BY association reference set",793601000168106,"etoposide phosphate 1.136 g (etoposide 1 g) injection, 1 vial",20160531 +86728011000036104,"Orabase Protective Paste oromucosal paste, 5 g",900000000000526001,"REPLACED BY association reference set",797601000168104,"Orabase Protective paste, 5 g",20160630 +78312011000036102,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 250",900000000000526001,"REPLACED BY association reference set",833431000168108,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 250",20160930 +32960011000036107,"Soflax",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",734081000168104,"Soflax (AN)",20151130 +104111000036101,"Irbesartan (Apo) 300 mg tablet, 30, blister pack",900000000000526001,"REPLACED BY association reference set",807821000168107,"Irbesartan (Apo) 300 mg film-coated tablet, 30, blister pack",20160630 +924868011000036105,"Omepro 20 mg capsule, 100",900000000000526001,"REPLACED BY association reference set",716221000168108,"Omepro 20 mg enteric capsule, 100",20150930 +60204011000036103,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",861461000168105,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16, blister pack",20161231 +54236011000036100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% cream",900000000000526001,"REPLACED BY association reference set",715681000168103,"Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream",20150930 +55736011000036100,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 20 mL",900000000000526001,"REPLACED BY association reference set",721641000168102,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL",20151031 +57101011000036107,"Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution, 30 mL",900000000000526001,"REPLACED BY association reference set",721281000168105,"Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL",20151031 +925290011000036109,"Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083701000168103,"Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL, pump pack",20180228 +859081000168102,"Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1087271000168105,"Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations, pump pack",20180331 +726871000168103,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 60 doses",900000000000526001,"REPLACED BY association reference set",881171000168107,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose",20170228 +150811000036108,"Lax-Sachets solution: powder for, 30 sachets",900000000000526001,"REPLACED BY association reference set",674291000168101,"Lax-Sachets powder for oral liquid, 30 sachets",20141031 +157001000036100,"Istodax (1 x 10 mg vial, 1 x inert diluent vial), 1 pack, vial",900000000000526001,"REPLACED BY association reference set",828511000168106,"Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack",20160930 +728011000168100,"Lovan 20 mg dispersible tablet, 7, blister pack",900000000000526001,"REPLACED BY association reference set",844781000168104,"Lovan 20 mg tablet, 7, blister pack",20161031 +81691011000036107,"calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",867771000168101,"glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags",20170131 +921867011000036103,"Cardiprin 100 mg dispersible tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",804091000168106,"Cardiprin 100 mg tablet, 100, blister pack",20160630 +174981000036103,"olodaterol 2.5 microgram/actuation inhalation: pressurised, 60 actuations",900000000000526001,"REPLACED BY association reference set",701501000168106,"olodaterol 2.5 microgram/actuation inhalation solution, 60 actuations",20150531 +711351000168100,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004571000168101,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +929651011000036102,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850851000168106,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules",20161130 +712061000168109,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005181000168107,"Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847491000168102,"Creon 5000",20161130 +74255011000036108,"Cervarix injection suspension, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823221000168108,"Cervarix injection suspension, 20 x 0.5 mL syringes",20160831 +84803011000036106,"Elevit tablet: film-coated",900000000000526001,"REPLACED BY association reference set",843081000168103,"Elevit film-coated tablet (Old Formulation 2014)",20161031 +38702011000036105,"risedronate sodium 35 mg tablet [4] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [24 sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",810511000168100,"risedronate sodium 35 mg tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack",20160630 +74204011000036102,"Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",826341000168103,"Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",20160930 +3641000036101,"Zactin 20 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",844381000168103,"Zactin 20 mg tablet",20161031 +730611000168105,"Granisetron (AFT) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",747111000168102,"Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules",20160131 +150531000036101,"Nicorette Quickmist 1 mg/actuation oral spray, 2 x 150 actuations",900000000000526001,"REPLACED BY association reference set",1092181000168102,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations",20180331 +43807011000036109,"Voluven 6% / 0.9% injection solution, 20 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013431000168103,"Voluven injection solution, 20 x 500 mL bags",20170930 +13808011000036108,"Creon 5000 units modified release capsule, 100",900000000000526001,"REPLACED BY association reference set",847531000168102,"Creon 5000 enteric capsule, 100",20161130 +77392011000036108,"Centrum tablet: film-coated, 250, bottle",900000000000526001,"REPLACED BY association reference set",833451000168102,"Centrum film-coated tablet, 250, bottle",20160930 +20993011000036106,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041381000168100,"Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device",20171130 +67168011000036100,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",863641000168109,"Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag",20170131 +729881000168107,"calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",859991000168100,"calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100",20161231 +137841000036109,"Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006221000168108,"Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule",20170930 +81047011000036103,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags",900000000000526001,"REPLACED BY association reference set",864261000168107,"Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags",20170131 +703611000168106,"meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826911000168103,"meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection, vial",20160930 +82859011000036106,"Synflorix 16 microgram injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827661000168109,"Synflorix injection suspension, 10 x 0.5 mL syringes",20160930 +933232151000036106,"fluoride + hydrofluoric acid",900000000000526001,"REPLACED BY association reference set",61768011000036106,"fluoride",20170531 +98871000036104,"Victoza 18 mg/3 mL injection: solution, 3 mL cartridge",900000000000526001,"REPLACED BY association reference set",748031000168107,"Victoza 6 mg/mL injection solution, 3 mL injection device",20160131 +932466011000036109,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles",900000000000526001,"REPLACED BY association reference set",872781000168109,"alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles",20170131 +13882011000036106,"Probitor 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",717711000168107,"Probitor 20 mg enteric capsule, 30",20150930 +46211000036101,"Remeron 15 mg tablet: orally disintegrating, 30, blister pack",900000000000526001,"REPLACED BY association reference set",783831000168101,"Remeron Soltab 15 mg orally disintegrating tablet, 30, blister pack",20160531 +815071000168106,"Entrip 25 mg tablet, 10, blister pack",900000000000526001,"REPLACED BY association reference set",856681000168101,"Entrip 25 mg film-coated tablet, 10, blister pack",20161231 +921994011000036101,"Sorbi Sorbitol 70% non-crystallising oral liquid: solution, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",690641000168109,"Sorbi 70% non-crystallising oral liquid solution, 500 mL, bottle",20150331 +21968011000036109,"leuprorelin acetate 45 mg injection: modified release, syringe",900000000000526001,"REPLACED BY association reference set",750011000168102,"leuprorelin acetate 45 mg modified release injection, syringe",20160331 +639621000168100,"Recombinate 250 IU (inert substance) diluent, 10 mL vial",900000000000526001,"REPLACED BY association reference set",710871000168108,"Recombinate (inert substance) diluent, 10 mL vial",20150831 +33245011000036101,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",707341000168108,"Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack",20150731 +94711000036105,"boric acid 8.6 mg (boron 1.5 mg) + calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet, 90",900000000000526001,"REPLACED BY association reference set",932971000168104,"colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet, 90",20170531 +34708011000036107,"Codeine Phosphate (Phebra) 50 mg/mL injection: solution, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",835671000168108,"Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules",20161031 +56778011000036100,"Difflam Lozenge double mint sugar free lozenge, 16",900000000000526001,"REPLACED BY association reference set",995601000168104,"Difflam Lozenge Double Mint Sugar Free lozenge, 16",20170831 +821651000168103,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955121000168107,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",20170630 +927574011000036102,"Citrulline",900000000000527005,"SAME AS association reference set",106531000036108,"Citrulline 1000",20151130 +101391000036107,"Irbesartan (Apo) 300 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",807811000168100,"Irbesartan (Apo) 300 mg film-coated tablet, 30",20160630 +74378011000036107,"Comvax injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832341000168102,"Comvax injection suspension, 10 x 0.5 mL vials",20160930 +932851011000036104,"Lasix High Dose 20 mg/2 mL injection: solution, 5 x 2 mL ampoules",900000000000526001,"REPLACED BY association reference set",704831000168104,"Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules",20150630 +82559011000036105,"calcium (as carbonate) 600 mg (calcium 600 g) tablet, 100",900000000000526001,"REPLACED BY association reference set",860361000168107,"calcium carbonate 1.5 g (calcium 600 mg) tablet, 100",20161231 +18342011000036102,"Haldol Decanoate 50 mg/mL injection: solution, 5 x 1 mL vials, ampoule",900000000000526001,"REPLACED BY association reference set",679771000168105,"Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules",20141231 +925169011000036103,"Pemzo 20 mg capsule, 60, blister pack",900000000000526001,"REPLACED BY association reference set",717441000168103,"Pemzo 20 mg enteric capsule, 60, blister pack",20150930 +757481000168104,"Ursodox 250 mg capsule: hard, 60",900000000000526001,"REPLACED BY association reference set",765981000168109,"Ursodox (GH) 250 mg hard capsule, 60",20160331 +61711000168103,"Compound Benzoin Tincture Friar's Balsam (Orion)",900000000000526001,"REPLACED BY association reference set",696391000168106,"Compound Benzoin Friar's Balsam (Orion)",20150430 +675001000168101,"Simponi Smartject 100 mg/mL injection: solution, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",845831000168108,"Simponi Smartject 100 mg/mL injection solution, 1 mL injection device",20161130 +55663011000036109,"Anti Fungal V 6 Day (Amcal) 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",714981000168106,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g",20150930 +89871000036107,"Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",730001000168104,"Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial",20151130 +74995011000036101,"Yellow fever live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",822181000168107,"yellow fever live vaccine",20160831 +75514011000036101,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",845931000168104,"meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes",20161130 +900053011000036105,"Voltaren Emulgel 1% gel, 50 g, tube",900000000000526001,"REPLACED BY association reference set",1037081000168105,"Voltaren Emulgel 1.16% gel, 50 g, tube",20171130 +243881000168103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL can",900000000000526001,"REPLACED BY association reference set",725521000168107,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL pouch",20151031 +50530011000036105,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725191000168103,"PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets",20151031 +74891011000036107,"Comvax injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",832351000168100,"Comvax injection suspension, 10 x 0.5 mL vials",20160930 +2871000036103,"olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, bag",900000000000526001,"REPLACED BY association reference set",771801000168104,"olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, bag",20160430 +18393011000036101,"ADT Booster injection: suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837361000168100,"ADT Booster injection suspension, 5 x 0.5 mL syringes",20161031 +930838011000036102,"Actonel EC Combi D (1 x Once-a-Week tablet, 6 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",810291000168106,"Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack",20160630 +65414011000036106,"Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion",900000000000526001,"REPLACED BY association reference set",766771000168101,"Chlorhexidine Hand Lotion (Orion) lotion",20160331 +75001011000036103,"diphtheria toxoid vaccine + Haemophilus influenzae type b vaccine + hepatitis B vaccine + Bordetella pertussis, acellular pertactin vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine + tetanus toxoid vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836641000168105,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine",20161031 +989781000168104,"Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1087151000168108,"Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL, pump pack",20180331 +35760011000036103,"carbomer-974 0.3% eye gel, 30 x 500 mg unit doses",900000000000526001,"REPLACED BY association reference set",718731000168101,"carbomer-974P 0.3% eye gel, 30 x 500 mg unit doses",20150930 +67132011000036107,"Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 25 mL",900000000000526001,"REPLACED BY association reference set",688431000168104,"Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL",20150331 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836901000168104,"Streptococcus pneumoniae type 15B polysaccharide antigen",20161031 +54185011000036100,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge",900000000000526001,"REPLACED BY association reference set",861231000168101,"Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge",20161231 +74350011000036108,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",824931000168101,"Vaqta Adult 50 units/mL injection suspension, 1 mL vial",20160930 +13156011000036109,"Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722801000168109,"Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL",20151031 +689591000168109,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",900000000000526001,"REPLACED BY association reference set",831301000168105,"Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack",20160930 +75451011000036101,"hepatitis A inactivated vaccine 25 units/0.5 mL injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",825111000168105,"hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL vial",20160930 +66861000036109,"glycerophosphoric acid + liver extract + thiamine",900000000000526001,"REPLACED BY association reference set",688101000168101,"iron + calcium + potassium + sodium + manganese + thiamine + bovine liver",20150331 +252121000168101,"Lophlex LQ 10 oral liquid: solution, 62.5 mL can",900000000000526001,"REPLACED BY association reference set",726241000168106,"Lophlex LQ 10 oral liquid solution, 62.5 mL pouch",20151031 +31541000036107,"typhoid fever polysaccharide vaccine + hepatitis A inactivated vaccine",900000000000526001,"REPLACED BY association reference set",827291000168104,"hepatitis A + typhoid vaccine",20160930 +74902011000036107,"Dimetapp 12 Hour 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083671000168104,"Dimetapp 12 Hour 0.05% nasal spray, 20 mL, pump pack",20180228 +82128011000036106,"Aspalgin dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",834371000168102,"Aspalgin dispersible tablet, 100",20161031 +922086011000036104,"alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet",900000000000526001,"REPLACED BY association reference set",843211000168103,"dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet",20161031 +71859011000036106,"benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995081000168104,"benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 2",20170831 +923761011000036101,"Omeprazole (Pharmacor) 20 mg capsule, 500, blister pack",900000000000526001,"REPLACED BY association reference set",717311000168106,"Omeprazole (Pharmacor) 20 mg enteric capsule, 500, blister pack",20150930 +923895011000036104,"Creon Micro 5000 units/100 mg enteric coated granules, 20 g, bottle",900000000000526001,"REPLACED BY association reference set",847181000168106,"Creon Micro enteric coated granules, 20 g, bottle",20161130 +19529011000036109,"Otocomb Otic ointment, 5 g, tube",900000000000526001,"REPLACED BY association reference set",758381000168108,"Otocomb Otic ear ointment, 5 g, tube",20160229 +29421000036103,"typhoid fever polysaccharide vaccine 25 microgram + hepatitis A inactivated vaccine 160 ELISA units injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",827321000168107,"hepatitis A + typhoid vaccine injection, 1 mL syringe",20160930 +74246011000036103,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825261000168102,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes",20160930 +27818011000036100,"buprenorphine 400 microgram tablet, 7",900000000000526001,"REPLACED BY association reference set",685871000168108,"buprenorphine 400 microgram sublingual tablet, 7",20150228 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836851000168108,"Streptococcus pneumoniae type 9V polysaccharide antigen",20161031 +926707011000036101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",825501000168101,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",20160930 +75405011000036109,"hepatitis A inactivated vaccine 360 ELISA units + hepatitis B vaccine 10 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824531000168107,"hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe",20160930 +141781000036102,"lanreotide 120 mg injection, 1 syringe",900000000000526001,"REPLACED BY association reference set",819401000168109,"lanreotide 120 mg/0.5 mL injection, 0.5 mL syringe",20160731 +923940011000036106,"smallpox live vaccine",900000000000526001,"REPLACED BY association reference set",821281000168108,"smallpox live vaccine",20160831 +921495011000036100,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60",900000000000526001,"REPLACED BY association reference set",842811000168107,"Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60",20161031 +81295011000036106,"calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868281000168105,"glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag",20170131 +34731011000036105,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",834801000168101,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100, blister pack",20161031 +927418011000036105,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831141000168109,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, 10 vials",20160930 +669601000168100,"Allmercap 20 mg/mL oral liquid suspension, 100 mL",900000000000526001,"REPLACED BY association reference set",845401000168104,"Allmercap 20 mg/mL oral liquid suspension, 100 mL",20161130 +13790011000036106,"Citracal 250 mg (calcium 250 mg) tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",860051000168108,"Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120",20161231 +74904011000036103,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1082871000168108,"Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack",20180228 +921010011000036104,"Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 50 mL vial",900000000000526001,"REPLACED BY association reference set",696351000168101,"Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 50 mL bottle",20150430 +21283011000036100,"fluticasone",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",860171000168103,"fluticasone furoate",20161231 +74896011000036102,"Beconase Allergy and Hayfever 12 Hour 0.05% (50 microgram/actuation) nasal spray, 100 actuations, bottle",900000000000526001,"REPLACED BY association reference set",696321000168109,"Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 100 actuations, pump pack",20150430 +716041000168106,"meningococcal group C conjugate vaccine + meningococcal group W135 conjugate vaccine + meningococcal group Y (Neisseria meningitidis) conjugate vaccine",900000000000526001,"REPLACED BY association reference set",826681000168102,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine",20160930 +9041000036106,"Clinoleic 20% injection: emulsion, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771781000168103,"Clinoleic 20% injection emulsion, 250 mL bag",20160430 +703061000168104,"Fluarix Tetra 2015 injection: suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",709811000168105,"Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes",20150731 +711301000168104,"Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004591000168100,"Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule",20170930 +925141011000036106,"Omepro 20 mg capsule, 7, blister pack",900000000000526001,"REPLACED BY association reference set",716901000168105,"Omepro 20 mg enteric capsule, 7, blister pack",20150930 +49529011000036106,"PKU Cooler15 Purple oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725671000168107,"PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches",20151031 +71696011000036101,"benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture, 200 mL",900000000000526001,"REPLACED BY association reference set",688471000168101,"benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 200 mL",20150331 +37941000036108,"Tadim 1 million units (80 mg) powder for inhalation, 30 vials",900000000000526001,"REPLACED BY association reference set",818131000168100,"Tadim 1 million units powder for inhalation, 30 vials",20160731 +154341000036108,"Celestone Chronodose injection: suspension, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",746351000168100,"Celestone Chronodose injection suspension, 5 x 1 mL ampoules",20160131 +80220011000036101,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",900000000000526001,"REPLACED BY association reference set",868131000168104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag",20170131 +844841000168103,"Zovirax 400 mg tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",859571000168108,"Zovirax Dispersible 400 mg tablet, 100, blister pack",20161231 +74802011000036103,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822911000168104,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe",20160831 +68695011000036100,"Cepacol 0.05% mouthwash, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",995021000168103,"Cepacol 0.05% mouthwash, 500 mL, bottle",20170831 +14601000036104,"Clinoleic 20% injection: emulsion, 250 mL bag",900000000000526001,"REPLACED BY association reference set",771791000168100,"Clinoleic 20% injection emulsion, 250 mL bag",20160430 +36175011000036105,"Marcain Spinal Heavy injection: solution, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",863571000168101,"Marcain Spinal Heavy injection solution, 4 mL ampoule",20170131 +49434011000036103,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694421000168105,"Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll",20150331 +82916011000036101,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000526001,"REPLACED BY association reference set",827581000168104,"pneumococcal 10 valent conjugate vaccine",20160930 +900030011000036103,"Voltaren Emulgel 1% gel, 20 g",900000000000526001,"REPLACED BY association reference set",1037041000168100,"Voltaren Emulgel 1.16% gel, 20 g",20171130 +84439011000036106,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g + ascorbic acid 5.96 g powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901061000168108,"macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet",20170331 +86633011000036104,"Calcia-1000 1 g (calcium 1 g) chewable tablet",900000000000526001,"REPLACED BY association reference set",859921000168102,"Calcia-1000 2.5 g (calcium 1 g) chewable tablet",20161231 +82112011000036103,"MSUD Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724951000168109,"MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles",20151031 +924769011000036100,"Panadol Children's 3+ Years 120 mg tablet: chewable, 24",900000000000526001,"REPLACED BY association reference set",721691000168105,"Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24",20151031 +5063011000036106,"Nemdyn Otic ointment",900000000000526001,"REPLACED BY association reference set",689841000168104,"Nemdyn Otic ear ointment",20150331 +49462011000036103,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688621000168104,"Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1",20150331 +926706011000036104,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825471000168107,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20160930 +933230531000036105,"Levitaccord 1000 mg 1 g film-coated tablet, 60, blister pack",900000000000526001,"REPLACED BY association reference set",1003811000168109,"Levitaccord-1000 1 g film-coated tablet, 60, blister pack",20170930 +69520011000036107,"Disprin Max 500 mg dispersible tablet, 16, strip pack",900000000000526001,"REPLACED BY association reference set",804371000168108,"Disprin Max 500 mg tablet, 16, strip pack",20160630 +36093011000036108,"Primacor 10 mg/10 mL injection: solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",719501000168107,"Primacor 10 mg/10 mL concentrated injection, 10 mL ampoule",20150930 +65691000036105,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871771000168104,"Rehydration Formula Effervescent (Guardian) effervescent tablet, 20, tube",20170131 +253701000168102,"PKU Lophlex LQ 10 oral liquid: solution, 62.5 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724561000168101,"PKU Lophlex LQ 10 Tropical oral liquid solution, 62.5 mL pouch",20151031 +252671000168108,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL can",900000000000526001,"REPLACED BY association reference set",710251000168103,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch",20151031 +44259011000036103,"Imigran S 10 mg/actuation nasal spray, 2 actuations, vial",900000000000526001,"REPLACED BY association reference set",728161000168103,"Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation, vials",20151130 +74808011000036100,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",824741000168107,"Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials",20160930 +12182011000036107,"Kenacomb Otic ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758291000168101,"Kenacomb Otic ear ointment, 5 g",20160229 +933226031000036103,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1004811000168106,"Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags",20170930 +711651000168108,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005651000168105,"Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +177761000036102,"lixisenatide 10 microgram/0.2 mL injection [14 x 0.2 mL unit doses] (&) lixisenatide 20 microgram/0.2 mL injection [14 x 0.2 mL unit doses], 1 pack",900000000000526001,"REPLACED BY association reference set",719401000168106,"lixisenatide 10 microgram/dose injection [14 doses] (&) lixisenatide 20 microgram/dose injection [14 doses], 1 pack",20150930 +79529011000036102,"Septopal Chain 7.5 mg implant, 1 bead",900000000000526001,"REPLACED BY association reference set",684541000168102,"Septopal Chain 7.5 mg implant, 30 beads",20150131 +45018011000036103,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, bag",900000000000526001,"REPLACED BY association reference set",1013391000168108,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bag",20170930 +8891000168108,"Creon",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",847421000168104,"Creon 10 000",20161130 +4523011000036108,"Atropt 1% eye drops solution",900000000000526001,"REPLACED BY association reference set",850951000168103,"Atropt 1% eye drops solution",20161130 +86645011000036102,"Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial",900000000000526001,"REPLACED BY association reference set",704491000168102,"Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial",20150630 +84269011000036101,"Wagner Magnesium Forte 400 capsules: hard, 100, bottle",900000000000526001,"REPLACED BY association reference set",750241000168107,"Magnesium Forte 400 (Wagner) hard capsule, 100, bottle",20160131 +73848011000036108,"Adacel injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837471000168104,"Adacel injection suspension, 0.5 mL vial",20161031 +932456011000036101,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",843181000168102,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30",20161031 +75354011000036108,"Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839631000168108,"diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe",20161031 +84294011000036100,"Clotrimazole 3 Day (Apo) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715761000168104,"Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g, tube",20150930 +702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726141000168103,"PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets",20151031 +75455011000036104,"Yellow fever live attenuated vaccine 1000 units injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",822211000168106,"yellow fever live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20160831 +74298011000036106,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",824831000168105,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials",20160930 +684441000168103,"lignocaine hydrochloride anhydrous 1% (50 mg/5 mL) injection, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693451000168104,"lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, 5 x 5 mL ampoules",20150331 +18217011000036101,"Puri-Nethol 50 mg uncoated tablet, 25, bottle",900000000000526001,"REPLACED BY association reference set",845461000168103,"Puri-Nethol 50 mg uncoated tablet, 25, bottle",20161130 +68696011000036107,"Ringworm 1% ointment, 15 g, tube",900000000000526001,"REPLACED BY association reference set",800431000168109,"Ringworm (Amneal) 1% ointment, 15 g, tube",20160630 +75117011000036102,"meningococcal group C conjugate vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",826401000168108,"meningococcal C conjugate vaccine injection, vial",20160930 +86631011000036100,"Calcia plus Vitamin D 200 IU chewable tablet",900000000000526001,"REPLACED BY association reference set",860081000168101,"Calcia plus Vitamin D 200 IU chewable tablet",20161231 +920666011000036103,"Ostelin Vitamin D and Calcium tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862321000168103,"Ostelin Vitamin D and Calcium film-coated tablet, 60, bottle",20161231 +49437011000036109,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688861000168105,"Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll",20150331 +20218011000036101,"Clofeme Thrush Treatment 6 Day 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715141000168102,"Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube",20150930 +74359011000036102,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",828271000168101,"Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack",20160930 +27479011000036105,"fluoxetine 20 mg dispersible tablet, 28",900000000000526001,"REPLACED BY association reference set",844321000168102,"fluoxetine 20 mg tablet, 28",20161031 +13109011000036109,"Repalyte powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871921000168103,"Repalyte powder for oral liquid, 10 x 4.9 g sachets",20170131 +50937011000036100,"tape plaster adhesive hypoallergenic 5 cm x 5 m stretch tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689041000168107,"tape plaster adhesive hypoallergenic 5 cm x 5 m tape",20150331 +59720011000036107,"Disprin Forte dispersible tablet, 24, strip pack",900000000000526001,"REPLACED BY association reference set",804171000168106,"Disprin Forte tablet, 24, strip pack",20160630 +5333011000036100,"Puri-Nethol 50 mg uncoated tablet",900000000000526001,"REPLACED BY association reference set",845431000168106,"Puri-Nethol 50 mg uncoated tablet",20161130 +711861000168106,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005151000168100,"Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +71761000036104,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 120",900000000000526001,"REPLACED BY association reference set",862061000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 120",20161231 +13605011000036108,"Etopophos 1 g injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793611000168109,"Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial",20160531 +121811000036101,"clotrimazole + hydrocortisone acetate",900000000000526001,"REPLACED BY association reference set",37751011000036102,"hydrocortisone + clotrimazole",20150930 +74974011000036108,"Q fever inactivated vaccine",900000000000526001,"REPLACED BY association reference set",821551000168104,"Q fever vaccine",20160831 +159261000036100,"Oxycontin Reformulation 20 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928481011000036107,"Oxycontin 20 mg modified release tablet, 28",20170731 +664291000168105,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",900000000000526001,"REPLACED BY association reference set",833621000168108,"Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL",20160930 +933229561000036106,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724861000168104,"MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches",20151031 +921422011000036104,"Calvid granules: effervescent, 30 x 7 g sachets",900000000000526001,"REPLACED BY association reference set",810651000168103,"Calvid effervescent granules, 30 x 7.3 g sachets",20160630 +49021000036107,"Valvala 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1009741000168100,"Valvala-1000 1 g film-coated tablet",20170930 +50348011000036108,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694101000168106,"Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll, carton",20150331 +70065011000036108,"tolnaftate 0.09% spray",900000000000526001,"REPLACED BY association reference set",769591000168100,"tolnaftate 0.09% (900 microgram/g) spray",20160331 +82196011000036100,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 2 x 5 L bags",900000000000526001,"REPLACED BY association reference set",872441000168107,"Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags",20170131 +84919011000036101,"Strepsils lozenge, 10",900000000000526001,"REPLACED BY association reference set",721941000168105,"Strepsils Cool lozenge, 10",20151031 +921813011000036108,"Citracal Plus D tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",859901000168106,"Citracal Plus D film-coated tablet, 60, bottle",20161231 +75902011000036104,"senna dried",900000000000526001,"REPLACED BY association reference set",826011000168104,"dry Tinnevelly senna fruit",20160930 +74803011000036105,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes",900000000000526001,"REPLACED BY association reference set",822941000168100,"Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes",20160831 +926948011000036103,"Priorix powder for injection, 10 vials",900000000000526001,"REPLACED BY association reference set",831161000168108,"Priorix powder for injection, 10 vials",20160930 +77443011000036104,"sorbitol solution (70 per cent-non-crystallising)",900000000000526001,"REPLACED BY association reference set",922041011000036102,"sorbitol",20150331 +20924011000036104,"Prodeine Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835821000168106,"Prodeine Forte uncoated tablet, 20, blister pack",20161031 +19339011000036109,"Zentel 200 mg chewable tablet, 6, bottle",900000000000526001,"REPLACED BY association reference set",844231000168106,"Zentel 200 mg tablet, 6, bottle",20161031 +26741000036105,"typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",827101000168101,"typhoid inactivated vaccine injection, 0.5 mL syringe",20160930 +921396011000036101,"Berocca Performance Original effervescent tablet, 30",900000000000526001,"REPLACED BY association reference set",829751000168108,"Berocca Performance Original effervescent tablet, 30",20160930 +80669011000036100,"Gastrolyte natural powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871871000168107,"Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets",20170131 +689611000168104,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack",900000000000526001,"REPLACED BY association reference set",831201000168103,"measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack",20160930 +86757011000036101,"Calcia-1000 1 g (calcium 1 g) chewable tablet, 30",900000000000526001,"REPLACED BY association reference set",859941000168108,"Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30",20161231 +23289011000036105,"calcium (as carbonate) 600 mg (calcium 600 g) tablet",900000000000526001,"REPLACED BY association reference set",860241000168102,"calcium carbonate 1.5 g (calcium 600 mg) tablet",20161231 +74351011000036101,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824881000168106,"Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +368531000168105,"TYR Cooler 15 oral liquid: solution, 130 mL can",900000000000526001,"REPLACED BY association reference set",725901000168106,"TYR Cooler 15 oral liquid solution, 130 mL pouch",20151031 +89551000036100,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate anhydrous 2.51 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet, 60",900000000000526001,"REPLACED BY association reference set",861851000168106,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet, 60",20161231 +923842011000036101,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827481000168103,"Prevenar-13 injection suspension, 10 x 0.5 mL syringes",20160930 +22039011000036103,"mercaptopurine 50 mg tablet",900000000000526001,"REPLACED BY association reference set",845421000168108,"mercaptopurine monohydrate 50 mg tablet",20161130 +77389011000036102,"Centrum tablet: film-coated, 14, bottle",900000000000526001,"REPLACED BY association reference set",833091000168101,"Centrum film-coated tablet, 14, bottle",20160930 +74346011000036109,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",822701000168100,"Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack",20160831 +82987011000036100,"pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827641000168105,"pneumococcal 10 valent conjugate vaccine injection, 10 x 0.5 mL syringes",20160930 +6021011000036102,"Comfarol Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835961000168108,"Comfarol Forte uncoated tablet",20161031 +87017011000036106,"calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet, 120",900000000000526001,"REPLACED BY association reference set",860141000168105,"calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet, 120",20161231 +700016311000036108,"Femazole One",900000000000526001,"REPLACED BY association reference set",26061000036109,"Femazole Duo",20150228 +53627011000036100,"Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream",900000000000526001,"REPLACED BY association reference set",715401000168109,"Clotrimazole (Your Pharmacy) 2% vaginal cream",20150930 +73905011000036102,"Comvax injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832291000168100,"Comvax injection suspension, 0.5 mL vial",20160930 +702801000168102,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726231000168102,"PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets",20151031 +76806011000036109,"Centrum tablet: film-coated, 150",900000000000526001,"REPLACED BY association reference set",833381000168101,"Centrum film-coated tablet, 150",20160930 +56584011000036104,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 20 mL",900000000000526001,"REPLACED BY association reference set",721901000168108,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL",20151031 +77270011000036105,"Agiolax granules, 250 g, jar",900000000000526001,"REPLACED BY association reference set",832471000168102,"Agiolax granules, 250 g, jar",20160930 +75459011000036102,"Haemophilus influenzae type b vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",828261000168107,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack",20160930 +80227011000036100,"Gastrolyte Blackcurrant effervescent tablet",900000000000526001,"REPLACED BY association reference set",871681000168106,"Gastrolyte Blackcurrant effervescent tablet",20170131 +931839011000036103,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder, 1 sachet",900000000000526001,"REPLACED BY association reference set",931833011000036101,"phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 1 sachet",20160731 +686421000168103,"Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",698601000168109,"Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes",20150430 +924887011000036106,"Pemzo 20 mg capsule, 500",900000000000526001,"REPLACED BY association reference set",716891000168106,"Pemzo 20 mg enteric capsule, 500",20150930 +140791000036109,"Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006121000168104,"Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +75120011000036105,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840701000168103,"diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe",20161031 +691671000168107,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",848201000168108,"Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack, composite pack",20161130 +928235011000036103,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g",900000000000526001,"REPLACED BY association reference set",705411000168105,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g",20150731 +712041000168105,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005251000168107,"Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +79699011000036101,"Creon 25 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847411000168106,"Creon 25 000 enteric capsule, 100, bottle",20161130 +19910011000036104,"Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722761000168101,"Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL, injection device",20151031 +26978011000036103,"atropine sulfate 1% eye drops, 15 mL",900000000000526001,"REPLACED BY association reference set",850961000168101,"atropine sulfate monohydrate 1% eye drops, 15 mL",20161130 +75509011000036102,"diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840801000168105,"diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe",20161031 +52412011000036104,"Cal-600 600 mg (calcium 600 g) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",860251000168100,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet",20161231 +127331000036108,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 174 mL sachets",900000000000526001,"REPLACED BY association reference set",725351000168106,"amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 174 mL pouches",20151031 +30561000036104,"Voltaren Osteo 1% gel, 75 g, tube",900000000000526001,"REPLACED BY association reference set",1037121000168107,"Voltaren Osteo 1.16% gel, 75 g, tube",20171130 +51977011000036106,"Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint",900000000000526001,"REPLACED BY association reference set",703141000168104,"Salicylic Acid APF (extemporaneous) 10% paint",20150531 +689011000168108,"Priorix-Tetra (measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",831191000168101,"Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial",20160930 +75068011000036106,"hepatitis A inactivated vaccine 50 units/mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825141000168109,"hepatitis A adult vaccine 50 units/mL injection, syringe",20160930 +922653011000036106,"iopromide 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695321000168101,"iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle",20150430 +83410011000036108,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",872201000168109,"Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules",20170131 +662431000168104,"Metformin Hydrochloride (AN) 1 g film-coated tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",949411000168105,"Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90, blister pack",20170630 +165601000036105,"Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726691000168101,"Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device",20151031 +922549011000036100,"ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",757851000168109,"ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 30",20160229 +81723011000036106,"calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, 1 L bag",900000000000526001,"REPLACED BY association reference set",872231000168102,"sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 1 L bag",20170131 +73871000036100,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",862111000168107,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60, bottle",20161231 +76160011000036104,"Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 100 mL vial",900000000000526001,"REPLACED BY association reference set",695721000168102,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 100 mL bottle",20150430 +757011000168103,"Ursodox",900000000000526001,"REPLACED BY association reference set",765941000168104,"Ursodox (GH)",20160331 +19500011000036107,"Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 5 x 0.4 mL ampoules",900000000000526001,"REPLACED BY association reference set",684601000168103,"Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses, ampoule",20150131 +13996011000036100,"Klacid Hp 7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack",900000000000526001,"REPLACED BY association reference set",715991000168108,"Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack",20150930 +44418011000036102,"Avonex (4 x 6 million international units (30 microgram) vials, 4 x 1 mL diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",698291000168100,"Avonex (4 x 6 million units (30 microgram) vials, 4 x 1 mL inert diluent syringes), 1 pack",20150430 +924176011000036109,"plerixafor 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891121000168105,"plerixafor 24 mg/1.2 mL injection, 1.2 mL vial",20170331 +42148011000036101,"Metvix 200 mg/g cream, 2 g",900000000000526001,"REPLACED BY association reference set",999311000168105,"Metvix 160 mg/g cream, 2 g",20170831 +59863011000036105,"Clotrimazole 3 Day (Guardian) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715171000168109,"Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g, tube",20150930 +80642011000036102,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",868101000168106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags",20170131 +761891000168103,"Co-Phenylcaine Forte nasal spray, 2.5 mL",900000000000526001,"REPLACED BY association reference set",791941000168104,"Co-Phenylcaine Forte nasal spray, 2.5 mL",20160531 +83621011000036106,"Diacol tablet",900000000000526001,"REPLACED BY association reference set",900241000168108,"Diacol tablet",20170331 +71454011000036102,"salicylic acid 3% (30 mg/g) + sulfur-precipitated 3% (30 mg/g) + aqueous cream 940 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705501000168108,"salicylic acid 3% + precipitated sulfur 3% + aqueous cream, 100 g",20150731 +154081000036101,"Nicorette Quickmist 1 mg/actuation oral spray, 2 x 150 actuations aerosol cans",900000000000526001,"REPLACED BY association reference set",1092191000168104,"Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations, aerosol cans",20180331 +925132011000036104,"First Aid (Guardian) cream, 50 g, tube",900000000000526001,"REPLACED BY association reference set",861561000168106,"First Aid (Guardian) cream, 50 g, tube",20161231 +924212011000036102,"omeprazole 20 mg capsule, 90",900000000000526001,"REPLACED BY association reference set",716961000168106,"omeprazole 20 mg enteric capsule, 90",20150930 +143831000036109,"dimethyl fumarate 120 mg capsule: modified release",900000000000526001,"REPLACED BY association reference set",756221000168104,"dimethyl fumarate 120 mg enteric capsule",20160229 +933232031000036102,"Fluoride Panda Punch (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932621000168109,"Fluoride (Laclede) Panda Punch Flavour foam, 165 mL, aerosol can",20170531 +20888011000036109,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715301000168101,"Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g, tube",20150930 +221000168102,"Probitor 20 mg capsule, 14 capsules",900000000000526001,"REPLACED BY association reference set",715911000168104,"Probitor 20 mg enteric capsule, 14",20150930 +127551000036107,"adrenaline 500 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726621000168103,"adrenaline (epinephrine) 500 microgram/0.3 mL injection, 1 dose",20151031 +19070011000036104,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",834831000168108,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20, blister pack",20161031 +56394011000036103,"Zantac 150 mg/10 mL oral liquid: solution, 140 mL",900000000000526001,"REPLACED BY association reference set",783901000168103,"Zantac 150 mg/10 mL oral liquid, 140 mL",20160531 +665581000168106,"PKU Cooler20 Green oral liquid: solution, 174 mL can",900000000000526001,"REPLACED BY association reference set",725751000168107,"PKU Cooler 20 Green oral liquid solution, 174 mL pouch",20151031 +251291000168103,"PKU Anamix Junior oral liquid: powder for, 29 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",723971000168102,"PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 29 g sachet",20151031 +82192011000036104,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 240",900000000000526001,"REPLACED BY association reference set",860571000168107,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240",20161231 +27393011000036109,"etoposide 100 mg injection, 1 vial",900000000000526001,"REPLACED BY association reference set",793421000168100,"etoposide phosphate 113.6 mg (etoposide 100 mg) injection, 1 vial",20160531 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826091000168108,"Streptococcus pneumoniae type 5 conjugate antigen",20160930 +116271000036106,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets",900000000000526001,"REPLACED BY association reference set",902121000168105,"Pico-Salax powder for oral liquid, 2 x 16.1 g sachets",20170331 +711601000168109,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005691000168100,"Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 10 mL ampoule",20170930 +61119011000036107,"Difflam Lozenge orange sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995811000168100,"Difflam Lozenge Orange Sugar Free lozenge, 16, blister pack",20170831 +923325011000036108,"Omeprazole (Pharmacor) 20 mg capsule, 280",900000000000526001,"REPLACED BY association reference set",717201000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 280",20150930 +683311000168108,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083001000168101,"Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack",20180228 +74900011000036108,"Decongestant (Guardian) 0.05% nasal spray, 18 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083601000168109,"Decongestant (Guardian) 0.05% nasal spray, 18 mL, pump pack",20180228 +107521000036109,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon",900000000000526001,"REPLACED BY association reference set",1056271000168100,"Sorbact Gauze (S98120) 5 cm x 200 cm ribbon",20171231 +26748011000036109,"darbepoetin alfa 100 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",1041261000168100,"darbepoetin alfa 100 microgram/0.5 mL injection, 0.5 mL injection device",20171130 +20508011000036107,"Kaletra 400/100 oral liquid: solution, 60 mL, bottle",900000000000526001,"REPLACED BY association reference set",689491000168105,"Kaletra oral liquid solution, 60 mL, bottle",20150331 +933220821000036107,"Naropin 1% (200 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005041000168101,"Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule",20170930 +682141000168101,"testosterone undecanoate 1 g/4 mL injection, 4 mL vial",900000000000526001,"REPLACED BY association reference set",722951000168100,"testosterone undecanoate 1 g/4 mL modified release injection, 4 mL vial",20151031 +82337011000036102,"Aspalgin dispersible tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",834261000168104,"Aspalgin dispersible tablet, 20, blister pack",20161031 +46169011000036103,"pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 20 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013411000168108,"hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 20 x 500 mL bags",20170930 +844441000168101,"Zovirax 200 mg tablet, 90",900000000000526001,"REPLACED BY association reference set",859451000168100,"Zovirax Dispersible 200 mg tablet, 90",20161231 +48603011000036108,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll",900000000000526001,"REPLACED BY association reference set",694351000168108,"Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape",20150331 +815091000168107,"Entrip 25 mg tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",856701000168103,"Entrip 25 mg film-coated tablet, 50, blister pack",20161231 +828391000168105,"Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",846071000168109,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",20161130 +36098011000036103,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 1 sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810371000168102,"Actonel Combi D effervescent granules, 1 sachet",20160630 +73653011000036107,"meningococcal group C conjugate vaccine",900000000000526001,"REPLACED BY association reference set",824471000168106,"Neisseria meningitidis group C conjugate antigen",20160930 +24651000036108,"Albey Bee Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",758861000168107,"Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack",20160229 +815231000168104,"Entrip 50 mg tablet, 1000",900000000000526001,"REPLACED BY association reference set",856841000168107,"Entrip 50 mg film-coated tablet, 1000",20161231 +925137011000036102,"Omepro 20 mg capsule, 30, blister pack",900000000000526001,"REPLACED BY association reference set",716591000168108,"Omepro 20 mg enteric capsule, 30, blister pack",20150930 +3182011000036104,"Granocyte",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",838251000168108,"Granocyte-34",20161031 +86464011000036109,"monobasic sodium phosphate monohydrate 480 mg/mL + dibasic sodium phosphate heptahydrate 180 mg/mL oral liquid, 45 mL",900000000000526001,"REPLACED BY association reference set",1097801000168100,"monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, 45 mL",20180331 +74347011000036107,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1 mL diluent vial), 1 pack",900000000000526001,"REPLACED BY association reference set",822581000168102,"BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack",20160831 +711721000168107,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005511000168108,"Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 20 mL ampoule",20170930 +87941000036103,"dinoprostone 400 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005321000168105,"dinoprostone 1 mg/3 g vaginal gel, syringe",20170930 +921879011000036102,"Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 10 x 50 mL vials",900000000000526001,"REPLACED BY association reference set",696381000168108,"Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles",20150430 +61451000036102,"calcium carbonate 780 mg + magnesium carbonate heavy 130 mg + magnesium trisilicate 130 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",833641000168102,"calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet",20160930 +75491011000036105,"hepatitis A inactivated vaccine 160 antigen units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824671000168109,"hepatitis A child/adult vaccine injection, 0.5 mL syringe",20160930 +81141011000036100,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872631000168100,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag",20170131 +718831000168108,"Infanrix Hexa 10 microgram powder for injection, 10 microgram vial",900000000000526001,"REPLACED BY association reference set",840901000168100,"Infanrix Hexa 10 microgram powder for injection, 10 microgram vial",20161031 +700301000168107,"diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837281000168100,"diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe",20161031 +36004011000036107,"Calcium carbonate / colecalciferol (Sanofi-Aventis)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",929810011000036106,"Actonel EC Combi D",20160630 +920991011000036106,"Macu-Vision tablet: film-coated",900000000000526001,"REPLACED BY association reference set",757841000168107,"Macu-Vision film-coated tablet",20160229 +74861011000036105,"Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1083611000168107,"Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL, pump pack",20180228 +933216021000036106,"Recombinate 1000 IU (1 x 1000 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",710951000168107,"Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack",20150831 +706391000168103,"measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",831371000168100,"measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack",20160930 +2493011000036103,"pneumococcal purified capsular polysaccharides",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836961000168103,"Streptococcus pneumoniae type 22F polysaccharide antigen",20161031 +177921000036109,"Lyxumia 10 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses",900000000000526001,"REPLACED BY association reference set",719321000168107,"Lyxumia 10 microgram/dose injection solution, 14 doses",20150930 +90421000036103,"Prostin E2 800 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005401000168109,"Prostin E2 2 mg/3 g vaginal gel, 3 g syringe",20170930 +32330011000036107,"Reandron oily solution 1 g/4 mL injection, 4 mL ampoule",900000000000526001,"REPLACED BY association reference set",720571000168103,"Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule",20151031 +686411000168105,"interferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",698591000168102,"peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL syringes",20150430 +80234011000036108,"Gastrolyte orange powder for oral liquid, 5.2 g sachet",900000000000526001,"REPLACED BY association reference set",871611000168100,"Gastrolyte Orange powder for oral liquid, 5.2 g sachet",20170131 +74342011000036105,"Ipol injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839911000168108,"Ipol injection solution, 10 x 0.5 mL syringes",20161031 +181041000036100,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",835911000168105,"Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20",20161031 +73655011000036108,"Bordetella pertussis, filamentous haemagglutinin vaccine",900000000000526001,"REPLACED BY association reference set",836251000168109,"Bordetella pertussis filamentous haemagglutinin antigen",20161031 +75432011000036106,"rabies inactivated vaccine 2.5 units injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",821441000168102,"rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack",20160831 +78326011000036106,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",861951000168103,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 100",20161231 +73647011000036100,"mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",829851000168103,"mumps virus live antigen",20160930 +49267011000036100,"MSUD Express Cooler oral liquid: solution, 30 x 130 mL cans",900000000000526001,"REPLACED BY association reference set",725391000168101,"MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches",20151031 +68757011000036106,"Curash Family Oral Pain Relieving oral gel, 15 g, tube",900000000000526001,"REPLACED BY association reference set",995511000168102,"Curash Family Oral Pain Relieving oral gel, 15 g, tube",20170831 +145301000036106,"Tecfidera 120 mg capsule: modified release, 14",900000000000526001,"REPLACED BY association reference set",756251000168107,"Tecfidera 120 mg enteric capsule, 14",20160229 +74333011000036104,"Co-Phenylcaine Forte nasal spray, 15 mL",900000000000526001,"REPLACED BY association reference set",792031000168102,"Co-Phenylcaine Forte nasal spray, 15 mL",20160531 +5823011000036104,"Cerumol ear drops",900000000000526001,"REPLACED BY association reference set",854351000168107,"Cerumol ear drops",20161231 +75421011000036102,"Japanese encephalitis inactivated vaccine 6 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822631000168104,"Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe",20160831 +75377011000036100,"hepatitis B vaccine 20 microgram/mL injection, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825221000168107,"hepatitis B adult vaccine 20 microgram/mL injection, 1 mL syringe",20160930 +923387011000036105,"Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827441000168108,"Prevenar-13 injection suspension, 0.5 mL syringe",20160930 +75029011000036107,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",822961000168101,"human papillomavirus quadrivalent vaccine injection, 0.5 mL vial",20160831 +932447011000036100,"risedronate sodium 35 mg tablet [1] (&) calcium (as carbonate) 500 mg tablet [6], 1 pack",900000000000526001,"REPLACED BY association reference set",852571000168104,"risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7",20161130 +677441000168101,"fluticasone + vilanterol",900000000000526001,"REPLACED BY association reference set",861401000168109,"fluticasone furoate + vilanterol",20161231 +702621000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",837391000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial",20161031 +36899011000036107,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 5 x 2 mL vials",900000000000526001,"REPLACED BY association reference set",720791000168109,"Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials",20151031 +78105011000036100,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724291000168105,"amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL bottles",20151031 +137361000036104,"Ropivacaine Hydrochloride (Kabi)",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",711221000168102,"Ropivacaine 0.75% (Kabi)",20150831 +927915011000036101,"Oxynorm 50 mg/mL intravenous infusion injection, ampoule",900000000000526001,"REPLACED BY association reference set",1055131000168103,"Oxynorm 50 mg/mL injection solution, ampoule",20171231 +37446011000036104,"Codral Forte uncoated tablet, 50, strip pack",900000000000526001,"REPLACED BY association reference set",834621000168106,"Codral Forte uncoated tablet, 50, strip pack",20161031 +75661000036108,"risedronate sodium 35 mg enteric tablet [4] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [24 sachets], 1 pack",900000000000526001,"REPLACED BY association reference set",810331000168100,"risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack",20160630 +933221261000036107,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1004741000168104,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 100 mL bag",20170930 +80224011000036106,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",900000000000526001,"REPLACED BY association reference set",868211000168104,"Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag",20170131 +82119011000036108,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850871000168102,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules",20161130 +923468011000036101,"Forteo 20 microgram injection: solution, 2.4 mL cartridge",900000000000526001,"REPLACED BY association reference set",726951000168104,"Forteo 20 microgram/dose injection solution, 28 doses",20151031 +37632011000036100,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",720831000168103,"Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials",20151031 +56164011000036107,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 2",900000000000526001,"REPLACED BY association reference set",861421000168100,"Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2",20161231 +923445011000036104,"Omeprazole (Pharmacor) 20 mg capsule, 28",900000000000526001,"REPLACED BY association reference set",717171000168100,"Omeprazole (Pharmacor) 20 mg enteric capsule, 28",20150930 +75441011000036104,"lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 50 mL",900000000000526001,"REPLACED BY association reference set",792081000168101,"lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 50 mL",20160531 +928873011000036108,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705421000168103,"Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g, jar",20150731 +718821000168105,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection, vial",900000000000526001,"REPLACED BY association reference set",828241000168108,"Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial",20161031 +80486011000036108,"Metomax capsule, 10",900000000000526001,"REPLACED BY association reference set",867311000168108,"Metomax capsule, 10",20170131 +83622011000036100,"Clotrimazole 3 Day (Apo) 2% cream",900000000000526001,"REPLACED BY association reference set",715741000168103,"Clotrimazole 3 Day (Apo) 2% vaginal cream",20150930 +125271000036105,"Laxacon solution: powder for, sachet",900000000000526001,"REPLACED BY association reference set",674251000168106,"Laxacon powder for oral liquid, sachet",20141031 +933231781000036106,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004771000168106,"Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags",20170930 +65518011000036107,"Metformin Hydrochloride (GA) 1 g tablet",900000000000526001,"REPLACED BY association reference set",949431000168100,"Metformin Hydrochloride 1000 (GA) 1 g tablet",20170630 +923725011000036109,"Omeprazole (Pharmacor) 20 mg capsule, 100, blister pack",900000000000526001,"REPLACED BY association reference set",717071000168101,"Omeprazole (Pharmacor) 20 mg enteric capsule, 100, blister pack",20150930 +34241000036106,"colistimethate sodium 1 million units (80 mg) powder for inhalation, 30 vials",900000000000526001,"REPLACED BY association reference set",818111000168105,"colistimethate sodium 1 million units powder for inhalation, 30 vials",20160731 +74750011000036107,"Decongestant (Amcal) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083561000168109,"Decongestant (Amcal) 0.05% nasal spray, 20 mL, pump pack",20180228 +94701000036108,"Ostelin Osteoguard tablet: film-coated, 90",900000000000526001,"REPLACED BY association reference set",932981000168101,"Ostelin Osteoguard film-coated tablet, 90",20170531 +929484011000036108,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 10 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850841000168109,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules",20161130 +933220791000036101,"ropivacaine hydrochloride monohydrate 400 mg/200 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004631000168100,"ropivacaine hydrochloride 400 mg/200 mL injection, bag",20170930 +75079011000036106,"Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, vial",900000000000526001,"REPLACED BY association reference set",832191000168108,"Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial",20160930 +36929011000036106,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",850921000168106,"Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses",20161130 +60436011000036102,"Zantac 150 mg/10 mL oral liquid: solution, 280 mL, bottle",900000000000526001,"REPLACED BY association reference set",783931000168105,"Zantac 150 mg/10 mL oral liquid, 280 mL, bottle",20160531 +900821000168101,"PKU Sphere powder for oral liquid, 35 g sachet",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",922601000168103,"PKU Sphere20 Vanilla powder for oral liquid, 35 g sachet",20170430 +711991000168106,"Ropibam 0.2% 200 mg/100 mL injection solution, 100 mL bag",900000000000526001,"REPLACED BY association reference set",1005111000168101,"Ropibam 0.2% 200 mg/100 mL injection solution, 100 mL bag",20170930 +159241000036101,"Oxycontin Reformulation 80 mg modified release tablet, 28",900000000000526001,"REPLACED BY association reference set",928483011000036108,"Oxycontin 80 mg modified release tablet, 28",20170731 +5779011000036104,"Trifeme (levonorgestrel 125 microgram + ethinyloestradiol 30 microgram) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",792841000168103,"Trifeme (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet",20160531 +4978011000036106,"Codalgin uncoated tablet",900000000000526001,"REPLACED BY association reference set",836011000168102,"Codalgin uncoated tablet",20161031 +152561000036108,"Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085381000168108,"Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations, pump pack",20180228 +930837011000036103,"Actonel EC Combi (1 x Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7",900000000000526001,"REPLACED BY association reference set",852681000168102,"Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7",20161130 +711381000168107,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004521000168102,"Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +84264011000036102,"TYR Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans",900000000000526001,"REPLACED BY association reference set",724911000168108,"TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles",20151031 +75631000036102,"risedronate sodium 35 mg enteric tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 28",900000000000526001,"REPLACED BY association reference set",852701000168104,"risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28",20161130 +138781000036109,"Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",846101000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20161130 +61118011000036104,"Difflam Lozenge honey and lemon sugar free lozenge, 8, blister pack",900000000000526001,"REPLACED BY association reference set",995781000168102,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8, blister pack",20170831 +90431000036101,"dinoprostone 800 microgram/mL vaginal gel, 2.5 mL",900000000000526001,"REPLACED BY association reference set",1005391000168107,"dinoprostone 2 mg/3 g vaginal gel, 3 g syringe",20170930 +7622011000036101,"Codapane Forte uncoated tablet",900000000000526001,"REPLACED BY association reference set",835931000168100,"Codapane Forte 500/30 uncoated tablet",20161031 +75450011000036108,"Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",822571000168100,"Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack",20160831 +17865011000036106,"Aspalgin dispersible tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",834291000168106,"Aspalgin dispersible tablet, 50, blister pack",20161031 +33071011000036107,"Albey Paper Wasp Venom (paper wasp venom 550 microgram) injection: powder for, 550 microgram vial",900000000000526001,"REPLACED BY association reference set",758891000168100,"Paper Wasp Venom (Albey) (paper wasp venom 550 microgram) powder for injection, 550 microgram vial",20160229 +641031000168105,"Lucrin Depot 4-Month (inert substance) diluent, 2 mL syringe",900000000000526001,"REPLACED BY association reference set",707361000168107,"Lucrin Depot 4-Month (inert substance) diluent, 1.5 mL syringe",20150731 +48759011000036108,"Aquacel (177904) 2 g (30 cm) rope, 2 g",900000000000526001,"REPLACED BY association reference set",745111000168109,"Aquacel (177904) 2 cm x 45 cm ribbon",20160131 +69041011000036100,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g, jar",900000000000526001,"REPLACED BY association reference set",705621000168100,"Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g, jar",20150731 +73929011000036108,"Boostrix injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837641000168108,"Boostrix injection suspension, 0.5 mL syringe",20161031 +56583011000036101,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721461000168100,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL",20151031 +74717011000036100,"Adacel Polio injection suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",839721000168103,"Adacel Polio injection suspension, 5 x 0.5 mL syringes",20161031 +77388011000036105,"Centrum tablet: film-coated, 130, bottle",900000000000526001,"REPLACED BY association reference set",833331000168102,"Centrum film-coated tablet, 130, bottle",20160930 +82130011000036107,"Codalgin uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",836101000168101,"Codalgin uncoated tablet, 20",20161031 +12801011000036106,"Otocomb Otic ointment, 5 g",900000000000526001,"REPLACED BY association reference set",758371000168105,"Otocomb Otic ear ointment, 5 g",20160229 +35141011000036109,"codeine phosphate 50 mg/mL injection, 5 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",835651000168104,"codeine phosphate hemihydrate 50 mg/mL injection, 5 x 1 mL ampoules",20161031 +921856011000036109,"Macu-Vision tablet: film-coated, 30, bottle",900000000000526001,"REPLACED BY association reference set",757871000168100,"Macu-Vision film-coated tablet, 30, bottle",20160229 +73948011000036103,"Boostrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840711000168100,"Boostrix-IPV injection suspension, 0.5 mL syringe",20161031 +75061011000036102,"poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",839851000168101,"polio trivalent inactivated vaccine injection, 0.5 mL syringe",20161031 +74754011000036102,"Prevenar 16 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827571000168102,"Prevenar injection suspension, 10 x 0.5 mL syringes",20160930 +51424011000036101,"gauze and cotton tissue combine roll 9 cm x 10 m roll: wrapped pack, 1 pack",900000000000526001,"REPLACED BY association reference set",688641000168105,"gauze and cotton tissue combine roll 9 cm x 10 m wrapped pack roll, 1",20150331 +833771000168100,"somatropin + inert substance",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",21220011000036103,"inert substance",20170731 +49441011000036100,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",689171000168104,"Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll",20150331 +74952011000036101,"Varicella zoster live attenuated vaccine",900000000000526001,"REPLACED BY association reference set",830851000168105,"varicella-zoster live vaccine",20160930 +930680011000036103,"Regaine Men's Extra Strength Foam 5% foam, 3 x 63 mL",900000000000526001,"REPLACED BY association reference set",710791000168104,"Regaine Men's Extra Strength 5% foam, 3 x 63 mL",20150831 +922111011000036103,"alpha tocopherol acetate 250 mg (250 units) capsule",900000000000526001,"REPLACED BY association reference set",842781000168105,"dl-alpha-tocopheryl acetate 250 mg (250 units) capsule",20161031 +18751011000036107,"Comfarol Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835981000168104,"Comfarol Forte uncoated tablet, 20, blister pack",20161031 +6711011000036107,"Dysport 500 units injection: powder for, 500 units vial",900000000000526001,"REPLACED BY association reference set",721021000168103,"Dysport 500 units powder for injection, 500 units vial",20151031 +161361000036104,"Cardiprin 100 mg dispersible tablet, 180",900000000000526001,"REPLACED BY association reference set",804111000168103,"Cardiprin 100 mg tablet, 180",20160630 +81170011000036106,"Gastrolyte orange powder for oral liquid, 2 x 5.2 g sachets",900000000000526001,"REPLACED BY association reference set",871671000168108,"Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets",20170131 +22921011000036107,"interferon alfa-2b 60 million units/1.2 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",722821000168100,"interferon alfa-2b 60 million units/1.2 mL injection",20151031 +69741000036105,"mesalazine 1.5 g granules, sachet",900000000000526001,"REPLACED BY association reference set",1084221000168104,"mesalazine 1.5 g modified release granules, sachet",20180228 +380511000168100,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 125 mL can",900000000000526001,"REPLACED BY association reference set",724971000168100,"amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle",20151031 +46221000036108,"Remeron 30 mg tablet: orally disintegrating, 30, blister pack",900000000000526001,"REPLACED BY association reference set",783861000168109,"Remeron Soltab 30 mg orally disintegrating tablet, 30, blister pack",20160531 +91861000036104,"docosahexaenoic acid + eicosapentaenoic acid + krill oil",900000000000526001,"REPLACED BY association reference set",91931000036100,"krill oil",20170731 +933221231000036101,"ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, bag",900000000000526001,"REPLACED BY association reference set",1004681000168104,"ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, bag",20170930 +13839011000036105,"Caltrate 600 mg (calcium 600 g) tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",860331000168104,"Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120",20161231 +7595011000036105,"Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726441000168107,"Norditropin Nordiflex 15 mg/1.5 mL injection solution",20151031 +55767011000036105,"Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution, 15 mL",900000000000526001,"REPLACED BY association reference set",721331000168102,"Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL",20151031 +698401000168107,"meningococcal group B heparin binding antigen fusion protein + meningococcal group B adhesin A protein + meningococcal group B factor H binding protein fusion protein + meningococcal group B outer membrane vesicles",900000000000526001,"REPLACED BY association reference set",822761000168104,"meningococcal B 4 component vaccine",20160831 +921929011000036106,"MD-Gastroview solution, 12 x 120 mL each, bottle",900000000000526001,"REPLACED BY association reference set",696181000168106,"MD-Gastroview solution, 12 x 120 mL, bottles",20150430 +49492011000036100,"Lophlex oral liquid: powder for, 30 x 27.8 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",725181000168101,"PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets",20151031 +44099011000036103,"Zovirax 400 mg dispersible tablet, 70, blister pack",900000000000526001,"REPLACED BY association reference set",859601000168102,"Zovirax Dispersible 400 mg tablet, 70, blister pack",20161231 +84075011000036103,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",873081000168102,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag",20170131 +20628011000036105,"Creon 5000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847541000168106,"Creon 5000 enteric capsule, 100, bottle",20161130 +776511000168105,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24",900000000000526001,"REPLACED BY association reference set",996131000168109,"Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24",20170831 +48733011000036106,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688941000168102,"Hypafix (71443-1) 5 cm x 10 m tape",20150331 +46395011000036107,"lignocaine hydrochloride anhydrous 1% (200 mg/20 mL) injection, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693291000168105,"lidocaine (lignocaine) hydrochloride monohydrate 1% (200 mg/20 mL) injection, 30 x 20 mL ampoules",20150331 +53693011000036104,"Clotrimazole 3 Day (Guardian) 2% cream",900000000000526001,"REPLACED BY association reference set",715151000168100,"Clotrimazole 3 Day (Guardian) 2% vaginal cream",20150930 +33530011000036101,"Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",695391000168104,"Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 53, blister pack",20150430 +925354011000036103,"Pemzo 20 mg capsule, 7, bottle",900000000000526001,"REPLACED BY association reference set",717651000168104,"Pemzo 20 mg enteric capsule, 7, bottle",20150930 +653571000168104,"Retinofluor",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721151000168105,"Retinofluor 10%",20151031 +713351000168101,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005431000168102,"Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +163691000036103,"Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",726681000168104,"Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose",20151031 +931845011000036104,"meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826691000168104,"meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, syringe",20160930 +828341000168102,"Menitorix (Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram) powder for injection, vial",900000000000526001,"REPLACED BY association reference set",846061000168103,"Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial",20161130 +653331000168107,"Molaxole solution: powder for, 8 sachets",900000000000526001,"REPLACED BY association reference set",674241000168109,"Molaxole powder for oral liquid, 8 sachets",20141031 +87911000036104,"Prostin E2 800 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005381000168109,"Prostin E2 2 mg/3 g vaginal gel, 3 g syringe",20170930 +74250011000036104,"Gardasil injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823101000168108,"Gardasil injection suspension, 10 x 0.5 mL syringes",20160831 +925729011000036102,"Valtrex 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1009681000168100,"Valtrex-1000 1 g film-coated tablet",20170930 +77335011000036109,"Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695291000168109,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles",20150430 +702641000168101,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837411000168107,"Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials",20161031 +33244011000036100,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack",900000000000526001,"REPLACED BY association reference set",707301000168106,"Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack",20150731 +74881011000036108,"Tripacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837611000168109,"Tripacel injection suspension, 5 x 0.5 mL vials",20161031 +53687011000036107,"Anti Fungal V 6 Day (Amcal) 1% cream",900000000000526001,"REPLACED BY association reference set",714931000168105,"Anti Fungal V 6 Day (Amcal) 1% vaginal cream",20150930 +933225771000036109,"ropivacaine hydrochloride monohydrate 100 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005001000168103,"ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules",20170930 +141541000036101,"lanreotide 90 mg injection, syringe",900000000000526001,"REPLACED BY association reference set",819511000168108,"lanreotide 90 mg/0.5 mL injection, syringe",20160731 +37412011000036105,"Codral Forte uncoated tablet, 20, strip pack",900000000000526001,"REPLACED BY association reference set",834571000168108,"Codral Forte uncoated tablet, 20, strip pack",20161031 +85194011000036105,"alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",843091000168100,"dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30",20161031 +18904011000036109,"Tenopt 0.25% eye drops solution, 5 mL, puffer pack",900000000000526001,"REPLACED BY association reference set",948441000168103,"Tenopt 0.25% eye drops solution, 5 mL, bottle",20170630 +170401000168100,"MSUD Cooler 20 oral liquid: solution, 174 mL sachet",900000000000526001,"REPLACED BY association reference set",725341000168109,"MSUD Cooler 20 oral liquid solution, 174 mL pouch",20151031 +734121000168102,"Centavite Adult tablet: film-coated, 30",900000000000526001,"REPLACED BY association reference set",842931000168106,"Centavite Adult film-coated tablet, 30",20161031 +75411011000036109,"hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",824721000168101,"hepatitis A adult vaccine 1440 ELISA units/mL injection, 10 x 1 mL vials",20160930 +81054011000036107,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",863871000168103,"Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag",20170131 +50517011000036104,"Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694131000168104,"Leukosilk (1024) 5 cm x 5 m tape, 1 roll, carton",20150331 +929747011000036104,"aluminium sulfate hydrate 98.6% stick, 5 g",900000000000526001,"REPLACED BY association reference set",846161000168104,"aluminium sulfate 98.6% stick, 5 g",20161130 +80176011000036100,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",900000000000526001,"REPLACED BY association reference set",863671000168102,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag",20170131 +29251000036105,"Typhim Vi 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827211000168108,"Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes",20160930 +76122011000036106,"Invite E High Potency Vitamin E 96% oil",900000000000526001,"REPLACED BY association reference set",842741000168100,"Invite E High Potency Vitamin E 96% oil",20161031 +74809011000036108,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824991000168102,"Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +931676011000036101,"Actonel EC Combi (4 x Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack",900000000000526001,"REPLACED BY association reference set",852721000168108,"Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack",20161130 +75503011000036100,"diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",837651000168105,"diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe",20161031 +20538011000036101,"Granocyte 33.6 million units (263 microgram) powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",838281000168101,"Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial",20161031 +761811000168107,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",833851000168104,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack",20160930 +137921000036107,"Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005931000168109,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag",20170930 +81619011000036105,"glucose 5% (12.5 g/250 mL) injection, 40 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863801000168108,"glucose monohydrate 5% (12.5 g/250 mL) injection, 40 x 250 mL bags",20170131 +12059011000036100,"Nemdyn Otic ointment, 10 g",900000000000526001,"REPLACED BY association reference set",689861000168100,"Nemdyn Otic ear ointment, 10 g",20150331 +74773011000036101,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825411000168104,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials",20160930 +84617011000036109,"magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 200",900000000000526001,"REPLACED BY association reference set",750251000168109,"magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 200",20160131 +71771000036107,"Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 60",900000000000526001,"REPLACED BY association reference set",862101000168109,"Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60",20161231 +89861000036104,"Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial",900000000000526001,"REPLACED BY association reference set",730031000168106,"Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial",20151130 +54286011000036109,"Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721401000168101,"Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution",20151031 +44516011000036106,"Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations, bottle",900000000000526001,"REPLACED BY association reference set",1085271000168102,"Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations, pump pack",20180228 +81167011000036101,"Gastrolyte natural powder for oral liquid, 10 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871881000168105,"Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets",20170131 +141521000036109,"lanreotide 120 mg injection, syringe",900000000000526001,"REPLACED BY association reference set",819381000168109,"lanreotide 120 mg/0.5 mL injection, syringe",20160731 +83639011000036107,"Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845581000168106,"Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device",20161130 +67312011000036108,"Cepacol Antibacterial Honey and Lemon lozenge, 16",900000000000526001,"REPLACED BY association reference set",995061000168108,"Cepacol Antibacterial Honey and Lemon lozenge, 16",20170831 +734111000168109,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 30",900000000000526001,"REPLACED BY association reference set",842921000168108,"betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 30",20161031 +69475011000036105,"Panadol Children's 7+ Years 250 mg tablet: soluble, 16, strip pack",900000000000526001,"REPLACED BY association reference set",721601000168104,"Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16, strip pack",20151031 +680621000168102,"Zaldiar Combination Therapy film-coated tablet, 20",900000000000526001,"REPLACED BY association reference set",1027831000168101,"Zaldiar film-coated tablet, 20",20171031 +687561000168107,"azelastine + fluticasone",900000000000526001,"REPLACED BY association reference set",861271000168103,"azelastine + fluticasone propionate",20161231 +921874011000036103,"Centrum Select 50 Plus tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",843281000168109,"Centrum Select 50 Plus film-coated tablet, 60, bottle",20161031 +815041000168104,"Entrip 10 mg tablet, 1000, bottle",900000000000526001,"REPLACED BY association reference set",856651000168108,"Entrip 10 mg film-coated tablet, 1000, bottle",20161231 +19911011000036106,"Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722811000168107,"Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL, injection device",20151031 +71952011000036109,"benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 16",900000000000526001,"REPLACED BY association reference set",995181000168103,"benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 16",20170831 +688821000168100,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack",900000000000526001,"REPLACED BY association reference set",831071000168103,"Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack",20160930 +71411000036105,"mesalazine 1.5 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084271000168103,"mesalazine 1.5 g modified release granules, 100 sachets",20180228 +75393011000036100,"Varicella zoster live attenuated vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",831801000168104,"varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack",20160930 +82423011000036100,"Ungvita 0.054% ointment, 50 g, tube",900000000000526001,"REPLACED BY association reference set",695011000168106,"Ungvita 0.099% ointment, 50 g, tube",20150430 +80235011000036107,"Gastrolyte fruit powder for oral liquid, 4.9 g sachet",900000000000526001,"REPLACED BY association reference set",871791000168103,"Gastrolyte Fruit powder for oral liquid, 4.9 g sachet",20170131 +12378011000036109,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20",900000000000526001,"REPLACED BY association reference set",834821000168105,"Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20",20161031 +921410011000036105,"Macu-Vision tablet: film-coated, 90",900000000000526001,"REPLACED BY association reference set",757921000168109,"Macu-Vision film-coated tablet, 90",20160229 +711341000168102,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1004561000168107,"Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +140841000036106,"Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005951000168103,"Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +74957011000036104,"rotavirus pentavalent live reassortant oral vaccine",900000000000526001,"REPLACED BY association reference set",822451000168108,"rotavirus pentavalent live vaccine",20160831 +84076011000036105,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",873141000168106,"Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags",20170131 +689731000168101,"Kenacomb Otic ear ointment",900000000000526001,"REPLACED BY association reference set",758271000168102,"Kenacomb Otic ear ointment",20160229 +78250011000036103,"iopromide 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",695071000168103,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 10 mL vials",20150430 +31431000036103,"Typherix 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827141000168104,"Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes",20160930 +653611000168108,"Retinofluor 500 mg/5 mL injection: solution, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",721171000168101,"Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials",20151031 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",825991000168103,"Streptococcus pneumoniae type 19A conjugate antigen",20160930 +923904011000036105,"Omeprazole (Pharmacor) 20 mg capsule, 50, bottle",900000000000526001,"REPLACED BY association reference set",717291000168107,"Omeprazole (Pharmacor) 20 mg enteric capsule, 50, bottle",20150930 +25961000036104,"typhoid fever polysaccharide vaccine",900000000000526001,"REPLACED BY association reference set",826221000168103,"Salmonella typhi inactivated antigen",20160930 +108691000036109,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20",900000000000526001,"REPLACED BY association reference set",1056191000168107,"Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20",20171231 +933241741000036101,"Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728091000168109,"Ovidrel 250 microgram/0.5 mL injection solution, dose",20151031 +711531000168101,"Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004941000168101,"Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule",20170930 +61521000036109,"Hepasol oral liquid: solution, 10 mL",900000000000526001,"REPLACED BY association reference set",688121000168105,"Hepasol oral liquid solution, 10 mL",20150331 +727991000168107,"fluoxetine 20 mg dispersible tablet, 7",900000000000526001,"REPLACED BY association reference set",844761000168108,"fluoxetine 20 mg tablet, 7",20161031 +836161000168100,"calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872311000168104,"icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag",20170131 +75119011000036109,"inert substance powder for oral liquid, 5.6 g sachet",900000000000526001,"REPLACED BY association reference set",821891000168107,"inert substance effervescent granules, 5.6 g sachet",20160831 +53707011000036104,"Cepacol Plus with Anaesthetic Original Flavour lozenge",900000000000526001,"REPLACED BY association reference set",995431000168108,"Cepacol Plus with Anaesthetic Original Flavour lozenge",20170831 +77391011000036102,"Centrum tablet: film-coated, 200, bottle",900000000000526001,"REPLACED BY association reference set",833421000168105,"Centrum film-coated tablet, 200, bottle",20160930 +64894011000036109,"prefilled injection device",900000000000526001,"REPLACED BY association reference set",686781000168106,"injection device",20170331 +76581011000036104,"Sorbilax 1 mL/mL oral liquid: solution, 500 mL",900000000000526001,"REPLACED BY association reference set",690661000168108,"Sorbilax 70% non-crystallising oral liquid solution, 500 mL",20150331 +41219011000036102,"Voluven 6% / 0.9% injection solution, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",1013451000168109,"Voluven injection solution, 10 x 500 mL bags",20170930 +726881000168100,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 60 doses, injection device",900000000000526001,"REPLACED BY association reference set",881181000168105,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device",20170228 +73665011000036102,"rabies inactivated vaccine",900000000000526001,"REPLACED BY association reference set",820591000168100,"rabies virus antigen",20160831 +74925011000036108,"Infanrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840821000168101,"Infanrix-IPV injection suspension, 0.5 mL syringe",20161031 +76824011000036107,"Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",861771000168105,"Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100",20161231 +44100011000036103,"Zovirax 200 mg dispersible tablet, 25, bottle",900000000000526001,"REPLACED BY association reference set",859201000168100,"Zovirax Dispersible 200 mg tablet, 25, bottle",20161231 +700028641000036109,"Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",810411000168101,"Actonel Combi D effervescent granules, 24 sachets",20160630 +827961000168103,"Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846011000168101,"meningococcal C conjugate vaccine injection, 20 x 0.5 mL syringes",20161130 +55823011000036106,"Anti Fungal V 3 Day (Amcal) 2% cream, 20 g",900000000000526001,"REPLACED BY association reference set",714901000168103,"Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g",20150930 +86869011000036100,"Calcia plus Vitamin D 200 IU chewable tablet, 120, bottle",900000000000526001,"REPLACED BY association reference set",860111000168106,"Calcia plus Vitamin D 200 IU chewable tablet, 120, bottle",20161231 +61270011000036107,"Clotrimazole 3 Day Treatment (Pharmacist) 2% cream, 20 g, tube",900000000000526001,"REPLACED BY association reference set",715701000168100,"Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g, tube",20150930 +78256011000036100,"iopromide 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695681000168108,"iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 75 mL bottles",20150430 +923757011000036100,"Omeprazole (Pharmacor) 20 mg capsule, 280, blister pack",900000000000526001,"REPLACED BY association reference set",717211000168103,"Omeprazole (Pharmacor) 20 mg enteric capsule, 280, blister pack",20150930 +921518011000036104,"Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 10 x 20 mL vials",900000000000526001,"REPLACED BY association reference set",695131000168100,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials",20150430 +67177011000036107,"Microshield Handrub solution, 125 mL",900000000000526001,"REPLACED BY association reference set",767671000168107,"Microshield Handrub solution, 125 mL",20160331 +13157011000036107,"Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722851000168108,"Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL",20151031 +77306011000036105,"X-Evess (1 x 500 mL oral liquid, 1 x 500 mL oral liquid), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",703131000168108,"X-Evess (1 x 500 mL Part-1 oral liquid bottle, 1 x 500 mL Part-2 oral liquid bottle), 1 pack",20150531 +141771000036104,"Somatuline Autogel 120 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819411000168107,"Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +86632011000036106,"Calcia plus Vitamin D 400 IU chewable tablet",900000000000526001,"REPLACED BY association reference set",860131000168101,"Calcia plus Vitamin D 400 IU chewable tablet",20161231 +50933011000036109,"dressing hydrofibre alternate to alginates 2 g (30 cm) rope, 2 g",900000000000526001,"REPLACED BY association reference set",745011000168105,"dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon",20160131 +50217011000036106,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",688971000168109,"Hypafix (71443-1) 5 cm x 10 m tape, 1 roll, carton",20150331 +82766011000036108,"Synflorix 16 microgram injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",827651000168107,"Synflorix injection suspension, 10 x 0.5 mL syringes",20160930 +44074011000036107,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693361000168107,"Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules",20150331 +74791011000036109,"Flo Xylo-Pos 0.1% nasal spray, 15 mL, bottle",900000000000526001,"REPLACED BY association reference set",1085331000168107,"Flo Xylo-Pos 0.1% nasal spray, 15 mL, pump pack",20180228 +711761000168102,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005551000168109,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +815141000168100,"Entrip 25 mg tablet, 1000",900000000000526001,"REPLACED BY association reference set",856751000168104,"Entrip 25 mg film-coated tablet, 1000",20161231 +925337011000036108,"Omepro 20 mg capsule, 5, bottle",900000000000526001,"REPLACED BY association reference set",716631000168108,"Omepro 20 mg enteric capsule, 5, bottle",20150930 +76135011000036101,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872041000168102,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe",20170131 +20994011000036108,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge",900000000000526001,"REPLACED BY association reference set",1041431000168107,"Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device",20171130 +36898011000036104,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 10 x 5 mL vials",900000000000526001,"REPLACED BY association reference set",720821000168101,"Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials",20151031 +71431000036101,"mesalazine 1.5 g granules, 60 sachets",900000000000526001,"REPLACED BY association reference set",1084241000168105,"mesalazine 1.5 g modified release granules, 60 sachets",20180228 +927706011000036100,"Immucyst 1920 million CFU powder for injection, 1 vial",900000000000526001,"REPLACED BY association reference set",1045971000168100,"Immucyst 81 mg powder for injection, 1 vial",20171130 +71684011000036105,"calcium gluconate monohydrate 10% (1 g/10 mL) injection, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",684671000168108,"calcium gluconate monohydrate 953 mg/10 mL injection, 10 x 10 mL vials",20150131 +57061011000036101,"Difflam Lozenge honey and lemon sugar free lozenge, 8",900000000000526001,"REPLACED BY association reference set",995771000168100,"Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8",20170831 +728671000168101,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005721000168109,"Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 10 mL ampoule",20170930 +20411011000036106,"Keppra 1 g tablet: film-coated, 60, blister pack",900000000000526001,"REPLACED BY association reference set",721071000168102,"Keppra-1000 1 g film-coated tablet, 60, blister pack",20151031 +729891000168105,"Citracal Plus D tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",860001000168109,"Citracal Plus D film-coated tablet, 100",20161231 +827921000168108,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845981000168103,"NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe",20161130 +924201011000036106,"pancreatic extract 5000 units/100 mg enteric coated granules, 20 g",900000000000526001,"REPLACED BY association reference set",847161000168102,"lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules, 20 g",20161130 +85340011000036101,"Levetiracetam (Terry White Chemists) 1 g tablet",900000000000526001,"REPLACED BY association reference set",1003751000168100,"Levetiracetam 1000 (Terry White Chemists) 1 g tablet",20170930 +74240011000036101,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials",900000000000526001,"REPLACED BY association reference set",825371000168100,"Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials",20160930 +23375011000036106,"omeprazole 20 mg capsule",900000000000526001,"REPLACED BY association reference set",75861000036107,"omeprazole 20 mg enteric capsule",20150930 +80654011000036109,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",900000000000526001,"REPLACED BY association reference set",868451000168102,"Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag",20170131 +28231000036107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725041000168107,"amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 125 mL pouches",20151031 +669521000168105,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728881000168104,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge",20151130 +933195891000036105,"Calcium (Alphapharm) 500 mg tablet: film-coated",900000000000526001,"REPLACED BY association reference set",852561000168105,"Calcium (Alphapharm) 1.25 g (calcium 500 mg) film-coated tablet",20161130 +33069011000036103,"Albey Bee Venom (bee venom 550 microgram) injection: powder for, 550 microgram vial",900000000000526001,"REPLACED BY association reference set",758811000168109,"Bee Venom (Albey) (honey bee venom 550 microgram) powder for injection, 550 microgram vial",20160229 +70232011000036103,"cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge",900000000000526001,"REPLACED BY association reference set",995341000168106,"cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge",20170831 +761191000168107,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 2",900000000000526001,"REPLACED BY association reference set",851061000168105,"diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 2",20161130 +63722011000036109,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2",900000000000526001,"REPLACED BY association reference set",995651000168100,"benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 2",20170831 +933244431000036104,"Panamax Co uncoated tablet, 40",900000000000526001,"REPLACED BY association reference set",836051000168101,"Panamax Co uncoated tablet, 40",20161031 +172401000036108,"Fosamax Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",848631000168104,"Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack",20161130 +22456011000036101,"codeine phosphate 30 mg tablet",900000000000526001,"REPLACED BY association reference set",834691000168108,"codeine phosphate hemihydrate 30 mg tablet",20161031 +32701000036106,"colistimethate sodium 1 million units (80 mg) powder for inhalation, vial",900000000000526001,"REPLACED BY association reference set",818091000168102,"colistimethate sodium 1 million units powder for inhalation, vial",20160731 +86415011000036109,"oestradiol valerate 3 mg tablet [6] (&) dienogest 2 mg + oestradiol valerate 2 mg tablet [15] (&) dienogest 3 mg + oestradiol valerate 2 mg tablet [51] (&) oestradiol valerate 1 mg tablet [6] (&) inert substance tablet [6], 1 pack",900000000000526001,"REPLACED BY association reference set",684281000168109,"estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28",20150131 +9101000036109,"Clinoleic 20% injection: emulsion, 10 x 500 mL bags",900000000000526001,"REPLACED BY association reference set",771991000168103,"Clinoleic 20% injection emulsion, 10 x 500 mL bags",20160430 +74757011000036108,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe",900000000000526001,"REPLACED BY association reference set",825241000168101,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe",20160930 +80647011000036100,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872651000168106,"Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags",20170131 +82212011000036101,"Ungvita 0.054% ointment, 50 g",900000000000526001,"REPLACED BY association reference set",695001000168108,"Ungvita 0.099% ointment, 50 g",20150430 +28221000036105,"TYR Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets",900000000000526001,"REPLACED BY association reference set",725051000168109,"TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches",20151031 +61997011000036103,"benzydamine hydrochloride 1% + cetylpyridinium chloride monohydrate 0.1% oral gel",900000000000526001,"REPLACED BY association reference set",995931000168101,"benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel",20170831 +45258011000036104,"disulfiram 200 mg tablet",900000000000526001,"REPLACED BY association reference set",796251000168101,"disulfiram 200 mg effervescent tablet",20160630 +81044011000036109,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags",900000000000526001,"REPLACED BY association reference set",863791000168107,"Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags",20170131 +56351000036108,"Valvala 1 g film-coated tablet, 21, blister pack",900000000000526001,"REPLACED BY association reference set",1009761000168101,"Valvala-1000 1 g film-coated tablet, 21, blister pack",20170930 +8231000168108,"Clozole Vaginal Cream (Chemists' Own)",900000000000526001,"REPLACED BY association reference set",53325011000036101,"Clozole (Chemists' Own)",20150930 +923446011000036106,"Omeprazole (Pharmacor) 20 mg capsule, 30",900000000000526001,"REPLACED BY association reference set",717221000168105,"Omeprazole (Pharmacor) 20 mg enteric capsule, 30",20150930 +6470011000036100,"Creon Forte 25 000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847561000168105,"Creon Forte enteric capsule",20161130 +761271000168100,"Lomotil uncoated tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",851161000168109,"Lomotil uncoated tablet, 100, blister pack",20161130 +85705011000036104,"Levetiracetam (Apo) 1 g tablet, 400",900000000000526001,"REPLACED BY association reference set",1003211000168105,"Levetiracetam 1000 (Apo) 1 g tablet, 400",20170930 +73054011000036102,"Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes",900000000000526001,"REPLACED BY association reference set",781281000168100,"Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes",20160430 +923459011000036104,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24",900000000000526001,"REPLACED BY association reference set",996011000168103,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24",20170831 +75476011000036108,"Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",832301000168104,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial",20160930 +63246011000036100,"miconazole 2% oral gel, 15 g",900000000000526001,"REPLACED BY association reference set",817991000168104,"miconazole 2% oral gel, 15 g",20160731 +101381000036105,"Irbesartan (Apo) 75 mg tablet, 30",900000000000526001,"REPLACED BY association reference set",807751000168109,"Irbesartan (Apo) 75 mg film-coated tablet, 30",20160630 +75468011000036104,"Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837591000168104,"diphtheria + tetanus + pertussis 5 component child vaccine injection, 5 x 0.5 mL vials",20161031 +5688011000036108,"Canesten Clotrimazole Thrush Treatment 3 Day 2% cream",900000000000526001,"REPLACED BY association reference set",715031000168105,"Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream",20150930 +74238011000036103,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825341000168107,"Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial",20160930 +74762011000036101,"Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083581000168100,"Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL, pump pack",20180228 +98911000036102,"Irbesartan (Apo) 300 mg tablet",900000000000526001,"REPLACED BY association reference set",807801000168103,"Irbesartan (Apo) 300 mg film-coated tablet",20160630 +34884011000036103,"codeine phosphate 5 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",52247011000036107,"codeine phosphate hemihydrate 5 mg/mL oral liquid",20161031 +50502011000036104,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",694211000168104,"Mefix (310250) 2.5 cm x 10 m tape, 1 roll, carton",20150331 +41469011000036102,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution, 100 mL",900000000000526001,"REPLACED BY association reference set",835521000168108,"Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL",20161031 +75531011000036108,"measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack",900000000000526001,"REPLACED BY association reference set",831081000168100,"measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack",20160930 +19577011000036101,"Etopophos 100 mg injection: powder for, 1 vial",900000000000526001,"REPLACED BY association reference set",793441000168106,"Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial",20160531 +925661011000036101,"Medi Creme cream",900000000000526001,"REPLACED BY association reference set",863451000168109,"Medi Creme cream",20170131 +679511000168108,"botulinum toxin type A 200 units injection, vial",900000000000526001,"REPLACED BY association reference set",720931000168107,"botulinum toxin type A 200 units injection, vial",20151031 +56707011000036108,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24",900000000000526001,"REPLACED BY association reference set",996291000168100,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24",20170831 +933220861000036103,"Naropin 0.75% (150 mg/20 mL) injection: solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004891000168102,"Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule",20170930 +9011000036105,"olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771701000168106,"olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 100 mL bag",20160430 +71741000036100,"calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 100",900000000000526001,"REPLACED BY association reference set",862031000168103,"calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 100",20161231 +68800011000036100,"Cepacol Mint 0.05% mouthwash, 500 mL, bottle",900000000000526001,"REPLACED BY association reference set",995331000168102,"Cepacol Mint 0.05% mouthwash, 500 mL, bottle",20170831 +713331000168107,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags",900000000000526001,"REPLACED BY association reference set",1005471000168104,"Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags",20170930 +17461000168103,"Clotrimazole Vaginal Cream (Your Pharmacy)",900000000000526001,"REPLACED BY association reference set",53455011000036108,"Clotrimazole (Your Pharmacy)",20150930 +74233011000036108,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822491000168103,"Rotateq oral liquid, 2 mL tube",20160831 +84440011000036101,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g + ascorbic acid 17.88 g powder for oral liquid, 210 g sachet",900000000000526001,"REPLACED BY association reference set",901111000168109,"macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet",20170331 +60729011000036103,"Difflam Mouth oral gel, 10 g, tube",900000000000526001,"REPLACED BY association reference set",995971000168103,"Difflam Mouth oral gel, 10 g, tube",20170831 +473491000168102,"amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL can",900000000000526001,"REPLACED BY association reference set",724051000168108,"amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL pouch",20151031 +76162011000036100,"Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 100 mL vial",900000000000526001,"REPLACED BY association reference set",695261000168102,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 100 mL bottle",20150430 +65496011000036104,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",900000000000526001,"REPLACED BY association reference set",871991000168101,"Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag",20170131 +74731011000036104,"Gardasil injection suspension, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823111000168106,"Gardasil injection suspension, 10 x 0.5 mL syringes",20160831 +922540011000036106,"ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 45",900000000000526001,"REPLACED BY association reference set",829771000168104,"thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 45",20160930 +71361000036103,"Byetta 5 microgram/0.02 mL injection: solution, 60 x 0.02 mL unit doses",900000000000526001,"REPLACED BY association reference set",726781000168109,"Byetta 5 microgram/dose injection solution, 60 doses",20151031 +17951011000036106,"Dymadon Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835791000168103,"Dymadon Forte uncoated tablet, 20, blister pack",20161031 +6843011000036104,"Clofeme Thrush Treatment 3 Day 2% cream",900000000000526001,"REPLACED BY association reference set",715091000168109,"Clofeme Thrush Treatment 3 Day 2% vaginal cream",20150930 +38569011000036100,"aspirin 325 mg + codeine phosphate 30 mg tablet, 4",900000000000526001,"REPLACED BY association reference set",834411000168101,"aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 4",20161031 +38815011000036102,"lignocaine hydrochloride anhydrous 4% + fluorescein sodium 0.25% eye drops, 20 x 0.5 mL unit doses",900000000000526001,"REPLACED BY association reference set",861701000168100,"lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose, 20 x 0.5 mL unit doses",20161231 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826111000168100,"Streptococcus pneumoniae type 1 conjugate antigen",20160930 +665021000168101,"Codeine Phosphate (Aspen) 30 mg uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",834911000168109,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20, blister pack",20161031 +86192011000036103,"magnesium + citric acid",900000000000526001,"REPLACED BY association reference set",870891000168103,"magnesium carbonate + citric acid",20170131 +85644011000036104,"Qlaira, 84 tablets [3 x 28], blister pack",900000000000526001,"REPLACED BY association reference set",684291000168107,"Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28",20150131 +669501000168101,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",728861000168108,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge",20151130 +923901011000036107,"Omeprazole (Pharmacor) 20 mg capsule, 28, bottle",900000000000526001,"REPLACED BY association reference set",717191000168104,"Omeprazole (Pharmacor) 20 mg enteric capsule, 28, bottle",20150930 +921086011000036103,"Recombinate 250 IU (octocog alfa 250 international units) injection: powder for, vial",900000000000526001,"REPLACED BY association reference set",710861000168102,"Recombinate (octocog alfa 250 units) powder for injection, 250 units vial",20150831 +76117011000036104,"Agiolax granules",900000000000526001,"REPLACED BY association reference set",832441000168109,"Agiolax granules",20160930 +56585011000036100,"Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721481000168109,"Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL",20151031 +708481000168105,"Kenacomb Otic ear drops: solution, 7.5 mL",900000000000526001,"REPLACED BY association reference set",758341000168103,"Kenacomb Otic ear drops solution, 7.5 mL",20160229 +665001000168105,"Codeine Phosphate (Aspen) 30 mg uncoated tablet",900000000000526001,"REPLACED BY association reference set",834701000168108,"Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet",20161031 +71697011000036103,"benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture, 25 mL",900000000000526001,"REPLACED BY association reference set",688411000168109,"benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 25 mL",20150331 +34379011000036105,"Subutex 2 mg tablet, 100",900000000000526001,"REPLACED BY association reference set",685681000168107,"Subutex 2 mg sublingual tablet, 100",20150228 +76123011000036104,"Compound Benzoin Tincture Friar's Balsam (Orion) solution",900000000000526001,"REPLACED BY association reference set",696411000168106,"Compound Benzoin Friar's Balsam (Orion) tincture (Old Formulation 2010)",20150430 +81294011000036107,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",868201000168102,"glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag",20170131 +78309011000036105,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 14",900000000000526001,"REPLACED BY association reference set",833071000168102,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 14",20160930 +25721000168103,"Fluoride Tyranna Grape (Laclede)",900000000000526001,"REPLACED BY association reference set",932331000168103,"Fluoride (Laclede)",20170531 +81293011000036105,"sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, bag",900000000000526001,"REPLACED BY association reference set",872511000168109,"sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, bag",20170131 +900051011000036109,"Voltaren Emulgel 1% gel, 100 g, tube",900000000000526001,"REPLACED BY association reference set",1037021000168106,"Voltaren Emulgel 1.16% gel, 100 g, tube",20171130 +84088011000036104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",900000000000526001,"REPLACED BY association reference set",872491000168104,"Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag",20170131 +686391000168105,"interferon beta-1a 125 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",698571000168103,"peginterferon beta-1a 125 microgram/0.5 mL injection, syringe",20150430 +638501000168104,"Albey Venom Albumin Saline (inert substance) diluent, 9 mL vial",900000000000526001,"REPLACED BY association reference set",758821000168102,"Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial",20160229 +7094011000036109,"Creon 5000 units modified release capsule",900000000000526001,"REPLACED BY association reference set",847511000168107,"Creon 5000 enteric capsule",20161130 +65811000036101,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20, tube",900000000000526001,"REPLACED BY association reference set",871741000168106,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20, tube",20170131 +66584011000036100,"Ringworm 1% ointment, 15 g",900000000000526001,"REPLACED BY association reference set",800421000168106,"Ringworm (Amneal) 1% ointment, 15 g",20160630 +63231000036105,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20",900000000000526001,"REPLACED BY association reference set",871731000168102,"Rehydration Formula Effervescent (Amcal) effervescent tablet, 20",20170131 +716141000168105,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",826731000168106,"Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack",20160930 +669541000168104,"Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 5 x 1.5 mL cartridges",900000000000526001,"REPLACED BY association reference set",728891000168101,"Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges",20151130 +38025011000036109,"lignocaine hydrochloride anhydrous 4% + fluorescein sodium 0.25% eye drops, unit dose",900000000000526001,"REPLACED BY association reference set",861681000168103,"lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose",20161231 +933225851000036108,"ropivacaine hydrochloride monohydrate 20 mg/10 mL injection, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004501000168106,"ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules",20170930 +19637011000036109,"Minirin 10 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1082981000168100,"Minirin 10 microgram/actuation nasal spray, 60 actuations, pump pack",20180228 +82650011000036109,"pneumococcal 10 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826051000168103,"Streptococcus pneumoniae type 14 conjugate antigen",20160930 +711071000168106,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005991000168108,"Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +933231251000036107,"Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726531000168104,"Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL, injection device",20151031 +703281000168102,"meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",828051000168102,"meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20160930 +44966011000036103,"pentastarch + sodium chloride",900000000000526001,"REPLACED BY association reference set",1013381000168105,"hydroxyethyl starch 130/0.4 + sodium chloride",20170930 +82190011000036103,"Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 100",900000000000526001,"REPLACED BY association reference set",860371000168101,"Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100",20161231 +684471000168105,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 10 x 5 mL ampoules",900000000000526001,"REPLACED BY association reference set",693491000168109,"Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules",20150331 +94221000036107,"Ostelin Vitamin D and Calcium chewable tablet, 60",900000000000526001,"REPLACED BY association reference set",861911000168104,"Ostelin Vitamin D and Calcium chewable tablet, 60",20161231 +833781000168102,"somatropin 400 microgram/dose + inert substance injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",975141000168104,"somatropin 400 microgram injection, syringe",20170731 +81288011000036101,"calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, bag",900000000000526001,"REPLACED BY association reference set",867961000168105,"glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag",20170131 +2621000036103,"Clinoleic 20% injection: emulsion, 100 mL bag",900000000000526001,"REPLACED BY association reference set",771691000168106,"Clinoleic 20% injection emulsion, 100 mL bag",20160430 +49487011000036104,"HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724111000168106,"HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches",20151031 +83476011000036102,"triglycerides long chain with glucose polymer oral liquid, 6 x 1 L bottles",900000000000526001,"REPLACED BY association reference set",745391000168103,"triglycerides long chain with glucose polymer oral liquid, 6 x 1 L cartons",20160131 +41583011000036108,"Zovirax 400 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",859561000168102,"Zovirax Dispersible 400 mg tablet, 100",20161231 +66455011000036100,"Cepacol Mint 0.05% mouthwash, 150 mL",900000000000526001,"REPLACED BY association reference set",995301000168109,"Cepacol Mint 0.05% mouthwash, 150 mL",20170831 +933231861000036106,"Fluoride Koala Berry (Laclede) foam, 165 mL, aerosol can",900000000000526001,"REPLACED BY association reference set",932651000168101,"Fluoride (Laclede) Koala Berry Flavour foam, 165 mL, aerosol can",20170531 +62065011000036102,"benzydamine hydrochloride 0.15% spray",900000000000526001,"REPLACED BY association reference set",721251000168103,"benzydamine hydrochloride 0.15% oral spray",20151031 +728751000168101,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005801000168107,"Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +687951000168104,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825051000168107,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +75524011000036109,"meningococcal group C conjugate vaccine 10 microgram injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",900000000000526001,"REPLACED BY association reference set",826481000168100,"meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack",20160930 +101141000036103,"Victoza 18 mg/3 mL injection: solution, 2 x 3 mL cartridges",900000000000526001,"REPLACED BY association reference set",748081000168108,"Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices",20160131 +17935011000036109,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",1041151000168109,"Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device",20171130 +54098011000036100,"Disprin Original 300 mg dispersible tablet",900000000000526001,"REPLACED BY association reference set",804211000168108,"Disprin Original 300 mg tablet",20160630 +711321000168108,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004621000168103,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +27582011000036101,"interferon alfa-2b 60 million units/1.2 mL injection, 1.2 mL cartridge",900000000000526001,"REPLACED BY association reference set",722841000168106,"interferon alfa-2b 60 million units/1.2 mL injection, 1.2 mL",20151031 +70441000036102,"Salofalk 1 g granules, sachet",900000000000526001,"REPLACED BY association reference set",1084131000168106,"Salofalk 1 g modified release granules, sachet",20180228 +76751011000036108,"Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 10 x 100 mL vials",900000000000526001,"REPLACED BY association reference set",695281000168106,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles",20150430 +6901011000036100,"Keppra 1 g tablet: film-coated",900000000000526001,"REPLACED BY association reference set",720981000168108,"Keppra-1000 1 g film-coated tablet",20151031 +929485011000036107,"Styptic Pencil (Covidien) 98.6% stick, 5 g",900000000000526001,"REPLACED BY association reference set",846171000168105,"Styptic Pencil (Covidien) 98.6% stick, 5 g",20161130 +933196061000036100,"Levetiracetam (GH) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003381000168108,"Levetiracetam 1000 (GH) 1 g film-coated tablet",20170930 +922898011000036100,"pneumococcal 13 valent polysaccharide conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826041000168100,"Streptococcus pneumoniae type 18C conjugate antigen",20160930 +716071000168104,"meningococcal group A conjugate vaccine 10 microgram injection [1 vial] (&) meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 vial], 1 pack",900000000000526001,"REPLACED BY association reference set",826781000168107,"meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack",20160930 +84310011000036103,"Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",845611000168104,"Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device",20161130 +733451000168104,"Epipen Auto-Injector 300 microgram/0.3 mL injection, 1 dose, injection device",900000000000526001,"REPLACED BY association reference set",881181000168105,"Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device",20170228 +923840011000036100,"Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial",900000000000526001,"REPLACED BY association reference set",891141000168104,"Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial",20170331 +19270011000036108,"Livostin 0.05% nasal spray, 100 actuations, pump actuated aerosol",900000000000526001,"REPLACED BY association reference set",1085251000168106,"Livostin 0.05% nasal spray, 100 actuations, pump pack",20180228 +74412011000036108,"Infanrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840811000168108,"Infanrix-IPV injection suspension, 0.5 mL syringe",20161031 +86198011000036100,"calcium chloride dihydrate + icodextrin + lactate + magnesium chloride + sodium chloride",900000000000526001,"REPLACED BY association reference set",861151000168100,"icodextrin + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride",20161231 +687941000168101,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",825041000168105,"Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe",20160930 +734211000168104,"Centavite Adult tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",843021000168102,"Centavite Adult film-coated tablet, 100",20161031 +14308011000036108,"Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge",900000000000526001,"REPLACED BY association reference set",726411000168108,"Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL",20151031 +20889011000036101,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream, 35 g, tube",900000000000526001,"REPLACED BY association reference set",715361000168100,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g, tube",20150930 +933223201000036107,"MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724851000168101,"MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches",20151031 +74208011000036109,"Adacel injection suspension, 5 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",837521000168101,"Adacel injection suspension, 5 x 0.5 mL vials",20161031 +987301000168101,"Kanuma 2 mg/mL injection solution, vial",900000000000526001,"REPLACED BY association reference set",1013321000168106,"Kanuma 20 mg/10 mL injection solution, 10 mL vial",20170930 +61901011000036108,"miconazole 2% oral gel",900000000000526001,"REPLACED BY association reference set",817971000168100,"miconazole 2% oral gel",20160731 +664381000168103,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid",900000000000526001,"REPLACED BY association reference set",833701000168105,"Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid",20160930 +84285011000036100,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 60, bottle",900000000000526001,"REPLACED BY association reference set",860311000168109,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60, bottle",20161231 +76803011000036103,"Centrum tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",833231000168109,"Centrum film-coated tablet, 120",20160930 +56722011000036104,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 2",900000000000526001,"REPLACED BY association reference set",995661000168103,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2",20170831 +75039011000036109,"diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, dose",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",836651000168107,"diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe",20161031 +921533011000036103,"Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial",900000000000526001,"REPLACED BY association reference set",695331000168103,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle",20150430 +683981000168101,"pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",838131000168107,"pneumococcal 23 valent vaccine injection, 0.5 mL syringe",20161031 +923093011000036101,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge",900000000000526001,"REPLACED BY association reference set",995991000168102,"Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge",20170831 +929637011000036109,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724551000168103,"PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches",20151031 +711931000168107,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005271000168103,"Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +691981000168103,"Calcium (Sandoz) 500 mg tablet: film-coated, 48",900000000000526001,"REPLACED BY association reference set",847901000168101,"Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48",20161130 +73841000036107,"Risedronate Sodium EC Combi D (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium carbonate / colecalciferol sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810611000168104,"Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack, composite pack",20160630 +73813011000036105,"Twinrix Junior injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824521000168109,"Twinrix Junior injection suspension, 0.5 mL syringe",20160930 +50362011000036102,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll, carton",900000000000526001,"REPLACED BY association reference set",689331000168100,"Leukopor (2471) 1.25 cm x 5 m tape, 1 roll, carton",20150331 +84801011000036105,"Glycoprep powder for oral liquid, sachet",900000000000526001,"REPLACED BY association reference set",851541000168100,"Glycoprep powder for oral liquid, 200 g sachet",20161130 +66892011000036106,"Metformin Hydrochloride (GA) 1 g tablet, 90",900000000000526001,"REPLACED BY association reference set",949441000168109,"Metformin Hydrochloride 1000 (GA) 1 g tablet, 90",20170630 +180141000036105,"Bonecal 500 mg tablet: film-coated, 24, bottle",900000000000526001,"REPLACED BY association reference set",848481000168101,"Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle",20161130 +55737011000036102,"Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 200 mL",900000000000526001,"REPLACED BY association reference set",721711000168108,"Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL",20151031 +61850011000036104,"cetylpyridinium chloride monohydrate 0.05% + benzocaine 0.4% mouthwash",900000000000526001,"REPLACED BY association reference set",994901000168107,"cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash",20170831 +924873011000036107,"Omepro 20 mg capsule, 5",900000000000526001,"REPLACED BY association reference set",716621000168105,"Omepro 20 mg enteric capsule, 5",20150930 +5270011000036103,"Kenacomb Otic ear drops: solution",900000000000526001,"REPLACED BY association reference set",758321000168109,"Kenacomb Otic ear drops solution",20160229 +761231000168103,"Lomotil uncoated tablet, 8",900000000000526001,"REPLACED BY association reference set",851101000168108,"Lomotil uncoated tablet, 8",20161130 +81136011000036106,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",868081000168104,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag",20170131 +923907011000036104,"Omeprazole (Pharmacor) 20 mg capsule, 60, bottle",900000000000526001,"REPLACED BY association reference set",717391000168102,"Omeprazole (Pharmacor) 20 mg enteric capsule, 60, bottle",20150930 +663791000168103,"light kaolin 200 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",900000000000526001,"REPLACED BY association reference set",833511000168102,"light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL",20160930 +152641000036106,"fluticasone + formoterol (eformoterol)",900000000000526001,"REPLACED BY association reference set",861531000168103,"fluticasone propionate + formoterol (eformoterol)",20161231 +137821000036101,"Menitorix (inert substance) diluent, syringe",900000000000526001,"REPLACED BY association reference set",828351000168100,"Menitorix (inert substance) diluent, 0.5 mL syringe",20160930 +44078011000036100,"Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693311000168109,"Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules",20150331 +119691000036104,"Canesten Plus cream",900000000000526001,"REPLACED BY association reference set",715871000168102,"Canesten Plus cream",20150930 +77575011000036108,"iopromide 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection, vial",900000000000526001,"REPLACED BY association reference set",695541000168104,"iopromide 769 mg (iodine 370 mg)/mL injection, 30 mL vial",20150430 +933226201000036101,"Fluoride Koala Berry (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932641000168103,"Fluoride (Laclede) Koala Berry Flavour foam, 165 mL",20170531 +380741000168105,"HCU Anamix Junior LQ oral liquid: solution, 125 mL can",900000000000526001,"REPLACED BY association reference set",724981000168102,"HCU Anamix Junior LQ oral liquid solution, 125 mL bottle",20151031 +370931000168109,"TYR Lophlex LQ 20 oral liquid: solution, 125 mL sachet",900000000000526001,"REPLACED BY association reference set",725031000168103,"TYR Lophlex LQ 20 oral liquid solution, 125 mL pouch",20151031 +56161011000036109,"Daktarin 2% oral gel, 30 g",900000000000526001,"REPLACED BY association reference set",820051000168100,"Daktarin 2% oral gel, 30 g",20160731 +69002011000036102,"Decongestant (Nyal) 0.5% nasal spray, 15 mL, bottle",900000000000526001,"REPLACED BY association reference set",1085301000168100,"Decongestant (Nyal) 0.5% nasal spray, 15 mL, pump pack",20180228 +75043011000036107,"hepatitis A inactivated vaccine 360 ELISA units + hepatitis B vaccine 10 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",824511000168102,"hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe",20160930 +60749011000036100,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",996301000168104,"Duro-Tuss Dry Cough Lozenge orange lozenge, 24, blister pack",20170831 +5492011000036108,"Aspalgin dispersible tablet",900000000000526001,"REPLACED BY association reference set",834231000168107,"Aspalgin dispersible tablet",20161031 +36029011000036100,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid",900000000000526001,"REPLACED BY association reference set",834921000168102,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid",20161031 +12493011000036102,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104",900000000000526001,"REPLACED BY association reference set",852771000168109,"Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104",20161130 +84389011000036106,"Glycoprep-C Flavoured powder for oral liquid, 70 g sachet",900000000000526001,"REPLACED BY association reference set",901101000168106,"Glycoprep-C powder for oral liquid, 70 g sachet",20170331 +828361000168103,"Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",900000000000526001,"REPLACED BY association reference set",846101000168100,"Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack",20161130 +925352011000036107,"Pemzo 20 mg capsule, 56, bottle",900000000000526001,"REPLACED BY association reference set",717001000168106,"Pemzo 20 mg enteric capsule, 56, bottle",20150930 +30621000036109,"Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827201000168105,"Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe",20160930 +260721000168105,"PKU Lophlex LQ 20 oral liquid: solution, 125 mL can",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724351000168105,"PKU Lophlex LQ 20 Citrus oral liquid solution, 125 mL pouch",20151031 +13582011000036105,"Subutex 2 mg tablet, 7",900000000000526001,"REPLACED BY association reference set",685601000168104,"Subutex 2 mg sublingual tablet, 7",20150228 +37547011000036107,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835501000168104,"Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL, bottle",20161031 +929960011000036103,"Dermasoothe Antiseptic cream",900000000000526001,"REPLACED BY association reference set",861321000168105,"Dermasoothe Antiseptic cream",20161231 +63132011000036101,"benzydamine hydrochloride 0.3% spray, 15 mL",900000000000526001,"REPLACED BY association reference set",721321000168100,"benzydamine hydrochloride 0.3% oral spray, 15 mL",20151031 +182101000036106,"Go Kit powder for oral liquid, 1 sachet",900000000000526001,"REPLACED BY association reference set",830951000168102,"Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet",20160930 +833801000168103,"somatropin 400 microgram/dose + inert substance injection, 7 dual chamber devices",900000000000526001,"REPLACED BY association reference set",975161000168100,"somatropin 400 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack",20170731 +728611000168109,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 200 mL bag",900000000000526001,"REPLACED BY association reference set",1005811000168105,"Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 200 mL bag",20170930 +86837011000036104,"Emulsifying Ointment (David Craig) ointment, 500 g, jar",900000000000526001,"REPLACED BY association reference set",770841000168108,"Emulsifying Ointment BP (David Craig) ointment, 500 g, jar",20160331 +711771000168108,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",900000000000526001,"REPLACED BY association reference set",1005561000168106,"Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules",20170930 +922557011000036109,"aspirin 100 mg dispersible tablet, 100",900000000000526001,"REPLACED BY association reference set",804071000168105,"aspirin 100 mg tablet, 100",20160630 +156781000036107,"Pecfent 100 microgram/actuation nasal spray, 8 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1055051000168105,"Pecfent 100 microgram/actuation nasal spray, 8 actuations, pump pack",20171231 +52549011000036109,"Cal-600 600 mg (calcium 600 g) tablet: film-coated, 120",900000000000526001,"REPLACED BY association reference set",860271000168109,"Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120",20161231 +929478011000036106,"PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724571000168107,"PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches",20151031 +76556011000036104,"Sorbolene Cream with Glycerin (Orion) cream, 500 g",900000000000526001,"REPLACED BY association reference set",705811000168108,"Sorbolene Cream with Glycerin (Orion) cream, 500 g",20150731 +70019011000036106,"salicylic acid 5% (50 mg/g) + cetomacrogol aqueous cream 950 mg/g cream",900000000000526001,"REPLACED BY association reference set",705661000168105,"salicylic acid 5% + cetomacrogol aqueous cream",20150731 +50930011000036101,"tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll",900000000000526001,"REPLACED BY association reference set",688931000168106,"tape non woven retention polyacrylate 5 cm x 10 m tape",20150331 +37614011000036104,"Actacode Linctus 5 mg/mL oral liquid: solution, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",835561000168103,"Actacode Linctus 5 mg/mL oral liquid solution, 100 mL, bottle",20161031 +60823011000036104,"Difflam Cough Lozenge blackcurrant sugar free lozenge, 24, blister pack",900000000000526001,"REPLACED BY association reference set",995561000168104,"Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24, blister pack",20170831 +85406011000036103,"Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag",900000000000526001,"REPLACED BY association reference set",872351000168103,"Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag",20170131 +63562011000036102,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride monohydrate 1.33 mg + pholcodine 5.5 mg lozenge, 24",900000000000526001,"REPLACED BY association reference set",995541000168103,"benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge, 24",20170831 +18351011000036106,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe",900000000000526001,"REPLACED BY association reference set",1041101000168105,"Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device",20171130 +73658011000036102,"pneumococcal 7 valent conjugate vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",826071000168107,"Streptococcus pneumoniae type 6B conjugate antigen",20160930 +78307011000036103,"alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 120",900000000000526001,"REPLACED BY association reference set",833221000168106,"betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 120",20160930 +104171000036107,"Irbesartan (Apo) 150 mg tablet, 30, bottle",900000000000526001,"REPLACED BY association reference set",807841000168101,"Irbesartan (Apo) 150 mg film-coated tablet, 30, bottle",20160630 +679531000168103,"Botox 200 units injection: powder for, 200 units vial",900000000000526001,"REPLACED BY association reference set",720941000168103,"Botox 200 units powder for injection, 200 units vial",20151031 +60726011000036107,"Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL, bottle",900000000000526001,"REPLACED BY association reference set",721531000168107,"Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL, bottle",20151031 +74423011000036105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial",900000000000526001,"REPLACED BY association reference set",825751000168105,"H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial",20160930 +653571000168104,"Retinofluor",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",721191000168100,"Retinofluor 25%",20151031 +22175011000036105,"adalimumab 40 mg/0.8 mL injection, cartridge",900000000000526001,"REPLACED BY association reference set",729801000168104,"adalimumab 40 mg/0.8 mL injection, injection device",20171130 +86839011000036106,"Flo Sinus Care powder for nasal drops, 12 x 1.8 g sachets",900000000000526001,"REPLACED BY association reference set",758711000168101,"Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets",20160229 +930878011000036104,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872901000168103,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +80233011000036106,"Gastrolyte natural powder for oral liquid, 4.9 g sachet",900000000000526001,"REPLACED BY association reference set",871861000168101,"Gastrolyte Natural powder for oral liquid, 4.9 g sachet",20170131 +74245011000036105,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes",900000000000526001,"REPLACED BY association reference set",825291000168109,"Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes",20160930 +924888011000036107,"Pemzo 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",716931000168103,"Pemzo 20 mg enteric capsule, 56",20150930 +44485011000036105,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations, bottle",900000000000526001,"REPLACED BY association reference set",729141000168109,"Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations, pump pack",20151130 +69929011000036105,"soap-soft 50 mg/mL enema, bottle",900000000000526001,"REPLACED BY association reference set",685491000168107,"soft soap 50 mg/mL enema",20150228 +22843011000036101,"paracetamol 500 mg + codeine phosphate 8 mg tablet",900000000000526001,"REPLACED BY association reference set",62090011000036109,"paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet",20161031 +931679011000036105,"Actonel EC Combi D (4 x Once-a-Week tablets, 24 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",810351000168106,"Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack, composite pack",20160630 +728381000168109,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872091000168105,"Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe",20170131 +19255011000036102,"Codalgin Forte uncoated tablet, 20, blister pack",900000000000526001,"REPLACED BY association reference set",835891000168108,"Codalgin Forte uncoated tablet, 20, blister pack",20161031 +711311000168101,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1004611000168105,"Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +689771000168103,"Valaciclovir (Apo) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1001141000168100,"Valaciclovir 1000 (Apo) 1 g film-coated tablet",20170930 +28109011000036107,"clotrimazole 1% cream, 35 g",900000000000526001,"REPLACED BY association reference set",714971000168108,"clotrimazole 1% vaginal cream, 35 g",20150930 +924209011000036105,"omeprazole 20 mg capsule, 56",900000000000526001,"REPLACED BY association reference set",716751000168106,"omeprazole 20 mg enteric capsule, 56",20150930 +5321011000036103,"Zentel 200 mg chewable tablet",900000000000526001,"REPLACED BY association reference set",844201000168104,"Zentel 200 mg tablet",20161031 +925335011000036103,"Omepro 20 mg capsule, 28, bottle",900000000000526001,"REPLACED BY association reference set",716551000168103,"Omepro 20 mg enteric capsule, 28, bottle",20150930 +82765011000036101,"Synflorix 16 microgram injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",827621000168104,"Synflorix injection suspension, 0.5 mL syringe",20160930 +844421000168107,"Zovirax 200 mg tablet, 25",900000000000526001,"REPLACED BY association reference set",859191000168103,"Zovirax Dispersible 200 mg tablet, 25",20161231 +933195961000036105,"Levetiracetam (MPPL) 1 g film-coated tablet",900000000000526001,"REPLACED BY association reference set",1003541000168106,"Levetiracetam 1000 (MPPL) 1 g film-coated tablet",20170930 +11916011000036105,"ADT Booster injection: suspension, 5 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",837351000168102,"ADT Booster injection suspension, 5 x 0.5 mL syringes",20161031 +73667011000036107,"rotavirus pentavalent live reassortant oral vaccine",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",822281000168100,"rotavirus type P1A(8) live antigen",20160831 +664391000168100,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate heavy 250 mg/g powder for oral liquid, 100 g",900000000000526001,"REPLACED BY association reference set",833711000168108,"magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid, 100 g",20160930 +41563011000036105,"Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 30 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",693431000168105,"Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules",20150331 +76737011000036101,"Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 x 10 mL vials",900000000000526001,"REPLACED BY association reference set",695081000168100,"Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials",20150430 +74928011000036102,"Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL, bottle",900000000000526001,"REPLACED BY association reference set",1083621000168100,"Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL, pump pack",20180228 +922652011000036104,"iopromide 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection, 10 x 75 mL vials",900000000000526001,"REPLACED BY association reference set",695221000168107,"iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 75 mL bottles",20150430 +7126011000036103,"Caltrate 600 mg (calcium 600 g) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",860321000168102,"Caltrate 1.5 g (calcium 600 mg) film-coated tablet",20161231 +45221000036103,"Glucaid 75 g/300 mL oral liquid: solution, 300 mL each, bottle",900000000000526001,"REPLACED BY association reference set",692461000168105,"Glucaid 75 g/300 mL oral liquid solution, 300 mL, bottle",20150331 +84411011000036103,"macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + ascorbic acid",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",77435011000036104,"ascorbic acid",20170331 +61863011000036103,"hydrocortisone 1% spray",900000000000526001,"REPLACED BY association reference set",776861000168105,"hydrocortisone 1% spray",20160430 +177751000036100,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/0.2 mL (0.2 mL) unit doses, 14 x 20 microgram/0.2 mL (0.2 mL) unit doses), 1 pack",900000000000526001,"REPLACED BY association reference set",719411000168109,"Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack",20150930 +7329011000036103,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream",900000000000526001,"REPLACED BY association reference set",715341000168104,"Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream",20150930 +81137011000036109,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags",900000000000526001,"REPLACED BY association reference set",868111000168109,"Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags",20170131 +926986011000036105,"hepatitis B vaccine 10 microgram/0.5 mL injection, syringe",900000000000526001,"REPLACED BY association reference set",825431000168109,"hepatitis B child vaccine 10 microgram/0.5 mL injection, syringe",20160930 +75030011000036103,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",823011000168107,"human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe",20160831 +953951000168101,"Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1087061000168106,"Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations, pump pack",20180331 +75515011000036102,"meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 20 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",846011000168101,"meningococcal C conjugate vaccine injection, 20 x 0.5 mL syringes",20161130 +60764011000036106,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 2, blister pack",900000000000526001,"REPLACED BY association reference set",995671000168109,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2, blister pack",20170831 +711821000168101,"Ropibam 0.2% 20 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1005081000168106,"Ropibam 0.2% 20 mg/10 mL injection solution, 10 mL ampoule",20170930 +930086011000036106,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",900000000000526001,"REPLACED BY association reference set",872851000168107,"Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle",20170131 +74432011000036100,"Boostrix-IPV injection suspension, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",840731000168105,"Boostrix-IPV injection suspension, 0.5 mL syringe",20161031 +933204881000036109,"Acris Combi (1 x 35 mg tablet, 6 x 500 mg tablets), 1 pack",900000000000526001,"REPLACED BY association reference set",852581000168101,"Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7",20161130 +81168011000036100,"Gastrolyte natural powder for oral liquid, 2 x 4.9 g sachets",900000000000526001,"REPLACED BY association reference set",871901000168107,"Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets",20170131 +33321011000036109,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe",900000000000526001,"REPLACED BY association reference set",881201000168106,"Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose",20170228 +77299011000036109,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe",900000000000526001,"REPLACED BY association reference set",872071000168109,"Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe",20170131 +80666011000036109,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags",900000000000526001,"REPLACED BY association reference set",872271000168104,"Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags",20170131 +708491000168108,"Kenacomb Otic ear drops: solution, 7.5 mL, bottle",900000000000526001,"REPLACED BY association reference set",758351000168101,"Kenacomb Otic ear drops solution, 7.5 mL, bottle",20160229 +82335011000036107,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 50 x 1 mL ampoules",900000000000526001,"REPLACED BY association reference set",850881000168104,"Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules",20161130 +931709011000036105,"Elevit with Iodine tablet: film-coated, 30, blister pack",900000000000526001,"REPLACED BY association reference set",843201000168101,"Elevit with Iodine film-coated tablet, 30, blister pack",20161031 +933203381000036103,"Levetiracetam (SCP) 1 g film-coated tablet, 60",900000000000526001,"REPLACED BY association reference set",1003681000168102,"Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60",20170930 +86448011000036106,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium (as carbonate) 500 mg tablet [48], 1 pack",900000000000526001,"REPLACED BY association reference set",848041000168101,"alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack",20161130 +37653011000036106,"Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle",900000000000526001,"REPLACED BY association reference set",775561000168103,"Forthane 1 mL/mL inhalation solution, 100 mL, bottle",20160430 +72601000036101,"Salofalk 1 g granules, 100 sachets",900000000000526001,"REPLACED BY association reference set",1084171000168109,"Salofalk 1 g modified release granules, 100 sachets",20180228 +933226181000036100,"Fluoride Bumble Bee Bubble Gum (Laclede) foam, 165 mL",900000000000526001,"REPLACED BY association reference set",932371000168100,"Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL",20170531 +44101011000036105,"Zovirax 200 mg dispersible tablet, 90, bottle",900000000000526001,"REPLACED BY association reference set",859461000168103,"Zovirax Dispersible 200 mg tablet, 90, bottle",20161231 +924698011000036103,"First Aid (Guardian) cream, 50 g",900000000000526001,"REPLACED BY association reference set",861551000168109,"First Aid (Guardian) cream, 50 g",20161231 +924886011000036108,"Pemzo 20 mg capsule, 50",900000000000526001,"REPLACED BY association reference set",716811000168102,"Pemzo 20 mg enteric capsule, 50",20150930 +75383011000036104,"human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL syringes",900000000000526001,"REPLACED BY association reference set",823091000168103,"human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL syringes",20160831 +929473011000036101,"PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",724541000168100,"PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches",20151031 +74959011000036106,"Haemophilus influenzae type b vaccine + hepatitis B vaccine",900000000000526001,"REPLACED BY association reference set",832271000168101,"Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine",20160930 +5739011000036101,"Calcium Carbonate (Sanofi-Aventis) (calcium (as carbonate) 500 mg) tablet: film-coated",900000000000526001,"REPLACED BY association reference set",852641000168107,"Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet",20161130 +73795011000036109,"Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube",900000000000526001,"REPLACED BY association reference set",822471000168104,"Rotateq oral liquid, 2 mL tube",20160831 +27241011000036106,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU injection [81 mg vial] (&) inert substance diluent [3 mL vial], 1 pack",900000000000526001,"REPLACED BY association reference set",1045981000168102,"Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack",20171130 +71455011000036103,"salicylic acid 5% (50 mg/g) + aqueous cream 950 mg/g cream, 100 g",900000000000526001,"REPLACED BY association reference set",705601000168109,"salicylic acid 5% + aqueous cream, 100 g",20150731 +75407011000036104,"rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, 1.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822891000168101,"rotavirus live vaccine oral liquid, 1.5 mL syringe",20160831 +711181000168105,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",900000000000526001,"REPLACED BY association reference set",1005891000168101,"Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags",20170930 +711281000168103,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",900000000000526001,"REPLACED BY association reference set",1006091000168103,"Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules",20170930 +114581000036103,"citric acid 12 g + magnesium oxide 3.5 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 2 x 16.1 g sachets",900000000000526001,"REPLACED BY association reference set",902101000168101,"sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 2 x 16.1 g sachets",20170331 +77323011000036106,"Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 10 x 30 mL vials",900000000000526001,"REPLACED BY association reference set",695581000168109,"Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials",20150430 +821641000168100,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",900000000000526001,"REPLACED BY association reference set",955111000168100,"Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial",20170630 +152531000036102,"Atrovent 22 microgram/actuation nasal spray, 180 actuations, pump actuated metered dose aerosol",900000000000526001,"REPLACED BY association reference set",1085371000168105,"Atrovent 22 microgram/actuation nasal spray, 180 actuations, pump pack",20180228 +844491000168109,"Zovirax 800 mg tablet, 35",900000000000526001,"REPLACED BY association reference set",859221000168109,"Zovirax Dispersible 800 mg tablet, 35",20161231 +79835011000036101,"gentamicin sulfate 7.5 mg implant, 1 bead",900000000000526001,"REPLACED BY association reference set",684531000168106,"gentamicin sulfate 7.5 mg implant, 30 beads",20150131 +924141011000036100,"smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack",900000000000526001,"REPLACED BY association reference set",821311000168105,"smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack",20160831 +73867011000036100,"Merieux Inactivated Rabies Vaccine (rabies inactivated vaccine 2.5 units) powder for injection, 2.5 units vial",900000000000526001,"REPLACED BY association reference set",821431000168106,"Merieux Inactivated Rabies Vaccine (rabies vaccine) powder for injection, 2.5 units vial",20160831 +896601000168100,"PKU Sphere",900000000000526001,"REPLACED BY association reference set",922511000168101,"PKU Sphere20",20170430 +140501000036105,"Bydureon (4 x 2 mg vials, 4 x inert diluent syringes), 1 pack, composite pack",900000000000526001,"REPLACED BY association reference set",833931000168101,"Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs, composite packs",20160930 +83297011000036109,"Prozero oral liquid: solution, 18 x 250 mL cans",900000000000526001,"REPLACED BY association reference set",745351000168108,"Prozero oral liquid solution, 18 x 250 mL cartons",20160131 +6718011000036103,"Clofeme Thrush Treatment 6 Day 1% cream",900000000000526001,"REPLACED BY association reference set",715121000168108,"Clofeme Thrush Treatment 6 Day 1% vaginal cream",20150930 +19980011000036101,"Creon 10 000 units modified release capsule, 100, bottle",900000000000526001,"REPLACED BY association reference set",847471000168103,"Creon 10 000 enteric capsule, 100, bottle",20161130 +706331000168102,"measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection, vial",900000000000526001,"REPLACED BY association reference set",831351000168109,"measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, vial",20160930 +87921000036106,"dinoprostone 800 microgram/mL vaginal gel",900000000000526001,"REPLACED BY association reference set",1005371000168106,"dinoprostone 2 mg/3 g vaginal gel, syringe",20170930 +76822011000036103,"Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 100",900000000000526001,"REPLACED BY association reference set",861961000168101,"Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100",20161231 +921843011000036101,"Berocca Performance Original effervescent tablet, 15, bottle",900000000000526001,"REPLACED BY association reference set",829731000168102,"Berocca Performance Original effervescent tablet, 15, bottle",20160930 +141981000036104,"Somatuline Autogel 90 mg injection: solution, 1 syringe",900000000000526001,"REPLACED BY association reference set",819551000168109,"Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe",20160731 +37878011000036106,"atropine sulfate 500 microgram/mL injection, ampoule",900000000000526001,"REPLACED BY association reference set",850581000168102,"atropine sulfate monohydrate 500 microgram/mL injection, ampoule",20161130 +78110011000036107,"glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 100 mL",900000000000526001,"REPLACED BY association reference set",705841000168107,"glycerol 10% + cetomacrogol aqueous cream, 100 mL",20150731 +9081000036102,"Clinoleic 20% injection: emulsion, 500 mL bag",900000000000526001,"REPLACED BY association reference set",771831000168106,"Clinoleic 20% injection emulsion, 500 mL bag",20160430 +698431000168100,"meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, 0.5 mL syringe",900000000000526001,"REPLACED BY association reference set",822791000168106,"meningococcal B 4 component vaccine injection, 0.5 mL syringe",20160831 +73628011000036101,"diphtheria toxoid vaccine",900000000000526001,"REPLACED BY association reference set",2031011000036104,"diphtheria toxoid",20161031 +53897011000036100,"Zantac 150 mg/10 mL oral liquid: solution, 10 mL",900000000000526001,"REPLACED BY association reference set",5902011000036108,"Zantac 150 mg/10 mL oral liquid, 10 mL",20160531 +18431011000036101,"Codalgin uncoated tablet, 50, blister pack",900000000000526001,"REPLACED BY association reference set",836031000168107,"Codalgin uncoated tablet, 50, blister pack",20161031 +74243011000036109,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials",900000000000526001,"REPLACED BY association reference set",825571000168106,"Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials",20160930 +761801000168109,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack",900000000000526001,"REPLACED BY association reference set",833841000168101,"Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack",20160930 +160481000036107,"Oxycontin Reformulation 10 mg modified release tablet, 28, blister pack",900000000000526001,"REPLACED BY association reference set",929119011000036108,"Oxycontin 10 mg modified release tablet, 28, blister pack",20170731 +702791000168103,"PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets",900000000000523009,"POSSIBLY EQUIVALENT TO association reference set",726101000168100,"PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets",20151031 +80491000036101,"Clopidogrel/Aspirin 75/100 (Apo) tablet, 30",900000000000526001,"REPLACED BY association reference set",923781000168105,"Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30",20170430 +22861000036102,"Albey Paper Wasp Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack",900000000000526001,"REPLACED BY association reference set",758911000168103,"Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack",20160229 +711431000168100,"Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004991000168109,"Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule",20170930 +82195011000036107,"Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag",900000000000526001,"REPLACED BY association reference set",872411000168108,"Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag",20170131 +87521000036102,"Japanese encephalitis virus live vaccine",900000000000526001,"REPLACED BY association reference set",821481000168107,"Japanese encephalitis virus live antigen",20160831 +844541000168100,"Zovirax 800 mg tablet, 120",900000000000526001,"REPLACED BY association reference set",859431000168106,"Zovirax Dispersible 800 mg tablet, 120",20161231 +84293011000036102,"Diacol tablet, 32, bottle",900000000000526001,"REPLACED BY association reference set",900271000168101,"Diacol tablet, 32, bottle",20170331 +36232011000036102,"Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 2 mL vial",900000000000526001,"REPLACED BY association reference set",720781000168106,"Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 2 mL vial",20151031 +815131000168109,"Entrip 25 mg tablet, 100, blister pack",900000000000526001,"REPLACED BY association reference set",856741000168101,"Entrip 25 mg film-coated tablet, 100, blister pack",20161231 +60763011000036109,"Difflam Lozenge eucalyptus and menthol sugar free lozenge, 16, blister pack",900000000000526001,"REPLACED BY association reference set",995641000168102,"Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16, blister pack",20170831 +728771000168105,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1006161000168109,"Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 20 mL ampoule",20170930 +44769011000036102,"Eskazole 400 mg chewable tablet, 56, blister pack",900000000000526001,"REPLACED BY association reference set",844131000168101,"Eskazole 400 mg tablet, 56, blister pack",20161031 +922159011000036105,"potassium citrate monohydrate 1.08 g (potassium 10 mmol) modified release tablet",900000000000526001,"REPLACED BY association reference set",950721000168100,"potassium citrate 1.08 g (potassium 10 mmol) modified release tablet",20170630 +844461000168102,"Zovirax 200 mg tablet, 90, blister pack",900000000000526001,"REPLACED BY association reference set",859611000168104,"Zovirax Dispersible 200 mg tablet, 90, blister pack",20161231 +711501000168108,"Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule",900000000000526001,"REPLACED BY association reference set",1004891000168102,"Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule",20170930 diff --git a/src/test/resources/expectedReplacement.tsv b/src/test/resources/expectedReplacement.tsv new file mode 100644 index 0000000..c7fe9c5 --- /dev/null +++ b/src/test/resources/expectedReplacement.tsv @@ -0,0 +1,4643 @@ +INACTIVE SCTID INACTIVE PT REPLACEMENT TYPE SCTID REPLACEMENT TYPE PT REPLACEMENT SCTID REPLACEMENT PT DATE +77408011000036104 Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 861781000168108 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100, bottle 20161231 +75485011000036108 hepatitis B vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825931000168102 hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL vials 20160930 +21874011000036102 pancrelipase 900000000000526001 REPLACED BY association reference set 847131000168105 lipase + amylase + protease 20161130 +85063011000036102 Elevit tablet: film-coated, 30, blister pack 900000000000526001 REPLACED BY association reference set 843111000168108 Elevit film-coated tablet, 30, blister pack (Old Formulation 2014) 20161031 +74288011000036105 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 827721000168106 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 20160930 +78837011000036109 Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 704471000168103 Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 20150630 +712051000168107 Ropibam 0.2% 400 mg/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1005171000168109 Ropibam 0.2% 400 mg/200 mL injection solution, 200 mL bag 20170930 +815061000168100 Entrip 25 mg tablet, 10 900000000000526001 REPLACED BY association reference set 856671000168104 Entrip 25 mg film-coated tablet, 10 20161231 +33674011000036102 adrenaline 150 microgram/0.3 mL injection, syringe 900000000000526001 REPLACED BY association reference set 726651000168106 adrenaline (epinephrine) 150 microgram/0.3 mL injection, dose 20151031 +922566011000036103 iopromide 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 696361000168104 iopromide 499 mg (iodine 240 mg)/mL injection, 10 x 50 mL bottles 20150430 +74425011000036106 Quadracel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 840601000168109 Quadracel injection suspension, 0.5 mL vial 20161031 +158351000036100 Oxycontin Reformulation 30 mg modified release tablet 900000000000526001 REPLACED BY association reference set 65415011000036105 Oxycontin 30 mg modified release tablet 20170731 +74743011000036102 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825301000168105 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes 20160930 +137701000036104 Bydureon (exenatide 2 mg) powder for injection, 2 mg vial 900000000000526001 REPLACED BY association reference set 833871000168108 Bydureon (exenatide 2 mg) modified release injection, 2 mg vial 20160930 +6866011000036104 Subutex 8 mg tablet 900000000000526001 REPLACED BY association reference set 685631000168106 Subutex 8 mg sublingual tablet 20150228 +665601000168102 PKU Cooler20 Green oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725771000168103 PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches 20151031 +75469011000036107 Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832211000168109 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial 20160930 +50422011000036103 Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694041000168109 Leukopor (2474) 5 cm x 5 m tape, 1 roll, carton 20150331 +711711000168100 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005681000168103 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +922019011000036106 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831771000168101 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack, composite pack 20160930 +679591000168104 Botox 200 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 720971000168105 Botox 200 units powder for injection, 1 vial 20151031 +697091000168106 Salofalk 3 g granules, 3 g sachet 900000000000526001 REPLACED BY association reference set 1084311000168103 Salofalk 3 g modified release granules, 3 g sachet 20180228 +74854011000036100 Ipol injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839891000168106 Ipol injection solution, 0.5 mL syringe 20161031 +82032011000036103 Calci-Tab 600 mg (calcium 600 g) uncoated tablet 900000000000526001 REPLACED BY association reference set 860351000168105 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet 20161231 +653711000168101 Retinofluor 1 g/10 mL injection: solution, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 721851000168104 Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials 20151031 +34802011000036106 Subutex 8 mg tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 685751000168109 Subutex 8 mg sublingual tablet, 28, blister pack 20150228 +706381000168101 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 831421000168106 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 20160930 +815201000168106 Entrip 50 mg tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 856811000168108 Entrip 50 mg film-coated tablet, 50, blister pack 20161231 +84916011000036105 Strepsils lozenge, 16 900000000000526001 REPLACED BY association reference set 720301000168104 Strepsils Cool lozenge, 16 20151031 +815101000168102 Entrip 25 mg tablet, 90 900000000000526001 REPLACED BY association reference set 856711000168100 Entrip 25 mg film-coated tablet, 90 20161231 +180161000036106 Bonecal 500 mg tablet: film-coated, 48 900000000000526001 REPLACED BY association reference set 848491000168103 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48 20161130 +55667011000036100 Clotrimazole 6 Day (Guardian) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715241000168105 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g 20150930 +130581000036103 Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726641000168109 Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose, injection device 20151031 +933205591000036108 Recombinate 1000 IU (1 x 1000 international units vial, 1 x 10 mL diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 710941000168105 Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack 20150831 +65831000036105 Hepasol oral liquid: solution, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 688151000168102 Hepasol oral liquid solution, 200 mL, bottle 20150331 +61807011000036108 lignocaine + hydrocortisone acetate 900000000000526001 REPLACED BY association reference set 61836011000036102 lidocaine (lignocaine) + hydrocortisone 20161231 +7420011000036102 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041451000168101 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device 20171130 +7509011000036109 Eskazole 400 mg chewable tablet 900000000000526001 REPLACED BY association reference set 844071000168104 Eskazole 400 mg tablet 20161031 +933226171000036102 Fluoride Witchy Candy Mint (Laclede) foam, 165 mL 900000000000526001 REPLACED BY association reference set 932521000168105 Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL 20170531 +387561000168101 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 125 mL can 900000000000526001 REPLACED BY association reference set 724871000168105 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle 20151031 +26481000036108 Voltaren Osteo 1% gel 900000000000526001 REPLACED BY association reference set 1037091000168108 Voltaren Osteo 1.16% gel 20171130 +77169011000036109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, pump pack 900000000000526001 REPLACED BY association reference set 705941000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, pump pack 20150731 +31521000036104 Vivaxim injection suspension, 1 mL syringe, dual chamber syringe 900000000000526001 REPLACED BY association reference set 827341000168101 Vivaxim injection suspension, 1 mL syringe, dual chamber syringe 20160930 +75088011000036108 hepatitis B vaccine 5 microgram/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 825801000168104 hepatitis B child vaccine 5 microgram/0.5 mL injection, vial 20160930 +844811000168102 Zovirax 400 mg tablet, 70, bottle 900000000000526001 REPLACED BY association reference set 859551000168104 Zovirax Dispersible 400 mg tablet, 70, bottle 20161231 +81149011000036101 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868321000168100 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 20170131 +928209011000036106 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715811000168105 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g 20150930 +921492011000036108 B-Dose (Biological Therapies) injection: solution, 3 x 2.5 mL vials 900000000000526001 REPLACED BY association reference set 704541000168106 B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials 20150630 +262081000168106 PKU Cooler20 Purple oral liquid: solution, 174 mL can 900000000000526001 REPLACED BY association reference set 725811000168103 PKU Cooler 20 Purple oral liquid solution, 174 mL pouch 20151031 +81714011000036100 sodium chloride 117 mg + potassium chloride 186 mg + glucose monohydrate 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 900000000000526001 REPLACED BY association reference set 871561000168103 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet, 20 20170131 +932392011000036100 meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, 1 pack 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826711000168101 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack 20160930 +77136011000036107 PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724341000168108 PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles 20151031 +85188011000036104 macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g 900000000000526001 REPLACED BY association reference set 851551000168103 macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet 20161130 +689781000168100 Valaciclovir (Apo) 1 g film-coated tablet, 4 900000000000526001 REPLACED BY association reference set 1001151000168103 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4 20170930 +669591000168107 mercaptopurine 20 mg/mL oral liquid, 100 mL 900000000000526001 REPLACED BY association reference set 845391000168101 mercaptopurine monohydrate 20 mg/mL oral liquid, 100 mL 20161130 +686831000168103 interferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL injection devices 900000000000526001 REPLACED BY association reference set 698641000168106 peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL injection devices 20150430 +703651000168107 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 826941000168104 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20160930 +922016011000036102 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 950761000168105 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100, bottle 20170630 +921408011000036109 Macu-Vision tablet: film-coated, 150 900000000000526001 REPLACED BY association reference set 757951000168101 Macu-Vision film-coated tablet, 150 20160229 +706321000168100 measles virus (Enders' attenuated Edmonston) live vaccine + mumps virus (Jeryl Lynn B level) live vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine 900000000000526001 REPLACED BY association reference set 831021000168104 measles + mumps + rubella live vaccine 20160930 +90411000036105 dinoprostone 400 microgram/mL vaginal gel, 2.5 mL 900000000000526001 REPLACED BY association reference set 1005341000168104 dinoprostone 1 mg/3 g vaginal gel, 3 g syringe 20170930 +83962011000036105 Wagner Magnesium Forte 400 capsules: hard, 100 900000000000526001 REPLACED BY association reference set 750231000168103 Magnesium Forte 400 (Wagner) hard capsule, 100 20160131 +37351011000036103 Primacor 10 mg/10 mL injection: solution, 10 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 719521000168103 Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules 20150930 +32960011000036107 Soflax 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 733621000168105 Soflax (Ascent Pharma) 20151130 +933229561000036106 MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724041000168106 MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 20151031 +924890011000036106 Pemzo 20 mg capsule, 7 900000000000526001 REPLACED BY association reference set 717561000168103 Pemzo 20 mg enteric capsule, 7 20150930 +73676011000036104 Yellow fever live attenuated vaccine 900000000000526001 REPLACED BY association reference set 821271000168105 yellow fever virus live antigen 20160831 +8891000168108 Creon 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 847121000168107 Creon 40 000 20161130 +73838011000036109 Havrix 1440 ELISA units/mL injection suspension, syringe 900000000000526001 REPLACED BY association reference set 824761000168106 Havrix 1440 ELISA units/mL injection suspension, syringe 20160930 +40315011000036100 Forteo 20 microgram injection: solution, 2.4 mL cartridge 900000000000526001 REPLACED BY association reference set 726931000168105 Forteo 20 microgram/dose injection solution, dose 20151031 +61115011000036105 Difflam Lozenge honey and lemon sugar free lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995701000168105 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16, blister pack 20170831 +33632011000036108 bee venom 900000000000526001 REPLACED BY association reference set 758791000168105 honey bee venom 20160229 +80632011000036101 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags 900000000000526001 REPLACED BY association reference set 867781000168103 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags 20170131 +933226081000036104 ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004851000168107 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, 5 x 200 mL bags 20170930 +167341000036106 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848601000168106 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 20161130 +73691000036102 Byetta 10 microgram/0.04 mL injection: solution, 60 x 0.04 mL unit doses, cartridge 900000000000526001 REPLACED BY association reference set 726841000168105 Byetta 10 microgram/dose injection solution, 60 doses, injection device 20151031 +55824011000036108 Clozole Vaginal Cream (Chemists' Own) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715441000168106 Clozole (Chemists' Own) 2% vaginal cream, 20 g 20150930 +927313011000036109 hepatitis B vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825451000168103 hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe 20160930 +77429011000036104 calcium carbonate + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide 900000000000526001 REPLACED BY association reference set 861731000168107 calcium + colecalciferol + cupric oxide + magnesium oxide + manganese sulfate monohydrate + zinc oxide 20161231 +1085521000168100 influenza trivalent geriatric vaccine 2018 injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 1122691000168106 influenza trivalent geriatric vaccine 2018 injection, 10 x 0.5 mL syringes 20180430 +234701000168100 triglycerides long chain with glucose polymer oral liquid, 250 mL can 900000000000526001 REPLACED BY association reference set 745321000168100 triglycerides long chain with glucose polymer oral liquid, 250 mL carton 20160131 +22601011000036103 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU injection, 81 mg vial 900000000000526001 REPLACED BY association reference set 1045931000168103 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial 20171130 +921975011000036108 Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial 900000000000526001 REPLACED BY association reference set 695341000168107 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle 20150430 +139311000036109 Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005941000168100 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +75047011000036103 hepatitis A inactivated vaccine 1440 ELISA units/mL injection, vial 900000000000526001 REPLACED BY association reference set 824701000168105 hepatitis A adult vaccine 1440 ELISA units/mL injection, vial 20160930 +156071000036107 romidepsin 10 mg injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 900000000000526001 REPLACED BY association reference set 828491000168101 romidepsin 10 mg injection [1 vial] (&) inert substance diluent [2 mL vial], 1 pack 20160930 +75651000036105 risedronate sodium 35 mg enteric tablet [1] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [6 sachets], 1 pack 900000000000526001 REPLACED BY association reference set 810281000168108 risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [6 sachets], 1 pack 20160630 +923993011000036106 pancreatic extract 5000 units/100 mg enteric coated granules 900000000000526001 REPLACED BY association reference set 847141000168101 lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules 20161130 +28641000036100 Voltaren Osteo 1% gel, 75 g 900000000000526001 REPLACED BY association reference set 1037111000168100 Voltaren Osteo 1.16% gel, 75 g 20171130 +23167011000036102 oxycodone hydrochloride 5 mg/5 mL oral liquid 900000000000526001 REPLACED BY association reference set 815911000168102 oxycodone hydrochloride 1 mg/mL oral liquid 20160731 +711521000168104 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004921000168107 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +60229011000036105 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 861391000168107 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2, blister pack 20161231 +84078011000036109 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 873111000168107 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 20170131 +74297011000036105 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825071000168103 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 20160930 +18798011000036107 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL cartridges 900000000000526001 REPLACED BY association reference set 729841000168102 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices 20171130 +65871000036107 Hepasol oral liquid: solution, 500 mL, bottle 900000000000526001 REPLACED BY association reference set 688181000168109 Hepasol oral liquid solution, 500 mL, bottle 20150331 +71751000036102 Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 120 900000000000526001 REPLACED BY association reference set 862071000168100 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120 20161231 +167531000168103 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 87 mL sachet 900000000000526001 REPLACED BY association reference set 725281000168108 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 87 mL pouch 20151031 +75348011000036103 azelastine hydrochloride 140 microgram/actuation nasal spray, 5 mL 900000000000526001 REPLACED BY association reference set 809541000168105 azelastine hydrochloride 0.1% nasal spray, 5 mL 20160630 +711691000168103 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1005661000168107 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 200 mL bag 20170930 +941651000168109 Metformin (AS) 1 g film-coated tablet, 90 900000000000526001 REPLACED BY association reference set 949541000168105 Metformin 1000 (AS) 1 g film-coated tablet, 90 20170630 +40366011000036108 Metvix 200 mg/g cream 900000000000526001 REPLACED BY association reference set 999291000168106 Metvix 160 mg/g cream 20170831 +81153011000036101 Gastrolyte Blackcurrant effervescent tablet, 20, tube 900000000000526001 REPLACED BY association reference set 871711000168107 Gastrolyte Blackcurrant effervescent tablet, 20, tube 20170131 +713361000168104 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005441000168106 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +675011000168103 Simponi Smartject 100 mg/mL injection: solution, 1 mL syringe 900000000000526001 REPLACED BY association reference set 845841000168104 Simponi Smartject 100 mg/mL injection solution, 1 mL injection device 20161130 +74849011000036102 Spray-Tish 0.118% nasal spray, 15 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1085401000168108 Spray-Tish 0.118% nasal spray, 15 mL, pump pack 20180228 +932724011000036104 clonazepam 2.5 mg/mL oral liquid, drop 900000000000526001 REPLACED BY association reference set 729091000168102 clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid 20151130 +923728011000036103 Omeprazole (Pharmacor) 20 mg capsule, 14, blister pack 900000000000526001 REPLACED BY association reference set 717101000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 14, blister pack 20150930 +77527011000036104 calcium (as carbonate) 320.3 mg + calcium (as lactate gluconate) 680 mg tablet: effervescent 900000000000526001 REPLACED BY association reference set 745561000168104 calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet 20160131 +156971000036108 Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 862231000168107 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60, bottle 20161231 +154281000036109 betamethasone (as sodium phosphate) 2.96 mg/mL + betamethasone (as acetate) 2.71 mg/mL injection, ampoule 900000000000526001 REPLACED BY association reference set 746311000168101 betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, ampoule 20160131 +86857011000036103 Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726741000168104 Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device 20151031 +923059011000036105 Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 746781000168106 Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +76187011000036101 Centrum tablet: film-coated 900000000000526001 REPLACED BY association reference set 833031000168100 Centrum film-coated tablet 20160930 +9051000036109 olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, 250 mL bag 900000000000526001 REPLACED BY association reference set 771771000168101 olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 250 mL bag 20160430 +82576011000036104 retinyl palmitate 0.054% ointment, 50 g 900000000000526001 REPLACED BY association reference set 694991000168102 retinol palmitate 0.099% ointment, 50 g 20150430 +60758011000036105 Duro-Tuss Dry Cough Lozenge lemon lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 996191000168108 Duro-Tuss Dry Cough Lozenge lemon lozenge, 2, blister pack 20170831 +78306011000036101 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 115 900000000000526001 REPLACED BY association reference set 833191000168100 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 115 20160930 +74737011000036107 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 821421000168108 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack, composite pack 20160831 +921845011000036100 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831941000168106 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack, composite pack 20160930 +37668011000036107 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses, tube 900000000000526001 REPLACED BY association reference set 861721000168109 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses, tube 20161231 +81727011000036102 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets 900000000000526001 REPLACED BY association reference set 871621000168107 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 10 x 5.2 g sachets 20170131 +11722011000036108 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041191000168104 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device 20171130 +139261000036101 Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006111000168106 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +716051000168108 meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, vial 900000000000526001 REPLACED BY association reference set 826761000168103 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, vial 20160930 +70151000036105 Byetta 5 microgram/0.02 mL injection: solution, 0.02 mL unit dose 900000000000526001 REPLACED BY association reference set 726761000168100 Byetta 5 microgram/dose injection solution, dose 20151031 +158931000036107 Budenofalk 2 mg/application enema, 2 x 1 application aerosol cans 900000000000526001 REPLACED BY association reference set 688071000168105 Budenofalk 2 mg/application enema, 2 x 14 applications 20150331 +44484011000036106 Rhinocort Aqueous 64 microgram/actuation nasal spray, 240 actuations, bottle 900000000000526001 REPLACED BY association reference set 730101000168100 Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations, pump packs 20151130 +51474011000036102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 710051000168106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 130 mL pouches 20151031 +711621000168100 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005711000168102 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +932864011000036109 Rivotril Drops 2.5 mg/mL oral liquid: solution, 10 mL 900000000000526001 REPLACED BY association reference set 729121000168103 Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL 20151130 +73259011000036108 Duodopa gel: intestinal, 7 x 1 mL bags 900000000000526001 REPLACED BY association reference set 720531000168101 Duodopa intestinal gel, 7 x 100 mL, bags 20151031 +2439011000036108 pancrelipase 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 2524011000036100 protease 20161130 +827911000168101 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845971000168101 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +74231000036104 Levetiracetam (Pfizer) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003601000168105 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, blister pack 20170930 +729901000168109 Citracal Plus D tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 860011000168107 Citracal Plus D film-coated tablet, 100, bottle 20161231 +28561000036103 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 900000000000526001 REPLACED BY association reference set 685971000168103 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 20150228 +36934011000036107 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses 900000000000526001 REPLACED BY association reference set 861711000168102 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 20 x 0.5 mL unit doses 20161231 +75341011000036107 Q fever inactivated vaccine 25 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 821581000168106 Q fever vaccine injection, 0.5 mL syringe 20160831 +51881000168109 Levitaccord 1000 mg 900000000000526001 REPLACED BY association reference set 1003781000168107 Levitaccord-1000 20170930 +25401000036105 tenofovir + emtricitabine + rilpivirine 900000000000526001 REPLACED BY association reference set 851441000168101 tenofovir disoproxil + emtricitabine + rilpivirine 20161130 +85082011000036106 tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694291000168108 tape plaster adhesive with silicone 4 cm x 1.5 m tape 20150331 +72940011000036107 Duodopa gel: intestinal 900000000000526001 REPLACED BY association reference set 720471000168102 Duodopa intestinal gel 20151031 +923394011000036100 Levetiracetam (SZ) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003721000168108 Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60 20170930 +139301000036107 Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005881000168104 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +920849011000036107 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 130 900000000000526001 REPLACED BY association reference set 862251000168101 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 130 20161231 +844821000168109 Zovirax 400 mg tablet, 100 900000000000526001 REPLACED BY association reference set 859561000168102 Zovirax Dispersible 400 mg tablet, 100 20161231 +36655011000036106 Lanoxin 500 microgram/2 mL injection: solution, 5 x 2 mL ampoules 900000000000526001 REPLACED BY association reference set 735061000168109 Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules 20151231 +140431000036104 Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial 900000000000526001 REPLACED BY association reference set 746881000168102 Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial 20160131 +74753011000036104 Azep 140 microgram/actuation nasal spray, 10 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 809591000168102 Azep 0.1% nasal spray, 10 mL, pump pack 20160630 +78281000036107 aflibercept 2 mg/0.05 mL injection, vial 900000000000526001 REPLACED BY association reference set 703501000168107 aflibercept 4 mg/0.1 mL injection, vial 20150630 +74749011000036104 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955121000168107 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 20170630 +925346011000036109 Pemzo 20 mg capsule, 15, bottle 900000000000526001 REPLACED BY association reference set 716391000168100 Pemzo 20 mg enteric capsule, 15, bottle 20150930 +82761011000036103 Questran 8 g powder for oral liquid, 50 sachets 900000000000526001 REPLACED BY association reference set 1032301000168103 Questran Lite 8 g powder for oral liquid, 50 sachets 20171130 +20244011000036102 Lomotil uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 851131000168101 Lomotil uncoated tablet, 20, blister pack 20161130 +177651000036105 Lyxumia 20 microgram/0.2 mL injection: solution, 0.2 mL unit dose 900000000000526001 REPLACED BY association reference set 719251000168109 Lyxumia 20 microgram/dose injection solution, dose 20150930 +933240111000036107 Omeprazole (Sandoz) 20 mg capsule, 30, bottle 900000000000526001 REPLACED BY association reference set 716191000168102 Omeprazole (Sandoz) 20 mg enteric capsule, 30, bottle 20150930 +922043011000036101 ascorbic acid + cupric oxide + D-alpha-tocopheryl acid succinate + zinc oxide 900000000000526001 REPLACED BY association reference set 757821000168101 ascorbic acid + d-alpha-tocopheryl acid succinate + zinc + copper 20160229 +11316011000036100 Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 838081000168107 Pneumovax-23 injection solution, 0.5 mL vial 20161031 +925336011000036105 Omepro 20 mg capsule, 30, bottle 900000000000526001 REPLACED BY association reference set 716601000168101 Omepro 20 mg enteric capsule, 30, bottle 20150930 +81617011000036103 glucose 5% (12.5 g/250 mL) injection, 30 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863741000168104 glucose monohydrate 5% (12.5 g/250 mL) injection, 30 x 250 mL bags 20170131 +251000168105 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 810401000168104 Actonel Combi D effervescent granules, 24 sachets 20160630 +75028011000036104 hepatitis B vaccine 20 microgram/mL injection, syringe 900000000000526001 REPLACED BY association reference set 825201000168103 hepatitis B adult vaccine 20 microgram/mL injection, syringe 20160930 +61132011000036105 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 861261000168109 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16, blister pack 20161231 +74748011000036107 Adacel injection suspension, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837531000168103 Adacel injection suspension, 5 x 0.5 mL vials 20161031 +933247391000036100 Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 728121000168108 Ovidrel 250 microgram/0.5 mL injection solution, 1 dose, injection device 20151031 +81049011000036105 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863761000168100 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 20170131 +26968011000036106 triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 15 g 900000000000526001 REPLACED BY association reference set 758231000168100 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment, 15 g 20160229 +91301000036106 Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial 900000000000526001 REPLACED BY association reference set 730041000168102 Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial 20151130 +155991000036102 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 100 900000000000526001 REPLACED BY association reference set 734011000168105 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100 20161231 +81048011000036102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863701000168101 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 20170131 +137891000036103 Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005971000168107 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule 20170930 +922135011000036109 iopromide 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695201000168103 iopromide 623 mg (iodine 300 mg)/mL injection, 75 mL bottle 20150430 +716081000168101 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack 900000000000526001 REPLACED BY association reference set 826791000168105 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack 20160930 +923915011000036106 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 996021000168105 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24, blister pack 20170831 +923898011000036105 Omeprazole (Pharmacor) 20 mg capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 717081000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 100, bottle 20150930 +708451000168103 triamcinolone acetonide 0.09% + neomycin sulfate 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops 900000000000526001 REPLACED BY association reference set 758311000168102 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops 20160229 +104221000036103 Irbesartan (Apo) 300 mg tablet, 30, bottle 900000000000526001 REPLACED BY association reference set 807851000168104 Irbesartan (Apo) 300 mg film-coated tablet, 30, bottle 20160630 +101161000036102 Victoza 18 mg/3 mL injection: solution, 3 x 3 mL cartridges 900000000000526001 REPLACED BY association reference set 748111000168103 Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices 20160131 +1085501000168109 Fluzone High-Dose injection suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 1122641000168103 Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes 20180430 +6990011000036109 Kaletra 400/100 oral liquid: solution 900000000000526001 REPLACED BY association reference set 689461000168103 Kaletra oral liquid solution, 5 mL 20150331 +47231000168101 Recombinate 500 IU 900000000000526001 REPLACED BY association reference set 710851000168104 Recombinate 20150831 +711401000168107 Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005041000168101 Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule 20170930 +51406011000036104 tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688901000168104 tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll 20150331 +57060011000036108 Difflam Lozenge honey and lemon sugar free lozenge, 24 900000000000526001 REPLACED BY association reference set 995741000168107 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24 20170831 +74294011000036104 Havrix 1440 ELISA units/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825011000168106 Havrix 1440 ELISA units/mL injection suspension, 1 mL vial 20160930 +80222011000036102 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872601000168107 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 20170131 +61961000168102 Fluoride Bumble Bee Bubble Gum (Laclede) 900000000000526001 REPLACED BY association reference set 932331000168103 Fluoride (Laclede) 20170531 +75522011000036100 Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 840651000168108 diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 5 x 0.5 mL vials 20161031 +48744011000036109 Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688891000168103 Hypafix (71443-0) 2.5 cm x 10 m tape 20150331 +74197011000036108 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955111000168100 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 20170630 +4985011000036107 ADT Booster injection: suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837311000168103 ADT Booster injection suspension, 0.5 mL syringe 20161031 +69319011000036108 Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 684691000168109 Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials 20150131 +54126011000036101 Logicin Rapid Relief menthol and eucalyptus lozenge 900000000000526001 REPLACED BY association reference set 861571000168100 Logicin Rapid Relief menthol and eucalyptus lozenge 20161231 +73796011000036102 Gardasil injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 822971000168107 Gardasil injection suspension, 0.5 mL vial 20160831 +925135011000036107 Omepro 20 mg capsule, 280, blister pack 900000000000526001 REPLACED BY association reference set 716571000168107 Omepro 20 mg enteric capsule, 280, blister pack 20150930 +42791000036102 glucose 75 g/300 mL oral liquid, 300 mL each 900000000000526001 REPLACED BY association reference set 692441000168106 glucose 75 g/300 mL oral liquid, 300 mL 20150331 +827901000168104 Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845901000168106 meningococcal C conjugate vaccine injection, 0.5 mL syringe 20161130 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826091000168108 Streptococcus pneumoniae type 5 conjugate antigen 20160930 +79718011000036100 Septopal Chain 7.5 mg implant, 1 bead, sachet 900000000000526001 REPLACED BY association reference set 684551000168100 Septopal Chain 7.5 mg implant, 30 beads, sachet 20150131 +987331000168108 Kanuma 2 mg/mL injection solution, 1 mL vial 900000000000526001 REPLACED BY association reference set 1013351000168103 Kanuma 20 mg/10 mL injection solution, 10 mL vial 20170930 +65619011000036109 Cepacol Plus with Anaesthetic Blackcurrant lozenge 900000000000526001 REPLACED BY association reference set 995351000168108 Cepacol Plus with Anaesthetic Blackcurrant lozenge 20170831 +67320011000036102 Disprin Max 500 mg dispersible tablet, 16 900000000000526001 REPLACED BY association reference set 804361000168102 Disprin Max 500 mg tablet, 16 20160630 +75504011000036103 diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837681000168103 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 10 x 0.5 mL syringes 20161031 +14223011000036100 Eskazole 400 mg chewable tablet, 60 900000000000526001 REPLACED BY association reference set 844091000168103 Eskazole 400 mg tablet, 60 20161031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836911000168101 Streptococcus pneumoniae type 17F polysaccharide antigen 20161031 +80644011000036106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags 900000000000526001 REPLACED BY association reference set 868181000168103 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags 20170131 +711511000168106 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004911000168100 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +72611000036104 mesalazine 1 g granules, 100 sachets 900000000000526001 REPLACED BY association reference set 28305011000036102 mesalazine 1 g modified release granules, 100 sachets 20180228 +59719011000036106 Cepacol Cough Plus Lemon lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995281000168105 Cepacol Cough Plus Lemon lozenge, 16, blister pack 20170831 +69368011000036104 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 863651000168106 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 20170131 +35222011000036102 buprenorphine 2 mg tablet, 28 900000000000526001 REPLACED BY association reference set 685761000168106 buprenorphine 2 mg sublingual tablet, 28 20150228 +152501000036109 Lax-Sachets solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674301000168100 Lax-Sachets powder for oral liquid, 30 sachets 20141031 +60653011000036105 Paxyl 2.5% / 0.1% spray solution, 125 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 861671000168101 Paxyl 2.5% / 0.1% spray solution, 125 mL, pump actuated aerosol 20161231 +669611000168102 Allmercap 20 mg/mL oral liquid suspension, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 845411000168101 Allmercap 20 mg/mL oral liquid suspension, 100 mL, bottle 20161130 +84270011000036103 Wagner Magnesium Forte 400 capsules: hard, 200, bottle 900000000000526001 REPLACED BY association reference set 750271000168100 Magnesium Forte 400 (Wagner) hard capsule, 200, bottle 20160131 +19618011000036101 Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083721000168107 Logicin Rapid Relief Nasal 0.05% nasal spray, 18 mL, pump pack 20180228 +827881000168101 Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 845881000168109 meningococcal C conjugate vaccine injection, 0.5 mL syringe 20161130 +75005011000036101 cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine + cholera toxin B subunit recombinant oral vaccine 900000000000526001 REPLACED BY association reference set 821861000168100 cholera vaccine 20160831 +75396011000036106 Varicella zoster live attenuated vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 831981000168101 varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL vials], 1 pack 20160930 +922075011000036104 ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet 900000000000526001 REPLACED BY association reference set 829691000168109 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet 20160930 +923908011000036103 Omeprazole (Pharmacor) 20 mg capsule, 7, bottle 900000000000526001 REPLACED BY association reference set 717421000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 7, bottle 20150930 +924702011000036106 Omepro 20 mg capsule, 140 900000000000526001 REPLACED BY association reference set 716421000168107 Omepro 20 mg enteric capsule, 140 20150930 +74266011000036109 Infanrix Hexa injection: suspension, 10 packs 900000000000526001 REPLACED BY association reference set 841001000168107 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack 20161031 +54047011000036106 Duro-Tuss Dry Cough Lozenge lemon lozenge 900000000000526001 REPLACED BY association reference set 996161000168101 Duro-Tuss Dry Cough Lozenge lemon lozenge 20170831 +81615011000036108 glucose 5% (5 g/100 mL) injection, 60 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863971000168108 glucose monohydrate 5% (5 g/100 mL) injection, 60 x 100 mL bags 20170131 +75012011000036107 rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection, vial 900000000000526001 REPLACED BY association reference set 826311000168102 rubella live vaccine injection, vial 20160930 +77448011000036109 alpha tocopherol + ascorbic acid + betacarotene + biotin + calcium hydrogen phosphate dihydrate + chromic chloride + colecalciferol + cupric oxide + cyanocobalamin + ferrous fumarate + folic acid + iodine + magnesium oxide + manganese sulfate monohydrate + molybdenum + nicotinamide + calcium pantothenate + phytomenadione + potassium chloride + pyridoxine + retinol acetate + riboflavin + selenium + thiamine + zinc oxide 900000000000526001 REPLACED BY association reference set 833011000168105 betacarotene + retinol acetate + colecalciferol + dl-alpha-tocopheryl + thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + folic acid + cyanocobalamin + ascorbic acid + biotin + phytomenadione + iron + calcium + magnesium + zinc + iodine + potassium + copper + chromium + manganese + phosphorus + molybdenum + chloride + selenium 20160930 +74936011000036103 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825761000168107 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial 20160930 +932842011000036108 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 766151000168106 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack 20160331 +67425011000036100 Aqium 66% gel, 70 mL 900000000000526001 REPLACED BY association reference set 730461000168106 Aqium 66% gel, 70 mL 20151130 +665011000168108 Codeine Phosphate (Aspen) 30 mg uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 834901000168106 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20 20161031 +921432011000036101 Centrum Select 50 Plus tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 843241000168104 Centrum Select 50 Plus film-coated tablet, 30 20161031 +700411000168101 ADT Booster injection suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837361000168100 ADT Booster injection suspension, 5 x 0.5 mL syringes 20161031 +72151000036109 salicylic acid 2% conditioner, 25 mL 900000000000526001 REPLACED BY association reference set 764261000168109 salicylic acid 2% conditioner, 25 mL 20160331 +78252011000036104 iopromide 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection, 10 x 30 mL vials 900000000000526001 REPLACED BY association reference set 695561000168100 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 30 mL vials 20150430 +941601000168105 Metformin (AS) 1 g film-coated tablet, 10, blister pack 900000000000526001 REPLACED BY association reference set 949491000168101 Metformin 1000 (AS) 1 g film-coated tablet, 10, blister pack 20170630 +33665011000036107 bee venom 550 microgram injection, vial 900000000000526001 REPLACED BY association reference set 758801000168106 honey bee venom 550 microgram injection, vial 20160229 +833771000168100 somatropin + inert substance 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 21295011000036100 somatropin 20170731 +154911000036108 Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated 900000000000526001 REPLACED BY association reference set 862171000168104 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet 20161231 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826031000168109 Streptococcus pneumoniae type 19F conjugate antigen 20160930 +56717011000036106 Duro-Tuss Dry Cough Lozenge lemon lozenge, 24 900000000000526001 REPLACED BY association reference set 996211000168109 Duro-Tuss Dry Cough Lozenge lemon lozenge, 24 20170831 +844451000168104 Zovirax 200 mg tablet, 90, bottle 900000000000526001 REPLACED BY association reference set 859461000168103 Zovirax Dispersible 200 mg tablet, 90, bottle 20161231 +728571000168100 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006051000168108 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +158321000036106 Oxycontin Reformulation 80 mg modified release tablet 900000000000526001 REPLACED BY association reference set 6514011000036109 Oxycontin 80 mg modified release tablet 20170731 +38712011000036108 colistimethate 150 mg injection, 1 vial 900000000000526001 REPLACED BY association reference set 817481000168106 colistin 150 mg (4.5 million units) injection, 1 vial 20160731 +71331000036109 carbomer 0.2% + triglyceride lipids 1% eye gel, 10 g 900000000000526001 REPLACED BY association reference set 719561000168108 carbomer-980 0.2% + triglyceride lipids 1% eye gel, 10 g 20150930 +86856011000036101 Aqueous Cream (David Craig) cream, 500 g, jar 900000000000526001 REPLACED BY association reference set 768321000168102 Aqueous Cream APF (David Craig) cream, 500 g, jar 20160331 +26601011000036104 pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 838071000168109 pneumococcal 23 valent vaccine injection, 0.5 mL vial 20161031 +860181000168100 boric acid + calcium + colecalciferol + magnesium citrate nonahydrate + magnesium oxide heavy + manganese sulfate monohydrate + phytomenadione 900000000000526001 REPLACED BY association reference set 932941000168106 colecalciferol + calcium + magnesium + manganese + phytomenadione + boron 20170531 +930593011000036104 Dermasoothe Antiseptic cream, 50 g 900000000000526001 REPLACED BY association reference set 861341000168104 Dermasoothe Antiseptic cream, 50 g 20161231 +51959011000036102 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream 900000000000526001 REPLACED BY association reference set 695821000168108 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream 20150430 +140421000036101 Granisetron (Sandoz) 1 mg/mL injection: concentrated, 5 x 1 mL vials 900000000000526001 REPLACED BY association reference set 747061000168103 Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials 20160131 +81138011000036105 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 868161000168107 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 20170131 +105541000036105 aflibercept 2 mg/0.05 mL injection, 0.05 mL syringe 900000000000526001 REPLACED BY association reference set 703571000168102 aflibercept 4 mg/0.1 mL injection, 0.1 mL syringe 20150630 +61266011000036100 Clozole Vaginal Cream (Meditab) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715861000168108 Clozole (Meditab) 2% vaginal cream, 20 g, tube 20150930 +33344011000036105 Soflax tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 733641000168104 Soflax (Ascent Pharma) film-coated tablet, 100 20151130 +806231000168107 Repatha 140 mg/mL injection: solution, 2 x 1 mL injection devices 900000000000526001 REPLACED BY association reference set 846411000168108 Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices 20161130 +12194011000036104 Atropt 1% eye drops solution, 15 mL 900000000000526001 REPLACED BY association reference set 850971000168107 Atropt 1% eye drops solution, 15 mL 20161130 +924885011000036101 Pemzo 20 mg capsule, 5 900000000000526001 REPLACED BY association reference set 716781000168104 Pemzo 20 mg enteric capsule, 5 20150930 +77580011000036105 iopromide 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695251000168104 iopromide 623 mg (iodine 300 mg)/mL injection, 100 mL bottle 20150430 +923732011000036103 Omeprazole (Pharmacor) 20 mg capsule, 50, blister pack 900000000000526001 REPLACED BY association reference set 717281000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 50, blister pack 20150930 +78315011000036105 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 8 900000000000526001 REPLACED BY association reference set 833041000168109 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 8 20160930 +924870011000036104 Omepro 20 mg capsule, 15 900000000000526001 REPLACED BY association reference set 716461000168102 Omepro 20 mg enteric capsule, 15 20150930 +75036011000036100 Varicella zoster live attenuated vaccine 19 400 PFU injection, vial 900000000000526001 REPLACED BY association reference set 831781000168103 varicella-zoster live vaccine 19 400 PFU injection, vial 20160930 +74253011000036107 Cervarix injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823161000168109 Cervarix injection suspension, 0.5 mL syringe 20160831 +36815011000036109 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL 900000000000526001 REPLACED BY association reference set 835491000168106 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL 20161031 +60571011000036102 Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 721751000168109 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL, bottle 20151031 +702801000168102 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726201000168109 PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets 20151031 +6647011000036101 Panadeine Forte uncoated tablet 900000000000526001 REPLACED BY association reference set 835831000168109 Panadeine Forte uncoated tablet 20161031 +181691000036101 Diprosone 0.05% lotion, 30 mL 900000000000526001 REPLACED BY association reference set 1054641000168100 Diprosone 0.05% lotion, 30 mL 20171231 +73818011000036100 Engerix-B Adult 20 microgram/mL injection suspension, syringe 900000000000526001 REPLACED BY association reference set 825211000168100 Engerix-B Adult 20 microgram/mL injection suspension, syringe 20160930 +82451011000036100 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, bag 900000000000526001 REPLACED BY association reference set 872381000168105 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, bag 20170131 +74729011000036102 Cervarix injection suspension, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823231000168106 Cervarix injection suspension, 20 x 0.5 mL syringes 20160831 +73663011000036103 poliomyelitis virus type 3 (Saukett) inactivated vaccine 900000000000526001 REPLACED BY association reference set 836541000168109 poliovirus type 3 inactivated antigen 20161031 +81053011000036105 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 900000000000526001 REPLACED BY association reference set 863731000168108 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 20170131 +29271000036100 Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827161000168100 Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160930 +734101000168106 Centavite Adult tablet: film-coated 900000000000526001 REPLACED BY association reference set 842911000168101 Centavite Adult film-coated tablet 20161031 +70122011000036104 calcium gluconate monohydrate 10% (5 g/50 mL) injection, vial 900000000000526001 REPLACED BY association reference set 684701000168109 calcium gluconate monohydrate 4.765 g/50 mL injection, vial 20150131 +924203011000036107 omeprazole 20 mg capsule, 14 900000000000526001 REPLACED BY association reference set 75871000036104 omeprazole 20 mg enteric capsule, 14 20150930 +930673011000036101 Menveo injection: suspension, 1 pack 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826791000168105 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack 20160930 +76027011000036102 Sorbolene Cream with Glycerin (Orion) cream 900000000000526001 REPLACED BY association reference set 705721000168107 Sorbolene Cream with Glycerin (Orion) cream 20150731 +51821000036103 Valvala 1 g film-coated tablet, 50 900000000000526001 REPLACED BY association reference set 1009771000168107 Valvala-1000 1 g film-coated tablet, 50 20170930 +6305011000036108 Dapa-Tabs 2.5 mg tablet 900000000000526001 REPLACED BY association reference set 935671000168101 Dapa-Tabs 2.5 mg film-coated tablet 20170531 +924177011000036107 pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827431000168104 pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe 20160930 +74806011000036104 Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824791000168104 Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe 20160930 +44098011000036106 Zovirax 400 mg dispersible tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 859571000168108 Zovirax Dispersible 400 mg tablet, 100, blister pack 20161231 +927337011000036107 lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 50 g 900000000000526001 REPLACED BY association reference set 863501000168106 lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 50 g 20170131 +924468011000036104 Panadol Children's 3+ Years 120 mg tablet: chewable 900000000000526001 REPLACED BY association reference set 721681000168107 Panadol Children's 3+ Years Cherry 120 mg chewable tablet 20151031 +80665011000036102 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 900000000000526001 REPLACED BY association reference set 872241000168106 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 20170131 +80521011000036103 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863921000168107 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags 20170131 +74242011000036102 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825541000168104 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +923729011000036106 Omeprazole (Pharmacor) 20 mg capsule, 15, blister pack 900000000000526001 REPLACED BY association reference set 717151000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 15, blister pack 20150930 +77170011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, jar 900000000000526001 REPLACED BY association reference set 705901000168100 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL, jar 20150731 +82915011000036108 tenofovir + emtricitabine + efavirenz 900000000000526001 REPLACED BY association reference set 851421000168107 tenofovir disoproxil + emtricitabine + efavirenz 20161130 +45313011000036107 teriparatide 20 microgram injection, 2.4 mL cartridge 900000000000526001 REPLACED BY association reference set 726921000168107 teriparatide 20 microgram/dose injection, dose 20151031 +49446011000036105 Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689221000168109 Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll 20150331 +933231571000036100 Naropin 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004971000168108 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +689581000168106 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 900000000000526001 REPLACED BY association reference set 831291000168109 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 20160930 +50931011000036108 tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689191000168103 tape plaster adhesive elastic 5 cm x 2.5 m tape 20150331 +920359011000036107 Ostelin Vitamin D and Calcium tablet: film-coated, 130 900000000000526001 REPLACED BY association reference set 862261000168104 Ostelin Vitamin D and Calcium film-coated tablet, 130 20161231 +87640011000036105 HCU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 725011000168108 HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 20151031 +713341000168103 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1005421000168100 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 100 mL bag 20170930 +131671000036108 Laxacon solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674271000168102 Laxacon powder for oral liquid, 30 sachets 20141031 +74962011000036106 meningococcal group A polysaccharide vaccine + meningococcal group C polysaccharide vaccine + meningococcal group Y polysaccharide vaccine + meningococcal group W135 polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 827681000168100 meningococcal quadrivalent polysaccharide vaccine 20160930 +171000168107 Femazole 150 mg capsule: hard, 1 capsule 900000000000526001 REPLACED BY association reference set 685551000168101 Femazole Duo 150 mg hard capsule, 1 20150228 +59677011000036102 Anti Fungal V 6 Day (Amcal) 1% cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 715021000168107 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g, tube 20150930 +71491000036100 Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 746791000168109 Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +926122011000036100 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 825491000168108 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20160930 +925619011000036101 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825441000168100 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160930 +108741000036107 dressing hydrogel 1 cm x 50 cm ribbon, 20 900000000000526001 REPLACED BY association reference set 1056231000168103 dressing hydrophobic 1 cm x 50 cm ribbon, 20 20171231 +74890011000036100 Comvax injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832321000168108 Comvax injection suspension, 0.5 mL vial 20160930 +698461000168108 meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 822821000168103 meningococcal B 4 component vaccine injection, 10 x 0.5 mL syringes 20160831 +638521000168108 Albey Venom Albumin Saline (inert substance) diluent, 1.8 mL vial 900000000000526001 REPLACED BY association reference set 758831000168104 Albumin Saline (Stallergenes) (inert substance) diluent, 1.8 mL vial 20160229 +31512011000036100 magnesium carbonate heavy 900000000000527005 SAME AS association reference set 828021000168105 magnesium carbonate hydrate 20160930 +57367011000036105 Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721431000168108 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL 20151031 +73883011000036107 Vaqta Adult 50 units/mL injection suspension, syringe 900000000000526001 REPLACED BY association reference set 825151000168106 Vaqta Adult 50 units/mL injection suspension, syringe 20160930 +684481000168108 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 10 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693501000168102 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 20150331 +702801000168102 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726171000168105 PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets 20151031 +933230091000036102 Cardiprin 100 mg dispersible tablet, 30, blister pack 900000000000526001 REPLACED BY association reference set 803981000168105 Cardiprin 100 mg tablet, 30, blister pack 20160630 +1085471000168103 influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1122611000168102 influenza trivalent geriatric vaccine 2018 injection, 0.5 mL syringe 20180430 +73667011000036107 rotavirus pentavalent live reassortant oral vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 822251000168107 rotavirus type G2 live antigen 20160831 +176251000168104 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 125 mL sachet 900000000000526001 REPLACED BY association reference set 725071000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 125 mL pouch 20151031 +75350011000036103 rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 826361000168104 rubella live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL vials], 1 pack 20160930 +86080011000036109 Kevtam 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 938311000168105 Kevtam-1000 1 g film-coated tablet, 60, blister pack 20170930 +69512011000036101 Cepacol Antibacterial Honey and Lemon lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995071000168102 Cepacol Antibacterial Honey and Lemon lozenge, 16, blister pack 20170831 +53829011000036101 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge 900000000000526001 REPLACED BY association reference set 861361000168100 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge 20161231 +14621000036109 Clinoleic 20% injection: emulsion, 500 mL bag 900000000000526001 REPLACED BY association reference set 771841000168102 Clinoleic 20% injection emulsion, 500 mL bag 20160430 +61765011000036100 dexchlorpheniramine + paracetamol + pseudoephedrine 900000000000526001 REPLACED BY association reference set 44924011000036104 paracetamol + pseudoephedrine + chlorphenamine 20170731 +5915011000036103 Zovirax 200 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 859181000168101 Zovirax Dispersible 200 mg tablet 20161231 +266871000168101 Citrulline containing 1 g citrulline oral liquid: powder for, 4 g sachet 900000000000527005 SAME AS association reference set 266091000168108 Citrulline 1000 containing 1 g citrulline powder for oral liquid, 4 g sachet 20151130 +86871011000036109 Calcia-1000 1 g (calcium 1 g) chewable tablet, 30, bottle 900000000000526001 REPLACED BY association reference set 859951000168105 Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30, bottle 20161231 +127351000036100 TYR Cooler 10 oral liquid: solution, 30 x 87 mL sachets 900000000000526001 REPLACED BY association reference set 725871000168106 TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches 20151031 +14581000036109 Clinoleic 20% injection: emulsion, 100 mL bag 900000000000526001 REPLACED BY association reference set 771721000168102 Clinoleic 20% injection emulsion, 100 mL bag 20160430 +74798011000036100 Otrivin Junior 0.05% nasal spray, 10 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085321000168109 Otrivin Junior 0.05% nasal spray, 10 mL, pump pack 20180228 +11717011000036101 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041141000168107 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device 20171130 +71866011000036105 aspirin 500 mg dispersible tablet, 6 900000000000526001 REPLACED BY association reference set 804381000168106 aspirin 500 mg tablet, 6 20160630 +923730011000036102 Omeprazole (Pharmacor) 20 mg capsule, 30, blister pack 900000000000526001 REPLACED BY association reference set 717231000168108 Omeprazole (Pharmacor) 20 mg enteric capsule, 30, blister pack 20150930 +921438011000036103 Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 696371000168105 Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles 20150430 +80671011000036109 Gastrolyte orange powder for oral liquid, 10 x 5.2 g sachets 900000000000526001 REPLACED BY association reference set 871631000168105 Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets 20170131 +80636011000036102 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags 900000000000526001 REPLACED BY association reference set 867941000168106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags 20170131 +73672011000036103 cholera toxin B subunit recombinant oral vaccine 900000000000526001 REPLACED BY association reference set 821801000168101 cholera toxin B subunit 20160831 +73666011000036109 rotavirus live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 822851000168106 rotavirus type G1P1A(8) live antigen 20160831 +31579011000036101 methyl aminolevulinate hydrochloride 900000000000526001 REPLACED BY association reference set 999161000168105 methyl aminolevulinate 20170831 +929118011000036100 Picolax powder for oral liquid, 20 x 20 g sachets 900000000000526001 REPLACED BY association reference set 833481000168109 Picolax powder for oral liquid, 20 x 20 g sachets 20160930 +177901000036104 Lyxumia 20 microgram/0.2 mL injection: solution, 2 x 14 unit doses 900000000000526001 REPLACED BY association reference set 719351000168104 Lyxumia 20 microgram/dose injection solution, 2 x 14 doses 20150930 +67156011000036107 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 872011000168101 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 20170131 +665481000168107 PKU Cooler20 Gold oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725711000168106 PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches 20151031 +74759011000036101 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 832001000168101 Zostavax (10 x 19 400 vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack, composite pack 20160930 +933220831000036109 ropivacaine hydrochloride monohydrate 200 mg/20 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 1005031000168105 ropivacaine hydrochloride 200 mg/20 mL injection, ampoule 20170930 +78229011000036108 glucose 25 g/50 mL injection, 50 mL syringe 900000000000526001 REPLACED BY association reference set 872051000168100 glucose monohydrate 25 g/50 mL injection, 50 mL syringe 20170131 +53665011000036100 Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 5 mL 900000000000526001 REPLACED BY association reference set 721631000168106 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 5 mL 20151031 +19944011000036103 Creon Forte 25 000 units modified release capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 847581000168101 Creon Forte enteric capsule, 100, bottle 20161130 +70123011000036106 calcium gluconate monohydrate 10% (1 g/10 mL) injection, vial 900000000000526001 REPLACED BY association reference set 684651000168104 calcium gluconate monohydrate 953 mg/10 mL injection, vial 20150131 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836931000168106 Streptococcus pneumoniae type 19A polysaccharide antigen 20161031 +146201000036109 Tecfidera 120 mg capsule: modified release, 14, blister pack 900000000000526001 REPLACED BY association reference set 756261000168109 Tecfidera 120 mg enteric capsule, 14, blister pack 20160229 +73880011000036104 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825101000168107 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 20160930 +923450011000036105 Omeprazole (Pharmacor) 20 mg capsule, 56 900000000000526001 REPLACED BY association reference set 717331000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 56 20150930 +375541000168103 TYR Cooler 10 oral liquid: solution, 87 mL sachet 900000000000526001 REPLACED BY association reference set 725851000168102 TYR Cooler 10 oral liquid solution, 87 mL pouch 20151031 +56710011000036105 Difflam Lozenge raspberry sugar free lozenge, 2 900000000000526001 REPLACED BY association reference set 995911000168106 Difflam Lozenge Raspberry Sugar Free lozenge, 2 20170831 +181501000036105 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835921000168103 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20, blister pack 20161031 +81217011000036100 acetate + calcium chloride + citric acid + magnesium chloride + potassium chloride + sodium chloride 900000000000526001 REPLACED BY association reference set 834131000168102 sodium chloride + potassium chloride + calcium chloride dihydrate + magnesium chloride + acetate + citric acid 20161031 +873201000168100 morphine sulfate 30 mg tablet, 20 900000000000526001 REPLACED BY association reference set 27054011000036102 morphine sulfate pentahydrate 30 mg tablet, 20 20170430 +12083011000036105 Cardiprin 100 mg dispersible tablet, 90 900000000000526001 REPLACED BY association reference set 804031000168107 Cardiprin 100 mg tablet, 90 20160630 +923088011000036105 Omeprazole (Pharmacor) 20 mg capsule 900000000000526001 REPLACED BY association reference set 717051000168105 Omeprazole (Pharmacor) 20 mg enteric capsule 20150930 +53699011000036101 Disprin Forte dispersible tablet 900000000000526001 REPLACED BY association reference set 804141000168104 Disprin Forte tablet 20160630 +823891000168106 exenatide 2 mg modified release injection [1 cartridge] (&) inert substance diluent [1 cartridge], 1 pack 900000000000526001 REPLACED BY association reference set 833281000168105 exenatide 2 mg/dose + inert substance modified release injection, 1 dual chamber device 20160930 +35693011000036101 carbomer-974 900000000000526001 REPLACED BY association reference set 718701000168108 carbomer-974P 20150930 +922538011000036109 ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 15 900000000000526001 REPLACED BY association reference set 829711000168107 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 15 20160930 +82567011000036107 potassium nitrate 25% + silver nitrate 75% stick, 100 900000000000526001 REPLACED BY association reference set 722901000168104 silver nitrate 75% + potassium nitrate 25% stick, 100 20151031 +14050011000036102 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715291000168102 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g 20150930 +83475011000036109 triglycerides long chain with glucose polymer oral liquid, 18 x 250 mL cans 900000000000526001 REPLACED BY association reference set 745341000168106 triglycerides long chain with glucose polymer oral liquid, 18 x 250 mL cartons 20160131 +160471000036105 Oxycontin Reformulation 80 mg modified release tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 929125011000036100 Oxycontin 80 mg modified release tablet, 28, blister pack 20170731 +77394011000036104 Centrum tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 833151000168105 Centrum film-coated tablet, 60, bottle 20160930 +41229011000036107 Keppra 1 g tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 721131000168104 Keppra-1000 1 g film-coated tablet, 100 20151031 +73670011000036102 tetanus toxoid vaccine 900000000000526001 REPLACED BY association reference set 2638011000036103 tetanus toxoid 20161031 +81286011000036100 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 867801000168104 glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 20170131 +26688011000036109 entecavir monohydrate 1 mg tablet, 30 900000000000526001 REPLACED BY association reference set 829461000168104 entecavir 1 mg tablet, 30 20160930 +57064011000036103 Difflam Lozenge orange sugar free lozenge, 24 900000000000526001 REPLACED BY association reference set 995841000168101 Difflam Lozenge Orange Sugar Free lozenge, 24 20170831 +703051000168101 Fluarix Tetra 2015 injection: suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 709801000168107 Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes 20150731 +18870011000036100 Kenacomb Otic ear drops: solution, 7.5 mL, bottle 900000000000526001 REPLACED BY association reference set 758351000168101 Kenacomb Otic ear drops solution, 7.5 mL, bottle 20160229 +74418011000036106 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845991000168100 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +4670011000036108 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet 900000000000526001 REPLACED BY association reference set 834781000168100 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet 20161031 +930117011000036104 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge 900000000000526001 REPLACED BY association reference set 861281000168100 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge 20161231 +711841000168107 Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005101000168104 Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +76802011000036105 Centrum tablet: film-coated, 115 900000000000526001 REPLACED BY association reference set 833201000168102 Centrum film-coated tablet, 115 20160930 +50498011000036105 PKU Cooler15 Orange oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725651000168103 PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 20151031 +711871000168100 Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005161000168103 Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +1085511000168107 Fluzone High-Dose injection suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 1122651000168101 Fluzone High-Dose 2018 injection suspension, 5 x 0.5 mL syringes 20180430 +73664011000036101 poliomyelitis virus type 3 (Sabin strain (Leon 12a1b)) live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 838031000168106 poliovirus type 3 live antigen 20161031 +55665011000036105 Clotrimazole 6 Day (Guardian) 1% cream, 20 g 900000000000526001 REPLACED BY association reference set 715191000168105 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g 20150930 +80655011000036108 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags 900000000000526001 REPLACED BY association reference set 868481000168109 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags 20170131 +688801000168109 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 831051000168107 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 20160930 +49445011000036103 Hypafix (71443-1) 5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688961000168103 Hypafix (71443-1) 5 cm x 10 m tape, 1 roll 20150331 +74721011000036101 Gardasil injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 823001000168109 Gardasil injection suspension, 0.5 mL vial 20160831 +732681000168103 Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules 900000000000526001 REPLACED BY association reference set 747031000168106 Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 20160131 +80226011000036103 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868441000168104 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 20170131 +78327011000036109 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 60 900000000000526001 REPLACED BY association reference set 861981000168105 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 60 20161231 +711161000168101 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1005871000168102 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag 20170930 +823941000168107 Bydureon (4 x 2 mg cartridges, 4 x inert diluent cartridges), 1 pack, dual chamber composite pack 900000000000526001 REPLACED BY association reference set 833361000168105 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices 20160930 +82434011000036101 amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 125 mL can 900000000000526001 REPLACED BY association reference set 724921000168101 amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle 20151031 +814431000168101 Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, bottles 900000000000526001 REPLACED BY association reference set 1085551000168108 Nasonex Aqueous 50 microgram/actuation nasal spray, 2 x 140 actuations, pump packs 20180228 +83986011000036106 Diacol tablet, 32 900000000000526001 REPLACED BY association reference set 900261000168107 Diacol tablet, 32 20170331 +76554011000036107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL 900000000000526001 REPLACED BY association reference set 705891000168104 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 500 mL 20150731 +35134011000036106 morphine hydrochloride 2 mg/mL oral liquid, 100 mL 900000000000526001 REPLACED BY association reference set 872701000168101 morphine hydrochloride 2 mg/mL oral liquid, 100 mL 20170131 +75523011000036107 meningococcal group C conjugate vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 826421000168104 meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20160930 +85057011000036102 Glycoprep powder for oral liquid, 200 g, sachet 900000000000526001 REPLACED BY association reference set 851571000168107 Glycoprep powder for oral liquid, 200 g sachet 20161130 +711411000168105 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005061000168102 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +75027011000036100 hepatitis B vaccine 10 microgram/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 825511000168103 hepatitis B child vaccine 10 microgram/0.5 mL injection, vial 20160930 +663141000168107 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 900000000000526001 REPLACED BY association reference set 833571000168105 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 20160930 +761221000168101 diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 8 900000000000526001 REPLACED BY association reference set 851091000168103 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 8 20161130 +60988011000036107 Logicin Rapid Relief menthol and eucalyptus lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 861591000168104 Logicin Rapid Relief menthol and eucalyptus lozenge, 16, blister pack 20161231 +921855011000036102 Macu-Vision tablet: film-coated, 90, bottle 900000000000526001 REPLACED BY association reference set 757931000168107 Macu-Vision film-coated tablet, 90, bottle 20160229 +84609011000036104 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724891000168106 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without phenylalanine and tyrosine, and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles 20151031 +920655011000036104 Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90, bottle 900000000000526001 REPLACED BY association reference set 949371000168109 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, bottle 20170630 +73877011000036106 BCG Vaccine (Sanofi Pasteur) (Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg) powder for injection, 1.5 mg vial 900000000000526001 REPLACED BY association reference set 822561000168106 BCG Vaccine (Sanofi Pasteur) (Mycobacterium bovis (BCG) live vaccine) powder for injection, 1.5 mg vial 20160831 +80158011000036103 Metomax capsule 900000000000526001 REPLACED BY association reference set 867291000168109 Metomax capsule 20170131 +702631000168105 diphtheria toxoid vaccine 2 Lf/0.5 mL + tetanus toxoid vaccine 2 Lf/0.5 mL injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837401000168109 diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 10 x 0.5 mL vials 20161031 +74923011000036107 Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1082951000168107 Rhinocort Hayfever 32 microgram/actuation nasal spray, 60 actuations, pump pack 20180228 +22851000036100 bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 758841000168108 honey bee venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 20160229 +74296011000036107 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824981000168100 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +77334011000036105 Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 10 x 200 mL bottles 900000000000526001 REPLACED BY association reference set 695801000168104 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles 20150430 +726911000168100 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 1 dose, injection device 900000000000526001 REPLACED BY association reference set 881211000168109 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device 20170228 +923902011000036101 Omeprazole (Pharmacor) 20 mg capsule, 30, bottle 900000000000526001 REPLACED BY association reference set 717241000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 30, bottle 20150930 +41218011000036105 Voluven 6% / 0.9% injection solution, 10 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 1013531000168104 Voluven injection solution, 10 x 500 mL bottles 20170930 +1021201000168104 Salofalk 1 g granules, 150 sachets 900000000000526001 REPLACED BY association reference set 1084201000168108 Salofalk 1 g modified release granules, 150 sachets 20180228 +63254011000036106 lignocaine hydrochloride anhydrous 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2 900000000000526001 REPLACED BY association reference set 861371000168106 lidocaine (lignocaine) hydrochloride monohydrate 4 mg + benzydamine hydrochloride 3 mg + dichlorobenzyl alcohol 1.2 mg lozenge, 2 20161231 +6864011000036107 Subutex 400 microgram tablet 900000000000526001 REPLACED BY association reference set 685801000168103 Subutex 400 microgram sublingual tablet 20150228 +83721000036102 aspirin 300 mg dispersible tablet, 6 900000000000526001 REPLACED BY association reference set 804321000168107 aspirin 300 mg tablet, 6 20160630 +711061000168100 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005971000168107 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 10 mL ampoule 20170930 +77150011000036105 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, jar 900000000000526001 REPLACED BY association reference set 705861000168106 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, jar 20150731 +113121000036108 citric acid 12 g + magnesium oxide 3.5 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 16.1 g sachet 900000000000526001 REPLACED BY association reference set 902081000168108 sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 16.1 g sachet 20170331 +140351000036104 Menitorix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 846121000168109 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20161130 +82676011000036109 Synflorix 16 microgram injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827601000168108 Synflorix injection suspension, 0.5 mL syringe 20160930 +7593011000036109 Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726341000168100 Norditropin Nordiflex 5 mg/1.5 mL injection solution 20151031 +700381000168104 ADT Booster injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837331000168108 ADT Booster injection suspension, 0.5 mL syringe 20161031 +134281000036105 Imojev (Japanese encephalitis virus live vaccine) powder for injection, vial 900000000000526001 REPLACED BY association reference set 821511000168100 Imojev (Japanese encephalitis live vaccine) powder for injection, vial 20160831 +70321000036101 Salofalk 500 mg granules, 500 mg sachet 900000000000526001 REPLACED BY association reference set 1084031000168105 Salofalk 500 mg modified release granules, 500 mg sachet 20180228 +73645011000036105 Japanese encephalitis inactivated vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 821671000168107 Japanese encephalitis virus (vero cell-derived) inactivated antigen 20160831 +74884011000036106 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 832261000168107 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +17858011000036106 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041281000168109 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device 20171130 +1021211000168101 Salofalk 1 g granules, 150 sachets 900000000000526001 REPLACED BY association reference set 1084211000168106 Salofalk 1 g modified release granules, 150 sachets 20180228 +933225331000036106 Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726581000168103 Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL 20151031 +77139011000036103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg, jar 900000000000526001 REPLACED BY association reference set 705931000168107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg, jar 20150731 +75392011000036107 hepatitis B vaccine 10 microgram/mL injection, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825851000168100 hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL syringes 20160930 +77577011000036103 iopromide 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695661000168104 iopromide 769 mg (iodine 370 mg)/mL injection, 75 mL bottle 20150430 +139071000036100 Bydureon (4 x 2 mg vials, 4 x inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 833921000168104 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs 20160930 +73379011000036102 pancreatic extract 40 000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847311000168102 lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule 20161130 +77557011000036100 glucose 25 g/50 mL injection, syringe 900000000000526001 REPLACED BY association reference set 872031000168106 glucose monohydrate 25 g/50 mL injection, syringe 20170131 +13614011000036106 Colazide 750 mg capsule, 180 900000000000526001 REPLACED BY association reference set 932491000168108 Colazide 750 mg hard capsule, 180 20170531 +74282011000036107 Twinrix injection suspension, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 824591000168106 Twinrix injection suspension, 10 x 1 mL syringes 20160930 +85405011000036105 Extraneal 7.5% dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872301000168102 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 20170131 +73650011000036104 meningococcal group C polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 827361000168102 Neisseria meningitidis group C polysaccharide antigen 20160930 +923084011000036103 Creon Micro 5000 units/100 mg enteric coated granules 900000000000526001 REPLACED BY association reference set 847151000168104 Creon Micro enteric coated granules 20161130 +703031000168107 Fluarix Tetra 2015 injection: suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 709781000168108 Fluarix Tetra 2015 injection suspension, 0.5 mL syringe 20150731 +145331000036104 dimethyl fumarate 240 mg capsule: modified release, 56 900000000000526001 REPLACED BY association reference set 756371000168106 dimethyl fumarate 240 mg enteric capsule, 56 20160229 +922148011000036104 sorbitol 70% non-crystallising oral liquid 900000000000526001 REPLACED BY association reference set 690601000168107 sorbitol solution 70% non-crystallising oral liquid 20150331 +75380011000036107 human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 822981000168105 human papillomavirus quadrivalent vaccine injection, 0.5 mL vial 20160831 +73651000036106 Artelac 0.2% / 1% eye gel, 10 g, tube 900000000000526001 REPLACED BY association reference set 719581000168104 Artelac 0.2% / 1% eye gel, 10 g, tube 20150930 +86126011000036106 Levetiracetam (Terry White Chemists) 1 g tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003771000168109 Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60, blister pack 20170930 +50475011000036105 MSUD Express Cooler oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725401000168104 MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches 20151031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836881000168101 Streptococcus pneumoniae type 12F polysaccharide antigen 20161031 +54032011000036105 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 5 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721511000168102 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 5 mL 20151031 +59862011000036103 Clozole Vaginal Cream (Chemists' Own) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715451000168108 Clozole (Chemists' Own) 2% vaginal cream, 20 g, tube 20150930 +75401011000036107 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 836761000168101 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 10 x 0.5 mL syringes 20161031 +83987011000036109 Clotrimazole 3 Day (Apo) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715751000168101 Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g 20150930 +933203991000036102 Levetiracetam (GN) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003431000168101 Levetiracetam 1000 (GN) 1 g film-coated tablet, 60 20170930 +933225751000036104 ropivacaine hydrochloride monohydrate 200 mg/20 mL injection, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005051000168104 ropivacaine hydrochloride 200 mg/20 mL injection, 5 x 20 mL ampoules 20170930 +38588011000036105 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose 320 mg/4 mL injection, 5 x 4 mL ampoules 900000000000526001 REPLACED BY association reference set 863581000168103 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, 5 x 4 mL ampoules 20170131 +260721000168105 PKU Lophlex LQ 20 oral liquid: solution, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724231000168106 PKU Lophlex LQ 20 Orange oral liquid solution, 125 mL pouch 20151031 +41972011000036102 Etopophos 500 mg injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 793521000168101 Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial 20160531 +140961000036100 Haemophilus influenzae type B polyribose ribitol phosphate vaccine + meningococcal group C polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 846041000168102 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine 20161130 +920984011000036105 Berocca Performance Original effervescent tablet 900000000000526001 REPLACED BY association reference set 829701000168109 Berocca Performance Original effervescent tablet 20160930 +4571011000036106 Kenacomb ointment 900000000000526001 REPLACED BY association reference set 758221000168103 Kenacomb ointment 20160229 +81609011000036108 glucose 5% (2.5 g/50 mL) injection, 60 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864351000168100 glucose monohydrate 5% (2.5 g/50 mL) injection, 60 x 50 mL bags 20170131 +28329011000036108 paracetamol 500 mg + codeine phosphate 30 mg tablet, 20 900000000000526001 REPLACED BY association reference set 79240011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 20 20161031 +107091000036103 Moviprep Lemon powder for oral liquid, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 902141000168104 Moviprep A powder for oral liquid, sachet 20170331 +74835011000036100 Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083641000168106 Decongestant (Soul Pattinson) 0.05% nasal spray, 20 mL, pump pack 20180228 +56481000036107 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL, bottle 900000000000526001 REPLACED BY association reference set 751261000168100 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL, bottle 20160229 +57063011000036100 Difflam Lozenge orange sugar free lozenge, 2 900000000000526001 REPLACED BY association reference set 995821000168107 Difflam Lozenge Orange Sugar Free lozenge, 2 20170831 +69513011000036108 Cepacol Antibacterial Honey and Lemon lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 995101000168106 Cepacol Antibacterial Honey and Lemon lozenge, 2, blister pack 20170831 +711011000168103 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005861000168108 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +74800011000036102 Decongestant (Priceline) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083631000168102 Decongestant (Priceline) 0.05% nasal spray, 20 mL, pump pack 20180228 +73830011000036107 Zostavax (Varicella zoster live attenuated vaccine 19 400 PFU) powder for injection, vial 900000000000526001 REPLACED BY association reference set 831791000168100 Zostavax (varicella-zoster live vaccine) powder for injection, vial 20160930 +74949011000036108 Otrivin Adult menthol 0.1% nasal spray, 10 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085351000168101 Otrivin Adult menthol 0.1% nasal spray, 10 mL, pump pack 20180228 +142501000036106 Vivotif Oral enteric capsule, 3 900000000000526001 REPLACED BY association reference set 827271000168100 Vivotif Oral enteric capsule, 3 20160930 +711121000168106 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006211000168101 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +85055011000036107 Strepsils lozenge, 10, tube 900000000000526001 REPLACED BY association reference set 721951000168107 Strepsils Cool lozenge, 10, tube 20151031 +68941011000036107 Cepacol 0.05% mouthwash, 150 mL, bottle 900000000000526001 REPLACED BY association reference set 994991000168101 Cepacol 0.05% mouthwash, 150 mL, bottle 20170831 +13187011000036101 Creon Forte 25 000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847571000168104 Creon Forte enteric capsule, 100 20161130 +670781000168100 Peptamen Junior powder for oral liquid, 400 g, can 900000000000526001 REPLACED BY association reference set 949671000168104 Peptamen Junior powder for oral liquid, 400 g, can 20170630 +23482011000036101 follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 1041391000168102 follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, injection device 20171130 +732651000168105 Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 747001000168104 Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +74201011000036100 Azep 140 microgram/actuation nasal spray, 10 mL 900000000000526001 REPLACED BY association reference set 809581000168100 Azep 0.1% nasal spray, 10 mL 20160630 +74810011000036104 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825081000168100 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 20160930 +823931000168103 Bydureon (4 x 2 mg cartridges, 4 x inert diluent cartridges), 1 pack 900000000000526001 REPLACED BY association reference set 833351000168108 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 4 dual chamber devices 20160930 +652271000168108 Cal-500 500 mg (calcium 500 mg) chewable tablet, 60 900000000000526001 REPLACED BY association reference set 859761000168109 Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60 20161231 +82853011000036108 Questran 8 g powder for oral liquid, 50 sachets 900000000000526001 REPLACED BY association reference set 1032311000168100 Questran Lite 8 g powder for oral liquid, 50 sachets 20171130 +711271000168101 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006081000168101 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +923934011000036102 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000526001 REPLACED BY association reference set 827401000168106 pneumococcal 13 valent conjugate vaccine 20160930 +74407011000036107 Boostrix injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837691000168100 Boostrix injection suspension, 10 x 0.5 mL syringes 20161031 +708471000168107 triamcinolone acetonide 0.09% + neomycin sulfate 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL 900000000000526001 REPLACED BY association reference set 758331000168107 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL 20160229 +82560011000036106 calcium (as carbonate) 600 mg (calcium 600 g) tablet, 240 900000000000526001 REPLACED BY association reference set 860561000168101 calcium carbonate 1.5 g (calcium 600 mg) tablet, 240 20161231 +59712011000036101 Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 721651000168100 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL, bottle 20151031 +87831000036103 Eco Krill soft capsule 900000000000526001 REPLACED BY association reference set 965881000168108 Eco Krill 333.3 mg soft capsule 20170731 +689741000168105 triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g 900000000000526001 REPLACED BY association reference set 758281000168104 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g 20160229 +30541000036100 Voltaren Osteo 1% gel, 150 g, tube 900000000000526001 REPLACED BY association reference set 1037151000168104 Voltaren Osteo 1.16% gel, 150 g, tube 20171130 +81143011000036104 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 872551000168105 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 20170131 +60989011000036104 Logicin Rapid Relief original flavour lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 861621000168102 Logicin Rapid Relief original flavour lozenge, 16, blister pack 20161231 +923014011000036100 Acam2000 (smallpox live vaccine) powder for injection, vial 900000000000526001 REPLACED BY association reference set 821301000168107 Acam2000 (smallpox live vaccine) powder for injection, vial 20160831 +14591000036106 Clinoleic 20% injection: emulsion, 24 x 100 mL bags 900000000000526001 REPLACED BY association reference set 771941000168106 Clinoleic 20% injection emulsion, 24 x 100 mL bags 20160430 +933220871000036106 ropivacaine hydrochloride monohydrate 150 mg/20 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 1004881000168100 ropivacaine hydrochloride 150 mg/20 mL injection, ampoule 20170930 +75046011000036101 hepatitis A inactivated vaccine 1440 ELISA units/mL injection, syringe 900000000000526001 REPLACED BY association reference set 824751000168109 hepatitis A adult vaccine 1440 ELISA units/mL injection, syringe 20160930 +36019011000036105 Codral Forte uncoated tablet 900000000000526001 REPLACED BY association reference set 834401000168104 Codral Forte uncoated tablet 20161031 +72591000036108 mesalazine 500 mg granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084071000168108 mesalazine 500 mg modified release granules, 100 sachets 20180228 +75032011000036104 human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823131000168101 human papillomavirus bivalent vaccine injection, 0.5 mL syringe 20160831 +74760011000036100 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 821391000168101 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack, composite pack 20160831 +680631000168104 Zaldiar Combination Therapy film-coated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 1027841000168105 Zaldiar film-coated tablet, 20, blister pack 20171031 +81614011000036109 glucose 5% (5 g/100 mL) injection, 55 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863941000168101 glucose monohydrate 5% (5 g/100 mL) injection, 55 x 100 mL bags 20170131 +140761000036102 Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005861000168108 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +732671000168101 Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules 900000000000526001 REPLACED BY association reference set 747021000168108 Granisetron (Apotex) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 20160131 +38014011000036102 isoflurane 100 mL/100 mL inhalation: solution, bottle 900000000000526001 REPLACED BY association reference set 45182011000036107 isoflurane 1 mL/mL inhalation solution 20160430 +844571000168107 Zovirax 800 mg tablet, 35, blister pack 900000000000526001 REPLACED BY association reference set 859411000168101 Zovirax Dispersible 800 mg tablet, 35, blister pack 20161231 +75388011000036109 human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823211000168101 human papillomavirus bivalent vaccine injection, 20 x 0.5 mL syringes 20160831 +50480011000036107 HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724091000168103 HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 20151031 +691971000168101 Calcium (Sandoz) 500 mg tablet: film-coated 900000000000526001 REPLACED BY association reference set 847881000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet 20161130 +823871000168105 inert substance diluent, cartridge 900000000000526001 REPLACED BY association reference set 833261000168101 exenatide 2 mg/dose + inert substance modified release injection, dose 20160930 +36098011000036103 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 810211000168102 Actonel EC Combi D effervescent granules, 1 sachet 20160630 +53714011000036107 Clotrimazole 6 Day (Guardian) 1% cream 900000000000526001 REPLACED BY association reference set 715181000168107 Clotrimazole 6 Day (Guardian) 1% vaginal cream 20150930 +14139011000036102 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041371000168103 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device 20171130 +54221011000036108 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream 900000000000526001 REPLACED BY association reference set 715621000168102 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream 20150930 +74993011000036102 measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine 900000000000526001 REPLACED BY association reference set 831021000168104 measles + mumps + rubella live vaccine 20160930 +1825011000036104 atropine sulfate 900000000000527005 SAME AS association reference set 53052011000036109 atropine sulfate monohydrate 20161130 +160461000036102 Oxycontin Reformulation 15 mg modified release tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 928884011000036101 Oxycontin 15 mg modified release tablet, 28, blister pack 20170731 +49492011000036100 Lophlex oral liquid: powder for, 30 x 27.8 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 725211000168102 PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets 20151031 +927336011000036109 lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 25 g 900000000000526001 REPLACED BY association reference set 863461000168106 lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream, 25 g 20170131 +87182011000036103 Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 705791000168109 Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g, tube 20150731 +120501000036107 clotrimazole 1% + hydrocortisone (as acetate) 1% cream, 30 g 900000000000526001 REPLACED BY association reference set 38541011000036108 hydrocortisone 1% + clotrimazole 1% cream, 30 g 20150930 +173181000036103 olodaterol 2.5 microgram/actuation inhalation: pressurised, actuation 900000000000526001 REPLACED BY association reference set 701481000168102 olodaterol 2.5 microgram/actuation inhalation solution, actuation 20150531 +927740011000036109 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 1920 million CFU injection, 1 vial 900000000000526001 REPLACED BY association reference set 1045951000168109 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, 1 vial 20171130 +19346011000036101 Zovirax 200 mg dispersible tablet, 25, blister pack 900000000000526001 REPLACED BY association reference set 859591000168109 Zovirax Dispersible 200 mg tablet, 25, blister pack 20161231 +78313011000036109 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 30 900000000000526001 REPLACED BY association reference set 833101000168106 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 30 20160930 +933221211000036105 ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, bag 900000000000526001 REPLACED BY association reference set 1004781000168109 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, bag 20170930 +933225801000036107 Naropin 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004961000168102 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +81151011000036102 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868461000168100 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 20170131 +68916011000036107 Soap Enema (Orion) 50 mg/mL enema, 1 mL bottle 900000000000526001 REPLACED BY association reference set 685531000168107 Soap Enema (Orion) 50 mg/mL enema, 500 mL, bottle 20150228 +53927011000036104 Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) uncoated tablet 900000000000526001 REPLACED BY association reference set 967661000168105 Cold and Flu Day and Night Relief (Night) (Blooms The Chemist) uncoated tablet 20170731 +74742011000036109 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825611000168102 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +921065011000036107 Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 75 mL vial 900000000000526001 REPLACED BY association reference set 695211000168100 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 75 mL bottle 20150430 +930004011000036102 Menveo injection: suspension, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826771000168109 MenCWY injection solution, vial 20160930 +63561000168108 Fluoride Panda Punch (Laclede) 900000000000526001 REPLACED BY association reference set 932331000168103 Fluoride (Laclede) 20170531 +138801000036105 Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack 900000000000526001 REPLACED BY association reference set 846071000168109 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 20161130 +73941011000036107 H-B-Vax II preservative free 40 microgram/mL injection suspension, vial 900000000000526001 REPLACED BY association reference set 825681000168108 H-B-Vax II preservative free 40 microgram/mL injection suspension, vial 20160930 +22974011000036109 paracetamol 500 mg + codeine phosphate 15 mg tablet 900000000000526001 REPLACED BY association reference set 52803011000036102 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet 20161031 +110321000036101 Sorbact (S98310) 10 cm x 10 cm foam dressing, 10, carton 900000000000526001 REPLACED BY association reference set 1056351000168104 Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10, carton 20171231 +39625011000036104 Naropin 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 711291000168100 Naropin 0.2% 20150831 +61581000036105 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 839731000168100 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial 20161031 +700391000168101 diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837341000168104 diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL syringes 20161031 +73515011000036107 pancreatic extract 40 000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847331000168107 lipase 40 000 units + amylase 25 000 units + protease 1600 units enteric capsule, 100 20161130 +48767011000036105 Leukopor (2471) 1.25 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689301000168107 Leukopor (2471) 1.25 cm x 5 m tape 20150331 +74111000036104 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL, bottle 900000000000526001 REPLACED BY association reference set 764281000168100 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL, bottle 20160331 +929207011000036102 salicylic acid 2% (20 mg/g) + aqueous cream 980 mg/g cream, 100 g 900000000000526001 REPLACED BY association reference set 705401000168107 salicylic acid 2% + aqueous cream, 100 g 20150731 +244061000168103 PKU Cooler10 Purple oral liquid: solution, 87 mL can 900000000000526001 REPLACED BY association reference set 725571000168108 PKU Cooler 10 Purple oral liquid solution, 87 mL pouch 20151031 +81131011000036101 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags 900000000000526001 REPLACED BY association reference set 867951000168108 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 1.5 L bags 20170131 +711241000168108 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006111000168106 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +78271000036105 Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial 900000000000526001 REPLACED BY association reference set 703511000168105 Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial 20150630 +19039011000036108 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 900000000000526001 REPLACED BY association reference set 792921000168101 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28, blister packs 20160531 +700361000168108 ADT Booster injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837311000168103 ADT Booster injection suspension, 0.5 mL syringe 20161031 +933226071000036101 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004861000168109 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags 20170930 +74247011000036100 Gardasil injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 822991000168108 Gardasil injection suspension, 0.5 mL vial 20160831 +81997011000036100 MSUD Anamix Junior LQ oral liquid: solution, 125 mL can 900000000000526001 REPLACED BY association reference set 724931000168103 MSUD Anamix Junior LQ oral liquid solution, 125 mL bottle 20151031 +921974011000036109 Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 10 x 75 mL vials 900000000000526001 REPLACED BY association reference set 695241000168101 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles 20150430 +43591011000036102 Keppra 1 g tablet: film-coated, 10, blister pack 900000000000526001 REPLACED BY association reference set 721001000168107 Keppra-1000 1 g film-coated tablet, 10, blister pack 20151031 +860201000168104 Ostelin Osteoguard film-coated tablet 900000000000526001 REPLACED BY association reference set 932961000168105 Ostelin Osteoguard film-coated tablet 20170531 +716091000168103 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, vial 900000000000526001 REPLACED BY association reference set 826801000168106 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack 20160930 +74840011000036108 Drixine Adult 0.05% nasal spray, 5 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083691000168103 Drixine Adult 0.05% nasal spray, 5 mL, pump pack 20180228 +86135011000036102 Movicol Junior solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674191000168109 Movicol Junior powder for oral liquid, 30 sachets 20141031 +33106011000036103 Femizol Clotrimazole Thrush Treatment 3 Day 2% cream 900000000000526001 REPLACED BY association reference set 715511000168108 Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream 20150930 +75051011000036109 Japanese encephalitis inactivated vaccine 6 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 822611000168109 Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe 20160831 +67275011000036100 Panadol Children's 7+ Years 250 mg tablet: soluble, 16 900000000000526001 REPLACED BY association reference set 721591000168106 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16 20151031 +11948011000036101 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715381000168109 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g 20150930 +71449011000036104 salicylic acid 3% (30 mg/g) + aqueous cream 970 mg/g cream, 100 g 900000000000526001 REPLACED BY association reference set 705451000168106 salicylic acid 3% + aqueous cream, 100 g 20150731 +703301000168103 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 828071000168106 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20160930 +2438011000036100 pancreatic extract 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 2284011000036101 lipase 20161130 +26746011000036105 darbepoetin alfa 60 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041131000168103 darbepoetin alfa 60 microgram/0.3 mL injection, 0.3 mL injection device 20171130 +80674011000036107 Gastrolyte fruit powder for oral liquid, 2 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871841000168100 Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets 20170131 +84927011000036104 Elevit tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 843101000168105 Elevit film-coated tablet, 30 (Old Formulation 2014) 20161031 +711751000168104 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005541000168107 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 10 mL ampoule 20170930 +74433011000036107 Boostrix-IPV injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 840761000168102 Boostrix-IPV injection suspension, 10 x 0.5 mL syringes 20161031 +925232011000036101 Panadol Children's 3+ Years 120 mg tablet: chewable, 24, blister pack 900000000000526001 REPLACED BY association reference set 721701000168105 Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24, blister pack 20151031 +71858011000036103 benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 16 900000000000526001 REPLACED BY association reference set 995051000168106 benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 16 20170831 +923452011000036109 Omeprazole (Pharmacor) 20 mg capsule, 7 900000000000526001 REPLACED BY association reference set 717401000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 7 20150930 +35560011000036102 Poly Gel 0.3% eye gel, 30 x 500 mg unit doses 900000000000526001 REPLACED BY association reference set 718741000168105 Poly Gel 0.3% eye gel, 30 x 500 mg unit doses 20150930 +76701011000036102 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872951000168104 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 20170131 +84660011000036109 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873021000168101 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag 20170131 +85741011000036109 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24 900000000000526001 REPLACED BY association reference set 996041000168104 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24 20170831 +75454011000036103 hepatitis A inactivated vaccine 50 units/mL injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825161000168108 hepatitis A adult vaccine 50 units/mL injection, 1 mL syringe 20160930 +52307011000036108 salicylic acid 2% (20 mg/g) + sulfur-precipitated 2% (20 mg/g) cream, 100 g 900000000000526001 REPLACED BY association reference set 695831000168106 salicylic acid 2% + precipitated sulfur 2% + aqueous cream, 100 g 20150430 +78211011000036102 alpha tocopherol acetate 96% oil, 30 mL 900000000000526001 REPLACED BY association reference set 842751000168103 dl-alpha-tocopheryl acetate 96% oil, 30 mL 20161031 +74746011000036108 Adacel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837501000168105 Adacel injection suspension, 0.5 mL vial 20161031 +83988011000036105 Clotrimazole 6 Day (Apo) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715781000168108 Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g 20150930 +84772011000036109 Mepitac (298300) 2 cm x 3 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694231000168109 Mepitac (298300) 2 cm x 3 m tape 20150331 +54179011000036109 Difflam Lozenge orange sugar free lozenge 900000000000526001 REPLACED BY association reference set 995791000168104 Difflam Lozenge Orange Sugar Free lozenge 20170831 +85016011000036107 Mepitac (298400) 4 cm x 1.5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694331000168102 Mepitac (298400) 4 cm x 1.5 m tape, 1 roll, carton 20150331 +711001000168101 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005851000168106 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +7419011000036103 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge 900000000000526001 REPLACED BY association reference set 1041401000168100 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device 20171130 +85052011000036104 Strepsils lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 720311000168101 Strepsils Cool lozenge, 16, blister pack 20151031 +20407011000036101 Colazide 750 mg capsule, 180, bottle 900000000000526001 REPLACED BY association reference set 932501000168101 Colazide 750 mg hard capsule, 180, bottle 20170531 +62059011000036105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge 900000000000526001 REPLACED BY association reference set 995571000168105 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge 20170831 +154321000036100 betamethasone (as sodium phosphate) 2.96 mg/mL + betamethasone (as acetate) 2.71 mg/mL injection, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 746331000168106 betamethasone acetate 3 mg/mL + betamethasone sodium phosphate 3.9 mg/mL (total betamethasone 5.7 mg/mL) injection, 5 x 1 mL ampoules 20160131 +75409011000036106 hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824771000168100 hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL syringe 20160930 +44075011000036106 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 50 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693391000168100 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules 20150331 +80646011000036103 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872621000168103 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 20170131 +923443011000036100 Omeprazole (Pharmacor) 20 mg capsule, 14 900000000000526001 REPLACED BY association reference set 717091000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 14 20150930 +815171000168107 Entrip 50 mg tablet, 10 900000000000526001 REPLACED BY association reference set 856781000168106 Entrip 50 mg film-coated tablet, 10 20161231 +36652011000036103 Codral Forte uncoated tablet, 50 900000000000526001 REPLACED BY association reference set 834611000168104 Codral Forte uncoated tablet, 50 20161031 +145281000036105 Tecfidera 120 mg capsule: modified release, 112 900000000000526001 REPLACED BY association reference set 756281000168100 Tecfidera 120 mg enteric capsule, 112 20160229 +4506011000036107 Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 838061000168103 Pneumovax-23 injection solution, 0.5 mL vial 20161031 +921574011000036104 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100 900000000000526001 REPLACED BY association reference set 950751000168108 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet, 100 20170630 +66556011000036103 Soap Enema (Orion) 50 mg/mL enema, 1 mL bottle 900000000000526001 REPLACED BY association reference set 685521000168109 Soap Enema (Orion) 50 mg/mL enema, 500 mL 20150228 +663081000168103 magnesium carbonate light 900000000000527005 SAME AS association reference set 828021000168105 magnesium carbonate hydrate 20160930 +81040011000036104 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863931000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 50 x 100 mL bags 20170131 +653311000168102 macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, 8 sachets 900000000000526001 REPLACED BY association reference set 669051000168107 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 8 sachets 20141031 +933220541000036102 Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726511000168109 Norditropin Flexpro 10 mg/1.5 mL injection solution 20151031 +923051011000036106 Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial 900000000000526001 REPLACED BY association reference set 891111000168103 Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial 20170331 +2951000036102 olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, bag 900000000000526001 REPLACED BY association reference set 771751000168105 olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, bag 20160430 +146191000036107 Tecfidera 120 mg capsule: modified release, 112, blister pack 900000000000526001 REPLACED BY association reference set 756291000168102 Tecfidera 120 mg enteric capsule, 112, blister pack 20160229 +922690011000036108 Varicella zoster live attenuated vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 832011000168103 varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL vial], 1 pack 20160930 +925139011000036109 Omepro 20 mg capsule, 15, blister pack 900000000000526001 REPLACED BY association reference set 716471000168108 Omepro 20 mg enteric capsule, 15, blister pack 20150930 +696501000168109 meningococcal group B adhesin A protein 900000000000526001 REPLACED BY association reference set 822401000168109 Neisseria meningitidis group B adhesin A protein 20160831 +642541000168101 Biostate 250 IU FVIII/500 IU VWF (inert substance) diluent, 5 mL vial 900000000000526001 REPLACED BY association reference set 900931000168107 Biostate (inert substance) diluent, 5 mL vial 20170430 +925154011000036107 Pemzo 20 mg capsule, 500, blister pack 900000000000526001 REPLACED BY association reference set 716911000168108 Pemzo 20 mg enteric capsule, 500, blister pack 20150930 +84386011000036102 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 873121000168100 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 12 x 1 L bags 20170131 +49502011000036108 PKU Cooler15 Orange oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725641000168100 PKU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 20151031 +76548011000036102 PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724331000168104 PKU Anamix Junior LQ Orange oral liquid solution, 36 x 125 mL bottles 20151031 +177681000036103 lixisenatide 10 microgram/0.2 mL injection, unit dose 900000000000526001 REPLACED BY association reference set 719291000168104 lixisenatide 10 microgram/dose injection, dose 20150930 +31451000036106 Vicks Sinex 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083741000168101 Vicks Sinex 0.05% nasal spray, 15 mL, pump pack 20180228 +84003011000036105 Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845601000168102 Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device 20161130 +700321000168103 ADT Vaccine injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837301000168101 ADT Vaccine injection suspension, 0.5 mL syringe 20161031 +81052011000036103 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 900000000000526001 REPLACED BY association reference set 864341000168102 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 20170131 +711941000168103 Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005281000168100 Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +921948011000036101 Gastrolyte Citrus effervescent tablet, 20, tube 900000000000526001 REPLACED BY association reference set 871591000168105 Gastrolyte Citrus effervescent tablet, 20, tube 20170131 +182121000036101 Lyxumia 20 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses, cartridge 900000000000526001 REPLACED BY association reference set 719281000168102 Lyxumia 20 microgram/dose injection solution, 14 doses, injection device 20150930 +689791000168102 Valaciclovir (Apo) 1 g film-coated tablet, 4, blister pack 900000000000526001 REPLACED BY association reference set 1009721000168106 Valaciclovir 1000 (Apo) 1 g film-coated tablet, 4, blister pack 20170930 +653641000168107 Retinofluor 1.25 g/5 mL injection: solution, 5 mL vial 900000000000526001 REPLACED BY association reference set 721201000168102 Retinofluor 25% 1.25 g/5 mL injection solution, 5 mL vial 20151031 +681161000168109 Cal-600 plus D tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 862141000168106 Cal-600 plus D film-coated tablet, 100, bottle 20161231 +69091011000036106 Metformin Hydrochloride (GA) 1 g tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 949451000168106 Metformin Hydrochloride 1000 (GA) 1 g tablet, 90, blister pack 20170630 +922619011000036103 alpha tocopherol acetate 250 mg (250 units) capsule, 60 900000000000526001 REPLACED BY association reference set 842801000168109 dl-alpha-tocopheryl acetate 250 mg (250 units) capsule, 60 20161031 +42761000036109 Lipistart powder for oral liquid, 400 g 900000000000526001 REPLACED BY association reference set 949721000168107 Lipistart powder for oral liquid, 400 g 20170630 +711331000168106 Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1004541000168108 Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag 20170930 +59805011000036105 Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 721341000168106 Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL, pump pack 20151031 +71884011000036104 cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge, 16 900000000000526001 REPLACED BY association reference set 995361000168105 cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 16 20170831 +74367011000036100 Tripacel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837571000168100 Tripacel injection suspension, 0.5 mL vial 20161031 +73657011000036103 Bordetella pertussis, acellular pertussis toxoid vaccine 900000000000526001 REPLACED BY association reference set 836241000168107 Bordetella pertussis toxoid 20161031 +12639011000036105 Zovirax 800 mg dispersible tablet, 35 900000000000526001 REPLACED BY association reference set 859221000168109 Zovirax Dispersible 800 mg tablet, 35 20161231 +81704011000036102 sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872611000168105 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 1 L bag 20170131 +81046011000036101 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863901000168103 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags 20170131 +81144011000036102 Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags 900000000000526001 REPLACED BY association reference set 872581000168103 Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags 20170131 +39762011000036107 Lignocaine Hydrochloride (Pfizer (Perth)) 900000000000526001 REPLACED BY association reference set 693201000168104 Lignocaine (Pfizer) 20150331 +26857011000036108 aluminium hydroxide dried 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg tablet, 100 900000000000526001 REPLACED BY association reference set 684431000168107 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet, 100 20150131 +180611000036103 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet 900000000000526001 REPLACED BY association reference set 835901000168107 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet 20161031 +4618011000036103 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041021000168102 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device 20171130 +81021011000036108 Metomax capsule, 10, blister pack 900000000000526001 REPLACED BY association reference set 867321000168101 Metomax capsule, 10, blister pack 20170131 +923449011000036102 Omeprazole (Pharmacor) 20 mg capsule, 500 900000000000526001 REPLACED BY association reference set 717301000168108 Omeprazole (Pharmacor) 20 mg enteric capsule, 500 20150930 +65293011000036109 Salicylic Acid 5% in Aqueous Cream (David Craig) cream 900000000000526001 REPLACED BY association reference set 705581000168100 Salicylic Acid 5% in Aqueous Cream (David Craig) cream 20150731 +74199011000036101 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack 900000000000526001 REPLACED BY association reference set 821411000168101 Rabipur (5 x 2.5 units vaccine vials, 5 x 1 mL inert diluent ampoules), 1 pack 20160831 +74209011000036101 Adacel Polio injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839641000168104 Adacel Polio injection suspension, 0.5 mL syringe 20161031 +728741000168103 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005791000168106 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +7328011000036106 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream 900000000000526001 REPLACED BY association reference set 715281000168100 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream 20150930 +75353011000036106 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837511000168108 diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 5 x 0.5 mL vials 20161031 +922005011000036107 Recombinate 250 IU (1 x 250 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 710891000168109 Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 20150831 +669551000168102 Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 5 x 1.5 mL cartridges 900000000000526001 REPLACED BY association reference set 728901000168102 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 20151130 +30608011000036101 Cilamox sugar free 250 mg/5 mL powder for oral liquid, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 932921000168100 Cilamox 250 mg/5 mL powder for oral liquid, 100 mL, bottle 20170531 +29261000036108 typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827121000168105 typhoid inactivated vaccine injection, 10 x 0.5 mL syringes 20160930 +173171000036100 Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, actuation 900000000000526001 REPLACED BY association reference set 701491000168104 Striverdi Respimat 2.5 microgram/actuation inhalation solution, actuation 20150531 +931863011000036106 alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet 900000000000526001 REPLACED BY association reference set 843161000168106 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet 20161031 +923386011000036107 Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial 900000000000526001 REPLACED BY association reference set 891131000168108 Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial 20170331 +921426011000036100 Cardiprin 100 mg dispersible tablet, 100 900000000000526001 REPLACED BY association reference set 804081000168108 Cardiprin 100 mg tablet, 100 20160630 +2861000036106 Clinoleic 20% injection: emulsion, 500 mL bag 900000000000526001 REPLACED BY association reference set 771811000168101 Clinoleic 20% injection emulsion, 500 mL bag 20160430 +30531000036105 TYR Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725061000168106 TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 20151031 +716101000168108 meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, syringe 900000000000526001 REPLACED BY association reference set 826691000168104 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, syringe 20160930 +932711011000036109 Lasix High Dose 20 mg/2 mL injection: solution, 2 mL ampoule 900000000000526001 REPLACED BY association reference set 704821000168102 Lasix 20 mg/2 mL injection solution, 2 mL ampoule 20150630 +21283011000036100 fluticasone 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 861061000168102 fluticasone propionate 20161231 +929647011000036108 PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 723961000168108 PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets 20151031 +71351000036101 carbomer 0.2% + triglyceride lipids 1% eye gel, 30 x 600 mg unit doses 900000000000526001 REPLACED BY association reference set 719611000168106 carbomer-980 0.2% + triglyceride lipids 1% eye gel, 30 x 600 mg unit doses 20150930 +76738011000036100 Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 10 x 20 mL vials 900000000000526001 REPLACED BY association reference set 695521000168105 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials 20150430 +83978011000036100 Cal-600 600 mg (calcium 600 g) tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 860301000168106 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60 20161231 +933241751000036103 choriogonadotropin alfa 250 microgram/0.5 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 728081000168106 choriogonadotropin alfa 250 microgram/0.5 mL injection, dose 20151031 +141741000036106 lanreotide 60 mg injection, 1 syringe 900000000000526001 REPLACED BY association reference set 819581000168102 lanreotide 60 mg/0.5 mL injection, 0.5 mL syringe 20160731 +56530011000036101 Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 200 mL 900000000000526001 REPLACED BY association reference set 721781000168102 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL 20151031 +75389011000036101 hepatitis B vaccine 5 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825961000168105 hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL syringe 20160930 +923733011000036105 Omeprazole (Pharmacor) 20 mg capsule, 60, blister pack 900000000000526001 REPLACED BY association reference set 717371000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 60, blister pack 20150930 +922531011000036100 Varicella zoster live attenuated vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 831721000168102 varicella-zoster live vaccine 1350 PFU injection [1 vial] (&) inert substance diluent [0.7 mL syringe], 1 pack 20160930 +73900011000036106 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832201000168106 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +69521011000036100 Disprin Max 500 mg dispersible tablet, 6, strip pack 900000000000526001 REPLACED BY association reference set 804401000168106 Disprin Max 500 mg tablet, 6, strip pack 20160630 +827891000168103 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845961000168107 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +933196031000036106 Levetiracetam (GN) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003421000168104 Levetiracetam 1000 (GN) 1 g film-coated tablet 20170930 +32691000036106 Tadim 1 million units (80 mg) powder for inhalation, vial 900000000000526001 REPLACED BY association reference set 818101000168107 Tadim 1 million units powder for inhalation, vial 20160731 +86617011000036101 Orabase Protective Paste oromucosal paste 900000000000526001 REPLACED BY association reference set 797581000168108 Orabase Protective paste 20160630 +77281011000036106 Compound Benzoin Tincture Friar's Balsam (Orion) solution, 50 mL, bottle 900000000000526001 REPLACED BY association reference set 696441000168105 Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL, bottle (Old Formulation 2010) 20150430 +27890011000036103 lopinavir 80 mg/mL + ritonavir 20 mg/mL oral liquid, 60 mL 900000000000526001 REPLACED BY association reference set 689471000168109 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 60 mL 20150331 +73701000036102 Salofalk 1.5 g granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084291000168102 Salofalk 1.5 g modified release granules, 100 sachets 20180228 +6438011000036101 Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722731000168109 Intron A Redipen 18 million units/1.2 mL injection solution 20151031 +82858011000036103 Synflorix 16 microgram injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827631000168101 Synflorix injection suspension, 0.5 mL syringe 20160930 +43742011000036101 Voluven 6% / 0.9% injection solution, 10 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 1013541000168108 Voluven injection solution, 10 x 500 mL bottles 20170930 +815151000168103 Entrip 25 mg tablet, 1000, blister pack 900000000000526001 REPLACED BY association reference set 856761000168102 Entrip 25 mg film-coated tablet, 1000, blister pack 20161231 +107551000036103 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon 900000000000526001 REPLACED BY association reference set 1056221000168101 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon 20171231 +69318011000036100 Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 684741000168106 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials 20150131 +711591000168102 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005621000168102 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +700029821000036109 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 900000000000526001 REPLACED BY association reference set 792901000168105 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28, blister pack 20160531 +172391000036105 Fosamax Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848621000168102 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 20161130 +22815011000036109 macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, sachet 900000000000526001 REPLACED BY association reference set 669001000168108 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, sachet 20141031 +933231531000036102 Naropin 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004571000168101 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +6075011000036101 Panzytrat 25 000 units enteric capsule 900000000000526001 REPLACED BY association reference set 847641000168107 Panzytrat 25 000 enteric capsule 20161130 +160441000036103 Oxycontin Reformulation 40 mg modified release tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 929123011000036101 Oxycontin 40 mg modified release tablet, 28, blister pack 20170731 +86061011000036100 Qlaira, 84 tablets [3 x 28], blister pack 900000000000526001 REPLACED BY association reference set 684301000168108 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28, blister packs 20150131 +73681000036104 Byetta 5 microgram/0.02 mL injection: solution, 60 x 0.02 mL unit doses, cartridge 900000000000526001 REPLACED BY association reference set 726791000168107 Byetta 5 microgram/dose injection solution, 60 doses, injection device 20151031 +38803011000036100 isoflurane 100 mL/100 mL inhalation: solution, 100 mL bottle 900000000000526001 REPLACED BY association reference set 46487011000036108 isoflurane 1 mL/mL inhalation solution, 100 mL 20160430 +930879011000036107 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872871000168103 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 20170131 +933231261000036105 Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726591000168100 Norditropin Flexpro 15 mg/1.5 mL injection solution, 1.5 mL, injection device 20151031 +33492011000036104 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack 900000000000526001 REPLACED BY association reference set 707351000168105 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 20150731 +114571000036100 Pico-Salax powder for oral liquid, 2 x 16.1 g sachets 900000000000526001 REPLACED BY association reference set 902111000168103 Pico-Salax powder for oral liquid, 2 x 16.1 g sachets 20170331 +74379011000036104 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 831901000168109 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20160930 +77460011000036102 psyllium dried + senna dried 900000000000526001 REPLACED BY association reference set 832421000168103 dry psyllium seed + dry Tinnevelly senna fruit 20160930 +922106011000036105 diatrizoate meglumine 79.2 g/120 mL + diatrizoate sodium 12 g/120 mL solution, bottle 900000000000526001 REPLACED BY association reference set 696051000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution 20150430 +65025011000036109 Ringworm 900000000000526001 REPLACED BY association reference set 800401000168102 Ringworm (Amneal) 20160630 +726861000168109 adrenaline 300 microgram/0.3 mL injection, 60 doses 900000000000526001 REPLACED BY association reference set 726721000168105 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose 20151130 +74899011000036106 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825951000168108 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +81724011000036108 calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 872261000168105 sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 12 x 1 L bags 20170131 +836201000168105 Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872361000168101 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 20170131 +81290011000036102 calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 868121000168102 glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag 20170131 +20373011000036106 Subutex 400 microgram tablet, 7, blister pack 900000000000526001 REPLACED BY association reference set 685891000168109 Subutex 400 microgram sublingual tablet, 7, blister pack 20150228 +74790011000036102 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845951000168105 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +35162011000036106 codeine phosphate 5 mg/mL oral liquid, 100 mL 900000000000526001 REPLACED BY association reference set 52315011000036101 codeine phosphate hemihydrate 5 mg/mL oral liquid, 100 mL 20161031 +84415011000036101 dibasic sodium phosphate heptahydrate + monobasic sodium phosphate monohydrate 900000000000526001 REPLACED BY association reference set 900221000168102 monobasic sodium phosphate monohydrate + dibasic sodium phosphate 20170331 +76686011000036100 Agiolax granules, 250 g 900000000000526001 REPLACED BY association reference set 832461000168108 Agiolax granules, 250 g 20160930 +81696011000036102 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 x 3 L bags 900000000000526001 REPLACED BY association reference set 868411000168103 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags 20170131 +933238801000036102 Omeprazole (Apo) 20 mg capsule, 30, blister pack 900000000000526001 REPLACED BY association reference set 717551000168100 Omeprazole (Apo) 20 mg enteric capsule, 30, blister pack 20150930 +81043011000036107 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863961000168102 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags 20170131 +922573011000036102 iopromide 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 695171000168102 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 50 mL bottles 20150430 +81618011000036102 glucose 5% (12.5 g/250 mL) injection, 35 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863771000168106 glucose monohydrate 5% (12.5 g/250 mL) injection, 35 x 250 mL bags 20170131 +30511000036101 MSUD Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725111000168107 MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 20151031 +924139011000036102 omeprazole 20 mg capsule, 98 900000000000526001 REPLACED BY association reference set 717011000168109 omeprazole 20 mg enteric capsule, 98 20150930 +98931000036106 Irbesartan (Apo) 150 mg tablet 900000000000526001 REPLACED BY association reference set 807771000168100 Irbesartan (Apo) 150 mg film-coated tablet 20160630 +50523011000036104 Combine Roll (2902165) (BSN) 9 cm x 10 m roll: wrapped pack, 1 pack, carton 900000000000526001 REPLACED BY association reference set 688661000168109 Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1, carton 20150331 +75519011000036100 hepatitis B vaccine 10 microgram/mL injection, 1 mL vial 900000000000526001 REPLACED BY association reference set 825741000168108 hepatitis B adult vaccine 10 microgram/mL injection, 1 mL vial 20160930 +135841000036104 Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 746961000168104 Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +716011000168107 meningococcal group A conjugate vaccine 900000000000526001 REPLACED BY association reference set 826651000168109 meningococcal A conjugate vaccine 20160930 +74864011000036108 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824891000168109 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +67119011000036109 Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 684681000168106 Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 x 10 mL vials 20150131 +80649011000036107 Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags 900000000000526001 REPLACED BY association reference set 872571000168101 Plasma-Lyte 148 Replacement intravenous infusion injection, 18 x 500 mL bags 20170131 +80651011000036106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags 900000000000526001 REPLACED BY association reference set 868261000168101 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags 20170131 +49442011000036106 Leukopor (2472) 2.5 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694001000168107 Leukopor (2472) 2.5 cm x 5 m tape, 1 roll 20150331 +21677011000036103 pneumococcal purified capsular polysaccharides 900000000000526001 REPLACED BY association reference set 838041000168102 pneumococcal 23 valent vaccine 20161031 +81289011000036109 calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 868041000168109 glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag 20170131 +28225011000036104 albendazole 400 mg chewable tablet, 60 900000000000526001 REPLACED BY association reference set 844081000168101 albendazole 400 mg tablet, 60 20161031 +74771011000036102 Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827541000168109 Prevenar injection suspension, 0.5 mL syringe 20160930 +84383011000036108 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873091000168104 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 20170131 +689801000168101 Otocomb Otic ear ointment 900000000000526001 REPLACED BY association reference set 758361000168104 Otocomb Otic ear ointment 20160229 +61531000036106 glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid 900000000000526001 REPLACED BY association reference set 688111000168103 iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid 20150331 +81694011000036105 calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 867901000168109 glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag 20170131 +63723011000036102 benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24 900000000000526001 REPLACED BY association reference set 995731000168103 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 20170831 +761261000168106 Lomotil uncoated tablet, 100 900000000000526001 REPLACED BY association reference set 851151000168107 Lomotil uncoated tablet, 100 20161130 +73943011000036108 Quadracel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 840581000168100 Quadracel injection suspension, 0.5 mL vial 20161031 +836181000168109 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872331000168109 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 20170131 +711671000168104 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005491000168103 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +931812011000036100 meningococcal group A conjugate vaccine + meningococcal group C conjugate vaccine + meningococcal group W135 conjugate vaccine + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 900000000000526001 REPLACED BY association reference set 826521000168100 meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine 20160930 +56188011000036103 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 2 900000000000526001 REPLACED BY association reference set 861381000168109 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 2 20161231 +84050011000036105 Cold and Flu Day and Night PE (Pharmacy Choice) (8 x Day tablets, 16 x Night tablets), 24 900000000000526001 REPLACED BY association reference set 749541000168101 Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24 20160131 +36651011000036109 Codral Forte uncoated tablet, 4 900000000000526001 REPLACED BY association reference set 834421000168108 Codral Forte uncoated tablet, 4 20161031 +12930011000036103 Cal Sup 500 mg (calcium 500 mg) chewable tablet, 60 900000000000526001 REPLACED BY association reference set 859731000168101 Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60 20161231 +80648011000036104 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 872541000168108 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 20170131 +50922011000036100 tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694391000168103 tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape 20150331 +933204081000036102 Valaciclovir (GA) 1 g film-coated tablet, 4 900000000000526001 REPLACED BY association reference set 1009651000168107 Valaciclovir 1000 (GA) 1 g film-coated tablet, 4 20170930 +711261000168107 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1006071000168104 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule 20170930 +73462011000036107 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL gel: intestinal, 7 x 1 mL bags 900000000000526001 REPLACED BY association reference set 720511000168106 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel, 7 x 100 mL 20151031 +370751000168101 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 125 mL sachet 900000000000526001 REPLACED BY association reference set 725021000168101 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 125 mL pouch 20151031 +689761000168109 Kenacomb Otic ear ointment, 5 g, tube 900000000000526001 REPLACED BY association reference set 758301000168100 Kenacomb Otic ear ointment, 5 g, tube 20160229 +73711000036100 Salofalk 1.5 g granules, 60 sachets 900000000000526001 REPLACED BY association reference set 1084261000168109 Salofalk 1.5 g modified release granules, 60 sachets 20180228 +69842011000036107 lactate + sodium chloride + potassium chloride 900000000000526001 REPLACED BY association reference set 860891000168106 sodium lactate + sodium chloride + potassium chloride 20161231 +27150011000036100 etidronate disodium 200 mg tablet [28] (&) calcium (as carbonate) 500 mg tablet [76], 104 900000000000526001 REPLACED BY association reference set 852761000168103 etidronate disodium 200 mg tablet [28] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [76], 104 20161130 +925142011000036100 Omepro 20 mg capsule, 60, blister pack 900000000000526001 REPLACED BY association reference set 717041000168108 Omepro 20 mg enteric capsule, 60, blister pack 20150930 +39041000036100 Drixine No Drip Formula 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083711000168100 Drixine No Drip Formula 0.05% nasal spray, 15 mL, pump pack 20180228 +75452011000036107 hepatitis A inactivated vaccine 50 units/mL injection, 1 mL vial 900000000000526001 REPLACED BY association reference set 824921000168104 hepatitis A adult vaccine 50 units/mL injection, 1 mL vial 20160930 +20661011000036107 Novomix 30 Flexpen injection suspension, 5 x 3 mL syringes 900000000000526001 REPLACED BY association reference set 1007221000168105 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 20170930 +61443011000036101 Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 5 mL, bottle 900000000000526001 REPLACED BY association reference set 721421000168105 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL, bottle 20151031 +154921000036101 Istodax (inert substance) diluent, vial 900000000000526001 REPLACED BY association reference set 828481000168104 Istodax (inert substance) diluent, 2 mL vial 20160930 +65312011000036107 Cepacol 0.05% mouthwash 900000000000526001 REPLACED BY association reference set 994961000168108 Cepacol 0.05% mouthwash 20170831 +55633011000036104 Disprin Forte dispersible tablet, 24 900000000000526001 REPLACED BY association reference set 804161000168100 Disprin Forte tablet, 24 20160630 +716131000168101 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack 900000000000526001 REPLACED BY association reference set 826721000168108 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack 20160930 +139241000036102 Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005991000168108 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +33666011000036100 paper wasp venom 550 microgram injection, vial 900000000000526001 REPLACED BY association reference set 758881000168103 paper wasp venom 550 microgram injection, vial 20160229 +52239011000036101 salicylic acid 2% (20 mg/g) + sulfur-precipitated 2% (20 mg/g) cream 900000000000526001 REPLACED BY association reference set 695811000168101 salicylic acid 2% + precipitated sulfur 2% + aqueous cream 20150430 +815121000168106 Entrip 25 mg tablet, 100 900000000000526001 REPLACED BY association reference set 856731000168105 Entrip 25 mg film-coated tablet, 100 20161231 +933214571000036107 Levetiracetam (MPPL) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003561000168105 Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60, blister pack 20170930 +74851011000036103 Rynacrom 4% nasal spray, 15 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1082971000168103 Rynacrom 4% nasal spray, 15 mL, pump pack 20180228 +14338011000036102 Codapane Forte uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835941000168109 Codapane Forte 500/30 uncoated tablet, 20 20161031 +929271011000036101 citric acid 11.81 g + magnesium carbonate heavy 7.87 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 20 x 20 g sachets 900000000000526001 REPLACED BY association reference set 833461000168100 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 x 20 g sachets 20160930 +88101000036103 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate anhydrous 2.51 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet 900000000000526001 REPLACED BY association reference set 861831000168100 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet 20161231 +711831000168103 Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005091000168109 Ropibam 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +74763011000036108 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825271000168108 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes 20160930 +84773011000036102 Mepitac (298400) 4 cm x 1.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694301000168109 Mepitac (298400) 4 cm x 1.5 m tape 20150331 +75374011000036106 hepatitis B vaccine 10 microgram/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825591000168107 hepatitis B child vaccine 10 microgram/0.5 mL injection, 0.5 mL vial 20160930 +33774011000036107 leuprorelin acetate 7.5 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 707291000168105 leuprorelin acetate 7.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 20150731 +84385011000036109 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873041000168107 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 20170131 +933225701000036100 Naropin 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004661000168108 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +85777011000036102 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet, 1 x Bisacodyl (Fresenius Kabi) suppository), 1 pack 900000000000526001 REPLACED BY association reference set 831441000168100 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 20160930 +81051011000036109 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864431000168100 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags 20170131 +700271000168105 diphtheria toxoid vaccine + tetanus toxoid vaccine 900000000000526001 REPLACED BY association reference set 21826011000036109 diphtheria + tetanus vaccine 20161031 +922562011000036102 alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 30 900000000000526001 REPLACED BY association reference set 843231000168108 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 30 20161031 +925167011000036105 Pemzo 20 mg capsule, 50, blister pack 900000000000526001 REPLACED BY association reference set 716821000168109 Pemzo 20 mg enteric capsule, 50, blister pack 20150930 +827991000168105 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845891000168107 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +5837011000036106 Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU) powder for injection, 81 mg vial 900000000000526001 REPLACED BY association reference set 1045941000168107 Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial 20171130 +80219011000036102 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 868051000168106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 20170131 +74368011000036104 Tripacel injection suspension, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837601000168106 Tripacel injection suspension, 5 x 0.5 mL vials 20161031 +73368011000036102 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL gel: intestinal 900000000000526001 REPLACED BY association reference set 720461000168108 levodopa 20 mg/mL + carbidopa monohydrate 5 mg/mL intestinal gel 20151031 +81171011000036104 Gastrolyte fruit powder for oral liquid, 10 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871821000168106 Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets 20170131 +821611000168104 Coxiella burnetii antigen 2.5 microgram/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 955081000168105 Q fever skin test injection, 0.5 mL vial 20170630 +64581000036108 Quick-Eze chewable tablet, 12 900000000000526001 REPLACED BY association reference set 833671000168109 Quick-Eze chewable tablet, 12 20160930 +926342011000036108 Priorix powder for injection, 10 vials 900000000000526001 REPLACED BY association reference set 831151000168106 Priorix powder for injection, 10 vials 20160930 +929971011000036100 Medi Quattro First Aid cream 900000000000526001 REPLACED BY association reference set 863531000168104 Medi Quattro First Aid cream 20170131 +141751000036109 Somatuline Autogel 90 mg injection: solution, 1 syringe 900000000000526001 REPLACED BY association reference set 819541000168107 Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +929637011000036109 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724281000168107 PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches 20151031 +933246151000036109 Aspalgin dispersible tablet, 40, blister pack 900000000000526001 REPLACED BY association reference set 834321000168103 Aspalgin dispersible tablet, 40, blister pack 20161031 +700027061000036102 Femazole 150 mg capsule: hard, 1 capsule, blister pack 900000000000526001 REPLACED BY association reference set 685561000168104 Femazole Duo 150 mg hard capsule, 1, blister pack 20150228 +69759011000036101 lactate + sodium chloride + potassium chloride + calcium chloride dihydrate 900000000000526001 REPLACED BY association reference set 860961000168106 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate 20161231 +63331000036103 Worming Tablet (Chemmart) 100 mg chewable tablet, 6 900000000000526001 REPLACED BY association reference set 844281000168107 Worming Tablet (Chemmart) 100 mg tablet, 6 20161031 +836211000168108 Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872371000168107 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 20170131 +86461011000036106 bisacodyl 5 mg enteric tablet [3] (&) citric acid 14 g + magnesium carbonate heavy 7.5 g powder for oral liquid [1 x 21.5 g sachet] (&) bisacodyl 10 mg suppository [1], 1 pack 900000000000526001 REPLACED BY association reference set 831431000168109 bisacodyl 5 mg enteric tablet [3] (&) bisacodyl 10 mg suppository [1] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 20160930 +921431011000036107 Centrum Select 50 Plus tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 843331000168101 Centrum Select 50 Plus film-coated tablet, 100 20161031 +473751000168100 HCU Cooler 15 oral liquid: solution, 130 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724061000168105 HCU Cooler 15 Orange oral liquid solution, 130 mL pouch 20151031 +86139011000036100 Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 848651000168105 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 20161130 +12511000168102 Chlorhexidine Gluconate Hand Lotion (Orion) 900000000000526001 REPLACED BY association reference set 766611000168102 Chlorhexidine Hand Lotion (Orion) 20160331 +74283011000036100 Twinrix Junior injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824541000168103 Twinrix Junior injection suspension, 0.5 mL syringe 20160930 +59827011000036106 Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715421000168100 Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g, tube 20150930 +108731000036102 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20 900000000000526001 REPLACED BY association reference set 1056241000168107 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20 20171231 +50279011000036108 Leukopor (2472) 2.5 cm x 5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694011000168105 Leukopor (2472) 2.5 cm x 5 m tape, 1 roll, carton 20150331 +74728011000036105 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825551000168102 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +1021131000168101 mesalazine 500 mg granules, 300 sachets 900000000000526001 REPLACED BY association reference set 1084101000168104 mesalazine 500 mg modified release granules, 300 sachets 20180228 +65911000036109 Worming Tablet (Chemmart) 100 mg chewable tablet, 6, blister pack 900000000000526001 REPLACED BY association reference set 844291000168105 Worming Tablet (Chemmart) 100 mg tablet, 6, blister pack 20161031 +933225731000036107 ropivacaine hydrochloride monohydrate 200 mg/100 mL injection, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004551000168105 ropivacaine hydrochloride 200 mg/100 mL injection, 5 x 100 mL bags 20170930 +44102011000036104 Zovirax 400 mg dispersible tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 859581000168106 Zovirax Dispersible 400 mg tablet, 100, bottle 20161231 +19203011000036106 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack 900000000000526001 REPLACED BY association reference set 852781000168107 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104, blister pack 20161130 +84436011000036102 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 900000000000526001 REPLACED BY association reference set 873051000168109 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 20170131 +158341000036103 Oxycontin Reformulation 40 mg modified release tablet 900000000000526001 REPLACED BY association reference set 6513011000036107 Oxycontin 40 mg modified release tablet 20170731 +63686011000036105 clotrimazole 10% cream, 5 g 900000000000526001 REPLACED BY association reference set 715591000168104 clotrimazole 10% vaginal cream, 5 g 20150930 +87738011000036100 Osmolax 1 g/g oral liquid: powder for, 510 g, bottle 900000000000526001 REPLACED BY association reference set 703421000168102 Osmolax 1 g/g powder for oral liquid, 510 g, jar 20150630 +932461011000036104 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872891000168102 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 500 mL bottle 20170131 +13581011000036104 Subutex 400 microgram tablet, 7 900000000000526001 REPLACED BY association reference set 685881000168106 Subutex 400 microgram sublingual tablet, 7 20150228 +83954011000036109 TYR Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724901000168105 TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 20151031 +235461000168109 triglycerides long chain with glucose polymer oral liquid, 1 L bottle 900000000000526001 REPLACED BY association reference set 745371000168104 triglycerides long chain with glucose polymer oral liquid, 1 L carton 20160131 +712071000168103 Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005191000168105 Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +711541000168105 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004961000168102 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +726901000168103 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 1 dose 900000000000526001 REPLACED BY association reference set 881201000168106 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose 20170228 +900821000168101 PKU Sphere powder for oral liquid, 35 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 922531000168106 PKU Sphere20 Red Berry powder for oral liquid, 35 g sachet 20170430 +927640011000036102 Immucyst 1920 million CFU powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 1045961000168106 Immucyst 81 mg powder for injection, 1 vial 20171130 +63245011000036107 miconazole 2% oral gel, 10 g 900000000000526001 REPLACED BY association reference set 819991000168108 miconazole 2% oral gel, 10 g 20160731 +85391011000036102 Go Kit powder for oral liquid, 21.5 g sachet 900000000000526001 REPLACED BY association reference set 830921000168105 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 21.5 g sachet 20160930 +83703011000036106 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872471000168100 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 20170131 +19715011000036100 Prozac 20 mg dispersible tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 844341000168108 Prozac 20 mg tablet, 28, blister pack 20161031 +37937011000036102 calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 1 sachet 900000000000526001 REPLACED BY association reference set 810201000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 1 sachet 20160630 +84917011000036108 Strepsils lozenge, 36 900000000000526001 REPLACED BY association reference set 720321000168108 Strepsils Cool lozenge, 36 20151031 +75518011000036108 hepatitis B vaccine 40 microgram/mL injection, 1 mL vial 900000000000526001 REPLACED BY association reference set 825691000168106 hepatitis B dialysis vaccine injection, 1 mL vial 20160930 +923439011000036103 Creon Micro 5000 units/100 mg enteric coated granules, 20 g 900000000000526001 REPLACED BY association reference set 847171000168108 Creon Micro enteric coated granules, 20 g 20161130 +69540011000036109 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 995411000168103 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2, blister pack 20170831 +75529011000036105 diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 840751000168104 diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 10 x 0.5 mL syringes 20161031 +82426011000036106 potassium nitrate + silver 900000000000526001 REPLACED BY association reference set 722871000168104 silver nitrate + potassium nitrate 20151031 +73667011000036107 rotavirus pentavalent live reassortant oral vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 822241000168105 rotavirus type G1 live antigen 20160831 +728711000168102 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005761000168104 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +55742011000036100 Cortef 1% spray: solution, 30 mL 900000000000526001 REPLACED BY association reference set 776891000168103 Cortef 1% spray solution, 30 mL 20160430 +931512011000036101 Menveo injection: suspension, 1 pack, composite pack 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826731000168106 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack 20160930 +23215011000036106 lopinavir 80 mg/mL + ritonavir 20 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 689451000168100 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid 20150331 +80520011000036105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863891000168102 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 40 x 100 mL bags 20170131 +73658011000036102 pneumococcal 7 valent conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826021000168106 Streptococcus pneumoniae type 23F conjugate antigen 20160930 +703041000168103 influenza virus quadrivalent vaccine 2015 injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 709791000168106 influenza quadrivalent adult vaccine 2015 injection, 10 x 0.5 mL syringes 20150731 +75373011000036109 hepatitis B vaccine 20 microgram/mL injection, 25 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825361000168106 hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL vials 20160930 +56454011000036103 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24 900000000000526001 REPLACED BY association reference set 967671000168104 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24 20170731 +60572011000036108 Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 721791000168104 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 200 mL, bottle 20151031 +74541000036107 Flixonase Nasule 400 microgram/0.4 mL nasal drops: solution, 28 x 0.4 mL unit doses, tube 900000000000526001 REPLACED BY association reference set 684271000168106 Flixonase Nasule 400 microgram/0.4 mL nasal drops solution, 28 x 0.4 mL unit doses, ampoule 20150131 +74718011000036104 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831971000168104 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack, composite pack 20160930 +49257011000036109 Monogen powder for oral liquid, 400 g 900000000000526001 REPLACED BY association reference set 949691000168103 Monogen powder for oral liquid, 400 g 20170630 +65210011000036100 Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 5 mL ampoule 900000000000526001 REPLACED BY association reference set 701541000168108 Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 5 mL ampoule 20150531 +74261000036105 Levetiracetam (Pfizer) 1 g film-coated tablet, 60, bottle 900000000000526001 REPLACED BY association reference set 1003611000168108 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60, bottle 20170930 +53635011000036107 Cepacol Cough Plus Lemon lozenge 900000000000526001 REPLACED BY association reference set 995251000168103 Cepacol Cough Plus Lemon lozenge 20170831 +75414011000036107 hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 824821000168107 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 10 x 0.5 mL vials 20160930 +134271000036108 Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 746941000168103 Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +81133011000036100 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags 900000000000526001 REPLACED BY association reference set 868431000168108 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags 20170131 +51423011000036103 gauze and cotton tissue combine roll 10 cm x 10 m roll: wrapped pack, 1 pack 900000000000526001 REPLACED BY association reference set 688611000168106 gauze and cotton tissue combine roll 10 cm x 10 m wrapped pack roll, 1 20150331 +700032111000036102 calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 24 sachets 900000000000526001 REPLACED BY association reference set 810251000168101 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 24 sachets 20160630 +689631000168109 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 900000000000526001 REPLACED BY association reference set 831221000168107 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 20160930 +154311000036107 Celestone Chronodose injection: suspension, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 746341000168102 Celestone Chronodose injection suspension, 5 x 1 mL ampoules 20160131 +933220901000036106 Naropin 0.2% (40 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1004591000168100 Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule 20170930 +74198011000036109 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack 900000000000526001 REPLACED BY association reference set 821381000168104 Rabipur (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent ampoule), 1 pack 20160831 +71421000036103 Salofalk 1.5 g granules, 60 sachets 900000000000526001 REPLACED BY association reference set 1084251000168107 Salofalk 1.5 g modified release granules, 60 sachets 20180228 +20303011000036100 Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations, bottle 900000000000526001 REPLACED BY association reference set 879781000168102 Budamax Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack 20170228 +78109011000036103 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 1 kg 900000000000526001 REPLACED BY association reference set 705911000168102 glycerol 10% + cetomacrogol aqueous cream, 1 kg 20150731 +74941011000036109 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 826501000168109 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20160930 +73662011000036105 poliomyelitis virus type 2 (Sabin strain (P712, Ch, 2ab)) live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 838021000168108 poliovirus type 2 live antigen 20161031 +46909011000036102 methyl aminolevulinate hydrochloride 200 mg/g cream, 2 g 900000000000526001 REPLACED BY association reference set 999301000168107 methyl aminolevulinate 160 mg/g cream, 2 g 20170831 +35671011000036109 Poly Gel 0.3% eye gel, 30 x 500 mg unit doses, ampoule 900000000000526001 REPLACED BY association reference set 718751000168107 Poly Gel 0.3% eye gel, 30 x 500 mg unit doses, ampoule 20150930 +80221011000036108 Eye Stream eye solution 900000000000526001 REPLACED BY association reference set 834151000168108 Eye Stream eye solution 20161031 +933195991000036103 Levetiracetam (LAPL) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003461000168109 Levetiracetam 1000 (LAPL) 1 g film-coated tablet 20170930 +844521000168106 Zovirax 800 mg tablet, 5 900000000000526001 REPLACED BY association reference set 859471000168109 Zovirax Dispersible 800 mg tablet, 5 20161231 +36881011000036109 Actacode Linctus 5 mg/mL oral liquid: solution, 100 mL 900000000000526001 REPLACED BY association reference set 835551000168100 Actacode Linctus 5 mg/mL oral liquid solution, 100 mL 20161031 +81616011000036101 glucose 5% (12.5 g/250 mL) injection, 20 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863681000168104 glucose monohydrate 5% (12.5 g/250 mL) injection, 20 x 250 mL bags 20170131 +933220991000036103 fluoride 9.99 mg/g + hydrofluoric acid 4.9 mg/g foam 900000000000526001 REPLACED BY association reference set 932341000168107 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam 20170531 +33775011000036106 leuprorelin acetate 22.5 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 707331000168104 leuprorelin acetate 22.5 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 20150731 +711451000168106 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005021000168107 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +27967011000036106 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL syringes 900000000000526001 REPLACED BY association reference set 1007201000168101 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, 5 x 3 mL injection devices 20170930 +12170011000036102 Canesten Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715041000168101 Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g 20150930 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836981000168107 Streptococcus pneumoniae type 33F polysaccharide antigen 20161031 +925334011000036102 Omepro 20 mg capsule, 15, bottle 900000000000526001 REPLACED BY association reference set 716491000168109 Omepro 20 mg enteric capsule, 15, bottle 20150930 +127301000036101 MSUD Cooler 10 oral liquid: solution, 30 x 87 mL sachets 900000000000526001 REPLACED BY association reference set 725311000168105 MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches 20151031 +28201000036100 Lophlex HCU LQ 20 oral liquid: solution, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725151000168108 HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 20151031 +925170011000036100 Pemzo 20 mg capsule, 140, blister pack 900000000000526001 REPLACED BY association reference set 716331000168104 Pemzo 20 mg enteric capsule, 140, blister pack 20150930 +56709011000036101 Difflam Lozenge raspberry sugar free lozenge, 16 900000000000526001 REPLACED BY association reference set 995891000168109 Difflam Lozenge Raspberry Sugar Free lozenge, 16 20170831 +48655011000036104 Mefix (310250) 2.5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694191000168100 Mefix (310250) 2.5 cm x 10 m tape 20150331 +927314011000036106 hepatitis B vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 825481000168105 hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes 20160930 +757501000168108 Ursodox 250 mg capsule: hard, 100 900000000000526001 REPLACED BY association reference set 765961000168100 Ursodox (GH) 250 mg hard capsule, 100 20160331 +6865011000036106 Subutex 2 mg tablet 900000000000526001 REPLACED BY association reference set 685581000168108 Subutex 2 mg sublingual tablet 20150228 +11641011000036106 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, 10 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850761000168104 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules 20161130 +71731000036105 Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 862041000168107 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100 20161231 +73810011000036102 Polio Sabin Multidose oral liquid: solution, 1 vial 900000000000526001 REPLACED BY association reference set 839801000168100 Polio Sabin Multidose oral liquid solution, 1 vial 20161031 +50287011000036109 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694431000168108 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll, carton 20150331 +67118011000036101 Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 684731000168102 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 10 x 50 mL vials 20150131 +41561011000036109 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693351000168105 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 20150331 +44515011000036104 Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations, bottle 900000000000526001 REPLACED BY association reference set 1085261000168108 Nasonex Aqueous 50 microgram/actuation nasal spray, 140 actuations, pump pack 20180331 +73782011000036102 Havrix 1440 ELISA units/mL injection suspension, vial 900000000000526001 REPLACED BY association reference set 824711000168108 Havrix 1440 ELISA units/mL injection suspension, vial 20160930 +718891000168107 Infanrix Hexa (10 x 0.5 mL vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 841011000168105 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack 20161031 +74426011000036104 Quadracel injection suspension, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 840661000168105 Quadracel injection suspension, 5 x 0.5 mL vials 20161031 +148531000036101 Lax-Sachets solution: powder for, sachet 900000000000526001 REPLACED BY association reference set 674281000168104 Lax-Sachets powder for oral liquid, sachet 20141031 +925148011000036102 Omepro 20 mg capsule, 140, blister pack 900000000000526001 REPLACED BY association reference set 716441000168101 Omepro 20 mg enteric capsule, 140, blister pack 20150930 +711131000168109 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1006221000168108 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule 20170930 +924703011000036104 Omepro 20 mg capsule, 280 900000000000526001 REPLACED BY association reference set 716561000168101 Omepro 20 mg enteric capsule, 280 20150930 +49454011000036104 Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 689091000168104 Leukoflex (1124) 5 cm x 5 m tape, 1 roll 20150331 +8891000168108 Creon 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 847361000168104 Creon 25 000 20161130 +42781000036104 Glucaid 75 g/300 mL oral liquid: solution, 300 mL each 900000000000526001 REPLACED BY association reference set 692451000168108 Glucaid 75 g/300 mL oral liquid solution, 300 mL 20150331 +86927011000036106 calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet 900000000000526001 REPLACED BY association reference set 860071000168104 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet 20161231 +933214541000036100 Levetiracetam (Lupin) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003521000168100 Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60, blister pack 20170930 +933216011000036104 Recombinate 500 IU (1 x 500 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 710921000168104 Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 20150831 +702611000168100 diphtheria toxoid vaccine 2 Lf/0.5 mL + tetanus toxoid vaccine 2 Lf/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837381000168109 diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 0.5 mL vial 20161031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836801000168109 Streptococcus pneumoniae type 5 polysaccharide antigen 20161031 +73856011000036106 Gardasil injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823021000168100 Gardasil injection suspension, 0.5 mL syringe 20160831 +688811000168107 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831061000168109 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 20160930 +692211000168106 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848431000168102 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack, composite pack 20161130 +74349011000036100 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825121000168103 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 20160930 +74264011000036101 Polio Sabin Multidose oral liquid: solution, 100 vials 900000000000526001 REPLACED BY association reference set 839821000168109 Polio Sabin Multidose oral liquid solution, 100 vials 20161031 +84618011000036105 magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 50 900000000000526001 REPLACED BY association reference set 750281000168102 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 50 20160131 +27580011000036100 interferon alfa-2b 18 million units/1.2 mL injection, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722741000168100 interferon alfa-2b 18 million units/1.2 mL injection, 1.2 mL 20151031 +80526011000036108 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863751000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 30 x 250 mL bags 20170131 +76809011000036100 Centrum tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 833111000168109 Centrum film-coated tablet, 30 20160930 +933226061000036109 ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004701000168101 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, 5 x 100 mL bags 20170930 +6738011000036107 Lofenoxal uncoated tablet 900000000000526001 REPLACED BY association reference set 851011000168107 Lofenoxal uncoated tablet 20161130 +76697011000036101 Compound Benzoin Tincture Friar's Balsam (Orion) solution, 50 mL 900000000000526001 REPLACED BY association reference set 696431000168101 Compound Benzoin Friar's Balsam (Orion) tincture, 50 mL (Old Formulation 2010) 20150430 +75001011000036103 diphtheria toxoid vaccine + Haemophilus influenzae type b vaccine + hepatitis B vaccine + Bordetella pertussis, acellular pertactin vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine + tetanus toxoid vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 828231000168104 Haemophilus influenzae type b conjugate (PRP-T) vaccine 20161031 +82326011000036103 MSUD Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724961000168106 MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 20151031 +85170011000036107 tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694251000168103 tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll 20150331 +81129011000036104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags 900000000000526001 REPLACED BY association reference set 867871000168109 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags 20170131 +82407011000036103 Haemofiltration Replacement Fluid (Baxter) injection: solution, 2 x 5 L bags 900000000000526001 REPLACED BY association reference set 872451000168109 Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags 20170131 +931677011000036103 Actonel EC Combi (1 x Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack 900000000000526001 REPLACED BY association reference set 852691000168104 Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7, blister pack 20161130 +59728011000036109 Anti Fungal V 6 Day (Amcal) 1% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 714961000168102 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g, tube 20150930 +81707011000036108 sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, 18 x 500 mL bags 900000000000526001 REPLACED BY association reference set 872561000168107 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 18 x 500 mL bags 20170131 +75363011000036102 pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827521000168103 pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe 20160930 +35465011000036104 Poly Gel 0.3% eye gel, 500 mg unit dose 900000000000526001 REPLACED BY association reference set 718721000168104 Poly Gel 0.3% eye gel, 500 mg unit dose 20150930 +921409011000036101 Macu-Vision tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 757861000168106 Macu-Vision film-coated tablet, 30 20160229 +73250011000036102 Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes 900000000000526001 REPLACED BY association reference set 781291000168102 Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes 20160430 +922014011000036105 Panadeine Forte uncoated tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 835861000168101 Panadeine Forte uncoated tablet, 50, blister pack 20161031 +74277011000036101 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845941000168108 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +137361000036104 Ropivacaine Hydrochloride (Kabi) 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 710981000168100 Ropivacaine 0.2% (Kabi) 20150831 +61641000036102 Worming Tablet (Chemmart) 100 mg chewable tablet 900000000000526001 REPLACED BY association reference set 844251000168100 Worming Tablet (Chemmart) 100 mg tablet 20161031 +51409011000036108 tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694161000168107 tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll 20150331 +41521000036103 Glucaid 75 g/300 mL oral liquid: solution, 300 mL bottle 900000000000526001 REPLACED BY association reference set 692431000168102 Glucaid 75 g/300 mL oral liquid solution 20150331 +74860011000036103 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1 mL diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 822591000168104 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 20160831 +73850011000036108 Cervarix injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823141000168105 Cervarix injection suspension, 0.5 mL syringe 20160831 +930661011000036107 Prodeine 15 uncoated tablet, 50 900000000000526001 REPLACED BY association reference set 835721000168100 Prodeine 15 uncoated tablet, 50 20161031 +50480011000036107 HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724121000168104 HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 20151031 +828371000168109 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 846111000168102 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20161130 +177811000036105 Lyxumia Treatment Initiation Pack (14 x 10 microgram/0.2 mL (0.2 mL) unit doses, 14 x 20 microgram/0.2 mL (0.2 mL) unit doses), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 719421000168102 Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack, composite pack 20150930 +38020011000036100 atropine sulfate 1% eye drops, unit dose 900000000000526001 REPLACED BY association reference set 850891000168101 atropine sulfate monohydrate 1% eye drops, unit dose 20161130 +65276011000036106 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream 900000000000526001 REPLACED BY association reference set 705491000168101 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream 20150731 +69776011000036107 lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose 900000000000526001 REPLACED BY association reference set 861201000168108 sodium lactate + sodium chloride + potassium chloride + calcium chloride dihydrate + glucose 20161231 +2796011000036102 paper wasp venom 900000000000526001 REPLACED BY association reference set 758491000168102 paper wasp venom 20160229 +923900011000036100 Omeprazole (Pharmacor) 20 mg capsule, 15, bottle 900000000000526001 REPLACED BY association reference set 717161000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 15, bottle 20150930 +933220801000036102 Naropin 0.2% (200 mg/100 mL) injection: solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1004541000168108 Naropin 0.2% 200 mg/100 mL injection solution, 100 mL bag 20170930 +828031000168108 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845941000168108 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +656231000168106 Levetiracetam (AN) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003161000168102 Levetiracetam 1000 (AN) 1 g film-coated tablet, 60, blister pack 20170930 +60751011000036101 Difflam Lozenge raspberry sugar free lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995901000168108 Difflam Lozenge Raspberry Sugar Free lozenge, 16, blister pack 20170831 +7594011000036106 Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726391000168108 Norditropin Nordiflex 10 mg/1.5 mL injection solution 20151031 +941661000168106 Metformin (AS) 1 g film-coated tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 949551000168107 Metformin 1000 (AS) 1 g film-coated tablet, 90, blister pack 20170630 +103791000036107 Victoza 18 mg/3 mL injection: solution, 3 x 3 mL cartridges 900000000000526001 REPLACED BY association reference set 748121000168105 Victoza 6 mg/mL injection solution, 3 x 3 mL injection devices 20160131 +73889011000036105 Hiberix (Haemophilus influenzae type b vaccine 10 microgram) powder for injection, 10 microgram vial 900000000000526001 REPLACED BY association reference set 828251000168105 Hiberix (Haemophilus influenzae type b conjugate (PRP-T) vaccine) powder for injection, 10 microgram vial 20160930 +18750011000036100 Baraclude 500 microgram tablet: film-coated, 30, blister pack 900000000000526001 REPLACED BY association reference set 829531000168106 Baraclude 500 microgram film-coated tablet, 30, blister pack 20160930 +86733011000036106 Flo Sinus Care powder for nasal drops, 12 x 1.8 g sachets 900000000000526001 REPLACED BY association reference set 758701000168104 Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets 20160229 +933220931000036104 ropivacaine hydrochloride monohydrate 20 mg/10 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 1004481000168102 ropivacaine hydrochloride 20 mg/10 mL injection, ampoule 20170930 +933244191000036105 choriogonadotropin alfa 250 microgram/0.5 mL injection, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 728101000168104 choriogonadotropin alfa 250 microgram/0.5 mL injection, 1 dose 20151031 +689721000168104 triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment 900000000000526001 REPLACED BY association reference set 758261000168108 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment 20160229 +260721000168105 PKU Lophlex LQ 20 oral liquid: solution, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724591000168108 PKU Lophlex LQ 20 Berry oral liquid solution, 125 mL pouch 20151031 +28621000036108 Voltaren Osteo 1% gel, 150 g 900000000000526001 REPLACED BY association reference set 1037141000168101 Voltaren Osteo 1.16% gel, 150 g 20171130 +9151000036105 olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, 12 x 350 mL bags 900000000000526001 REPLACED BY association reference set 779161000168109 olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 12 x 350 mL bags 20160430 +139251000036104 ropivacaine hydrochloride monohydrate 50 mg/10 mL injection, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005981000168105 ropivacaine hydrochloride 50 mg/10 mL injection, 5 x 10 mL ampoules 20170930 +14140011000036107 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge 900000000000526001 REPLACED BY association reference set 1041421000168109 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device 20171130 +20375011000036107 Subutex 8 mg tablet, 7, blister pack 900000000000526001 REPLACED BY association reference set 685661000168103 Subutex 8 mg sublingual tablet, 7, blister pack 20150228 +75372011000036102 hepatitis B vaccine 20 microgram/mL injection, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825391000168104 hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL vials 20160930 +137911000036100 Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005841000168109 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule 20170930 +46681000168100 Albey Paper Wasp Vaccine 900000000000526001 REPLACED BY association reference set 32999011000036104 Paper Wasp Venom (Albey) 20160131 +73667011000036107 rotavirus pentavalent live reassortant oral vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 822261000168109 rotavirus type G3 live antigen 20160831 +74935011000036105 H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825711000168109 H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial 20160930 +921488011000036105 MD-Gastroview solution, 12 x 120 mL each 900000000000526001 REPLACED BY association reference set 696171000168108 MD-Gastroview solution, 12 x 120 mL 20150430 +76555011000036106 Sorbolene Cream with Glycerin (Orion) cream, 100 g 900000000000526001 REPLACED BY association reference set 705741000168101 Sorbolene Cream with Glycerin (Orion) cream, 100 g 20150731 +828011000168103 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845921000168102 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +56846011000036100 Disprin Original 300 mg dispersible tablet, 6 900000000000526001 REPLACED BY association reference set 804331000168105 Disprin Original 300 mg tablet, 6 20160630 +933234931000036107 Omeprazole (Sandoz) 20 mg capsule 900000000000526001 REPLACED BY association reference set 716161000168109 Omeprazole (Sandoz) 20 mg enteric capsule 20150930 +140361000036101 Menitorix (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 846091000168105 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20161130 +54077011000036105 Difflam Cough Lozenge blackcurrant sugar free lozenge 900000000000526001 REPLACED BY association reference set 995531000168107 Difflam Cough Lozenge Blackcurrant Sugar Free lozenge 20170831 +36165011000036101 Lanoxin 50 microgram/2 mL injection: solution, 2 mL ampoule 900000000000526001 REPLACED BY association reference set 735091000168102 Lanoxin Infants 50 microgram/2 mL injection solution, 2 mL ampoule 20151231 +933231831000036100 Fluoride Witchy Candy Mint (Laclede) foam, 165 mL, aerosol can 900000000000526001 REPLACED BY association reference set 932531000168108 Fluoride (Laclede) Witchy Candy Mint Flavour foam, 165 mL, aerosol can 20170531 +33823011000036108 docusate sodium 50 mg + sennoside B 8 mg tablet, 100 900000000000526001 REPLACED BY association reference set 81751011000036106 sennoside B 8 mg + senna leaf powder 5 mg + docusate sodium 50 mg tablet, 100 20151130 +73803011000036108 Infanrix Hexa injection: suspension, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 840901000168100 Infanrix Hexa 10 microgram powder for injection, 10 microgram vial 20161031 +941621000168101 Metformin (AS) 1 g film-coated tablet, 30, blister pack 900000000000526001 REPLACED BY association reference set 949511000168106 Metformin 1000 (AS) 1 g film-coated tablet, 30, blister pack 20170630 +64591000036105 calcium carbonate 780 mg + magnesium carbonate heavy 130 mg + magnesium trisilicate 130 mg chewable tablet, 12 900000000000526001 REPLACED BY association reference set 833661000168103 calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet, 12 20160930 +139231000036107 Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005911000168104 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +33048011000036102 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream 900000000000526001 REPLACED BY association reference set 715311000168103 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream 20150930 +70431000036107 Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 1 sachet 900000000000526001 REPLACED BY association reference set 810571000168108 Risedronate EC Combi D (Winthrop) effervescent granules, 1 sachet 20160630 +74768011000036103 Decongestant (Amcal) 0.05% nasal spray, 18 mL, bottle 900000000000526001 REPLACED BY association reference set 1083551000168107 Decongestant (Amcal) 0.05% nasal spray, 18 mL, pump pack 20180228 +73946011000036102 Dukoral (cholera toxin B subunit recombinant oral vaccine 1 mg + cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios) oral liquid suspension, 3 mL vial 900000000000526001 REPLACED BY association reference set 821881000168109 Dukoral (cholera vaccine) oral liquid suspension, 3 mL vial 20160831 +711581000168100 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005611000168109 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +90221000036104 Femcream (Pharmacy Action) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715491000168103 Femcream (Pharmacy Action) 1% vaginal cream, 35 g 20150930 +56716011000036108 Duro-Tuss Dry Cough Lozenge lemon lozenge, 2 900000000000526001 REPLACED BY association reference set 996181000168105 Duro-Tuss Dry Cough Lozenge lemon lozenge, 2 20170831 +73658011000036102 pneumococcal 7 valent conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826061000168101 Streptococcus pneumoniae type 9V conjugate antigen 20160930 +924872011000036100 Omepro 20 mg capsule, 30 900000000000526001 REPLACED BY association reference set 716581000168105 Omepro 20 mg enteric capsule, 30 20150930 +23481011000036107 follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 1041341000168105 follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, injection device 20171130 +76810011000036109 Centrum tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 833141000168108 Centrum film-coated tablet, 60 20160930 +260721000168105 PKU Lophlex LQ 20 oral liquid: solution, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724531000168109 PKU Lophlex LQ 20 Tropical oral liquid solution, 125 mL pouch 20151031 +70021000036103 carbomer 0.2% + triglyceride lipids 1% eye gel, unit dose 900000000000526001 REPLACED BY association reference set 719591000168101 carbomer-980 0.2% + triglyceride lipids 1% eye gel, unit dose 20150930 +52737011000036100 Cal-600 600 mg (calcium 600 g) tablet: film-coated, 120, bottle 900000000000526001 REPLACED BY association reference set 860281000168107 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle 20161231 +74265011000036102 Infanrix Hexa injection: suspension, 1 pack 900000000000526001 REPLACED BY association reference set 840921000168109 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack 20161031 +923909011000036106 Omeprazole (Pharmacor) 20 mg capsule, 90, bottle 900000000000526001 REPLACED BY association reference set 717471000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 90, bottle 20150930 +26750011000036109 darbepoetin alfa 150 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041311000168106 darbepoetin alfa 150 microgram/0.3 mL injection, 0.3 mL injection device 20171130 +140801000036108 Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006091000168103 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +933225831000036100 ropivacaine hydrochloride monohydrate 40 mg/20 mL injection, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004601000168107 ropivacaine hydrochloride 40 mg/20 mL injection, 5 x 20 mL ampoules 20170930 +664501000168102 sodium alginate + calcium carbonate + potassium bicarbonate 900000000000526001 REPLACED BY association reference set 21740011000036105 sodium alginate + bicarbonate + calcium carbonate 20170228 +680601000168106 Zaldiar Combination Therapy film-coated tablet 900000000000526001 REPLACED BY association reference set 1027821000168104 Zaldiar film-coated tablet 20171031 +54159011000036106 Canesten Clotrimazole Thrush Treatment Once 10% cream 900000000000526001 REPLACED BY association reference set 715581000168102 Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream 20150930 +39904011000036105 Voluven 6% / 0.9% injection solution, 500 mL bag 900000000000526001 REPLACED BY association reference set 1013401000168105 Voluven injection solution, 500 mL bag 20170930 +1085531000168102 Fluzone High-Dose injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 1122701000168106 Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes 20180430 +73910011000036109 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825811000168101 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +26711000036109 Vivaxim injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 827311000168100 Vivaxim injection suspension, 1 mL syringe 20160930 +710991000168102 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005841000168109 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 10 mL ampoule 20170930 +923453011000036102 Omeprazole (Pharmacor) 20 mg capsule, 90 900000000000526001 REPLACED BY association reference set 717451000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 90 20150930 +933231541000036107 Naropin 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005071000168108 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +925146011000036101 Omepro 20 mg capsule, 98, blister pack 900000000000526001 REPLACED BY association reference set 717031000168104 Omepro 20 mg enteric capsule, 98, blister pack 20150930 +87228011000036107 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 50 g 900000000000526001 REPLACED BY association reference set 705771000168108 glycerol 10% + cetomacrogol aqueous cream, 50 g 20150731 +74249011000036107 Gardasil injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823041000168106 Gardasil injection suspension, 0.5 mL syringe 20160831 +933221321000036106 Fluoride Panda Punch (Laclede) foam 900000000000526001 REPLACED BY association reference set 932601000168100 Fluoride (Laclede) Panda Punch Flavour foam 20170531 +77540011000036103 psyllium dried 520 mg/g + senna dried 100 mg/g granules 900000000000526001 REPLACED BY association reference set 832431000168100 dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules 20160930 +61120011000036108 Difflam Lozenge orange sugar free lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 995831000168105 Difflam Lozenge Orange Sugar Free lozenge, 2, blister pack 20170831 +94181000036101 Menactra injection: solution, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 826561000168105 Menactra injection solution, 0.5 mL vial 20160930 +873181000168101 morphine sulfate 30 mg tablet 900000000000526001 REPLACED BY association reference set 22423011000036106 morphine sulfate pentahydrate 30 mg tablet 20170430 +73874011000036100 Ipol injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839861000168104 Ipol injection solution, 0.5 mL syringe 20161031 +80639011000036106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 867991000168103 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 20170131 +695481000168105 Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848631000168104 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 20161130 +75020011000036101 pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 827501000168107 pneumococcal 7 valent conjugate vaccine injection, 0.5 mL syringe 20160930 +81297011000036101 sodium chloride 117 mg + potassium chloride 186 mg + glucose monohydrate 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 900000000000526001 REPLACED BY association reference set 871541000168102 sodium chloride 117 mg + potassium chloride 186 mg (potassium 2.5 mmol) + glucose 1.62 g + citric acid 384 mg + sodium bicarbonate 336 mg effervescent tablet 20170131 +924878011000036102 Omepro 20 mg capsule, 7 900000000000526001 REPLACED BY association reference set 716881000168108 Omepro 20 mg enteric capsule, 7 20150930 +77390011000036109 Centrum tablet: film-coated, 150, bottle 900000000000526001 REPLACED BY association reference set 833391000168103 Centrum film-coated tablet, 150, bottle 20160930 +83700011000036103 Glycoprep-C Flavoured powder for oral liquid, 70 g sachet 900000000000526001 REPLACED BY association reference set 901071000168102 Glycoprep-C powder for oral liquid, 70 g sachet 20170331 +56844011000036108 Disprin Original 300 mg dispersible tablet, 24 900000000000526001 REPLACED BY association reference set 804251000168109 Disprin Original 300 mg tablet, 24 20160630 +4668011000036102 Kenacomb Otic ointment 900000000000526001 REPLACED BY association reference set 758271000168102 Kenacomb Otic ear ointment 20160229 +6137011000036101 Cilamox sugar free 250 mg/5 mL powder for oral liquid, 5 mL 900000000000526001 REPLACED BY association reference set 932901000168109 Cilamox 250 mg/5 mL powder for oral liquid, 5 mL 20170531 +7276011000036104 Probitor 20 mg capsule 900000000000526001 REPLACED BY association reference set 715901000168102 Probitor 20 mg enteric capsule 20150930 +73667011000036107 rotavirus pentavalent live reassortant oral vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 822271000168103 rotavirus type G4 live antigen 20160831 +925144011000036109 Omepro 20 mg capsule, 50, blister pack 900000000000526001 REPLACED BY association reference set 716661000168100 Omepro 20 mg enteric capsule, 50, blister pack 20150930 +105531000036100 Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe 900000000000526001 REPLACED BY association reference set 703581000168104 Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe 20150630 +85699011000036107 Levetiracetam (Terry White Chemists) 1 g tablet, 60 900000000000526001 REPLACED BY association reference set 1003761000168103 Levetiracetam 1000 (Terry White Chemists) 1 g tablet, 60 20170930 +933225791000036108 ropivacaine hydrochloride monohydrate 150 mg/20 mL injection, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004901000168103 ropivacaine hydrochloride 150 mg/20 mL injection, 5 x 20 mL ampoules 20170930 +39792011000036105 Keppra 500 mg/5 mL injection: concentrated, 5 mL vial 900000000000526001 REPLACED BY association reference set 703081000168108 Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial 20150731 +69624011000036105 Aqium 66% gel, 1 L, bottle 900000000000526001 REPLACED BY association reference set 730561000168107 Aqium 66% gel, 1 L, bottle 20151130 +75376011000036103 hepatitis B vaccine 10 microgram/0.5 mL injection, 25 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825561000168100 hepatitis B child vaccine 10 microgram/0.5 mL injection, 25 x 0.5 mL vials 20160930 +923731011000036109 Omeprazole (Pharmacor) 20 mg capsule, 28, blister pack 900000000000526001 REPLACED BY association reference set 717181000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 28, blister pack 20150930 +78311011000036108 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 200 900000000000526001 REPLACED BY association reference set 833401000168101 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 200 20160930 +73940011000036100 Varivax Refrigerated (Varicella zoster live attenuated vaccine 1350 PFU) powder for injection, vial 900000000000526001 REPLACED BY association reference set 831711000168109 Varivax Refrigerated (varicella-zoster live vaccine) powder for injection, vial 20160930 +821621000168106 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955091000168108 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 20170630 +77581000036108 aciclovir 800 mg dispersible tablet, 5 900000000000526001 REPLACED BY association reference set 844511000168104 aciclovir 800 mg tablet, 5 20161031 +26633011000036107 mercaptopurine 50 mg tablet, 25 900000000000526001 REPLACED BY association reference set 845441000168102 mercaptopurine monohydrate 50 mg tablet, 25 20161130 +74435011000036108 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 900000000000526001 REPLACED BY association reference set 831091000168102 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 20160930 +26848011000036107 clonazepam 2.5 mg/mL oral liquid, 10 mL 900000000000526001 REPLACED BY association reference set 729111000168105 clonazepam 2.5 mg/mL (0.1 mg/drop) oral liquid, 10 mL 20151130 +50210011000036105 Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 689101000168109 Leukoflex (1124) 5 cm x 5 m tape, 1 roll, carton 20150331 +107281000036108 Sorbact Absorption (S98222) 10 cm x 10 cm dressing 900000000000526001 REPLACED BY association reference set 1056171000168106 Sorbact Absorption (S98222) 10 cm x 10 cm dressing 20171231 +20549011000036105 Avonex (4 x 6 million international units (30 microgram) vials, 4 x 1.1 mL diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 698281000168103 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1.1 mL inert diluent syringes), 1 pack 20150430 +75115011000036107 Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 840571000168103 diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial 20161031 +70133011000036108 benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture 900000000000526001 REPLACED BY association reference set 688391000168109 benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture 20150331 +55668011000036104 Clotrimazole 6 Day (Guardian) 1% cream, 50 g 900000000000526001 REPLACED BY association reference set 715261000168109 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g 20150930 +38810011000036106 atropine sulfate 1% eye drops, 20 x 0.5 mL unit doses 900000000000526001 REPLACED BY association reference set 850911000168104 atropine sulfate monohydrate 1% eye drops, 20 x 0.5 mL unit doses 20161130 +33646011000036106 vespula spp venom 900000000000526001 REPLACED BY association reference set 759031000168100 yellow jacket venom 20160229 +73459011000036107 apomorphine hydrochloride 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes 900000000000526001 REPLACED BY association reference set 781271000168103 apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, 5 x 10 mL syringes 20160430 +75391011000036101 hepatitis B vaccine 10 microgram/mL injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825641000168103 hepatitis B adult vaccine 10 microgram/mL injection, 1 mL syringe 20160930 +28173011000036103 follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041461000168104 follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, 1.5 mL injection device 20171130 +69474011000036106 Panadol Children's 7+ Years 250 mg tablet: soluble, 12, strip pack 900000000000526001 REPLACED BY association reference set 721561000168104 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12, strip pack 20151031 +74756011000036105 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825351000168109 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial 20160930 +139081000036103 exenatide 2 mg injection [4 vials] (&) inert substance diluent [4 syringes], 1 pack 900000000000526001 REPLACED BY association reference set 833911000168106 exenatide 2 mg modified release injection [1 vial] (&) inert substance diluent [1 syringe], 4 x 1 packs 20160930 +686431000168100 Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 698611000168107 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes 20150430 +36650011000036102 Codral Forte uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 834561000168102 Codral Forte uncoated tablet, 20 20161031 +80672011000036103 Gastrolyte orange powder for oral liquid, 2 x 5.2 g sachets 900000000000526001 REPLACED BY association reference set 871661000168102 Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets 20170131 +84271011000036105 Wagner Magnesium Forte 400 capsules: hard, 50, bottle 900000000000526001 REPLACED BY association reference set 750301000168103 Magnesium Forte 400 (Wagner) hard capsule, 50, bottle 20160131 +713321000168109 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005461000168105 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +71711000036101 Risedronate EC Combi (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium Carbonate tablets), 28 900000000000526001 REPLACED BY association reference set 852741000168102 Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28 20161130 +137811000036108 Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1005871000168102 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 100 mL bag 20170930 +75048011000036102 hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 824951000168107 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, syringe 20160930 +22187011000036108 diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 837261000168109 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 20161031 +177141000036104 Molaxole solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674221000168103 Molaxole powder for oral liquid, 30 sachets 20141031 +722891000168103 Silver Nitrate Applicator (Medical and Surgical Requisites) stick 900000000000526001 REPLACED BY association reference set 729261000168102 Silver Nitrate Applicator (Grafco) stick 20151130 +1021181000168100 Salofalk 1 g granules, 50 sachets 900000000000526001 REPLACED BY association reference set 1084161000168103 Salofalk 1 g modified release granules, 50 sachets 20180228 +96241000036109 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) chewable tablet 900000000000526001 REPLACED BY association reference set 861881000168104 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet 20161231 +711981000168108 Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005221000168104 Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +71683011000036108 calcium gluconate monohydrate 10% (5 g/50 mL) injection, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 684721000168100 calcium gluconate monohydrate 4.765 g/50 mL injection, 10 x 50 mL vials 20150131 +13615011000036105 Oxynorm 5 mg/5 mL oral liquid: solution, 250 mL 900000000000526001 REPLACED BY association reference set 815941000168103 Oxynorm 1 mg/mL oral liquid solution, 250 mL 20160731 +86226011000036109 bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge 900000000000526001 REPLACED BY association reference set 995981000168100 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge 20170831 +69801000036100 Artelac 0.2% / 1% eye gel 900000000000526001 REPLACED BY association reference set 719551000168106 Artelac 0.2% / 1% eye gel 20150930 +23263011000036109 calcium (as citrate) 250 mg (calcium 250 mg) tablet 900000000000526001 REPLACED BY association reference set 860021000168100 calcium citrate 1.19 g (calcium 250 mg) tablet 20161231 +933231821000036102 Fluoride Moose Mallow (Laclede) foam, 165 mL, aerosol can 900000000000526001 REPLACED BY association reference set 932561000168100 Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL, aerosol can 20170531 +74972011000036104 typhoid fever live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 827231000168103 typhoid live vaccine 20160930 +86870011000036102 Calcia plus Vitamin D 400 IU chewable tablet, 120, bottle 900000000000526001 REPLACED BY association reference set 860161000168109 Calcia plus Vitamin D 400 IU chewable tablet, 120, bottle 20161231 +933215431000036108 Acris Combi (1 x 35 mg tablet, 6 x 500 mg tablets), 1 pack, blister pack 900000000000526001 REPLACED BY association reference set 852591000168103 Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7, blister pack 20161130 +56160011000036102 Daktarin 2% oral gel, 20 g 900000000000526001 REPLACED BY association reference set 820081000168107 Daktarin 2% oral gel, 20 g 20160731 +84426011000036100 magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule 900000000000526001 REPLACED BY association reference set 750201000168105 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule 20160131 +80517011000036102 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864391000168105 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags 20170131 +86891011000036102 Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 704511000168107 Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial 20150630 +71341000036104 Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses 900000000000526001 REPLACED BY association reference set 719621000168104 Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses 20150930 +4543011000036106 Codalgin Forte uncoated tablet 900000000000526001 REPLACED BY association reference set 835871000168107 Codalgin Forte uncoated tablet 20161031 +14307011000036107 Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726361000168101 Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL 20151031 +728551000168109 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006031000168102 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +75371011000036108 hepatitis B vaccine 20 microgram/mL injection, 1 mL vial 900000000000526001 REPLACED BY association reference set 825331000168103 hepatitis B adult vaccine 20 microgram/mL injection, 1 mL vial 20160930 +20995011000036107 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041481000168108 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device 20171130 +925333011000036104 Omepro 20 mg capsule, 14, bottle 900000000000526001 REPLACED BY association reference set 716401000168103 Omepro 20 mg enteric capsule, 14, bottle 20150930 +95381000036102 Ostelin Vitamin D and Calcium chewable tablet, 60, bottle 900000000000526001 REPLACED BY association reference set 861921000168106 Ostelin Vitamin D and Calcium chewable tablet, 60, bottle 20161231 +75479011000036104 Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 830881000168103 varicella-zoster live vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 20160930 +60240011000036102 Xylocaine Pump Spray 10% spray solution, 50 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 949621000168100 Xylocaine Pump Spray 10% spray solution, 50 mL, pump actuated metered dose aerosol 20170630 +920360011000036108 Ostelin Vitamin D and Calcium tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 862311000168105 Ostelin Vitamin D and Calcium film-coated tablet, 60 20161231 +180171000036103 Bonecal 500 mg tablet: film-coated, 48, bottle 900000000000526001 REPLACED BY association reference set 848501000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 20161130 +75395011000036104 Varicella zoster live attenuated vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 831951000168108 varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL vial], 1 pack 20160930 +686851000168109 Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL injection devices 900000000000526001 REPLACED BY association reference set 698661000168105 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices 20150430 +46168011000036106 pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 15 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013471000168100 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 15 x 500 mL bags 20170930 +941631000168103 Metformin (AS) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 949521000168104 Metformin 1000 (AS) 1 g film-coated tablet, 60 20170630 +49443011000036104 Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694091000168101 Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll 20150331 +50335011000036103 Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 689231000168107 Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll, carton 20150331 +18686011000036104 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041201000168101 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device 20171130 +9061000036107 Clinoleic 20% injection: emulsion, 20 x 250 mL bags 900000000000526001 REPLACED BY association reference set 771961000168105 Clinoleic 20% injection emulsion, 20 x 250 mL bags 20160430 +51410011000036104 tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688951000168100 tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll 20150331 +57058011000036104 Difflam Lozenge honey and lemon sugar free lozenge, 16 900000000000526001 REPLACED BY association reference set 995691000168105 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 16 20170831 +13456011000036108 Lofenoxal uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 851031000168102 Lofenoxal uncoated tablet, 20 20161130 +50485011000036103 Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 689281000168108 Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll, carton 20150331 +73627011000036102 Bacillus Calmette and Guerin live attenuated vaccine 900000000000526001 REPLACED BY association reference set 822391000168107 Mycobacterium bovis (BCG) live antigen 20160831 +104121000036108 Irbesartan (Apo) 150 mg tablet, 30, blister pack 900000000000526001 REPLACED BY association reference set 807791000168104 Irbesartan (Apo) 150 mg film-coated tablet, 30, blister pack 20160630 +80670011000036102 Gastrolyte natural powder for oral liquid, 2 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871891000168108 Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets 20170131 +26749011000036101 darbepoetin alfa 20 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041031000168104 darbepoetin alfa 20 microgram/0.5 mL injection, 0.5 mL injection device 20171130 +168511000168109 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL can 900000000000526001 REPLACED BY association reference set 724001000168109 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 130 mL pouch 20151031 +85007011000036107 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL cartridges 900000000000526001 REPLACED BY association reference set 729871000168109 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices 20171130 +43969011000036109 Eleuphrat 0.05% lotion, 30 mL, bottle 900000000000526001 REPLACED BY association reference set 1054621000168106 Eleuphrat 0.05% lotion, 30 mL, bottle 20171231 +75467011000036100 Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837561000168106 diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial 20161031 +54033011000036103 Difflam Mouth oral gel 900000000000526001 REPLACED BY association reference set 995941000168105 Difflam Mouth oral gel 20170831 +66452011000036108 Cepacol 0.05% mouthwash, 150 mL 900000000000526001 REPLACED BY association reference set 994981000168104 Cepacol 0.05% mouthwash, 150 mL 20170831 +73651011000036106 meningococcal group W135 polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 827381000168106 Neisseria meningitidis group W135 polysaccharide antigen 20160930 +81163011000036105 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 900000000000526001 REPLACED BY association reference set 872251000168108 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 20170131 +711231000168104 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1006101000168108 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule 20170930 +718811000168103 Haemophilus influenzae type B polyribose ribitol phosphate vaccine 900000000000526001 REPLACED BY association reference set 828231000168104 Haemophilus influenzae type b conjugate (PRP-T) vaccine 20161031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836831000168102 Streptococcus pneumoniae type 8 polysaccharide antigen 20161031 +77269011000036107 Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 695631000168107 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles 20150430 +776471000168101 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge 900000000000526001 REPLACED BY association reference set 996091000168107 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge 20170831 +75477011000036106 Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 832331000168106 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 10 x 0.5 mL vials 20160930 +81729011000036109 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871831000168109 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 4.9 g sachets 20170131 +14631000036106 Clinoleic 20% injection: emulsion, 10 x 500 mL bags 900000000000526001 REPLACED BY association reference set 772001000168101 Clinoleic 20% injection emulsion, 10 x 500 mL bags 20160430 +69407011000036107 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 864311000168101 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 20170131 +930868011000036107 Elevit with Iodine tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 843301000168108 Elevit with Iodine film-coated tablet, 100 20161031 +33548011000036100 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715331000168108 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g, tube 20150930 +84616011000036106 magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 100 900000000000526001 REPLACED BY association reference set 750221000168101 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2mg) capsule, 100 20160131 +929473011000036101 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724361000168107 PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches 20151031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836621000168104 Streptococcus pneumoniae type 2 polysaccharide antigen 20161031 +74838011000036106 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 821461000168103 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack, composite pack 20160831 +38614011000036108 atropine sulfate 500 microgram/mL injection, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850601000168106 atropine sulfate monohydrate 500 microgram/mL injection, 50 x 1 mL ampoules 20161130 +933220551000036104 Norditropin Flexpro 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726571000168101 Norditropin Flexpro 15 mg/1.5 mL injection solution 20151031 +656221000168108 Levetiracetam (AN) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003151000168104 Levetiracetam 1000 (AN) 1 g film-coated tablet, 60 20170930 +716061000168105 MenCWY injection: solution, vial 900000000000526001 REPLACED BY association reference set 826771000168109 MenCWY injection solution, vial 20160930 +1021151000168107 Salofalk 500 mg granules, 300 sachets 900000000000526001 REPLACED BY association reference set 1084121000168108 Salofalk 500 mg modified release granules, 300 sachets 20180228 +921493011000036101 B-Dose (Biological Therapies) injection: solution, 6 x 2.5 mL vials 900000000000526001 REPLACED BY association reference set 704561000168105 B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials 20150630 +27939011000036105 calcium (as citrate) 250 mg (calcium 250 mg) tablet, 120 900000000000526001 REPLACED BY association reference set 860041000168106 calcium citrate 1.19 g (calcium 250 mg) tablet, 120 20161231 +54178011000036101 Difflam Lozenge honey and lemon sugar free lozenge 900000000000526001 REPLACED BY association reference set 995681000168107 Difflam Lozenge Honey and Lemon Sugar Free lozenge 20170831 +663111000168108 magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 833541000168103 magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 20160930 +702771000168104 PKU Anamix Junior oral liquid: powder for, 36 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726121000168109 PKU Anamix Junior Chocolate powder for oral liquid, 36 g sachet 20151031 +85370011000036102 Movicol Junior solution: powder for, 1 sachet 900000000000526001 REPLACED BY association reference set 674161000168102 Movicol Junior powder for oral liquid, 1 sachet 20141031 +33246011000036108 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 2 mL diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 707371000168101 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 20150731 +933196621000036100 Recombinate 500 IU (octocog alfa 500 international units) injection: powder for, vial 900000000000526001 REPLACED BY association reference set 710901000168108 Recombinate (octocog alfa 500 units) powder for injection, 500 units vial 20150831 +74234011000036105 Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 10 x 2 mL tubes 900000000000526001 REPLACED BY association reference set 822521000168101 Rotateq oral liquid, 10 x 2 mL tubes 20160831 +927717011000036104 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 1920 million CFU injection, vial 900000000000526001 REPLACED BY association reference set 1045931000168103 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection, vial 20171130 +74867011000036102 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 822311000168103 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20160831 +12635011000036108 Zovirax 200 mg dispersible tablet, 90 900000000000526001 REPLACED BY association reference set 859451000168100 Zovirax Dispersible 200 mg tablet, 90 20161231 +700033071000036104 calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent, 6 sachets 900000000000526001 REPLACED BY association reference set 810221000168109 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 6 sachets 20160630 +73906011000036109 Varilrix (Varicella zoster live attenuated vaccine 1995 PFU) powder for injection, vial 900000000000526001 REPLACED BY association reference set 830871000168101 Varilrix (varicella-zoster live vaccine) powder for injection, vial 20160930 +21233011000036108 fluticasone + salmeterol 900000000000526001 REPLACED BY association reference set 861471000168104 fluticasone propionate + salmeterol 20161231 +74871011000036100 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 828311000168101 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20160930 +75346011000036102 azelastine hydrochloride 140 microgram/actuation nasal spray, 10 mL 900000000000526001 REPLACED BY association reference set 809571000168103 azelastine hydrochloride 0.1% nasal spray, 10 mL 20160630 +74967011000036108 Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, fimbriae types 2 and 3 vaccine + Bordetella pertussis, acellular pertactin vaccine + diphtheria toxoid vaccine + tetanus toxoid vaccine 900000000000526001 REPLACED BY association reference set 837451000168108 diphtheria + tetanus + pertussis 5 component vaccine 20161031 +33495011000036107 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack 900000000000526001 REPLACED BY association reference set 707381000168103 Lucrin Depot 4-Month (1 x 30 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 20150731 +49503011000036101 PKU Cooler20 Orange oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725791000168102 PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches 20151031 +728241000168105 aclidinium + formoterol (eformoterol) fumarate dihydrate 900000000000526001 REPLACED BY association reference set 856861000168106 aclidinium + formoterol (eformoterol) 20161231 +81698011000036103 calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 5 x 2 L bags 900000000000526001 REPLACED BY association reference set 868011000168105 glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 5 x 2 L bags 20170131 +76553011000036105 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL 900000000000526001 REPLACED BY association reference set 705851000168109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL 20150731 +46411011000036102 aciclovir 400 mg dispersible tablet, 100 900000000000526001 REPLACED BY association reference set 795891000168102 aciclovir 400 mg tablet, 100 20161031 +74944011000036107 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert powder for oral liquid sachets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 821981000168103 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack, composite pack 20160831 +827951000168100 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846001000168104 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +245871000168102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL can 900000000000526001 REPLACED BY association reference set 710031000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 130 mL pouch 20151031 +74353011000036100 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 822221000168104 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20160831 +26747011000036108 darbepoetin alfa 40 microgram/0.4 mL injection, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041081000168103 darbepoetin alfa 40 microgram/0.4 mL injection, 0.4 mL injection device 20171130 +56585011000036100 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 649671000168100 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 200 mL 20151031 +6260011000036105 Prozac 20 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 844311000168109 Prozac 20 mg tablet 20161031 +39218011000036101 Fludara 50 mg injection: powder for, 50 mg vial 900000000000526001 REPLACED BY association reference set 710821000168107 Fludara IV 50 mg powder for injection, 50 mg vial 20150831 +41584011000036105 Zovirax 400 mg dispersible tablet, 70 900000000000526001 REPLACED BY association reference set 859541000168101 Zovirax Dispersible 400 mg tablet, 70 20161231 +689811000168103 Otocomb Otic ear ointment, 5 g 900000000000526001 REPLACED BY association reference set 758371000168105 Otocomb Otic ear ointment, 5 g 20160229 +56764011000036101 Combantrin-1 with Mebendazole 100 mg chewable tablet, 6 900000000000526001 REPLACED BY association reference set 844151000168107 Combantrin-1 with Mebendazole 100 mg tablet, 6 20161031 +61158011000036109 Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution, 30 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 721291000168108 Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL, pump pack 20151031 +75118011000036101 cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid, 3 mL vial 900000000000526001 REPLACED BY association reference set 821871000168106 cholera vaccine oral liquid, 3 mL vial 20160831 +925163011000036101 Pemzo 20 mg capsule, 280, blister pack 900000000000526001 REPLACED BY association reference set 716521000168106 Pemzo 20 mg enteric capsule, 280, blister pack 20150930 +40068011000036106 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 693281000168107 Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 20 mL ampoule 20150331 +80218011000036105 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 867971000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 20170131 +75121011000036103 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection, vial 900000000000526001 REPLACED BY association reference set 831031000168101 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, vial 20160930 +74764011000036105 Gardasil injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 823081000168101 Gardasil injection suspension, 10 x 0.5 mL vials 20160831 +73875011000036101 Je-Vax (Japanese encephalitis inactivated vaccine) powder for injection, vial 900000000000526001 REPLACED BY association reference set 822681000168103 Je-Vax (Japanese encephalitis (mouse brain-derived) inactivated vaccine) powder for injection, vial 20160831 +180121000036102 calcium (as carbonate) 500 mg tablet, 24 900000000000526001 REPLACED BY association reference set 847931000168108 calcium carbonate 1.25 g (calcium 500 mg) tablet, 24 20161130 +74371011000036103 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 832251000168105 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +75040011000036104 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 836651000168107 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 20161031 +51473011000036104 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL cans 900000000000526001 REPLACED BY association reference set 725541000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 87 mL pouches 20151031 +78215011000036100 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872971000168108 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 500 mL bottle 20170131 +933242941000036105 aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 40 900000000000526001 REPLACED BY association reference set 834301000168107 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 40 20161031 +75445011000036102 poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 839901000168105 polio trivalent inactivated vaccine injection, 10 x 0.5 mL syringes 20161031 +76125011000036103 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872931000168105 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +700161000168105 Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 822571000168100 Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack 20160831 +73660011000036106 poliomyelitis virus type 1 (Sabin strain (LS-c, 2ab)) live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 838011000168101 poliovirus type 1 live antigen 20161031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836861000168105 Streptococcus pneumoniae type 10A polysaccharide antigen 20161031 +40701000036106 Remeron 30 mg tablet: orally disintegrating 900000000000526001 REPLACED BY association reference set 783841000168105 Remeron Soltab 30 mg orally disintegrating tablet 20160531 +76801011000036104 Centrum tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 833171000168101 Centrum film-coated tablet, 100 20160930 +933224571000036104 Levitaccord 1000 mg 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003801000168106 Levitaccord-1000 1 g film-coated tablet, 60 20170930 +933223871000036104 Cardiprin 100 mg dispersible tablet, 30 900000000000526001 REPLACED BY association reference set 803971000168107 Cardiprin 100 mg tablet, 30 20160630 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836791000168108 Streptococcus pneumoniae type 4 polysaccharide antigen 20161031 +108721000036104 dressing hydrogel 10 cm x 10 cm foam dressing, 10 900000000000526001 REPLACED BY association reference set 1056331000168105 dressing hydrophobic 10 cm x 10 cm foam dressing, 10 20171231 +44104011000036108 Zovirax 800 mg dispersible tablet, 120, bottle 900000000000526001 REPLACED BY association reference set 859521000168107 Zovirax Dispersible 800 mg tablet, 120, bottle 20161231 +74776011000036107 Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL, bottle 900000000000526001 REPLACED BY association reference set 1083571000168103 Decongestant (Chemists' Own) 0.05% nasal spray, 18 mL, pump pack 20180228 +140771000036105 Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005921000168106 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +86169011000036106 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet, 1 x Bisacodyl (Fresenius Kabi) suppository), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831451000168103 Go Kit Plus (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Bisacodyl (Fresenius Kabi) suppository, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 20160930 +36004011000036107 Calcium carbonate / colecalciferol (Sanofi-Aventis) 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 35975011000036105 Actonel Combi D 20160630 +921544011000036100 Gastrolyte Citrus effervescent tablet, 20 900000000000526001 REPLACED BY association reference set 871571000168109 Gastrolyte Citrus effervescent tablet, 20 20170131 +78236011000036101 sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack 900000000000526001 REPLACED BY association reference set 703111000168103 sodium bicarbonate 250 mg/mL oral liquid [500 mL] (&) citric acid 200 mg/mL oral liquid [500 mL], 1 pack 20150531 +33286011000036100 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715321000168105 Clotrimazole Thrush Treatment 6 Day (Chemmart) 1% vaginal cream, 35 g 20150930 +13190011000036101 Botox 100 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 720871000168100 Botox 100 units powder for injection, 1 vial 20151031 +44103011000036106 Zovirax 400 mg dispersible tablet, 70, bottle 900000000000526001 REPLACED BY association reference set 859551000168104 Zovirax Dispersible 400 mg tablet, 70, bottle 20161231 +70054011000036101 magnesium sulfate heptahydrate 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection, ampoule 900000000000526001 REPLACED BY association reference set 701531000168104 magnesium sulfate heptahydrate 2.47 g/5 mL injection, ampoule 20150531 +74977011000036102 diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine + hepatitis B vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine 900000000000526001 REPLACED BY association reference set 836641000168105 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine 20161031 +26751011000036102 darbepoetin alfa 80 microgram/0.4 mL injection, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041181000168102 darbepoetin alfa 80 microgram/0.4 mL injection, 0.4 mL injection device 20171130 +54286011000036109 Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721811000168100 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution 20151031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836871000168104 Streptococcus pneumoniae type 11A polysaccharide antigen 20161031 +74651000036109 carbomer + triglyceride lipids 900000000000526001 REPLACED BY association reference set 719531000168100 carbomer-980 + triglyceride lipids 20150930 +33673011000036104 adrenaline 300 microgram/0.3 mL injection, syringe 900000000000526001 REPLACED BY association reference set 726701000168101 adrenaline (epinephrine) 300 microgram/0.3 mL injection, dose 20151031 +929637011000036109 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724611000168103 PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches 20151031 +71538011000036103 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g 900000000000526001 REPLACED BY association reference set 936651000168102 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel, 10 g 20170531 +923058011000036102 Levetiracetam (SZ) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003711000168101 Levetiracetam 1000 (SZ) 1 g film-coated tablet 20170930 +50481011000036100 Lophlex LQ oral liquid: solution, 30 x 125 mL cans 900000000000526001 REPLACED BY association reference set 726291000168103 Lophlex LQ oral liquid solution, 30 x 125 mL pouches 20151031 +22351011000036102 atropine sulfate 1% eye drops 900000000000526001 REPLACED BY association reference set 850941000168100 atropine sulfate monohydrate 1% eye drops 20161130 +176421000168106 MSUD Lophlex LQ 20 oral liquid: solution, 125 mL sachet 900000000000526001 REPLACED BY association reference set 725081000168102 MSUD Lophlex LQ 20 oral liquid solution, 125 mL pouch 20151031 +9031000036101 olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, 24 x 100 mL bags 900000000000526001 REPLACED BY association reference set 771921000168100 olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 24 x 100 mL bags 20160430 +22920011000036100 interferon alfa-2b 30 million units/1.2 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 722771000168107 interferon alfa-2b 30 million units/1.2 mL injection 20151031 +20245011000036103 Lofenoxal uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 851041000168106 Lofenoxal uncoated tablet, 20, blister pack 20161130 +91841000036100 Prostin E2 800 microgram/mL vaginal gel, 2.5 mL, syringe 900000000000526001 REPLACED BY association reference set 1005411000168107 Prostin E2 2 mg/3 g vaginal gel, 3 g syringe 20170930 +74289011000036102 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 900000000000526001 REPLACED BY association reference set 822901000168102 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 20160831 +43977011000036108 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 835531000168106 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL, bottle 20161031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836941000168102 Streptococcus pneumoniae type 19F polysaccharide antigen 20161031 +77546011000036100 benzoin sumatra 10% (100 mg/mL) + aloe vera 2% (20 mg/mL) + storax prepared 7.5% (75 mg/mL) + tolu balsam 2.5% (25 mg/mL) solution 900000000000526001 REPLACED BY association reference set 696401000168108 benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture 20150430 +48702011000036109 Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694081000168104 Leukosilk (1022) 2.5 cm x 5 m tape 20150331 +107331000036102 dressing hydrogel 10 cm x 10 cm foam dressing 900000000000526001 REPLACED BY association reference set 1056311000168100 dressing hydrophobic 10 cm x 10 cm foam dressing 20171231 +80528011000036107 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863811000168106 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 20170131 +74377011000036106 Comvax injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832311000168101 Comvax injection suspension, 0.5 mL vial 20160930 +933244441000036109 paracetamol 500 mg + codeine phosphate 8 mg tablet, 40 900000000000526001 REPLACED BY association reference set 652931000168102 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 40 20161031 +75444011000036101 poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839871000168105 polio trivalent inactivated vaccine injection, 0.5 mL syringe 20161031 +930839011000036105 Actonel EC Combi D (4 x Once-a-Week tablets, 24 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack 900000000000526001 REPLACED BY association reference set 810341000168109 Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack 20160630 +80174011000036108 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 900000000000526001 REPLACED BY association reference set 864231000168104 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 20170131 +900841000168107 PKU Sphere powder for oral liquid, 30 x 35 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 922611000168100 PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets 20170430 +82913011000036107 Kaletra 400/100 oral liquid: solution, 5 x 60 mL bottles 900000000000526001 REPLACED BY association reference set 689551000168104 Kaletra oral liquid solution, 5 x 60 mL, bottles 20150331 +18053011000036106 Actonel Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack, blister pack 900000000000526001 REPLACED BY association reference set 852661000168106 Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack 20161130 +80515011000036107 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864251000168105 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags 20170131 +76748011000036101 Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 10 x 75 mL vials 900000000000526001 REPLACED BY association reference set 695691000168106 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles 20150430 +74267011000036107 Infanrix Penta injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 836741000168100 Infanrix Penta injection suspension, 0.5 mL syringe 20161031 +61852011000036100 benzocaine 1 mg + cetylpyridinium chloride monohydrate 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge 900000000000526001 REPLACED BY association reference set 995241000168100 benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge 20170831 +28172011000036105 follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, 0.75 mL cartridge 900000000000526001 REPLACED BY association reference set 1041411000168102 follitropin alfa 450 units (32.76 microgram)/0.75 mL injection, 0.75 mL injection device 20171130 +140811000036105 Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006211000168101 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +50926011000036101 tape non woven retention polyacrylate 2.5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688881000168101 tape non woven retention polyacrylate 2.5 cm x 10 m tape 20150331 +682161000168102 Reandron 1 g/4 mL injection: solution, 4 mL vial 900000000000526001 REPLACED BY association reference set 722971000168109 Reandron-1000 1 g/4 mL modified release injection, 4 mL vial 20151031 +73851000036105 Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 862051000168109 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 100, bottle 20161231 +683991000168103 Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 838141000168103 Pneumovax-23 injection solution, 0.5 mL syringe 20161031 +74210011000036105 Adacel Polio injection suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 839711000168105 Adacel Polio injection suspension, 5 x 0.5 mL syringes 20161031 +1021171000168103 Salofalk 1 g granules, 50 sachets 900000000000526001 REPLACED BY association reference set 1084151000168100 Salofalk 1 g modified release granules, 50 sachets 20180228 +38568011000036108 aspirin 325 mg + codeine phosphate 30 mg tablet, 20 900000000000526001 REPLACED BY association reference set 834551000168104 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 20 20161031 +941581000168101 Metformin (AS) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 949471000168102 Metformin 1000 (AS) 1 g film-coated tablet 20170630 +776491000168100 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2 900000000000526001 REPLACED BY association reference set 996111000168104 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2 20170831 +74897011000036104 Beconase Allergy and Hayfever 12 Hour 0.05% (50 microgram/actuation) nasal spray, 200 actuations, bottle 900000000000526001 REPLACED BY association reference set 696331000168107 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 200 actuations, pump pack 20150430 +137961000036103 Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial 900000000000526001 REPLACED BY association reference set 746861000168106 Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial 20160131 +74260011000036106 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 831811000168101 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack 20160930 +85171011000036100 tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694311000168107 tape plaster adhesive with silicone 4 cm x 1.5 m tape, 1 roll 20150331 +683331000168103 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083011000168103 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack 20180228 +130311000036102 MSUD Cooler 10 oral liquid: solution, 30 x 87 mL sachets 900000000000526001 REPLACED BY association reference set 725321000168103 MSUD Cooler 10 oral liquid solution, 30 x 87 mL pouches 20151031 +161801000036106 aspirin 100 mg dispersible tablet, 180 900000000000526001 REPLACED BY association reference set 804101000168101 aspirin 100 mg tablet, 180 20160630 +689431000168106 Priorix-Tetra powder for injection, 10 vials 900000000000526001 REPLACED BY association reference set 831281000168106 Priorix-Tetra powder for injection, 10 vials 20160930 +32138011000036101 vespula spp venom 900000000000526001 REPLACED BY association reference set 759031000168100 yellow jacket venom 20160229 +55664011000036106 Anti Fungal V 6 Day (Amcal) 1% cream, 50 g 900000000000526001 REPLACED BY association reference set 715011000168100 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 50 g 20150930 +81127011000036106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags 900000000000526001 REPLACED BY association reference set 867791000168100 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 4 x 2.5 L bags 20170131 +74866011000036100 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 822231000168101 Stamaril (1 x 1000 units vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20160831 +73804011000036105 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845891000168107 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +166951000036107 Moviprep Lemon powder for oral liquid, 4 sachets 900000000000526001 REPLACED BY association reference set 902191000168107 Moviprep (2 x A sachets, 2 x B sachets), 4 sachets 20170331 +81771000036102 Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial 900000000000526001 REPLACED BY association reference set 703541000168109 Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial 20150630 +101121000036106 Victoza 18 mg/3 mL injection: solution, 3 mL cartridge 900000000000526001 REPLACED BY association reference set 748051000168101 Victoza 6 mg/mL injection solution, 3 mL injection device 20160131 +66965011000036109 Ora-Sed Jel oral gel, 10 g 900000000000526001 REPLACED BY association reference set 936661000168100 Ora-Sed Jel oral gel, 10 g 20170531 +70291000036107 Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated 900000000000526001 REPLACED BY association reference set 862021000168101 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet 20161231 +66453011000036101 Cepacol 0.05% mouthwash, 500 mL 900000000000526001 REPLACED BY association reference set 995011000168105 Cepacol 0.05% mouthwash, 500 mL 20170831 +12627011000036101 Zentel 200 mg chewable tablet, 6 900000000000526001 REPLACED BY association reference set 844221000168108 Zentel 200 mg tablet, 6 20161031 +931421011000036109 Medi Quattro First Aid cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 863551000168105 Medi Quattro First Aid cream, 50 g, tube 20170131 +13561011000036102 Clofeme Thrush Treatment 3 Day 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715101000168104 Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g 20150930 +61116011000036103 Difflam Lozenge honey and lemon sugar free lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 995721000168101 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2, blister pack 20170831 +706371000168104 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 831411000168104 M-M-R II (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 20160930 +36250011000036100 Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle 900000000000526001 REPLACED BY association reference set 775541000168102 Forthane 1 mL/mL inhalation solution 20160430 +84671011000036107 sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride 300 mg (magnesium 1.5 mmol)/L + sodium acetate trihydrate 3.68 g/L injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872481000168102 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, 1 L bag 20170131 +50419011000036103 Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m roll: wrapped pack, 1 pack, carton 900000000000526001 REPLACED BY association reference set 688631000168101 Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1, carton 20150331 +82805011000036104 Kaletra 400/100 oral liquid: solution, 5 x 60 mL 900000000000526001 REPLACED BY association reference set 689541000168101 Kaletra oral liquid solution, 5 x 60 mL 20150331 +35646011000036103 Movicol-Half solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674141000168101 Movicol-Half powder for oral liquid, 30 sachets 20141031 +26911000036106 Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827111000168103 Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160930 +32755011000036103 testosterone undecanoate 1 g/4 mL injection, 4 mL ampoule 900000000000526001 REPLACED BY association reference set 720561000168109 testosterone undecanoate 1 g/4 mL modified release injection, 4 mL ampoule 20151031 +75352011000036104 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837481000168101 diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial 20161031 +77322011000036104 Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 10 x 20 mL vials 900000000000526001 REPLACED BY association reference set 695531000168108 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 20 mL vials 20150430 +36260011000036107 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 900000000000526001 REPLACED BY association reference set 850901000168102 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 0.5 mL unit dose 20161130 +728721000168109 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005771000168105 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +77133011000036101 Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans 900000000000526001 REPLACED BY association reference set 726261000168105 Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches 20151031 +75413011000036105 hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825061000168109 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL vial 20160930 +36178011000036104 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, ampoule 900000000000526001 REPLACED BY association reference set 850401000168109 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, ampoule 20161130 +75890011000036106 psyllium dried 900000000000526001 REPLACED BY association reference set 826001000168102 dry psyllium seed 20160930 +670771000168103 Peptamen Junior powder for oral liquid, 400 g 900000000000526001 REPLACED BY association reference set 949661000168105 Peptamen Junior powder for oral liquid, 400 g 20170630 +933036011000036101 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 766161000168108 Eligard 6 Month (1 x 45 mg syringe, 1 x diluent syringe), 1 pack, composite pack 20160331 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826021000168106 Streptococcus pneumoniae type 23F conjugate antigen 20160930 +921433011000036108 Centrum Select 50 Plus tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 843271000168106 Centrum Select 50 Plus film-coated tablet, 60 20161031 +101151000036100 liraglutide 18 mg/3 mL injection, 2 x 3 mL cartridges 900000000000526001 REPLACED BY association reference set 748071000168105 liraglutide 6 mg/mL injection, 2 x 3 mL injection devices 20160131 +255261000168107 PKU Cooler15 Purple oral liquid: solution, 130 mL can 900000000000526001 REPLACED BY association reference set 725661000168101 PKU Cooler 15 Purple oral liquid solution, 130 mL pouch 20151031 +74758011000036109 Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube 900000000000526001 REPLACED BY association reference set 822501000168105 Rotateq oral liquid, 2 mL tube 20160831 +933214631000036106 Levetiracetam (GN) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003441000168105 Levetiracetam 1000 (GN) 1 g film-coated tablet, 60, blister pack 20170930 +84295011000036101 Clotrimazole 6 Day (Apo) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715791000168106 Clotrimazole 6 Day (Apo) 1% vaginal cream, 35 g, tube 20150930 +4713011000036103 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041301000168108 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device 20171130 +75510011000036106 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 840831000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 10 x 0.5 mL syringes 20161031 +926183011000036101 Medi Creme cream, 50 g 900000000000526001 REPLACED BY association reference set 863511000168109 Medi Creme cream, 50 g 20170131 +2439011000036108 pancrelipase 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 2284011000036101 lipase 20161130 +84420011000036103 picosulfate + magnesium + citric acid 900000000000526001 REPLACED BY association reference set 870871000168104 picosulfate + magnesium carbonate + citric acid 20170131 +71391000036105 exenatide 10 microgram/0.04 mL injection, 60 x 0.04 mL unit doses 900000000000526001 REPLACED BY association reference set 726821000168104 exenatide 10 microgram/dose injection, 60 doses 20151031 +50223011000036106 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694381000168101 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll, carton 20150331 +73831000036102 Risedronate EC Combi (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium Carbonate tablets), 28, blister pack 900000000000526001 REPLACED BY association reference set 852751000168100 Risedronate EC Combi (Winthrop) (4 x Risedronate EC tablets, 24 x Calcium Carbonate tablets), 28, blister pack 20161130 +711031000168108 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005911000168104 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +931519011000036106 Regaine Men's Extra Strength Foam 5% foam, 3 x 63 mL aerosol cans 900000000000526001 REPLACED BY association reference set 710801000168103 Regaine Men's Extra Strength 5% foam, 3 x 63 mL, aerosol cans 20150831 +65657011000036105 Aqium 66% gel 900000000000526001 REPLACED BY association reference set 730441000168107 Aqium 66% gel 20151130 +54032011000036105 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 5 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 648751000168109 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 5 mL 20151031 +35221011000036108 buprenorphine 400 microgram tablet, 28 900000000000526001 REPLACED BY association reference set 685841000168101 buprenorphine 400 microgram sublingual tablet, 28 20150228 +730621000168103 Granisetron (AFT) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 747121000168109 Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules 20160131 +71841000036108 Levetiracetam (Pfizer) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003591000168103 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet, 60 20170930 +54070011000036109 Combantrin-1 with Mebendazole 100 mg chewable tablet 900000000000526001 REPLACED BY association reference set 844141000168105 Combantrin-1 with Mebendazole 100 mg tablet 20161031 +83701011000036105 Glycoprep-C Flavoured powder for oral liquid, 210 g sachet 900000000000526001 REPLACED BY association reference set 901121000168102 Glycoprep-C powder for oral liquid, 210 g sachet 20170331 +12181011000036101 Kenacomb Otic ear drops: solution, 7.5 mL 900000000000526001 REPLACED BY association reference set 758341000168103 Kenacomb Otic ear drops solution, 7.5 mL 20160229 +20659011000036101 Caltrate 600 mg (calcium 600 g) tablet: film-coated, 120, bottle 900000000000526001 REPLACED BY association reference set 860341000168108 Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120, bottle 20161231 +83380011000036103 Prozero oral liquid: solution, 6 x 1 L bottles 900000000000526001 REPLACED BY association reference set 745411000168103 Prozero oral liquid solution, 6 x 1 L cartons 20160131 +821631000168109 Coxiella burnetii antigen 2.5 microgram/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955101000168103 Q fever skin test injection, 0.5 mL vial 20170630 +925338011000036109 Omepro 20 mg capsule, 50, bottle 900000000000526001 REPLACED BY association reference set 716671000168106 Omepro 20 mg enteric capsule, 50, bottle 20150930 +78112011000036106 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 100 g 900000000000526001 REPLACED BY association reference set 705731000168105 glycerol 10% + cetomacrogol aqueous cream, 100 g 20150731 +63463011000036104 lignocaine hydrochloride anhydrous 2.5% + benzalkonium chloride 0.1% spray, 125 mL 900000000000526001 REPLACED BY association reference set 861651000168105 lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray, 125 mL 20161231 +49265011000036105 Lophlex LQ oral liquid: solution, 30 x 125 mL cans 900000000000526001 REPLACED BY association reference set 726281000168101 Lophlex LQ oral liquid solution, 30 x 125 mL pouches 20151031 +77147011000036109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, tube 900000000000526001 REPLACED BY association reference set 705871000168100 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 100 mL, tube 20150731 +90401000036108 Prostin E2 400 microgram/mL vaginal gel, 2.5 mL 900000000000526001 REPLACED BY association reference set 1005351000168102 Prostin E2 1 mg/3 g vaginal gel, 3 g syringe 20170930 +664271000168109 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension 900000000000526001 REPLACED BY association reference set 833601000168104 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension 20160930 +34376011000036101 Subutex 2 mg tablet, 28 900000000000526001 REPLACED BY association reference set 685771000168100 Subutex 2 mg sublingual tablet, 28 20150228 +108751000036105 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10 900000000000526001 REPLACED BY association reference set 1056291000168104 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10 20171231 +154271000036107 Celestone Chronodose injection: suspension, ampoule 900000000000526001 REPLACED BY association reference set 746321000168108 Celestone Chronodose injection suspension, ampoule 20160131 +927623011000036107 Citrulline containing 1 g citrulline oral liquid: powder for, 30 x 4 g sachets 900000000000527005 SAME AS association reference set 108551000036104 Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets 20151130 +923924011000036104 Forteo 20 microgram injection: solution, 2.4 mL cartridge 900000000000526001 REPLACED BY association reference set 726961000168102 Forteo 20 microgram/dose injection solution, 28 doses, injection device 20151031 +33493011000036106 Lucrin Depot (1 x 7.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack, dual chamber composite pack 900000000000526001 REPLACED BY association reference set 707311000168109 Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack, dual chamber syringe 20150731 +81705011000036103 sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 872641000168109 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, 12 x 1 L bags 20170131 +80519011000036109 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 900000000000526001 REPLACED BY association reference set 863861000168109 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 20170131 +924879011000036105 Omepro 20 mg capsule, 90 900000000000526001 REPLACED BY association reference set 716971000168100 Omepro 20 mg enteric capsule, 90 20150930 +664361000168107 magnesium trisilicate + chalk + bicarbonate + magnesium 900000000000526001 REPLACED BY association reference set 871041000168108 magnesium trisilicate + chalk + bicarbonate + magnesium carbonate 20170131 +180131000036100 Bonecal 500 mg tablet: film-coated, 24 900000000000526001 REPLACED BY association reference set 848471000168104 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24 20161130 +73629011000036109 Q fever inactivated vaccine 900000000000526001 REPLACED BY association reference set 821471000168109 Coxiella burnetii antigen 20160831 +80634011000036105 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags 900000000000526001 REPLACED BY association reference set 867861000168103 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 x 3 L bags 20170131 +33608011000036100 Femizol Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715531000168103 Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube 20150930 +925138011000036101 Omepro 20 mg capsule, 28, blister pack 900000000000526001 REPLACED BY association reference set 716541000168100 Omepro 20 mg enteric capsule, 28, blister pack 20150930 +844791000168101 Zovirax 400 mg tablet 900000000000526001 REPLACED BY association reference set 859531000168105 Zovirax Dispersible 400 mg tablet 20161231 +22422011000036104 ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorbutol 5% + arachis oil 57% ear drops 900000000000526001 REPLACED BY association reference set 854341000168105 ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops 20161231 +82151011000036101 Calsource Ca1000 tablet: effervescent, 10 900000000000526001 REPLACED BY association reference set 745591000168106 Calsource Ca1000 effervescent tablet, 10 20160131 +37537011000036108 Actonel Combi D (4 x 35 mg tablets, 24 x sachets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 810531000168105 Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack, composite pack 20160630 +75484011000036109 hepatitis B vaccine 5 microgram/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825821000168108 hepatitis B child vaccine 5 microgram/0.5 mL injection, 0.5 mL vial 20160930 +20458011000036107 Probitor 20 mg capsule, 30, bottle 900000000000526001 REPLACED BY association reference set 717731000168102 Probitor 20 mg enteric capsule, 30, bottle 20150930 +79057011000036106 Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 704481000168100 Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 20150630 +922663011000036102 picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid, 2 x 20 g sachets 900000000000526001 REPLACED BY association reference set 832631000168102 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 2 x 20 g sachets 20160930 +63181000036102 glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid, 200 mL 900000000000526001 REPLACED BY association reference set 688131000168108 iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 200 mL 20150331 +166201000036103 Synarel 200 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085291000168101 Synarel 200 microgram/actuation nasal spray, 60 actuations, pump pack 20180228 +90291000036101 docosahexaenoic acid 22 mg + eicosapentaenoic acid 47 mg + krill oil 333.3 mg capsule, 30 900000000000526001 REPLACED BY association reference set 965891000168106 krill oil 333.3 mg capsule, 30 20170731 +85017011000036105 Mepitac (298300) 2 cm x 3 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694281000168105 Mepitac (298300) 2 cm x 3 m tape, 1 roll, carton 20150331 +931680011000036105 Implanon NXT 68 mg implant, 1, blister pack 900000000000526001 REPLACED BY association reference set 732371000168106 Implanon NXT 68 mg implant, 1, applicator 20151130 +11982011000036109 Aspalgin dispersible tablet, 50 900000000000526001 REPLACED BY association reference set 834281000168108 Aspalgin dispersible tablet, 50 20161031 +823851000168101 exenatide 2 mg modified release injection, cartridge 900000000000526001 REPLACED BY association reference set 833261000168101 exenatide 2 mg/dose + inert substance modified release injection, dose 20160930 +933203931000036103 Levetiracetam (MPPL) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003551000168108 Levetiracetam 1000 (MPPL) 1 g film-coated tablet, 60 20170930 +57207011000036102 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715721000168109 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g 20150930 +70048011000036106 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel 900000000000526001 REPLACED BY association reference set 936631000168108 choline salicylate 9% + benzalkonium chloride 0.01% + ethanol 31.7% oral gel 20170531 +85081011000036100 tape plaster adhesive with silicone 2 cm x 3 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694221000168106 tape plaster adhesive with silicone 2 cm x 3 m tape 20150331 +924875011000036108 Omepro 20 mg capsule, 500 900000000000526001 REPLACED BY association reference set 716691000168107 Omepro 20 mg enteric capsule, 500 20150930 +73882011000036100 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824861000168102 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +923841011000036107 Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827451000168105 Prevenar-13 injection suspension, 0.5 mL syringe 20160930 +933225721000036105 Naropin 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004561000168107 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +20537011000036102 Granocyte 13.4 million units (105 microgram) powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 838241000168106 Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial 20161031 +814961000168100 Entrip 10 mg tablet 900000000000526001 REPLACED BY association reference set 855901000168108 Entrip 10 mg film-coated tablet 20161231 +74358011000036105 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 828301000168104 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20160930 +65283011000036105 Salicylic Acid 3% in Aqueous Cream (David Craig) cream 900000000000526001 REPLACED BY association reference set 705441000168109 Salicylic Acid 3% in Aqueous Cream (David Craig) cream 20150731 +925332011000036106 Omepro 20 mg capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 718021000168101 Omepro 20 mg enteric capsule, 100, bottle 20150930 +828041000168104 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845951000168105 Meningitec 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +665551000168104 PKU Cooler15 Green oral liquid: solution, 130 mL can 900000000000526001 REPLACED BY association reference set 725601000168102 PKU Cooler 15 Green oral liquid solution, 130 mL pouch 20151031 +73633011000036108 human papillomavirus (type 6) vaccine 900000000000526001 REPLACED BY association reference set 822721000168109 human papillomavirus type 6 antigen 20160831 +44699011000036108 Metvix 200 mg/g cream, 2 g, tube 900000000000526001 REPLACED BY association reference set 999321000168103 Metvix 160 mg/g cream, 2 g, tube 20170831 +63061000036106 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 839751000168106 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL vial 20161031 +928479011000036100 Picolax powder for oral liquid, 20 x 20 g sachets 900000000000526001 REPLACED BY association reference set 833471000168106 Picolax powder for oral liquid, 20 x 20 g sachets 20160930 +76685011000036107 Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 695621000168109 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 50 mL bottles 20150430 +689681000168105 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 831321000168101 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 20160930 +60435011000036109 Zantac 150 mg/10 mL oral liquid: solution, 140 mL, bottle 900000000000526001 REPLACED BY association reference set 783911000168100 Zantac 150 mg/10 mL oral liquid, 140 mL, bottle 20160531 +930915011000036106 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16 900000000000526001 REPLACED BY association reference set 861291000168102 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16 20161231 +702791000168103 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726191000168106 PKU Anamix Junior Neutral powder for oral liquid, 30 x 36 g sachets 20151031 +63086011000036104 cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 10 mg lozenge, 16 900000000000526001 REPLACED BY association reference set 995441000168104 cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge, 16 20170831 +74385011000036108 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825831000168106 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +70015011000036109 salicylic acid 3% (30 mg/g) + sulfur-precipitated 3% (30 mg/g) + aqueous cream 940 mg/g cream 900000000000526001 REPLACED BY association reference set 705481000168104 salicylic acid 3% + precipitated sulfur 3% + aqueous cream 20150731 +703641000168105 meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 826931000168108 meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20160930 +74982011000036108 human papillomavirus (type 6) vaccine + human papillomavirus (type 11) vaccine + human papillomavirus (type 16) vaccine + human papillomavirus (type 18) vaccine 900000000000526001 REPLACED BY association reference set 822951000168103 human papillomavirus quadrivalent vaccine 20160831 +25391000036107 heparin sodium + sodium chloride 900000000000526001 REPLACED BY association reference set 858621000168104 heparin + sodium chloride 20161231 +924706011000036105 Pemzo 20 mg capsule, 280 900000000000526001 REPLACED BY association reference set 716511000168104 Pemzo 20 mg enteric capsule, 280 20150930 +18859011000036108 Canesten Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715051000168104 Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube 20150930 +168951000036106 Aquacel Ag (403771) 2 cm x 45 cm rope 900000000000526001 REPLACED BY association reference set 745071000168102 Aquacel Ag (403771) 2 cm x 45 cm ribbon 20160131 +86614011000036107 Flo Sinus Care powder for nasal drops, 1.8 g sachet 900000000000526001 REPLACED BY association reference set 758681000168102 Flo Sinus Care powder for irrigation solution, 1.8 g sachet 20160229 +26789011000036106 adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL cartridges 900000000000526001 REPLACED BY association reference set 729821000168108 adalimumab 40 mg/0.8 mL injection, 2 x 0.8 mL injection devices 20171130 +137871000036102 Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1006101000168108 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 10 mL ampoule 20170930 +174971000036100 Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, 60 actuations 900000000000526001 REPLACED BY association reference set 701511000168109 Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations 20150531 +48526011000036104 Leukoflex (1124) 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 689061000168106 Leukoflex (1124) 5 cm x 5 m tape 20150331 +71381000036108 Byetta 10 microgram/0.04 mL injection: solution, 60 x 0.04 mL unit doses 900000000000526001 REPLACED BY association reference set 726831000168101 Byetta 10 microgram/dose injection solution, 60 doses 20151031 +14641000036101 Clinoleic 20% injection: emulsion, 350 mL bag 900000000000526001 REPLACED BY association reference set 779141000168105 Clinoleic 20% injection emulsion, 350 mL bag 20160430 +27737011000036105 clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, 1 vial 900000000000526001 REPLACED BY association reference set 721031000168100 clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, 1 vial 20151031 +716021000168100 meningococcal group A conjugate vaccine 10 microgram injection, vial 900000000000526001 REPLACED BY association reference set 826661000168106 meningococcal A conjugate vaccine injection, vial 20160930 +85053011000036106 Strepsils lozenge, 36, blister pack 900000000000526001 REPLACED BY association reference set 720331000168106 Strepsils Cool lozenge, 36, blister pack 20151031 +117691000036106 Zoely, 84 tablets [3 x 28], blister pack 900000000000526001 REPLACED BY association reference set 683961000168105 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28, blister packs 20150131 +74937011000036100 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825791000168100 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials 20160930 +20711011000036100 Probitor 20 mg capsule, 30, blister pack 900000000000526001 REPLACED BY association reference set 717721000168100 Probitor 20 mg enteric capsule, 30, blister pack 20150930 +57059011000036107 Difflam Lozenge honey and lemon sugar free lozenge, 2 900000000000526001 REPLACED BY association reference set 995711000168108 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 2 20170831 +49266011000036103 TYR Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725921000168102 TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches 20151031 +56583011000036101 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 649651000168109 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 100 mL 20151031 +77387011000036109 Centrum tablet: film-coated, 120, bottle 900000000000526001 REPLACED BY association reference set 833241000168100 Centrum film-coated tablet, 120, bottle 20160930 +66986011000036100 Tinaderm Powder Spray 0.09% spray: pressurised, 100 g 900000000000526001 REPLACED BY association reference set 769621000168103 Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g 20160331 +924880011000036105 Pemzo 20 mg capsule, 100 900000000000526001 REPLACED BY association reference set 716261000168103 Pemzo 20 mg enteric capsule, 100 20150930 +1621000036108 clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, vial 900000000000526001 REPLACED BY association reference set 721081000168104 clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, vial 20151031 +85776011000036100 Go Kit (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet), 1 pack 900000000000526001 REPLACED BY association reference set 830971000168106 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack 20160930 +27348011000036106 pancrelipase 25 000 units capsule, 100 900000000000526001 REPLACED BY association reference set 847651000168109 lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule, 100 20161130 +74203011000036104 Azep 140 microgram/actuation nasal spray, 5 mL 900000000000526001 REPLACED BY association reference set 809551000168107 Azep 0.1% nasal spray, 5 mL 20160630 +74883011000036109 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832231000168104 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +73059011000036101 Duodopa gel: intestinal, 7 x 1 mL bags 900000000000526001 REPLACED BY association reference set 720521000168104 Duodopa intestinal gel, 7 x 100 mL 20151031 +74926011000036101 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 840851000168109 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 20161031 +76140011000036109 X-Evess 200 mg/mL oral liquid: solution 900000000000526001 REPLACED BY association reference set 702371000168103 X-Evess Part-2 200 mg/mL oral liquid solution 20150531 +689601000168102 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 900000000000526001 REPLACED BY association reference set 831311000168108 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 20160930 +84665011000036100 macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g + ascorbic acid 17.88 g powder for oral liquid, 1 sachet 900000000000526001 REPLACED BY association reference set 901131000168104 macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet 20170331 +77409011000036107 Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 861811000168105 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60, bottle 20161231 +81301011000036104 calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, bag 900000000000526001 REPLACED BY association reference set 872211000168107 sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, bag 20170131 +86173011000036101 Gastrolyte Blackcurrant effervescent tablet, 20, sachet 900000000000526001 REPLACED BY association reference set 871701000168109 Gastrolyte Blackcurrant effervescent tablet, 20, sachet 20170131 +71956011000036108 methylated spirit industrial 66% gel, 70 mL 900000000000526001 REPLACED BY association reference set 730451000168109 ethanol 66% gel, 70 mL 20151130 +73898011000036101 Tripacel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837551000168109 Tripacel injection suspension, 0.5 mL vial 20161031 +12634011000036109 Zovirax 200 mg dispersible tablet, 25 900000000000526001 REPLACED BY association reference set 859191000168103 Zovirax Dispersible 200 mg tablet, 25 20161231 +663811000168104 Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 900000000000526001 REPLACED BY association reference set 833531000168107 Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 20160930 +827871000168104 Neisseria meningitidis group C polysaccharide antigen 900000000000526001 REPLACED BY association reference set 826391000168106 meningococcal C conjugate vaccine 20161130 +40721000036101 Remeron 45 mg tablet: orally disintegrating 900000000000526001 REPLACED BY association reference set 783871000168103 Remeron Soltab 45 mg orally disintegrating tablet 20160531 +74908011000036105 Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083751000168104 Vicks Sinex 12 Hour Ultra Fine Mist 0.05% nasal spray, 15 mL, pump pack 20180228 +923849011000036106 Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules 900000000000526001 REPLACED BY association reference set 746981000168108 Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 20160131 +933225811000036109 ropivacaine hydrochloride monohydrate 75 mg/10 mL injection, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004951000168104 ropivacaine hydrochloride 75 mg/10 mL injection, 5 x 10 mL ampoules 20170930 +69221000036106 carbomer 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 716151000168107 carbomer-974P 20150930 +168711000168103 MSUD Express Cooler oral liquid: solution, 130 mL can 900000000000526001 REPLACED BY association reference set 725381000168104 MSUD Express Cooler oral liquid solution, 130 mL pouch 20151031 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826101000168103 Streptococcus pneumoniae type 4 conjugate antigen 20160930 +73658011000036102 pneumococcal 7 valent conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826031000168109 Streptococcus pneumoniae type 19F conjugate antigen 20160930 +77602011000036104 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet 900000000000526001 REPLACED BY association reference set 833021000168103 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet 20160930 +84658011000036100 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873071000168100 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 1 L bag 20170131 +23146011000036106 buprenorphine 400 microgram tablet 900000000000526001 REPLACED BY association reference set 685791000168104 buprenorphine 400 microgram sublingual tablet 20150228 +663761000168105 light kaolin + magnesium + bicarbonate 900000000000526001 REPLACED BY association reference set 870911000168101 light kaolin + magnesium carbonate + bicarbonate 20170131 +80215011000036104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 867811000168101 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 20170131 +75070011000036100 Haemophilus influenzae type b vaccine 10 microgram injection, vial 900000000000526001 REPLACED BY association reference set 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 20160930 +46751011000036100 etoposide 500 mg injection, 1 vial 900000000000526001 REPLACED BY association reference set 793511000168108 etoposide phosphate 567.8 mg (etoposide 500 mg) injection, 1 vial 20160531 +692201000168108 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848421000168100 Alendronate Plus D3 Calcium (Actavis) (4 x Alendronate D3 70 mg/140 microgram tablets, 48 x Calcium tablets), 1 pack 20161130 +22602011000036109 albendazole 200 mg chewable tablet 900000000000526001 REPLACED BY association reference set 844191000168102 albendazole 200 mg tablet 20161031 +66842011000036100 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g 900000000000526001 REPLACED BY association reference set 705511000168106 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g 20150731 +26411000036100 Movicol Chocolate solution: powder for, 1 sachet 900000000000526001 REPLACED BY association reference set 674001000168102 Movicol Chocolate powder for oral liquid, 1 sachet 20141031 +78108011000036106 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 325 mL 900000000000526001 REPLACED BY association reference set 705951000168101 glycerol 10% + cetomacrogol aqueous cream, 325 mL 20150731 +925160011000036109 Pemzo 20 mg capsule, 15, blister pack 900000000000526001 REPLACED BY association reference set 716361000168107 Pemzo 20 mg enteric capsule, 15, blister pack 20150930 +81585011000036100 metoclopramide hydrochloride 5 mg + paracetamol 500 mg capsule, 10 900000000000526001 REPLACED BY association reference set 867301000168105 metoclopramide 5 mg + paracetamol 500 mg capsule, 10 20170131 +56611011000036106 Paxyl 2.5% / 0.1% spray solution, 125 mL 900000000000526001 REPLACED BY association reference set 861661000168107 Paxyl 2.5% / 0.1% spray solution, 125 mL 20161231 +931678011000036102 Actonel EC Combi D (1 x Once-a-Week tablet, 6 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 810301000168107 Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack, composite pack 20160630 +75470011000036105 Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 832241000168108 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 10 x 0.5 mL vials 20160930 +76722011000036101 X-Evess (1 x 500 mL oral liquid, 1 x 500 mL oral liquid), 1 pack 900000000000526001 REPLACED BY association reference set 703121000168105 X-Evess (1 x 500 mL Part-1 oral liquid, 1 x 500 mL Part-2 oral liquid), 1 pack 20150531 +82516011000036108 amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724941000168107 amino acid formula with vitamins and minerals without valine, leucine and isoleucine with fat, carbohydrate and trace elements and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles 20151031 +87411011000036106 HCU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 725001000168105 HCU Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 20151031 +56158011000036106 Daktarin 2% oral gel, 10 g 900000000000526001 REPLACED BY association reference set 820001000168104 Daktarin 2% oral gel, 10 g 20160731 +844551000168103 Zovirax 800 mg tablet, 120, bottle 900000000000526001 REPLACED BY association reference set 859521000168107 Zovirax Dispersible 800 mg tablet, 120, bottle 20161231 +23539011000036108 albendazole 400 mg chewable tablet 900000000000526001 REPLACED BY association reference set 844061000168105 albendazole 400 mg tablet 20161031 +138771000036107 Menitorix (1 x vaccine vial, 1 x inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 846111000168102 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20161130 +81150011000036109 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags 900000000000526001 REPLACED BY association reference set 868401000168101 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags 20170131 +923905011000036109 Omeprazole (Pharmacor) 20 mg capsule, 500, bottle 900000000000526001 REPLACED BY association reference set 717321000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 500, bottle 20150930 +925145011000036108 Omepro 20 mg capsule, 90, blister pack 900000000000526001 REPLACED BY association reference set 716981000168102 Omepro 20 mg enteric capsule, 90, blister pack 20150930 +77386011000036106 Centrum tablet: film-coated, 115, bottle 900000000000526001 REPLACED BY association reference set 833211000168104 Centrum film-coated tablet, 115, bottle 20160930 +75014011000036103 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839611000168103 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 20161031 +698441000168109 Bexsero injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822801000168107 Bexsero injection suspension, 0.5 mL syringe 20160831 +728541000168107 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006021000168100 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +44105011000036107 Zovirax 800 mg dispersible tablet, 35, bottle 900000000000526001 REPLACED BY association reference set 859231000168107 Zovirax Dispersible 800 mg tablet, 35, bottle 20161231 +925158011000036100 Pemzo 20 mg capsule, 28, blister pack 900000000000526001 REPLACED BY association reference set 716451000168104 Pemzo 20 mg enteric capsule, 28, blister pack 20150930 +83651000036103 aspirin 100 mg dispersible tablet, 90 900000000000526001 REPLACED BY association reference set 26903011000036102 aspirin 100 mg tablet, 90 20160630 +87471011000036100 Levetiracetam (Generic Health) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003351000168101 Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60 20170930 +74276011000036104 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845911000168109 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +80640011000036101 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags 900000000000526001 REPLACED BY association reference set 868021000168103 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags 20170131 +35702011000036103 carbomer-974 0.3% eye gel, unit dose 900000000000526001 REPLACED BY association reference set 718711000168106 carbomer-974P 0.3% eye gel, unit dose 20150930 +684461000168104 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693471000168108 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules 20150331 +74259011000036105 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825861000168103 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes 20160930 +127371000036105 TYR Cooler 20 oral liquid: solution, 30 x 174 mL sachets 900000000000526001 REPLACED BY association reference set 725971000168101 TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches 20151031 +14108011000036104 Dolaforte tablet, 20 900000000000526001 REPLACED BY association reference set 835751000168108 Dolaforte tablet, 20 20161031 +86743011000036107 Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726731000168108 Anapen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose 20151031 +757511000168106 Ursodox 250 mg capsule: hard, 100, blister pack 900000000000526001 REPLACED BY association reference set 765971000168106 Ursodox (GH) 250 mg hard capsule, 100, blister pack 20160331 +4704011000036103 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, ampoule 900000000000526001 REPLACED BY association reference set 850741000168103 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, ampoule 20161130 +83533011000036101 dibasic sodium phosphate heptahydrate 900000000000527005 SAME AS association reference set 85238011000036109 dibasic sodium phosphate heptahydrate 20170331 +81992011000036102 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, ampoule 900000000000526001 REPLACED BY association reference set 850831000168100 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, ampoule 20161130 +797051000168106 Levetiracetam (Accord) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003101000168103 Levetiracetam 1000 (Accord) 1 g film-coated tablet 20170930 +922018011000036103 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 832031000168108 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack, composite pack 20160930 +76739011000036108 Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 10 x 30 mL vials 900000000000526001 REPLACED BY association reference set 695571000168106 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials 20150430 +21723011000036100 calcium citrate 900000000000526001 REPLACED BY association reference set 745551000168101 calcium 20161231 +6516011000036101 Prodeine 15 uncoated tablet 900000000000526001 REPLACED BY association reference set 835681000168106 Prodeine 15 uncoated tablet 20161031 +82526011000036100 paracetamol 500 mg + codeine phosphate 8 mg tablet, 20 900000000000526001 REPLACED BY association reference set 836091000168106 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 20 20161031 +80514011000036108 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 900000000000526001 REPLACED BY association reference set 864331000168106 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 50 mL bag 20170131 +71462011000036101 salicylic acid 5% (50 mg/g) + cetomacrogol aqueous cream 950 mg/g cream, 100 g 900000000000526001 REPLACED BY association reference set 705681000168101 salicylic acid 5% + cetomacrogol aqueous cream, 100 g 20150731 +22742011000036105 etoposide 100 mg injection, vial 900000000000526001 REPLACED BY association reference set 793401000168109 etoposide phosphate 113.6 mg (etoposide 100 mg) injection, vial 20160531 +63191000036100 Hepasol oral liquid: solution, 500 mL 900000000000526001 REPLACED BY association reference set 688171000168106 Hepasol oral liquid solution, 500 mL 20150331 +130291000036103 TYR Cooler 20 oral liquid: solution, 30 x 174 mL sachets 900000000000526001 REPLACED BY association reference set 725981000168103 TYR Cooler 20 oral liquid solution, 30 x 174 mL pouches 20151031 +844801000168100 Zovirax 400 mg tablet, 70 900000000000526001 REPLACED BY association reference set 859541000168101 Zovirax Dispersible 400 mg tablet, 70 20161231 +828001000168101 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845911000168109 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +711781000168106 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1005571000168100 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 100 mL bag 20170930 +18790011000036105 ADT Booster injection: suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837331000168108 ADT Booster injection suspension, 0.5 mL syringe 20161031 +35467011000036109 Movicol-Half solution: powder for, 1 sachet 900000000000526001 REPLACED BY association reference set 674111000168100 Movicol-Half powder for oral liquid, 1 sachet 20141031 +71955011000036101 methylated spirit industrial 66% gel, 375 mL 900000000000526001 REPLACED BY association reference set 730511000168109 ethanol 66% gel, 375 mL 20151130 +80652011000036100 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868311000168107 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 20170131 +91831000036105 Prostin E2 400 microgram/mL vaginal gel, 2.5 mL, syringe 900000000000526001 REPLACED BY association reference set 1005361000168100 Prostin E2 1 mg/3 g vaginal gel, 3 g syringe 20170930 +646241000168104 Biostate 1000 IU FVIII/2000 IU VWF (inert substance) diluent, 10 mL vial 900000000000526001 REPLACED BY association reference set 921971000168108 Biostate (inert substance) diluent, 10 mL vial 20170430 +929723011000036105 aluminium sulfate hydrate 98.6% stick 900000000000526001 REPLACED BY association reference set 846141000168103 aluminium sulfate 98.6% stick 20161130 +73834011000036102 Co-Phenylcaine Forte nasal spray, actuation 900000000000526001 REPLACED BY association reference set 791921000168105 Co-Phenylcaine Forte nasal spray 20160531 +806101000168109 Repatha 140 mg/mL injection: solution, 1 mL injection device 900000000000526001 REPLACED BY association reference set 846381000168105 Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device 20161130 +75408011000036103 rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, 10 x 1.5 mL syringes 900000000000526001 REPLACED BY association reference set 822921000168106 rotavirus live vaccine oral liquid, 10 x 1.5 mL syringes 20160831 +73858011000036105 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825521000168105 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +105561000036106 Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe 900000000000526001 REPLACED BY association reference set 703591000168101 Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe 20150630 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826111000168100 Streptococcus pneumoniae type 1 conjugate antigen 20160930 +21312011000036103 heparin sodium 900000000000526001 REPLACED BY association reference set 858661000168109 heparin 20161231 +36265011000036103 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 0.5 mL unit dose 900000000000526001 REPLACED BY association reference set 861691000168100 Lignocaine Hydrochloride 4% and Fluorescein Sodium 0.25% Minims (Bausch & Lomb) eye drops solution, 0.5 mL unit dose 20161231 +50527011000036108 PKU Cooler20 Orange oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725801000168101 PKU Cooler 20 Orange oral liquid solution, 30 x 174 mL pouches 20151031 +74295011000036100 Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 824731000168103 Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials 20160930 +76025011000036107 Sorbilax 1 mL/mL oral liquid: solution 900000000000526001 REPLACED BY association reference set 690651000168106 Sorbilax 70% non-crystallising oral liquid solution 20150331 +53813011000036108 Daktarin 2% oral gel 900000000000526001 REPLACED BY association reference set 819981000168105 Daktarin 2% oral gel 20160731 +931484011000036102 Prodeine 15 uncoated tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 835731000168102 Prodeine 15 uncoated tablet, 50, blister pack 20161031 +711021000168105 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005901000168102 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule 20170930 +66731000036105 calcium carbonate + magnesium + magnesium trisilicate 900000000000526001 REPLACED BY association reference set 871081000168103 calcium carbonate + magnesium carbonate + magnesium trisilicate 20170131 +689661000168101 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 831241000168101 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20160930 +93481000036107 boric acid 8.6 mg (boron 1.5 mg) + calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet 900000000000526001 REPLACED BY association reference set 932951000168108 colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet 20170531 +924697011000036104 First Aid (Amcal) cream, 50 g 900000000000526001 REPLACED BY association reference set 861511000168108 First Aid (Amcal) cream, 50 g 20161231 +81148011000036109 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags 900000000000526001 REPLACED BY association reference set 868271000168107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 6 x 2 L bags 20170131 +41221000036100 Lipistart powder for oral liquid 900000000000526001 REPLACED BY association reference set 949711000168100 Lipistart powder for oral liquid 20170630 +18871011000036107 Kenacomb Otic ointment, 5 g, tube 900000000000526001 REPLACED BY association reference set 758301000168100 Kenacomb Otic ear ointment, 5 g, tube 20160229 +73366011000036101 apomorphine hydrochloride 50 mg/10 mL injection: subcutaneous infusion, syringe 900000000000526001 REPLACED BY association reference set 781251000168107 apomorphine hydrochloride hemihydrate 50 mg/10 mL injection, syringe 20160430 +933221241000036106 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1004841000168105 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 200 mL bag 20170930 +922561011000036108 alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 100 900000000000526001 REPLACED BY association reference set 843321000168104 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 100 20161031 +14611000036102 Clinoleic 20% injection: emulsion, 20 x 250 mL bags 900000000000526001 REPLACED BY association reference set 771971000168104 Clinoleic 20% injection emulsion, 20 x 250 mL bags 20160430 +26371000168106 Regaine Men's Extra Strength Foam 900000000000526001 REPLACED BY association reference set 45451000168101 Regaine Men's Extra Strength 20150831 +17231000168107 Voluven 6% / 0.9% 900000000000526001 REPLACED BY association reference set 1013371000168107 Voluven 20170930 +75112011000036104 Varicella zoster live attenuated vaccine 1350 PFU injection, vial 900000000000526001 REPLACED BY association reference set 831701000168106 varicella-zoster live vaccine 1350 PFU injection, vial 20160930 +82401011000036106 Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 860381000168103 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100, bottle 20161231 +81702011000036106 calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags 900000000000526001 REPLACED BY association reference set 868171000168101 glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags 20170131 +70016011000036102 salicylic acid 5% (50 mg/g) + aqueous cream 950 mg/g cream 900000000000526001 REPLACED BY association reference set 705561000168109 salicylic acid 5% + aqueous cream 20150731 +74893011000036108 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 830901000168101 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20160930 +728391000168107 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe 900000000000526001 REPLACED BY association reference set 872101000168100 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe 20170131 +75065011000036100 hepatitis A inactivated vaccine 25 units/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 825091000168102 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, vial 20160930 +987291000168102 sebelipase alfa 2 mg/mL injection, vial 900000000000526001 REPLACED BY association reference set 1013311000168104 sebelipase alfa 20 mg/10 mL injection, vial 20170930 +48503011000036103 Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694051000168106 Leukosilk (1021) 1.25 cm x 5 m tape 20150331 +665491000168105 Codeine Phosphate (Aspen) 30 mg uncoated tablet, 100 900000000000526001 REPLACED BY association reference set 834721000168104 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100 20161031 +74561000036108 Salofalk 500 mg granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084091000168109 Salofalk 500 mg modified release granules, 100 sachets 20180228 +924208011000036102 omeprazole 20 mg capsule, 500 900000000000526001 REPLACED BY association reference set 716681000168109 omeprazole 20 mg enteric capsule, 500 20150930 +60890011000036101 Disprin Original 300 mg dispersible tablet, 24, strip pack 900000000000526001 REPLACED BY association reference set 804261000168106 Disprin Original 300 mg tablet, 24, strip pack 20160630 +718851000168102 Infanrix Hexa (1 x 0.5 mL vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack 900000000000526001 REPLACED BY association reference set 840921000168109 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack 20161031 +921854011000036101 Macu-Vision tablet: film-coated, 150, bottle 900000000000526001 REPLACED BY association reference set 757961000168104 Macu-Vision film-coated tablet, 150, bottle 20160229 +933215421000036106 Acris Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack, blister pack 900000000000526001 REPLACED BY association reference set 852621000168101 Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28, blister pack 20161130 +46669011000036102 disulfiram 200 mg tablet, 30 900000000000526001 REPLACED BY association reference set 796261000168104 disulfiram 200 mg effervescent tablet, 30 20160630 +61007011000036109 Clozole Vaginal Cream (Chemists' Own) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715561000168106 Clozole (Chemists' Own) 1% vaginal cream, 35 g, tube 20150930 +81164011000036107 Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 872281000168101 Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags 20170131 +933231851000036108 Fluoride Tyranna Grape (Laclede) foam, 165 mL, aerosol can 900000000000526001 REPLACED BY association reference set 932591000168107 Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL, aerosol can 20170531 +82924011000036101 pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827591000168101 pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe 20160930 +6888011000036103 Etopophos 1 g injection: powder for, vial 900000000000526001 REPLACED BY association reference set 793591000168104 Etopophos 1.136 g (etoposide 1 g) powder for injection, 1.136 g vial 20160531 +674991000168107 Simponi Smartject 100 mg/mL injection: solution, syringe 900000000000526001 REPLACED BY association reference set 845811000168103 Simponi Smartject 100 mg/mL injection solution, injection device 20161130 +73738011000036106 Varivax 900000000000526001 REPLACED BY association reference set 40011000168104 Varivax Refrigerated 20160131 +927689011000036103 Citrulline containing 1 g citrulline oral liquid: powder for, 30 x 4 g sachets 900000000000527005 SAME AS association reference set 110371000036102 Citrulline 1000 containing 1 g citrulline powder for oral liquid, 30 x 4 g sachets 20151130 +9131000036102 olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, 350 mL bag 900000000000526001 REPLACED BY association reference set 779121000168104 olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, 350 mL bag 20160430 +31523011000036103 magnesium sulfate 900000000000526001 REPLACED BY association reference set 64900011000036107 magnesium sulfate heptahydrate 20160930 +728811000168105 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006141000168105 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +933205571000036109 Recombinate 500 IU (1 x 500 international units vial, 1 x 10 mL diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 710911000168106 Recombinate (1 x 500 units vial, 1 x 10 mL inert diluent vial), 1 pack 20150831 +45881000168105 Friars' Balsam Compound Benzoin Tincture (Gold Cross) 900000000000526001 REPLACED BY association reference set 688371000168108 Friars' Balsam Compound Benzoin (Gold Cross) 20150331 +81135011000036104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags 900000000000526001 REPLACED BY association reference set 868031000168100 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 5 x 2 L bags 20170131 +71954011000036100 methylated spirit industrial 66% gel, 1 L 900000000000526001 REPLACED BY association reference set 730541000168108 ethanol 66% gel, 1 L 20151130 +75527011000036103 cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid [2 x 3 mL vials] (&) inert substance powder for oral liquid [2 x 5.6 g sachets], 1 pack 900000000000526001 REPLACED BY association reference set 821961000168107 cholera vaccine oral liquid [2 x 3 mL vials] (&) inert substance effervescent granules [2 x 5.6 g sachets], 1 pack 20160831 +49436011000036106 Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694061000168108 Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll 20150331 +92651000036108 calcium carbonate + colecalciferol + cupric sulfate anhydrous + magnesium oxide + manganese sulfate monohydrate + zinc 900000000000526001 REPLACED BY association reference set 861821000168103 calcium + colecalciferol + cupric sulfate + magnesium oxide + manganese sulfate monohydrate + zinc 20161231 +26831000036107 Femazole 150 mg capsule: hard, 1 capsule 900000000000526001 REPLACED BY association reference set 685541000168103 Femazole Duo 150 mg hard capsule 20150228 +921487011000036109 MD-Gastroview solution, 12 x 240 mL each 900000000000526001 REPLACED BY association reference set 696111000168100 MD-Gastroview solution, 12 x 240 mL 20150430 +34801011000036100 Subutex 2 mg tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 685781000168102 Subutex 2 mg sublingual tablet, 28, blister pack 20150228 +19351011000036109 Zovirax 800 mg dispersible tablet, 35, blister pack 900000000000526001 REPLACED BY association reference set 859411000168101 Zovirax Dispersible 800 mg tablet, 35, blister pack 20161231 +726851000168107 Epipen Auto-Injector 300 microgram/0.3 mL injection, dose 900000000000526001 REPLACED BY association reference set 881161000168101 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, dose 20170228 +761241000168107 Lomotil uncoated tablet, 8, blister pack 900000000000526001 REPLACED BY association reference set 851111000168106 Lomotil uncoated tablet, 8, blister pack 20161130 +81126011000036108 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 867761000168107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 20170131 +652261000168102 Cal-500 500 mg (calcium 500 mg) chewable tablet 900000000000526001 REPLACED BY association reference set 859751000168107 Cal-500 1.25 g (calcium 500 mg) chewable tablet 20161231 +23147011000036109 buprenorphine 2 mg tablet 900000000000526001 REPLACED BY association reference set 685571000168105 buprenorphine 2 mg sublingual tablet 20150228 +73675011000036106 cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 900000000000526001 REPLACED BY association reference set 821811000168103 Vibrio cholerae O1 inactivated antigen 20160831 +860231000168106 Ostelin Osteoguard film-coated tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 932991000168103 Ostelin Osteoguard film-coated tablet, 90, blister pack 20170531 +94751000036109 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 250 900000000000526001 REPLACED BY association reference set 862281000168108 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 250 20161231 +74720011000036108 Telnase 55 microgram/actuation nasal spray, 120 actuations, bottle 900000000000526001 REPLACED BY association reference set 1082791000168104 Telnase 55 microgram/actuation nasal spray, 120 actuations, pump pack 20180228 +923726011000036102 Omeprazole (Pharmacor) 20 mg capsule, 140, blister pack 900000000000526001 REPLACED BY association reference set 717131000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 140, blister pack 20150930 +933242931000036100 Aspalgin dispersible tablet, 40 900000000000526001 REPLACED BY association reference set 834311000168105 Aspalgin dispersible tablet, 40 20161031 +924874011000036109 Omepro 20 mg capsule, 50 900000000000526001 REPLACED BY association reference set 716651000168102 Omepro 20 mg enteric capsule, 50 20150930 +74370011000036105 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832221000168102 Liquid PedvaxHIB 7.5 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +75062011000036108 Japanese encephalitis inactivated vaccine injection, vial 900000000000526001 REPLACED BY association reference set 822671000168101 Japanese encephalitis (mouse brain-derived) inactivated vaccine injection, vial 20160831 +828381000168107 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 846121000168109 Menitorix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20161130 +34729011000036107 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 835591000168105 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL, bottle 20161031 +156951000036103 Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 862191000168103 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100, bottle 20161231 +776481000168103 bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2 900000000000526001 REPLACED BY association reference set 996101000168102 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 20170831 +84873011000036100 Mepitac (298400) 4 cm x 1.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694321000168100 Mepitac (298400) 4 cm x 1.5 m tape, 1 roll 20150331 +74981011000036102 pneumococcal 7 valent conjugate vaccine 900000000000526001 REPLACED BY association reference set 827491000168100 pneumococcal 7 valent conjugate vaccine 20160930 +716111000168106 MenCWY injection: solution, syringe 900000000000526001 REPLACED BY association reference set 826701000168104 MenCWY injection solution, syringe 20160930 +75022011000036102 rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, tube 900000000000526001 REPLACED BY association reference set 822461000168105 rotavirus pentavalent live vaccine oral liquid, 2 mL tube 20160831 +74963011000036104 poliomyelitis live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 839781000168104 polio trivalent live vaccine 20161031 +80214011000036103 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 867731000168104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 20170131 +150511000036105 Nicorette Quickmist 1 mg/actuation oral spray, 150 actuations 900000000000526001 REPLACED BY association reference set 1091951000168104 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations 20180331 +63051000036108 Adacel Polio injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 839761000168108 Adacel Polio injection suspension, 0.5 mL vial 20161031 +86597011000036109 Aqueous Cream (David Craig) 900000000000526001 REPLACED BY association reference set 768291000168105 Aqueous Cream APF (David Craig) 20160331 +177961000036100 Lyxumia 20 microgram/0.2 mL injection: solution, 2 x 14 unit doses cartridges 900000000000526001 REPLACED BY association reference set 719361000168102 Lyxumia 20 microgram/dose injection solution, 2 x 14 doses, injection devices 20150930 +88221000036103 Femcream (Pharmacy Action) 1% cream 900000000000526001 REPLACED BY association reference set 715481000168101 Femcream (Pharmacy Action) 1% vaginal cream 20150930 +711731000168105 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005521000168101 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +718881000168109 Infanrix Hexa (10 x 0.5 mL vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack 900000000000526001 REPLACED BY association reference set 841001000168107 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack 20161031 +6440011000036104 Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722831000168102 Intron A Redipen 60 million units/1.2 mL injection solution 20151031 +21891011000036107 tenofovir 900000000000526001 REPLACED BY association reference set 851521000168106 tenofovir disoproxil 20161130 +77492011000036100 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream 900000000000526001 REPLACED BY association reference set 705711000168100 glycerol 10% + cetomacrogol aqueous cream 20150731 +74811011000036106 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 824841000168101 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +76700011000036109 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872981000168106 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +65241011000036102 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 863621000168103 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 20170131 +87474011000036102 Levetiracetam (Sandoz) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003641000168107 Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60 20170930 +921055011000036101 Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 20 mL vial 900000000000526001 REPLACED BY association reference set 695111000168105 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 20 mL vial 20150430 +80525011000036101 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863691000168101 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 20 x 250 mL bags 20170131 +702791000168103 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726161000168104 PKU Anamix Junior Vanilla powder for oral liquid, 30 x 36 g sachets 20151031 +922539011000036101 ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 30 900000000000526001 REPLACED BY association reference set 829741000168106 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 30 20160930 +73341011000036102 Creon 40 000 units modified release capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 847351000168101 Creon 40 000 enteric capsule, 100, bottle 20161130 +75528011000036102 diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840721000168107 diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 20161031 +94741000036106 Ostelin Vitamin D and Calcium tablet: film-coated, 250 900000000000526001 REPLACED BY association reference set 862291000168106 Ostelin Vitamin D and Calcium film-coated tablet, 250 20161231 +711441000168109 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005011000168100 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +923724011000036105 Omeprazole (Pharmacor) 20 mg capsule, 98, blister pack 900000000000526001 REPLACED BY association reference set 717501000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 98, blister pack 20150930 +925345011000036102 Pemzo 20 mg capsule, 14, bottle 900000000000526001 REPLACED BY association reference set 716301000168106 Pemzo 20 mg enteric capsule, 14, bottle 20150930 +20953011000036100 Dolaforte tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835761000168105 Dolaforte tablet, 20, blister pack 20161031 +73634011000036105 human papillomavirus (type 11) vaccine 900000000000526001 REPLACED BY association reference set 822731000168107 human papillomavirus type 11 antigen 20160831 +54237011000036102 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream 900000000000526001 REPLACED BY association reference set 715711000168102 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream 20150930 +76750011000036101 Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 10 x 200 mL bottles 900000000000526001 REPLACED BY association reference set 695791000168100 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 200 mL bottles 20150430 +923735011000036106 Omeprazole (Pharmacor) 20 mg capsule, 90, blister pack 900000000000526001 REPLACED BY association reference set 717461000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 90, blister pack 20150930 +921066011000036100 Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial 900000000000526001 REPLACED BY association reference set 695311000168108 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle 20150430 +77333011000036108 Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 10 x 100 mL vials 900000000000526001 REPLACED BY association reference set 695751000168105 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles 20150430 +61929011000036104 dexchlorpheniramine maleate 2 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet 900000000000526001 REPLACED BY association reference set 45330011000036109 paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet 20170731 +12971011000036107 Prozac 20 mg dispersible tablet, 28 900000000000526001 REPLACED BY association reference set 844331000168104 Prozac 20 mg tablet, 28 20161031 +926956011000036100 Tramadol Hydrochloride SR (Sandoz) 100 mg modified release tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 1052991000168106 Tramadol SR (Sandoz) 100 mg modified release tablet, 20, bottle 20171231 +71195011000036107 benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge, 16 900000000000526001 REPLACED BY association reference set 995131000168104 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge, 16 20170831 +104211000036105 Irbesartan (Apo) 75 mg tablet, 30, bottle 900000000000526001 REPLACED BY association reference set 807831000168105 Irbesartan (Apo) 75 mg film-coated tablet, 30, bottle 20160630 +924204011000036109 omeprazole 20 mg capsule, 15 900000000000526001 REPLACED BY association reference set 716341000168108 omeprazole 20 mg enteric capsule, 15 20150930 +387791000168101 TYR Anamix Junior LQ oral liquid: solution, 125 mL can 900000000000526001 REPLACED BY association reference set 724881000168108 TYR Anamix Junior LQ oral liquid solution, 125 mL bottle 20151031 +9071000036104 olive oil 40 mL/250 mL + soya oil 10 mL/250 mL injection, 20 x 250 mL bags 900000000000526001 REPLACED BY association reference set 771951000168108 olive oil 40 g/250 mL + soya oil 10 g/250 mL injection, 20 x 250 mL bags 20160430 +922083011000036105 calcium (as carbonate) 1 g + colecalciferol 22 microgram (880 units) granules: effervescent, 7 g sachet 900000000000526001 REPLACED BY association reference set 810621000168106 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 7.3 g sachet 20160630 +61571000036108 Adacel Polio injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 839741000168109 Adacel Polio injection suspension, 0.5 mL vial 20161031 +920824011000036108 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet 900000000000526001 REPLACED BY association reference set 733961000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet 20161231 +89541000036103 Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 861861000168108 Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60 20161231 +22942011000036104 botulinum toxin type A 100 units injection, vial 900000000000526001 REPLACED BY association reference set 720841000168107 botulinum toxin type A 100 units injection, vial 20151031 +45067011000036103 betamethasone (as dipropionate) 0.05% lotion 900000000000526001 REPLACED BY association reference set 1054581000168106 betamethasone (as dipropionate) 0.05% lotion 20171231 +75381011000036100 human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 823061000168105 human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL vials 20160831 +50921011000036106 tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694341000168106 tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape 20150331 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836841000168106 Streptococcus pneumoniae type 9N polysaccharide antigen 20161031 +60727011000036105 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 721931000168101 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL, bottle 20151031 +140781000036107 Ropivacaine Hydrochloride (Kabi) 0.5% (50 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006001000168109 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +933195511000036103 Levetiracetam (SCP) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003671000168100 Levetiracetam 1000 (SCP) 1 g film-coated tablet 20170930 +7018011000036101 Granocyte 13.4 million units (105 microgram) powder for injection, 105 microgram vial 900000000000526001 REPLACED BY association reference set 838221000168100 Granocyte-13 13.4 million units (105 microgram) powder for injection, 105 microgram vial 20161031 +82525011000036107 aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 20 900000000000526001 REPLACED BY association reference set 834241000168103 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 20 20161031 +51250011000036109 triglycerides medium chain formula powder for oral liquid, 400 g 900000000000526001 REPLACED BY association reference set 949651000168108 protein formula with carbohydrate, fat, vitamins and minerals powder for oral liquid, 400 g 20170630 +73942011000036101 H-B-Vax II preservative free 10 microgram/mL injection suspension, vial 900000000000526001 REPLACED BY association reference set 825731000168104 H-B-Vax II preservative free 10 microgram/mL injection suspension, vial 20160930 +72581000036106 Salofalk 500 mg granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084081000168106 Salofalk 500 mg modified release granules, 100 sachets 20180228 +711141000168100 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006231000168106 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +52234011000036102 salicylic acid + sulfur-precipitated 900000000000526001 REPLACED BY association reference set 69871011000036100 salicylic acid + precipitated sulfur + aqueous cream 20150430 +32534011000036100 Reandron oily solution 1 g/4 mL injection, 4 mL ampoule 900000000000526001 REPLACED BY association reference set 720581000168100 Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule 20151031 +643311000168104 Lucrin Depot 3-Month (inert substance) diluent, 2 mL syringe 900000000000526001 REPLACED BY association reference set 707321000168102 Lucrin Depot 3-Month (inert substance) diluent, 1.5 mL syringe 20150731 +141491000036106 Somatuline Autogel 60 mg injection: solution, syringe 900000000000526001 REPLACED BY association reference set 819571000168100 Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +56187011000036104 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 16 900000000000526001 REPLACED BY association reference set 861481000168101 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16 20161231 +22701011000036107 pancrelipase 25 000 units capsule 900000000000526001 REPLACED BY association reference set 847631000168103 lipase 25 000 units + amylase 22 500 units + protease 1250 units enteric capsule 20161130 +74968011000036109 diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine 900000000000526001 REPLACED BY association reference set 840691000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent vaccine 20161031 +924869011000036102 Omepro 20 mg capsule, 14 900000000000526001 REPLACED BY association reference set 716371000168101 Omepro 20 mg enteric capsule, 14 20150930 +80225011000036105 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868291000168108 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 3 L bag 20170131 +81711011000036103 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 4 x 3 L bags 900000000000526001 REPLACED BY association reference set 868381000168101 glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags 20170131 +664251000168100 magnesium trisilicate + magnesium + bicarbonate 900000000000526001 REPLACED BY association reference set 871071000168101 magnesium trisilicate + magnesium carbonate + bicarbonate 20170131 +71546011000036103 magnesium sulfate heptahydrate 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection, 10 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 701551000168105 magnesium sulfate heptahydrate 2.47 g/5 mL injection, 10 x 5 mL ampoules 20150531 +656211000168101 Levetiracetam (AN) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003141000168101 Levetiracetam 1000 (AN) 1 g film-coated tablet 20170930 +66973011000036101 Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 10 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 701561000168107 Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules 20150531 +105511000036109 aflibercept 2 mg/0.05 mL injection, syringe 900000000000526001 REPLACED BY association reference set 703551000168106 aflibercept 4 mg/0.1 mL injection, syringe 20150630 +923395011000036101 Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 5 x 3 mL ampoules 900000000000526001 REPLACED BY association reference set 746971000168105 Granisetron (Kabi) 3 mg/3 mL injection solution, 5 x 3 mL ampoules 20160131 +74766011000036102 Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 10 x 2 mL tubes 900000000000526001 REPLACED BY association reference set 822531000168103 Rotateq oral liquid, 10 x 2 mL tubes 20160831 +77562011000036107 citric acid 200 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 702361000168109 citric acid 200 mg/mL oral liquid 20150531 +653671000168100 Retinofluor 1.25 g/5 mL injection: solution, 10 x 5 mL vials 900000000000526001 REPLACED BY association reference set 721221000168106 Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials 20151031 +177661000036108 lixisenatide 20 microgram/0.2 mL injection, unit dose 900000000000526001 REPLACED BY association reference set 719241000168107 lixisenatide 20 microgram/dose injection, dose 20150930 +83258011000036101 Cardioplegia Sterile (DBL) concentrated injection, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 872171000168105 Cardioplegia Sterile (DBL) concentrated injection, 20 mL ampoule 20170131 +48510011000036109 Leukopor (2472) 2.5 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 693981000168102 Leukopor (2472) 2.5 cm x 5 m tape 20150331 +19347011000036103 Zovirax 200 mg dispersible tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 859611000168104 Zovirax Dispersible 200 mg tablet, 90, blister pack 20161231 +86237011000036105 monobasic sodium phosphate monohydrate 480 mg/mL + dibasic sodium phosphate heptahydrate 180 mg/mL oral liquid, bottle 900000000000526001 REPLACED BY association reference set 1097781000168104 monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, bottle 20180331 +69049011000036101 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g, jar 900000000000526001 REPLACED BY association reference set 705701000168103 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g, jar 20150731 +76825011000036106 Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 861801000168107 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 60 20161231 +815211000168109 Entrip 50 mg tablet, 100 900000000000526001 REPLACED BY association reference set 856821000168101 Entrip 50 mg film-coated tablet, 100 20161231 +72972011000036105 Creon 40 000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847321000168109 Creon 40 000 enteric capsule 20161130 +29171000036108 macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 30 sachets 900000000000526001 REPLACED BY association reference set 674011000168104 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 30 sachets 20141031 +933220841000036104 Naropin 1% (100 mg/10 mL) injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1004991000168109 Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule 20170930 +74920011000036104 Boostrix injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837701000168100 Boostrix injection suspension, 10 x 0.5 mL syringes 20161031 +75006011000036108 meningococcal group C conjugate vaccine 900000000000526001 REPLACED BY association reference set 826391000168106 meningococcal C conjugate vaccine 20160930 +74850011000036105 Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1085361000168104 Otrivin Classic M-D Adult 0.1% nasal spray, 15 mL, pump pack 20180228 +83329011000036102 Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 872191000168106 Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules 20170131 +75078011000036103 Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837541000168107 diphtheria + tetanus + pertussis 5 component child vaccine injection, 0.5 mL vial 20161031 +73821011000036102 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822621000168102 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160831 +75366011000036108 rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, 2 mL tube 900000000000526001 REPLACED BY association reference set 822481000168101 rotavirus pentavalent live vaccine oral liquid, 2 mL tube 20160831 +65422011000036107 Curash Family Oral Pain Relieving oral gel 900000000000526001 REPLACED BY association reference set 995481000168109 Curash Family Oral Pain Relieving oral gel 20170831 +36071011000036100 Colistin (Link) 150 mg powder for injection, 150 mg vial 900000000000526001 REPLACED BY association reference set 817471000168108 Colistin (Link) 150 mg (4.5 million units) powder for injection, 150 mg vial 20160731 +84664011000036104 macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g + ascorbic acid 5.96 g powder for oral liquid, 70 g sachet 900000000000526001 REPLACED BY association reference set 901081000168104 macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet 20170331 +60627011000036100 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 721491000168107 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL, bottle 20151031 +80637011000036104 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868361000168105 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 20170131 +21772011000036108 triamcinolone + neomycin sulfate + gramicidin + nystatin 900000000000526001 REPLACED BY association reference set 758201000168107 triamcinolone + neomycin + gramicidin + nystatin 20160229 +73789011000036107 Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 821571000168108 Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160831 +65656011000036107 Cepacol Antibacterial Orange Citrus lozenge 900000000000526001 REPLACED BY association reference set 995171000168101 Cepacol Antibacterial Orange Citrus lozenge 20170831 +56686011000036103 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 648781000168102 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 200 mL 20151031 +28391000168106 Fluoride Koala Berry (Laclede) 900000000000526001 REPLACED BY association reference set 932331000168103 Fluoride (Laclede) 20170531 +711081000168109 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006001000168109 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +75049011000036105 hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 824801000168103 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, vial 20160930 +60228011000036102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory menthol and eucalyptus lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 861491000168103 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Menthol and Eucalyptus lozenge, 16, blister pack 20161231 +925159011000036108 Pemzo 20 mg capsule, 14, blister pack 900000000000526001 REPLACED BY association reference set 716291000168105 Pemzo 20 mg enteric capsule, 14, blister pack 20150930 +670761000168109 Peptamen Junior powder for oral liquid 900000000000526001 REPLACED BY association reference set 949641000168106 Peptamen Junior powder for oral liquid 20170630 +713311000168102 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1005451000168108 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 200 mL bag 20170930 +69789011000036109 benzoin sumatra + tolu balsam 900000000000526001 REPLACED BY association reference set 688381000168106 benzoin Sumatra + storax prepared + Aloes cape 20150331 +921532011000036105 Ultravist-300 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection: solution, 10 x 75 mL vials 900000000000526001 REPLACED BY association reference set 695231000168105 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 75 mL bottles 20150430 +900031011000036105 Voltaren Emulgel 1% gel, 50 g 900000000000526001 REPLACED BY association reference set 1037071000168107 Voltaren Emulgel 1.16% gel, 50 g 20171130 +143821000036107 Tecfidera 120 mg capsule: modified release 900000000000526001 REPLACED BY association reference set 756231000168101 Tecfidera 120 mg enteric capsule 20160229 +69356011000036106 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 872021000168108 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 20170131 +19714011000036104 Lovan 20 mg dispersible tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 844371000168101 Lovan 20 mg tablet, 28, blister pack 20161031 +172331000168102 MSUD Cooler 15 oral liquid: solution, 130 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724011000168107 MSUD Cooler 15 Orange oral liquid solution, 130 mL pouch 20151031 +29231000036102 Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827191000168107 Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160930 +33606011000036104 Soflax tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 733651000168102 Soflax (Ascent Pharma) film-coated tablet, 100, bottle 20151130 +718861000168100 Infanrix Hexa (1 x 0.5 mL vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 840931000168107 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack 20161031 +75521011000036106 Bordetella pertussis, acellular pertussis toxoid vaccine 20 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 20 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 840591000168102 diphtheria + tetanus + pertussis 5 component + polio trivalent child vaccine injection, 0.5 mL vial 20161031 +689821000168105 Otocomb Otic ear ointment, 5 g, tube 900000000000526001 REPLACED BY association reference set 758381000168108 Otocomb Otic ear ointment, 5 g, tube 20160229 +734221000168106 Centavite Adult tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 843031000168104 Centavite Adult film-coated tablet, 100, bottle 20161031 +27944011000036105 pancreatic extract 5000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847521000168100 lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule, 100 20161130 +933220881000036108 Naropin 0.75% (75 mg/10 mL) injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1004941000168101 Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule 20170930 +69377011000036106 Microshield Handrub solution, 125 mL, bottle 900000000000526001 REPLACED BY association reference set 767681000168105 Microshield Handrub solution, 125 mL, bottle 20160331 +81134011000036103 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 868001000168107 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2 L bag 20170131 +160201000036100 Budenofalk 2 mg/application enema, 2 x 1 application aerosol cans, aerosol can 900000000000526001 REPLACED BY association reference set 688081000168108 Budenofalk 2 mg/application enema, 2 x 14 applications, aerosol cans 20150331 +679571000168100 Botox 200 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 720961000168104 Botox 200 units powder for injection, 1 vial 20151031 +74413011000036101 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 840841000168107 Infanrix-IPV injection suspension, 10 x 0.5 mL syringes 20161031 +933056011000036100 Rivotril Drops 2.5 mg/mL oral liquid: solution, 10 mL, bottle 900000000000526001 REPLACED BY association reference set 729131000168100 Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution, 10 mL, bottle 20151130 +87334011000036106 Levetiracetam (Sandoz) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003631000168103 Levetiracetam 1000 (Sandoz) 1 g film-coated tablet 20170930 +83641000036101 aspirin 100 mg dispersible tablet, 30 900000000000526001 REPLACED BY association reference set 63600011000036106 aspirin 100 mg tablet, 30 20160630 +12624011000036107 Immucyst (1 x 660 million CFU (81 mg) vial, 1 x 3 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 1045991000168104 Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack 20171130 +8971000036109 Zactin 20 mg dispersible tablet, 28 900000000000526001 REPLACED BY association reference set 844391000168100 Zactin 20 mg tablet, 28 20161031 +40066011000036107 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 693411000168100 Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 20 mL ampoule 20150331 +54136011000036103 Clozole Vaginal Cream (Chemists' Own) 1% cream 900000000000526001 REPLACED BY association reference set 715541000168107 Clozole (Chemists' Own) 1% vaginal cream 20150930 +60760011000036101 Duro-Tuss Dry Cough Lozenge lemon lozenge, 4, blister pack 900000000000526001 REPLACED BY association reference set 996251000168105 Duro-Tuss Dry Cough Lozenge lemon lozenge, 4, blister pack 20170831 +844411000168100 Zovirax 200 mg tablet 900000000000526001 REPLACED BY association reference set 859181000168101 Zovirax Dispersible 200 mg tablet 20161231 +1021121000168104 Salofalk 500 mg granules, 50 sachets 900000000000526001 REPLACED BY association reference set 1084061000168102 Salofalk 500 mg modified release granules, 50 sachets 20180228 +95831000036107 boric acid + calcium carbonate + colecalciferol + magnesium citrate nonahydrate + magnesium oxide heavy + manganese sulfate monohydrate + phytomenadione 900000000000526001 REPLACED BY association reference set 932941000168106 colecalciferol + calcium + magnesium + manganese + phytomenadione + boron 20170531 +925343011000036103 Omepro 20 mg capsule, 90, bottle 900000000000526001 REPLACED BY association reference set 716991000168104 Omepro 20 mg enteric capsule, 90, bottle 20150930 +164431000036104 Moviprep Orange powder for oral liquid, 4 sachets 900000000000526001 REPLACED BY association reference set 902221000168101 Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets 20170331 +698411000168105 meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 822771000168105 meningococcal B 4 component vaccine injection, 0.5 mL syringe 20160831 +83497011000036108 magnesium chloride 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 872181000168108 magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, 5 x 20 mL ampoules 20170131 +78104011000036104 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL cans 900000000000526001 REPLACED BY association reference set 724441000168101 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 60 x 62.5 mL pouches 20151031 +166181000036102 Moviprep Orange powder for oral liquid, 4 sachets 900000000000526001 REPLACED BY association reference set 902231000168103 Moviprep Orange (2 x A sachets, 2 x B sachets), 4 sachets 20170331 +27468011000036105 macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 46.6 mg (0.63 mmol potassium) + sodium bicarbonate 178.5 mg solution, 30 sachets 900000000000526001 REPLACED BY association reference set 669081000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 46.6 mg powder for oral liquid, 30 sachets 20141031 +81690011000036100 calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 867741000168108 glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 20170131 +75386011000036105 human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823151000168107 human papillomavirus bivalent vaccine injection, 0.5 mL syringe 20160831 +110351000036107 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20, carton 900000000000526001 REPLACED BY association reference set 1056251000168109 Sorbact Gauze (S98118) 1 cm x 50 cm ribbon, 20, carton 20171231 +33080011000036106 Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 881161000168101 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, dose 20170228 +84442011000036102 sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride 300 mg (magnesium 1.5 mmol)/L + sodium acetate trihydrate 3.68 g/L injection, bag 900000000000526001 REPLACED BY association reference set 872461000168106 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L injection, bag 20170131 +21830011000036109 tenofovir + emtricitabine 900000000000526001 REPLACED BY association reference set 851481000168106 tenofovir disoproxil + emtricitabine 20161130 +20408011000036100 Oxynorm 5 mg/5 mL oral liquid: solution, 250 mL, bottle 900000000000526001 REPLACED BY association reference set 815951000168101 Oxynorm 1 mg/mL oral liquid solution, 250 mL, bottle 20160731 +87064011000036101 Sorbolene Cream with Glycerin (Pharmacy Select) cream 900000000000526001 REPLACED BY association reference set 705761000168102 Sorbolene Cream with Glycerin (Pharmacy Select) cream 20150731 +37945011000036108 colistimethate 150 mg injection, vial 900000000000526001 REPLACED BY association reference set 817461000168102 colistin 150 mg (4.5 million units) injection, vial 20160731 +933226151000036107 Fluoride Moose Mallow (Laclede) foam, 165 mL 900000000000526001 REPLACED BY association reference set 932551000168102 Fluoride (Laclede) Moose Mallow Flavour foam, 165 mL 20170531 +57010011000036107 Canesten Clotrimazole Thrush Treatment Once 10% cream, 5 g 900000000000526001 REPLACED BY association reference set 715601000168106 Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g 20150930 +244931000168105 PKU Cooler10 Orange oral liquid: solution, 87 mL can 900000000000526001 REPLACED BY association reference set 725531000168105 PKU Cooler 10 Orange oral liquid solution, 87 mL pouch 20151031 +85780011000036109 Fleet Phospho-Soda oral liquid solution, 45 mL 900000000000526001 REPLACED BY association reference set 1097811000168102 Fleet Phospho-Soda oral liquid solution, 45 mL 20180331 +775701000168109 Codalgin uncoated tablet, 40, blister pack 900000000000526001 REPLACED BY association reference set 836131000168108 Codalgin uncoated tablet, 40, blister pack 20161031 +70131000036102 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner 900000000000526001 REPLACED BY association reference set 648381000168101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner 20160331 +797061000168108 Levetiracetam (Accord) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003111000168100 Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60 20170930 +360471000168106 Go Kit powder for oral liquid, 1 sachet 900000000000526001 REPLACED BY association reference set 830941000168104 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet 20160930 +65447011000036106 Calcium Gluconate (Phebra) 10% (1 g/10 mL) injection: solution, 10 mL vial 900000000000526001 REPLACED BY association reference set 684661000168102 Calcium Gluconate (Phebra) 953 mg/10 mL injection solution, 10 mL vial 20150131 +931461011000036103 Lemsip Max Cold and Flu Direct with Decongestant powder, 10 sachets 900000000000526001 REPLACED BY association reference set 815901000168100 Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets 20160731 +13362011000036106 Panadeine Forte uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835991000168101 Panadeine Forte uncoated tablet, 20 20161031 +108701000036109 dressing hydrogel 10 cm x 10 cm dressing, 20 900000000000526001 REPLACED BY association reference set 1056181000168109 dressing hydrophobic 10 cm x 10 cm dressing, 20 20171231 +823911000168108 Bydureon (1 x 2 mg cartridge, 1 x inert diluent cartridge), 1 pack, dual chamber composite pack 900000000000526001 REPLACED BY association reference set 833301000168109 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device 20160930 +922030011000036105 calcium citrate + colecalciferol 900000000000526001 REPLACED BY association reference set 733951000168109 calcium + colecalciferol 20161231 +74797011000036101 Otrivin Adult 0.1% nasal spray, 10 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085341000168103 Otrivin Adult 0.1% nasal spray, 10 mL, pump pack 20180228 +933214881000036106 Valaciclovir (GA) 1 g film-coated tablet, 4, blister pack 900000000000526001 REPLACED BY association reference set 1009661000168109 Valaciclovir 1000 (GA) 1 g film-coated tablet, 4, blister pack 20170930 +84357011000036105 Cold and Flu Day and Night PE (Pharmacy Choice) (8 x Day tablets, 16 x Night tablets), 24, blister pack 900000000000526001 REPLACED BY association reference set 749551000168104 Cold and Flu Day and Night PE (Pharmacy Choice) (16 x Day tablets, 8 x Night tablets), 24, blister pack 20160131 +711641000168106 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005641000168108 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +73652011000036100 meningococcal group Y polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 827391000168109 Neisseria meningitidis group Y polysaccharide antigen 20160930 +734091000168101 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet 900000000000526001 REPLACED BY association reference set 842901000168104 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet 20161031 +74807011000036101 Havrix 1440 ELISA units/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825021000168104 Havrix 1440 ELISA units/mL injection suspension, 1 mL vial 20160930 +28191000036102 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725091000168104 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 125 mL pouches 20151031 +90281000036103 Eco Krill soft capsule, 30 900000000000526001 REPLACED BY association reference set 965901000168105 Eco Krill 333.3 mg soft capsule, 30 20170731 +74257011000036103 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 825911000168107 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20160930 +85671011000036101 Kevtam 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 938301000168107 Kevtam-1000 1 g film-coated tablet, 60 20170930 +76194011000036106 Caltrate Plus with Vitamin D 200 IU tablet: film-coated 900000000000526001 REPLACED BY association reference set 861751000168101 Caltrate Plus with Vitamin D 200 IU film-coated tablet 20161231 +69331000036101 Calcium carbonate / colecalciferol (Winthrop) 900000000000526001 REPLACED BY association reference set 69371000036104 Risedronate EC Combi D (Winthrop) 20160630 +84654011000036107 codeine phosphate hemihydrate 6 mg + paracetamol 500 mg + phenylephrine hydrochloride 5 mg tablet [8] (&) chlorpheniramine maleate 2 mg + paracetamol 500 mg + phenylephrine hydrochloride 5 mg tablet [16], 24 900000000000526001 REPLACED BY association reference set 84655011000036106 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + phenylephrine hydrochloride 5 mg tablet [16] (&) phenylephrine hydrochloride 5 mg + paracetamol 500 mg + chlorphenamine maleate 2 mg tablet [8], 24 20160131 +927868011000036100 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream 900000000000526001 REPLACED BY association reference set 715801000168107 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream 20150930 +933231751000036104 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004821000168104 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags 20170930 +78647011000036101 Paclitaxel (Actavis) 100 mg/16.7 mL injection: concentrated, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 704451000168107 Paclitaxel (Actavis) 100 mg/16.67 mL concentrated injection, 16.67 mL vial 20150630 +60822011000036106 Difflam Lozenge double mint sugar free lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995611000168101 Difflam Lozenge Double Mint Sugar Free lozenge, 16, blister pack 20170831 +7019011000036109 Granocyte 33.6 million units (263 microgram) powder for injection, 263 microgram vial 900000000000526001 REPLACED BY association reference set 838261000168105 Granocyte-34 33.6 million units (263 microgram) powder for injection, 263 microgram vial 20161031 +81140011000036107 Eye Stream eye solution, 120 mL, bottle 900000000000526001 REPLACED BY association reference set 834181000168101 Eye Stream eye solution, 120 mL, bottle 20161031 +22083011000036109 entecavir monohydrate 500 microgram tablet 900000000000526001 REPLACED BY association reference set 829491000168106 entecavir 500 microgram tablet 20160930 +82441000036108 Clopidogrel/Aspirin 75/100 (Apo) tablet, 30, blister pack 900000000000526001 REPLACED BY association reference set 923791000168108 Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30, blister pack 20170430 +21292011000036108 sodium chloride + potassium chloride + glucose monohydrate + citric acid 900000000000526001 REPLACED BY association reference set 81231011000036104 sodium chloride + potassium chloride + glucose + citric acid 20170131 +54006011000036101 Paxyl 2.5% / 0.1% spray solution 900000000000526001 REPLACED BY association reference set 861641000168108 Paxyl 2.5% / 0.1% spray solution 20161231 +82342011000036100 Aspalgin dispersible tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 834381000168104 Aspalgin dispersible tablet, 100, blister pack 20161031 +142721000036107 Vivotif Oral enteric capsule, 3, blister pack 900000000000526001 REPLACED BY association reference set 827281000168102 Vivotif Oral enteric capsule, 3, blister pack 20160930 +59750011000036106 Clotrimazole 6 Day (Guardian) 1% cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 715271000168103 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 50 g, tube 20150930 +77332011000036101 Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 10 x 75 mL vials 900000000000526001 REPLACED BY association reference set 695701000168106 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 75 mL bottles 20150430 +74290011000036109 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes 900000000000526001 REPLACED BY association reference set 822931000168109 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes 20160831 +926889011000036105 Valtrex 1 g film-coated tablet, 4, blister pack 900000000000526001 REPLACED BY association reference set 1009701000168102 Valtrex-1000 1 g film-coated tablet, 4, blister pack 20170930 +56529011000036105 Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 20 mL 900000000000526001 REPLACED BY association reference set 721741000168107 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 20 mL 20151031 +11393011000036107 Dymadon Forte uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835781000168101 Dymadon Forte uncoated tablet, 20 20161031 +82319011000036102 Calsource Ca1000 tablet: effervescent, 10, tube 900000000000526001 REPLACED BY association reference set 745601000168104 Calsource Ca1000 effervescent tablet, 10, tube 20160131 +922532011000036106 Varicella zoster live attenuated vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 831921000168100 varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL syringes], 1 pack 20160930 +706341000168106 M-M-R II (measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units) powder for injection, vial 900000000000526001 REPLACED BY association reference set 831361000168106 M-M-R II (measles + mumps + rubella live vaccine) powder for injection, vial 20160930 +84878011000036105 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL cartridges 900000000000526001 REPLACED BY association reference set 729861000168103 Humira 40 mg/0.8 mL injection solution, 6 x 0.8 mL injection devices 20171130 +815241000168108 Entrip 50 mg tablet, 1000, blister pack 900000000000526001 REPLACED BY association reference set 856851000168109 Entrip 50 mg film-coated tablet, 1000, blister pack 20161231 +43646011000036105 Keppra 500 mg/5 mL injection: concentrated, 5 mL vial 900000000000526001 REPLACED BY association reference set 706291000168108 Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial 20150731 +700027611000036109 Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 24 sachets 900000000000526001 REPLACED BY association reference set 810591000168109 Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets 20160630 +933236401000036100 Omeprazole (Apo) 20 mg capsule, 30 900000000000526001 REPLACED BY association reference set 717541000168102 Omeprazole (Apo) 20 mg enteric capsule, 30 20150930 +70260011000036108 benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge 900000000000526001 REPLACED BY association reference set 995161000168107 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge 20170831 +7385011000036108 Dolaforte tablet 900000000000526001 REPLACED BY association reference set 835741000168106 Dolaforte tablet 20161031 +922611011000036102 diatrizoate meglumine 158.4 g/240 mL + diatrizoate sodium 24 g/240 mL solution, 12 x 240 mL each 900000000000526001 REPLACED BY association reference set 696101000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 2400 mL 20150430 +23483011000036108 follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 1041441000168103 follitropin alfa 900 units (65.52 microgram)/1.5 mL injection, injection device 20171130 +27087011000036102 codeine phosphate 30 mg tablet, 20 900000000000526001 REPLACED BY association reference set 834811000168103 codeine phosphate hemihydrate 30 mg tablet, 20 20161031 +73786011000036103 Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827511000168105 Prevenar injection suspension, 0.5 mL syringe 20160930 +137361000036104 Ropivacaine Hydrochloride (Kabi) 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 711091000168107 Ropivacaine 1% (Kabi) 20150831 +36215011000036102 Actacode Linctus 5 mg/mL oral liquid: solution 900000000000526001 REPLACED BY association reference set 835541000168102 Actacode Linctus 5 mg/mL oral liquid solution 20161031 +85091011000036101 alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet 900000000000526001 REPLACED BY association reference set 843071000168101 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet 20161031 +50459011000036109 Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694071000168102 Leukosilk (1021) 1.25 cm x 5 m tape, 1 roll, carton 20150331 +75981000036105 calcium (as carbonate) 500 mg (calcium 500 mg) chewable tablet, 60 900000000000526001 REPLACED BY association reference set 859721000168104 calcium carbonate 1.25 g (calcium 500 mg) chewable tablet, 60 20161231 +66457011000036105 Curash Family Oral Pain Relieving oral gel, 15 g 900000000000526001 REPLACED BY association reference set 995501000168100 Curash Family Oral Pain Relieving oral gel, 15 g 20170831 +33320011000036102 Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 881171000168107 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose 20170228 +77609011000036109 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet 900000000000526001 REPLACED BY association reference set 861741000168103 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet 20161231 +922555011000036104 calcium (as carbonate) 1 g + colecalciferol 22 microgram (880 units) granules: effervescent, 30 x 7 g sachets 900000000000526001 REPLACED BY association reference set 810641000168100 calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules, 30 x 7.3 g sachets 20160630 +74938011000036104 Quadracel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 840611000168107 Quadracel injection suspension, 0.5 mL vial 20161031 +73816011000036104 Infanrix Penta injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 836731000168109 Infanrix Penta injection suspension, 0.5 mL syringe 20161031 +91311000036108 Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 730011000168101 Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 20151130 +711191000168108 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1005931000168109 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag 20170930 +32643011000036106 potassium 900000000000526001 REPLACED BY association reference set 988221000168100 potassium acetate 20170831 +27345011000036100 flurbiprofen sodium 0.03% (120 microgram/0.4 mL) eye drops, 5 x 0.4 mL ampoules 900000000000526001 REPLACED BY association reference set 684581000168107 flurbiprofen sodium dihydrate 0.03% eye drops, 5 x 0.4 mL unit doses 20150131 +43698011000036102 Voluven 6% / 0.9% injection solution, 10 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013461000168106 Voluven injection solution, 10 x 500 mL bags 20170930 +139221000036105 Ropivacaine Hydrochloride (Kabi) 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005851000168106 Ropivacaine 0.2% (Kabi) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +36805011000036107 Actonel Combi D (4 x 35 mg tablets, 24 x sachets), 1 pack 900000000000526001 REPLACED BY association reference set 810521000168107 Actonel Combi D (4 x Actonel Once-a-Week tablets, 24 x Actonel Combi D sachets), 1 pack 20160630 +28181000036104 MSUD Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725101000168109 MSUD Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 20151031 +76715011000036103 Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe 900000000000526001 REPLACED BY association reference set 872061000168103 Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe 20170131 +77608011000036101 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet 900000000000526001 REPLACED BY association reference set 861931000168109 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet 20161231 +56395011000036104 Zantac 150 mg/10 mL oral liquid: solution, 280 mL 900000000000526001 REPLACED BY association reference set 783921000168107 Zantac 150 mg/10 mL oral liquid, 280 mL 20160531 +6503011000036105 Creon 10 000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847441000168105 Creon 10 000 enteric capsule 20161130 +121571000036105 Canesten Plus cream, 30 g, tube 900000000000526001 REPLACED BY association reference set 715891000168101 Canesten Plus cream, 30 g, tube 20150930 +108761000036108 dressing hydrogel 5 cm x 200 cm ribbon, 10 900000000000526001 REPLACED BY association reference set 1056281000168102 dressing hydrophobic 5 cm x 200 cm ribbon, 10 20171231 +105501000036107 Eylea 2 mg/0.05 mL injection: solution, 0.05 mL syringe 900000000000526001 REPLACED BY association reference set 703561000168108 Eylea 4 mg/0.1 mL injection solution, 0.1 mL syringe 20150630 +929654011000036104 Styptic Pencil (Covidien) 98.6% stick, 5 g, tube 900000000000526001 REPLACED BY association reference set 846181000168108 Styptic Pencil (Covidien) 98.6% stick, 5 g, tube 20161130 +19350011000036102 Zovirax 800 mg dispersible tablet, 120, blister pack 900000000000526001 REPLACED BY association reference set 859441000168102 Zovirax Dispersible 800 mg tablet, 120, blister pack 20161231 +923848011000036103 Levetiracetam (SZ) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003731000168106 Levetiracetam 1000 (SZ) 1 g film-coated tablet, 60, blister pack 20170930 +931845011000036104 meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826761000168103 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, vial 20160930 +86727011000036100 Aqueous Cream (David Craig) cream, 500 g 900000000000526001 REPLACED BY association reference set 768311000168109 Aqueous Cream APF (David Craig) cream, 500 g 20160331 +74947011000036101 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831131000168100 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack, composite pack 20160930 +647701000168106 Biostate 500 IU FVIII/1000 IU VWF (inert substance) diluent, 10 mL vial 900000000000526001 REPLACED BY association reference set 921971000168108 Biostate (inert substance) diluent, 10 mL vial 20170430 +74386011000036101 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825941000168106 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +63085011000036106 cetylpyridinium chloride monohydrate 0.05% + benzocaine 0.4% mouthwash, 200 mL 900000000000526001 REPLACED BY association reference set 994921000168103 cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash, 200 mL 20170831 +74770011000036109 Azep 140 microgram/actuation nasal spray, 20 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 809621000168100 Azep 0.1% nasal spray, 20 mL, pump pack 20160630 +706401000168101 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831381000168102 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 20160930 +34313011000036104 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL 900000000000526001 REPLACED BY association reference set 835581000168107 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid, 100 mL 20161031 +48585011000036103 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694401000168101 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape 20150331 +81041011000036106 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864371000168109 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags 20170131 +74821011000036104 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822651000168105 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160831 +67178011000036108 Microshield Handrub solution, 500 mL 900000000000526001 REPLACED BY association reference set 767641000168100 Microshield Handrub solution, 500 mL 20160331 +681121000168104 Cal-600 plus D tablet: film-coated 900000000000526001 REPLACED BY association reference set 862121000168100 Cal-600 plus D film-coated tablet 20161231 +728371000168106 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe 900000000000526001 REPLACED BY association reference set 872081000168107 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe 20170131 +75394011000036103 Varicella zoster live attenuated vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 831831000168106 varicella-zoster live vaccine 19 400 PFU injection [10 vials] (&) inert substance diluent [10 x 0.65 mL syringes], 1 pack 20160930 +60205011000036104 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 861431000168102 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2, blister pack 20161231 +711211000168109 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005951000168103 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +925140011000036104 Omepro 20 mg capsule, 14, blister pack 900000000000526001 REPLACED BY association reference set 716381000168103 Omepro 20 mg enteric capsule, 14, blister pack 20150930 +75059011000036108 lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, actuation 900000000000526001 REPLACED BY association reference set 791911000168103 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray 20160531 +40731000036104 Remeron 15 mg tablet: orally disintegrating 900000000000526001 REPLACED BY association reference set 783811000168106 Remeron Soltab 15 mg orally disintegrating tablet 20160531 +11452011000036100 ADT Vaccine injection: suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837291000168102 ADT Vaccine injection suspension, 0.5 mL syringe 20161031 +761201000168105 Lomotil uncoated tablet, 2 900000000000526001 REPLACED BY association reference set 851071000168104 Lomotil uncoated tablet, 2 20161130 +81712011000036109 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868351000168108 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag 20170131 +23157011000036106 etoposide 1 g injection, vial 900000000000526001 REPLACED BY association reference set 793581000168102 etoposide phosphate 1.136 g (etoposide 1 g) injection, vial 20160531 +932392011000036100 meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, 1 pack 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826781000168107 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack 20160930 +172441000036106 Dronalen Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 848591000168104 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 20161130 +72131000036101 salicylic acid 2% conditioner, 200 mL 900000000000526001 REPLACED BY association reference set 764291000168102 salicylic acid 2% conditioner, 200 mL 20160331 +74207011000036108 Adacel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837491000168103 Adacel injection suspension, 0.5 mL vial 20161031 +19090011000036106 Lanoxin 50 microgram/mL oral liquid: solution, 60 mL, bottle 900000000000526001 REPLACED BY association reference set 735031000168101 Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL, bottle 20151231 +61271011000036100 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715731000168107 Clotrimazole 3 Day Treatment (Pharmacist Formula) 2% vaginal cream, 20 g, tube 20150930 +86755011000036106 Calcia plus Vitamin D 200 IU chewable tablet, 120 900000000000526001 REPLACED BY association reference set 860101000168108 Calcia plus Vitamin D 200 IU chewable tablet, 120 20161231 +139291000036108 Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006231000168106 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +711201000168106 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005941000168100 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +74817011000036103 Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083731000168105 Sudafed Nasal Decongestant 0.05% nasal spray, 20 mL, pump pack 20180228 +108711000036106 Sorbact (S98310) 10 cm x 10 cm foam dressing, 10 900000000000526001 REPLACED BY association reference set 1056341000168101 Sorbact Foam (S98310) 10 cm x 10 cm foam dressing, 10 20171231 +34378011000036102 Subutex 400 microgram tablet, 100 900000000000526001 REPLACED BY association reference set 685821000168107 Subutex 400 microgram sublingual tablet, 100 20150228 +921873011000036100 Centrum Select 50 Plus tablet: film-coated, 30, bottle 900000000000526001 REPLACED BY association reference set 843251000168102 Centrum Select 50 Plus film-coated tablet, 30, bottle 20161031 +11915011000036103 ADT Booster injection: suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837321000168105 ADT Booster injection suspension, 0.5 mL syringe 20161031 +69921000036104 exenatide 10 microgram/0.04 mL injection, unit dose 900000000000526001 REPLACED BY association reference set 726801000168108 exenatide 10 microgram/dose injection, dose 20151031 +1021111000168106 Salofalk 500 mg granules, 50 sachets 900000000000526001 REPLACED BY association reference set 1084051000168104 Salofalk 500 mg modified release granules, 50 sachets 20180228 +48544011000036105 Monogen powder for oral liquid 900000000000526001 REPLACED BY association reference set 949681000168101 Monogen powder for oral liquid 20170630 +77393011000036101 Centrum tablet: film-coated, 30, bottle 900000000000526001 REPLACED BY association reference set 833121000168102 Centrum film-coated tablet, 30, bottle 20160930 +158361000036102 Oxycontin Reformulation 20 mg modified release tablet 900000000000526001 REPLACED BY association reference set 6512011000036100 Oxycontin 20 mg modified release tablet 20170731 +924536011000036103 Pemzo 20 mg capsule 900000000000526001 REPLACED BY association reference set 716241000168102 Pemzo 20 mg enteric capsule 20150930 +135981000036100 Japanese encephalitis virus live vaccine 900000000000526001 REPLACED BY association reference set 821491000168105 Japanese encephalitis live vaccine 20160831 +11831011000036103 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL cartridges 900000000000526001 REPLACED BY association reference set 729831000168106 Humira 40 mg/0.8 mL injection solution, 2 x 0.8 mL injection devices 20171130 +162561000036102 Moviprep Orange powder for oral liquid, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 902161000168100 Moviprep B powder for oral liquid, sachet 20170331 +22891000036109 vespula spp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 759061000168108 yellow jacket venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 20160229 +69622011000036101 Cepacol Antibacterial Orange Citrus lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995201000168102 Cepacol Antibacterial Orange Citrus lozenge, 16, blister pack 20170831 +84414011000036100 magnesium amino acid chelate + magnesium oxide heavy + magnesium phosphate tribasic pentahydrate + zinc oxide 900000000000526001 REPLACED BY association reference set 750191000168107 magnesium + zinc 20160131 +34284011000036106 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution, 100 mL 900000000000526001 REPLACED BY association reference set 835611000168100 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL 20161031 +59774011000036103 Clotrimazole 6 Day (Guardian) 1% cream, 30 g, tube 900000000000526001 REPLACED BY association reference set 715231000168101 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g, tube 20150930 +77285011000036108 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872961000168102 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 20170131 +78869011000036108 Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 898011000168107 Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 20170331 +76807011000036107 Centrum tablet: film-coated, 200 900000000000526001 REPLACED BY association reference set 833411000168103 Centrum film-coated tablet, 200 20160930 +51475011000036103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 710271000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 174 mL pouches 20151031 +74855011000036101 Ipol injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 839921000168101 Ipol injection solution, 10 x 0.5 mL syringes 20161031 +925131011000036105 First Aid (Amcal) cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 861521000168101 First Aid (Amcal) cream, 50 g, tube 20161231 +19997011000036104 Prodeine 15 uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835701000168109 Prodeine 15 uncoated tablet, 20, blister pack 20161031 +27500011000036101 paracetamol 500 mg + codeine phosphate 8 mg tablet, 50 900000000000526001 REPLACED BY association reference set 63448011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet, 50 20161031 +20833011000036107 Klacid Hp 7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 716001000168109 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack, composite pack 20150930 +74431011000036106 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert powder for oral liquid sachets), 1 pack 900000000000526001 REPLACED BY association reference set 821971000168101 Dukoral (2 x 3 mL vaccine vials, 2 x 5.6 g inert effervescent granules sachets), 1 pack 20160831 +83698011000036107 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873011000168108 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 20170131 +57162011000036102 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715631000168104 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g 20150930 +20088011000036105 Implanon 68 mg implant, 1, blister pack 900000000000526001 REPLACED BY association reference set 732381000168109 Implanon 68 mg implant, 1, applicator 20151130 +33582011000036108 Epipen Auto-Injector 300 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 881181000168105 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device 20170228 +926121011000036106 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825461000168101 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160930 +933231551000036105 Naropin 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005021000168107 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +650831000168105 Aquacel (403770) 2 cm x 45 cm rope, 5, carton 900000000000526001 REPLACED BY association reference set 745051000168106 Aquacel (403770) 2 cm x 45 cm ribbon, 5, carton 20160131 +29411000036105 Vivaxim injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 827331000168105 Vivaxim injection suspension, 1 mL syringe 20160930 +91711000036107 Femcream (Pharmacy Action) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715501000168105 Femcream (Pharmacy Action) 1% vaginal cream, 35 g, tube 20150930 +40296011000036104 Etopophos 500 mg injection: powder for, 500 mg vial 900000000000526001 REPLACED BY association reference set 793501000168105 Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 567.8 mg vial 20160531 +6473011000036108 Botox 100 units injection: powder for, 100 units vial 900000000000526001 REPLACED BY association reference set 720851000168109 Botox 100 units powder for injection, 100 units vial 20151031 +83697011000036106 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873061000168106 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 20170131 +117601000036103 Zoely, 84 tablets [3 x 28] 900000000000526001 REPLACED BY association reference set 683951000168108 Zoely (24 x 2.5 mg/1.5 mg tablets, 4 x inert tablets), 3 x 28 20150131 +103781000036105 Victoza 18 mg/3 mL injection: solution, 2 x 3 mL cartridges 900000000000526001 REPLACED BY association reference set 748091000168106 Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices 20160131 +155981000036104 Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 862181000168101 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 100 20161231 +693181000168100 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837411000168107 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 20161031 +921381011000036107 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831931000168102 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent syringes), 1 pack 20160930 +925351011000036101 Pemzo 20 mg capsule, 500, bottle 900000000000526001 REPLACED BY association reference set 716921000168101 Pemzo 20 mg enteric capsule, 500, bottle 20150930 +74735011000036102 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825981000168101 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160930 +77507011000036105 sorbitol solution (70 per cent-non-crystallising) 1 mL/mL oral liquid 900000000000526001 REPLACED BY association reference set 690601000168107 sorbitol solution 70% non-crystallising oral liquid 20150331 +34803011000036104 Subutex 400 microgram tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 685831000168105 Subutex 400 microgram sublingual tablet, 100, bottle 20150228 +702771000168104 PKU Anamix Junior oral liquid: powder for, 36 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726211000168107 PKU Anamix Junior Berry powder for oral liquid, 36 g sachet 20151031 +86732011000036104 Emulsifying Ointment (David Craig) ointment, 500 g 900000000000526001 REPLACED BY association reference set 770831000168104 Emulsifying Ointment BP (David Craig) ointment, 500 g 20160331 +88521000036101 Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial 900000000000526001 REPLACED BY association reference set 730021000168108 Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial 20151130 +73658011000036102 pneumococcal 7 valent conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826101000168103 Streptococcus pneumoniae type 4 conjugate antigen 20160930 +67339011000036105 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16 900000000000526001 REPLACED BY association reference set 995371000168104 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16 20170831 +711461000168108 Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1004641000168109 Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag 20170930 +81169011000036108 Gastrolyte orange powder for oral liquid, 10 x 5.2 g sachets 900000000000526001 REPLACED BY association reference set 871641000168101 Gastrolyte Orange powder for oral liquid, 10 x 5.2 g sachets 20170131 +53814011000036105 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge 900000000000526001 REPLACED BY association reference set 861411000168107 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge 20161231 +81147011000036108 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 868241000168100 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 20170131 +127381000036107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 174 mL sachets 900000000000526001 REPLACED BY association reference set 725961000168107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 174 mL pouches 20151031 +156961000036100 Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 120, bottle 900000000000526001 REPLACED BY association reference set 862211000168102 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120, bottle 20161231 +925349011000036100 Pemzo 20 mg capsule, 5, bottle 900000000000526001 REPLACED BY association reference set 716791000168101 Pemzo 20 mg enteric capsule, 5, bottle 20150930 +60201011000036101 Daktarin 2% oral gel, 20 g, tube 900000000000526001 REPLACED BY association reference set 820091000168105 Daktarin 2% oral gel, 20 g, tube 20160731 +168961000036109 dressing hydrofibre with silver 2 cm x 45 cm rope 900000000000526001 REPLACED BY association reference set 745061000168108 dressing hydrofibre with silver 2 cm x 45 cm ribbon 20160131 +9091000036100 olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 771821000168108 olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 500 mL bag 20160430 +6259011000036109 Lovan 20 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 844351000168105 Lovan 20 mg tablet 20161031 +664371000168101 magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate heavy 250 mg/g powder for oral liquid 900000000000526001 REPLACED BY association reference set 833691000168105 magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid 20160930 +86161011000036107 Kepcet 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003041000168100 Kepcet-1000 1 g film-coated tablet, 60, blister pack 20170930 +83151000036107 aspirin 100 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 23173011000036104 aspirin 100 mg tablet 20160630 +697081000168108 mesalazine 3 g granules, sachet 900000000000526001 REPLACED BY association reference set 1084301000168101 mesalazine 3 g modified release granules, sachet 20180228 +6392011000036103 Repalyte powder for oral liquid, 4.9 g sachet 900000000000526001 REPLACED BY association reference set 871911000168105 Repalyte powder for oral liquid, 4.9 g sachet 20170131 +248051000168109 Lophlex oral liquid: powder for, 27.8 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 725171000168104 PKU Lophlex Unflavoured powder for oral liquid, 27.8 g sachet 20151031 +31421000036100 Typherix 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827171000168106 Typherix 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160930 +34292011000036101 Codeine Phosphate (Phebra) 50 mg/mL injection: solution, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 835661000168102 Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules 20161031 +80653011000036107 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags 900000000000526001 REPLACED BY association reference set 868391000168103 Dianeal PD-4 with Glucose 4.25% peritoneal dialysis solution, 4 x 3 L bags 20170131 +61211000036100 Rehydration Formula Effervescent (Amcal) effervescent tablet 900000000000526001 REPLACED BY association reference set 871721000168100 Rehydration Formula Effervescent (Amcal) effervescent tablet 20170131 +806271000168105 Repatha 140 mg/mL injection: solution, 3 x 1 mL injection devices 900000000000526001 REPLACED BY association reference set 846441000168107 Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices 20161130 +929648011000036109 PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724461000168102 PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches 20151031 +5225011000036108 Fluoxebell 20 mg capsule 900000000000526001 REPLACED BY association reference set 72926011000036108 Fluoxebell 20 mg hard capsule 20160630 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836921000168108 Streptococcus pneumoniae type 18C polysaccharide antigen 20161031 +78308011000036102 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 130 900000000000526001 REPLACED BY association reference set 833311000168107 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 130 20160930 +663101000168105 magnesium trisilicate + belladonna tincture + magnesium + bicarbonate 900000000000526001 REPLACED BY association reference set 870941000168102 magnesium trisilicate + belladonna tincture + magnesium carbonate + bicarbonate 20170131 +74429011000036108 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 826461000168109 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack 20160930 +697101000168101 mesalazine 3 g granules, 30 sachets 900000000000526001 REPLACED BY association reference set 1084321000168105 mesalazine 3 g modified release granules, 30 sachets 20180228 +71283011000036105 soap-soft 50 mg/mL enema, 1 mL bottle 900000000000526001 REPLACED BY association reference set 685511000168102 soft soap 50 mg/mL enema, 500 mL 20150228 +86603011000036108 Emulsifying Ointment (David Craig) 900000000000526001 REPLACED BY association reference set 770811000168109 Emulsifying Ointment BP (David Craig) 20160331 +22023011000036103 testosterone undecanoate 1 g/4 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 720541000168105 testosterone undecanoate 1 g/4 mL modified release injection, ampoule 20151031 +23069011000036104 clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, vial 900000000000526001 REPLACED BY association reference set 721011000168105 clostridium botulinum type A toxin-haemagglutinin complex 500 units injection, vial 20151031 +682131000168105 Reandron 1 g/4 mL injection: solution, 4 mL vial 900000000000526001 REPLACED BY association reference set 722941000168102 Reandron-1000 1 g/4 mL modified release injection, 4 mL vial 20151031 +11917011000036108 Comfarol Forte uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835971000168102 Comfarol Forte uncoated tablet, 20 20161031 +74256011000036101 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825971000168104 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160930 +83623011000036107 Clotrimazole 6 Day (Apo) 1% cream 900000000000526001 REPLACED BY association reference set 715771000168105 Clotrimazole 6 Day (Apo) 1% vaginal cream 20150930 +702771000168104 PKU Anamix Junior oral liquid: powder for, 36 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726151000168101 PKU Anamix Junior Vanilla powder for oral liquid, 36 g sachet 20151031 +67422011000036108 Cepacol Antibacterial Orange Citrus lozenge, 2 900000000000526001 REPLACED BY association reference set 995221000168106 Cepacol Antibacterial Orange Citrus lozenge, 2 20170831 +177931000036106 lixisenatide 10 microgram/0.2 mL injection, 14 x 0.2 mL unit doses 900000000000526001 REPLACED BY association reference set 719311000168100 lixisenatide 10 microgram/dose injection, 14 doses 20150930 +2941000036100 Clinoleic 20% injection: emulsion, 250 mL bag 900000000000526001 REPLACED BY association reference set 771761000168107 Clinoleic 20% injection emulsion, 250 mL bag 20160430 +141501000036104 lanreotide 60 mg injection, syringe 900000000000526001 REPLACED BY association reference set 819561000168106 lanreotide 60 mg/0.5 mL injection, syringe 20160731 +77142011000036107 Sorbolene Cream with Glycerin (Orion) cream, 100 g, tube 900000000000526001 REPLACED BY association reference set 705751000168104 Sorbolene Cream with Glycerin (Orion) cream, 100 g, tube 20150731 +86474011000036103 calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872311000168104 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 20170131 +663151000168109 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 900000000000526001 REPLACED BY association reference set 833581000168108 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 20160930 +50216011000036108 PKU Cooler15 Purple oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725681000168105 PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches 20151031 +36702011000036101 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850421000168100 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules 20161130 +927557011000036106 meningococcal group Y (Neisseria meningitidis) conjugate vaccine 900000000000526001 REPLACED BY association reference set 824491000168107 Neisseria meningitidis group Y conjugate antigen 20160930 +243091000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724251000168100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL bottle 20151031 +18527011000036104 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection: solution, 10 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850771000168105 Atropine Sulfate (AstraZeneca) 600 microgram/mL injection solution, 10 x 1 mL ampoules 20161130 +933231761000036101 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004721000168105 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags 20170930 +74789011000036109 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845921000168102 Meningitec 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +88401000036107 Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 729991000168103 Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 20151130 +931722011000036107 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872831000168101 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +933204871000036107 Acris Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack 900000000000526001 REPLACED BY association reference set 852611000168108 Acris Combi (4 x Acris Once-a-Week tablets, 24 x Calcium (Alphapharm) tablets), 28 20161130 +26802011000036100 diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837281000168100 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 20161031 +13429011000036100 Dysport 500 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 721041000168109 Dysport 500 units powder for injection, 1 vial 20151031 +9141000036107 Clinoleic 20% injection: emulsion, 12 x 350 mL bags 900000000000526001 REPLACED BY association reference set 779171000168103 Clinoleic 20% injection emulsion, 12 x 350 mL bags 20160430 +39305011000036104 Fludara 50 mg injection: powder for, 5 vials 900000000000526001 REPLACED BY association reference set 710831000168105 Fludara IV 50 mg powder for injection, 5 vials 20150831 +929647011000036108 PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 723991000168101 PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets 20151031 +62047011000036100 clotrimazole 10% cream 900000000000526001 REPLACED BY association reference set 715571000168100 clotrimazole 10% vaginal cream 20150930 +26886011000036100 neomycin 3.5 mg/g + bacitracin zinc 400 international units/g ointment, 10 g 900000000000526001 REPLACED BY association reference set 689851000168102 neomycin 0.35% + bacitracin zinc 400 units/g ear ointment, 10 g 20150331 +75008011000036107 Q fever inactivated vaccine 2.5 microgram/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 955081000168105 Q fever skin test injection, 0.5 mL vial 20170630 +929473011000036101 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724601000168101 PKU Lophlex LQ 20 Berry oral liquid solution, 30 x 125 mL pouches 20151031 +67313011000036101 Cepacol Antibacterial Honey and Lemon lozenge, 2 900000000000526001 REPLACED BY association reference set 995091000168101 Cepacol Antibacterial Honey and Lemon lozenge, 2 20170831 +177911000036102 lixisenatide 20 microgram/0.2 mL injection, 2 x 14 unit doses 900000000000526001 REPLACED BY association reference set 719341000168101 lixisenatide 20 microgram/dose injection, 2 x 14 doses 20150930 +76153011000036103 Ultravist-370 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection: solution, 20 mL vial 900000000000526001 REPLACED BY association reference set 695501000168101 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 20 mL vial 20150430 +52076011000036103 Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint, 25 mL 900000000000526001 REPLACED BY association reference set 703151000168102 Salicylic Acid APF (extemporaneous) 10% paint, 25 mL 20150531 +922136011000036102 iopromide 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695301000168105 iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle 20150430 +664281000168107 magnesium trisilicate 50 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 900000000000526001 REPLACED BY association reference set 833611000168101 magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 20160930 +689421000168108 Priorix-Tetra powder for injection, 10 vials 900000000000526001 REPLACED BY association reference set 831271000168108 Priorix-Tetra powder for injection, 10 vials 20160930 +84081011000036108 Glycoprep-C Flavoured powder for oral liquid, 70 g sachet 900000000000526001 REPLACED BY association reference set 901091000168101 Glycoprep-C powder for oral liquid, 70 g sachet 20170331 +75007011000036106 Q fever inactivated vaccine 25 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 821561000168102 Q fever vaccine injection, 0.5 mL syringe 20160831 +50530011000036105 Lophlex oral liquid: powder for, 30 x 27.8 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 725221000168109 PKU Lophlex Orange powder for oral liquid, 30 x 27.8 g sachets 20151031 +827981000168107 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846031000168106 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 20161130 +65282011000036103 Calcium Gluconate (Phebra) 10% (5 g/50 mL) injection: solution, 50 mL vial 900000000000526001 REPLACED BY association reference set 684711000168107 Calcium Gluconate (Phebra) 4.765 g/50 mL injection solution, 50 mL vial 20150131 +34315011000036103 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100 900000000000526001 REPLACED BY association reference set 834791000168102 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100 20161031 +711551000168107 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004971000168108 Naropin 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +74999011000036104 Japanese encephalitis inactivated vaccine 900000000000526001 REPLACED BY association reference set 822661000168107 Japanese encephalitis (mouse brain-derived) inactivated vaccine 20160831 +75456011000036106 Yellow fever live attenuated vaccine 1000 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 822291000168102 yellow fever live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 20160831 +924215011000036105 teriparatide 20 microgram injection, 2.4 mL cartridge 900000000000526001 REPLACED BY association reference set 726941000168101 teriparatide 20 microgram/dose injection, 28 doses 20151031 +930004011000036102 Menveo injection: suspension, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826671000168100 MenA 10 microgram powder for injection, 10 microgram vial 20160930 +55666011000036103 Clotrimazole 6 Day (Guardian) 1% cream, 30 g 900000000000526001 REPLACED BY association reference set 715221000168104 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 30 g 20150930 +924137011000036109 omeprazole 20 mg capsule, 140 900000000000526001 REPLACED BY association reference set 716311000168109 omeprazole 20 mg enteric capsule, 140 20150930 +54127011000036103 Logicin Rapid Relief original flavour lozenge 900000000000526001 REPLACED BY association reference set 861601000168106 Logicin Rapid Relief original flavour lozenge 20161231 +4792011000036109 Lanoxin 50 microgram/mL oral liquid: solution 900000000000526001 REPLACED BY association reference set 735011000168106 Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution 20151231 +65891000036106 Worming Tablet (Chemmart) 100 mg chewable tablet, 2, blister pack 900000000000526001 REPLACED BY association reference set 844271000168109 Worming Tablet (Chemmart) 100 mg tablet, 2, blister pack 20161031 +74976011000036100 Haemophilus influenzae type b vaccine 900000000000526001 REPLACED BY association reference set 832181000168105 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine 20160930 +60893011000036109 Disprin Original 300 mg dispersible tablet, 96, strip pack 900000000000526001 REPLACED BY association reference set 804241000168107 Disprin Original 300 mg tablet, 96, strip pack 20160630 +125421000036107 Perjeta 420 mg/14 mL injection solution, 14 mL vial 900000000000526001 REPLACED BY association reference set 1085731000168106 Perjeta 420 mg/14 mL concentrated injection, 14 mL vial 20180228 +13735011000036106 Granocyte 13.4 million units (105 microgram) powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 838231000168102 Granocyte-13 13.4 million units (105 microgram) powder for injection, 1 vial 20161031 +39422011000036105 Fludara 50 mg injection: powder for, 5 vials 900000000000526001 REPLACED BY association reference set 710841000168101 Fludara IV 50 mg powder for injection, 5 vials 20150831 +51881000036102 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL 900000000000526001 REPLACED BY association reference set 751251000168102 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash, 300 mL 20160229 +19912011000036100 Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722861000168105 Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL, injection device 20151031 +932455011000036108 alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 100 900000000000526001 REPLACED BY association reference set 843291000168107 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 100 20161031 +76552011000036103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg 900000000000526001 REPLACED BY association reference set 705921000168109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 kg 20150731 +927556011000036108 meningococcal group W135 conjugate vaccine 900000000000526001 REPLACED BY association reference set 824481000168109 Neisseria meningitidis group W135 conjugate antigen 20160930 +93511000036100 Ostelin Vitamin D and Calcium chewable tablet 900000000000526001 REPLACED BY association reference set 861891000168101 Ostelin Vitamin D and Calcium chewable tablet 20161231 +75343011000036108 rabies inactivated vaccine 2.5 units injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 900000000000526001 REPLACED BY association reference set 821371000168102 rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL ampoule], 1 pack 20160831 +923830011000036104 Probitor Hp7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 715951000168103 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack, composite pack 20150930 +921075011000036103 Gastrolyte Citrus effervescent tablet 900000000000526001 REPLACED BY association reference set 871551000168100 Gastrolyte Citrus effervescent tablet 20170131 +12781011000036107 Panzytrat 25 000 units enteric capsule, 100 900000000000526001 REPLACED BY association reference set 847661000168106 Panzytrat 25 000 enteric capsule, 100 20161130 +22881000036107 Albey Yellow Jacket Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 759071000168102 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 20160229 +921934011000036107 B-Dose (Biological Therapies) injection: solution, 6 x 2.5 mL vials 900000000000526001 REPLACED BY association reference set 704571000168104 B-Dose Forte (Biological Therapies) injection solution, 6 x 2.5 mL vials 20150630 +91761000036109 Eco Krill soft capsule, 30, bottle 900000000000526001 REPLACED BY association reference set 965911000168108 Eco Krill 333.3 mg soft capsule, 30, bottle 20170731 +160491000036109 Oxycontin Reformulation 20 mg modified release tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 929122011000036108 Oxycontin 20 mg modified release tablet, 28, blister pack 20170731 +761901000168104 Co-Phenylcaine Forte nasal spray, 2.5 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 791951000168102 Co-Phenylcaine Forte nasal spray, 2.5 mL, pump pack 20160531 +925341011000036104 Omepro 20 mg capsule, 60, bottle 900000000000526001 REPLACED BY association reference set 716851000168101 Omepro 20 mg enteric capsule, 60, bottle 20150930 +156061000036104 Istodax (1 x 10 mg vial, 1 x inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 828501000168108 Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack 20160930 +21166011000036107 Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726421000168101 Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL, injection device 20151031 +134971000036103 Japanese encephalitis virus live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 900000000000526001 REPLACED BY association reference set 821521000168107 Japanese encephalitis live vaccine injection [1 vial] (&) inert substance diluent [1 vial], 1 pack 20160831 +924882011000036109 Pemzo 20 mg capsule, 15 900000000000526001 REPLACED BY association reference set 716351000168105 Pemzo 20 mg enteric capsule, 15 20150930 +921035011000036100 B-Dose (Biological Therapies) injection: solution, 2.5 mL vial 900000000000526001 REPLACED BY association reference set 704531000168102 B-Dose Forte (Biological Therapies) injection solution, 2.5 mL vial 20150630 +923326011000036101 Omeprazole (Pharmacor) 20 mg capsule, 98 900000000000526001 REPLACED BY association reference set 717491000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 98 20150930 +59730011000036105 Clotrimazole 6 Day (Guardian) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715251000168107 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 35 g, tube 20150930 +650801000168103 Aquacel (403770) 2 cm x 45 cm rope 900000000000526001 REPLACED BY association reference set 745021000168103 Aquacel (403770) 2 cm x 45 cm ribbon 20160131 +74325011000036100 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 821451000168100 Merieux Inactivated Rabies Vaccine (1 x 2.5 units vaccine vial, 1 x 1 mL inert diluent syringe), 1 pack 20160831 +13234011000036103 Prodeine 15 uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835691000168109 Prodeine 15 uncoated tablet, 20 20161031 +81713011000036102 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 4 x 3 L bags 900000000000526001 REPLACED BY association reference set 868471000168106 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 4 x 3 L bags 20170131 +24021000168104 Kaletra 400/100 900000000000526001 REPLACED BY association reference set 689441000168102 Kaletra 20150331 +13455011000036101 Lomotil uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 851121000168104 Lomotil uncoated tablet, 20 20161130 +923982011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 827411000168109 pneumococcal 13 valent conjugate vaccine injection, 0.5 mL syringe 20160930 +669511000168103 Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 728871000168102 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge 20151130 +95361000036107 Menactra injection: solution, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 826571000168104 Menactra injection solution, 0.5 mL vial 20160930 +74774011000036104 Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 826351000168101 Meruvax II (1 x 1000 TCID50 vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 20160930 +924205011000036108 omeprazole 20 mg capsule, 28 900000000000526001 REPLACED BY association reference set 716411000168100 omeprazole 20 mg enteric capsule, 28 20150930 +69186011000036109 Tinaderm Powder Spray 0.09% spray: pressurised, 100 g, aerosol can 900000000000526001 REPLACED BY association reference set 769631000168100 Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray, 100 g, aerosol can 20160331 +932462011000036105 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872861000168109 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, 12 x 500 mL bottles 20170131 +695461000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack 900000000000526001 REPLACED BY association reference set 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 20161130 +711631000168102 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005631000168104 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 20 mL ampoule 20170930 +33104011000036106 Soflax tablet: film-coated 900000000000526001 REPLACED BY association reference set 733631000168108 Soflax (Ascent Pharma) film-coated tablet 20151130 +923388011000036106 Prevenar-13 30.8 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827471000168101 Prevenar-13 injection suspension, 10 x 0.5 mL syringes 20160930 +107291000036105 dressing hydrogel 10 cm x 10 cm dressing 900000000000526001 REPLACED BY association reference set 1055461000168104 dressing hydrophobic 10 cm x 10 cm dressing 20171231 +46412011000036108 aciclovir 400 mg dispersible tablet, 70 900000000000526001 REPLACED BY association reference set 800451000168103 aciclovir 400 mg tablet, 70 20161031 +74248011000036104 Gardasil injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 823071000168104 Gardasil injection suspension, 10 x 0.5 mL vials 20160831 +176821000036101 Striverdi Respimat 2.5 microgram/actuation inhalation: pressurised, 60 actuations, metered dose aerosol can 900000000000526001 REPLACED BY association reference set 701521000168102 Striverdi Respimat 2.5 microgram/actuation inhalation solution, 60 actuations, cartridge 20150531 +81172011000036105 Gastrolyte fruit powder for oral liquid, 2 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871851000168103 Gastrolyte Fruit powder for oral liquid, 2 x 4.9 g sachets 20170131 +107101000036107 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 902151000168102 ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, sachet 20170331 +925350011000036108 Pemzo 20 mg capsule, 50, bottle 900000000000526001 REPLACED BY association reference set 716861000168104 Pemzo 20 mg enteric capsule, 50, bottle 20150930 +75364011000036100 pneumococcal 7 valent conjugate vaccine 16 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827551000168106 pneumococcal 7 valent conjugate vaccine injection, 10 x 0.5 mL syringes 20160930 +8541000036109 clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, 1 vial 900000000000526001 REPLACED BY association reference set 721101000168106 clostridium botulinum type A toxin-haemagglutinin complex 300 units injection, 1 vial 20151031 +53647011000036103 Anti Fungal V 3 Day (Amcal) 2% cream 900000000000526001 REPLACED BY association reference set 714881000168100 Anti Fungal V 3 Day (Amcal) 2% vaginal cream 20150930 +78136011000036104 sorbitol solution (70 per cent-non-crystallising) 1 mL/mL oral liquid, 500 mL 900000000000526001 REPLACED BY association reference set 690621000168103 sorbitol solution 70% non-crystallising oral liquid, 500 mL 20150331 +50224011000036108 Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 689181000168101 Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll, carton 20150331 +933225641000036106 Cerumol ear drops, 10 mL 900000000000526001 REPLACED BY association reference set 854371000168103 Cerumol ear drops, 10 mL 20161231 +74571000036100 Salofalk 1 g granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084181000168107 Salofalk 1 g modified release granules, 100 sachets 20180228 +691571000168108 Reddycal 500 mg tablet: film-coated, 48 900000000000526001 REPLACED BY association reference set 848131000168106 Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48 20161130 +761791000168108 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium bicarbonate 1.69 g + sodium sulfate 5.68 g powder for oral liquid [1 x 68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack 900000000000526001 REPLACED BY association reference set 833831000168105 macrogol-3350 59 g + sodium chloride 1.46 g + potassium chloride 750 mg (potassium 10 mmol) + sodium sulfate 5.68 g + sodium bicarbonate 1.69 g powder for oral liquid [68.58 g sachet] (&) picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid [2 x 20 g sachets], 1 pack 20160930 +923961011000036108 smallpox live vaccine injection, vial 900000000000526001 REPLACED BY association reference set 821291000168106 smallpox live vaccine injection, vial 20160831 +921552011000036106 Sorbi Sorbitol 70% non-crystallising oral liquid: solution, 500 mL 900000000000526001 REPLACED BY association reference set 690631000168100 Sorbi 70% non-crystallising oral liquid solution, 500 mL 20150331 +689701000168108 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831341000168107 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20160930 +711801000168105 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005591000168104 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +134961000036106 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 821531000168105 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack 20160831 +757461000168108 Ursodox 250 mg capsule: hard 900000000000526001 REPLACED BY association reference set 765951000168102 Ursodox (GH) 250 mg hard capsule 20160331 +703021000168109 influenza virus quadrivalent vaccine 2015 injection, syringe 900000000000526001 REPLACED BY association reference set 709771000168105 influenza quadrivalent adult vaccine 2015 injection, 0.5 mL syringe 20150731 +74730011000036106 Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 821601000168102 Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160831 +51801000036108 Valvala 1 g film-coated tablet, 21 900000000000526001 REPLACED BY association reference set 1009751000168103 Valvala-1000 1 g film-coated tablet, 21 20170930 +75026011000036103 hepatitis B vaccine 20 microgram/mL injection, vial 900000000000526001 REPLACED BY association reference set 825311000168108 hepatitis B adult vaccine 20 microgram/mL injection, vial 20160930 +46537011000036106 sumatriptan 10 mg/actuation nasal spray, 2 actuations 900000000000526001 REPLACED BY association reference set 728141000168102 sumatriptan 10 mg/actuation nasal spray, 2 x 1 actuation 20151130 +11549011000036104 Baraclude 500 microgram tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 829521000168108 Baraclude 500 microgram film-coated tablet, 30 20160930 +44483011000036109 Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations, bottle 900000000000526001 REPLACED BY association reference set 729151000168106 Rhinocort Aqueous 64 microgram/actuation nasal spray, 120 actuations, pump pack 20151130 +49447011000036108 Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 694031000168100 Leukopor (2474) 5 cm x 5 m tape, 1 roll 20150331 +73630011000036100 Haemophilus influenzae type b vaccine 900000000000526001 REPLACED BY association reference set 827671000168103 Haemophilus influenzae type b conjugate (PRP-OMP) antigen 20160930 +75033011000036106 hepatitis B vaccine 5 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 825881000168107 hepatitis B child vaccine 5 microgram/0.5 mL injection, syringe 20160930 +127361000036102 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 87 mL sachets 900000000000526001 REPLACED BY association reference set 725861000168100 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 87 mL pouches 20151031 +74380011000036104 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 830891000168100 Varilrix (10 x 1995 PFU vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 20160930 +76161011000036106 Ultravist-370 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection: solution, 200 mL bottle 900000000000526001 REPLACED BY association reference set 695771000168101 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 200 mL bottle 20150430 +156031000036105 Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 862221000168109 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 60 20161231 +39933011000036104 Voluven 6% / 0.9% injection solution, 500 mL bottle 900000000000526001 REPLACED BY association reference set 1013511000168109 Voluven injection solution, 500 mL bottle 20170930 +41730011000036109 Imigran S 10 mg/actuation nasal spray, 2 actuations 900000000000526001 REPLACED BY association reference set 728151000168100 Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation 20151130 +61442011000036108 Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 721441000168104 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 20 mL, bottle 20151031 +922688011000036109 potassium citrate monohydrate 1.08 g (potassium 10 mmol) modified release tablet, 100 900000000000526001 REPLACED BY association reference set 950741000168106 potassium citrate 1.08 g (potassium 10 mmol) modified release tablet, 100 20170630 +83592011000036101 Glycoprep-C Flavoured 900000000000526001 REPLACED BY association reference set 64996011000036107 Glycoprep-C 20170331 +702791000168103 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726221000168100 PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets 20151031 +722911000168101 Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100 900000000000526001 REPLACED BY association reference set 729271000168108 Silver Nitrate Applicator (Grafco) stick, 100 20151130 +712011000168106 Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005131000168106 Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +929383011000036103 Styptic Pencil (Covidien) 98.6% stick 900000000000526001 REPLACED BY association reference set 846151000168101 Styptic Pencil (Covidien) 98.6% stick 20161130 +922079011000036102 ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet 900000000000526001 REPLACED BY association reference set 757831000168103 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet 20160229 +241000168108 Calcium carbonate / colecalciferol (Winthrop) granules: effervescent, 24 sachets 900000000000526001 REPLACED BY association reference set 810581000168106 Risedronate EC Combi D (Winthrop) effervescent granules, 24 sachets 20160630 +73861000036108 Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 120, bottle 900000000000526001 REPLACED BY association reference set 862081000168102 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 120, bottle 20161231 +63248011000036101 miconazole 2% oral gel, 30 g 900000000000526001 REPLACED BY association reference set 820041000168102 miconazole 2% oral gel, 30 g 20160731 +71953011000036102 benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 2 900000000000526001 REPLACED BY association reference set 995211000168104 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 2 20170831 +27754011000036100 diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 20 900000000000526001 REPLACED BY association reference set 851021000168100 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 20 20161130 +19862011000036106 Repalyte powder for oral liquid, 10 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871931000168100 Repalyte powder for oral liquid, 10 x 4.9 g sachets 20170131 +75530011000036101 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 900000000000526001 REPLACED BY association reference set 831111000168105 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL ampoule], 1 pack 20160930 +75520011000036104 hepatitis B vaccine 10 microgram/mL injection, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825771000168101 hepatitis B adult vaccine 10 microgram/mL injection, 10 x 1 mL vials 20160930 +26692011000036107 risedronate sodium 35 mg tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack 900000000000526001 REPLACED BY association reference set 852601000168105 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 20161130 +75387011000036108 human papillomavirus (type 16) vaccine 20 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823181000168100 human papillomavirus bivalent vaccine injection, 10 x 0.5 mL syringes 20160831 +684001000168106 pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 838151000168101 pneumococcal 23 valent vaccine injection, 0.5 mL syringe 20161031 +26687011000036108 entecavir monohydrate 500 microgram tablet, 30 900000000000526001 REPLACED BY association reference set 829511000168101 entecavir 500 microgram tablet, 30 20160930 +933225321000036109 Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726521000168102 Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL 20151031 +933225711000036103 ropivacaine hydrochloride monohydrate 400 mg/200 mL injection, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004651000168106 ropivacaine hydrochloride 400 mg/200 mL injection, 5 x 200 mL bags 20170930 +38708011000036108 codeine phosphate 5 mg/mL oral liquid, 2 L 900000000000526001 REPLACED BY association reference set 834931000168104 codeine phosphate hemihydrate 5 mg/mL oral liquid, 2 L 20161031 +411041000168105 MMA/PA Cooler 15 oral liquid: solution, 130 mL sachet 900000000000526001 REPLACED BY association reference set 725241000168103 MMA/PA Cooler 15 oral liquid solution, 130 mL pouch 20151031 +46166011000036107 pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 10 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 1013521000168102 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bottles 20170930 +74998011000036107 diphtheria toxoid vaccine + tetanus toxoid vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, acellular pertactin vaccine 900000000000526001 REPLACED BY association reference set 837621000168102 diphtheria + tetanus + pertussis 3 component vaccine 20161031 +74898011000036103 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825841000168102 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826121000168107 Streptococcus pneumoniae type 3 conjugate antigen 20160930 +86929011000036104 calcium (as carbonate) 1 g (calcium 1 g) chewable tablet 900000000000526001 REPLACED BY association reference set 859911000168109 calcium carbonate 2.5 g (calcium 1 g) chewable tablet 20161231 +933220851000036101 ropivacaine hydrochloride monohydrate 100 mg/10 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 1004981000168106 ropivacaine hydrochloride 100 mg/10 mL injection, ampoule 20170930 +56162011000036103 Daktarin 2% oral gel, 40 g 900000000000526001 REPLACED BY association reference set 820101000168100 Daktarin 2% oral gel, 40 g 20160731 +927893011000036107 Salicylic Acid 2% in Aqueous Cream (David Craig) cream 900000000000526001 REPLACED BY association reference set 705391000168105 Salicylic Acid 2% in Aqueous Cream (David Craig) cream 20150731 +127541000036109 Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726631000168100 Anapen Auto-Injector 500 microgram/0.3 mL injection solution, 1 dose 20151031 +66605011000036107 Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion, 500 mL 900000000000526001 REPLACED BY association reference set 766791000168100 Chlorhexidine Hand Lotion (Orion) lotion, 500 mL 20160331 +74801011000036109 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 827731000168109 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 20160930 +22084011000036106 entecavir monohydrate 1 mg tablet 900000000000526001 REPLACED BY association reference set 829441000168103 entecavir 1 mg tablet 20160930 +31321000036109 Movicol Chocolate solution: powder for, 8 sachets 900000000000526001 REPLACED BY association reference set 674061000168101 Movicol Chocolate powder for oral liquid, 8 sachets 20141031 +74747011000036106 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831821000168108 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent syringe), 1 pack, composite pack 20160930 +49530011000036102 PKU Cooler20 Purple oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725821000168105 PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches 20151031 +156021000036108 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 120 900000000000526001 REPLACED BY association reference set 734041000168109 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 120 20161231 +29281000036103 Typherix 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827131000168108 Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 20160930 +78258011000036101 iopromide 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection, 10 x 200 mL bottles 900000000000526001 REPLACED BY association reference set 695781000168103 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 200 mL bottles 20150430 +253701000168102 PKU Lophlex LQ 10 oral liquid: solution, 62.5 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724431000168105 PKU Lophlex LQ 10 Berry oral liquid solution, 62.5 mL pouch 20151031 +81706011000036105 sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 872531000168104 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, 500 mL bag 20170131 +4047011000036104 Panzytrat 900000000000526001 REPLACED BY association reference set 846981000168106 Panzytrat 25 000 20161130 +67274011000036104 Panadol Children's 7+ Years 250 mg tablet: soluble, 12 900000000000526001 REPLACED BY association reference set 721551000168101 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 12 20151031 +711041000168104 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005921000168106 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +921445011000036105 Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 695181000168104 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles 20150430 +75045011000036108 rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, syringe 900000000000526001 REPLACED BY association reference set 822871000168102 rotavirus live vaccine oral liquid, 1.5 mL syringe 20160831 +711611000168107 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005701000168100 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +933221011000036102 Fluoride Bumble Bee Bubble Gum (Laclede) foam 900000000000526001 REPLACED BY association reference set 932351000168109 Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam 20170531 +61122011000036107 Difflam Lozenge orange sugar free lozenge, 8, blister pack 900000000000526001 REPLACED BY association reference set 995871000168108 Difflam Lozenge Orange Sugar Free lozenge, 8, blister pack 20170831 +81728011000036101 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets 900000000000526001 REPLACED BY association reference set 871651000168104 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 2 x 5.2 g sachets 20170131 +706361000168105 measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 900000000000526001 REPLACED BY association reference set 831401000168102 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 20160930 +815011000168103 Entrip 10 mg tablet, 250, bottle 900000000000526001 REPLACED BY association reference set 856631000168102 Entrip 10 mg film-coated tablet, 250, bottle 20161231 +63321000036100 Worming Tablet (Chemmart) 100 mg chewable tablet, 2 900000000000526001 REPLACED BY association reference set 844261000168103 Worming Tablet (Chemmart) 100 mg tablet, 2 20161031 +21808011000036100 zinc + phenylephrine 900000000000526001 REPLACED BY association reference set 879421000168105 zinc sulfate + phenylephrine 20170228 +69897011000036104 cetylpyridinium chloride monohydrate 0.05% mouthwash 900000000000526001 REPLACED BY association reference set 994951000168106 cetylpyridinium chloride 0.05% mouthwash 20170831 +74940011000036102 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 826441000168105 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20160930 +700027401000036109 Probitor 20 mg capsule, 14 capsules, blister pack 900000000000526001 REPLACED BY association reference set 715921000168106 Probitor 20 mg enteric capsule, 14, blister pack 20150930 +159221000036109 Oxycontin Reformulation 30 mg modified release tablet, 28 900000000000526001 REPLACED BY association reference set 928247011000036107 Oxycontin 30 mg modified release tablet, 28 20170731 +921936011000036104 Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60, bottle 900000000000526001 REPLACED BY association reference set 842821000168100 Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60, bottle 20161031 +75002011000036109 rubella virus (Wistar RA 27/3) live attenuated vaccine 900000000000526001 REPLACED BY association reference set 826301000168100 rubella live vaccine 20160930 +921960011000036108 Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 10 x 20 mL vials 900000000000526001 REPLACED BY association reference set 695141000168109 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 20150430 +933203901000036105 Levetiracetam (Lupin) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003511000168107 Levetiracetam 1000 (Lupin) 1 g film-coated tablet, 60 20170930 +158331000036108 Oxycontin Reformulation 15 mg modified release tablet 900000000000526001 REPLACED BY association reference set 65351011000036109 Oxycontin 15 mg modified release tablet 20170731 +815111000168104 Entrip 25 mg tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 856721000168107 Entrip 25 mg film-coated tablet, 90, blister pack 20161231 +140821000036103 Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006241000168102 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +933231841000036105 Fluoride Bumble Bee Bubble Gum (Laclede) foam, 165 mL, aerosol can 900000000000526001 REPLACED BY association reference set 932381000168102 Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL, aerosol can 20170531 +75526011000036101 cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 25 billion vibrios + cholera (Vibrio cholerae) O1 Ogawa classic strain inactivated oral vaccine 50 billion vibrios + cholera toxin B subunit recombinant oral vaccine 1 mg oral liquid [ 1 x 3 mL vial] (&) inert substance powder for oral liquid [1 x 5.6 g sachet], 1 pack 900000000000526001 REPLACED BY association reference set 821911000168109 cholera vaccine oral liquid [3 mL vial] (&) inert substance effervescent granules [5.6 g sachet], 1 pack 20160831 +74239011000036106 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825401000168102 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials 20160930 +924876011000036101 Omepro 20 mg capsule, 56 900000000000526001 REPLACED BY association reference set 716761000168108 Omepro 20 mg enteric capsule, 56 20150930 +712001000168108 Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005121000168108 Ropibam 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +728691000168100 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005741000168103 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +74919011000036100 Boostrix injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837671000168101 Boostrix injection suspension, 0.5 mL syringe 20161031 +243341000168103 PKU Anamix Junior LQ oral liquid: solution, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724271000168109 PKU Anamix Junior LQ Berry oral liquid solution, 125 mL bottle 20151031 +61849011000036107 aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 804131000168108 aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet 20160630 +50456011000036100 PKU Cooler20 Purple oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725831000168108 PKU Cooler 20 Purple oral liquid solution, 30 x 174 mL pouches 20151031 +63247011000036102 miconazole 2% oral gel, 20 g 900000000000526001 REPLACED BY association reference set 820071000168109 miconazole 2% oral gel, 20 g 20160731 +71739011000036105 chlorhexidine gluconate 0.5% + ethanol 70% solution, 125 mL 900000000000526001 REPLACED BY association reference set 767661000168101 chlorhexidine gluconate 0.5% + ethanol 70% solution, 125 mL 20160331 +76696011000036104 Invite E High Potency Vitamin E 96% oil, 30 mL 900000000000526001 REPLACED BY association reference set 842761000168101 Invite E High Potency Vitamin E 96% oil, 30 mL 20161031 +148791000036107 Nicorette Quickmist 1 mg/actuation oral spray, 1 actuation 900000000000526001 REPLACED BY association reference set 1091941000168101 Nicorette Quickmist Freshmint 1 mg/actuation oral spray 20180331 +74859011000036104 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 822711000168102 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack, composite pack 20160831 +78175011000036108 calcium (as carbonate) 320.3 mg + calcium (as lactate gluconate) 680 mg tablet: effervescent, 10 900000000000526001 REPLACED BY association reference set 745581000168108 calcium lactate gluconate 2.3 g + calcium carbonate 1.8 g (total calcium 1 g) effervescent tablet, 10 20160131 +74795011000036106 Twinrix injection suspension, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 824601000168104 Twinrix injection suspension, 10 x 1 mL syringes 20160930 +50932011000036102 tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689241000168103 tape plaster adhesive elastic 7.5 cm x 2.5 m tape 20150331 +76823011000036105 Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 861991000168108 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60 20161231 +836171000168106 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872321000168106 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 20170131 +82039011000036108 Silver Nitrate Applicator (Medical and Surgical Requisites) stick 900000000000526001 REPLACED BY association reference set 729261000168102 Silver Nitrate Applicator (Grafco) stick 20151130 +74258011000036102 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825651000168101 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe 20160930 +932843011000036101 leuprorelin acetate 45 mg injection: modified release [1] (&) inert substance diluent [1 syringe], 1 pack 900000000000526001 REPLACED BY association reference set 766141000168109 leuprorelin acetate 45 mg modified release injection [1 syringe] (&) inert substance diluent [1 syringe], 1 pack 20160331 +76811011000036102 Centrum tablet: film-coated, 8 900000000000526001 REPLACED BY association reference set 833051000168106 Centrum film-coated tablet, 8 20160930 +49501011000036102 PKU Cooler10 Orange oral liquid: solution, 30 x 87 mL cans 900000000000526001 REPLACED BY association reference set 725551000168104 PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches 20151031 +74761011000036107 Cervarix injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823171000168103 Cervarix injection suspension, 0.5 mL syringe 20160831 +34700011000036105 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 835621000168107 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution, 100 mL, bottle 20161031 +82033011000036105 Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag 900000000000526001 REPLACED BY association reference set 872391000168108 Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag 20170131 +63249011000036109 miconazole 2% oral gel, 40 g 900000000000526001 REPLACED BY association reference set 818021000168104 miconazole 2% oral gel, 40 g 20160731 +4678011000036105 Cardiprin 100 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 803961000168101 Cardiprin 100 mg tablet 20160630 +43611011000036105 Keppra 1 g tablet: film-coated, 100, blister pack 900000000000526001 REPLACED BY association reference set 721141000168108 Keppra-1000 1 g film-coated tablet, 100, blister pack 20151031 +681141000168105 Cal-600 plus D tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 862161000168105 Cal-600 plus D film-coated tablet, 60, bottle 20161231 +59733011000036102 Clotrimazole 6 Day (Guardian) 1% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715201000168108 Clotrimazole 6 Day (Guardian) 1% vaginal cream, 20 g, tube 20150930 +41461011000036101 Eleuphrat 0.05% lotion, 30 mL 900000000000526001 REPLACED BY association reference set 1054611000168104 Eleuphrat 0.05% lotion, 30 mL 20171231 +900052011000036103 Voltaren Emulgel 1% gel, 20 g, tube 900000000000526001 REPLACED BY association reference set 1037051000168103 Voltaren Emulgel 1.16% gel, 20 g, tube 20171130 +55789011000036100 Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715411000168107 Clotrimazole (Your Pharmacy) 2% vaginal cream, 20 g 20150930 +700028641000036109 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 810271000168105 Actonel EC Combi D effervescent granules, 24 sachets 20160630 +21167011000036105 Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726471000168100 Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL, injection device 20151031 +475911000168104 amino acid formula with vitamins and minerals without methionine oral liquid, 125 mL sachet 900000000000526001 REPLACED BY association reference set 725121000168100 amino acid formula with vitamins and minerals without methionine oral liquid, 125 mL pouch 20151031 +74931011000036108 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846001000168104 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +684021000168102 Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 838171000168105 Pneumovax-23 injection solution, 0.5 mL syringe 20161031 +18450011000036109 Fluoxebell 20 mg capsule, 28, blister pack 900000000000526001 REPLACED BY association reference set 73316011000036102 Fluoxebell 20 mg hard capsule, 28, blister pack 20160630 +74996011000036108 meningococcal group C polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 826391000168106 meningococcal C conjugate vaccine 20161130 +56718011000036107 Duro-Tuss Dry Cough Lozenge lemon lozenge, 4 900000000000526001 REPLACED BY association reference set 996241000168108 Duro-Tuss Dry Cough Lozenge lemon lozenge, 4 20170831 +921037011000036105 Vitamin E (Cenovis) 250 mg (250 units) soft capsule 900000000000526001 REPLACED BY association reference set 842791000168108 Vitamin E (Cenovis) 250 mg (250 units) soft capsule 20161031 +248051000168109 Lophlex oral liquid: powder for, 27.8 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 725201000168100 PKU Lophlex Orange powder for oral liquid, 27.8 g sachet 20151031 +73798011000036103 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955091000168108 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 20170630 +4493011000036107 Eligard 6 Month (leuprorelin acetate 45 mg) injection: modified release, syringe 900000000000526001 REPLACED BY association reference set 766131000168100 Eligard 6 Month (leuprorelin acetate 45 mg) modified release injection, 45 mg syringe 20160331 +463061000168109 Lyxumia 20 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses 900000000000526001 REPLACED BY association reference set 719271000168100 Lyxumia 20 microgram/dose injection solution, 14 doses 20150930 +65278011000036105 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream 900000000000526001 REPLACED BY association reference set 705671000168104 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream 20150731 +373381000168102 TYR Cooler 20 oral liquid: solution, 174 mL sachet 900000000000526001 REPLACED BY association reference set 725951000168105 TYR Cooler 20 oral liquid solution, 174 mL pouch 20151031 +23085011000036103 diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet 900000000000526001 REPLACED BY association reference set 851001000168109 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet 20161130 +702801000168102 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726111000168102 PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets 20151031 +22116011000036107 atropine sulfate 600 microgram/mL injection, ampoule 900000000000526001 REPLACED BY association reference set 850731000168107 atropine sulfate monohydrate 600 microgram/mL injection, ampoule 20161130 +75398011000036105 diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, 1 pack 900000000000526001 REPLACED BY association reference set 840911000168102 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack 20161031 +13471000036109 Dysport 300 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 721121000168102 Dysport 300 units powder for injection, 1 vial 20151031 +82524011000036108 aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 100 900000000000526001 REPLACED BY association reference set 834361000168108 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 100 20161031 +53608011000036107 Cepacaine Oral Solution mouthwash 900000000000526001 REPLACED BY association reference set 994911000168105 Cepacaine Oral Solution mouthwash 20170831 +84437011000036104 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 900000000000526001 REPLACED BY association reference set 873001000168105 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, bag 20170131 +86912011000036104 carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% oromucosal paste 900000000000526001 REPLACED BY association reference set 797571000168105 carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste 20160630 +19336011000036100 Immucyst (1 x 660 million CFU (81 mg) vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 1046001000168103 Immucyst (1 x 81 mg vial, 1 x 3 mL inert diluent vial), 1 pack, composite pack 20171130 +926786011000036103 Medi Creme cream, 25 g, tube 900000000000526001 REPLACED BY association reference set 863481000168102 Medi Creme cream, 25 g, tube 20170131 +67421011000036102 Cepacol Antibacterial Orange Citrus lozenge, 16 900000000000526001 REPLACED BY association reference set 995191000168100 Cepacol Antibacterial Orange Citrus lozenge, 16 20170831 +54043011000036102 Difflam Lozenge raspberry sugar free lozenge 900000000000526001 REPLACED BY association reference set 995881000168106 Difflam Lozenge Raspberry Sugar Free lozenge 20170831 +53988011000036107 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 5 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721451000168102 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 5 mL 20151031 +827971000168109 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846021000168108 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 20161130 +14051011000036109 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715351000168102 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g 20150930 +84390011000036104 Glycoprep-C Flavoured powder for oral liquid, 210 g sachet 900000000000526001 REPLACED BY association reference set 901151000168105 Glycoprep-C powder for oral liquid, 210 g sachet 20170331 +83437011000036102 magnesium chloride 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 872161000168104 magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/20 mL + potassium chloride 1.19 g (potassium 16 mmol)/20 mL + procaine hydrochloride 272.8 mg/20 mL injection, ampoule 20170131 +923444011000036103 Omeprazole (Pharmacor) 20 mg capsule, 15 900000000000526001 REPLACED BY association reference set 717141000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 15 20150930 +6092011000036104 Otocomb Otic ointment 900000000000526001 REPLACED BY association reference set 758361000168104 Otocomb Otic ear ointment 20160229 +933195931000036104 Levetiracetam (Lupin) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003501000168109 Levetiracetam 1000 (Lupin) 1 g film-coated tablet 20170930 +22714011000036107 triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/mL ear drops 900000000000526001 REPLACED BY association reference set 758311000168102 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops 20160229 +73861011000036108 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 900000000000526001 REPLACED BY association reference set 822881000168104 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 20160831 +933225991000036106 Imigran 20 mg/actuation nasal spray, 2 actuations 900000000000526001 REPLACED BY association reference set 728181000168107 Imigran 20 mg/actuation nasal spray, 2 x 1 actuation 20151130 +689671000168107 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 831251000168104 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20160930 +71559011000036105 tolnaftate 0.09% spray, 100 g 900000000000526001 REPLACED BY association reference set 769611000168105 tolnaftate 0.09% (900 microgram/g) spray, 100 g 20160331 +922691011000036101 Varicella zoster live attenuated vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 831751000168105 varicella-zoster live vaccine 1350 PFU injection [10 vials] (&) inert substance diluent [10 x 0.7 mL vials], 1 pack 20160930 +41221011000036108 Voluven 6% / 0.9% injection solution, 20 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013421000168101 Voluven injection solution, 20 x 500 mL bags 20170930 +19755011000036107 Dapa-Tabs 2.5 mg tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 935691000168100 Dapa-Tabs 2.5 mg film-coated tablet, 90, blister pack 20170531 +159211000036102 Oxycontin Reformulation 40 mg modified release tablet, 28 900000000000526001 REPLACED BY association reference set 928482011000036101 Oxycontin 40 mg modified release tablet, 28 20170731 +81130011000036108 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 867921000168100 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 20170131 +933231561000036108 Naropin 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004921000168107 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +77573011000036107 iopromide 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695051000168107 iopromide 623 mg (iodine 300 mg)/mL injection, 10 mL vial 20150430 +82329011000036107 Codalgin uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 836111000168103 Codalgin uncoated tablet, 20, blister pack 20161031 +921398011000036102 Citracal Plus D tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 859891000168107 Citracal Plus D film-coated tablet, 60 20161231 +922088011000036100 iopromide 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 696341000168103 iopromide 499 mg (iodine 240 mg)/mL injection, 50 mL bottle 20150430 +20138011000036107 Panadeine Forte uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 836001000168100 Panadeine Forte uncoated tablet, 20, blister pack 20161031 +76152011000036105 Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 mL vial 900000000000526001 REPLACED BY association reference set 695061000168109 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 mL vial 20150430 +34231000036101 Tadim 1 million units (80 mg) powder for inhalation, 30 vials 900000000000526001 REPLACED BY association reference set 818121000168103 Tadim 1 million units powder for inhalation, 30 vials 20160731 +243091000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724221000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 125 mL pouch 20151031 +74960011000036107 hepatitis B vaccine 900000000000526001 REPLACED BY association reference set 825191000168101 hepatitis B vaccine 20160930 +933220291000036106 Levitaccord 1000 mg 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003791000168105 Levitaccord-1000 1 g film-coated tablet 20170930 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826061000168101 Streptococcus pneumoniae type 9V conjugate antigen 20160930 +51404011000036107 tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688851000168108 tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll 20150331 +689001000168105 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection, vial 900000000000526001 REPLACED BY association reference set 831181000168104 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, vial 20160930 +933231771000036109 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004871000168103 Naropin 0.2% with Fentanyl 800 microgram/200 mL injection solution, 5 x 200 mL bags 20170930 +33645011000036104 paper wasp venom 900000000000526001 REPLACED BY association reference set 758871000168101 paper wasp venom 20160229 +695471000168107 Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848621000168102 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 20161130 +78314011000036106 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 60 900000000000526001 REPLACED BY association reference set 833131000168104 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 60 20160930 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826131000168105 Streptococcus pneumoniae type 7F conjugate antigen 20160930 +60570011000036109 Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 721771000168100 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL, bottle 20151031 +665461000168103 PKU Cooler20 Gold oral liquid: solution, 174 mL can 900000000000526001 REPLACED BY association reference set 725691000168108 PKU Cooler 20 Gold oral liquid solution, 174 mL pouch 20151031 +45017011000036104 pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, bottle 900000000000526001 REPLACED BY association reference set 1013501000168106 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bottle 20170930 +82019011000036101 Calsource Ca1000 tablet: effervescent 900000000000526001 REPLACED BY association reference set 745571000168105 Calsource Ca1000 effervescent tablet 20160131 +933221031000036106 Fluoride Koala Berry (Laclede) foam 900000000000526001 REPLACED BY association reference set 932631000168107 Fluoride (Laclede) Koala Berry Flavour foam 20170531 +77280011000036104 Invite E High Potency Vitamin E 96% oil, 30 mL, bottle 900000000000526001 REPLACED BY association reference set 842771000168107 Invite E High Potency Vitamin E 96% oil, 30 mL, bottle 20161031 +74228011000036101 Prevenar 16 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827561000168108 Prevenar injection suspension, 10 x 0.5 mL syringes 20160930 +920656011000036106 Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 949361000168103 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90, blister pack 20170630 +78310011000036101 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 150 900000000000526001 REPLACED BY association reference set 833371000168104 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 150 20160930 +833821000168107 Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, 7 dual chamber devices 900000000000526001 REPLACED BY association reference set 975181000168109 Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack, composite pack 20170731 +6314011000036106 Panamax Co uncoated tablet 900000000000526001 REPLACED BY association reference set 836041000168103 Panamax Co uncoated tablet 20161031 +37859011000036101 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose 320 mg/4 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 863561000168107 bupivacaine hydrochloride monohydrate 0.5% (20 mg/4 mL) + glucose monohydrate 320 mg/4 mL injection, ampoule 20170131 +37633011000036107 Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 5 x 2 mL vials 900000000000526001 REPLACED BY association reference set 720801000168105 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials 20151031 +640901000168105 Recombinate 500 IU (inert substance) diluent, 10 mL vial 900000000000526001 REPLACED BY association reference set 710871000168108 Recombinate (inert substance) diluent, 10 mL vial 20150831 +65610011000036103 Disprin Max 500 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 804351000168104 Disprin Max 500 mg tablet 20160630 +67340011000036100 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2 900000000000526001 REPLACED BY association reference set 995401000168101 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 2 20170831 +22825011000036103 fluoxetine 20 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 844301000168106 fluoxetine 20 mg tablet 20161031 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826021000168106 Streptococcus pneumoniae type 23F conjugate antigen 20160930 +844471000168108 Zovirax 200 mg tablet, 25, blister pack 900000000000526001 REPLACED BY association reference set 859591000168109 Zovirax Dispersible 200 mg tablet, 25, blister pack 20161231 +128461000036105 Perjeta 420 mg/14 mL injection solution, 14 mL vial 900000000000526001 REPLACED BY association reference set 1085741000168102 Perjeta 420 mg/14 mL concentrated injection, 14 mL vial 20180228 +169831000036100 dressing hydrofibre with silver 2 cm x 45 cm rope, 5 900000000000526001 REPLACED BY association reference set 745081000168104 dressing hydrofibre with silver 2 cm x 45 cm ribbon, 5 20160131 +926182011000036108 Medi Creme cream, 25 g 900000000000526001 REPLACED BY association reference set 863471000168100 Medi Creme cream, 25 g 20170131 +700171000168104 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 822581000168102 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack 20160831 +67321011000036109 Disprin Max 500 mg dispersible tablet, 6 900000000000526001 REPLACED BY association reference set 804391000168109 Disprin Max 500 mg tablet, 6 20160630 +19698011000036102 Movicol solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 673981000168107 Movicol powder for oral liquid, 30 sachets 20141031 +921095011000036109 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet 900000000000526001 REPLACED BY association reference set 950731000168102 Urocit-K 1.08 g (potassium 10 mmol) modified release tablet 20170630 +69040011000036107 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g, jar 900000000000526001 REPLACED BY association reference set 705521000168104 Salicylic Acid 3% and Sulphur 3% in Aqueous Cream (David Craig) cream, 100 g, jar 20150731 +75367011000036106 rotavirus pentavalent live reassortant oral vaccine 11.5 million CCID50 units/2 mL oral liquid, 10 x 2 mL tubes 900000000000526001 REPLACED BY association reference set 822511000168108 rotavirus pentavalent live vaccine oral liquid, 10 x 2 mL tubes 20160831 +74846011000036106 Co-Phenylcaine Forte nasal spray, 15 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 792041000168106 Co-Phenylcaine Forte nasal spray, 15 mL, pump pack 20160531 +74895011000036109 Spray-Tish menthol 0.118% nasal spray, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085421000168104 Spray-Tish menthol 0.118% nasal spray, 15 mL, pump pack 20180228 +74716011000036103 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 825921000168100 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20160930 +12180011000036108 Kenacomb ointment, 15 g 900000000000526001 REPLACED BY association reference set 758241000168109 Kenacomb ointment, 15 g 20160229 +933226091000036102 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004761000168100 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags 20170930 +921986011000036108 Gastrolyte Citrus effervescent tablet, 20, sachet 900000000000526001 REPLACED BY association reference set 871581000168107 Gastrolyte Citrus effervescent tablet, 20, sachet 20170131 +72141000036106 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL 900000000000526001 REPLACED BY association reference set 764271000168103 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 25 mL 20160331 +36654011000036107 Lanoxin 50 microgram/2 mL injection: solution, 5 x 2 mL ampoules 900000000000526001 REPLACED BY association reference set 735101000168107 Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules 20151231 +669571000168106 mercaptopurine 20 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 845371000168102 mercaptopurine monohydrate 20 mg/mL oral liquid 20161130 +923442011000036107 Omeprazole (Pharmacor) 20 mg capsule, 100 900000000000526001 REPLACED BY association reference set 717061000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 100 20150930 +80641011000036108 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 868071000168102 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 20170131 +74726011000036106 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825381000168102 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials 20160930 +933226161000036105 fluoride 9.99 mg/g + hydrofluoric acid 4.9 mg/g foam, 165 mL 900000000000526001 REPLACED BY association reference set 932361000168106 sodium fluoride 2.21% + hydrofluoric acid 0.49% (total fluoride 1.23%) foam, 165 mL 20170531 +51411011000036106 tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689211000168102 tape plaster adhesive elastic 5 cm x 2.5 m tape, 1 roll 20150331 +728701000168100 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1005751000168101 Ropivacaine 0.2% (Actavis) 200 mg/100 mL injection solution, 100 mL bag 20170930 +718801000168101 Infanrix Hexa injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840891000168104 Infanrix Hexa injection suspension, 0.5 mL syringe 20161031 +74794011000036107 Twinrix injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824631000168106 Twinrix injection suspension, 1 mL syringe 20160930 +860211000168101 boric acid 8.6 mg (boron 1.5 mg) + calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet, 90 900000000000526001 REPLACED BY association reference set 932971000168104 colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet, 90 20170531 +11952011000036102 Haldol Decanoate 50 mg/mL injection: solution, 5 x 1 mL vials 900000000000526001 REPLACED BY association reference set 679751000168101 Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules 20141231 +933220811000036100 ropivacaine hydrochloride monohydrate 200 mg/100 mL injection, bag 900000000000526001 REPLACED BY association reference set 1004531000168104 ropivacaine hydrochloride 200 mg/100 mL injection, bag 20170930 +700371000168102 ADT Booster injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837321000168105 ADT Booster injection suspension, 0.5 mL syringe 20161031 +77539011000036108 iopromide 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695591000168107 iopromide 769 mg (iodine 370 mg)/mL injection, 50 mL bottle 20150430 +77407011000036100 Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 862001000168105 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 60, bottle 20161231 +73800011000036100 Engerix-B Adult 20 microgram/mL injection suspension, vial 900000000000526001 REPLACED BY association reference set 825321000168101 Engerix-B Adult 20 microgram/mL injection suspension, vial 20160930 +85747011000036101 Fosamax Plus D-Cal (4 x Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848641000168108 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack 20161130 +71321000036107 Artelac 0.2% / 1% eye gel, 10 g 900000000000526001 REPLACED BY association reference set 719571000168102 Artelac 0.2% / 1% eye gel, 10 g 20150930 +81692011000036101 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 867821000168108 glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag 20170131 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836951000168100 Streptococcus pneumoniae type 20 polysaccharide antigen 20161031 +59685011000036100 Anti Fungal V 6 Day (Amcal) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 714991000168109 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g, tube 20150930 +703661000168109 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 826951000168102 Nimenrix (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20160930 +81213011000036109 calcium chloride dihydrate + glucose + lactate + magnesium chloride + sodium chloride 900000000000526001 REPLACED BY association reference set 861051000168104 glucose + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride 20161231 +80643011000036109 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 868151000168105 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 20170131 +60748011000036108 Duro-Tuss Dry Cough Lozenge orange lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 996281000168103 Duro-Tuss Dry Cough Lozenge orange lozenge, 2, blister pack 20170831 +75921000036109 calcium (as carbonate) 500 mg (calcium 500 mg) chewable tablet 900000000000526001 REPLACED BY association reference set 859701000168108 calcium carbonate 1.25 g (calcium 500 mg) chewable tablet 20161231 +74262011000036105 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 831961000168105 Zostavax (1 x 19 400 PFU vaccine vial, 1 x 0.65 mL inert diluent vial), 1 pack 20160930 +87018011000036107 calcium (as carbonate) 1 g (calcium 1 g) chewable tablet, 30 900000000000526001 REPLACED BY association reference set 859931000168104 calcium carbonate 2.5 g (calcium 1 g) chewable tablet, 30 20161231 +18550011000036101 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041051000168105 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device 20171130 +73803011000036108 Infanrix Hexa injection: suspension, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 840891000168104 Infanrix Hexa injection suspension, 0.5 mL syringe 20161031 +73853011000036100 Mencevax ACWY (meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram) powder for injection, vial 900000000000526001 REPLACED BY association reference set 827701000168102 Mencevax ACWY (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial 20160930 +933220531000036107 Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726481000168102 Norditropin Flexpro 5 mg/1.5 mL injection solution 20151031 +48741000036106 chlorhexidine gluconate 0.12% mouthwash 900000000000526001 REPLACED BY association reference set 933196671000036101 chlorhexidine gluconate 0.12% mouthwash 20160229 +86622011000036108 Anapen Auto-Injector 300 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726711000168103 Anapen Auto-Injector 300 microgram/0.3 mL injection solution, dose 20151031 +73881011000036106 Vaqta Adult 50 units/mL injection suspension, vial 900000000000526001 REPLACED BY association reference set 824911000168106 Vaqta Adult 50 units/mL injection suspension, vial 20160930 +706411000168103 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831391000168104 M-M-R II (10 x vaccine vials, 10 x inert diluent syringes), 1 pack, composite pack 20160930 +81703011000036104 sodium acetate 3.9 mg/mL + calcium chloride 480 microgram/mL + citrate sodium dihydrate 1.7 mg/mL + magnesium chloride 300 microgram/mL + potassium chloride 750 microgram/mL + sodium chloride 6.4 mg/mL eye solution, 120 mL 900000000000526001 REPLACED BY association reference set 834161000168105 sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution, 120 mL 20161031 +71885011000036100 cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge, 2 900000000000526001 REPLACED BY association reference set 995391000168103 cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge, 2 20170831 +730601000168107 Granisetron (AFT) 1 mg/mL injection: concentrated, ampoule 900000000000526001 REPLACED BY association reference set 747101000168100 Granisetron (AFT) 1 mg/mL injection solution, ampoule 20160131 +1021141000168105 Salofalk 500 mg granules, 300 sachets 900000000000526001 REPLACED BY association reference set 1084111000168101 Salofalk 500 mg modified release granules, 300 sachets 20180228 +650811000168100 dressing hydrofibre alternate to alginates 2 cm x 45 cm rope, 5 900000000000526001 REPLACED BY association reference set 745031000168100 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5 20160131 +925344011000036101 Pemzo 20 mg capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 717381000168100 Pemzo 20 mg enteric capsule, 100, bottle 20150930 +65298011000036104 Ringworm 1% ointment 900000000000526001 REPLACED BY association reference set 800411000168104 Ringworm (Amneal) 1% ointment 20160630 +933221201000036108 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1004791000168107 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 200 mL bag 20170930 +410821000168102 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 130 mL sachet 900000000000526001 REPLACED BY association reference set 725231000168107 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 130 mL pouch 20151031 +37744011000036102 calcium carbonate + colecalciferol 900000000000526001 REPLACED BY association reference set 733951000168109 calcium + colecalciferol 20161231 +78113011000036104 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 500 g 900000000000526001 REPLACED BY association reference set 705801000168105 glycerol 10% + cetomacrogol aqueous cream, 500 g 20150731 +815001000168101 Entrip 10 mg tablet, 250 900000000000526001 REPLACED BY association reference set 856621000168100 Entrip 10 mg film-coated tablet, 250 20161231 +924211011000036108 omeprazole 20 mg capsule, 7 900000000000526001 REPLACED BY association reference set 716871000168105 omeprazole 20 mg enteric capsule, 7 20150930 +697111000168103 Salofalk 3 g granules, 30 sachets 900000000000526001 REPLACED BY association reference set 1084331000168108 Salofalk 3 g modified release granules, 30 sachets 20180228 +930673011000036101 Menveo injection: suspension, 1 pack 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826721000168108 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack 20160930 +46167011000036105 pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 10 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013441000168107 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 10 x 500 mL bags 20170930 +700281000168108 diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 837261000168109 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 20161031 +5988011000036107 ADT Vaccine injection: suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837271000168103 ADT Vaccine injection suspension, 0.5 mL syringe 20161031 +923448011000036105 Omeprazole (Pharmacor) 20 mg capsule, 50 900000000000526001 REPLACED BY association reference set 717271000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 50 20150930 +733441000168101 Epipen Auto-Injector 300 microgram/0.3 mL injection, 1 dose 900000000000526001 REPLACED BY association reference set 881171000168107 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose 20170228 +39625011000036104 Naropin 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 711491000168101 Naropin 0.75% 20150831 +680661000168107 Zaldiar Combination Therapy film-coated tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 1027861000168109 Zaldiar film-coated tablet, 50, blister pack 20171031 +181711000036104 Diprosone 0.05% lotion, 30 mL, bottle 900000000000526001 REPLACED BY association reference set 1054651000168103 Diprosone 0.05% lotion, 30 mL, bottle 20171231 +925164011000036104 Pemzo 20 mg capsule, 98, blister pack 900000000000526001 REPLACED BY association reference set 717701000168109 Pemzo 20 mg enteric capsule, 98, blister pack 20150930 +711471000168102 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004661000168108 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +74725011000036104 Gardasil injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823051000168108 Gardasil injection suspension, 0.5 mL syringe 20160831 +664411000168100 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g, screw cap jar 900000000000526001 REPLACED BY association reference set 833731000168103 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g, screw cap jar 20160930 +22711011000036109 triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment 900000000000526001 REPLACED BY association reference set 758211000168105 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ointment 20160229 +698471000168102 Bexsero injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 822831000168100 Bexsero injection suspension, 10 x 0.5 mL syringes 20160831 +18333011000036108 Cardiprin 100 mg dispersible tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 804041000168103 Cardiprin 100 mg tablet, 90, blister pack 20160630 +844831000168107 Zovirax 400 mg tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 859581000168106 Zovirax Dispersible 400 mg tablet, 100, bottle 20161231 +87331011000036108 Levetiracetam (Generic Health) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003341000168103 Levetiracetam 1000 (Generic Health) 1 g film-coated tablet 20170930 +26731000036100 Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827181000168109 Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160930 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826071000168107 Streptococcus pneumoniae type 6B conjugate antigen 20160930 +929474011000036104 PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 723981000168104 PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 30 x 29 g sachets 20151031 +81612011000036100 glucose 5% (5 g/100 mL) injection, 40 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863881000168100 glucose monohydrate 5% (5 g/100 mL) injection, 40 x 100 mL bags 20170131 +60202011000036107 Daktarin 2% oral gel, 30 g, tube 900000000000526001 REPLACED BY association reference set 820061000168103 Daktarin 2% oral gel, 30 g, tube 20160731 +933226001000036105 sumatriptan 20 mg/actuation nasal spray, 2 actuations 900000000000526001 REPLACED BY association reference set 728171000168109 sumatriptan 20 mg/actuation nasal spray, 2 x 1 actuation 20151130 +137881000036100 Ropivacaine Hydrochloride (Kabi) 0.2% (40 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005901000168102 Ropivacaine 0.2% (Kabi) 40 mg/20 mL injection solution, 20 mL ampoule 20170930 +686841000168107 Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL injection devices 900000000000526001 REPLACED BY association reference set 698651000168108 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL injection devices 20150430 +78257011000036102 iopromide 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection, 10 x 100 mL vials 900000000000526001 REPLACED BY association reference set 695731000168104 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 100 mL bottles 20150430 +929474011000036104 PKU Anamix Junior oral liquid: powder for, 30 x 29 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 723951000168106 PKU Anamix Junior Unflavoured powder for oral liquid, 30 x 29 g sachets 20151031 +30586011000036108 Cilamox sugar free 250 mg/5 mL powder for oral liquid, 100 mL 900000000000526001 REPLACED BY association reference set 932911000168107 Cilamox 250 mg/5 mL powder for oral liquid, 100 mL 20170531 +170301000168108 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 174 mL sachet 900000000000526001 REPLACED BY association reference set 725331000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 174 mL pouch 20151031 +79029011000036100 Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL syringes, prefilled injection device 900000000000526001 REPLACED BY association reference set 898021000168100 Enbrel Auto-Injector 50 mg/mL injection solution, 4 x 1 mL injection devices 20170331 +75513011000036103 meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845901000168106 meningococcal C conjugate vaccine injection, 0.5 mL syringe 20161130 +728781000168108 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006171000168103 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +933221021000036109 Fluoride Tyranna Grape (Laclede) foam 900000000000526001 REPLACED BY association reference set 932571000168106 Fluoride (Laclede) Tyranna Grape Flavour foam 20170531 +65554011000036109 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 864281000168103 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 20170131 +73632011000036101 hepatitis B vaccine 900000000000526001 REPLACED BY association reference set 824451000168102 hepatitis B surface antigen 20161031 +13155011000036102 Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722751000168103 Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL 20151031 +76804011000036101 Centrum tablet: film-coated, 130 900000000000526001 REPLACED BY association reference set 833321000168100 Centrum film-coated tablet, 130 20160930 +56684011000036106 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 648761000168106 Panadol Children's 5 to 12 Years Colour Free Strawberry 240 mg/5 mL oral liquid suspension, 100 mL 20151031 +66454011000036104 Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16 900000000000526001 REPLACED BY association reference set 995141000168108 Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16 20170831 +61117011000036100 Difflam Lozenge honey and lemon sugar free lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 995751000168109 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 24, blister pack 20170831 +142411000036109 typhoid fever live attenuated oral vaccine enteric capsule 900000000000526001 REPLACED BY association reference set 827241000168107 typhoid live vaccine enteric capsule 20160930 +52180011000036101 Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint, 25 mL, poison bottle 900000000000526001 REPLACED BY association reference set 703161000168100 Salicylic Acid APF (extemporaneous) 10% paint, 25 mL, poison bottle 20150531 +51259011000036103 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725911000168109 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 130 mL pouches 20151031 +73947011000036104 Dukoral Effervescent Granules (inert substance) powder for oral liquid, 5.6 g sachet 900000000000526001 REPLACED BY association reference set 821901000168106 Dukoral (inert substance) effervescent granules, 5.6 g sachet 20160831 +101131000036108 liraglutide 18 mg/3 mL injection, 3 mL cartridge 900000000000526001 REPLACED BY association reference set 748041000168103 liraglutide 6 mg/mL injection, 3 mL injection device 20160131 +44517011000036109 Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations, bottle 900000000000526001 REPLACED BY association reference set 1085281000168104 Nasonex Aqueous 50 microgram/actuation nasal spray, 65 actuations, pump pack 20180228 +36150011000036103 Lanoxin 500 microgram/2 mL injection: solution, 2 mL ampoule 900000000000526001 REPLACED BY association reference set 735051000168107 Lanoxin Adult 500 microgram/2 mL injection solution, 2 mL ampoule 20151231 +70012011000036101 salicylic acid 3% (30 mg/g) + aqueous cream 970 mg/g cream 900000000000526001 REPLACED BY association reference set 705431000168100 salicylic acid 3% + aqueous cream 20150731 +921380011000036100 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 831731000168104 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack 20160930 +65701000036105 Adacel Polio injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 839771000168102 Adacel Polio injection suspension, 0.5 mL vial 20161031 +828401000168107 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 846081000168107 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 20161130 +728621000168102 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005821000168103 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +933203961000036109 Levetiracetam (LAPL) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003471000168103 Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60 20170930 +11719011000036108 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041271000168106 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device 20171130 +84921011000036107 Glycoprep powder for oral liquid, 200 g 900000000000526001 REPLACED BY association reference set 851561000168101 Glycoprep powder for oral liquid, 200 g sachet 20161130 +48775011000036109 Leukoplast (1072) 5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689201000168100 Leukoplast (1072) 5 cm x 2.5 m tape 20150331 +70001000036108 Artelac 0.2% / 1% eye gel, 600 mg unit dose 900000000000526001 REPLACED BY association reference set 719601000168108 Artelac 0.2% / 1% eye gel, 600 mg unit dose 20150930 +57206011000036100 Clotrimazole 3 Day Treatment (Pharmacist) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715691000168100 Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g 20150930 +113111000036101 Pico-Salax powder for oral liquid, 16.1 g sachet 900000000000526001 REPLACED BY association reference set 902091000168106 Pico-Salax powder for oral liquid, 16.1 g sachet 20170331 +921576011000036107 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 832021000168105 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent vial), 1 pack 20160930 +924207011000036103 omeprazole 20 mg capsule, 50 900000000000526001 REPLACED BY association reference set 716641000168104 omeprazole 20 mg enteric capsule, 50 20150930 +75399011000036102 diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, 10 packs 900000000000526001 REPLACED BY association reference set 840991000168106 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack 20161031 +140831000036101 Ropivacaine Hydrochloride (Kabi) 0.2% (200 mg/100 mL) injection: solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005891000168101 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +9021000036103 Clinoleic 20% injection: emulsion, 24 x 100 mL bags 900000000000526001 REPLACED BY association reference set 771931000168102 Clinoleic 20% injection emulsion, 24 x 100 mL bags 20160430 +56932011000036109 Logicin Rapid Relief original flavour lozenge, 16 900000000000526001 REPLACED BY association reference set 861611000168109 Logicin Rapid Relief original flavour lozenge, 16 20161231 +931845011000036104 meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826661000168106 meningococcal A conjugate vaccine injection, vial 20160930 +80421000036104 aflibercept 2 mg/0.05 mL injection, 0.05 mL vial 900000000000526001 REPLACED BY association reference set 703521000168103 aflibercept 4 mg/0.1 mL injection, 0.1 mL vial 20150630 +44076011000036104 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 30 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 693441000168101 Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules 20150331 +56779011000036108 Difflam Cough Lozenge blackcurrant sugar free lozenge, 24 900000000000526001 REPLACED BY association reference set 995551000168101 Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24 20170831 +75641000036107 risedronate sodium 35 mg enteric tablet [1] (&) calcium (as carbonate) 500 mg tablet [6], 7 900000000000526001 REPLACED BY association reference set 852671000168100 risedronate sodium 35 mg enteric tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 20161130 +77141011000036101 Sorbilax 1 mL/mL oral liquid: solution, 500 mL, bottle 900000000000526001 REPLACED BY association reference set 690671000168102 Sorbilax 70% non-crystallising oral liquid solution, 500 mL, bottle 20150331 +55825011000036107 Clotrimazole 3 Day (Guardian) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715161000168103 Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g 20150930 +49528011000036103 PKU Cooler10 Purple oral liquid: solution, 30 x 87 mL cans 900000000000526001 REPLACED BY association reference set 725581000168106 PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches 20151031 +932381011000036107 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder, 10 sachets 900000000000526001 REPLACED BY association reference set 932365011000036106 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 10 sachets 20160731 +77548011000036101 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle 900000000000526001 REPLACED BY association reference set 872921000168107 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, bottle 20170131 +62018011000036107 benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride monohydrate 1.33 mg + pholcodine 5.5 mg lozenge 900000000000526001 REPLACED BY association reference set 995521000168109 benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge 20170831 +1085491000168102 influenza trivalent geriatric vaccine 2018 injection, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 1122631000168107 influenza trivalent geriatric vaccine 2018 injection, 5 x 0.5 mL syringes 20180430 +74424011000036107 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825781000168103 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL vials 20160930 +49440011000036107 Mefix (310250) 2.5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694201000168102 Mefix (310250) 2.5 cm x 10 m tape, 1 roll 20150331 +931755011000036103 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 861301000168101 Anti-Inflammatory Lozenge (Amcal) Menthol and Eucalyptus lozenge, 16, blister pack 20161231 +74101000036101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 764311000168103 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL, bottle 20160331 +80673011000036105 Gastrolyte fruit powder for oral liquid, 10 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871811000168104 Gastrolyte Fruit powder for oral liquid, 10 x 4.9 g sachets 20170131 +925136011000036100 Omepro 20 mg capsule, 500, blister pack 900000000000526001 REPLACED BY association reference set 716701000168107 Omepro 20 mg enteric capsule, 500, blister pack 20150930 +23291011000036105 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection, syringe 900000000000526001 REPLACED BY association reference set 1007181000168102 insulin aspart 30 units/mL + insulin aspart protamine 70 units/mL injection device 20170930 +6220011000036102 Cal Sup 500 mg (calcium 500 mg) chewable tablet 900000000000526001 REPLACED BY association reference set 859711000168106 Cal Sup 1.25 g (calcium 500 mg) chewable tablet 20161231 +928904011000036109 Oxynorm 50 mg/mL intravenous infusion injection, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 1055151000168109 Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules 20171231 +137901000036102 ropivacaine hydrochloride monohydrate 50 mg/10 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 1005961000168101 ropivacaine hydrochloride 50 mg/10 mL injection, ampoule 20170930 +42701000036105 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 30 x 130 mL sachets 900000000000526001 REPLACED BY association reference set 725251000168101 amino acid formula with vitamins and minerals without methionine, threonine and valine and low in isoleucine oral liquid, 30 x 130 mL pouches 20151031 +653691000168104 Retinofluor 1 g/10 mL injection: solution, 10 mL vial 900000000000526001 REPLACED BY association reference set 721841000168101 Retinofluor 10% 1 g/10 mL injection solution, 10 mL vial 20151031 +929985011000036105 Lemsip Max Cold and Flu Direct with Decongestant powder, 1 sachet 900000000000526001 REPLACED BY association reference set 815881000168102 Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 1 sachet 20160731 +156801000036108 Pecfent 400 microgram/actuation nasal spray, 8 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1055061000168107 Pecfent 400 microgram/actuation nasal spray, 8 actuations, pump pack 20171231 +76622011000036107 Sandocal 1000 tablets: effervescent, 10 900000000000526001 REPLACED BY association reference set 745621000168108 Sandocal 1000 effervescent tablet, 10 20160131 +930869011000036104 Elevit with Iodine tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 843191000168104 Elevit with Iodine film-coated tablet, 30 20161031 +711481000168104 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004671000168102 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +28651000036102 diclofenac sodium 1% gel, 75 g 900000000000526001 REPLACED BY association reference set 1037101000168103 diclofenac diethylamine 1.16% gel, 75 g 20171130 +63122011000036104 hydrocortisone 1% spray, 30 mL 900000000000526001 REPLACED BY association reference set 776881000168101 hydrocortisone 1% spray, 30 mL 20160430 +74989011000036103 poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine 900000000000526001 REPLACED BY association reference set 839841000168103 polio trivalent inactivated vaccine 20161031 +65193011000036106 Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture 900000000000526001 REPLACED BY association reference set 688401000168106 Friars' Balsam Compound Benzoin (Gold Cross) tincture 20150331 +89881000036109 Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial 900000000000526001 REPLACED BY association reference set 730061000168103 Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial 20151130 +702651000168104 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837421000168100 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 20161031 +930611011000036108 Medi Quattro First Aid cream, 50 g 900000000000526001 REPLACED BY association reference set 863541000168108 Medi Quattro First Aid cream, 50 g 20170131 +681151000168107 Cal-600 plus D tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 862131000168102 Cal-600 plus D film-coated tablet, 100 20161231 +74863011000036106 Vaqta Adult 50 units/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 824941000168105 Vaqta Adult 50 units/mL injection suspension, 1 mL vial 20160930 +925347011000036107 Pemzo 20 mg capsule, 28, bottle 900000000000526001 REPLACED BY association reference set 716481000168106 Pemzo 20 mg enteric capsule, 28, bottle 20150930 +77143011000036100 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L, pump pack 900000000000526001 REPLACED BY association reference set 706001000168107 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L, pump pack 20150731 +69896011000036102 benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge 900000000000526001 REPLACED BY association reference set 995111000168109 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg + eucalyptus oil 5 mg + menthol 6 mg lozenge 20170831 +34805011000036103 Subutex 8 mg tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 685721000168101 Subutex 8 mg sublingual tablet, 100, bottle 20150228 +143941000036109 Tecfidera 240 mg capsule: modified release 900000000000526001 REPLACED BY association reference set 756361000168100 Tecfidera 240 mg enteric capsule 20160229 +86460011000036104 bisacodyl 5 mg enteric tablet [3] (&) citric acid 14 g + magnesium carbonate heavy 7.5 g powder for oral liquid [1 x 21.5 g sachet], 1 pack 900000000000526001 REPLACED BY association reference set 830961000168100 bisacodyl 5 mg enteric tablet [3] (&) magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid [1 sachet], 1 pack 20160930 +706301000168109 mumps virus (Jeryl Lynn B level) live vaccine 900000000000526001 REPLACED BY association reference set 829851000168103 mumps virus live antigen 20160930 +145311000036108 dimethyl fumarate 120 mg capsule: modified release, 14 900000000000526001 REPLACED BY association reference set 756241000168105 dimethyl fumarate 120 mg enteric capsule, 14 20160229 +85341011000036108 Levetiracetam (Chemmart) 1 g tablet 900000000000526001 REPLACED BY association reference set 1003271000168102 Levetiracetam 1000 (Chemmart) 1 g tablet 20170930 +44077011000036101 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 50 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693261000168103 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules 20150331 +75103011000036109 diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837631000168104 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 20161031 +33776011000036104 leuprorelin acetate 30 mg injection: modified release [1] (&) inert substance diluent [2 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 698521000168104 leuprorelin acetate 30 mg modified release injection [1 syringe] (&) inert substance diluent [1.5 mL syringe], 1 pack 20150731 +78371000036104 Clopidogrel/Aspirin 75/100 (Apo) tablet 900000000000526001 REPLACED BY association reference set 923061000168104 Clopidogrel/Aspirin 75/100 (Apo) coated tablet 20170430 +73806011000036102 Meruvax II (rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units) powder for injection, vial 900000000000526001 REPLACED BY association reference set 826321000168109 Meruvax II (rubella live vaccine) powder for injection, vial 20160930 +161401000036109 Cardiprin 100 mg dispersible tablet, 180, blister pack 900000000000526001 REPLACED BY association reference set 804121000168105 Cardiprin 100 mg tablet, 180, blister pack 20160630 +48518011000036106 Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689251000168101 Leukoplast (1073) 7.5 cm x 2.5 m tape 20150331 +925147011000036103 Omepro 20 mg capsule, 100, blister pack 900000000000526001 REPLACED BY association reference set 716231000168106 Omepro 20 mg enteric capsule, 100, blister pack 20150930 +925348011000036108 Pemzo 20 mg capsule, 30, bottle 900000000000526001 REPLACED BY association reference set 716741000168109 Pemzo 20 mg enteric capsule, 30, bottle 20150930 +28211000036103 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725141000168106 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 125 mL pouches 20151031 +81285011000036107 calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 867721000168102 glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, bag 20170131 +61441000036100 Quick-Eze chewable tablet 900000000000526001 REPLACED BY association reference set 833651000168100 Quick-Eze chewable tablet 20160930 +924883011000036102 Pemzo 20 mg capsule, 28 900000000000526001 REPLACED BY association reference set 716431000168105 Pemzo 20 mg enteric capsule, 28 20150930 +697121000168105 Salofalk 3 g granules, 30 sachets 900000000000526001 REPLACED BY association reference set 1084341000168104 Salofalk 3 g modified release granules, 30 sachets 20180228 +806111000168107 Repatha 140 mg/mL injection: solution, 1 mL injection device 900000000000526001 REPLACED BY association reference set 846391000168108 Repatha Sureclick 140 mg/mL injection solution, 1 mL injection device 20161130 +20211011000036105 Dysport 500 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 721051000168106 Dysport 500 units powder for injection, 1 vial 20151031 +922686011000036105 paracetamol 500 mg + codeine phosphate 30 mg tablet, 50 900000000000526001 REPLACED BY association reference set 835841000168100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet, 50 20161031 +924535011000036105 Omepro 20 mg capsule 900000000000526001 REPLACED BY association reference set 716201000168104 Omepro 20 mg enteric capsule 20150930 +50923011000036107 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689291000168106 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape 20150331 +691661000168101 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848191000168105 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack 20161130 +653321000168109 Molaxole solution: powder for, 8 sachets 900000000000526001 REPLACED BY association reference set 674231000168100 Molaxole powder for oral liquid, 8 sachets 20141031 +73801000036109 Granisetron (Kabi) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 746801000168105 Granisetron (Kabi) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +933231471000036101 Cerumol ear drops, 10 mL, bottle 900000000000526001 REPLACED BY association reference set 854381000168100 Cerumol ear drops, 10 mL, bottle 20161231 +60625011000036105 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 721471000168106 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL, bottle 20151031 +933231581000036103 Naropin 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004621000168103 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +110361000036105 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10, carton 900000000000526001 REPLACED BY association reference set 1056301000168103 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon, 10, carton 20171231 +48558011000036101 Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 694111000168109 Leukosilk (1024) 5 cm x 5 m tape 20150331 +70161000036108 exenatide 5 microgram/0.02 mL injection, unit dose 900000000000526001 REPLACED BY association reference set 726751000168102 exenatide 5 microgram/dose injection, dose 20151031 +31241000036109 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 685981000168100 Femazole Duo (1 x 150 mg capsule, 1 x 10 g cream), 1 pack 20150228 +728581000168102 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006061000168105 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +81613011000036107 glucose 5% (5 g/100 mL) injection, 50 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863911000168100 glucose monohydrate 5% (5 g/100 mL) injection, 50 x 100 mL bags 20170131 +703291000168104 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 828061000168100 Mencevax ACWY (1 x vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20160930 +51953011000036100 Salicylic Acid Paint (extemporaneous) 900000000000526001 REPLACED BY association reference set 63591000168101 Salicylic Acid APF (extemporaneous) 20150531 +251901000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL can 900000000000526001 REPLACED BY association reference set 724421000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 62.5 mL pouch 20151031 +91531000036108 Zytiga 250 mg tablet, 120, bottle 900000000000526001 REPLACED BY association reference set 863381000168105 Zytiga 250 mg uncoated tablet, 120, bottle 20170131 +930640011000036105 Lemsip Max Cold and Flu Direct with Decongestant powder, 10 sachets 900000000000526001 REPLACED BY association reference set 815891000168104 Lemsip Max Cold and Flu Direct with Decongestant powder for oral liquid, 10 sachets 20160731 +695641000168103 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848581000168102 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 20161130 +74778011000036106 Azep 140 microgram/actuation nasal spray, 5 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 809561000168109 Azep 0.1% nasal spray, 5 mL, pump pack 20160630 +698451000168106 Bexsero injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822811000168105 Bexsero injection suspension, 0.5 mL syringe 20160831 +924202011000036100 omeprazole 20 mg capsule, 100 900000000000526001 REPLACED BY association reference set 716251000168100 omeprazole 20 mg enteric capsule, 100 20150930 +663781000168101 Kaolin Mixture BPC (extemporaneous) oral liquid suspension 900000000000526001 REPLACED BY association reference set 833501000168100 Kaolin Mixture BPC (extemporaneous) oral liquid suspension 20160930 +74932011000036102 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846031000168106 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 20161130 +921032011000036108 MD-Gastroview solution, 120 mL bottle 900000000000526001 REPLACED BY association reference set 696061000168101 MD-Gastroview solution 20150430 +86185011000036107 Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872371000168107 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 20170131 +12764011000036107 Anzemet 100 mg/5 mL injection: solution, 5 mL vial 900000000000526001 REPLACED BY association reference set 703371000168108 Anzemet 100 mg/5 mL injection solution, 5 mL ampoule 20150630 +4396011000036107 Questran 900000000000526001 REPLACED BY association reference set 35521000168109 Questran Lite 20171130 +37663011000036102 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 900000000000526001 REPLACED BY association reference set 850931000168109 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses, tube 20161130 +662421000168102 Metformin Hydrochloride (AN) 1 g film-coated tablet, 90 900000000000526001 REPLACED BY association reference set 949401000168107 Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90 20170630 +664301000168106 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 900000000000526001 REPLACED BY association reference set 833631000168106 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL, dispensing bottle 20160930 +933231241000036109 Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726501000168106 Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL, injection device 20151031 +933220981000036100 Fluoride Moose Mallow (Laclede) foam 900000000000526001 REPLACED BY association reference set 932541000168104 Fluoride (Laclede) Moose Mallow Flavour foam 20170531 +815161000168101 Entrip 50 mg tablet 900000000000526001 REPLACED BY association reference set 856771000168108 Entrip 50 mg film-coated tablet 20161231 +933221221000036103 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1004691000168101 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 100 mL bag 20170930 +923336011000036103 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 821321000168103 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack 20160831 +130301000036104 MSUD Cooler 20 oral liquid: solution, 30 x 174 mL sachets 900000000000526001 REPLACED BY association reference set 725371000168102 MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches 20151031 +119701000036104 clotrimazole 1% + hydrocortisone (as acetate) 1% cream 900000000000526001 REPLACED BY association reference set 37823011000036100 hydrocortisone 1% + clotrimazole 1% cream 20150930 +9121000036104 Clinoleic 20% injection: emulsion, 350 mL bag 900000000000526001 REPLACED BY association reference set 779131000168101 Clinoleic 20% injection emulsion, 350 mL bag 20160430 +373151000168106 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 174 mL sachet 900000000000526001 REPLACED BY association reference set 725941000168108 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 174 mL pouch 20151031 +2439011000036108 pancrelipase 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 846131000168107 amylase 20161130 +65258011000036108 Soap Enema (Orion) 50 mg/mL enema, bottle 900000000000526001 REPLACED BY association reference set 685501000168100 Soap Enema (Orion) 50 mg/mL enema 20150228 +74970011000036103 rabies inactivated vaccine 900000000000526001 REPLACED BY association reference set 821341000168109 rabies vaccine 20160831 +923734011000036107 Omeprazole (Pharmacor) 20 mg capsule, 56, blister pack 900000000000526001 REPLACED BY association reference set 717341000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 56, blister pack 20150930 +81693011000036108 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 1.5% (45 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 x 3 L bags 900000000000526001 REPLACED BY association reference set 867851000168100 glucose monohydrate 1.5% (45 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 x 3 L bags 20170131 +806081000168102 Repatha 140 mg/mL injection: solution, injection device 900000000000526001 REPLACED BY association reference set 846371000168107 Repatha Sureclick 140 mg/mL injection solution, injection device 20161130 +76038011000036103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 900000000000526001 REPLACED BY association reference set 705831000168103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream 20150731 +67424011000036104 Aqium 66% gel, 375 mL 900000000000526001 REPLACED BY association reference set 730521000168102 Aqium 66% gel, 375 mL 20151130 +923447011000036109 Omeprazole (Pharmacor) 20 mg capsule, 5 900000000000526001 REPLACED BY association reference set 717251000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 5 20150930 +50403011000036103 Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll, wrapping 900000000000526001 REPLACED BY association reference set 688871000168104 Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll, wrapping 20150331 +93401000036101 meningococcal group A conjugate vaccine 4 microgram + meningococcal group C conjugate vaccine 4 microgram + meningococcal group W135 conjugate vaccine 4 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 4 microgram injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 826531000168102 meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial 20160930 +920850011000036104 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) tablet, 60 900000000000526001 REPLACED BY association reference set 733981000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 20161231 +921395011000036108 Berocca Performance Original effervescent tablet, 15 900000000000526001 REPLACED BY association reference set 829721000168100 Berocca Performance Original effervescent tablet, 15 20160930 +716031000168102 MenA 10 microgram powder for injection, 10 microgram vial 900000000000526001 REPLACED BY association reference set 826671000168100 MenA 10 microgram powder for injection, 10 microgram vial 20160930 +117611000036101 nomegestrol acetate 2.5 mg + oestradiol 1.5 mg tablet [72] (&) inert substance tablet [12], 1 pack 900000000000526001 REPLACED BY association reference set 683941000168106 nomegestrol acetate 2.5 mg + estradiol 1.5 mg tablet [24] (&) inert substance tablet [4], 3 x 28 20150131 +923903011000036108 Omeprazole (Pharmacor) 20 mg capsule, 5, bottle 900000000000526001 REPLACED BY association reference set 717261000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 5, bottle 20150930 +5176011000036103 Canesten Clotrimazole Thrush Treatment 6 Day 1% cream 900000000000526001 REPLACED BY association reference set 715061000168102 Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream 20150930 +1611000036101 Dysport 300 units injection: powder for, 300 units vial 900000000000526001 REPLACED BY association reference set 721091000168101 Dysport 300 units powder for injection, 300 units vial 20151031 +70160011000036106 chlorhexidine gluconate 0.5% + ethanol 70% solution 900000000000526001 REPLACED BY association reference set 70161011000036104 chlorhexidine gluconate 0.5% + ethanol 70% solution 20160331 +41562011000036103 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 50 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693381000168103 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 50 x 5 mL ampoules 20150331 +81050011000036102 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864401000168107 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 65 x 50 mL bags 20170131 +75440011000036106 lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 25 mL 900000000000526001 REPLACED BY association reference set 792051000168108 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 25 mL 20160531 +85089011000036101 macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, sachet 900000000000526001 REPLACED BY association reference set 851531000168109 macrogol-3350 171.4 g + sodium chloride 4.4 g + potassium chloride 2.25 g (potassium 30 mmol) + sodium sulfate 16.9 g + sodium bicarbonate 5.06 g powder for oral liquid, 200 g sachet 20161130 +652281000168106 Cal-500 500 mg (calcium 500 mg) chewable tablet, 60, bottle 900000000000526001 REPLACED BY association reference set 859771000168103 Cal-500 1.25 g (calcium 500 mg) chewable tablet, 60, bottle 20161231 +35716011000036101 macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 23.3 mg (0.32 mmol potassium) + sodium bicarbonate 89.25 mg solution, 1 sachet 900000000000526001 REPLACED BY association reference set 674101000168103 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 1 sachet 20141031 +104201000036108 Irbesartan (Apo) 75 mg tablet, 30, blister pack 900000000000526001 REPLACED BY association reference set 807761000168106 Irbesartan (Apo) 75 mg film-coated tablet, 30, blister pack 20160630 +7076011000036109 Citracal 250 mg (calcium 250 mg) tablet: film-coated 900000000000526001 REPLACED BY association reference set 860031000168102 Citracal 1.19 g (calcium 250 mg) film-coated tablet 20161231 +157051000036104 tenofovir + emtricitabine + elvitegravir + cobicistat 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 851321000168102 tenofovir alafenamide + emtricitabine + elvitegravir + cobicistat 20161130 +85704011000036103 Levetiracetam (Apo) 1 g tablet, 100 900000000000526001 REPLACED BY association reference set 1003191000168109 Levetiracetam 1000 (Apo) 1 g tablet, 100 20170930 +88531000036104 Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial 900000000000526001 REPLACED BY association reference set 730051000168100 Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial 20151130 +85384011000036103 Kepcet 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003021000168106 Kepcet-1000 1 g film-coated tablet 20170930 +48472011000036107 Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689151000168108 Leukoplast (1071) 2.5 cm x 2.5 m tape 20150331 +87112011000036101 Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g 900000000000526001 REPLACED BY association reference set 705781000168106 Sorbolene Cream with Glycerin (Pharmacy Select) cream, 50 g 20150731 +22939011000036108 pancreatic extract 25 000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847371000168105 lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule 20161130 +925353011000036100 Pemzo 20 mg capsule, 60, bottle 900000000000526001 REPLACED BY association reference set 717521000168108 Pemzo 20 mg enteric capsule, 60, bottle 20150930 +1979011000036106 codeine phosphate 900000000000527005 SAME AS association reference set 51924011000036104 codeine phosphate hemihydrate 20161031 +27359011000036100 triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/g ointment, 5 g 900000000000526001 REPLACED BY association reference set 758281000168104 triamcinolone acetonide 0.1% + neomycin 0.25% + gramicidin 0.025% + nystatin 100 000 units/g ear ointment, 5 g 20160229 +107101000036107 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 902131000168108 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid, sachet 20170331 +74261011000036104 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831841000168102 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack 20160930 +1021191000168102 mesalazine 1 g granules, 150 sachets 900000000000526001 REPLACED BY association reference set 1084191000168105 mesalazine 1 g modified release granules, 150 sachets 20180228 +689621000168106 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 900000000000526001 REPLACED BY association reference set 831211000168100 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack 20160930 +4913011000036109 Humira 40 mg/0.8 mL injection solution, 0.8 mL cartridge 900000000000526001 REPLACED BY association reference set 729811000168101 Humira 40 mg/0.8 mL injection solution, 0.8 mL injection device 20171130 +33346011000036102 Femizol Clotrimazole Thrush Treatment 3 Day 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715521000168101 Femizol Clotrimazole Thrush Treatment 3 Day 2% vaginal cream, 20 g 20150930 +86228011000036108 macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 25.1 mg (0.34 mmol potassium) + sodium bicarbonate 89.25 mg solution, 1 sachet 900000000000526001 REPLACED BY association reference set 674151000168104 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 1 sachet 20141031 +63251000036102 Rehydration Formula Effervescent (Guardian) effervescent tablet, 20 900000000000526001 REPLACED BY association reference set 871761000168105 Rehydration Formula Effervescent (Guardian) effervescent tablet, 20 20170131 +74903011000036100 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, bottle 900000000000526001 REPLACED BY association reference set 1082841000168101 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 120 actuations, pump pack 20180228 +82402011000036100 Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 120, bottle 900000000000526001 REPLACED BY association reference set 860471000168108 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120, bottle 20161231 +141761000036107 lanreotide 90 mg injection, 1 syringe 900000000000526001 REPLACED BY association reference set 819531000168103 lanreotide 90 mg/0.5 mL injection, 0.5 mL syringe 20160731 +59768011000036102 Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 721721000168101 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL, bottle 20151031 +74334011000036102 Co-Phenylcaine Forte nasal spray, 25 mL 900000000000526001 REPLACED BY association reference set 792061000168105 Co-Phenylcaine Forte nasal spray, 25 mL 20160531 +88581000036100 Zytiga 250 mg tablet 900000000000526001 REPLACED BY association reference set 863361000168101 Zytiga 250 mg uncoated tablet 20170131 +4466011000036104 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041071000168101 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device 20171130 +933226101000036106 ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004751000168102 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, 5 x 100 mL bags 20170930 +924421011000036102 First Aid (Amcal) cream 900000000000526001 REPLACED BY association reference set 861501000168105 First Aid (Amcal) cream 20161231 +931719011000036107 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872881000168100 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 20170131 +711111000168104 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006201000168104 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +931864011000036108 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle 900000000000526001 REPLACED BY association reference set 872841000168105 alanine 8.3 g/500 mL + arginine 4.6 g/500 mL + glycine 4.12 g/500 mL + histidine 1.92 g/500 mL + isoleucine 2.4 g/500 mL + leucine 2.92 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.6 g/500 mL + phenylalanine 2.24 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 2.72 g/500 mL + serine 2 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 1.68 g/500 mL + tryptophan 720 mg/500 mL + tyrosine 160 mg/500 mL + valine 2.32 g/500 mL injection, bottle 20170131 +54076011000036107 Difflam Lozenge double mint sugar free lozenge 900000000000526001 REPLACED BY association reference set 995581000168108 Difflam Lozenge Double Mint Sugar Free lozenge 20170831 +74427011000036101 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 826431000168101 Menjugate Syringe (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack 20160930 +80631011000036107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 867751000168105 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2.5 L bag 20170131 +933239451000036107 Omeprazole (Apo) 20 mg capsule, 30, bottle 900000000000526001 REPLACED BY association reference set 717581000168107 Omeprazole (Apo) 20 mg enteric capsule, 30, bottle 20150930 +73849011000036100 Adacel Polio injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839621000168105 Adacel Polio injection suspension, 0.5 mL syringe 20161031 +920964011000036107 Sorbi Sorbitol 900000000000526001 REPLACED BY association reference set 690591000168100 Sorbi 20150331 +924889011000036104 Pemzo 20 mg capsule, 60 900000000000526001 REPLACED BY association reference set 717431000168107 Pemzo 20 mg enteric capsule, 60 20150930 +78111011000036100 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 500 mL 900000000000526001 REPLACED BY association reference set 705881000168102 glycerol 10% + cetomacrogol aqueous cream, 500 mL 20150731 +711251000168105 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006121000168104 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +73658011000036102 pneumococcal 7 valent conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826041000168100 Streptococcus pneumoniae type 18C conjugate antigen 20160930 +69811000036103 carbomer 0.2% + triglyceride lipids 1% eye gel 900000000000526001 REPLACED BY association reference set 719541000168109 carbomer-980 0.2% + triglyceride lipids 1% eye gel 20150930 +22841000036103 Albey Bee Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 758851000168105 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 20160229 +135261000036104 Granisetron (AFT) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 746951000168101 Granisetron (AFT) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836891000168103 Streptococcus pneumoniae type 14 polysaccharide antigen 20161031 +137931000036109 Granisetron (Sandoz) 1 mg/mL injection: concentrated, vial 900000000000526001 REPLACED BY association reference set 747041000168102 Granisetron (Sandoz) 1 mg/mL injection solution, vial 20160131 +73832011000036106 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 824811000168100 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL vial 20160930 +653721000168108 Retinofluor 1 g/10 mL injection: solution, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 721861000168102 Retinofluor 10% 1 g/10 mL injection solution, 10 x 10 mL vials 20151031 +844431000168105 Zovirax 200 mg tablet, 25, bottle 900000000000526001 REPLACED BY association reference set 859201000168100 Zovirax Dispersible 200 mg tablet, 25, bottle 20161231 +55655011000036104 Cepacol Plus with Anaesthetic Original Flavour lozenge, 16 900000000000526001 REPLACED BY association reference set 995451000168102 Cepacol Plus with Anaesthetic Original Flavour lozenge, 16 20170831 +922563011000036109 alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 60 900000000000526001 REPLACED BY association reference set 843261000168100 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet, 60 20161031 +182131000036104 lixisenatide 20 microgram/0.2 mL injection, 14 x 0.2 mL unit doses 900000000000526001 REPLACED BY association reference set 719261000168106 lixisenatide 20 microgram/dose injection, 14 doses 20150930 +85791011000036103 Extraneal 7.5% dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872321000168106 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 20170131 +31561000036108 typhoid fever polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 827091000168106 typhoid inactivated vaccine 20160930 +75508011000036105 meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 827711000168104 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 20160930 +27627011000036102 pancreatic extract 10 000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847451000168107 lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule, 100 20161130 +85348011000036104 Levetiracetam (Apo) 1 g tablet 900000000000526001 REPLACED BY association reference set 1003181000168106 Levetiracetam 1000 (Apo) 1 g tablet 20170930 +75412011000036103 hepatitis A inactivated vaccine 720 ELISA units/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824971000168103 hepatitis A child/adolescent vaccine 720 ELISA units/0.5 mL injection, 0.5 mL syringe 20160930 +80523011000036102 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863981000168106 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags 20170131 +82431011000036104 calcium chloride dihydrate + glucose + lactate + magnesium chloride + potassium chloride + sodium chloride 900000000000526001 REPLACED BY association reference set 861211000168106 calcium chloride dihydrate + glucose + magnesium chloride + potassium chloride + sodium chloride + sodium lactate 20161231 +775691000168109 Codalgin uncoated tablet, 40 900000000000526001 REPLACED BY association reference set 836121000168105 Codalgin uncoated tablet, 40 20161031 +639751000168104 BCG Vaccine (Sanofi Pasteur) (inert substance) diluent, 1 mL vial 900000000000526001 REPLACED BY association reference set 700151000168108 BCG Vaccine (Sanofi Pasteur) (inert substance) diluent, 1.5 mL vial 20150531 +75397011000036109 poliomyelitis live attenuated oral vaccine oral liquid, 100 vials 900000000000526001 REPLACED BY association reference set 839811000168102 polio trivalent live vaccine oral liquid, 100 vials 20161031 +74411011000036102 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 827751000168103 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 20160930 +87003011000036104 sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% nasal drops, 12 x 1.8 g sachets 900000000000526001 REPLACED BY association reference set 758691000168104 sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 12 x 1.8 g sachets 20160229 +141971000036101 Somatuline Autogel 60 mg injection: solution, 1 syringe 900000000000526001 REPLACED BY association reference set 819601000168106 Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +74781011000036105 Cervarix injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823201000168104 Cervarix injection suspension, 10 x 0.5 mL syringes 20160831 +52891000168101 Fluoride Witchy Candy Mint (Laclede) 900000000000526001 REPLACED BY association reference set 932331000168103 Fluoride (Laclede) 20170531 +375251000168103 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 87 mL sachet 900000000000526001 REPLACED BY association reference set 725841000168104 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 87 mL pouch 20151031 +75404011000036105 hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 824581000168108 hepatitis A + hepatitis B adult vaccine injection, 10 x 1 mL syringes 20160930 +927592011000036101 Immucyst 1920 million CFU powder for injection, vial 900000000000526001 REPLACED BY association reference set 1045941000168107 Immucyst (Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg) powder for injection, 81 mg vial 20171130 +732641000168108 Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 746991000168106 Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +36624011000036106 Primacor 10 mg/10 mL injection: solution, 10 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 719511000168105 Primacor 10 mg/10 mL concentrated injection, 10 x 10 mL ampoules 20150930 +68798011000036103 Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion, 500 mL, bottle 900000000000526001 REPLACED BY association reference set 766801000168104 Chlorhexidine Hand Lotion (Orion) lotion, 500 mL, bottle 20160331 +833781000168102 somatropin 400 microgram/dose + inert substance injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 633431000168102 inert substance diluent, 0.25 mL syringe 20170731 +711101000168102 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1006191000168102 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule 20170930 +925161011000036102 Pemzo 20 mg capsule, 7, blister pack 900000000000526001 REPLACED BY association reference set 717571000168109 Pemzo 20 mg enteric capsule, 7, blister pack 20150930 +711851000168109 Ropibam 0.2% 40 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005141000168102 Ropibam 0.2% 40 mg/20 mL injection solution, 20 mL ampoule 20170930 +258851000168100 Lophlex LQ oral liquid: solution, 125 mL can 900000000000526001 REPLACED BY association reference set 726271000168104 Lophlex LQ oral liquid solution, 125 mL pouch 20151031 +368321000168103 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 130 mL can 900000000000526001 REPLACED BY association reference set 725891000168107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 130 mL pouch 20151031 +6070011000036105 Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 0.4 mL ampoule 900000000000526001 REPLACED BY association reference set 684571000168109 Ocufen 0.03% eye drops solution, 0.4 mL unit dose 20150131 +131391000036100 Perjeta 420 mg/14 mL injection solution, 14 mL vial 900000000000526001 REPLACED BY association reference set 1085751000168100 Perjeta 420 mg/14 mL concentrated injection, 14 mL vial 20180228 +37879011000036103 atropine sulfate 400 microgram/mL injection, ampoule 900000000000526001 REPLACED BY association reference set 850391000168107 atropine sulfate monohydrate 400 microgram/mL injection, ampoule 20161130 +761251000168109 diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 100 900000000000526001 REPLACED BY association reference set 851141000168105 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 100 20161130 +930004011000036102 Menveo injection: suspension, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826701000168104 MenCWY injection solution, syringe 20160930 +923052011000036100 Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827421000168102 Prevenar-13 injection suspension, 0.5 mL syringe 20160930 +78675011000036107 Enbrel Auto-Injector 50 mg/mL injection solution, syringe 900000000000526001 REPLACED BY association reference set 897991000168100 Enbrel Auto-Injector 50 mg/mL injection solution, injection device 20170331 +84384011000036105 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 873151000168108 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags 20170131 +74907011000036109 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824691000168105 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +137991000036105 Menitorix (meningococcal group C polysaccharide vaccine 5 microgram + Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram) powder for injection, vial 900000000000526001 REPLACED BY association reference set 846061000168103 Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial 20161130 +963571000168108 Metformin (Apo) 900000000000527005 SAME AS association reference set 25891000168106 Metformin (Apo) 20170930 +33583011000036101 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 881211000168109 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device 20170228 +21806011000036104 atropine sulfate 900000000000526001 REPLACED BY association reference set 933232141000036108 atropine sulfate monohydrate 20161130 +693191000168102 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837421000168100 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 20161031 +73636011000036102 human papillomavirus (type 18) vaccine 900000000000526001 REPLACED BY association reference set 822751000168101 human papillomavirus type 18 antigen 20160831 +26829011000036102 aspirin 300 mg + codeine phosphate 8 mg dispersible tablet, 50 900000000000526001 REPLACED BY association reference set 834271000168105 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet, 50 20161031 +66456011000036107 Cepacol Mint 0.05% mouthwash, 500 mL 900000000000526001 REPLACED BY association reference set 995321000168100 Cepacol Mint 0.05% mouthwash, 500 mL 20170831 +78328011000036105 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 100 900000000000526001 REPLACED BY association reference set 861761000168104 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 100 20161231 +13736011000036104 Granocyte 33.6 million units (263 microgram) powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 838271000168104 Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial 20161031 +50450011000036103 Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694181000168103 Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll, carton 20150331 +83390011000036102 Prozero oral liquid: solution, 18 x 250 mL cans 900000000000526001 REPLACED BY association reference set 745361000168105 Prozero oral liquid solution, 18 x 250 mL cartons 20160131 +73819011000036108 Rabipur (rabies inactivated vaccine 2.5 units) powder for injection, 2.5 units vial 900000000000526001 REPLACED BY association reference set 821361000168108 Rabipur (rabies vaccine) powder for injection, 2.5 units vial 20160831 +74341011000036104 Ipol injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839881000168108 Ipol injection solution, 0.5 mL syringe 20161031 +49435011000036104 Leukopor (2471) 1.25 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689321000168103 Leukopor (2471) 1.25 cm x 5 m tape, 1 roll 20150331 +9111000036106 olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, 10 x 500 mL bags 900000000000526001 REPLACED BY association reference set 771981000168101 olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, 10 x 500 mL bags 20160430 +74939011000036107 Quadracel injection suspension, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 840671000168104 Quadracel injection suspension, 5 x 0.5 mL vials 20161031 +27603011000036104 botulinum toxin type A 100 units injection, 1 vial 900000000000526001 REPLACED BY association reference set 720861000168106 botulinum toxin type A 100 units injection, 1 vial 20151031 +700029171000036101 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 6 sachets 900000000000526001 REPLACED BY association reference set 810241000168103 Actonel EC Combi D effervescent granules, 6 sachets 20160630 +6898011000036102 Oxynorm 5 mg/5 mL oral liquid: solution, 5 mL 900000000000526001 REPLACED BY association reference set 815921000168109 Oxynorm 1 mg/mL oral liquid solution 20160731 +127321000036106 MSUD Cooler 20 oral liquid: solution, 30 x 174 mL sachets 900000000000526001 REPLACED BY association reference set 725361000168108 MSUD Cooler 20 oral liquid solution, 30 x 174 mL pouches 20151031 +75042011000036100 hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824561000168104 hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe 20160930 +84082011000036102 Glycoprep-C Flavoured powder for oral liquid, 210 g sachet 900000000000526001 REPLACED BY association reference set 901141000168108 Glycoprep-C powder for oral liquid, 210 g sachet 20170331 +36820011000036107 Colistin (Link) 150 mg powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 817491000168109 Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial 20160731 +37552011000036107 Colistin (Link) 150 mg powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 817501000168102 Colistin (Link) 150 mg (4.5 million units) powder for injection, 1 vial 20160731 +36231011000036108 Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 5 mL vial 900000000000526001 REPLACED BY association reference set 720811000168108 Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 5 mL vial 20151031 +48561011000036103 Leukopor (2474) 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 694021000168103 Leukopor (2474) 5 cm x 5 m tape 20150331 +89841000036100 Zytiga 250 mg tablet, 120 900000000000526001 REPLACED BY association reference set 863371000168107 Zytiga 250 mg uncoated tablet, 120 20170131 +711741000168101 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005531000168103 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +924877011000036103 Omepro 20 mg capsule, 60 900000000000526001 REPLACED BY association reference set 716841000168103 Omepro 20 mg enteric capsule, 60 20150930 +43911000036104 Remeron 45 mg tablet: orally disintegrating, 30 900000000000526001 REPLACED BY association reference set 783881000168100 Remeron Soltab 45 mg orally disintegrating tablet, 30 20160531 +74428011000036100 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 826491000168102 Menjugate Syringe (10 x 10 microgram vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 20160930 +900029011000036107 Voltaren Emulgel 1% gel, 100 g 900000000000526001 REPLACED BY association reference set 1037011000168104 Voltaren Emulgel 1.16% gel, 100 g 20171130 +56708011000036109 Duro-Tuss Dry Cough Lozenge orange lozenge, 4 900000000000526001 REPLACED BY association reference set 996311000168101 Duro-Tuss Dry Cough Lozenge orange lozenge, 4 20170831 +27581011000036107 interferon alfa-2b 30 million units/1.2 mL injection, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722791000168108 interferon alfa-2b 30 million units/1.2 mL injection, 1.2 mL 20151031 +922127011000036102 iopromide 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695101000168107 iopromide 623 mg (iodine 300 mg)/mL injection, 20 mL vial 20150430 +669581000168109 Allmercap 20 mg/mL oral liquid suspension 900000000000526001 REPLACED BY association reference set 845381000168104 Allmercap 20 mg/mL oral liquid suspension 20161130 +684051000168105 Pneumovax-23 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 838201000168109 Pneumovax-23 injection solution, 10 x 0.5 mL syringes 20161031 +1021161000168109 mesalazine 1 g granules, 50 sachets 900000000000526001 REPLACED BY association reference set 1084141000168102 mesalazine 1 g modified release granules, 50 sachets 20180228 +933204021000036103 Levetiracetam (GH) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003391000168106 Levetiracetam 1000 (GH) 1 g film-coated tablet, 60 20170930 +73671011000036109 Varicella zoster live attenuated vaccine 900000000000526001 REPLACED BY association reference set 829871000168107 varicella-zoster virus live antigen 20160930 +927681011000036102 Avamys 27.5 microgram/actuation nasal spray, 120 actuations, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1082991000168102 Avamys 27.5 microgram/actuation nasal spray, 120 actuations, pump pack 20180228 +65267011000036103 Tinaderm Powder Spray 0.09% spray: pressurised 900000000000526001 REPLACED BY association reference set 769601000168107 Tinaderm Powder Spray 0.09% (900 microgram/g) pressurised spray 20160331 +933231721000036105 Imigran 20 mg/actuation nasal spray, 2 actuations, vial 900000000000526001 REPLACED BY association reference set 728191000168105 Imigran 20 mg/actuation nasal spray, 2 x 1 actuation, vials 20151130 +49439011000036102 Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688911000168101 Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll 20150331 +5413011000036102 Reandron oily solution 1 g/4 mL injection, 4 mL ampoule 900000000000526001 REPLACED BY association reference set 720551000168107 Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule 20151031 +71327011000036100 chlorhexidine gluconate 1% lotion, 500 mL 900000000000526001 REPLACED BY association reference set 766781000168103 chlorhexidine gluconate 1% + ethanol 70% lotion, 500 mL 20160331 +681131000168101 Cal-600 plus D tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 862151000168108 Cal-600 plus D film-coated tablet, 60 20161231 +74777011000036105 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825871000168109 H-B-Vax II preservative free 10 microgram/mL injection suspension, 10 x 1 mL syringes 20160930 +51417011000036103 tape plaster adhesive hypoallergenic 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 689081000168102 tape plaster adhesive hypoallergenic 5 cm x 5 m tape, 1 roll 20150331 +75034011000036108 hepatitis B vaccine 10 microgram/mL injection, syringe 900000000000526001 REPLACED BY association reference set 825621000168109 hepatitis B adult vaccine 10 microgram/mL injection, syringe 20160930 +921857011000036107 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831741000168108 Varivax Refrigerated (1 x 1350 PFU vaccine vial, 1 x 0.7 mL inert diluent syringe), 1 pack, composite pack 20160930 +86616011000036104 Emulsifying Ointment (David Craig) ointment 900000000000526001 REPLACED BY association reference set 770821000168102 Emulsifying Ointment BP (David Craig) ointment 20160331 +827931000168106 Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845931000168104 meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes 20161130 +931518011000036103 Granisetron (Kabi) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 747091000168105 Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules 20160131 +77574011000036109 iopromide 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695491000168108 iopromide 769 mg (iodine 370 mg)/mL injection, 20 mL vial 20150430 +77140011000036108 Fess 7.04 mg/mL nasal spray, 30 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 729631000168107 Fess 0.704% nasal spray, 30 mL, pump pack 20151130 +73945011000036109 Menjugate Syringe (meningococcal group C conjugate vaccine 10 microgram) powder for injection, 10 microgram vial 900000000000526001 REPLACED BY association reference set 826411000168106 Menjugate Syringe (meningococcal C conjugate vaccine) powder for injection, 10 microgram vial 20160930 +929637011000036109 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724371000168101 PKU Lophlex LQ 20 Citrus oral liquid solution, 30 x 125 mL pouches 20151031 +157051000036104 tenofovir + emtricitabine + elvitegravir + cobicistat 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 851371000168101 tenofovir disoproxil + emtricitabine + elvitegravir + cobicistat 20161130 +73917011000036105 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824661000168103 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +49433011000036100 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694371000168104 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll 20150331 +69623011000036108 Cepacol Antibacterial Orange Citrus lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 995231000168109 Cepacol Antibacterial Orange Citrus lozenge, 2, blister pack 20170831 +6139011000036108 Etopophos 100 mg injection: powder for, 100 mg vial 900000000000526001 REPLACED BY association reference set 793411000168107 Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 113.6 mg vial 20160531 +75085011000036102 Varicella zoster live attenuated vaccine 1995 PFU injection, vial 900000000000526001 REPLACED BY association reference set 830861000168107 varicella-zoster live vaccine 1995 PFU injection, vial 20160930 +932383011000036108 paracetamol 500 mg + codeine phosphate 15 mg tablet, 50 900000000000526001 REPLACED BY association reference set 835711000168107 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 50 20161031 +74953011000036108 human papillomavirus (type 16) vaccine + human papillomavirus (type 18) vaccine 900000000000526001 REPLACED BY association reference set 823121000168104 human papillomavirus bivalent vaccine 20160831 +50451011000036105 Aquacel (177904) 2 g (30 cm) rope, 5 x 2 g, carton 900000000000526001 REPLACED BY association reference set 745131000168104 Aquacel (177904) 2 cm x 45 cm ribbon, 5, carton 20160131 +84661011000036102 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 873101000168109 alanine 10.35 g/L + arginine 5.75 g/L + glucose 250 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags 20170131 +95811000036103 Ostelin Vitamin D and Calcium tablet: film-coated, 250, bottle 900000000000526001 REPLACED BY association reference set 862301000168107 Ostelin Vitamin D and Calcium film-coated tablet, 250, bottle 20161231 +77284011000036109 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872991000168109 Synthamin 17 Amino Acid 10% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +65589011000036102 Panadol Children's 7+ Years 250 mg tablet: soluble 900000000000526001 REPLACED BY association reference set 721541000168103 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet 20151031 +923376011000036100 Probitor Hp7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack 900000000000526001 REPLACED BY association reference set 715941000168100 Probitor Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Clarihexal tablets), 1 pack 20150930 +81128011000036107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 867841000168102 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 20170131 +83963011000036103 Wagner Magnesium Forte 400 capsules: hard, 200 900000000000526001 REPLACED BY association reference set 750261000168106 Magnesium Forte 400 (Wagner) hard capsule, 200 20160131 +44106011000036100 Zovirax 800 mg dispersible tablet, 5, bottle 900000000000526001 REPLACED BY association reference set 859481000168107 Zovirax Dispersible 800 mg tablet, 5, bottle 20161231 +252871000168107 PKU Cooler20 Orange oral liquid: solution, 174 mL can 900000000000526001 REPLACED BY association reference set 725781000168100 PKU Cooler 20 Orange oral liquid solution, 174 mL pouch 20151031 +688991000168105 measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine + Varicella zoster live attenuated vaccine 900000000000526001 REPLACED BY association reference set 831171000168102 measles + mumps + rubella + varicella-zoster live vaccine 20160930 +56685011000036105 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 20 mL 900000000000526001 REPLACED BY association reference set 721921000168104 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 20 mL 20151031 +74942011000036103 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 826471000168103 Menjugate Syringe (5 x 10 microgram vaccine vials, 5 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20160930 +922612011000036108 diatrizoate meglumine 79.2 g/120 mL + diatrizoate sodium 12 g/120 mL solution, 12 x 120 mL each 900000000000526001 REPLACED BY association reference set 696161000168102 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution, 12 x 120 mL 20150430 +42691000036105 MMA/PA Cooler 15 oral liquid: solution, 30 x 130 mL sachets 900000000000526001 REPLACED BY association reference set 725261000168104 MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches 20151031 +40086011000036109 Zovirax 400 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 859531000168105 Zovirax Dispersible 400 mg tablet 20161231 +684451000168101 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693461000168102 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 x 5 mL ampoules 20150331 +35581011000036107 Movicol-Half solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674131000168105 Movicol-Half powder for oral liquid, 30 sachets 20141031 +125351000036109 Anapen Auto-Injector 500 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726611000168105 Anapen Auto-Injector 500 microgram/0.3 mL injection solution, dose 20151031 +128631000036102 Laxacon solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674261000168108 Laxacon powder for oral liquid, 30 sachets 20141031 +84427011000036102 dibasic sodium phosphate heptahydrate 398 mg + monobasic sodium phosphate monohydrate 1.27 g tablet 900000000000526001 REPLACED BY association reference set 900231000168104 monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet 20170331 +76159011000036100 Ultravist-370 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection: solution, 75 mL vial 900000000000526001 REPLACED BY association reference set 695671000168105 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 75 mL bottle 20150430 +107091000036103 Moviprep Lemon powder for oral liquid, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 902161000168100 Moviprep B powder for oral liquid, sachet 20170331 +78200011000036106 iopromide 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 695611000168102 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 50 mL bottles 20150430 +73645011000036105 Japanese encephalitis inactivated vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 821661000168101 Japanese encephalitis virus (mouse brain-derived) inactivated antigen 20160831 +6737011000036106 Lomotil uncoated tablet 900000000000526001 REPLACED BY association reference set 851051000168108 Lomotil uncoated tablet 20161130 +71740011000036100 chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL 900000000000526001 REPLACED BY association reference set 71741011000036107 chlorhexidine gluconate 0.5% + ethanol 70% solution, 500 mL 20160331 +127311000036104 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 87 mL sachets 900000000000526001 REPLACED BY association reference set 725301000168107 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 87 mL pouches 20151031 +60808011000036101 Combantrin-1 with Mebendazole 100 mg chewable tablet, 6, blister pack 900000000000526001 REPLACED BY association reference set 844161000168109 Combantrin-1 with Mebendazole 100 mg tablet, 6, blister pack 20161031 +21895011000036109 diphenoxylate + atropine sulfate 900000000000526001 REPLACED BY association reference set 850991000168108 diphenoxylate + atropine sulfate monohydrate 20161130 +924422011000036108 First Aid (Guardian) cream 900000000000526001 REPLACED BY association reference set 861541000168107 First Aid (Guardian) cream 20161231 +833791000168104 Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 633441000168106 Genotropin Miniquick (inert substance) diluent, 0.25 mL syringe 20170731 +65604011000036106 Cepacol Antibacterial Honey and Lemon lozenge 900000000000526001 REPLACED BY association reference set 995041000168109 Cepacol Antibacterial Honey and Lemon lozenge 20170831 +711921000168109 Ropibam 1% 100 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005261000168109 Ropibam 1% 100 mg/10 mL injection solution, 10 mL ampoule 20170930 +74958011000036103 hepatitis A inactivated vaccine 900000000000526001 REPLACED BY association reference set 824641000168102 hepatitis A vaccine 20160930 +93471000036105 Ostelin Osteoguard tablet: film-coated 900000000000526001 REPLACED BY association reference set 932961000168105 Ostelin Osteoguard film-coated tablet 20170531 +60892011000036102 Disprin Original 300 mg dispersible tablet, 6, strip pack 900000000000526001 REPLACED BY association reference set 804341000168101 Disprin Original 300 mg tablet, 6, strip pack 20160630 +74997011000036106 rotavirus live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 822861000168108 rotavirus live vaccine 20160831 +4590011000036106 Dymadon Forte uncoated tablet 900000000000526001 REPLACED BY association reference set 835771000168104 Dymadon Forte uncoated tablet 20161031 +664261000168103 magnesium trisilicate 50 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 833591000168106 magnesium trisilicate 50 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 20160930 +69221000036106 carbomer 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 35410011000036107 carbomer-980 20150930 +26721000036102 typhoid fever polysaccharide vaccine 25 microgram + hepatitis A inactivated vaccine 160 ELISA units injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 827301000168103 hepatitis A + typhoid vaccine injection, 1 mL syringe 20160930 +60203011000036100 Daktarin 2% oral gel, 40 g, tube 900000000000526001 REPLACED BY association reference set 820111000168102 Daktarin 2% oral gel, 40 g, tube 20160731 +76154011000036101 Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 30 mL vial 900000000000526001 REPLACED BY association reference set 695551000168102 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 30 mL vial 20150430 +45342011000036107 methyl aminolevulinate hydrochloride 200 mg/g cream 900000000000526001 REPLACED BY association reference set 999281000168108 methyl aminolevulinate 160 mg/g cream 20170831 +73938011000036102 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845961000168107 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +761211000168108 Lomotil uncoated tablet, 2, blister pack 900000000000526001 REPLACED BY association reference set 851081000168101 Lomotil uncoated tablet, 2, blister pack 20161130 +2631000036101 olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, bag 900000000000526001 REPLACED BY association reference set 771681000168108 olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, bag 20160430 +70218011000036109 benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge 900000000000526001 REPLACED BY association reference set 995031000168100 benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge 20170831 +859061000168106 Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations, bottle 900000000000526001 REPLACED BY association reference set 1087261000168104 Nasonex Allergy 50 microgram/actuation nasal spray, 40 actuations, pump pack 20180331 +931866011000036100 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle 900000000000526001 REPLACED BY association reference set 872761000168100 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, bottle 20170131 +48468011000036102 Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688841000168106 Elastoplast Tape (1004) 10 cm x 2.5 m tape 20150331 +21807011000036101 pancreatic extract 900000000000526001 REPLACED BY association reference set 847131000168105 lipase + amylase + protease 20161130 +31972011000036103 sorbitol solution (70 per cent-non-crystallising) 900000000000526001 REPLACED BY association reference set 690581000168103 sorbitol solution 20150331 +86447011000036105 macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 25.1 mg (0.34 mmol potassium) + sodium bicarbonate 89.25 mg solution, 30 sachets 900000000000526001 REPLACED BY association reference set 674171000168108 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 25.1 mg powder for oral liquid, 30 sachets 20141031 +933247571000036107 Panamax Co uncoated tablet, 40, blister pack 900000000000526001 REPLACED BY association reference set 836061000168104 Panamax Co uncoated tablet, 40, blister pack 20161031 +55662011000036102 Anti Fungal V 6 Day (Amcal) 1% cream, 20 g 900000000000526001 REPLACED BY association reference set 714951000168104 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 20 g 20150930 +81042011000036100 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863991000168109 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 60 x 100 mL bags 20170131 +921005011000036106 Centrum Select 50 Plus tablet: film-coated 900000000000526001 REPLACED BY association reference set 843221000168105 Centrum Select 50 Plus film-coated tablet 20161031 +922059011000036100 ascorbic acid + biotin + calcium carbonate + cyanocobalamin + folic acid + magnesium + magnesium sulfate + nicotinamide + calcium pantothenate + pyridoxine + riboflavin + thiamine + zinc citrate trihydrate 900000000000526001 REPLACED BY association reference set 829681000168106 thiamine + riboflavin + nicotinamide + calcium pantothenate + pyridoxine + cyanocobalamin + ascorbic acid + biotin + folic acid + calcium + magnesium + zinc 20160930 +73674011000036107 cholera (Vibrio cholerae) O1 Inaba classic strain inactivated oral vaccine 900000000000526001 REPLACED BY association reference set 821811000168103 Vibrio cholerae O1 inactivated antigen 20160831 +41531000036101 glucose 75 g/300 mL oral liquid, bottle 900000000000526001 REPLACED BY association reference set 692421000168100 glucose 75 g/300 mL oral liquid 20150331 +5581011000036105 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041171000168100 Aranesp Sureclick 80 microgram/0.4 mL injection solution, 0.4 mL injection device 20171130 +702791000168103 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726131000168107 PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets 20151031 +73135011000036105 Creon 40 000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847341000168103 Creon 40 000 enteric capsule, 100 20161130 +74848011000036105 Co-Phenylcaine Forte nasal spray, 50 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 792101000168108 Co-Phenylcaine Forte nasal spray, 50 mL, pump pack 20160531 +920661011000036108 Ostelin Vitamin D and Calcium tablet: film-coated, 130, bottle 900000000000526001 REPLACED BY association reference set 862271000168105 Ostelin Vitamin D and Calcium film-coated tablet, 130, bottle 20161231 +11569011000036106 Actonel Combi (4 x 35 mg tablets, 24 x 500 mg tablets), 1 pack 900000000000526001 REPLACED BY association reference set 852651000168109 Actonel Combi (4 x Actonel Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28 20161130 +37366011000036100 Lanoxin 500 microgram/2 mL injection: solution, 5 x 2 mL ampoules 900000000000526001 REPLACED BY association reference set 735071000168103 Lanoxin Adult 500 microgram/2 mL injection solution, 5 x 2 mL ampoules 20151231 +860221000168108 Ostelin Osteoguard film-coated tablet, 90 900000000000526001 REPLACED BY association reference set 932981000168101 Ostelin Osteoguard film-coated tablet, 90 20170531 +728561000168106 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1006041000168106 Ropivacaine 0.75% (Actavis) 75 mg/10 mL injection solution, 10 mL ampoule 20170930 +63526011000036107 pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24 900000000000526001 REPLACED BY association reference set 996201000168106 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 20170831 +74945011000036106 Boostrix-IPV injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840741000168101 Boostrix-IPV injection suspension, 0.5 mL syringe 20161031 +930007011000036108 Regaine Men's Extra Strength Foam 5% foam 900000000000526001 REPLACED BY association reference set 710761000168106 Regaine Men's Extra Strength 5% foam 20150831 +13436011000036107 Clofeme Thrush Treatment 6 Day 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715131000168106 Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g 20150930 +73661000036109 Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses, ampoule 900000000000526001 REPLACED BY association reference set 719631000168101 Artelac 0.2% / 1% eye gel, 30 x 600 mg unit doses, ampoule 20150930 +81142011000036106 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 872661000168108 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags 20170131 +689411000168101 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection, 10 vials 900000000000526001 REPLACED BY association reference set 831261000168102 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection, 10 vials 20160930 +814981000168109 Entrip 10 mg tablet, 50, bottle 900000000000526001 REPLACED BY association reference set 856611000168107 Entrip 10 mg film-coated tablet, 50, bottle 20161231 +24671000036103 Albey Yellow Jacket Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 759081000168104 Yellow Jacket Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 20160229 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826051000168103 Streptococcus pneumoniae type 14 conjugate antigen 20160930 +73673011000036105 cholera (Vibrio cholerae) O1 Inaba El Tor strain inactivated oral vaccine 900000000000526001 REPLACED BY association reference set 821811000168103 Vibrio cholerae O1 inactivated antigen 20160831 +924210011000036101 omeprazole 20 mg capsule, 60 900000000000526001 REPLACED BY association reference set 716831000168107 omeprazole 20 mg enteric capsule, 60 20150930 +85700011000036108 Levetiracetam (Chemmart) 1 g tablet, 60 900000000000526001 REPLACED BY association reference set 1003281000168104 Levetiracetam 1000 (Chemmart) 1 g tablet, 60 20170930 +933225781000036106 Naropin 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004911000168100 Naropin 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +108851000036101 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g + ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid, 4 sachets 900000000000526001 REPLACED BY association reference set 902171000168106 macrogol-3350 100 g + sodium chloride 2.691 g + potassium chloride 1.015 g (potassium 14.2 mmol) + sodium sulfate 7.5 g powder for oral liquid [2 sachets] (&) ascorbic acid 4.7 g + sodium ascorbate 5.9 g powder for oral liquid [2 sachets], 4 sachets 20170331 +926994011000036103 lidocaine (lignocaine) hydrochloride 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream 900000000000526001 REPLACED BY association reference set 863441000168107 lidocaine (lignocaine) hydrochloride monohydrate 2% + cetrimide 0.5% + chlorhexidine acetate 0.15% + hexamidine isetionate 0.15% cream 20170131 +844851000168101 Zovirax 400 mg tablet, 70, blister pack 900000000000526001 REPLACED BY association reference set 859601000168102 Zovirax Dispersible 400 mg tablet, 70, blister pack 20161231 +78329011000036102 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 60 900000000000526001 REPLACED BY association reference set 861791000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc (as oxide) 7.5 mg tablet, 60 20161231 +22919011000036101 interferon alfa-2b 18 million units/1.2 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 722721000168106 interferon alfa-2b 18 million units/1.2 mL injection 20151031 +665591000168109 PKU Cooler20 Green oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725761000168109 PKU Cooler 20 Green oral liquid solution, 30 x 174 mL pouches 20151031 +933196641000036108 Recombinate 1000 IU (octocog alfa 1000 international units) injection: powder for, vial 900000000000526001 REPLACED BY association reference set 710931000168101 Recombinate (octocog alfa 1000 units) powder for injection, vial 20150831 +75113011000036106 hepatitis B vaccine 40 microgram/mL injection, vial 900000000000526001 REPLACED BY association reference set 825671000168105 hepatitis B dialysis vaccine injection, 1 mL vial 20160930 +923906011000036102 Omeprazole (Pharmacor) 20 mg capsule, 56, bottle 900000000000526001 REPLACED BY association reference set 717351000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 56, bottle 20150930 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826131000168105 Streptococcus pneumoniae type 7F conjugate antigen 20160930 +39625011000036104 Naropin 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 711391000168105 Naropin 1% 20150831 +35225011000036105 buprenorphine 2 mg tablet, 100 900000000000526001 REPLACED BY association reference set 685671000168109 buprenorphine 2 mg sublingual tablet, 100 20150228 +928847011000036103 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715821000168103 Clotrimazole Thrush Treatment 6 Day (Pharmacy Choice) 1% vaginal cream, 35 g, tube 20150930 +158941000036102 budesonide 2 mg/application enema, 2 x 1 application aerosol cans 900000000000526001 REPLACED BY association reference set 688061000168104 budesonide 2 mg/application enema, 2 x 14 applications 20150331 +933231591000036101 Naropin 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004521000168102 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +86609011000036106 Aqueous Cream (David Craig) cream 900000000000526001 REPLACED BY association reference set 768301000168106 Aqueous Cream APF (David Craig) cream 20160331 +56950011000036106 Clozole Vaginal Cream (Chemists' Own) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715551000168109 Clozole (Chemists' Own) 1% vaginal cream, 35 g 20150930 +75067011000036105 hepatitis A inactivated vaccine 25 units/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 824851000168104 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, syringe 20160930 +924138011000036105 omeprazole 20 mg capsule, 280 900000000000526001 REPLACED BY association reference set 716501000168102 omeprazole 20 mg enteric capsule, 280 20150930 +37418011000036108 Marcain Spinal Heavy injection: solution, 5 x 4 mL ampoules 900000000000526001 REPLACED BY association reference set 863601000168107 Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules 20170131 +22965011000036104 pancreatic extract 10 000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847431000168101 lipase 10 000 units + amylase 8000 units + protease 600 units enteric capsule 20161130 +251000168105 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 810261000168104 Actonel EC Combi D effervescent granules, 24 sachets 20160630 +22871000036105 paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 758901000168101 paper wasp venom 550 microgram injection [1 vial] (&) inert substance diluent [9 mL vial] (&) inert substance diluent [3 x 1.8 mL vials], 1 pack 20160229 +691581000168106 Reddycal 500 mg tablet: film-coated, 48, bottle 900000000000526001 REPLACED BY association reference set 848141000168102 Reddycal 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 20161130 +815191000168108 Entrip 50 mg tablet, 50 900000000000526001 REPLACED BY association reference set 856801000168105 Entrip 50 mg film-coated tablet, 50 20161231 +929473011000036101 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724261000168103 PKU Lophlex LQ 20 Orange oral liquid solution, 30 x 125 mL pouches 20151031 +933221001000036104 Fluoride Witchy Candy Mint (Laclede) foam 900000000000526001 REPLACED BY association reference set 932511000168103 Fluoride (Laclede) Witchy Candy Mint Flavour foam 20170531 +63721011000036103 benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 16 900000000000526001 REPLACED BY association reference set 995591000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 16 20170831 +653661000168106 Retinofluor 1.25 g/5 mL injection: solution, 10 x 5 mL vials 900000000000526001 REPLACED BY association reference set 721211000168104 Retinofluor 25% 1.25 g/5 mL injection solution, 10 x 5 mL vials 20151031 +933226191000036103 Fluoride Tyranna Grape (Laclede) foam, 165 mL 900000000000526001 REPLACED BY association reference set 932581000168109 Fluoride (Laclede) Tyranna Grape Flavour foam, 165 mL 20170531 +27989011000036101 omeprazole 20 mg capsule, 30 900000000000526001 REPLACED BY association reference set 716171000168103 omeprazole 20 mg enteric capsule, 30 20150930 +35226011000036103 buprenorphine 8 mg tablet, 100 900000000000526001 REPLACED BY association reference set 685701000168105 buprenorphine 8 mg sublingual tablet, 100 20150228 +87655011000036103 Narium 0.65% nasal spray, 30 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1085311000168102 Narium 0.65% nasal spray, 30 mL, pump pack 20180228 +75347011000036104 azelastine hydrochloride 140 microgram/actuation nasal spray, 20 mL 900000000000526001 REPLACED BY association reference set 809601000168109 azelastine hydrochloride 0.1% nasal spray, 20 mL 20160630 +71401000036108 Salofalk 1.5 g granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084281000168100 Salofalk 1.5 g modified release granules, 100 sachets 20180228 +693171000168103 diphtheria toxoid 2 Lf/0.5 mL + tetanus toxoid 2 Lf/0.5 mL injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837401000168109 diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 10 x 0.5 mL vials 20161031 +84077011000036108 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873031000168103 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 50% intravenous infusion injection, 1 L bag 20170131 +78107011000036105 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 1 L 900000000000526001 REPLACED BY association reference set 705981000168108 glycerol 10% + cetomacrogol aqueous cream, 1 L 20150731 +180151000036108 calcium (as carbonate) 500 mg tablet, 48 900000000000526001 REPLACED BY association reference set 847891000168100 calcium carbonate 1.25 g (calcium 500 mg) tablet, 48 20161130 +77171011000036100 Fess 7.04 mg / 1 mL nasal spray, 2 x 75 mL pump actuated aerosols 900000000000526001 REPLACED BY association reference set 730681000168104 Fess 0.704% nasal spray, 2 x 75 mL, pump packs 20151130 +73668011000036108 typhoid fever live attenuated oral vaccine 900000000000526001 REPLACED BY association reference set 826231000168100 Salmonella typhi live antigen 20160930 +922640011000036100 iopromide 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection, 10 x 20 mL vials 900000000000526001 REPLACED BY association reference set 695121000168103 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 20 mL vials 20150430 +81045011000036108 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863821000168104 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 40 x 250 mL bags 20170131 +687931000168105 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825031000168101 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +18958011000036109 Rynacrom Metered Dose 2% nasal spray, 26 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1082961000168109 Rynacrom Metered Dose 2% nasal spray, 26 mL, pump pack 20180228 +56686011000036103 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721571000168105 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL 20151031 +75478011000036107 Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 831891000168105 varicella-zoster live vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20160930 +181671000036100 Diprosone 0.05% lotion 900000000000526001 REPLACED BY association reference set 1054631000168109 Diprosone 0.05% lotion 20171231 +728731000168107 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005781000168108 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 20 mL ampoule 20170930 +924884011000036100 Pemzo 20 mg capsule, 30 900000000000526001 REPLACED BY association reference set 716711000168105 Pemzo 20 mg enteric capsule, 30 20150930 +37764011000036107 colistimethate 900000000000526001 REPLACED BY association reference set 817451000168104 colistin 20160731 +26421000036107 macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 1 sachet 900000000000526001 REPLACED BY association reference set 673991000168105 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 1 sachet 20141031 +74354011000036103 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 822301000168101 Stamaril (10 x 1000 units vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 20160831 +927555011000036101 meningococcal group A conjugate vaccine 900000000000526001 REPLACED BY association reference set 824461000168100 Neisseria meningitidis group A conjugate antigen 20160930 +776501000168107 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 996121000168106 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 2, blister pack 20170831 +695651000168101 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848591000168104 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 20161130 +61067011000036108 Canesten Clotrimazole Thrush Treatment Once 10% cream, 5 g, tube 900000000000526001 REPLACED BY association reference set 715611000168109 Canesten Clotrimazole Thrush Treatment Once 10% vaginal cream, 5 g, tube 20150930 +44518011000036105 Etopophos 500 mg injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 793531000168103 Etopophos 567.8 mg (etoposide 500 mg) powder for injection, 1 vial 20160531 +920129011000036102 Ostelin Vitamin D and Calcium tablet: film-coated 900000000000526001 REPLACED BY association reference set 862241000168103 Ostelin Vitamin D and Calcium film-coated tablet 20161231 +28631000036105 diclofenac sodium 1% gel, 150 g 900000000000526001 REPLACED BY association reference set 1037131000168105 diclofenac diethylamine 1.16% gel, 150 g 20171130 +689651000168103 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 831231000168105 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20160930 +138791000036106 Menitorix (10 x vaccine vials, 10 x inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 846081000168107 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 20161130 +11389011000036106 Fluoxebell 20 mg capsule, 28 900000000000526001 REPLACED BY association reference set 73114011000036101 Fluoxebell 20 mg hard capsule, 28 20160630 +19488011000036101 Anzemet 100 mg/5 mL injection: solution, 5 mL vial, ampoule 900000000000526001 REPLACED BY association reference set 703381000168106 Anzemet 100 mg/5 mL injection solution, 5 mL ampoule 20150630 +63201000036103 glycerophosphate calcium 88 mg/10 mL (equivalent to 16.72 mg of calcium) + glycerophosphate ferric 21.75 mg/10 mL (equivalent to 3.3 mg of elemental iron) + glycerophosphate manganese 2 mg/10 mL (equivalent to 488 microgram of manganese) + glycerophosphate potassium 10.61 mg/10 mL (equivalent to 2.74 mg of potassium) + glycerophosphate sodium 10.61 mg/10 mL (equivalent to 1.59 mg of sodium) + liver extract 38.67 mg/10 mL + thiamine hydrochloride 1.19 mg/10 mL oral liquid, 500 mL 900000000000526001 REPLACED BY association reference set 688161000168100 iron 3.3 mg/10 mL + calcium 16.72 mg/10 mL + potassium 2.74 mg (potassium 0.07 mmol)/10 mL + sodium 1.59 mg/10 mL + manganese 488 microgram/10 mL + thiamine hydrochloride 1.19 mg/10 mL + bovine liver 38.67 mg/10 mL oral liquid, 500 mL 20150331 +51401011000036109 tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694361000168105 tape plaster adhesive hypoallergenic 1.9 cm x 5.4 m dispenser tape, 1 roll 20150331 +20374011000036108 Subutex 2 mg tablet, 7, blister pack 900000000000526001 REPLACED BY association reference set 685611000168101 Subutex 2 mg sublingual tablet, 7, blister pack 20150228 +73866011000036103 H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe 900000000000526001 REPLACED BY association reference set 825631000168107 H-B-Vax II preservative free 10 microgram/mL injection suspension, syringe 20160930 +74796011000036104 Twinrix Junior injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824551000168101 Twinrix Junior injection suspension, 0.5 mL syringe 20160930 +80522011000036109 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags 900000000000526001 REPLACED BY association reference set 863951000168104 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 55 x 100 mL bags 20170131 +933214661000036100 Levetiracetam (GH) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003401000168108 Levetiracetam 1000 (GH) 1 g film-coated tablet, 60, blister pack 20170930 +67423011000036101 Aqium 66% gel, 1 L 900000000000526001 REPLACED BY association reference set 730551000168105 Aqium 66% gel, 1 L 20151130 +692181000168107 Calcium (Actavis) 500 mg tablet: film-coated, 48, bottle 900000000000526001 REPLACED BY association reference set 848391000168107 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 20161130 +836141000168104 calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 872291000168103 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag 20170131 +815031000168108 Entrip 10 mg tablet, 1000 900000000000526001 REPLACED BY association reference set 856641000168106 Entrip 10 mg film-coated tablet, 1000 20161231 +138921000036106 Granisetron (Sandoz) 3 mg/3 mL injection: concentrated, 3 mL vial 900000000000526001 REPLACED BY association reference set 746871000168100 Granisetron (Sandoz) 3 mg/3 mL injection solution, 3 mL vial 20160131 +696491000168102 meningococcal group B factor H binding protein fusion protein 900000000000526001 REPLACED BY association reference set 822411000168107 Neisseria meningitidis group B factor H binding protein fusion protein 20160831 +75375011000036105 hepatitis B vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825531000168108 hepatitis B child vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL vials 20160930 +98921000036109 Irbesartan (Apo) 75 mg tablet 900000000000526001 REPLACED BY association reference set 807741000168107 Irbesartan (Apo) 75 mg film-coated tablet 20160630 +728531000168103 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1006011000168107 Ropivacaine 0.75% (Actavis) 150 mg/20 mL injection solution, 20 mL ampoule 20170930 +74281011000036101 Twinrix injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824621000168108 Twinrix injection suspension, 1 mL syringe 20160930 +922144011000036106 picosulfate sodium monohydrate 10 mg + magnesium carbonate heavy 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet 900000000000526001 REPLACED BY association reference set 832611000168107 picosulfate sodium monohydrate 10 mg + magnesium carbonate hydrate 7.87 g + citric acid 11.81 g powder for oral liquid, 20 g sachet 20160930 +27243011000036107 albendazole 200 mg chewable tablet, 6 900000000000526001 REPLACED BY association reference set 844211000168101 albendazole 200 mg tablet, 6 20161031 +823921000168101 exenatide 2 mg modified release injection [4 cartridges] (&) inert substance diluent [4 cartridges], 1 pack 900000000000526001 REPLACED BY association reference set 833341000168106 exenatide 2 mg/dose + inert substance modified release injection, 4 dual chamber devices 20160930 +82403011000036107 Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 240, bottle 900000000000526001 REPLACED BY association reference set 860581000168105 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240, bottle 20161231 +665571000168108 PKU Cooler15 Green oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725621000168106 PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches 20151031 +823861000168104 Bydureon (exenatide 2 mg) modified release injection, 2 mg cartridge 900000000000526001 REPLACED BY association reference set 833271000168107 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose 20160930 +76551011000036109 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL 900000000000526001 REPLACED BY association reference set 705961000168104 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL 20150731 +172431000036101 Dronalen Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848581000168102 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack 20161130 +732661000168107 Granisetron (Apotex) 3 mg/3 mL injection: concentrated, 3 mL ampoule 900000000000526001 REPLACED BY association reference set 747011000168101 Granisetron (Apotex) 3 mg/3 mL injection solution, 3 mL ampoule 20160131 +75458011000036105 Haemophilus influenzae type b vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 828291000168100 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20160930 +48731000036101 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash 900000000000526001 REPLACED BY association reference set 933196661000036109 Savacol Antiseptic Mouth and Throat Rinse Fresh Mint 0.12% mouthwash 20160229 +74394011000036108 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824681000168107 Avaxim 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +933196251000036109 Valaciclovir (GA) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1009641000168105 Valaciclovir 1000 (GA) 1 g film-coated tablet 20170930 +74980011000036109 hepatitis A inactivated vaccine + hepatitis B vaccine 900000000000526001 REPLACED BY association reference set 824501000168100 hepatitis A + hepatitis B vaccine 20160930 +81701011000036100 calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 2.5% (37.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 868141000168108 glucose monohydrate 2.5% (37.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 1.5 L bag 20170131 +80411000036106 Eylea 2 mg/0.05 mL injection: solution, 0.05 mL vial 900000000000526001 REPLACED BY association reference set 703531000168100 Eylea 4 mg/0.1 mL injection solution, 0.1 mL vial 20150630 +682151000168104 Reandron 1 g/4 mL injection: solution, 4 mL vial 900000000000526001 REPLACED BY association reference set 722961000168103 Reandron-1000 1 g/4 mL modified release injection, 4 mL vial 20151031 +63171000036104 Hepasol oral liquid: solution, 200 mL 900000000000526001 REPLACED BY association reference set 688141000168104 Hepasol oral liquid solution, 200 mL 20150331 +77206011000036102 Sandocal 1000 tablets: effervescent, 10, tube 900000000000526001 REPLACED BY association reference set 745631000168106 Sandocal 1000 effervescent tablet, 10, tube 20160131 +11398011000036102 Puri-Nethol 50 mg uncoated tablet, 25 900000000000526001 REPLACED BY association reference set 845451000168100 Puri-Nethol 50 mg uncoated tablet, 25 20161130 +711151000168103 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006241000168102 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +137831000036104 Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1006191000168102 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 10 mL ampoule 20170930 +51403011000036105 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689311000168105 tape plaster adhesive hypoallergenic 1.25 cm x 5 m tape, 1 roll 20150331 +11720011000036109 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041041000168108 Aranesp Sureclick 20 microgram/0.5 mL injection solution, 0.5 mL injection device 20171130 +925168011000036106 Pemzo 20 mg capsule, 56, blister pack 900000000000526001 REPLACED BY association reference set 716941000168107 Pemzo 20 mg enteric capsule, 56, blister pack 20150930 +921014011000036109 Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 50 mL vial 900000000000526001 REPLACED BY association reference set 695161000168108 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 50 mL bottle 20150430 +167721000168109 MSUD Cooler 10 oral liquid: solution, 87 mL sachet 900000000000526001 REPLACED BY association reference set 725291000168106 MSUD Cooler 10 oral liquid solution, 87 mL pouch 20151031 +78305011000036108 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 100 900000000000526001 REPLACED BY association reference set 833161000168107 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 100 20160930 +70261011000036101 methylated spirit industrial 66% gel 900000000000526001 REPLACED BY association reference set 730431000168103 ethanol 66% gel 20151130 +87635011000036102 Levetiracetam (Generic Health) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003361000168104 Levetiracetam 1000 (Generic Health) 1 g film-coated tablet, 60, blister pack 20170930 +139271000036109 Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006081000168101 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +931512011000036101 Menveo injection: suspension, 1 pack, composite pack 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826801000168106 Menveo (1 x MenA vial, 1 x MenCWY vial), 1 pack, composite pack 20160930 +34864011000036101 codeine phosphate 50 mg/mL injection, ampoule 900000000000526001 REPLACED BY association reference set 835631000168105 codeine phosphate hemihydrate 50 mg/mL injection, ampoule 20161031 +923899011000036102 Omeprazole (Pharmacor) 20 mg capsule, 14, bottle 900000000000526001 REPLACED BY association reference set 717111000168108 Omeprazole (Pharmacor) 20 mg enteric capsule, 14, bottle 20150930 +85176011000036105 adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL cartridges 900000000000526001 REPLACED BY association reference set 729851000168100 adalimumab 40 mg/0.8 mL injection, 6 x 0.8 mL injection devices 20171130 +933216141000036102 Valtrex 1 g film-coated tablet, 4, bottle 900000000000526001 REPLACED BY association reference set 1009711000168104 Valtrex-1000 1 g film-coated tablet, 4, bottle 20170930 +922541011000036104 calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 900000000000526001 REPLACED BY association reference set 859881000168109 calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 60 20161231 +30601000036104 Typhim Vi 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827221000168101 Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 20160930 +7128011000036104 Novomix 30 Flexpen injection suspension, 3 mL syringe 900000000000526001 REPLACED BY association reference set 1007191000168104 Novomix 30 Flexpen injection suspension, 3 mL injection device 20170930 +55735011000036107 Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 100 mL 900000000000526001 REPLACED BY association reference set 721661000168103 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL 20151031 +82459011000036101 retinyl palmitate 0.054% ointment 900000000000526001 REPLACED BY association reference set 694971000168103 retinol palmitate 0.099% ointment 20150430 +77187011000036100 Flo Nozoil 1 mL/mL nasal spray, 15 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1085431000168101 Flo Nozoil 0.1% nasal spray, 15 mL, pump pack 20180228 +34804011000036102 Subutex 2 mg tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 685691000168105 Subutex 2 mg sublingual tablet, 100, bottle 20150228 +77541000036104 aciclovir 200 mg dispersible tablet, 25 900000000000526001 REPLACED BY association reference set 28317011000036105 aciclovir 200 mg tablet, 25 20161031 +53988011000036107 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 5 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 649641000168107 Panadol Children's 1 to 5 Years Colour Free Orange 120 mg/5 mL oral liquid suspension, 5 mL 20151031 +74922011000036100 Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1082941000168105 Rhinocort Hayfever 32 microgram/actuation nasal spray, 120 actuations, pump pack 20180228 +162561000036102 Moviprep Orange powder for oral liquid, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 902211000168108 Moviprep Orange A powder for oral liquid, sachet 20170331 +54197011000036106 Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution 900000000000526001 REPLACED BY association reference set 721261000168101 Difflam Anti-Inflammatory Throat 0.15% oral spray 20151031 +19509011000036101 Panzytrat 25 000 units enteric capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 847671000168100 Panzytrat 25 000 enteric capsule, 100, bottle 20161130 +51412011000036100 tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689261000168104 tape plaster adhesive elastic 7.5 cm x 2.5 m tape, 1 roll 20150331 +50927011000036103 tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689141000168106 tape plaster adhesive elastic 2.5 cm x 2.5 m tape 20150331 +930681011000036105 Regaine Men's Extra Strength Foam 5% foam, 63 mL 900000000000526001 REPLACED BY association reference set 710771000168100 Regaine Men's Extra Strength 5% foam, 63 mL 20150831 +13221011000036103 Creon 10 000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847461000168109 Creon 10 000 enteric capsule, 100 20161130 +69625011000036109 Aqium 66% gel, 375 mL, bottle 900000000000526001 REPLACED BY association reference set 730531000168104 Aqium 66% gel, 375 mL, bottle 20151130 +12545011000036102 Codalgin Forte uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835881000168105 Codalgin Forte uncoated tablet, 20 20161031 +35775011000036103 macrogol-3350 6.563 g + sodium chloride 175.4 mg + potassium chloride 23.3 mg (0.32 mmol potassium) + sodium bicarbonate 89.25 mg solution, 30 sachets 900000000000526001 REPLACED BY association reference set 674121000168107 macrogol-3350 6.563 g + sodium chloride 175.4 mg + sodium bicarbonate 89.25 mg + potassium chloride 23.3 mg powder for oral liquid, 30 sachets 20141031 +74966011000036105 Bacillus Calmette and Guerin live attenuated vaccine 900000000000526001 REPLACED BY association reference set 822541000168107 Mycobacterium bovis (BCG) live vaccine 20160831 +711891000168104 Ropibam 1% 200 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005291000168102 Ropibam 1% 200 mg/20 mL injection solution, 20 mL ampoule 20170930 +921989011000036104 Picolax powder for oral liquid, 2 x 20 g sachets 900000000000526001 REPLACED BY association reference set 832651000168108 Picolax powder for oral liquid, 2 x 20 g sachets 20160930 +12848011000036107 Etopophos 100 mg injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 793431000168102 Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial 20160531 +74839011000036103 Drixine Adult 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083681000168101 Drixine Adult 0.05% nasal spray, 15 mL, pump pack 20180228 +922046011000036107 potassium citrate monohydrate 900000000000526001 REPLACED BY association reference set 950711000168107 potassium citrate 20170630 +931708011000036102 Elevit with Iodine tablet: film-coated, 100, blister pack 900000000000526001 REPLACED BY association reference set 843311000168106 Elevit with Iodine film-coated tablet, 100, blister pack 20161031 +18044011000036105 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041331000168101 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device 20171130 +74244011000036106 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825231000168105 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe 20160930 +14078011000036103 Prodeine Forte uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835811000168104 Prodeine Forte uncoated tablet, 20 20161031 +708521000168105 Otocomb Otic ear drops: solution, 7.5 mL, bottle 900000000000526001 REPLACED BY association reference set 758411000168106 Otocomb Otic ear drops solution, 7.5 mL, bottle 20160229 +30521000036108 Lophlex HCU LQ 20 oral liquid: solution, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725161000168105 HCU Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 20151031 +928266011000036103 Oxynorm 50 mg/mL intravenous infusion injection, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 1055141000168107 Oxynorm 50 mg/mL injection solution, 5 x 1 mL ampoules 20171231 +18455011000036100 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715391000168107 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream, 35 g, tube 20150930 +134291000036107 Japanese encephalitis virus live vaccine injection, vial 900000000000526001 REPLACED BY association reference set 821501000168103 Japanese encephalitis live vaccine injection, vial 20160831 +53955011000036105 Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 5 mL 900000000000526001 REPLACED BY association reference set 721731000168103 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 5 mL 20151031 +662411000168109 Metformin Hydrochloride (AN) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 949391000168105 Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet 20170630 +19947011000036109 Botox 100 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 720881000168102 Botox 100 units powder for injection, 1 vial 20151031 +12970011000036100 Lovan 20 mg dispersible tablet, 28 900000000000526001 REPLACED BY association reference set 844361000168107 Lovan 20 mg tablet, 28 20161031 +80527011000036106 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863781000168109 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 20170131 +143951000036107 dimethyl fumarate 240 mg capsule: modified release 900000000000526001 REPLACED BY association reference set 756351000168102 dimethyl fumarate 240 mg enteric capsule 20160229 +41939011000036105 Rhinocort Aqueous 64 microgram/actuation nasal spray, 240 actuations 900000000000526001 REPLACED BY association reference set 730091000168105 Rhinocort Aqueous 64 microgram/actuation nasal spray, 2 x 120 actuations 20151130 +34375011000036108 Subutex 400 microgram tablet, 28 900000000000526001 REPLACED BY association reference set 685851000168104 Subutex 400 microgram sublingual tablet, 28 20150228 +69378011000036107 Microshield Handrub solution, 500 mL, bottle 900000000000526001 REPLACED BY association reference set 767651000168103 Microshield Handrub solution, 500 mL, bottle 20160331 +931718011000036104 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872911000168100 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +924206011000036101 omeprazole 20 mg capsule, 5 900000000000526001 REPLACED BY association reference set 716611000168103 omeprazole 20 mg enteric capsule, 5 20150930 +80175011000036107 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 900000000000526001 REPLACED BY association reference set 863841000168105 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 20170131 +51260011000036102 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 724021000168100 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 130 mL pouches 20151031 +74196011000036105 Q-Vax 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 821591000168109 Q-Vax 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160831 +74335011000036103 Co-Phenylcaine Forte nasal spray, 50 mL 900000000000526001 REPLACED BY association reference set 792091000168103 Co-Phenylcaine Forte nasal spray, 50 mL 20160531 +77395011000036100 Centrum tablet: film-coated, 8, bottle 900000000000526001 REPLACED BY association reference set 833061000168108 Centrum film-coated tablet, 8, bottle 20160930 +663771000168104 light kaolin 200 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 833491000168107 light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid 20160930 +761881000168101 lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 2.5 mL 900000000000526001 REPLACED BY association reference set 791931000168108 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 2.5 mL 20160531 +6095011000036107 Otocomb Otic ear drops: solution 900000000000526001 REPLACED BY association reference set 758391000168106 Otocomb Otic ear drops solution 20160229 +50924011000036109 tape plaster adhesive elastic 10 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688831000168102 tape plaster adhesive elastic 10 cm x 2.5 m tape 20150331 +828321000168108 Haemophilus influenzae type b conjugate (PRP-TT) antigen + Neisseria meningitidis group C polysaccharide antigen 900000000000526001 REPLACED BY association reference set 846041000168102 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine 20161130 +74779011000036103 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831851000168100 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent syringes), 1 pack, composite pack 20160930 +929478011000036106 PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724451000168104 PKU Lophlex LQ 10 Berry oral liquid solution, 60 x 62.5 mL pouches 20151031 +726891000168102 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, dose 900000000000526001 REPLACED BY association reference set 881191000168108 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, dose 20170228 +82454011000036102 potassium nitrate 25% + silver nitrate 75% stick 900000000000526001 REPLACED BY association reference set 722881000168101 silver nitrate 75% + potassium nitrate 25% stick 20151031 +52058011000036101 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream, 100 g 900000000000526001 REPLACED BY association reference set 695841000168102 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g 20150430 +145291000036107 dimethyl fumarate 120 mg capsule: modified release, 112 900000000000526001 REPLACED BY association reference set 756271000168103 dimethyl fumarate 120 mg enteric capsule, 112 20160229 +933226041000036108 ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004801000168108 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 400 microgram/200 mL injection, 5 x 200 mL bags 20170930 +631021000168106 Lucrin Depot (inert substance) diluent, 2 mL syringe 900000000000526001 REPLACED BY association reference set 707281000168107 Lucrin Depot (inert substance) diluent, 1.5 mL syringe 20150731 +933223201000036107 MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724031000168102 MSUD Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 20151031 +86125011000036104 Levetiracetam (Chemmart) 1 g tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003291000168101 Levetiracetam 1000 (Chemmart) 1 g tablet, 60, blister pack 20170930 +86916011000036100 sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% nasal drops, 1.8 g sachet 900000000000526001 REPLACED BY association reference set 758671000168100 sodium bicarbonate 0.015% + calcium lactate pentahydrate 0.032% + glucose 0.085% + potassium chloride 0.042% + sodium chloride 0.772% solution, 1.8 g sachet 20160229 +73631011000036107 hepatitis A inactivated vaccine 900000000000526001 REPLACED BY association reference set 824441000168104 hepatitis A virus antigen 20160930 +98881000036102 liraglutide 18 mg/3 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 748021000168109 liraglutide 6 mg/mL injection, 3 mL injection device 20160131 +71197011000036102 cetylpyridinium chloride monohydrate 0.05% mouthwash, 500 mL 900000000000526001 REPLACED BY association reference set 995001000168107 cetylpyridinium chloride 0.05% mouthwash, 500 mL 20170831 +35135011000036105 morphine hydrochloride 2 mg/mL oral liquid, 500 mL 900000000000526001 REPLACED BY association reference set 872731000168108 morphine hydrochloride 2 mg/mL oral liquid, 500 mL 20170131 +706271000168107 measles virus (Enders' attenuated Edmonston) live vaccine 900000000000526001 REPLACED BY association reference set 829861000168101 measles virus live antigen 20160930 +76116011000036102 Ultravist-370 38.443 g/50 mL (equivalent to 18.5 g/50 mL iodine) injection: solution, 50 mL vial 900000000000526001 REPLACED BY association reference set 695601000168100 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 50 mL bottle 20150430 +50399011000036109 Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 688921000168108 Hypafix (71443-0) 2.5 cm x 10 m tape, 1 roll, carton 20150331 +81709011000036101 calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 6 x 2 L bags 900000000000526001 REPLACED BY association reference set 868251000168103 glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 6 x 2 L bags 20170131 +815051000168102 Entrip 25 mg tablet 900000000000526001 REPLACED BY association reference set 856661000168105 Entrip 25 mg film-coated tablet 20161231 +921886011000036104 Ultravist-300 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 695191000168101 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 50 mL bottles 20150430 +74865011000036107 Vaqta Adult 50 units/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825181000168104 Vaqta Adult 50 units/mL injection suspension, 1 mL syringe 20160930 +57062011000036107 Difflam Lozenge orange sugar free lozenge, 16 900000000000526001 REPLACED BY association reference set 995801000168103 Difflam Lozenge Orange Sugar Free lozenge, 16 20170831 +860191000168102 boric acid 8.6 mg (boron 1.5 mg) + calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet 900000000000526001 REPLACED BY association reference set 932951000168108 colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet 20170531 +844531000168109 Zovirax 800 mg tablet, 5, bottle 900000000000526001 REPLACED BY association reference set 859481000168107 Zovirax Dispersible 800 mg tablet, 5, bottle 20161231 +689691000168108 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831331000168103 Priorix-Tetra (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 20160930 +653591000168103 Retinofluor 500 mg/5 mL injection: solution, 5 mL vial 900000000000526001 REPLACED BY association reference set 721161000168107 Retinofluor 10% 500 mg/5 mL injection solution, 5 mL vial 20151031 +728631000168104 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005831000168100 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +235711000168101 Prozero oral liquid: solution, 1 L bottle 900000000000526001 REPLACED BY association reference set 745381000168101 Prozero oral liquid solution, 1 L carton 20160131 +37410011000036106 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850621000168102 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules 20161130 +50230011000036100 TYR Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725931000168104 TYR Cooler 15 oral liquid solution, 30 x 130 mL pouches 20151031 +52169011000036109 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream (extemporaneous) cream, 100 g, screw cap jar 900000000000526001 REPLACED BY association reference set 695851000168100 Salicylic Acid 2% and Sulfur 2% in Aqueous Cream APF (extemporaneous) cream, 100 g, screw cap jar 20150430 +74352011000036107 Vaqta Adult 50 units/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825171000168102 Vaqta Adult 50 units/mL injection suspension, 1 mL syringe 20160930 +925143011000036107 Omepro 20 mg capsule, 56, blister pack 900000000000526001 REPLACED BY association reference set 716771000168102 Omepro 20 mg enteric capsule, 56, blister pack 20150930 +74709011000036105 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825581000168109 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials 20160930 +84800011000036103 Strepsils lozenge 900000000000526001 REPLACED BY association reference set 720291000168100 Strepsils Cool lozenge 20151031 +921563011000036108 Recombinate 250 IU (1 x 250 international units vial, 1 x 10 mL diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 710881000168106 Recombinate (1 x 250 units vial, 1 x 10 mL inert diluent vial), 1 pack 20150831 +8531000036104 Dysport 300 units injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 721111000168109 Dysport 300 units powder for injection, 1 vial 20151031 +702771000168104 PKU Anamix Junior oral liquid: powder for, 36 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726181000168108 PKU Anamix Junior Neutral powder for oral liquid, 36 g sachet 20151031 +74943011000036105 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert powder for oral liquid sachet), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 821931000168104 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack, composite pack 20160831 +75011011000036101 azelastine hydrochloride 140 microgram/actuation nasal spray, actuation 900000000000526001 REPLACED BY association reference set 809521000168104 azelastine hydrochloride 0.1% nasal spray 20160630 +844481000168106 Zovirax 800 mg tablet 900000000000526001 REPLACED BY association reference set 859211000168102 Zovirax Dispersible 800 mg tablet 20161231 +60496011000036107 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 900000000000526001 REPLACED BY association reference set 967681000168101 Cold and Flu Day and Night Relief (Blooms The Chemist) (16 x Day tablets, 8 x Night tablets), 24, blister pack 20170731 +46231000036105 Remeron 45 mg tablet: orally disintegrating, 30, blister pack 900000000000526001 REPLACED BY association reference set 783891000168102 Remeron Soltab 45 mg orally disintegrating tablet, 30, blister pack 20160531 +49450011000036109 Aquacel (177904) 2 g (30 cm) rope, 5 x 2 g 900000000000526001 REPLACED BY association reference set 745121000168102 Aquacel (177904) 2 cm x 45 cm ribbon, 5 20160131 +922897011000036101 smallpox live vaccine 900000000000526001 REPLACED BY association reference set 821261000168104 vaccinia virus live antigen 20160831 +933244171000036106 Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 728111000168101 Ovidrel 250 microgram/0.5 mL injection solution, 1 dose 20151031 +75039011000036109 diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 20161031 +663131000168103 magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 900000000000526001 REPLACED BY association reference set 833561000168104 magnesium trisilicate 50 mg/mL + belladonna tincture 0.05 mL/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 20160930 +27341011000036102 dolasetron mesylate 100 mg/5 mL injection, 5 mL vial 900000000000526001 REPLACED BY association reference set 703361000168102 dolasetron mesilate monohydrate 100 mg/5 mL injection, 5 mL ampoule 20150630 +43901000168108 Recombinate 250 IU 900000000000526001 REPLACED BY association reference set 710851000168104 Recombinate 20150831 +7418011000036106 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041351000168107 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device 20171130 +933225761000036101 Naropin 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005011000168100 Naropin 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +828411000168105 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 846091000168105 Menitorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20161130 +76141011000036102 X-Evess 250 mg/mL oral liquid: solution 900000000000526001 REPLACED BY association reference set 702311000168106 X-Evess Part-1 250 mg/mL oral liquid solution 20150531 +80524011000036100 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 900000000000526001 REPLACED BY association reference set 863721000168105 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 20170131 +91541000036103 Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 861871000168102 Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet, 60, bottle 20161231 +827941000168102 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845991000168100 NeisVac-C 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20161130 +933221271000036104 ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, bag 900000000000526001 REPLACED BY association reference set 1004731000168108 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 400 microgram/100 mL injection, bag 20170930 +22211011000036104 aspirin 300 mg + codeine phosphate 8 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 834221000168109 aspirin 300 mg + codeine phosphate hemihydrate 8 mg dispersible tablet 20161031 +925166011000036107 Pemzo 20 mg capsule, 90, blister pack 900000000000526001 REPLACED BY association reference set 717671000168108 Pemzo 20 mg enteric capsule, 90, blister pack 20150930 +87016011000036108 calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet, 120 900000000000526001 REPLACED BY association reference set 860091000168103 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 5 microgram (200 units) chewable tablet, 120 20161231 +70301000036106 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet 900000000000526001 REPLACED BY association reference set 862011000168108 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet 20161231 +933237281000036108 Omeprazole (Sandoz) 20 mg capsule, 30 900000000000526001 REPLACED BY association reference set 716181000168100 Omeprazole (Sandoz) 20 mg enteric capsule, 30 20150930 +74406011000036109 Boostrix injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837661000168107 Boostrix injection suspension, 0.5 mL syringe 20161031 +686811000168108 interferon beta-1a 125 microgram/0.5 mL injection, injection device 900000000000526001 REPLACED BY association reference set 698621000168100 peginterferon beta-1a 125 microgram/0.5 mL injection, injection device 20150430 +243341000168103 PKU Anamix Junior LQ oral liquid: solution, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724321000168102 PKU Anamix Junior LQ Orange oral liquid solution, 125 mL bottle 20151031 +84872011000036107 Mepitac (298300) 2 cm x 3 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694271000168107 Mepitac (298300) 2 cm x 3 m tape, 1 roll 20150331 +711571000168103 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005601000168106 Ropivacaine (Sandoz) 200 mg/20 mL injection solution, 20 mL ampoule 20170930 +932723011000036101 Rivotril Drops 2.5 mg/mL oral liquid: solution, drop 900000000000526001 REPLACED BY association reference set 729101000168107 Rivotril 2.5 mg/mL (0.1 mg/drop) oral liquid solution 20151130 +924881011000036103 Pemzo 20 mg capsule, 14 900000000000526001 REPLACED BY association reference set 716281000168107 Pemzo 20 mg enteric capsule, 14 20150930 +931520011000036107 Regaine Men's Extra Strength Foam 5% foam, 63 mL, aerosol can 900000000000526001 REPLACED BY association reference set 710781000168102 Regaine Men's Extra Strength 5% foam, 63 mL, aerosol can 20150831 +96251000036107 calcium (as carbonate) 600 mg + colecalciferol 12.5 microgram (500 units) chewable tablet, 60 900000000000526001 REPLACED BY association reference set 861901000168102 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) chewable tablet, 60 20161231 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826071000168107 Streptococcus pneumoniae type 6B conjugate antigen 20160930 +734131000168104 Centavite Adult tablet: film-coated, 30, bottle 900000000000526001 REPLACED BY association reference set 842941000168102 Centavite Adult film-coated tablet, 30, bottle 20161031 +933220911000036108 ropivacaine hydrochloride monohydrate 40 mg/20 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 1004581000168103 ropivacaine hydrochloride 40 mg/20 mL injection, ampoule 20170930 +146211000036106 Tecfidera 240 mg capsule: modified release, 56, blister pack 900000000000526001 REPLACED BY association reference set 756391000168107 Tecfidera 240 mg enteric capsule, 56, blister pack 20160229 +80656011000036101 Gastrolyte Blackcurrant effervescent tablet, 20 900000000000526001 REPLACED BY association reference set 871691000168109 Gastrolyte Blackcurrant effervescent tablet, 20 20170131 +22238011000036104 aluminium hydroxide dried 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg tablet 900000000000526001 REPLACED BY association reference set 684421000168109 aluminium hydroxide 400 mg + magnesium hydroxide 400 mg + simethicone 30 mg chewable tablet 20150131 +82191011000036105 Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 120 900000000000526001 REPLACED BY association reference set 860461000168102 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 120 20161231 +700311000168105 ADT Vaccine injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837291000168102 ADT Vaccine injection suspension, 0.5 mL syringe 20161031 +49448011000036109 Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 694121000168102 Leukosilk (1024) 5 cm x 5 m tape, 1 roll 20150331 +34380011000036105 Subutex 8 mg tablet, 100 900000000000526001 REPLACED BY association reference set 685711000168108 Subutex 8 mg sublingual tablet, 100 20150228 +1021101000168108 mesalazine 500 mg granules, 50 sachets 900000000000526001 REPLACED BY association reference set 1084041000168101 mesalazine 500 mg modified release granules, 50 sachets 20180228 +74430011000036104 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert powder for oral liquid sachet), 1 pack 900000000000526001 REPLACED BY association reference set 821921000168102 Dukoral (1 x 3 mL vaccine vial, 1 x 5.6 g inert effervescent granules sachet), 1 pack 20160831 +14651000036103 Clinoleic 20% injection: emulsion, 12 x 350 mL bags 900000000000526001 REPLACED BY association reference set 779181000168100 Clinoleic 20% injection emulsion, 12 x 350 mL bags 20160430 +86172011000036108 Fleet Phospho-Soda oral liquid solution, 45 mL, bottle 900000000000526001 REPLACED BY association reference set 1097821000168109 Fleet Phospho-Soda oral liquid solution, 45 mL, bottle 20180331 +5044011000036103 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041121000168101 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device 20171130 +74205011000036103 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 826371000168105 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack 20160930 +69476011000036103 Panadol Children's 7+ Years 250 mg tablet: soluble, 24, strip pack 900000000000526001 REPLACED BY association reference set 721621000168108 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24, strip pack 20151031 +718871000168106 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection [10 syringes] (&) Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection [10 vials], 1 pack 900000000000526001 REPLACED BY association reference set 840991000168106 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [10 x 0.5 mL syringes] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [10 vials], 1 pack 20161031 +67131011000036101 Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 200 mL 900000000000526001 REPLACED BY association reference set 688481000168103 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL 20150331 +76193011000036109 Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated 900000000000526001 REPLACED BY association reference set 861941000168100 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet 20161231 +156131000036109 Macrogol plus Electrolytes (Apo) solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674081000168105 Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets 20141031 +77168011000036101 Sorbolene Cream with Glycerin (Orion) cream, 500 g, pump pack 900000000000526001 REPLACED BY association reference set 705821000168101 Sorbolene Cream with Glycerin (Orion) cream, 500 g, pump pack 20150731 +703621000168104 Nimenrix (meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram) powder for injection, vial 900000000000526001 REPLACED BY association reference set 826921000168105 Nimenrix (meningococcal A + meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine) powder for injection, vial 20160930 +69332011000036106 Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 25 mL, bottle 900000000000526001 REPLACED BY association reference set 688451000168105 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL, bottle 20150331 +930088011000036105 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872771000168106 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +85372011000036103 Bonecal 500 mg tablet: film-coated 900000000000526001 REPLACED BY association reference set 848461000168105 Bonecal 1.25 g (calcium 500 mg) film-coated tablet 20161130 +28061011000036102 omeprazole 20 mg capsule [14 capsules] (&) clarithromycin 500 mg tablet [14] (&) amoxycillin 500 mg capsule [28 capsules], 1 pack 900000000000526001 REPLACED BY association reference set 715931000168109 omeprazole 20 mg enteric capsule [14] (&) amoxicillin 500 mg capsule [28] (&) clarithromycin 500 mg tablet [14], 1 pack 20150930 +933234591000036103 Omeprazole (Apo) 20 mg capsule 900000000000526001 REPLACED BY association reference set 717531000168106 Omeprazole (Apo) 20 mg enteric capsule 20150930 +933231521000036104 Naropin 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004671000168102 Naropin 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +80223011000036109 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 872521000168102 Plasma-Lyte 148 Replacement intravenous infusion injection, 500 mL bag 20170131 +84659011000036108 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 873131000168102 alanine 10.35 g/L + arginine 5.75 g/L + glucose 125 g/L + glycine 5.65 g/L + histidine 2.4 g/L + isoleucine 3 g/L + leucine 3.65 g/L + lysine hydrochloride 2.9 g/L + magnesium chloride hexahydrate 510 mg/L + methionine 2 g/L + phenylalanine 2.8 g/L + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/L + proline 3.4 g/L + serine 2.5 g/L + sodium acetate trihydrate 3.4 g/L + sodium chloride 585 mg/L + threonine 2.1 g/L + tryptophan 900 mg/L + tyrosine 200 mg/L + valine 2.9 g/L injection, 12 x 1 L bags 20170131 +823881000168108 Bydureon (inert substance) diluent, cartridge 900000000000526001 REPLACED BY association reference set 833271000168107 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, dose 20160930 +86247011000036109 calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L solution, bag 900000000000526001 REPLACED BY association reference set 872291000168103 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, bag 20170131 +51901000036104 chlorhexidine gluconate 0.12% mouthwash, 300 mL 900000000000526001 REPLACED BY association reference set 751241000168104 chlorhexidine gluconate 0.12% mouthwash, 300 mL 20160229 +13016011000036108 Dapa-Tabs 2.5 mg tablet, 90 900000000000526001 REPLACED BY association reference set 935681000168103 Dapa-Tabs 2.5 mg film-coated tablet, 90 20170531 +45111000036101 MMA/PA Cooler 15 oral liquid: solution, 30 x 130 mL sachets 900000000000526001 REPLACED BY association reference set 725271000168105 MMA/PA Cooler 15 oral liquid solution, 30 x 130 mL pouches 20151031 +900851000168109 PKU Sphere powder for oral liquid, 30 x 35 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 922551000168100 PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets 20170430 +61161000036106 Rehydration Formula Effervescent (Guardian) effervescent tablet 900000000000526001 REPLACED BY association reference set 871751000168108 Rehydration Formula Effervescent (Guardian) effervescent tablet 20170131 +34010011000036106 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid: solution 900000000000526001 REPLACED BY association reference set 835601000168103 Codeine Phosphate Linctus (Ramprie Labs) 5 mg/mL oral liquid solution 20161031 +76749011000036109 Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 10 x 100 mL vials 900000000000526001 REPLACED BY association reference set 695741000168108 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 100 mL bottles 20150430 +639811000168108 Recombinate 1000 IU (inert substance) diluent, 10 mL vial 900000000000526001 REPLACED BY association reference set 710871000168108 Recombinate (inert substance) diluent, 10 mL vial 20150831 +74847011000036109 Co-Phenylcaine Forte nasal spray, 25 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 792071000168104 Co-Phenylcaine Forte nasal spray, 25 mL, pump pack 20160531 +73932011000036100 Menomune-A/C/Y/W-135 (meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram) powder for injection, vial 900000000000526001 REPLACED BY association reference set 827741000168100 Menomune-A/C/Y/W-135 (meningococcal quadrivalent polysaccharide vaccine) powder for injection, vial 20160930 +76550011000036102 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L 900000000000526001 REPLACED BY association reference set 705991000168106 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 1 L 20150731 +73658011000036102 pneumococcal 7 valent conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826051000168103 Streptococcus pneumoniae type 14 conjugate antigen 20160930 +941591000168103 Metformin (AS) 1 g film-coated tablet, 10 900000000000526001 REPLACED BY association reference set 949481000168104 Metformin 1000 (AS) 1 g film-coated tablet, 10 20170630 +27362011000036100 triamcinolone acetonide 0.1% + neomycin sulfate 0.25% + gramicidin 0.025% + nystatin 100 000 international units/mL ear drops, 7.5 mL 900000000000526001 REPLACED BY association reference set 758331000168107 triamcinolone acetonide 0.09% + neomycin 0.225% + gramicidin 0.0225% + nystatin 90 000 units/mL ear drops, 7.5 mL 20160229 +18172011000036106 ADT Vaccine injection: suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837301000168101 ADT Vaccine injection suspension, 0.5 mL syringe 20161031 +74227011000036102 Prevenar 16 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827531000168100 Prevenar injection suspension, 0.5 mL syringe 20160930 +925340011000036106 Omepro 20 mg capsule, 56, bottle 900000000000526001 REPLACED BY association reference set 716801000168100 Omepro 20 mg enteric capsule, 56, bottle 20150930 +95791000036104 Ostelin Osteoguard tablet: film-coated, 90, blister pack 900000000000526001 REPLACED BY association reference set 932991000168103 Ostelin Osteoguard film-coated tablet, 90, blister pack 20170531 +74872011000036106 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 828281000168103 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 20160930 +29241000036107 typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827151000168102 typhoid inactivated vaccine injection, 0.5 mL syringe 20160930 +75379011000036107 hepatitis B vaccine 20 microgram/mL injection, 25 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825251000168104 hepatitis B adult vaccine 20 microgram/mL injection, 25 x 1 mL syringes 20160930 +921577011000036105 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 831761000168107 Varivax Refrigerated (10 x 1350 PFU vaccine vials, 10 x 0.7 mL inert diluent vials), 1 pack 20160930 +711971000168105 Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005211000168106 Ropibam 0.75% 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +70141000036107 salicylic acid 2% conditioner 900000000000526001 REPLACED BY association reference set 648371000168104 salicylic acid 2% conditioner 20160331 +86184011000036108 Extraneal 7.5% dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872331000168109 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 20170131 +19821000036106 Albey Venom Albumin Saline 900000000000526001 REPLACED BY association reference set 754701000168106 Albumin Saline (Stallergenes) 20160229 +930006011000036105 Granisetron (Kabi) 1 mg/mL injection: concentrated, ampoule 900000000000526001 REPLACED BY association reference set 747071000168109 Granisetron (Kabi) 1 mg/mL injection solution, ampoule 20160131 +33073011000036108 Albey Yellow Jacket Venom (vespula spp venom 550 microgram) injection: powder for, 550 microgram vial 900000000000526001 REPLACED BY association reference set 759051000168106 Yellow Jacket Venom (Albey) (yellow jacket venom 550 microgram) powder for injection, 550 microgram vial 20160229 +702771000168104 PKU Anamix Junior oral liquid: powder for, 36 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726091000168105 PKU Anamix Junior Orange powder for oral liquid, 36 g sachet 20151031 +806241000168103 Repatha 140 mg/mL injection: solution, 2 x 1 mL injection devices 900000000000526001 REPLACED BY association reference set 846421000168101 Repatha Sureclick 140 mg/mL injection solution, 2 x 1 mL injection devices 20161130 +924705011000036103 Pemzo 20 mg capsule, 140 900000000000526001 REPLACED BY association reference set 716321000168102 Pemzo 20 mg enteric capsule, 140 20150930 +14561000036104 Zactin 20 mg dispersible tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 844401000168103 Zactin 20 mg tablet, 28, blister pack 20161031 +56687011000036100 Difflam Mouth oral gel, 10 g 900000000000526001 REPLACED BY association reference set 995961000168109 Difflam Mouth oral gel, 10 g 20170831 +69823011000036103 magnesium chloride 900000000000526001 REPLACED BY association reference set 878861000168107 magnesium 20170228 +57202011000036104 Clozole Vaginal Cream (Meditab) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 715851000168106 Clozole (Meditab) 2% vaginal cream, 20 g 20150930 +836151000168102 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872301000168102 Extraneal 7.5% peritoneal dialysis solution, 2.5 L bag 20170131 +46724011000036103 budesonide 64 microgram/actuation nasal spray, 240 actuations 900000000000526001 REPLACED BY association reference set 730081000168107 budesonide 64 microgram/actuation nasal spray, 2 x 120 actuations 20151130 +712021000168104 Ropibam 0.75% 75 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005231000168101 Ropibam 0.75% 75 mg/10 mL injection solution, 10 mL ampoule 20170930 +921397011000036103 Berocca Performance Original effervescent tablet, 45 900000000000526001 REPLACED BY association reference set 829781000168101 Berocca Performance Original effervescent tablet, 45 20160930 +74719011000036107 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 826381000168108 Meruvax II (10 x 1000 TCID50 units vaccine vials, 10 x 0.5 mL inert diluent vials), 1 pack, composite pack 20160930 +50243011000036109 PKU Cooler10 Purple oral liquid: solution, 30 x 87 mL cans 900000000000526001 REPLACED BY association reference set 725591000168109 PKU Cooler 10 Purple oral liquid solution, 30 x 87 mL pouches 20151031 +27819011000036108 buprenorphine 2 mg tablet, 7 900000000000526001 REPLACED BY association reference set 685591000168106 buprenorphine 2 mg sublingual tablet, 7 20150228 +59861011000036109 Anti Fungal V 3 Day (Amcal) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 714911000168100 Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g, tube 20150930 +46393011000036106 lignocaine hydrochloride anhydrous 2% (400 mg/20 mL) injection, 30 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 693421000168107 lidocaine (lignocaine) hydrochloride monohydrate 2% (400 mg/20 mL) injection, 30 x 20 mL ampoules 20150331 +711361000168103 Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1004491000168104 Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule 20170930 +74948011000036100 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831101000168107 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent ampoules), 1 pack, composite pack 20160930 +19769011000036104 Panamax Co uncoated tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 836081000168108 Panamax Co uncoated tablet, 50, blister pack 20161031 +46974011000036108 albendazole 400 mg chewable tablet, 56 900000000000526001 REPLACED BY association reference set 844111000168106 albendazole 400 mg tablet, 56 20161031 +82406011000036101 Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag 900000000000526001 REPLACED BY association reference set 872421000168101 Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag 20170131 +680651000168105 Zaldiar Combination Therapy film-coated tablet, 50 900000000000526001 REPLACED BY association reference set 1027851000168107 Zaldiar film-coated tablet, 50 20171031 +71196011000036100 cetylpyridinium chloride monohydrate 0.05% mouthwash, 150 mL 900000000000526001 REPLACED BY association reference set 994971000168102 cetylpyridinium chloride 0.05% mouthwash, 150 mL 20170831 +59674011000036108 Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 721671000168109 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 100 mL, bottle 20151031 +37365011000036107 Lanoxin 50 microgram/2 mL injection: solution, 5 x 2 mL ampoules 900000000000526001 REPLACED BY association reference set 735111000168105 Lanoxin Infants 50 microgram/2 mL injection solution, 5 x 2 mL ampoules 20151231 +74417011000036105 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845971000168101 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +924871011000036106 Omepro 20 mg capsule, 28 900000000000526001 REPLACED BY association reference set 716531000168109 Omepro 20 mg enteric capsule, 28 20150930 +686401000168107 Plegridy 125 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 698581000168100 Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL syringe 20150430 +74751011000036100 Infanrix Hexa injection: suspension, 10 packs, composite pack 900000000000526001 REPLACED BY association reference set 841011000168105 Infanrix Hexa (10 x vaccine syringes, 10 x 10 microgram vaccine vials), 1 pack, composite pack 20161031 +66843011000036107 Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g 900000000000526001 REPLACED BY association reference set 705611000168107 Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g 20150731 +36675011000036109 Marcain Spinal Heavy injection: solution, 5 x 4 mL ampoules 900000000000526001 REPLACED BY association reference set 863591000168100 Marcain Spinal Heavy injection solution, 5 x 4 mL ampoules 20170131 +158371000036105 Oxycontin Reformulation 10 mg modified release tablet 900000000000526001 REPLACED BY association reference set 6511011000036106 Oxycontin 10 mg modified release tablet 20170731 +69641000036101 Calcium Carbonate (Winthrop) (calcium (as carbonate) 500 mg) tablet: film-coated 900000000000526001 REPLACED BY association reference set 852731000168106 Calcium Carbonate (Winthrop) 1.25 g (calcium 500 mg) film-coated tablet 20161130 +833811000168100 Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, 7 dual chamber devices 900000000000526001 REPLACED BY association reference set 975171000168106 Genotropin Miniquick (7 x 400 microgram syringes, 7 x 0.25 mL inert diluent syringes), 1 pack 20170731 +55656011000036106 Cepacol Cough Plus Lemon lozenge, 16 900000000000526001 REPLACED BY association reference set 995271000168107 Cepacol Cough Plus Lemon lozenge, 16 20170831 +86168011000036103 Go Kit (3 x Bisacodyl (Fresenius Kabi) tablets, 1 x Go Kit sachet), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 830981000168109 Go Kit (3 x Bisacodyl (Fresenius Kabi) enteric tablets, 1 x Magnesium Citrate (Fresenius Kabi) sachet), 1 pack, composite pack 20160930 +66721000036108 Quick-Eze chewable tablet, 12, wrapping 900000000000526001 REPLACED BY association reference set 833681000168107 Quick-Eze chewable tablet, 12, wrapping 20160930 +78259011000036109 iopromide 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection, 10 x 100 mL vials 900000000000526001 REPLACED BY association reference set 695271000168108 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 100 mL bottles 20150430 +169821000036102 Aquacel Ag (403771) 2 cm x 45 cm rope, 5 900000000000526001 REPLACED BY association reference set 745091000168101 Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5 20160131 +81303011000036103 sodium chloride 470 mg + potassium chloride 300 mg + glucose monohydrate 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet 900000000000526001 REPLACED BY association reference set 871601000168103 sodium chloride 470 mg + potassium chloride 300 mg (potassium 4 mmol) + glucose 3.56 g + sodium acid citrate 530 mg powder for oral liquid, 5.2 g sachet 20170131 +81699011000036106 calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 868061000168108 glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 20170131 +26721011000036103 atropine sulfate 600 microgram/mL injection, 10 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850751000168101 atropine sulfate monohydrate 600 microgram/mL injection, 10 x 1 mL ampoules 20161130 +138901000036101 Granisetron (Sandoz) 1 mg/mL injection: concentrated, 5 x 1 mL vials 900000000000526001 REPLACED BY association reference set 747051000168100 Granisetron (Sandoz) 1 mg/mL injection solution, 5 x 1 mL vials 20160131 +75453011000036100 hepatitis A inactivated vaccine 25 units/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824871000168108 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL syringe 20160930 +65369011000036103 Cepacol Antibacterial Menthol and Eucalyptus lozenge 900000000000526001 REPLACED BY association reference set 995121000168102 Cepacol Antibacterial Menthol and Eucalyptus lozenge 20170831 +74202011000036106 Azep 140 microgram/actuation nasal spray, 20 mL 900000000000526001 REPLACED BY association reference set 809611000168107 Azep 0.1% nasal spray, 20 mL 20160630 +74740011000036105 Adacel Polio injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839651000168102 Adacel Polio injection suspension, 0.5 mL syringe 20161031 +941641000168107 Metformin (AS) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 949531000168101 Metformin 1000 (AS) 1 g film-coated tablet, 60, blister pack 20170630 +40065011000036100 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 mL ampoule 900000000000526001 REPLACED BY association reference set 693331000168104 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 mL ampoule 20150331 +59703011000036106 Cortef 1% spray: solution, 30 mL, bottle 900000000000526001 REPLACED BY association reference set 776901000168104 Cortef 1% spray solution, 30 mL, bottle 20160430 +708511000168103 Otocomb Otic ear drops: solution, 7.5 mL 900000000000526001 REPLACED BY association reference set 758401000168108 Otocomb Otic ear drops solution, 7.5 mL 20160229 +77545011000036107 alpha tocopherol acetate 96% oil 900000000000526001 REPLACED BY association reference set 842731000168109 dl-alpha-tocopheryl acetate 96% oil 20161031 +19667011000036101 Cal Sup 500 mg (calcium 500 mg) chewable tablet, 60, bottle 900000000000526001 REPLACED BY association reference set 859741000168105 Cal Sup 1.25 g (calcium 500 mg) chewable tablet, 60, bottle 20161231 +30704011000036103 alpha tocopherol acetate 900000000000527005 SAME AS association reference set 809501000168108 dl-alpha-tocopheryl acetate 20161031 +682121000168107 testosterone undecanoate 1 g/4 mL injection, vial 900000000000526001 REPLACED BY association reference set 722931000168106 testosterone undecanoate 1 g/4 mL modified release injection, vial 20151031 +82564011000036101 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, 2 x 5 L bags 900000000000526001 REPLACED BY association reference set 872431000168103 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 2 x 5 L bags 20170131 +18688011000036100 Baraclude 1 mg tablet: film-coated, 30, blister pack 900000000000526001 REPLACED BY association reference set 829481000168108 Baraclude 1 mg film-coated tablet, 30, blister pack 20160930 +81292011000036103 sodium gluconate 5.02 g/L + sodium chloride 5.26 g/L + potassium chloride 370 mg/L + magnesium chloride 300 mg/L + sodium acetate trihydrate 3.68 g/L + glucose 5% (50 g/L) injection, bag 900000000000526001 REPLACED BY association reference set 872591000168100 sodium chloride 5.26 g/L + sodium gluconate 5.02 g/L + sodium acetate trihydrate 3.68 g/L + potassium chloride 370 mg (potassium 5 mmol)/L + magnesium chloride hexahydrate 300 mg/L + glucose 5% (50 g/L) injection, bag 20170131 +921000011000036102 Calvid granules: effervescent, 7 g sachet 900000000000526001 REPLACED BY association reference set 810631000168109 Calvid effervescent granules, 7.3 g sachet 20160630 +85743011000036105 Movicol Junior solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674181000168106 Movicol Junior powder for oral liquid, 30 sachets 20141031 +60807011000036102 Combantrin-1 with Mebendazole 100 mg chewable tablet, 2, blister pack 900000000000526001 REPLACED BY association reference set 844181000168100 Combantrin-1 with Mebendazole 100 mg tablet, 2, blister pack 20161031 +18886011000036109 Atropt 1% eye drops solution, 15 mL, bottle 900000000000526001 REPLACED BY association reference set 850981000168105 Atropt 1% eye drops solution, 15 mL, bottle 20161130 +175411000036104 Molaxole solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674211000168105 Molaxole powder for oral liquid, 30 sachets 20141031 +60752011000036107 Difflam Lozenge raspberry sugar free lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 995921000168104 Difflam Lozenge Raspberry Sugar Free lozenge, 2, blister pack 20170831 +815181000168105 Entrip 50 mg tablet, 10, blister pack 900000000000526001 REPLACED BY association reference set 856791000168109 Entrip 50 mg film-coated tablet, 10, blister pack 20161231 +135711000036106 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 821541000168101 Imojev (1 x vaccine vial, 1 x inert diluent vial), 1 pack, composite pack 20160831 +38570011000036102 aspirin 325 mg + codeine phosphate 30 mg tablet, 50 900000000000526001 REPLACED BY association reference set 834601000168102 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 50 20161031 +923451011000036103 Omeprazole (Pharmacor) 20 mg capsule, 60 900000000000526001 REPLACED BY association reference set 717361000168109 Omeprazole (Pharmacor) 20 mg enteric capsule, 60 20150930 +13618011000036104 Keppra 1 g tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 721061000168108 Keppra-1000 1 g film-coated tablet, 60 20151031 +696481000168100 meningococcal group B heparin binding antigen fusion protein 900000000000526001 REPLACED BY association reference set 822421000168100 Neisseria meningitidis group B heparin binding antigen fusion protein 20160831 +56684011000036106 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721521000168109 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL 20151031 +74930011000036101 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845981000168103 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +691991000168100 Calcium (Sandoz) 500 mg tablet: film-coated, 48, bottle 900000000000526001 REPLACED BY association reference set 847911000168103 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48, bottle 20161130 +27839011000036101 oxycodone hydrochloride 5 mg/5 mL oral liquid, 250 mL 900000000000526001 REPLACED BY association reference set 815931000168107 oxycodone hydrochloride 1 mg/mL oral liquid, 250 mL 20160731 +930836011000036101 Actonel EC Combi (4 x Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28 900000000000526001 REPLACED BY association reference set 852711000168101 Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28 20161130 +711421000168103 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005071000168108 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +78216011000036107 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872941000168101 alanine 10.35 g/500 mL + arginine 5.75 g/500 mL + glycine 5.15 g/500 mL + histidine 2.4 g/500 mL + isoleucine 3 g/500 mL + leucine 3.65 g/500 mL + lysine hydrochloride 2.9 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 2 g/500 mL + phenylalanine 2.8 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 3.4 g/500 mL + serine 2.5 g/500 mL + sodium acetate trihydrate 3.4 g/500 mL + sodium chloride 585 mg/500 mL + threonine 2.1 g/500 mL + tryptophan 900 mg/500 mL + tyrosine 200 mg/500 mL + valine 2.9 g/500 mL injection, 12 x 500 mL bottles 20170131 +83964011000036101 Wagner Magnesium Forte 400 capsules: hard, 50 900000000000526001 REPLACED BY association reference set 750291000168104 Magnesium Forte 400 (Wagner) hard capsule, 50 20160131 +74254011000036109 Cervarix injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823191000168102 Cervarix injection suspension, 10 x 0.5 mL syringes 20160831 +246071000168104 PKU Cooler15 Orange oral liquid: solution, 130 mL can 900000000000526001 REPLACED BY association reference set 725631000168109 PKU Cooler 15 Orange oral liquid solution, 130 mL pouch 20151031 +74268011000036108 Infanrix Penta injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 836771000168107 Infanrix Penta injection suspension, 10 x 0.5 mL syringes 20161031 +22009011000036108 pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 838051000168100 pneumococcal 23 valent vaccine injection, 0.5 mL vial 20161031 +57065011000036104 Difflam Lozenge orange sugar free lozenge, 8 900000000000526001 REPLACED BY association reference set 995861000168102 Difflam Lozenge Orange Sugar Free lozenge, 8 20170831 +930679011000036103 Granisetron (Kabi) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 747081000168107 Granisetron (Kabi) 1 mg/mL injection solution, 5 x 1 mL ampoules 20160131 +159231000036106 Oxycontin Reformulation 15 mg modified release tablet, 28 900000000000526001 REPLACED BY association reference set 928246011000036109 Oxycontin 15 mg modified release tablet, 28 20170731 +54049011000036104 Difflam Lozenge eucalyptus and menthol sugar free lozenge 900000000000526001 REPLACED BY association reference set 995621000168108 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge 20170831 +56845011000036107 Disprin Original 300 mg dispersible tablet, 48 900000000000526001 REPLACED BY association reference set 804301000168103 Disprin Original 300 mg tablet, 48 20160630 +933225821000036102 Naropin 0.2% (40 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004611000168105 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +63734011000036103 benzydamine hydrochloride 0.15% spray, 30 mL 900000000000526001 REPLACED BY association reference set 721271000168107 benzydamine hydrochloride 0.15% oral spray, 30 mL 20151031 +81700011000036107 calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 2.5% (62.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags 900000000000526001 REPLACED BY association reference set 868091000168101 glucose monohydrate 2.5% (62.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags 20170131 +37548011000036108 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L, bottle 900000000000526001 REPLACED BY association reference set 834951000168105 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L, bottle 20161031 +43891000036102 Remeron 15 mg tablet: orally disintegrating, 30 900000000000526001 REPLACED BY association reference set 783821000168104 Remeron Soltab 15 mg orally disintegrating tablet, 30 20160531 +22698011000036109 flurbiprofen sodium 0.03% (120 microgram/0.4 mL) eye drops, ampoule 900000000000526001 REPLACED BY association reference set 684561000168103 flurbiprofen sodium dihydrate 0.03% eye drops, unit dose 20150131 +156001000036103 Caltrate 600 mg with Vitamin D 500 IU tablet: film-coated, 120 900000000000526001 REPLACED BY association reference set 862201000168100 Caltrate 600 mg with Vitamin D 500 IU film-coated tablet, 120 20161231 +43901000036101 Remeron 30 mg tablet: orally disintegrating, 30 900000000000526001 REPLACED BY association reference set 783851000168107 Remeron Soltab 30 mg orally disintegrating tablet, 30 20160531 +101351000036103 Irbesartan (Apo) 150 mg tablet, 30 900000000000526001 REPLACED BY association reference set 807781000168102 Irbesartan (Apo) 150 mg film-coated tablet, 30 20160630 +41565011000036106 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 30 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 693301000168106 Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules 20150331 +708501000168101 Otocomb Otic ear drops: solution 900000000000526001 REPLACED BY association reference set 758391000168106 Otocomb Otic ear drops solution 20160229 +923727011000036104 Omeprazole (Pharmacor) 20 mg capsule, 7, blister pack 900000000000526001 REPLACED BY association reference set 717411000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 7, blister pack 20150930 +75013011000036100 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837461000168105 diphtheria + tetanus + pertussis 5 component adolescent/adult vaccine injection, 0.5 mL vial 20161031 +82563011000036103 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + sodium lactate 25.5 g/5 L + magnesium chloride 760 mg/5 L + potassium chloride 370 mg/5 L + sodium chloride 27.6 g/5 L injection, 5 L bag 900000000000526001 REPLACED BY association reference set 872401000168105 calcium chloride dihydrate 1.2 g/5 L + glucose 9.8 g/5 L + magnesium chloride hexahydrate 760 mg/5 L + potassium chloride 370 mg (potassium 5 mmol)/5 L + sodium chloride 27.6 g/5 L + sodium lactate 25.5 g/5 L injection, 5 L bag 20170131 +108841000036104 Moviprep Lemon powder for oral liquid, 4 sachets 900000000000526001 REPLACED BY association reference set 902181000168109 Moviprep (2 x A sachets, 2 x B sachets), 4 sachets 20170331 +73884011000036109 Stamaril (Yellow fever live attenuated vaccine 1000 units) powder for injection, vial 900000000000526001 REPLACED BY association reference set 822201000168108 Stamaril (yellow fever live vaccine) powder for injection, vial 20160831 +23641011000036102 paracetamol 500 mg + codeine phosphate 30 mg tablet 900000000000526001 REPLACED BY association reference set 79115011000036100 paracetamol 500 mg + codeine phosphate hemihydrate 30 mg tablet 20161031 +836191000168107 Extraneal 7.5% with drainage bag peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872351000168103 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 20170131 +931723011000036100 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872801000168108 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 20170131 +63527011000036105 pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 4 900000000000526001 REPLACED BY association reference set 996231000168104 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 4 20170831 +39995011000036107 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution 900000000000526001 REPLACED BY association reference set 835511000168101 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution 20161031 +75403011000036108 hepatitis A inactivated vaccine 720 ELISA units + hepatitis B vaccine 20 microgram injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824611000168101 hepatitis A + hepatitis B adult vaccine injection, 1 mL syringe 20160930 +34015011000036102 Codeine Phosphate (Phebra) 50 mg/mL injection: solution, ampoule 900000000000526001 REPLACED BY association reference set 835641000168101 Codeine Phosphate (Phebra) 50 mg/mL injection solution, ampoule 20161031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836631000168101 Streptococcus pneumoniae type 3 polysaccharide antigen 20161031 +11718011000036100 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041091000168100 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device 20171130 +60199011000036102 Daktarin 2% oral gel, 10 g, tube 900000000000526001 REPLACED BY association reference set 820011000168101 Daktarin 2% oral gel, 10 g, tube 20160731 +137851000036107 Ropivacaine Hydrochloride (Kabi) 0.75% (150 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1006071000168104 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 20 mL ampoule 20170930 +74263011000036103 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 831991000168103 Zostavax (10 x 19 400 PFU vaccine vials, 10 x 0.65 mL inert diluent vials), 1 pack 20160930 +170761000036103 Aquacel Ag (403771) 2 cm x 45 cm rope, 5, carton 900000000000526001 REPLACED BY association reference set 745101000168106 Aquacel Ag (403771) 2 cm x 45 cm ribbon, 5, carton 20160131 +139281000036106 Ropivacaine Hydrochloride (Kabi) 1% (100 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006201000168104 Ropivacaine 1% (Kabi) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +176611000036109 Levactam 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003081000168105 Levactam-1000 1 g film-coated tablet, 60, blister pack 20170930 +85769011000036101 Kepcet 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003031000168109 Kepcet-1000 1 g film-coated tablet, 60 20170930 +68669011000036100 Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995151000168105 Cepacol Antibacterial Menthol and Eucalyptus lozenge, 16, blister pack 20170831 +172331000168102 MSUD Cooler 15 oral liquid: solution, 130 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724841000168103 MSUD Cooler 15 Red oral liquid solution, 130 mL pouch 20151031 +80216011000036106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 867891000168105 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 20170131 +716121000168104 meningococcal group A conjugate vaccine 10 microgram injection [1 vial] (&) meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 syringe], 1 pack 900000000000526001 REPLACED BY association reference set 826711000168101 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 syringe], 1 pack 20160930 +728821000168103 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006151000168107 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +53636011000036100 Clozole Vaginal Cream (Chemists' Own) 2% cream 900000000000526001 REPLACED BY association reference set 715431000168102 Clozole (Chemists' Own) 2% vaginal cream 20150930 +828331000168106 Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection, vial 900000000000526001 REPLACED BY association reference set 846051000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial 20161130 +13841011000036107 Novomix 30 Flexpen injection suspension, 5 x 3 mL syringes 900000000000526001 REPLACED BY association reference set 1007211000168103 Novomix 30 Flexpen injection suspension, 5 x 3 mL injection devices 20170930 +75084011000036101 Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832281000168103 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial 20160930 +75069011000036103 Yellow fever live attenuated vaccine 1000 units injection, vial 900000000000526001 REPLACED BY association reference set 822191000168105 yellow fever live vaccine injection, vial 20160831 +74862011000036104 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825131000168100 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL vial 20160930 +31441000036108 Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083761000168102 Vicks Sinex Extrafresh 0.05% nasal spray, 15 mL, pump pack 20180228 +103771000036108 Victoza 18 mg/3 mL injection: solution, 3 mL cartridge 900000000000526001 REPLACED BY association reference set 748061000168104 Victoza 6 mg/mL injection solution, 3 mL injection device 20160131 +74419011000036103 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846021000168108 NeisVac-C 10 microgram/0.5 mL injection suspension, 20 x 0.5 mL syringes 20161130 +653621000168101 Retinofluor 500 mg/5 mL injection: solution, 10 x 5 mL vials 900000000000526001 REPLACED BY association reference set 721181000168103 Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials 20151031 +925339011000036101 Omepro 20 mg capsule, 500, bottle 900000000000526001 REPLACED BY association reference set 716731000168100 Omepro 20 mg enteric capsule, 500, bottle 20150930 +75114011000036108 hepatitis B vaccine 10 microgram/mL injection, vial 900000000000526001 REPLACED BY association reference set 825721000168102 hepatitis B adult vaccine 10 microgram/mL injection, vial 20160930 +23268011000036104 pancreatic extract 5000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847501000168109 lipase 5000 units + amylase 4000 units + protease 300 units enteric capsule 20161130 +145321000036101 Tecfidera 240 mg capsule: modified release, 56 900000000000526001 REPLACED BY association reference set 756381000168109 Tecfidera 240 mg enteric capsule, 56 20160229 +921572011000036108 Panadeine Forte uncoated tablet, 50 900000000000526001 REPLACED BY association reference set 835851000168103 Panadeine Forte uncoated tablet, 50 20161031 +933226051000036106 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004711000168103 Naropin 0.2% with Fentanyl 200 microgram/100 mL injection solution, 5 x 100 mL bags 20170930 +933225651000036109 ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorbutol 5% + arachis oil 57% ear drops, 10 mL 900000000000526001 REPLACED BY association reference set 854361000168109 ortho-dichlorobenzene 14% + para-dichlorobenzene 2% + chlorobutanol hemihydrate 5% + arachis oil 57% ear drops, 10 mL 20161231 +33802011000036108 adrenaline 150 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726671000168102 adrenaline (epinephrine) 150 microgram/0.3 mL injection, 1 dose 20151031 +4738011000036104 Baraclude 500 microgram tablet: film-coated 900000000000526001 REPLACED BY association reference set 829501000168104 Baraclude 500 microgram film-coated tablet 20160930 +76068011000036108 Sandocal 1000 tablets: effervescent 900000000000526001 REPLACED BY association reference set 745611000168101 Sandocal 1000 effervescent tablet 20160131 +54234011000036108 Clozole Vaginal Cream (Meditab) 2% cream 900000000000526001 REPLACED BY association reference set 715841000168109 Clozole (Meditab) 2% vaginal cream 20150930 +75400011000036100 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 836701000168102 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 20161031 +33081011000036104 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 881191000168108 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, dose 20170228 +920147011000036106 Metformin Hydrochloride (Sandoz) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 949341000168102 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet 20170630 +360421000168105 magnesium carbonate heavy 7.5 g + citric acid 14 g powder for oral liquid, 1 sachet 900000000000526001 REPLACED BY association reference set 830931000168108 magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 1 sachet 20160930 +17929011000036109 Nemdyn Otic ointment, 10 g, tube 900000000000526001 REPLACED BY association reference set 689871000168106 Nemdyn Otic ear ointment, 10 g, tube 20150331 +921841011000036102 Berocca Performance Original effervescent tablet, 45, bottle 900000000000526001 REPLACED BY association reference set 829791000168103 Berocca Performance Original effervescent tablet, 45, bottle 20160930 +665561000168102 PKU Cooler15 Green oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725611000168104 PKU Cooler 15 Green oral liquid solution, 30 x 130 mL pouches 20151031 +41564011000036107 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 50 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693251000168100 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 50 x 5 mL ampoules 20150331 +728801000168107 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1006131000168101 Ropivacaine 1% (Actavis) 100 mg/10 mL injection solution, 10 mL ampoule 20170930 +930882011000036106 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872821000168104 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +56159011000036103 Daktarin 2% oral gel, 15 g 900000000000526001 REPLACED BY association reference set 820021000168108 Daktarin 2% oral gel, 15 g 20160731 +711961000168104 Ropibam 0.75% 150 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005201000168108 Ropibam 0.75% 150 mg/20 mL injection solution, 20 mL ampoule 20170930 +81132011000036107 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868371000168104 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 20170131 +74969011000036101 Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + Bordetella pertussis, fimbriae types 2 and 3 vaccine + Bordetella pertussis, acellular pertactin vaccine + diphtheria toxoid vaccine + tetanus toxoid vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine 900000000000526001 REPLACED BY association reference set 839601000168101 diphtheria + tetanus + pertussis 5 component + polio trivalent vaccine 20161031 +75066011000036107 hepatitis A inactivated vaccine 50 units/mL injection, vial 900000000000526001 REPLACED BY association reference set 824901000168108 hepatitis A adult vaccine 50 units/mL injection, vial 20160930 +49444011000036102 Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694171000168101 Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll 20150331 +75092011000036106 hepatitis A inactivated vaccine 160 antigen units/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 824651000168100 hepatitis A child/adult vaccine injection, 0.5 mL syringe 20160930 +650791000168104 dressing hydrofibre alternate to alginates 2 cm x 45 cm rope 900000000000526001 REPLACED BY association reference set 745011000168105 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon 20160131 +815081000168109 Entrip 25 mg tablet, 50 900000000000526001 REPLACED BY association reference set 856691000168103 Entrip 25 mg film-coated tablet, 50 20161231 +63087011000036101 benzocaine 1 mg + cetylpyridinium chloride monohydrate 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge, 16 900000000000526001 REPLACED BY association reference set 995261000168101 benzocaine 1 mg + cetylpyridinium chloride 1.3 mg + dextromethorphan hydrobromide monohydrate 5 mg + menthol 5.2 mg lozenge, 16 20170831 +1895011000036106 calcium chloride 900000000000527005 SAME AS association reference set 64897011000036103 calcium chloride dihydrate 20161031 +51407011000036101 tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689161000168105 tape plaster adhesive elastic 2.5 cm x 2.5 m tape, 1 roll 20150331 +137191000036108 Haemophilus influenzae type B polyribose ribitol phosphate vaccine 900000000000526001 REPLACED BY association reference set 827351000168104 Haemophilus influenzae type b conjugate (PRP-T) antigen 20161031 +920384011000036100 Metformin Hydrochloride (Sandoz) 1 g film-coated tablet, 90 900000000000526001 REPLACED BY association reference set 949351000168100 Metformin Hydrochloride 1000 (Sandoz) 1 g film-coated tablet, 90 20170630 +22792011000036104 calcium (as carbonate) 500 mg tablet 900000000000526001 REPLACED BY association reference set 847871000168101 calcium carbonate 1.25 g (calcium 500 mg) tablet 20161130 +6246011000036102 Movicol solution: powder for, sachet 900000000000526001 REPLACED BY association reference set 673961000168103 Movicol powder for oral liquid, sachet 20141031 +900012011000036107 Voltaren Emulgel 1% gel 900000000000526001 REPLACED BY association reference set 1036991000168109 Voltaren Emulgel 1.16% gel 20171130 +51413011000036107 dressing hydrofibre alternate to alginates 2 g (30 cm) rope, 5 x 2 g 900000000000526001 REPLACED BY association reference set 745031000168100 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon, 5 20160131 +711171000168107 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005881000168104 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +922105011000036103 diatrizoate meglumine 158.4 g/240 mL + diatrizoate sodium 24 g/240 mL solution, bottle 900000000000526001 REPLACED BY association reference set 696051000168103 amidotrizoate meglumine 660 mg/mL + sodium amidotrizoate 100 mg/mL solution 20150430 +708461000168101 Kenacomb Otic ear drops: solution 900000000000526001 REPLACED BY association reference set 758321000168109 Kenacomb Otic ear drops solution 20160229 +120491000036100 Canesten Plus cream, 30 g 900000000000526001 REPLACED BY association reference set 715881000168104 Canesten Plus cream, 30 g 20150930 +77385011000036104 Centrum tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 833181000168103 Centrum film-coated tablet, 100, bottle 20160930 +60759011000036102 Duro-Tuss Dry Cough Lozenge lemon lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 996221000168102 Duro-Tuss Dry Cough Lozenge lemon lozenge, 24, blister pack 20170831 +926285011000036102 Valtrex 1 g film-coated tablet, 4 900000000000526001 REPLACED BY association reference set 1009691000168102 Valtrex-1000 1 g film-coated tablet, 4 20170930 +281000168103 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 6 sachets 900000000000526001 REPLACED BY association reference set 810231000168107 Actonel EC Combi D effervescent granules, 6 sachets 20160630 +51408011000036100 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 693991000168104 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll 20150331 +82202011000036104 Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100 900000000000526001 REPLACED BY association reference set 729271000168108 Silver Nitrate Applicator (Grafco) stick, 100 20151130 +177971000036108 Lyxumia 10 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses, cartridge 900000000000526001 REPLACED BY association reference set 719331000168105 Lyxumia 10 microgram/dose injection solution, 14 doses, injection device 20150930 +921547011000036106 Picolax powder for oral liquid, 2 x 20 g sachets 900000000000526001 REPLACED BY association reference set 832641000168106 Picolax powder for oral liquid, 2 x 20 g sachets 20160930 +833791000168104 Genotropin Miniquick (somatropin 400 microgram/dose + inert substance) powder for injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 975151000168102 Genotropin Miniquick (somatropin 400 microgram) powder for injection, 400 microgram syringe 20170731 +81287011000036102 calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 867881000168107 glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, bag 20170131 +84626011000036103 dibasic sodium phosphate heptahydrate 398 mg + monobasic sodium phosphate monohydrate 1.27 g tablet, 32 900000000000526001 REPLACED BY association reference set 900251000168105 monobasic sodium phosphate monohydrate 1.102 g + dibasic sodium phosphate 398 mg tablet, 32 20170331 +77321011000036105 Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 695091000168102 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials 20150430 +77578011000036102 iopromide 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695711000168109 iopromide 769 mg (iodine 370 mg)/mL injection, 100 mL bottle 20150430 +933221251000036109 ropivacaine hydrochloride monohydrate 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, bag 900000000000526001 REPLACED BY association reference set 1004831000168101 ropivacaine hydrochloride 400 mg/200 mL + fentanyl 800 microgram/200 mL injection, bag 20170930 +93391000036104 Menactra injection: solution, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 826541000168106 Menactra injection solution, 0.5 mL vial 20160930 +922550011000036108 ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 90 900000000000526001 REPLACED BY association reference set 757911000168102 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 90 20160229 +73661011000036104 poliomyelitis virus type 2 (MEF1) inactivated vaccine 900000000000526001 REPLACED BY association reference set 836531000168100 poliovirus type 2 inactivated antigen 20161031 +71371000036106 exenatide 5 microgram/0.02 mL injection, 60 x 0.02 mL unit doses 900000000000526001 REPLACED BY association reference set 726771000168106 exenatide 5 microgram/dose injection, 60 doses 20151031 +69331011000036100 Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 688491000168100 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 200 mL, bottle 20150331 +75038011000036101 poliomyelitis live attenuated oral vaccine oral liquid, vial 900000000000526001 REPLACED BY association reference set 839791000168101 polio trivalent live vaccine oral liquid, 1 vial 20161031 +61226011000036109 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715641000168108 Antifungal Clotrimazole Women's Treatment (Soul Pattinson) 2% vaginal cream, 20 g, tube 20150930 +35164011000036102 codeine phosphate 30 mg tablet, 100 900000000000526001 REPLACED BY association reference set 834711000168106 codeine phosphate hemihydrate 30 mg tablet, 100 20161031 +700401000168104 ADT Booster injection suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837351000168102 ADT Booster injection suspension, 5 x 0.5 mL syringes 20161031 +29181000036105 Movicol Chocolate solution: powder for, 8 sachets 900000000000526001 REPLACED BY association reference set 674051000168103 Movicol Chocolate powder for oral liquid, 8 sachets 20141031 +38615011000036107 atropine sulfate 400 microgram/mL injection, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850411000168107 atropine sulfate monohydrate 400 microgram/mL injection, 50 x 1 mL ampoules 20161130 +922548011000036108 ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 150 900000000000526001 REPLACED BY association reference set 757941000168103 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 150 20160229 +63607011000036107 aspirin 300 mg dispersible tablet, 48 900000000000526001 REPLACED BY association reference set 804291000168104 aspirin 300 mg tablet, 48 20160630 +73659011000036105 poliomyelitis virus type 1 (Mahoney) inactivated vaccine 900000000000526001 REPLACED BY association reference set 836521000168103 poliovirus type 1 inactivated antigen 20161031 +74880011000036101 Tripacel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837581000168102 Tripacel injection suspension, 0.5 mL vial 20161031 +63724011000036100 benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 8 900000000000526001 REPLACED BY association reference set 995761000168106 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 8 20170831 +923776011000036101 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 821331000168100 Acam2000 (50 x vaccine vials, 50 x 0.6 mL inert diluent vials), 1 pack, composite pack 20160831 +107321000036104 Sorbact (S98310) 10 cm x 10 cm foam dressing 900000000000526001 REPLACED BY association reference set 1056321000168107 Sorbact Foam (S98310) 10 cm x 10 cm foam dressing 20171231 +692171000168109 Calcium (Actavis) 500 mg tablet: film-coated, 48 900000000000526001 REPLACED BY association reference set 848381000168109 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet, 48 20161130 +84411011000036103 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + ascorbic acid 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 69825011000036102 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate 20170331 +20397011000036106 Etopophos 1 g injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 793621000168102 Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial 20160531 +692161000168103 Calcium (Actavis) 500 mg tablet: film-coated 900000000000526001 REPLACED BY association reference set 848371000168106 Calcium (Actavis) 1.25 g (calcium 500 mg) film-coated tablet 20161130 +82672011000036105 Questran 8 g powder for oral liquid, 9.4 g sachet 900000000000526001 REPLACED BY association reference set 1032291000168104 Questran Lite 8 g powder for oral liquid, 9.4 g sachet 20171130 +71781000036109 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 60 900000000000526001 REPLACED BY association reference set 862091000168104 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 60 20161231 +844561000168101 Zovirax 800 mg tablet, 120, blister pack 900000000000526001 REPLACED BY association reference set 859441000168102 Zovirax Dispersible 800 mg tablet, 120, blister pack 20161231 +39988011000036102 Eleuphrat 0.05% lotion 900000000000526001 REPLACED BY association reference set 1054591000168109 Eleuphrat 0.05% lotion 20171231 +806261000168104 Repatha 140 mg/mL injection: solution, 3 x 1 mL injection devices 900000000000526001 REPLACED BY association reference set 846431000168103 Repatha Sureclick 140 mg/mL injection solution, 3 x 1 mL injection devices 20161130 +51311000168105 Fluoride Moose Mallow (Laclede) 900000000000526001 REPLACED BY association reference set 932331000168103 Fluoride (Laclede) 20170531 +931388011000036102 Decongestant (Chemmart) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083591000168102 Decongestant (Chemmart) 0.05% nasal spray, 20 mL, pump pack 20180228 +12638011000036102 Zovirax 800 mg dispersible tablet, 120 900000000000526001 REPLACED BY association reference set 859431000168106 Zovirax Dispersible 800 mg tablet, 120 20161231 +46309011000036106 betamethasone (as dipropionate) 0.05% lotion, 30 mL 900000000000526001 REPLACED BY association reference set 1054601000168102 betamethasone (as dipropionate) 0.05% lotion, 30 mL 20171231 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826081000168105 Streptococcus pneumoniae type 6A conjugate antigen 20160930 +77144011000036103 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL, pump pack 900000000000526001 REPLACED BY association reference set 705971000168105 Skin Relief Sorbolene Moisturiser with 10% Glycerin (Kenkay) cream, 325 mL, pump pack 20150731 +56706011000036105 Duro-Tuss Dry Cough Lozenge orange lozenge, 2 900000000000526001 REPLACED BY association reference set 996271000168101 Duro-Tuss Dry Cough Lozenge orange lozenge, 2 20170831 +74892011000036101 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 831911000168107 Varilrix (1 x 1995 PFU vaccine vial, 1 x 0.5 mL inert diluent syringe), 1 pack, composite pack 20160930 +167351000036109 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 848611000168109 Dronalen Plus D-Cal (4 x Dronalen Plus 70 mg/140 microgram tablets, 48 x Bonecal tablets), 1 pack, composite pack 20161130 +921928011000036103 MD-Gastroview solution, 12 x 240 mL each, bottle 900000000000526001 REPLACED BY association reference set 696121000168107 MD-Gastroview solution, 12 x 240 mL, bottles 20150430 +933220921000036101 Naropin 0.2% (20 mg/10 mL) injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1004491000168104 Naropin 0.2% 20 mg/10 mL injection solution, 10 mL ampoule 20170930 +137361000036104 Ropivacaine Hydrochloride (Kabi) 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 711051000168102 Ropivacaine 0.5% (Kabi) 20150831 +76547011000036103 Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans 900000000000526001 REPLACED BY association reference set 726251000168108 Lophlex LQ 10 oral liquid solution, 60 x 62.5 mL pouches 20151031 +159251000036103 Oxycontin Reformulation 10 mg modified release tablet, 28 900000000000526001 REPLACED BY association reference set 928480011000036100 Oxycontin 10 mg modified release tablet, 28 20170731 +49487011000036104 HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724081000168101 HCU Cooler 15 Orange oral liquid solution, 30 x 130 mL pouches 20151031 +142401000036107 Vivotif Oral enteric capsule 900000000000526001 REPLACED BY association reference set 827251000168109 Vivotif Oral enteric capsule 20160930 +933049011000036106 Lasix High Dose 20 mg/2 mL injection: solution, 5 x 2 mL ampoules 900000000000526001 REPLACED BY association reference set 704841000168108 Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules 20150630 +63368011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) dexchlorpheniramine maleate 2 mg + paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg tablet [8], 24 900000000000526001 REPLACED BY association reference set 63905011000036101 paracetamol 500 mg + codeine phosphate hemihydrate 6 mg + pseudoephedrine hydrochloride 30 mg tablet [16] (&) paracetamol 500 mg + pseudoephedrine hydrochloride 30 mg + chlorphenamine maleate 2 mg tablet [8], 24 20170731 +728001000168103 Lovan 20 mg dispersible tablet, 7 900000000000526001 REPLACED BY association reference set 844771000168102 Lovan 20 mg tablet, 7 20161031 +141731000036101 Somatuline Autogel 60 mg injection: solution, 1 syringe 900000000000526001 REPLACED BY association reference set 819591000168104 Somatuline Autogel 60 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +141531000036106 Somatuline Autogel 90 mg injection: solution, syringe 900000000000526001 REPLACED BY association reference set 819521000168101 Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826031000168109 Streptococcus pneumoniae type 19F conjugate antigen 20160930 +82413011000036109 Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100, tube 900000000000526001 REPLACED BY association reference set 729281000168106 Silver Nitrate Applicator (Grafco) stick, 100, tube 20151130 +110441000036102 Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20, carton 900000000000526001 REPLACED BY association reference set 1056201000168105 Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20, carton 20171231 +69626011000036102 Aqium 66% gel, 70 mL, bottle 900000000000526001 REPLACED BY association reference set 730471000168100 Aqium 66% gel, 70 mL, bottle 20151130 +684031000168104 pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 838181000168108 pneumococcal 23 valent vaccine injection, 10 x 0.5 mL syringes 20161031 +51258011000036106 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724241000168102 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 30 x 125 mL pouches 20151031 +74739011000036100 Infanrix Hexa injection: suspension, 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 840931000168107 Infanrix Hexa (1 x vaccine syringe, 1 x 10 microgram vaccine vial), 1 pack, composite pack 20161031 +922668011000036107 sorbitol 70% non-crystallising oral liquid, 500 mL 900000000000526001 REPLACED BY association reference set 690621000168103 sorbitol solution 70% non-crystallising oral liquid, 500 mL 20150331 +107531000036106 dressing hydrogel 5 cm x 200 cm ribbon 900000000000526001 REPLACED BY association reference set 1056261000168106 dressing hydrophobic 5 cm x 200 cm ribbon 20171231 +85323011000036106 Kevtam 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 938271000168105 Kevtam-1000 1 g film-coated tablet 20170930 +21080011000036100 Eskazole 400 mg chewable tablet, 60, bottle 900000000000526001 REPLACED BY association reference set 844101000168108 Eskazole 400 mg tablet, 60, bottle 20161031 +74715011000036105 Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083661000168105 Decongestant (Your Pharmacy) 0.05% nasal spray, 20 mL, pump pack 20180228 +81710011000036105 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868301000168109 glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, 3 L bag 20170131 +79392011000036100 Creon 25 000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847381000168108 Creon 25 000 enteric capsule 20161130 +61851011000036106 cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 10 mg lozenge 900000000000526001 REPLACED BY association reference set 995421000168105 cetylpyridinium chloride 1.3 mg + benzocaine 10 mg lozenge 20170831 +900851000168109 PKU Sphere powder for oral liquid, 30 x 35 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 922621000168107 PKU Sphere20 Vanilla powder for oral liquid, 30 x 35 g sachets 20170430 +61982011000036101 lignocaine hydrochloride anhydrous 2.5% + benzalkonium chloride 0.1% spray 900000000000526001 REPLACED BY association reference set 861631000168104 lidocaine (lignocaine) hydrochloride monohydrate 2.5% + benzalkonium chloride 0.1% spray 20161231 +923981011000036106 plerixafor 24 mg/1.2 mL subcutaneous infusion injection, vial 900000000000526001 REPLACED BY association reference set 891101000168101 plerixafor 24 mg/1.2 mL injection, vial 20170331 +56163011000036105 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 16 900000000000526001 REPLACED BY association reference set 861451000168108 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16 20161231 +86113011000036109 Levetiracetam (Apo) 1 g tablet, 100, bottle 900000000000526001 REPLACED BY association reference set 1003201000168107 Levetiracetam 1000 (Apo) 1 g tablet, 100, bottle 20170930 +933220781000036103 Naropin 0.2% (400 mg/200 mL) injection: solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1004641000168109 Naropin 0.2% 400 mg/200 mL injection solution, 200 mL bag 20170930 +11550011000036107 Baraclude 1 mg tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 829471000168105 Baraclude 1 mg film-coated tablet, 30 20160930 +665471000168109 PKU Cooler20 Gold oral liquid: solution, 30 x 174 mL cans 900000000000526001 REPLACED BY association reference set 725701000168108 PKU Cooler 20 Gold oral liquid solution, 30 x 174 mL pouches 20151031 +21200011000036107 Codapane Forte uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835951000168106 Codapane Forte 500/30 uncoated tablet, 20, blister pack 20161031 +27965011000036101 calcium (as carbonate) 600 mg (calcium 600 g) tablet, 120 900000000000526001 REPLACED BY association reference set 860261000168103 calcium carbonate 1.5 g (calcium 600 mg) tablet, 120 20161231 +86928011000036107 calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet 900000000000526001 REPLACED BY association reference set 860121000168104 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet 20161231 +172361000036103 alendronate 70 mg + colecalciferol 140 microgram tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 1 pack 900000000000526001 REPLACED BY association reference set 848001000168103 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 1 pack 20161130 +77579011000036105 iopromide 153.77 g/200 mL (equivalent to 74 g/200 mL iodine) injection, bottle 900000000000526001 REPLACED BY association reference set 695761000168107 iopromide 769 mg (iodine 370 mg)/mL injection, 200 mL bottle 20150430 +61121011000036101 Difflam Lozenge orange sugar free lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 995851000168104 Difflam Lozenge Orange Sugar Free lozenge, 24, blister pack 20170831 +80638011000036103 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags 900000000000526001 REPLACED BY association reference set 868421000168105 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 x 3 L bags 20170131 +49449011000036101 Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689271000168105 Leukoplast (1073) 7.5 cm x 2.5 m tape, 1 roll 20150331 +859101000168109 Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations, bottle 900000000000526001 REPLACED BY association reference set 1087191000168103 Nasonex Allergy 50 microgram/actuation nasal spray, 140 actuations, pump pack 20180331 +234941000168100 Prozero oral liquid: solution, 250 mL can 900000000000526001 REPLACED BY association reference set 745331000168102 Prozero oral liquid solution, 250 mL carton 20160131 +60891011000036108 Disprin Original 300 mg dispersible tablet, 48, strip pack 900000000000526001 REPLACED BY association reference set 804311000168100 Disprin Original 300 mg tablet, 48, strip pack 20160630 +77563011000036100 sodium bicarbonate 250 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 702301000168108 sodium bicarbonate 250 mg/mL oral liquid 20150531 +19137011000036108 Zentel 200 mg chewable tablet, 6, blister pack 900000000000526001 REPLACED BY association reference set 844241000168102 Zentel 200 mg tablet, 6, blister pack 20161031 +85713011000036103 Levetiracetam (Apo) 1 g tablet, 60 900000000000526001 REPLACED BY association reference set 1003231000168100 Levetiracetam 1000 (Apo) 1 g tablet, 60 20170930 +141511000036102 Somatuline Autogel 120 mg injection: solution, syringe 900000000000526001 REPLACED BY association reference set 819391000168107 Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +69911000036106 Byetta 10 microgram/0.04 mL injection: solution, 0.04 mL unit dose 900000000000526001 REPLACED BY association reference set 726811000168106 Byetta 10 microgram/dose injection solution, dose 20151031 +75106011000036103 meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection, vial 900000000000526001 REPLACED BY association reference set 827691000168102 meningococcal quadrivalent polysaccharide vaccine injection, vial 20160930 +29191000036107 macrogol-3350 13.12 g + sodium chloride 350.7 mg + potassium chloride 31.7 mg (0.43 mmol potassium) + sodium bicarbonate 178.5 mg solution, 8 sachets 900000000000526001 REPLACED BY association reference set 674041000168100 macrogol-3350 13.125 g + sodium chloride 350.7 mg + sodium bicarbonate 178.5 mg + potassium chloride 31.7 mg powder for oral liquid, 8 sachets 20141031 +56361000036106 Valvala 1 g film-coated tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 1009781000168105 Valvala-1000 1 g film-coated tablet, 50, blister pack 20170930 +2438011000036100 pancreatic extract 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 846131000168107 amylase 20161130 +691541000168101 Reddycal 500 mg tablet: film-coated 900000000000526001 REPLACED BY association reference set 848121000168108 Reddycal 1.25 g (calcium 500 mg) film-coated tablet 20161130 +59670011000036103 Cepacaine Oral Solution mouthwash, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 994941000168109 Cepacaine Oral Solution mouthwash, 200 mL, bottle 20170831 +663801000168102 Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 900000000000526001 REPLACED BY association reference set 833521000168109 Kaolin Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 20160930 +52226011000036107 Mirena 52 mg drug delivery system: intrauterine, 1 system, sachet 900000000000526001 REPLACED BY association reference set 729061000168109 Mirena 52 mg intrauterine drug delivery system, 1 system, applicator 20151130 +54042011000036109 Duro-Tuss Dry Cough Lozenge orange lozenge 900000000000526001 REPLACED BY association reference set 996261000168107 Duro-Tuss Dry Cough Lozenge orange lozenge 20170831 +4812011000036107 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041251000168102 Aranesp Sureclick 100 microgram/0.5 mL injection solution, 0.5 mL injection device 20171130 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826061000168101 Streptococcus pneumoniae type 9V conjugate antigen 20160930 +55654011000036103 Cepacaine Oral Solution mouthwash, 200 mL 900000000000526001 REPLACED BY association reference set 994931000168100 Cepacaine Oral Solution mouthwash, 200 mL 20170831 +177671000036100 Lyxumia 10 microgram/0.2 mL injection: solution, 0.2 mL unit dose 900000000000526001 REPLACED BY association reference set 719301000168103 Lyxumia 10 microgram/dose injection solution, dose 20150930 +924178011000036108 pneumococcal 13 valent polysaccharide conjugate vaccine 30.8 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827461000168107 pneumococcal 13 valent conjugate vaccine injection, 10 x 0.5 mL syringes 20160930 +53617011000036109 Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution 900000000000526001 REPLACED BY association reference set 721311000168107 Difflam Forte Anti-Inflammatory Throat 0.3% oral spray 20151031 +141991000036102 Somatuline Autogel 120 mg injection: solution, 1 syringe 900000000000526001 REPLACED BY association reference set 819421000168100 Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +75378011000036104 hepatitis B vaccine 20 microgram/mL injection, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825281000168106 hepatitis B adult vaccine 20 microgram/mL injection, 10 x 1 mL syringes 20160930 +130281000036100 TYR Cooler 10 oral liquid: solution, 30 x 87 mL sachets 900000000000526001 REPLACED BY association reference set 725881000168109 TYR Cooler 10 oral liquid solution, 30 x 87 mL pouches 20151031 +665501000168103 Codeine Phosphate (Aspen) 30 mg uncoated tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 834731000168101 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 100, blister pack 20161031 +757491000168101 Ursodox 250 mg capsule: hard, 60, blister pack 900000000000526001 REPLACED BY association reference set 765991000168107 Ursodox (GH) 250 mg hard capsule, 60, blister pack 20160331 +43764011000036100 Voluven 6% / 0.9% injection solution, 15 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013491000168104 Voluven injection solution, 15 x 500 mL bags 20170930 +74241011000036108 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825601000168100 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL vial 20160930 +926787011000036100 Medi Creme cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 863521000168102 Medi Creme cream, 50 g, tube 20170131 +84396011000036101 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872501000168106 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 20170131 +56763011000036103 Combantrin-1 with Mebendazole 100 mg chewable tablet, 2 900000000000526001 REPLACED BY association reference set 844171000168103 Combantrin-1 with Mebendazole 100 mg tablet, 2 20161031 +684041000168108 Pneumovax-23 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 838191000168106 Pneumovax-23 injection solution, 10 x 0.5 mL syringes 20161031 +69165011000036100 Ora-Sed Jel oral gel, 10 g, tube 900000000000526001 REPLACED BY association reference set 936671000168106 Ora-Sed Jel oral gel, 10 g, tube 20170531 +85792011000036109 Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872361000168101 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 20170131 +83017011000036101 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 5 x 60 mL 900000000000526001 REPLACED BY association reference set 689531000168105 lopinavir 400 mg/5 mL + ritonavir 100 mg/5 mL oral liquid, 5 x 60 mL 20150331 +51444011000036103 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 724071000168104 amino acid formula with vitamins and minerals without methionine oral liquid, 30 x 130 mL pouches 20151031 +75439011000036101 lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 15 mL 900000000000526001 REPLACED BY association reference set 792021000168100 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 15 mL 20160531 +48505011000036102 Medipore (2961) 2.5 cm x 9.1 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694151000168105 Medipore (2961) 2.5 cm x 9.1 m tape 20150331 +21913011000036103 bleomycin sulfate 900000000000526001 REPLACED BY association reference set 857781000168109 bleomycin 20161231 +700291000168106 ADT Vaccine injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837271000168103 ADT Vaccine injection suspension, 0.5 mL syringe 20161031 +18869011000036103 Kenacomb ointment, 15 g, tube 900000000000526001 REPLACED BY association reference set 758251000168106 Kenacomb ointment, 15 g, tube 20160229 +924891011000036104 Pemzo 20 mg capsule, 90 900000000000526001 REPLACED BY association reference set 717661000168102 Pemzo 20 mg enteric capsule, 90 20150930 +77136011000036107 PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724311000168109 PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles 20151031 +728681000168103 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005731000168107 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +696511000168107 meningococcal group B outer membrane vesicles 900000000000526001 REPLACED BY association reference set 822441000168106 Neisseria meningitidis group B outer membrane vesicles 20160831 +73802011000036101 Twinrix injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824571000168105 Twinrix injection suspension, 1 mL syringe 20160930 +933220891000036105 ropivacaine hydrochloride monohydrate 75 mg/10 mL injection, ampoule 900000000000526001 REPLACED BY association reference set 1004931000168105 ropivacaine hydrochloride 75 mg/10 mL injection, ampoule 20170930 +711681000168101 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005501000168105 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +921078011000036109 Picolax powder for oral liquid, 20 g sachet 900000000000526001 REPLACED BY association reference set 832621000168100 Picolax powder for oral liquid, 20 g sachet 20160930 +62002011000036106 pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge 900000000000526001 REPLACED BY association reference set 996151000168103 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge 20170831 +41220011000036101 Voluven 6% / 0.9% injection solution, 15 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013481000168102 Voluven injection solution, 15 x 500 mL bags 20170930 +45211000036105 Lipistart powder for oral liquid, 400 g, can 900000000000526001 REPLACED BY association reference set 949731000168105 Lipistart powder for oral liquid, 400 g, can 20170630 +73648011000036104 rubella virus (Wistar RA 27/3) live attenuated vaccine 900000000000526001 REPLACED BY association reference set 826251000168106 rubella virus live antigen 20160930 +76548011000036102 PKU Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724301000168106 PKU Anamix Junior LQ Berry oral liquid solution, 36 x 125 mL bottles 20151031 +33667011000036102 vespula spp venom 550 microgram injection, vial 900000000000526001 REPLACED BY association reference set 759041000168109 yellow jacket venom 550 microgram injection, vial 20160229 +67207011000036103 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 864301000168104 Glucose (Fresenius Kabi) 5% (50 g/L) intravenous infusion injection, 1 L bag 20170131 +72121000036103 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL 900000000000526001 REPLACED BY association reference set 764301000168101 Neutrogena T/Gel Therapeutic Conditioner 2% conditioner, 200 mL 20160331 +6897011000036103 Colazide 750 mg capsule 900000000000526001 REPLACED BY association reference set 932481000168105 Colazide 750 mg hard capsule 20170531 +931415011000036100 Dermasoothe Antiseptic cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 861351000168102 Dermasoothe Antiseptic cream, 50 g, tube 20161231 +27600011000036107 pancreatic extract 25 000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847391000168106 lipase 25 000 units + amylase 18 000 units + protease 1000 units enteric capsule, 100 20161130 +41225011000036105 Keppra 500 mg/5 mL injection: concentrated, 5 mL vial 900000000000526001 REPLACED BY association reference set 706281000168105 Keppra IV 500 mg/5 mL concentrated injection, 5 mL vial 20150731 +74308011000036103 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822641000168108 Jespect 6 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160831 +81608011000036100 glucose 5% (2.5 g/50 mL) injection, 40 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864241000168108 glucose monohydrate 5% (2.5 g/50 mL) injection, 40 x 50 mL bags 20170131 +663121000168101 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension 900000000000526001 REPLACED BY association reference set 833551000168101 Magnesium Trisilicate and Belladonna Mixture BPC (extemporaneous) oral liquid suspension 20160930 +80645011000036105 Eye Stream eye solution, 120 mL 900000000000526001 REPLACED BY association reference set 834171000168104 Eye Stream eye solution, 120 mL 20161031 +924704011000036102 Omepro 20 mg capsule, 98 900000000000526001 REPLACED BY association reference set 717021000168102 Omepro 20 mg enteric capsule, 98 20150930 +930082011000036107 Elevit with Iodine tablet: film-coated 900000000000526001 REPLACED BY association reference set 843171000168100 Elevit with Iodine film-coated tablet 20161031 +68871011000036103 Cepacol Mint 0.05% mouthwash, 150 mL, bottle 900000000000526001 REPLACED BY association reference set 995311000168107 Cepacol Mint 0.05% mouthwash, 150 mL, bottle 20170831 +9001000036108 Clinoleic 20% injection: emulsion, 100 mL bag 900000000000526001 REPLACED BY association reference set 771711000168109 Clinoleic 20% injection emulsion, 100 mL bag 20160430 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836971000168109 Streptococcus pneumoniae type 23F polysaccharide antigen 20161031 +929648011000036109 PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724581000168105 PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches 20151031 +37443011000036105 Codral Forte uncoated tablet, 4, strip pack 900000000000526001 REPLACED BY association reference set 834431000168106 Codral Forte uncoated tablet, 4, strip pack 20161031 +73831011000036100 Azep 140 microgram/actuation nasal spray, actuation 900000000000526001 REPLACED BY association reference set 809531000168101 Azep 0.1% nasal spray 20160630 +86085011000036100 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 996051000168102 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge, 24, blister pack 20170831 +74924011000036109 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 827761000168101 Menomune-A/C/Y/W-135 (1 x vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack, composite pack 20160930 +77478011000036108 calcium carbonate + calcium lactate gluconate 900000000000526001 REPLACED BY association reference set 745551000168101 calcium 20160131 +26803011000036107 diphtheria toxoid 2 international units/0.5 mL + tetanus toxoid 20 international units/0.5 mL injection, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837341000168104 diphtheria 2 units + tetanus 20 units vaccine injection, 5 x 0.5 mL syringes 20161031 +80518011000036101 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864421000168103 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 70 x 50 mL bags 20170131 +71721000036108 Risedronate Sodium EC Combi D (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium carbonate / colecalciferol sachets), 1 pack 900000000000526001 REPLACED BY association reference set 810601000168102 Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack 20160630 +75355011000036107 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 839701000168107 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 5 x 0.5 mL syringes 20161031 +650821000168107 Aquacel (403770) 2 cm x 45 cm rope, 5 900000000000526001 REPLACED BY association reference set 745041000168109 Aquacel (403770) 2 cm x 45 cm ribbon, 5 20160131 +1085541000168106 Fluzone High-Dose injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 1122711000168109 Fluzone High-Dose 2018 injection suspension, 10 x 0.5 mL syringes 20180430 +698421000168103 Bexsero injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822781000168108 Bexsero injection suspension, 0.5 mL syringe 20160831 +69539011000036104 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995381000168101 Cepacol Plus with Anaesthetic Blackcurrant lozenge, 16, blister pack 20170831 +81697011000036104 calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 867981000168101 glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag 20170131 +2921000036108 Clinoleic 20% injection: emulsion, 350 mL bag 900000000000526001 REPLACED BY association reference set 779111000168106 Clinoleic 20% injection emulsion, 350 mL bag 20160430 +689751000168107 Kenacomb Otic ear ointment, 5 g 900000000000526001 REPLACED BY association reference set 758291000168101 Kenacomb Otic ear ointment, 5 g 20160229 +87931000036108 Prostin E2 400 microgram/mL vaginal gel 900000000000526001 REPLACED BY association reference set 1005331000168108 Prostin E2 1 mg/3 g vaginal gel, 3 g syringe 20170930 +75052011000036103 rabies inactivated vaccine 2.5 units injection, vial 900000000000526001 REPLACED BY association reference set 821351000168106 rabies vaccine injection, vial 20160831 +73836011000036105 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825891000168105 H-B-Vax II Paediatric preservative free 5 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160930 +711701000168103 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005671000168101 Ropivacaine (Sandoz) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +78251011000036105 iopromide 15.377 g/20 mL (equivalent to 7.4 g/20 mL iodine) injection, 10 x 20 mL vials 900000000000526001 REPLACED BY association reference set 695511000168103 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 20 mL vials 20150430 +160451000036100 Oxycontin Reformulation 30 mg modified release tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 928885011000036102 Oxycontin 30 mg modified release tablet, 28, blister pack 20170731 +74869011000036109 Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083651000168108 Decongestant (Terry White Chemists) 0.05% nasal spray, 20 mL, pump pack 20180228 +33801011000036102 adrenaline 300 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726721000168105 adrenaline (epinephrine) 300 microgram/0.3 mL injection, 1 dose 20151130 +476131000168101 Lophlex HCU LQ 20 oral liquid: solution, 125 mL sachet 900000000000526001 REPLACED BY association reference set 725131000168102 HCU Lophlex LQ 20 oral liquid solution, 125 mL pouch 20151031 +933225741000036102 Naropin 1% (200 mg/20 mL) injection: solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005061000168102 Naropin 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +81611011000036106 glucose 5% (2.5 g/50 mL) injection, 70 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864411000168105 glucose monohydrate 5% (2.5 g/50 mL) injection, 70 x 50 mL bags 20170131 +57367011000036105 Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 20 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721821000168107 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla with Dropper 100 mg/mL oral liquid solution, 20 mL 20151031 +56931011000036103 Logicin Rapid Relief menthol and eucalyptus lozenge, 16 900000000000526001 REPLACED BY association reference set 861581000168102 Logicin Rapid Relief menthol and eucalyptus lozenge, 16 20161231 +73949011000036106 Priorix (measles virus (Schwarz) live attenuated vaccine + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine + rubella virus (Wistar RA 27/3) live attenuated vaccine) powder for injection, vial 900000000000526001 REPLACED BY association reference set 831041000168105 Priorix (measles + mumps + rubella live vaccine) powder for injection, vial 20160930 +45141011000036108 aciclovir 400 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 795841000168105 aciclovir 400 mg tablet 20161031 +50928011000036102 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 693971000168100 tape plaster adhesive hypoallergenic 2.5 cm x 5 m tape 20150331 +80635011000036109 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 867911000168107 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 1.5 L bag 20170131 +86445011000036100 bromhexine hydrochloride 8 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 24 900000000000526001 REPLACED BY association reference set 996001000168101 bromhexine hydrochloride 8 mg + cetylpyridinium chloride 1.33 mg lozenge, 24 20170831 +924707011000036108 Pemzo 20 mg capsule, 98 900000000000526001 REPLACED BY association reference set 717691000168109 Pemzo 20 mg enteric capsule, 98 20150930 +14141011000036100 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041471000168105 Gonal-F Pen 900 units (65.52 microgram)/1.5 mL injection solution, 1.5 mL injection device 20171130 +684011000168109 Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 838161000168104 Pneumovax-23 injection solution, 0.5 mL syringe 20161031 +21165011000036100 Norditropin Nordiflex 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726371000168107 Norditropin Nordiflex 5 mg/1.5 mL injection solution, 1.5 mL, injection device 20151031 +734201000168102 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 100 900000000000526001 REPLACED BY association reference set 843011000168109 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 100 20161031 +78212011000036108 benzoin sumatra 10% (100 mg/mL) + aloe vera 2% (20 mg/mL) + storax prepared 7.5% (75 mg/mL) + tolu balsam 2.5% (25 mg/mL) solution, 50 mL 900000000000526001 REPLACED BY association reference set 696421000168104 benzoin Sumatra 100 mg/mL + aloe vera 20 mg/mL + storax prepared 75 mg/mL + tolu balsam 25 mg/mL tincture, 50 mL 20150430 +75410011000036102 hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 1 mL vial 900000000000526001 REPLACED BY association reference set 825001000168108 hepatitis A adult vaccine 1440 ELISA units/mL injection, 1 mL vial 20160930 +87794011000036101 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724991000168104 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 36 x 125 mL bottles 20151031 +84624011000036106 calcium (as carbonate) 600 mg (calcium 600 g) tablet, 60 900000000000526001 REPLACED BY association reference set 860291000168105 calcium carbonate 1.5 g (calcium 600 mg) tablet, 60 20161231 +921872011000036107 Centrum Select 50 Plus tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 843341000168105 Centrum Select 50 Plus film-coated tablet, 100, bottle 20161031 +73656011000036101 Bordetella pertussis, fimbriae types 2 and 3 vaccine 900000000000526001 REPLACED BY association reference set 836261000168106 Bordetella pertussis fimbriae type 2 and 3 antigen 20161031 +30701000036107 Otrivin Plus nasal spray, 10 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085241000168109 Otrivin Plus nasal spray, 10 mL, pump pack 20180228 +900841000168107 PKU Sphere powder for oral liquid, 30 x 35 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 922541000168102 PKU Sphere20 Red Berry powder for oral liquid, 30 x 35 g sachets 20170430 +815221000168102 Entrip 50 mg tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 856831000168103 Entrip 50 mg film-coated tablet, 100, blister pack 20161231 +75390011000036108 hepatitis B vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 825901000168109 hepatitis B child vaccine 5 microgram/0.5 mL injection, 10 x 0.5 mL syringes 20160930 +87630011000036106 Levetiracetam (Sandoz) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003651000168109 Levetiracetam 1000 (Sandoz) 1 g film-coated tablet, 60, blister pack 20170930 +6439011000036109 Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722781000168105 Intron A Redipen 30 million units/1.2 mL injection solution 20151031 +82044011000036108 Ungvita 0.054% ointment 900000000000526001 REPLACED BY association reference set 694981000168100 Ungvita 0.099% ointment 20150430 +921083011000036109 Sorbi Sorbitol 70% non-crystallising oral liquid: solution 900000000000526001 REPLACED BY association reference set 690611000168105 Sorbi 70% non-crystallising oral liquid solution 20150331 +77406011000036103 Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 100, bottle 900000000000526001 REPLACED BY association reference set 861971000168107 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100, bottle 20161231 +12776011000036109 Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 5 x 0.4 mL ampoules 900000000000526001 REPLACED BY association reference set 684591000168105 Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses 20150131 +86108011000036102 Levetiracetam (Apo) 1 g tablet, 400, bottle 900000000000526001 REPLACED BY association reference set 1003221000168103 Levetiracetam 1000 (Apo) 1 g tablet, 400, bottle 20170930 +5441011000036108 Baraclude 1 mg tablet: film-coated 900000000000526001 REPLACED BY association reference set 829451000168101 Baraclude 1 mg film-coated tablet 20160930 +22264011000036102 neomycin 3.5 mg/g + bacitracin zinc 400 international units/g ointment 900000000000526001 REPLACED BY association reference set 689831000168108 neomycin 0.35% + bacitracin zinc 400 units/g ear ointment 20150331 +844501000168102 Zovirax 800 mg tablet, 35, bottle 900000000000526001 REPLACED BY association reference set 859231000168107 Zovirax Dispersible 800 mg tablet, 35, bottle 20161231 +711371000168109 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004511000168109 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +12168011000036108 Canesten Clotrimazole Thrush Treatment 6 Day 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 715071000168108 Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g 20150930 +12344011000036103 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 900000000000526001 REPLACED BY association reference set 792911000168108 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 4 x 28 20160531 +86999011000036105 carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% oromucosal paste, 5 g 900000000000526001 REPLACED BY association reference set 797591000168106 carmellose sodium 16.7% + gelatin 16.7% + pectin 16.7% paste, 5 g 20160630 +56721011000036105 Difflam Lozenge eucalyptus and menthol sugar free lozenge, 16 900000000000526001 REPLACED BY association reference set 995631000168106 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16 20170831 +933225841000036105 Naropin 0.2% (20 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004511000168109 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +930883011000036104 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872791000168107 Synthamin 9 Amino Acid 5.5% with Electrolytes intravenous infusion injection, 12 x 500 mL bottles 20170131 +933213931000036100 Levetiracetam (SCP) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003691000168104 Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60, blister pack 20170930 +42214011000036104 Eskazole 400 mg chewable tablet, 56 900000000000526001 REPLACED BY association reference set 844121000168104 Eskazole 400 mg tablet, 56 20161031 +156841000036106 Macrogol plus Electrolytes (Apo) solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674091000168108 Macrogol plus Electrolytes (Apo) powder for oral liquid, 30 sachets 20141031 +20353011000036108 Clofeme Thrush Treatment 3 Day 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715111000168101 Clofeme Thrush Treatment 3 Day 2% vaginal cream, 20 g, tube 20150930 +74946011000036104 Boostrix-IPV injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 840771000168108 Boostrix-IPV injection suspension, 10 x 0.5 mL syringes 20161031 +702661000168102 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 822591000168104 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack, composite pack 20160831 +20608011000036102 Citracal 250 mg (calcium 250 mg) tablet: film-coated, 120, bottle 900000000000526001 REPLACED BY association reference set 860061000168105 Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120, bottle 20161231 +86756011000036104 Calcia plus Vitamin D 400 IU chewable tablet, 120 900000000000526001 REPLACED BY association reference set 860151000168107 Calcia plus Vitamin D 400 IU chewable tablet, 120 20161231 +12804011000036109 Otocomb Otic ear drops: solution, 7.5 mL 900000000000526001 REPLACED BY association reference set 758401000168108 Otocomb Otic ear drops solution, 7.5 mL 20160229 +81708011000036109 calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 868221000168106 glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, 2 L bag 20170131 +53609011000036104 Cortef 1% spray: solution 900000000000526001 REPLACED BY association reference set 776871000168104 Cortef 1% spray solution 20160430 +2793011000036108 bee venom 900000000000526001 REPLACED BY association reference set 758481000168100 honey bee venom 20160229 +60750011000036108 Duro-Tuss Dry Cough Lozenge orange lozenge, 4, blister pack 900000000000526001 REPLACED BY association reference set 996321000168108 Duro-Tuss Dry Cough Lozenge orange lozenge, 4, blister pack 20170831 +693151000168107 diphtheria toxoid 2 Lf/0.5 mL + tetanus toxoid 2 Lf/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837381000168109 diphtheria 2 Lf + tetanus 2 Lf vaccine injection, 0.5 mL vial 20161031 +36816011000036102 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L 900000000000526001 REPLACED BY association reference set 834941000168108 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 2 L 20161031 +11721011000036102 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041321000168104 Aranesp Sureclick 150 microgram/0.3 mL injection solution, 0.3 mL injection device 20171130 +174821000036105 Levactam 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003071000168107 Levactam-1000 1 g film-coated tablet, 60 20170930 +75342011000036101 Q fever inactivated vaccine 2.5 microgram/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955101000168103 Q fever skin test injection, 0.5 mL vial 20170630 +81152011000036108 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags 900000000000526001 REPLACED BY association reference set 868491000168107 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 4 x 3 L bags 20170131 +74894011000036105 Spray-Tish menthol 0.118% nasal spray, 10 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085411000168106 Spray-Tish menthol 0.118% nasal spray, 10 mL, pump pack 20180228 +74724011000036103 Infanrix Penta injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 836781000168105 Infanrix Penta injection suspension, 10 x 0.5 mL syringes 20161031 +26817011000036100 haloperidol (as decanoate) 50 mg/mL injection, 5 x 1 mL vials 900000000000526001 REPLACED BY association reference set 679731000168107 haloperidol (as decanoate) 50 mg/mL injection, 5 x 1 mL ampoules 20141231 +921933011000036105 B-Dose (Biological Therapies) injection: solution, 3 x 2.5 mL vials 900000000000526001 REPLACED BY association reference set 704551000168108 B-Dose Forte (Biological Therapies) injection solution, 3 x 2.5 mL vials 20150630 +5477011000036101 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% cream 900000000000526001 REPLACED BY association reference set 715371000168106 Clotrimazole Thrush Treatment 6 Day (Terry White Chemists) 1% vaginal cream 20150930 +27637011000036104 paracetamol 500 mg + codeine phosphate 15 mg tablet, 20 900000000000526001 REPLACED BY association reference set 90181000036105 paracetamol 500 mg + codeine phosphate hemihydrate 15 mg tablet, 20 20161031 +86847011000036100 Orabase Protective Paste oromucosal paste, 5 g, tube 900000000000526001 REPLACED BY association reference set 797611000168101 Orabase Protective paste, 5 g, tube 20160630 +18905011000036108 Tenopt 0.5% eye drops solution, 5 mL, puffer pack 900000000000526001 REPLACED BY association reference set 948451000168101 Tenopt 0.5% eye drops solution, 5 mL, bottle 20170630 +28001000168102 Rivotril Drops 900000000000526001 REPLACED BY association reference set 19081000168107 Rivotril 20151130 +31311000036102 Movicol Chocolate solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674031000168109 Movicol Chocolate powder for oral liquid, 30 sachets 20141031 +72954011000036104 Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 10 mL syringe 900000000000526001 REPLACED BY association reference set 781261000168109 Apomine PFS 50 mg/10 mL injection solution, 10 mL syringe 20160430 +37844011000036100 aspirin 325 mg + codeine phosphate 30 mg tablet 900000000000526001 REPLACED BY association reference set 834391000168101 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet 20161031 +69033011000036100 Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g, jar 900000000000526001 REPLACED BY association reference set 705471000168102 Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g, jar 20150731 +664401000168103 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g 900000000000526001 REPLACED BY association reference set 833721000168101 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid, 100 g 20160930 +34377011000036103 Subutex 8 mg tablet, 28 900000000000526001 REPLACED BY association reference set 685741000168107 Subutex 8 mg sublingual tablet, 28 20150228 +711911000168102 Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005311000168103 Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +85394011000036104 Fleet Phospho-Soda oral liquid solution, bottle 900000000000526001 REPLACED BY association reference set 1097791000168101 Fleet Phospho-Soda oral liquid solution, bottle 20180331 +60200011000036108 Daktarin 2% oral gel, 15 g, tube 900000000000526001 REPLACED BY association reference set 820031000168106 Daktarin 2% oral gel, 15 g, tube 20160731 +722921000168108 Silver Nitrate Applicator (Medical and Surgical Requisites) stick, 100, tube 900000000000526001 REPLACED BY association reference set 729281000168106 Silver Nitrate Applicator (Grafco) stick, 100, tube 20151130 +40067011000036105 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 5 mL ampoule 900000000000526001 REPLACED BY association reference set 693231000168106 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 5 mL ampoule 20150331 +74293011000036101 Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 824781000168102 Havrix 1440 ELISA units/mL injection suspension, 1 mL syringe 20160930 +13583011000036103 Subutex 8 mg tablet, 7 900000000000526001 REPLACED BY association reference set 685651000168100 Subutex 8 mg sublingual tablet, 7 20150228 +69731000036100 Salofalk 1.5 g granules, 1.5 g sachet 900000000000526001 REPLACED BY association reference set 1084231000168101 Salofalk 1.5 g modified release granules, 1.5 g sachet 20180228 +73654011000036109 Bordetella pertussis, acellular pertactin vaccine 900000000000526001 REPLACED BY association reference set 836221000168101 Bordetella pertussis pertactin antigen 20161031 +70211000036102 Levetiracetam (Pfizer) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003581000168101 Levetiracetam 1000 (Pfizer) 1 g film-coated tablet 20170930 +711791000168109 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005581000168102 Ropivacaine (Sandoz) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +693161000168109 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection: suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837391000168107 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial 20161031 +137711000036102 exenatide 2 mg injection, vial 900000000000526001 REPLACED BY association reference set 833861000168102 exenatide 2 mg modified release injection, vial 20160930 +44191000168103 Recombinate 1000 IU 900000000000526001 REPLACED BY association reference set 710851000168104 Recombinate 20150831 +923324011000036109 Omeprazole (Pharmacor) 20 mg capsule, 140 900000000000526001 REPLACED BY association reference set 717121000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 140 20150930 +82129011000036103 Aspalgin dispersible tablet, 20 900000000000526001 REPLACED BY association reference set 834251000168101 Aspalgin dispersible tablet, 20 20161031 +12345011000036104 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 900000000000526001 REPLACED BY association reference set 792891000168106 Trifeme (6 x 50 microgram/30 microgram tablets, 5 x 75 microgram/40 microgram tablets, 10 x 125 microgram/30 microgram tablets, 7 x inert tablets), 28 20160531 +686821000168101 Plegridy 125 microgram/0.5 mL injection: solution, 0.5 mL injection device 900000000000526001 REPLACED BY association reference set 698631000168102 Plegridy 125 microgram/0.5 mL injection solution, 0.5 mL injection device 20150430 +74734011000036101 Infanrix Penta injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 836751000168103 Infanrix Penta injection suspension, 0.5 mL syringe 20161031 +929145011000036102 salicylic acid 2% (20 mg/g) + aqueous cream 980 mg/g cream 900000000000526001 REPLACED BY association reference set 705381000168107 salicylic acid 2% + aqueous cream 20150731 +1085481000168100 Fluzone High-Dose injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1122621000168109 Fluzone High-Dose 2018 injection suspension, 0.5 mL syringe 20180430 +61866011000036109 benzydamine hydrochloride 0.3% spray 900000000000526001 REPLACED BY association reference set 721301000168109 benzydamine hydrochloride 0.3% oral spray 20151031 +75449011000036100 Japanese encephalitis inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 822691000168100 Japanese encephalitis (mouse brain-derived) inactivated vaccine injection [3 vials] (&) inert substance diluent [3 x 1 mL vials], 1 pack 20160831 +823901000168105 Bydureon (1 x 2 mg cartridge, 1 x inert diluent cartridge), 1 pack 900000000000526001 REPLACED BY association reference set 833291000168108 Bydureon (exenatide 2 mg/dose + inert substance) modified release injection, 1 dual chamber device 20160930 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826101000168103 Streptococcus pneumoniae type 4 conjugate antigen 20160930 +921863011000036107 Calvid granules: effervescent, 30 x 7 g sachets 900000000000526001 REPLACED BY association reference set 810661000168101 Calvid effervescent granules, 30 x 7.3 g sachets 20160630 +65202011000036104 Microshield Handrub solution 900000000000526001 REPLACED BY association reference set 767631000168109 Microshield Handrub solution 20160331 +172951000036100 Levactam 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003061000168101 Levactam-1000 1 g film-coated tablet 20170930 +711661000168105 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005481000168101 Ropivacaine (Sandoz) 100 mg/10 mL injection solution, 10 mL ampoule 20170930 +41585011000036109 Zovirax 800 mg dispersible tablet, 5 900000000000526001 REPLACED BY association reference set 859471000168109 Zovirax Dispersible 800 mg tablet, 5 20161231 +57368011000036106 Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution, 5 mL 900000000000526001 REPLACED BY association reference set 721411000168103 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution, 5 mL 20151031 +12396011000036102 Lanoxin 50 microgram/mL oral liquid: solution, 60 mL 900000000000526001 REPLACED BY association reference set 735021000168104 Lanoxin Paediatric Elixir 50 microgram/mL oral liquid solution, 60 mL 20151231 +56847011000036102 Disprin Original 300 mg dispersible tablet, 96 900000000000526001 REPLACED BY association reference set 804231000168103 Disprin Original 300 mg tablet, 96 20160630 +60626011000036103 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 721911000168106 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL, bottle 20151031 +80633011000036108 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 867831000168106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 3 L bag 20170131 +18495011000036108 Pneumovax-23 25 microgram/0.5 mL injection: solution, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 838091000168105 Pneumovax-23 injection solution, 0.5 mL vial 20161031 +79515011000036105 Creon 25 000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847401000168108 Creon 25 000 enteric capsule, 100 20161130 +70451000036104 mesalazine 1 g granules, sachet 900000000000526001 REPLACED BY association reference set 23619011000036106 mesalazine 1 g modified release granules, sachet 20180228 +63084011000036107 aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg dispersible tablet, 24 900000000000526001 REPLACED BY association reference set 804151000168102 aspirin 500 mg + codeine phosphate hemihydrate 9.5 mg tablet, 24 20160630 +933225311000036102 Norditropin Flexpro 15 units (5 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726491000168104 Norditropin Flexpro 5 mg/1.5 mL injection solution, 1.5 mL 20151031 +74434011000036109 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 900000000000526001 REPLACED BY association reference set 831121000168103 Priorix (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 20160930 +2438011000036100 pancreatic extract 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 2524011000036100 protease 20161130 +138001000036100 Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection, vial 900000000000526001 REPLACED BY association reference set 846051000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection, vial 20161130 +987311000168103 sebelipase alfa 2 mg/mL injection, 1 mL vial 900000000000526001 REPLACED BY association reference set 1013331000168109 sebelipase alfa 20 mg/10 mL injection, 10 mL vial 20170930 +87841000036108 docosahexaenoic acid 22 mg + eicosapentaenoic acid 47 mg + krill oil 333.3 mg capsule 900000000000526001 REPLACED BY association reference set 88131000036105 krill oil 333.3 mg capsule 20170731 +75063011000036101 Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection, vial 900000000000526001 REPLACED BY association reference set 822551000168109 Mycobacterium bovis (BCG) live vaccine injection, vial 20160831 +3182011000036104 Granocyte 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 838211000168107 Granocyte-13 20161031 +19532011000036101 Otocomb Otic ear drops: solution, 7.5 mL, bottle 900000000000526001 REPLACED BY association reference set 758411000168106 Otocomb Otic ear drops solution, 7.5 mL, bottle 20160229 +698481000168104 Bexsero injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 822841000168109 Bexsero injection suspension, 10 x 0.5 mL syringes 20160831 +60728011000036106 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 200 mL, bottle 900000000000526001 REPLACED BY association reference set 721581000168108 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 200 mL, bottle 20151031 +74752011000036106 Polio Sabin Multidose oral liquid: solution, 100 vials 900000000000526001 REPLACED BY association reference set 839831000168107 Polio Sabin Multidose oral liquid solution, 100 vials 20161031 +57075011000036108 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16 900000000000526001 REPLACED BY association reference set 861251000168107 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge, 16 20161231 +50929011000036105 tape non woven retention polyacrylate 2.5 cm x 9.1 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 694141000168108 tape non woven retention polyacrylate 2.5 cm x 9.1 m tape 20150331 +82986011000036103 pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827611000168106 pneumococcal 10 valent conjugate vaccine injection, 0.5 mL syringe 20160930 +66835011000036107 Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g 900000000000526001 REPLACED BY association reference set 705461000168108 Salicylic Acid 3% in Aqueous Cream (David Craig) cream, 100 g 20150731 +86773011000036108 Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 704501000168109 Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial 20150630 +65419011000036107 Cepacol Mint 0.05% mouthwash 900000000000526001 REPLACED BY association reference set 995291000168108 Cepacol Mint 0.05% mouthwash 20170831 +77561000036103 aciclovir 800 mg dispersible tablet, 120 900000000000526001 REPLACED BY association reference set 28319011000036103 aciclovir 800 mg tablet, 120 20161031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836611000168106 Streptococcus pneumoniae type 1 polysaccharide antigen 20161031 +162341000036109 Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726661000168108 Anapen Auto-Injector 150 microgram/0.3 mL injection solution, dose 20151031 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826041000168100 Streptococcus pneumoniae type 18C conjugate antigen 20160930 +925355011000036104 Pemzo 20 mg capsule, 90, bottle 900000000000526001 REPLACED BY association reference set 717681000168106 Pemzo 20 mg enteric capsule, 90, bottle 20150930 +74713011000036109 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825661000168104 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL syringe 20160930 +81291011000036109 sodium acetate 3.9 mg/mL + calcium chloride 480 microgram/mL + citrate sodium dihydrate 1.7 mg/mL + magnesium chloride 300 microgram/mL + potassium chloride 750 microgram/mL + sodium chloride 6.4 mg/mL eye solution 900000000000526001 REPLACED BY association reference set 834141000168106 sodium chloride 6.4 mg/mL + potassium chloride 750 microgram/mL + calcium chloride dihydrate 480 microgram/mL + magnesium chloride 300 microgram/mL + sodium acetate 3.9 mg/mL + sodium citrate dihydrate 1.7 mg/mL eye solution 20161031 +987321000168105 Kanuma 2 mg/mL injection solution, 1 mL vial 900000000000526001 REPLACED BY association reference set 1013341000168100 Kanuma 20 mg/10 mL injection solution, 10 mL vial 20170930 +941611000168108 Metformin (AS) 1 g film-coated tablet, 30 900000000000526001 REPLACED BY association reference set 949501000168108 Metformin 1000 (AS) 1 g film-coated tablet, 30 20170630 +73635011000036109 human papillomavirus (type 16) vaccine 900000000000526001 REPLACED BY association reference set 822741000168103 human papillomavirus type 16 antigen 20160831 +933226521000036108 Fluoride Panda Punch (Laclede) foam, 165 mL 900000000000526001 REPLACED BY association reference set 932611000168102 Fluoride (Laclede) Panda Punch Flavour foam, 165 mL 20170531 +925165011000036100 Pemzo 20 mg capsule, 100, blister pack 900000000000526001 REPLACED BY association reference set 716271000168109 Pemzo 20 mg enteric capsule, 100, blister pack 20150930 +80516011000036100 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864361000168103 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 60 x 50 mL bags 20170131 +86127011000036109 Levetiracetam (Apo) 1 g tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003241000168109 Levetiracetam 1000 (Apo) 1 g tablet, 60, blister pack 20170930 +69952011000036101 chlorhexidine gluconate 1% lotion 900000000000526001 REPLACED BY association reference set 766761000168107 chlorhexidine gluconate 1% + ethanol 70% lotion 20160331 +35224011000036106 buprenorphine 400 microgram tablet, 100 900000000000526001 REPLACED BY association reference set 685811000168100 buprenorphine 400 microgram sublingual tablet, 100 20150228 +76808011000036108 Centrum tablet: film-coated, 250 900000000000526001 REPLACED BY association reference set 833441000168104 Centrum film-coated tablet, 250 20160930 +680571000168100 Zaldiar Combination Therapy 900000000000526001 REPLACED BY association reference set 1027811000168106 Zaldiar 20171031 +24661000036106 Albey Paper Wasp Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 758921000168105 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 20160229 +76805011000036102 Centrum tablet: film-coated, 14 900000000000526001 REPLACED BY association reference set 833081000168104 Centrum film-coated tablet, 14 20160930 +36701011000036107 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850611000168109 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, 50 x 1 mL ampoules 20161130 +142511000036108 typhoid fever live attenuated oral vaccine enteric capsule, 3 900000000000526001 REPLACED BY association reference set 827261000168106 typhoid live vaccine enteric capsule, 3 20160930 +81989011000036108 Silver Nitrate Applicator (Medical and Surgical Requisites) 900000000000526001 REPLACED BY association reference set 729251000168104 Silver Nitrate Applicator (Grafco) 20151130 +34036011000036103 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 835571000168109 Codeine Phosphate Linctus (Gilseal) 5 mg/mL oral liquid 20161031 +75349011000036106 rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 826331000168107 rubella live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 20160930 +88091000036107 Caltrate Plus with Vitamin D 400 IU and Minerals tablet: film-coated 900000000000526001 REPLACED BY association reference set 861841000168109 Caltrate Plus with Vitamin D 400 IU and Minerals film-coated tablet 20161231 +711901000168100 Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005301000168101 Ropibam 1% 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +66851011000036109 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g 900000000000526001 REPLACED BY association reference set 705691000168103 Salicylic Acid 5% in Sorbolene Cream (David Craig) cream, 100 g 20150731 +728791000168106 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006181000168100 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +49463011000036105 Combine Roll (2902165) (BSN) 9 cm x 10 m roll: wrapped pack, 1 pack 900000000000526001 REPLACED BY association reference set 688651000168107 Combine Roll (2902165) (BSN) 9 cm x 10 m wrapped pack roll, 1 20150331 +37347011000036109 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection: solution, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850431000168102 Atropine Sulfate (AstraZeneca) 400 microgram/mL injection solution, 50 x 1 mL ampoules 20161130 +925342011000036105 Omepro 20 mg capsule, 7, bottle 900000000000526001 REPLACED BY association reference set 716951000168109 Omepro 20 mg enteric capsule, 7, bottle 20150930 +81695011000036109 calcium chloride dihydrate 274.5 mg (calcium 1.87 mmol)/1.5 L + glucose 1.5% (22.5 g/1.5 L) + sodium lactate 6.72 g/1.5 L + magnesium chloride 76.2 mg/1.5 L + sodium chloride 8.07 g/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags 900000000000526001 REPLACED BY association reference set 867931000168102 glucose monohydrate 1.5% (22.5 g/1.5 L) + sodium chloride 8.07 g/1.5 L + sodium lactate 6.72 g/1.5 L + calcium chloride dihydrate 274.5 mg/1.5 L + magnesium chloride hexahydrate 76.2 mg/1.5 L peritoneal dialysis solution, 6 x 1.5 L bags 20170131 +86132011000036105 Levetiracetam (Apo) 1 g tablet, 60, bottle 900000000000526001 REPLACED BY association reference set 1003251000168106 Levetiracetam 1000 (Apo) 1 g tablet, 60, bottle 20170930 +67276011000036107 Panadol Children's 7+ Years 250 mg tablet: soluble, 24 900000000000526001 REPLACED BY association reference set 721611000168101 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 24 20151031 +13027011000036102 Panamax Co uncoated tablet, 50 900000000000526001 REPLACED BY association reference set 836071000168105 Panamax Co uncoated tablet, 50 20161031 +63525011000036100 pholcodine 5.5 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2 900000000000526001 REPLACED BY association reference set 996171000168107 pholcodine 5.5 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 20170831 +18857011000036101 Canesten Clotrimazole Thrush Treatment 6 Day 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715081000168106 Canesten Clotrimazole Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube 20150930 +91321000036101 Paclitaxel (GN) 300 mg/50 mL injection: solution, 50 mL vial 900000000000526001 REPLACED BY association reference set 730071000168109 Paclitaxel (GN) 300 mg/50 mL concentrated injection, 50 mL vial 20151130 +56528011000036102 Panadol Children's Elixir 5 to 12 Years 240 mg/5 mL oral liquid: solution, 100 mL 900000000000526001 REPLACED BY association reference set 721761000168106 Panadol Children's Elixir 5 to 12 Years Raspberry 240 mg/5 mL oral liquid solution, 100 mL 20151031 +63581000168104 Clozole Vaginal Cream (Meditab) 900000000000526001 REPLACED BY association reference set 715831000168100 Clozole (Meditab) 20150930 +80231011000036105 Cardioplegia A Solution (Baxter) perfusion solution, bag 900000000000526001 REPLACED BY association reference set 872221000168100 Cardioplegia A Solution (Baxter) perfusion solution, 1 L bag 20170131 +73934011000036109 Infanrix-IPV injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840791000168109 Infanrix-IPV injection suspension, 0.5 mL syringe 20161031 +13708011000036106 Kaletra 400/100 oral liquid: solution, 60 mL 900000000000526001 REPLACED BY association reference set 689481000168107 Kaletra oral liquid solution, 60 mL 20150331 +932465011000036102 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872811000168106 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 500 mL bottle 20170131 +75344011000036105 rabies inactivated vaccine 2.5 units injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 900000000000526001 REPLACED BY association reference set 821401000168104 rabies vaccine injection [5 vials] (&) inert substance diluent [5 x 1 mL ampoules], 1 pack 20160831 +75107011000036100 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840781000168106 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 20161031 +36179011000036107 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection: solution, ampoule 900000000000526001 REPLACED BY association reference set 850591000168104 Atropine Sulfate (AstraZeneca) 500 microgram/mL injection solution, ampoule 20161130 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836821000168100 Streptococcus pneumoniae type 7F polysaccharide antigen 20161031 +45299011000036100 etoposide 500 mg injection, vial 900000000000526001 REPLACED BY association reference set 793491000168103 etoposide phosphate 567.8 mg (etoposide 500 mg) injection, vial 20160531 +933214601000036104 Levetiracetam (LAPL) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003481000168100 Levetiracetam 1000 (LAPL) 1 g film-coated tablet, 60, blister pack 20170930 +80650011000036104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 868231000168109 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 20170131 +34800011000036107 Subutex 400 microgram tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 685861000168102 Subutex 400 microgram sublingual tablet, 28, blister pack 20150228 +85368011000036108 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge 900000000000526001 REPLACED BY association reference set 996031000168108 Duro-Tuss Chesty Cough Lozenge Sugar Free Lemon lozenge 20170831 +82522011000036104 atropine sulfate 600 microgram/mL injection, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850861000168108 atropine sulfate monohydrate 600 microgram/mL injection, 50 x 1 mL ampoules 20161130 +75382011000036106 human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823031000168102 human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe 20160831 +2931000036105 olive oil 56 mL/350 mL + soya oil 16 mL/350 mL injection, bag 900000000000526001 REPLACED BY association reference set 779101000168108 olive oil 56 g/350 mL + soya oil 14 g/350 mL injection, bag 20160430 +70331000036104 mesalazine 500 mg granules, sachet 900000000000526001 REPLACED BY association reference set 1084021000168107 mesalazine 500 mg modified release granules, sachet 20180228 +74422011000036103 H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825701000168106 H-B-Vax II preservative free 40 microgram/mL injection suspension, 1 mL vial 20160930 +83298011000036105 Prozero oral liquid: solution, 6 x 1 L bottles 900000000000526001 REPLACED BY association reference set 745401000168101 Prozero oral liquid solution, 6 x 1 L cartons 20160131 +107561000036100 dressing hydrogel 1 cm x 50 cm ribbon 900000000000526001 REPLACED BY association reference set 1056211000168108 dressing hydrophobic 1 cm x 50 cm ribbon 20171231 +125361000036107 adrenaline 500 microgram/0.3 mL injection, syringe 900000000000526001 REPLACED BY association reference set 726601000168107 adrenaline (epinephrine) 500 microgram/0.3 mL injection, dose 20151031 +94191000036104 meningococcal group A conjugate vaccine 4 microgram + meningococcal group C conjugate vaccine 4 microgram + meningococcal group W135 conjugate vaccine 4 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 4 microgram injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 826551000168108 meningococcal A 4 microgram + meningococcal C 4 microgram + meningococcal W135 4 microgram + meningococcal Y 4 microgram conjugate vaccine injection, 0.5 mL vial 20160930 +7356011000036106 Prodeine Forte uncoated tablet 900000000000526001 REPLACED BY association reference set 835801000168102 Prodeine Forte uncoated tablet 20161031 +65266011000036101 Ora-Sed Jel oral gel 900000000000526001 REPLACED BY association reference set 936641000168104 Ora-Sed Jel oral gel 20170531 +83607011000036109 Wagner Magnesium Forte 400 capsules: hard 900000000000526001 REPLACED BY association reference set 750211000168108 Magnesium Forte 400 (Wagner) hard capsule 20160131 +80217011000036109 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868341000168106 Dianeal PD-4 with Glucose 2.5% Freeline peritoneal dialysis solution, 3 L bag 20170131 +81139011000036102 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags 900000000000526001 REPLACED BY association reference set 868191000168100 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 6 x 1.5 L bags 20170131 +922076011000036106 calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet 900000000000526001 REPLACED BY association reference set 859861000168100 calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet 20161231 +73649011000036107 meningococcal group A polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 827371000168108 Neisseria meningitidis group A polysaccharide antigen 20160930 +921031011000036102 MD-Gastroview solution, 240 mL bottle 900000000000526001 REPLACED BY association reference set 696061000168101 MD-Gastroview solution 20150430 +473751000168100 HCU Cooler 15 oral liquid: solution, 130 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724101000168108 HCU Cooler 15 Red oral liquid solution, 130 mL pouch 20151031 +81610011000036104 glucose 5% (2.5 g/50 mL) injection, 65 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864381000168107 glucose monohydrate 5% (2.5 g/50 mL) injection, 65 x 50 mL bags 20170131 +679551000168109 botulinum toxin type A 200 units injection, 1 vial 900000000000526001 REPLACED BY association reference set 720951000168101 botulinum toxin type A 200 units injection, 1 vial 20151031 +73646011000036103 measles virus (Schwarz) live attenuated vaccine 900000000000526001 REPLACED BY association reference set 829861000168101 measles virus live antigen 20160930 +28171011000036104 follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041361000168109 follitropin alfa 300 units (21.84 microgram)/0.5 mL injection, 0.5 mL injection device 20171130 +81261011000036107 metoclopramide hydrochloride 5 mg + paracetamol 500 mg capsule 900000000000526001 REPLACED BY association reference set 867281000168106 metoclopramide 5 mg + paracetamol 500 mg capsule 20170131 +81296011000036104 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 2.5% (75 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 868331000168102 glucose monohydrate 2.5% (75 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 20170131 +922092011000036102 iopromide 31.17 g/50 mL (equivalent to 15 g/50 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695151000168106 iopromide 623 mg (iodine 300 mg)/mL injection, 50 mL bottle 20150430 +41228011000036104 Keppra 1 g tablet: film-coated, 10 900000000000526001 REPLACED BY association reference set 720991000168106 Keppra-1000 1 g film-coated tablet, 10 20151031 +75525011000036108 meningococcal group C conjugate vaccine 10 microgram injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 826451000168107 meningococcal C conjugate vaccine injection [5 vials] (&) inert substance diluent [5 x 0.5 mL syringes], 1 pack 20160930 +20739011000036108 Aerodiol 150 microgram/actuation nasal spray, 60 actuations, bottle 900000000000526001 REPLACED BY association reference set 1085391000168106 Aerodiol 150 microgram/actuation nasal spray, 60 actuations, pump pack 20180228 +29161000036100 Movicol Chocolate solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674021000168106 Movicol Chocolate powder for oral liquid, 30 sachets 20141031 +173211000036102 Molaxole solution: powder for, sachet 900000000000526001 REPLACED BY association reference set 674201000168107 Molaxole powder for oral liquid, sachet 20141031 +5428011000036101 Zovirax 800 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 859211000168102 Zovirax Dispersible 800 mg tablet 20161231 +776521000168103 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 996141000168100 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24, blister pack 20170831 +59740011000036109 Cepacol Plus with Anaesthetic Original Flavour lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995461000168100 Cepacol Plus with Anaesthetic Original Flavour lozenge, 16, blister pack 20170831 +50510011000036100 Monogen powder for oral liquid, 400 g, can 900000000000526001 REPLACED BY association reference set 949701000168103 Monogen powder for oral liquid, 400 g, can 20170630 +925157011000036101 Pemzo 20 mg capsule, 30, blister pack 900000000000526001 REPLACED BY association reference set 716721000168103 Pemzo 20 mg enteric capsule, 30, blister pack 20150930 +73808011000036103 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824961000168109 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +712031000168101 Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005241000168105 Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +251291000168103 PKU Anamix Junior oral liquid: powder for, 29 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 723941000168109 PKU Anamix Junior Unflavoured powder for oral liquid, 29 g sachet 20151031 +69173011000036108 Magnesium Sulfate (DBL) 2.465 g/5 mL (magnesium 10 mmol/5 mL) injection: concentrated, 10 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 701571000168101 Magnesium Sulfate (DBL) 2.47 g/5 mL concentrated injection, 10 x 5 mL ampoules 20150531 +797071000168102 Levetiracetam (Accord) 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003121000168107 Levetiracetam 1000 (Accord) 1 g film-coated tablet, 60, blister pack 20170930 +11985011000036101 Codalgin uncoated tablet, 50 900000000000526001 REPLACED BY association reference set 836021000168109 Codalgin uncoated tablet, 50 20161031 +154141000036106 Nicorette Quickmist 1 mg/actuation oral spray, 150 actuations, aerosol can 900000000000526001 REPLACED BY association reference set 1091961000168102 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 150 actuations, aerosol can 20180331 +50346011000036109 PKU Cooler10 Orange oral liquid: solution, 30 x 87 mL cans 900000000000526001 REPLACED BY association reference set 725561000168102 PKU Cooler 10 Orange oral liquid solution, 30 x 87 mL pouches 20151031 +77138011000036106 Fess 0.704% nasal spray, 75 mL, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 729571000168106 Fess 0.704% nasal spray, 75 mL, pump pack 20151130 +14309011000036100 Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726461000168106 Norditropin Nordiflex 15 mg/1.5 mL injection solution, 1.5 mL 20151031 +814971000168106 Entrip 10 mg tablet, 50 900000000000526001 REPLACED BY association reference set 855911000168106 Entrip 10 mg film-coated tablet, 50 20161231 +155111000036109 Macrogol plus Electrolytes (Apo) solution: powder for, sachet 900000000000526001 REPLACED BY association reference set 674071000168107 Macrogol plus Electrolytes (Apo) powder for oral liquid, sachet 20141031 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836811000168107 Streptococcus pneumoniae type 6B polysaccharide antigen 20161031 +101171000036105 liraglutide 18 mg/3 mL injection, 3 x 3 mL cartridges 900000000000526001 REPLACED BY association reference set 748101000168101 liraglutide 6 mg/mL injection, 3 x 3 mL injection devices 20160131 +12956011000036104 Movicol solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 673971000168109 Movicol powder for oral liquid, 30 sachets 20141031 +75110011000036103 meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 845881000168109 meningococcal C conjugate vaccine injection, 0.5 mL syringe 20161130 +920985011000036109 Citracal Plus D tablet: film-coated 900000000000526001 REPLACED BY association reference set 859871000168106 Citracal Plus D film-coated tablet 20161231 +36919011000036101 Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle 900000000000526001 REPLACED BY association reference set 775551000168100 Forthane 1 mL/mL inhalation solution, 100 mL 20160430 +921842011000036108 Berocca Performance Original effervescent tablet, 30, bottle 900000000000526001 REPLACED BY association reference set 829761000168105 Berocca Performance Original effervescent tablet, 30, bottle 20160930 +51402011000036103 tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694411000168103 tape plaster adhesive hypoallergenic 1.9 cm x 7.3 m dispenser tape, 1 roll 20150331 +63510011000036102 benzydamine hydrochloride 1% + cetylpyridinium chloride monohydrate 0.1% oral gel, 10 g 900000000000526001 REPLACED BY association reference set 995951000168107 benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel, 10 g 20170831 +78201011000036104 psyllium dried 520 mg/g + senna dried 100 mg/g granules, 250 g 900000000000526001 REPLACED BY association reference set 832451000168106 dry psyllium seed 520 mg/g + dry Tinnevelly senna fruit 100 mg/g granules, 250 g 20160930 +86234011000036104 magnesium carbonate heavy 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet 900000000000526001 REPLACED BY association reference set 830911000168103 magnesium carbonate hydrate 7.5 g + citric acid 14 g powder for oral liquid, 21.5 g sachet 20160930 +718841000168104 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + hepatitis B vaccine 10 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection [1 syringe] (&) Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection [1 vial], 1 pack 900000000000526001 REPLACED BY association reference set 840911000168102 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection [0.5 mL syringe] (&) Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial], 1 pack 20161031 +27829011000036103 etoposide 1 g injection, 1 vial 900000000000526001 REPLACED BY association reference set 793601000168106 etoposide phosphate 1.136 g (etoposide 1 g) injection, 1 vial 20160531 +86728011000036104 Orabase Protective Paste oromucosal paste, 5 g 900000000000526001 REPLACED BY association reference set 797601000168104 Orabase Protective paste, 5 g 20160630 +78312011000036102 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 250 900000000000526001 REPLACED BY association reference set 833431000168108 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 250 20160930 +32960011000036107 Soflax 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 734081000168104 Soflax (AN) 20151130 +104111000036101 Irbesartan (Apo) 300 mg tablet, 30, blister pack 900000000000526001 REPLACED BY association reference set 807821000168107 Irbesartan (Apo) 300 mg film-coated tablet, 30, blister pack 20160630 +924868011000036105 Omepro 20 mg capsule, 100 900000000000526001 REPLACED BY association reference set 716221000168108 Omepro 20 mg enteric capsule, 100 20150930 +60204011000036103 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 861461000168105 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 16, blister pack 20161231 +54236011000036100 Clotrimazole 3 Day Treatment (Pharmacist) 2% cream 900000000000526001 REPLACED BY association reference set 715681000168103 Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream 20150930 +55736011000036100 Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 20 mL 900000000000526001 REPLACED BY association reference set 721641000168102 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 20 mL 20151031 +57101011000036107 Difflam Anti-Inflammatory Throat Spray 0.15% spray: solution, 30 mL 900000000000526001 REPLACED BY association reference set 721281000168105 Difflam Anti-Inflammatory Throat 0.15% oral spray, 30 mL 20151031 +925290011000036109 Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083701000168103 Drixine Metered Pump Decongestant 0.05% nasal spray, 15 mL, pump pack 20180228 +859081000168102 Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations, bottle 900000000000526001 REPLACED BY association reference set 1087271000168105 Nasonex Allergy 50 microgram/actuation nasal spray, 65 actuations, pump pack 20180331 +726871000168103 Epipen Auto-Injector 300 microgram/0.3 mL injection, 60 doses 900000000000526001 REPLACED BY association reference set 881171000168107 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose 20170228 +150811000036108 Lax-Sachets solution: powder for, 30 sachets 900000000000526001 REPLACED BY association reference set 674291000168101 Lax-Sachets powder for oral liquid, 30 sachets 20141031 +157001000036100 Istodax (1 x 10 mg vial, 1 x inert diluent vial), 1 pack, vial 900000000000526001 REPLACED BY association reference set 828511000168106 Istodax (1 x 10 mg vial, 1 x 2 mL inert diluent vial), 1 pack, composite pack 20160930 +728011000168100 Lovan 20 mg dispersible tablet, 7, blister pack 900000000000526001 REPLACED BY association reference set 844781000168104 Lovan 20 mg tablet, 7, blister pack 20161031 +81691011000036107 calcium chloride dihydrate 457.5 mg (calcium 3.11 mmol)/2.5 L + glucose 1.5% (37.5 g/2.5 L) + sodium lactate 11.2 g/2.5 L + magnesium chloride 127 mg/2.5 L + sodium chloride 13.45 g/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags 900000000000526001 REPLACED BY association reference set 867771000168101 glucose monohydrate 1.5% (37.5 g/2.5 L) + sodium chloride 13.45 g/2.5 L + sodium lactate 11.2 g/2.5 L + calcium chloride dihydrate 457.5 mg/2.5 L + magnesium chloride hexahydrate 127 mg/2.5 L peritoneal dialysis solution, 4 x 2.5 L bags 20170131 +921867011000036103 Cardiprin 100 mg dispersible tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 804091000168106 Cardiprin 100 mg tablet, 100, blister pack 20160630 +174981000036103 olodaterol 2.5 microgram/actuation inhalation: pressurised, 60 actuations 900000000000526001 REPLACED BY association reference set 701501000168106 olodaterol 2.5 microgram/actuation inhalation solution, 60 actuations 20150531 +711351000168100 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004571000168101 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +929651011000036102 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 10 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850851000168106 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules 20161130 +712061000168109 Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005181000168107 Ropibam 0.2% 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +8891000168108 Creon 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 847491000168102 Creon 5000 20161130 +74255011000036108 Cervarix injection suspension, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823221000168108 Cervarix injection suspension, 20 x 0.5 mL syringes 20160831 +84803011000036106 Elevit tablet: film-coated 900000000000526001 REPLACED BY association reference set 843081000168103 Elevit film-coated tablet (Old Formulation 2014) 20161031 +38702011000036105 risedronate sodium 35 mg tablet [4] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [24 sachets], 1 pack 900000000000526001 REPLACED BY association reference set 810511000168100 risedronate sodium 35 mg tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 20160630 +74204011000036102 Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 826341000168103 Meruvax II (1 x 1000 TCID50 units vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 20160930 +3641000036101 Zactin 20 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 844381000168103 Zactin 20 mg tablet 20161031 +730611000168105 Granisetron (AFT) 1 mg/mL injection: concentrated, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 747111000168102 Granisetron (AFT) 1 mg/mL injection solution, 5 x 1 mL ampoules 20160131 +150531000036101 Nicorette Quickmist 1 mg/actuation oral spray, 2 x 150 actuations 900000000000526001 REPLACED BY association reference set 1092181000168102 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations 20180331 +43807011000036109 Voluven 6% / 0.9% injection solution, 20 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013431000168103 Voluven injection solution, 20 x 500 mL bags 20170930 +13808011000036108 Creon 5000 units modified release capsule, 100 900000000000526001 REPLACED BY association reference set 847531000168102 Creon 5000 enteric capsule, 100 20161130 +77392011000036108 Centrum tablet: film-coated, 250, bottle 900000000000526001 REPLACED BY association reference set 833451000168102 Centrum film-coated tablet, 250, bottle 20160930 +20993011000036106 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 1041381000168100 Gonal-F Pen 300 units (21.84 microgram)/0.5 mL injection solution, 0.5 mL injection device 20171130 +67168011000036100 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 863641000168109 Glucose (Fresenius Kabi) 10% (50 g/500 mL) intravenous infusion injection, 500 mL bag 20170131 +729881000168107 calcium (as citrate) 315 mg (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100 900000000000526001 REPLACED BY association reference set 859991000168100 calcium citrate 1.5 g (calcium 315 mg) + colecalciferol 12.5 microgram (500 units) tablet, 100 20161231 +137841000036109 Ropivacaine Hydrochloride (Kabi) 1% (200 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1006221000168108 Ropivacaine 1% (Kabi) 200 mg/20 mL injection solution, 20 mL ampoule 20170930 +81047011000036103 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags 900000000000526001 REPLACED BY association reference set 864261000168107 Glucose (Fresenius Kabi) 5% (2.5 g/50 mL) intravenous infusion injection, 40 x 50 mL bags 20170131 +703611000168106 meningococcal group A conjugate vaccine 5 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, vial 900000000000526001 REPLACED BY association reference set 826911000168103 meningococcal A 5 microgram + meningococcal C 5 microgram + meningococcal W135 5 microgram + meningococcal Y 5 microgram conjugate vaccine injection, vial 20160930 +82859011000036106 Synflorix 16 microgram injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827661000168109 Synflorix injection suspension, 10 x 0.5 mL syringes 20160930 +933232151000036106 fluoride + hydrofluoric acid 900000000000526001 REPLACED BY association reference set 61768011000036106 fluoride 20170531 +98871000036104 Victoza 18 mg/3 mL injection: solution, 3 mL cartridge 900000000000526001 REPLACED BY association reference set 748031000168107 Victoza 6 mg/mL injection solution, 3 mL injection device 20160131 +932466011000036109 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium (as chloride) 60.97 mg (magnesium 2.5 mmol)/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (phosphorus 15 mmol + potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles 900000000000526001 REPLACED BY association reference set 872781000168109 alanine 5.7 g/500 mL + arginine 3.16 g/500 mL + glycine 2.83 g/500 mL + histidine 1.32 g/500 mL + isoleucine 1.65 g/500 mL + leucine 2.01 g/500 mL + lysine hydrochloride 1.6 g/500 mL + magnesium chloride hexahydrate 510 mg/500 mL + methionine 1.1 g/500 mL + phenylalanine 1.54 g/500 mL + dibasic potassium phosphate 2.61 g (potassium 30 mmol)/500 mL + proline 1.87 g/500 mL + serine 1.375 g/500 mL + sodium acetate trihydrate 2.155 g/500 mL + sodium chloride 1.12 g/500 mL + threonine 1.155 g/500 mL + tryptophan 495 mg/500 mL + tyrosine 110 mg/500 mL + valine 1.595 g/500 mL injection, 12 x 500 mL bottles 20170131 +13882011000036106 Probitor 20 mg capsule, 30 900000000000526001 REPLACED BY association reference set 717711000168107 Probitor 20 mg enteric capsule, 30 20150930 +46211000036101 Remeron 15 mg tablet: orally disintegrating, 30, blister pack 900000000000526001 REPLACED BY association reference set 783831000168101 Remeron Soltab 15 mg orally disintegrating tablet, 30, blister pack 20160531 +815071000168106 Entrip 25 mg tablet, 10, blister pack 900000000000526001 REPLACED BY association reference set 856681000168101 Entrip 25 mg film-coated tablet, 10, blister pack 20161231 +921994011000036101 Sorbi Sorbitol 70% non-crystallising oral liquid: solution, 500 mL, bottle 900000000000526001 REPLACED BY association reference set 690641000168109 Sorbi 70% non-crystallising oral liquid solution, 500 mL, bottle 20150331 +21968011000036109 leuprorelin acetate 45 mg injection: modified release, syringe 900000000000526001 REPLACED BY association reference set 750011000168102 leuprorelin acetate 45 mg modified release injection, syringe 20160331 +639621000168100 Recombinate 250 IU (inert substance) diluent, 10 mL vial 900000000000526001 REPLACED BY association reference set 710871000168108 Recombinate (inert substance) diluent, 10 mL vial 20150831 +33245011000036101 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 707341000168108 Lucrin Depot 3-Month (1 x 22.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 20150731 +94711000036105 boric acid 8.6 mg (boron 1.5 mg) + calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 12.5 microgram (500 units) + magnesium (as citrate nonahydrate) 21.43 mg + magnesium (as oxide heavy) 31.07 mg + manganese (as sulfate monohydrate) 2 mg + phytomenadione 100 microgram tablet, 90 900000000000526001 REPLACED BY association reference set 932971000168104 colecalciferol 12.5 microgram (500 units) + calcium carbonate 1.5 g (calcium 600 mg) + magnesium citrate nonahydrate 195.7 mg + magnesium oxide heavy 51.5 mg + manganese sulfate monohydrate 6.2 mg + phytomenadione 100 microgram + boric acid 8.6 mg tablet, 90 20170531 +34708011000036107 Codeine Phosphate (Phebra) 50 mg/mL injection: solution, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 835671000168108 Codeine Phosphate (Phebra) 50 mg/mL injection solution, 5 x 1 mL ampoules 20161031 +56778011000036100 Difflam Lozenge double mint sugar free lozenge, 16 900000000000526001 REPLACED BY association reference set 995601000168104 Difflam Lozenge Double Mint Sugar Free lozenge, 16 20170831 +821651000168103 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955121000168107 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 20170630 +927574011000036102 Citrulline 900000000000527005 SAME AS association reference set 106531000036108 Citrulline 1000 20151130 +101391000036107 Irbesartan (Apo) 300 mg tablet, 30 900000000000526001 REPLACED BY association reference set 807811000168100 Irbesartan (Apo) 300 mg film-coated tablet, 30 20160630 +74378011000036107 Comvax injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 832341000168102 Comvax injection suspension, 10 x 0.5 mL vials 20160930 +932851011000036104 Lasix High Dose 20 mg/2 mL injection: solution, 5 x 2 mL ampoules 900000000000526001 REPLACED BY association reference set 704831000168104 Lasix 20 mg/2 mL injection solution, 5 x 2 mL ampoules 20150630 +82559011000036105 calcium (as carbonate) 600 mg (calcium 600 g) tablet, 100 900000000000526001 REPLACED BY association reference set 860361000168107 calcium carbonate 1.5 g (calcium 600 mg) tablet, 100 20161231 +18342011000036102 Haldol Decanoate 50 mg/mL injection: solution, 5 x 1 mL vials, ampoule 900000000000526001 REPLACED BY association reference set 679771000168105 Haldol Decanoate 50 mg/mL injection solution, 5 x 1 mL ampoules 20141231 +925169011000036103 Pemzo 20 mg capsule, 60, blister pack 900000000000526001 REPLACED BY association reference set 717441000168103 Pemzo 20 mg enteric capsule, 60, blister pack 20150930 +757481000168104 Ursodox 250 mg capsule: hard, 60 900000000000526001 REPLACED BY association reference set 765981000168109 Ursodox (GH) 250 mg hard capsule, 60 20160331 +61711000168103 Compound Benzoin Tincture Friar's Balsam (Orion) 900000000000526001 REPLACED BY association reference set 696391000168106 Compound Benzoin Friar's Balsam (Orion) 20150430 +675001000168101 Simponi Smartject 100 mg/mL injection: solution, 1 mL syringe 900000000000526001 REPLACED BY association reference set 845831000168108 Simponi Smartject 100 mg/mL injection solution, 1 mL injection device 20161130 +55663011000036109 Anti Fungal V 6 Day (Amcal) 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 714981000168106 Anti Fungal V 6 Day (Amcal) 1% vaginal cream, 35 g 20150930 +89871000036107 Paclitaxel (GN) 100 mg/16.7 mL injection: solution, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 730001000168104 Paclitaxel (GN) 100 mg/16.7 mL concentrated injection, 16.7 mL vial 20151130 +74995011000036101 Yellow fever live attenuated vaccine 900000000000526001 REPLACED BY association reference set 822181000168107 yellow fever live vaccine 20160831 +75514011000036101 meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 845931000168104 meningococcal C conjugate vaccine injection, 10 x 0.5 mL syringes 20161130 +900053011000036105 Voltaren Emulgel 1% gel, 50 g, tube 900000000000526001 REPLACED BY association reference set 1037081000168105 Voltaren Emulgel 1.16% gel, 50 g, tube 20171130 +243881000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL can 900000000000526001 REPLACED BY association reference set 725521000168107 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 87 mL pouch 20151031 +50530011000036105 Lophlex oral liquid: powder for, 30 x 27.8 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 725191000168103 PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets 20151031 +74891011000036107 Comvax injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 832351000168100 Comvax injection suspension, 10 x 0.5 mL vials 20160930 +2871000036103 olive oil 80 mL/500 mL + soya oil 20 mL/500 mL injection, bag 900000000000526001 REPLACED BY association reference set 771801000168104 olive oil 80 g/500 mL + soya oil 20 g/500 mL injection, bag 20160430 +18393011000036101 ADT Booster injection: suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837361000168100 ADT Booster injection suspension, 5 x 0.5 mL syringes 20161031 +930838011000036102 Actonel EC Combi D (1 x Once-a-Week tablet, 6 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack 900000000000526001 REPLACED BY association reference set 810291000168106 Actonel EC Combi D (1 x Actonel EC Once-a-Week tablet, 6 x Actonel EC Combi D sachets), 1 pack 20160630 +65414011000036106 Chlorhexidine Gluconate Hand Lotion (Orion) 1% lotion 900000000000526001 REPLACED BY association reference set 766771000168101 Chlorhexidine Hand Lotion (Orion) lotion 20160331 +75001011000036103 diphtheria toxoid vaccine + Haemophilus influenzae type b vaccine + hepatitis B vaccine + Bordetella pertussis, acellular pertactin vaccine + Bordetella pertussis, acellular pertussis toxoid vaccine + Bordetella pertussis, filamentous haemagglutinin vaccine + poliomyelitis virus type 1 (Mahoney) inactivated vaccine + poliomyelitis virus type 2 (MEF1) inactivated vaccine + poliomyelitis virus type 3 (Saukett) inactivated vaccine + tetanus toxoid vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836641000168105 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine 20161031 +989781000168104 Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1087151000168108 Decongestant (Blooms The Chemist) 0.05% nasal spray, 20 mL, pump pack 20180331 +35760011000036103 carbomer-974 0.3% eye gel, 30 x 500 mg unit doses 900000000000526001 REPLACED BY association reference set 718731000168101 carbomer-974P 0.3% eye gel, 30 x 500 mg unit doses 20150930 +67132011000036107 Friars' Balsam Compound Benzoin Tincture (Gold Cross) tincture, 25 mL 900000000000526001 REPLACED BY association reference set 688431000168104 Friars' Balsam Compound Benzoin (Gold Cross) tincture, 25 mL 20150331 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836901000168104 Streptococcus pneumoniae type 15B polysaccharide antigen 20161031 +54185011000036100 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge 900000000000526001 REPLACED BY association reference set 861231000168101 Anti-Inflammatory Lozenge (Amcal) Raspberry lozenge 20161231 +74350011000036108 Vaqta Adult 50 units/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 824931000168101 Vaqta Adult 50 units/mL injection suspension, 1 mL vial 20160930 +13156011000036109 Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722801000168109 Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL 20151031 +689591000168109 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 900000000000526001 REPLACED BY association reference set 831301000168105 Priorix-Tetra (1 x vaccine vial, 1 x 0.5 mL inert diluent ampoule), 1 pack 20160930 +75451011000036101 hepatitis A inactivated vaccine 25 units/0.5 mL injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 825111000168105 hepatitis A child/adolescent vaccine 25 units/0.5 mL injection, 0.5 mL vial 20160930 +66861000036109 glycerophosphoric acid + liver extract + thiamine 900000000000526001 REPLACED BY association reference set 688101000168101 iron + calcium + potassium + sodium + manganese + thiamine + bovine liver 20150331 +252121000168101 Lophlex LQ 10 oral liquid: solution, 62.5 mL can 900000000000526001 REPLACED BY association reference set 726241000168106 Lophlex LQ 10 oral liquid solution, 62.5 mL pouch 20151031 +31541000036107 typhoid fever polysaccharide vaccine + hepatitis A inactivated vaccine 900000000000526001 REPLACED BY association reference set 827291000168104 hepatitis A + typhoid vaccine 20160930 +74902011000036107 Dimetapp 12 Hour 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083671000168104 Dimetapp 12 Hour 0.05% nasal spray, 20 mL, pump pack 20180228 +82128011000036106 Aspalgin dispersible tablet, 100 900000000000526001 REPLACED BY association reference set 834371000168102 Aspalgin dispersible tablet, 100 20161031 +922086011000036104 alpha tocopherol acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet 900000000000526001 REPLACED BY association reference set 843211000168103 dl-alpha-tocopheryl acetate 17.9 mg (18 units) + ascorbic acid 120 mg + betacarotene 2.4 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 307.6 microgram (chromium 60 microgram) + colecalciferol 5 microgram + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 3 microgram + iron (as ferrous fumarate) 3.5 mg + folic acid 300 microgram + iodine 100 microgram + magnesium (as oxide heavy) 100 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 32 microgram + potassium (as sulfate) 40 mg + pyridoxine hydrochloride 3.65 mg + retinol acetate 459 microgram (1333 units) + riboflavin 2.4 mg + selenium 25 microgram + thiamine nitrate 2.6 mg + zinc (as oxide) 5 mg tablet 20161031 +71859011000036106 benzyl alcohol 5 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 2 900000000000526001 REPLACED BY association reference set 995081000168104 benzyl alcohol 5 mg + cetylpyridinium chloride 1.3 mg lozenge, 2 20170831 +923761011000036101 Omeprazole (Pharmacor) 20 mg capsule, 500, blister pack 900000000000526001 REPLACED BY association reference set 717311000168106 Omeprazole (Pharmacor) 20 mg enteric capsule, 500, blister pack 20150930 +923895011000036104 Creon Micro 5000 units/100 mg enteric coated granules, 20 g, bottle 900000000000526001 REPLACED BY association reference set 847181000168106 Creon Micro enteric coated granules, 20 g, bottle 20161130 +19529011000036109 Otocomb Otic ointment, 5 g, tube 900000000000526001 REPLACED BY association reference set 758381000168108 Otocomb Otic ear ointment, 5 g, tube 20160229 +29421000036103 typhoid fever polysaccharide vaccine 25 microgram + hepatitis A inactivated vaccine 160 ELISA units injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 827321000168107 hepatitis A + typhoid vaccine injection, 1 mL syringe 20160930 +74246011000036103 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825261000168102 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL syringes 20160930 +27818011000036100 buprenorphine 400 microgram tablet, 7 900000000000526001 REPLACED BY association reference set 685871000168108 buprenorphine 400 microgram sublingual tablet, 7 20150228 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836851000168108 Streptococcus pneumoniae type 9V polysaccharide antigen 20161031 +926707011000036101 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 825501000168101 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 20160930 +75405011000036109 hepatitis A inactivated vaccine 360 ELISA units + hepatitis B vaccine 10 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824531000168107 hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe 20160930 +141781000036102 lanreotide 120 mg injection, 1 syringe 900000000000526001 REPLACED BY association reference set 819401000168109 lanreotide 120 mg/0.5 mL injection, 0.5 mL syringe 20160731 +923940011000036106 smallpox live vaccine 900000000000526001 REPLACED BY association reference set 821281000168108 smallpox live vaccine 20160831 +921495011000036100 Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60 900000000000526001 REPLACED BY association reference set 842811000168107 Vitamin E (Cenovis) 250 mg (250 units) soft capsule, 60 20161031 +81295011000036106 calcium chloride dihydrate 549 mg (calcium 3.75 mmol)/3 L + glucose 4.25% (127.5 g/3 L) + sodium lactate 13.44 g/3 L + magnesium chloride 152.4 mg/3 L + sodium chloride 16.14 g/3 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 868281000168105 glucose monohydrate 4.25% (127.5 g/3 L) + sodium chloride 16.14 g/3 L + sodium lactate 13.44 g/3 L + calcium chloride dihydrate 549 mg/3 L + magnesium chloride hexahydrate 152.4 mg/3 L peritoneal dialysis solution, bag 20170131 +34731011000036105 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 834801000168101 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 100, blister pack 20161031 +927418011000036105 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection, 10 vials 900000000000526001 REPLACED BY association reference set 831141000168109 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection, 10 vials 20160930 +669601000168100 Allmercap 20 mg/mL oral liquid suspension, 100 mL 900000000000526001 REPLACED BY association reference set 845401000168104 Allmercap 20 mg/mL oral liquid suspension, 100 mL 20161130 +13790011000036106 Citracal 250 mg (calcium 250 mg) tablet: film-coated, 120 900000000000526001 REPLACED BY association reference set 860051000168108 Citracal 1.19 g (calcium 250 mg) film-coated tablet, 120 20161231 +74904011000036103 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, bottle 900000000000526001 REPLACED BY association reference set 1082871000168108 Beconase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack 20180228 +921010011000036104 Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 50 mL vial 900000000000526001 REPLACED BY association reference set 696351000168101 Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 50 mL bottle 20150430 +21283011000036100 fluticasone 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 860171000168103 fluticasone furoate 20161231 +74896011000036102 Beconase Allergy and Hayfever 12 Hour 0.05% (50 microgram/actuation) nasal spray, 100 actuations, bottle 900000000000526001 REPLACED BY association reference set 696321000168109 Beconase Allergy and Hayfever 12 Hour 50 microgram/actuation nasal spray, 100 actuations, pump pack 20150430 +716041000168106 meningococcal group C conjugate vaccine + meningococcal group W135 conjugate vaccine + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 900000000000526001 REPLACED BY association reference set 826681000168102 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine 20160930 +9041000036106 Clinoleic 20% injection: emulsion, 250 mL bag 900000000000526001 REPLACED BY association reference set 771781000168103 Clinoleic 20% injection emulsion, 250 mL bag 20160430 +703061000168104 Fluarix Tetra 2015 injection: suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 709811000168105 Fluarix Tetra 2015 injection suspension, 10 x 0.5 mL syringes 20150731 +711301000168104 Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1004591000168100 Naropin 0.2% 40 mg/20 mL injection solution, 20 mL ampoule 20170930 +925141011000036106 Omepro 20 mg capsule, 7, blister pack 900000000000526001 REPLACED BY association reference set 716901000168105 Omepro 20 mg enteric capsule, 7, blister pack 20150930 +49529011000036106 PKU Cooler15 Purple oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725671000168107 PKU Cooler 15 Purple oral liquid solution, 30 x 130 mL pouches 20151031 +71696011000036101 benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture, 200 mL 900000000000526001 REPLACED BY association reference set 688471000168101 benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 200 mL 20150331 +37941000036108 Tadim 1 million units (80 mg) powder for inhalation, 30 vials 900000000000526001 REPLACED BY association reference set 818131000168100 Tadim 1 million units powder for inhalation, 30 vials 20160731 +154341000036108 Celestone Chronodose injection: suspension, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 746351000168100 Celestone Chronodose injection suspension, 5 x 1 mL ampoules 20160131 +80220011000036101 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 900000000000526001 REPLACED BY association reference set 868131000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 1.5 L bag 20170131 +844841000168103 Zovirax 400 mg tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 859571000168108 Zovirax Dispersible 400 mg tablet, 100, blister pack 20161231 +74802011000036103 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 900000000000526001 REPLACED BY association reference set 822911000168104 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 1.5 mL syringe 20160831 +68695011000036100 Cepacol 0.05% mouthwash, 500 mL, bottle 900000000000526001 REPLACED BY association reference set 995021000168103 Cepacol 0.05% mouthwash, 500 mL, bottle 20170831 +14601000036104 Clinoleic 20% injection: emulsion, 250 mL bag 900000000000526001 REPLACED BY association reference set 771791000168100 Clinoleic 20% injection emulsion, 250 mL bag 20160430 +36175011000036105 Marcain Spinal Heavy injection: solution, 4 mL ampoule 900000000000526001 REPLACED BY association reference set 863571000168101 Marcain Spinal Heavy injection solution, 4 mL ampoule 20170131 +49434011000036103 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694421000168105 Nexcare Gentle Paper First Aid Tape (789) 1.9 cm x 7.3 m dispenser tape, 1 roll 20150331 +82916011000036101 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000526001 REPLACED BY association reference set 827581000168104 pneumococcal 10 valent conjugate vaccine 20160930 +900030011000036103 Voltaren Emulgel 1% gel, 20 g 900000000000526001 REPLACED BY association reference set 1037041000168100 Voltaren Emulgel 1.16% gel, 20 g 20171130 +84439011000036106 macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g + ascorbic acid 5.96 g powder for oral liquid, 70 g sachet 900000000000526001 REPLACED BY association reference set 901061000168108 macrogol-3350 52.9 g + sodium chloride 2.61 g + potassium chloride 739 mg (potassium 10 mmol) + sodium sulfate 5.64 g powder for oral liquid, 70 g sachet 20170331 +86633011000036104 Calcia-1000 1 g (calcium 1 g) chewable tablet 900000000000526001 REPLACED BY association reference set 859921000168102 Calcia-1000 2.5 g (calcium 1 g) chewable tablet 20161231 +82112011000036103 MSUD Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724951000168109 MSUD Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 20151031 +924769011000036100 Panadol Children's 3+ Years 120 mg tablet: chewable, 24 900000000000526001 REPLACED BY association reference set 721691000168105 Panadol Children's 3+ Years Cherry 120 mg chewable tablet, 24 20151031 +5063011000036106 Nemdyn Otic ointment 900000000000526001 REPLACED BY association reference set 689841000168104 Nemdyn Otic ear ointment 20150331 +49462011000036103 Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m roll: wrapped pack, 1 pack 900000000000526001 REPLACED BY association reference set 688621000168104 Combine Roll (12010) (Johnson & Johnson Medical) 10 cm x 10 m wrapped pack roll, 1 20150331 +926706011000036104 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825471000168107 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20160930 +933230531000036105 Levitaccord 1000 mg 1 g film-coated tablet, 60, blister pack 900000000000526001 REPLACED BY association reference set 1003811000168109 Levitaccord-1000 1 g film-coated tablet, 60, blister pack 20170930 +69520011000036107 Disprin Max 500 mg dispersible tablet, 16, strip pack 900000000000526001 REPLACED BY association reference set 804371000168108 Disprin Max 500 mg tablet, 16, strip pack 20160630 +36093011000036108 Primacor 10 mg/10 mL injection: solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 719501000168107 Primacor 10 mg/10 mL concentrated injection, 10 mL ampoule 20150930 +65691000036105 Rehydration Formula Effervescent (Guardian) effervescent tablet, 20, tube 900000000000526001 REPLACED BY association reference set 871771000168104 Rehydration Formula Effervescent (Guardian) effervescent tablet, 20, tube 20170131 +253701000168102 PKU Lophlex LQ 10 oral liquid: solution, 62.5 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724561000168101 PKU Lophlex LQ 10 Tropical oral liquid solution, 62.5 mL pouch 20151031 +252671000168108 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL can 900000000000526001 REPLACED BY association reference set 710251000168103 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 174 mL pouch 20151031 +44259011000036103 Imigran S 10 mg/actuation nasal spray, 2 actuations, vial 900000000000526001 REPLACED BY association reference set 728161000168103 Imigran S 10 mg/actuation nasal spray, 2 x 1 actuation, vials 20151130 +74808011000036100 Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 824741000168107 Havrix 1440 ELISA units/mL injection suspension, 10 x 1 mL vials 20160930 +12182011000036107 Kenacomb Otic ointment, 5 g 900000000000526001 REPLACED BY association reference set 758291000168101 Kenacomb Otic ear ointment, 5 g 20160229 +933226031000036103 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1004811000168106 Naropin 0.2% with Fentanyl 400 microgram/200 mL injection solution, 5 x 200 mL bags 20170930 +711651000168108 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005651000168105 Ropivacaine (Sandoz) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +177761000036102 lixisenatide 10 microgram/0.2 mL injection [14 x 0.2 mL unit doses] (&) lixisenatide 20 microgram/0.2 mL injection [14 x 0.2 mL unit doses], 1 pack 900000000000526001 REPLACED BY association reference set 719401000168106 lixisenatide 10 microgram/dose injection [14 doses] (&) lixisenatide 20 microgram/dose injection [14 doses], 1 pack 20150930 +79529011000036102 Septopal Chain 7.5 mg implant, 1 bead 900000000000526001 REPLACED BY association reference set 684541000168102 Septopal Chain 7.5 mg implant, 30 beads 20150131 +45018011000036103 pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, bag 900000000000526001 REPLACED BY association reference set 1013391000168108 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 500 mL bag 20170930 +8891000168108 Creon 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 847421000168104 Creon 10 000 20161130 +4523011000036108 Atropt 1% eye drops solution 900000000000526001 REPLACED BY association reference set 850951000168103 Atropt 1% eye drops solution 20161130 +86645011000036102 Plaxel 100 mg/16.7 mL injection: concentrated, 16.7 mL vial 900000000000526001 REPLACED BY association reference set 704491000168102 Plaxel 100 mg/16.67 mL concentrated injection, 16.67 mL vial 20150630 +84269011000036101 Wagner Magnesium Forte 400 capsules: hard, 100, bottle 900000000000526001 REPLACED BY association reference set 750241000168107 Magnesium Forte 400 (Wagner) hard capsule, 100, bottle 20160131 +73848011000036108 Adacel injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837471000168104 Adacel injection suspension, 0.5 mL vial 20161031 +932456011000036101 alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30 900000000000526001 REPLACED BY association reference set 843181000168102 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + iodine 250 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30 20161031 +75354011000036108 Bordetella pertussis, acellular pertussis toxoid vaccine 2.5 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839631000168108 diphtheria + tetanus + pertussis 5 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 20161031 +84294011000036100 Clotrimazole 3 Day (Apo) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715761000168104 Clotrimazole 3 Day (Apo) 2% vaginal cream, 20 g, tube 20150930 +702801000168102 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726141000168103 PKU Anamix Junior Chocolate powder for oral liquid, 30 x 36 g sachets 20151031 +75455011000036104 Yellow fever live attenuated vaccine 1000 units injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 822211000168106 yellow fever live vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20160831 +74298011000036106 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 824831000168105 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 10 x 0.5 mL vials 20160930 +684441000168103 lignocaine hydrochloride anhydrous 1% (50 mg/5 mL) injection, 5 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693451000168104 lidocaine (lignocaine) hydrochloride monohydrate 1% (50 mg/5 mL) injection, 5 x 5 mL ampoules 20150331 +18217011000036101 Puri-Nethol 50 mg uncoated tablet, 25, bottle 900000000000526001 REPLACED BY association reference set 845461000168103 Puri-Nethol 50 mg uncoated tablet, 25, bottle 20161130 +68696011000036107 Ringworm 1% ointment, 15 g, tube 900000000000526001 REPLACED BY association reference set 800431000168109 Ringworm (Amneal) 1% ointment, 15 g, tube 20160630 +75117011000036102 meningococcal group C conjugate vaccine 10 microgram injection, vial 900000000000526001 REPLACED BY association reference set 826401000168108 meningococcal C conjugate vaccine injection, vial 20160930 +86631011000036100 Calcia plus Vitamin D 200 IU chewable tablet 900000000000526001 REPLACED BY association reference set 860081000168101 Calcia plus Vitamin D 200 IU chewable tablet 20161231 +920666011000036103 Ostelin Vitamin D and Calcium tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 862321000168103 Ostelin Vitamin D and Calcium film-coated tablet, 60, bottle 20161231 +49437011000036109 Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688861000168105 Elastoplast Tape (1004) 10 cm x 2.5 m tape, 1 roll 20150331 +20218011000036101 Clofeme Thrush Treatment 6 Day 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715141000168102 Clofeme Thrush Treatment 6 Day 1% vaginal cream, 35 g, tube 20150930 +74359011000036102 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 828271000168101 Hiberix (1 x 10 microgram vaccine vial, 1 x 0.5 mL inert diluent vial), 1 pack 20160930 +27479011000036105 fluoxetine 20 mg dispersible tablet, 28 900000000000526001 REPLACED BY association reference set 844321000168102 fluoxetine 20 mg tablet, 28 20161031 +13109011000036109 Repalyte powder for oral liquid, 10 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871921000168103 Repalyte powder for oral liquid, 10 x 4.9 g sachets 20170131 +50937011000036100 tape plaster adhesive hypoallergenic 5 cm x 5 m stretch tape, 1 roll 900000000000526001 REPLACED BY association reference set 689041000168107 tape plaster adhesive hypoallergenic 5 cm x 5 m tape 20150331 +59720011000036107 Disprin Forte dispersible tablet, 24, strip pack 900000000000526001 REPLACED BY association reference set 804171000168106 Disprin Forte tablet, 24, strip pack 20160630 +5333011000036100 Puri-Nethol 50 mg uncoated tablet 900000000000526001 REPLACED BY association reference set 845431000168106 Puri-Nethol 50 mg uncoated tablet 20161130 +711861000168106 Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005151000168100 Ropibam 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +71761000036104 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 120 900000000000526001 REPLACED BY association reference set 862061000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 120 20161231 +13605011000036108 Etopophos 1 g injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 793611000168109 Etopophos 1.136 g (etoposide 1 g) powder for injection, 1 vial 20160531 +121811000036101 clotrimazole + hydrocortisone acetate 900000000000526001 REPLACED BY association reference set 37751011000036102 hydrocortisone + clotrimazole 20150930 +74974011000036108 Q fever inactivated vaccine 900000000000526001 REPLACED BY association reference set 821551000168104 Q fever vaccine 20160831 +159261000036100 Oxycontin Reformulation 20 mg modified release tablet, 28 900000000000526001 REPLACED BY association reference set 928481011000036107 Oxycontin 20 mg modified release tablet, 28 20170731 +664291000168105 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 900000000000526001 REPLACED BY association reference set 833621000168108 Magnesium Trisilicate Mixture BPC (extemporaneous) oral liquid suspension, 200 mL 20160930 +933229561000036106 MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724861000168104 MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 20151031 +921422011000036104 Calvid granules: effervescent, 30 x 7 g sachets 900000000000526001 REPLACED BY association reference set 810651000168103 Calvid effervescent granules, 30 x 7.3 g sachets 20160630 +49021000036107 Valvala 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1009741000168100 Valvala-1000 1 g film-coated tablet 20170930 +50348011000036108 Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694101000168106 Leukosilk (1022) 2.5 cm x 5 m tape, 1 roll, carton 20150331 +70065011000036108 tolnaftate 0.09% spray 900000000000526001 REPLACED BY association reference set 769591000168100 tolnaftate 0.09% (900 microgram/g) spray 20160331 +82196011000036100 Haemofiltration Replacement Fluid (Baxter) injection: solution, 2 x 5 L bags 900000000000526001 REPLACED BY association reference set 872441000168107 Haemofiltration Replacement Fluid (Baxter) injection solution, 2 x 5 L bags 20170131 +84919011000036101 Strepsils lozenge, 10 900000000000526001 REPLACED BY association reference set 721941000168105 Strepsils Cool lozenge, 10 20151031 +921813011000036108 Citracal Plus D tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 859901000168106 Citracal Plus D film-coated tablet, 60, bottle 20161231 +75902011000036104 senna dried 900000000000526001 REPLACED BY association reference set 826011000168104 dry Tinnevelly senna fruit 20160930 +74803011000036105 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes 900000000000526001 REPLACED BY association reference set 822941000168100 Rotarix 1 million CCID50 units/1.5 mL oral liquid suspension, 10 x 1.5 mL syringes 20160831 +926948011000036103 Priorix powder for injection, 10 vials 900000000000526001 REPLACED BY association reference set 831161000168108 Priorix powder for injection, 10 vials 20160930 +77443011000036104 sorbitol solution (70 per cent-non-crystallising) 900000000000526001 REPLACED BY association reference set 922041011000036102 sorbitol 20150331 +20924011000036104 Prodeine Forte uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835821000168106 Prodeine Forte uncoated tablet, 20, blister pack 20161031 +19339011000036109 Zentel 200 mg chewable tablet, 6, bottle 900000000000526001 REPLACED BY association reference set 844231000168106 Zentel 200 mg tablet, 6, bottle 20161031 +26741000036105 typhoid fever polysaccharide vaccine 25 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 827101000168101 typhoid inactivated vaccine injection, 0.5 mL syringe 20160930 +921396011000036101 Berocca Performance Original effervescent tablet, 30 900000000000526001 REPLACED BY association reference set 829751000168108 Berocca Performance Original effervescent tablet, 30 20160930 +80669011000036100 Gastrolyte natural powder for oral liquid, 10 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871871000168107 Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets 20170131 +689611000168104 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 900000000000526001 REPLACED BY association reference set 831201000168103 measles 1000 CCID50 units + mumps 25 119 CCID50 units + rubella 1000 CCID50 units + varicella-zoster 1995 PFU live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 20160930 +86757011000036101 Calcia-1000 1 g (calcium 1 g) chewable tablet, 30 900000000000526001 REPLACED BY association reference set 859941000168108 Calcia-1000 2.5 g (calcium 1 g) chewable tablet, 30 20161231 +23289011000036105 calcium (as carbonate) 600 mg (calcium 600 g) tablet 900000000000526001 REPLACED BY association reference set 860241000168102 calcium carbonate 1.5 g (calcium 600 mg) tablet 20161231 +74351011000036101 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824881000168106 Vaqta Paediatric and Adolescent 25 units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +368531000168105 TYR Cooler 15 oral liquid: solution, 130 mL can 900000000000526001 REPLACED BY association reference set 725901000168106 TYR Cooler 15 oral liquid solution, 130 mL pouch 20151031 +89551000036100 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate anhydrous 2.51 mg (equivalent to 1 mg copper) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet, 60 900000000000526001 REPLACED BY association reference set 861851000168106 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) + cupric sulfate 2.51 mg (copper 1 mg) + magnesium (as oxide) 50 mg + manganese (as sulfate monohydrate) 1.8 mg + zinc 7.47 mg tablet, 60 20161231 +923842011000036101 Prevenar-13 30.8 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827481000168103 Prevenar-13 injection suspension, 10 x 0.5 mL syringes 20160930 +22039011000036103 mercaptopurine 50 mg tablet 900000000000526001 REPLACED BY association reference set 845421000168108 mercaptopurine monohydrate 50 mg tablet 20161130 +77389011000036102 Centrum tablet: film-coated, 14, bottle 900000000000526001 REPLACED BY association reference set 833091000168101 Centrum film-coated tablet, 14, bottle 20160930 +74346011000036109 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 822701000168100 Je-Vax (3 x vaccine vials, 3 x 1 mL inert diluent vials), 1 pack 20160831 +82987011000036100 pneumococcal 10 valent polysaccharide conjugate vaccine 16 microgram injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827641000168105 pneumococcal 10 valent conjugate vaccine injection, 10 x 0.5 mL syringes 20160930 +6021011000036102 Comfarol Forte uncoated tablet 900000000000526001 REPLACED BY association reference set 835961000168108 Comfarol Forte uncoated tablet 20161031 +87017011000036106 calcium (as carbonate) 500 mg (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet, 120 900000000000526001 REPLACED BY association reference set 860141000168105 calcium carbonate 1.25 g (calcium 500 mg) + colecalciferol 10 microgram (400 units) chewable tablet, 120 20161231 +700016311000036108 Femazole One 900000000000526001 REPLACED BY association reference set 26061000036109 Femazole Duo 20150228 +53627011000036100 Clotrimazole Vaginal Cream (Your Pharmacy) 2% cream 900000000000526001 REPLACED BY association reference set 715401000168109 Clotrimazole (Your Pharmacy) 2% vaginal cream 20150930 +73905011000036102 Comvax injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832291000168100 Comvax injection suspension, 0.5 mL vial 20160930 +702801000168102 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726231000168102 PKU Anamix Junior Berry powder for oral liquid, 30 x 36 g sachets 20151031 +76806011000036109 Centrum tablet: film-coated, 150 900000000000526001 REPLACED BY association reference set 833381000168101 Centrum film-coated tablet, 150 20160930 +56584011000036104 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 20 mL 900000000000526001 REPLACED BY association reference set 721901000168108 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 20 mL 20151031 +77270011000036105 Agiolax granules, 250 g, jar 900000000000526001 REPLACED BY association reference set 832471000168102 Agiolax granules, 250 g, jar 20160930 +75459011000036102 Haemophilus influenzae type b vaccine 10 microgram injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 828261000168107 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection [1 vial] (&) inert substance diluent [0.5 mL vial], 1 pack 20160930 +80227011000036100 Gastrolyte Blackcurrant effervescent tablet 900000000000526001 REPLACED BY association reference set 871681000168106 Gastrolyte Blackcurrant effervescent tablet 20170131 +931839011000036103 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder, 1 sachet 900000000000526001 REPLACED BY association reference set 931833011000036101 phenylephrine hydrochloride 12.2 mg + paracetamol 1 g powder for oral liquid, 1 sachet 20160731 +686421000168103 Plegridy 125 microgram/0.5 mL injection: solution, 2 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 698601000168109 Plegridy 125 microgram/0.5 mL injection solution, 2 x 0.5 mL syringes 20150430 +924887011000036106 Pemzo 20 mg capsule, 500 900000000000526001 REPLACED BY association reference set 716891000168106 Pemzo 20 mg enteric capsule, 500 20150930 +140791000036109 Ropivacaine Hydrochloride (Kabi) 0.75% (75 mg/10 mL) injection: solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1006121000168104 Ropivacaine 0.75% (Kabi) 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +75120011000036105 diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840701000168103 diphtheria + tetanus + pertussis 3 component + polio trivalent adolescent/adult vaccine injection, 0.5 mL syringe 20161031 +691671000168107 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack 900000000000526001 REPLACED BY association reference set 848201000168108 Reddymax Plus D-Cal (4 x Alendronate Plus D3 70 mg/140 microgram (DRLA) tablets, 48 x Reddycal tablets), 1 pack, composite pack 20161130 +928235011000036103 Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g 900000000000526001 REPLACED BY association reference set 705411000168105 Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g 20150731 +712041000168105 Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005251000168107 Ropibam 0.75% 75 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +79699011000036101 Creon 25 000 units modified release capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 847411000168106 Creon 25 000 enteric capsule, 100, bottle 20161130 +19910011000036104 Intron A Redipen 18 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722761000168101 Intron A Redipen 18 million units/1.2 mL injection solution, 1.2 mL, injection device 20151031 +26978011000036103 atropine sulfate 1% eye drops, 15 mL 900000000000526001 REPLACED BY association reference set 850961000168101 atropine sulfate monohydrate 1% eye drops, 15 mL 20161130 +75509011000036102 diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840801000168105 diphtheria + tetanus + pertussis 3 component + polio trivalent child vaccine injection, 0.5 mL syringe 20161031 +52412011000036104 Cal-600 600 mg (calcium 600 g) tablet: film-coated 900000000000526001 REPLACED BY association reference set 860251000168100 Cal-600 1.5 g (calcium 600 mg) film-coated tablet 20161231 +127331000036108 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 174 mL sachets 900000000000526001 REPLACED BY association reference set 725351000168106 amino acid formula with vitamins and minerals without valine, leucine and isoleucine oral liquid, 30 x 174 mL pouches 20151031 +30561000036104 Voltaren Osteo 1% gel, 75 g, tube 900000000000526001 REPLACED BY association reference set 1037121000168107 Voltaren Osteo 1.16% gel, 75 g, tube 20171130 +51977011000036106 Salicylic Acid Paint (extemporaneous) 10% (100 mg/mL) paint 900000000000526001 REPLACED BY association reference set 703141000168104 Salicylic Acid APF (extemporaneous) 10% paint 20150531 +689011000168108 Priorix-Tetra (measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 25 119 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units + Varicella zoster live attenuated vaccine 1995 PFU) powder for injection, vial 900000000000526001 REPLACED BY association reference set 831191000168101 Priorix-Tetra (measles + mumps + rubella + varicella-zoster live vaccine) powder for injection, vial 20160930 +75068011000036106 hepatitis A inactivated vaccine 50 units/mL injection, syringe 900000000000526001 REPLACED BY association reference set 825141000168109 hepatitis A adult vaccine 50 units/mL injection, syringe 20160930 +922653011000036106 iopromide 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection, 150 mL vial 900000000000526001 REPLACED BY association reference set 695321000168101 iopromide 623 mg (iodine 300 mg)/mL injection, 150 mL bottle 20150430 +83410011000036108 Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 872201000168109 Cardioplegia Sterile (DBL) concentrated injection, 5 x 20 mL ampoules 20170131 +662431000168104 Metformin Hydrochloride (AN) 1 g film-coated tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 949411000168105 Metformin Hydrochloride 1000 (AN) 1 g film-coated tablet, 90, blister pack 20170630 +165601000036105 Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726691000168101 Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose, injection device 20151031 +922549011000036100 ascorbic acid 250 mg + cupric oxide 1.25 mg (equivalent to 1 mg of copper) + D-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc (as oxide) 40 mg tablet, 30 900000000000526001 REPLACED BY association reference set 757851000168109 ascorbic acid 250 mg + d-alpha-tocopheryl acid succinate 165 mg (200 units) + zinc oxide 49.8 mg (zinc 40 mg) + cupric oxide 1.25 mg (copper 1 mg) tablet, 30 20160229 +81723011000036106 calcium chloride dihydrate 176 mg/L + magnesium chloride 3.25 g/L + potassium chloride 1.19 g/L + sodium chloride 6.43 g/L perfusion solution, 1 L bag 900000000000526001 REPLACED BY association reference set 872231000168102 sodium chloride 6.43 g/L + potassium chloride 1.19 g (potassium 16 mmol)/L + magnesium chloride hexahydrate 3.25 g (magnesium 16 mmol)/L + calcium chloride dihydrate 176 mg (calcium 1.2 mmol)/L perfusion solution, 1 L bag 20170131 +73871000036100 Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 862111000168107 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60, bottle 20161231 +76160011000036104 Ultravist-370 76.88 g/100 mL (equivalent to 37 g/100 mL iodine) injection: solution, 100 mL vial 900000000000526001 REPLACED BY association reference set 695721000168102 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 100 mL bottle 20150430 +757011000168103 Ursodox 900000000000526001 REPLACED BY association reference set 765941000168104 Ursodox (GH) 20160331 +19500011000036107 Ocufen 0.03% (120 microgram/0.4 mL) eye drops: solution, 5 x 0.4 mL ampoules 900000000000526001 REPLACED BY association reference set 684601000168103 Ocufen 0.03% eye drops solution, 5 x 0.4 mL unit doses, ampoule 20150131 +13996011000036100 Klacid Hp 7 (14 x 20 mg capsules, 14 x 500 mg tablets, 28 x 500 mg capsules), 1 pack 900000000000526001 REPLACED BY association reference set 715991000168108 Klacid Hp7 (14 x Probitor capsules, 28 x Amoxycillin (Sandoz) capsules, 14 x Klacid tablets), 1 pack 20150930 +44418011000036102 Avonex (4 x 6 million international units (30 microgram) vials, 4 x 1 mL diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 698291000168100 Avonex (4 x 6 million units (30 microgram) vials, 4 x 1 mL inert diluent syringes), 1 pack 20150430 +924176011000036109 plerixafor 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial 900000000000526001 REPLACED BY association reference set 891121000168105 plerixafor 24 mg/1.2 mL injection, 1.2 mL vial 20170331 +42148011000036101 Metvix 200 mg/g cream, 2 g 900000000000526001 REPLACED BY association reference set 999311000168105 Metvix 160 mg/g cream, 2 g 20170831 +59863011000036105 Clotrimazole 3 Day (Guardian) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715171000168109 Clotrimazole 3 Day (Guardian) 2% vaginal cream, 20 g, tube 20150930 +80642011000036102 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags 900000000000526001 REPLACED BY association reference set 868101000168106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags 20170131 +761891000168103 Co-Phenylcaine Forte nasal spray, 2.5 mL 900000000000526001 REPLACED BY association reference set 791941000168104 Co-Phenylcaine Forte nasal spray, 2.5 mL 20160531 +83621011000036106 Diacol tablet 900000000000526001 REPLACED BY association reference set 900241000168108 Diacol tablet 20170331 +71454011000036102 salicylic acid 3% (30 mg/g) + sulfur-precipitated 3% (30 mg/g) + aqueous cream 940 mg/g cream, 100 g 900000000000526001 REPLACED BY association reference set 705501000168108 salicylic acid 3% + precipitated sulfur 3% + aqueous cream, 100 g 20150731 +154081000036101 Nicorette Quickmist 1 mg/actuation oral spray, 2 x 150 actuations aerosol cans 900000000000526001 REPLACED BY association reference set 1092191000168104 Nicorette Quickmist Freshmint 1 mg/actuation oral spray, 2 x 150 actuations, aerosol cans 20180331 +925132011000036104 First Aid (Guardian) cream, 50 g, tube 900000000000526001 REPLACED BY association reference set 861561000168106 First Aid (Guardian) cream, 50 g, tube 20161231 +924212011000036102 omeprazole 20 mg capsule, 90 900000000000526001 REPLACED BY association reference set 716961000168106 omeprazole 20 mg enteric capsule, 90 20150930 +143831000036109 dimethyl fumarate 120 mg capsule: modified release 900000000000526001 REPLACED BY association reference set 756221000168104 dimethyl fumarate 120 mg enteric capsule 20160229 +933232031000036102 Fluoride Panda Punch (Laclede) foam, 165 mL, aerosol can 900000000000526001 REPLACED BY association reference set 932621000168109 Fluoride (Laclede) Panda Punch Flavour foam, 165 mL, aerosol can 20170531 +20888011000036109 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715301000168101 Clotrimazole Thrush Treatment 3 Day (GenRx) 2% vaginal cream, 20 g, tube 20150930 +221000168102 Probitor 20 mg capsule, 14 capsules 900000000000526001 REPLACED BY association reference set 715911000168104 Probitor 20 mg enteric capsule, 14 20150930 +127551000036107 adrenaline 500 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726621000168103 adrenaline (epinephrine) 500 microgram/0.3 mL injection, 1 dose 20151031 +19070011000036104 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 834831000168108 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20, blister pack 20161031 +56394011000036103 Zantac 150 mg/10 mL oral liquid: solution, 140 mL 900000000000526001 REPLACED BY association reference set 783901000168103 Zantac 150 mg/10 mL oral liquid, 140 mL 20160531 +665581000168106 PKU Cooler20 Green oral liquid: solution, 174 mL can 900000000000526001 REPLACED BY association reference set 725751000168107 PKU Cooler 20 Green oral liquid solution, 174 mL pouch 20151031 +251291000168103 PKU Anamix Junior oral liquid: powder for, 29 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 723971000168102 PKU Anamix Junior Pineapple/Vanilla powder for oral liquid, 29 g sachet 20151031 +82192011000036104 Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 240 900000000000526001 REPLACED BY association reference set 860571000168107 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 240 20161231 +27393011000036109 etoposide 100 mg injection, 1 vial 900000000000526001 REPLACED BY association reference set 793421000168100 etoposide phosphate 113.6 mg (etoposide 100 mg) injection, 1 vial 20160531 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826091000168108 Streptococcus pneumoniae type 5 conjugate antigen 20160930 +116271000036106 Pico-Salax powder for oral liquid, 2 x 16.1 g sachets 900000000000526001 REPLACED BY association reference set 902121000168105 Pico-Salax powder for oral liquid, 2 x 16.1 g sachets 20170331 +711601000168109 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005691000168100 Ropivacaine (Sandoz) 75 mg/10 mL injection solution, 10 mL ampoule 20170930 +61119011000036107 Difflam Lozenge orange sugar free lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995811000168100 Difflam Lozenge Orange Sugar Free lozenge, 16, blister pack 20170831 +923325011000036108 Omeprazole (Pharmacor) 20 mg capsule, 280 900000000000526001 REPLACED BY association reference set 717201000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 280 20150930 +683311000168108 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083001000168101 Flixonase Allergy and Hayfever 24 Hour 0.05% (50 microgram/actuation) nasal spray, 60 actuations, pump pack 20180228 +74900011000036108 Decongestant (Guardian) 0.05% nasal spray, 18 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083601000168109 Decongestant (Guardian) 0.05% nasal spray, 18 mL, pump pack 20180228 +107521000036109 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon 900000000000526001 REPLACED BY association reference set 1056271000168100 Sorbact Gauze (S98120) 5 cm x 200 cm ribbon 20171231 +26748011000036109 darbepoetin alfa 100 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 1041261000168100 darbepoetin alfa 100 microgram/0.5 mL injection, 0.5 mL injection device 20171130 +20508011000036107 Kaletra 400/100 oral liquid: solution, 60 mL, bottle 900000000000526001 REPLACED BY association reference set 689491000168105 Kaletra oral liquid solution, 60 mL, bottle 20150331 +933220821000036107 Naropin 1% (200 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005041000168101 Naropin 1% 200 mg/20 mL injection solution, 20 mL ampoule 20170930 +682141000168101 testosterone undecanoate 1 g/4 mL injection, 4 mL vial 900000000000526001 REPLACED BY association reference set 722951000168100 testosterone undecanoate 1 g/4 mL modified release injection, 4 mL vial 20151031 +82337011000036102 Aspalgin dispersible tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 834261000168104 Aspalgin dispersible tablet, 20, blister pack 20161031 +46169011000036103 pentastarch 6% (30 g/500 mL) + sodium chloride 0.9% (4.5 g/500 mL) injection, 20 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013411000168108 hydroxyethyl starch 130/0.4 6% (60 g/L) + sodium chloride 0.9% (9 g/L) injection, 20 x 500 mL bags 20170930 +844441000168101 Zovirax 200 mg tablet, 90 900000000000526001 REPLACED BY association reference set 859451000168100 Zovirax Dispersible 200 mg tablet, 90 20161231 +48603011000036108 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape, 1 roll 900000000000526001 REPLACED BY association reference set 694351000168108 Nexcare Durable Cloth First Aid Tape (799) 1.9 cm x 5.4 m dispenser tape 20150331 +815091000168107 Entrip 25 mg tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 856701000168103 Entrip 25 mg film-coated tablet, 50, blister pack 20161231 +828391000168105 Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 846071000168109 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 20161130 +36098011000036103 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 1 sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 810371000168102 Actonel Combi D effervescent granules, 1 sachet 20160630 +73653011000036107 meningococcal group C conjugate vaccine 900000000000526001 REPLACED BY association reference set 824471000168106 Neisseria meningitidis group C conjugate antigen 20160930 +24651000036108 Albey Bee Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 758861000168107 Bee Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack, composite pack 20160229 +815231000168104 Entrip 50 mg tablet, 1000 900000000000526001 REPLACED BY association reference set 856841000168107 Entrip 50 mg film-coated tablet, 1000 20161231 +925137011000036102 Omepro 20 mg capsule, 30, blister pack 900000000000526001 REPLACED BY association reference set 716591000168108 Omepro 20 mg enteric capsule, 30, blister pack 20150930 +3182011000036104 Granocyte 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 838251000168108 Granocyte-34 20161031 +86464011000036109 monobasic sodium phosphate monohydrate 480 mg/mL + dibasic sodium phosphate heptahydrate 180 mg/mL oral liquid, 45 mL 900000000000526001 REPLACED BY association reference set 1097801000168100 monobasic sodium phosphate 417.8 mg/mL + dibasic sodium phosphate 95.6 mg/mL oral liquid, 45 mL 20180331 +74347011000036107 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1 mL diluent vial), 1 pack 900000000000526001 REPLACED BY association reference set 822581000168102 BCG Vaccine (Sanofi Pasteur) (1 x 1.5 mg vaccine vial, 1 x 1.5 mL inert diluent vial), 1 pack 20160831 +711721000168107 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1005511000168108 Ropivacaine (Sandoz) 150 mg/20 mL injection solution, 20 mL ampoule 20170930 +87941000036103 dinoprostone 400 microgram/mL vaginal gel 900000000000526001 REPLACED BY association reference set 1005321000168105 dinoprostone 1 mg/3 g vaginal gel, syringe 20170930 +921879011000036102 Ultravist-240 24.94 g/50 mL (equivalent to 12 g/50 mL iodine) injection: solution, 10 x 50 mL vials 900000000000526001 REPLACED BY association reference set 696381000168108 Ultravist-240 499 mg (iodine 240 mg)/mL injection solution, 10 x 50 mL bottles 20150430 +61451000036102 calcium carbonate 780 mg + magnesium carbonate heavy 130 mg + magnesium trisilicate 130 mg chewable tablet 900000000000526001 REPLACED BY association reference set 833641000168102 calcium carbonate 780 mg + magnesium carbonate hydrate 130 mg + magnesium trisilicate 130 mg chewable tablet 20160930 +75491011000036105 hepatitis A inactivated vaccine 160 antigen units/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824671000168109 hepatitis A child/adult vaccine injection, 0.5 mL syringe 20160930 +81141011000036100 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872631000168100 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 1 L bag 20170131 +718831000168108 Infanrix Hexa 10 microgram powder for injection, 10 microgram vial 900000000000526001 REPLACED BY association reference set 840901000168100 Infanrix Hexa 10 microgram powder for injection, 10 microgram vial 20161031 +700301000168107 diphtheria toxoid vaccine 2 units/0.5 mL + tetanus toxoid vaccine 20 units/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837281000168100 diphtheria 2 units + tetanus 20 units vaccine injection, 0.5 mL syringe 20161031 +36004011000036107 Calcium carbonate / colecalciferol (Sanofi-Aventis) 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 929810011000036106 Actonel EC Combi D 20160630 +920991011000036106 Macu-Vision tablet: film-coated 900000000000526001 REPLACED BY association reference set 757841000168107 Macu-Vision film-coated tablet 20160229 +74861011000036105 Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1083611000168107 Decongestant (Pharmacy Choice) 0.05% nasal spray, 20 mL, pump pack 20180228 +933216021000036106 Recombinate 1000 IU (1 x 1000 international units vial, 1 x 10 mL diluent vial), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 710951000168107 Recombinate (1 x 1000 units vial, 1 x 10 mL inert diluent vial), 1 pack, composite pack 20150831 +706391000168103 measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack 900000000000526001 REPLACED BY association reference set 831371000168100 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 syringes], 1 pack 20160930 +2493011000036103 pneumococcal purified capsular polysaccharides 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836961000168103 Streptococcus pneumoniae type 22F polysaccharide antigen 20161031 +177921000036109 Lyxumia 10 microgram/0.2 mL injection: solution, 14 x 0.2 mL unit doses 900000000000526001 REPLACED BY association reference set 719321000168107 Lyxumia 10 microgram/dose injection solution, 14 doses 20150930 +90421000036103 Prostin E2 800 microgram/mL vaginal gel, 2.5 mL 900000000000526001 REPLACED BY association reference set 1005401000168109 Prostin E2 2 mg/3 g vaginal gel, 3 g syringe 20170930 +32330011000036107 Reandron oily solution 1 g/4 mL injection, 4 mL ampoule 900000000000526001 REPLACED BY association reference set 720571000168103 Reandron-1000 1 g/4 mL modified release injection, 4 mL ampoule 20151031 +686411000168105 interferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 698591000168102 peginterferon beta-1a 125 microgram/0.5 mL injection, 2 x 0.5 mL syringes 20150430 +80234011000036108 Gastrolyte orange powder for oral liquid, 5.2 g sachet 900000000000526001 REPLACED BY association reference set 871611000168100 Gastrolyte Orange powder for oral liquid, 5.2 g sachet 20170131 +74342011000036105 Ipol injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 839911000168108 Ipol injection solution, 10 x 0.5 mL syringes 20161031 +181041000036100 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 835911000168105 Paracetamol and Codeine Phosphate 500/30 (GH) uncoated tablet, 20 20161031 +73655011000036108 Bordetella pertussis, filamentous haemagglutinin vaccine 900000000000526001 REPLACED BY association reference set 836251000168109 Bordetella pertussis filamentous haemagglutinin antigen 20161031 +75432011000036106 rabies inactivated vaccine 2.5 units injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 821441000168102 rabies vaccine injection [1 vial] (&) inert substance diluent [1 mL syringe], 1 pack 20160831 +78326011000036106 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 100 900000000000526001 REPLACED BY association reference set 861951000168103 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 5 microgram (200 units) tablet, 100 20161231 +73647011000036100 mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 900000000000526001 REPLACED BY association reference set 829851000168103 mumps virus live antigen 20160930 +49267011000036100 MSUD Express Cooler oral liquid: solution, 30 x 130 mL cans 900000000000526001 REPLACED BY association reference set 725391000168101 MSUD Express Cooler oral liquid solution, 30 x 130 mL pouches 20151031 +68757011000036106 Curash Family Oral Pain Relieving oral gel, 15 g, tube 900000000000526001 REPLACED BY association reference set 995511000168102 Curash Family Oral Pain Relieving oral gel, 15 g, tube 20170831 +145301000036106 Tecfidera 120 mg capsule: modified release, 14 900000000000526001 REPLACED BY association reference set 756251000168107 Tecfidera 120 mg enteric capsule, 14 20160229 +74333011000036104 Co-Phenylcaine Forte nasal spray, 15 mL 900000000000526001 REPLACED BY association reference set 792031000168102 Co-Phenylcaine Forte nasal spray, 15 mL 20160531 +5823011000036104 Cerumol ear drops 900000000000526001 REPLACED BY association reference set 854351000168107 Cerumol ear drops 20161231 +75421011000036102 Japanese encephalitis inactivated vaccine 6 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822631000168104 Japanese encephalitis (vero cell-derived) inactivated vaccine injection, 0.5 mL syringe 20160831 +75377011000036100 hepatitis B vaccine 20 microgram/mL injection, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825221000168107 hepatitis B adult vaccine 20 microgram/mL injection, 1 mL syringe 20160930 +923387011000036105 Prevenar-13 30.8 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827441000168108 Prevenar-13 injection suspension, 0.5 mL syringe 20160930 +75029011000036107 human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 822961000168101 human papillomavirus quadrivalent vaccine injection, 0.5 mL vial 20160831 +932447011000036100 risedronate sodium 35 mg tablet [1] (&) calcium (as carbonate) 500 mg tablet [6], 1 pack 900000000000526001 REPLACED BY association reference set 852571000168104 risedronate sodium 35 mg tablet [1] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [6], 7 20161130 +677441000168101 fluticasone + vilanterol 900000000000526001 REPLACED BY association reference set 861401000168109 fluticasone furoate + vilanterol 20161231 +702621000168107 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 837391000168107 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 0.5 mL vial 20161031 +36899011000036107 Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 5 x 2 mL vials 900000000000526001 REPLACED BY association reference set 720791000168109 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 5 x 2 mL vials 20151031 +78105011000036100 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724291000168105 amino acid formula with vitamins and minerals without phenylalanine oral liquid, 36 x 125 mL bottles 20151031 +137361000036104 Ropivacaine Hydrochloride (Kabi) 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 711221000168102 Ropivacaine 0.75% (Kabi) 20150831 +927915011000036101 Oxynorm 50 mg/mL intravenous infusion injection, ampoule 900000000000526001 REPLACED BY association reference set 1055131000168103 Oxynorm 50 mg/mL injection solution, ampoule 20171231 +37446011000036104 Codral Forte uncoated tablet, 50, strip pack 900000000000526001 REPLACED BY association reference set 834621000168106 Codral Forte uncoated tablet, 50, strip pack 20161031 +75661000036108 risedronate sodium 35 mg enteric tablet [4] (&) calcium (as carbonate) 1 g + colecalciferol 22 microgram granules: effervescent [24 sachets], 1 pack 900000000000526001 REPLACED BY association reference set 810331000168100 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 2.5 g (calcium 1 g) + colecalciferol 22 microgram (880 units) effervescent granules [24 sachets], 1 pack 20160630 +933221261000036107 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1004741000168104 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 100 mL bag 20170930 +80224011000036106 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 900000000000526001 REPLACED BY association reference set 868211000168104 Dianeal PD-4 with Glucose 1.5% peritoneal dialysis solution, 2 L bag 20170131 +82119011000036108 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850871000168102 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules 20161130 +923468011000036101 Forteo 20 microgram injection: solution, 2.4 mL cartridge 900000000000526001 REPLACED BY association reference set 726951000168104 Forteo 20 microgram/dose injection solution, 28 doses 20151031 +37632011000036100 Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 10 x 5 mL vials 900000000000526001 REPLACED BY association reference set 720831000168103 Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials 20151031 +56164011000036107 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory berry lozenge, 2 900000000000526001 REPLACED BY association reference set 861421000168100 Difflam Anaesthetic, Antibacterial and Anti-Inflammatory Berry lozenge, 2 20161231 +923445011000036104 Omeprazole (Pharmacor) 20 mg capsule, 28 900000000000526001 REPLACED BY association reference set 717171000168100 Omeprazole (Pharmacor) 20 mg enteric capsule, 28 20150930 +75441011000036104 lignocaine hydrochloride anhydrous 5% (5 mg/actuation) + phenylephrine hydrochloride 0.5% (500 microgram/actuation) nasal spray, 50 mL 900000000000526001 REPLACED BY association reference set 792081000168101 lidocaine (lignocaine) hydrochloride 5% + phenylephrine hydrochloride 0.5% nasal spray, 50 mL 20160531 +928873011000036108 Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g, jar 900000000000526001 REPLACED BY association reference set 705421000168103 Salicylic Acid 2% in Aqueous Cream (David Craig) cream, 100 g, jar 20150731 +718821000168105 Haemophilus influenzae type B polyribose ribitol phosphate vaccine 10 microgram injection, vial 900000000000526001 REPLACED BY association reference set 828241000168108 Haemophilus influenzae type b conjugate (PRP-T) vaccine injection, vial 20161031 +80486011000036108 Metomax capsule, 10 900000000000526001 REPLACED BY association reference set 867311000168108 Metomax capsule, 10 20170131 +83622011000036100 Clotrimazole 3 Day (Apo) 2% cream 900000000000526001 REPLACED BY association reference set 715741000168103 Clotrimazole 3 Day (Apo) 2% vaginal cream 20150930 +125271000036105 Laxacon solution: powder for, sachet 900000000000526001 REPLACED BY association reference set 674251000168106 Laxacon powder for oral liquid, sachet 20141031 +933231781000036106 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004771000168106 Naropin 0.2% with Fentanyl 400 microgram/100 mL injection solution, 5 x 100 mL bags 20170930 +65518011000036107 Metformin Hydrochloride (GA) 1 g tablet 900000000000526001 REPLACED BY association reference set 949431000168100 Metformin Hydrochloride 1000 (GA) 1 g tablet 20170630 +923725011000036109 Omeprazole (Pharmacor) 20 mg capsule, 100, blister pack 900000000000526001 REPLACED BY association reference set 717071000168101 Omeprazole (Pharmacor) 20 mg enteric capsule, 100, blister pack 20150930 +34241000036106 colistimethate sodium 1 million units (80 mg) powder for inhalation, 30 vials 900000000000526001 REPLACED BY association reference set 818111000168105 colistimethate sodium 1 million units powder for inhalation, 30 vials 20160731 +74750011000036107 Decongestant (Amcal) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083561000168109 Decongestant (Amcal) 0.05% nasal spray, 20 mL, pump pack 20180228 +94701000036108 Ostelin Osteoguard tablet: film-coated, 90 900000000000526001 REPLACED BY association reference set 932981000168101 Ostelin Osteoguard film-coated tablet, 90 20170531 +929484011000036108 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 10 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850841000168109 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 10 x 1 mL ampoules 20161130 +933220791000036101 ropivacaine hydrochloride monohydrate 400 mg/200 mL injection, bag 900000000000526001 REPLACED BY association reference set 1004631000168100 ropivacaine hydrochloride 400 mg/200 mL injection, bag 20170930 +75079011000036106 Haemophilus influenzae type b vaccine 7.5 microgram/0.5 mL injection, vial 900000000000526001 REPLACED BY association reference set 832191000168108 Haemophilus influenzae type b conjugate (PRP-OMP) vaccine injection, 0.5 mL vial 20160930 +36929011000036106 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 900000000000526001 REPLACED BY association reference set 850921000168106 Atropine Sulphate Minims (Bausch & Lomb) 1% eye drops solution, 20 x 0.5 mL unit doses 20161130 +60436011000036102 Zantac 150 mg/10 mL oral liquid: solution, 280 mL, bottle 900000000000526001 REPLACED BY association reference set 783931000168105 Zantac 150 mg/10 mL oral liquid, 280 mL, bottle 20160531 +900821000168101 PKU Sphere powder for oral liquid, 35 g sachet 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 922601000168103 PKU Sphere20 Vanilla powder for oral liquid, 35 g sachet 20170430 +711991000168106 Ropibam 0.2% 200 mg/100 mL injection solution, 100 mL bag 900000000000526001 REPLACED BY association reference set 1005111000168101 Ropibam 0.2% 200 mg/100 mL injection solution, 100 mL bag 20170930 +159241000036101 Oxycontin Reformulation 80 mg modified release tablet, 28 900000000000526001 REPLACED BY association reference set 928483011000036108 Oxycontin 80 mg modified release tablet, 28 20170731 +5779011000036104 Trifeme (levonorgestrel 125 microgram + ethinyloestradiol 30 microgram) tablet: film-coated 900000000000526001 REPLACED BY association reference set 792841000168103 Trifeme (levonorgestrel 125 microgram + ethinylestradiol 30 microgram) sugar coated tablet 20160531 +4978011000036106 Codalgin uncoated tablet 900000000000526001 REPLACED BY association reference set 836011000168102 Codalgin uncoated tablet 20161031 +152561000036108 Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085381000168108 Atrovent Forte 44 microgram/actuation nasal spray, 180 actuations, pump pack 20180228 +930837011000036103 Actonel EC Combi (1 x Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7 900000000000526001 REPLACED BY association reference set 852681000168102 Actonel EC Combi (1 x Actonel EC Once-a-Week tablet, 6 x Calcium Carbonate (Sanofi-Aventis) tablets), 7 20161130 +711381000168107 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004521000168102 Naropin 0.2% 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +84264011000036102 TYR Anamix Junior LQ oral liquid: solution, 36 x 125 mL cans 900000000000526001 REPLACED BY association reference set 724911000168108 TYR Anamix Junior LQ oral liquid solution, 36 x 125 mL bottles 20151031 +75631000036102 risedronate sodium 35 mg enteric tablet [4] (&) calcium (as carbonate) 500 mg tablet [24], 28 900000000000526001 REPLACED BY association reference set 852701000168104 risedronate sodium 35 mg enteric tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [24], 28 20161130 +138781000036109 Haemophilus influenzae type B polyribose ribitol phosphate vaccine 5 microgram + meningococcal group C polysaccharide vaccine 5 microgram injection [1 vial] (&) inert substance diluent [1 syringe], 1 pack 900000000000526001 REPLACED BY association reference set 846101000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20161130 +61118011000036104 Difflam Lozenge honey and lemon sugar free lozenge, 8, blister pack 900000000000526001 REPLACED BY association reference set 995781000168102 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8, blister pack 20170831 +90431000036101 dinoprostone 800 microgram/mL vaginal gel, 2.5 mL 900000000000526001 REPLACED BY association reference set 1005391000168107 dinoprostone 2 mg/3 g vaginal gel, 3 g syringe 20170930 +7622011000036101 Codapane Forte uncoated tablet 900000000000526001 REPLACED BY association reference set 835931000168100 Codapane Forte 500/30 uncoated tablet 20161031 +75450011000036108 Bacillus Calmette and Guerin live attenuated vaccine 1.5 mg injection [1 vial] (&) inert substance diluent [1 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 822571000168100 Mycobacterium bovis (BCG) live vaccine injection [1 vial] (&) inert substance diluent [1.5 mL vial], 1 pack 20160831 +17865011000036106 Aspalgin dispersible tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 834291000168106 Aspalgin dispersible tablet, 50, blister pack 20161031 +33071011000036107 Albey Paper Wasp Venom (paper wasp venom 550 microgram) injection: powder for, 550 microgram vial 900000000000526001 REPLACED BY association reference set 758891000168100 Paper Wasp Venom (Albey) (paper wasp venom 550 microgram) powder for injection, 550 microgram vial 20160229 +641031000168105 Lucrin Depot 4-Month (inert substance) diluent, 2 mL syringe 900000000000526001 REPLACED BY association reference set 707361000168107 Lucrin Depot 4-Month (inert substance) diluent, 1.5 mL syringe 20150731 +48759011000036108 Aquacel (177904) 2 g (30 cm) rope, 2 g 900000000000526001 REPLACED BY association reference set 745111000168109 Aquacel (177904) 2 cm x 45 cm ribbon 20160131 +69041011000036100 Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g, jar 900000000000526001 REPLACED BY association reference set 705621000168100 Salicylic Acid 5% in Aqueous Cream (David Craig) cream, 100 g, jar 20150731 +73929011000036108 Boostrix injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837641000168108 Boostrix injection suspension, 0.5 mL syringe 20161031 +56583011000036101 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 100 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721461000168100 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 100 mL 20151031 +74717011000036100 Adacel Polio injection suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 839721000168103 Adacel Polio injection suspension, 5 x 0.5 mL syringes 20161031 +77388011000036105 Centrum tablet: film-coated, 130, bottle 900000000000526001 REPLACED BY association reference set 833331000168102 Centrum film-coated tablet, 130, bottle 20160930 +82130011000036107 Codalgin uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 836101000168101 Codalgin uncoated tablet, 20 20161031 +12801011000036106 Otocomb Otic ointment, 5 g 900000000000526001 REPLACED BY association reference set 758371000168105 Otocomb Otic ear ointment, 5 g 20160229 +35141011000036109 codeine phosphate 50 mg/mL injection, 5 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 835651000168104 codeine phosphate hemihydrate 50 mg/mL injection, 5 x 1 mL ampoules 20161031 +921856011000036109 Macu-Vision tablet: film-coated, 30, bottle 900000000000526001 REPLACED BY association reference set 757871000168100 Macu-Vision film-coated tablet, 30, bottle 20160229 +73948011000036103 Boostrix-IPV injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840711000168100 Boostrix-IPV injection suspension, 0.5 mL syringe 20161031 +75061011000036102 poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 839851000168101 polio trivalent inactivated vaccine injection, 0.5 mL syringe 20161031 +74754011000036102 Prevenar 16 microgram/0.5 mL injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827571000168102 Prevenar injection suspension, 10 x 0.5 mL syringes 20160930 +51424011000036101 gauze and cotton tissue combine roll 9 cm x 10 m roll: wrapped pack, 1 pack 900000000000526001 REPLACED BY association reference set 688641000168105 gauze and cotton tissue combine roll 9 cm x 10 m wrapped pack roll, 1 20150331 +833771000168100 somatropin + inert substance 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 21220011000036103 inert substance 20170731 +49441011000036100 Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 689171000168104 Leukoplast (1071) 2.5 cm x 2.5 m tape, 1 roll 20150331 +74952011000036101 Varicella zoster live attenuated vaccine 900000000000526001 REPLACED BY association reference set 830851000168105 varicella-zoster live vaccine 20160930 +930680011000036103 Regaine Men's Extra Strength Foam 5% foam, 3 x 63 mL 900000000000526001 REPLACED BY association reference set 710791000168104 Regaine Men's Extra Strength 5% foam, 3 x 63 mL 20150831 +922111011000036103 alpha tocopherol acetate 250 mg (250 units) capsule 900000000000526001 REPLACED BY association reference set 842781000168105 dl-alpha-tocopheryl acetate 250 mg (250 units) capsule 20161031 +18751011000036107 Comfarol Forte uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835981000168104 Comfarol Forte uncoated tablet, 20, blister pack 20161031 +6711011000036107 Dysport 500 units injection: powder for, 500 units vial 900000000000526001 REPLACED BY association reference set 721021000168103 Dysport 500 units powder for injection, 500 units vial 20151031 +161361000036104 Cardiprin 100 mg dispersible tablet, 180 900000000000526001 REPLACED BY association reference set 804111000168103 Cardiprin 100 mg tablet, 180 20160630 +81170011000036106 Gastrolyte orange powder for oral liquid, 2 x 5.2 g sachets 900000000000526001 REPLACED BY association reference set 871671000168108 Gastrolyte Orange powder for oral liquid, 2 x 5.2 g sachets 20170131 +22921011000036107 interferon alfa-2b 60 million units/1.2 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 722821000168100 interferon alfa-2b 60 million units/1.2 mL injection 20151031 +69741000036105 mesalazine 1.5 g granules, sachet 900000000000526001 REPLACED BY association reference set 1084221000168104 mesalazine 1.5 g modified release granules, sachet 20180228 +380511000168100 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 125 mL can 900000000000526001 REPLACED BY association reference set 724971000168100 amino acid formula with fat, carbohydrate, vitamins, minerals and trace elements without methionine and supplemented with docosahexaenoic acid oral liquid, 125 mL bottle 20151031 +46221000036108 Remeron 30 mg tablet: orally disintegrating, 30, blister pack 900000000000526001 REPLACED BY association reference set 783861000168109 Remeron Soltab 30 mg orally disintegrating tablet, 30, blister pack 20160531 +91861000036104 docosahexaenoic acid + eicosapentaenoic acid + krill oil 900000000000526001 REPLACED BY association reference set 91931000036100 krill oil 20170731 +933221231000036101 ropivacaine hydrochloride monohydrate 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, bag 900000000000526001 REPLACED BY association reference set 1004681000168104 ropivacaine hydrochloride 200 mg/100 mL + fentanyl 200 microgram/100 mL injection, bag 20170930 +13839011000036105 Caltrate 600 mg (calcium 600 g) tablet: film-coated, 120 900000000000526001 REPLACED BY association reference set 860331000168104 Caltrate 1.5 g (calcium 600 mg) film-coated tablet, 120 20161231 +7595011000036105 Norditropin Nordiflex 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726441000168107 Norditropin Nordiflex 15 mg/1.5 mL injection solution 20151031 +55767011000036105 Difflam Forte Anti-Inflammatory Throat Spray 0.3% spray: solution, 15 mL 900000000000526001 REPLACED BY association reference set 721331000168102 Difflam Forte Anti-Inflammatory Throat 0.3% oral spray, 15 mL 20151031 +698401000168107 meningococcal group B heparin binding antigen fusion protein + meningococcal group B adhesin A protein + meningococcal group B factor H binding protein fusion protein + meningococcal group B outer membrane vesicles 900000000000526001 REPLACED BY association reference set 822761000168104 meningococcal B 4 component vaccine 20160831 +921929011000036106 MD-Gastroview solution, 12 x 120 mL each, bottle 900000000000526001 REPLACED BY association reference set 696181000168106 MD-Gastroview solution, 12 x 120 mL, bottles 20150430 +49492011000036100 Lophlex oral liquid: powder for, 30 x 27.8 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 725181000168101 PKU Lophlex Unflavoured powder for oral liquid, 30 x 27.8 g sachets 20151031 +44099011000036103 Zovirax 400 mg dispersible tablet, 70, blister pack 900000000000526001 REPLACED BY association reference set 859601000168102 Zovirax Dispersible 400 mg tablet, 70, blister pack 20161231 +84075011000036103 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 873081000168102 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 1 L bag 20170131 +20628011000036105 Creon 5000 units modified release capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 847541000168106 Creon 5000 enteric capsule, 100, bottle 20161130 +776511000168105 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24 900000000000526001 REPLACED BY association reference set 996131000168109 Duro-Tuss Chesty Cough Lozenge Sugar Free Lime lozenge, 24 20170831 +48733011000036106 Hypafix (71443-1) 5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688941000168102 Hypafix (71443-1) 5 cm x 10 m tape 20150331 +46395011000036107 lignocaine hydrochloride anhydrous 1% (200 mg/20 mL) injection, 30 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 693291000168105 lidocaine (lignocaine) hydrochloride monohydrate 1% (200 mg/20 mL) injection, 30 x 20 mL ampoules 20150331 +53693011000036104 Clotrimazole 3 Day (Guardian) 2% cream 900000000000526001 REPLACED BY association reference set 715151000168100 Clotrimazole 3 Day (Guardian) 2% vaginal cream 20150930 +33530011000036101 Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 695391000168104 Champix Combination Pack (11 x 500 microgram tablets, 42 x 1 mg tablets), 53, blister pack 20150430 +925354011000036103 Pemzo 20 mg capsule, 7, bottle 900000000000526001 REPLACED BY association reference set 717651000168104 Pemzo 20 mg enteric capsule, 7, bottle 20150930 +653571000168104 Retinofluor 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721151000168105 Retinofluor 10% 20151031 +713351000168101 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005431000168102 Ropivacaine (Pfizer) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +163691000036103 Anapen Auto-Injector 150 microgram/0.3 mL injection: solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 726681000168104 Anapen Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose 20151031 +931845011000036104 meningococcal group A conjugate vaccine 10 microgram + meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826691000168104 meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection, syringe 20160930 +828341000168102 Menitorix (Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram) powder for injection, vial 900000000000526001 REPLACED BY association reference set 846061000168103 Menitorix (Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine) powder for injection, vial 20161130 +653331000168107 Molaxole solution: powder for, 8 sachets 900000000000526001 REPLACED BY association reference set 674241000168109 Molaxole powder for oral liquid, 8 sachets 20141031 +87911000036104 Prostin E2 800 microgram/mL vaginal gel 900000000000526001 REPLACED BY association reference set 1005381000168109 Prostin E2 2 mg/3 g vaginal gel, 3 g syringe 20170930 +74250011000036104 Gardasil injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823101000168108 Gardasil injection suspension, 10 x 0.5 mL syringes 20160831 +925729011000036102 Valtrex 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1009681000168100 Valtrex-1000 1 g film-coated tablet 20170930 +77335011000036109 Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 10 x 100 mL vials 900000000000526001 REPLACED BY association reference set 695291000168109 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles 20150430 +702641000168101 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837411000168107 Tetanus and Diphtheria Toxoids Adsorbed (MassBiologics) injection suspension, 10 x 0.5 mL vials 20161031 +33244011000036100 Lucrin Depot (1 x 7.5 mg syringe, 1 x 2 mL diluent syringe), 1 pack 900000000000526001 REPLACED BY association reference set 707301000168106 Lucrin Depot (1 x 7.5 mg syringe, 1 x 1.5 mL inert diluent syringe), 1 pack 20150731 +74881011000036108 Tripacel injection suspension, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837611000168109 Tripacel injection suspension, 5 x 0.5 mL vials 20161031 +53687011000036107 Anti Fungal V 6 Day (Amcal) 1% cream 900000000000526001 REPLACED BY association reference set 714931000168105 Anti Fungal V 6 Day (Amcal) 1% vaginal cream 20150930 +933225771000036109 ropivacaine hydrochloride monohydrate 100 mg/10 mL injection, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005001000168103 ropivacaine hydrochloride 100 mg/10 mL injection, 5 x 10 mL ampoules 20170930 +141541000036101 lanreotide 90 mg injection, syringe 900000000000526001 REPLACED BY association reference set 819511000168108 lanreotide 90 mg/0.5 mL injection, syringe 20160731 +37412011000036105 Codral Forte uncoated tablet, 20, strip pack 900000000000526001 REPLACED BY association reference set 834571000168108 Codral Forte uncoated tablet, 20, strip pack 20161031 +85194011000036105 alpha tocopherol acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate anhydrous 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30 900000000000526001 REPLACED BY association reference set 843091000168100 dl-alpha-tocopheryl acetate 15 mg + ascorbic acid 100 mg + biotin 200 microgram + calcium (as hydrogen phosphate) 125 mg + colecalciferol 500 units + cupric sulfate 2.51 mg (copper 1 mg) + cyanocobalamin 4 microgram + iron (as ferrous fumarate) 60 mg + folic acid 800 microgram + magnesium (as oxide light) 69 mg + magnesium (as phosphate dibasic trihydrate) 30.39 mg + manganese (as sulfate monohydrate) 1 mg + nicotinamide 19 mg + calcium pantothenate 10 mg + pyridoxine hydrochloride 2.6 mg + riboflavin 1.8 mg + thiamine nitrate 1.55 mg + zinc (as sulfate monohydrate) 7.5 mg tablet, 30 20161031 +18904011000036109 Tenopt 0.25% eye drops solution, 5 mL, puffer pack 900000000000526001 REPLACED BY association reference set 948441000168103 Tenopt 0.25% eye drops solution, 5 mL, bottle 20170630 +170401000168100 MSUD Cooler 20 oral liquid: solution, 174 mL sachet 900000000000526001 REPLACED BY association reference set 725341000168109 MSUD Cooler 20 oral liquid solution, 174 mL pouch 20151031 +734121000168102 Centavite Adult tablet: film-coated, 30 900000000000526001 REPLACED BY association reference set 842931000168106 Centavite Adult film-coated tablet, 30 20161031 +75411011000036109 hepatitis A inactivated vaccine 1440 ELISA units/mL injection, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 824721000168101 hepatitis A adult vaccine 1440 ELISA units/mL injection, 10 x 1 mL vials 20160930 +81054011000036107 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 900000000000526001 REPLACED BY association reference set 863871000168103 Glucose (Fresenius Kabi) 5% (5 g/100 mL) intravenous infusion injection, 100 mL bag 20170131 +50517011000036104 Leukosilk (1024) 5 cm x 5 m stretch tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694131000168104 Leukosilk (1024) 5 cm x 5 m tape, 1 roll, carton 20150331 +929747011000036104 aluminium sulfate hydrate 98.6% stick, 5 g 900000000000526001 REPLACED BY association reference set 846161000168104 aluminium sulfate 98.6% stick, 5 g 20161130 +80176011000036100 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 900000000000526001 REPLACED BY association reference set 863671000168102 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 250 mL bag 20170131 +29251000036105 Typhim Vi 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827211000168108 Typhim Vi 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 20160930 +76122011000036106 Invite E High Potency Vitamin E 96% oil 900000000000526001 REPLACED BY association reference set 842741000168100 Invite E High Potency Vitamin E 96% oil 20161031 +74809011000036108 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824991000168102 Havrix Junior 720 ELISA units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +931676011000036101 Actonel EC Combi (4 x Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack 900000000000526001 REPLACED BY association reference set 852721000168108 Actonel EC Combi (4 x Actonel EC Once-a-Week tablets, 24 x Calcium Carbonate (Sanofi-Aventis) tablets), 28, blister pack 20161130 +75503011000036100 diphtheria toxoid vaccine 2 units + tetanus toxoid vaccine 20 units + Bordetella pertussis, acellular pertussis toxoid vaccine 8 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 8 microgram + Bordetella pertussis, acellular pertactin vaccine 2.5 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 837651000168105 diphtheria + tetanus + pertussis 3 component adolescent/adult vaccine injection, 0.5 mL syringe 20161031 +20538011000036101 Granocyte 33.6 million units (263 microgram) powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 838281000168101 Granocyte-34 33.6 million units (263 microgram) powder for injection, 1 vial 20161031 +761811000168107 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 833851000168104 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack, composite pack 20160930 +137921000036107 Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1005931000168109 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 200 mL bag 20170930 +81619011000036105 glucose 5% (12.5 g/250 mL) injection, 40 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863801000168108 glucose monohydrate 5% (12.5 g/250 mL) injection, 40 x 250 mL bags 20170131 +12059011000036100 Nemdyn Otic ointment, 10 g 900000000000526001 REPLACED BY association reference set 689861000168100 Nemdyn Otic ear ointment, 10 g 20150331 +74773011000036101 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825411000168104 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL vials 20160930 +84617011000036109 magnesium amino acid chelate 135 mg (equivalent to 27 mg of magnesium) + magnesium (as oxide heavy) 337 mg + magnesium (as phosphate tribasic pentahydrate) 36 mg + zinc (as oxide) 2 mg capsule, 200 900000000000526001 REPLACED BY association reference set 750251000168109 magnesium oxide heavy 564.2 mg (magnesium 337 mg) + magnesium phosphate pentahydrate 175 mg (magnesium 36 mg) + magnesium amino acid chelate 135 mg (magnesium 27 mg) (total magnesium 400 mg) + zinc oxide 2.49 mg (zinc 2 mg) capsule, 200 20160131 +71771000036107 Caltrate 600 mg with Vitamin D 400 IU tablet: film-coated, 60 900000000000526001 REPLACED BY association reference set 862101000168109 Caltrate 600 mg with Vitamin D 400 IU film-coated tablet, 60 20161231 +89861000036104 Paclitaxel (GN) 30 mg/5 mL injection: solution, 5 mL vial 900000000000526001 REPLACED BY association reference set 730031000168106 Paclitaxel (GN) 30 mg/5 mL concentrated injection, 5 mL vial 20151130 +54286011000036109 Panadol Children's Drops 1 Month to 2 Years Colour Free 100 mg/mL oral liquid: solution 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721401000168101 Panadol Children's Drops 1 Month to 2 Years Colour Free Cherry Vanilla 100 mg/mL oral liquid solution 20151031 +44516011000036106 Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations, bottle 900000000000526001 REPLACED BY association reference set 1085271000168102 Nasonex Aqueous 50 microgram/actuation nasal spray, 40 actuations, pump pack 20180228 +81167011000036101 Gastrolyte natural powder for oral liquid, 10 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871881000168105 Gastrolyte Natural powder for oral liquid, 10 x 4.9 g sachets 20170131 +141521000036109 lanreotide 120 mg injection, syringe 900000000000526001 REPLACED BY association reference set 819381000168109 lanreotide 120 mg/0.5 mL injection, syringe 20160731 +83639011000036107 Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845581000168106 Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device 20161130 +67312011000036108 Cepacol Antibacterial Honey and Lemon lozenge, 16 900000000000526001 REPLACED BY association reference set 995061000168108 Cepacol Antibacterial Honey and Lemon lozenge, 16 20170831 +734111000168109 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + alpha tocopherol acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium carbonate 499.5 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 30 900000000000526001 REPLACED BY association reference set 842921000168108 betacarotene 1.8 mg + vitamin A 300 microgram + colecalciferol 15 microgram (600 units) + dl-alpha-tocopheryl acetate 50 mg + thiamine nitrate 2.18 mg + riboflavin 3.2 mg + nicotinamide 15 mg + calcium pantothenate 10.8 mg + pyridoxine hydrochloride 6 mg + folic acid 300 microgram + cyanocobalamin 20 microgram + ascorbic acid 90 mg + biotin 45 microgram + phytomenadione 25 microgram + iron 5 mg + calcium 200 mg + magnesium 50 mg + zinc 7.5 mg + iodine 150 microgram + potassium 80 mg + copper 1 mg + chromium 35 microgram + manganese 5 mg + selenium 55 microgram + lutein 500 microgram + lycopene 600 microgram tablet, 30 20161031 +69475011000036105 Panadol Children's 7+ Years 250 mg tablet: soluble, 16, strip pack 900000000000526001 REPLACED BY association reference set 721601000168104 Panadol Children's 7+ Years Colour Free Strawberry 250 mg soluble tablet, 16, strip pack 20151031 +680621000168102 Zaldiar Combination Therapy film-coated tablet, 20 900000000000526001 REPLACED BY association reference set 1027831000168101 Zaldiar film-coated tablet, 20 20171031 +687561000168107 azelastine + fluticasone 900000000000526001 REPLACED BY association reference set 861271000168103 azelastine + fluticasone propionate 20161231 +921874011000036103 Centrum Select 50 Plus tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 843281000168109 Centrum Select 50 Plus film-coated tablet, 60, bottle 20161031 +815041000168104 Entrip 10 mg tablet, 1000, bottle 900000000000526001 REPLACED BY association reference set 856651000168108 Entrip 10 mg film-coated tablet, 1000, bottle 20161231 +19911011000036106 Intron A Redipen 30 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722811000168107 Intron A Redipen 30 million units/1.2 mL injection solution, 1.2 mL, injection device 20151031 +71952011000036109 benzyl alcohol 6 mg + cetylpyridinium chloride monohydrate 1.3 mg lozenge, 16 900000000000526001 REPLACED BY association reference set 995181000168103 benzyl alcohol 6 mg + cetylpyridinium chloride 1.3 mg lozenge, 16 20170831 +688821000168100 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack 900000000000526001 REPLACED BY association reference set 831071000168103 Priorix (10 x vaccine vials, 10 x 0.5 mL inert diluent syringes), 1 pack, composite pack 20160930 +71411000036105 mesalazine 1.5 g granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084271000168103 mesalazine 1.5 g modified release granules, 100 sachets 20180228 +75393011000036100 Varicella zoster live attenuated vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 831801000168104 varicella-zoster live vaccine 19 400 PFU injection [1 vial] (&) inert substance diluent [0.65 mL syringe], 1 pack 20160930 +82423011000036100 Ungvita 0.054% ointment, 50 g, tube 900000000000526001 REPLACED BY association reference set 695011000168106 Ungvita 0.099% ointment, 50 g, tube 20150430 +80235011000036107 Gastrolyte fruit powder for oral liquid, 4.9 g sachet 900000000000526001 REPLACED BY association reference set 871791000168103 Gastrolyte Fruit powder for oral liquid, 4.9 g sachet 20170131 +12378011000036109 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20 900000000000526001 REPLACED BY association reference set 834821000168105 Codeine Phosphate (Fawns & McAllan) 30 mg uncoated tablet, 20 20161031 +921410011000036105 Macu-Vision tablet: film-coated, 90 900000000000526001 REPLACED BY association reference set 757921000168109 Macu-Vision film-coated tablet, 90 20160229 +711341000168102 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1004561000168107 Naropin 0.2% 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +140841000036106 Ropivacaine Hydrochloride (Kabi) 0.2% (400 mg/200 mL) injection: solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005951000168103 Ropivacaine 0.2% (Kabi) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +74957011000036104 rotavirus pentavalent live reassortant oral vaccine 900000000000526001 REPLACED BY association reference set 822451000168108 rotavirus pentavalent live vaccine 20160831 +84076011000036105 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 873141000168106 Synthamin 17 Amino Acid 10% with Electrolytes and Glucose 25% intravenous infusion injection, 12 x 1 L bags 20170131 +689731000168101 Kenacomb Otic ear ointment 900000000000526001 REPLACED BY association reference set 758271000168102 Kenacomb Otic ear ointment 20160229 +78250011000036103 iopromide 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 695071000168103 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 10 mL vials 20150430 +31431000036103 Typherix 25 microgram/0.5 mL injection: solution, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827141000168104 Typherix 25 microgram/0.5 mL injection solution, 10 x 0.5 mL syringes 20160930 +653611000168108 Retinofluor 500 mg/5 mL injection: solution, 10 x 5 mL vials 900000000000526001 REPLACED BY association reference set 721171000168101 Retinofluor 10% 500 mg/5 mL injection solution, 10 x 5 mL vials 20151031 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 825991000168103 Streptococcus pneumoniae type 19A conjugate antigen 20160930 +923904011000036105 Omeprazole (Pharmacor) 20 mg capsule, 50, bottle 900000000000526001 REPLACED BY association reference set 717291000168107 Omeprazole (Pharmacor) 20 mg enteric capsule, 50, bottle 20150930 +25961000036104 typhoid fever polysaccharide vaccine 900000000000526001 REPLACED BY association reference set 826221000168103 Salmonella typhi inactivated antigen 20160930 +108691000036109 Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20 900000000000526001 REPLACED BY association reference set 1056191000168107 Sorbact Absorption (S98222) 10 cm x 10 cm dressing, 20 20171231 +933241741000036101 Ovidrel 250 microgram/0.5 mL injection: solution, 0.5 mL cartridge 900000000000526001 REPLACED BY association reference set 728091000168109 Ovidrel 250 microgram/0.5 mL injection solution, dose 20151031 +711531000168101 Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1004941000168101 Naropin 0.75% 75 mg/10 mL injection solution, 10 mL ampoule 20170930 +61521000036109 Hepasol oral liquid: solution, 10 mL 900000000000526001 REPLACED BY association reference set 688121000168105 Hepasol oral liquid solution, 10 mL 20150331 +727991000168107 fluoxetine 20 mg dispersible tablet, 7 900000000000526001 REPLACED BY association reference set 844761000168108 fluoxetine 20 mg tablet, 7 20161031 +836161000168100 calcium chloride dihydrate 642.5 mg (calcium 4.4 mmol)/2.5 L + icodextrin 187.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + magnesium chloride 127.5 mg (magnesium 0.63 mmol)/2.5 L + sodium chloride 13.5 g/2.5 L peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872311000168104 icodextrin 187.5 g/2.5 L + sodium chloride 13.5 g/2.5 L + sodium lactate 11.25 g/2.5 L + calcium chloride dihydrate 642.5 mg/2.5 L + magnesium chloride hexahydrate 127.5 mg/2.5 L peritoneal dialysis solution, 2.5 L bag 20170131 +75119011000036109 inert substance powder for oral liquid, 5.6 g sachet 900000000000526001 REPLACED BY association reference set 821891000168107 inert substance effervescent granules, 5.6 g sachet 20160831 +53707011000036104 Cepacol Plus with Anaesthetic Original Flavour lozenge 900000000000526001 REPLACED BY association reference set 995431000168108 Cepacol Plus with Anaesthetic Original Flavour lozenge 20170831 +77391011000036102 Centrum tablet: film-coated, 200, bottle 900000000000526001 REPLACED BY association reference set 833421000168105 Centrum film-coated tablet, 200, bottle 20160930 +64894011000036109 prefilled injection device 900000000000526001 REPLACED BY association reference set 686781000168106 injection device 20170331 +76581011000036104 Sorbilax 1 mL/mL oral liquid: solution, 500 mL 900000000000526001 REPLACED BY association reference set 690661000168108 Sorbilax 70% non-crystallising oral liquid solution, 500 mL 20150331 +41219011000036102 Voluven 6% / 0.9% injection solution, 10 x 500 mL bags 900000000000526001 REPLACED BY association reference set 1013451000168109 Voluven injection solution, 10 x 500 mL bags 20170930 +726881000168100 Epipen Auto-Injector 300 microgram/0.3 mL injection, 60 doses, injection device 900000000000526001 REPLACED BY association reference set 881181000168105 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device 20170228 +73665011000036102 rabies inactivated vaccine 900000000000526001 REPLACED BY association reference set 820591000168100 rabies virus antigen 20160831 +74925011000036108 Infanrix-IPV injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840821000168101 Infanrix-IPV injection suspension, 0.5 mL syringe 20161031 +76824011000036107 Caltrate Plus with Vitamin D 200 IU tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 861771000168105 Caltrate Plus with Vitamin D 200 IU film-coated tablet, 100 20161231 +44100011000036103 Zovirax 200 mg dispersible tablet, 25, bottle 900000000000526001 REPLACED BY association reference set 859201000168100 Zovirax Dispersible 200 mg tablet, 25, bottle 20161231 +700028641000036109 Calcium carbonate / colecalciferol (Sanofi-Aventis) granules: effervescent, 24 sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 810411000168101 Actonel Combi D effervescent granules, 24 sachets 20160630 +827961000168103 Neisseria meningitidis group C polysaccharide antigen 10 microgram/0.5 mL injection, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846011000168101 meningococcal C conjugate vaccine injection, 20 x 0.5 mL syringes 20161130 +55823011000036106 Anti Fungal V 3 Day (Amcal) 2% cream, 20 g 900000000000526001 REPLACED BY association reference set 714901000168103 Anti Fungal V 3 Day (Amcal) 2% vaginal cream, 20 g 20150930 +86869011000036100 Calcia plus Vitamin D 200 IU chewable tablet, 120, bottle 900000000000526001 REPLACED BY association reference set 860111000168106 Calcia plus Vitamin D 200 IU chewable tablet, 120, bottle 20161231 +61270011000036107 Clotrimazole 3 Day Treatment (Pharmacist) 2% cream, 20 g, tube 900000000000526001 REPLACED BY association reference set 715701000168100 Clotrimazole 3 Day Treatment (Pharmacist) 2% vaginal cream, 20 g, tube 20150930 +78256011000036100 iopromide 56.665 g/75 mL (equivalent to 27.75 g/75 mL iodine) injection, 10 x 75 mL vials 900000000000526001 REPLACED BY association reference set 695681000168108 iopromide 769 mg (iodine 370 mg)/mL injection, 10 x 75 mL bottles 20150430 +923757011000036100 Omeprazole (Pharmacor) 20 mg capsule, 280, blister pack 900000000000526001 REPLACED BY association reference set 717211000168103 Omeprazole (Pharmacor) 20 mg enteric capsule, 280, blister pack 20150930 +921518011000036104 Ultravist-300 12.47 g/20 mL (equivalent to 6 g/20 mL iodine) injection: solution, 10 x 20 mL vials 900000000000526001 REPLACED BY association reference set 695131000168100 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 20 mL vials 20150430 +67177011000036107 Microshield Handrub solution, 125 mL 900000000000526001 REPLACED BY association reference set 767671000168107 Microshield Handrub solution, 125 mL 20160331 +13157011000036107 Intron A Redipen 60 million units/1.2 mL injection: solution, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722851000168108 Intron A Redipen 60 million units/1.2 mL injection solution, 1.2 mL 20151031 +77306011000036105 X-Evess (1 x 500 mL oral liquid, 1 x 500 mL oral liquid), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 703131000168108 X-Evess (1 x 500 mL Part-1 oral liquid bottle, 1 x 500 mL Part-2 oral liquid bottle), 1 pack 20150531 +141771000036104 Somatuline Autogel 120 mg injection: solution, 1 syringe 900000000000526001 REPLACED BY association reference set 819411000168107 Somatuline Autogel 120 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +86632011000036106 Calcia plus Vitamin D 400 IU chewable tablet 900000000000526001 REPLACED BY association reference set 860131000168101 Calcia plus Vitamin D 400 IU chewable tablet 20161231 +50933011000036109 dressing hydrofibre alternate to alginates 2 g (30 cm) rope, 2 g 900000000000526001 REPLACED BY association reference set 745011000168105 dressing hydrofibre alternate to alginates 2 cm x 45 cm ribbon 20160131 +50217011000036106 Hypafix (71443-1) 5 cm x 10 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 688971000168109 Hypafix (71443-1) 5 cm x 10 m tape, 1 roll, carton 20150331 +82766011000036108 Synflorix 16 microgram injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 827651000168107 Synflorix injection suspension, 10 x 0.5 mL syringes 20160930 +44074011000036107 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (100 mg/5 mL) injection: solution, 5 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693361000168107 Lignocaine (Pfizer) 2% (100 mg/5 mL) injection solution, 5 x 5 mL ampoules 20150331 +74791011000036109 Flo Xylo-Pos 0.1% nasal spray, 15 mL, bottle 900000000000526001 REPLACED BY association reference set 1085331000168107 Flo Xylo-Pos 0.1% nasal spray, 15 mL, pump pack 20180228 +711761000168102 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005551000168109 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +815141000168100 Entrip 25 mg tablet, 1000 900000000000526001 REPLACED BY association reference set 856751000168104 Entrip 25 mg film-coated tablet, 1000 20161231 +925337011000036108 Omepro 20 mg capsule, 5, bottle 900000000000526001 REPLACED BY association reference set 716631000168108 Omepro 20 mg enteric capsule, 5, bottle 20150930 +76135011000036101 Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe 900000000000526001 REPLACED BY association reference set 872041000168102 Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe 20170131 +20994011000036108 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL cartridge 900000000000526001 REPLACED BY association reference set 1041431000168107 Gonal-F Pen 450 units (32.76 microgram)/0.75 mL injection solution, 0.75 mL injection device 20171130 +36898011000036104 Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 111 microgram/5 mL (0.3 micromoles/mL selenium) injection: intravenous infusion, 10 x 5 mL vials 900000000000526001 REPLACED BY association reference set 720821000168101 Sodium Selenate Decahydrate (Phebra) 111 microgram/5 mL injection solution, 10 x 5 mL vials 20151031 +71431000036101 mesalazine 1.5 g granules, 60 sachets 900000000000526001 REPLACED BY association reference set 1084241000168105 mesalazine 1.5 g modified release granules, 60 sachets 20180228 +927706011000036100 Immucyst 1920 million CFU powder for injection, 1 vial 900000000000526001 REPLACED BY association reference set 1045971000168100 Immucyst 81 mg powder for injection, 1 vial 20171130 +71684011000036105 calcium gluconate monohydrate 10% (1 g/10 mL) injection, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 684671000168108 calcium gluconate monohydrate 953 mg/10 mL injection, 10 x 10 mL vials 20150131 +57061011000036101 Difflam Lozenge honey and lemon sugar free lozenge, 8 900000000000526001 REPLACED BY association reference set 995771000168100 Difflam Lozenge Honey and Lemon Sugar Free lozenge, 8 20170831 +728671000168101 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005721000168109 Ropivacaine 0.2% (Actavis) 20 mg/10 mL injection solution, 10 mL ampoule 20170930 +20411011000036106 Keppra 1 g tablet: film-coated, 60, blister pack 900000000000526001 REPLACED BY association reference set 721071000168102 Keppra-1000 1 g film-coated tablet, 60, blister pack 20151031 +729891000168105 Citracal Plus D tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 860001000168109 Citracal Plus D film-coated tablet, 100 20161231 +827921000168108 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845981000168103 NeisVac-C 10 microgram/0.5 mL injection suspension, 0.5 mL syringe 20161130 +924201011000036106 pancreatic extract 5000 units/100 mg enteric coated granules, 20 g 900000000000526001 REPLACED BY association reference set 847161000168102 lipase 5000 units/100 mg + amylase 3600 units/100 mg + protease 200 units/100 mg enteric coated granules, 20 g 20161130 +85340011000036101 Levetiracetam (Terry White Chemists) 1 g tablet 900000000000526001 REPLACED BY association reference set 1003751000168100 Levetiracetam 1000 (Terry White Chemists) 1 g tablet 20170930 +74240011000036101 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials 900000000000526001 REPLACED BY association reference set 825371000168100 Engerix-B Adult 20 microgram/mL injection suspension, 25 x 1 mL vials 20160930 +23375011000036106 omeprazole 20 mg capsule 900000000000526001 REPLACED BY association reference set 75861000036107 omeprazole 20 mg enteric capsule 20150930 +80654011000036109 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 900000000000526001 REPLACED BY association reference set 868451000168102 Dianeal PD-4 with Glucose 2.5% System II peritoneal dialysis solution, 3 L bag 20170131 +28231000036107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725041000168107 amino acid formula with vitamins and minerals without phenylalanine and tyrosine oral liquid, 30 x 125 mL pouches 20151031 +669521000168105 Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 728881000168104 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge 20151130 +933195891000036105 Calcium (Alphapharm) 500 mg tablet: film-coated 900000000000526001 REPLACED BY association reference set 852561000168105 Calcium (Alphapharm) 1.25 g (calcium 500 mg) film-coated tablet 20161130 +33069011000036103 Albey Bee Venom (bee venom 550 microgram) injection: powder for, 550 microgram vial 900000000000526001 REPLACED BY association reference set 758811000168109 Bee Venom (Albey) (honey bee venom 550 microgram) powder for injection, 550 microgram vial 20160229 +70232011000036103 cetylpyridinium chloride monohydrate 1.3 mg + benzocaine 8.2 mg lozenge 900000000000526001 REPLACED BY association reference set 995341000168106 cetylpyridinium chloride 1.3 mg + benzocaine 8.2 mg lozenge 20170831 +761191000168107 diphenoxylate hydrochloride 2.5 mg + atropine sulfate 25 microgram tablet, 2 900000000000526001 REPLACED BY association reference set 851061000168105 diphenoxylate hydrochloride 2.5 mg + atropine sulfate monohydrate 25 microgram tablet, 2 20161130 +63722011000036109 benzydamine hydrochloride 3 mg + cetylpyridinium chloride monohydrate 1.33 mg lozenge, 2 900000000000526001 REPLACED BY association reference set 995651000168100 benzydamine hydrochloride 3 mg + cetylpyridinium chloride 1.33 mg lozenge, 2 20170831 +933244431000036104 Panamax Co uncoated tablet, 40 900000000000526001 REPLACED BY association reference set 836051000168101 Panamax Co uncoated tablet, 40 20161031 +172401000036108 Fosamax Plus D-Cal (4 x 70 mg/140 microgram tablets, 24 x 500 mg tablets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 848631000168104 Fosamax Plus D-Cal (4 x Fosamax Plus Once Weekly 70 mg/140 microgram tablets, 24 x Bonecal tablets), 1 pack, composite pack 20161130 +22456011000036101 codeine phosphate 30 mg tablet 900000000000526001 REPLACED BY association reference set 834691000168108 codeine phosphate hemihydrate 30 mg tablet 20161031 +32701000036106 colistimethate sodium 1 million units (80 mg) powder for inhalation, vial 900000000000526001 REPLACED BY association reference set 818091000168102 colistimethate sodium 1 million units powder for inhalation, vial 20160731 +86415011000036109 oestradiol valerate 3 mg tablet [6] (&) dienogest 2 mg + oestradiol valerate 2 mg tablet [15] (&) dienogest 3 mg + oestradiol valerate 2 mg tablet [51] (&) oestradiol valerate 1 mg tablet [6] (&) inert substance tablet [6], 1 pack 900000000000526001 REPLACED BY association reference set 684281000168109 estradiol valerate 3 mg tablet [2] (&) estradiol valerate 2 mg + dienogest 2 mg tablet [5] (&) estradiol valerate 2 mg + dienogest 3 mg tablet [17] (&) estradiol valerate 1 mg tablet [2] (&) inert substance tablet [2], 3 x 28 20150131 +9101000036109 Clinoleic 20% injection: emulsion, 10 x 500 mL bags 900000000000526001 REPLACED BY association reference set 771991000168103 Clinoleic 20% injection emulsion, 10 x 500 mL bags 20160430 +74757011000036108 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe 900000000000526001 REPLACED BY association reference set 825241000168101 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL syringe 20160930 +80647011000036100 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 872651000168106 Plasma-Lyte 148 Replacement in 5% Glucose intravenous infusion injection, 12 x 1 L bags 20170131 +82212011000036101 Ungvita 0.054% ointment, 50 g 900000000000526001 REPLACED BY association reference set 695001000168108 Ungvita 0.099% ointment, 50 g 20150430 +28221000036105 TYR Lophlex LQ 20 oral liquid: solution, 30 x 125 mL sachets 900000000000526001 REPLACED BY association reference set 725051000168109 TYR Lophlex LQ 20 oral liquid solution, 30 x 125 mL pouches 20151031 +61997011000036103 benzydamine hydrochloride 1% + cetylpyridinium chloride monohydrate 0.1% oral gel 900000000000526001 REPLACED BY association reference set 995931000168101 benzydamine hydrochloride 1% + cetylpyridinium chloride 0.1% oral gel 20170831 +45258011000036104 disulfiram 200 mg tablet 900000000000526001 REPLACED BY association reference set 796251000168101 disulfiram 200 mg effervescent tablet 20160630 +81044011000036109 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 900000000000526001 REPLACED BY association reference set 863791000168107 Glucose (Fresenius Kabi) 5% (12.5 g/250 mL) intravenous infusion injection, 35 x 250 mL bags 20170131 +56351000036108 Valvala 1 g film-coated tablet, 21, blister pack 900000000000526001 REPLACED BY association reference set 1009761000168101 Valvala-1000 1 g film-coated tablet, 21, blister pack 20170930 +8231000168108 Clozole Vaginal Cream (Chemists' Own) 900000000000526001 REPLACED BY association reference set 53325011000036101 Clozole (Chemists' Own) 20150930 +923446011000036106 Omeprazole (Pharmacor) 20 mg capsule, 30 900000000000526001 REPLACED BY association reference set 717221000168105 Omeprazole (Pharmacor) 20 mg enteric capsule, 30 20150930 +6470011000036100 Creon Forte 25 000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847561000168105 Creon Forte enteric capsule 20161130 +761271000168100 Lomotil uncoated tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 851161000168109 Lomotil uncoated tablet, 100, blister pack 20161130 +85705011000036104 Levetiracetam (Apo) 1 g tablet, 400 900000000000526001 REPLACED BY association reference set 1003211000168105 Levetiracetam 1000 (Apo) 1 g tablet, 400 20170930 +73054011000036102 Apomine PFS 50 mg/10 mL injection: subcutaneous infusion, 5 x 10 mL syringes 900000000000526001 REPLACED BY association reference set 781281000168100 Apomine PFS 50 mg/10 mL injection solution, 5 x 10 mL syringes 20160430 +923459011000036104 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24 900000000000526001 REPLACED BY association reference set 996011000168103 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge, 24 20170831 +75476011000036108 Haemophilus influenzae type b vaccine 7.5 microgram + hepatitis B vaccine 5 microgram injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 832301000168104 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine injection, 0.5 mL vial 20160930 +63246011000036100 miconazole 2% oral gel, 15 g 900000000000526001 REPLACED BY association reference set 817991000168104 miconazole 2% oral gel, 15 g 20160731 +101381000036105 Irbesartan (Apo) 75 mg tablet, 30 900000000000526001 REPLACED BY association reference set 807751000168109 Irbesartan (Apo) 75 mg film-coated tablet, 30 20160630 +75468011000036104 Bordetella pertussis, acellular pertussis toxoid vaccine 10 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 5 microgram + Bordetella pertussis, fimbriae types 2 and 3 vaccine 5 microgram + Bordetella pertussis, acellular pertactin vaccine 3 microgram + diphtheria toxoid vaccine 30 units + tetanus toxoid vaccine 40 units injection, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837591000168104 diphtheria + tetanus + pertussis 5 component child vaccine injection, 5 x 0.5 mL vials 20161031 +5688011000036108 Canesten Clotrimazole Thrush Treatment 3 Day 2% cream 900000000000526001 REPLACED BY association reference set 715031000168105 Canesten Clotrimazole Thrush Treatment 3 Day 2% vaginal cream 20150930 +74238011000036103 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825341000168107 Engerix-B Adult 20 microgram/mL injection suspension, 1 mL vial 20160930 +74762011000036101 Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083581000168100 Decongestant (Chemists' Own) 0.05% nasal spray, 20 mL, pump pack 20180228 +98911000036102 Irbesartan (Apo) 300 mg tablet 900000000000526001 REPLACED BY association reference set 807801000168103 Irbesartan (Apo) 300 mg film-coated tablet 20160630 +34884011000036103 codeine phosphate 5 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 52247011000036107 codeine phosphate hemihydrate 5 mg/mL oral liquid 20161031 +50502011000036104 Mefix (310250) 2.5 cm x 10 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 694211000168104 Mefix (310250) 2.5 cm x 10 m tape, 1 roll, carton 20150331 +41469011000036102 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid: solution, 100 mL 900000000000526001 REPLACED BY association reference set 835521000168108 Codeine Phosphate Linctus (Orion) 5 mg/mL oral liquid solution, 100 mL 20161031 +75531011000036108 measles virus (Schwarz) live attenuated vaccine 1000 CCID50 units + mumps virus (Jeryl Lynn, strain RIT 4385) live attenuated vaccine 5000 CCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 CCID50 units injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 900000000000526001 REPLACED BY association reference set 831081000168100 measles 1000 CCID50 units + mumps 5000 CCID50 units + rubella 1000 CCID50 units live vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL ampoules], 1 pack 20160930 +19577011000036101 Etopophos 100 mg injection: powder for, 1 vial 900000000000526001 REPLACED BY association reference set 793441000168106 Etopophos 113.6 mg (etoposide 100 mg) powder for injection, 1 vial 20160531 +925661011000036101 Medi Creme cream 900000000000526001 REPLACED BY association reference set 863451000168109 Medi Creme cream 20170131 +679511000168108 botulinum toxin type A 200 units injection, vial 900000000000526001 REPLACED BY association reference set 720931000168107 botulinum toxin type A 200 units injection, vial 20151031 +56707011000036108 Duro-Tuss Dry Cough Lozenge orange lozenge, 24 900000000000526001 REPLACED BY association reference set 996291000168100 Duro-Tuss Dry Cough Lozenge orange lozenge, 24 20170831 +933220861000036103 Naropin 0.75% (150 mg/20 mL) injection: solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1004891000168102 Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule 20170930 +9011000036105 olive oil 16 mL/100 mL + soya oil 4 mL/100 mL injection, 100 mL bag 900000000000526001 REPLACED BY association reference set 771701000168106 olive oil 16 g/100 mL + soya oil 4 g/100 mL injection, 100 mL bag 20160430 +71741000036100 calcium (as carbonate) 600 mg (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 100 900000000000526001 REPLACED BY association reference set 862031000168103 calcium carbonate 1.5 g (calcium 600 mg) + colecalciferol 10 microgram (400 units) tablet, 100 20161231 +68800011000036100 Cepacol Mint 0.05% mouthwash, 500 mL, bottle 900000000000526001 REPLACED BY association reference set 995331000168102 Cepacol Mint 0.05% mouthwash, 500 mL, bottle 20170831 +713331000168107 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags 900000000000526001 REPLACED BY association reference set 1005471000168104 Ropivacaine (Pfizer) 400 mg/200 mL injection solution, 5 x 200 mL bags 20170930 +17461000168103 Clotrimazole Vaginal Cream (Your Pharmacy) 900000000000526001 REPLACED BY association reference set 53455011000036108 Clotrimazole (Your Pharmacy) 20150930 +74233011000036108 Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube 900000000000526001 REPLACED BY association reference set 822491000168103 Rotateq oral liquid, 2 mL tube 20160831 +84440011000036101 macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g + ascorbic acid 17.88 g powder for oral liquid, 210 g sachet 900000000000526001 REPLACED BY association reference set 901111000168109 macrogol-3350 158.7 g + sodium chloride 7.83 g + potassium chloride 2.21 g (potassium 30 mmol) + sodium sulfate 16.92 g powder for oral liquid, 210 g sachet 20170331 +60729011000036103 Difflam Mouth oral gel, 10 g, tube 900000000000526001 REPLACED BY association reference set 995971000168103 Difflam Mouth oral gel, 10 g, tube 20170831 +473491000168102 amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL can 900000000000526001 REPLACED BY association reference set 724051000168108 amino acid formula with vitamins and minerals without methionine oral liquid, 130 mL pouch 20151031 +76162011000036100 Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 100 mL vial 900000000000526001 REPLACED BY association reference set 695261000168102 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 100 mL bottle 20150430 +65496011000036104 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 900000000000526001 REPLACED BY association reference set 871991000168101 Glucose (Fresenius Kabi) 5% (25 g/500 mL) intravenous infusion injection, 500 mL bag 20170131 +74731011000036104 Gardasil injection suspension, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823111000168106 Gardasil injection suspension, 10 x 0.5 mL syringes 20160831 +922540011000036106 ascorbic acid 500 mg + biotin 150 microgram + calcium (as carbonate) 97.68 mg + cyanocobalamin 10 microgram + folic acid 400 microgram + magnesium 56.15 mg + magnesium (as sulfate) 50.99 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + riboflavin sodium phosphate 15 mg + thiamine hydrochloride 15 mg + zinc (as citrate trihydrate) 10 mg effervescent tablet, 45 900000000000526001 REPLACED BY association reference set 829771000168104 thiamine hydrochloride 15 mg + riboflavin 15 mg + nicotinamide 50 mg + pantothenic acid (as calcium pantothenate) 23 mg + pyridoxine hydrochloride 10 mg + cyanocobalamin 10 microgram + ascorbic acid 500 mg + biotin 150 microgram + folic acid 400 microgram + calcium 100 mg + magnesium 100 mg + zinc 10 mg effervescent tablet, 45 20160930 +71361000036103 Byetta 5 microgram/0.02 mL injection: solution, 60 x 0.02 mL unit doses 900000000000526001 REPLACED BY association reference set 726781000168109 Byetta 5 microgram/dose injection solution, 60 doses 20151031 +17951011000036106 Dymadon Forte uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835791000168103 Dymadon Forte uncoated tablet, 20, blister pack 20161031 +6843011000036104 Clofeme Thrush Treatment 3 Day 2% cream 900000000000526001 REPLACED BY association reference set 715091000168109 Clofeme Thrush Treatment 3 Day 2% vaginal cream 20150930 +38569011000036100 aspirin 325 mg + codeine phosphate 30 mg tablet, 4 900000000000526001 REPLACED BY association reference set 834411000168101 aspirin 325 mg + codeine phosphate hemihydrate 30 mg tablet, 4 20161031 +38815011000036102 lignocaine hydrochloride anhydrous 4% + fluorescein sodium 0.25% eye drops, 20 x 0.5 mL unit doses 900000000000526001 REPLACED BY association reference set 861701000168100 lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose, 20 x 0.5 mL unit doses 20161231 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826111000168100 Streptococcus pneumoniae type 1 conjugate antigen 20160930 +665021000168101 Codeine Phosphate (Aspen) 30 mg uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 834911000168109 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet, 20, blister pack 20161031 +86192011000036103 magnesium + citric acid 900000000000526001 REPLACED BY association reference set 870891000168103 magnesium carbonate + citric acid 20170131 +85644011000036104 Qlaira, 84 tablets [3 x 28], blister pack 900000000000526001 REPLACED BY association reference set 684291000168107 Qlaira (2 x 3 mg tablets, 5 x 2 mg/2 mg tablets, 17 x 2 mg/3 mg tablets, 2 x 1 mg tablets, 2 x inert tablets), 3 x 28 20150131 +669501000168101 Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 728861000168108 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 1.5 mL cartridge 20151130 +923901011000036107 Omeprazole (Pharmacor) 20 mg capsule, 28, bottle 900000000000526001 REPLACED BY association reference set 717191000168104 Omeprazole (Pharmacor) 20 mg enteric capsule, 28, bottle 20150930 +921086011000036103 Recombinate 250 IU (octocog alfa 250 international units) injection: powder for, vial 900000000000526001 REPLACED BY association reference set 710861000168102 Recombinate (octocog alfa 250 units) powder for injection, 250 units vial 20150831 +76117011000036104 Agiolax granules 900000000000526001 REPLACED BY association reference set 832441000168109 Agiolax granules 20160930 +56585011000036100 Panadol Children's 1 to 5 Years Colour Free 120 mg/5 mL oral liquid: suspension, 200 mL 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721481000168109 Panadol Children's 1 to 5 Years Colour Free Strawberry 120 mg/5 mL oral liquid suspension, 200 mL 20151031 +708481000168105 Kenacomb Otic ear drops: solution, 7.5 mL 900000000000526001 REPLACED BY association reference set 758341000168103 Kenacomb Otic ear drops solution, 7.5 mL 20160229 +665001000168105 Codeine Phosphate (Aspen) 30 mg uncoated tablet 900000000000526001 REPLACED BY association reference set 834701000168108 Codeine Phosphate Hemihydrate (Aspen) 30 mg uncoated tablet 20161031 +71697011000036103 benzoin sumatra 11% (110 mg/mL) + tolu balsam 2.5% (25 mg/mL) tincture, 25 mL 900000000000526001 REPLACED BY association reference set 688411000168109 benzoin Sumatra 9.78% + storax prepared 4.6% + Aloes cape 6.22% tincture, 25 mL 20150331 +34379011000036105 Subutex 2 mg tablet, 100 900000000000526001 REPLACED BY association reference set 685681000168107 Subutex 2 mg sublingual tablet, 100 20150228 +76123011000036104 Compound Benzoin Tincture Friar's Balsam (Orion) solution 900000000000526001 REPLACED BY association reference set 696411000168106 Compound Benzoin Friar's Balsam (Orion) tincture (Old Formulation 2010) 20150430 +81294011000036107 calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 1.5% (30 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 868201000168102 glucose monohydrate 1.5% (30 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag 20170131 +78309011000036105 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 14 900000000000526001 REPLACED BY association reference set 833071000168102 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 14 20160930 +25721000168103 Fluoride Tyranna Grape (Laclede) 900000000000526001 REPLACED BY association reference set 932331000168103 Fluoride (Laclede) 20170531 +81293011000036105 sodium gluconate 2.51 g/500 mL + sodium chloride 2.63 g/500 mL + potassium chloride 185 mg/500 mL + magnesium chloride 150 mg/500 mL + sodium acetate trihydrate 1.84 g/500 mL injection, bag 900000000000526001 REPLACED BY association reference set 872511000168109 sodium chloride 2.63 g/500 mL + sodium gluconate 2.51 g/500 mL + sodium acetate trihydrate 1.84 g/500 mL + potassium chloride 185 mg (potassium 2.5 mmol)/500 mL + magnesium chloride hexahydrate 150 mg/500 mL injection, bag 20170131 +900051011000036109 Voltaren Emulgel 1% gel, 100 g, tube 900000000000526001 REPLACED BY association reference set 1037021000168106 Voltaren Emulgel 1.16% gel, 100 g, tube 20171130 +84088011000036104 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 900000000000526001 REPLACED BY association reference set 872491000168104 Plasma-Lyte 148 Replacement intravenous infusion injection, 1 L bag 20170131 +686391000168105 interferon beta-1a 125 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 698571000168103 peginterferon beta-1a 125 microgram/0.5 mL injection, syringe 20150430 +638501000168104 Albey Venom Albumin Saline (inert substance) diluent, 9 mL vial 900000000000526001 REPLACED BY association reference set 758821000168102 Albumin Saline (Stallergenes) (inert substance) diluent, 9 mL vial 20160229 +7094011000036109 Creon 5000 units modified release capsule 900000000000526001 REPLACED BY association reference set 847511000168107 Creon 5000 enteric capsule 20161130 +65811000036101 Rehydration Formula Effervescent (Amcal) effervescent tablet, 20, tube 900000000000526001 REPLACED BY association reference set 871741000168106 Rehydration Formula Effervescent (Amcal) effervescent tablet, 20, tube 20170131 +66584011000036100 Ringworm 1% ointment, 15 g 900000000000526001 REPLACED BY association reference set 800421000168106 Ringworm (Amneal) 1% ointment, 15 g 20160630 +63231000036105 Rehydration Formula Effervescent (Amcal) effervescent tablet, 20 900000000000526001 REPLACED BY association reference set 871731000168102 Rehydration Formula Effervescent (Amcal) effervescent tablet, 20 20170131 +716141000168105 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 826731000168106 Menveo (1 x MenA vial, 1 x MenCWY syringe), 1 pack, composite pack 20160930 +669541000168104 Omnitrope 45 units (15 mg/1.5 mL) injection: solution, 5 x 1.5 mL cartridges 900000000000526001 REPLACED BY association reference set 728891000168101 Omnitrope (for Surepal-15) 15 mg/1.5 mL injection solution, 5 x 1.5 mL cartridges 20151130 +38025011000036109 lignocaine hydrochloride anhydrous 4% + fluorescein sodium 0.25% eye drops, unit dose 900000000000526001 REPLACED BY association reference set 861681000168103 lidocaine (lignocaine) hydrochloride monohydrate 4% + fluorescein sodium 0.25% eye drops, unit dose 20161231 +933225851000036108 ropivacaine hydrochloride monohydrate 20 mg/10 mL injection, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1004501000168106 ropivacaine hydrochloride 20 mg/10 mL injection, 5 x 10 mL ampoules 20170930 +19637011000036109 Minirin 10 microgram/actuation nasal spray, 60 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1082981000168100 Minirin 10 microgram/actuation nasal spray, 60 actuations, pump pack 20180228 +82650011000036109 pneumococcal 10 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826051000168103 Streptococcus pneumoniae type 14 conjugate antigen 20160930 +711071000168106 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005991000168108 Ropivacaine 0.5% (Kabi) 50 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +933231251000036107 Norditropin Flexpro 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726531000168104 Norditropin Flexpro 10 mg/1.5 mL injection solution, 1.5 mL, injection device 20151031 +703281000168102 meningococcal group A polysaccharide vaccine 50 microgram + meningococcal group C polysaccharide vaccine 50 microgram + meningococcal group Y polysaccharide vaccine 50 microgram + meningococcal group W135 polysaccharide vaccine 50 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 828051000168102 meningococcal quadrivalent polysaccharide vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20160930 +44966011000036103 pentastarch + sodium chloride 900000000000526001 REPLACED BY association reference set 1013381000168105 hydroxyethyl starch 130/0.4 + sodium chloride 20170930 +82190011000036103 Calci-Tab 600 mg (calcium 600 g) uncoated tablet, 100 900000000000526001 REPLACED BY association reference set 860371000168101 Calci-Tab 1.5 g (calcium 600 mg) uncoated tablet, 100 20161231 +684471000168105 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (50 mg/5 mL) injection: solution, 10 x 5 mL ampoules 900000000000526001 REPLACED BY association reference set 693491000168109 Lignocaine (Pfizer) 1% (50 mg/5 mL) injection solution, 10 x 5 mL ampoules 20150331 +94221000036107 Ostelin Vitamin D and Calcium chewable tablet, 60 900000000000526001 REPLACED BY association reference set 861911000168104 Ostelin Vitamin D and Calcium chewable tablet, 60 20161231 +833781000168102 somatropin 400 microgram/dose + inert substance injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 975141000168104 somatropin 400 microgram injection, syringe 20170731 +81288011000036101 calcium chloride dihydrate 366 mg (calcium 2.5 mmol)/2 L + glucose 2.5% (50 g/2 L) + sodium lactate 8.96 g/2 L + magnesium chloride 101.6 mg/2 L + sodium chloride 10.76 g/2 L peritoneal dialysis solution, bag 900000000000526001 REPLACED BY association reference set 867961000168105 glucose monohydrate 2.5% (50 g/2 L) + sodium chloride 10.76 g/2 L + sodium lactate 8.96 g/2 L + calcium chloride dihydrate 366 mg/2 L + magnesium chloride hexahydrate 101.6 mg/2 L peritoneal dialysis solution, bag 20170131 +2621000036103 Clinoleic 20% injection: emulsion, 100 mL bag 900000000000526001 REPLACED BY association reference set 771691000168106 Clinoleic 20% injection emulsion, 100 mL bag 20160430 +49487011000036104 HCU Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724111000168106 HCU Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 20151031 +83476011000036102 triglycerides long chain with glucose polymer oral liquid, 6 x 1 L bottles 900000000000526001 REPLACED BY association reference set 745391000168103 triglycerides long chain with glucose polymer oral liquid, 6 x 1 L cartons 20160131 +41583011000036108 Zovirax 400 mg dispersible tablet, 100 900000000000526001 REPLACED BY association reference set 859561000168102 Zovirax Dispersible 400 mg tablet, 100 20161231 +66455011000036100 Cepacol Mint 0.05% mouthwash, 150 mL 900000000000526001 REPLACED BY association reference set 995301000168109 Cepacol Mint 0.05% mouthwash, 150 mL 20170831 +933231861000036106 Fluoride Koala Berry (Laclede) foam, 165 mL, aerosol can 900000000000526001 REPLACED BY association reference set 932651000168101 Fluoride (Laclede) Koala Berry Flavour foam, 165 mL, aerosol can 20170531 +62065011000036102 benzydamine hydrochloride 0.15% spray 900000000000526001 REPLACED BY association reference set 721251000168103 benzydamine hydrochloride 0.15% oral spray 20151031 +728751000168101 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1005801000168107 Ropivacaine 0.2% (Actavis) 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +687951000168104 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825051000168107 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +75524011000036109 meningococcal group C conjugate vaccine 10 microgram injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 900000000000526001 REPLACED BY association reference set 826481000168100 meningococcal C conjugate vaccine injection [10 vials] (&) inert substance diluent [10 x 0.5 mL syringes], 1 pack 20160930 +101141000036103 Victoza 18 mg/3 mL injection: solution, 2 x 3 mL cartridges 900000000000526001 REPLACED BY association reference set 748081000168108 Victoza 6 mg/mL injection solution, 2 x 3 mL injection devices 20160131 +17935011000036109 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 1041151000168109 Aranesp Sureclick 60 microgram/0.3 mL injection solution, 0.3 mL injection device 20171130 +54098011000036100 Disprin Original 300 mg dispersible tablet 900000000000526001 REPLACED BY association reference set 804211000168108 Disprin Original 300 mg tablet 20160630 +711321000168108 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004621000168103 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +27582011000036101 interferon alfa-2b 60 million units/1.2 mL injection, 1.2 mL cartridge 900000000000526001 REPLACED BY association reference set 722841000168106 interferon alfa-2b 60 million units/1.2 mL injection, 1.2 mL 20151031 +70441000036102 Salofalk 1 g granules, sachet 900000000000526001 REPLACED BY association reference set 1084131000168106 Salofalk 1 g modified release granules, sachet 20180228 +76751011000036108 Ultravist-300 62.34 g/100 mL (equivalent to 30 g/100 mL iodine) injection: solution, 10 x 100 mL vials 900000000000526001 REPLACED BY association reference set 695281000168106 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 100 mL bottles 20150430 +6901011000036100 Keppra 1 g tablet: film-coated 900000000000526001 REPLACED BY association reference set 720981000168108 Keppra-1000 1 g film-coated tablet 20151031 +929485011000036107 Styptic Pencil (Covidien) 98.6% stick, 5 g 900000000000526001 REPLACED BY association reference set 846171000168105 Styptic Pencil (Covidien) 98.6% stick, 5 g 20161130 +933196061000036100 Levetiracetam (GH) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003381000168108 Levetiracetam 1000 (GH) 1 g film-coated tablet 20170930 +922898011000036100 pneumococcal 13 valent polysaccharide conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826041000168100 Streptococcus pneumoniae type 18C conjugate antigen 20160930 +716071000168104 meningococcal group A conjugate vaccine 10 microgram injection [1 vial] (&) meningococcal group C conjugate vaccine 5 microgram + meningococcal group W135 conjugate vaccine 5 microgram + meningococcal group Y (Neisseria meningitidis) conjugate vaccine 5 microgram injection [1 vial], 1 pack 900000000000526001 REPLACED BY association reference set 826781000168107 meningococcal A conjugate vaccine injection [1 vial] (&) meningococcal C + meningococcal W135 + meningococcal Y conjugate vaccine injection [1 vial], 1 pack 20160930 +84310011000036103 Simponi SmartJect 50 mg/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 845611000168104 Simponi Smartject 50 mg/0.5 mL injection solution, 0.5 mL injection device 20161130 +733451000168104 Epipen Auto-Injector 300 microgram/0.3 mL injection, 1 dose, injection device 900000000000526001 REPLACED BY association reference set 881181000168105 Epipen Auto-Injector 300 microgram/0.3 mL injection solution, 1 dose, injection device 20170228 +923840011000036100 Mozobil 24 mg/1.2 mL subcutaneous infusion injection, 1.2 mL vial 900000000000526001 REPLACED BY association reference set 891141000168104 Mozobil 24 mg/1.2 mL injection solution, 1.2 mL vial 20170331 +19270011000036108 Livostin 0.05% nasal spray, 100 actuations, pump actuated aerosol 900000000000526001 REPLACED BY association reference set 1085251000168106 Livostin 0.05% nasal spray, 100 actuations, pump pack 20180228 +74412011000036108 Infanrix-IPV injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840811000168108 Infanrix-IPV injection suspension, 0.5 mL syringe 20161031 +86198011000036100 calcium chloride dihydrate + icodextrin + lactate + magnesium chloride + sodium chloride 900000000000526001 REPLACED BY association reference set 861151000168100 icodextrin + sodium chloride + sodium lactate + calcium chloride dihydrate + magnesium chloride 20161231 +687941000168101 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 825041000168105 Avaxim Needle Free 160 antigen units/0.5 mL injection suspension, 0.5 mL syringe 20160930 +734211000168104 Centavite Adult tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 843021000168102 Centavite Adult film-coated tablet, 100 20161031 +14308011000036108 Norditropin Nordiflex 30 units (10 mg/1.5 mL) injection: solution, 1.5 mL cartridge 900000000000526001 REPLACED BY association reference set 726411000168108 Norditropin Nordiflex 10 mg/1.5 mL injection solution, 1.5 mL 20151031 +20889011000036101 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream, 35 g, tube 900000000000526001 REPLACED BY association reference set 715361000168100 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream, 35 g, tube 20150930 +933223201000036107 MSUD Cooler 15 oral liquid: solution, 30 x 130 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724851000168101 MSUD Cooler 15 Red oral liquid solution, 30 x 130 mL pouches 20151031 +74208011000036109 Adacel injection suspension, 5 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 837521000168101 Adacel injection suspension, 5 x 0.5 mL vials 20161031 +987301000168101 Kanuma 2 mg/mL injection solution, vial 900000000000526001 REPLACED BY association reference set 1013321000168106 Kanuma 20 mg/10 mL injection solution, 10 mL vial 20170930 +61901011000036108 miconazole 2% oral gel 900000000000526001 REPLACED BY association reference set 817971000168100 miconazole 2% oral gel 20160731 +664381000168103 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid 900000000000526001 REPLACED BY association reference set 833701000168105 Magnesium Trisilicate Compound Oral Powder BP (extemporaneous) powder for oral liquid 20160930 +84285011000036100 Cal-600 600 mg (calcium 600 g) tablet: film-coated, 60, bottle 900000000000526001 REPLACED BY association reference set 860311000168109 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 60, bottle 20161231 +76803011000036103 Centrum tablet: film-coated, 120 900000000000526001 REPLACED BY association reference set 833231000168109 Centrum film-coated tablet, 120 20160930 +56722011000036104 Difflam Lozenge eucalyptus and menthol sugar free lozenge, 2 900000000000526001 REPLACED BY association reference set 995661000168103 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2 20170831 +75039011000036109 diphtheria toxoid vaccine 30 units + Haemophilus influenzae type b vaccine 10 microgram + hepatitis B vaccine 10 microgram + Bordetella pertussis, acellular pertactin vaccine 8 microgram + Bordetella pertussis, acellular pertussis toxoid vaccine 25 microgram + Bordetella pertussis, filamentous haemagglutinin vaccine 25 microgram + poliomyelitis virus type 1 (Mahoney) inactivated vaccine 40 D antigen units + poliomyelitis virus type 2 (MEF1) inactivated vaccine 8 D antigen units + poliomyelitis virus type 3 (Saukett) inactivated vaccine 32 D antigen units + tetanus toxoid vaccine 40 units injection, dose 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 836651000168107 diphtheria + tetanus + pertussis + hepatitis B + polio trivalent vaccine injection, 0.5 mL syringe 20161031 +921533011000036103 Ultravist-300 93.51 g/150 mL (equivalent to 45 g/150 mL iodine) injection: solution, 150 mL vial 900000000000526001 REPLACED BY association reference set 695331000168103 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 150 mL bottle 20150430 +683981000168101 pneumococcal purified capsular polysaccharides 25 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 838131000168107 pneumococcal 23 valent vaccine injection, 0.5 mL syringe 20161031 +923093011000036101 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge 900000000000526001 REPLACED BY association reference set 995991000168102 Duro-Tuss Chesty Cough Lozenge Sugar Free Eucalyptus and Menthol lozenge 20170831 +929637011000036109 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724551000168103 PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches 20151031 +711931000168107 Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005271000168103 Ropibam 1% 100 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +691981000168103 Calcium (Sandoz) 500 mg tablet: film-coated, 48 900000000000526001 REPLACED BY association reference set 847901000168101 Calcium (Sandoz) 1.25 g (calcium 500 mg) film-coated tablet, 48 20161130 +73841000036107 Risedronate Sodium EC Combi D (Winthrop) (4 x Risedronate Sodium tablets, 24 x Calcium carbonate / colecalciferol sachets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 810611000168104 Risedronate EC Combi D (Winthrop) (4 x Risedronate EC tablets, 24 x Risedronate EC Combi D sachets), 1 pack, composite pack 20160630 +73813011000036105 Twinrix Junior injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824521000168109 Twinrix Junior injection suspension, 0.5 mL syringe 20160930 +50362011000036102 Leukopor (2471) 1.25 cm x 5 m tape, 1 roll, carton 900000000000526001 REPLACED BY association reference set 689331000168100 Leukopor (2471) 1.25 cm x 5 m tape, 1 roll, carton 20150331 +84801011000036105 Glycoprep powder for oral liquid, sachet 900000000000526001 REPLACED BY association reference set 851541000168100 Glycoprep powder for oral liquid, 200 g sachet 20161130 +66892011000036106 Metformin Hydrochloride (GA) 1 g tablet, 90 900000000000526001 REPLACED BY association reference set 949441000168109 Metformin Hydrochloride 1000 (GA) 1 g tablet, 90 20170630 +180141000036105 Bonecal 500 mg tablet: film-coated, 24, bottle 900000000000526001 REPLACED BY association reference set 848481000168101 Bonecal 1.25 g (calcium 500 mg) film-coated tablet, 24, bottle 20161130 +55737011000036102 Panadol Children's Elixir 1 to 5 Years 120 mg/5 mL oral liquid: solution, 200 mL 900000000000526001 REPLACED BY association reference set 721711000168108 Panadol Children's Elixir 1 to 5 Years Tutti Frutti 120 mg/5 mL oral liquid solution, 200 mL 20151031 +61850011000036104 cetylpyridinium chloride monohydrate 0.05% + benzocaine 0.4% mouthwash 900000000000526001 REPLACED BY association reference set 994901000168107 cetylpyridinium chloride 0.05% + benzocaine 0.4% mouthwash 20170831 +924873011000036107 Omepro 20 mg capsule, 5 900000000000526001 REPLACED BY association reference set 716621000168105 Omepro 20 mg enteric capsule, 5 20150930 +5270011000036103 Kenacomb Otic ear drops: solution 900000000000526001 REPLACED BY association reference set 758321000168109 Kenacomb Otic ear drops solution 20160229 +761231000168103 Lomotil uncoated tablet, 8 900000000000526001 REPLACED BY association reference set 851101000168108 Lomotil uncoated tablet, 8 20161130 +81136011000036106 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 868081000168104 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 2.5 L bag 20170131 +923907011000036104 Omeprazole (Pharmacor) 20 mg capsule, 60, bottle 900000000000526001 REPLACED BY association reference set 717391000168102 Omeprazole (Pharmacor) 20 mg enteric capsule, 60, bottle 20150930 +663791000168103 light kaolin 200 mg/mL + magnesium carbonate light 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 900000000000526001 REPLACED BY association reference set 833511000168102 light kaolin 200 mg/mL + magnesium carbonate hydrate 50 mg/mL + sodium bicarbonate 50 mg/mL oral liquid, 200 mL 20160930 +152641000036106 fluticasone + formoterol (eformoterol) 900000000000526001 REPLACED BY association reference set 861531000168103 fluticasone propionate + formoterol (eformoterol) 20161231 +137821000036101 Menitorix (inert substance) diluent, syringe 900000000000526001 REPLACED BY association reference set 828351000168100 Menitorix (inert substance) diluent, 0.5 mL syringe 20160930 +44078011000036100 Lignocaine Hydrochloride (Pfizer (Perth)) 1% (200 mg/20 mL) injection: solution, 30 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 693311000168109 Lignocaine (Pfizer) 1% (200 mg/20 mL) injection solution, 30 x 20 mL ampoules 20150331 +119691000036104 Canesten Plus cream 900000000000526001 REPLACED BY association reference set 715871000168102 Canesten Plus cream 20150930 +77575011000036108 iopromide 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection, vial 900000000000526001 REPLACED BY association reference set 695541000168104 iopromide 769 mg (iodine 370 mg)/mL injection, 30 mL vial 20150430 +933226201000036101 Fluoride Koala Berry (Laclede) foam, 165 mL 900000000000526001 REPLACED BY association reference set 932641000168103 Fluoride (Laclede) Koala Berry Flavour foam, 165 mL 20170531 +380741000168105 HCU Anamix Junior LQ oral liquid: solution, 125 mL can 900000000000526001 REPLACED BY association reference set 724981000168102 HCU Anamix Junior LQ oral liquid solution, 125 mL bottle 20151031 +370931000168109 TYR Lophlex LQ 20 oral liquid: solution, 125 mL sachet 900000000000526001 REPLACED BY association reference set 725031000168103 TYR Lophlex LQ 20 oral liquid solution, 125 mL pouch 20151031 +56161011000036109 Daktarin 2% oral gel, 30 g 900000000000526001 REPLACED BY association reference set 820051000168100 Daktarin 2% oral gel, 30 g 20160731 +69002011000036102 Decongestant (Nyal) 0.5% nasal spray, 15 mL, bottle 900000000000526001 REPLACED BY association reference set 1085301000168100 Decongestant (Nyal) 0.5% nasal spray, 15 mL, pump pack 20180228 +75043011000036107 hepatitis A inactivated vaccine 360 ELISA units + hepatitis B vaccine 10 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 824511000168102 hepatitis A + hepatitis B child vaccine injection, 0.5 mL syringe 20160930 +60749011000036100 Duro-Tuss Dry Cough Lozenge orange lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 996301000168104 Duro-Tuss Dry Cough Lozenge orange lozenge, 24, blister pack 20170831 +5492011000036108 Aspalgin dispersible tablet 900000000000526001 REPLACED BY association reference set 834231000168107 Aspalgin dispersible tablet 20161031 +36029011000036100 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid 900000000000526001 REPLACED BY association reference set 834921000168102 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid 20161031 +12493011000036102 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104 900000000000526001 REPLACED BY association reference set 852771000168109 Didrocal (28 x Didronel tablets, 76 x Calcium Carbonate (Sanofi-Aventis) tablets), 104 20161130 +84389011000036106 Glycoprep-C Flavoured powder for oral liquid, 70 g sachet 900000000000526001 REPLACED BY association reference set 901101000168106 Glycoprep-C powder for oral liquid, 70 g sachet 20170331 +828361000168103 Haemophilus influenzae type b conjugate (PRP-TT) antigen 5 microgram + Neisseria meningitidis group C polysaccharide antigen 5 microgram injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 900000000000526001 REPLACED BY association reference set 846101000168100 Haemophilus influenzae type b conjugate (PRP-T) + meningococcal C conjugate vaccine injection [1 vial] (&) inert substance diluent [0.5 mL syringe], 1 pack 20161130 +925352011000036107 Pemzo 20 mg capsule, 56, bottle 900000000000526001 REPLACED BY association reference set 717001000168106 Pemzo 20 mg enteric capsule, 56, bottle 20150930 +30621000036109 Typhim Vi 25 microgram/0.5 mL injection: solution, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827201000168105 Typhim Vi 25 microgram/0.5 mL injection solution, 0.5 mL syringe 20160930 +260721000168105 PKU Lophlex LQ 20 oral liquid: solution, 125 mL can 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724351000168105 PKU Lophlex LQ 20 Citrus oral liquid solution, 125 mL pouch 20151031 +13582011000036105 Subutex 2 mg tablet, 7 900000000000526001 REPLACED BY association reference set 685601000168104 Subutex 2 mg sublingual tablet, 7 20150228 +37547011000036107 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 835501000168104 Codeine Phosphate Linctus (Biotech) 5 mg/mL oral liquid, 100 mL, bottle 20161031 +929960011000036103 Dermasoothe Antiseptic cream 900000000000526001 REPLACED BY association reference set 861321000168105 Dermasoothe Antiseptic cream 20161231 +63132011000036101 benzydamine hydrochloride 0.3% spray, 15 mL 900000000000526001 REPLACED BY association reference set 721321000168100 benzydamine hydrochloride 0.3% oral spray, 15 mL 20151031 +182101000036106 Go Kit powder for oral liquid, 1 sachet 900000000000526001 REPLACED BY association reference set 830951000168102 Magnesium Citrate (Fresenius Kabi) powder for oral liquid, 1 sachet 20160930 +833801000168103 somatropin 400 microgram/dose + inert substance injection, 7 dual chamber devices 900000000000526001 REPLACED BY association reference set 975161000168100 somatropin 400 microgram injection [7] (&) inert substance diluent [7 x 0.25 mL syringes], 1 pack 20170731 +728611000168109 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 200 mL bag 900000000000526001 REPLACED BY association reference set 1005811000168105 Ropivacaine 0.2% (Actavis) 400 mg/200 mL injection solution, 200 mL bag 20170930 +86837011000036104 Emulsifying Ointment (David Craig) ointment, 500 g, jar 900000000000526001 REPLACED BY association reference set 770841000168108 Emulsifying Ointment BP (David Craig) ointment, 500 g, jar 20160331 +711771000168108 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 900000000000526001 REPLACED BY association reference set 1005561000168106 Ropivacaine (Sandoz) 20 mg/10 mL injection solution, 5 x 10 mL ampoules 20170930 +922557011000036109 aspirin 100 mg dispersible tablet, 100 900000000000526001 REPLACED BY association reference set 804071000168105 aspirin 100 mg tablet, 100 20160630 +156781000036107 Pecfent 100 microgram/actuation nasal spray, 8 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1055051000168105 Pecfent 100 microgram/actuation nasal spray, 8 actuations, pump pack 20171231 +52549011000036109 Cal-600 600 mg (calcium 600 g) tablet: film-coated, 120 900000000000526001 REPLACED BY association reference set 860271000168109 Cal-600 1.5 g (calcium 600 mg) film-coated tablet, 120 20161231 +929478011000036106 PKU Lophlex LQ 10 oral liquid: solution, 60 x 62.5 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724571000168107 PKU Lophlex LQ 10 Tropical oral liquid solution, 60 x 62.5 mL pouches 20151031 +76556011000036104 Sorbolene Cream with Glycerin (Orion) cream, 500 g 900000000000526001 REPLACED BY association reference set 705811000168108 Sorbolene Cream with Glycerin (Orion) cream, 500 g 20150731 +70019011000036106 salicylic acid 5% (50 mg/g) + cetomacrogol aqueous cream 950 mg/g cream 900000000000526001 REPLACED BY association reference set 705661000168105 salicylic acid 5% + cetomacrogol aqueous cream 20150731 +50930011000036101 tape non woven retention polyacrylate 5 cm x 10 m tape, 1 roll 900000000000526001 REPLACED BY association reference set 688931000168106 tape non woven retention polyacrylate 5 cm x 10 m tape 20150331 +37614011000036104 Actacode Linctus 5 mg/mL oral liquid: solution, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 835561000168103 Actacode Linctus 5 mg/mL oral liquid solution, 100 mL, bottle 20161031 +60823011000036104 Difflam Cough Lozenge blackcurrant sugar free lozenge, 24, blister pack 900000000000526001 REPLACED BY association reference set 995561000168104 Difflam Cough Lozenge Blackcurrant Sugar Free lozenge, 24, blister pack 20170831 +85406011000036103 Extraneal 7.5% with drainage bag dialysis solution, 2.5 L bag 900000000000526001 REPLACED BY association reference set 872351000168103 Extraneal 7.5% with Drainage Bag peritoneal dialysis solution, 2.5 L bag 20170131 +63562011000036102 benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride monohydrate 1.33 mg + pholcodine 5.5 mg lozenge, 24 900000000000526001 REPLACED BY association reference set 995541000168103 benzydamine hydrochloride 1.5 mg + cetylpyridinium chloride 1.33 mg + pholcodine 5.5 mg lozenge, 24 20170831 +18351011000036106 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL syringe 900000000000526001 REPLACED BY association reference set 1041101000168105 Aranesp Sureclick 40 microgram/0.4 mL injection solution, 0.4 mL injection device 20171130 +73658011000036102 pneumococcal 7 valent conjugate vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 826071000168107 Streptococcus pneumoniae type 6B conjugate antigen 20160930 +78307011000036103 alpha tocopherol 14.9 mg (16.5 units) + ascorbic acid 60 mg + betacarotene 1.2 mg + biotin 150 microgram + calcium (as hydrogen phosphate dihydrate) 162 mg (phosphorus 125 mg) + chromic chloride 128.1 microgram (chromium 25 microgram) + colecalciferol 5 microgram (200 units) + cupric oxide 1.25 mg (copper 1 mg) + cyanocobalamin 1 microgram + iron (as ferrous fumarate) 4 mg + folic acid 200 microgram + iodine 100 microgram + magnesium (as oxide) 100 mg + manganese (as sulfate monohydrate) 1 mg + molybdenum 25 microgram + nicotinamide 18 mg + calcium pantothenate 6.5 mg + phytomenadione 36 microgram + potassium (as chloride) 36 microgram + pyridoxine hydrochloride 2.4 mg + retinol acetate 2000 units + riboflavin 1.6 mg + selenium 25 microgram + thiamine nitrate 1.7 mg + zinc (as oxide) 5 mg tablet, 120 900000000000526001 REPLACED BY association reference set 833221000168106 betacarotene 1.2 mg + retinol acetate 2000 units + colecalciferol 5 microgram (200 units) + dl-alpha-tocopheryl acetate 13.6 mg (16.5 units) + thiamine nitrate 1.7 mg + riboflavin 1.6 mg + nicotinamide 18 mg + calcium pantothenate 6.5 mg + pyridoxine hydrochloride 2.4 mg + folic acid 200 microgram + cyanocobalamin 1 microgram + ascorbic acid 60 mg + biotin 150 microgram + phytomenadione 36 microgram + iron 4 mg (as ferrous fumarate) + calcium 162 mg (as calcium hydrogen phosphate dihydrate) + magnesium 100 mg (as magnesium oxide) + zinc 5 mg (as zinc oxide) + iodine 100 microgram (as potassium iodide) + potassium 40 mg (as potassium chloride ) + copper 1 mg (as cupric oxide) + chromium 25 microgram (as chromic chloride hexahydrate) + manganese 1 mg (as manganese sulfate monohydrate) + phosphorus 125 mg (as calcium hydrogen phosphate dihydrate) + molybdenum 25 microgram (as sodium molybdate dihydrate) + chloride 36.3 mg (as potassium chloride) + selenium 25 microgram (as sodium selenate) tablet, 120 20160930 +104171000036107 Irbesartan (Apo) 150 mg tablet, 30, bottle 900000000000526001 REPLACED BY association reference set 807841000168101 Irbesartan (Apo) 150 mg film-coated tablet, 30, bottle 20160630 +679531000168103 Botox 200 units injection: powder for, 200 units vial 900000000000526001 REPLACED BY association reference set 720941000168103 Botox 200 units powder for injection, 200 units vial 20151031 +60726011000036107 Panadol Children's 5 to 12 Years Colour Free 240 mg/5 mL oral liquid: suspension, 100 mL, bottle 900000000000526001 REPLACED BY association reference set 721531000168107 Panadol Children's 5 to 12 Years Colour Free Orange 240 mg/5 mL oral liquid suspension, 100 mL, bottle 20151031 +74423011000036105 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial 900000000000526001 REPLACED BY association reference set 825751000168105 H-B-Vax II preservative free 10 microgram/mL injection suspension, 1 mL vial 20160930 +653571000168104 Retinofluor 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 721191000168100 Retinofluor 25% 20151031 +22175011000036105 adalimumab 40 mg/0.8 mL injection, cartridge 900000000000526001 REPLACED BY association reference set 729801000168104 adalimumab 40 mg/0.8 mL injection, injection device 20171130 +86839011000036106 Flo Sinus Care powder for nasal drops, 12 x 1.8 g sachets 900000000000526001 REPLACED BY association reference set 758711000168101 Flo Sinus Care powder for irrigation solution, 12 x 1.8 g sachets 20160229 +930878011000036104 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872901000168103 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +80233011000036106 Gastrolyte natural powder for oral liquid, 4.9 g sachet 900000000000526001 REPLACED BY association reference set 871861000168101 Gastrolyte Natural powder for oral liquid, 4.9 g sachet 20170131 +74245011000036105 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes 900000000000526001 REPLACED BY association reference set 825291000168109 Engerix-B Adult 20 microgram/mL injection suspension, 10 x 1 mL syringes 20160930 +924888011000036107 Pemzo 20 mg capsule, 56 900000000000526001 REPLACED BY association reference set 716931000168103 Pemzo 20 mg enteric capsule, 56 20150930 +44485011000036105 Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations, bottle 900000000000526001 REPLACED BY association reference set 729141000168109 Rhinocort Aqueous 64 microgram/actuation nasal spray, 50 actuations, pump pack 20151130 +69929011000036105 soap-soft 50 mg/mL enema, bottle 900000000000526001 REPLACED BY association reference set 685491000168107 soft soap 50 mg/mL enema 20150228 +22843011000036101 paracetamol 500 mg + codeine phosphate 8 mg tablet 900000000000526001 REPLACED BY association reference set 62090011000036109 paracetamol 500 mg + codeine phosphate hemihydrate 8 mg tablet 20161031 +931679011000036105 Actonel EC Combi D (4 x Once-a-Week tablets, 24 x Calcium carbonate / colecalciferol (Sanofi-Aventis) sachets), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 810351000168106 Actonel EC Combi D (4 x Actonel EC Once-a-Week tablets, 24 x Actonel EC Combi D sachets), 1 pack, composite pack 20160630 +728381000168109 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection: solution, 50 mL syringe 900000000000526001 REPLACED BY association reference set 872091000168105 Glucose Min-I-Jet (UCB Pharma) 25 g/50 mL injection solution, 50 mL syringe 20170131 +19255011000036102 Codalgin Forte uncoated tablet, 20, blister pack 900000000000526001 REPLACED BY association reference set 835891000168108 Codalgin Forte uncoated tablet, 20, blister pack 20161031 +711311000168101 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1004611000168105 Naropin 0.2% 40 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +689771000168103 Valaciclovir (Apo) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1001141000168100 Valaciclovir 1000 (Apo) 1 g film-coated tablet 20170930 +28109011000036107 clotrimazole 1% cream, 35 g 900000000000526001 REPLACED BY association reference set 714971000168108 clotrimazole 1% vaginal cream, 35 g 20150930 +924209011000036105 omeprazole 20 mg capsule, 56 900000000000526001 REPLACED BY association reference set 716751000168106 omeprazole 20 mg enteric capsule, 56 20150930 +5321011000036103 Zentel 200 mg chewable tablet 900000000000526001 REPLACED BY association reference set 844201000168104 Zentel 200 mg tablet 20161031 +925335011000036103 Omepro 20 mg capsule, 28, bottle 900000000000526001 REPLACED BY association reference set 716551000168103 Omepro 20 mg enteric capsule, 28, bottle 20150930 +82765011000036101 Synflorix 16 microgram injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 827621000168104 Synflorix injection suspension, 0.5 mL syringe 20160930 +844421000168107 Zovirax 200 mg tablet, 25 900000000000526001 REPLACED BY association reference set 859191000168103 Zovirax Dispersible 200 mg tablet, 25 20161231 +933195961000036105 Levetiracetam (MPPL) 1 g film-coated tablet 900000000000526001 REPLACED BY association reference set 1003541000168106 Levetiracetam 1000 (MPPL) 1 g film-coated tablet 20170930 +11916011000036105 ADT Booster injection: suspension, 5 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 837351000168102 ADT Booster injection suspension, 5 x 0.5 mL syringes 20161031 +73667011000036107 rotavirus pentavalent live reassortant oral vaccine 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 822281000168100 rotavirus type P1A(8) live antigen 20160831 +664391000168100 magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate heavy 250 mg/g powder for oral liquid, 100 g 900000000000526001 REPLACED BY association reference set 833711000168108 magnesium trisilicate 250 mg/g + chalk 250 mg/g + sodium bicarbonate 250 mg/g + magnesium carbonate hydrate 250 mg/g powder for oral liquid, 100 g 20160930 +41563011000036105 Lignocaine Hydrochloride (Pfizer (Perth)) 2% (400 mg/20 mL) injection: solution, 30 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 693431000168105 Lignocaine (Pfizer) 2% (400 mg/20 mL) injection solution, 30 x 20 mL ampoules 20150331 +76737011000036101 Ultravist-300 6.234 g/10 mL (equivalent to 3 g/10 mL iodine) injection: solution, 10 x 10 mL vials 900000000000526001 REPLACED BY association reference set 695081000168100 Ultravist-300 623 mg (iodine 300 mg)/mL injection solution, 10 x 10 mL vials 20150430 +74928011000036102 Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL, bottle 900000000000526001 REPLACED BY association reference set 1083621000168100 Decongestant (Pharmacy Health) 0.05% nasal spray, 20 mL, pump pack 20180228 +922652011000036104 iopromide 46.75 g/75 mL (equivalent to 22.5 g/75 mL iodine) injection, 10 x 75 mL vials 900000000000526001 REPLACED BY association reference set 695221000168107 iopromide 623 mg (iodine 300 mg)/mL injection, 10 x 75 mL bottles 20150430 +7126011000036103 Caltrate 600 mg (calcium 600 g) tablet: film-coated 900000000000526001 REPLACED BY association reference set 860321000168102 Caltrate 1.5 g (calcium 600 mg) film-coated tablet 20161231 +45221000036103 Glucaid 75 g/300 mL oral liquid: solution, 300 mL each, bottle 900000000000526001 REPLACED BY association reference set 692461000168105 Glucaid 75 g/300 mL oral liquid solution, 300 mL, bottle 20150331 +84411011000036103 macrogol-3350 + sodium chloride + potassium chloride + sodium sulfate + ascorbic acid 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 77435011000036104 ascorbic acid 20170331 +61863011000036103 hydrocortisone 1% spray 900000000000526001 REPLACED BY association reference set 776861000168105 hydrocortisone 1% spray 20160430 +177751000036100 Lyxumia Treatment Initiation Pack (14 x 10 microgram/0.2 mL (0.2 mL) unit doses, 14 x 20 microgram/0.2 mL (0.2 mL) unit doses), 1 pack 900000000000526001 REPLACED BY association reference set 719411000168109 Lyxumia Treatment Initiation Pack (14 x 10 microgram/dose doses, 14 x 20 microgram/dose doses), 1 pack 20150930 +7329011000036103 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% cream 900000000000526001 REPLACED BY association reference set 715341000168104 Clotrimazole Thrush Treatment 6 Day (GenRx) 1% vaginal cream 20150930 +81137011000036109 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags 900000000000526001 REPLACED BY association reference set 868111000168109 Dianeal PD-4 with Glucose 2.5% peritoneal dialysis solution, 4 x 2.5 L bags 20170131 +926986011000036105 hepatitis B vaccine 10 microgram/0.5 mL injection, syringe 900000000000526001 REPLACED BY association reference set 825431000168109 hepatitis B child vaccine 10 microgram/0.5 mL injection, syringe 20160930 +75030011000036103 human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 823011000168107 human papillomavirus quadrivalent vaccine injection, 0.5 mL syringe 20160831 +953951000168101 Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1087061000168106 Atrovent Forte 44 microgram/actuation nasal spray, 120 actuations, pump pack 20180331 +75515011000036102 meningococcal group C polysaccharide vaccine 10 microgram/0.5 mL injection, 20 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 846011000168101 meningococcal C conjugate vaccine injection, 20 x 0.5 mL syringes 20161130 +60764011000036106 Difflam Lozenge eucalyptus and menthol sugar free lozenge, 2, blister pack 900000000000526001 REPLACED BY association reference set 995671000168109 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 2, blister pack 20170831 +711821000168101 Ropibam 0.2% 20 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1005081000168106 Ropibam 0.2% 20 mg/10 mL injection solution, 10 mL ampoule 20170930 +930086011000036106 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 900000000000526001 REPLACED BY association reference set 872851000168107 Synthamin 13 Amino Acid 8% with Electrolytes intravenous infusion injection, 500 mL bottle 20170131 +74432011000036100 Boostrix-IPV injection suspension, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 840731000168105 Boostrix-IPV injection suspension, 0.5 mL syringe 20161031 +933204881000036109 Acris Combi (1 x 35 mg tablet, 6 x 500 mg tablets), 1 pack 900000000000526001 REPLACED BY association reference set 852581000168101 Acris Combi (1 x Acris Once-a-Week tablet, 6 x Calcium (Alphapharm) tablets), 7 20161130 +81168011000036100 Gastrolyte natural powder for oral liquid, 2 x 4.9 g sachets 900000000000526001 REPLACED BY association reference set 871901000168107 Gastrolyte Natural powder for oral liquid, 2 x 4.9 g sachets 20170131 +33321011000036109 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection, 0.3 mL syringe 900000000000526001 REPLACED BY association reference set 881201000168106 Epipen Jr Auto-Injector 150 microgram/0.3 mL injection solution, 1 dose 20170228 +77299011000036109 Glucose Min-I-Jet (CSL) 25 g/50 mL injection: solution, 50 mL syringe 900000000000526001 REPLACED BY association reference set 872071000168109 Glucose Min-I-Jet (CSL) 25 g/50 mL injection solution, 50 mL syringe 20170131 +80666011000036109 Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags 900000000000526001 REPLACED BY association reference set 872271000168104 Cardioplegia A Solution (Baxter) perfusion solution, 12 x 1 L bags 20170131 +708491000168108 Kenacomb Otic ear drops: solution, 7.5 mL, bottle 900000000000526001 REPLACED BY association reference set 758351000168101 Kenacomb Otic ear drops solution, 7.5 mL, bottle 20160229 +82335011000036107 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection: solution, 50 x 1 mL ampoules 900000000000526001 REPLACED BY association reference set 850881000168104 Atropine Sulfate (Pfizer (Perth)) 600 microgram/mL injection solution, 50 x 1 mL ampoules 20161130 +931709011000036105 Elevit with Iodine tablet: film-coated, 30, blister pack 900000000000526001 REPLACED BY association reference set 843201000168101 Elevit with Iodine film-coated tablet, 30, blister pack 20161031 +933203381000036103 Levetiracetam (SCP) 1 g film-coated tablet, 60 900000000000526001 REPLACED BY association reference set 1003681000168102 Levetiracetam 1000 (SCP) 1 g film-coated tablet, 60 20170930 +86448011000036106 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium (as carbonate) 500 mg tablet [48], 1 pack 900000000000526001 REPLACED BY association reference set 848041000168101 alendronate 70 mg + colecalciferol 140 microgram (5600 units) tablet [4] (&) calcium carbonate 1.25 g (calcium 500 mg) tablet [48], 1 pack 20161130 +37653011000036106 Forthane 100 mL/100 mL inhalation: solution, 100 mL bottle 900000000000526001 REPLACED BY association reference set 775561000168103 Forthane 1 mL/mL inhalation solution, 100 mL, bottle 20160430 +72601000036101 Salofalk 1 g granules, 100 sachets 900000000000526001 REPLACED BY association reference set 1084171000168109 Salofalk 1 g modified release granules, 100 sachets 20180228 +933226181000036100 Fluoride Bumble Bee Bubble Gum (Laclede) foam, 165 mL 900000000000526001 REPLACED BY association reference set 932371000168100 Fluoride (Laclede) Bumble Bee Bubble Gum Flavour foam, 165 mL 20170531 +44101011000036105 Zovirax 200 mg dispersible tablet, 90, bottle 900000000000526001 REPLACED BY association reference set 859461000168103 Zovirax Dispersible 200 mg tablet, 90, bottle 20161231 +924698011000036103 First Aid (Guardian) cream, 50 g 900000000000526001 REPLACED BY association reference set 861551000168109 First Aid (Guardian) cream, 50 g 20161231 +924886011000036108 Pemzo 20 mg capsule, 50 900000000000526001 REPLACED BY association reference set 716811000168102 Pemzo 20 mg enteric capsule, 50 20150930 +75383011000036104 human papillomavirus (type 6) vaccine 20 microgram + human papillomavirus (type 11) vaccine 40 microgram + human papillomavirus (type 16) vaccine 40 microgram + human papillomavirus (type 18) vaccine 20 microgram injection, 10 x 0.5 mL syringes 900000000000526001 REPLACED BY association reference set 823091000168103 human papillomavirus quadrivalent vaccine injection, 10 x 0.5 mL syringes 20160831 +929473011000036101 PKU Lophlex LQ 20 oral liquid: solution, 30 x 125 mL cans 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 724541000168100 PKU Lophlex LQ 20 Tropical oral liquid solution, 30 x 125 mL pouches 20151031 +74959011000036106 Haemophilus influenzae type b vaccine + hepatitis B vaccine 900000000000526001 REPLACED BY association reference set 832271000168101 Haemophilus influenzae type b conjugate (PRP-OMP) + hepatitis B vaccine 20160930 +5739011000036101 Calcium Carbonate (Sanofi-Aventis) (calcium (as carbonate) 500 mg) tablet: film-coated 900000000000526001 REPLACED BY association reference set 852641000168107 Calcium Carbonate (Sanofi-Aventis) 1.25 g (calcium 500 mg) film-coated tablet 20161130 +73795011000036109 Rotateq 11.5 million CCID50 units/2 mL oral liquid: solution, 2 mL tube 900000000000526001 REPLACED BY association reference set 822471000168104 Rotateq oral liquid, 2 mL tube 20160831 +27241011000036106 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 660 million CFU injection [81 mg vial] (&) inert substance diluent [3 mL vial], 1 pack 900000000000526001 REPLACED BY association reference set 1045981000168102 Mycobacterium bovis (Bacillus Calmette and Guerin (BCG)) Connaught strain 81 mg injection [1 vial] (&) inert substance diluent [3 mL vial], 1 pack 20171130 +71455011000036103 salicylic acid 5% (50 mg/g) + aqueous cream 950 mg/g cream, 100 g 900000000000526001 REPLACED BY association reference set 705601000168109 salicylic acid 5% + aqueous cream, 100 g 20150731 +75407011000036104 rotavirus live attenuated oral vaccine 1 million CCID50 units/1.5 mL oral liquid, 1.5 mL syringe 900000000000526001 REPLACED BY association reference set 822891000168101 rotavirus live vaccine oral liquid, 1.5 mL syringe 20160831 +711181000168105 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 900000000000526001 REPLACED BY association reference set 1005891000168101 Ropivacaine 0.2% (Kabi) 200 mg/100 mL injection solution, 5 x 100 mL bags 20170930 +711281000168103 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 900000000000526001 REPLACED BY association reference set 1006091000168103 Ropivacaine 0.75% (Kabi) 150 mg/20 mL injection solution, 5 x 20 mL ampoules 20170930 +114581000036103 citric acid 12 g + magnesium oxide 3.5 g + picosulfate sodium monohydrate 10 mg powder for oral liquid, 2 x 16.1 g sachets 900000000000526001 REPLACED BY association reference set 902101000168101 sodium picosulfate 10 mg + magnesium oxide 3.5 g + citric acid 12 g powder for oral liquid, 2 x 16.1 g sachets 20170331 +77323011000036106 Ultravist-370 23.066 g/30 mL (equivalent to 11.1 g/30 mL iodine) injection: solution, 10 x 30 mL vials 900000000000526001 REPLACED BY association reference set 695581000168109 Ultravist-370 769 mg (iodine 370 mg)/mL injection solution, 10 x 30 mL vials 20150430 +821641000168100 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 900000000000526001 REPLACED BY association reference set 955111000168100 Q-Vax Skin Test 2.5 microgram/0.5 mL concentrated injection, 0.5 mL vial 20170630 +152531000036102 Atrovent 22 microgram/actuation nasal spray, 180 actuations, pump actuated metered dose aerosol 900000000000526001 REPLACED BY association reference set 1085371000168105 Atrovent 22 microgram/actuation nasal spray, 180 actuations, pump pack 20180228 +844491000168109 Zovirax 800 mg tablet, 35 900000000000526001 REPLACED BY association reference set 859221000168109 Zovirax Dispersible 800 mg tablet, 35 20161231 +79835011000036101 gentamicin sulfate 7.5 mg implant, 1 bead 900000000000526001 REPLACED BY association reference set 684531000168106 gentamicin sulfate 7.5 mg implant, 30 beads 20150131 +924141011000036100 smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack 900000000000526001 REPLACED BY association reference set 821311000168105 smallpox live vaccine injection [50 vials] (&) inert substance diluent [50 x 0.6 mL vials], 1 pack 20160831 +73867011000036100 Merieux Inactivated Rabies Vaccine (rabies inactivated vaccine 2.5 units) powder for injection, 2.5 units vial 900000000000526001 REPLACED BY association reference set 821431000168106 Merieux Inactivated Rabies Vaccine (rabies vaccine) powder for injection, 2.5 units vial 20160831 +896601000168100 PKU Sphere 900000000000526001 REPLACED BY association reference set 922511000168101 PKU Sphere20 20170430 +140501000036105 Bydureon (4 x 2 mg vials, 4 x inert diluent syringes), 1 pack, composite pack 900000000000526001 REPLACED BY association reference set 833931000168101 Bydureon (1 x 2 mg vial, 1 x inert diluent syringe), 4 x 1 packs, composite packs 20160930 +83297011000036109 Prozero oral liquid: solution, 18 x 250 mL cans 900000000000526001 REPLACED BY association reference set 745351000168108 Prozero oral liquid solution, 18 x 250 mL cartons 20160131 +6718011000036103 Clofeme Thrush Treatment 6 Day 1% cream 900000000000526001 REPLACED BY association reference set 715121000168108 Clofeme Thrush Treatment 6 Day 1% vaginal cream 20150930 +19980011000036101 Creon 10 000 units modified release capsule, 100, bottle 900000000000526001 REPLACED BY association reference set 847471000168103 Creon 10 000 enteric capsule, 100, bottle 20161130 +706331000168102 measles virus (Enders' attenuated Edmonston) live vaccine 1000 TCID50 units + mumps virus (Jeryl Lynn B level) live vaccine 12 500 TCID50 units + rubella virus (Wistar RA 27/3) live attenuated vaccine 1000 TCID50 units injection, vial 900000000000526001 REPLACED BY association reference set 831351000168109 measles 1000 TCID50 units + mumps 12 500 TCID50 units + rubella 1000 TCID50 units live vaccine injection, vial 20160930 +87921000036106 dinoprostone 800 microgram/mL vaginal gel 900000000000526001 REPLACED BY association reference set 1005371000168106 dinoprostone 2 mg/3 g vaginal gel, syringe 20170930 +76822011000036103 Caltrate 600 mg with Vitamin D 200 IU tablet: film-coated, 100 900000000000526001 REPLACED BY association reference set 861961000168101 Caltrate 600 mg with Vitamin D 200 IU film-coated tablet, 100 20161231 +921843011000036101 Berocca Performance Original effervescent tablet, 15, bottle 900000000000526001 REPLACED BY association reference set 829731000168102 Berocca Performance Original effervescent tablet, 15, bottle 20160930 +141981000036104 Somatuline Autogel 90 mg injection: solution, 1 syringe 900000000000526001 REPLACED BY association reference set 819551000168109 Somatuline Autogel 90 mg/0.5 mL injection solution, 0.5 mL syringe 20160731 +37878011000036106 atropine sulfate 500 microgram/mL injection, ampoule 900000000000526001 REPLACED BY association reference set 850581000168102 atropine sulfate monohydrate 500 microgram/mL injection, ampoule 20161130 +78110011000036107 glycerol 10% (100 mg/g) + cetomacrogol aqueous cream 900 mg/g cream, 100 mL 900000000000526001 REPLACED BY association reference set 705841000168107 glycerol 10% + cetomacrogol aqueous cream, 100 mL 20150731 +9081000036102 Clinoleic 20% injection: emulsion, 500 mL bag 900000000000526001 REPLACED BY association reference set 771831000168106 Clinoleic 20% injection emulsion, 500 mL bag 20160430 +698431000168100 meningococcal group B heparin binding antigen fusion protein 50 microgram/0.5 mL + meningococcal group B adhesin A protein 50 microgram/0.5 mL + meningococcal group B factor H binding protein fusion protein 50 microgram/0.5 mL + meningococcal group B outer membrane vesicles 25 microgram/0.5 mL injection, 0.5 mL syringe 900000000000526001 REPLACED BY association reference set 822791000168106 meningococcal B 4 component vaccine injection, 0.5 mL syringe 20160831 +73628011000036101 diphtheria toxoid vaccine 900000000000526001 REPLACED BY association reference set 2031011000036104 diphtheria toxoid 20161031 +53897011000036100 Zantac 150 mg/10 mL oral liquid: solution, 10 mL 900000000000526001 REPLACED BY association reference set 5902011000036108 Zantac 150 mg/10 mL oral liquid, 10 mL 20160531 +18431011000036101 Codalgin uncoated tablet, 50, blister pack 900000000000526001 REPLACED BY association reference set 836031000168107 Codalgin uncoated tablet, 50, blister pack 20161031 +74243011000036109 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials 900000000000526001 REPLACED BY association reference set 825571000168106 Engerix-B Paediatric 10 microgram/0.5 mL injection suspension, 25 x 0.5 mL vials 20160930 +761801000168109 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack 900000000000526001 REPLACED BY association reference set 833841000168101 Colonprep Kit A (1 x Colonlytely sachet, 2 x Picolax sachets), 1 pack 20160930 +160481000036107 Oxycontin Reformulation 10 mg modified release tablet, 28, blister pack 900000000000526001 REPLACED BY association reference set 929119011000036108 Oxycontin 10 mg modified release tablet, 28, blister pack 20170731 +702791000168103 PKU Anamix Junior oral liquid: powder for, 30 x 36 g sachets 900000000000523009 POSSIBLY EQUIVALENT TO association reference set 726101000168100 PKU Anamix Junior Orange powder for oral liquid, 30 x 36 g sachets 20151031 +80491000036101 Clopidogrel/Aspirin 75/100 (Apo) tablet, 30 900000000000526001 REPLACED BY association reference set 923781000168105 Clopidogrel/Aspirin 75/100 (Apo) coated tablet, 30 20170430 +22861000036102 Albey Paper Wasp Venom (1 x 550 microgram vial, 1 x 9 mL diluent vial, 3 x 1.8 mL diluent vials), 1 pack 900000000000526001 REPLACED BY association reference set 758911000168103 Paper Wasp Venom (Albey) (1 x 550 microgram vial, 1 x 9 mL inert diluent vial, 3 x 1.8 mL inert diluent vials), 1 pack 20160229 +711431000168100 Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule 900000000000526001 REPLACED BY association reference set 1004991000168109 Naropin 1% 100 mg/10 mL injection solution, 10 mL ampoule 20170930 +82195011000036107 Haemofiltration Replacement Fluid (Baxter) injection: solution, 5 L bag 900000000000526001 REPLACED BY association reference set 872411000168108 Haemofiltration Replacement Fluid (Baxter) injection solution, 5 L bag 20170131 +87521000036102 Japanese encephalitis virus live vaccine 900000000000526001 REPLACED BY association reference set 821481000168107 Japanese encephalitis virus live antigen 20160831 +844541000168100 Zovirax 800 mg tablet, 120 900000000000526001 REPLACED BY association reference set 859431000168106 Zovirax Dispersible 800 mg tablet, 120 20161231 +84293011000036102 Diacol tablet, 32, bottle 900000000000526001 REPLACED BY association reference set 900271000168101 Diacol tablet, 32, bottle 20170331 +36232011000036102 Sodium Selenate Decahydrate Trace Element Sterile TPN Additives (Phebra) 467 microgram/2 mL (1.27 micromoles/mL selenium) injection: intravenous infusion, 2 mL vial 900000000000526001 REPLACED BY association reference set 720781000168106 Sodium Selenate Decahydrate (Phebra) 467 microgram/2 mL injection solution, 2 mL vial 20151031 +815131000168109 Entrip 25 mg tablet, 100, blister pack 900000000000526001 REPLACED BY association reference set 856741000168101 Entrip 25 mg film-coated tablet, 100, blister pack 20161231 +60763011000036109 Difflam Lozenge eucalyptus and menthol sugar free lozenge, 16, blister pack 900000000000526001 REPLACED BY association reference set 995641000168102 Difflam Lozenge Eucalyptus and Menthol Sugar Free lozenge, 16, blister pack 20170831 +728771000168105 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1006161000168109 Ropivacaine 1% (Actavis) 200 mg/20 mL injection solution, 20 mL ampoule 20170930 +44769011000036102 Eskazole 400 mg chewable tablet, 56, blister pack 900000000000526001 REPLACED BY association reference set 844131000168101 Eskazole 400 mg tablet, 56, blister pack 20161031 +922159011000036105 potassium citrate monohydrate 1.08 g (potassium 10 mmol) modified release tablet 900000000000526001 REPLACED BY association reference set 950721000168100 potassium citrate 1.08 g (potassium 10 mmol) modified release tablet 20170630 +844461000168102 Zovirax 200 mg tablet, 90, blister pack 900000000000526001 REPLACED BY association reference set 859611000168104 Zovirax Dispersible 200 mg tablet, 90, blister pack 20161231 +711501000168108 Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule 900000000000526001 REPLACED BY association reference set 1004891000168102 Naropin 0.75% 150 mg/20 mL injection solution, 20 mL ampoule 20170930 diff --git a/src/test/resources/rf2-fails-flat-file-generation-1.0.zip b/src/test/resources/rf2-fails-flat-file-generation-1.0.zip index 50e6347..e205648 100644 Binary files a/src/test/resources/rf2-fails-flat-file-generation-1.0.zip and b/src/test/resources/rf2-fails-flat-file-generation-1.0.zip differ